diff --git a/Assets/AxieInfinity/AxieCore/com.skymavis.axiecore.axiemixer@0.5.0-preview/AxieCore.AxieMixer.dll b/Assets/AxieInfinity/AxieCore/com.skymavis.axiecore.axiemixer@0.5.0-preview/AxieCore.AxieMixer.dll deleted file mode 100644 index f10c88c..0000000 Binary files a/Assets/AxieInfinity/AxieCore/com.skymavis.axiecore.axiemixer@0.5.0-preview/AxieCore.AxieMixer.dll and /dev/null differ diff --git a/Assets/AxieInfinity/AxieCore/com.skymavis.axiecore.axiemixer@0.5.0-preview.meta b/Assets/AxieInfinity/AxieCore/com.skymavis.axiecore.axiemixer@0.5.1-preview.meta similarity index 77% rename from Assets/AxieInfinity/AxieCore/com.skymavis.axiecore.axiemixer@0.5.0-preview.meta rename to Assets/AxieInfinity/AxieCore/com.skymavis.axiecore.axiemixer@0.5.1-preview.meta index a1d422e..3f3ccb2 100644 --- a/Assets/AxieInfinity/AxieCore/com.skymavis.axiecore.axiemixer@0.5.0-preview.meta +++ b/Assets/AxieInfinity/AxieCore/com.skymavis.axiecore.axiemixer@0.5.1-preview.meta @@ -1,5 +1,5 @@ fileFormatVersion: 2 -guid: ce88f6b61366840288c91be487677919 +guid: 642317962f2ee48939925ed246662016 folderAsset: yes DefaultImporter: externalObjects: {} diff --git a/Assets/AxieInfinity/AxieCore/com.skymavis.axiecore.axiemixer@0.5.1-preview/AxieCore.AxieMixer.dll b/Assets/AxieInfinity/AxieCore/com.skymavis.axiecore.axiemixer@0.5.1-preview/AxieCore.AxieMixer.dll new file mode 100644 index 0000000..326e3a1 Binary files /dev/null and b/Assets/AxieInfinity/AxieCore/com.skymavis.axiecore.axiemixer@0.5.1-preview/AxieCore.AxieMixer.dll differ diff --git a/Assets/AxieInfinity/AxieCore/com.skymavis.axiecore.axiemixer@0.5.0-preview/AxieCore.AxieMixer.dll.meta b/Assets/AxieInfinity/AxieCore/com.skymavis.axiecore.axiemixer@0.5.1-preview/AxieCore.AxieMixer.dll.meta similarity index 100% rename from Assets/AxieInfinity/AxieCore/com.skymavis.axiecore.axiemixer@0.5.0-preview/AxieCore.AxieMixer.dll.meta rename to Assets/AxieInfinity/AxieCore/com.skymavis.axiecore.axiemixer@0.5.1-preview/AxieCore.AxieMixer.dll.meta diff --git a/Assets/AxieInfinity/AxieMixerUnity/Components/Builder/Axie2dBuilder.cs b/Assets/AxieInfinity/AxieMixerUnity/Components/Builder/Axie2dBuilder.cs index 71664ab..204b4ad 100644 --- a/Assets/AxieInfinity/AxieMixerUnity/Components/Builder/Axie2dBuilder.cs +++ b/Assets/AxieInfinity/AxieMixerUnity/Components/Builder/Axie2dBuilder.cs @@ -1,7 +1,6 @@ using System; using System.Collections.Generic; using System.Linq; -using System.Reflection; using AxieCore.AxieMixer; using Spine.Unity; using UnityEngine; @@ -34,6 +33,33 @@ public int GetSampleColorVariant(AxieCore.AxieMixer.CharacterClass characterClas public Axie2dBuilderResult BuildSpineAdultCombo(Dictionary adultCombo, byte colorVariant, float scale, bool isGraphic = false) { + if (adultCombo.ContainsKey("back.lv2")) + { + adultCombo["back"] = adultCombo["back"].Replace("-lv2", "") + "-lv2"; + } + if (adultCombo.ContainsKey("ears.lv2")) + { + adultCombo["ears"] = adultCombo["ears"].Replace("-lv2", "") + "-lv2"; + adultCombo["ear"] = adultCombo["ear"].Replace("-lv2", "") + "-lv2"; + } + if (adultCombo.ContainsKey("eyes.lv2")) + { + adultCombo["eyes"] = adultCombo["eyes"].Replace("-lv2", "") + "-lv2"; + } + if (adultCombo.ContainsKey("horn.lv2")) + { + adultCombo["horn"] = adultCombo["horn"].Replace("-lv2", "") + "-lv2"; + } + if (adultCombo.ContainsKey("mouth.lv2")) + { + adultCombo["mouth"] = adultCombo["mouth"].Replace("-lv2", "") + "-lv2"; + } + + if (adultCombo.ContainsKey("tail.lv2")) + { + adultCombo["tail"] = adultCombo["tail"].Replace("-lv2", "") + "-lv2"; + } + var accessories = adultCombo.Where(x => x.Key.StartsWith("accessory-")).ToList(); foreach(var p in accessories) { @@ -113,6 +139,8 @@ public Axie2dBuilderResult BuildSpineFromGene(string axieId, AxieBodyStructure b adultCombo.Add(p.Key, p.Value); } } + + byte colorVariant = (byte)axieGenesStuff.GetAxieColorVariant(bodyStructure); return BuildSpineAdultCombo(adultCombo, colorVariant, scale, isGraphic); @@ -137,12 +165,7 @@ SkeletonDataAsset CreateMixedSkeletonDataAsset(MixedSkeletonData mixed, float sc Scale = scale }; var loadedSkeletonData = skeletonMixed.ReadSkeletonData(mixed, true); - - //phuongnk - cheat to call internal function - skeletonDataAsset.skeletonJSON = new TextAsset(); - Type thisType = skeletonDataAsset.GetType(); - var theMethod = thisType.GetMethod("InitializeWithData", BindingFlags.NonPublic | BindingFlags.Public | BindingFlags.Instance); - theMethod.Invoke(skeletonDataAsset, new object[] { loadedSkeletonData }); + skeletonDataAsset.InitializeWithData(loadedSkeletonData); return skeletonDataAsset; } diff --git a/Assets/AxieInfinity/AxieMixerUnity/Resources/Sprites.meta b/Assets/AxieInfinity/AxieMixerUnity/Resources/Sprites.meta new file mode 100644 index 0000000..ea07dee --- /dev/null +++ b/Assets/AxieInfinity/AxieMixerUnity/Resources/Sprites.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 334144296db634a589e7607bdd851b66 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/AxieInfinity/AxieMixerUnity/Resources/axie-2d-v3-stuff/atlas-single/axie-2d-v3-stuff.txt b/Assets/AxieInfinity/AxieMixerUnity/Resources/axie-2d-v3-stuff/atlas-single/axie-2d-v3-stuff.txt index 3e31afb..2e7aa12 100644 --- a/Assets/AxieInfinity/AxieMixerUnity/Resources/axie-2d-v3-stuff/atlas-single/axie-2d-v3-stuff.txt +++ b/Assets/AxieInfinity/AxieMixerUnity/Resources/axie-2d-v3-stuff/atlas-single/axie-2d-v3-stuff.txt @@ -6,6470 +6,10747 @@ filter: Linear,Linear repeat: none body-bigyak.body-bigyak rotate: false - xy: 10,10 - size: 575,462 - orig: 575,462 + xy: 9,9 + size: 382,306 + orig: 382,306 offset: 0,0 index: -1 body-sumo.body-sumo rotate: false - xy: 605,10 - size: 504,398 - orig: 504,398 + xy: 409,9 + size: 335,264 + orig: 335,264 offset: 0,0 index: -1 body-wetdog.body-wetdog rotate: false - xy: 1129,10 - size: 512,380 - orig: 512,380 + xy: 762,9 + size: 340,252 + orig: 340,252 offset: 0,0 index: -1 body-fuzzy.body-fuzzy rotate: false - xy: 1661,10 - size: 483,399 - orig: 483,399 + xy: 1120,9 + size: 320,265 + orig: 320,265 offset: 0,0 index: -1 body-spiky.body-spiky rotate: false - xy: 2164,10 - size: 457,358 - orig: 457,358 + xy: 1458,9 + size: 303,238 + orig: 303,238 offset: 0,0 index: -1 body-frosty.body-xmas-01 rotate: false - xy: 2641,10 - size: 460,345 - orig: 460,345 + xy: 1779,9 + size: 306,229 + orig: 306,229 offset: 0,0 index: -1 body-curly.body-curly rotate: false - xy: 3121,10 - size: 445,347 - orig: 445,347 + xy: 2103,9 + size: 295,230 + orig: 295,230 offset: 0,0 index: -1 body-mystic-fuzzy.body-mfuzzy rotate: false - xy: 3586,10 - size: 447,337 - orig: 447,337 + xy: 2416,9 + size: 297,223 + orig: 297,223 offset: 0,0 index: -1 body-mystic-normal.body-mystic rotate: false - xy: 10,492 - size: 438,325 - orig: 438,325 + xy: 2731,9 + size: 291,216 + orig: 291,216 offset: 0,0 index: -1 body-mystic-fuzzy.body-mystic rotate: false - xy: 10,837 - size: 438,325 - orig: 438,325 + xy: 3040,9 + size: 291,216 + orig: 291,216 offset: 0,0 index: -1 body-normal.body rotate: false - xy: 10,1182 - size: 434,325 - orig: 434,325 + xy: 3349,9 + size: 288,216 + orig: 288,216 offset: 0,0 index: -1 body-agamo.body rotate: false - xy: 10,1182 - size: 434,325 - orig: 434,325 + xy: 3349,9 + size: 288,216 + orig: 288,216 offset: 0,0 index: -1 body-summer.body rotate: false - xy: 10,1527 - size: 433,324 - orig: 433,324 + xy: 3655,9 + size: 287,215 + orig: 287,215 offset: 0,0 index: -1 body-bigyak.shadow rotate: false - xy: 468,492 - size: 671,135 - orig: 671,135 + xy: 9,333 + size: 445,89 + orig: 445,89 offset: 0,0 index: -1 body-sumo.shadow rotate: false - xy: 468,492 - size: 671,135 - orig: 671,135 + xy: 9,333 + size: 445,89 + orig: 445,89 + offset: 0,0 + index: -1 +beast-10-lv2.back + rotate: false + xy: 9,440 + size: 192,194 + orig: 192,194 + offset: 0,0 + index: -1 +bird-04-lv2.back + rotate: false + xy: 219,440 + size: 195,173 + orig: 195,173 offset: 0,0 index: -1 body-spiky.shadow rotate: false - xy: 1159,492 - size: 605,122 - orig: 605,122 + xy: 472,333 + size: 402,81 + orig: 402,81 offset: 0,0 index: -1 body-curly.shadow rotate: false - xy: 1159,492 - size: 605,122 - orig: 605,122 + xy: 472,333 + size: 402,81 + orig: 402,81 offset: 0,0 index: -1 body-normal.shadow rotate: false - xy: 1159,492 - size: 605,122 - orig: 605,122 + xy: 472,333 + size: 402,81 + orig: 402,81 offset: 0,0 index: -1 body-mystic-normal.shadow rotate: false - xy: 1159,492 - size: 605,122 - orig: 605,122 + xy: 472,333 + size: 402,81 + orig: 402,81 offset: 0,0 index: -1 body-mystic-fuzzy.shadow rotate: false - xy: 1159,492 - size: 605,122 - orig: 605,122 + xy: 472,333 + size: 402,81 + orig: 402,81 offset: 0,0 index: -1 body-wetdog.shadow rotate: false - xy: 1159,492 - size: 605,122 - orig: 605,122 + xy: 472,333 + size: 402,81 + orig: 402,81 offset: 0,0 index: -1 body-agamo.shadow rotate: false - xy: 1159,492 - size: 605,122 - orig: 605,122 + xy: 472,333 + size: 402,81 + orig: 402,81 offset: 0,0 index: -1 body-fuzzy.shadow rotate: false - xy: 1159,492 - size: 605,122 - orig: 605,122 + xy: 472,333 + size: 402,81 + orig: 402,81 offset: 0,0 index: -1 body-frosty.shadow rotate: false - xy: 1159,492 - size: 605,122 - orig: 605,122 + xy: 472,333 + size: 402,81 + orig: 402,81 offset: 0,0 index: -1 -body-normal.ball +bird-10-lv2.back rotate: false - xy: 10,1871 - size: 251,256 - orig: 251,256 + xy: 9,652 + size: 166,183 + orig: 166,183 offset: 0,0 index: -1 -reptile-10.back +body-normal.ball rotate: false - xy: 10,2147 - size: 248,247 - orig: 248,247 + xy: 9,853 + size: 167,170 + orig: 167,170 offset: 0,0 index: -1 -japan-03.back +bird-06-lv2.back rotate: false - xy: 10,2414 - size: 248,245 - orig: 248,245 + xy: 9,1041 + size: 176,158 + orig: 176,158 offset: 0,0 index: -1 -reptile-08.back +reptile-10.back rotate: false - xy: 10,2679 - size: 237,247 - orig: 237,247 + xy: 9,1217 + size: 164,164 + orig: 164,164 offset: 0,0 index: -1 -japan-01.back +japan-03.back rotate: false - xy: 10,2946 - size: 238,225 - orig: 238,225 + xy: 9,1399 + size: 165,162 + orig: 165,162 offset: 0,0 index: -1 -beast-10.back +bug-10-lv2.back rotate: false - xy: 10,3191 - size: 224,238 - orig: 224,238 + xy: 432,440 + size: 196,136 + orig: 196,136 offset: 0,0 index: -1 -plant-12.back +aquatic-mystic-02-lv2.back rotate: false - xy: 10,3449 - size: 249,199 - orig: 249,199 + xy: 9,1579 + size: 149,178 + orig: 149,178 offset: 0,0 index: -1 -bird-10.back +reptile-10-lv2.back rotate: false - xy: 10,3668 - size: 215,225 - orig: 215,225 + xy: 9,1775 + size: 155,167 + orig: 155,167 offset: 0,0 index: -1 -plant-mystic-02.back +bug-06-lv2.back rotate: false - xy: 468,647 - size: 212,228 - orig: 212,228 + xy: 9,1960 + size: 158,163 + orig: 158,163 offset: 0,0 index: -1 -xmas-02.tail-glow-01 +reptile-08.back rotate: false - xy: 700,647 - size: 226,209 - orig: 226,209 + xy: 9,2141 + size: 157,164 + orig: 157,164 offset: 0,0 index: -1 -agamo-00.back +japan-01-lv2.back rotate: false - xy: 946,647 - size: 237,184 - orig: 237,184 + xy: 9,2323 + size: 163,157 + orig: 163,157 offset: 0,0 index: -1 -beast-06.back +bug-mystic-02-lv2.back rotate: false - xy: 1203,647 - size: 216,200 - orig: 216,200 + xy: 9,2498 + size: 148,168 + orig: 148,168 offset: 0,0 index: -1 -summer-as.back +bird-02-lv2.back rotate: false - xy: 254,3191 - size: 182,232 - orig: 182,232 + xy: 9,2684 + size: 151,164 + orig: 151,164 offset: 0,0 index: -1 -plant-10.back +agamo-00-lv2.back rotate: false - xy: 267,2679 - size: 181,233 - orig: 181,233 + xy: 9,2866 + size: 162,150 + orig: 162,150 offset: 0,0 index: -1 -bird-12.tail +reptile-02-lv2.back rotate: false - xy: 1439,647 - size: 218,193 - orig: 218,193 + xy: 9,3034 + size: 152,158 + orig: 152,158 offset: 0,0 index: -1 -xmas-02.back +reptile-08-lv2.back rotate: false - xy: 245,3668 - size: 200,206 - orig: 200,206 + xy: 9,3210 + size: 159,150 + orig: 159,150 offset: 0,0 index: -1 -bug-12.back +aquatic-mystic-02-lv2.tail rotate: false - xy: 1677,647 - size: 247,166 - orig: 247,166 + xy: 9,3378 + size: 146,163 + orig: 146,163 offset: 0,0 index: -1 -bird-04.back +japan-01.back rotate: false - xy: 1944,647 - size: 218,187 - orig: 218,187 + xy: 9,3559 + size: 158,150 + orig: 158,150 offset: 0,0 index: -1 -bird-06.back +reptile-mystic-02-lv2.back rotate: false - xy: 468,895 - size: 209,193 - orig: 209,193 + xy: 9,3727 + size: 160,148 + orig: 160,148 offset: 0,0 index: -1 -plant-02.back +plant-mystic-02-lv2.tail rotate: false - xy: 468,1108 - size: 184,218 - orig: 184,218 + xy: 9,3893 + size: 151,156 + orig: 151,156 offset: 0,0 index: -1 -japan-02.back +beast-10.back rotate: false - xy: 281,1871 - size: 162,246 - orig: 162,246 + xy: 219,631 + size: 149,158 + orig: 149,158 offset: 0,0 index: -1 -bug-10.back +plant-12-lv2.back rotate: false - xy: 2182,647 - size: 234,166 - orig: 234,166 + xy: 219,807 + size: 158,142 + orig: 158,142 offset: 0,0 index: -1 -reptile-04.back +beast-mystic-02-lv2.back rotate: false - xy: 268,2946 - size: 176,217 - orig: 176,217 + xy: 219,967 + size: 133,167 + orig: 133,167 offset: 0,0 index: -1 -reptile-08.tail +plant-mystic-02-lv2.back rotate: false - xy: 2436,647 - size: 234,163 - orig: 234,163 + xy: 219,1152 + size: 150,148 + orig: 150,148 offset: 0,0 index: -1 -beast-12.tail +reptile-12-lv2.back rotate: false - xy: 2690,647 - size: 235,158 - orig: 235,158 + xy: 219,1318 + size: 151,146 + orig: 151,146 offset: 0,0 index: -1 -bug-08.back +plant-12.back rotate: false - xy: 2945,647 - size: 225,159 - orig: 225,159 + xy: 219,1482 + size: 165,132 + orig: 165,132 offset: 0,0 index: -1 -aquatic-mystic-02.tail +xmas-02-lv2.tail-glow-01 rotate: false - xy: 10,3913 - size: 207,172 - orig: 207,172 + xy: 219,1632 + size: 151,143 + orig: 151,143 offset: 0,0 index: -1 -aquatic-mystic-02.back +xmas-02-lv2.back rotate: false - xy: 245,3894 - size: 184,190 - orig: 184,190 + xy: 219,1793 + size: 136,158 + orig: 136,158 offset: 0,0 index: -1 -aquatic-02.back +reptile-10-lv2.tail rotate: false - xy: 468,1346 - size: 177,195 - orig: 177,195 + xy: 219,1969 + size: 159,135 + orig: 159,135 offset: 0,0 index: -1 -bird-02.back +bird-10.back rotate: false - xy: 278,2147 - size: 152,225 - orig: 152,225 + xy: 219,2122 + size: 142,150 + orig: 142,150 offset: 0,0 index: -1 -japan-02.horn +plant-mystic-02.back rotate: false - xy: 468,1561 - size: 183,183 - orig: 183,183 + xy: 219,2290 + size: 141,151 + orig: 141,151 offset: 0,0 index: -1 -plant-04.back +beast-mystic-02-lv2.horn rotate: false - xy: 468,1764 - size: 199,167 - orig: 199,167 + xy: 219,2459 + size: 154,136 + orig: 154,136 offset: 0,0 index: -1 -bird-08.back +plant-06-lv2.back rotate: false - xy: 468,1951 - size: 192,172 - orig: 192,172 + xy: 219,2613 + size: 157,133 + orig: 157,133 offset: 0,0 index: -1 -beast-02.horn +reptile-06-lv2.back rotate: false - xy: 468,2143 - size: 197,166 - orig: 197,166 + xy: 219,2764 + size: 145,144 + orig: 145,144 offset: 0,0 index: -1 -aquatic-02.tail +xmas-02.tail-glow-01 rotate: false - xy: 468,2329 - size: 201,161 - orig: 201,161 + xy: 219,2926 + size: 150,139 + orig: 150,139 offset: 0,0 index: -1 -bird-06.horn +aquatic-02-lv2.back rotate: false - xy: 3190,647 - size: 216,148 - orig: 216,148 + xy: 219,3083 + size: 136,152 + orig: 136,152 offset: 0,0 index: -1 -plant-mystic-02.tail +aquatic-12-lv2.back rotate: false - xy: 468,2510 - size: 193,165 - orig: 193,165 + xy: 3960,9 + size: 104,197 + orig: 104,197 offset: 0,0 index: -1 -bug-06.back +bug-02-lv2.back rotate: false - xy: 468,2695 - size: 193,161 - orig: 193,161 + xy: 219,3253 + size: 133,152 + orig: 133,152 offset: 0,0 index: -1 -aquatic-08.back +reptile-04-lv2.back rotate: false - xy: 468,2876 - size: 180,172 - orig: 180,172 + xy: 219,3423 + size: 92,215 + orig: 92,215 offset: 0,0 index: -1 -plant-08.back +plant-10-lv2.tail rotate: false - xy: 278,2414 - size: 165,186 - orig: 165,186 + xy: 219,3656 + size: 148,132 + orig: 148,132 offset: 0,0 index: -1 -aquatic-10.tail +bug-12-lv2.horn rotate: false - xy: 468,3068 - size: 198,153 - orig: 198,153 + xy: 219,3806 + size: 132,147 + orig: 132,147 offset: 0,0 index: -1 -plant-06.tail +reptile-12-lv2.tail rotate: false - xy: 468,3241 - size: 208,145 - orig: 208,145 + xy: 646,440 + size: 154,126 + orig: 154,126 offset: 0,0 index: -1 -plant-04.tail +bird-mystic-02-lv2.horn rotate: false - xy: 468,3406 - size: 194,155 - orig: 194,155 + xy: 432,594 + size: 127,152 + orig: 127,152 offset: 0,0 index: -1 -beast-06.tail +agamo-00.back rotate: false - xy: 468,3581 - size: 148,202 - orig: 148,202 + xy: 818,440 + size: 157,122 + orig: 157,122 offset: 0,0 index: -1 -xmas-01.back +beast-06.back rotate: false - xy: 468,3803 - size: 186,160 - orig: 186,160 + xy: 993,440 + size: 144,133 + orig: 144,133 offset: 0,0 index: -1 -japan-02.tail +aquatic-02-lv2.tail rotate: false - xy: 3426,647 - size: 197,151 - orig: 197,151 + xy: 1155,440 + size: 147,130 + orig: 147,130 offset: 0,0 index: -1 -aquatic-06.tail +bug-mystic-02-lv2.eyes-happy rotate: false - xy: 3643,647 - size: 206,142 - orig: 206,142 + xy: 1320,440 + size: 205,93 + orig: 205,93 offset: 0,0 index: -1 -beast-12.back +bug-mystic-02-lv2.eyes-shut rotate: false - xy: 3869,647 - size: 176,165 - orig: 176,165 + xy: 1543,440 + size: 205,93 + orig: 205,93 offset: 0,0 index: -1 -plant-02.tail +bug-mystic-02-lv2.eyes-angry rotate: false - xy: 700,876 - size: 192,151 - orig: 192,151 + xy: 1766,440 + size: 205,93 + orig: 205,93 offset: 0,0 index: -1 -aquatic-06.back +bug-mystic-02-lv2.eyes rotate: false - xy: 700,1047 - size: 136,213 - orig: 136,213 + xy: 1989,440 + size: 205,93 + orig: 205,93 offset: 0,0 index: -1 -bug-06.horn +aquatic-08-lv2.tail rotate: false - xy: 1784,492 - size: 224,129 - orig: 224,129 + xy: 577,594 + size: 136,140 + orig: 136,140 offset: 0,0 index: -1 -bug-04.back +summer-ta.back rotate: false - xy: 700,1280 - size: 184,157 - orig: 184,157 + xy: 432,764 + size: 121,155 + orig: 121,155 offset: 0,0 index: -1 -beast-mystic-02.back +summer-as.back rotate: false - xy: 279,3449 - size: 165,174 - orig: 165,174 + xy: 432,937 + size: 121,154 + orig: 121,154 offset: 0,0 index: -1 -body-accessory.body-ground1a_02 +plant-10.back rotate: false - xy: 700,1457 - size: 163,176 - orig: 163,176 + xy: 432,1109 + size: 120,155 + orig: 120,155 offset: 0,0 index: -1 -body-accessory.body-ground1a_03 +bird-12-lv2.tail rotate: false - xy: 700,1653 - size: 163,176 - orig: 163,176 + xy: 2212,440 + size: 145,128 + orig: 145,128 offset: 0,0 index: -1 -body-accessory.body-ground1a_01 +bird-12.tail rotate: false - xy: 700,1849 - size: 163,176 - orig: 163,176 + xy: 2375,440 + size: 145,128 + orig: 145,128 offset: 0,0 index: -1 -body-accessory.body-ground1a_00 +aquatic-10-lv2.back rotate: false - xy: 700,2045 - size: 163,176 - orig: 163,176 + xy: 432,1282 + size: 124,148 + orig: 124,148 offset: 0,0 index: -1 -reptile-10.tail +bird-mystic-02-lv2.back rotate: false - xy: 2028,492 - size: 215,132 - orig: 215,132 + xy: 2538,440 + size: 140,131 + orig: 140,131 offset: 0,0 index: -1 -aquatic-12.back +japan-02-lv2.tail rotate: false - xy: 700,2241 - size: 144,197 - orig: 144,197 + xy: 2696,440 + size: 142,129 + orig: 142,129 offset: 0,0 index: -1 -reptile-12.back +reptile-mystic-02-lv2.tail rotate: false - xy: 700,2458 - size: 171,165 - orig: 171,165 + xy: 432,1448 + size: 111,164 + orig: 111,164 offset: 0,0 index: -1 -xmas-02.tail-glow-02 +japan-03-lv2.back rotate: false - xy: 700,2643 - size: 183,154 - orig: 183,154 + xy: 2856,440 + size: 143,127 + orig: 143,127 offset: 0,0 index: -1 -reptile-mystic-02.mouth-smile +bug-04-lv2.tail rotate: false - xy: 2263,492 - size: 215,131 - orig: 215,131 + xy: 432,1630 + size: 117,155 + orig: 117,155 offset: 0,0 index: -1 -bird-mystic-02.back +xmas-02.back rotate: false - xy: 700,2817 - size: 160,175 - orig: 160,175 + xy: 3017,440 + size: 133,136 + orig: 133,136 offset: 0,0 index: -1 -japan-03.horn +bug-12.back rotate: false - xy: 700,3012 - size: 144,192 - orig: 144,192 + xy: 219,3971 + size: 164,110 + orig: 164,110 offset: 0,0 index: -1 -xmas-02.tail-glow-03 +bird-04.back rotate: false - xy: 2498,492 - size: 206,132 - orig: 206,132 + xy: 3168,440 + size: 145,124 + orig: 145,124 offset: 0,0 index: -1 -beast-08.horn +bug-12-lv2.back rotate: false - xy: 700,3224 - size: 162,167 - orig: 162,167 + xy: 3331,440 + size: 155,116 + orig: 155,116 offset: 0,0 index: -1 -reptile-04.tail +summer-a-lv2.back rotate: false - xy: 912,876 - size: 196,138 - orig: 196,138 + xy: 577,752 + size: 131,137 + orig: 131,137 offset: 0,0 index: -1 -reptile-02.tail +aquatic-06-lv2.back rotate: false - xy: 2724,492 - size: 214,126 - orig: 214,126 + xy: 432,1803 + size: 106,169 + orig: 106,169 offset: 0,0 index: -1 -summer-ta.back +reptile-02-lv2.tail rotate: false - xy: 700,3411 - size: 145,185 - orig: 145,185 + xy: 432,1990 + size: 111,161 + orig: 111,161 offset: 0,0 index: -1 -bug-12.horn +bird-06.back rotate: false - xy: 2958,492 - size: 202,131 - orig: 202,131 + xy: 3504,440 + size: 139,128 + orig: 139,128 offset: 0,0 index: -1 -bug-04.tail +plant-02.back rotate: false - xy: 3180,492 - size: 203,130 - orig: 203,130 + xy: 432,2169 + size: 122,145 + orig: 122,145 offset: 0,0 index: -1 -beast-06.horn +summer-tc-lv2.back rotate: false - xy: 3403,492 - size: 216,122 - orig: 216,122 + xy: 3661,440 + size: 130,136 + orig: 130,136 offset: 0,0 index: -1 -plant-08.tail +plant-02-lv2.back rotate: false - xy: 700,3616 - size: 188,140 - orig: 188,140 + xy: 3809,440 + size: 132,133 + orig: 132,133 offset: 0,0 index: -1 -bird-08.tail +japan-02.back rotate: false - xy: 700,3776 - size: 158,163 - orig: 158,163 + xy: 432,2332 + size: 107,163 + orig: 107,163 offset: 0,0 index: -1 -plant-12.tail +bug-12-lv2.tail rotate: false - xy: 912,1034 - size: 180,143 - orig: 180,143 + xy: 432,2513 + size: 124,139 + orig: 124,139 offset: 0,0 index: -1 -xmas-01.tail +summer-as-lv2.back rotate: false - xy: 1128,876 - size: 186,136 - orig: 186,136 + xy: 3959,440 + size: 126,136 + orig: 126,136 offset: 0,0 index: -1 -aquatic-12.tail +bug-08-lv2.back rotate: false - xy: 3639,492 - size: 214,118 - orig: 214,118 + xy: 731,594 + size: 145,118 + orig: 145,118 offset: 0,0 index: -1 -xmas-01.horn-blink +bug-10.back rotate: false - xy: 912,1197 - size: 131,192 - orig: 131,192 + xy: 894,594 + size: 155,110 + orig: 155,110 offset: 0,0 index: -1 -plant-06.back +agamo-01-lv2.back rotate: false - xy: 912,1409 - size: 157,160 - orig: 157,160 + xy: 894,594 + size: 155,110 + orig: 155,110 offset: 0,0 index: -1 -beast-mystic-02.horn +summer-ta-lv2.back rotate: false - xy: 912,1589 - size: 154,160 - orig: 154,160 + xy: 432,2670 + size: 125,135 + orig: 125,135 offset: 0,0 index: -1 -aquatic-10.back +reptile-04.back rotate: false - xy: 912,1769 - size: 160,154 - orig: 160,154 + xy: 432,2823 + size: 117,144 + orig: 117,144 offset: 0,0 index: -1 -reptile-12.horn +beast-06-lv2.horn rotate: false - xy: 912,1943 - size: 171,144 - orig: 171,144 + xy: 1067,594 + size: 157,107 + orig: 157,107 offset: 0,0 index: -1 -reptile-06.tail +reptile-08.tail rotate: false - xy: 3873,492 - size: 185,133 - orig: 185,133 + xy: 1242,594 + size: 155,108 + orig: 155,108 offset: 0,0 index: -1 -bird-02.tail +plant-10-lv2.back rotate: false - xy: 912,2107 - size: 164,149 - orig: 164,149 + xy: 432,2985 + size: 108,155 + orig: 108,155 offset: 0,0 index: -1 -reptile-08.horn +japan-02-lv2.horn rotate: false - xy: 1334,876 - size: 181,135 - orig: 181,135 + xy: 1415,594 + size: 144,116 + orig: 144,116 offset: 0,0 index: -1 -bug-mystic-02.horn +beast-06-lv2.back rotate: false - xy: 912,2276 - size: 156,156 - orig: 156,156 + xy: 1577,594 + size: 156,107 + orig: 156,107 offset: 0,0 index: -1 -aquatic-08.tail +bug-10-lv2.ear-left rotate: false - xy: 912,2452 - size: 171,142 - orig: 171,142 + xy: 432,3158 + size: 108,154 + orig: 108,154 offset: 0,0 index: -1 -bug-04.horn +bug-06-lv2.horn rotate: false - xy: 1535,876 - size: 189,128 - orig: 189,128 + xy: 1751,594 + size: 163,102 + orig: 163,102 offset: 0,0 index: -1 -xmas-02.tail +plant-08-lv2.back rotate: false - xy: 1744,876 - size: 183,132 - orig: 183,132 + xy: 432,3330 + size: 120,136 + orig: 120,136 offset: 0,0 index: -1 -aquatic-10.eyes-happy +plant-04-lv2.back rotate: false - xy: 3586,367 - size: 230,104 - orig: 230,104 + xy: 577,907 + size: 129,126 + orig: 129,126 offset: 0,0 index: -1 -aquatic-10.eyes-shut +beast-12.tail rotate: false - xy: 3836,367 - size: 230,104 - orig: 230,104 + xy: 1932,594 + size: 156,104 + orig: 156,104 offset: 0,0 index: -1 -aquatic-10.eyes-angry +japan-02-lv2.back rotate: false - xy: 1947,876 - size: 230,104 - orig: 230,104 + xy: 2106,594 + size: 156,104 + orig: 156,104 offset: 0,0 index: -1 -aquatic-10.eyes +xmas-02-lv2.tail-glow-03 rotate: false - xy: 2197,876 - size: 230,104 - orig: 230,104 + xy: 577,1051 + size: 136,117 + orig: 136,117 offset: 0,0 index: -1 -reptile-02.back +aquatic-10-lv2.horn rotate: false - xy: 912,2614 - size: 132,181 - orig: 132,181 + xy: 2280,594 + size: 138,115 + orig: 138,115 offset: 0,0 index: -1 -bird-12.back +xmas-01-lv2.back rotate: false - xy: 912,2815 - size: 151,157 - orig: 151,157 + xy: 577,1186 + size: 134,118 + orig: 134,118 offset: 0,0 index: -1 -body-accessory.body-air1c_01 +bug-04-lv2.back rotate: false - xy: 912,2992 - size: 128,185 - orig: 128,185 + xy: 577,1322 + size: 135,117 + orig: 135,117 offset: 0,0 index: -1 -body-accessory.body-air1c_00 +reptile-04-lv2.tail rotate: false - xy: 912,3197 - size: 128,185 - orig: 128,185 + xy: 577,1457 + size: 130,121 + orig: 130,121 offset: 0,0 index: -1 -body-accessory.body-air1c_02 +bug-08.back rotate: false - xy: 912,3402 - size: 128,185 - orig: 128,185 + xy: 2436,594 + size: 149,105 + orig: 149,105 offset: 0,0 index: -1 -body-accessory.body-air1c_03 +reptile-08-lv2.horn rotate: false - xy: 912,3607 - size: 128,185 - orig: 128,185 + xy: 2603,594 + size: 137,114 + orig: 137,114 offset: 0,0 index: -1 -beast-08.back +aquatic-mystic-02.tail rotate: false - xy: 912,3812 - size: 134,176 - orig: 134,176 + xy: 2758,594 + size: 137,114 + orig: 137,114 offset: 0,0 index: -1 -xmas-01.eyes-glow +beast-02-lv2.back rotate: false - xy: 2641,375 - size: 270,87 - orig: 270,87 + xy: 432,3484 + size: 100,155 + orig: 100,155 offset: 0,0 index: -1 -aquatic-04.mouth-open +beast-10-lv2.tail rotate: false - xy: 2447,876 - size: 209,112 - orig: 209,112 + xy: 432,3657 + size: 122,127 + orig: 122,127 offset: 0,0 index: -1 -beast-mystic-02.tail +bug-06-lv2.tail rotate: false - xy: 1112,1034 - size: 158,148 - orig: 158,148 + xy: 432,3802 + size: 127,122 + orig: 127,122 offset: 0,0 index: -1 -bug-08.mouth-open +xmas-01-lv2.horn-blink rotate: false - xy: 2676,876 - size: 181,129 - orig: 181,129 + xy: 577,1596 + size: 98,158 + orig: 98,158 offset: 0,0 index: -1 -reptile-12.tail +reptile-mystic-02-lv2.ear-right rotate: false - xy: 2877,876 - size: 199,117 - orig: 199,117 + xy: 577,1772 + size: 90,172 + orig: 90,172 offset: 0,0 index: -1 -beast-04.back +beast-06-lv2.tail rotate: false - xy: 1290,1034 - size: 160,145 - orig: 160,145 + xy: 432,3942 + size: 107,144 + orig: 107,144 offset: 0,0 index: -1 -japan-03.tail +aquatic-mystic-02.back rotate: false - xy: 1112,1202 - size: 122,190 - orig: 122,190 + xy: 577,1962 + size: 122,126 + orig: 122,126 offset: 0,0 index: -1 -bird-10.tail +aquatic-12-lv2.tail rotate: false - xy: 1112,1412 - size: 122,190 - orig: 122,190 + xy: 2913,594 + size: 161,95 + orig: 161,95 offset: 0,0 index: -1 -body-accessory.body-air1d_01 +aquatic-02.back rotate: false - xy: 1254,1202 - size: 131,175 - orig: 131,175 + xy: 577,2106 + size: 117,130 + orig: 117,130 offset: 0,0 index: -1 -body-accessory.body-air1d_00 +bird-02.back rotate: false - xy: 1405,1202 - size: 131,175 - orig: 131,175 + xy: 577,2254 + size: 101,150 + orig: 101,150 offset: 0,0 index: -1 -body-accessory.body-air1d_02 +xmas-02-lv2.tail-glow-02 rotate: false - xy: 1556,1202 - size: 131,175 - orig: 131,175 + xy: 577,2422 + size: 122,123 + orig: 122,123 offset: 0,0 index: -1 -body-accessory.body-air1d_03 +reptile-mystic-02-lv2.ear-left rotate: false - xy: 1707,1202 - size: 131,175 - orig: 131,175 + xy: 577,2563 + size: 87,172 + orig: 87,172 offset: 0,0 index: -1 -xmas-01.horn +beast-12-lv2.back rotate: false - xy: 1254,1397 - size: 126,181 - orig: 126,181 + xy: 577,2753 + size: 136,110 + orig: 136,110 offset: 0,0 index: -1 -summer-tc.back +summer-a-lv2.mouth-open rotate: false - xy: 1470,1034 - size: 156,146 - orig: 156,146 + xy: 577,2881 + size: 120,124 + orig: 120,124 offset: 0,0 index: -1 -summer-a.back +bug-mystic-02-lv2.horn rotate: false - xy: 1646,1034 - size: 156,146 - orig: 156,146 + xy: 577,3023 + size: 111,133 + orig: 111,133 offset: 0,0 index: -1 -summer-ta.horn +bird-08-lv2.back rotate: false - xy: 1858,1202 - size: 149,152 - orig: 149,152 + xy: 577,3174 + size: 114,129 + orig: 114,129 offset: 0,0 index: -1 -summer-tb.horn +japan-01-lv2.tail rotate: false - xy: 2027,1202 - size: 149,152 - orig: 149,152 + xy: 577,3321 + size: 104,141 + orig: 104,141 offset: 0,0 index: -1 -summer-tc.horn +japan-02.horn rotate: false - xy: 2196,1202 - size: 149,152 - orig: 149,152 + xy: 577,3480 + size: 121,121 + orig: 121,121 offset: 0,0 index: -1 -summer-td.horn +plant-04.back rotate: false - xy: 2365,1202 - size: 149,152 - orig: 149,152 + xy: 577,3619 + size: 132,110 + orig: 132,110 offset: 0,0 index: -1 -summer-a.horn +bird-06-lv2.tail rotate: false - xy: 2534,1202 - size: 149,152 - orig: 149,152 + xy: 577,3747 + size: 114,127 + orig: 114,127 offset: 0,0 index: -1 -bird-12.horn +bird-08.back rotate: false - xy: 2703,1202 - size: 134,168 - orig: 134,168 + xy: 577,3892 + size: 127,114 + orig: 127,114 offset: 0,0 index: -1 -bug-mystic-02.eyes-happy +beast-02.horn rotate: false - xy: 3096,876 - size: 225,100 - orig: 225,100 + xy: 3092,594 + size: 131,110 + orig: 131,110 offset: 0,0 index: -1 -bug-mystic-02.eyes-shut +summer-a-lv2.mouth rotate: false - xy: 3341,876 - size: 225,100 - orig: 225,100 + xy: 731,730 + size: 120,119 + orig: 120,119 offset: 0,0 index: -1 -bug-mystic-02.eyes-angry +summer-a-lv2.mouth-bite rotate: false - xy: 3586,876 - size: 225,100 - orig: 225,100 + xy: 869,730 + size: 120,119 + orig: 120,119 offset: 0,0 index: -1 -bug-mystic-02.eyes +summer-a-lv2.mouth-smile rotate: false - xy: 3831,876 - size: 225,100 - orig: 225,100 + xy: 1007,730 + size: 120,119 + orig: 120,119 offset: 0,0 index: -1 -summer-as.horn +xmas-02-lv2.tail rotate: false - xy: 2857,1202 - size: 148,151 - orig: 148,151 + xy: 3241,594 + size: 122,117 + orig: 122,117 offset: 0,0 index: -1 -beast-06.ear-left +aquatic-02.tail rotate: false - xy: 3025,1202 - size: 139,160 - orig: 139,160 + xy: 3381,594 + size: 133,107 + orig: 133,107 offset: 0,0 index: -1 -japan-01.eyes-angry +summer-as-lv2.tail rotate: false - xy: 1822,1034 - size: 231,96 - orig: 231,96 + xy: 1145,730 + size: 118,119 + orig: 118,119 offset: 0,0 index: -1 -beast-10.horn +summer-a-lv2.tail rotate: false - xy: 3184,1202 - size: 138,159 - orig: 138,159 + xy: 1281,730 + size: 118,119 + orig: 118,119 offset: 0,0 index: -1 -bug-02.eyes-happy +reptile-10-lv2.horn rotate: false - xy: 2073,1034 - size: 217,101 - orig: 217,101 + xy: 3532,594 + size: 121,116 + orig: 121,116 offset: 0,0 index: -1 -bug-02.eyes-shut +bird-06.horn rotate: false - xy: 2310,1034 - size: 217,101 - orig: 217,101 + xy: 3671,594 + size: 143,98 + orig: 143,98 offset: 0,0 index: -1 -bug-02.eyes-angry +bird-10-lv2.horn rotate: false - xy: 2547,1034 - size: 217,101 - orig: 217,101 + xy: 731,867 + size: 100,140 + orig: 100,140 offset: 0,0 index: -1 -xmas-01.ear-right +plant-mystic-02.tail rotate: false - xy: 3342,1202 - size: 145,151 - orig: 145,151 + xy: 3832,594 + size: 128,109 + orig: 128,109 offset: 0,0 index: -1 -beast-06.ear-right +reptile-12-lv2.horn rotate: false - xy: 3507,1202 - size: 145,151 - orig: 145,151 + xy: 849,867 + size: 109,128 + orig: 109,128 offset: 0,0 index: -1 -bird-10.horn +reptile-06-lv2.horn rotate: false - xy: 3672,1202 - size: 146,149 - orig: 146,149 + xy: 1417,730 + size: 124,111 + orig: 124,111 offset: 0,0 index: -1 -beast-02.back +bug-06.back rotate: false - xy: 3838,1202 - size: 145,150 - orig: 145,150 + xy: 1559,730 + size: 128,107 + orig: 128,107 offset: 0,0 index: -1 -aquatic-08.horn +plant-12-lv2.tail rotate: false - xy: 2784,1034 - size: 169,128 - orig: 169,128 + xy: 1705,730 + size: 121,113 + orig: 121,113 offset: 0,0 index: -1 -japan-01.eyes +plant-08.back rotate: false - xy: 3121,377 - size: 232,93 - orig: 232,93 + xy: 976,867 + size: 110,124 + orig: 110,124 offset: 0,0 index: -1 -bug-02.eyes +reptile-08-lv2.tail rotate: false - xy: 2973,1034 - size: 213,101 - orig: 213,101 + xy: 1844,730 + size: 145,94 + orig: 145,94 offset: 0,0 index: -1 -bug-02.back +xmas-01-lv2.eyes-happy rotate: false - xy: 3206,1034 - size: 147,146 - orig: 147,146 + xy: 892,333 + size: 179,76 + orig: 179,76 offset: 0,0 index: -1 -japan-01.ear-left +xmas-01-lv2.eyes-shut rotate: false - xy: 1112,1622 - size: 116,184 - orig: 116,184 + xy: 1089,333 + size: 179,76 + orig: 179,76 offset: 0,0 index: -1 -beast-02.tail +xmas-01-lv2.eyes-angry rotate: false - xy: 3373,1034 - size: 149,143 - orig: 149,143 + xy: 1286,333 + size: 179,76 + orig: 179,76 offset: 0,0 index: -1 -aquatic-04.tail +aquatic-08.back rotate: false - xy: 3542,1034 - size: 156,135 - orig: 156,135 + xy: 2007,730 + size: 119,114 + orig: 119,114 offset: 0,0 index: -1 -aquatic-10.horn +xmas-01-lv2.tail rotate: false - xy: 3718,1034 - size: 162,130 - orig: 162,130 + xy: 2144,730 + size: 133,102 + orig: 133,102 offset: 0,0 index: -1 -summer-a.tail +xmas-01-lv2.horn rotate: false - xy: 3900,1034 - size: 145,145 - orig: 145,145 + xy: 731,1025 + size: 90,150 + orig: 90,150 offset: 0,0 index: -1 -bug-mystic-02.back +aquatic-08-lv2.back rotate: false - xy: 1400,1397 - size: 155,135 - orig: 155,135 + xy: 2295,730 + size: 119,113 + orig: 119,113 offset: 0,0 index: -1 -reptile-mystic-02.back +plant-06-lv2.tail rotate: false - xy: 1400,1552 - size: 134,156 - orig: 134,156 + xy: 2432,730 + size: 119,113 + orig: 119,113 offset: 0,0 index: -1 -summer-as.eyes-happy +bird-mystic-02-lv2.tail rotate: false - xy: 468,3983 - size: 211,99 - orig: 211,99 + xy: 849,1013 + size: 109,123 + orig: 109,123 offset: 0,0 index: -1 -summer-as.eyes-shut +aquatic-10.tail rotate: false - xy: 1575,1397 - size: 211,99 - orig: 211,99 + xy: 2569,730 + size: 131,102 + orig: 131,102 offset: 0,0 index: -1 -summer-a.eyes-shut +plant-04.tail rotate: false - xy: 1575,1397 - size: 211,99 - orig: 211,99 + xy: 2718,730 + size: 129,103 + orig: 129,103 offset: 0,0 index: -1 -summer-as.eyes-angry +plant-06.tail rotate: false - xy: 1806,1397 - size: 211,99 - orig: 211,99 + xy: 2865,730 + size: 138,96 + orig: 138,96 offset: 0,0 index: -1 -summer-as.eyes +bug-08-lv2.tail rotate: false - xy: 2037,1397 - size: 211,99 - orig: 211,99 + xy: 3021,730 + size: 117,113 + orig: 117,113 offset: 0,0 index: -1 -summer-a.eyes-happy +aquatic-08-lv2.horn rotate: false - xy: 2268,1397 - size: 211,99 - orig: 211,99 + xy: 3156,730 + size: 129,102 + orig: 129,102 offset: 0,0 index: -1 -summer-a.eyes-angry +xmas-01.back rotate: false - xy: 2499,1397 - size: 211,99 - orig: 211,99 + xy: 3303,730 + size: 124,106 + orig: 124,106 offset: 0,0 index: -1 -summer-a.eyes +beast-06.tail rotate: false - xy: 2730,1397 - size: 211,99 - orig: 211,99 + xy: 731,1193 + size: 98,134 + orig: 98,134 offset: 0,0 index: -1 -aquatic-mystic-02.horn +bird-06-lv2.horn rotate: false - xy: 700,3959 - size: 183,114 - orig: 183,114 + xy: 329,3423 + size: 83,158 + orig: 83,158 offset: 0,0 index: -1 -bug-12.tail +aquatic-10-lv2.tail rotate: false - xy: 2961,1397 - size: 158,132 - orig: 158,132 + xy: 3445,730 + size: 126,104 + orig: 126,104 offset: 0,0 index: -1 -summer-as.tail +plant-02-lv2.tail rotate: false - xy: 1554,1552 - size: 144,144 - orig: 144,144 + xy: 3589,730 + size: 132,99 + orig: 132,99 offset: 0,0 index: -1 -bird-04.tail +aquatic-04-lv2.horn rotate: false - xy: 3139,1397 - size: 164,126 - orig: 164,126 + xy: 3739,730 + size: 133,98 + orig: 133,98 offset: 0,0 index: -1 -reptile-mystic-02.horn +japan-02.tail rotate: false - xy: 3323,1397 - size: 161,128 - orig: 161,128 + xy: 3890,730 + size: 130,100 + orig: 130,100 offset: 0,0 index: -1 -reptile-10.horn +bug-mystic-02-lv2.tail rotate: false - xy: 3504,1397 - size: 161,128 - orig: 161,128 + xy: 731,1345 + size: 90,144 + orig: 90,144 offset: 0,0 index: -1 -reptile-06.back +aquatic-06.tail rotate: false - xy: 3685,1397 - size: 189,109 - orig: 189,109 + xy: 1104,867 + size: 137,94 + orig: 137,94 offset: 0,0 index: -1 -beast-10.tail +japan-01-lv2.eyes-happy rotate: false - xy: 1400,1728 - size: 132,156 - orig: 132,156 + xy: 1483,333 + size: 157,82 + orig: 157,82 offset: 0,0 index: -1 -bird-mystic-02.tail +japan-01-lv2.eyes-angry rotate: false - xy: 3894,1397 - size: 157,131 - orig: 157,131 + xy: 1658,333 + size: 157,82 + orig: 157,82 offset: 0,0 index: -1 -bug-04.eyes-happy +japan-01-lv2.eyes rotate: false - xy: 1718,1552 - size: 236,87 - orig: 236,87 + xy: 1833,333 + size: 157,82 + orig: 157,82 offset: 0,0 index: -1 -bug-04.eyes-shut +beast-12.back rotate: false - xy: 1974,1552 - size: 236,87 - orig: 236,87 + xy: 1259,867 + size: 117,110 + orig: 117,110 offset: 0,0 index: -1 -bug-04.eyes-angry +beast-04-lv2.back rotate: false - xy: 2230,1552 - size: 236,87 - orig: 236,87 + xy: 1394,867 + size: 120,107 + orig: 120,107 offset: 0,0 index: -1 -bug-04.eyes +bird-12-lv2.back rotate: false - xy: 2486,1552 - size: 236,87 - orig: 236,87 + xy: 1532,867 + size: 122,105 + orig: 122,105 offset: 0,0 index: -1 -xmas-01.ear-left +plant-02.tail rotate: false - xy: 1554,1716 - size: 139,147 - orig: 139,147 + xy: 1672,867 + size: 127,100 + orig: 127,100 offset: 0,0 index: -1 -plant-10.tail +plant-08-lv2.tail rotate: false - xy: 2742,1552 - size: 170,120 - orig: 170,120 + xy: 1817,867 + size: 127,100 + orig: 127,100 offset: 0,0 index: -1 -summer-as.eyes-upper +aquatic-06.back rotate: false - xy: 2932,1552 - size: 209,97 - orig: 209,97 + xy: 731,1507 + size: 90,141 + orig: 90,141 offset: 0,0 index: -1 -summer-a.eyes-upper +bug-04.back rotate: false - xy: 3161,1552 - size: 209,97 - orig: 209,97 + xy: 1962,867 + size: 122,104 + orig: 122,104 offset: 0,0 index: -1 -plant-08.horn +bug-06.horn rotate: false - xy: 3390,1552 - size: 150,134 - orig: 150,134 + xy: 2008,333 + size: 149,85 + orig: 149,85 offset: 0,0 index: -1 -bug-08.eyes-happy +beast-02-lv2.horn rotate: false - xy: 3560,1552 - size: 185,108 - orig: 185,108 + xy: 2102,867 + size: 113,112 + orig: 113,112 offset: 0,0 index: -1 -bug-08.eyes-shut +beast-mystic-02.back rotate: false - xy: 3765,1552 - size: 185,108 - orig: 185,108 + xy: 3978,594 + size: 109,116 + orig: 109,116 offset: 0,0 index: -1 -bug-08.eyes-angry +aquatic-04-lv2.tail rotate: false - xy: 1713,1716 - size: 185,108 - orig: 185,108 + xy: 2233,867 + size: 112,112 + orig: 112,112 offset: 0,0 index: -1 -bug-08.eyes +aquatic-06-lv2.tail rotate: false - xy: 1918,1716 - size: 185,108 - orig: 185,108 + xy: 2363,867 + size: 111,113 + orig: 111,113 offset: 0,0 index: -1 -beast-08.eyes-happy +body-accessory.body-ground1a_02 rotate: false - xy: 2123,1716 - size: 210,94 - orig: 210,94 + xy: 849,1154 + size: 108,116 + orig: 108,116 offset: 0,0 index: -1 -japan-01.eyes-shut +body-accessory.body-ground1a_03 rotate: false - xy: 2353,1716 - size: 232,85 - orig: 232,85 + xy: 849,1288 + size: 108,116 + orig: 108,116 offset: 0,0 index: -1 -reptile-02.horn +body-accessory.body-ground1a_01 rotate: false - xy: 1713,1844 - size: 149,132 - orig: 149,132 + xy: 849,1422 + size: 108,116 + orig: 108,116 offset: 0,0 index: -1 -body-wetdog.body-braid +body-accessory.body-ground1a_00 rotate: false - xy: 1254,1598 - size: 126,156 - orig: 126,156 + xy: 849,1556 + size: 108,116 + orig: 108,116 offset: 0,0 index: -1 -bug-08.tail +bird-04-lv2.horn rotate: false - xy: 1882,1844 - size: 150,131 - orig: 150,131 + xy: 849,1690 + size: 104,120 + orig: 104,120 offset: 0,0 index: -1 -reptile-mystic-02.ear-left +reptile-mystic-02-lv2.mouth-open rotate: false - xy: 1400,1904 - size: 131,148 - orig: 131,148 + xy: 2175,333 + size: 166,75 + orig: 166,75 offset: 0,0 index: -1 -body-summer.shadow +aquatic-12.back rotate: false - xy: 1129,410 - size: 321,60 - orig: 321,60 + xy: 731,1666 + size: 95,131 + orig: 95,131 offset: 0,0 index: -1 -aquatic-04.horn +agamo-00-lv2.tail rotate: false - xy: 1400,2072 - size: 131,147 - orig: 131,147 + xy: 2359,333 + size: 143,87 + orig: 143,87 offset: 0,0 index: -1 -bug-mystic-02.ear-left +reptile-10.tail rotate: false - xy: 1112,1826 - size: 106,181 - orig: 106,181 + xy: 2359,333 + size: 143,87 + orig: 143,87 offset: 0,0 index: -1 -bird-04.horn +beast-12-lv2.tail rotate: false - xy: 1400,2239 - size: 128,149 - orig: 128,149 + xy: 2492,867 + size: 110,113 + orig: 110,113 offset: 0,0 index: -1 -bug-10.tail +reptile-12.back rotate: false - xy: 1713,1996 - size: 149,128 - orig: 149,128 + xy: 2620,867 + size: 113,110 + orig: 113,110 offset: 0,0 index: -1 -japan-01.eyes-happy +aquatic-04-lv2.back rotate: false - xy: 2164,388 - size: 232,82 - orig: 232,82 + xy: 731,1815 + size: 92,135 + orig: 92,135 offset: 0,0 index: -1 -plant-10.horn +bird-08-lv2.tail rotate: false - xy: 1400,2408 - size: 131,145 - orig: 131,145 + xy: 849,1828 + size: 104,119 + orig: 104,119 offset: 0,0 index: -1 -japan-03.eyes-angry +reptile-mystic-02.mouth-smile rotate: false - xy: 2605,1716 - size: 183,103 - orig: 183,103 + xy: 2520,333 + size: 142,87 + orig: 142,87 offset: 0,0 index: -1 -reptile-mystic-02.ear-right +xmas-02.tail-glow-02 rotate: false - xy: 1254,1774 - size: 124,152 - orig: 124,152 + xy: 2751,867 + size: 121,102 + orig: 121,102 offset: 0,0 index: -1 -reptile-08.eyes-angry +aquatic-mystic-02-lv2.horn rotate: false - xy: 2808,1716 - size: 176,107 - orig: 176,107 + xy: 2890,867 + size: 127,97 + orig: 127,97 offset: 0,0 index: -1 -bug-02.horn +bird-mystic-02.back rotate: false - xy: 2052,1844 - size: 151,124 - orig: 151,124 + xy: 849,1965 + size: 106,116 + orig: 106,116 offset: 0,0 index: -1 -aquatic-04.back +bug-mystic-02-lv2.mouth-bite rotate: false - xy: 1254,1946 - size: 123,152 - orig: 123,152 + xy: 2680,333 + size: 142,86 + orig: 142,86 offset: 0,0 index: -1 -body-accessory.body-hip1b +japan-03.horn rotate: false - xy: 1554,1883 - size: 135,137 - orig: 135,137 + xy: 731,1968 + size: 95,127 + orig: 95,127 offset: 0,0 index: -1 -reptile-06.horn +beast-08-lv2.horn rotate: false - xy: 3004,1716 - size: 174,106 - orig: 174,106 + xy: 3035,867 + size: 112,107 + orig: 112,107 offset: 0,0 index: -1 -body-sumo.body-pattern +reptile-02.tail rotate: false - xy: 1112,2027 - size: 112,164 - orig: 112,164 + xy: 2840,333 + size: 142,84 + orig: 142,84 offset: 0,0 index: -1 -bird-02.horn +beast-08.horn rotate: false - xy: 2223,1844 - size: 154,119 - orig: 154,119 + xy: 849,2099 + size: 107,111 + orig: 107,111 offset: 0,0 index: -1 -bird-mystic-02.horn +xmas-02.tail-glow-03 rotate: false - xy: 2397,1844 - size: 155,117 - orig: 155,117 + xy: 3000,333 + size: 136,87 + orig: 136,87 offset: 0,0 index: -1 -plant-06.ear-left +reptile-04.tail rotate: false - xy: 1400,2573 - size: 134,135 - orig: 134,135 + xy: 3165,867 + size: 130,91 + orig: 130,91 offset: 0,0 index: -1 -japan-02.mouth-smile +bug-02-lv2.tail rotate: false - xy: 3198,1716 - size: 215,84 - orig: 215,84 + xy: 731,2113 + size: 90,131 + orig: 90,131 offset: 0,0 index: -1 -xmas-02.horn +bug-08-lv2.mouth-open rotate: false - xy: 1400,2728 - size: 130,138 - orig: 130,138 + xy: 3313,867 + size: 119,99 + orig: 119,99 offset: 0,0 index: -1 -aquatic-02.horn +beast-06.horn rotate: false - xy: 3433,1716 - size: 174,103 - orig: 174,103 + xy: 3154,333 + size: 144,81 + orig: 144,81 offset: 0,0 index: -1 -reptile-mystic-02.tail +bug-12.horn rotate: false - xy: 1554,2040 - size: 138,129 - orig: 138,129 + xy: 3316,333 + size: 134,87 + orig: 134,87 offset: 0,0 index: -1 -beast-08.eyes +plant-08.tail rotate: false - xy: 3627,1716 - size: 210,84 - orig: 210,84 + xy: 3450,867 + size: 125,93 + orig: 125,93 offset: 0,0 index: -1 -japan-01.horn +aquatic-mystic-02-lv2.mouth-open rotate: false - xy: 1254,2118 - size: 126,140 - orig: 126,140 + xy: 3468,333 + size: 157,74 + orig: 157,74 offset: 0,0 index: -1 -beast-12.horn +bug-04.tail rotate: false - xy: 3857,1716 - size: 163,108 - orig: 163,108 + xy: 3643,333 + size: 135,86 + orig: 135,86 offset: 0,0 index: -1 -beast-04.eyes-happy +beast-08-lv2.tail rotate: false - xy: 3373,377 - size: 188,93 - orig: 188,93 + xy: 731,2262 + size: 98,118 + orig: 98,118 offset: 0,0 index: -1 -beast-08.eyes-shut +reptile-mystic-02-lv2.horn rotate: false - xy: 2572,1844 - size: 210,83 - orig: 210,83 + xy: 3796,333 + size: 141,82 + orig: 141,82 offset: 0,0 index: -1 -beast-08.eyes-angry +summer-as-lv2.eyes-upper rotate: false - xy: 2802,1844 - size: 210,83 - orig: 210,83 + xy: 3655,242 + size: 158,73 + orig: 158,73 offset: 0,0 index: -1 -beast-08.tail +summer-a-lv2.eyes-upper rotate: false - xy: 1400,2886 - size: 133,131 - orig: 133,131 + xy: 3593,867 + size: 158,73 + orig: 158,73 offset: 0,0 index: -1 -bug-mystic-02.tail +aquatic-12-lv2.horn rotate: false - xy: 1400,3037 - size: 133,130 - orig: 133,130 + xy: 3769,867 + size: 150,76 + orig: 150,76 offset: 0,0 index: -1 -body-bigyak.body-braid2 +bird-08.tail rotate: false - xy: 1112,2211 - size: 106,163 - orig: 106,163 + xy: 849,2228 + size: 105,108 + orig: 105,108 offset: 0,0 index: -1 -plant-12.horn +plant-12.tail rotate: false - xy: 1112,2394 - size: 119,144 - orig: 119,144 + xy: 3937,867 + size: 119,95 + orig: 119,95 offset: 0,0 index: -1 -aquatic-mystic-02.eyes-shut +bug-02-lv2.eyes-happy rotate: false - xy: 3032,1844 - size: 213,80 - orig: 213,80 + xy: 2731,243 + size: 161,70 + orig: 161,70 offset: 0,0 index: -1 -aquatic-mystic-02.eyes-angry +bug-02-lv2.eyes-shut rotate: false - xy: 3265,1844 - size: 213,80 - orig: 213,80 + xy: 3040,243 + size: 161,70 + orig: 161,70 offset: 0,0 index: -1 -aquatic-mystic-02.eyes +bug-02-lv2.eyes-angry rotate: false - xy: 3498,1844 - size: 213,80 - orig: 213,80 + xy: 3349,243 + size: 161,70 + orig: 161,70 offset: 0,0 index: -1 -beast-02.ear-left +bug-02-lv2.eyes rotate: false - xy: 1112,2558 - size: 115,147 - orig: 115,147 + xy: 976,1009 + size: 161,70 + orig: 161,70 offset: 0,0 index: -1 -reptile-02.eyes-angry +aquatic-10-lv2.eyes-happy rotate: false - xy: 2416,388 - size: 202,83 - orig: 202,83 + xy: 976,1097 + size: 154,73 + orig: 154,73 offset: 0,0 index: -1 -reptile-mystic-02.eyes-happy +aquatic-10-lv2.eyes-shut rotate: false - xy: 3731,1844 - size: 199,84 - orig: 199,84 + xy: 976,1188 + size: 154,73 + orig: 154,73 offset: 0,0 index: -1 -reptile-mystic-02.eyes-shut +aquatic-10-lv2.eyes-angry rotate: false - xy: 1882,1995 - size: 199,84 - orig: 199,84 + xy: 976,1279 + size: 154,73 + orig: 154,73 offset: 0,0 index: -1 -reptile-mystic-02.eyes-angry +aquatic-10-lv2.eyes rotate: false - xy: 2101,1995 - size: 199,84 - orig: 199,84 + xy: 976,1370 + size: 154,73 + orig: 154,73 offset: 0,0 index: -1 -reptile-mystic-02.eyes +plant-08-lv2.eyes-shut rotate: false - xy: 2320,1995 - size: 199,84 - orig: 199,84 + xy: 976,1461 + size: 119,94 + orig: 119,94 offset: 0,0 index: -1 -reptile-02.ear-left +plant-08-lv2.eyes rotate: false - xy: 1400,3187 - size: 129,129 - orig: 129,129 + xy: 976,1573 + size: 119,94 + orig: 119,94 offset: 0,0 index: -1 -reptile-08.eyes +bug-04-lv2.eyes-happy rotate: false - xy: 1882,2099 - size: 176,94 - orig: 176,94 + xy: 976,1685 + size: 151,74 + orig: 151,74 offset: 0,0 index: -1 -reptile-04.eyes-angry +bug-04-lv2.eyes-shut rotate: false - xy: 2078,2099 - size: 188,88 - orig: 188,88 + xy: 976,1777 + size: 151,74 + orig: 151,74 offset: 0,0 index: -1 -bird-06.tail +bug-04-lv2.eyes-angry rotate: false - xy: 1400,3336 - size: 131,126 - orig: 131,126 + xy: 976,1869 + size: 151,74 + orig: 151,74 offset: 0,0 index: -1 -japan-03.eyes +bug-04-lv2.eyes rotate: false - xy: 2078,2207 - size: 183,90 - orig: 183,90 + xy: 976,1961 + size: 151,74 + orig: 151,74 offset: 0,0 index: -1 -japan-02.mouth-open +beast-mystic-02-lv2.tail rotate: false - xy: 2281,2207 - size: 184,89 - orig: 184,89 + xy: 849,2354 + size: 104,107 + orig: 104,107 offset: 0,0 index: -1 -bird-10.eyes-angry +plant-04-lv2.tail rotate: false - xy: 2286,2099 - size: 188,87 - orig: 188,87 + xy: 849,2479 + size: 104,107 + orig: 104,107 offset: 0,0 index: -1 -reptile-08.eyes-happy +aquatic-12.tail rotate: false - xy: 1882,2213 - size: 163,100 - orig: 163,100 + xy: 976,2053 + size: 142,78 + orig: 142,78 offset: 0,0 index: -1 -reptile-02.eyes +xmas-01.tail rotate: false - xy: 2539,1995 - size: 206,79 - orig: 206,79 + xy: 3960,224 + size: 123,90 + orig: 123,90 offset: 0,0 index: -1 -bug-mystic-02.mouth-bite +xmas-01.horn-blink rotate: false - xy: 2931,375 - size: 169,96 - orig: 169,96 + xy: 731,2398 + size: 87,127 + orig: 87,127 offset: 0,0 index: -1 -bug-02.tail +plant-06.back rotate: false - xy: 1400,3482 - size: 128,126 - orig: 128,126 + xy: 849,2604 + size: 104,106 + orig: 104,106 offset: 0,0 index: -1 -bird-mystic-02.eyes-angry +bug-08-lv2.horn rotate: false - xy: 2765,1995 - size: 215,75 - orig: 215,75 + xy: 2416,250 + size: 172,64 + orig: 172,64 offset: 0,0 index: -1 -bird-mystic-02.eyes +aquatic-04-lv2.mouth-open rotate: false - xy: 3000,1995 - size: 215,75 - orig: 215,75 + xy: 3955,333 + size: 125,88 + orig: 125,88 offset: 0,0 index: -1 -bug-10.eyes-happy +bird-04-lv2.tail rotate: false - xy: 3235,1995 - size: 209,77 - orig: 209,77 + xy: 976,2149 + size: 112,97 + orig: 112,97 offset: 0,0 index: -1 -bug-10.eyes-shut +reptile-12.horn rotate: false - xy: 3464,1995 - size: 209,77 - orig: 209,77 + xy: 976,2264 + size: 113,96 + orig: 113,96 offset: 0,0 index: -1 -bug-10.eyes-angry +reptile-06.tail rotate: false - xy: 3693,1995 - size: 209,77 - orig: 209,77 + xy: 976,2378 + size: 123,88 + orig: 123,88 offset: 0,0 index: -1 -bug-10.eyes +beast-mystic-02.horn rotate: false - xy: 2494,2099 - size: 209,77 - orig: 209,77 + xy: 849,2728 + size: 102,106 + orig: 102,106 offset: 0,0 index: -1 -reptile-04.horn +aquatic-10.back rotate: false - xy: 1112,2725 - size: 104,154 - orig: 104,154 + xy: 849,2852 + size: 106,102 + orig: 106,102 offset: 0,0 index: -1 -reptile-10.eyes-angry +reptile-08.horn rotate: false - xy: 2723,2099 - size: 205,78 - orig: 205,78 + xy: 976,2484 + size: 120,90 + orig: 120,90 offset: 0,0 index: -1 -plant-08.eyes-happy +xmas-01-lv2.eyes rotate: false - xy: 2948,2099 - size: 183,86 - orig: 183,86 + xy: 976,2592 + size: 142,76 + orig: 142,76 offset: 0,0 index: -1 -plant-08.eyes-shut +bird-02.tail rotate: false - xy: 3151,2099 - size: 183,86 - orig: 183,86 + xy: 849,2972 + size: 109,99 + orig: 109,99 offset: 0,0 index: -1 -plant-08.eyes-angry +reptile-06-lv2.tail rotate: false - xy: 3354,2099 - size: 183,86 - orig: 183,86 + xy: 976,2686 + size: 113,95 + orig: 113,95 offset: 0,0 index: -1 -plant-08.eyes +bug-mystic-02.horn rotate: false - xy: 3557,2099 - size: 183,86 - orig: 183,86 + xy: 849,3089 + size: 104,103 + orig: 104,103 offset: 0,0 index: -1 -body-bigyak.body-braid +bug-04-lv2.horn rotate: false - xy: 1112,2899 - size: 107,147 - orig: 107,147 + xy: 976,2799 + size: 110,97 + orig: 110,97 offset: 0,0 index: -1 -bird-mystic-02.ear-left +reptile-mystic-02-lv2.mouth-smile rotate: false - xy: 1112,3066 - size: 104,151 - orig: 104,151 + xy: 976,2914 + size: 130,82 + orig: 130,82 offset: 0,0 index: -1 -reptile-08.mouth-open +japan-03-lv2.tail rotate: false - xy: 1882,2333 - size: 176,89 - orig: 176,89 + xy: 976,3014 + size: 117,91 + orig: 117,91 offset: 0,0 index: -1 -reptile-04.eyes-shut +bug-04.horn rotate: false - xy: 1882,2442 - size: 161,97 - orig: 161,97 + xy: 976,3123 + size: 125,85 + orig: 125,85 offset: 0,0 index: -1 -aquatic-08.eyes-happy +aquatic-08.tail rotate: false - xy: 3760,2099 - size: 183,85 - orig: 183,85 + xy: 976,3226 + size: 113,94 + orig: 113,94 offset: 0,0 index: -1 -beast-mystic-02.ear-left +bird-02-lv2.tail rotate: false - xy: 1112,3237 - size: 108,144 - orig: 108,144 + xy: 976,3338 + size: 119,89 + orig: 119,89 offset: 0,0 index: -1 -plant-06.ear-right +japan-03-lv2.horn rotate: false - xy: 1112,3401 - size: 113,137 - orig: 113,137 + xy: 731,2543 + size: 76,139 + orig: 76,139 offset: 0,0 index: -1 -reptile-mystic-02.mouth-bite +agamo-01-lv2.horn rotate: false - xy: 2485,2207 - size: 209,74 - orig: 209,74 + xy: 976,3445 + size: 120,88 + orig: 120,88 offset: 0,0 index: -1 -reptile-04.eyes +aquatic-10.eyes-happy rotate: false - xy: 2714,2207 - size: 188,82 - orig: 188,82 + xy: 1155,1009 + size: 153,69 + orig: 153,69 offset: 0,0 index: -1 -aquatic-mystic-02.eyes-happy +aquatic-10.eyes-shut rotate: false - xy: 2922,2207 - size: 218,70 - orig: 218,70 + xy: 1326,1009 + size: 153,69 + orig: 153,69 offset: 0,0 index: -1 -japan-01.ear-right +aquatic-10.eyes-angry rotate: false - xy: 1112,3558 - size: 87,175 - orig: 87,175 + xy: 1497,1009 + size: 153,69 + orig: 153,69 offset: 0,0 index: -1 -aquatic-04.mouth +aquatic-10.eyes rotate: false - xy: 3160,2207 - size: 200,75 - orig: 200,75 + xy: 1668,1009 + size: 153,69 + orig: 153,69 offset: 0,0 index: -1 -reptile-10.eyes +xmas-02.tail rotate: false - xy: 3380,2207 - size: 205,73 - orig: 205,73 + xy: 976,3551 + size: 121,87 + orig: 121,87 offset: 0,0 index: -1 -aquatic-04.mouth-smile +beast-mystic-02-lv2.eyes-happy rotate: false - xy: 3605,2207 - size: 213,70 - orig: 213,70 + xy: 1839,1009 + size: 152,69 + orig: 152,69 offset: 0,0 index: -1 -aquatic-04.eyes-happy +beast-mystic-02-lv2.eyes-shut rotate: false - xy: 3838,2207 - size: 193,77 - orig: 193,77 + xy: 2009,1009 + size: 152,69 + orig: 152,69 offset: 0,0 index: -1 -aquatic-04.eyes-shut +beast-mystic-02-lv2.eyes-angry rotate: false - xy: 2281,2316 - size: 193,77 - orig: 193,77 + xy: 2179,1009 + size: 152,69 + orig: 152,69 offset: 0,0 index: -1 -aquatic-04.eyes-angry +beast-mystic-02-lv2.eyes rotate: false - xy: 2494,2316 - size: 193,77 - orig: 193,77 + xy: 2349,1009 + size: 152,69 + orig: 152,69 offset: 0,0 index: -1 -aquatic-04.eyes +reptile-12-lv2.ear-left rotate: false - xy: 2707,2316 - size: 193,77 - orig: 193,77 + xy: 731,2700 + size: 88,119 + orig: 88,119 offset: 0,0 index: -1 -aquatic-08.mouth-smile +body-accessory.body-air1c_01 rotate: false - xy: 1713,2144 - size: 147,101 - orig: 147,101 + xy: 731,2837 + size: 85,123 + orig: 85,123 offset: 0,0 index: -1 -aquatic-06.horn +body-accessory.body-air1c_00 rotate: false - xy: 1713,2265 - size: 147,101 - orig: 147,101 + xy: 731,2978 + size: 85,123 + orig: 85,123 offset: 0,0 index: -1 -japan-01.tail +body-accessory.body-air1c_02 rotate: false - xy: 1713,2386 - size: 147,101 - orig: 147,101 + xy: 731,3119 + size: 85,123 + orig: 85,123 offset: 0,0 index: -1 -bird-08.eyes-angry +body-accessory.body-air1c_03 rotate: false - xy: 2078,2317 - size: 179,82 - orig: 179,82 + xy: 731,3260 + size: 85,123 + orig: 85,123 offset: 0,0 index: -1 -bird-08.eyes +japan-03-lv2.mouth-open rotate: false - xy: 2078,2419 - size: 179,82 - orig: 179,82 + xy: 976,3656 + size: 123,85 + orig: 123,85 offset: 0,0 index: -1 -aquatic-08.mouth-bite +reptile-02.back rotate: false - xy: 1713,2507 - size: 145,101 - orig: 145,101 + xy: 731,3401 + size: 87,120 + orig: 87,120 offset: 0,0 index: -1 -reptile-08.mouth-smile +beast-08.back rotate: false - xy: 2920,2316 - size: 209,70 - orig: 209,70 + xy: 731,3539 + size: 89,117 + orig: 89,117 offset: 0,0 index: -1 -reptile-02.mouth-bite +plant-10-lv2.horn rotate: false - xy: 3149,2316 - size: 209,70 - orig: 209,70 + xy: 731,3674 + size: 100,104 + orig: 100,104 offset: 0,0 index: -1 -reptile-08.eyes-shut +bird-12.back rotate: false - xy: 1882,2559 - size: 155,94 - orig: 155,94 + xy: 731,3796 + size: 100,104 + orig: 100,104 offset: 0,0 index: -1 -reptile-02.ear-right +xmas-02-lv2.horn rotate: false - xy: 1112,3753 - size: 107,136 - orig: 107,136 + xy: 849,3210 + size: 105,99 + orig: 105,99 offset: 0,0 index: -1 -aquatic-08.eyes-shut +xmas-01.eyes-glow rotate: false - xy: 2078,2521 - size: 183,79 - orig: 183,79 + xy: 1779,256 + size: 179,58 + orig: 179,58 offset: 0,0 index: -1 -aquatic-08.eyes +japan-02-lv2.mouth-open rotate: false - xy: 2078,2620 - size: 183,79 - orig: 183,79 + xy: 2519,1009 + size: 150,69 + orig: 150,69 offset: 0,0 index: -1 -reptile-02.eyes-shut +japan-01-lv2.mouth-open rotate: false - xy: 3378,2316 - size: 190,76 - orig: 190,76 + xy: 976,3759 + size: 126,82 + orig: 126,82 offset: 0,0 index: -1 -plant-mystic-02.horn +bug-08.mouth-open rotate: false - xy: 1112,3909 - size: 103,140 - orig: 103,140 + xy: 976,3859 + size: 120,86 + orig: 120,86 offset: 0,0 index: -1 -aquatic-04.mouth-bite +reptile-12.tail rotate: false - xy: 3588,2316 - size: 231,62 - orig: 231,62 + xy: 976,3963 + size: 132,78 + orig: 132,78 offset: 0,0 index: -1 -bird-mystic-02.eyes-shut +aquatic-04.mouth-open rotate: false - xy: 3839,2316 - size: 215,66 - orig: 215,66 + xy: 1148,1097 + size: 138,74 + orig: 138,74 offset: 0,0 index: -1 -plant-06.horn +japan-03.tail rotate: false - xy: 1254,2278 - size: 114,124 - orig: 114,124 + xy: 731,3918 + size: 81,126 + orig: 81,126 offset: 0,0 index: -1 -bird-mystic-02.eyes-happy +bird-10.tail rotate: false - xy: 2281,2413 - size: 215,65 - orig: 215,65 + xy: 849,3327 + size: 81,126 + orig: 81,126 offset: 0,0 index: -1 -japan-01.mouth-open +beast-mystic-02.tail rotate: false - xy: 1254,2422 - size: 121,115 - orig: 121,115 + xy: 849,3471 + size: 104,98 + orig: 104,98 offset: 0,0 index: -1 -beast-04.eyes-angry +beast-04.back rotate: false - xy: 2281,2498 - size: 188,74 - orig: 188,74 + xy: 849,3587 + size: 106,96 + orig: 106,96 offset: 0,0 index: -1 -bird-08.horn +aquatic-02-lv2.horn rotate: false - xy: 1713,2628 - size: 149,93 - orig: 149,93 + xy: 1148,1189 + size: 124,82 + orig: 124,82 offset: 0,0 index: -1 -plant-08.ear-left +plant-mystic-02-lv2.ear-left rotate: false - xy: 1254,2557 - size: 109,127 - orig: 109,127 + xy: 849,3701 + size: 84,121 + orig: 84,121 offset: 0,0 index: -1 -reptile-04.eyes-happy +body-accessory.body-air1d_01 rotate: false - xy: 2489,2498 - size: 189,73 - orig: 189,73 + xy: 849,3840 + size: 87,116 + orig: 87,116 offset: 0,0 index: -1 -beast-mystic-02.ear-right +body-accessory.body-air1d_00 rotate: false - xy: 1254,2704 - size: 92,149 - orig: 92,149 + xy: 1148,1289 + size: 87,116 + orig: 87,116 offset: 0,0 index: -1 -japan-02.eyes-angry +body-accessory.body-air1d_02 rotate: false - xy: 1882,2673 - size: 171,80 - orig: 171,80 + xy: 1148,1423 + size: 87,116 + orig: 87,116 offset: 0,0 index: -1 -aquatic-02.eyes-angry +body-accessory.body-air1d_03 rotate: false - xy: 1882,2773 - size: 171,80 - orig: 171,80 + xy: 1148,1557 + size: 87,116 + orig: 87,116 offset: 0,0 index: -1 -plant-10.mouth-open +xmas-01.horn rotate: false - xy: 1254,2873 - size: 113,121 - orig: 113,121 + xy: 1148,1691 + size: 84,120 + orig: 84,120 offset: 0,0 index: -1 -bird-10.eyes-happy +bug-08-lv2.eyes-happy rotate: false - xy: 3922,1995 - size: 164,83 - orig: 164,83 + xy: 1304,1097 + size: 138,73 + orig: 138,73 offset: 0,0 index: -1 -summer-as.ear-left-upper +bug-08-lv2.eyes-shut rotate: false - xy: 1254,3014 - size: 92,147 - orig: 92,147 + xy: 1460,1097 + size: 138,73 + orig: 138,73 offset: 0,0 index: -1 -summer-a.ear-left-upper +bug-08-lv2.eyes-angry rotate: false - xy: 1254,3181 - size: 92,147 - orig: 92,147 + xy: 1616,1097 + size: 138,73 + orig: 138,73 offset: 0,0 index: -1 -beast-mystic-02.eyes-happy +bug-08-lv2.eyes rotate: false - xy: 1713,2741 - size: 140,96 - orig: 140,96 + xy: 1772,1097 + size: 138,73 + orig: 138,73 offset: 0,0 index: -1 -plant-10.mouth +plant-mystic-02-lv2.ear-right rotate: false - xy: 1254,3348 - size: 111,121 - orig: 111,121 + xy: 1148,1829 + size: 83,121 + orig: 83,121 offset: 0,0 index: -1 -plant-10.mouth-bite +summer-ta.horn rotate: false - xy: 1254,3489 - size: 111,121 - orig: 111,121 + xy: 849,3974 + size: 99,101 + orig: 99,101 offset: 0,0 index: -1 -plant-10.mouth-smile +summer-tb.horn rotate: false - xy: 1254,3630 - size: 111,121 - orig: 111,121 + xy: 1253,1289 + size: 99,101 + orig: 99,101 offset: 0,0 index: -1 -bird-02.ear-right +summer-tc.horn rotate: false - xy: 1254,3771 - size: 92,145 - orig: 92,145 + xy: 1253,1408 + size: 99,101 + orig: 99,101 offset: 0,0 index: -1 -beast-02.ear-right +summer-td.horn rotate: false - xy: 1254,3771 - size: 92,145 - orig: 92,145 + xy: 1253,1527 + size: 99,101 + orig: 99,101 offset: 0,0 index: -1 -bug-06.ear-right +summer-a.horn rotate: false - xy: 1254,3771 - size: 92,145 - orig: 92,145 + xy: 1253,1646 + size: 99,101 + orig: 99,101 offset: 0,0 index: -1 -xmas-02.mouth-bite +summer-tc.back rotate: false - xy: 1554,2189 - size: 136,98 - orig: 136,98 + xy: 1370,1289 + size: 103,97 + orig: 103,97 offset: 0,0 index: -1 -bug-08.ear-left +summer-a.back rotate: false - xy: 1254,3936 - size: 104,128 - orig: 104,128 + xy: 1491,1289 + size: 103,97 + orig: 103,97 offset: 0,0 index: -1 -bug-08.ear-right +bug-mystic-02.eyes-happy rotate: false - xy: 1400,3628 - size: 100,133 - orig: 100,133 + xy: 2687,1009 + size: 150,66 + orig: 150,66 offset: 0,0 index: -1 -beast-mystic-02.eyes-angry +bug-mystic-02.eyes-shut rotate: false - xy: 1713,2857 - size: 147,90 - orig: 147,90 + xy: 2855,1009 + size: 150,66 + orig: 150,66 offset: 0,0 index: -1 -aquatic-08.eyes-angry +bug-mystic-02.eyes-angry rotate: false - xy: 2078,2719 - size: 183,72 - orig: 183,72 + xy: 3023,1009 + size: 150,66 + orig: 150,66 offset: 0,0 index: -1 -japan-02.eyes-shut +bug-mystic-02.eyes rotate: false - xy: 912,4008 - size: 171,77 - orig: 171,77 + xy: 3191,1009 + size: 150,66 + orig: 150,66 offset: 0,0 index: -1 -japan-02.eyes +bird-12.horn rotate: false - xy: 1882,2873 - size: 171,77 - orig: 171,77 + xy: 1253,1765 + size: 89,111 + orig: 89,111 offset: 0,0 index: -1 -aquatic-02.eyes-shut +bird-10-lv2.tail rotate: false - xy: 1882,2970 - size: 171,77 - orig: 171,77 + xy: 1612,1289 + size: 114,86 + orig: 114,86 offset: 0,0 index: -1 -aquatic-02.eyes +summer-as.horn rotate: false - xy: 1882,3067 - size: 171,77 - orig: 171,77 + xy: 1253,1894 + size: 98,100 + orig: 98,100 offset: 0,0 index: -1 -beast-02.mouth-bite +japan-01.eyes-angry rotate: false - xy: 2078,2811 - size: 177,74 - orig: 177,74 + xy: 3359,1009 + size: 153,64 + orig: 153,64 offset: 0,0 index: -1 -beast-mystic-02.mouth-bite +bug-10-lv2.horn rotate: false - xy: 2078,2905 - size: 177,74 - orig: 177,74 + xy: 1744,1289 + size: 115,85 + orig: 115,85 offset: 0,0 index: -1 -plant-10.eyes-happy +beast-06.ear-left rotate: false - xy: 1882,3164 - size: 172,76 - orig: 172,76 + xy: 1253,2012 + size: 92,106 + orig: 92,106 offset: 0,0 index: -1 -plant-10.eyes-shut +bird-08-lv2.horn rotate: false - xy: 1882,3260 - size: 172,76 - orig: 172,76 + xy: 1877,1289 + size: 103,94 + orig: 103,94 offset: 0,0 index: -1 -plant-10.eyes-angry +beast-10.horn rotate: false - xy: 1882,3356 - size: 172,76 - orig: 172,76 + xy: 1253,2136 + size: 92,105 + orig: 92,105 offset: 0,0 index: -1 -plant-10.eyes +bug-02.eyes-happy rotate: false - xy: 1882,3452 - size: 172,76 - orig: 172,76 + xy: 3530,1009 + size: 144,67 + orig: 144,67 offset: 0,0 index: -1 -bug-08.mouth-bite +bug-02.eyes-shut rotate: false - xy: 2078,2999 - size: 181,72 - orig: 181,72 + xy: 3692,1009 + size: 144,67 + orig: 144,67 offset: 0,0 index: -1 -japan-03.eyes-happy +bug-02.eyes-angry rotate: false - xy: 1882,3548 - size: 171,76 - orig: 171,76 + xy: 3854,1009 + size: 144,67 + orig: 144,67 offset: 0,0 index: -1 -japan-03.eyes-shut +bird-10.horn rotate: false - xy: 1882,3644 - size: 171,76 - orig: 171,76 + xy: 1253,2259 + size: 97,99 + orig: 97,99 offset: 0,0 index: -1 -aquatic-08.mouth-open +xmas-01.ear-right rotate: false - xy: 1400,3781 - size: 119,109 - orig: 119,109 + xy: 1253,2376 + size: 96,100 + orig: 96,100 offset: 0,0 index: -1 -aquatic-10.mouth-open +xmas-01-lv2.ear-right rotate: false - xy: 1400,3910 - size: 121,107 - orig: 121,107 + xy: 1253,2494 + size: 96,100 + orig: 96,100 offset: 0,0 index: -1 -plant-mystic-02.ear-left +beast-06.ear-right rotate: false - xy: 3970,1552 - size: 101,128 - orig: 101,128 + xy: 1253,2612 + size: 96,100 + orig: 96,100 offset: 0,0 index: -1 -agamo-00.horn +aquatic-04-lv2.mouth-smile rotate: false - xy: 1554,2307 - size: 126,102 - orig: 126,102 + xy: 1928,1097 + size: 141,68 + orig: 141,68 offset: 0,0 index: -1 -aquatic-12.horn +japan-01.eyes rotate: false - xy: 1554,2429 - size: 126,102 - orig: 126,102 + xy: 2087,1097 + size: 154,62 + orig: 154,62 offset: 0,0 index: -1 -bug-04.mouth-open +beast-10-lv2.horn rotate: false - xy: 1882,3740 - size: 151,85 - orig: 151,85 + xy: 1253,2730 + size: 90,106 + orig: 90,106 offset: 0,0 index: -1 -japan-03.mouth-open +aquatic-08.horn rotate: false - xy: 2281,2592 - size: 186,69 - orig: 186,69 + xy: 1998,1289 + size: 112,85 + orig: 112,85 offset: 0,0 index: -1 -beast-mystic-02.eyes +bug-02.back rotate: false - xy: 1713,2967 - size: 140,90 - orig: 140,90 + xy: 1253,2854 + size: 98,97 + orig: 98,97 offset: 0,0 index: -1 -japan-02.eyes-happy +beast-02.back rotate: false - xy: 1882,3845 - size: 172,73 - orig: 172,73 + xy: 1253,2969 + size: 96,99 + orig: 96,99 offset: 0,0 index: -1 -aquatic-02.eyes-happy +bug-08-lv2.ear-left rotate: false - xy: 1882,3938 - size: 172,73 - orig: 172,73 + xy: 1148,1968 + size: 73,130 + orig: 73,130 offset: 0,0 index: -1 -beast-02.eyes-happy +bug-02.eyes rotate: false - xy: 2078,3091 - size: 181,69 - orig: 181,69 + xy: 2259,1097 + size: 141,67 + orig: 141,67 offset: 0,0 index: -1 -body-accessory.body-air1b_02 +aquatic-04-lv2.mouth-bite rotate: false - xy: 1554,2551 - size: 100,123 - orig: 100,123 + xy: 2418,1097 + size: 145,65 + orig: 145,65 offset: 0,0 index: -1 -body-accessory.body-air1b_00 +beast-02.tail rotate: false - xy: 1554,2694 - size: 100,123 - orig: 100,123 + xy: 1253,3086 + size: 99,95 + orig: 99,95 offset: 0,0 index: -1 -body-accessory.body-air1b_01 +japan-01.ear-left rotate: false - xy: 1554,2837 - size: 100,123 - orig: 100,123 + xy: 1148,2116 + size: 77,122 + orig: 77,122 offset: 0,0 index: -1 -beast-mystic-02.eyes-shut +reptile-10-lv2.eyes-angry rotate: false - xy: 1554,2980 - size: 136,90 - orig: 136,90 + xy: 2581,1097 + size: 140,67 + orig: 140,67 offset: 0,0 index: -1 -reptile-02.eyes-happy +reptile-10-lv2.eyes rotate: false - xy: 2516,2413 - size: 188,65 - orig: 188,65 + xy: 2739,1097 + size: 140,67 + orig: 140,67 offset: 0,0 index: -1 -bug-08.horn +bug-mystic-02-lv2.ear-right rotate: false - xy: 2078,3180 - size: 165,74 - orig: 165,74 + xy: 1148,2256 + size: 72,130 + orig: 72,130 offset: 0,0 index: -1 -bug-08.mouth-smile +aquatic-mystic-02-lv2.eyes-happy rotate: false - xy: 2078,3274 - size: 181,67 - orig: 181,67 + xy: 2897,1097 + size: 133,70 + orig: 133,70 offset: 0,0 index: -1 -agamo-01.horn +aquatic-mystic-02-lv2.eyes-shut rotate: false - xy: 1554,3090 - size: 92,131 - orig: 92,131 + xy: 3048,1097 + size: 131,71 + orig: 131,71 offset: 0,0 index: -1 -body-accessory.body-hip1d +aquatic-mystic-02-lv2.eyes-angry rotate: false - xy: 1554,3241 - size: 130,92 - orig: 130,92 + xy: 3197,1097 + size: 131,71 + orig: 131,71 offset: 0,0 index: -1 -reptile-10.eyes-happy +aquatic-mystic-02-lv2.eyes rotate: false - xy: 2078,3361 - size: 168,71 - orig: 168,71 + xy: 3346,1097 + size: 131,71 + orig: 131,71 offset: 0,0 index: -1 -plant-02.horn +reptile-08-lv2.mouth-open rotate: false - xy: 1554,3353 - size: 92,129 - orig: 92,129 + xy: 3495,1097 + size: 127,73 + orig: 127,73 offset: 0,0 index: -1 -bird-10.eyes-shut +aquatic-04.tail rotate: false - xy: 2078,3452 - size: 164,72 - orig: 164,72 + xy: 2128,1289 + size: 103,90 + orig: 103,90 offset: 0,0 index: -1 -bird-10.eyes +reptile-mystic-02.back rotate: false - xy: 2078,3544 - size: 164,72 - orig: 164,72 + xy: 1253,3199 + size: 89,104 + orig: 89,104 offset: 0,0 index: -1 -plant-04.ear-left +japan-03-lv2.mouth-smile rotate: false - xy: 1554,3502 - size: 108,109 - orig: 108,109 + xy: 1290,1189 + size: 123,75 + orig: 123,75 offset: 0,0 index: -1 -japan-01.mouth-bite +beast-02-lv2.tail rotate: false - xy: 2724,2413 - size: 212,55 - orig: 212,55 + xy: 1253,3321 + size: 96,96 + orig: 96,96 offset: 0,0 index: -1 -summer-a.ear-left-under +summer-a.tail rotate: false - xy: 4003,1202 - size: 83,140 - orig: 83,140 + xy: 1253,3435 + size: 96,96 + orig: 96,96 offset: 0,0 index: -1 -bug-10.horn +aquatic-04-lv2.mouth rotate: false - xy: 1554,3631 - size: 90,129 - orig: 90,129 + xy: 3640,1097 + size: 144,64 + orig: 144,64 offset: 0,0 index: -1 -reptile-mystic-02.mouth-open +aquatic-10.horn rotate: false - xy: 2956,2413 - size: 200,58 - orig: 200,58 + xy: 2249,1289 + size: 107,86 + orig: 107,86 offset: 0,0 index: -1 -bird-02.eyes-angry +aquatic-mystic-02.horn rotate: false - xy: 3176,2413 - size: 187,62 - orig: 187,62 + xy: 1431,1189 + size: 121,76 + orig: 121,76 offset: 0,0 index: -1 -bird-02.eyes +bug-mystic-02.back rotate: false - xy: 3383,2413 - size: 187,62 - orig: 187,62 + xy: 2374,1289 + size: 103,89 + orig: 103,89 offset: 0,0 index: -1 -plant-04.eyes-angry +aquatic-10-lv2.mouth-open rotate: false - xy: 2078,3636 - size: 160,72 - orig: 160,72 + xy: 3802,1097 + size: 125,73 + orig: 125,73 offset: 0,0 index: -1 -beast-08.ear-left +bug-04.eyes-happy rotate: false - xy: 1554,3780 - size: 95,121 - orig: 95,121 + xy: 2103,257 + size: 157,58 + orig: 157,58 offset: 0,0 index: -1 -xmas-02.mouth-blink +bug-04.eyes-shut rotate: false - xy: 1554,3921 - size: 117,98 - orig: 117,98 + xy: 1570,1189 + size: 157,58 + orig: 157,58 offset: 0,0 index: -1 -xmas-02.mouth-smile +bug-04.eyes-angry rotate: false - xy: 1713,3077 - size: 117,98 - orig: 117,98 + xy: 1745,1189 + size: 157,58 + orig: 157,58 offset: 0,0 index: -1 -japan-02.mouth +bug-04.eyes rotate: false - xy: 3590,2413 - size: 204,56 - orig: 204,56 + xy: 1920,1189 + size: 157,58 + orig: 157,58 offset: 0,0 index: -1 -aquatic-mystic-02.ear-left +summer-as.eyes-happy rotate: false - xy: 1713,3195 - size: 84,136 - orig: 84,136 + xy: 3945,1097 + size: 140,65 + orig: 140,65 offset: 0,0 index: -1 -reptile-10.eyes-shut +summer-as.eyes-shut rotate: false - xy: 2078,3728 - size: 164,69 - orig: 164,69 + xy: 2095,1189 + size: 140,65 + orig: 140,65 offset: 0,0 index: -1 -aquatic-08.mouth +summer-a.eyes-shut rotate: false - xy: 1713,3351 - size: 112,101 - orig: 112,101 + xy: 2095,1189 + size: 140,65 + orig: 140,65 offset: 0,0 index: -1 -japan-02.mouth-bite +summer-as.eyes-angry rotate: false - xy: 3814,2413 - size: 202,56 - orig: 202,56 + xy: 2253,1189 + size: 140,65 + orig: 140,65 offset: 0,0 index: -1 -summer-as.ear-left-under +summer-as.eyes rotate: false - xy: 1713,3472 - size: 81,139 - orig: 81,139 + xy: 2411,1189 + size: 140,65 + orig: 140,65 offset: 0,0 index: -1 -aquatic-10.mouth-bite +summer-a.eyes-happy rotate: false - xy: 2698,2498 - size: 212,53 - orig: 212,53 + xy: 2569,1189 + size: 140,65 + orig: 140,65 offset: 0,0 index: -1 -reptile-08.mouth-bite +summer-a.eyes-angry rotate: false - xy: 2930,2498 - size: 204,55 - orig: 204,55 + xy: 2727,1189 + size: 140,65 + orig: 140,65 offset: 0,0 index: -1 -reptile-06.ear-left +summer-a.eyes rotate: false - xy: 1713,3631 - size: 111,101 - orig: 111,101 + xy: 2885,1189 + size: 140,65 + orig: 140,65 offset: 0,0 index: -1 -japan-03.mouth-smile +reptile-mystic-02.horn rotate: false - xy: 2281,2681 - size: 186,60 - orig: 186,60 + xy: 2495,1289 + size: 107,85 + orig: 107,85 offset: 0,0 index: -1 -summer-as.ear-right-upper +reptile-10.horn rotate: false - xy: 1713,3752 - size: 82,136 - orig: 82,136 + xy: 2620,1289 + size: 107,85 + orig: 107,85 offset: 0,0 index: -1 -summer-a.ear-right-upper +japan-01-lv2.ear-left rotate: false - xy: 1713,3908 - size: 82,136 - orig: 82,136 + xy: 1148,2404 + size: 71,128 + orig: 71,128 offset: 0,0 index: -1 -body-accessory.body-air1a_02 +plant-08-lv2.horn rotate: false - xy: 3950,1844 - size: 134,83 - orig: 134,83 + xy: 2745,1289 + size: 102,89 + orig: 102,89 offset: 0,0 index: -1 -body-accessory.body-air1a_03 +beast-12-lv2.ear-left rotate: false - xy: 2078,3817 - size: 134,83 - orig: 134,83 + xy: 1148,2550 + size: 81,112 + orig: 81,112 offset: 0,0 index: -1 -body-accessory.body-air1a_01 +beast-10.tail rotate: false - xy: 2078,3920 - size: 134,83 - orig: 134,83 + xy: 1148,2680 + size: 87,104 + orig: 87,104 offset: 0,0 index: -1 -body-accessory.body-air1a_00 +bug-12.tail rotate: false - xy: 2281,2761 - size: 134,83 - orig: 134,83 + xy: 2865,1289 + size: 104,87 + orig: 104,87 offset: 0,0 index: -1 -body-accessory.body-air1a_04 +bird-mystic-02.tail rotate: false - xy: 2281,2761 - size: 134,83 - orig: 134,83 + xy: 2987,1289 + size: 104,87 + orig: 104,87 offset: 0,0 index: -1 -body-accessory.body-air1a_05 +bird-04.tail rotate: false - xy: 2281,2864 - size: 134,83 - orig: 134,83 + xy: 3109,1289 + size: 109,83 + orig: 109,83 offset: 0,0 index: -1 -body-accessory.body-air1a_07 +summer-as.eyes-upper rotate: false - xy: 2281,2967 - size: 134,83 - orig: 134,83 + xy: 3043,1189 + size: 139,65 + orig: 139,65 offset: 0,0 index: -1 -body-accessory.body-air1a_06 +summer-a.eyes-upper rotate: false - xy: 2281,3070 - size: 134,83 - orig: 134,83 + xy: 3200,1189 + size: 139,65 + orig: 139,65 offset: 0,0 index: -1 -reptile-08.mouth +summer-as.tail rotate: false - xy: 2078,4023 - size: 176,63 - orig: 176,63 + xy: 1253,3549 + size: 95,95 + orig: 95,95 offset: 0,0 index: -1 -bird-08.eyes-happy +beast-06-lv2.ear-left rotate: false - xy: 2281,3173 - size: 143,76 - orig: 143,76 + xy: 1253,3662 + size: 94,96 + orig: 94,96 offset: 0,0 index: -1 -beast-02.eyes +reptile-06.back rotate: false - xy: 2281,3269 - size: 181,60 - orig: 181,60 + xy: 3357,1189 + size: 125,72 + orig: 125,72 offset: 0,0 index: -1 -plant-mystic-02.eyes-happy +bird-12-lv2.horn rotate: false - xy: 2281,3349 - size: 187,58 - orig: 187,58 + xy: 1148,2802 + size: 84,107 + orig: 84,107 offset: 0,0 index: -1 -plant-mystic-02.eyes-shut +bug-12-lv2.ear-left rotate: false - xy: 2281,3349 - size: 187,58 - orig: 187,58 + xy: 1148,2927 + size: 87,103 + orig: 87,103 offset: 0,0 index: -1 -plant-mystic-02.eyes +plant-10.tail rotate: false - xy: 2281,3349 - size: 187,58 - orig: 187,58 + xy: 3500,1189 + size: 113,79 + orig: 113,79 offset: 0,0 index: -1 -plant-mystic-02.eyes-angry +reptile-02-lv2.horn rotate: false - xy: 2281,3427 - size: 187,58 - orig: 187,58 + xy: 3631,1189 + size: 119,75 + orig: 119,75 offset: 0,0 index: -1 -summer-a.mouth-accessory +xmas-01.ear-left rotate: false - xy: 2281,3505 - size: 104,104 - orig: 104,104 + xy: 1253,3776 + size: 92,97 + orig: 92,97 offset: 0,0 index: -1 -plant-mystic-02.ear-right +xmas-01-lv2.ear-left rotate: false - xy: 2281,3629 - size: 80,133 - orig: 80,133 + xy: 1253,3891 + size: 92,97 + orig: 92,97 offset: 0,0 index: -1 -plant-12.ear-left +aquatic-06-lv2.horn rotate: false - xy: 2281,3782 - size: 112,95 - orig: 112,95 + xy: 3768,1189 + size: 110,81 + orig: 110,81 offset: 0,0 index: -1 -summer-as.mouth-accessory +plant-mystic-02-lv2.horn rotate: false - xy: 2281,3897 - size: 103,103 - orig: 103,103 + xy: 1148,3048 + size: 80,111 + orig: 80,111 offset: 0,0 index: -1 -reptile-10.mouth-open +plant-08.horn rotate: false - xy: 2489,2591 - size: 119,89 - orig: 119,89 + xy: 3236,1289 + size: 99,89 + orig: 99,89 offset: 0,0 index: -1 -beast-10.mouth-open +bug-08.eyes-happy rotate: false - xy: 2489,2700 - size: 103,102 - orig: 103,102 + xy: 3896,1189 + size: 123,71 + orig: 123,71 offset: 0,0 index: -1 -beast-02.eyes-shut +bug-08.eyes-shut rotate: false - xy: 2281,4020 - size: 181,58 - orig: 181,58 + xy: 3353,1289 + size: 123,71 + orig: 123,71 offset: 0,0 index: -1 -plant-02.ear-left +bug-08.eyes-angry rotate: false - xy: 2489,2822 - size: 97,108 - orig: 97,108 + xy: 3494,1289 + size: 123,71 + orig: 123,71 offset: 0,0 index: -1 -xmas-01.eyes-angry +bug-08.eyes rotate: false - xy: 3154,2498 - size: 186,56 - orig: 186,56 + xy: 3635,1289 + size: 123,71 + orig: 123,71 offset: 0,0 index: -1 -reptile-08.ear-left +bug-08-lv2.mouth-bite rotate: false - xy: 2381,3629 - size: 84,124 - orig: 84,124 + xy: 3776,1289 + size: 106,82 + orig: 106,82 offset: 0,0 index: -1 -beast-10.eyes-happy +beast-06-lv2.ear-right rotate: false - xy: 2628,2591 - size: 130,80 - orig: 130,80 + xy: 3900,1289 + size: 92,94 + orig: 92,94 offset: 0,0 index: -1 -reptile-02.mouth-open +beast-mystic-02-lv2.ear-right rotate: false - xy: 3360,2498 - size: 179,58 - orig: 179,58 + xy: 1148,3177 + size: 80,108 + orig: 80,108 offset: 0,0 index: -1 -beast-08.ear-right +reptile-02-lv2.ear-right rotate: false - xy: 2489,2950 - size: 90,115 - orig: 90,115 + xy: 1148,3303 + size: 72,120 + orig: 72,120 offset: 0,0 index: -1 -bug-10.ear-right +body-wetdog.body-braid rotate: false - xy: 2489,3085 - size: 83,124 - orig: 83,124 + xy: 1148,3441 + size: 83,104 + orig: 83,104 offset: 0,0 index: -1 -bug-10.ear-left +reptile-02-lv2.mouth-open rotate: false - xy: 2489,3229 - size: 83,124 - orig: 83,124 + xy: 1370,1404 + size: 125,69 + orig: 125,69 offset: 0,0 index: -1 -plant-10.ear-left +japan-01.eyes-shut rotate: false - xy: 2489,3373 - size: 87,118 - orig: 87,118 + xy: 1513,1404 + size: 154,56 + orig: 154,56 offset: 0,0 index: -1 -aquatic-12.ear-left +beast-08.eyes-happy rotate: false - xy: 2489,3511 - size: 87,118 - orig: 87,118 + xy: 1685,1404 + size: 139,62 + orig: 139,62 offset: 0,0 index: -1 -aquatic-02.ear-left +reptile-02.horn rotate: false - xy: 2489,3649 - size: 86,119 - orig: 86,119 + xy: 1370,1491 + size: 99,87 + orig: 99,87 offset: 0,0 index: -1 -bird-06.ear-right +bug-08.tail rotate: false - xy: 2489,3788 - size: 86,119 - orig: 86,119 + xy: 1370,1596 + size: 99,87 + orig: 99,87 offset: 0,0 index: -1 -bird-06.ear-left +xmas-02-lv2.mouth-smile rotate: false - xy: 2489,3927 - size: 86,119 - orig: 86,119 + xy: 1487,1491 + size: 109,79 + orig: 109,79 offset: 0,0 index: -1 -plant-08.ear-right +reptile-mystic-02.ear-left rotate: false - xy: 2628,2691 - size: 85,120 - orig: 85,120 + xy: 1148,3563 + size: 87,98 + orig: 87,98 offset: 0,0 index: -1 -bird-08.eyes-shut +body-summer.shadow rotate: false - xy: 3559,2498 - size: 143,71 - orig: 143,71 + xy: 1458,265 + size: 213,40 + orig: 213,40 offset: 0,0 index: -1 -aquatic-02.mouth-bite +reptile-02-lv2.ear-left rotate: false - xy: 1470,410 - size: 163,62 - orig: 163,62 + xy: 1148,3679 + size: 71,120 + orig: 71,120 offset: 0,0 index: -1 -aquatic-mystic-02.mouth-bite +beast-12-lv2.horn rotate: false - xy: 3722,2498 - size: 163,62 - orig: 163,62 + xy: 1370,1701 + size: 99,86 + orig: 99,86 offset: 0,0 index: -1 -japan-03.ear-left +summer-as-lv2.horn rotate: false - xy: 2733,2691 - size: 96,105 - orig: 96,105 + xy: 1614,1491 + size: 112,76 + orig: 112,76 offset: 0,0 index: -1 -aquatic-12.ear-right +summer-a-lv2.horn rotate: false - xy: 2733,2816 - size: 86,117 - orig: 86,117 + xy: 1744,1491 + size: 112,76 + orig: 112,76 offset: 0,0 index: -1 -bird-mystic-02.mouth-bite +beast-08-lv2.eyes rotate: false - xy: 2839,2816 - size: 89,113 - orig: 89,113 + xy: 1842,1404 + size: 133,64 + orig: 133,64 offset: 0,0 index: -1 -bug-mystic-02.mouth +japan-01-lv2.horn rotate: false - xy: 3963,2099 - size: 115,87 - orig: 115,87 + xy: 1148,3817 + size: 83,102 + orig: 83,102 offset: 0,0 index: -1 -aquatic-02.mouth-open +beast-mystic-02-lv2.ear-left rotate: false - xy: 2948,2816 - size: 90,111 - orig: 90,111 + xy: 1370,1805 + size: 89,95 + orig: 89,95 offset: 0,0 index: -1 -aquatic-mystic-02.mouth-open +reptile-mystic-02-lv2.mouth rotate: false - xy: 3058,2816 - size: 90,111 - orig: 90,111 + xy: 1993,1404 + size: 130,65 + orig: 130,65 offset: 0,0 index: -1 -summer-as.ear-right-under +aquatic-04.horn rotate: false - xy: 2628,2831 - size: 76,131 - orig: 76,131 + xy: 1148,3937 + size: 87,97 + orig: 87,97 offset: 0,0 index: -1 -summer-a.ear-right-under +summer-ta-lv2.horn rotate: false - xy: 2628,2982 - size: 76,131 - orig: 76,131 + xy: 1874,1491 + size: 111,76 + orig: 111,76 offset: 0,0 index: -1 -japan-02.ear-left +summer-tc-lv2.horn rotate: false - xy: 2839,2949 - size: 87,110 - orig: 87,110 + xy: 2003,1491 + size: 111,76 + orig: 111,76 offset: 0,0 index: -1 -plant-02.eyes-angry +summer-tb-lv2.horn rotate: false - xy: 3905,2498 - size: 180,53 - orig: 180,53 + xy: 2132,1491 + size: 111,76 + orig: 111,76 offset: 0,0 index: -1 -aquatic-08.ear-left +summer-td-lv2.horn rotate: false - xy: 2849,2691 - size: 107,89 - orig: 107,89 + xy: 2261,1491 + size: 111,76 + orig: 111,76 offset: 0,0 index: -1 -bird-04.eyes +bird-04.horn rotate: false - xy: 2778,2591 - size: 119,80 - orig: 119,80 + xy: 1370,1918 + size: 85,99 + orig: 85,99 offset: 0,0 index: -1 -bird-mystic-02.ear-right +bug-10.tail rotate: false - xy: 2628,3133 - size: 85,112 - orig: 85,112 + xy: 1370,2035 + size: 99,85 + orig: 99,85 offset: 0,0 index: -1 -aquatic-06.body-pattern +agamo-01-lv2.tail rotate: false - xy: 2839,3079 - size: 88,108 - orig: 88,108 + xy: 1370,2035 + size: 99,85 + orig: 99,85 offset: 0,0 index: -1 -plant-02.body-pattern +bug-mystic-02.ear-left rotate: false - xy: 2839,3079 - size: 88,108 - orig: 88,108 + xy: 1370,2138 + size: 70,120 + orig: 70,120 offset: 0,0 index: -1 -reptile-06.body-pattern +bug-mystic-02-lv2.ear-left rotate: false - xy: 2839,3079 - size: 88,108 - orig: 88,108 + xy: 1370,2276 + size: 64,131 + orig: 64,131 offset: 0,0 index: -1 -plant-04.body-pattern +beast-08-lv2.eyes-angry rotate: false - xy: 2839,3079 - size: 88,108 - orig: 88,108 + xy: 577,4024 + size: 133,63 + orig: 133,63 offset: 0,0 index: -1 -japan-03.body-pattern +plant-06-lv2.horn rotate: false - xy: 2839,3079 - size: 88,108 - orig: 88,108 + xy: 1370,2425 + size: 90,93 + orig: 90,93 offset: 0,0 index: -1 -bug-10.body-pattern +plant-10.horn rotate: false - xy: 2839,3079 - size: 88,108 - orig: 88,108 + xy: 1370,2536 + size: 87,96 + orig: 87,96 offset: 0,0 index: -1 -bug-04.body-pattern +japan-01-lv2.mouth-bite rotate: false - xy: 2839,3079 - size: 88,108 - orig: 88,108 + xy: 2141,1404 + size: 141,59 + orig: 141,59 offset: 0,0 index: -1 -bug-02.body-pattern +japan-01.eyes-happy rotate: false - xy: 2839,3079 - size: 88,108 - orig: 88,108 + xy: 2300,1404 + size: 154,54 + orig: 154,54 offset: 0,0 index: -1 -reptile-12.body-pattern +japan-01-lv2.mouth-smile rotate: false - xy: 2839,3079 - size: 88,108 - orig: 88,108 + xy: 2472,1404 + size: 134,62 + orig: 134,62 offset: 0,0 index: -1 -plant-10.body-pattern +reptile-08.eyes-angry rotate: false - xy: 2839,3079 - size: 88,108 - orig: 88,108 + xy: 2390,1491 + size: 117,71 + orig: 117,71 offset: 0,0 index: -1 -aquatic-12.body-pattern +reptile-mystic-02.ear-right rotate: false - xy: 2839,3079 - size: 88,108 - orig: 88,108 + xy: 1370,2650 + size: 82,101 + orig: 82,101 offset: 0,0 index: -1 -bird-10.body-pattern +aquatic-04.back rotate: false - xy: 2839,3079 - size: 88,108 - orig: 88,108 + xy: 1370,2769 + size: 82,101 + orig: 82,101 offset: 0,0 index: -1 -plant-08.body-pattern +bug-10-lv2.tail rotate: false - xy: 2839,3079 - size: 88,108 - orig: 88,108 + xy: 1370,2888 + size: 90,92 + orig: 90,92 offset: 0,0 index: -1 -reptile-04.body-pattern +beast-08-lv2.eyes-happy rotate: false - xy: 2839,3079 - size: 88,108 - orig: 88,108 + xy: 2624,1404 + size: 133,62 + orig: 133,62 offset: 0,0 index: -1 -beast-06.body-pattern +bird-mystic-02-lv2.ear-right rotate: false - xy: 2839,3079 - size: 88,108 - orig: 88,108 + xy: 1370,2998 + size: 77,107 + orig: 77,107 offset: 0,0 index: -1 -reptile-02.body-pattern +japan-03.eyes-angry rotate: false - xy: 2839,3079 - size: 88,108 - orig: 88,108 + xy: 2775,1404 + size: 121,68 + orig: 121,68 offset: 0,0 index: -1 -bug-12.body-pattern +xmas-02-lv2.mouth-bite rotate: false - xy: 2839,3079 - size: 88,108 - orig: 88,108 + xy: 2525,1491 + size: 104,79 + orig: 104,79 offset: 0,0 index: -1 -bug-08.body-pattern +xmas-02-lv2.mouth-blink rotate: false - xy: 2839,3079 - size: 88,108 - orig: 88,108 + xy: 2647,1491 + size: 104,79 + orig: 104,79 offset: 0,0 index: -1 -bug-06.body-pattern +bug-02.horn rotate: false - xy: 2839,3079 - size: 88,108 - orig: 88,108 + xy: 1487,1588 + size: 100,82 + orig: 100,82 offset: 0,0 index: -1 -aquatic-10.body-pattern +plant-06-lv2.ear-left rotate: false - xy: 2839,3079 - size: 88,108 - orig: 88,108 + xy: 1370,3123 + size: 88,93 + orig: 88,93 offset: 0,0 index: -1 -bird-12.body-pattern +agamo-00-lv2.horn rotate: false - xy: 2839,3079 - size: 88,108 - orig: 88,108 + xy: 2769,1491 + size: 107,76 + orig: 107,76 offset: 0,0 index: -1 -plant-12.body-pattern +japan-01-lv2.eyes-shut rotate: false - xy: 2839,3079 - size: 88,108 - orig: 88,108 + xy: 2914,1404 + size: 131,62 + orig: 131,62 offset: 0,0 index: -1 -reptile-10.body-pattern +reptile-06.horn rotate: false - xy: 2839,3079 - size: 88,108 - orig: 88,108 + xy: 2894,1491 + size: 116,70 + orig: 116,70 offset: 0,0 index: -1 -beast-02.mouth-open +japan-03-lv2.ear-left rotate: false - xy: 2628,3265 - size: 79,120 - orig: 79,120 + xy: 1370,3234 + size: 90,90 + orig: 90,90 offset: 0,0 index: -1 -beast-mystic-02.mouth-open +body-accessory.body-hip1b rotate: false - xy: 2628,3405 - size: 79,120 - orig: 79,120 + xy: 1370,3342 + size: 89,91 + orig: 89,91 offset: 0,0 index: -1 -bird-08.mouth-open +body-sumo.body-pattern rotate: false - xy: 2976,2691 - size: 92,103 - orig: 92,103 + xy: 1370,3451 + size: 74,109 + orig: 74,109 offset: 0,0 index: -1 -bug-mystic-02.mouth-smile +bird-12-lv2.ear-left rotate: false - xy: 2917,2591 - size: 121,78 - orig: 121,78 + xy: 1370,3578 + size: 79,102 + orig: 79,102 offset: 0,0 index: -1 -plant-04.ear-right +bird-02.horn rotate: false - xy: 2839,3207 - size: 88,107 - orig: 88,107 + xy: 3028,1491 + size: 102,79 + orig: 102,79 offset: 0,0 index: -1 -xmas-02.mouth-open +plant-06.ear-left rotate: false - xy: 3088,2691 - size: 96,98 - orig: 96,98 + xy: 1370,3698 + size: 89,90 + orig: 89,90 offset: 0,0 index: -1 -reptile-12.ear-left +japan-02.mouth-smile rotate: false - xy: 3204,2691 - size: 102,92 - orig: 102,92 + xy: 3063,1404 + size: 143,56 + orig: 143,56 offset: 0,0 index: -1 -bird-mystic-02.mouth-open +beast-12-lv2.ear-right rotate: false - xy: 2628,3545 - size: 67,140 - orig: 67,140 + xy: 1370,3806 + size: 68,117 + orig: 68,117 offset: 0,0 index: -1 -xmas-01.mouth-bite +bird-mystic-02.horn rotate: false - xy: 3326,2691 - size: 100,93 - orig: 100,93 + xy: 3148,1491 + size: 103,77 + orig: 103,77 offset: 0,0 index: -1 -plant-04.eyes +xmas-02.horn rotate: false - xy: 3058,2591 - size: 160,58 - orig: 160,58 + xy: 1370,3941 + size: 86,92 + orig: 86,92 offset: 0,0 index: -1 -reptile-06.ear-right +aquatic-02.horn rotate: false - xy: 3446,2691 - size: 92,100 - orig: 92,100 + xy: 3224,1404 + size: 116,68 + orig: 116,68 offset: 0,0 index: -1 -xmas-01.mouth-smile +aquatic-mystic-02-lv2.mouth rotate: false - xy: 3558,2691 - size: 94,97 - orig: 94,97 + xy: 3358,1404 + size: 157,50 + orig: 157,50 offset: 0,0 index: -1 -beast-10.mouth-bite +japan-01-lv2.ear-right rotate: false - xy: 3238,2591 - size: 128,71 - orig: 128,71 + xy: 1487,1688 + size: 50,157 + orig: 50,157 offset: 0,0 index: -1 -beast-02.eyes-angry +plant-10-lv2.ear-right rotate: false - xy: 3386,2591 - size: 181,50 - orig: 181,50 + xy: 1487,1863 + size: 72,109 + orig: 72,109 offset: 0,0 index: -1 -plant-04.mouth-open +bird-mystic-02-lv2.ear-left rotate: false - xy: 2628,3705 - size: 83,109 - orig: 83,109 + xy: 1487,1990 + size: 76,103 + orig: 76,103 offset: 0,0 index: -1 -bird-04.eyes-angry +reptile-mystic-02.tail rotate: false - xy: 3587,2591 - size: 133,68 - orig: 133,68 + xy: 1487,2111 + size: 91,86 + orig: 91,86 offset: 0,0 index: -1 -bird-mystic-02.mouth-smile +reptile-04-lv2.horn rotate: false - xy: 2628,3834 - size: 80,113 - orig: 80,113 + xy: 1487,2215 + size: 61,128 + orig: 61,128 offset: 0,0 index: -1 -beast-04.tail +beast-08.eyes rotate: false - xy: 3740,2591 - size: 115,78 - orig: 115,78 + xy: 3533,1404 + size: 139,56 + orig: 139,56 offset: 0,0 index: -1 -plant-04.mouth-bite +plant-10-lv2.ear-left rotate: false - xy: 3672,2691 - size: 108,83 - orig: 108,83 + xy: 1487,2361 + size: 80,97 + orig: 80,97 offset: 0,0 index: -1 -beast-04.ear-left +japan-01.horn rotate: false - xy: 3800,2691 - size: 101,88 - orig: 101,88 + xy: 1487,2476 + size: 83,93 + orig: 83,93 offset: 0,0 index: -1 -body-normal.body-light-life +aquatic-mystic-02-lv2.ear-left rotate: false - xy: 3921,2691 - size: 94,94 - orig: 94,94 + xy: 1487,2587 + size: 70,110 + orig: 70,110 offset: 0,0 index: -1 -summer-as.mouth-open +beast-04.eyes-happy rotate: false - xy: 3168,2816 - size: 99,89 - orig: 99,89 + xy: 3690,1404 + size: 124,62 + orig: 124,62 offset: 0,0 index: -1 -summer-a.mouth-open +xmas-02-lv2.mouth-open rotate: false - xy: 3168,2816 - size: 99,89 - orig: 99,89 + xy: 1253,4006 + size: 96,80 + orig: 96,80 offset: 0,0 index: -1 -japan-02.ear-right +beast-12.horn rotate: false - xy: 3287,2816 - size: 96,91 - orig: 96,91 + xy: 2910,243 + size: 108,71 + orig: 108,71 offset: 0,0 index: -1 -aquatic-mystic-02.ear-right +aquatic-02-lv2.mouth-open rotate: false - xy: 2733,2953 - size: 60,145 - orig: 60,145 + xy: 3831,242 + size: 105,73 + orig: 105,73 offset: 0,0 index: -1 -aquatic-10.ear-left +beast-08.tail rotate: false - xy: 2733,3118 - size: 69,126 - orig: 69,126 + xy: 1487,2715 + size: 88,87 + orig: 88,87 offset: 0,0 index: -1 -xmas-01.mouth-blink +aquatic-02-lv2.eyes-angry rotate: false - xy: 3403,2816 - size: 93,93 - orig: 93,93 + xy: 3832,1404 + size: 116,66 + orig: 116,66 offset: 0,0 index: -1 -plant-02.ear-right +beast-08.eyes-shut rotate: false - xy: 2628,3967 - size: 78,110 - orig: 78,110 + xy: 3269,1491 + size: 139,55 + orig: 139,55 offset: 0,0 index: -1 -reptile-10.ear-right +beast-08.eyes-angry rotate: false - xy: 2628,3967 - size: 78,110 - orig: 78,110 + xy: 3426,1491 + size: 139,55 + orig: 139,55 offset: 0,0 index: -1 -xmas-01.mouth-open +bug-02-lv2.horn rotate: false - xy: 2733,3264 - size: 73,116 - orig: 73,116 + xy: 1487,2820 + size: 78,98 + orig: 78,98 offset: 0,0 index: -1 -bird-04.eyes-happy +japan-03-lv2.mouth-bite rotate: false - xy: 3875,2591 - size: 119,70 - orig: 119,70 + xy: 3583,1491 + size: 123,62 + orig: 123,62 offset: 0,0 index: -1 -reptile-04.mouth-open +reptile-04-lv2.eyes-shut rotate: false - xy: 3516,2816 - size: 115,72 - orig: 115,72 + xy: 3966,1404 + size: 117,65 + orig: 117,65 offset: 0,0 index: -1 -aquatic-06.ear-right +beast-02-lv2.eyes-shut rotate: false - xy: 2839,3334 - size: 88,94 - orig: 88,94 + xy: 3724,1491 + size: 149,51 + orig: 149,51 offset: 0,0 index: -1 -plant-04.horn +beast-02-lv2.eyes rotate: false - xy: 2733,3400 - size: 78,106 - orig: 78,106 + xy: 3891,1491 + size: 149,51 + orig: 149,51 offset: 0,0 index: -1 -bug-04.mouth-smile +aquatic-mystic-02-lv2.mouth-bite rotate: false - xy: 3651,2816 - size: 110,75 - orig: 110,75 + xy: 1605,1588 + size: 185,41 + orig: 185,41 offset: 0,0 index: -1 -reptile-02.mouth +plant-12.horn rotate: false - xy: 1882,4031 - size: 149,55 - orig: 149,55 + xy: 1487,2936 + size: 79,96 + orig: 79,96 offset: 0,0 index: -1 -aquatic-06.ear-left +bug-mystic-02.tail rotate: false - xy: 2839,3448 - size: 88,93 - orig: 88,93 + xy: 1487,3050 + size: 88,86 + orig: 88,86 offset: 0,0 index: -1 -bird-04.ear-left +body-bigyak.body-braid2 rotate: false - xy: 2733,3526 - size: 79,102 - orig: 79,102 + xy: 1487,3154 + size: 70,108 + orig: 70,108 offset: 0,0 index: -1 -aquatic-02.mouth-smile +beast-08-lv2.back rotate: false - xy: 3781,2816 - size: 120,67 - orig: 120,67 + xy: 1487,3280 + size: 93,81 + orig: 93,81 offset: 0,0 index: -1 -aquatic-mystic-02.mouth-smile +aquatic-12-lv2.ear-right rotate: false - xy: 3921,2816 - size: 120,67 - orig: 120,67 + xy: 1487,3379 + size: 75,100 + orig: 75,100 offset: 0,0 index: -1 -body-accessory.body-hip1c +aquatic-12-lv2.ear-left rotate: false - xy: 2733,3648 - size: 79,101 - orig: 79,101 + xy: 1487,3497 + size: 75,100 + orig: 75,100 offset: 0,0 index: -1 -bird-08.mouth-bite +bird-10-lv2.eyes-angry rotate: false - xy: 2948,2947 - size: 101,79 - orig: 101,79 + xy: 1605,1647 + size: 129,58 + orig: 129,58 offset: 0,0 index: -1 -reptile-02.mouth-smile +aquatic-mystic-02.eyes-shut rotate: false - xy: 3643,809 - size: 177,45 - orig: 177,45 + xy: 1752,1647 + size: 141,53 + orig: 141,53 offset: 0,0 index: -1 -beast-04.eyes +aquatic-mystic-02.eyes-angry rotate: false - xy: 605,428 - size: 188,42 - orig: 188,42 + xy: 1911,1647 + size: 141,53 + orig: 141,53 offset: 0,0 index: -1 -plant-08.mouth-bite +aquatic-mystic-02.eyes rotate: false - xy: 3069,2947 - size: 157,50 - orig: 157,50 + xy: 2070,1647 + size: 141,53 + orig: 141,53 offset: 0,0 index: -1 -bird-10.ear-right +aquatic-mystic-02-lv2.mouth-smile rotate: false - xy: 2733,3769 - size: 85,92 - orig: 85,92 + xy: 2229,1647 + size: 166,45 + orig: 166,45 offset: 0,0 index: -1 -xmas-01.eyes-happy +beast-02.ear-left rotate: false - xy: 813,428 - size: 186,42 - orig: 186,42 + xy: 1487,3615 + size: 76,98 + orig: 76,98 offset: 0,0 index: -1 -xmas-01.eyes +beast-08-lv2.eyes-shut rotate: false - xy: 1661,429 - size: 186,42 - orig: 186,42 + xy: 2413,1647 + size: 133,56 + orig: 133,56 offset: 0,0 index: -1 -reptile-12.ear-right +aquatic-02-lv2.eyes-shut rotate: false - xy: 2733,3881 - size: 84,93 - orig: 84,93 + xy: 1605,1723 + size: 116,64 + orig: 116,64 offset: 0,0 index: -1 -bug-10.mouth-open +aquatic-02-lv2.eyes rotate: false - xy: 3246,2947 - size: 113,69 - orig: 113,69 + xy: 1605,1805 + size: 116,64 + orig: 116,64 offset: 0,0 index: -1 -bird-04.eyes-shut +aquatic-08-lv2.eyes-happy rotate: false - xy: 3379,2947 - size: 116,67 - orig: 116,67 + xy: 2564,1647 + size: 130,57 + orig: 130,57 offset: 0,0 index: -1 -plant-08.mouth-open +aquatic-08-lv2.eyes-shut rotate: false - xy: 2948,3046 - size: 92,84 - orig: 92,84 + xy: 2712,1647 + size: 130,57 + orig: 130,57 offset: 0,0 index: -1 -aquatic-08.ear-right +aquatic-08-lv2.eyes rotate: false - xy: 3060,3046 - size: 94,81 - orig: 94,81 + xy: 2860,1647 + size: 130,57 + orig: 130,57 offset: 0,0 index: -1 -plant-12.ear-right +reptile-02.ear-left rotate: false - xy: 2839,3561 - size: 87,87 - orig: 87,87 + xy: 1487,3731 + size: 86,86 + orig: 86,86 offset: 0,0 index: -1 -aquatic-04.ear-left +reptile-mystic-02.eyes-happy rotate: false - xy: 2839,3668 - size: 73,103 - orig: 73,103 + xy: 3008,1647 + size: 132,56 + orig: 132,56 offset: 0,0 index: -1 -xmas-02.eyes +reptile-mystic-02.eyes-shut rotate: false - xy: 3515,2947 - size: 125,60 - orig: 125,60 + xy: 3158,1647 + size: 132,56 + orig: 132,56 offset: 0,0 index: -1 -xmas-02.ear-right +reptile-mystic-02.eyes-angry rotate: false - xy: 2733,3994 - size: 85,88 - orig: 85,88 + xy: 3308,1647 + size: 132,56 + orig: 132,56 offset: 0,0 index: -1 -xmas-02.ear-left +reptile-mystic-02.eyes rotate: false - xy: 2839,3791 - size: 85,88 - orig: 85,88 + xy: 3458,1647 + size: 132,56 + orig: 132,56 offset: 0,0 index: -1 -bird-10.ear-left +reptile-02.eyes-angry rotate: false - xy: 2839,3899 - size: 83,90 - orig: 83,90 + xy: 3608,1647 + size: 134,55 + orig: 134,55 offset: 0,0 index: -1 -bird-08.ear-left +bird-mystic-02-lv2.eyes-happy rotate: false - xy: 3660,2947 - size: 94,79 - orig: 94,79 + xy: 3760,1647 + size: 153,48 + orig: 153,48 offset: 0,0 index: -1 -bird-mystic-02.mouth +bird-mystic-02-lv2.eyes-angry rotate: false - xy: 2948,3150 - size: 65,113 - orig: 65,113 + xy: 3931,1647 + size: 153,48 + orig: 153,48 offset: 0,0 index: -1 -beast-04.eyes-shut +bird-mystic-02-lv2.eyes rotate: false - xy: 1867,429 - size: 188,39 - orig: 188,39 + xy: 1739,1723 + size: 153,48 + orig: 153,48 offset: 0,0 index: -1 -bird-04.mouth-bite +aquatic-02-lv2.eyes-happy rotate: false - xy: 2948,3283 - size: 86,85 - orig: 86,85 + xy: 1605,1887 + size: 114,64 + orig: 114,64 offset: 0,0 index: -1 -reptile-08.ear-right +reptile-08.eyes rotate: false - xy: 2948,3388 - size: 57,128 - orig: 57,128 + xy: 1739,1789 + size: 117,62 + orig: 117,62 offset: 0,0 index: -1 -bird-02.mouth-open +bird-10.eyes-angry rotate: false - xy: 2948,3536 - size: 63,115 - orig: 63,115 + xy: 1874,1789 + size: 125,58 + orig: 125,58 offset: 0,0 index: -1 -bug-mystic-02.ear-right +reptile-04.eyes-angry rotate: false - xy: 2948,3671 - size: 66,108 - orig: 66,108 + xy: 2017,1789 + size: 125,58 + orig: 125,58 offset: 0,0 index: -1 -bird-02.eyes-happy +reptile-04-lv2.eyes-angry rotate: false - xy: 3190,815 - size: 187,38 - orig: 187,38 + xy: 2160,1789 + size: 127,57 + orig: 127,57 offset: 0,0 index: -1 -beast-04.horn +beast-04-lv2.tail rotate: false - xy: 2948,3799 - size: 70,101 - orig: 70,101 + xy: 1605,1969 + size: 113,64 + orig: 113,64 offset: 0,0 index: -1 -xmas-01.eyes-base +reptile-08-lv2.mouth-smile rotate: false - xy: 1718,1659 - size: 214,33 - orig: 214,33 + xy: 2305,1789 + size: 139,52 + orig: 139,52 offset: 0,0 index: -1 -beast-08.mouth-open +bird-06.tail rotate: false - xy: 2948,3920 - size: 64,110 - orig: 64,110 + xy: 1487,3835 + size: 87,83 + orig: 87,83 offset: 0,0 index: -1 -bug-02.mouth-bite +japan-02.mouth-open rotate: false - xy: 3774,2947 - size: 145,48 - orig: 145,48 + xy: 2462,1789 + size: 122,59 + orig: 122,59 offset: 0,0 index: -1 -japan-01.mouth +japan-02-lv2.eyes-happy rotate: false - xy: 3939,2947 - size: 96,72 - orig: 96,72 + xy: 1605,2051 + size: 116,62 + orig: 116,62 offset: 0,0 index: -1 -reptile-mystic-02.mouth +japan-02-lv2.eyes-shut rotate: false - xy: 3174,3046 - size: 172,40 - orig: 172,40 + xy: 1605,2131 + size: 116,62 + orig: 116,62 offset: 0,0 index: -1 -beast-02.mouth-smile +japan-02-lv2.eyes-angry rotate: false - xy: 3366,3046 - size: 103,66 - orig: 103,66 + xy: 1605,2211 + size: 116,62 + orig: 116,62 offset: 0,0 index: -1 -beast-mystic-02.mouth-smile +japan-02-lv2.eyes rotate: false - xy: 3489,3046 - size: 103,66 - orig: 103,66 + xy: 1605,2291 + size: 116,62 + orig: 116,62 offset: 0,0 index: -1 -beast-04.mouth-open +plant-06-lv2.ear-right rotate: false - xy: 3060,3147 - size: 50,135 - orig: 50,135 + xy: 1487,3936 + size: 79,91 + orig: 79,91 offset: 0,0 index: -1 -plant-10.ear-right +bird-04-lv2.eyes-happy rotate: false - xy: 3130,3147 - size: 72,93 - orig: 72,93 + xy: 1605,2371 + size: 114,63 + orig: 114,63 offset: 0,0 index: -1 -bird-12.ear-left +bird-04-lv2.eyes-shut rotate: false - xy: 3130,3260 - size: 69,97 - orig: 69,97 + xy: 1605,2452 + size: 114,63 + orig: 114,63 offset: 0,0 index: -1 -summer-as.mouth-bite +bird-04-lv2.eyes rotate: false - xy: 3612,3046 - size: 106,63 - orig: 106,63 + xy: 1605,2533 + size: 114,63 + orig: 114,63 offset: 0,0 index: -1 -summer-a.mouth-bite +reptile-mystic-02-lv2.eyes-happy rotate: false - xy: 3612,3046 - size: 106,63 - orig: 106,63 + xy: 2602,1789 + size: 135,53 + orig: 135,53 offset: 0,0 index: -1 -bird-08.mouth-smile +reptile-mystic-02-lv2.eyes rotate: false - xy: 3738,3046 - size: 83,79 - orig: 83,79 + xy: 2755,1789 + size: 135,53 + orig: 135,53 offset: 0,0 index: -1 -plant-08.mouth-smile +beast-02-lv2.eyes-happy rotate: false - xy: 1554,4039 - size: 138,47 - orig: 138,47 + xy: 1910,1723 + size: 149,48 + orig: 149,48 offset: 0,0 index: -1 -bug-06.tail +summer-as-lv2.ear-left-upper rotate: false - xy: 3841,3046 - size: 117,55 - orig: 117,55 + xy: 1605,2614 + size: 65,110 + orig: 65,110 offset: 0,0 index: -1 -plant-mystic-02.mouth-bite +summer-a-lv2.ear-left-upper rotate: false - xy: 1400,4037 - size: 130,49 - orig: 130,49 + xy: 1605,2742 + size: 65,110 + orig: 65,110 offset: 0,0 index: -1 -bird-02.mouth-bite +bug-02.tail rotate: false - xy: 2839,4009 - size: 89,71 - orig: 89,71 + xy: 1605,2870 + size: 85,84 + orig: 85,84 offset: 0,0 index: -1 -body-accessory.body-hip1a +reptile-08-lv2.mouth-bite rotate: false - xy: 3130,3377 - size: 70,90 - orig: 70,90 + xy: 2908,1789 + size: 140,51 + orig: 140,51 offset: 0,0 index: -1 -bug-04.ear-right +japan-03.eyes rotate: false - xy: 3222,3147 - size: 74,85 - orig: 74,85 + xy: 3066,1789 + size: 121,59 + orig: 121,59 offset: 0,0 index: -1 -bug-04.ear-left +reptile-08.eyes-happy rotate: false - xy: 3316,3147 - size: 74,85 - orig: 74,85 + xy: 3219,243 + size: 108,66 + orig: 108,66 offset: 0,0 index: -1 -xmas-02.eyes-angry +beast-02-lv2.ear-left rotate: false - xy: 3410,3147 - size: 123,51 - orig: 123,51 + xy: 4010,1289 + size: 74,96 + orig: 74,96 offset: 0,0 index: -1 -bird-04.mouth-open +bird-mystic-02.eyes-angry rotate: false - xy: 3130,3487 - size: 59,106 - orig: 59,106 + xy: 3205,1789 + size: 142,50 + orig: 142,50 offset: 0,0 index: -1 -beast-04.ear-right +bird-mystic-02.eyes rotate: false - xy: 3978,3046 - size: 79,79 - orig: 79,79 + xy: 3365,1789 + size: 142,50 + orig: 142,50 offset: 0,0 index: -1 -plant-02.mouth-bite +reptile-02-lv2.eyes rotate: false - xy: 3553,3147 - size: 130,48 - orig: 130,48 + xy: 3525,1789 + size: 129,55 + orig: 129,55 offset: 0,0 index: -1 -bug-10.mouth-smile +reptile-04-lv2.eyes-happy rotate: false - xy: 3703,3147 - size: 145,43 - orig: 145,43 + xy: 3672,1789 + size: 129,55 + orig: 129,55 offset: 0,0 index: -1 -reptile-10.ear-left +agamo-00-lv2.eyes-angry rotate: false - xy: 3868,3147 - size: 86,72 - orig: 86,72 + xy: 3819,1789 + size: 136,52 + orig: 136,52 offset: 0,0 index: -1 -bird-04.ear-right +reptile-10.eyes-angry rotate: false - xy: 2405,3505 - size: 60,102 - orig: 60,102 + xy: 3819,1789 + size: 136,52 + orig: 136,52 offset: 0,0 index: -1 -aquatic-10.mouth-smile +reptile-02.eyes rotate: false - xy: 3974,3147 - size: 103,59 - orig: 103,59 + xy: 1739,1869 + size: 136,52 + orig: 136,52 offset: 0,0 index: -1 -bug-mystic-02.mouth-open +reptile-mystic-02-lv2.mouth-bite rotate: false - xy: 3130,3613 - size: 69,86 - orig: 69,86 + xy: 1893,1869 + size: 144,49 + orig: 144,49 offset: 0,0 index: -1 -bird-02.mouth-smile +bug-mystic-02.mouth-bite rotate: false - xy: 3222,3252 - size: 75,79 - orig: 75,79 + xy: 1605,2972 + size: 112,63 + orig: 112,63 offset: 0,0 index: -1 -bird-08.mouth +plant-10-lv2.eyes-angry rotate: false - xy: 3222,3351 - size: 74,80 - orig: 74,80 + xy: 1893,1936 + size: 141,50 + orig: 141,50 offset: 0,0 index: -1 -body-normal.xmas-leg-front-right +bug-10.eyes-happy rotate: false - xy: 3317,3252 - size: 76,77 - orig: 76,77 + xy: 1893,2004 + size: 138,51 + orig: 138,51 offset: 0,0 index: -1 -beast-10.ear-right +agamo-01-lv2.eyes-happy rotate: false - xy: 3413,3252 - size: 81,72 - orig: 81,72 + xy: 1893,2004 + size: 138,51 + orig: 138,51 offset: 0,0 index: -1 -body-normal.xmas-leg-back-left +bug-10.eyes-shut rotate: false - xy: 3514,3252 - size: 76,76 - orig: 76,76 + xy: 1893,2073 + size: 138,51 + orig: 138,51 offset: 0,0 index: -1 -body-normal.xmas-leg-back-left-stretch +agamo-01-lv2.eyes-shut rotate: false - xy: 3514,3252 - size: 76,76 - orig: 76,76 + xy: 1893,2073 + size: 138,51 + orig: 138,51 offset: 0,0 index: -1 -japan-03.mouth +bug-10.eyes-angry rotate: false - xy: 2690,825 - size: 186,31 - orig: 186,31 + xy: 1893,2142 + size: 138,51 + orig: 138,51 offset: 0,0 index: -1 -beast-10.eyes-angry +agamo-01-lv2.eyes-angry rotate: false - xy: 3610,3252 - size: 134,43 - orig: 134,43 + xy: 1893,2142 + size: 138,51 + orig: 138,51 offset: 0,0 index: -1 -aquatic-10.mouth +bug-10.eyes rotate: false - xy: 3764,3252 - size: 96,60 - orig: 96,60 + xy: 1893,2211 + size: 138,51 + orig: 138,51 offset: 0,0 index: -1 -beast-10.ear-left +agamo-01-lv2.eyes rotate: false - xy: 3880,3252 - size: 82,70 - orig: 82,70 + xy: 1893,2211 + size: 138,51 + orig: 138,51 offset: 0,0 index: -1 -bird-02.eyes-shut +reptile-04.horn rotate: false - xy: 3426,818 - size: 184,31 - orig: 184,31 + xy: 1605,3053 + size: 69,102 + orig: 69,102 offset: 0,0 index: -1 -body-normal.xmas-leg-back-left-long +plant-04-lv2.eyes-angry rotate: false - xy: 3982,3252 - size: 77,74 - orig: 77,74 + xy: 1739,1939 + size: 119,59 + orig: 119,59 offset: 0,0 index: -1 -body-normal.xmas-leg-front-left-stretch +plant-08-lv2.eyes-happy rotate: false - xy: 3982,3252 - size: 77,74 - orig: 77,74 + xy: 1739,2016 + size: 119,59 + orig: 119,59 offset: 0,0 index: -1 -body-normal.xmas-leg-front-left-long +reptile-mystic-02-lv2.eyes-angry rotate: false - xy: 3982,3252 - size: 77,74 - orig: 77,74 + xy: 1739,2093 + size: 135,52 + orig: 135,52 offset: 0,0 index: -1 -bug-02.mouth-smile +bug-10-lv2.eyes rotate: false - xy: 3317,3349 - size: 94,60 - orig: 94,60 + xy: 1739,2163 + size: 121,58 + orig: 121,58 offset: 0,0 index: -1 -reptile-mystic-02.mouth-accessory +reptile-04-lv2.eyes rotate: false - xy: 3222,3451 - size: 75,75 - orig: 75,75 + xy: 1739,2239 + size: 127,55 + orig: 127,55 offset: 0,0 index: -1 -plant-mystic-02.mouth-accessory +plant-02-lv2.ear-left rotate: false - xy: 3222,3451 - size: 75,75 - orig: 75,75 + xy: 1605,3173 + size: 72,97 + orig: 72,97 offset: 0,0 index: -1 -beast-mystic-02.mouth-accessory +bird-10-lv2.ear-left rotate: false - xy: 3222,3451 - size: 75,75 - orig: 75,75 + xy: 1605,3288 + size: 75,93 + orig: 75,93 offset: 0,0 index: -1 -bug-mystic-02.mouth-accessory +reptile-02-lv2.mouth-smile rotate: false - xy: 3222,3451 - size: 75,75 - orig: 75,75 + xy: 1739,2312 + size: 118,59 + orig: 118,59 offset: 0,0 index: -1 -bird-mystic-02.mouth-accessory +xmas-02-lv2.eyes rotate: false - xy: 3222,3451 - size: 75,75 - orig: 75,75 + xy: 1808,1588 + size: 174,40 + orig: 174,40 offset: 0,0 index: -1 -body-normal.xmas-leg-front-left +reptile-04.eyes-shut rotate: false - xy: 3317,3429 - size: 76,74 - orig: 76,74 + xy: 2606,250 + size: 107,65 + orig: 107,65 offset: 0,0 index: -1 -reptile-10.mouth-bite +bug-12-lv2.ear-right rotate: false - xy: 3431,3349 - size: 122,46 - orig: 122,46 + xy: 1605,3399 + size: 67,103 + orig: 67,103 offset: 0,0 index: -1 -reptile-10.mouth-smile +bird-02-lv2.horn rotate: false - xy: 3573,3349 - size: 130,43 - orig: 130,43 + xy: 3528,243 + size: 103,67 + orig: 103,67 offset: 0,0 index: -1 -plant-mystic-02.mouth-open +bird-mystic-02.ear-left rotate: false - xy: 3130,3719 - size: 68,82 - orig: 68,82 + xy: 1605,3520 + size: 69,100 + orig: 69,100 offset: 0,0 index: -1 -bird-02.ear-left +bug-10-lv2.eyes-happy rotate: false - xy: 3222,3546 - size: 73,76 - orig: 73,76 + xy: 1739,2389 + size: 121,57 + orig: 121,57 offset: 0,0 index: -1 -beast-12.ear-left +bug-10-lv2.eyes-shut rotate: false - xy: 3413,3429 - size: 78,71 - orig: 78,71 + xy: 1739,2464 + size: 121,57 + orig: 121,57 offset: 0,0 index: -1 -aquatic-02.ear-right +bug-10-lv2.eyes-angry rotate: false - xy: 3060,3302 - size: 49,113 - orig: 49,113 + xy: 1739,2539 + size: 121,57 + orig: 121,57 offset: 0,0 index: -1 -bird-08.ear-right +plant-08.eyes-happy rotate: false - xy: 2404,3897 - size: 62,89 - orig: 62,89 + xy: 1739,2614 + size: 121,57 + orig: 121,57 offset: 0,0 index: -1 -plant-02.mouth-open +plant-08.eyes-shut rotate: false - xy: 3130,3821 - size: 68,81 - orig: 68,81 + xy: 1739,2689 + size: 121,57 + orig: 121,57 offset: 0,0 index: -1 -xmas-02.mouth +plant-08.eyes-angry rotate: false - xy: 3511,3429 - size: 84,65 - orig: 84,65 + xy: 1739,2764 + size: 121,57 + orig: 121,57 offset: 0,0 index: -1 -xmas-01.eyes-shut +plant-08.eyes rotate: false - xy: 2945,826 - size: 186,29 - orig: 186,29 + xy: 1739,2839 + size: 121,57 + orig: 121,57 offset: 0,0 index: -1 -beast-04.mouth-bite +body-bigyak.body-braid rotate: false - xy: 4014,2591 - size: 66,80 - orig: 66,80 + xy: 1605,3638 + size: 71,97 + orig: 71,97 offset: 0,0 index: -1 -aquatic-02.mouth +beast-02-lv2.mouth-open rotate: false - xy: 3130,3922 - size: 72,73 - orig: 72,73 + xy: 1605,3753 + size: 79,87 + orig: 79,87 offset: 0,0 index: -1 -beast-10.eyes +reptile-10-lv2.eyes-shut rotate: false - xy: 278,2620 - size: 134,39 - orig: 134,39 + xy: 1605,3858 + size: 109,63 + orig: 109,63 offset: 0,0 index: -1 -japan-03.mouth-bite +aquatic-04-lv2.ear-left rotate: false - xy: 1822,1150 - size: 186,28 - orig: 186,28 + xy: 1605,3939 + size: 66,104 + orig: 66,104 offset: 0,0 index: -1 -japan-03.ear-right +beast-02-lv2.eyes-angry rotate: false - xy: 3060,3435 - size: 49,106 - orig: 49,106 + xy: 2077,1723 + size: 149,46 + orig: 149,46 offset: 0,0 index: -1 -plant-04.eyes-happy +reptile-08.mouth-open rotate: false - xy: 1974,1659 - size: 152,34 - orig: 152,34 + xy: 1739,2914 + size: 116,59 + orig: 116,59 offset: 0,0 index: -1 -beast-02.mouth +plant-08-lv2.eyes-angry rotate: false - xy: 3413,3520 - size: 77,67 - orig: 77,67 + xy: 2278,257 + size: 118,58 + orig: 118,58 offset: 0,0 index: -1 -bug-02.mouth +beast-mystic-02.ear-left rotate: false - xy: 3723,3349 - size: 107,48 - orig: 107,48 + xy: 1739,2991 + size: 72,95 + orig: 72,95 offset: 0,0 index: -1 -bird-04.mouth-smile +plant-06.ear-right rotate: false - xy: 3222,3642 - size: 64,80 - orig: 64,80 + xy: 1739,3104 + size: 75,91 + orig: 75,91 offset: 0,0 index: -1 -body-normal.sumo-leg-front-right-long +reptile-mystic-02-lv2.eyes-shut rotate: false - xy: 3222,3742 - size: 71,72 - orig: 71,72 + xy: 1739,3213 + size: 131,52 + orig: 131,52 offset: 0,0 index: -1 -body-normal.sumo-leg-front-left-long +xmas-01-lv2.mouth-bite rotate: false - xy: 3222,3742 - size: 71,72 - orig: 71,72 + xy: 1739,3283 + size: 79,86 + orig: 79,86 offset: 0,0 index: -1 -body-normal.xmas-leg-front-right-stretch +reptile-02-lv2.eyes-angry rotate: false - xy: 3222,3834 - size: 71,72 - orig: 71,72 + xy: 1739,3387 + size: 128,53 + orig: 128,53 offset: 0,0 index: -1 -body-normal.xmas-leg-front-right-long +reptile-10-lv2.eyes-happy rotate: false - xy: 3222,3834 - size: 71,72 - orig: 71,72 + xy: 3973,1789 + size: 113,60 + orig: 113,60 offset: 0,0 index: -1 -bug-12.ear-left +aquatic-08.eyes-happy rotate: false - xy: 3222,3926 - size: 69,74 - orig: 69,74 + xy: 1739,3458 + size: 121,56 + orig: 121,56 offset: 0,0 index: -1 -body-accessory.body-neck1d +aquatic-10-lv2.mouth-bite rotate: false - xy: 3413,3607 - size: 78,65 - orig: 78,65 + xy: 2244,1723 + size: 141,48 + orig: 141,48 offset: 0,0 index: -1 -bug-08.mouth +reptile-mystic-02.mouth-bite rotate: false - xy: 2230,1659 - size: 181,28 - orig: 181,28 + xy: 2055,1869 + size: 138,49 + orig: 138,49 offset: 0,0 index: -1 -bird-02.mouth +reptile-04.eyes rotate: false - xy: 3317,3523 - size: 64,79 - orig: 64,79 + xy: 1739,3532 + size: 125,54 + orig: 125,54 offset: 0,0 index: -1 -bird-04.mouth +bird-08-lv2.eyes-angry rotate: false - xy: 3317,3622 - size: 62,80 - orig: 62,80 + xy: 1739,3604 + size: 114,59 + orig: 114,59 offset: 0,0 index: -1 -body-accessory.body-neck1b +bird-08-lv2.eyes rotate: false - xy: 3317,3722 - size: 66,75 - orig: 66,75 + xy: 1739,3681 + size: 114,59 + orig: 114,59 offset: 0,0 index: -1 -reptile-04.ear-left +summer-as-lv2.ear-right-upper rotate: false - xy: 3317,3817 - size: 67,73 - orig: 67,73 + xy: 1739,3758 + size: 60,112 + orig: 60,112 offset: 0,0 index: -1 -bird-10.mouth-open +summer-a-lv2.ear-right-upper rotate: false - xy: 3130,4015 - size: 69,70 - orig: 69,70 + xy: 1739,3888 + size: 60,112 + orig: 60,112 offset: 0,0 index: -1 -body-normal.sumo-leg-front-left-stretch +aquatic-10-lv2.mouth-smile rotate: false - xy: 3222,4020 - size: 71,66 - orig: 71,66 + xy: 1739,4018 + size: 131,51 + orig: 131,51 offset: 0,0 index: -1 -reptile-10.mouth +plant-12-lv2.horn rotate: false - xy: 3850,3349 - size: 120,39 - orig: 120,39 + xy: 1893,2280 + size: 106,63 + orig: 106,63 offset: 0,0 index: -1 -bug-02.ear-right +aquatic-04-lv2.eyes-happy rotate: false - xy: 3990,3349 - size: 79,58 - orig: 79,58 + xy: 2403,1723 + size: 142,47 + orig: 142,47 offset: 0,0 index: -1 -body-normal.sumo-leg-front-left +aquatic-04-lv2.eyes-shut rotate: false - xy: 3317,3910 - size: 71,64 - orig: 71,64 + xy: 2563,1723 + size: 142,47 + orig: 142,47 offset: 0,0 index: -1 -body-normal.sumo-leg-back-left-long +aquatic-04-lv2.eyes-angry rotate: false - xy: 3317,3994 - size: 64,71 - orig: 64,71 + xy: 2723,1723 + size: 142,47 + orig: 142,47 offset: 0,0 index: -1 -body-normal.sumo-leg-front-right +aquatic-04-lv2.eyes rotate: false - xy: 3413,3692 - size: 71,64 - orig: 71,64 + xy: 2883,1723 + size: 142,47 + orig: 142,47 offset: 0,0 index: -1 -beast-08.mouth-bite +aquatic-mystic-02.eyes-happy rotate: false - xy: 3615,3429 - size: 100,45 - orig: 100,45 + xy: 3043,1723 + size: 145,46 + orig: 145,46 offset: 0,0 index: -1 -aquatic-04.ear-right +aquatic-04.mouth rotate: false - xy: 636,3581 - size: 44,101 - orig: 44,101 + xy: 2052,1936 + size: 133,50 + orig: 133,50 offset: 0,0 index: -1 -aquatic-10.ear-right +aquatic-08-lv2.eyes-angry rotate: false - xy: 636,3581 - size: 44,101 - orig: 44,101 + xy: 1893,2361 + size: 130,51 + orig: 130,51 offset: 0,0 index: -1 -aquatic-mystic-02.mouth +japan-01.ear-right rotate: false - xy: 3413,3776 - size: 67,66 - orig: 67,66 + xy: 1893,2430 + size: 57,116 + orig: 57,116 offset: 0,0 index: -1 -xmas-01.mouth +bird-mystic-02-lv2.eyes-shut rotate: false - xy: 3413,3862 - size: 73,60 - orig: 73,60 + xy: 3206,1723 + size: 153,43 + orig: 153,43 offset: 0,0 index: -1 -body-normal.sumo-leg-back-left-stretch +japan-01.tail rotate: false - xy: 3413,3942 - size: 65,67 - orig: 65,67 + xy: 1893,2564 + size: 98,67 + orig: 98,67 offset: 0,0 index: -1 -body-normal.sumo-leg-front-right-stretch +agamo-00-lv2.eyes rotate: false - xy: 3735,3429 - size: 67,65 - orig: 67,65 + xy: 3377,1723 + size: 136,48 + orig: 136,48 offset: 0,0 index: -1 -summer-a.eyes-happy-accessory +reptile-10.eyes rotate: false - xy: 3511,3514 - size: 64,68 - orig: 64,68 + xy: 3377,1723 + size: 136,48 + orig: 136,48 offset: 0,0 index: -1 -summer-as.mouth-smile +aquatic-04.eyes-happy rotate: false - xy: 3822,3429 - size: 106,41 - orig: 106,41 + xy: 1893,2649 + size: 128,51 + orig: 128,51 offset: 0,0 index: -1 -summer-a.mouth-smile +aquatic-04.eyes-shut rotate: false - xy: 3822,3429 - size: 106,41 - orig: 106,41 + xy: 1893,2718 + size: 128,51 + orig: 128,51 offset: 0,0 index: -1 -summer-as.eyes-happy-accessory +aquatic-04.eyes-angry rotate: false - xy: 3511,3602 - size: 63,67 - orig: 63,67 + xy: 1893,2787 + size: 128,51 + orig: 128,51 offset: 0,0 index: -1 -reptile-04.ear-right +aquatic-04.eyes rotate: false - xy: 3511,3689 - size: 57,74 - orig: 57,74 + xy: 1893,2856 + size: 128,51 + orig: 128,51 offset: 0,0 index: -1 -bird-10.mouth-smile +aquatic-08.mouth-smile rotate: false - xy: 3511,3783 - size: 60,70 - orig: 60,70 + xy: 1893,2925 + size: 97,67 + orig: 97,67 offset: 0,0 index: -1 -bug-04.mouth-bite +aquatic-06.horn rotate: false - xy: 3948,3429 - size: 95,44 - orig: 95,44 + xy: 1893,3010 + size: 97,67 + orig: 97,67 offset: 0,0 index: -1 -body-accessory.body-cheek1g +bird-10-lv2.eyes-happy rotate: false - xy: 3595,3514 - size: 67,62 - orig: 67,62 + xy: 1893,3095 + size: 112,58 + orig: 112,58 offset: 0,0 index: -1 -bug-04.mouth +bird-10-lv2.eyes-shut rotate: false - xy: 2486,1659 - size: 110,37 - orig: 110,37 + xy: 1893,3171 + size: 112,58 + orig: 112,58 offset: 0,0 index: -1 -xmas-02.eyes-happy +bird-10-lv2.eyes rotate: false - xy: 2572,1947 - size: 145,28 - orig: 145,28 + xy: 1893,3247 + size: 112,58 + orig: 112,58 offset: 0,0 index: -1 -bug-10.mouth +aquatic-04.mouth-smile rotate: false - xy: 3682,3514 - size: 86,47 - orig: 86,47 + xy: 3531,1723 + size: 141,46 + orig: 141,46 offset: 0,0 index: -1 -beast-mystic-02.mouth +plant-08-lv2.ear-left rotate: false - xy: 3413,4029 - size: 76,53 - orig: 76,53 + xy: 1893,3323 + size: 76,85 + orig: 76,85 offset: 0,0 index: -1 -japan-01.mouth-smile +reptile-06-lv2.ear-right rotate: false - xy: 3788,3514 - size: 98,41 - orig: 98,41 + xy: 1968,2430 + size: 56,115 + orig: 56,115 offset: 0,0 index: -1 -reptile-04.mouth-bite +reptile-06-lv2.ear-left rotate: false - xy: 3906,3514 - size: 91,44 - orig: 91,44 + xy: 1893,3426 + size: 56,115 + orig: 56,115 offset: 0,0 index: -1 -body-normal.sumo-leg-back-left +xmas-02-lv2.eyes-angry rotate: false - xy: 4017,3514 - size: 66,60 - orig: 66,60 + xy: 2000,1588 + size: 174,37 + orig: 174,37 offset: 0,0 index: -1 -body-accessory.body-neck1e +aquatic-08.mouth-bite rotate: false - xy: 3511,3873 - size: 57,69 - orig: 57,69 + xy: 1893,3559 + size: 96,67 + orig: 96,67 offset: 0,0 index: -1 -bug-02.mouth-open +bird-08.eyes-angry rotate: false - xy: 3595,3596 - size: 75,52 - orig: 75,52 + xy: 1893,3644 + size: 119,54 + orig: 119,54 offset: 0,0 index: -1 -beast-08.mouth-smile +bird-08.eyes rotate: false - xy: 1814,3472 - size: 48,81 - orig: 48,81 + xy: 1893,3716 + size: 119,54 + orig: 119,54 offset: 0,0 index: -1 -plant-04.mouth-smile +reptile-08.mouth-smile rotate: false - xy: 3690,3596 - size: 92,42 - orig: 92,42 + xy: 3690,1723 + size: 139,46 + orig: 139,46 offset: 0,0 index: -1 -plant-02.eyes-happy +japan-01-lv2.mouth rotate: false - xy: 1677,833 - size: 181,21 - orig: 181,21 + xy: 1893,3788 + size: 94,68 + orig: 94,68 offset: 0,0 index: -1 -plant-02.eyes +reptile-02.ear-right rotate: false - xy: 1677,833 - size: 181,21 - orig: 181,21 + xy: 1893,3874 + size: 71,90 + orig: 71,90 offset: 0,0 index: -1 -beast-10.eyes-shut +reptile-08.eyes-shut rotate: false - xy: 3032,1944 - size: 125,30 - orig: 125,30 + xy: 1893,3982 + size: 103,62 + orig: 103,62 offset: 0,0 index: -1 -bird-12.ear-right +plant-10-lv2.eyes rotate: false - xy: 3802,3596 - size: 76,49 - orig: 76,49 + xy: 2049,2004 + size: 125,51 + orig: 125,51 offset: 0,0 index: -1 -beast-10.mouth-smile +reptile-12-lv2.ear-right rotate: false - xy: 1019,428 - size: 90,41 - orig: 90,41 + xy: 2049,2073 + size: 50,127 + orig: 50,127 offset: 0,0 index: -1 -beast-12.ear-right +bug-mystic-02-lv2.mouth rotate: false - xy: 2413,3782 - size: 55,67 - orig: 55,67 + xy: 2117,2073 + size: 69,92 + orig: 69,92 offset: 0,0 index: -1 -body-accessory.body-neck1a +reptile-02.mouth-bite rotate: false - xy: 3511,3962 - size: 59,62 - orig: 59,62 + xy: 3847,1723 + size: 138,46 + orig: 138,46 offset: 0,0 index: -1 -body-accessory.body-neck1c +plant-mystic-02.horn rotate: false - xy: 4035,2691 - size: 51,71 - orig: 51,71 + xy: 2117,2183 + size: 68,93 + orig: 68,93 offset: 0,0 index: -1 -bug-02.ear-left +reptile-02-lv2.eyes-shut rotate: false - xy: 3595,3668 - size: 60,60 - orig: 60,60 + xy: 2203,1936 + size: 126,50 + orig: 126,50 offset: 0,0 index: -1 -bug-10.mouth-bite +reptile-02.eyes-shut rotate: false - xy: 3898,3596 - size: 85,42 - orig: 85,42 + xy: 2347,1936 + size: 126,50 + orig: 126,50 offset: 0,0 index: -1 -summer-a.mouth +aquatic-08.eyes-shut rotate: false - xy: 2616,1659 - size: 93,37 - orig: 93,37 + xy: 2204,2073 + size: 121,52 + orig: 121,52 offset: 0,0 index: -1 -plant-02.eyes-shut +aquatic-08.eyes rotate: false - xy: 2182,833 - size: 181,19 - orig: 181,19 + xy: 2343,2073 + size: 121,52 + orig: 121,52 offset: 0,0 index: -1 -beast-04.mouth-smile +bird-mystic-02.eyes-shut rotate: false - xy: 3060,3561 - size: 48,71 - orig: 48,71 + xy: 2211,1869 + size: 143,44 + orig: 143,44 offset: 0,0 index: -1 -xmas-01.body-pattern +bug-mystic-02-lv2.mouth-happy rotate: false - xy: 4040,1716 - size: 40,83 - orig: 40,83 + xy: 2482,2073 + size: 69,91 + orig: 69,91 offset: 0,0 index: -1 -summer-as.mouth +aquatic-04.mouth-bite rotate: false - xy: 2948,4050 - size: 92,36 - orig: 92,36 + xy: 2192,1588 + size: 153,41 + orig: 153,41 offset: 0,0 index: -1 -xmas-01.mouth-eat +bird-04-lv2.eyes-angry rotate: false - xy: 3675,3668 - size: 100,33 - orig: 100,33 + xy: 2569,2073 + size: 114,55 + orig: 114,55 offset: 0,0 index: -1 -xmas-02.mouth-eat +bird-08-lv2.mouth-open rotate: false - xy: 3675,3668 - size: 100,33 - orig: 100,33 + xy: 2701,2073 + size: 95,66 + orig: 95,66 offset: 0,0 index: -1 -body-normal.mystic-leg-front-right +beast-04-lv2.mouth-open rotate: false - xy: 3595,3748 - size: 51,60 - orig: 51,60 + xy: 2814,2073 + size: 72,87 + orig: 72,87 offset: 0,0 index: -1 -body-normal.leg-front-right +xmas-02-lv2.eyes-shut rotate: false - xy: 3595,3828 - size: 51,60 - orig: 51,60 + xy: 762,279 + size: 174,36 + orig: 174,36 offset: 0,0 index: -1 -body-normal.leg-back-left +plant-10-lv2.eyes-happy rotate: false - xy: 3595,3908 - size: 51,60 - orig: 51,60 + xy: 2491,1936 + size: 125,50 + orig: 125,50 offset: 0,0 index: -1 -plant-04.eyes-shut +plant-10-lv2.eyes-shut rotate: false - xy: 2436,830 - size: 159,19 - orig: 159,19 + xy: 2634,1936 + size: 125,50 + orig: 125,50 offset: 0,0 index: -1 -body-normal.mystic-leg-back-left +plant-06.horn rotate: false - xy: 3595,3988 - size: 51,59 - orig: 51,59 + xy: 2904,2073 + size: 76,82 + orig: 76,82 offset: 0,0 index: -1 -beast-04.mouth +reptile-08-lv2.eyes-angry rotate: false - xy: 636,3702 - size: 44,68 - orig: 44,68 + xy: 2372,1869 + size: 127,49 + orig: 127,49 offset: 0,0 index: -1 -body-bigyak.body-pattern +reptile-10-lv2.mouth-open rotate: false - xy: 1817,3195 - size: 39,75 - orig: 39,75 + xy: 2998,2073 + size: 103,60 + orig: 103,60 offset: 0,0 index: -1 -beast-10.mouth +bird-mystic-02.eyes-happy rotate: false - xy: 4003,3596 - size: 71,41 - orig: 71,41 + xy: 2517,1869 + size: 143,43 + orig: 143,43 offset: 0,0 index: -1 -summer-as.ear-left-bubble +aquatic-08-lv2.ear-left rotate: false - xy: 3675,3721 - size: 56,51 - orig: 56,51 + xy: 1967,3426 + size: 64,96 + orig: 64,96 offset: 0,0 index: -1 -summer-a.ear-left-bubble +bird-08.horn rotate: false - xy: 3675,3792 - size: 56,51 - orig: 56,51 + xy: 3119,2073 + size: 99,62 + orig: 99,62 offset: 0,0 index: -1 -body-normal.summer-leg-back-left +bug-04-lv2.mouth-open rotate: false - xy: 4036,2413 - size: 49,58 - orig: 49,58 + xy: 1976,256 + size: 109,56 + orig: 109,56 offset: 0,0 index: -1 -body-normal.summer-leg-front-right +xmas-01-lv2.mouth-smile rotate: false - xy: 3060,3652 - size: 49,58 - orig: 49,58 + xy: 3236,2073 + size: 77,79 + orig: 77,79 offset: 0,0 index: -1 -body-normal.leg-back-left-long +japan-01.mouth-open rotate: false - xy: 3675,3863 - size: 54,52 - orig: 54,52 + xy: 3331,2073 + size: 80,76 + orig: 80,76 offset: 0,0 index: -1 -body-normal.mystic-leg-back-left-long +beast-04.eyes-angry rotate: false - xy: 3675,3935 - size: 54,52 - orig: 54,52 + xy: 2678,1869 + size: 124,49 + orig: 124,49 offset: 0,0 index: -1 -body-normal.mystic-leg-front-left-long +beast-04-lv2.eyes-happy rotate: false - xy: 3675,4007 - size: 56,49 - orig: 56,49 + xy: 3429,2073 + size: 110,55 + orig: 110,55 offset: 0,0 index: -1 -body-normal.mystic-leg-front-right-long +beast-04-lv2.eyes-shut rotate: false - xy: 3675,4007 - size: 56,49 - orig: 56,49 + xy: 3557,2073 + size: 110,55 + orig: 110,55 offset: 0,0 index: -1 -body-normal.summer-leg-front-right-long +beast-04-lv2.eyes-angry rotate: false - xy: 3751,3721 - size: 56,49 - orig: 56,49 + xy: 3685,2073 + size: 110,55 + orig: 110,55 offset: 0,0 index: -1 -body-normal.leg-front-right-long +beast-04-lv2.eyes rotate: false - xy: 3827,3721 - size: 56,49 - orig: 56,49 + xy: 3813,2073 + size: 110,55 + orig: 110,55 offset: 0,0 index: -1 -body-normal.leg-front-left-long +aquatic-08-lv2.ear-right rotate: false - xy: 3827,3721 - size: 56,49 - orig: 56,49 + xy: 2117,2294 + size: 63,96 + orig: 63,96 offset: 0,0 index: -1 -body-normal.summer-leg-back-left-long +plant-08.ear-left rotate: false - xy: 3751,3790 - size: 53,51 - orig: 53,51 + xy: 3941,2073 + size: 72,84 + orig: 72,84 offset: 0,0 index: -1 -summer-as.ear-right-bubble +beast-mystic-02.ear-right rotate: false - xy: 3751,3861 - size: 53,51 - orig: 53,51 + xy: 2117,2408 + size: 61,99 + orig: 61,99 offset: 0,0 index: -1 -body-frosty.body-bell +reptile-08-lv2.ear-right rotate: false - xy: 3903,3721 - size: 58,46 - orig: 58,46 + xy: 2117,2525 + size: 61,99 + orig: 61,99 offset: 0,0 index: -1 -bird-10.mouth-bite +japan-03-lv2.eyes-happy rotate: false - xy: 3751,3932 - size: 53,50 - orig: 53,50 + xy: 2203,2183 + size: 116,52 + orig: 116,52 offset: 0,0 index: -1 -body-normal.summer-leg-front-left-long +japan-03-lv2.mouth rotate: false - xy: 3981,3721 - size: 55,48 - orig: 55,48 + xy: 2820,1869 + size: 123,49 + orig: 123,49 offset: 0,0 index: -1 -plant-08.mouth +japan-02-lv2.mouth-smile rotate: false - xy: 2075,429 - size: 69,38 - orig: 69,38 + xy: 2363,1588 + size: 167,36 + orig: 167,36 offset: 0,0 index: -1 -body-accessory.body-neck1f +plant-10.mouth-open rotate: false - xy: 3751,4002 - size: 51,51 - orig: 51,51 + xy: 2203,2253 + size: 75,80 + orig: 75,80 offset: 0,0 index: -1 -xmas-02.eyes-shut +reptile-04.eyes-happy rotate: false - xy: 3869,832 - size: 136,19 - orig: 136,19 + xy: 2961,1869 + size: 125,48 + orig: 125,48 offset: 0,0 index: -1 -summer-a.ear-right-bubble +bird-10.eyes-happy rotate: false - xy: 3824,3790 - size: 53,47 - orig: 53,47 + xy: 2296,2253 + size: 109,55 + orig: 109,55 offset: 0,0 index: -1 -bug-12.ear-right +japan-02.eyes-angry rotate: false - xy: 4053,10 - size: 31,80 - orig: 31,80 + xy: 2423,2253 + size: 113,53 + orig: 113,53 offset: 0,0 index: -1 -body-normal.body-light-breath +aquatic-02.eyes-angry rotate: false - xy: 3060,3730 - size: 49,49 - orig: 49,49 + xy: 2554,2253 + size: 113,53 + orig: 113,53 offset: 0,0 index: -1 -body-normal.mystic-leg-front-right-stretch +bug-02-lv2.mouth-bite rotate: false - xy: 3897,3790 - size: 51,44 - orig: 51,44 + xy: 3104,1869 + size: 130,46 + orig: 130,46 offset: 0,0 index: -1 -body-normal.leg-front-right-stretch +summer-as.ear-left-upper rotate: false - xy: 3968,3790 - size: 51,44 - orig: 51,44 + xy: 2117,2642 + size: 61,98 + orig: 61,98 offset: 0,0 index: -1 -body-normal.leg-front-left-stretch +summer-a.ear-left-upper rotate: false - xy: 1815,3752 - size: 44,49 - orig: 44,49 + xy: 2117,2758 + size: 61,98 + orig: 61,98 + offset: 0,0 + index: -1 +bug-mystic-02-lv2.mouth-smile + rotate: false + xy: 2117,2874 + size: 67,89 + orig: 67,89 + offset: 0,0 + index: -1 +beast-02-lv2.ear-right + rotate: false + xy: 2117,2981 + size: 62,96 + orig: 62,96 + offset: 0,0 + index: -1 +japan-02-lv2.ear-left + rotate: false + xy: 2117,3095 + size: 62,96 + orig: 62,96 + offset: 0,0 + index: -1 +plant-04-lv2.eyes-happy + rotate: false + xy: 2777,1936 + size: 119,50 + orig: 119,50 + offset: 0,0 + index: -1 +plant-04-lv2.eyes-shut + rotate: false + xy: 2914,1936 + size: 119,50 + orig: 119,50 + offset: 0,0 + index: -1 +plant-04-lv2.eyes + rotate: false + xy: 3051,1936 + size: 119,50 + orig: 119,50 + offset: 0,0 + index: -1 +bird-04-lv2.ear-left + rotate: false + xy: 2117,3209 + size: 66,90 + orig: 66,90 + offset: 0,0 + index: -1 +plant-04-lv2.ear-right + rotate: false + xy: 2296,2326 + size: 77,77 + orig: 77,77 + offset: 0,0 + index: -1 +plant-04-lv2.ear-left + rotate: false + xy: 2296,2421 + size: 77,77 + orig: 77,77 + offset: 0,0 + index: -1 +bird-08-lv2.eyes-happy + rotate: false + xy: 2337,2183 + size: 114,52 + orig: 114,52 + offset: 0,0 + index: -1 +bird-08-lv2.eyes-shut + rotate: false + xy: 2469,2183 + size: 114,52 + orig: 114,52 + offset: 0,0 + index: -1 +xmas-02-lv2.eyes-happy + rotate: false + xy: 2548,1588 + size: 174,34 + orig: 174,34 + offset: 0,0 + index: -1 +bug-08.ear-left + rotate: false + xy: 2203,2351 + size: 69,85 + orig: 69,85 + offset: 0,0 + index: -1 +beast-mystic-02.eyes-happy + rotate: false + xy: 2391,2326 + size: 93,63 + orig: 93,63 + offset: 0,0 + index: -1 +xmas-01-lv2.mouth-open + rotate: false + xy: 2117,3317 + size: 63,93 + orig: 63,93 + offset: 0,0 + index: -1 +plant-02-lv2.ear-right + rotate: false + xy: 1817,3758 + size: 58,101 + orig: 58,101 + offset: 0,0 + index: -1 +bird-02.ear-right + rotate: false + xy: 2117,3428 + size: 61,96 + orig: 61,96 + offset: 0,0 + index: -1 +beast-02.ear-right + rotate: false + xy: 2117,3428 + size: 61,96 + orig: 61,96 + offset: 0,0 + index: -1 +bug-06.ear-right + rotate: false + xy: 2117,3428 + size: 61,96 + orig: 61,96 + offset: 0,0 + index: -1 +xmas-02.mouth-bite + rotate: false + xy: 2391,2407 + size: 90,65 + orig: 90,65 + offset: 0,0 + index: -1 +beast-08-lv2.ear-right + rotate: false + xy: 2117,3542 + size: 65,90 + orig: 65,90 + offset: 0,0 + index: -1 +reptile-08-lv2.mouth + rotate: false + xy: 3252,1869 + size: 127,46 + orig: 127,46 + offset: 0,0 + index: -1 +reptile-08-lv2.ear-left + rotate: false + xy: 2117,3650 + size: 59,99 + orig: 59,99 + offset: 0,0 + index: -1 +plant-10.mouth + rotate: false + xy: 2203,2454 + size: 73,80 + orig: 73,80 + offset: 0,0 + index: -1 +plant-10.mouth-bite + rotate: false + xy: 2203,2552 + size: 73,80 + orig: 73,80 + offset: 0,0 + index: -1 +plant-10.mouth-smile + rotate: false + xy: 2203,2650 + size: 73,80 + orig: 73,80 + offset: 0,0 + index: -1 +japan-03-lv2.eyes-shut + rotate: false + xy: 2601,2183 + size: 112,52 + orig: 112,52 + offset: 0,0 + index: -1 +japan-03-lv2.eyes-angry + rotate: false + xy: 2731,2183 + size: 112,52 + orig: 112,52 + offset: 0,0 + index: -1 +japan-03-lv2.eyes + rotate: false + xy: 2861,2183 + size: 112,52 + orig: 112,52 + offset: 0,0 + index: -1 +japan-02-lv2.mouth-bite + rotate: false + xy: 2740,1588 + size: 149,39 + orig: 149,39 + offset: 0,0 + index: -1 +aquatic-08.eyes-angry + rotate: false + xy: 3397,1869 + size: 121,48 + orig: 121,48 + offset: 0,0 + index: -1 +bug-08.ear-right + rotate: false + xy: 2117,3767 + size: 66,88 + orig: 66,88 + offset: 0,0 + index: -1 +beast-02.mouth-bite + rotate: false + xy: 3536,1869 + size: 118,49 + orig: 118,49 + offset: 0,0 + index: -1 +beast-mystic-02.mouth-bite + rotate: false + xy: 3672,1869 + size: 118,49 + orig: 118,49 + offset: 0,0 + index: -1 +japan-03.eyes-happy + rotate: false + xy: 2192,2004 + size: 113,51 + orig: 113,51 + offset: 0,0 + index: -1 +japan-03.eyes-shut + rotate: false + xy: 2323,2004 + size: 113,51 + orig: 113,51 + offset: 0,0 + index: -1 +japan-02.eyes-shut + rotate: false + xy: 2454,2004 + size: 113,51 + orig: 113,51 + offset: 0,0 + index: -1 +japan-02.eyes + rotate: false + xy: 2585,2004 + size: 113,51 + orig: 113,51 + offset: 0,0 + index: -1 +aquatic-02.eyes-shut + rotate: false + xy: 2716,2004 + size: 113,51 + orig: 113,51 + offset: 0,0 + index: -1 +aquatic-02.eyes + rotate: false + xy: 2847,2004 + size: 113,51 + orig: 113,51 + offset: 0,0 + index: -1 +bug-08.mouth-bite + rotate: false + xy: 3808,1869 + size: 120,48 + orig: 120,48 + offset: 0,0 + index: -1 +beast-mystic-02.eyes-angry + rotate: false + xy: 2502,2326 + size: 97,59 + orig: 97,59 + offset: 0,0 + index: -1 +agamo-00.horn + rotate: false + xy: 2391,2490 + size: 84,68 + orig: 84,68 + offset: 0,0 + index: -1 +reptile-02-lv2.eyes-happy + rotate: false + xy: 3946,1869 + size: 119,48 + orig: 119,48 + offset: 0,0 + index: -1 +aquatic-12.horn + rotate: false + xy: 2391,2576 + size: 84,68 + orig: 84,68 + offset: 0,0 + index: -1 +beast-10-lv2.eyes-happy + rotate: false + xy: 2617,2326 + size: 95,60 + orig: 95,60 + offset: 0,0 + index: -1 +plant-10.eyes-happy + rotate: false + xy: 3188,1936 + size: 114,50 + orig: 114,50 + offset: 0,0 + index: -1 +plant-10.eyes-shut + rotate: false + xy: 3320,1936 + size: 114,50 + orig: 114,50 + offset: 0,0 + index: -1 +plant-10.eyes-angry + rotate: false + xy: 3452,1936 + size: 114,50 + orig: 114,50 + offset: 0,0 + index: -1 +plant-10.eyes + rotate: false + xy: 3584,1936 + size: 114,50 + orig: 114,50 + offset: 0,0 + index: -1 +plant-mystic-02.ear-left + rotate: false + xy: 2117,3873 + size: 67,85 + orig: 67,85 + offset: 0,0 + index: -1 +xmas-01-lv2.mouth-blink + rotate: false + xy: 2391,2662 + size: 78,73 + orig: 78,73 + offset: 0,0 + index: -1 +aquatic-08.mouth-open + rotate: false + xy: 2391,2753 + size: 79,72 + orig: 79,72 + offset: 0,0 + index: -1 +aquatic-10.mouth-open + rotate: false + xy: 2391,2843 + size: 80,71 + orig: 80,71 + offset: 0,0 + index: -1 +bird-08-lv2.ear-left + rotate: false + xy: 2117,3976 + size: 59,96 + orig: 59,96 + offset: 0,0 + index: -1 +japan-03.mouth-open + rotate: false + xy: 3716,1936 + size: 123,46 + orig: 123,46 + offset: 0,0 + index: -1 +bug-10-lv2.ear-right + rotate: false + xy: 370,967 + size: 35,161 + orig: 35,161 + offset: 0,0 + index: -1 +bug-08-lv2.mouth-smile + rotate: false + xy: 2685,2253 + size: 106,53 + orig: 106,53 + offset: 0,0 + index: -1 +plant-08-lv2.ear-right + rotate: false + xy: 2203,2748 + size: 66,85 + orig: 66,85 + offset: 0,0 + index: -1 +bug-04.mouth-open + rotate: false + xy: 2730,2326 + size: 100,56 + orig: 100,56 + offset: 0,0 + index: -1 +summer-as-lv2.ear-left-under + rotate: false + xy: 2203,2851 + size: 60,93 + orig: 60,93 + offset: 0,0 + index: -1 +summer-a-lv2.ear-left-under + rotate: false + xy: 2203,2962 + size: 60,93 + orig: 60,93 + offset: 0,0 + index: -1 +aquatic-08-lv2.mouth-open + rotate: false + xy: 2391,2932 + size: 79,70 + orig: 79,70 + offset: 0,0 + index: -1 +beast-02.eyes-happy + rotate: false + xy: 3857,1936 + size: 120,46 + orig: 120,46 + offset: 0,0 + index: -1 +japan-02-lv2.mouth + rotate: false + xy: 2907,1588 + size: 149,37 + orig: 149,37 + offset: 0,0 + index: -1 +reptile-02-lv2.mouth + rotate: false + xy: 2809,2253 + size: 104,53 + orig: 104,53 + offset: 0,0 + index: -1 +bug-08-lv2.ear-right + rotate: false + xy: 370,3253 + size: 42,131 + orig: 42,131 + offset: 0,0 + index: -1 +beast-mystic-02.eyes + rotate: false + xy: 2848,2326 + size: 93,59 + orig: 93,59 + offset: 0,0 + index: -1 +summer-as-lv2.mouth-open + rotate: false + xy: 2959,2326 + size: 93,59 + orig: 93,59 + offset: 0,0 + index: -1 +plant-04-lv2.horn + rotate: false + xy: 2203,3073 + size: 63,87 + orig: 63,87 + offset: 0,0 + index: -1 +beast-mystic-02-lv2.mouth-smile + rotate: false + xy: 3070,2326 + size: 96,57 + orig: 96,57 + offset: 0,0 + index: -1 +japan-02.eyes-happy + rotate: false + xy: 2978,2004 + size: 114,48 + orig: 114,48 + offset: 0,0 + index: -1 +aquatic-02.eyes-happy + rotate: false + xy: 3110,2004 + size: 114,48 + orig: 114,48 + offset: 0,0 + index: -1 +beast-10-lv2.ear-left + rotate: false + xy: 2203,3178 + size: 60,91 + orig: 60,91 + offset: 0,0 + index: -1 +bird-02-lv2.eyes-angry + rotate: false + xy: 3242,2004 + size: 130,42 + orig: 130,42 + offset: 0,0 + index: -1 +bird-02-lv2.eyes + rotate: false + xy: 3390,2004 + size: 130,42 + orig: 130,42 + offset: 0,0 + index: -1 +aquatic-02-lv2.mouth-smile + rotate: false + xy: 3538,2004 + size: 121,45 + orig: 121,45 + offset: 0,0 + index: -1 +reptile-04-lv2.mouth-open + rotate: false + xy: 3677,2004 + size: 111,49 + orig: 111,49 + offset: 0,0 + index: -1 +bird-mystic-02-lv2.mouth-bite + rotate: false + xy: 2203,3287 + size: 59,92 + orig: 59,92 + offset: 0,0 + index: -1 +body-accessory.body-air1b_02 + rotate: false + xy: 2203,3397 + size: 66,82 + orig: 66,82 + offset: 0,0 + index: -1 +body-accessory.body-air1b_00 + rotate: false + xy: 2203,3497 + size: 66,82 + orig: 66,82 + offset: 0,0 + index: -1 +body-accessory.body-air1b_01 + rotate: false + xy: 2203,3597 + size: 66,82 + orig: 66,82 + offset: 0,0 + index: -1 +bug-mystic-02-lv2.mouth-open + rotate: false + xy: 1817,3888 + size: 54,100 + orig: 54,100 + offset: 0,0 + index: -1 +bug-08.horn + rotate: false + xy: 3806,2004 + size: 110,49 + orig: 110,49 + offset: 0,0 + index: -1 +plant-02-lv2.horn + rotate: false + xy: 2203,3697 + size: 58,92 + orig: 58,92 + offset: 0,0 + index: -1 +reptile-02.eyes-happy + rotate: false + xy: 3934,2004 + size: 124,43 + orig: 124,43 + offset: 0,0 + index: -1 +beast-08-lv2.ear-left + rotate: false + xy: 2203,3807 + size: 62,86 + orig: 62,86 + offset: 0,0 + index: -1 +aquatic-02-lv2.mouth-bite + rotate: false + xy: 3074,1588 + size: 130,41 + orig: 130,41 + offset: 0,0 + index: -1 +beast-mystic-02.eyes-shut + rotate: false + xy: 3184,2326 + size: 90,59 + orig: 90,59 + offset: 0,0 + index: -1 +agamo-01.horn + rotate: false + xy: 2203,3911 + size: 61,87 + orig: 61,87 + offset: 0,0 + index: -1 +plant-mystic-02-lv2.eyes-happy + rotate: false + xy: 2991,2183 + size: 104,51 + orig: 104,51 + offset: 0,0 + index: -1 +plant-mystic-02-lv2.eyes-shut + rotate: false + xy: 2991,2183 + size: 104,51 + orig: 104,51 + offset: 0,0 + index: -1 +plant-mystic-02-lv2.eyes-angry + rotate: false + xy: 2991,2183 + size: 104,51 + orig: 104,51 + offset: 0,0 + index: -1 +plant-mystic-02-lv2.eyes + rotate: false + xy: 2991,2183 + size: 104,51 + orig: 104,51 + offset: 0,0 + index: -1 +reptile-08-lv2.eyes-happy + rotate: false + xy: 3113,2183 + size: 106,50 + orig: 106,50 + offset: 0,0 + index: -1 +summer-as-lv2.mouth-bite + rotate: false + xy: 2931,2253 + size: 98,54 + orig: 98,54 + offset: 0,0 + index: -1 +beast-10-lv2.eyes-shut + rotate: false + xy: 3292,2326 + size: 88,60 + orig: 88,60 + offset: 0,0 + index: -1 +bug-08.mouth-smile + rotate: false + xy: 3237,2183 + size: 120,44 + orig: 120,44 + offset: 0,0 + index: -1 +bug-04-lv2.mouth-smile + rotate: false + xy: 3047,2253 + size: 99,53 + orig: 99,53 + offset: 0,0 + index: -1 +plant-02.horn + rotate: false + xy: 2296,2516 + size: 61,86 + orig: 61,86 + offset: 0,0 + index: -1 +body-accessory.body-hip1d + rotate: false + xy: 3398,2326 + size: 86,61 + orig: 86,61 + offset: 0,0 + index: -1 +reptile-08-lv2.eyes + rotate: false + xy: 3375,2183 + size: 107,49 + orig: 107,49 + offset: 0,0 + index: -1 +bird-10.eyes-shut + rotate: false + xy: 3500,2183 + size: 109,48 + orig: 109,48 + offset: 0,0 + index: -1 +bird-10.eyes + rotate: false + xy: 3627,2183 + size: 109,48 + orig: 109,48 + offset: 0,0 + index: -1 +agamo-00-lv2.eyes-happy + rotate: false + xy: 3754,2183 + size: 111,47 + orig: 111,47 + offset: 0,0 + index: -1 +reptile-10.eyes-happy + rotate: false + xy: 3754,2183 + size: 111,47 + orig: 111,47 + offset: 0,0 + index: -1 +bird-10-lv2.ear-right + rotate: false + xy: 2296,2620 + size: 56,93 + orig: 56,93 + offset: 0,0 + index: -1 +beast-04-lv2.ear-left + rotate: false + xy: 2296,2731 + size: 65,80 + orig: 65,80 + offset: 0,0 + index: -1 +reptile-mystic-02.mouth-open + rotate: false + xy: 3222,1588 + size: 133,39 + orig: 133,39 + offset: 0,0 + index: -1 +plant-04.ear-left + rotate: false + xy: 2296,2829 + size: 72,72 + orig: 72,72 + offset: 0,0 + index: -1 +plant-08-lv2.mouth-open + rotate: false + xy: 3164,2253 + size: 96,54 + orig: 96,54 + offset: 0,0 + index: -1 +beast-02-lv2.mouth-bite + rotate: false + xy: 3883,2183 + size: 112,46 + orig: 112,46 + offset: 0,0 + index: -1 +beast-10-lv2.eyes-angry + rotate: false + xy: 3502,2326 + size: 83,62 + orig: 83,62 + offset: 0,0 + index: -1 +bird-06-lv2.ear-left + rotate: false + xy: 2296,2919 + size: 59,87 + orig: 59,87 + offset: 0,0 + index: -1 +summer-a.ear-left-under + rotate: false + xy: 2296,3024 + size: 55,93 + orig: 55,93 + offset: 0,0 + index: -1 +reptile-02-lv2.mouth-bite + rotate: false + xy: 3373,1588 + size: 138,37 + orig: 138,37 + offset: 0,0 + index: -1 +aquatic-10-lv2.mouth + rotate: false + xy: 3603,2326 + size: 88,58 + orig: 88,58 + offset: 0,0 + index: -1 +plant-04.eyes-angry + rotate: false + xy: 3278,2253 + size: 106,48 + orig: 106,48 + offset: 0,0 + index: -1 +aquatic-10-lv2.ear-left + rotate: false + xy: 2296,3135 + size: 53,96 + orig: 53,96 + offset: 0,0 + index: -1 +bug-08-lv2.mouth + rotate: false + xy: 3402,2253 + size: 106,48 + orig: 106,48 + offset: 0,0 + index: -1 +bird-02.eyes-angry + rotate: false + xy: 3529,1588 + size: 124,41 + orig: 124,41 + offset: 0,0 + index: -1 +bird-02.eyes + rotate: false + xy: 3671,1588 + size: 124,41 + orig: 124,41 + offset: 0,0 + index: -1 +beast-mystic-02-lv2.mouth-open + rotate: false + xy: 2296,3249 + size: 77,66 + orig: 77,66 + offset: 0,0 + index: -1 +japan-01.mouth-bite + rotate: false + xy: 954,279 + size: 141,36 + orig: 141,36 + offset: 0,0 + index: -1 +bug-10.horn + rotate: false + xy: 2296,3333 + size: 59,86 + orig: 59,86 + offset: 0,0 + index: -1 +beast-10-lv2.mouth-open + rotate: false + xy: 3709,2326 + size: 80,63 + orig: 80,63 + offset: 0,0 + index: -1 +beast-08.ear-left + rotate: false + xy: 2296,3437 + size: 63,80 + orig: 63,80 + offset: 0,0 + index: -1 +aquatic-mystic-02.ear-left + rotate: false + xy: 4031,2073 + size: 56,90 + orig: 56,90 + offset: 0,0 + index: -1 +japan-02.mouth + rotate: false + xy: 3813,1588 + size: 136,37 + orig: 136,37 + offset: 0,0 + index: -1 +xmas-02.mouth-blink + rotate: false + xy: 2296,3535 + size: 77,65 + orig: 77,65 + offset: 0,0 + index: -1 +xmas-02.mouth-smile + rotate: false + xy: 2296,3618 + size: 77,65 + orig: 77,65 + offset: 0,0 + index: -1 +summer-as-lv2.mouth-smile + rotate: false + xy: 3526,2253 + size: 98,51 + orig: 98,51 + offset: 0,0 + index: -1 +summer-as-lv2.eyes-happy + rotate: false + xy: 3642,2253 + size: 116,43 + orig: 116,43 + offset: 0,0 + index: -1 +summer-as-lv2.eyes-shut + rotate: false + xy: 3776,2253 + size: 116,43 + orig: 116,43 + offset: 0,0 + index: -1 +summer-as-lv2.eyes-angry + rotate: false + xy: 3910,2253 + size: 116,43 + orig: 116,43 + offset: 0,0 + index: -1 +summer-as-lv2.eyes + rotate: false + xy: 3807,2326 + size: 116,43 + orig: 116,43 + offset: 0,0 + index: -1 +summer-a-lv2.eyes-happy + rotate: false + xy: 3941,2326 + size: 116,43 + orig: 116,43 + offset: 0,0 + index: -1 +summer-a-lv2.eyes-shut + rotate: false + xy: 2499,2407 + size: 116,43 + orig: 116,43 + offset: 0,0 + index: -1 +summer-a-lv2.eyes-angry + rotate: false + xy: 2633,2407 + size: 116,43 + orig: 116,43 + offset: 0,0 + index: -1 +summer-a-lv2.eyes + rotate: false + xy: 2767,2407 + size: 116,43 + orig: 116,43 + offset: 0,0 + index: -1 +summer-as.ear-left-under + rotate: false + xy: 2296,3701 + size: 54,92 + orig: 54,92 + offset: 0,0 + index: -1 +aquatic-08.mouth + rotate: false + xy: 2203,4016 + size: 74,67 + orig: 74,67 + offset: 0,0 + index: -1 +plant-04-lv2.mouth-open + rotate: false + xy: 2296,3811 + size: 67,74 + orig: 67,74 + offset: 0,0 + index: -1 +plant-12-lv2.ear-left + rotate: false + xy: 2296,3903 + size: 67,74 + orig: 67,74 + offset: 0,0 + index: -1 +japan-02.mouth-bite + rotate: false + xy: 2901,2407 + size: 134,37 + orig: 134,37 + offset: 0,0 + index: -1 +bug-06-lv2.ear-right + rotate: false + xy: 2296,3995 + size: 65,76 + orig: 65,76 + offset: 0,0 + index: -1 +aquatic-10.mouth-bite + rotate: false + xy: 3053,2407 + size: 141,35 + orig: 141,35 + offset: 0,0 + index: -1 +bird-mystic-02-lv2.mouth-smile + rotate: false + xy: 2391,3020 + size: 53,93 + orig: 53,93 + offset: 0,0 + index: -1 +japan-03.mouth-smile + rotate: false + xy: 3212,2407 + size: 123,40 + orig: 123,40 + offset: 0,0 + index: -1 +agamo-00-lv2.eyes-shut + rotate: false + xy: 3353,2407 + size: 109,45 + orig: 109,45 + offset: 0,0 + index: -1 +reptile-10.eyes-shut + rotate: false + xy: 3353,2407 + size: 109,45 + orig: 109,45 + offset: 0,0 + index: -1 +reptile-08.mouth-bite + rotate: false + xy: 3480,2407 + size: 136,36 + orig: 136,36 + offset: 0,0 + index: -1 +body-accessory.body-air1a_02 + rotate: false + xy: 3634,2407 + size: 89,55 + orig: 89,55 + offset: 0,0 + index: -1 +body-accessory.body-air1a_03 + rotate: false + xy: 3741,2407 + size: 89,55 + orig: 89,55 + offset: 0,0 + index: -1 +body-accessory.body-air1a_01 + rotate: false + xy: 3848,2407 + size: 89,55 + orig: 89,55 + offset: 0,0 + index: -1 +body-accessory.body-air1a_00 + rotate: false + xy: 3955,2407 + size: 89,55 + orig: 89,55 + offset: 0,0 + index: -1 +body-accessory.body-air1a_04 + rotate: false + xy: 3955,2407 + size: 89,55 + orig: 89,55 + offset: 0,0 + index: -1 +body-accessory.body-air1a_05 + rotate: false + xy: 2493,2490 + size: 89,55 + orig: 89,55 + offset: 0,0 + index: -1 +body-accessory.body-air1a_07 + rotate: false + xy: 2600,2490 + size: 89,55 + orig: 89,55 + offset: 0,0 + index: -1 +body-accessory.body-air1a_06 + rotate: false + xy: 2707,2490 + size: 89,55 + orig: 89,55 + offset: 0,0 + index: -1 +reptile-06.ear-left + rotate: false + xy: 2391,3131 + size: 73,67 + orig: 73,67 + offset: 0,0 + index: -1 +reptile-08-lv2.eyes-shut + rotate: false + xy: 2814,2490 + size: 104,47 + orig: 104,47 + offset: 0,0 + index: -1 +reptile-08.mouth + rotate: false + xy: 2936,2490 + size: 116,42 + orig: 116,42 + offset: 0,0 + index: -1 +summer-as-lv2.ear-right-under + rotate: false + xy: 2391,3216 + size: 56,87 + orig: 56,87 + offset: 0,0 + index: -1 +summer-a-lv2.ear-right-under + rotate: false + xy: 2391,3321 + size: 56,87 + orig: 56,87 + offset: 0,0 + index: -1 +summer-as.ear-right-upper + rotate: false + xy: 2391,3426 + size: 54,90 + orig: 54,90 + offset: 0,0 + index: -1 +summer-a.ear-right-upper + rotate: false + xy: 2391,3534 + size: 54,90 + orig: 54,90 + offset: 0,0 + index: -1 +plant-mystic-02.eyes-happy + rotate: false + xy: 3070,2490 + size: 124,39 + orig: 124,39 + offset: 0,0 + index: -1 +plant-mystic-02.eyes-shut + rotate: false + xy: 3070,2490 + size: 124,39 + orig: 124,39 + offset: 0,0 + index: -1 +plant-mystic-02.eyes + rotate: false + xy: 3070,2490 + size: 124,39 + orig: 124,39 + offset: 0,0 + index: -1 +plant-mystic-02.eyes-angry + rotate: false + xy: 3212,2490 + size: 124,39 + orig: 124,39 + offset: 0,0 + index: -1 +xmas-01-lv2.mouth + rotate: false + xy: 2391,3642 + size: 78,62 + orig: 78,62 + offset: 0,0 + index: -1 +plant-02-lv2.mouth-bite + rotate: false + xy: 2493,2563 + size: 86,56 + orig: 86,56 + offset: 0,0 + index: -1 +aquatic-02-lv2.ear-left + rotate: false + xy: 2391,3722 + size: 58,83 + orig: 58,83 + offset: 0,0 + index: -1 +bird-04-lv2.ear-right + rotate: false + xy: 2391,3823 + size: 53,90 + orig: 53,90 + offset: 0,0 + index: -1 +summer-as-lv2.mouth-accessory + rotate: false + xy: 4016,1009 + size: 69,69 + orig: 69,69 + offset: 0,0 + index: -1 +summer-a.mouth-accessory + rotate: false + xy: 2391,3931 + size: 69,69 + orig: 69,69 + offset: 0,0 + index: -1 +summer-a-lv2.mouth-accessory + rotate: false + xy: 2391,3931 + size: 69,69 + orig: 69,69 + offset: 0,0 + index: -1 +bird-08.eyes-happy + rotate: false + xy: 3354,2490 + size: 95,50 + orig: 95,50 + offset: 0,0 + index: -1 +beast-10-lv2.eyes + rotate: false + xy: 2391,4018 + size: 79,60 + orig: 79,60 + offset: 0,0 + index: -1 +aquatic-02-lv2.mouth + rotate: false + xy: 3467,2490 + size: 105,45 + orig: 105,45 + offset: 0,0 + index: -1 +bug-10-lv2.mouth-smile + rotate: false + xy: 3590,2490 + size: 90,52 + orig: 90,52 + offset: 0,0 + index: -1 +bug-10-lv2.mouth-open + rotate: false + xy: 3698,2490 + size: 90,52 + orig: 90,52 + offset: 0,0 + index: -1 +beast-02.eyes-shut + rotate: false + xy: 3967,1588 + size: 120,39 + orig: 120,39 + offset: 0,0 + index: -1 +beast-02.eyes + rotate: false + xy: 3806,2490 + size: 120,39 + orig: 120,39 + offset: 0,0 + index: -1 +bird-10-lv2.mouth-open + rotate: false + xy: 2493,2637 + size: 82,57 + orig: 82,57 + offset: 0,0 + index: -1 +plant-mystic-02.ear-right + rotate: false + xy: 2493,2712 + size: 53,88 + orig: 53,88 + offset: 0,0 + index: -1 +plant-12.ear-left + rotate: false + xy: 2493,2818 + size: 74,63 + orig: 74,63 + offset: 0,0 + index: -1 +beast-02-lv2.mouth-smile + rotate: false + xy: 2493,2899 + size: 79,59 + orig: 79,59 + offset: 0,0 + index: -1 +agamo-00-lv2.mouth-open + rotate: false + xy: 2493,2976 + size: 79,59 + orig: 79,59 + offset: 0,0 + index: -1 +reptile-10.mouth-open + rotate: false + xy: 2493,2976 + size: 79,59 + orig: 79,59 + offset: 0,0 + index: -1 +reptile-02.mouth-open + rotate: false + xy: 3944,2490 + size: 119,39 + orig: 119,39 + offset: 0,0 + index: -1 +summer-as-lv2.mouth + rotate: false + xy: 2597,2563 + size: 89,52 + orig: 89,52 + offset: 0,0 + index: -1 +plant-10-lv2.mouth-bite + rotate: false + xy: 2493,3053 + size: 68,68 + orig: 68,68 + offset: 0,0 + index: -1 +beast-10.mouth-open + rotate: false + xy: 2493,3139 + size: 68,68 + orig: 68,68 + offset: 0,0 + index: -1 +summer-as.mouth-accessory + rotate: false + xy: 2493,3225 + size: 68,68 + orig: 68,68 + offset: 0,0 + index: -1 +plant-08-lv2.mouth-bite + rotate: false + xy: 3593,958 + size: 140,33 + orig: 140,33 + offset: 0,0 + index: -1 +xmas-02-lv2.mouth + rotate: false + xy: 2704,2563 + size: 96,48 + orig: 96,48 + offset: 0,0 + index: -1 +bird-mystic-02-lv2.mouth-open + rotate: false + xy: 2049,2218 + size: 50,92 + orig: 50,92 + offset: 0,0 + index: -1 +aquatic-mystic-02-lv2.ear-right + rotate: false + xy: 373,1793 + size: 38,121 + orig: 38,121 + offset: 0,0 + index: -1 +reptile-08.ear-left + rotate: false + xy: 2493,3311 + size: 56,82 + orig: 56,82 + offset: 0,0 + index: -1 +plant-04-lv2.mouth-bite + rotate: false + xy: 2493,3411 + size: 79,58 + orig: 79,58 + offset: 0,0 + index: -1 +xmas-02-lv2.ear-right + rotate: false + xy: 2493,3487 + size: 58,79 + orig: 58,79 + offset: 0,0 + index: -1 +xmas-02-lv2.ear-left + rotate: false + xy: 2493,3584 + size: 58,79 + orig: 58,79 + offset: 0,0 + index: -1 +beast-08.ear-right + rotate: false + xy: 2493,3681 + size: 60,76 + orig: 60,76 + offset: 0,0 + index: -1 +beast-10.eyes-happy + rotate: false + xy: 2493,3775 + size: 86,53 + orig: 86,53 + offset: 0,0 + index: -1 +bird-mystic-02-lv2.mouth + rotate: false + xy: 4038,730 + size: 49,93 + orig: 49,93 + offset: 0,0 + index: -1 +xmas-01.eyes-angry + rotate: false + xy: 2818,2563 + size: 123,37 + orig: 123,37 + offset: 0,0 + index: -1 +plant-02.ear-left + rotate: false + xy: 2493,3846 + size: 64,71 + orig: 64,71 + offset: 0,0 + index: -1 +plant-10.ear-left + rotate: false + xy: 2493,3935 + size: 58,78 + orig: 58,78 + offset: 0,0 + index: -1 +bug-10.ear-right + rotate: false + xy: 2597,2633 + size: 55,82 + orig: 55,82 + offset: 0,0 + index: -1 +agamo-01-lv2.ear-right + rotate: false + xy: 2597,2633 + size: 55,82 + orig: 55,82 + offset: 0,0 + index: -1 +bug-10.ear-left + rotate: false + xy: 2597,2733 + size: 55,82 + orig: 55,82 + offset: 0,0 + index: -1 +agamo-01-lv2.ear-left + rotate: false + xy: 2597,2733 + size: 55,82 + orig: 55,82 + offset: 0,0 + index: -1 +aquatic-02.ear-left + rotate: false + xy: 2670,2633 + size: 57,79 + orig: 57,79 + offset: 0,0 + index: -1 +bird-06.ear-right + rotate: false + xy: 2745,2633 + size: 57,79 + orig: 57,79 + offset: 0,0 + index: -1 +bird-06.ear-left + rotate: false + xy: 2820,2633 + size: 57,79 + orig: 57,79 + offset: 0,0 + index: -1 +bug-04-lv2.ear-left + rotate: false + xy: 2895,2633 + size: 69,65 + orig: 69,65 + offset: 0,0 + index: -1 +plant-mystic-02-lv2.mouth-bite + rotate: false + xy: 2493,4031 + size: 86,52 + orig: 86,52 + offset: 0,0 + index: -1 +bird-08.eyes-shut + rotate: false + xy: 2959,2563 + size: 95,47 + orig: 95,47 + offset: 0,0 + index: -1 +beast-08-lv2.mouth-open + rotate: false + xy: 2049,2328 + size: 48,93 + orig: 48,93 + offset: 0,0 + index: -1 +beast-mystic-02-lv2.mouth + rotate: false + xy: 2982,2633 + size: 78,57 + orig: 78,57 + offset: 0,0 + index: -1 +aquatic-12.ear-right + rotate: false + xy: 3078,2633 + size: 57,78 + orig: 57,78 + offset: 0,0 + index: -1 +aquatic-12.ear-left + rotate: false + xy: 3153,2633 + size: 57,78 + orig: 57,78 + offset: 0,0 + index: -1 +aquatic-08-lv2.mouth-smile + rotate: false + xy: 3072,2563 + size: 101,44 + orig: 101,44 + offset: 0,0 + index: -1 +aquatic-02.mouth-bite + rotate: false + xy: 3191,2563 + size: 108,41 + orig: 108,41 + offset: 0,0 + index: -1 +aquatic-mystic-02.mouth-bite + rotate: false + xy: 3317,2563 + size: 108,41 + orig: 108,41 + offset: 0,0 + index: -1 +bird-mystic-02.mouth-bite + rotate: false + xy: 3228,2633 + size: 59,75 + orig: 59,75 + offset: 0,0 + index: -1 +plant-08.ear-right + rotate: false + xy: 3305,2633 + size: 56,79 + orig: 56,79 + offset: 0,0 + index: -1 +beast-mystic-02-lv2.mouth-bite + rotate: false + xy: 3443,2563 + size: 96,46 + orig: 96,46 + offset: 0,0 + index: -1 +japan-03.ear-left + rotate: false + xy: 3379,2633 + size: 63,70 + orig: 63,70 + offset: 0,0 + index: -1 +bug-mystic-02.mouth + rotate: false + xy: 3460,2633 + size: 76,58 + orig: 76,58 + offset: 0,0 + index: -1 +beast-10-lv2.ear-right + rotate: false + xy: 2597,2833 + size: 55,80 + orig: 55,80 + offset: 0,0 + index: -1 +bug-04-lv2.ear-right + rotate: false + xy: 3554,2633 + size: 67,65 + orig: 67,65 + offset: 0,0 + index: -1 +summer-as.ear-right-under + rotate: false + xy: 2049,2439 + size: 50,87 + orig: 50,87 + offset: 0,0 + index: -1 +summer-a.ear-right-under + rotate: false + xy: 2049,2544 + size: 50,87 + orig: 50,87 + offset: 0,0 + index: -1 +plant-10-lv2.mouth-open + rotate: false + xy: 2597,2931 + size: 53,82 + orig: 53,82 + offset: 0,0 + index: -1 +beast-10-lv2.mouth-bite + rotate: false + xy: 3995,1936 + size: 92,47 + orig: 92,47 + offset: 0,0 + index: -1 +aquatic-02.mouth-open + rotate: false + xy: 3639,2633 + size: 59,73 + orig: 59,73 + offset: 0,0 + index: -1 +aquatic-mystic-02.mouth-open + rotate: false + xy: 3716,2633 + size: 59,73 + orig: 59,73 + offset: 0,0 + index: -1 +beast-04-lv2.ear-right + rotate: false + xy: 2597,3031 + size: 54,79 + orig: 54,79 + offset: 0,0 + index: -1 +beast-04-lv2.horn + rotate: false + xy: 3793,2633 + size: 58,73 + orig: 58,73 + offset: 0,0 + index: -1 +plant-02-lv2.eyes-happy + rotate: false + xy: 3557,2563 + size: 98,43 + orig: 98,43 + offset: 0,0 + index: -1 +plant-02-lv2.eyes + rotate: false + xy: 3673,2563 + size: 98,43 + orig: 98,43 + offset: 0,0 + index: -1 +aquatic-08.ear-left + rotate: false + xy: 3869,2633 + size: 71,59 + orig: 71,59 + offset: 0,0 + index: -1 +aquatic-06.body-pattern + rotate: false + xy: 3958,2633 + size: 59,71 + orig: 59,71 + offset: 0,0 + index: -1 +plant-02.body-pattern + rotate: false + xy: 3958,2633 + size: 59,71 + orig: 59,71 + offset: 0,0 + index: -1 +reptile-06.body-pattern + rotate: false + xy: 3958,2633 + size: 59,71 + orig: 59,71 + offset: 0,0 + index: -1 +plant-04.body-pattern + rotate: false + xy: 3958,2633 + size: 59,71 + orig: 59,71 + offset: 0,0 + index: -1 +japan-03.body-pattern + rotate: false + xy: 3958,2633 + size: 59,71 + orig: 59,71 + offset: 0,0 + index: -1 +bug-10.body-pattern + rotate: false + xy: 3958,2633 + size: 59,71 + orig: 59,71 + offset: 0,0 + index: -1 +bug-04.body-pattern + rotate: false + xy: 3958,2633 + size: 59,71 + orig: 59,71 + offset: 0,0 + index: -1 +bug-02.body-pattern + rotate: false + xy: 3958,2633 + size: 59,71 + orig: 59,71 + offset: 0,0 + index: -1 +reptile-12.body-pattern + rotate: false + xy: 3958,2633 + size: 59,71 + orig: 59,71 + offset: 0,0 + index: -1 +plant-10.body-pattern + rotate: false + xy: 3958,2633 + size: 59,71 + orig: 59,71 + offset: 0,0 + index: -1 +aquatic-12.body-pattern + rotate: false + xy: 3958,2633 + size: 59,71 + orig: 59,71 + offset: 0,0 + index: -1 +bird-10.body-pattern + rotate: false + xy: 3958,2633 + size: 59,71 + orig: 59,71 + offset: 0,0 + index: -1 +plant-08.body-pattern + rotate: false + xy: 3958,2633 + size: 59,71 + orig: 59,71 + offset: 0,0 + index: -1 +reptile-04.body-pattern + rotate: false + xy: 3958,2633 + size: 59,71 + orig: 59,71 + offset: 0,0 + index: -1 +beast-06.body-pattern + rotate: false + xy: 3958,2633 + size: 59,71 + orig: 59,71 + offset: 0,0 + index: -1 +reptile-02.body-pattern + rotate: false + xy: 3958,2633 + size: 59,71 + orig: 59,71 + offset: 0,0 + index: -1 +bug-12.body-pattern + rotate: false + xy: 3958,2633 + size: 59,71 + orig: 59,71 + offset: 0,0 + index: -1 +bug-08.body-pattern + rotate: false + xy: 3958,2633 + size: 59,71 + orig: 59,71 + offset: 0,0 + index: -1 +bug-06.body-pattern + rotate: false + xy: 3958,2633 + size: 59,71 + orig: 59,71 + offset: 0,0 + index: -1 +aquatic-10.body-pattern + rotate: false + xy: 3958,2633 + size: 59,71 + orig: 59,71 + offset: 0,0 + index: -1 +bird-12.body-pattern + rotate: false + xy: 3958,2633 + size: 59,71 + orig: 59,71 + offset: 0,0 + index: -1 +plant-12.body-pattern + rotate: false + xy: 3958,2633 + size: 59,71 + orig: 59,71 + offset: 0,0 + index: -1 +reptile-10.body-pattern + rotate: false + xy: 3958,2633 + size: 59,71 + orig: 59,71 + offset: 0,0 + index: -1 +plant-04.ear-right + rotate: false + xy: 2670,2730 + size: 59,71 + orig: 59,71 + offset: 0,0 + index: -1 +bird-04.eyes + rotate: false + xy: 2747,2730 + size: 79,53 + orig: 79,53 + offset: 0,0 + index: -1 +bird-08-lv2.mouth + rotate: false + xy: 3789,2563 + size: 102,41 + orig: 102,41 + offset: 0,0 + index: -1 +bird-08-lv2.mouth-bite + rotate: false + xy: 3909,2563 + size: 102,41 + orig: 102,41 + offset: 0,0 + index: -1 +plant-02.eyes-angry + rotate: false + xy: 2844,2730 + size: 119,35 + orig: 119,35 + offset: 0,0 + index: -1 +japan-02.ear-left + rotate: false + xy: 2670,2819 + size: 57,73 + orig: 57,73 + offset: 0,0 + index: -1 +beast-02.mouth-open + rotate: false + xy: 2597,3128 + size: 52,80 + orig: 52,80 + offset: 0,0 + index: -1 +beast-mystic-02.mouth-open + rotate: false + xy: 2597,3226 + size: 52,80 + orig: 52,80 + offset: 0,0 + index: -1 +reptile-12.ear-left + rotate: false + xy: 2747,2801 + size: 68,61 + orig: 68,61 + offset: 0,0 + index: -1 +bird-08.mouth-open + rotate: false + xy: 2747,2880 + size: 61,68 + orig: 61,68 + offset: 0,0 + index: -1 +plant-12-lv2.ear-right + rotate: false + xy: 2670,2910 + size: 56,74 + orig: 56,74 + offset: 0,0 + index: -1 +bird-mystic-02.ear-right + rotate: false + xy: 2670,3002 + size: 56,74 + orig: 56,74 + offset: 0,0 + index: -1 +bird-08-lv2.mouth-smile + rotate: false + xy: 2981,2730 + size: 101,41 + orig: 101,41 + offset: 0,0 + index: -1 +aquatic-08-lv2.mouth-bite + rotate: false + xy: 3100,2730 + size: 92,45 + orig: 92,45 + offset: 0,0 + index: -1 +plant-08-lv2.mouth-smile + rotate: false + xy: 3210,2730 + size: 129,32 + orig: 129,32 + offset: 0,0 + index: -1 +plant-02-lv2.eyes-shut + rotate: false + xy: 1487,4045 + size: 98,42 + orig: 98,42 + offset: 0,0 + index: -1 +reptile-04-lv2.ear-right + rotate: false + xy: 369,3806 + size: 45,91 + orig: 45,91 + offset: 0,0 + index: -1 +xmas-02.mouth-open + rotate: false + xy: 2747,2966 + size: 63,65 + orig: 63,65 + offset: 0,0 + index: -1 +xmas-01.mouth-bite + rotate: false + xy: 2747,3049 + size: 66,62 + orig: 66,62 + offset: 0,0 + index: -1 +bird-mystic-02.mouth-open + rotate: false + xy: 1829,2991 + size: 44,93 + orig: 44,93 + offset: 0,0 + index: -1 +bug-mystic-02.mouth-smile + rotate: false + xy: 3357,2730 + size: 80,51 + orig: 80,51 + offset: 0,0 + index: -1 +japan-03-lv2.ear-right + rotate: false + xy: 2049,2649 + size: 42,96 + orig: 42,96 + offset: 0,0 + index: -1 +plant-04.eyes + rotate: false + xy: 3455,2730 + size: 106,38 + orig: 106,38 + offset: 0,0 + index: -1 +reptile-06.ear-right + rotate: false + xy: 2747,3129 + size: 61,66 + orig: 61,66 + offset: 0,0 + index: -1 +plant-02-lv2.mouth-open + rotate: false + xy: 2597,3324 + size: 52,77 + orig: 52,77 + offset: 0,0 + index: -1 +plant-10-lv2.mouth-smile + rotate: false + xy: 2670,3094 + size: 58,69 + orig: 58,69 + offset: 0,0 + index: -1 +beast-10.mouth-bite + rotate: false + xy: 3579,2730 + size: 85,47 + orig: 85,47 + offset: 0,0 + index: -1 +bird-mystic-02.mouth-smile + rotate: false + xy: 2597,3419 + size: 53,75 + orig: 53,75 + offset: 0,0 + index: -1 +xmas-01.mouth-smile + rotate: false + xy: 2747,3213 + size: 62,64 + orig: 62,64 + offset: 0,0 + index: -1 +beast-04-lv2.mouth + rotate: false + xy: 2833,2801 + size: 72,55 + orig: 72,55 + offset: 0,0 + index: -1 +beast-04-lv2.mouth-bite + rotate: false + xy: 2923,2801 + size: 72,55 + orig: 72,55 + offset: 0,0 + index: -1 +beast-04-lv2.mouth-smile + rotate: false + xy: 3013,2801 + size: 72,55 + orig: 72,55 + offset: 0,0 + index: -1 +bird-04.eyes-angry + rotate: false + xy: 3682,2730 + size: 88,45 + orig: 88,45 + offset: 0,0 + index: -1 +beast-02.eyes-angry + rotate: false + xy: 3788,2730 + size: 120,33 + orig: 120,33 + offset: 0,0 + index: -1 +plant-04.mouth-open + rotate: false + xy: 2597,3512 + size: 55,72 + orig: 55,72 + offset: 0,0 + index: -1 +bug-02-lv2.mouth-smile + rotate: false + xy: 2747,3295 + size: 66,60 + orig: 66,60 + offset: 0,0 + index: -1 +beast-04.ear-left + rotate: false + xy: 2747,3373 + size: 67,59 + orig: 67,59 + offset: 0,0 + index: -1 +beast-04.tail + rotate: false + xy: 3926,2730 + size: 76,52 + orig: 76,52 + offset: 0,0 + index: -1 +plant-04.mouth-bite + rotate: false + xy: 3103,2801 + size: 71,55 + orig: 71,55 + offset: 0,0 + index: -1 +summer-as.mouth-open + rotate: false + xy: 2747,3450 + size: 66,59 + orig: 66,59 + offset: 0,0 + index: -1 +summer-a.mouth-open + rotate: false + xy: 2747,3450 + size: 66,59 + orig: 66,59 + offset: 0,0 + index: -1 +beast-02-lv2.mouth + rotate: false + xy: 3192,2801 + size: 76,51 + orig: 76,51 + offset: 0,0 + index: -1 +aquatic-06-lv2.ear-right + rotate: false + xy: 2670,3181 + size: 57,68 + orig: 57,68 + offset: 0,0 + index: -1 +reptile-04-lv2.ear-left + rotate: false + xy: 1832,3104 + size: 43,90 + orig: 43,90 + offset: 0,0 + index: -1 +xmas-01.mouth-blink + rotate: false + xy: 2747,3527 + size: 62,62 + orig: 62,62 + offset: 0,0 + index: -1 +body-normal.body-light-life + rotate: false + xy: 2747,3607 + size: 62,62 + orig: 62,62 + offset: 0,0 + index: -1 +japan-02.ear-right + rotate: false + xy: 2747,3687 + size: 64,60 + orig: 64,60 + offset: 0,0 + index: -1 +bug-02-lv2.mouth-open + rotate: false + xy: 2670,3267 + size: 59,65 + orig: 59,65 + offset: 0,0 + index: -1 +bird-06-lv2.ear-right + rotate: false + xy: 1982,3874 + size: 43,89 + orig: 43,89 + offset: 0,0 + index: -1 +bug-04-lv2.mouth + rotate: false + xy: 3286,2801 + size: 97,39 + orig: 97,39 + offset: 0,0 + index: -1 +aquatic-10.ear-left + rotate: false + xy: 2049,2763 + size: 45,84 + orig: 45,84 + offset: 0,0 + index: -1 +reptile-10-lv2.ear-right + rotate: false + xy: 2670,3350 + size: 59,64 + orig: 59,64 + offset: 0,0 + index: -1 +reptile-10-lv2.ear-left + rotate: false + xy: 2670,3432 + size: 59,64 + orig: 59,64 + offset: 0,0 + index: -1 +bug-06-lv2.ear-left + rotate: false + xy: 2670,3514 + size: 56,67 + orig: 56,67 + offset: 0,0 + index: -1 +aquatic-mystic-02.ear-right + rotate: false + xy: 373,3083 + size: 39,96 + orig: 39,96 + offset: 0,0 + index: -1 +aquatic-06-lv2.ear-left + rotate: false + xy: 2597,3602 + size: 55,68 + orig: 55,68 + offset: 0,0 + index: -1 +plant-02.ear-right + rotate: false + xy: 2597,3688 + size: 51,73 + orig: 51,73 + offset: 0,0 + index: -1 +agamo-00-lv2.ear-right + rotate: false + xy: 2597,3688 + size: 51,73 + orig: 51,73 + offset: 0,0 + index: -1 +reptile-10.ear-right + rotate: false + xy: 2597,3688 + size: 51,73 + orig: 51,73 + offset: 0,0 + index: -1 +aquatic-10-lv2.ear-right + rotate: false + xy: 2049,2865 + size: 39,95 + orig: 39,95 + offset: 0,0 + index: -1 +xmas-01.mouth-open + rotate: false + xy: 4037,1189 + size: 48,77 + orig: 48,77 + offset: 0,0 + index: -1 +plant-02-lv2.eyes-angry + rotate: false + xy: 3401,2801 + size: 90,41 + orig: 90,41 + offset: 0,0 + index: -1 +aquatic-06.ear-right + rotate: false + xy: 2670,3599 + size: 59,62 + orig: 59,62 + offset: 0,0 + index: -1 +bug-04.mouth-smile + rotate: false + xy: 4013,2183 + size: 73,50 + orig: 73,50 + offset: 0,0 + index: -1 +reptile-04.mouth-open + rotate: false + xy: 4003,1723 + size: 76,48 + orig: 76,48 + offset: 0,0 + index: -1 +bird-04.eyes-happy + rotate: false + xy: 3509,2801 + size: 79,46 + orig: 79,46 + offset: 0,0 + index: -1 +aquatic-06.ear-left + rotate: false + xy: 2670,3679 + size: 58,62 + orig: 58,62 + offset: 0,0 + index: -1 +bird-02-lv2.eyes-happy + rotate: false + xy: 3769,961 + size: 124,29 + orig: 124,29 + offset: 0,0 + index: -1 +plant-10-lv2.mouth + rotate: false + xy: 2597,3779 + size: 52,69 + orig: 52,69 + offset: 0,0 + index: -1 +bird-02-lv2.mouth-bite + rotate: false + xy: 2747,3765 + size: 64,56 + orig: 64,56 + offset: 0,0 + index: -1 +plant-04.horn + rotate: false + xy: 2597,3866 + size: 51,70 + orig: 51,70 + offset: 0,0 + index: -1 +reptile-02.mouth + rotate: false + xy: 1370,4051 + size: 99,36 + orig: 99,36 + offset: 0,0 + index: -1 +aquatic-02.mouth-smile + rotate: false + xy: 3606,2801 + size: 79,45 + orig: 79,45 + offset: 0,0 + index: -1 +aquatic-mystic-02.mouth-smile + rotate: false + xy: 3703,2801 + size: 79,45 + orig: 79,45 + offset: 0,0 + index: -1 +reptile-02.mouth-smile + rotate: false + xy: 3800,2801 + size: 118,30 + orig: 118,30 + offset: 0,0 + index: -1 +bird-04.ear-left + rotate: false + xy: 2597,3954 + size: 52,68 + orig: 52,68 + offset: 0,0 + index: -1 +bug-02-lv2.mouth + rotate: false + xy: 2670,3759 + size: 57,62 + orig: 57,62 + offset: 0,0 + index: -1 +body-accessory.body-hip1c + rotate: false + xy: 4035,2633 + size: 52,67 + orig: 52,67 + offset: 0,0 + index: -1 +bird-08.mouth-bite + rotate: false + xy: 4020,2730 + size: 67,52 + orig: 67,52 + offset: 0,0 + index: -1 +aquatic-08-lv2.mouth + rotate: false + xy: 3936,2801 + size: 79,44 + orig: 79,44 + offset: 0,0 + index: -1 +beast-04.eyes + rotate: false + xy: 976,4059 + size: 124,28 + orig: 124,28 + offset: 0,0 + index: -1 +bird-04-lv2.mouth-bite + rotate: false + xy: 2747,3839 + size: 62,56 + orig: 62,56 + offset: 0,0 + index: -1 +reptile-12.ear-right + rotate: false + xy: 2670,3839 + size: 56,62 + orig: 56,62 + offset: 0,0 + index: -1 +bird-10-lv2.mouth-bite + rotate: false + xy: 2833,2874 + size: 77,45 + orig: 77,45 + offset: 0,0 + index: -1 +bug-10.mouth-open + rotate: false + xy: 2833,2937 + size: 75,46 + orig: 75,46 + offset: 0,0 + index: -1 +agamo-01-lv2.mouth-open + rotate: false + xy: 2833,2937 + size: 75,46 + orig: 75,46 + offset: 0,0 + index: -1 +xmas-01.eyes-happy + rotate: false + xy: 2928,2874 + size: 123,28 + orig: 123,28 + offset: 0,0 + index: -1 +xmas-01.eyes + rotate: false + xy: 3069,2874 + size: 123,28 + orig: 123,28 + offset: 0,0 + index: -1 +bird-10-lv2.mouth + rotate: false + xy: 2928,2920 + size: 82,42 + orig: 82,42 + offset: 0,0 + index: -1 +bug-02-lv2.ear-right + rotate: false + xy: 2670,3919 + size: 52,66 + orig: 52,66 + offset: 0,0 + index: -1 +bug-02-lv2.ear-left + rotate: false + xy: 2670,3919 + size: 52,66 + orig: 52,66 + offset: 0,0 + index: -1 +plant-08.mouth-bite + rotate: false + xy: 3028,2920 + size: 104,33 + orig: 104,33 + offset: 0,0 + index: -1 +bird-10.ear-right + rotate: false + xy: 2670,4003 + size: 56,61 + orig: 56,61 + offset: 0,0 + index: -1 +plant-08.mouth-open + rotate: false + xy: 2747,3913 + size: 61,56 + orig: 61,56 + offset: 0,0 + index: -1 +beast-08-lv2.mouth-bite + rotate: false + xy: 2747,3987 + size: 63,54 + orig: 63,54 + offset: 0,0 + index: -1 +bug-10-lv2.mouth + rotate: false + xy: 1689,265 + size: 68,50 + orig: 68,50 + offset: 0,0 + index: -1 +bird-04.eyes-shut + rotate: false + xy: 2833,3001 + size: 77,44 + orig: 77,44 + offset: 0,0 + index: -1 +plant-12.ear-right + rotate: false + xy: 2833,3063 + size: 58,58 + orig: 58,58 + offset: 0,0 + index: -1 +bird-02-lv2.mouth-smile + rotate: false + xy: 2049,2978 + size: 50,67 + orig: 50,67 + offset: 0,0 + index: -1 +bird-02-lv2.ear-left + rotate: false + xy: 2049,3063 + size: 47,71 + orig: 47,71 + offset: 0,0 + index: -1 +bird-10-lv2.mouth-smile + rotate: false + xy: 3150,2920 + size: 81,41 + orig: 81,41 + offset: 0,0 + index: -1 +xmas-02.eyes + rotate: false + xy: 3249,2920 + size: 83,40 + orig: 83,40 + offset: 0,0 + index: -1 +bird-02-lv2.mouth-open + rotate: false + xy: 1987,3323 + size: 43,77 + orig: 43,77 + offset: 0,0 + index: -1 +xmas-02.ear-right + rotate: false + xy: 2833,3139 + size: 56,59 + orig: 56,59 + offset: 0,0 + index: -1 +xmas-02.ear-left + rotate: false + xy: 2833,3216 + size: 56,59 + orig: 56,59 + offset: 0,0 + index: -1 +aquatic-08.ear-right + rotate: false + xy: 2833,3293 + size: 62,53 + orig: 62,53 + offset: 0,0 + index: -1 +plant-mystic-02-lv2.mouth-open + rotate: false + xy: 2049,3152 + size: 45,73 + orig: 45,73 + offset: 0,0 + index: -1 +aquatic-04.ear-left + rotate: false + xy: 2049,3243 + size: 48,68 + orig: 48,68 + offset: 0,0 + index: -1 +bird-10.ear-left + rotate: false + xy: 2833,3364 + size: 55,59 + orig: 55,59 + offset: 0,0 + index: -1 +reptile-08.ear-right + rotate: false + xy: 1836,3283 + size: 38,85 + orig: 38,85 + offset: 0,0 + index: -1 +bird-mystic-02.mouth + rotate: false + xy: 2049,3329 + size: 43,75 + orig: 43,75 + offset: 0,0 + index: -1 +beast-04.eyes-shut + rotate: false + xy: 3210,2874 + size: 124,26 + orig: 124,26 + offset: 0,0 + index: -1 +bird-08.ear-left + rotate: false + xy: 2833,3441 + size: 62,52 + orig: 62,52 + offset: 0,0 + index: -1 +japan-02-lv2.ear-right + rotate: false + xy: 3350,2920 + size: 100,32 + orig: 100,32 + offset: 0,0 + index: -1 +bird-04.mouth-bite + rotate: false + xy: 2833,3511 + size: 57,56 + orig: 57,56 + offset: 0,0 + index: -1 +bird-02.mouth-open + rotate: false + xy: 2049,3422 + size: 42,76 + orig: 42,76 + offset: 0,0 + index: -1 +plant-08-lv2.mouth + rotate: false + xy: 3352,2874 + size: 114,28 + orig: 114,28 + offset: 0,0 + index: -1 +agamo-00-lv2.ear-left + rotate: false + xy: 2833,3585 + size: 58,55 + orig: 58,55 + offset: 0,0 + index: -1 +xmas-01.eyes-base + rotate: false + xy: 409,291 + size: 142,22 + orig: 142,22 + offset: 0,0 + index: -1 +bug-mystic-02.ear-right + rotate: false + xy: 2049,3516 + size: 44,71 + orig: 44,71 + offset: 0,0 + index: -1 +bird-02.eyes-happy + rotate: false + xy: 1320,551 + size: 124,25 + orig: 124,25 + offset: 0,0 + index: -1 +beast-04.horn + rotate: false + xy: 2049,3605 + size: 46,67 + orig: 46,67 + offset: 0,0 + index: -1 +bird-04-lv2.mouth-smile + rotate: false + xy: 2833,3658 + size: 55,56 + orig: 55,56 + offset: 0,0 + index: -1 +plant-04-lv2.mouth-smile + rotate: false + xy: 2833,3732 + size: 77,40 + orig: 77,40 + offset: 0,0 + index: -1 +bug-02.mouth-bite + rotate: false + xy: 3468,2920 + size: 96,32 + orig: 96,32 + offset: 0,0 + index: -1 +beast-08.mouth-open + rotate: false + xy: 2049,3690 + size: 42,73 + orig: 42,73 + offset: 0,0 + index: -1 +bird-02-lv2.eyes-shut + rotate: false + xy: 1543,551 + size: 122,25 + orig: 122,25 + offset: 0,0 + index: -1 +japan-01.mouth + rotate: false + xy: 2833,3790 + size: 63,48 + orig: 63,48 + offset: 0,0 + index: -1 +bird-12-lv2.ear-right + rotate: false + xy: 2833,3856 + size: 67,45 + orig: 67,45 + offset: 0,0 + index: -1 +beast-02.mouth-smile + rotate: false + xy: 2833,3919 + size: 68,44 + orig: 68,44 + offset: 0,0 + index: -1 +beast-mystic-02.mouth-smile + rotate: false + xy: 2833,3981 + size: 68,44 + orig: 68,44 + offset: 0,0 + index: -1 +plant-10.ear-right + rotate: false + xy: 2049,3781 + size: 48,62 + orig: 48,62 + offset: 0,0 + index: -1 +beast-04.mouth-open + rotate: false + xy: 379,2122 + size: 33,90 + orig: 33,90 + offset: 0,0 + index: -1 +reptile-mystic-02.mouth + rotate: false + xy: 3484,2874 + size: 114,26 + orig: 114,26 + offset: 0,0 + index: -1 +reptile-10-lv2.mouth-bite + rotate: false + xy: 3582,2920 + size: 95,31 + orig: 95,31 + offset: 0,0 + index: -1 +bird-12.ear-left + rotate: false + xy: 2049,3861 + size: 46,64 + orig: 46,64 + offset: 0,0 + index: -1 +summer-as.mouth-bite + rotate: false + xy: 2833,4043 + size: 70,42 + orig: 70,42 + offset: 0,0 + index: -1 +summer-a.mouth-bite + rotate: false + xy: 2833,4043 + size: 70,42 + orig: 70,42 + offset: 0,0 + index: -1 +bird-08.mouth-smile + rotate: false + xy: 4029,2563 + size: 55,52 + orig: 55,52 + offset: 0,0 + index: -1 +bird-04-lv2.mouth-open + rotate: false + xy: 2049,3943 + size: 46,62 + orig: 46,62 + offset: 0,0 + index: -1 +aquatic-04-lv2.ear-right + rotate: false + xy: 173,3378 + size: 28,101 + orig: 28,101 + offset: 0,0 + index: -1 +plant-08.mouth-smile + rotate: false + xy: 3695,2920 + size: 91,31 + orig: 91,31 + offset: 0,0 + index: -1 +beast-08-lv2.mouth-smile + rotate: false + xy: 2049,4023 + size: 44,64 + orig: 44,64 + offset: 0,0 + index: -1 +xmas-02.eyes-angry + rotate: false + xy: 329,3599 + size: 82,34 + orig: 82,34 + offset: 0,0 + index: -1 +bird-08-lv2.ear-right + rotate: false + xy: 378,2290 + size: 29,96 + orig: 29,96 + offset: 0,0 + index: -1 +bird-02.mouth-bite + rotate: false + xy: 2928,2980 + size: 59,47 + orig: 59,47 + offset: 0,0 + index: -1 +bug-06.tail + rotate: false + xy: 3804,2920 + size: 77,36 + orig: 77,36 + offset: 0,0 + index: -1 +plant-02.mouth-bite + rotate: false + xy: 1148,4052 + size: 86,32 + orig: 86,32 + offset: 0,0 + index: -1 +plant-mystic-02.mouth-bite + rotate: false + xy: 3899,2920 + size: 86,32 + orig: 86,32 + offset: 0,0 + index: -1 +bug-04.ear-right + rotate: false + xy: 2928,3045 + size: 49,56 + orig: 49,56 + offset: 0,0 + index: -1 +bug-04.ear-left + rotate: false + xy: 2928,3119 + size: 49,56 + orig: 49,56 + offset: 0,0 + index: -1 +reptile-10.ear-left + rotate: false + xy: 2928,3193 + size: 57,48 + orig: 57,48 + offset: 0,0 + index: -1 +bird-04.mouth-open + rotate: false + xy: 2928,3259 + size: 39,70 + orig: 39,70 + offset: 0,0 + index: -1 +reptile-04-lv2.mouth-bite + rotate: false + xy: 3005,2980 + size: 94,29 + orig: 94,29 + offset: 0,0 + index: -1 +bird-04.ear-right + rotate: false + xy: 2928,3347 + size: 40,68 + orig: 40,68 + offset: 0,0 + index: -1 +body-accessory.body-hip1a + rotate: false + xy: 2928,3433 + size: 46,59 + orig: 46,59 + offset: 0,0 + index: -1 +reptile-10-lv2.mouth-smile + rotate: false + xy: 569,291 + size: 113,24 + orig: 113,24 + offset: 0,0 + index: -1 +beast-04.ear-right + rotate: false + xy: 4033,2801 + size: 52,52 + orig: 52,52 + offset: 0,0 + index: -1 +bug-10.mouth-smile + rotate: false + xy: 3616,2874 + size: 96,28 + orig: 96,28 + offset: 0,0 + index: -1 +agamo-01-lv2.mouth-smile + rotate: false + xy: 3616,2874 + size: 96,28 + orig: 96,28 + offset: 0,0 + index: -1 +bug-04-lv2.mouth-bite + rotate: false + xy: 4003,2920 + size: 78,34 + orig: 78,34 + offset: 0,0 + index: -1 +aquatic-10.mouth-smile + rotate: false + xy: 3005,3027 + size: 68,39 + orig: 68,39 + offset: 0,0 + index: -1 +bird-02.mouth-smile + rotate: false + xy: 2928,3510 + size: 50,52 + orig: 50,52 + offset: 0,0 + index: -1 +bird-08.mouth + rotate: false + xy: 2928,3580 + size: 49,53 + orig: 49,53 + offset: 0,0 + index: -1 +beast-10.ear-right + rotate: false + xy: 2928,3651 + size: 54,48 + orig: 54,48 + offset: 0,0 + index: -1 +bird-02-lv2.mouth + rotate: false + xy: 2928,3717 + size: 38,68 + orig: 38,68 + offset: 0,0 + index: -1 +bug-mystic-02.mouth-open + rotate: false + xy: 2928,3803 + size: 45,57 + orig: 45,57 + offset: 0,0 + index: -1 +body-normal.xmas-leg-back-left + rotate: false + xy: 2928,3878 + size: 50,51 + orig: 50,51 + offset: 0,0 + index: -1 +body-normal.xmas-leg-back-left-stretch + rotate: false + xy: 2928,3878 + size: 50,51 + orig: 50,51 + offset: 0,0 + index: -1 +body-normal.xmas-leg-front-right + rotate: false + xy: 2928,3947 + size: 50,51 + orig: 50,51 + offset: 0,0 + index: -1 +aquatic-10.mouth + rotate: false + xy: 3005,3084 + size: 63,40 + orig: 63,40 + offset: 0,0 + index: -1 +beast-mystic-02-lv2.mouth-accessory + rotate: false + xy: 2928,4016 + size: 50,50 + orig: 50,50 + offset: 0,0 + index: -1 +reptile-mystic-02.mouth-accessory + rotate: false + xy: 2928,4016 + size: 50,50 + orig: 50,50 + offset: 0,0 + index: -1 +plant-mystic-02.mouth-accessory + rotate: false + xy: 2928,4016 + size: 50,50 + orig: 50,50 + offset: 0,0 + index: -1 +reptile-mystic-02-lv2.mouth-accessory + rotate: false + xy: 2928,4016 + size: 50,50 + orig: 50,50 + offset: 0,0 + index: -1 +bug-mystic-02-lv2.mouth-accessory + rotate: false + xy: 2928,4016 + size: 50,50 + orig: 50,50 + offset: 0,0 + index: -1 +beast-mystic-02.mouth-accessory + rotate: false + xy: 2928,4016 + size: 50,50 + orig: 50,50 + offset: 0,0 + index: -1 +bird-mystic-02-lv2.mouth-accessory + rotate: false + xy: 2928,4016 + size: 50,50 + orig: 50,50 + offset: 0,0 + index: -1 +plant-mystic-02-lv2.mouth-accessory + rotate: false + xy: 2928,4016 + size: 50,50 + orig: 50,50 + offset: 0,0 + index: -1 +bug-mystic-02.mouth-accessory + rotate: false + xy: 2928,4016 + size: 50,50 + orig: 50,50 + offset: 0,0 + index: -1 +bird-mystic-02.mouth-accessory + rotate: false + xy: 2928,4016 + size: 50,50 + orig: 50,50 + offset: 0,0 + index: -1 +body-normal.xmas-leg-back-left-long + rotate: false + xy: 3005,3142 + size: 51,49 + orig: 51,49 + offset: 0,0 + index: -1 +body-normal.xmas-leg-front-left-stretch + rotate: false + xy: 3005,3142 + size: 51,49 + orig: 51,49 + offset: 0,0 + index: -1 +body-normal.xmas-leg-front-left-long + rotate: false + xy: 3005,3142 + size: 51,49 + orig: 51,49 + offset: 0,0 + index: -1 +beast-10.eyes-angry + rotate: false + xy: 3730,2874 + size: 89,28 + orig: 89,28 + offset: 0,0 + index: -1 +beast-10.ear-left + rotate: false + xy: 2597,4040 + size: 54,46 + orig: 54,46 + offset: 0,0 + index: -1 +bug-02.mouth-smile + rotate: false + xy: 3005,3209 + size: 62,40 + orig: 62,40 + offset: 0,0 + index: -1 +japan-03.mouth + rotate: false + xy: 1120,292 + size: 123,20 + orig: 123,20 + offset: 0,0 + index: -1 +body-normal.xmas-leg-front-left + rotate: false + xy: 3005,3267 + size: 50,49 + orig: 50,49 + offset: 0,0 + index: -1 +beast-12.ear-left + rotate: false + xy: 3005,3334 + size: 52,47 + orig: 52,47 + offset: 0,0 + index: -1 +bird-02.eyes-shut + rotate: false + xy: 1261,292 + size: 122,20 + orig: 122,20 + offset: 0,0 + index: -1 +plant-02.mouth-open + rotate: false + xy: 3005,3399 + size: 45,54 + orig: 45,54 + offset: 0,0 + index: -1 +plant-mystic-02.mouth-open + rotate: false + xy: 3005,3471 + size: 45,54 + orig: 45,54 + offset: 0,0 + index: -1 +agamo-00-lv2.mouth-bite + rotate: false + xy: 3091,3027 + size: 81,30 + orig: 81,30 + offset: 0,0 + index: -1 +reptile-10.mouth-bite + rotate: false + xy: 3091,3027 + size: 81,30 + orig: 81,30 + offset: 0,0 + index: -1 +bird-08.ear-right + rotate: false + xy: 3005,3543 + size: 41,59 + orig: 41,59 + offset: 0,0 + index: -1 +xmas-02.mouth + rotate: false + xy: 3005,3620 + size: 56,43 + orig: 56,43 + offset: 0,0 + index: -1 +agamo-00-lv2.mouth-smile + rotate: false + xy: 3837,2874 + size: 86,28 + orig: 86,28 + offset: 0,0 + index: -1 +reptile-10.mouth-smile + rotate: false + xy: 3837,2874 + size: 86,28 + orig: 86,28 + offset: 0,0 + index: -1 +bird-02.ear-left + rotate: false + xy: 3005,3681 + size: 48,50 + orig: 48,50 + offset: 0,0 + index: -1 +reptile-10-lv2.mouth + rotate: false + xy: 1766,551 + size: 96,25 + orig: 96,25 + offset: 0,0 + index: -1 +aquatic-02.ear-right + rotate: false + xy: 382,2764 + size: 32,75 + orig: 32,75 + offset: 0,0 + index: -1 +aquatic-02-lv2.ear-right + rotate: false + xy: 386,631 + size: 28,85 + orig: 28,85 + offset: 0,0 + index: -1 +plant-02-lv2.mouth-smile + rotate: false + xy: 3005,3749 + size: 52,45 + orig: 52,45 + offset: 0,0 + index: -1 +xmas-01.eyes-shut + rotate: false + xy: 9,4067 + size: 123,19 + orig: 123,19 + offset: 0,0 + index: -1 +japan-03.mouth-bite + rotate: false + xy: 1989,551 + size: 123,19 + orig: 123,19 + offset: 0,0 + index: -1 +beast-04.mouth-bite + rotate: false + xy: 3005,3812 + size: 44,53 + orig: 44,53 + offset: 0,0 + index: -1 +beast-10.eyes + rotate: false + xy: 3941,2874 + size: 89,26 + orig: 89,26 + offset: 0,0 + index: -1 +japan-03.ear-right + rotate: false + xy: 1688,2614 + size: 33,70 + orig: 33,70 + offset: 0,0 + index: -1 +aquatic-02.mouth + rotate: false + xy: 3005,3883 + size: 48,48 + orig: 48,48 + offset: 0,0 + index: -1 +beast-02.mouth + rotate: false + xy: 3005,3949 + size: 51,45 + orig: 51,45 + offset: 0,0 + index: -1 +bug-08.mouth + rotate: false + xy: 1893,4062 + size: 120,19 + orig: 120,19 + offset: 0,0 + index: -1 +bug-02.mouth + rotate: false + xy: 3190,3027 + size: 71,32 + orig: 71,32 + offset: 0,0 + index: -1 +body-normal.sumo-leg-front-right-long + rotate: false + xy: 3005,4012 + size: 47,48 + orig: 47,48 + offset: 0,0 + index: -1 +body-normal.sumo-leg-front-left-long + rotate: false + xy: 3005,4012 + size: 47,48 + orig: 47,48 + offset: 0,0 + index: -1 +body-normal.xmas-leg-front-right-stretch + rotate: false + xy: 3086,3084 + size: 47,48 + orig: 47,48 + offset: 0,0 + index: -1 +body-normal.xmas-leg-front-right-long + rotate: false + xy: 3086,3084 + size: 47,48 + orig: 47,48 + offset: 0,0 + index: -1 +bug-12.ear-left + rotate: false + xy: 3086,3150 + size: 46,49 + orig: 46,49 + offset: 0,0 + index: -1 +bird-02-lv2.ear-right + rotate: false + xy: 1555,1688 + size: 32,70 + orig: 32,70 + offset: 0,0 + index: -1 +body-accessory.body-neck1d + rotate: false + xy: 3151,3084 + size: 52,43 + orig: 52,43 + offset: 0,0 + index: -1 +bird-04.mouth-smile + rotate: false + xy: 4044,2253 + size: 42,53 + orig: 42,53 + offset: 0,0 + index: -1 +plant-04.eyes-happy + rotate: false + xy: 2204,2143 + size: 101,22 + orig: 101,22 + offset: 0,0 + index: -1 +body-accessory.body-neck1b + rotate: false + xy: 3086,3217 + size: 44,50 + orig: 44,50 + offset: 0,0 + index: -1 +bird-02.mouth + rotate: false + xy: 3086,3285 + size: 42,52 + orig: 42,52 + offset: 0,0 + index: -1 +plant-04-lv2.mouth + rotate: false + xy: 3117,2980 + size: 78,28 + orig: 78,28 + offset: 0,0 + index: -1 +plant-mystic-02-lv2.mouth-smile + rotate: false + xy: 3221,3084 + size: 52,42 + orig: 52,42 + offset: 0,0 + index: -1 +bird-04.mouth + rotate: false + xy: 3086,3355 + size: 41,53 + orig: 41,53 + offset: 0,0 + index: -1 +bird-04-lv2.mouth + rotate: false + xy: 3291,3084 + size: 48,45 + orig: 48,45 + offset: 0,0 + index: -1 +reptile-04.ear-left + rotate: false + xy: 3357,3084 + size: 44,48 + orig: 44,48 + offset: 0,0 + index: -1 +bird-10.mouth-open + rotate: false + xy: 3419,3084 + size: 45,46 + orig: 45,46 + offset: 0,0 + index: -1 +body-normal.sumo-leg-front-left-stretch + rotate: false + xy: 3482,3084 + size: 47,44 + orig: 47,44 + offset: 0,0 + index: -1 +agamo-00-lv2.mouth + rotate: false + xy: 3213,2980 + size: 79,26 + orig: 79,26 + offset: 0,0 + index: -1 +reptile-10.mouth + rotate: false + xy: 3213,2980 + size: 79,26 + orig: 79,26 + offset: 0,0 + index: -1 +beast-08.mouth-bite + rotate: false + xy: 3279,3027 + size: 66,30 + orig: 66,30 + offset: 0,0 + index: -1 +bug-02.ear-right + rotate: false + xy: 3363,3027 + size: 52,38 + orig: 52,38 + offset: 0,0 + index: -1 +body-normal.sumo-leg-front-left + rotate: false + xy: 3547,3084 + size: 47,42 + orig: 47,42 + offset: 0,0 + index: -1 +body-normal.sumo-leg-back-left-long + rotate: false + xy: 3612,3084 + size: 42,47 + orig: 42,47 + offset: 0,0 + index: -1 +body-normal.sumo-leg-front-right + rotate: false + xy: 3672,3084 + size: 47,42 + orig: 47,42 + offset: 0,0 + index: -1 +aquatic-04.ear-right + rotate: false + xy: 385,3656 + size: 29,67 + orig: 29,67 + offset: 0,0 + index: -1 +aquatic-10.ear-right + rotate: false + xy: 385,3656 + size: 29,67 + orig: 29,67 + offset: 0,0 + index: -1 +aquatic-mystic-02.mouth + rotate: false + xy: 3737,3084 + size: 44,44 + orig: 44,44 + offset: 0,0 + index: -1 +body-normal.sumo-leg-front-right-stretch + rotate: false + xy: 3799,3084 + size: 45,43 + orig: 45,43 + offset: 0,0 + index: -1 +xmas-01.mouth + rotate: false + xy: 3862,3084 + size: 48,40 + orig: 48,40 + offset: 0,0 + index: -1 +bug-10-lv2.mouth-bite + rotate: false + xy: 3086,3426 + size: 39,49 + orig: 39,49 + offset: 0,0 + index: -1 +body-normal.sumo-leg-back-left-stretch + rotate: false + xy: 3928,3084 + size: 43,44 + orig: 43,44 + offset: 0,0 + index: -1 +beast-10-lv2.mouth-smile + rotate: false + xy: 3310,2980 + size: 70,27 + orig: 70,27 + offset: 0,0 + index: -1 +summer-as.mouth-smile + rotate: false + xy: 3398,2980 + size: 70,27 + orig: 70,27 + offset: 0,0 + index: -1 +summer-a.mouth-smile + rotate: false + xy: 3398,2980 + size: 70,27 + orig: 70,27 + offset: 0,0 + index: -1 +summer-a.eyes-happy-accessory + rotate: false + xy: 3989,3084 + size: 42,45 + orig: 42,45 + offset: 0,0 + index: -1 +summer-a-lv2.eyes-happy-accessory + rotate: false + xy: 3989,3084 + size: 42,45 + orig: 42,45 + offset: 0,0 + index: -1 +plant-02-lv2.mouth + rotate: false + xy: 3433,3027 + size: 49,38 + orig: 49,38 + offset: 0,0 + index: -1 +reptile-04.ear-right + rotate: false + xy: 3086,3493 + size: 38,49 + orig: 38,49 + offset: 0,0 + index: -1 +summer-as.eyes-happy-accessory + rotate: false + xy: 3086,3560 + size: 42,44 + orig: 42,44 + offset: 0,0 + index: -1 +summer-as-lv2.eyes-happy-accessory + rotate: false + xy: 3086,3560 + size: 42,44 + orig: 42,44 + offset: 0,0 + index: -1 +bug-04.mouth-bite + rotate: false + xy: 3486,2980 + size: 63,29 + orig: 63,29 + offset: 0,0 + index: -1 +bug-04.mouth + rotate: false + xy: 1880,551 + size: 73,25 + orig: 73,25 + offset: 0,0 + index: -1 +body-accessory.body-cheek1g + rotate: false + xy: 3086,3622 + size: 44,41 + orig: 44,41 + offset: 0,0 + index: -1 +bird-10.mouth-smile + rotate: false + xy: 3086,3681 + size: 39,46 + orig: 39,46 + offset: 0,0 + index: -1 +beast-mystic-02.mouth + rotate: false + xy: 3500,3027 + size: 51,35 + orig: 51,35 + offset: 0,0 + index: -1 +bug-10.mouth + rotate: false + xy: 3569,3027 + size: 57,31 + orig: 57,31 + offset: 0,0 + index: -1 +agamo-01-lv2.mouth + rotate: false + xy: 3569,3027 + size: 57,31 + orig: 57,31 + offset: 0,0 + index: -1 +body-normal.sumo-leg-back-left + rotate: false + xy: 3086,3745 + size: 44,40 + orig: 44,40 + offset: 0,0 + index: -1 +japan-01.mouth-smile + rotate: false + xy: 2747,4059 + size: 65,27 + orig: 65,27 + offset: 0,0 + index: -1 +reptile-04.mouth-bite + rotate: false + xy: 3567,2980 + size: 60,29 + orig: 60,29 + offset: 0,0 + index: -1 +xmas-02.eyes-happy + rotate: false + xy: 731,4062 + size: 96,18 + orig: 96,18 + offset: 0,0 + index: -1 +body-accessory.body-neck1e + rotate: false + xy: 4049,3084 + size: 38,45 + orig: 38,45 + offset: 0,0 + index: -1 +plant-04.mouth-smile + rotate: false + xy: 3645,2980 + size: 61,28 + orig: 61,28 + offset: 0,0 + index: -1 +bug-02.mouth-open + rotate: false + xy: 3644,3027 + size: 50,34 + orig: 50,34 + offset: 0,0 + index: -1 +beast-08.mouth-smile + rotate: false + xy: 1555,1776 + size: 32,53 + orig: 32,53 + offset: 0,0 + index: -1 +plant-02.eyes-happy + rotate: false + xy: 3165,976 + size: 120,14 + orig: 120,14 + offset: 0,0 + index: -1 +plant-02.eyes + rotate: false + xy: 3165,976 + size: 120,14 + orig: 120,14 + offset: 0,0 + index: -1 +beast-08-lv2.mouth + rotate: false + xy: 369,3915 + size: 44,38 + orig: 44,38 + offset: 0,0 + index: -1 +beast-10.eyes-shut + rotate: false + xy: 2343,2143 + size: 83,20 + orig: 83,20 + offset: 0,0 + index: -1 +bird-12.ear-right + rotate: false + xy: 3712,3027 + size: 50,32 + orig: 50,32 + offset: 0,0 + index: -1 +body-accessory.body-neck1a + rotate: false + xy: 3086,3803 + size: 39,41 + orig: 39,41 + offset: 0,0 + index: -1 +body-accessory.body-neck1c + rotate: false + xy: 3086,3862 + size: 34,47 + orig: 34,47 + offset: 0,0 + index: -1 +beast-10.mouth-smile + rotate: false + xy: 3724,2980 + size: 59,27 + orig: 59,27 + offset: 0,0 + index: -1 +beast-12.ear-right + rotate: false + xy: 3086,3927 + size: 36,44 + orig: 36,44 + offset: 0,0 + index: -1 +bug-10.mouth-bite + rotate: false + xy: 3801,2980 + size: 56,28 + orig: 56,28 + offset: 0,0 + index: -1 +agamo-01-lv2.mouth-bite + rotate: false + xy: 3801,2980 + size: 56,28 + orig: 56,28 + offset: 0,0 + index: -1 +beast-10-lv2.mouth + rotate: false + xy: 3875,2980 + size: 71,22 + orig: 71,22 + offset: 0,0 + index: -1 +plant-02.eyes-shut + rotate: false + xy: 3450,978 + size: 120,13 + orig: 120,13 + offset: 0,0 + index: -1 +summer-a.mouth + rotate: false + xy: 1462,551 + size: 62,25 + orig: 62,25 + offset: 0,0 + index: -1 +bug-02.ear-left + rotate: false + xy: 3780,3027 + size: 39,39 + orig: 39,39 + offset: 0,0 + index: -1 +beast-04.mouth-smile + rotate: false + xy: 382,2857 + size: 32,47 + orig: 32,47 + offset: 0,0 + index: -1 +xmas-01.body-pattern + rotate: false + xy: 386,734 + size: 27,55 + orig: 27,55 + offset: 0,0 + index: -1 +summer-as.mouth + rotate: false + xy: 1683,551 + size: 61,24 + orig: 61,24 + offset: 0,0 + index: -1 +xmas-01.mouth-eat + rotate: false + xy: 1605,4061 + size: 66,22 + orig: 66,22 + offset: 0,0 + index: -1 +xmas-01-lv2.mouth-eat + rotate: false + xy: 1605,4061 + size: 66,22 + orig: 66,22 + offset: 0,0 + index: -1 +xmas-02-lv2.mouth-eat + rotate: false + xy: 1605,4061 + size: 66,22 + orig: 66,22 + offset: 0,0 + index: -1 +xmas-02.mouth-eat + rotate: false + xy: 1605,4061 + size: 66,22 + orig: 66,22 + offset: 0,0 + index: -1 +body-normal.mystic-leg-front-right + rotate: false + xy: 379,2230 + size: 34,39 + orig: 34,39 + offset: 0,0 + index: -1 +body-normal.mystic-leg-back-left + rotate: false + xy: 3837,3027 + size: 34,39 + orig: 34,39 + offset: 0,0 + index: -1 +body-normal.leg-front-right + rotate: false + xy: 3889,3027 + size: 34,39 + orig: 34,39 + offset: 0,0 + index: -1 +body-normal.leg-back-left + rotate: false + xy: 3941,3027 + size: 34,39 + orig: 34,39 + offset: 0,0 + index: -1 +beast-04.mouth + rotate: false + xy: 385,3741 + size: 29,45 + orig: 29,45 + offset: 0,0 + index: -1 +body-bigyak.body-pattern + rotate: false + xy: 175,2498 + size: 26,50 + orig: 26,50 + offset: 0,0 + index: -1 +body-normal.summer-leg-back-left + rotate: false + xy: 1688,2742 + size: 33,39 + orig: 33,39 + offset: 0,0 + index: -1 +body-normal.summer-leg-front-right + rotate: false + xy: 1688,2799 + size: 33,39 + orig: 33,39 + offset: 0,0 + index: -1 +beast-10.mouth + rotate: false + xy: 3964,2980 + size: 47,27 + orig: 47,27 + offset: 0,0 + index: -1 +plant-04.eyes-shut + rotate: false + xy: 1104,979 + size: 105,12 + orig: 105,12 + offset: 0,0 + index: -1 +summer-as.ear-left-bubble + rotate: false + xy: 373,3197 + size: 37,34 + orig: 37,34 + offset: 0,0 + index: -1 +summer-as-lv2.ear-left-bubble + rotate: false + xy: 373,3197 + size: 37,34 + orig: 37,34 + offset: 0,0 + index: -1 +summer-a.ear-left-bubble + rotate: false + xy: 3993,3027 + size: 37,34 + orig: 37,34 + offset: 0,0 + index: -1 +summer-a-lv2.ear-left-bubble + rotate: false + xy: 3993,3027 + size: 37,34 + orig: 37,34 + offset: 0,0 + index: -1 +body-normal.leg-back-left-long + rotate: false + xy: 378,2404 + size: 36,34 + orig: 36,34 + offset: 0,0 + index: -1 +body-normal.mystic-leg-back-left-long + rotate: false + xy: 4048,3027 + size: 36,34 + orig: 36,34 + offset: 0,0 + index: -1 +body-frosty.body-bell + rotate: false + xy: 3086,3989 + size: 39,31 + orig: 39,31 + offset: 0,0 + index: -1 +body-normal.summer-leg-back-left-long + rotate: false + xy: 3086,4038 + size: 35,34 + orig: 35,34 + offset: 0,0 + index: -1 +summer-as.ear-right-bubble + rotate: false + xy: 3150,3150 + size: 35,34 + orig: 35,34 + offset: 0,0 + index: -1 +summer-as-lv2.ear-right-bubble + rotate: false + xy: 3150,3150 + size: 35,34 + orig: 35,34 + offset: 0,0 + index: -1 +body-normal.mystic-leg-front-left-long + rotate: false + xy: 3203,3150 + size: 37,32 + orig: 37,32 + offset: 0,0 + index: -1 +body-normal.mystic-leg-front-right-long + rotate: false + xy: 3203,3150 + size: 37,32 + orig: 37,32 + offset: 0,0 + index: -1 +body-normal.summer-leg-front-right-long + rotate: false + xy: 3258,3150 + size: 37,32 + orig: 37,32 + offset: 0,0 + index: -1 +body-normal.leg-front-right-long + rotate: false + xy: 3313,3150 + size: 37,32 + orig: 37,32 + offset: 0,0 + index: -1 +body-normal.leg-front-left-long + rotate: false + xy: 3313,3150 + size: 37,32 + orig: 37,32 + offset: 0,0 + index: -1 +reptile-04-lv2.mouth-smile + rotate: false + xy: 2569,2146 + size: 69,17 + orig: 69,17 + offset: 0,0 + index: -1 +body-accessory.body-neck1f + rotate: false + xy: 3368,3150 + size: 34,34 + orig: 34,34 + offset: 0,0 + index: -1 +bird-10.mouth-bite + rotate: false + xy: 3420,3150 + size: 35,33 + orig: 35,33 + offset: 0,0 + index: -1 +plant-08.mouth + rotate: false + xy: 2130,551 + size: 46,25 + orig: 46,25 + offset: 0,0 + index: -1 +reptile-04-lv2.mouth + rotate: false + xy: 3429,2146 + size: 75,15 + orig: 75,15 + offset: 0,0 + index: -1 +body-normal.summer-leg-front-left-long + rotate: false + xy: 3473,3150 + size: 36,31 + orig: 36,31 + offset: 0,0 + index: -1 +body-normal.body-light-breath + rotate: false + xy: 3527,3150 + size: 33,33 + orig: 33,33 + offset: 0,0 + index: -1 +summer-a.ear-right-bubble + rotate: false + xy: 3578,3150 + size: 35,31 + orig: 35,31 + offset: 0,0 + index: -1 +summer-a-lv2.ear-right-bubble + rotate: false + xy: 3578,3150 + size: 35,31 + orig: 35,31 + offset: 0,0 + index: -1 +xmas-02.eyes-shut + rotate: false + xy: 2998,2151 + size: 90,12 + orig: 90,12 + offset: 0,0 + index: -1 +bug-12.ear-right + rotate: false + xy: 176,1579 + size: 20,53 + orig: 20,53 + offset: 0,0 + index: -1 +plant-mystic-02-lv2.mouth + rotate: false + xy: 173,3497 + size: 27,39 + orig: 27,39 + offset: 0,0 + index: -1 +body-normal.mystic-leg-front-right-stretch + rotate: false + xy: 4029,2980 + size: 34,29 + orig: 34,29 + offset: 0,0 + index: -1 +body-normal.leg-front-right-stretch + rotate: false + xy: 3631,3150 + size: 34,29 + orig: 34,29 + offset: 0,0 + index: -1 +body-normal.leg-front-left-stretch + rotate: false + xy: 682,2563 + size: 29,32 + orig: 29,32 offset: 0,0 index: -1 body-normal.mystic-leg-front-left-stretch rotate: false - xy: 1815,3821 - size: 44,49 - orig: 44,49 + xy: 682,2613 + size: 29,32 + orig: 29,32 offset: 0,0 index: -1 body-normal.summer-leg-front-right-stretch rotate: false - xy: 3060,3799 - size: 50,42 - orig: 50,42 + xy: 4048,2874 + size: 33,28 + orig: 33,28 offset: 0,0 index: -1 -body-normal.summer-leg-front-left-stretch +summer-as.eye-light-dot rotate: false - xy: 1815,3908 - size: 43,48 - orig: 43,48 + xy: 682,2663 + size: 29,30 + orig: 29,30 offset: 0,0 index: -1 -summer-as.eye-light-dot +bird-10.mouth rotate: false - xy: 1815,3976 - size: 44,46 - orig: 44,46 + xy: 1690,3399 + size: 30,29 + orig: 30,29 offset: 0,0 index: -1 summer-a.eye-light-dot rotate: false - xy: 3060,3861 - size: 44,46 - orig: 44,46 + xy: 4058,1491 + size: 29,30 + orig: 29,30 offset: 0,0 index: -1 -plant-mystic-02.mouth-smile +body-normal.summer-leg-front-left-stretch rotate: false - xy: 2146,1659 - size: 60,33 - orig: 60,33 + xy: 685,1772 + size: 28,31 + orig: 28,31 offset: 0,0 index: -1 -bird-10.mouth +plant-mystic-02.mouth-smile rotate: false - xy: 1815,4042 - size: 45,44 - orig: 45,44 + xy: 700,291 + size: 39,22 + orig: 39,22 offset: 0,0 index: -1 -bug-06.ear-left +body-agamo.body-pattern rotate: false - xy: 3511,4044 - size: 60,32 - orig: 60,32 + xy: 685,1821 + size: 28,30 + orig: 28,30 offset: 0,0 index: -1 -body-agamo.body-pattern +bug-06.ear-left rotate: false - xy: 3060,3927 - size: 42,45 - orig: 42,45 + xy: 3683,3150 + size: 40,21 + orig: 40,21 offset: 0,0 index: -1 body-normal.mystic-leg-back-left-stretch rotate: false - xy: 3060,3992 - size: 42,44 - orig: 42,44 + xy: 685,1869 + size: 28,29 + orig: 28,29 offset: 0,0 index: -1 body-normal.leg-back-left-stretch rotate: false - xy: 4039,3790 - size: 42,44 - orig: 42,44 + xy: 4058,1539 + size: 28,29 + orig: 28,29 offset: 0,0 index: -1 -body-normal.leg-front-left +body-accessory.body-cheek1e rotate: false - xy: 3824,3857 - size: 46,40 - orig: 46,40 + xy: 176,1650 + size: 23,34 + orig: 23,34 offset: 0,0 index: -1 -body-accessory.body-cheek1e +body-normal.leg-front-left rotate: false - xy: 856,1047 - size: 35,51 - orig: 35,51 + xy: 1690,3446 + size: 30,26 + orig: 30,26 offset: 0,0 index: -1 body-normal.summer-leg-back-left-stretch rotate: false - xy: 3824,3917 - size: 41,43 - orig: 41,43 + xy: 387,1152 + size: 27,28 + orig: 27,28 offset: 0,0 index: -1 body-normal.mystic-leg-front-left rotate: false - xy: 1817,3290 - size: 44,40 - orig: 44,40 + xy: 1692,3053 + size: 29,26 + orig: 29,26 offset: 0,0 index: -1 body-normal.summer-leg-front-left rotate: false - xy: 3824,3980 - size: 44,39 - orig: 44,39 + xy: 1692,3097 + size: 29,25 + orig: 29,25 offset: 0,0 index: -1 -body-accessory.body-cheek1d +body-accessory.body-cheek1c rotate: false - xy: 4053,110 - size: 32,49 - orig: 32,49 + xy: 176,1702 + size: 21,33 + orig: 21,33 offset: 0,0 index: -1 -body-accessory.body-cheek1c +body-accessory.body-cheek1b rotate: false - xy: 4053,179 - size: 32,49 - orig: 32,49 + xy: 175,2566 + size: 21,33 + orig: 21,33 offset: 0,0 index: -1 -body-accessory.body-cheek1b +body-accessory.body-cheek1d rotate: false - xy: 4053,248 - size: 32,49 - orig: 32,49 + xy: 175,2617 + size: 21,32 + orig: 21,32 offset: 0,0 index: -1 plant-02.mouth-smile rotate: false - xy: 2073,1155 - size: 58,26 - orig: 58,26 + xy: 1401,292 + size: 38,17 + orig: 38,17 offset: 0,0 index: -1 -plant-04.mouth +plant-mystic-02.mouth rotate: false - xy: 2151,1155 - size: 73,20 - orig: 73,20 + xy: 373,1932 + size: 34,19 + orig: 34,19 offset: 0,0 index: -1 body-accessory.body-cheek1a rotate: false - xy: 1814,3573 - size: 39,37 - orig: 39,37 + xy: 387,1198 + size: 25,25 + orig: 25,25 offset: 0,0 index: -1 -plant-mystic-02.mouth +plant-04.mouth rotate: false - xy: 2802,1947 - size: 51,28 - orig: 51,28 + xy: 3557,2146 + size: 48,13 + orig: 48,13 offset: 0,0 index: -1 summer-as.light rotate: false - xy: 856,1118 - size: 31,46 - orig: 31,46 + xy: 178,2684 + size: 20,31 + orig: 20,31 offset: 0,0 index: -1 summer-a.light rotate: false - xy: 856,1118 - size: 31,46 - orig: 31,46 + xy: 178,2684 + size: 20,31 + orig: 20,31 offset: 0,0 index: -1 body-accessory.body-cheek1f rotate: false - xy: 856,1184 - size: 36,37 - orig: 36,37 + xy: 387,1241 + size: 24,25 + orig: 24,25 + offset: 0,0 + index: -1 +beast-08.mouth + rotate: false + xy: 388,1318 + size: 24,23 + orig: 24,23 + offset: 0,0 + index: -1 +reptile-04.mouth + rotate: false + xy: 388,1359 + size: 25,17 + orig: 25,17 + offset: 0,0 + index: -1 +reptile-04.mouth-smile + rotate: false + xy: 685,1916 + size: 28,14 + orig: 28,14 + offset: 0,0 + index: -1 +body-normal.body-class-aquatic + rotate: false + xy: 182,1775 + size: 17,19 + orig: 17,19 + offset: 0,0 + index: -1 +body-normal.body-class-reptile + rotate: false + xy: 182,1812 + size: 17,17 + orig: 17,17 + offset: 0,0 + index: -1 +body-normal.body-class-plant + rotate: false + xy: 182,1847 + size: 17,17 + orig: 17,17 + offset: 0,0 + index: -1 +plant-02.mouth + rotate: false + xy: 1844,842 + size: 39,7 + orig: 39,7 + offset: 0,0 + index: -1 +body-normal.body-class-beast + rotate: false + xy: 182,1882 + size: 15,17 + orig: 15,17 + offset: 0,0 + index: -1 +beast-mystic-02-lv2.mouth-smile-blink + rotate: false + xy: 182,1917 + size: 15,15 + orig: 15,15 + offset: 0,0 + index: -1 +reptile-mystic-02.mouth-smile-blink + rotate: false + xy: 182,1917 + size: 15,15 + orig: 15,15 + offset: 0,0 + index: -1 +plant-mystic-02.mouth-smile-blink + rotate: false + xy: 182,1917 + size: 15,15 + orig: 15,15 + offset: 0,0 + index: -1 +reptile-mystic-02-lv2.mouth-smile-blink + rotate: false + xy: 182,1917 + size: 15,15 + orig: 15,15 + offset: 0,0 + index: -1 +bug-mystic-02-lv2.mouth-smile-blink + rotate: false + xy: 182,1917 + size: 15,15 + orig: 15,15 + offset: 0,0 + index: -1 +beast-mystic-02.mouth-smile-blink + rotate: false + xy: 182,1917 + size: 15,15 + orig: 15,15 + offset: 0,0 + index: -1 +bird-mystic-02-lv2.mouth-smile-blink + rotate: false + xy: 182,1917 + size: 15,15 + orig: 15,15 + offset: 0,0 + index: -1 +plant-mystic-02-lv2.mouth-smile-blink + rotate: false + xy: 182,1917 + size: 15,15 + orig: 15,15 + offset: 0,0 + index: -1 +bug-mystic-02.mouth-smile-blink + rotate: false + xy: 182,1917 + size: 15,15 + orig: 15,15 + offset: 0,0 + index: -1 +aquatic-mystic-02-lv2.mouth-accessory + rotate: false + xy: 182,1917 + size: 15,15 + orig: 15,15 + offset: 0,0 + index: -1 +aquatic-mystic-02.mouth-accessory + rotate: false + xy: 182,1917 + size: 15,15 + orig: 15,15 + offset: 0,0 + index: -1 +bird-mystic-02.mouth-smile-blink + rotate: false + xy: 182,1917 + size: 15,15 + orig: 15,15 + offset: 0,0 + index: -1 +body-normal.body-class-bug + rotate: false + xy: 185,1960 + size: 15,15 + orig: 15,15 + offset: 0,0 + index: -1 +body-normal.body-class-bird + rotate: false + xy: 185,1993 + size: 12,18 + orig: 12,18 + offset: 0,0 + index: -1 +summer-a-lv2.ear-right-dot + rotate: false + xy: 191,1217 + size: 10,10 + orig: 10,10 + offset: 0,0 + index: -1 +summer-as.ear-left-dot + rotate: false + xy: 193,652 + size: 7,7 + orig: 7,7 + offset: 0,0 + index: -1 +summer-as-lv2.ear-left-dot + rotate: false + xy: 193,652 + size: 7,7 + orig: 7,7 + offset: 0,0 + index: -1 +summer-as.ear-right-dot + rotate: false + xy: 193,677 + size: 8,5 + orig: 8,5 + offset: 0,0 + index: -1 +summer-as-lv2.ear-right-dot + rotate: false + xy: 193,677 + size: 8,5 + orig: 8,5 + offset: 0,0 + index: -1 +summer-a.ear-left-dot + rotate: false + xy: 193,700 + size: 6,6 + orig: 6,6 offset: 0,0 index: -1 -beast-08.mouth +summer-a-lv2.ear-left-dot rotate: false - xy: 3824,4039 - size: 36,35 - orig: 36,35 + xy: 193,700 + size: 6,6 + orig: 6,6 offset: 0,0 index: -1 -reptile-04.mouth +summer-a.ear-right-dot rotate: false - xy: 2615,830 - size: 38,26 - orig: 38,26 + xy: 193,724 + size: 7,5 + orig: 7,5 offset: 0,0 index: -1 -reptile-04.mouth-smile +body-normal.body-light-pulse rotate: false - xy: 1878,833 - size: 43,22 - orig: 43,22 + xy: 193,747 + size: 6,5 + orig: 6,5 offset: 0,0 index: -1 -body-normal.body-class-aquatic +body-normal.body-id-00-bug rotate: false - xy: 4053,317 - size: 26,29 - orig: 26,29 + xy: 4082,9 + size: 3,5 + orig: 3,5 offset: 0,0 index: -1 -body-normal.body-class-reptile +body-normal.body-id-00-reptile-flipx rotate: false - xy: 2896,825 - size: 26,25 - orig: 26,25 + xy: 4082,32 + size: 3,5 + orig: 3,5 offset: 0,0 index: -1 -body-normal.body-class-plant +body-normal.body-id-a-02 rotate: false - xy: 864,2241 - size: 26,25 - orig: 26,25 + xy: 4082,55 + size: 3,5 + orig: 3,5 offset: 0,0 index: -1 -plant-02.mouth +body-normal.body-id-c-02 rotate: false - xy: 4025,832 - size: 60,10 - orig: 60,10 + xy: 4082,55 + size: 3,5 + orig: 3,5 offset: 0,0 index: -1 -body-normal.body-class-beast +body-normal.body-id-e-02 rotate: false - xy: 864,2286 - size: 23,25 - orig: 23,25 + xy: 4082,55 + size: 3,5 + orig: 3,5 offset: 0,0 index: -1 -reptile-mystic-02.mouth-smile-blink +body-normal.body-id-b-02 rotate: false - xy: 2383,833 - size: 23,23 - orig: 23,23 + xy: 4082,55 + size: 3,5 + orig: 3,5 offset: 0,0 index: -1 -plant-mystic-02.mouth-smile-blink +body-normal.body-id-f-02 rotate: false - xy: 2383,833 - size: 23,23 - orig: 23,23 + xy: 4082,55 + size: 3,5 + orig: 3,5 offset: 0,0 index: -1 -beast-mystic-02.mouth-smile-blink +body-normal.body-id-d-02 rotate: false - xy: 2383,833 - size: 23,23 - orig: 23,23 + xy: 4082,55 + size: 3,5 + orig: 3,5 offset: 0,0 index: -1 -bug-mystic-02.mouth-smile-blink +body-normal.body-id-a-00 rotate: false - xy: 2383,833 - size: 23,23 - orig: 23,23 + xy: 4082,78 + size: 3,5 + orig: 3,5 offset: 0,0 index: -1 -aquatic-mystic-02.mouth-accessory +body-normal.body-id-c-00 rotate: false - xy: 2383,833 - size: 23,23 - orig: 23,23 + xy: 4082,78 + size: 3,5 + orig: 3,5 offset: 0,0 index: -1 -bird-mystic-02.mouth-smile-blink +body-normal.body-id-e-00 rotate: false - xy: 2383,833 - size: 23,23 - orig: 23,23 + xy: 4082,78 + size: 3,5 + orig: 3,5 offset: 0,0 index: -1 -body-normal.body-class-bug +body-normal.body-id-b-00 rotate: false - xy: 864,2331 - size: 23,23 - orig: 23,23 + xy: 4082,78 + size: 3,5 + orig: 3,5 offset: 0,0 index: -1 -body-normal.body-class-bird +body-normal.body-id-f-00 rotate: false - xy: 3151,826 - size: 19,27 - orig: 19,27 + xy: 4082,78 + size: 3,5 + orig: 3,5 offset: 0,0 index: -1 -summer-as.ear-left-dot +body-normal.body-id-d-00 rotate: false - xy: 432,2620 - size: 11,10 - orig: 11,10 + xy: 4082,78 + size: 3,5 + orig: 3,5 offset: 0,0 index: -1 -summer-as.ear-right-dot +body-normal.body-id-00-reptile rotate: false - xy: 432,2650 - size: 13,8 - orig: 13,8 + xy: 4082,101 + size: 3,5 + orig: 3,5 offset: 0,0 index: -1 -summer-a.ear-left-dot +body-normal.body-id-02-aquatic rotate: false - xy: 665,1346 - size: 9,10 - orig: 9,10 + xy: 4082,124 + size: 3,5 + orig: 3,5 offset: 0,0 index: -1 -body-normal.body-light-pulse +body-normal.body-id-02-beast rotate: false - xy: 665,1376 - size: 9,8 - orig: 9,8 + xy: 4082,147 + size: 3,5 + orig: 3,5 offset: 0,0 index: -1 -summer-a.ear-right-dot +body-normal.body-id-00-plant-flipx rotate: false - xy: 665,1404 - size: 10,7 - orig: 10,7 + xy: 4082,170 + size: 3,5 + orig: 3,5 offset: 0,0 index: -1 -body-normal.body-id-00-bug +body-normal.body-id-00-bird rotate: false - xy: 4078,492 - size: 5,8 - orig: 5,8 + xy: 4082,193 + size: 3,5 + orig: 3,5 offset: 0,0 index: -1 -body-normal.body-id-00-reptile-flipx +body-normal.body-id-02-reptile-flipx rotate: false - xy: 4078,520 - size: 5,8 - orig: 5,8 + xy: 193,770 + size: 3,5 + orig: 3,5 offset: 0,0 index: -1 -body-normal.body-id-a-00 +body-normal.body-id-00-beast-flipx rotate: false - xy: 4078,548 - size: 5,8 - orig: 5,8 + xy: 193,793 + size: 3,5 + orig: 3,5 offset: 0,0 index: -1 -body-normal.body-id-00-reptile +body-normal.body-id-02-bug rotate: false - xy: 4078,576 - size: 5,8 - orig: 5,8 + xy: 193,816 + size: 3,5 + orig: 3,5 offset: 0,0 index: -1 -body-normal.body-id-c-00 +body-normal.body-id-02-bug-flipx rotate: false - xy: 4078,604 - size: 5,8 - orig: 5,8 + xy: 194,853 + size: 3,5 + orig: 3,5 offset: 0,0 index: -1 -body-normal.body-id-e-00 +body-normal.body-id-00-plant rotate: false - xy: 4078,604 - size: 5,8 - orig: 5,8 + xy: 194,876 + size: 3,5 + orig: 3,5 offset: 0,0 index: -1 -body-normal.body-id-b-00 +body-normal.body-id-02-bird rotate: false - xy: 4078,604 - size: 5,8 - orig: 5,8 + xy: 194,899 + size: 3,5 + orig: 3,5 offset: 0,0 index: -1 -body-normal.body-id-f-00 +body-normal.body-id-00-beast rotate: false - xy: 4078,604 - size: 5,8 - orig: 5,8 + xy: 194,922 + size: 3,5 + orig: 3,5 offset: 0,0 index: -1 -body-normal.body-id-d-00 +body-normal.body-id-02-beast-flipx rotate: false - xy: 4078,604 - size: 5,8 - orig: 5,8 + xy: 194,945 + size: 3,5 + orig: 3,5 offset: 0,0 index: -1 -body-normal.body-id-00-plant-flipx +body-normal.body-id-00-bug-flipx rotate: false - xy: 672,1108 - size: 5,8 - orig: 5,8 + xy: 194,968 + size: 3,5 + orig: 3,5 offset: 0,0 index: -1 -body-normal.body-id-00-bird +body-normal.body-id-02-aquatic-flipx rotate: false - xy: 672,1136 - size: 5,8 - orig: 5,8 + xy: 194,991 + size: 3,5 + orig: 3,5 offset: 0,0 index: -1 -body-normal.body-id-00-beast-flipx +body-normal.body-id-02-bird-flipx rotate: false - xy: 672,1164 - size: 5,8 - orig: 5,8 + xy: 194,1014 + size: 3,5 + orig: 3,5 offset: 0,0 index: -1 -body-normal.body-id-00-plant +body-normal.body-id-00-bird-flipx rotate: false - xy: 672,1192 - size: 5,8 - orig: 5,8 + xy: 191,1245 + size: 3,5 + orig: 3,5 offset: 0,0 index: -1 -body-normal.body-id-00-beast +body-normal.body-id-00-aquatic rotate: false - xy: 672,1220 - size: 5,8 - orig: 5,8 + xy: 191,1268 + size: 3,5 + orig: 3,5 offset: 0,0 index: -1 -body-normal.body-id-00-bug-flipx +body-normal.body-id-02-reptile rotate: false - xy: 672,1248 - size: 5,8 - orig: 5,8 + xy: 191,1291 + size: 3,5 + orig: 3,5 offset: 0,0 index: -1 -body-normal.body-id-00-bird-flipx +body-normal.body-id-02-plant-flipx rotate: false - xy: 672,1276 - size: 5,8 - orig: 5,8 + xy: 191,1314 + size: 3,5 + orig: 3,5 offset: 0,0 index: -1 -body-normal.body-id-00-aquatic +body-normal.body-id-00-aquatic-flipx rotate: false - xy: 672,1304 - size: 5,8 - orig: 5,8 + xy: 191,1337 + size: 3,5 + orig: 3,5 offset: 0,0 index: -1 -body-normal.body-id-00-aquatic-flipx +body-normal.body-id-02-plant rotate: false - xy: 665,1431 - size: 5,8 - orig: 5,8 + xy: 191,1360 + size: 3,5 + orig: 3,5 offset: 0,0 index: -1 body-normal.body-id-09-reptile rotate: false - xy: 665,1459 - size: 5,7 - orig: 5,7 + xy: 192,1399 + size: 3,4 + orig: 3,4 offset: 0,0 index: -1 body-normal.body-id-08-plant-flipx rotate: false - xy: 665,1486 - size: 5,7 - orig: 5,7 + xy: 192,1421 + size: 3,4 + orig: 3,4 offset: 0,0 index: -1 body-normal.body-id-c-06 rotate: false - xy: 665,1513 - size: 5,7 - orig: 5,7 + xy: 192,1443 + size: 3,4 + orig: 3,4 offset: 0,0 index: -1 body-normal.body-id-a-06 rotate: false - xy: 665,1513 - size: 5,7 - orig: 5,7 + xy: 192,1443 + size: 3,4 + orig: 3,4 offset: 0,0 index: -1 body-normal.body-id-e-06 rotate: false - xy: 665,1513 - size: 5,7 - orig: 5,7 + xy: 192,1443 + size: 3,4 + orig: 3,4 offset: 0,0 index: -1 body-normal.body-id-b-06 rotate: false - xy: 665,1513 - size: 5,7 - orig: 5,7 + xy: 192,1443 + size: 3,4 + orig: 3,4 offset: 0,0 index: -1 body-normal.body-id-d-06 rotate: false - xy: 665,1513 - size: 5,7 - orig: 5,7 + xy: 192,1443 + size: 3,4 + orig: 3,4 offset: 0,0 index: -1 body-normal.body-id-f-06 rotate: false - xy: 665,1513 - size: 5,7 - orig: 5,7 + xy: 192,1443 + size: 3,4 + orig: 3,4 offset: 0,0 index: -1 body-normal.body-id-09-aquatic-flipx rotate: false - xy: 671,1561 - size: 5,7 - orig: 5,7 + xy: 192,1465 + size: 3,4 + orig: 3,4 offset: 0,0 index: -1 body-normal.body-id-c-07 rotate: false - xy: 671,1588 - size: 5,7 - orig: 5,7 + xy: 192,1487 + size: 3,4 + orig: 3,4 offset: 0,0 index: -1 body-normal.body-id-a-07 rotate: false - xy: 671,1588 - size: 5,7 - orig: 5,7 + xy: 192,1487 + size: 3,4 + orig: 3,4 offset: 0,0 index: -1 body-normal.body-id-e-07 rotate: false - xy: 671,1588 - size: 5,7 - orig: 5,7 + xy: 192,1487 + size: 3,4 + orig: 3,4 offset: 0,0 index: -1 body-normal.body-id-b-07 rotate: false - xy: 671,1588 - size: 5,7 - orig: 5,7 + xy: 192,1487 + size: 3,4 + orig: 3,4 offset: 0,0 index: -1 body-normal.body-id-d-07 rotate: false - xy: 671,1588 - size: 5,7 - orig: 5,7 + xy: 192,1487 + size: 3,4 + orig: 3,4 offset: 0,0 index: -1 body-normal.body-id-f-07 rotate: false - xy: 671,1588 - size: 5,7 - orig: 5,7 + xy: 192,1487 + size: 3,4 + orig: 3,4 offset: 0,0 index: -1 body-normal.body-id-06-beast-flipx rotate: false - xy: 671,1615 - size: 5,7 - orig: 5,7 + xy: 192,1509 + size: 3,4 + orig: 3,4 offset: 0,0 index: -1 body-normal.body-id-08-bug-flipx rotate: false - xy: 671,1642 - size: 5,7 - orig: 5,7 - offset: 0,0 - index: -1 -body-normal.body-id-a-02 - rotate: false - xy: 671,1669 - size: 5,7 - orig: 5,7 - offset: 0,0 - index: -1 -body-normal.body-id-c-02 - rotate: false - xy: 671,1669 - size: 5,7 - orig: 5,7 - offset: 0,0 - index: -1 -body-normal.body-id-e-02 - rotate: false - xy: 671,1669 - size: 5,7 - orig: 5,7 - offset: 0,0 - index: -1 -body-normal.body-id-b-02 - rotate: false - xy: 671,1669 - size: 5,7 - orig: 5,7 - offset: 0,0 - index: -1 -body-normal.body-id-f-02 - rotate: false - xy: 671,1669 - size: 5,7 - orig: 5,7 - offset: 0,0 - index: -1 -body-normal.body-id-d-02 - rotate: false - xy: 671,1669 - size: 5,7 - orig: 5,7 + xy: 192,1531 + size: 3,4 + orig: 3,4 offset: 0,0 index: -1 body-normal.body-id-09-bug rotate: false - xy: 671,1696 - size: 5,7 - orig: 5,7 + xy: 192,1553 + size: 3,4 + orig: 3,4 offset: 0,0 index: -1 body-normal.body-id-09-beast-flipx rotate: false - xy: 671,1723 - size: 5,7 - orig: 5,7 + xy: 176,1753 + size: 3,4 + orig: 3,4 offset: 0,0 index: -1 body-normal.body-id-07-plant rotate: false - xy: 668,2876 - size: 5,7 - orig: 5,7 + xy: 197,1753 + size: 3,4 + orig: 3,4 offset: 0,0 index: -1 body-normal.body-id-f-09 rotate: false - xy: 668,2903 - size: 5,7 - orig: 5,7 + xy: 185,2029 + size: 3,4 + orig: 3,4 offset: 0,0 index: -1 body-normal.body-id-d-09 rotate: false - xy: 668,2903 - size: 5,7 - orig: 5,7 + xy: 185,2029 + size: 3,4 + orig: 3,4 offset: 0,0 index: -1 body-normal.body-id-b-09 rotate: false - xy: 668,2903 - size: 5,7 - orig: 5,7 + xy: 185,2029 + size: 3,4 + orig: 3,4 offset: 0,0 index: -1 body-normal.body-id-e-09 rotate: false - xy: 668,2903 - size: 5,7 - orig: 5,7 + xy: 185,2029 + size: 3,4 + orig: 3,4 offset: 0,0 index: -1 body-normal.body-id-a-09 rotate: false - xy: 668,2903 - size: 5,7 - orig: 5,7 + xy: 185,2029 + size: 3,4 + orig: 3,4 offset: 0,0 index: -1 body-normal.body-id-c-09 rotate: false - xy: 668,2903 - size: 5,7 - orig: 5,7 + xy: 185,2029 + size: 3,4 + orig: 3,4 offset: 0,0 index: -1 body-normal.body-id-c-05 rotate: false - xy: 668,2930 - size: 5,7 - orig: 5,7 + xy: 185,2051 + size: 3,4 + orig: 3,4 offset: 0,0 index: -1 body-normal.body-id-a-05 rotate: false - xy: 668,2930 - size: 5,7 - orig: 5,7 + xy: 185,2051 + size: 3,4 + orig: 3,4 offset: 0,0 index: -1 body-normal.body-id-e-05 rotate: false - xy: 668,2930 - size: 5,7 - orig: 5,7 + xy: 185,2051 + size: 3,4 + orig: 3,4 offset: 0,0 index: -1 body-normal.body-id-b-05 rotate: false - xy: 668,2930 - size: 5,7 - orig: 5,7 + xy: 185,2051 + size: 3,4 + orig: 3,4 offset: 0,0 index: -1 body-normal.body-id-d-05 rotate: false - xy: 668,2930 - size: 5,7 - orig: 5,7 + xy: 185,2051 + size: 3,4 + orig: 3,4 offset: 0,0 index: -1 body-normal.body-id-f-05 rotate: false - xy: 668,2930 - size: 5,7 - orig: 5,7 - offset: 0,0 - index: -1 -body-normal.body-id-02-aquatic - rotate: false - xy: 668,2957 - size: 5,7 - orig: 5,7 + xy: 185,2051 + size: 3,4 + orig: 3,4 offset: 0,0 index: -1 body-normal.body-id-07-plant-flipx rotate: false - xy: 668,2984 - size: 5,7 - orig: 5,7 + xy: 185,2073 + size: 3,4 + orig: 3,4 offset: 0,0 index: -1 body-normal.body-id-f-08 rotate: false - xy: 668,3011 - size: 5,7 - orig: 5,7 + xy: 185,2095 + size: 3,4 + orig: 3,4 offset: 0,0 index: -1 body-normal.body-id-d-08 rotate: false - xy: 668,3011 - size: 5,7 - orig: 5,7 + xy: 185,2095 + size: 3,4 + orig: 3,4 offset: 0,0 index: -1 body-normal.body-id-b-08 rotate: false - xy: 668,3011 - size: 5,7 - orig: 5,7 + xy: 185,2095 + size: 3,4 + orig: 3,4 offset: 0,0 index: -1 body-normal.body-id-e-08 rotate: false - xy: 668,3011 - size: 5,7 - orig: 5,7 + xy: 185,2095 + size: 3,4 + orig: 3,4 offset: 0,0 index: -1 body-normal.body-id-a-08 rotate: false - xy: 668,3011 - size: 5,7 - orig: 5,7 + xy: 185,2095 + size: 3,4 + orig: 3,4 offset: 0,0 index: -1 body-normal.body-id-c-08 rotate: false - xy: 668,3011 - size: 5,7 - orig: 5,7 - offset: 0,0 - index: -1 -body-normal.body-id-02-beast - rotate: false - xy: 668,3038 - size: 5,7 - orig: 5,7 + xy: 185,2095 + size: 3,4 + orig: 3,4 offset: 0,0 index: -1 body-normal.body-id-05-reptile-flipx rotate: false - xy: 674,3803 - size: 5,7 - orig: 5,7 + xy: 185,2117 + size: 3,4 + orig: 3,4 offset: 0,0 index: -1 body-normal.body-id-07-aquatic rotate: false - xy: 674,3830 - size: 5,7 - orig: 5,7 + xy: 184,2141 + size: 3,4 + orig: 3,4 offset: 0,0 index: -1 body-normal.body-id-08-bug rotate: false - xy: 674,3857 - size: 5,7 - orig: 5,7 + xy: 184,2163 + size: 3,4 + orig: 3,4 offset: 0,0 index: -1 body-normal.body-id-05-reptile rotate: false - xy: 674,3884 - size: 5,7 - orig: 5,7 + xy: 184,2185 + size: 3,4 + orig: 3,4 offset: 0,0 index: -1 body-normal.body-id-09-beast rotate: false - xy: 674,3911 - size: 5,7 - orig: 5,7 + xy: 184,2207 + size: 3,4 + orig: 3,4 offset: 0,0 index: -1 body-normal.body-id-08-aquatic-flipx rotate: false - xy: 674,3938 - size: 5,7 - orig: 5,7 + xy: 184,2229 + size: 3,4 + orig: 3,4 offset: 0,0 index: -1 body-normal.body-id-07-bird rotate: false - xy: 3397,815 - size: 5,7 - orig: 5,7 + xy: 184,2251 + size: 3,4 + orig: 3,4 offset: 0,0 index: -1 body-normal.body-id-06-bird rotate: false - xy: 3397,842 - size: 5,7 - orig: 5,7 - offset: 0,0 - index: -1 -body-normal.body-id-02-reptile-flipx - rotate: false - xy: 3840,809 - size: 5,7 - orig: 5,7 + xy: 184,2273 + size: 3,4 + orig: 3,4 offset: 0,0 index: -1 body-normal.body-id-05-bug-flipx rotate: false - xy: 3840,836 - size: 5,7 - orig: 5,7 + xy: 184,2295 + size: 3,4 + orig: 3,4 offset: 0,0 index: -1 body-normal.body-id-06-plant rotate: false - xy: 4065,647 - size: 5,7 - orig: 5,7 + xy: 190,2323 + size: 3,4 + orig: 3,4 offset: 0,0 index: -1 body-normal.body-id-06-reptile rotate: false - xy: 4065,674 - size: 5,7 - orig: 5,7 + xy: 190,2345 + size: 3,4 + orig: 3,4 offset: 0,0 index: -1 body-normal.body-id-07-reptile-flipx rotate: false - xy: 4065,701 - size: 5,7 - orig: 5,7 - offset: 0,0 - index: -1 -body-normal.body-id-02-bug - rotate: false - xy: 4065,728 - size: 5,7 - orig: 5,7 + xy: 190,2367 + size: 3,4 + orig: 3,4 offset: 0,0 index: -1 body-normal.body-id-08-beast rotate: false - xy: 4065,755 - size: 5,7 - orig: 5,7 + xy: 190,2389 + size: 3,4 + orig: 3,4 offset: 0,0 index: -1 body-normal.body-id-09-plant-flipx rotate: false - xy: 4065,782 - size: 5,7 - orig: 5,7 + xy: 190,2411 + size: 3,4 + orig: 3,4 offset: 0,0 index: -1 body-normal.body-id-07-beast-flipx rotate: false - xy: 856,1241 - size: 5,7 - orig: 5,7 + xy: 190,2433 + size: 3,4 + orig: 3,4 offset: 0,0 index: -1 body-normal.body-id-05-beast rotate: false - xy: 881,1241 - size: 5,7 - orig: 5,7 + xy: 190,2455 + size: 3,4 + orig: 3,4 offset: 0,0 index: -1 body-normal.body-id-08-beast-flipx rotate: false - xy: 883,1457 - size: 5,7 - orig: 5,7 - offset: 0,0 - index: -1 -body-normal.body-id-02-bug-flipx - rotate: false - xy: 883,1484 - size: 5,7 - orig: 5,7 + xy: 178,2733 + size: 3,4 + orig: 3,4 offset: 0,0 index: -1 body-normal.body-id-08-aquatic rotate: false - xy: 883,1511 - size: 5,7 - orig: 5,7 + xy: 178,2755 + size: 3,4 + orig: 3,4 offset: 0,0 index: -1 body-normal.body-id-06-bug-flipx rotate: false - xy: 883,1538 - size: 5,7 - orig: 5,7 + xy: 178,2777 + size: 3,4 + orig: 3,4 offset: 0,0 index: -1 body-normal.body-id-06-plant-flipx rotate: false - xy: 883,1565 - size: 5,7 - orig: 5,7 + xy: 178,2799 + size: 3,4 + orig: 3,4 offset: 0,0 index: -1 body-normal.body-id-06-reptile-flipx rotate: false - xy: 883,1592 - size: 5,7 - orig: 5,7 + xy: 178,2821 + size: 3,4 + orig: 3,4 offset: 0,0 index: -1 body-normal.body-id-09-bird rotate: false - xy: 883,1619 - size: 5,7 - orig: 5,7 + xy: 178,2843 + size: 3,4 + orig: 3,4 offset: 0,0 index: -1 body-normal.body-id-08-bird rotate: false - xy: 883,1653 - size: 5,7 - orig: 5,7 + xy: 189,2866 + size: 3,4 + orig: 3,4 offset: 0,0 index: -1 body-normal.body-id-06-aquatic-flipx rotate: false - xy: 883,1680 - size: 5,7 - orig: 5,7 + xy: 189,2888 + size: 3,4 + orig: 3,4 offset: 0,0 index: -1 body-normal.body-id-08-plant rotate: false - xy: 883,1707 - size: 5,7 - orig: 5,7 + xy: 189,2910 + size: 3,4 + orig: 3,4 offset: 0,0 index: -1 body-normal.body-id-07-bug-flipx rotate: false - xy: 883,1734 - size: 5,7 - orig: 5,7 - offset: 0,0 - index: -1 -body-normal.body-id-02-bird - rotate: false - xy: 883,1761 - size: 5,7 - orig: 5,7 + xy: 189,2932 + size: 3,4 + orig: 3,4 offset: 0,0 index: -1 body-normal.body-id-07-bug rotate: false - xy: 883,1788 - size: 5,7 - orig: 5,7 - offset: 0,0 - index: -1 -body-normal.body-id-02-beast-flipx - rotate: false - xy: 883,1815 - size: 5,7 - orig: 5,7 + xy: 189,2954 + size: 3,4 + orig: 3,4 offset: 0,0 index: -1 body-normal.body-id-06-aquatic rotate: false - xy: 883,1849 - size: 5,7 - orig: 5,7 + xy: 189,2976 + size: 3,4 + orig: 3,4 offset: 0,0 index: -1 body-normal.body-id-05-plant rotate: false - xy: 883,1876 - size: 5,7 - orig: 5,7 + xy: 189,2998 + size: 3,4 + orig: 3,4 offset: 0,0 index: -1 body-normal.body-id-07-aquatic-flipx rotate: false - xy: 883,1903 - size: 5,7 - orig: 5,7 + xy: 179,3034 + size: 3,4 + orig: 3,4 offset: 0,0 index: -1 body-normal.body-id-05-beast-flipx rotate: false - xy: 883,1930 - size: 5,7 - orig: 5,7 + xy: 179,3056 + size: 3,4 + orig: 3,4 offset: 0,0 index: -1 body-normal.body-id-06-bug rotate: false - xy: 883,1957 - size: 5,7 - orig: 5,7 + xy: 179,3078 + size: 3,4 + orig: 3,4 offset: 0,0 index: -1 body-normal.body-id-05-bird-flipx rotate: false - xy: 883,1984 - size: 5,7 - orig: 5,7 - offset: 0,0 - index: -1 -body-normal.body-id-02-aquatic-flipx - rotate: false - xy: 883,2011 - size: 5,7 - orig: 5,7 + xy: 179,3100 + size: 3,4 + orig: 3,4 offset: 0,0 index: -1 body-normal.body-id-08-reptile rotate: false - xy: 883,2045 - size: 5,7 - orig: 5,7 - offset: 0,0 - index: -1 -body-normal.body-id-02-bird-flipx - rotate: false - xy: 883,2072 - size: 5,7 - orig: 5,7 + xy: 179,3122 + size: 3,4 + orig: 3,4 offset: 0,0 index: -1 body-normal.body-id-06-beast rotate: false - xy: 883,2099 - size: 5,7 - orig: 5,7 + xy: 179,3144 + size: 3,4 + orig: 3,4 offset: 0,0 index: -1 body-normal.body-id-09-aquatic rotate: false - xy: 883,2126 - size: 5,7 - orig: 5,7 + xy: 179,3166 + size: 3,4 + orig: 3,4 offset: 0,0 index: -1 body-normal.body-id-08-bird-flipx rotate: false - xy: 883,2153 - size: 5,7 - orig: 5,7 + xy: 179,3188 + size: 3,4 + orig: 3,4 offset: 0,0 index: -1 body-normal.body-id-09-plant rotate: false - xy: 883,2180 - size: 5,7 - orig: 5,7 + xy: 186,3210 + size: 3,4 + orig: 3,4 offset: 0,0 index: -1 body-normal.body-id-05-plant-flipx rotate: false - xy: 883,2207 - size: 5,7 - orig: 5,7 - offset: 0,0 - index: -1 -body-normal.body-id-02-reptile - rotate: false - xy: 864,2374 - size: 5,7 - orig: 5,7 + xy: 186,3232 + size: 3,4 + orig: 3,4 offset: 0,0 index: -1 body-normal.body-id-07-bird-flipx rotate: false - xy: 864,2401 - size: 5,7 - orig: 5,7 + xy: 186,3254 + size: 3,4 + orig: 3,4 offset: 0,0 index: -1 body-normal.body-id-08-reptile-flipx rotate: false - xy: 864,2428 - size: 5,7 - orig: 5,7 + xy: 186,3276 + size: 3,4 + orig: 3,4 offset: 0,0 index: -1 body-normal.body-id-05-aquatic-flipx rotate: false - xy: 880,2817 - size: 5,7 - orig: 5,7 + xy: 186,3298 + size: 3,4 + orig: 3,4 offset: 0,0 index: -1 body-normal.body-id-07-reptile rotate: false - xy: 880,2844 - size: 5,7 - orig: 5,7 + xy: 186,3320 + size: 3,4 + orig: 3,4 offset: 0,0 index: -1 body-normal.body-id-09-bug-flipx rotate: false - xy: 880,2871 - size: 5,7 - orig: 5,7 + xy: 186,3342 + size: 3,4 + orig: 3,4 offset: 0,0 index: -1 body-normal.body-id-06-bird-flipx rotate: false - xy: 880,2898 - size: 5,7 - orig: 5,7 + xy: 185,3559 + size: 3,4 + orig: 3,4 offset: 0,0 index: -1 body-normal.body-id-05-aquatic rotate: false - xy: 880,2925 - size: 5,7 - orig: 5,7 - offset: 0,0 - index: -1 -body-normal.body-id-02-plant-flipx - rotate: false - xy: 880,2952 - size: 5,7 - orig: 5,7 + xy: 185,3581 + size: 3,4 + orig: 3,4 offset: 0,0 index: -1 body-normal.body-id-05-bird rotate: false - xy: 880,2979 - size: 5,7 - orig: 5,7 - offset: 0,0 - index: -1 -body-normal.body-id-02-plant - rotate: false - xy: 864,3012 - size: 5,7 - orig: 5,7 + xy: 185,3603 + size: 3,4 + orig: 3,4 offset: 0,0 index: -1 body-normal.body-id-07-beast rotate: false - xy: 864,3039 - size: 5,7 - orig: 5,7 + xy: 185,3625 + size: 3,4 + orig: 3,4 offset: 0,0 index: -1 body-normal.body-id-09-reptile-flipx rotate: false - xy: 864,3066 - size: 5,7 - orig: 5,7 + xy: 185,3647 + size: 3,4 + orig: 3,4 offset: 0,0 index: -1 body-normal.body-id-05-bug rotate: false - xy: 864,3093 - size: 5,7 - orig: 5,7 + xy: 185,3669 + size: 3,4 + orig: 3,4 offset: 0,0 index: -1 body-normal.body-id-09-bird-flipx rotate: false - xy: 864,3120 - size: 5,7 - orig: 5,7 - offset: 0,0 - index: -1 -body-normal.body-id-a-03 - rotate: false - xy: 864,3147 - size: 4,7 - orig: 4,7 + xy: 185,3691 + size: 3,4 + orig: 3,4 offset: 0,0 index: -1 -body-normal.body-id-c-03 +body-normal.body-id-c-04 rotate: false - xy: 864,3147 - size: 4,7 - orig: 4,7 + xy: 199,2843 + size: 2,5 + orig: 2,5 offset: 0,0 index: -1 -body-normal.body-id-e-03 +body-normal.body-id-a-04 rotate: false - xy: 864,3147 - size: 4,7 - orig: 4,7 + xy: 199,2843 + size: 2,5 + orig: 2,5 offset: 0,0 index: -1 -body-normal.body-id-b-03 +body-normal.body-id-e-04 rotate: false - xy: 864,3147 - size: 4,7 - orig: 4,7 + xy: 199,2843 + size: 2,5 + orig: 2,5 offset: 0,0 index: -1 -body-normal.body-id-f-03 +body-normal.body-id-b-04 rotate: false - xy: 864,3147 - size: 4,7 - orig: 4,7 + xy: 199,2843 + size: 2,5 + orig: 2,5 offset: 0,0 index: -1 -body-normal.body-id-d-03 +body-normal.body-id-d-04 rotate: false - xy: 864,3147 - size: 4,7 - orig: 4,7 + xy: 199,2843 + size: 2,5 + orig: 2,5 offset: 0,0 index: -1 -body-normal.body-id-c-04 +body-normal.body-id-f-04 rotate: false - xy: 888,3147 - size: 4,7 - orig: 4,7 + xy: 199,2843 + size: 2,5 + orig: 2,5 offset: 0,0 index: -1 -body-normal.body-id-a-04 +body-normal.body-id-a-01 rotate: false - xy: 888,3147 - size: 4,7 - orig: 4,7 + xy: 187,3727 + size: 2,5 + orig: 2,5 offset: 0,0 index: -1 -body-normal.body-id-e-04 +body-normal.body-id-c-01 rotate: false - xy: 888,3147 - size: 4,7 - orig: 4,7 + xy: 187,3727 + size: 2,5 + orig: 2,5 offset: 0,0 index: -1 -body-normal.body-id-b-04 +body-normal.body-id-e-01 rotate: false - xy: 888,3147 - size: 4,7 - orig: 4,7 + xy: 187,3727 + size: 2,5 + orig: 2,5 offset: 0,0 index: -1 -body-normal.body-id-d-04 +body-normal.body-id-b-01 rotate: false - xy: 888,3147 - size: 4,7 - orig: 4,7 + xy: 187,3727 + size: 2,5 + orig: 2,5 offset: 0,0 index: -1 -body-normal.body-id-f-04 +body-normal.body-id-f-01 rotate: false - xy: 888,3147 - size: 4,7 - orig: 4,7 + xy: 187,3727 + size: 2,5 + orig: 2,5 offset: 0,0 index: -1 -body-normal.body-id-04-beast +body-normal.body-id-d-01 rotate: false - xy: 864,3174 - size: 4,7 - orig: 4,7 + xy: 187,3727 + size: 2,5 + orig: 2,5 offset: 0,0 index: -1 -body-normal.body-id-04-reptile-flipx +body-normal.body-id-01-bird rotate: false - xy: 888,3174 - size: 4,7 - orig: 4,7 + xy: 187,3750 + size: 2,5 + orig: 2,5 offset: 0,0 index: -1 -body-normal.body-id-03-bug +body-normal.body-id-01-reptile-flipx rotate: false - xy: 882,3224 - size: 4,7 - orig: 4,7 + xy: 187,3773 + size: 2,5 + orig: 2,5 offset: 0,0 index: -1 -body-normal.body-id-03-beast +body-normal.body-id-01-beast-flipx rotate: false - xy: 882,3251 - size: 4,7 - orig: 4,7 + xy: 187,3796 + size: 2,5 + orig: 2,5 offset: 0,0 index: -1 -body-normal.body-id-04-aquatic +body-normal.body-id-04-beast rotate: false - xy: 882,3278 - size: 4,7 - orig: 4,7 + xy: 187,3819 + size: 2,5 + orig: 2,5 offset: 0,0 index: -1 -body-normal.body-id-03-reptile-flipx +body-normal.body-id-01-bug rotate: false - xy: 882,3305 - size: 4,7 - orig: 4,7 + xy: 187,3842 + size: 2,5 + orig: 2,5 offset: 0,0 index: -1 -body-normal.body-id-03-reptile +body-normal.body-id-01-plant rotate: false - xy: 882,3332 - size: 4,7 - orig: 4,7 + xy: 187,3865 + size: 2,5 + orig: 2,5 offset: 0,0 index: -1 -body-normal.body-id-03-bird-flipx +body-normal.body-id-04-reptile-flipx rotate: false - xy: 882,3359 - size: 4,7 - orig: 4,7 + xy: 150,4067 + size: 2,5 + orig: 2,5 offset: 0,0 index: -1 -body-normal.body-id-03-plant-flipx +body-normal.body-id-01-plant-flipx rotate: false - xy: 865,3411 - size: 4,7 - orig: 4,7 + xy: 178,3893 + size: 2,5 + orig: 2,5 offset: 0,0 index: -1 -body-normal.body-id-03-aquatic-flipx +body-normal.body-id-01-bug-flipx rotate: false - xy: 865,3438 - size: 4,7 - orig: 4,7 + xy: 198,3893 + size: 2,5 + orig: 2,5 offset: 0,0 index: -1 -body-normal.body-id-04-bird-flipx +body-normal.body-id-04-aquatic rotate: false - xy: 865,3465 - size: 4,7 - orig: 4,7 + xy: 178,3916 + size: 2,5 + orig: 2,5 offset: 0,0 index: -1 -body-normal.body-id-03-bird +body-normal.body-id-01-aquatic rotate: false - xy: 865,3492 - size: 4,7 - orig: 4,7 + xy: 198,3916 + size: 2,5 + orig: 2,5 offset: 0,0 index: -1 -body-normal.body-id-03-bug-flipx +body-normal.body-id-04-bird-flipx rotate: false - xy: 865,3519 - size: 4,7 - orig: 4,7 + xy: 178,3939 + size: 2,5 + orig: 2,5 offset: 0,0 index: -1 body-normal.body-id-04-reptile rotate: false - xy: 865,3546 - size: 4,7 - orig: 4,7 + xy: 198,3939 + size: 2,5 + orig: 2,5 offset: 0,0 index: -1 body-normal.body-id-04-bug-flipx rotate: false - xy: 865,3573 - size: 4,7 - orig: 4,7 - offset: 0,0 - index: -1 -body-normal.body-id-03-aquatic - rotate: false - xy: 878,3776 - size: 4,7 - orig: 4,7 + xy: 178,3962 + size: 2,5 + orig: 2,5 offset: 0,0 index: -1 -body-normal.body-id-03-plant +body-normal.body-id-01-reptile rotate: false - xy: 878,3803 - size: 4,7 - orig: 4,7 + xy: 198,3962 + size: 2,5 + orig: 2,5 offset: 0,0 index: -1 body-normal.body-id-04-plant-flipx rotate: false - xy: 878,3830 - size: 4,7 - orig: 4,7 + xy: 178,3985 + size: 2,5 + orig: 2,5 offset: 0,0 index: -1 body-normal.body-id-04-beast-flipx rotate: false - xy: 878,3857 - size: 4,7 - orig: 4,7 + xy: 198,3985 + size: 2,5 + orig: 2,5 offset: 0,0 index: -1 body-normal.body-id-04-aquatic-flipx rotate: false - xy: 878,3884 - size: 4,7 - orig: 4,7 + xy: 178,4008 + size: 2,5 + orig: 2,5 offset: 0,0 index: -1 body-normal.body-id-04-bug rotate: false - xy: 878,3911 - size: 4,7 - orig: 4,7 + xy: 198,4008 + size: 2,5 + orig: 2,5 + offset: 0,0 + index: -1 +body-normal.body-id-01-aquatic-flipx + rotate: false + xy: 178,4031 + size: 2,5 + orig: 2,5 + offset: 0,0 + index: -1 +body-normal.body-id-01-beast + rotate: false + xy: 198,4031 + size: 2,5 + orig: 2,5 offset: 0,0 index: -1 body-normal.body-id-04-plant rotate: false - xy: 1947,1000 - size: 4,7 - orig: 4,7 + xy: 178,4054 + size: 2,5 + orig: 2,5 offset: 0,0 index: -1 -body-normal.body-id-04-bird +body-normal.body-id-01-bird-flipx rotate: false - xy: 1971,1000 - size: 4,7 - orig: 4,7 + xy: 198,4054 + size: 2,5 + orig: 2,5 offset: 0,0 index: -1 -body-normal.body-id-03-beast-flipx +body-normal.body-id-04-bird rotate: false - xy: 1995,1000 - size: 4,7 - orig: 4,7 + xy: 178,4077 + size: 2,5 + orig: 2,5 offset: 0,0 index: -1 -body-normal.body-id-a-01 +body-normal.body-id-a-03 rotate: false - xy: 889,2428 - size: 3,8 - orig: 3,8 + xy: 199,2733 + size: 2,4 + orig: 2,4 offset: 0,0 index: -1 -body-normal.body-id-c-01 +body-normal.body-id-c-03 rotate: false - xy: 889,2428 - size: 3,8 - orig: 3,8 + xy: 199,2733 + size: 2,4 + orig: 2,4 offset: 0,0 index: -1 -body-normal.body-id-e-01 +body-normal.body-id-e-03 rotate: false - xy: 889,2428 - size: 3,8 - orig: 3,8 + xy: 199,2733 + size: 2,4 + orig: 2,4 offset: 0,0 index: -1 -body-normal.body-id-b-01 +body-normal.body-id-b-03 rotate: false - xy: 889,2428 - size: 3,8 - orig: 3,8 + xy: 199,2733 + size: 2,4 + orig: 2,4 offset: 0,0 index: -1 -body-normal.body-id-f-01 +body-normal.body-id-f-03 rotate: false - xy: 889,2428 - size: 3,8 - orig: 3,8 + xy: 199,2733 + size: 2,4 + orig: 2,4 offset: 0,0 index: -1 -body-normal.body-id-d-01 +body-normal.body-id-d-03 rotate: false - xy: 889,2428 - size: 3,8 - orig: 3,8 + xy: 199,2733 + size: 2,4 + orig: 2,4 offset: 0,0 index: -1 -body-normal.body-id-01-bird +body-normal.body-id-03-bug rotate: false - xy: 889,3573 - size: 3,8 - orig: 3,8 + xy: 199,2755 + size: 2,4 + orig: 2,4 offset: 0,0 index: -1 -body-normal.body-id-01-reptile-flipx +body-normal.body-id-03-beast rotate: false - xy: 2019,1000 - size: 3,8 - orig: 3,8 + xy: 199,2777 + size: 2,4 + orig: 2,4 offset: 0,0 index: -1 -body-normal.body-id-01-beast-flipx +body-normal.body-id-03-reptile-flipx rotate: false - xy: 2042,1000 - size: 3,8 - orig: 3,8 + xy: 199,2799 + size: 2,4 + orig: 2,4 offset: 0,0 index: -1 -body-normal.body-id-01-bug +body-normal.body-id-03-reptile rotate: false - xy: 2065,1000 - size: 3,8 - orig: 3,8 + xy: 199,2821 + size: 2,4 + orig: 2,4 offset: 0,0 index: -1 -body-normal.body-id-01-plant +body-normal.body-id-03-bird-flipx rotate: false - xy: 2088,1000 - size: 3,8 - orig: 3,8 + xy: 198,4077 + size: 2,4 + orig: 2,4 offset: 0,0 index: -1 -body-normal.body-id-01-plant-flipx +body-normal.body-id-03-plant-flipx rotate: false - xy: 2111,1000 - size: 3,8 - orig: 3,8 + xy: 395,807 + size: 2,4 + orig: 2,4 offset: 0,0 index: -1 -body-normal.body-id-01-bug-flipx +body-normal.body-id-03-aquatic-flipx rotate: false - xy: 2134,1000 - size: 3,8 - orig: 3,8 + xy: 395,829 + size: 2,4 + orig: 2,4 offset: 0,0 index: -1 -body-normal.body-id-01-aquatic +body-normal.body-id-03-bird rotate: false - xy: 2157,1000 - size: 3,8 - orig: 3,8 + xy: 395,851 + size: 2,4 + orig: 2,4 offset: 0,0 index: -1 -body-normal.body-id-01-reptile +body-normal.body-id-03-bug-flipx rotate: false - xy: 2197,1000 - size: 3,8 - orig: 3,8 + xy: 395,873 + size: 2,4 + orig: 2,4 offset: 0,0 index: -1 -body-normal.body-id-01-aquatic-flipx +body-normal.body-id-03-aquatic rotate: false - xy: 2220,1000 - size: 3,8 - orig: 3,8 + xy: 395,895 + size: 2,4 + orig: 2,4 offset: 0,0 index: -1 -body-normal.body-id-01-beast +body-normal.body-id-03-plant rotate: false - xy: 2243,1000 - size: 3,8 - orig: 3,8 + xy: 395,917 + size: 2,4 + orig: 2,4 offset: 0,0 index: -1 -body-normal.body-id-01-bird-flipx +body-normal.body-id-03-beast-flipx rotate: false - xy: 2266,1000 - size: 3,8 - orig: 3,8 + xy: 395,939 + size: 2,4 + orig: 2,4 offset: 0,0 index: -1 diff --git a/Assets/AxieInfinity/AxieMixerUnity/Resources/axie-2d-v3-stuff/atlas-single/axie-2d-v3-stuff_color.png b/Assets/AxieInfinity/AxieMixerUnity/Resources/axie-2d-v3-stuff/atlas-single/axie-2d-v3-stuff_color.png index be87c30..864cb38 100644 Binary files a/Assets/AxieInfinity/AxieMixerUnity/Resources/axie-2d-v3-stuff/atlas-single/axie-2d-v3-stuff_color.png and b/Assets/AxieInfinity/AxieMixerUnity/Resources/axie-2d-v3-stuff/atlas-single/axie-2d-v3-stuff_color.png differ diff --git a/Assets/AxieInfinity/AxieMixerUnity/Resources/axie-2d-v3-stuff/atlas-single/axie-2d-v3-stuff_line.png b/Assets/AxieInfinity/AxieMixerUnity/Resources/axie-2d-v3-stuff/atlas-single/axie-2d-v3-stuff_line.png index e400f58..30e9c7d 100644 Binary files a/Assets/AxieInfinity/AxieMixerUnity/Resources/axie-2d-v3-stuff/atlas-single/axie-2d-v3-stuff_line.png and b/Assets/AxieInfinity/AxieMixerUnity/Resources/axie-2d-v3-stuff/atlas-single/axie-2d-v3-stuff_line.png differ diff --git a/Assets/AxieInfinity/AxieMixerUnity/Resources/axie-2d-v3-stuff/atlas-single/axie-2d-v3-stuff_splat0.png b/Assets/AxieInfinity/AxieMixerUnity/Resources/axie-2d-v3-stuff/atlas-single/axie-2d-v3-stuff_splat0.png index d3f818b..d875940 100644 Binary files a/Assets/AxieInfinity/AxieMixerUnity/Resources/axie-2d-v3-stuff/atlas-single/axie-2d-v3-stuff_splat0.png and b/Assets/AxieInfinity/AxieMixerUnity/Resources/axie-2d-v3-stuff/atlas-single/axie-2d-v3-stuff_splat0.png differ diff --git a/Assets/AxieInfinity/AxieMixerUnity/Resources/axie-2d-v3-stuff/atlas-single/axie-2d-v3-stuff_splat1.png b/Assets/AxieInfinity/AxieMixerUnity/Resources/axie-2d-v3-stuff/atlas-single/axie-2d-v3-stuff_splat1.png index eadf608..eece183 100644 Binary files a/Assets/AxieInfinity/AxieMixerUnity/Resources/axie-2d-v3-stuff/atlas-single/axie-2d-v3-stuff_splat1.png and b/Assets/AxieInfinity/AxieMixerUnity/Resources/axie-2d-v3-stuff/atlas-single/axie-2d-v3-stuff_splat1.png differ diff --git a/Assets/AxieInfinity/AxieMixerUnity/Resources/axie-2d-v3-stuff/axie-2d-v3-stuff-animations.json b/Assets/AxieInfinity/AxieMixerUnity/Resources/axie-2d-v3-stuff/axie-2d-v3-stuff-animations.json index 046e4f5..3a0e6f7 100644 --- a/Assets/AxieInfinity/AxieMixerUnity/Resources/axie-2d-v3-stuff/axie-2d-v3-stuff-animations.json +++ b/Assets/AxieInfinity/AxieMixerUnity/Resources/axie-2d-v3-stuff/axie-2d-v3-stuff-animations.json @@ -2,94 +2,186 @@ "version": 1, "items": { "header": [ - {"name": "activity/appear", "crcKeys": ["1023093953", "3921179016", "4036940331", "1639814451", "2516301341"], "defaultKey": "1023093953"}, - {"name": "activity/bath", "crcKeys": ["3305387968", "1257499719", "886720603", "3188102483"], "defaultKey": "3305387968"}, - {"name": "attack/ranged/cast-fly", "crcKeys": ["4180526371", "3722823556", "1577594643", "3043664647", "2557998295", "3451796327", "640070672"], "defaultKey": "4180526371"}, - {"name": "attack/ranged/cast-high", "crcKeys": ["164191126", "3577703416", "3051257523", "117147712", "260375190", "2081555660", "3530118163"], "defaultKey": "164191126"}, - {"name": "attack/ranged/cast-low", "crcKeys": ["198813017", "1793942137", "983904028", "66525173", "1610371879", "4283524375", "2870090226"], "defaultKey": "198813017"}, - {"name": "attack/ranged/cast-multi", "crcKeys": ["151119", "2051614957", "229216978", "305611055", "2979763470"], "defaultKey": "151119"}, + {"name": "activity/appear", "crcKeys": ["3921179016", "1023093953", "1147301273", "4036940331", "1639814451", "2516301341", "2709386226", "2975056588"], "defaultKey": "1023093953"}, + {"name": "activity/bath", "crcKeys": ["3305387968", "280689314", "1257499719", "886720603", "3188102483", "4269852312"], "defaultKey": "3305387968"}, + { + "name": "attack/ranged/cast-fly", + "crcKeys": ["3722823556", "4180526371", "2066226114", "3562907511", "1577594643", "3043664647", "2557998295", "3451796327", "640070672", "3875510864", "1964095857"], + "defaultKey": "4180526371" + }, + { + "name": "attack/ranged/cast-high", + "crcKeys": ["3577703416", "164191126", "1602569476", "2919275767", "3051257523", "117147712", "260375190", "2081555660", "3530118163", "3824431262", "2755238029"], + "defaultKey": "164191126" + }, + { + "name": "attack/ranged/cast-low", + "crcKeys": ["1793942137", "198813017", "1656607229", "1482039890", "983904028", "66525173", "1610371879", "4283524375", "2870090226", "2316570278", "796766875"], + "defaultKey": "198813017" + }, + {"name": "attack/ranged/cast-multi", "crcKeys": ["151119", "755443278", "3763101013", "2051614957", "229216978", "305611055", "2979763470", "737684706", "2912539256"], "defaultKey": "151119"}, { "name": "attack/ranged/cast-tail", - "crcKeys": ["997902532", "3850719809", "977217026", "1843465463", "3899988824", "2283838223", "645705789", "3667073362", "3968125421", "1370524738", "1771510038"], + "crcKeys": [ + "977217026", "1843465463", "1603776742", "997902532", "194250333", "3899988824", "2874629885", "645705789", "3850719809", "2283838223", "3667073362", "3968125421", "1370524738", + "1771510038", "1153819837", "515170597" + ], "defaultKey": "1843465463" }, - {"name": "activity/eat-bite", "crcKeys": ["1137807767", "1684684533", "3200295228", "3760585416"], "defaultKey": "1137807767"}, - {"name": "activity/eat-chew", "crcKeys": ["1988236421", "2571197086", "2711256467", "447085734", "3987941875"], "defaultKey": "1988236421"}, - {"name": "activity/entrance", "crcKeys": ["3768378365", "2809240631", "629069415", "3632603752"], "defaultKey": "3768378365"}, - {"name": "defense/evade", "crcKeys": ["1735454995", "180682469", "2561112030", "3676560492", "1756453214"], "defaultKey": "1735454995"}, - {"name": "activity/evolve", "crcKeys": ["649307630", "3760369471", "3241199930", "413498100"], "defaultKey": "649307630"}, - {"name": "battle/get-buff", "crcKeys": ["1455190363", "2993060391", "2742360208", "922484181", "984729030", "545324325", "3957953988"], "defaultKey": "1455190363"}, - {"name": "battle/get-debuff", "crcKeys": ["606904312", "2919546916", "2375931044", "2134002589", "2827866347", "3925968729", "336700057"], "defaultKey": "606904312"}, - {"name": "defense/hit-by-normal", "crcKeys": ["2045974966", "2695183231", "576133560", "3772948066", "2668995378", "685375493", "4129179734"], "defaultKey": "2045974966"}, - {"name": "defense/hit-by-normal-crit", "crcKeys": ["2130010601", "721863963", "2310646130", "3973892445", "858481981", "2105733975", "3123502684"], "defaultKey": "2130010601"}, - {"name": "defense/hit-by-normal-dramatic", "crcKeys": ["3823092125", "2501809037", "2525036827", "3475359579", "1175182584", "42307048", "439534949"], "defaultKey": "3823092125"}, - {"name": "defense/hit-by-ranged-attack", "crcKeys": ["2224561612", "3309952905", "3095766500", "710052842", "2632049379", "912481638", "3352800463"], "defaultKey": "2224561612"}, - {"name": "defense/hit-with-shield", "crcKeys": ["390714790", "228539860", "3945863285", "1910291818", "2044221994", "2842428225", "3911401836"], "defaultKey": "390714790"}, - {"name": "attack/melee/horn-gore", "crcKeys": ["1327954218", "3177102970", "2469511866", "431191473", "2912205675", "339640524", "2824479785"], "defaultKey": "1327954218"}, - {"name": "attack/melee/mouth-bite", "crcKeys": ["2237748264", "1912445836", "2815381870", "2133555169", "3099909215", "1963086355", "137987643"], "defaultKey": "2237748264"}, - {"name": "action/move-back", "crcKeys": ["3766271173", "1919486595", "1829044875", "3779315145", "2980215034"], "defaultKey": "3766271173"}, - {"name": "action/move-forward", "crcKeys": ["2945160014", "334169668", "2128743770", "1392842846", "160094506"], "defaultKey": "2945160014"}, + {"name": "activity/eat-bite", "crcKeys": ["1137807767", "2608588942", "1684684533", "3200295228", "3760585416", "1085337278", "1563829869"], "defaultKey": "1137807767"}, + {"name": "activity/eat-chew", "crcKeys": ["2571197086", "1988236421", "675090927", "2711256467", "447085734", "3987941875", "1147852503", "4174710305"], "defaultKey": "1988236421"}, + {"name": "activity/entrance", "crcKeys": ["3768378365", "813164421", "3805987248", "2809240631", "629069415", "3632603752", "20003499", "636017429"], "defaultKey": "3768378365"}, + {"name": "defense/evade", "crcKeys": ["1735454995", "832317166", "2697405811", "180682469", "2561112030", "3676560492", "1756453214", "4009219861", "2335495519"], "defaultKey": "1735454995"}, + {"name": "activity/evolve", "crcKeys": ["649307630", "2441292734", "3760369471", "3241199930", "413498100", "678360058", "3193680296"], "defaultKey": "649307630"}, + { + "name": "battle/get-buff", + "crcKeys": ["2993060391", "1455190363", "4288170902", "2742360208", "922484181", "984729030", "545324325", "3957953988", "1928537773", "3907351690"], + "defaultKey": "1455190363" + }, + { + "name": "battle/get-debuff", + "crcKeys": ["2919546916", "606904312", "333978181", "2375931044", "2134002589", "2827866347", "3925968729", "336700057", "4120709906", "503738134"], + "defaultKey": "606904312" + }, + { + "name": "defense/hit-by-normal", + "crcKeys": ["2695183231", "2045974966", "2330259298", "576133560", "3772948066", "2668995378", "685375493", "4129179734", "4178707913", "978716858"], + "defaultKey": "2045974966" + }, + { + "name": "defense/hit-by-normal-crit", + "crcKeys": ["721863963", "2130010601", "2907251534", "2310646130", "3973892445", "858481981", "2105733975", "3123502684", "2811142217", "3941256645"], + "defaultKey": "2130010601" + }, + { + "name": "defense/hit-by-normal-dramatic", + "crcKeys": ["2501809037", "3823092125", "3476801918", "2525036827", "3475359579", "1175182584", "42307048", "439534949", "2896587887", "2527908154"], + "defaultKey": "3823092125" + }, + { + "name": "defense/hit-by-ranged-attack", + "crcKeys": ["3309952905", "2224561612", "3241238139", "3095766500", "710052842", "2632049379", "912481638", "3352800463", "1181032275", "2207699263"], + "defaultKey": "2224561612" + }, + { + "name": "defense/hit-with-shield", + "crcKeys": ["228539860", "390714790", "3504379809", "236468041", "3945863285", "1910291818", "2044221994", "2842428225", "3911401836", "483383159", "3929030741"], + "defaultKey": "390714790" + }, + { + "name": "attack/melee/horn-gore", + "crcKeys": ["3177102970", "1327954218", "356425390", "3312470590", "2469511866", "431191473", "2912205675", "339640524", "2824479785", "578977380", "672810168"], + "defaultKey": "1327954218" + }, + { + "name": "attack/melee/mouth-bite", + "crcKeys": ["1912445836", "2237748264", "3430008503", "1941113513", "2815381870", "2133555169", "3099909215", "1963086355", "137987643", "52958864", "103880736"], + "defaultKey": "2237748264" + }, + {"name": "action/move-back", "crcKeys": ["3766271173", "3483963258", "1919486595", "1829044875", "3779315145", "2980215034"], "defaultKey": "3766271173"}, + {"name": "action/move-forward", "crcKeys": ["2945160014", "1819067675", "334169668", "2128743770", "1392842846", "160094506"], "defaultKey": "2945160014"}, { "name": "attack/melee/multi-attack", - "crcKeys": ["905926802", "3774600630", "2627626635", "3861365989", "160342495", "2770379418", "3353545678", "2847851775", "1873246458"], + "crcKeys": ["2627626635", "905926802", "4202784040", "3861365989", "3774600630", "160342495", "2770379418", "3353545678", "2847851775", "1873246458", "561520605", "3245081493"], "defaultKey": "905926802" }, { "name": "action/idle/normal", - "crcKeys": ["1659336865", "3178494426", "1384528274", "1749937284", "928719411", "25318063", "520076436", "568166623", "2717938682", "1278187577", "1279050865", "3518390074"], + "crcKeys": [ + "1115875647", "568166623", "1659336865", "1009184389", "2717938682", "1749937284", "25318063", "3178494426", "1384528274", "928719411", "520076436", "1278187577", "1279050865", "3518390074", + "2102510868", "2865608434" + ], "defaultKey": "1659336865" }, - {"name": "attack/melee/normal-attack", "crcKeys": ["3305373483", "2954738379", "1326541922", "3958849146", "2307702827", "4041893364"], "defaultKey": "3305373483"}, - {"name": "activity/prepare", "crcKeys": ["405864717", "3475256849", "3156742502", "3515345276"], "defaultKey": "405864717"}, - {"name": "action/idle/random-01", "crcKeys": ["554401889", "880116349", "3774510935", "2880388010", "2112863967", "2684952679", "4102515873", "3130386156"], "defaultKey": "554401889"}, + { + "name": "attack/melee/normal-attack", + "crcKeys": ["3305373483", "563567727", "2954738379", "1326541922", "3958849146", "2307702827", "4041893364", "125468891", "3802408031"], + "defaultKey": "3305373483" + }, + {"name": "activity/prepare", "crcKeys": ["405864717", "1608256657", "3475256849", "3156742502", "3515345276", "1435906176", "1112993905"], "defaultKey": "405864717"}, + { + "name": "action/idle/random-01", + "crcKeys": ["880116349", "554401889", "2828827010", "2880388010", "3774510935", "2112863967", "2684952679", "4102515873", "3130386156", "3694724283", "4074297404"], + "defaultKey": "554401889" + }, { "name": "action/idle/random-02", - "crcKeys": ["1085666627", "3634120758", "4155096617", "1001093024", "3888196768", "3087086321", "3902657344", "2668998474", "3151577093", "2106252256", "4047015022", "2103635194"], + "crcKeys": [ + "2837464254", "3151577093", "1001093024", "2758931518", "1085666627", "1873947245", "3888196768", "3902657344", "3634120758", "4155096617", "3087086321", "2668998474", "2106252256", + "4047015022", "2103635194", "1366930187", "3457159700" + ], "defaultKey": "1001093024" }, - {"name": "action/idle/random-03", "crcKeys": ["2021333900", "2146505268", "1540593521", "863131580", "2939918937", "1772223510"], "defaultKey": "2021333900"}, - {"name": "action/idle/random-04", "crcKeys": ["1003789695", "3708365579", "1912966198", "3268849333", "620315410", "1055348841", "488301700"], "defaultKey": "1003789695"}, + { + "name": "action/idle/random-03", + "crcKeys": ["2146505268", "2021333900", "3181009532", "1540593521", "863131580", "2939918937", "1772223510", "3404907200", "1228132142"], + "defaultKey": "2021333900" + }, + { + "name": "action/idle/random-04", + "crcKeys": ["3708365579", "1003789695", "986957450", "1082465462", "1912966198", "3268849333", "620315410", "1055348841", "488301700", "1861976481", "1416671293"], + "defaultKey": "1003789695" + }, {"name": "action/idle/random-05", "crcKeys": ["2745614147", "423222795", "765106252"], "defaultKey": "2745614147"}, { "name": "action/run", - "crcKeys": ["1438840721", "3942433225", "2297652214", "3858829480", "980943882", "574696387", "378584637", "4243571983", "3746342726", "503804557"], + "crcKeys": ["2297652214", "378584637", "1438840721", "122256817", "3858829480", "3942433225", "980943882", "574696387", "4243571983", "3746342726", "503804557", "1751413398"], "defaultKey": "1438840721" }, - {"name": "draft/run-origin", "crcKeys": ["3577885069", "237238075", "1973997258", "3947527336", "1255318387", "2432345616", "2477462439", "4275354805"], "defaultKey": "3577885069"}, - {"name": "attack/melee/shrimp", "crcKeys": ["3833448733", "244230390", "4163974862", "4155075159", "1982530335", "2456423644", "689651440"], "defaultKey": "3833448733"}, - {"name": "activity/sleep", "crcKeys": ["100562494", "2481023416", "2980573062", "3386570360"], "defaultKey": "100562494"}, - {"name": "attack/melee/tail-multi-slap", "crcKeys": ["3317139533", "2905793214", "1930192816", "4076098330", "323348469", "3650044337", "2919733098"], "defaultKey": "3317139533"}, - {"name": "attack/melee/tail-roll", "crcKeys": ["3108617565", "3678751400", "1797279783", "1934032146", "2952434131", "3237083422", "3361002765"], "defaultKey": "3108617565"}, - {"name": "attack/melee/tail-smash", "crcKeys": ["519942130", "2662497262", "2686448266", "1747338625", "3155257148", "3603559322", "2626719915"], "defaultKey": "519942130"}, - {"name": "attack/melee/tail-thrash", "crcKeys": ["628713175", "2102433122", "3253321365", "882476411", "2338117540", "2168073331", "660880126"], "defaultKey": "628713175"}, - {"name": "activity/victory-pose-back-flip", "crcKeys": ["2227634241", "4217013558", "2870186096", "2029961928"], "defaultKey": "2227634241"}, + { + "name": "draft/run-origin", "crcKeys": ["1973997258", "3577885069", "3633791092", "3947527336", "237238075", "1255318387", "2432345616", "2477462439", "4275354805"], "defaultKey": "3577885069" + }, + { + "name": "attack/melee/shrimp", + "crcKeys": ["244230390", "3833448733", "1739135238", "3866597167", "4163974862", "4155075159", "1982530335", "2456423644", "689651440", "2166084648", "4284047619"], + "defaultKey": "3833448733" + }, + {"name": "activity/sleep", "crcKeys": ["100562494", "2678688179", "2481023416", "2980573062", "3386570360", "3292250615"], "defaultKey": "100562494"}, + { + "name": "attack/melee/tail-multi-slap", + "crcKeys": ["2905793214", "3317139533", "2498186781", "741810204", "1930192816", "4076098330", "323348469", "3650044337", "2919733098", "3424109784", "4247697367"], + "defaultKey": "3317139533" + }, + { + "name": "attack/melee/tail-roll", + "crcKeys": ["3678751400", "3108617565", "3944557328", "2809739953", "1797279783", "1934032146", "2952434131", "3237083422", "3361002765", "188677644", "3634591874"], + "defaultKey": "3108617565" + }, + { + "name": "attack/melee/tail-smash", + "crcKeys": ["2662497262", "519942130", "70462377", "2641486435", "2686448266", "1747338625", "3155257148", "3603559322", "2626719915", "185835880", "3663734631"], + "defaultKey": "519942130" + }, + { + "name": "attack/melee/tail-thrash", + "crcKeys": ["2102433122", "628713175", "319146610", "1454509456", "3253321365", "882476411", "2338117540", "2168073331", "660880126", "4284926080", "1213410473"], + "defaultKey": "628713175" + }, + {"name": "activity/victory-pose-back-flip", "crcKeys": ["2227634241", "1893268900", "4217013558", "2870186096", "2029961928"], "defaultKey": "2227634241"}, {"name": "action/mix/ear-animation", "crcKeys": ["4086061935", "901954966"], "defaultKey": "4086061935"}, {"name": "action/mix/eyes-animation", "crcKeys": ["3799301307"], "defaultKey": "3799301307"}, {"name": "action/mix/normal-mouth-animation", "crcKeys": ["1178295570"], "defaultKey": "1178295570"}, {"name": "action/mix/body-animation", "crcKeys": ["1566344788"], "defaultKey": "1566344788"} ], "animations": { - "1023093953": { + "3921179016": { "slots": { - "eyes": {"attachment": [{"name": "eyes-shut"}, {"time": 0.2, "name": "eyes"}]}, "mouth": {"attachment": [{"time": 0.0333, "name": "mouth-open"}, {"time": 0.2167, "name": "mouth"}]} + "eyes": {"attachment": [{"name": "eyes-shut"}, {"time": 0.2167, "name": "eyes"}]}, "mouth": {"attachment": [{"time": 0.0333, "name": "mouth-open"}, {"time": 0.2333, "name": "mouth"}]} }, "bones": { "@pivot-back": { - "rotate": [ - {"angle": -8.23, "curve": "stepped"}, {"time": 0.1667, "angle": -8.23, "curve": 0.306, "c4": 0.8}, {"time": 0.3333, "angle": 5.43, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5} - ], - "translate": [{"y": -0.04, "curve": 0, "c2": 0.3, "c3": 0.534}, {"time": 0.1667, "x": 17.97, "y": 94.25, "curve": 0.315, "c4": 0.8}, {"time": 0.3333, "y": -0.04}] + "rotate": [{"angle": -8.23, "curve": "stepped"}, {"time": 0.2333, "angle": -8.23, "curve": 0, "c2": 0.1, "c3": 0.847}, {"time": 0.4167}], + "translate": [{"x": 0.02, "y": -108.13, "curve": 0, "c2": 0.4, "c3": 0.533}, {"time": 0.1667, "x": 17.97, "y": 94.25, "curve": 0.315, "c4": 0.8}, {"time": 0.4167, "y": -0.04}] }, - "@leg-back-left": {"rotate": [{"angle": 14.26, "curve": "stepped"}, {"time": 0.2167, "angle": 14.26, "curve": 0, "c2": 0.1, "c3": 0.847}, {"time": 0.3333, "angle": -11.75}]}, - "@leg-front-left": {"rotate": [{"angle": 14.58, "curve": "stepped"}, {"time": 0.2167, "angle": 14.58, "curve": 0, "c2": 0.1, "c3": 0.847}, {"time": 0.3333, "angle": 20.14}]}, - "@leg-front-right": {"rotate": [{"angle": 12.31, "curve": "stepped"}, {"time": 0.2167, "angle": 12.31, "curve": 0, "c2": 0.1, "c3": 0.847}, {"time": 0.3333, "angle": -30.3}]}, + "@leg-back-left": {"rotate": [{"angle": 14.26, "curve": "stepped"}, {"time": 0.2333, "angle": 14.26, "curve": 0, "c2": 0.1, "c3": 0.847}, {"time": 0.4167, "angle": -11.75}]}, + "@leg-front-left": {"rotate": [{"angle": 14.58, "curve": "stepped"}, {"time": 0.2333, "angle": 14.58, "curve": 0, "c2": 0.1, "c3": 0.847}, {"time": 0.4167, "angle": 20.14}]}, + "@leg-front-right": {"rotate": [{"angle": 12.31, "curve": "stepped"}, {"time": 0.2333, "angle": 12.31, "curve": 0, "c2": 0.1, "c3": 0.847}, {"time": 0.4167, "angle": -30.3}]}, "tail": { "rotate": [ - {"curve": 0, "c2": 0.6, "c3": 0.237}, {"time": 0.1667, "angle": -18.5, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "angle": 4.16, "curve": 0, "c2": 0.3, "c3": 0.54}, - {"time": 0.5} + {"angle": -18.5, "curve": "stepped"}, {"time": 0.1167, "angle": -18.5, "curve": 0, "c2": 0.1, "c3": 0.844}, {"time": 0.2667, "angle": 4.16, "curve": 0.309, "c4": 0.8}, {"time": 0.4167} ] }, - "@shadow": {"scale": [{"x": 1.3, "y": 1.3, "curve": 0, "c2": 0.4, "c3": 0.533}, {"time": 0.1667, "x": 0.9, "y": 0.9, "curve": 0.315, "c4": 0.8}, {"time": 0.3333}]} + "@shadow": {"scale": [{"x": 1.3, "y": 1.3, "curve": 0, "c2": 0.4, "c3": 0.533}, {"time": 0.1667, "x": 0.9, "y": 0.9, "curve": 0.315, "c4": 0.8}, {"time": 0.4167}]} } }, "3305387968": { @@ -145,7 +237,7 @@ } } }, - "4180526371": { + "3722823556": { "slots": { "eyes": {"attachment": [{"time": 0.05, "name": "eyes-angry"}, {"time": 0.8833, "name": "eyes"}]}, "mouth": {"attachment": [{"time": 0.05, "name": "mouth-bite"}, {"time": 0.4667, "name": "mouth-open"}, {"time": 0.75, "name": "mouth-bite"}, {"time": 0.8833, "name": "mouth"}]} @@ -169,7 +261,7 @@ }, "@leg-front-right": { "translate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": -1.07, "y": -20.09, "curve": 0, "c2": 0.6, "c3": 0.237}, {"time": 0.3333, "curve": "stepped"}, + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": -0.29, "y": -5.47, "curve": 0, "c2": 0.6, "c3": 0.237}, {"time": 0.3333, "curve": "stepped"}, {"time": 0.6667, "curve": 0.701, "c4": 0.5}, {"time": 0.8833, "x": -1.66, "y": -25.29, "curve": 0.461, "c3": 0.543}, {"time": 1} ] }, @@ -193,7 +285,7 @@ }, "events": [{"time": 0.4667, "name": "start-attack"}] }, - "164191126": { + "3577703416": { "slots": { "eyes": {"attachment": [{"time": 0.0833, "name": "eyes-angry"}, {"time": 0.6667, "name": "eyes-shut"}, {"time": 0.75, "name": "eyes"}]}, "mouth": {"attachment": [{"time": 0.0833, "name": "mouth-bite"}, {"time": 0.35, "name": "mouth-open"}, {"time": 0.55, "name": "mouth-bite"}, {"time": 0.75, "name": "mouth"}]} @@ -219,33 +311,33 @@ }, "leg-front-left-IK": { "translate": [ - {"time": 0.1667, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.3333, "x": 27.04, "y": 216.41, "curve": "stepped"}, {"time": 0.35, "x": 51.7, "y": 178.19, "curve": 0.384, "c3": 0.537}, - {"time": 0.5833, "x": 202.93}, {"time": 0.7, "x": 218.86, "y": 2.61, "curve": 0.315, "c4": 0.8}, {"time": 0.7667, "x": 145.27, "curve": 0.237, "c4": 0.8}, {"time": 0.9167} + {"time": 0.1667, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.3333, "x": 31.94, "y": 229.47, "curve": "stepped"}, {"time": 0.35, "x": 25.96, "y": 213.29, "curve": 0.384, "c3": 0.537}, + {"time": 0.5833, "x": 202.93}, {"time": 0.7, "x": 190.82, "curve": 0.315, "c4": 0.8}, {"time": 0.7667, "x": 145.27, "curve": 0.237, "c4": 0.8}, {"time": 0.9167} ] }, "leg-front-right-IK": { "translate": [ - {"time": 0.1667, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.3333, "x": 54.35, "y": 310.88, "curve": "stepped"}, {"time": 0.35, "x": 67.2, "y": 319.96, "curve": 0.384, "c3": 0.537}, + {"time": 0.1667, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.3333, "x": 54.35, "y": 299.4, "curve": "stepped"}, {"time": 0.35, "x": 74.27, "y": 309.43, "curve": 0.384, "c3": 0.537}, {"time": 0.5833, "x": 199.77}, {"time": 0.7, "x": 187.66, "curve": 0.315, "c4": 0.8}, {"time": 0.7667, "x": 143.69, "curve": 0.237, "c4": 0.8}, {"time": 0.9167} ] }, "leg-back-left-IK": { "translate": [ - {"time": 0.1667, "curve": 0, "c2": 0.4, "c3": 0.383}, {"time": 0.3333, "x": 50.37, "y": 150.84, "curve": "stepped"}, {"time": 0.35, "x": 34.64, "y": 81.96, "curve": 0.306, "c4": 0.8}, + {"time": 0.1667, "curve": 0, "c2": 0.4, "c3": 0.383}, {"time": 0.3333, "x": 47.11, "y": 167.16, "curve": "stepped"}, {"time": 0.35, "x": 7.09, "y": 110.08, "curve": 0.312, "c4": 0.8}, {"time": 0.5, "x": 185.62, "y": 1.08, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.7167, "x": 244.18, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.8167, "x": 108.59, "y": 18.82, "curve": 0.306, "c4": 0.8}, {"time": 0.9167} + {"time": 0.8167, "x": 141.99, "y": 26.46, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.9167} ] }, "@leg-front-right": { "translate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": -1.03, "y": -19.32}, {"time": 0.3333, "curve": "stepped"}, {"time": 0.5833, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": -0.29, "y": -5.47}, {"time": 0.3333, "curve": "stepped"}, {"time": 0.5833, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.7167, "x": 9.38, "y": 7.22}, {"time": 0.9167} ] }, "@leg-front-left": { "translate": [ {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": -0.29, "y": -5.47}, {"time": 0.3333, "curve": "stepped"}, {"time": 0.5833, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.7167, "x": 6.3, "y": -2.41}, {"time": 0.9167} + {"time": 0.7167, "x": 6.82, "y": 7.35}, {"time": 0.9167} ] }, "tail": { @@ -270,7 +362,7 @@ }, "events": [{"time": 0.35, "name": "start-attack"}] }, - "198813017": { + "1793942137": { "slots": { "eyes": {"attachment": [{"time": 0.0167, "name": "eyes-angry"}, {"time": 0.5, "name": "eyes-shut"}, {"time": 0.6667, "name": "eyes"}]}, "mouth": {"attachment": [{"time": 0.0167, "name": "mouth-bite"}, {"time": 0.3, "name": "mouth-open"}, {"time": 0.5, "name": "mouth"}]} @@ -289,42 +381,42 @@ }, "leg-back-left-IK": { "translate": [ - {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.1333, "x": 80.9, "curve": 0.161, "c3": 0.854}, {"time": 0.25, "x": 72.25, "curve": 0.25, "c4": 0.3}, - {"time": 0.3, "x": -24.7, "y": 18.44, "curve": "stepped"}, {"time": 0.4167, "x": -24.7, "y": 18.44, "curve": 0.306, "c3": 0.695}, - {"time": 0.5833, "x": -90.91, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.75} + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.1333, "x": 80.9, "curve": 0.161, "c3": 0.854}, {"time": 0.25, "x": 49.4, "curve": 0.25, "c4": 0.3}, + {"time": 0.3, "x": -1.03, "y": 44.55}, {"time": 0.4167, "x": -2.69, "y": 48.98, "curve": 0.313, "c3": 0.699}, {"time": 0.5833, "x": -90.91, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.75} ] }, "leg-front-right-IK": { "translate": [ {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 30.89, "y": 11.74, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "x": 42.9, "curve": 0.697, "c4": 0.3}, - {"time": 0.3, "x": 11.08, "y": 2.13, "curve": "stepped"}, {"time": 0.4167, "x": 11.08, "y": 2.13, "curve": 0.306, "c3": 0.695}, - {"time": 0.5833, "x": -87.1, "curve": 0, "c2": 0.17, "c3": 0.45, "c4": 0.61}, {"time": 0.6667, "x": -39.4, "curve": 0.345, "c2": 0.53, "c3": 0.751}, {"time": 0.75} + {"time": 0.3, "x": 12.5}, {"time": 0.4167, "x": 2.32, "curve": 0.313, "c3": 0.699}, {"time": 0.5833, "x": -87.1, "curve": 0, "c2": 0.17, "c3": 0.45, "c4": 0.61}, + {"time": 0.6667, "x": -39.4, "curve": 0.345, "c2": 0.53, "c3": 0.751}, {"time": 0.75} ] }, "leg-front-left-IK": { "translate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "x": 52.52, "y": 6.57, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "x": 44.73, "y": 1.83, "curve": 0.697, "c4": 0.3}, - {"time": 0.3, "x": -28.02, "y": 20.97}, {"time": 0.4167, "x": -31.01, "y": 31.21, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.5833, "x": -82.62, "curve": 0, "c2": 0.17, "c3": 0.45, "c4": 0.61}, {"time": 0.6667, "x": -55.81, "curve": 0.345, "c2": 0.53, "c3": 0.751}, {"time": 0.75} + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "x": 8.25, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "x": 42.9, "curve": 0.697, "c4": 0.3}, + {"time": 0.3, "x": -18.24, "y": 8.75}, {"time": 0.4167, "x": -13.29, "y": 27.54, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.5833, "x": -112.56, "curve": 0, "c2": 0.17, "c3": 0.45, "c4": 0.61}, {"time": 0.6667, "x": -55.81, "curve": 0.345, "c2": 0.53, "c3": 0.751}, {"time": 0.75} ] }, "@leg-front-left": { "translate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "x": -2.59, "y": -4.65, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "x": -0.61, "y": -2.94, "curve": 0.697, "c4": 0.3}, - {"time": 0.3, "x": 0.47, "y": -9.15, "curve": "stepped"}, {"time": 0.4167, "x": 0.47, "y": -9.15, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5833} + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "x": -4.8, "y": 21.17, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "x": -0.53, "y": 0.11, "curve": 0.697, "c4": 0.3}, + {"time": 0.3} ] }, "@leg-front-right": { "translate": [ - {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 4.31, "y": 11.86, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "x": -10.4, "y": -12.15, "curve": 0.697, "c4": 0.3}, - {"time": 0.3, "x": -48.45, "y": 18.12, "curve": "stepped"}, {"time": 0.4167, "x": -48.45, "y": 18.12, "curve": 0, "c2": 0.3, "c3": 0.54}, - {"time": 0.5833, "x": -10.7, "y": -18.88, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.75} + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 4.31, "y": 11.86, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "x": -10.19, "y": -4.67, "curve": 0.697, "c4": 0.3}, + {"time": 0.3, "x": -30.7, "y": 11.75, "curve": "stepped"}, {"time": 0.4167, "x": -30.7, "y": 11.75, "curve": 0, "c2": 0.3, "c3": 0.544}, + {"time": 0.5833, "x": -10.19, "y": -4.67, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.75} ] }, "@leg-back-left": { "translate": [ {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.1333, "x": 0.67, "y": -7.85, "curve": 0.161, "c3": 0.854}, {"time": 0.25, "x": 0.53, "y": -13.09, "curve": 0.25, "c4": 0.3}, - {"time": 0.3, "x": -0.22, "y": 1.34, "curve": "stepped"}, {"time": 0.4167, "x": -0.22, "y": 1.34, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.3, "x": 0.58, "y": -14.14, "curve": "stepped"}, {"time": 0.4167, "x": 0.58, "y": -14.14, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5833, "x": -0.28, "y": -7.87, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.75} ] }, @@ -396,10 +488,10 @@ }, "events": [{"time": 0.4667, "name": "start-attack"}, {"time": 0.7, "name": "start-attack"}, {"time": 0.9333, "name": "start-attack"}] }, - "997902532": { + "977217026": { "slots": { "eyes": {"attachment": [{"time": 0.0167, "name": "eyes-angry"}, {"time": 0.75, "name": "eyes-shut"}, {"time": 0.8333, "name": "eyes"}]}, - "leg-back-left": {"attachment": [{"time": 0.35, "name": "leg-back-left-long"}, {"time": 0.5833, "name": "leg-back-left"}]}, + "leg-back-left": {"attachment": [{"time": 0.35, "name": "xmas-leg-back-left-long"}, {"time": 0.5833, "name": "xmas-leg-back-left"}]}, "mouth": {"attachment": [{"time": 0.0167, "name": "mouth-bite"}, {"time": 0.2667, "name": "mouth-open"}, {"time": 0.5833, "name": "mouth-bite"}, {"time": 0.8333, "name": "mouth"}]} }, "bones": { @@ -430,47 +522,45 @@ }, "leg-back-left-IK": { "translate": [ - {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.1333, "x": 80.9, "curve": 0.161, "c3": 0.854}, {"time": 0.25, "x": 62.82, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.3333, "x": -99.34, "y": 18.56, "curve": "stepped"}, {"time": 0.35, "x": -653.9, "y": 153.81}, {"time": 0.5667, "x": -653.9, "y": 167.85, "curve": "stepped"}, + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.1333, "x": 80.9, "curve": 0.161, "c3": 0.854}, {"time": 0.25, "x": 49.4, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.3333, "x": -96.78, "y": 27.51, "curve": "stepped"}, {"time": 0.35, "x": -579.56, "y": 123.51}, {"time": 0.5667, "x": -580.76, "y": 129.52, "curve": "stepped"}, {"time": 0.5833, "x": -134.74, "curve": "stepped"}, {"time": 0.75, "x": -134.74, "curve": 0.313, "c3": 0.699}, {"time": 0.9167} ] }, "leg-front-right-IK": { "translate": [ - {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 22.35, "curve": 0.306, "c3": 0.695}, {"time": 0.25, "x": 42.9, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.3333, "x": -131.73, "y": 44.58, "curve": "stepped"}, {"time": 0.35, "x": 244.36, "y": -4.92, "curve": 0.31, "c4": 0.8}, - {"time": 0.5667, "x": 247.43, "y": -1.85, "curve": "stepped"}, {"time": 0.5833, "x": -180.48, "curve": "stepped"}, {"time": 0.75, "x": -180.48, "curve": 0.313, "c3": 0.699}, - {"time": 0.9167} + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 30.89, "y": 11.74, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "x": 42.9, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.3333, "x": -172.87, "y": 28.32, "curve": "stepped"}, {"time": 0.35, "x": 169.94, "curve": "stepped"}, {"time": 0.5667, "x": 169.94, "curve": "stepped"}, + {"time": 0.5833, "x": -180.48, "curve": "stepped"}, {"time": 0.75, "x": -180.48, "curve": 0.313, "c3": 0.699}, {"time": 0.9167} ] }, "leg-front-left-IK": { "translate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "x": 40.76, "y": 5.08, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "x": 49, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.3333, "x": -180.92, "y": 40.32, "curve": "stepped"}, {"time": 0.35, "x": -197.17}, {"time": 0.5667, "x": -230.7, "y": 4.81, "curve": "stepped"}, + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "x": 8.25, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "x": 42.9, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.3333, "x": -192.09, "y": 31.17, "curve": "stepped"}, {"time": 0.35, "x": -197.17}, {"time": 0.5667, "x": -192.36, "y": 4.81, "curve": "stepped"}, {"time": 0.5833, "x": -180.48, "curve": "stepped"}, {"time": 0.75, "x": -180.48, "curve": 0.313, "c3": 0.699}, {"time": 0.9167} ] }, "@leg-front-left": { "translate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "x": -2.9, "y": -1.1, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.25, "x": -0.62, "y": -3.44, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "x": -1, "y": -5.53, "curve": "stepped"}, {"time": 0.35, "x": 4.4, "y": -4.91}, - {"time": 0.5667, "x": 7.49, "y": -5.17, "curve": "stepped"}, {"time": 0.5833, "x": 18.69, "y": 1.85, "curve": "stepped"}, - {"time": 0.75, "x": 18.69, "y": 1.85, "curve": 0.306, "c3": 0.695}, {"time": 0.9167} + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "x": -4.8, "y": 21.17, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.25, "x": -0.53, "y": 0.11, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "x": -1, "y": -5.53, "curve": "stepped"}, + {"time": 0.35, "x": 2.26, "y": 14.19, "curve": "stepped"}, {"time": 0.5667, "x": 2.26, "y": 14.19, "curve": "stepped"}, + {"time": 0.5833, "x": -1.12, "y": 1.52, "curve": 0.313, "c3": 0.699}, {"time": 0.75, "x": -1, "y": -5.53, "curve": 0.313, "c3": 0.699}, {"time": 0.9167} ] }, "@leg-front-right": { "translate": [ {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 4.31, "y": 11.86, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.25, "x": -10.48, "y": -15.33, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "x": -3.15, "y": 1.33, "curve": "stepped"}, {"time": 0.35, "x": -3.84, "y": 7.68}, + {"time": 0.25, "x": -10.19, "y": -4.67, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "x": -1.86, "y": -9.26, "curve": "stepped"}, {"time": 0.35, "x": -3.84, "y": 7.68}, {"time": 0.5667, "x": -3.53, "y": 9.04, "curve": "stepped"}, {"time": 0.5833, "x": -2.24, "y": 13.67, "curve": 0.313, "c3": 0.699}, - {"time": 0.75, "x": -2.69, "y": -18.63, "curve": 0.313, "c3": 0.699}, {"time": 0.9167} + {"time": 0.75, "x": -1.86, "y": -9.26, "curve": 0.313, "c3": 0.699}, {"time": 0.9167} ] }, "@leg-back-left": { "translate": [ - {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.1333, "x": 0.67, "y": -7.85, "curve": 0.161, "c3": 0.854}, {"time": 0.25, "x": 0.74, "y": -5.43, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.3333, "x": -0.54, "y": 4.44, "curve": "stepped"}, {"time": 0.35, "x": 10.26, "y": 0.56, "curve": "stepped"}, {"time": 0.5667, "x": 10.26, "y": 0.56, "curve": "stepped"}, - {"time": 0.5833} + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.1333, "x": 0.67, "y": -7.85, "curve": 0.161, "c3": 0.854}, {"time": 0.25, "x": 0.53, "y": -13.09, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.3333, "curve": "stepped"}, {"time": 0.35, "x": 10.26, "y": 0.56, "curve": "stepped"}, {"time": 0.5667, "x": 10.26, "y": 0.56, "curve": "stepped"}, {"time": 0.5833} ] }, "tail": { @@ -485,8 +575,7 @@ "scale": [{"time": 0.5667, "curve": "stepped"}, {"time": 0.75, "y": 0.98, "curve": 0.154, "c4": 0.9}, {"time": 0.9167}] } }, - "drawOrder": [{"time": 0.35, "offsets": [{"slot": "leg-back-left", "offset": 1}]}, {"time": 0.5833}], - "events": [{"time": 0.35, "name": "start-attack"}, {"time": 0.5667, "name": "start-attack"}] + "events": [{"time": 0.35, "name": "start-attack"}] }, "1137807767": { "slots": { @@ -558,10 +647,15 @@ } } }, - "1988236421": { + "2571197086": { "slots": { "eyes": {"attachment": [{"time": 0.1333, "name": "eyes-shut"}, {"time": 0.2, "name": "eyes"}, {"time": 0.4667, "name": "eyes-shut"}]}, - "mouth": {"attachment": [{"time": 0.0833, "name": "mouth-open"}, {"time": 0.3333, "name": "mouth"}, {"time": 0.4167, "name": "mouth-open"}]} + "mouth": { + "attachment": [ + {"time": 0.0833, "name": "mouth-open"}, {"time": 0.1667, "name": "mouth-eat"}, {"time": 0.3333, "name": "mouth"}, {"time": 0.4167, "name": "mouth-open"}, + {"time": 0.5, "name": "mouth-eat"} + ] + } }, "bones": { "@mouth": { @@ -850,8 +944,8 @@ } } }, - "1455190363": { - "slots": {"eyes": {"attachment": [{"time": 0.05, "name": "eyes-happy"}, {"time": 0.7667, "name": "eyes"}]}}, + "2993060391": { + "slots": {"eyes": {"attachment": [{"time": 0.05, "name": "eyes-shut"}, {"time": 0.7667, "name": "eyes"}]}}, "bones": { "@pivot-back": { "rotate": [ @@ -865,14 +959,14 @@ }, "@leg-front-left": { "translate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": -20.02, "y": -2.36, "curve": "stepped"}, {"time": 0.6667, "x": -20.02, "y": -2.36, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.8333, "x": 5.31, "y": -7.32, "curve": 0.306, "c3": 0.695}, {"time": 1} + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": -10.29, "y": 8.94, "curve": 0.306, "c3": 0.695}, {"time": 0.6667, "x": -14.48, "y": 9.14, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.8333, "x": -16.19, "y": -6.62, "curve": 0.306, "c3": 0.695}, {"time": 1} ] }, "@leg-front-right": { "translate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": -36.67, "y": 20.01, "curve": 0.306, "c3": 0.695}, - {"time": 0.6667, "x": -44.17, "y": 20.3, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.8333, "x": -12.71, "y": -17.14, "curve": 0.306, "c3": 0.695}, {"time": 1} + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": -23.33, "y": 21.58, "curve": 0.306, "c3": 0.695}, + {"time": 0.6667, "x": -23.53, "y": 23.07, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.8333, "x": -12.56, "y": -12.55, "curve": 0.306, "c3": 0.695}, {"time": 1} ] }, "@leg-back-left": { @@ -896,7 +990,7 @@ }, "events": [{"time": 0.1667, "name": "hit-buff"}] }, - "606904312": { + "2919546916": { "slots": { "eyes": {"attachment": [{"time": 0.05, "name": "eyes-shut"}, {"time": 0.7667, "name": "eyes"}]}, "mouth": {"attachment": [{"time": 0.05, "name": "mouth-bite"}, {"time": 0.7667, "name": "mouth"}]} @@ -914,14 +1008,14 @@ }, "@leg-front-right": { "translate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": -0.92, "y": -19.87}, {"time": 0.6667, "x": -1.14, "y": -21.42, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": -0.75, "y": -16.02}, {"time": 0.6667, "x": -1.01, "y": -19.02, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.8333, "x": -0.43, "y": 9.97, "curve": 0.306, "c3": 0.695}, {"time": 1} ] }, "@leg-front-left": { "translate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": 7.87, "y": -5.37}, {"time": 0.6667, "x": 9.12, "y": -5.44, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.8333, "x": -0.16, "y": 3.89, "curve": 0.306, "c3": 0.695}, {"time": 1} + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": -0.41, "y": -8.76}, {"time": 0.6667, "x": -0.5, "y": -9.35, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.8333, "x": -0.23, "y": 5.14, "curve": 0.306, "c3": 0.695}, {"time": 1} ] }, "tail": { @@ -933,7 +1027,7 @@ }, "events": [{"time": 0.1667, "name": "hit-buff"}] }, - "2045974966": { + "2695183231": { "slots": { "eyes": {"attachment": [{"time": 0.0167, "name": "eyes-shut"}, {"time": 0.1833, "name": "eyes-angry"}, {"time": 0.4, "name": "eyes"}]}, "mouth": {"attachment": [{"time": 0.0167, "name": "mouth-bite"}, {"time": 0.4, "name": "mouth"}]} @@ -964,7 +1058,7 @@ }, "@leg-back-left": { "translate": [ - {"curve": "stepped"}, {"time": 0.0167, "x": -0.94, "y": 4.51, "curve": "stepped"}, {"time": 0.1667, "x": -0.94, "y": 4.51, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3167} + {"curve": "stepped"}, {"time": 0.0167, "x": -2.63, "y": 8.92, "curve": "stepped"}, {"time": 0.1667, "x": -2.63, "y": 8.92, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3167} ] }, "@pivot-main": {"translate": [{"curve": "stepped"}, {"time": 0.0167, "x": 20, "curve": "stepped"}, {"time": 0.3167, "x": 20, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.4167}]}, @@ -977,19 +1071,19 @@ }, "leg-front-right-IK": { "translate": [ - {"curve": "stepped"}, {"time": 0.0167, "x": 44.88, "y": 143.25}, {"time": 0.0833, "x": -0.81, "y": 175.84}, {"time": 0.1667, "x": 46.95, "y": 154.35, "curve": 0.306, "c4": 0.8}, + {"curve": "stepped"}, {"time": 0.0167, "x": 16.22, "y": 104.1}, {"time": 0.0833, "x": -5.7, "y": 124.11}, {"time": 0.1667, "x": 28.08, "y": 105.42, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3167} ] }, "leg-front-left-IK": { "translate": [ - {"curve": "stepped"}, {"time": 0.0167, "x": -4.98, "y": 86.81}, {"time": 0.0833, "x": 23.52, "y": 63.22}, {"time": 0.1667, "x": -2.69, "y": 90.83, "curve": 0.306, "c4": 0.8}, + {"curve": "stepped"}, {"time": 0.0167, "x": -29.76, "y": 76.11}, {"time": 0.0833, "x": 3.25, "y": 55.34}, {"time": 0.1667, "x": -35.9, "y": 81.82, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3167} ] } } }, - "2130010601": { + "721863963": { "slots": { "eyes": {"attachment": [{"time": 0.0167, "name": "eyes-shut"}, {"time": 0.1833, "name": "eyes-angry"}, {"time": 0.4, "name": "eyes"}]}, "mouth": {"attachment": [{"time": 0.0167, "name": "mouth-bite"}, {"time": 0.4, "name": "mouth"}]} @@ -1002,7 +1096,7 @@ ] }, "leg-front-right-IK": { - "translate": [{"curve": "stepped"}, {"time": 0.0167, "x": 74.76, "y": 322.04}, {"time": 0.1667, "x": 85.96, "y": 349.35, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3167}] + "translate": [{"curve": "stepped"}, {"time": 0.0167, "x": 16.22, "y": 104.1}, {"time": 0.1667, "x": 71.03, "y": 278.02, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3167}] }, "@pivot-back": { "rotate": [ @@ -1023,22 +1117,26 @@ }, "leg-back-left-IK": { "translate": [ - {"curve": "stepped"}, {"time": 0.0167, "x": 11.67, "y": 0.9, "curve": "stepped"}, {"time": 0.1667, "x": 11.67, "y": 0.9, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333} + {"curve": "stepped"}, {"time": 0.0167, "x": 20.18, "y": 0.9, "curve": "stepped"}, {"time": 0.1667, "x": 20.18, "y": 0.9, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333} + ] + }, + "@leg-back-left": { + "translate": [ + {"curve": "stepped"}, {"time": 0.0167, "x": -2.63, "y": 8.92, "curve": "stepped"}, {"time": 0.1667, "x": -2.63, "y": 8.92, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3167} ] }, - "@leg-back-left": {"translate": [{"curve": "stepped"}, {"time": 0.0167, "x": -2.63, "y": 8.92}, {"time": 0.1667, "x": 18.61, "y": -8.3, "curve": 0.464, "c4": 0.7}, {"time": 0.3167}]}, "@pivot-main": {"translate": [{"curve": "stepped"}, {"time": 0.0167, "x": 20, "curve": "stepped"}, {"time": 0.3167, "x": 20, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.4167}]}, "leg-front-left-IK": { - "translate": [{"curve": "stepped"}, {"time": 0.0167, "x": -4.7, "y": 168.09}, {"time": 0.1667, "x": 6.72, "y": 174.87, "curve": 0.306, "c3": 0.695}, {"time": 0.3167}] + "translate": [{"curve": "stepped"}, {"time": 0.0167, "x": -29.76, "y": 76.11}, {"time": 0.1667, "x": 6.72, "y": 156.82, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3167}] }, "@leg-front-left": {"translate": [{"time": 0.1667, "curve": 0.62, "c4": 0.3}, {"time": 0.3167, "x": -1.1, "y": -14.87, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.4167}]}, "@leg-front-right": {"translate": [{"time": 0.1667, "curve": 0.62, "c4": 0.3}, {"time": 0.3167, "x": -2.11, "y": -28.46, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.4167}]} } }, - "3823092125": { + "2501809037": { "slots": { - "eyes": {"attachment": [{"time": 0.0167, "name": "eyes-shut"}, {"time": 0.5833, "name": "eyes-angry"}, {"time": 0.8333, "name": "eyes-shut"}, {"time": 0.9167, "name": "eyes"}]}, - "mouth": {"attachment": [{"time": 0.0167, "name": "mouth-bite"}, {"time": 0.6667, "name": "mouth-open"}, {"time": 0.8333, "name": "mouth"}]} + "eyes": {"attachment": [{"time": 0.0167, "name": "eyes-shut"}, {"time": 0.6, "name": "eyes-angry"}, {"time": 0.8333, "name": "eyes-shut"}, {"time": 0.9167, "name": "eyes"}]}, + "mouth": {"attachment": [{"time": 0.0167, "name": "mouth-bite"}, {"time": 0.9167, "name": "mouth"}]} }, "bones": { "@pivot-back": { @@ -1065,10 +1163,10 @@ "@leg-back-left": {"translate": [{"curve": "stepped"}, {"time": 0.0167, "x": 6.4, "y": 0.19}, {"time": 0.1667}]}, "leg-front-right-IK": { "translate": [ - {"curve": "stepped"}, {"time": 0.0167, "x": 69.67, "y": 327.04}, {"time": 0.05, "x": 451.04, "y": 582.91}, {"time": 0.0833, "x": 787.85, "y": 470.29}, - {"time": 0.1, "x": 945.09, "y": 394.99, "curve": 0.313, "c3": 0.699}, {"time": 0.25, "x": 1086.85, "y": 338.86, "curve": 0.313, "c3": 0.699}, - {"time": 0.4167, "x": 921.41, "y": 410.91, "curve": 0.313, "c3": 0.699}, {"time": 0.5833, "x": 1028.37, "y": 385.44}, {"time": 0.6667, "x": 914.82, "y": 422.49}, - {"time": 0.7, "x": 413.58, "y": 458.44}, {"time": 0.75, "x": 45.46, "y": 287.09}, {"time": 0.7833, "x": -34.18, "y": 117.59}, {"time": 0.8333} + {"curve": "stepped"}, {"time": 0.0167, "x": 58.1, "y": 326.43}, {"time": 0.05, "x": 435.63, "y": 548.48}, {"time": 0.1, "x": 913.38, "y": 395.89, "curve": 0.313, "c3": 0.699}, + {"time": 0.25, "x": 1012.56, "y": 347.92, "curve": 0.313, "c3": 0.699}, {"time": 0.4167, "x": 846.21, "y": 399.13, "curve": 0.313, "c3": 0.699}, + {"time": 0.5833, "x": 946.83, "y": 385.44}, {"time": 0.6667, "x": 936.57, "y": 385.44}, {"time": 0.7, "x": 419.93, "y": 448.74}, {"time": 0.75, "x": 67.2, "y": 277.12}, + {"time": 0.7833, "x": -19.68, "y": 128.46}, {"time": 0.8333} ] }, "tail": { @@ -1080,17 +1178,17 @@ }, "leg-back-left-IK": { "translate": [ - {"curve": "stepped"}, {"time": 0.0167, "x": -3.7, "y": 19.91}, {"time": 0.05, "x": -86.78, "y": 121.52}, {"time": 0.1, "x": 129.15, "y": 364.61, "curve": 0.313, "c3": 0.699}, - {"time": 0.25, "x": 262.18, "y": 406.7, "curve": 0.313, "c3": 0.699}, {"time": 0.4167, "x": 109.91, "y": 347.96, "curve": 0.313, "c3": 0.699}, {"time": 0.5833, "x": 216.28, "y": 393.95}, - {"time": 0.6667, "x": 118.81, "y": 360.02}, {"time": 0.7, "x": -121.03, "y": 41.31}, {"time": 0.75, "x": -95.31, "y": -47.01}, {"time": 0.7833, "x": 22.31, "y": -53.8}, {"time": 0.8333} + {"curve": "stepped"}, {"time": 0.0167, "x": 20.18, "y": 33.84}, {"time": 0.05, "x": -53.54, "y": 197.14}, {"time": 0.1, "x": 220.06, "y": 374.42, "curve": 0.313, "c3": 0.699}, + {"time": 0.25, "x": 335.68, "y": 391.64, "curve": 0.313, "c3": 0.699}, {"time": 0.4167, "x": 170.05, "y": 340.55, "curve": 0.313, "c3": 0.699}, + {"time": 0.5833, "x": 291.92, "y": 373.82}, {"time": 0.6667, "x": 229.33, "y": 365.61}, {"time": 0.7, "x": -104.68, "y": 157.02}, {"time": 0.75, "x": -148.93, "y": -14.62}, + {"time": 0.7833, "x": -109.09, "y": -31.79}, {"time": 0.8333} ] }, "leg-front-left-IK": { "translate": [ - {"curve": "stepped"}, {"time": 0.0167, "x": -5.8, "y": 177.99}, {"time": 0.05, "x": 106.35, "y": 306.87}, {"time": 0.0833, "x": 355.94, "y": 424.69}, - {"time": 0.1, "x": 515.46, "y": 408.14, "curve": 0.313, "c3": 0.699}, {"time": 0.25, "x": 536.35, "y": 423.87, "curve": 0.313, "c3": 0.699}, - {"time": 0.4167, "x": 492.39, "y": 405.73, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.6667, "x": 482.36, "y": 419.06}, {"time": 0.7, "x": 97.67, "y": 283.45}, - {"time": 0.75, "x": -12.16, "y": 45.82}, {"time": 0.7833, "x": -31.56, "y": 29.02}, {"time": 0.8333} + {"curve": "stepped"}, {"time": 0.0167, "x": -5.09, "y": 195.15}, {"time": 0.05, "x": 166.41, "y": 396.25}, {"time": 0.1, "x": 586.24, "y": 418.86, "curve": 0.313, "c3": 0.699}, + {"time": 0.25, "x": 572.1, "y": 418.86, "curve": 0.313, "c3": 0.699}, {"time": 0.4167, "x": 579.62, "y": 409.31, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.6667, "x": 558.15, "y": 409.31}, {"time": 0.7, "x": 139.45, "y": 332.03}, {"time": 0.75, "x": -52.17, "y": 116.05}, {"time": 0.7833, "x": -60.89, "y": 33.46}, {"time": 0.8333} ] }, "@pivot-center": { @@ -1105,17 +1203,16 @@ ] }, "@pivot-main": { - "translate": [{"time": 0.6667, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.75, "y": 150, "curve": 0.315, "c4": 0.8}, {"time": 0.8333}], + "translate": [{"time": 0.6667, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.75, "y": 50, "curve": 0.315, "c4": 0.8}, {"time": 0.8333}], "scale": [ {"time": 0.1, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "y": 0.93, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "curve": "stepped"}, - {"time": 0.5667, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.65, "y": 0.7, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.7333, "curve": "stepped"}, + {"time": 0.5667, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.65, "y": 0.9, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.7333, "curve": "stepped"}, {"time": 0.8333, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.9167, "y": 0.98, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1} ] - }, - "@leg-front-right": {"translate": [{"time": 0.75, "curve": 0.306, "c4": 0.8}, {"time": 0.8333, "x": -2.23, "y": -25.27, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1}]} + } } }, - "2224561612": { + "3309952905": { "slots": { "eyes": {"attachment": [{"time": 0.0167, "name": "eyes-shut"}, {"time": 0.3, "name": "eyes-angry"}, {"time": 0.4833, "name": "eyes"}]}, "mouth": {"attachment": [{"time": 0.0167, "name": "mouth-bite"}, {"time": 0.4833, "name": "mouth"}]} @@ -1131,6 +1228,12 @@ {"time": 0.3833, "x": -1.17, "y": 18.85, "curve": 0.315, "c4": 0.8}, {"time": 0.4833} ] }, + "leg-front-right-IK": { + "translate": [ + {"time": 0.2333, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "x": 28.04, "y": 49.32, "curve": "stepped"}, + {"time": 0.3833, "x": 28.04, "y": 49.32, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.45} + ] + }, "@shadow": { "translate": [ {"curve": "stepped"}, {"time": 0.0167, "x": 33.22}, {"time": 0.2667, "x": 61.08, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3833, "x": 9.02, "curve": 0.315, "c4": 0.8}, @@ -1141,57 +1244,46 @@ {"time": 0.3833, "x": 0.98, "y": 0.98, "curve": 0.315, "c4": 0.8}, {"time": 0.4833, "x": 1.1, "y": 1.1, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5833} ] }, - "@pivot-main": { + "leg-back-left-IK": { "translate": [ - {"curve": "stepped"}, {"time": 0.0167, "x": 33.18}, {"time": 0.2667, "x": 61.52, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3833, "x": 20.27, "y": 27.91, "curve": 0.315, "c4": 0.8}, - {"time": 0.4833} - ] - }, - "tail": { - "rotate": [ - {"curve": "stepped"}, {"time": 0.0167, "angle": -18.65}, {"time": 0.2333, "angle": -21.65, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.3333, "angle": -13.3, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.45, "angle": 12.04, "curve": 0.154, "c4": 0.9}, - {"time": 0.5167, "angle": -9.14, "curve": 0.161, "c3": 0.854}, {"time": 0.5833} + {"curve": "stepped"}, {"time": 0.0167, "x": 50.74, "y": 0.9, "curve": "stepped"}, {"time": 0.2, "x": 50.74, "y": 0.9, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.25, "x": 12.5, "y": 6.45, "curve": 0, "c2": 0.8, "c3": 0.15}, {"time": 0.3667, "x": 5.47, "y": 26.12, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.4833} ] }, - "leg-front-right-IK": { - "translate": [ - {"time": 0.2333, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "x": 22.26, "y": 54.13}, {"time": 0.3833, "x": 28.04, "y": 49.32, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.45} - ] + "@leg-back-left": { + "translate": [{"curve": "stepped"}, {"time": 0.0167, "x": 18.54, "y": 10.88}, {"time": 0.1667, "x": 18.74, "y": 14.65, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.4833}] }, "@leg-front-left": { "translate": [ - {"curve": "stepped"}, {"time": 0.0167, "x": -0.45, "y": -3.93}, {"time": 0.2333, "x": -0.82, "y": -2.61}, {"time": 0.3333, "x": -5.6, "y": -0.89, "curve": 0.617, "c4": 0.6}, - {"time": 0.45, "x": -1.09, "y": -14.69, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5833} - ] - }, - "leg-back-left-IK": { - "translate": [ - {"curve": "stepped"}, {"time": 0.0167, "x": 50.74, "y": 0.9, "curve": "stepped"}, {"time": 0.2, "x": 50.74, "y": 0.9, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.25, "x": 12.5, "y": 6.45, "curve": 0, "c2": 0.8, "c3": 0.15}, {"time": 0.3667, "x": 5.47, "y": 26.12, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.4833} + {"curve": "stepped"}, {"time": 0.0167, "x": 0.77, "y": 3.87}, {"time": 0.3667, "x": 1.05, "y": 9.15, "curve": 0.617, "c4": 0.6}, + {"time": 0.4833, "x": -1.09, "y": -14.69, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5833} ] }, "@leg-front-right": { + "translate": [{"time": 0.0167}, {"time": 0.45, "x": 0.18, "y": 4.24, "curve": "stepped"}, {"time": 0.4833, "x": -2.34, "y": -28.14, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5833}] + }, + "@pivot-main": { "translate": [ - {"time": 0.0167}, {"time": 0.3333, "x": -7.53, "y": 2.3, "curve": 0, "c2": 0.1, "c3": 0.853}, {"time": 0.45, "x": 0.15, "y": -4.26, "curve": 0.159, "c3": 0.853}, - {"time": 0.4833, "x": -2.34, "y": -28.14, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5833} + {"curve": "stepped"}, {"time": 0.0167, "x": 33.18}, {"time": 0.2667, "x": 61.52, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3833, "x": 20.27, "y": 27.91, "curve": 0.315, "c4": 0.8}, + {"time": 0.4833} ] }, - "@leg-back-left": { - "translate": [ - {"curve": "stepped"}, {"time": 0.0167, "x": 18.74, "y": 14.65, "curve": "stepped"}, {"time": 0.1667, "x": 18.74, "y": 14.65, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.4833} + "tail": { + "rotate": [ + {"curve": "stepped"}, {"time": 0.0167, "angle": -18.65}, {"time": 0.2333, "angle": -21.65, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.3333, "angle": -13.3, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.45, "angle": 12.04, "curve": 0.154, "c4": 0.9}, + {"time": 0.5167, "angle": -9.14, "curve": 0.161, "c3": 0.854}, {"time": 0.5833} ] }, "leg-front-left-IK": { "translate": [ - {"curve": "stepped"}, {"time": 0.0167, "x": 38.52}, {"time": 0.2333, "x": 38.87, "curve": 0, "c2": 0.3, "c3": 0.54}, {"time": 0.3333, "x": 26.12, "y": 38.71}, + {"time": 0.2333, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "x": 12.33, "y": 29.93, "curve": "stepped"}, {"time": 0.3833, "x": 12.33, "y": 29.93, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.45} ] } } }, - "390714790": { + "228539860": { "slots": { "eyes": {"attachment": [{"time": 0.0167, "name": "eyes-angry"}, {"time": 0.25, "name": "eyes-shut"}, {"time": 0.3, "name": "eyes-angry"}, {"time": 0.4333, "name": "eyes"}]}, "mouth": {"attachment": [{"time": 0.0167, "name": "mouth-bite"}, {"time": 0.3, "name": "mouth-open"}, {"time": 0.4333, "name": "mouth"}]} @@ -1220,15 +1312,12 @@ }, "@leg-front-left": { "translate": [ - {"curve": "stepped"}, {"time": 0.0167, "x": -0.45, "y": -3.93}, {"time": 0.2333, "x": -0.82, "y": -2.61}, {"time": 0.3333, "x": -5.6, "y": -0.89, "curve": 0.617, "c4": 0.6}, - {"time": 0.45, "x": -1.09, "y": -14.69, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5833} + {"curve": "stepped"}, {"time": 0.0167, "x": 1.05, "y": 9.15, "curve": "stepped"}, {"time": 0.3667, "x": 1.05, "y": 9.15, "curve": 0.617, "c4": 0.6}, + {"time": 0.4833, "x": -1.09, "y": -14.69, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5833} ] }, "@leg-front-right": { - "translate": [ - {"time": 0.0167}, {"time": 0.3333, "x": -7.53, "y": 2.3, "curve": 0, "c2": 0.1, "c3": 0.853}, {"time": 0.45, "x": 0.15, "y": -4.26, "curve": 0.159, "c3": 0.853}, - {"time": 0.4833, "x": -2.34, "y": -28.14, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5833} - ] + "translate": [{"time": 0.0167}, {"time": 0.45, "x": 0.18, "y": 4.24, "curve": "stepped"}, {"time": 0.4833, "x": -2.34, "y": -28.14, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5833}] }, "@pivot-main": { "translate": [ @@ -1238,13 +1327,13 @@ }, "leg-front-right-IK": { "translate": [ - {"time": 0.2333, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "x": 22.26, "y": 54.13}, {"time": 0.3833, "x": 28.04, "y": 49.32, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.45} + {"time": 0.2333, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "x": 28.04, "y": 49.32, "curve": "stepped"}, + {"time": 0.3833, "x": 28.04, "y": 49.32, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.45} ] }, "leg-front-left-IK": { "translate": [ - {"curve": "stepped"}, {"time": 0.0167, "x": 38.52}, {"time": 0.2333, "x": 38.87, "curve": 0, "c2": 0.3, "c3": 0.54}, {"time": 0.3333, "x": 26.12, "y": 38.71}, + {"time": 0.2333, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "x": 12.33, "y": 29.93, "curve": "stepped"}, {"time": 0.3833, "x": 12.33, "y": 29.93, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.45} ] }, @@ -1267,7 +1356,7 @@ } } }, - "1327954218": { + "3177102970": { "slots": { "eyes": {"attachment": [{"time": 0.05, "name": "eyes-angry"}, {"time": 0.7, "name": "eyes"}]}, "mouth": {"attachment": [{"time": 0.05, "name": "mouth-bite"}, {"time": 0.2833, "name": "mouth-open"}, {"time": 0.4667, "name": "mouth-bite"}, {"time": 0.7, "name": "mouth"}]} @@ -1288,22 +1377,21 @@ "@pivot-main": {"translate": [{"time": 0.5833, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.6667, "y": 45.22, "curve": 0.315, "c4": 0.8}, {"time": 0.75}]}, "@leg-front-left": { "translate": [ - {"curve": 0, "c2": 0.4, "c3": 0.383}, {"time": 0.25, "x": -0.72, "y": -6.78}, {"time": 0.5833, "x": -1.48, "y": -14.61, "curve": 0, "c2": 0.17, "c3": 0.45, "c4": 0.61}, - {"time": 0.65, "x": -0.39, "y": 5.91, "curve": 0.345, "c2": 0.53, "c3": 0.751}, {"time": 0.75} + {"curve": 0, "c2": 0.4, "c3": 0.383}, {"time": 0.25, "x": -1.48, "y": -14.61, "curve": "stepped"}, + {"time": 0.5833, "x": -1.48, "y": -14.61, "curve": 0, "c2": 0.17, "c3": 0.45, "c4": 0.61}, {"time": 0.65, "x": -0.39, "y": 5.91, "curve": 0.345, "c2": 0.53, "c3": 0.751}, {"time": 0.75} ] }, "@leg-front-right": { "translate": [ - {"curve": 0, "c2": 0.39, "c3": 0.387}, {"time": 0.25, "x": -2.88, "y": -28.54, "curve": "stepped"}, + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "x": -2.88, "y": -28.54, "curve": "stepped"}, {"time": 0.5833, "x": -2.88, "y": -28.54, "curve": 0, "c2": 0.17, "c3": 0.45, "c4": 0.61}, {"time": 0.65, "x": -0.83, "y": 1.57, "curve": 0.345, "c2": 0.53, "c3": 0.751}, {"time": 0.75} ] }, "leg-front-left-IK": { "translate": [ - {"curve": 0, "c2": 0.39, "c3": 0.387}, {"time": 0.25, "x": 19.12, "curve": 0.702, "c4": 0.2}, {"time": 0.2833, "x": -43.29, "y": 59.07}, - {"time": 0.4167, "x": -61.19, "y": 52.81, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5, "x": -184.33, "y": 7.89, "curve": "stepped"}, - {"time": 0.5833, "x": -184.33, "y": 7.89, "curve": 0, "c2": 0.17, "c3": 0.45, "c4": 0.61}, {"time": 0.65, "x": -105.91, "y": -2.82, "curve": 0.345, "c2": 0.53, "c3": 0.751}, - {"time": 0.75} + {"time": 0.25, "curve": 0.702, "c4": 0.2}, {"time": 0.2833, "x": -43.29, "y": 59.07}, {"time": 0.4167, "x": -61.19, "y": 52.81, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.5, "x": -191.61, "curve": "stepped"}, {"time": 0.5833, "x": -191.61, "curve": 0, "c2": 0.17, "c3": 0.45, "c4": 0.61}, + {"time": 0.65, "x": -105.91, "y": -2.82, "curve": 0.345, "c2": 0.53, "c3": 0.751}, {"time": 0.75} ] }, "leg-front-right-IK": { @@ -1315,8 +1403,8 @@ }, "leg-back-left-IK": { "translate": [ - {"time": 0.2667, "curve": 0.461, "c4": 0.4}, {"time": 0.2833, "x": -70.51, "y": 98.54}, {"time": 0.4167, "x": -70.51, "y": 101.95, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.5, "x": -189.32, "curve": "stepped"}, {"time": 0.5833, "x": -189.32, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.75} + {"time": 0.25, "curve": 0.25, "c4": 0.2}, {"time": 0.2833, "x": -70.51, "y": 98.54}, {"time": 0.4167, "x": -70.51, "y": 101.95, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.5, "x": -197.17, "curve": "stepped"}, {"time": 0.5833, "x": -197.17, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.75} ] }, "@pivot-center": { @@ -1340,12 +1428,11 @@ {"curve": 0, "c2": 0.4, "c3": 0.383}, {"time": 0.25, "x": 1.08, "y": 1.08, "curve": "stepped"}, {"time": 0.5, "x": 1.08, "y": 1.08, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5833, "x": 1.12, "y": 1.12, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.6667, "x": 0.94, "y": 0.94, "curve": 0.315, "c4": 0.8}, {"time": 0.75} ] - }, - "@leg-back-left": {"translate": [{"curve": 0, "c2": 0.39, "c3": 0.387}, {"time": 0.25, "x": -7.28, "y": 3.82}]} + } }, "events": [{"time": 0.2167, "name": "start-attack"}, {"time": 0.2833, "name": "hit"}] }, - "2237748264": { + "1912445836": { "slots": { "eyes": {"attachment": [{"time": 0.1333, "name": "eyes-angry"}, {"time": 0.6667, "name": "eyes"}]}, "mouth": {"attachment": [{"time": 0.1333, "name": "mouth-bite"}, {"time": 0.2667, "name": "mouth-open"}, {"time": 0.4167, "name": "mouth-bite"}, {"time": 0.6667, "name": "mouth"}]} @@ -1363,37 +1450,35 @@ }, "leg-back-left-IK": { "translate": [ - {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.1167, "x": 93.98, "curve": 0.161, "c3": 0.854}, {"time": 0.25, "x": 67.02, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.3333, "x": -65.1, "y": -1.32, "curve": 0.315, "c4": 0.8}, {"time": 0.4167, "x": -131.67, "curve": "stepped"}, {"time": 0.5833, "x": -131.67, "curve": 0.159, "c4": 0.9}, - {"time": 0.75} + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.1333, "x": 80.9, "curve": 0.161, "c3": 0.854}, {"time": 0.25, "x": 49.4}, + {"time": 0.3333, "x": -52.84, "y": 44.64, "curve": 0.315, "c4": 0.8}, {"time": 0.4167, "x": -131.67, "curve": "stepped"}, {"time": 0.5833, "x": -131.67}, {"time": 0.75} ] }, "leg-front-right-IK": { "translate": [ - {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 21.56, "y": 4.31, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.25, "x": 42.9, "curve": 0, "c2": 0.3, "c3": 0.544}, - {"time": 0.3667, "x": -104.26, "y": 42.61, "curve": 0.161, "c4": 0.85}, {"time": 0.4167, "x": -153.64, "curve": "stepped"}, {"time": 0.5833, "x": -153.64, "curve": 0.154, "c4": 0.9}, + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 30.89, "y": 11.74, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "x": 42.9, "curve": 0, "c2": 0.3, "c3": 0.544}, + {"time": 0.3667, "x": -61.28, "y": 38.08, "curve": 0.161, "c4": 0.85}, {"time": 0.4167, "x": -153.64, "curve": "stepped"}, {"time": 0.5833, "x": -153.64, "curve": 0.154, "c4": 0.9}, {"time": 0.7, "x": 13.43, "curve": 0.161, "c3": 0.854}, {"time": 0.75} ] }, "leg-front-left-IK": { "translate": [ - {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 43.11, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "x": 48.71, "y": -1.66, "curve": 0, "c2": 0.3, "c3": 0.544}, - {"time": 0.3667, "x": -87.39, "y": 18.71, "curve": 0.161, "c4": 0.85}, {"time": 0.4167, "x": -150.32, "y": 0.83}, {"time": 0.5833, "x": -142.85, "curve": 0.154, "c4": 0.9}, + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 8.25, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "x": 42.9, "curve": 0, "c2": 0.3, "c3": 0.544}, + {"time": 0.3667, "x": -62.49, "y": 8.75, "curve": 0.161, "c4": 0.85}, {"time": 0.4167, "x": -153.64, "curve": "stepped"}, {"time": 0.5833, "x": -153.64, "curve": 0.154, "c4": 0.9}, {"time": 0.7, "x": 13.43, "curve": 0.161, "c3": 0.854}, {"time": 0.75} ] }, "@leg-front-left": { "translate": [ - {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": -0.28, "y": 3.31, "curve": 0, "c2": 0.3, "c3": 0.544}, - {"time": 0.25, "x": -0.62, "y": -3.21, "curve": 0, "c2": 0.25, "c3": 0.457, "c4": 0.73}, {"time": 0.3667, "x": -15.24, "y": -11.32, "curve": 0.325, "c2": 0.6, "c3": 0.672}, - {"time": 0.4167, "x": -17.97, "y": -3.57, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5833, "x": -18.47, "y": -10.19, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.75} + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": -1.88, "y": 22.02, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.25, "x": -0.53, "y": 0.11, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.4167, "x": -17.9, "y": 0.58, "curve": "stepped"}, + {"time": 0.5833, "x": -17.9, "y": 0.58, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.75} ] }, "@leg-front-right": { "translate": [ - {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 3.63, "y": 19.84, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.25, "x": -10.53, "y": -16.98, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.4167, "x": -10.44, "y": -18.31, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.5833, "x": -10.92, "y": -30.23, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.75} + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 4.31, "y": 11.86, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "x": -10.19, "y": -4.67, "curve": "stepped"}, + {"time": 0.5833, "x": -10.19, "y": -4.67, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.75} ] }, "@pivot-main": { @@ -1404,9 +1489,8 @@ }, "@leg-back-left": { "translate": [ - {"time": 0.1167, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "x": -0.25, "y": -9.22, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.3333, "x": -0.44, "y": 4.57, "curve": 0.306, "c4": 0.8}, {"time": 0.4167, "x": -0.58, "y": -9.21}, - {"time": 0.5833, "x": -0.15, "y": -9.98, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.75} + {"time": 0.0833, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "x": -0.35, "y": -13.05, "curve": "stepped"}, {"time": 0.3333, "x": -0.35, "y": -13.05}, + {"time": 0.5833, "x": -0.47, "y": -16.1, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.75} ] }, "tail": { @@ -1581,12 +1665,13 @@ }, "events": [{"time": 0.15, "name": "jump"}] }, - "905926802": { + "2627626635": { "slots": { "eyes": {"attachment": [{"time": 0.0833, "name": "eyes-shut"}, {"time": 0.1667, "name": "eyes-angry"}, {"time": 0.9833, "name": "eyes-shut"}, {"time": 1.0833, "name": "eyes"}]}, "leg-front-left": { "attachment": [ - {"time": 0.5, "name": "leg-front-left-stretch"}, {"time": 0.6333, "name": "leg-front-left"}, {"time": 0.7667, "name": "leg-front-left-stretch"}, {"time": 0.9, "name": "leg-front-left"} + {"time": 0.5, "name": "xmas-leg-front-left-stretch"}, {"time": 0.6333, "name": "xmas-leg-front-left"}, {"time": 0.7667, "name": "xmas-leg-front-left-stretch"}, + {"time": 0.9, "name": "xmas-leg-front-left"} ] }, "mouth": {"attachment": [{"time": 0.0833, "name": "mouth-bite"}, {"time": 0.3667, "name": "mouth-open"}, {"time": 0.9833, "name": "mouth-bite"}, {"time": 1.0833, "name": "mouth"}]} @@ -1609,12 +1694,12 @@ }, "@leg-front-right": { "translate": [ - {"curve": 0, "c2": 0.17, "c3": 0.521, "c4": 0.69}, {"time": 0.15, "x": -16.23, "y": -19.18, "curve": 0.377, "c2": 0.59, "c3": 0.739}, {"time": 0.2167, "x": -18.54, "y": -11.57}, - {"time": 0.25, "x": -22.65, "y": 8.05, "curve": 0, "c2": 0.4, "c3": 0.383}, {"time": 0.3333, "x": 29.92, "y": -4.24, "curve": 0.779, "c4": 0.4}, {"time": 0.3667, "x": 22.95, "y": 2.68}, - {"time": 0.4667, "x": 29.92, "y": -4.24, "curve": 0.779, "c4": 0.4}, {"time": 0.5, "x": 22.95, "y": 2.68}, {"time": 0.6, "x": 29.92, "y": -4.24, "curve": 0.779, "c4": 0.4}, - {"time": 0.6333, "x": 22.95, "y": 2.68}, {"time": 0.7333, "x": 29.92, "y": -4.24, "curve": 0.779, "c4": 0.4}, {"time": 0.7667, "x": 22.95, "y": 2.68, "curve": "stepped"}, - {"time": 0.9167, "x": 22.95, "y": 2.68, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.95, "curve": 0.464, "c4": 0.7}, {"time": 0.9833, "x": -1.45, "y": -24.11}, - {"time": 1.05, "x": -3.72, "y": -46.34, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1.0833} + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.2167, "x": -18.54, "y": -11.57}, {"time": 0.25, "x": -23.07, "y": 10.08, "curve": 0, "c2": 0.4, "c3": 0.383}, + {"time": 0.3333, "x": 29.92, "y": -4.24, "curve": 0.779, "c4": 0.4}, {"time": 0.3667, "x": 22.95, "y": 2.68}, {"time": 0.4667, "x": 29.92, "y": -4.24, "curve": 0.779, "c4": 0.4}, + {"time": 0.5, "x": 22.95, "y": 2.68}, {"time": 0.6, "x": 29.92, "y": -4.24, "curve": 0.779, "c4": 0.4}, {"time": 0.6333, "x": 22.95, "y": 2.68}, + {"time": 0.7333, "x": 29.92, "y": -4.24, "curve": 0.779, "c4": 0.4}, {"time": 0.7667, "x": 22.95, "y": 2.68, "curve": "stepped"}, + {"time": 0.9167, "x": 22.95, "y": 2.68, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.95, "curve": 0.464, "c4": 0.7}, {"time": 0.9833, "x": -1.45, "y": -24.11, "curve": "stepped"}, + {"time": 1.05, "x": -1.45, "y": -24.11, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1.0833} ], "scale": [ {"time": 0.2167}, {"time": 0.25, "x": 1.5}, {"time": 0.3333, "curve": 0.779, "c4": 0.4}, {"time": 0.3667, "x": 1.5}, {"time": 0.4667, "x": 1.51, "curve": 0.157, "c2": 0.33, "c3": 0.727}, @@ -1649,10 +1734,10 @@ }, "leg-front-right-IK": { "translate": [ - {"time": 0.15, "curve": 0, "c2": 0.18, "c3": 0.416, "c4": 0.58}, {"time": 0.2167, "x": 19.11, "y": 67.51}, {"time": 0.25, "x": 9.04, "y": 75.61, "curve": 0, "c2": 0.4, "c3": 0.383}, - {"time": 0.3333, "x": -160.66, "y": 272.78, "curve": 0.779, "c4": 0.4}, {"time": 0.3667, "x": -57.38, "y": -16.06}, {"time": 0.4667, "x": -10.1, "y": -16.06, "curve": 0.779, "c4": 0.4}, - {"time": 0.5, "x": -151.82, "y": 190.82}, {"time": 0.6, "x": -168.95, "y": 277.96, "curve": 0.779, "c4": 0.4}, {"time": 0.6333, "x": -54.28, "y": -17.1}, - {"time": 0.7333, "x": -12.17, "y": -17.1, "curve": 0.779, "c4": 0.4}, {"time": 0.7667, "x": -151.82, "y": 190.82}, {"time": 0.8667, "x": -165.84, "y": 271.75, "curve": 0.779, "c4": 0.4}, + {"time": 0.15, "curve": 0, "c2": 0.18, "c3": 0.416, "c4": 0.58}, {"time": 0.2167, "x": 49.59, "y": 35.17}, {"time": 0.25, "x": -2.16, "y": 99.87, "curve": 0, "c2": 0.4, "c3": 0.383}, + {"time": 0.3333, "x": -160.66, "y": 272.78, "curve": 0.779, "c4": 0.4}, {"time": 0.3667, "x": -48.06, "y": 31.6}, {"time": 0.4667, "x": -24.61, "y": 31.6, "curve": 0.779, "c4": 0.4}, + {"time": 0.5, "x": -151.82, "y": 190.82}, {"time": 0.6, "x": -160.66, "y": 272.78, "curve": 0.779, "c4": 0.4}, {"time": 0.6333, "x": -48.06, "y": 31.6}, + {"time": 0.7333, "x": -24.61, "y": 31.6, "curve": 0.779, "c4": 0.4}, {"time": 0.7667, "x": -151.82, "y": 190.82}, {"time": 0.8667, "x": -160.66, "y": 272.78, "curve": 0.779, "c4": 0.4}, {"time": 0.9833, "curve": "stepped"}, {"time": 1.05, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 1.0833, "x": -14.68, "y": -19.57, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1.25} ] }, @@ -1697,10 +1782,15 @@ ] } }, + "drawOrder": [{"time": 0.4833, "offsets": [{"slot": "leg-front-left", "offset": 6}]}, {"time": 0.6167}, {"time": 0.75, "offsets": [{"slot": "leg-front-left", "offset": 6}]}, {"time": 0.9}], "events": [{"time": 0.3333, "name": "start-attack"}, {"time": 0.3667, "name": "hit"}, {"time": 0.5, "name": "hit"}, {"time": 0.6333, "name": "hit"}, {"time": 0.7667, "name": "hit"}] }, - "1659336865": { - "slots": {"eyes": {"attachment": [{"time": 1, "name": "eyes-shut"}, {"time": 1.0833, "name": "eyes"}]}}, + "1115875647": { + "slots": { + "eyes": {"attachment": [{"time": 1, "name": "eyes-shut"}, {"time": 1.0833, "name": "eyes"}]}, + "horn": {"attachment": [{"time": 0.5833, "name": "horn-blink"}, {"time": 0.8333, "name": "horn"}]}, + "mouth": {"attachment": [{"time": 0.0833, "name": "mouth-blink"}, {"time": 0.3333, "name": "mouth"}]} + }, "bones": { "@pivot-back": { "rotate": [ @@ -1751,8 +1841,8 @@ "back": { "rotate": [{"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "angle": -4.27, "curve": 0.313, "c3": 0.699}, {"time": 1, "angle": 2.83, "curve": 0.313, "c3": 0.699}, {"time": 1.3333}] }, - "ear-right": {"rotate": [{"curve": 0.461, "c3": 0.543}, {"time": 0.6667, "angle": -3.91, "curve": 0.461, "c3": 0.543}, {"time": 1.3333}]}, - "ear-left": {"rotate": [{"curve": 0.461, "c3": 0.543}, {"time": 0.6667, "angle": -3.92, "curve": 0.461, "c3": 0.543}, {"time": 1.3333}]}, + "ear-right": {"rotate": [{"curve": 0.461, "c3": 0.543}, {"time": 0.6667, "angle": -4, "curve": 0.461, "c3": 0.543}, {"time": 1.3333}]}, + "ear-left": {"rotate": [{"curve": 0.461, "c3": 0.543}, {"time": 0.6667, "angle": -4, "curve": 0.461, "c3": 0.543}, {"time": 1.3333}]}, "@shadow": { "scale": [ {"curve": 0.306, "c3": 0.695}, {"time": 0.3333, "x": 1.05, "y": 1.05, "curve": 0.306, "c3": 0.695}, {"time": 0.6667, "curve": 0.306, "c3": 0.695}, @@ -1886,7 +1976,7 @@ "@shadow": {"scale": [{"x": 1.3, "y": 1.3, "curve": 0.387, "c3": 0.314}, {"time": 0.6667, "x": 1.25, "y": 1.25, "curve": 0.387, "c3": 0.314}, {"time": 1.3333, "x": 1.3, "y": 1.3}]} } }, - "554401889": { + "880116349": { "slots": { "ball": { "color": [ @@ -1972,7 +2062,7 @@ }, "ball": { "scale": [ - {"time": 0.3333, "curve": 0.617, "c4": 0.6}, {"time": 0.5, "x": 1.2, "y": 0.802, "curve": 0, "c2": 0.39, "c3": 0.387}, {"time": 0.6667, "curve": "stepped"}, + {"time": 0.3333, "curve": 0.617, "c4": 0.6}, {"time": 0.5, "x": 1.2, "y": 0.9, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.6667, "curve": "stepped"}, {"time": 2.5833, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 2.75, "x": 1.2, "y": 0.9, "curve": 0, "c2": 0.3, "c3": 0.546}, {"time": 2.9167} ] }, @@ -2007,11 +2097,10 @@ } } }, - "1085666627": { + "2837464254": { "slots": { - "eyes": {"attachment": [{"time": 0.0833, "name": "eyes-happy"}, {"time": 1, "name": "eyes"}]}, - "leg-back-left": {"attachment": [{"time": 0.0667, "name": "leg-back-left-long"}, {"time": 0.9, "name": "leg-back-left"}]}, - "mouth": {"attachment": [{"time": 0.0833, "name": "mouth-smile"}, {"time": 1, "name": "mouth"}]} + "eyes": {"attachment": [{"time": 0.1, "name": "eyes-shut"}, {"time": 1, "name": "eyes"}]}, + "leg-back-left": {"attachment": [{"time": 0.0667, "name": "xmas-leg-back-left-long"}, {"time": 0.9, "name": "xmas-leg-back-left"}]} }, "bones": { "@pivot-back": { @@ -2070,11 +2159,8 @@ }, "drawOrder": [{"time": 0.0667, "offsets": [{"slot": "leg-back-left", "offset": 1}]}, {"time": 0.9}] }, - "2021333900": { - "slots": { - "eyes": {"attachment": [{"time": 0.05, "name": "eyes-happy"}, {"time": 2.0833, "name": "eyes"}]}, - "mouth": {"attachment": [{"time": 0.05, "name": "mouth-bite"}, {"time": 2.0833, "name": "mouth"}]} - }, + "2146505268": { + "slots": {"eyes": {"attachment": [{"time": 0.05, "name": "eyes-shut"}, {"time": 2.0833, "name": "eyes"}]}}, "bones": { "@pivot-back": { "rotate": [ @@ -2133,7 +2219,7 @@ } } }, - "1003789695": { + "3708365579": { "slots": { "eyes": {"attachment": [{"time": 0.3, "name": "eyes-angry"}, {"time": 1.2333, "name": "eyes"}]}, "mouth": {"attachment": [{"time": 0.3, "name": "mouth-bite"}, {"time": 1.2333, "name": "mouth"}]} @@ -2205,18 +2291,16 @@ {"time": 1.0833, "angle": 17.85, "curve": 0.317, "c3": 0.693}, {"time": 1.2167, "angle": 15.5, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1.3167, "angle": -14.65, "curve": 0.315, "c4": 0.8}, {"time": 1.4167} ] - }, - "back": { - "rotate": [ - {"time": 0.3, "curve": 0.306, "c3": 0.695}, {"time": 0.4833, "angle": 5.93, "curve": 0.306, "c3": 0.695}, {"time": 0.65, "curve": 0.306, "c3": 0.695}, - {"time": 0.8333, "angle": 5.93, "curve": 0.306, "c3": 0.695}, {"time": 1.0167, "curve": 0.306, "c3": 0.695}, {"time": 1.2167, "angle": 5.93, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 1.4167} - ] } } }, - "1438840721": { - "slots": {"eyes": {"attachment": [{"name": "eyes-happy"}]}, "leg-front-left": {"attachment": [{"time": 0.2, "name": "leg-front-left-stretch"}, {"time": 0.5833, "name": "leg-front-left"}]}}, + "2297652214": { + "slots": { + "eyes": {"attachment": [{"name": "eyes-happy"}]}, + "leg-back-left": {"attachment": [{"time": 0.2833, "name": "xmas-leg-back-left-stretch"}, {"time": 0.6333, "name": "xmas-leg-back-left"}]}, + "leg-front-left": {"attachment": [{"time": 0.2833, "name": "xmas-leg-front-left-stretch"}, {"time": 0.6333, "name": "xmas-leg-front-left"}]}, + "leg-front-right": {"attachment": [{"time": 0.2833, "name": "xmas-leg-front-right-stretch"}, {"time": 0.6333, "name": "xmas-leg-front-right"}]} + }, "bones": { "@leg-front-left": { "translate": [ @@ -2250,7 +2334,7 @@ ] }, "tail": { - "rotate": [{"curve": 0.161, "c3": 0.854}, {"time": 0.25, "angle": -20, "curve": 0, "c2": 0.3, "c3": 0.546}, {"time": 0.5, "angle": 4.21, "curve": 0.154, "c4": 0.9}, {"time": 0.75}] + "rotate": [{"curve": 0.161, "c3": 0.854}, {"time": 0.25, "angle": -15.26, "curve": 0, "c2": 0.3, "c3": 0.546}, {"time": 0.5, "angle": 3.48, "curve": 0.154, "c4": 0.9}, {"time": 0.75}] }, "@leg-front-right": { "translate": [ @@ -2284,24 +2368,12 @@ {"time": 0.5667, "y": 80.61, "curve": 0.154, "c4": 0.9}, {"time": 0.75, "y": 8} ] }, - "@pivot-main": {"scale": [{"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1333, "y": 0.85, "curve": 0.306, "c4": 0.8}, {"time": 0.25}]}, - "ear-right": { - "rotate": [ - {"angle": 6.45, "curve": 0.306, "c3": 0.695}, {"time": 0.25, "angle": -6.15, "curve": 0.306, "c3": 0.695}, {"time": 0.5, "angle": -7.47, "curve": 0.306, "c3": 0.695}, - {"time": 0.75, "angle": 6.45} - ] - }, - "ear-left": { - "rotate": [ - {"angle": 6.45, "curve": 0.306, "c3": 0.695}, {"time": 0.25, "angle": -6.15, "curve": 0.306, "c3": 0.695}, {"time": 0.5, "angle": -7.47, "curve": 0.306, "c3": 0.695}, - {"time": 0.75, "angle": 6.45} - ] - }, - "back": {"rotate": [{"curve": 0.306, "c3": 0.695}, {"time": 0.25, "angle": 9.32, "curve": 0.306, "c3": 0.695}, {"time": 0.5, "angle": -5.11, "curve": 0.306, "c3": 0.695}, {"time": 0.75}]} - } + "@pivot-main": {"scale": [{"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1333, "y": 0.85, "curve": 0.306, "c4": 0.8}, {"time": 0.25}]} + }, + "drawOrder": [{"time": 0.2833, "offsets": [{"slot": "leg-front-right", "offset": 7}, {"slot": "leg-front-left", "offset": 6}]}, {"time": 0.6333}] }, - "3577885069": { - "slots": {"leg-front-left": {"attachment": [{"time": 0.2, "name": "leg-front-left-stretch"}, {"time": 0.6667, "name": "leg-front-left"}]}}, + "1973997258": { + "slots": {"leg-front-left": {"attachment": [{"time": 0.2, "name": "xmas-leg-front-left-stretch"}, {"time": 0.6667, "name": "xmas-leg-front-left"}]}}, "bones": { "@pivot-back": { "translate": [ @@ -2367,7 +2439,7 @@ } } }, - "3833448733": { + "244230390": { "slots": { "eyes": { "attachment": [ @@ -2396,44 +2468,44 @@ }, "leg-front-left-IK": { "translate": [ - {"time": 0.0833, "x": 3.28, "y": 8.42, "curve": 0.344, "c3": 0.715, "c4": 0.45}, {"time": 0.1167, "x": 23.89, "y": 74.66, "curve": 0.589, "c2": 0.35, "c4": 0.75}, - {"time": 0.1667, "x": -100.7, "y": 242.98, "curve": 0.306, "c3": 0.695}, {"time": 0.25, "x": -233.21, "y": 406.49, "curve": 0.474, "c3": 0.714, "c4": 0.56}, - {"time": 0.3, "x": -153, "y": 482.64, "curve": 0.306, "c2": 0.39, "c3": 0.628, "c4": 0.74}, {"time": 0.3167, "x": -106.74, "y": 465.65, "curve": 0.287, "c2": 0.62, "c3": 0.612}, - {"time": 0.3333, "x": -79.92, "y": 385}, {"time": 0.4167, "x": -126.28, "y": 392.02, "curve": 0, "c2": 0.17, "c3": 0.45, "c4": 0.61}, - {"time": 0.5, "x": -212.54, "y": 584.25, "curve": 0.323, "c2": 0.4, "c3": 0.681, "c4": 0.77}, {"time": 0.55, "x": -233.91, "y": 520.55, "curve": 0.377, "c2": 0.62, "c3": 0.724}, - {"time": 0.5833, "x": -173.29, "y": 470.76}, {"time": 0.6667, "x": 19.48, "y": 419.84}, {"time": 0.75, "x": 31.74, "y": 414.89, "curve": 0.255, "c3": 0.659, "c4": 0.47}, - {"time": 0.8333, "x": 83.62, "y": 412.28, "curve": 0.41, "c2": 0.34, "c3": 0.774, "c4": 0.71}, - {"time": 0.8833, "x": 116.53, "y": 400.02, "curve": 0.427, "c2": 0.37, "c3": 0.767, "c4": 0.71}, {"time": 0.9, "x": 130.33, "y": 410.53, "curve": 0.649, "c2": 0.4, "c4": 0.74}, - {"time": 0.9167, "x": -78.08, "y": 379.36}, {"time": 1.0833, "x": -92.45, "y": 375.87, "curve": 0, "c2": 0.17, "c3": 0.45, "c4": 0.61}, - {"time": 1.15, "x": 127.37, "y": 350.17, "curve": 0.345, "c2": 0.53, "c3": 0.751}, {"time": 1.2167, "x": 133.62, "y": 244.55, "curve": 0, "c2": 0.1, "c3": 0.769}, {"time": 1.3333} + {"time": 0.0833, "curve": 0.344, "c3": 0.715, "c4": 0.45}, {"time": 0.1167, "x": 22.19, "y": 83.99, "curve": 0.589, "c2": 0.35, "c4": 0.75}, + {"time": 0.1667, "x": -154.45, "y": 263.51, "curve": 0.313, "c3": 0.699}, {"time": 0.25, "x": -189.73, "y": 441.11, "curve": 0.474, "c3": 0.714, "c4": 0.56}, + {"time": 0.3, "x": -88.64, "y": 479.87, "curve": 0.306, "c2": 0.39, "c3": 0.628, "c4": 0.74}, {"time": 0.3167, "x": -37.54, "y": 455.97, "curve": 0.287, "c2": 0.62, "c3": 0.612}, + {"time": 0.3333, "x": -25.25, "y": 378.08}, {"time": 0.4167, "x": -25.25, "y": 378.18, "curve": 0, "c2": 0.17, "c3": 0.45, "c4": 0.61}, + {"time": 0.5, "x": -158.66, "y": 578.62, "curve": 0.323, "c2": 0.4, "c3": 0.681, "c4": 0.77}, {"time": 0.55, "x": -205.92, "y": 567.89, "curve": 0.377, "c2": 0.62, "c3": 0.724}, + {"time": 0.5833, "x": -173.29, "y": 508.55}, {"time": 0.6667, "x": 20, "y": 418.28}, {"time": 0.75, "x": 22.88, "y": 389.88, "curve": 0.255, "c3": 0.659, "c4": 0.47}, + {"time": 0.8333, "x": 116.45, "y": 378.42, "curve": 0.41, "c2": 0.34, "c3": 0.774, "c4": 0.71}, + {"time": 0.8833, "x": 152.48, "y": 372.41, "curve": 0.427, "c2": 0.37, "c3": 0.767, "c4": 0.71}, {"time": 0.9, "x": 169.41, "y": 373.02, "curve": 0.649, "c2": 0.4, "c4": 0.74}, + {"time": 0.9167, "x": -24.94, "y": 385.61, "curve": "stepped"}, {"time": 1.0833, "x": -24.94, "y": 385.61, "curve": 0, "c2": 0.17, "c3": 0.45, "c4": 0.61}, + {"time": 1.15, "x": 153.37, "y": 346.29, "curve": 0.345, "c2": 0.53, "c3": 0.751}, {"time": 1.2167, "x": 149.53, "y": 227.09, "curve": 0, "c2": 0.1, "c3": 0.769}, {"time": 1.3333} ] }, "leg-front-right-IK": { "translate": [ {"time": 0.0833, "curve": 0.344, "c3": 0.715, "c4": 0.45}, {"time": 0.1167, "x": 41.2, "y": 75.27, "curve": 0.589, "c2": 0.35, "c4": 0.75}, - {"time": 0.1667, "x": -103.56, "y": 361.93, "curve": 0.313, "c3": 0.699}, {"time": 0.25, "x": 61.46, "y": 606.37, "curve": 0.474, "c3": 0.714, "c4": 0.56}, - {"time": 0.3, "x": 293.95, "y": 550.17, "curve": 0.306, "c2": 0.39, "c3": 0.628, "c4": 0.74}, {"time": 0.3167, "x": 340.35, "y": 482.44, "curve": 0.287, "c2": 0.62, "c3": 0.612}, - {"time": 0.3333, "x": 426.33, "y": 357.51}, {"time": 0.4167, "x": 340.52, "y": 373.76, "curve": 0, "c2": 0.17, "c3": 0.45, "c4": 0.61}, - {"time": 0.5, "x": 236.72, "y": 764.35, "curve": 0.323, "c2": 0.4, "c3": 0.681, "c4": 0.77}, {"time": 0.55, "x": -18.99, "y": 764.25, "curve": 0.377, "c2": 0.62, "c3": 0.724}, - {"time": 0.5833, "x": -86.72, "y": 646.17}, {"time": 0.6667, "x": 16.1, "y": 426.11}, {"time": 0.75, "x": 19.92, "y": 404.36, "curve": 0.255, "c3": 0.659, "c4": 0.47}, - {"time": 0.8333, "x": 90.31, "y": 343.4, "curve": 0.41, "c2": 0.34, "c3": 0.774, "c4": 0.71}, - {"time": 0.8833, "x": 202.62, "y": 235.31, "curve": 0.427, "c2": 0.37, "c3": 0.767, "c4": 0.71}, {"time": 0.9, "x": 290.37, "y": 171.88, "curve": 0.649, "c2": 0.4, "c4": 0.74}, - {"time": 0.9167, "x": 412.25, "y": 355.41}, {"time": 1.0833, "x": 345.67, "y": 359.46, "curve": 0, "c2": 0.17, "c3": 0.45, "c4": 0.61}, - {"time": 1.15, "x": 400.77, "y": 121.52, "curve": 0.345, "c2": 0.53, "c3": 0.751}, {"time": 1.2167, "x": 172.82, "y": 29.19, "curve": 0.306, "c4": 0.8}, {"time": 1.3333} + {"time": 0.1667, "x": -91.03, "y": 383.62, "curve": 0.313, "c3": 0.699}, {"time": 0.25, "x": 71.9, "y": 568.87, "curve": 0.474, "c3": 0.714, "c4": 0.56}, + {"time": 0.3, "x": 274.2, "y": 504.55, "curve": 0.306, "c2": 0.39, "c3": 0.628, "c4": 0.74}, {"time": 0.3167, "x": 313.79, "y": 451.12, "curve": 0.287, "c2": 0.62, "c3": 0.612}, + {"time": 0.3333, "x": 331.67, "y": 349.34}, {"time": 0.4167, "x": 331.67, "y": 354.84, "curve": 0, "c2": 0.17, "c3": 0.45, "c4": 0.61}, + {"time": 0.5, "x": 141.4, "y": 685.41, "curve": 0.323, "c2": 0.4, "c3": 0.681, "c4": 0.77}, {"time": 0.55, "x": -27.68, "y": 739.93, "curve": 0.377, "c2": 0.62, "c3": 0.724}, + {"time": 0.5833, "x": -93.67, "y": 643.85}, {"time": 0.6667, "x": 18.99, "y": 416.84}, {"time": 0.75, "x": 24.55, "y": 373.09, "curve": 0.255, "c3": 0.659, "c4": 0.47}, + {"time": 0.8333, "x": 142.42, "y": 283.76, "curve": 0.41, "c2": 0.34, "c3": 0.774, "c4": 0.71}, + {"time": 0.8833, "x": 202.04, "y": 226.63, "curve": 0.427, "c2": 0.37, "c3": 0.767, "c4": 0.71}, {"time": 0.9, "x": 283.42, "y": 177.09, "curve": 0.649, "c2": 0.4, "c4": 0.74}, + {"time": 0.9167, "x": 327.72, "y": 357.72, "curve": "stepped"}, {"time": 1.0833, "x": 327.72, "y": 357.72, "curve": 0, "c2": 0.17, "c3": 0.45, "c4": 0.61}, + {"time": 1.15, "x": 361.45, "y": 119.38, "curve": 0.345, "c2": 0.53, "c3": 0.751}, {"time": 1.2167, "x": 166.38, "y": 58.5, "curve": 0.313, "c3": 0.699}, {"time": 1.3333} ] }, "leg-back-left-IK": { "translate": [ - {"time": 0.0833, "x": 1.05, "y": 4.19, "curve": 0.344, "c3": 0.715, "c4": 0.45}, {"time": 0.1167, "x": 28.54, "y": 87, "curve": 0.589, "c2": 0.35, "c4": 0.75}, - {"time": 0.1667, "x": -101.24, "y": 155.59, "curve": 0.313, "c3": 0.699}, {"time": 0.25, "x": -446.46, "y": 186.66, "curve": 0.474, "c3": 0.714, "c4": 0.56}, - {"time": 0.3, "x": -509.64, "y": 364.51, "curve": 0.306, "c2": 0.39, "c3": 0.628, "c4": 0.74}, {"time": 0.3167, "x": -479.36, "y": 400.3, "curve": 0.287, "c2": 0.62, "c3": 0.612}, - {"time": 0.3333, "x": -473.08, "y": 343.1}, {"time": 0.4167, "x": -421.75, "y": 358.21, "curve": 0, "c2": 0.17, "c3": 0.45, "c4": 0.61}, - {"time": 0.5, "x": -502.28, "y": 409.04, "curve": 0.323, "c2": 0.4, "c3": 0.681, "c4": 0.77}, {"time": 0.55, "x": -357.82, "y": 309.09, "curve": 0.377, "c2": 0.62, "c3": 0.724}, - {"time": 0.5833, "x": -190.14, "y": 299.56}, {"time": 0.6667, "x": 28.01, "y": 424.39}, {"time": 0.75, "x": 15.55, "y": 419.34, "curve": 0.255, "c3": 0.659, "c4": 0.47}, - {"time": 0.8333, "x": 74.85, "y": 472.68, "curve": 0.41, "c2": 0.34, "c3": 0.774, "c4": 0.71}, - {"time": 0.8833, "x": 69.06, "y": 556.5, "curve": 0.427, "c2": 0.37, "c3": 0.767, "c4": 0.71}, {"time": 0.9, "x": 11.02, "y": 617.8, "curve": 0.649, "c2": 0.4, "c4": 0.74}, - {"time": 0.9167, "x": -407.64, "y": 352.01}, {"time": 1.0833, "x": -407.65, "y": 352.01, "curve": 0, "c2": 0.17, "c3": 0.45, "c4": 0.61}, - {"time": 1.15, "x": -101.44, "y": 524.93, "curve": 0.345, "c2": 0.53, "c3": 0.751}, {"time": 1.2167, "x": 63.56, "y": 378.89, "curve": 0, "c2": 0.1, "c3": 0.769}, {"time": 1.3333} + {"time": 0.0833, "curve": 0.344, "c3": 0.715, "c4": 0.45}, {"time": 0.1167, "x": 23.75, "y": 96.58, "curve": 0.589, "c2": 0.35, "c4": 0.75}, + {"time": 0.1667, "x": -126, "y": 104.86, "curve": 0.313, "c3": 0.699}, {"time": 0.25, "x": -417.04, "y": 255.78, "curve": 0.474, "c3": 0.714, "c4": 0.56}, + {"time": 0.3, "x": -400.79, "y": 386.51, "curve": 0.306, "c2": 0.39, "c3": 0.628, "c4": 0.74}, {"time": 0.3167, "x": -387.99, "y": 389.59, "curve": 0.287, "c2": 0.62, "c3": 0.612}, + {"time": 0.3333, "x": -372.12, "y": 336.33}, {"time": 0.4167, "x": -372.12, "y": 328.75, "curve": 0, "c2": 0.17, "c3": 0.45, "c4": 0.61}, + {"time": 0.5, "x": -408.65, "y": 427.65, "curve": 0.323, "c2": 0.4, "c3": 0.681, "c4": 0.77}, {"time": 0.55, "x": -330.75, "y": 377.9, "curve": 0.377, "c2": 0.62, "c3": 0.724}, + {"time": 0.5833, "x": -213.83, "y": 364.99}, {"time": 0.6667, "x": 28.01, "y": 424.39}, {"time": 0.75, "x": 22.32, "y": 405.24, "curve": 0.255, "c3": 0.659, "c4": 0.47}, + {"time": 0.8333, "x": 81.05, "y": 468.17, "curve": 0.41, "c2": 0.34, "c3": 0.774, "c4": 0.71}, + {"time": 0.8833, "x": 74.13, "y": 497.85, "curve": 0.427, "c2": 0.37, "c3": 0.767, "c4": 0.71}, {"time": 0.9, "x": 27.94, "y": 523.61, "curve": 0.649, "c2": 0.4, "c4": 0.74}, + {"time": 0.9167, "x": -347.46, "y": 340.34, "curve": "stepped"}, {"time": 1.0833, "x": -347.46, "y": 340.34, "curve": 0, "c2": 0.17, "c3": 0.45, "c4": 0.61}, + {"time": 1.15, "x": -53.06, "y": 456.83, "curve": 0.345, "c2": 0.53, "c3": 0.751}, {"time": 1.2167, "x": 70.73, "y": 376.2, "curve": 0, "c2": 0.1, "c3": 0.769}, {"time": 1.3333} ] }, "tail": { @@ -2468,7 +2540,7 @@ "@shadow": {"scale": [{"curve": 0.387, "c3": 0.314}, {"time": 0.6667, "x": 0.9, "y": 0.9, "curve": 0.387, "c3": 0.314}, {"time": 1.3333}]} } }, - "3317139533": { + "2905793214": { "slots": { "eyes": {"attachment": [{"time": 0.05, "name": "eyes-angry"}, {"time": 0.8333, "name": "eyes-shut"}, {"time": 0.9167, "name": "eyes"}]}, "mouth": {"attachment": [{"time": 0.05, "name": "mouth-bite"}, {"time": 0.3333, "name": "mouth-open"}, {"time": 0.75, "name": "mouth-bite"}, {"time": 0.9167, "name": "mouth"}]} @@ -2530,21 +2602,20 @@ }, "leg-front-left-IK": { "translate": [ - {"time": 0.25, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3167, "x": -192.09, "y": 31.17, "curve": "stepped"}, - {"time": 0.3333, "x": -219.56, "y": 3.98, "curve": 0.277, "c3": 0.849, "c4": 0.67}, {"time": 0.65, "x": -219.56, "y": 3.98, "curve": 0.641, "c2": 0.41, "c4": 0.76}, - {"time": 0.7, "x": -226.38, "y": 3.98, "curve": "stepped"}, {"time": 0.75, "x": -157.76, "curve": "stepped"}, {"time": 0.8333, "x": -157.76, "curve": 0.306, "c3": 0.695}, {"time": 1} + {"time": 0.25, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3167, "x": -192.09, "y": 31.17, "curve": "stepped"}, {"time": 0.3333, "x": -162.19, "curve": "stepped"}, + {"time": 0.7, "x": -162.19, "curve": "stepped"}, {"time": 0.75, "x": -180.48, "curve": "stepped"}, {"time": 0.8333, "x": -180.48, "curve": 0.313, "c3": 0.699}, {"time": 1} ] }, "leg-front-right-IK": { "translate": [ - {"time": 0.25, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3167, "x": -172.87, "y": 28.32, "curve": "stepped"}, {"time": 0.3333, "x": 295.89, "y": 8.85, "curve": "stepped"}, - {"time": 0.7, "x": 295.89, "y": 8.85, "curve": "stepped"}, {"time": 0.75, "x": -180.48, "curve": "stepped"}, {"time": 0.8333, "x": -180.48, "curve": 0.313, "c3": 0.699}, {"time": 1} + {"time": 0.25, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3167, "x": -172.87, "y": 28.32, "curve": "stepped"}, {"time": 0.3333, "x": 216.26, "curve": "stepped"}, + {"time": 0.7, "x": 216.26, "curve": "stepped"}, {"time": 0.75, "x": -180.48, "curve": "stepped"}, {"time": 0.8333, "x": -180.48, "curve": 0.313, "c3": 0.699}, {"time": 1} ] }, "leg-back-left-IK": { "translate": [ - {"time": 0.25, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3167, "x": -96.78, "y": 27.51, "curve": "stepped"}, {"time": 0.3333, "x": -542.14, "curve": "stepped"}, - {"time": 0.7, "x": -542.14, "curve": "stepped"}, {"time": 0.75, "x": -134.74, "curve": "stepped"}, {"time": 0.8333, "x": -134.74, "curve": 0.313, "c3": 0.699}, {"time": 1} + {"time": 0.25, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3167, "x": -96.78, "y": 27.51, "curve": "stepped"}, {"time": 0.3333, "x": -522.72, "curve": "stepped"}, + {"time": 0.7, "x": -522.72, "curve": "stepped"}, {"time": 0.75, "x": -134.74, "curve": "stepped"}, {"time": 0.8333, "x": -134.74, "curve": 0.313, "c3": 0.699}, {"time": 1} ] }, "@leg-back-left": { @@ -2554,7 +2625,7 @@ }, "events": [{"time": 0.3167, "name": "start-attack"}, {"time": 0.4333, "name": "hit"}, {"time": 0.5667, "name": "hit"}, {"time": 0.7, "name": "hit"}] }, - "3108617565": { + "3678751400": { "slots": { "eyes": {"attachment": [{"time": 0.0167, "name": "eyes-angry"}, {"time": 0.85, "name": "eyes-shut"}, {"time": 0.9333, "name": "eyes"}]}, "mouth": {"attachment": [{"time": 0.0167, "name": "mouth-bite"}, {"time": 0.1833, "name": "mouth-open"}, {"time": 0.5, "name": "mouth-bite"}, {"time": 0.9333, "name": "mouth"}]} @@ -2574,9 +2645,9 @@ }, "@leg-front-left": { "translate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "x": -2.77, "y": -2.64, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "x": -4.8, "y": 21.17, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": -0.53, "y": 0.11, "curve": 0, "c2": 0.2, "c3": 0.858}, {"time": 0.25, "x": -1, "y": -5.53, "curve": "stepped"}, - {"time": 0.7167, "x": -1, "y": -5.53, "curve": 0.464, "c4": 0.7}, {"time": 0.8333, "x": -2.17, "y": -17.49, "curve": 0.313, "c3": 0.699}, {"time": 1} + {"time": 0.7167, "x": -1, "y": -5.53, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.8333, "x": -2.17, "y": -17.49, "curve": 0.313, "c3": 0.699}, {"time": 1} ] }, "@leg-back-left": { @@ -2601,29 +2672,29 @@ "leg-front-right-IK": { "translate": [ {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 30.89, "y": 11.74, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": 42.9, "curve": 0, "c2": 0.2, "c3": 0.858}, - {"time": 0.25, "x": -172.87, "y": 28.32, "curve": 0, "c2": 0.3, "c3": 0.698}, {"time": 0.4667, "x": 261.69, "y": 187.13, "curve": 1, "c4": 0.1}, {"time": 0.5, "x": 166.41, "y": 465.39}, - {"time": 0.6667, "x": 101.69, "y": 451.97, "curve": "stepped"}, {"time": 0.7, "x": -101.81, "y": 172.32, "curve": "stepped"}, {"time": 0.7167} + {"time": 0.25, "x": -172.87, "y": 28.32, "curve": 0, "c2": 0.3, "c3": 0.698}, {"time": 0.4667, "x": 199.66, "y": 192.83, "curve": 1, "c4": 0.1}, {"time": 0.5, "x": 89.09, "y": 434.08}, + {"time": 0.6667, "x": 80.6, "y": 434.08, "curve": "stepped"}, {"time": 0.7, "x": -94.86, "y": 132.5, "curve": "stepped"}, {"time": 0.7167} ] }, "leg-back-left-IK": { "translate": [ - {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 80.9, "curve": 0.161, "c3": 0.854}, {"time": 0.1667, "x": 72.25, "curve": 0, "c2": 0.2, "c3": 0.858}, - {"time": 0.25, "x": -96.78, "y": 27.51, "curve": 0, "c2": 0.3, "c3": 0.698}, {"time": 0.4667, "x": -250.56, "y": 568.36, "curve": 1, "c4": 0.1}, {"time": 0.5, "x": -654.65, "y": 234.55}, - {"time": 0.6667, "x": -665.01, "y": 210.09, "curve": "stepped"}, {"time": 0.7, "x": -61.52, "y": -3.55, "curve": "stepped"}, {"time": 0.7167} + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 80.9, "curve": 0.161, "c3": 0.854}, {"time": 0.1667, "x": 49.4, "curve": 0, "c2": 0.2, "c3": 0.858}, + {"time": 0.25, "x": -96.78, "y": 27.51, "curve": 0, "c2": 0.3, "c3": 0.698}, {"time": 0.4667, "x": -198.14, "y": 564.33, "curve": 1, "c4": 0.1}, {"time": 0.5, "x": -540.11, "y": 265.13}, + {"time": 0.6667, "x": -537.68, "y": 265.13, "curve": "stepped"}, {"time": 0.7, "x": -58.81, "y": -31.78, "curve": "stepped"}, {"time": 0.7167} ] }, "@leg-front-right": { "translate": [ {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 4.31, "y": 11.86, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.1667, "x": -10.19, "y": -4.67, "curve": 0, "c2": 0.2, "c3": 0.858}, {"time": 0.25, "curve": "stepped"}, {"time": 0.7167, "curve": 0.464, "c4": 0.7}, - {"time": 0.8333, "x": -4.16, "y": -33.18, "curve": 0.313, "c3": 0.699}, {"time": 1} + {"time": 0.1667, "x": -10.19, "y": -4.67, "curve": 0, "c2": 0.2, "c3": 0.858}, {"time": 0.25, "x": -1.86, "y": -9.26, "curve": "stepped"}, + {"time": 0.7167, "x": -1.86, "y": -9.26, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.8333, "x": -4.16, "y": -33.18, "curve": 0.313, "c3": 0.699}, {"time": 1} ] }, "leg-front-left-IK": { "translate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "x": 42.22, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": 42.9, "curve": 0, "c2": 0.2, "c3": 0.858}, - {"time": 0.25, "x": -192.09, "y": 31.17, "curve": 0, "c2": 0.3, "c3": 0.698}, {"time": 0.4667, "x": -33.07, "y": 448.19, "curve": 1, "c4": 0.1}, {"time": 0.5, "x": -325.8, "y": 359.06}, - {"time": 0.6667, "x": -307.09, "y": 359.93, "curve": "stepped"}, {"time": 0.7, "x": -83.89, "y": 65.11, "curve": "stepped"}, {"time": 0.7167} + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "x": 8.25, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": 42.9, "curve": 0, "c2": 0.2, "c3": 0.858}, + {"time": 0.25, "x": -192.09, "y": 31.17, "curve": 0, "c2": 0.3, "c3": 0.698}, {"time": 0.4667, "x": 15.15, "y": 402.55, "curve": 1, "c4": 0.1}, {"time": 0.5, "x": -259.78, "y": 378.01}, + {"time": 0.6667, "x": -253.71, "y": 378.01, "curve": "stepped"}, {"time": 0.7, "x": -108.47, "y": 46.07, "curve": "stepped"}, {"time": 0.7167} ] }, "tail": { @@ -2642,7 +2713,7 @@ }, "events": [{"time": 0.4167, "name": "start-attack"}, {"time": 0.5, "name": "hit"}] }, - "519942130": { + "2662497262": { "slots": { "eyes": {"attachment": [{"time": 0.0167, "name": "eyes-angry"}, {"time": 0.9167, "name": "eyes"}]}, "mouth": {"attachment": [{"time": 0.0167, "name": "mouth-bite"}, {"time": 0.1833, "name": "mouth-open"}, {"time": 0.5, "name": "mouth-bite"}, {"time": 0.9167, "name": "mouth"}]} @@ -2666,51 +2737,49 @@ "leg-front-right-IK": { "translate": [ {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 30.89, "y": 11.74, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": 42.9, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.25, "x": -172.87, "y": 28.32, "curve": "stepped"}, {"time": 0.2667, "x": 224.47, "y": -9.31, "curve": "stepped"}, - {"time": 0.4833, "x": 224.47, "y": -9.31, "curve": "stepped"}, {"time": 0.5, "x": 219.47, "curve": "stepped"}, {"time": 0.6667, "x": 219.47, "curve": "stepped"}, - {"time": 0.7, "x": -152.3, "curve": "stepped"}, {"time": 0.8333, "x": -152.3, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1} + {"time": 0.25, "x": -172.87, "y": 28.32, "curve": "stepped"}, {"time": 0.2667, "x": 169.94, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.4833, "x": 160.13, "curve": "stepped"}, + {"time": 0.5, "x": 219.47, "curve": "stepped"}, {"time": 0.6667, "x": 219.47, "curve": "stepped"}, {"time": 0.7, "x": -152.3, "curve": "stepped"}, + {"time": 0.8333, "x": -152.3, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1} ] }, "leg-front-left-IK": { "translate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "x": 43.18, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": 42.9, "y": -3.49, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.25, "x": -192.09, "y": 31.17, "curve": "stepped"}, {"time": 0.2667, "x": -277.01, "y": 66.37, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.4833, "x": -274.01, "y": 75.85, "curve": "stepped"}, {"time": 0.5, "x": -170.67, "curve": "stepped"}, {"time": 0.6667, "x": -170.67, "curve": "stepped"}, - {"time": 0.7, "x": -151.12, "curve": "stepped"}, {"time": 0.8333, "x": -151.12, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1} + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "x": 8.25, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": 42.9, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.25, "x": -192.09, "y": 31.17, "curve": "stepped"}, {"time": 0.2667, "x": -197.17, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.4833, "x": -206.28, "curve": "stepped"}, + {"time": 0.5, "x": -170.67, "curve": "stepped"}, {"time": 0.6667, "x": -170.67, "curve": "stepped"}, {"time": 0.7, "x": -151.12, "curve": "stepped"}, + {"time": 0.8333, "x": -151.12, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1} ] }, "@leg-front-left": { "translate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "x": -2.8, "y": -2.2, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.1667, "x": -0.62, "y": -3.38, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "x": -1, "y": -5.53, "curve": "stepped"}, - {"time": 0.2667, "x": 4, "y": -0.66, "curve": "stepped"}, {"time": 0.4833, "x": 4, "y": -0.66, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.5, "x": 4.53, "y": 2.49, "curve": "stepped"}, {"time": 0.6667, "x": 4.53, "y": 2.49, "curve": "stepped"}, - {"time": 0.7, "x": -1, "y": -5.53, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.8333, "x": -0.91, "y": -4.54, "curve": 0.315, "c4": 0.8}, {"time": 1} + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "x": -4.8, "y": 21.17, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.1667, "x": -0.53, "y": 0.11, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "x": -1, "y": -5.53, "curve": "stepped"}, + {"time": 0.2667, "x": 2.26, "y": 14.19, "curve": "stepped"}, {"time": 0.4833, "x": 2.26, "y": 14.19, "curve": "stepped"}, {"time": 0.5, "x": 3.58, "y": 7.39, "curve": "stepped"}, + {"time": 0.6667, "x": 3.58, "y": 7.39, "curve": "stepped"}, {"time": 0.7, "x": -1, "y": -5.53, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.8333, "x": -0.91, "y": -4.54, "curve": 0.315, "c4": 0.8}, {"time": 1} ] }, "@leg-back-left": { "translate": [ - {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 0.67, "y": -7.85, "curve": 0.161, "c3": 0.854}, {"time": 0.1667, "x": 0.61, "y": -9.9, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.25, "curve": "stepped"}, {"time": 0.2667, "x": -1.82, "y": 0.09}, {"time": 0.4833, "x": -6.6, "y": 4.03, "curve": "stepped"}, - {"time": 0.5, "x": 10.86, "y": -7.65, "curve": "stepped"}, {"time": 0.6667, "x": 10.86, "y": -7.65, "curve": "stepped"}, {"time": 0.7} + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 0.67, "y": -7.85, "curve": 0.161, "c3": 0.854}, {"time": 0.1667, "x": 0.53, "y": -13.09, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.25, "curve": "stepped"}, {"time": 0.2667, "x": 10.26, "y": 0.56, "curve": "stepped"}, {"time": 0.6667, "x": 10.26, "y": 0.56, "curve": "stepped"}, {"time": 0.7} ] }, "leg-back-left-IK": { "translate": [ - {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 80.9, "curve": 0.161, "c3": 0.854}, {"time": 0.1667, "x": 72.57, "y": -3.2, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.25, "x": -106.8, "y": 17.49, "curve": "stepped"}, {"time": 0.2667, "x": -654.94, "y": 154.36, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.4833, "x": -669.36, "y": 180.24, "curve": "stepped"}, {"time": 0.5, "x": -541.29, "y": -24.41, "curve": "stepped"}, - {"time": 0.6667, "x": -541.29, "y": -24.41, "curve": "stepped"}, {"time": 0.7, "x": -130.76, "curve": "stepped"}, {"time": 0.8333, "x": -130.76, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 1} + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 80.9, "curve": 0.161, "c3": 0.854}, {"time": 0.1667, "x": 49.4, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.25, "x": -96.78, "y": 27.51, "curve": "stepped"}, {"time": 0.2667, "x": -579.56, "y": 123.51, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.4833, "x": -583.99, "y": 134.19, "curve": "stepped"}, {"time": 0.5, "x": -508.12, "curve": "stepped"}, {"time": 0.6667, "x": -508.12, "curve": "stepped"}, + {"time": 0.7, "x": -130.76, "curve": "stepped"}, {"time": 0.8333, "x": -130.76, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1} ] }, "@leg-front-right": { "translate": [ {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 4.31, "y": 11.86, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": -10.19, "y": -4.67, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "x": -1.86, "y": -9.26, "curve": "stepped"}, - {"time": 0.2667, "x": -5.58, "y": 2.65, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.4833, "x": -3.84, "y": 7.68, "curve": "stepped"}, - {"time": 0.5, "x": -8.1, "y": 29.66, "curve": "stepped"}, {"time": 0.6667, "x": -8.1, "y": 29.66, "curve": "stepped"}, - {"time": 0.7, "x": -1.86, "y": -9.26, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.8333, "x": -2.25, "y": -13.72, "curve": 0.315, "c4": 0.8}, {"time": 1} + {"time": 0.2667, "x": -3.84, "y": 7.68, "curve": "stepped"}, {"time": 0.4833, "x": -3.84, "y": 7.68, "curve": "stepped"}, {"time": 0.5, "x": -8.1, "y": 29.66, "curve": "stepped"}, + {"time": 0.6667, "x": -8.1, "y": 29.66, "curve": "stepped"}, {"time": 0.7, "x": -1.86, "y": -9.26, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.8333, "x": -2.25, "y": -13.72, "curve": 0.315, "c4": 0.8}, {"time": 1} ] }, "@shadow": { @@ -2739,7 +2808,7 @@ }, "events": [{"time": 0.3333, "name": "start-attack"}, {"time": 0.5, "name": "hit"}] }, - "628713175": { + "2102433122": { "slots": { "eyes": {"attachment": [{"time": 0.05, "name": "eyes-angry"}, {"time": 0.6667, "name": "eyes-shut"}, {"time": 0.75, "name": "eyes"}]}, "mouth": {"attachment": [{"time": 0.05, "name": "mouth-bite"}, {"time": 0.2667, "name": "mouth-open"}, {"time": 0.55, "name": "mouth-bite"}, {"time": 0.75, "name": "mouth"}]} @@ -2747,9 +2816,9 @@ "bones": { "@leg-front-right": { "translate": [ - {"curve": 0, "c2": 0.4, "c3": 0.383}, {"time": 0.25, "x": -2.2, "y": -15.65, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3167, "x": -1.86, "y": -9.26, "curve": "stepped"}, - {"time": 0.3333, "x": -2.24, "y": 13.67, "curve": "stepped"}, {"time": 0.5333, "x": -2.24, "y": 13.67, "curve": "stepped"}, - {"time": 0.55, "x": -2.12, "y": 6.47, "curve": 0.313, "c3": 0.699}, {"time": 0.6667, "x": -3.13, "y": -23.62, "curve": 0, "c2": 0.3, "c3": 0.54}, {"time": 0.8333} + {"curve": 0, "c2": 0.4, "c3": 0.383}, {"time": 0.25, "x": -1.86, "y": -9.26, "curve": "stepped"}, {"time": 0.3167, "x": -1.86, "y": -9.26, "curve": "stepped"}, + {"time": 0.3333, "x": -2.24, "y": 13.67, "curve": "stepped"}, {"time": 0.55, "x": -2.24, "y": 13.67, "curve": 0.313, "c3": 0.699}, + {"time": 0.6667, "x": -1.86, "y": -9.26, "curve": 0.313, "c3": 0.699}, {"time": 0.8333} ] }, "tail": { @@ -2798,16 +2867,14 @@ }, "leg-front-right-IK": { "translate": [ - {"time": 0.25, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3167, "x": -172.87, "y": 28.32, "curve": "stepped"}, {"time": 0.3333, "x": 301.16, "y": 16.82, "curve": 0.31, "c4": 0.8}, - {"time": 0.5, "x": 285.54, "y": 12.82, "curve": "stepped"}, {"time": 0.55, "x": -180.48, "curve": "stepped"}, {"time": 0.6667, "x": -180.48, "curve": 0.313, "c3": 0.699}, - {"time": 0.8333} + {"time": 0.25, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3167, "x": -172.87, "y": 28.32, "curve": "stepped"}, {"time": 0.3333, "x": 216.26, "curve": 0.31, "c4": 0.8}, + {"time": 0.5, "x": 201.43, "curve": "stepped"}, {"time": 0.55, "x": -180.48, "curve": "stepped"}, {"time": 0.6667, "x": -180.48, "curve": 0.313, "c3": 0.699}, {"time": 0.8333} ] }, "leg-back-left-IK": { "translate": [ - {"time": 0.25, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3167, "x": -91.18, "y": 21.9, "curve": "stepped"}, {"time": 0.3333, "x": -595.64, "y": 5, "curve": 0.31, "c4": 0.8}, - {"time": 0.5, "x": -626.51, "y": 11.36, "curve": "stepped"}, {"time": 0.55, "x": -134.74, "curve": "stepped"}, {"time": 0.6667, "x": -134.74, "curve": 0.313, "c3": 0.699}, - {"time": 0.8333} + {"time": 0.25, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3167, "x": -96.78, "y": 27.51, "curve": "stepped"}, {"time": 0.3333, "x": -522.72, "curve": 0.31, "c4": 0.8}, + {"time": 0.5, "x": -528.43, "curve": "stepped"}, {"time": 0.55, "x": -134.74, "curve": "stepped"}, {"time": 0.6667, "x": -134.74, "curve": 0.313, "c3": 0.699}, {"time": 0.8333} ] }, "@pivot-main": {"translate": [{"time": 0.6667, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.75, "y": 31, "curve": 0.315, "c4": 0.8}, {"time": 0.8333}]}, @@ -2871,749 +2938,935 @@ } } }, - "3850719809": { + "568166623": { "slots": { - "eyes": {"attachment": [{"time": 0.0167, "name": "eyes-angry"}, {"time": 0.75, "name": "eyes-shut"}, {"time": 0.8333, "name": "eyes"}]}, - "leg-back-left": {"attachment": [{"time": 0.35, "name": "summer-leg-back-left-long"}, {"time": 0.5833, "name": "summer-leg-back-left"}]}, - "mouth": {"attachment": [{"time": 0.0167, "name": "mouth-bite"}, {"time": 0.2667, "name": "mouth-open"}, {"time": 0.5833, "name": "mouth-bite"}, {"time": 0.8333, "name": "mouth"}]} + "eyes": {"attachment": [{"time": 1, "name": "eyes-shut"}, {"time": 1.0833, "name": "eyes"}]}, + "mouth": {"attachment": [{"time": 0.2, "name": "mouth-blink"}, {"time": 0.3333, "name": "mouth"}]}, + "tail-glow": {"attachment": [{"time": 0.3333, "name": "tail-glow-01"}, {"time": 0.4667, "name": "tail-glow-02"}, {"time": 0.6, "name": "tail-glow-03"}, {"time": 0.7333, "name": null}]} }, "bones": { "@pivot-back": { "rotate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "angle": -3.92, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "angle": 2.51, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.3333, "angle": -6, "curve": "stepped"}, {"time": 0.35, "angle": -16}, {"time": 0.5667, "angle": -16.5, "curve": "stepped"}, {"time": 0.5833, "curve": 0.313, "c3": 0.699}, - {"time": 0.75, "angle": 6, "curve": 0.313, "c3": 0.699}, {"time": 0.9167} + {"curve": 0.313, "c3": 0.699}, {"time": 0.3333, "angle": 2.04, "curve": 0.313, "c3": 0.699}, {"time": 0.6667, "curve": 0.313, "c3": 0.699}, + {"time": 1, "angle": 1.79, "curve": 0.313, "c3": 0.699}, {"time": 1.3333} ], "translate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "x": 71.93, "y": -12.95, "curve": "stepped"}, {"time": 0.25, "x": 71.93, "y": -12.95, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.3333, "x": -135.5, "curve": "stepped"}, {"time": 0.35, "x": -560.54, "y": 85.29}, {"time": 0.5667, "x": -562.89, "y": 81.57, "curve": "stepped"}, - {"time": 0.5833, "x": -151.24, "curve": 0.313, "c3": 0.699}, {"time": 0.75, "x": -151.24, "y": 4.06, "curve": 0.313, "c3": 0.699}, {"time": 0.9167} + {"curve": 0.313, "c3": 0.699}, {"time": 0.3333, "y": -6.53, "curve": 0.313, "c3": 0.699}, {"time": 0.6667, "curve": 0.313, "c3": 0.699}, + {"time": 1, "y": -8.86, "curve": 0.313, "c3": 0.699}, {"time": 1.3333} ], - "scale": [{"time": 0.3333, "curve": "stepped"}, {"time": 0.35, "x": -1, "curve": "stepped"}, {"time": 0.5667, "x": -1, "curve": "stepped"}, {"time": 0.5833}] + "scale": [{"curve": 0.313, "c3": 0.699}, {"time": 0.6667, "y": 0.99, "curve": 0.313, "c3": 0.699}, {"time": 1.3333}] }, - "@shadow": { + "@leg-front-right": { "translate": [ - {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 61.96, "curve": "stepped"}, {"time": 0.25, "x": 61.96, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.3333, "x": -143.36, "curve": "stepped"}, {"time": 0.35, "x": -143.36}, {"time": 0.5667, "x": -157.56, "curve": "stepped"}, {"time": 0.5833, "x": -161.35, "curve": "stepped"}, - {"time": 0.75, "x": -161.35, "curve": 0.313, "c3": 0.699}, {"time": 0.9167} + {"curve": 0.313, "c3": 0.699}, {"time": 0.3333, "x": 0.02, "y": -16.89, "curve": 0.313, "c3": 0.699}, {"time": 0.6667, "x": -0.04, "y": 2.46, "curve": 0.313, "c3": 0.699}, + {"time": 1, "x": -0.02, "y": -18.9, "curve": 0.313, "c3": 0.699}, {"time": 1.3333} + ] + }, + "@leg-front-left": { + "translate": [ + {"curve": 0.313, "c3": 0.699}, {"time": 0.3333, "x": 0.22, "y": -5.13, "curve": 0.313, "c3": 0.699}, {"time": 0.6667, "x": -0.03, "y": 1.81, "curve": 0.313, "c3": 0.699}, + {"time": 1, "x": 0.2, "y": -7.06, "curve": 0.313, "c3": 0.699}, {"time": 1.3333} ], "scale": [ - {"time": 0.0833, "curve": 0, "c2": 0.26, "c3": 0.369, "c4": 0.62}, {"time": 0.25, "x": 1.06, "y": 1.06, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "curve": "stepped"}, - {"time": 0.35}, {"time": 0.5667, "x": 1.08, "y": 1.08, "curve": "stepped"}, {"time": 0.5833, "curve": 0.313, "c3": 0.699}, - {"time": 0.75, "x": 1.08, "y": 1.08, "curve": 0.313, "c3": 0.699}, {"time": 0.9167} + {"curve": 0.313, "c3": 0.699}, {"time": 0.3333, "x": 0.905, "curve": 0.313, "c3": 0.699}, {"time": 0.6667, "curve": 0.313, "c3": 0.699}, + {"time": 1, "x": 0.905, "curve": 0.313, "c3": 0.699}, {"time": 1.3333} ] }, - "leg-back-left-IK": { + "@leg-back-left": { "translate": [ - {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.1333, "x": 80.9, "curve": 0.161, "c3": 0.854}, {"time": 0.25, "x": 62.82, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.3333, "x": -99.34, "y": 18.56, "curve": "stepped"}, {"time": 0.35, "x": -653.9, "y": 153.81}, {"time": 0.5667, "x": -653.9, "y": 167.85, "curve": "stepped"}, - {"time": 0.5833, "x": -134.74, "curve": "stepped"}, {"time": 0.75, "x": -134.74, "curve": 0.313, "c3": 0.699}, {"time": 0.9167} + {"curve": 0.313, "c3": 0.699}, {"time": 0.3333, "x": 0.22, "y": -4.11, "curve": 0.313, "c3": 0.699}, {"time": 0.6667, "x": -0.03, "y": 1.69, "curve": 0.313, "c3": 0.699}, + {"time": 1, "x": 0.2, "y": -5.68, "curve": 0.313, "c3": 0.699}, {"time": 1.3333} + ], + "scale": [ + {"curve": 0.313, "c3": 0.699}, {"time": 0.3333, "x": 0.943, "curve": 0.313, "c3": 0.699}, {"time": 0.6667, "curve": 0.313, "c3": 0.699}, + {"time": 1, "x": 0.943, "curve": 0.313, "c3": 0.699}, {"time": 1.3333} ] }, - "leg-front-right-IK": { - "translate": [ - {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 22.35, "curve": 0.306, "c3": 0.695}, {"time": 0.25, "x": 42.9, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.3333, "x": -131.73, "y": 44.58, "curve": "stepped"}, {"time": 0.35, "x": 244.36, "y": -4.92, "curve": 0.31, "c4": 0.8}, - {"time": 0.5667, "x": 247.43, "y": -1.85, "curve": "stepped"}, {"time": 0.5833, "x": -180.48, "curve": "stepped"}, {"time": 0.75, "x": -180.48, "curve": 0.313, "c3": 0.699}, - {"time": 0.9167} + "@pivot-main": { + "scale": [ + {"curve": 0.313, "c3": 0.699}, {"time": 0.3333, "y": 0.98, "curve": 0.313, "c3": 0.699}, {"time": 0.6667, "curve": 0.313, "c3": 0.699}, + {"time": 1, "y": 0.98, "curve": 0.313, "c3": 0.699}, {"time": 1.3333} ] }, - "leg-front-left-IK": { + "tail": { + "rotate": [{"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "angle": 4.54, "curve": 0.313, "c3": 0.699}, {"time": 1, "angle": -9.06, "curve": 0.313, "c3": 0.699}, {"time": 1.3333}] + }, + "back": { + "rotate": [{"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "angle": -4.27, "curve": 0.313, "c3": 0.699}, {"time": 1, "angle": 2.83, "curve": 0.313, "c3": 0.699}, {"time": 1.3333}] + }, + "ear-right": {"rotate": [{"curve": 0.461, "c3": 0.543}, {"time": 0.6667, "angle": -1.95, "curve": 0.461, "c3": 0.543}, {"time": 1.3333}]}, + "ear-left": {"rotate": [{"curve": 0.461, "c3": 0.543}, {"time": 0.6667, "angle": -1.95, "curve": 0.461, "c3": 0.543}, {"time": 1.3333}]}, + "@shadow": { + "scale": [ + {"curve": 0.306, "c3": 0.695}, {"time": 0.3333, "x": 1.05, "y": 1.05, "curve": 0.306, "c3": 0.695}, {"time": 0.6667, "curve": 0.306, "c3": 0.695}, + {"time": 1, "x": 1.05, "y": 1.05, "curve": 0.306, "c3": 0.695}, {"time": 1.3333} + ] + }, + "body-bell": { + "rotate": [{"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "angle": -10, "curve": 0.384, "c3": 0.31}, {"time": 1, "angle": 10, "curve": 0.154, "c4": 0.9}, {"time": 1.3333}] + } + } + }, + "3151577093": { + "slots": { + "eyes": {"attachment": [{"time": 0.1, "name": "eyes-shut"}, {"time": 1, "name": "eyes"}]}, + "leg-back-left": {"attachment": [{"time": 0.0667, "name": "xmas-leg-back-left-long"}, {"time": 0.9, "name": "xmas-leg-back-left"}]} + }, + "bones": { + "@pivot-back": { + "rotate": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "angle": -18, "curve": 0.317, "c3": 0.693}, {"time": 0.3333, "angle": -17, "curve": 0.317, "c3": 0.693}, + {"time": 0.5, "angle": -18, "curve": 0.317, "c3": 0.693}, {"time": 0.6667, "angle": -17, "curve": 0.317, "c3": 0.693}, {"time": 0.8333, "angle": -18, "curve": 0.317, "c3": 0.693}, + {"time": 1.0833} + ], "translate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "x": 40.76, "y": 5.08, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "x": 49, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.3333, "x": -180.92, "y": 40.32, "curve": "stepped"}, {"time": 0.35, "x": -197.17}, {"time": 0.5667, "x": -230.7, "y": 4.81, "curve": "stepped"}, - {"time": 0.5833, "x": -180.48, "curve": "stepped"}, {"time": 0.75, "x": -180.48, "curve": 0.313, "c3": 0.699}, {"time": 0.9167} + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": 33.94, "y": -52, "curve": "stepped"}, {"time": 0.8333, "x": 33.94, "y": -52, "curve": 0.317, "c3": 0.693}, {"time": 1.0833} ] }, "@leg-front-left": { "translate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "x": -2.9, "y": -1.1, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.25, "x": -0.62, "y": -3.44, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "x": -1, "y": -5.53, "curve": "stepped"}, {"time": 0.35, "x": 4.4, "y": -4.91}, - {"time": 0.5667, "x": 7.49, "y": -5.17, "curve": "stepped"}, {"time": 0.5833, "x": 18.69, "y": 1.85, "curve": "stepped"}, - {"time": 0.75, "x": 18.69, "y": 1.85, "curve": 0.306, "c3": 0.695}, {"time": 0.9167} + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": -27.99, "y": 1.7, "curve": 0.25, "c3": 0.75}, {"time": 0.3333, "x": -26.93, "y": -1.56, "curve": 0.25, "c3": 0.75}, + {"time": 0.5, "x": -27.99, "y": 1.7, "curve": 0.25, "c3": 0.75}, {"time": 0.6667, "x": -26.93, "y": -1.56, "curve": 0.25, "c3": 0.75}, + {"time": 0.8333, "x": -27.99, "y": 1.7, "curve": 0.317, "c3": 0.693}, {"time": 1.0833} ] }, "@leg-front-right": { "translate": [ - {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 4.31, "y": 11.86, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.25, "x": -10.48, "y": -15.33, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "x": -3.15, "y": 1.33, "curve": "stepped"}, {"time": 0.35, "x": -3.84, "y": 7.68}, - {"time": 0.5667, "x": -3.53, "y": 9.04, "curve": "stepped"}, {"time": 0.5833, "x": -2.24, "y": 13.67, "curve": 0.313, "c3": 0.699}, - {"time": 0.75, "x": -2.69, "y": -18.63, "curve": 0.313, "c3": 0.699}, {"time": 0.9167} + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": -84.32, "y": 39.72, "curve": 0.317, "c3": 0.693}, {"time": 0.3333, "x": -82.71, "y": 34.75, "curve": 0.317, "c3": 0.693}, + {"time": 0.5, "x": -84.32, "y": 39.72, "curve": 0.317, "c3": 0.693}, {"time": 0.6667, "x": -82.71, "y": 34.75, "curve": 0.317, "c3": 0.693}, + {"time": 0.8333, "x": -84.32, "y": 39.72, "curve": 0.317, "c3": 0.693}, {"time": 1.0833} ] }, - "@leg-back-left": { + "leg-front-right-IK": { + "translate": [{"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": 40.32, "curve": "stepped"}, {"time": 0.8333, "x": 40.32, "curve": 0.317, "c3": 0.693}, {"time": 1.0833}] + }, + "leg-front-left-IK": { + "translate": [{"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": 26.51, "curve": "stepped"}, {"time": 0.8333, "x": 26.51, "curve": 0.317, "c3": 0.693}, {"time": 1.0833}] + }, + "leg-back-left-IK": { "translate": [ - {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.1333, "x": 0.67, "y": -7.85, "curve": 0.161, "c3": 0.854}, {"time": 0.25, "x": 0.74, "y": -5.43, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.3333, "x": -0.54, "y": 4.44, "curve": "stepped"}, {"time": 0.35, "x": 10.26, "y": 0.56, "curve": "stepped"}, {"time": 0.5667, "x": 10.26, "y": 0.56, "curve": "stepped"}, - {"time": 0.5833} + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": -30.93, "y": 88.63, "curve": 0.617, "c4": 0.6}, {"time": 0.2667, "x": -62.81, "y": 72.23, "curve": 0, "c2": 0.4, "c3": 0.383}, + {"time": 0.35, "x": -28.19, "y": 96.83, "curve": 0.617, "c4": 0.6}, {"time": 0.45, "x": -62.81, "y": 72.23, "curve": 0, "c2": 0.4, "c3": 0.383}, + {"time": 0.55, "x": -28.19, "y": 96.83, "curve": 0.617, "c4": 0.6}, {"time": 0.6333, "x": -62.81, "y": 72.23, "curve": 0, "c2": 0.4, "c3": 0.383}, + {"time": 0.7333, "x": -28.19, "y": 96.83, "curve": 0.434, "c3": 0.739, "c4": 0.4}, {"time": 0.8333, "x": -56.92, "y": 76.7, "curve": 0.223, "c2": 0.33, "c3": 0.336}, {"time": 1.0833} ] }, "tail": { "rotate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "angle": 15.61, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "angle": 20.44, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.3333, "angle": -15.58, "curve": "stepped"}, {"time": 0.35, "angle": 30.35}, {"time": 0.5667, "angle": 35.35, "curve": "stepped"}, - {"time": 0.5833, "angle": -11.84, "curve": 0.313, "c3": 0.699}, {"time": 0.75, "angle": 16.95, "curve": 0.313, "c3": 0.699}, {"time": 0.9167} + {"curve": 0, "c2": 0.3, "c3": 0.546}, {"time": 0.1667, "angle": 25.35, "curve": 0.317, "c3": 0.693}, {"time": 0.3333, "angle": 33.35, "curve": 0.317, "c3": 0.693}, + {"time": 0.5, "angle": 25.35, "curve": 0.317, "c3": 0.693}, {"time": 0.6667, "angle": 33.35, "curve": 0.317, "c3": 0.693}, + {"time": 0.9167, "angle": 25.35, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 1.0833} ] }, - "@pivot-main": { - "translate": [{"time": 0.75, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.8333, "y": 31, "curve": 0.315, "c4": 0.8}, {"time": 0.9167}], - "scale": [{"time": 0.5667, "curve": "stepped"}, {"time": 0.75, "y": 0.98, "curve": 0.154, "c4": 0.9}, {"time": 0.9167}] + "@shadow": { + "translate": [{"curve": 0, "c2": 0.3, "c3": 0.546}, {"time": 0.1667, "x": 32.73, "curve": "stepped"}, {"time": 0.8333, "x": 32.73, "curve": 0.317, "c3": 0.693}, {"time": 1.0833}], + "scale": [ + {"time": 0.1667, "curve": 0.317, "c3": 0.693}, {"time": 0.25, "x": 1.02, "y": 1.02, "curve": 0.317, "c3": 0.693}, {"time": 0.3333, "curve": 0.317, "c3": 0.693}, + {"time": 0.4167, "x": 1.02, "y": 1.02, "curve": 0.317, "c3": 0.693}, {"time": 0.5, "curve": 0.317, "c3": 0.693}, {"time": 0.5833, "x": 1.02, "y": 1.02, "curve": 0.317, "c3": 0.693}, + {"time": 0.6667, "curve": 0.317, "c3": 0.693}, {"time": 0.8333, "x": 1.02, "y": 1.02, "curve": 0.317, "c3": 0.693}, {"time": 1.0833} + ] } }, - "drawOrder": [{"time": 0.35, "offsets": [{"slot": "leg-back-left", "offset": 1}]}, {"time": 0.5833}], - "events": [{"time": 0.35, "name": "start-attack"}, {"time": 0.5667, "name": "start-attack"}] + "drawOrder": [{"time": 0.0667, "offsets": [{"slot": "leg-back-left", "offset": 5}]}, {"time": 0.9}] }, - "4086061935": { + "378584637": { + "slots": { + "eyes": {"attachment": [{"name": "eyes-happy"}]}, + "leg-back-left": {"attachment": [{"time": 0.2833, "name": "xmas-leg-back-left-stretch"}, {"time": 0.7167, "name": "xmas-leg-back-left"}]}, + "leg-front-left": {"attachment": [{"time": 0.2833, "name": "xmas-leg-front-left-stretch"}, {"time": 0.6333, "name": "xmas-leg-front-left"}]}, + "leg-front-right": {"attachment": [{"time": 0.2833, "name": "xmas-leg-front-right-stretch"}, {"time": 0.6333, "name": "xmas-leg-front-right"}]} + }, "bones": { - "ear-left-bubble-02": { - "rotate": [ - {"angle": 22.65, "curve": 0.381, "c2": 0.59, "c3": 0.73}, {"time": 0.3833, "angle": 35.68, "curve": 0.308, "c3": 0.643, "c4": 0.35}, - {"time": 0.5, "angle": 33.83, "curve": 0.285, "c2": 0.15, "c3": 0.754}, {"time": 1.7167, "angle": -21.58, "curve": 0.282, "c3": 0.624, "c4": 0.39}, - {"time": 2, "angle": -13.53, "curve": 0.315, "c2": 0.27, "c3": 0.653, "c4": 0.62}, {"time": 2.2167, "angle": -2.35, "curve": 0.331, "c2": 0.33, "c3": 0.682, "c4": 0.71}, - {"time": 2.6667, "angle": 22.65} - ], + "@leg-front-left": { "translate": [ - {"x": -10.33, "y": -0.67, "curve": 0.364, "c2": 0.64, "c3": 0.701}, {"time": 0.1667, "x": -11, "y": -0.72, "curve": 0.276, "c3": 0.621, "c4": 0.4}, - {"time": 0.5, "x": -8.97, "y": -0.59, "curve": 0.333, "c2": 0.33, "c3": 0.758}, {"time": 1.5, "curve": 0.26, "c3": 0.618, "c4": 0.44}, - {"time": 2, "x": -3.69, "y": -0.24, "curve": 0.343, "c2": 0.37, "c3": 0.715, "c4": 0.83}, {"time": 2.6667, "x": -10.33, "y": -0.67} + {"x": -14.55, "y": -2.39, "curve": 0.374, "c2": 0.33, "c3": 0.72, "c4": 0.68}, {"time": 0.0333, "x": -24.69, "y": -4.71, "curve": 0.37, "c2": 0.57, "c3": 0.746}, + {"time": 0.1667, "x": -24.61, "y": -1.31, "curve": 0.37, "c2": 0.57, "c3": 0.746}, {"time": 0.3333, "x": 13.45, "y": -27.72, "curve": 0.345, "c2": 0.53, "c3": 0.751}, + {"time": 0.4833, "x": 40.66, "y": -4.9, "curve": 0.262, "c3": 0.63, "c4": 0.42}, {"time": 0.5667, "x": 49.25, "y": 8.32, "curve": 0.343, "c2": 0.3, "c3": 0.688, "c4": 0.65}, + {"time": 0.7, "x": 9.23, "y": 17.43, "curve": 0.255, "c3": 0.659, "c4": 0.47}, {"time": 0.75, "x": -14.55, "y": -2.39} + ], + "scale": [ + {"curve": 0.459, "c2": 0.59, "c3": 0.838}, {"time": 0.0333, "x": 0.935, "curve": 0.331, "c3": 0.677, "c4": 0.4}, {"time": 0.0667, "x": 0.87, "curve": 0.464, "c4": 0.7}, {"time": 0.1667} ] }, - "ear-left-bubble-03": { + "leg-front-left-IK": { "translate": [ - {"x": -7.97, "y": -0.52, "curve": 0.356, "c2": 0.41, "c3": 0.711, "c4": 0.82}, {"time": 0.5, "x": -20.65, "y": -1.35, "curve": 0.364, "c2": 0.64, "c3": 0.701}, - {"time": 0.6667, "x": -22.49, "y": -1.47, "curve": 0.25, "c3": 0.75}, {"time": 2, "x": 6.85, "y": 0.45, "curve": 0.25, "c3": 0.625, "c4": 0.5}, {"time": 2.6667, "x": -7.97, "y": -0.52} + {"x": 0.33, "y": 2.27, "curve": 0.154, "c4": 0.9}, {"time": 0.0833, "x": 32.98, "y": -4.28, "curve": 0.269, "c2": 0.57, "c3": 0.577}, + {"time": 0.1667, "x": 53.3, "y": 2.35, "curve": 0.461, "c3": 0.543}, {"time": 0.4167, "x": -85.44, "y": 106.83, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.5167, "x": -85.78, "y": 86.09, "curve": 0.143, "c3": 0.57, "c4": 0.46}, {"time": 0.7, "x": -26.89, "y": 8.67, "curve": 0, "c2": 0.09, "c3": 0.479, "c4": 0.56}, + {"time": 0.75, "x": 0.33, "y": 2.27} ] }, - "ear-left-bubble-04": { - "rotate": [ - {"angle": 20.89, "curve": 0.276, "c2": 0.11, "c3": 0.632, "c4": 0.53}, {"time": 0.5, "angle": -3.68, "curve": 0.368, "c2": 0.47, "c3": 0.753}, - {"time": 1.25, "angle": -39.49, "curve": 0.247, "c3": 0.632, "c4": 0.53}, {"time": 2, "angle": -3.61, "curve": 0.338, "c2": 0.35, "c3": 0.674, "c4": 0.69}, - {"time": 2.15, "angle": 5.18, "curve": 0.382, "c2": 0.57, "c3": 0.734}, {"time": 2.5833, "angle": 21.99, "curve": 0.314, "c3": 0.649, "c4": 0.35}, {"time": 2.6667, "angle": 20.89} - ], + "leg-back-left-IK": { "translate": [ - {"x": -1.2, "y": -0.08, "curve": 0.299, "c2": 0.22, "c3": 0.654, "c4": 0.62}, {"time": 0.5, "x": -6.5, "y": -0.42, "curve": 0.379, "c2": 0.52, "c3": 0.747}, - {"time": 1.1, "x": -11.49, "y": -0.75, "curve": 0.243, "c3": 0.65, "c4": 0.61}, {"time": 2, "x": -3.14, "y": -0.2, "curve": 0.382, "c2": 0.57, "c3": 0.734}, - {"time": 2.4333, "curve": 0.289, "c3": 0.628, "c4": 0.38}, {"time": 2.6667, "x": -1.2, "y": -0.08} + {"x": 17.64, "y": 16.11, "curve": 0.455, "c2": 0.58, "c3": 0.847}, {"time": 0.0333, "curve": 0, "c2": 0.1, "c3": 0.85}, + {"time": 0.2333, "x": -50.37, "curve": 0, "c2": 0.09, "c3": 0.466, "c4": 0.7}, {"time": 0.3, "x": 11.38, "y": 18.2, "curve": 0.177, "c2": 0.44, "c3": 0.617}, + {"time": 0.5333, "x": 56.74, "y": 103.8, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.6667, "x": 71.93, "y": 112.16, "curve": 0.315, "c4": 0.8}, {"time": 0.75, "x": 17.64, "y": 16.11} ] }, - "ear-right-bubble-02": { - "rotate": [ - {"angle": 1.22, "curve": 0.318, "c2": 0.29, "c3": 0.659, "c4": 0.64}, {"time": 0.3, "angle": 8.04, "curve": 0.375, "c2": 0.5, "c3": 0.75}, - {"time": 0.9667, "angle": 19.86, "curve": 0.25, "c3": 0.625, "c4": 0.5}, {"time": 1.6333, "angle": 8.02, "curve": 0.336, "c2": 0.34, "c3": 0.671, "c4": 0.68}, - {"time": 1.8, "angle": 4.16, "curve": 0.382, "c2": 0.56, "c3": 0.74}, {"time": 2.3, "angle": -3.78, "curve": 0.272, "c3": 0.619, "c4": 0.41}, {"time": 2.6667, "angle": 1.22} - ], - "translate": [ - {"x": 3.57, "y": -0.19, "curve": 0.331, "c2": 0.33, "c3": 0.672, "c4": 0.68}, {"time": 0.3, "x": -4.24, "y": 0.22, "curve": 0.382, "c2": 0.56, "c3": 0.74}, - {"time": 0.8, "x": -13.12, "y": 0.69, "curve": 0.244, "c3": 0.641, "c4": 0.57}, {"time": 1.6333, "x": 4.46, "y": -0.23, "curve": 0.382, "c2": 0.56, "c3": 0.74}, - {"time": 2.1333, "x": 13.34, "y": -0.7, "curve": 0.258, "c3": 0.619, "c4": 0.45}, {"time": 2.6667, "x": 3.57, "y": -0.19} + "@shadow": { + "scale": [ + {"curve": 0.313, "c3": 0.699}, {"time": 0.25, "x": 0.94, "y": 0.94, "curve": 0.313, "c3": 0.699}, {"time": 0.4333, "x": 0.8, "y": 0.8, "curve": 0.315, "c4": 0.8}, {"time": 0.75} ] }, - "ear-right-bubble-03": { + "tail": { + "rotate": [{"curve": 0.161, "c3": 0.854}, {"time": 0.25, "angle": -15.26, "curve": 0, "c2": 0.3, "c3": 0.546}, {"time": 0.5, "angle": 3.48, "curve": 0.154, "c4": 0.9}, {"time": 0.75}] + }, + "@leg-front-right": { "translate": [ - {"x": -18.02, "y": 0.95, "curve": 0.377, "c2": 0.61, "c3": 0.72}, {"time": 0.3, "x": -24.28, "y": 1.28, "curve": 0.25, "c3": 0.75}, - {"time": 1.6333, "x": 15.53, "y": -0.82, "curve": 0.242, "c3": 0.673, "c4": 0.69}, {"time": 2.6667, "x": -18.02, "y": 0.95} + {"x": 7.78, "y": -11.23, "curve": 0.649, "c2": 0.4, "c4": 0.74}, {"time": 0.0167, "x": -0.64, "y": -13.16, "curve": 0.313, "c3": 0.699}, + {"time": 0.1333, "x": -9.39, "y": -16.39, "curve": 0.346, "c2": 0.44, "c3": 0.699}, {"time": 0.3167, "x": -26.29, "y": 12.52, "curve": 0, "c2": 0.18, "c3": 0.424, "c4": 0.59}, + {"time": 0.4333, "x": 7.42, "y": -10.53, "curve": 0.316, "c2": 0.49, "c3": 0.751}, {"time": 0.6, "x": 37.87, "y": -4.31, "curve": 0.289, "c3": 0.884, "c4": 0.7}, + {"time": 0.75, "x": 7.78, "y": -11.23} ] }, - "ear-right-bubble-04": { - "rotate": [ - {"angle": -8.47, "curve": 0.36, "c2": 0.64, "c3": 0.695}, {"time": 0.1333, "angle": -9.72, "curve": 0.299, "c3": 0.636, "c4": 0.36}, - {"time": 0.3, "angle": -7.78, "curve": 0.298, "c2": 0.2, "c3": 0.756}, {"time": 1.4667, "angle": 21.21, "curve": 0.299, "c3": 0.636, "c4": 0.36}, - {"time": 1.6333, "angle": 19.4, "curve": 0.298, "c2": 0.2, "c3": 0.641, "c4": 0.57}, {"time": 1.9667, "angle": 10.82, "curve": 0.346, "c2": 0.38, "c3": 0.722, "c4": 0.86}, - {"time": 2.6667, "angle": -8.47} - ], + "leg-front-right-IK": { "translate": [ - {"x": -16.1, "y": 0.65, "curve": 0.303, "c2": 0.22, "c3": 0.645, "c4": 0.59}, {"time": 0.3, "x": -8.79, "y": -0.35, "curve": 0.359, "c2": 0.43, "c3": 0.756}, - {"time": 1.1333, "x": 10.15, "y": -2.95, "curve": 0.26, "c3": 0.618, "c4": 0.44}, {"time": 1.6333, "x": 0.57, "y": -1.63, "curve": 0.359, "c2": 0.43, "c3": 0.756}, - {"time": 2.4667, "x": -18.37, "y": 0.97, "curve": 0.294, "c3": 0.631, "c4": 0.37}, {"time": 2.6667, "x": -16.1, "y": 0.65} + {"x": -13.57, "y": 17.19, "curve": 0.645, "c2": 0.47, "c4": 0.81}, {"time": 0.0167, "curve": 0.313, "c3": 0.699}, {"time": 0.2667, "x": 52.85, "curve": 0, "c2": 0.3, "c3": 0.544}, + {"time": 0.5, "x": -85.89, "y": 125.19}, {"time": 0.6, "x": -87.57, "y": 110.89, "curve": 0.142, "c3": 0.858, "c4": 0.77}, {"time": 0.75, "x": -13.57, "y": 17.19} ] }, - "ear-right-bubble-06": { + "@leg-back-left": { + "translate": [ + {"x": -4.73, "y": 6.6, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.15, "x": 1.29, "y": -4.22, "curve": 0.44, "c2": 0.55, "c3": 0.858}, + {"time": 0.25, "x": 2.16, "y": 6.49, "curve": 0, "c2": 0.09, "c3": 0.466, "c4": 0.7}, {"time": 0.3, "x": -5.17, "y": 15.67, "curve": 0.218, "c2": 0.39, "c3": 0.738}, + {"time": 0.5333, "x": -14.09, "y": -7.98, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.6667, "x": -12.69, "y": -11.31, "curve": 0.315, "c4": 0.8}, {"time": 0.75, "x": -4.73, "y": 6.6} + ], + "scale": [{"curve": 0, "c2": 0.1, "c3": 0.457, "c4": 0.54}, {"time": 0.0667, "x": 0.837, "curve": 0.395, "c2": 0.49, "c3": 0.868}, {"time": 0.15}] + }, + "@pivot-back": { "rotate": [ - {"angle": 8.02, "curve": 0.336, "c2": 0.34, "c3": 0.671, "c4": 0.68}, {"time": 0.1667, "angle": 4.16, "curve": 0.382, "c2": 0.56, "c3": 0.74}, - {"time": 0.6667, "angle": -3.78, "curve": 0.25, "c3": 0.75}, {"time": 2, "angle": 19.86, "curve": 0.25, "c3": 0.625, "c4": 0.5}, {"time": 2.6667, "angle": 8.02} + {"angle": 3.74, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "angle": 1.5, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.25, "angle": -2, "curve": 0, "c2": 0.1, "c3": 0.85}, + {"time": 0.35, "angle": -5, "curve": 0.154, "c4": 0.9}, {"time": 0.6667, "angle": 5, "curve": 0.154, "c4": 0.9}, {"time": 0.75, "angle": 3.74} ], "translate": [ - {"x": 4.46, "y": -0.23, "curve": 0.382, "c2": 0.56, "c3": 0.74}, {"time": 0.5, "x": 13.34, "y": -0.7, "curve": 0.25, "c3": 0.75}, - {"time": 1.8333, "x": -13.12, "y": 0.69, "curve": 0.244, "c3": 0.641, "c4": 0.57}, {"time": 2.6667, "x": 4.46, "y": -0.23} + {"y": 8, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "y": -10, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.25, "curve": 0, "c2": 0.1, "c3": 0.85}, + {"time": 0.5667, "y": 80.61, "curve": 0.154, "c4": 0.9}, {"time": 0.75, "y": 8} ] }, - "ear-right-bubble-07": { - "translate": [{"x": 15.53, "y": -0.82, "curve": 0.25, "c3": 0.75}, {"time": 1.3333, "x": -24.28, "y": 1.28, "curve": 0.25, "c3": 0.75}, {"time": 2.6667, "x": 15.53, "y": -0.82}] - }, - "ear-right-bubble-08": { + "@pivot-main": {"scale": [{"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1333, "y": 0.85, "curve": 0.306, "c4": 0.8}, {"time": 0.25}]} + }, + "drawOrder": [ + {"time": 0.2833, "offsets": [{"slot": "leg-front-right", "offset": 6}, {"slot": "leg-front-left", "offset": 6}, {"slot": "leg-back-left", "offset": 2}]}, + {"time": 0.6333, "offsets": [{"slot": "leg-front-right", "offset": 6}, {"slot": "leg-back-left", "offset": 3}]} + ] + }, + "1023093953": { + "slots": { + "eyes": {"attachment": [{"name": "eyes-shut"}, {"time": 0.2, "name": "eyes"}]}, "mouth": {"attachment": [{"time": 0.0333, "name": "mouth-open"}, {"time": 0.2167, "name": "mouth"}]} + }, + "bones": { + "@pivot-back": { "rotate": [ - {"angle": 19.4, "curve": 0.298, "c2": 0.2, "c3": 0.641, "c4": 0.57}, {"time": 0.3333, "angle": 10.82, "curve": 0.359, "c2": 0.43, "c3": 0.756}, - {"time": 1.1667, "angle": -9.72, "curve": 0.25, "c3": 0.75}, {"time": 2.5, "angle": 21.21, "curve": 0.299, "c3": 0.636, "c4": 0.36}, {"time": 2.6667, "angle": 19.4} + {"angle": -8.23, "curve": "stepped"}, {"time": 0.1667, "angle": -8.23, "curve": 0.306, "c4": 0.8}, {"time": 0.3333, "angle": 5.43, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5} ], - "translate": [ - {"x": 0.57, "y": -1.63, "curve": 0.359, "c2": 0.43, "c3": 0.756}, {"time": 0.8333, "x": -18.37, "y": 0.97, "curve": 0.25, "c3": 0.75}, - {"time": 2.1667, "x": 10.15, "y": -2.95, "curve": 0.26, "c3": 0.618, "c4": 0.44}, {"time": 2.6667, "x": 0.57, "y": -1.63} + "translate": [{"y": -0.04, "curve": 0, "c2": 0.3, "c3": 0.534}, {"time": 0.1667, "x": 17.97, "y": 94.25, "curve": 0.315, "c4": 0.8}, {"time": 0.3333, "y": -0.04}] + }, + "@leg-back-left": {"rotate": [{"angle": 14.26, "curve": "stepped"}, {"time": 0.2167, "angle": 14.26, "curve": 0, "c2": 0.1, "c3": 0.847}, {"time": 0.3333, "angle": -11.75}]}, + "@leg-front-left": {"rotate": [{"angle": 14.58, "curve": "stepped"}, {"time": 0.2167, "angle": 14.58, "curve": 0, "c2": 0.1, "c3": 0.847}, {"time": 0.3333, "angle": 20.14}]}, + "@leg-front-right": {"rotate": [{"angle": 12.31, "curve": "stepped"}, {"time": 0.2167, "angle": 12.31, "curve": 0, "c2": 0.1, "c3": 0.847}, {"time": 0.3333, "angle": -30.3}]}, + "tail": { + "rotate": [ + {"curve": 0, "c2": 0.6, "c3": 0.237}, {"time": 0.1667, "angle": -18.5, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "angle": 4.16, "curve": 0, "c2": 0.3, "c3": 0.54}, + {"time": 0.5} ] }, - "ear-left-bubble-06": { + "@shadow": {"scale": [{"x": 1.3, "y": 1.3, "curve": 0, "c2": 0.4, "c3": 0.533}, {"time": 0.1667, "x": 0.9, "y": 0.9, "curve": 0.315, "c4": 0.8}, {"time": 0.3333}]} + } + }, + "4180526371": { + "slots": { + "eyes": {"attachment": [{"time": 0.05, "name": "eyes-angry"}, {"time": 0.8833, "name": "eyes"}]}, + "mouth": {"attachment": [{"time": 0.05, "name": "mouth-bite"}, {"time": 0.4667, "name": "mouth-open"}, {"time": 0.75, "name": "mouth-bite"}, {"time": 0.8833, "name": "mouth"}]} + }, + "bones": { + "@pivot-back": { "rotate": [ - {"angle": -16.25, "curve": 0.37, "c2": 0.63, "c3": 0.709}, {"time": 0.2167, "angle": -21.58, "curve": 0.282, "c3": 0.624, "c4": 0.39}, - {"time": 0.5, "angle": -13.53, "curve": 0.315, "c2": 0.27, "c3": 0.653, "c4": 0.62}, {"time": 0.7167, "angle": -2.35, "curve": 0.359, "c2": 0.43, "c3": 0.756}, - {"time": 1.55, "angle": 35.68, "curve": 0.243, "c3": 0.69, "c4": 0.75}, {"time": 2.6667, "angle": -16.25} + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "angle": 4, "curve": 0, "c2": 0.6, "c3": 0.237}, {"time": 0.3333, "angle": -8.88, "curve": 0.621, "c3": 0, "c4": 1.6}, + {"time": 0.6667, "angle": 8.17, "curve": 0.701, "c4": 0.5}, {"time": 0.8833, "angle": 5, "curve": 0.461, "c3": 0.543}, {"time": 1} ], "translate": [ - {"curve": 0.26, "c3": 0.618, "c4": 0.44}, {"time": 0.5, "x": -3.69, "y": -0.24, "curve": 0.359, "c2": 0.43, "c3": 0.756}, - {"time": 1.3333, "x": -11, "y": -0.72, "curve": 0.25, "c3": 0.75}, {"time": 2.6667} + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": 33.65, "y": -5, "curve": 0, "c2": 0.6, "c3": 0.237}, + {"time": 0.3333, "x": -62.54, "y": 309.16, "curve": 0.621, "c3": 0, "c4": 1.6}, {"time": 0.6667, "x": 12.32, "y": 268.04, "curve": 0.701, "c4": 0.5}, {"time": 0.8833} ] }, - "ear-left-bubble-07": { + "@leg-front-left": { "translate": [ - {"x": -3.01, "y": -0.2, "curve": 0.382, "c2": 0.56, "c3": 0.74}, {"time": 0.5, "x": 6.85, "y": 0.45, "curve": 0.25, "c3": 0.75}, - {"time": 1.8333, "x": -22.49, "y": -1.47, "curve": 0.244, "c3": 0.641, "c4": 0.57}, {"time": 2.6667, "x": -3.01, "y": -0.2} + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": -0.29, "y": -5.47, "curve": 0, "c2": 0.6, "c3": 0.237}, {"time": 0.3333, "curve": "stepped"}, + {"time": 0.6667, "curve": 0.701, "c4": 0.5}, {"time": 0.8833, "x": -0.95, "y": -14.45, "curve": 0.461, "c3": 0.543}, {"time": 1} ] }, - "ear-left-bubble-08": { - "rotate": [ - {"angle": -32.32, "curve": 0.301, "c2": 0.23, "c3": 0.656, "c4": 0.63}, {"time": 0.5, "angle": -3.61, "curve": 0.338, "c2": 0.35, "c3": 0.674, "c4": 0.69}, - {"time": 0.65, "angle": 5.18, "curve": 0.382, "c2": 0.57, "c3": 0.734}, {"time": 1.0833, "angle": 21.99, "curve": 0.25, "c3": 0.75}, - {"time": 2.4167, "angle": -39.49, "curve": 0.286, "c3": 0.626, "c4": 0.38}, {"time": 2.6667, "angle": -32.32} - ], + "@leg-front-right": { "translate": [ - {"x": -8.69, "y": -0.57, "curve": 0.321, "c2": 0.29, "c3": 0.675, "c4": 0.69}, {"time": 0.5, "x": -3.14, "y": -0.2, "curve": 0.382, "c2": 0.57, "c3": 0.734}, - {"time": 0.9333, "curve": 0.25, "c3": 0.75}, {"time": 2.2667, "x": -11.49, "y": -0.75, "curve": 0.269, "c3": 0.618, "c4": 0.42}, {"time": 2.6667, "x": -8.69, "y": -0.57} + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": -1.07, "y": -20.09, "curve": 0, "c2": 0.6, "c3": 0.237}, {"time": 0.3333, "curve": "stepped"}, + {"time": 0.6667, "curve": 0.701, "c4": 0.5}, {"time": 0.8833, "x": -1.66, "y": -25.29, "curve": 0.461, "c3": 0.543}, {"time": 1} ] }, - "ear-right-dot-01": { + "@shadow": { "translate": [ - {"x": 109.28, "y": -3.61}, {"time": 0.6833, "x": 175.18, "y": -5.79, "curve": "stepped"}, {"time": 0.7, "curve": "stepped"}, {"time": 1.5333}, {"time": 2.6667, "x": 109.28, "y": -3.61} + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": 24.43, "curve": 0, "c2": 0.6, "c3": 0.237}, {"time": 0.3333, "x": -70.38, "curve": 0.621, "c3": 0, "c4": 1.4}, + {"time": 0.6667, "x": 5.15, "curve": 0.701, "c4": 0.5}, {"time": 0.8833, "x": -8.95, "curve": 0.461, "c3": 0.543}, {"time": 1} ], "scale": [ - {}, {"time": 0.1167, "x": 1.117, "y": 0.874, "curve": 0.295, "c3": 0.633, "c4": 0.37}, {"time": 0.35, "x": 0.871, "y": 1.143, "curve": 0.321, "c2": 0.28, "c3": 0.655, "c4": 0.62}, - {"time": 0.4667, "x": 1.061, "y": 0.929, "curve": 0.317, "c2": 0.28, "c3": 0.654, "c4": 0.62}, - {"time": 0.7167, "x": 0.944, "y": 1.139, "curve": 0.327, "c2": 0.31, "c3": 0.664, "c4": 0.66}, - {"time": 0.9333, "x": 1.146, "y": 0.925, "curve": 0.334, "c2": 0.34, "c3": 0.668, "c4": 0.67}, - {"time": 1.0667, "x": 0.88, "y": 1.171, "curve": 0.336, "c2": 0.34, "c3": 0.671, "c4": 0.68}, - {"time": 1.1833, "x": 1.073, "y": 0.927, "curve": 0.339, "c2": 0.35, "c3": 0.673, "c4": 0.69}, {"time": 1.3, "x": 0.87, "y": 1.193, "curve": 0.352, "c2": 0.41, "c3": 0.689, "c4": 0.76}, - {"time": 1.5333, "x": 1.073, "y": 0.868, "curve": 0.367, "c2": 0.63, "c3": 0.705}, {"time": 1.7667} + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": 1.08, "y": 1.08, "curve": 0, "c2": 0.6, "c3": 0.237}, + {"time": 0.3333, "x": 0.85, "y": 0.85, "curve": 0.621, "c3": 0, "c4": 1.4}, {"time": 0.6667, "x": 0.9, "y": 0.9, "curve": 0.701, "c4": 0.5}, + {"time": 0.8833, "x": 1.1, "y": 1.1, "curve": 0.461, "c3": 0.543}, {"time": 1} ] }, - "ear-left-dot-01": { - "translate": [ - {"x": 63.96, "y": -1.07}, {"time": 1.4167, "x": 214.98, "y": -3.58, "curve": "stepped"}, {"time": 1.4333, "curve": "stepped"}, {"time": 2.0667}, {"time": 2.6667, "x": 63.96, "y": -1.07} + "tail": { + "rotate": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "angle": 17.93, "curve": 0, "c2": 0.6, "c3": 0.237}, {"time": 0.3333, "angle": -15.3, "curve": 0.621, "c3": 0, "c4": 1.4}, + {"time": 0.6667, "angle": 24.81, "curve": 0.701, "c4": 0.5}, {"time": 0.8833, "angle": -15.84, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 1} + ] + } + }, + "events": [{"time": 0.4667, "name": "start-attack"}] + }, + "164191126": { + "slots": { + "eyes": {"attachment": [{"time": 0.0833, "name": "eyes-angry"}, {"time": 0.6667, "name": "eyes-shut"}, {"time": 0.75, "name": "eyes"}]}, + "mouth": {"attachment": [{"time": 0.0833, "name": "mouth-bite"}, {"time": 0.35, "name": "mouth-open"}, {"time": 0.55, "name": "mouth-bite"}, {"time": 0.75, "name": "mouth"}]} + }, + "bones": { + "@pivot-back": { + "rotate": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "angle": 4, "curve": 0, "c2": 0.5, "c3": 0.3}, {"time": 0.3333, "angle": -23.77, "curve": "stepped"}, + {"time": 0.35, "angle": -29.82, "curve": 0.698, "c3": 0.541}, {"time": 0.5833, "angle": 3}, {"time": 0.7167, "angle": 4, "curve": 0, "c2": 0.09, "c3": 0.479, "c4": 0.56}, + {"time": 0.8167, "angle": -5.09, "curve": 0.416, "c2": 0.51, "c3": 0.865}, {"time": 0.9167} ], - "scale": [ - {"x": 1.034, "y": 0.977, "curve": 0.323, "c2": 0.3, "c3": 0.658, "c4": 0.64}, {"time": 0.2, "x": 0.944, "y": 1.139, "curve": 0.327, "c2": 0.31, "c3": 0.664, "c4": 0.66}, - {"time": 0.4667, "x": 1.146, "y": 0.925, "curve": 0.334, "c2": 0.34, "c3": 0.668, "c4": 0.67}, {"time": 0.6, "x": 0.88, "y": 1.171, "curve": 0.336, "c2": 0.34, "c3": 0.671, "c4": 0.68}, - {"time": 0.75, "x": 1.073, "y": 0.927, "curve": 0.339, "c2": 0.35, "c3": 0.673, "c4": 0.69}, {"time": 0.8833, "x": 0.87, "y": 1.193, "curve": 0.352, "c2": 0.41, "c3": 0.689, "c4": 0.76}, - {"time": 1.15, "x": 1.073, "y": 0.868, "curve": 0.367, "c2": 0.63, "c3": 0.705}, {"time": 1.4167, "curve": "stepped"}, {"time": 2.0667}, - {"time": 2.2, "x": 1.117, "y": 0.874, "curve": 0.295, "c3": 0.633, "c4": 0.37}, {"time": 2.4667, "x": 0.871, "y": 1.143, "curve": 0.321, "c2": 0.28, "c3": 0.655, "c4": 0.62}, - {"time": 2.6, "x": 1.061, "y": 0.929, "curve": 0.329, "c2": 0.32, "c3": 0.662, "c4": 0.65}, {"time": 2.6667, "x": 1.034, "y": 0.977} + "translate": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": 33.65, "y": -5, "curve": 0, "c2": 0.5, "c3": 0.3}, {"time": 0.3333, "x": 80.56, "y": 137.85, "curve": "stepped"}, + {"time": 0.35, "x": 147.57, "y": 42.83, "curve": 0, "c2": 0.2, "c3": 0.686}, {"time": 0.5, "x": 206.93, "y": -26.82, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.5833, "x": 226.09}, + {"time": 0.7167, "x": 237.58, "y": 2, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.9167} ] }, - "ear-right-dot-02": { + "@pivot-main": { "translate": [ - {"x": 89.44, "y": -1.49}, {"time": 1.3333, "x": 214.98, "y": -3.58, "curve": "stepped"}, {"time": 1.35, "curve": "stepped"}, {"time": 1.7167}, {"time": 2.6667, "x": 89.44, "y": -1.49} - ], - "scale": [ - {"x": 0.966, "y": 1.116, "curve": 0.329, "c2": 0.32, "c3": 0.664, "c4": 0.66}, {"time": 0.2667, "x": 1.146, "y": 0.925, "curve": 0.334, "c2": 0.34, "c3": 0.668, "c4": 0.67}, - {"time": 0.4167, "x": 0.88, "y": 1.171, "curve": 0.336, "c2": 0.34, "c3": 0.671, "c4": 0.68}, - {"time": 0.5667, "x": 1.073, "y": 0.927, "curve": 0.339, "c2": 0.35, "c3": 0.673, "c4": 0.69}, - {"time": 0.7167, "x": 0.87, "y": 1.193, "curve": 0.352, "c2": 0.41, "c3": 0.689, "c4": 0.76}, {"time": 1.0167, "x": 1.073, "y": 0.868, "curve": 0.367, "c2": 0.63, "c3": 0.705}, - {"time": 1.3333, "curve": "stepped"}, {"time": 1.7167}, {"time": 1.8667, "x": 1.117, "y": 0.874, "curve": 0.295, "c3": 0.633, "c4": 0.37}, - {"time": 2.1667, "x": 0.871, "y": 1.143, "curve": 0.321, "c2": 0.28, "c3": 0.655, "c4": 0.62}, - {"time": 2.3167, "x": 1.061, "y": 0.929, "curve": 0.317, "c2": 0.28, "c3": 0.654, "c4": 0.62}, - {"time": 2.6333, "x": 0.944, "y": 1.139, "curve": 0.332, "c2": 0.33, "c3": 0.666, "c4": 0.66}, {"time": 2.6667, "x": 0.966, "y": 1.116} + {"time": 0.5833, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.7167, "x": 15, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.8167, "x": 7.5, "y": 59.4, "curve": 0.315, "c4": 0.8}, + {"time": 0.9167} ] }, - "ear-left-dot-02": { - "translate": [{"x": 122.71, "y": -21.71}, {"time": 0.45, "x": 147.81, "y": -26.16, "curve": "stepped"}, {"time": 0.4667}, {"time": 2.6667, "x": 122.71, "y": -21.71}], - "scale": [ - {"x": 1.026, "y": 0.944, "curve": 0.34, "c2": 0.36, "c3": 0.674, "c4": 0.7}, {"time": 0.1, "x": 1.073, "y": 0.868, "curve": 0.367, "c2": 0.63, "c3": 0.705}, - {"time": 0.45, "curve": "stepped"}, {"time": 0.4667, "curve": 0.25, "c3": 0.75}, {"time": 0.65, "x": 1.117, "y": 0.874, "curve": 0.295, "c3": 0.633, "c4": 0.37}, - {"time": 1, "x": 0.871, "y": 1.143, "curve": 0.321, "c2": 0.28, "c3": 0.655, "c4": 0.62}, {"time": 1.1667, "x": 1.061, "y": 0.929, "curve": 0.317, "c2": 0.28, "c3": 0.654, "c4": 0.62}, - {"time": 1.5167, "x": 0.944, "y": 1.139, "curve": 0.327, "c2": 0.31, "c3": 0.664, "c4": 0.66}, - {"time": 1.8833, "x": 1.146, "y": 0.925, "curve": 0.334, "c2": 0.34, "c3": 0.668, "c4": 0.67}, {"time": 2.05, "x": 0.88, "y": 1.171, "curve": 0.336, "c2": 0.34, "c3": 0.671, "c4": 0.68}, - {"time": 2.2333, "x": 1.073, "y": 0.927, "curve": 0.339, "c2": 0.35, "c3": 0.673, "c4": 0.69}, {"time": 2.4, "x": 0.87, "y": 1.193, "curve": 0.346, "c2": 0.38, "c3": 0.681, "c4": 0.72}, - {"time": 2.6667, "x": 1.026, "y": 0.944} + "leg-front-left-IK": { + "translate": [ + {"time": 0.1667, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.3333, "x": 27.04, "y": 216.41, "curve": "stepped"}, {"time": 0.35, "x": 51.7, "y": 178.19, "curve": 0.384, "c3": 0.537}, + {"time": 0.5833, "x": 202.93}, {"time": 0.7, "x": 218.86, "y": 2.61, "curve": 0.315, "c4": 0.8}, {"time": 0.7667, "x": 145.27, "curve": 0.237, "c4": 0.8}, {"time": 0.9167} ] }, - "ear-right-dot-03": { + "leg-front-right-IK": { "translate": [ - {"x": 36.97, "y": 7.71}, {"time": 1.95, "x": 168.03, "y": 35.03, "curve": "stepped"}, {"time": 1.9667, "curve": "stepped"}, {"time": 2.1167}, {"time": 2.6667, "x": 36.97, "y": 7.71} - ], - "scale": [ - {"x": 0.923, "y": 1.084, "curve": 0.325, "c2": 0.3, "c3": 0.659, "c4": 0.63}, {"time": 0.1167, "x": 1.061, "y": 0.929, "curve": 0.317, "c2": 0.28, "c3": 0.654, "c4": 0.62}, - {"time": 0.45, "x": 0.944, "y": 1.139, "curve": 0.327, "c2": 0.31, "c3": 0.664, "c4": 0.66}, - {"time": 0.7833, "x": 1.146, "y": 0.925, "curve": 0.334, "c2": 0.34, "c3": 0.668, "c4": 0.67}, {"time": 0.95, "x": 0.88, "y": 1.171, "curve": 0.336, "c2": 0.34, "c3": 0.671, "c4": 0.68}, - {"time": 1.1167, "x": 1.073, "y": 0.927, "curve": 0.339, "c2": 0.35, "c3": 0.673, "c4": 0.69}, - {"time": 1.2833, "x": 0.87, "y": 1.193, "curve": 0.352, "c2": 0.41, "c3": 0.689, "c4": 0.76}, {"time": 1.6167, "x": 1.073, "y": 0.868, "curve": 0.367, "c2": 0.63, "c3": 0.705}, - {"time": 1.95, "curve": "stepped"}, {"time": 2.1167}, {"time": 2.2833, "x": 1.117, "y": 0.874, "curve": 0.295, "c3": 0.633, "c4": 0.37}, - {"time": 2.6167, "x": 0.871, "y": 1.143, "curve": 0.329, "c2": 0.31, "c3": 0.663, "c4": 0.65}, {"time": 2.6667, "x": 0.923, "y": 1.084} + {"time": 0.1667, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.3333, "x": 54.35, "y": 310.88, "curve": "stepped"}, {"time": 0.35, "x": 67.2, "y": 319.96, "curve": 0.384, "c3": 0.537}, + {"time": 0.5833, "x": 199.77}, {"time": 0.7, "x": 187.66, "curve": 0.315, "c4": 0.8}, {"time": 0.7667, "x": 143.69, "curve": 0.237, "c4": 0.8}, {"time": 0.9167} ] }, - "ear-right-dot-04": { + "leg-back-left-IK": { "translate": [ - {"x": 165.28, "y": 17.31}, {"time": 0.1167, "x": 173.66, "y": 18.18, "curve": "stepped"}, {"time": 0.1333, "curve": "stepped"}, {"time": 0.3667}, {"time": 1.6833, "x": 94.61, "y": 9.91}, - {"time": 2.6667, "x": 165.28, "y": 17.31} - ], - "scale": [ - {"x": 1.012, "y": 0.978, "curve": 0.349, "c2": 0.65, "c3": 0.683}, {"time": 0.1167, "curve": "stepped"}, {"time": 0.3667}, - {"time": 0.5333, "x": 1.117, "y": 0.874, "curve": 0.295, "c3": 0.633, "c4": 0.37}, {"time": 0.85, "x": 0.871, "y": 1.143, "curve": 0.321, "c2": 0.28, "c3": 0.655, "c4": 0.62}, - {"time": 1.0167, "x": 1.061, "y": 0.929, "curve": 0.317, "c2": 0.28, "c3": 0.654, "c4": 0.62}, - {"time": 1.3333, "x": 0.944, "y": 1.139, "curve": 0.327, "c2": 0.31, "c3": 0.664, "c4": 0.66}, - {"time": 1.6667, "x": 1.146, "y": 0.925, "curve": 0.333, "c2": 0.33, "c3": 0.667, "c4": 0.67}, - {"time": 1.6833, "x": 1.116, "y": 0.953, "curve": 0.334, "c2": 0.34, "c3": 0.668, "c4": 0.67}, - {"time": 1.8167, "x": 0.88, "y": 1.171, "curve": 0.336, "c2": 0.34, "c3": 0.671, "c4": 0.68}, - {"time": 1.9833, "x": 1.073, "y": 0.927, "curve": 0.339, "c2": 0.35, "c3": 0.673, "c4": 0.69}, {"time": 2.15, "x": 0.87, "y": 1.193, "curve": 0.352, "c2": 0.41, "c3": 0.689, "c4": 0.76}, - {"time": 2.4667, "x": 1.073, "y": 0.868, "curve": 0.353, "c2": 0.47, "c3": 0.688, "c4": 0.81}, {"time": 2.6667, "x": 1.012, "y": 0.978} + {"time": 0.1667, "curve": 0, "c2": 0.4, "c3": 0.383}, {"time": 0.3333, "x": 50.37, "y": 150.84, "curve": "stepped"}, {"time": 0.35, "x": 34.64, "y": 81.96, "curve": 0.306, "c4": 0.8}, + {"time": 0.5, "x": 185.62, "y": 1.08, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.7167, "x": 244.18, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.8167, "x": 108.59, "y": 18.82, "curve": 0.306, "c4": 0.8}, {"time": 0.9167} ] }, - "ear-right-dot-05": { + "@leg-front-right": { "translate": [ - {"x": 72.79, "y": -12.11}, {"time": 0.8167, "x": 158.24, "y": -26.33, "curve": "stepped"}, {"time": 0.8333, "curve": "stepped"}, {"time": 1.7667}, - {"time": 2.6667, "x": 72.79, "y": -12.11} - ], - "scale": [ - {"x": 1.034, "y": 1.044, "curve": 0.331, "c2": 0.33, "c3": 0.666, "c4": 0.66}, {"time": 0.1167, "x": 1.146, "y": 0.925, "curve": 0.334, "c2": 0.34, "c3": 0.668, "c4": 0.67}, - {"time": 0.2167, "x": 0.88, "y": 1.171, "curve": 0.336, "c2": 0.34, "c3": 0.671, "c4": 0.68}, - {"time": 0.3167, "x": 1.073, "y": 0.927, "curve": 0.339, "c2": 0.35, "c3": 0.673, "c4": 0.69}, - {"time": 0.4167, "x": 0.87, "y": 1.193, "curve": 0.352, "c2": 0.41, "c3": 0.689, "c4": 0.76}, {"time": 0.6167, "x": 1.073, "y": 0.868, "curve": 0.367, "c2": 0.63, "c3": 0.705}, - {"time": 0.8167, "curve": "stepped"}, {"time": 1.7667}, {"time": 1.8833, "x": 1.117, "y": 0.874, "curve": 0.295, "c3": 0.633, "c4": 0.37}, - {"time": 2.15, "x": 0.871, "y": 1.143, "curve": 0.321, "c2": 0.28, "c3": 0.655, "c4": 0.62}, - {"time": 2.2833, "x": 1.061, "y": 0.929, "curve": 0.317, "c2": 0.28, "c3": 0.654, "c4": 0.62}, {"time": 2.55, "x": 0.944, "y": 1.139, "curve": 0.33, "c2": 0.32, "c3": 0.664, "c4": 0.66}, - {"time": 2.6667, "x": 1.034, "y": 1.044} + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": -1.03, "y": -19.32}, {"time": 0.3333, "curve": "stepped"}, {"time": 0.5833, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.7167, "x": 9.38, "y": 7.22}, {"time": 0.9167} ] }, - "ear-left-dot-03": { + "@leg-front-left": { "translate": [ - {"x": 127.89, "y": 1.94}, {"time": 0.4833, "x": 164.98, "y": 2.51, "curve": "stepped"}, {"time": 0.5, "curve": "stepped"}, {"time": 1}, {"time": 2.6667, "x": 127.89, "y": 1.94} - ], - "scale": [ - {"x": 0.937, "y": 1.086, "curve": 0.348, "c2": 0.4, "c3": 0.683, "c4": 0.74}, {"time": 0.2, "x": 1.073, "y": 0.868, "curve": 0.367, "c2": 0.63, "c3": 0.705}, - {"time": 0.4833, "curve": "stepped"}, {"time": 1}, {"time": 1.15, "x": 1.117, "y": 0.874, "curve": 0.295, "c3": 0.633, "c4": 0.37}, - {"time": 1.4333, "x": 0.871, "y": 1.143, "curve": 0.321, "c2": 0.28, "c3": 0.655, "c4": 0.62}, - {"time": 1.5667, "x": 1.061, "y": 0.929, "curve": 0.317, "c2": 0.28, "c3": 0.654, "c4": 0.62}, - {"time": 1.8667, "x": 0.944, "y": 1.139, "curve": 0.327, "c2": 0.31, "c3": 0.664, "c4": 0.66}, - {"time": 2.15, "x": 1.146, "y": 0.925, "curve": 0.334, "c2": 0.34, "c3": 0.668, "c4": 0.67}, {"time": 2.2833, "x": 0.88, "y": 1.171, "curve": 0.336, "c2": 0.34, "c3": 0.671, "c4": 0.68}, - {"time": 2.4333, "x": 1.073, "y": 0.927, "curve": 0.339, "c2": 0.35, "c3": 0.673, "c4": 0.69}, - {"time": 2.5833, "x": 0.87, "y": 1.193, "curve": 0.338, "c2": 0.35, "c3": 0.672, "c4": 0.68}, {"time": 2.6667, "x": 0.937, "y": 1.086} + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": -0.29, "y": -5.47}, {"time": 0.3333, "curve": "stepped"}, {"time": 0.5833, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.7167, "x": 6.3, "y": -2.41}, {"time": 0.9167} ] }, - "ear-left-dot-04": { - "translate": [{"time": 0.1333}, {"time": 0.7333, "x": 63.96, "y": -1.07}, {"time": 2.15, "x": 214.98, "y": -3.58, "curve": "stepped"}, {"time": 2.1667}], - "scale": [ - {"time": 0.1333}, {"time": 0.2667, "x": 1.117, "y": 0.874, "curve": 0.295, "c3": 0.633, "c4": 0.37}, - {"time": 0.5333, "x": 0.871, "y": 1.143, "curve": 0.321, "c2": 0.28, "c3": 0.655, "c4": 0.62}, - {"time": 0.6667, "x": 1.061, "y": 0.929, "curve": 0.329, "c2": 0.32, "c3": 0.662, "c4": 0.65}, - {"time": 0.7333, "x": 1.034, "y": 0.977, "curve": 0.323, "c2": 0.3, "c3": 0.658, "c4": 0.64}, - {"time": 0.9333, "x": 0.944, "y": 1.139, "curve": 0.327, "c2": 0.31, "c3": 0.664, "c4": 0.66}, {"time": 1.2, "x": 1.146, "y": 0.925, "curve": 0.334, "c2": 0.34, "c3": 0.668, "c4": 0.67}, - {"time": 1.3333, "x": 0.88, "y": 1.171, "curve": 0.336, "c2": 0.34, "c3": 0.671, "c4": 0.68}, - {"time": 1.4833, "x": 1.073, "y": 0.927, "curve": 0.339, "c2": 0.35, "c3": 0.673, "c4": 0.69}, - {"time": 1.6167, "x": 0.87, "y": 1.193, "curve": 0.352, "c2": 0.41, "c3": 0.689, "c4": 0.76}, {"time": 1.8833, "x": 1.073, "y": 0.868, "curve": 0.367, "c2": 0.63, "c3": 0.705}, - {"time": 2.15} + "tail": { + "rotate": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "angle": 19.35, "curve": 0, "c2": 0.4, "c3": 0.383}, {"time": 0.3333, "angle": -0.88, "curve": "stepped"}, + {"time": 0.35, "angle": -13.56, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.5, "angle": 0.52, "curve": 0, "c2": 0.3, "c3": 0.544}, + {"time": 0.7167, "angle": 19.32, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.8, "angle": -9.3, "curve": 0.313, "c3": 0.699}, {"time": 0.9167} ] }, - "ear-left-dot-05": { + "@shadow": { "translate": [ - {"x": 81.81, "y": -14.48}, {"time": 0.7333, "x": 122.71, "y": -21.71}, {"time": 1.1833, "x": 147.81, "y": -26.16, "curve": "stepped"}, {"time": 1.2}, - {"time": 2.6667, "x": 81.81, "y": -14.48} + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": 24.43, "curve": 0, "c2": 0.4, "c3": 0.383}, {"time": 0.3333, "x": 86.58, "curve": "stepped"}, + {"time": 0.35, "x": 154.34, "curve": 0.315, "c4": 0.8}, {"time": 0.5, "x": 208.2, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.5833, "x": 216.55}, + {"time": 0.7167, "x": 243.36, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.9167} ], "scale": [ - {"x": 1.066, "y": 0.999, "curve": 0.334, "c2": 0.34, "c3": 0.668, "c4": 0.67}, {"time": 0.1167, "x": 0.88, "y": 1.171, "curve": 0.336, "c2": 0.34, "c3": 0.671, "c4": 0.68}, - {"time": 0.3, "x": 1.073, "y": 0.927, "curve": 0.339, "c2": 0.35, "c3": 0.673, "c4": 0.69}, {"time": 0.4667, "x": 0.87, "y": 1.193, "curve": 0.346, "c2": 0.38, "c3": 0.681, "c4": 0.72}, - {"time": 0.7333, "x": 1.026, "y": 0.944, "curve": 0.34, "c2": 0.36, "c3": 0.674, "c4": 0.7}, {"time": 0.8333, "x": 1.073, "y": 0.868, "curve": 0.367, "c2": 0.63, "c3": 0.705}, - {"time": 1.1833, "curve": "stepped"}, {"time": 1.2, "curve": 0.25, "c3": 0.75}, {"time": 1.3833, "x": 1.117, "y": 0.874, "curve": 0.295, "c3": 0.633, "c4": 0.37}, - {"time": 1.7333, "x": 0.871, "y": 1.143, "curve": 0.321, "c2": 0.28, "c3": 0.655, "c4": 0.62}, {"time": 1.9, "x": 1.061, "y": 0.929, "curve": 0.317, "c2": 0.28, "c3": 0.654, "c4": 0.62}, - {"time": 2.25, "x": 0.944, "y": 1.139, "curve": 0.327, "c2": 0.31, "c3": 0.664, "c4": 0.66}, - {"time": 2.6167, "x": 1.146, "y": 0.925, "curve": 0.333, "c2": 0.33, "c3": 0.667, "c4": 0.67}, {"time": 2.6667, "x": 1.066, "y": 0.999} + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": 1.08, "y": 1.08, "curve": 0, "c2": 0.4, "c3": 0.383}, {"time": 0.3333, "x": 0.92, "y": 0.92, "curve": "stepped"}, + {"time": 0.35, "x": 0.9, "y": 0.9, "curve": 0.315, "c4": 0.8}, {"time": 0.5, "x": 1.02, "y": 1.02, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.5833, "x": 1.08, "y": 1.08}, + {"time": 0.7167, "x": 1.1, "y": 1.1, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.9167} + ] + } + }, + "events": [{"time": 0.35, "name": "start-attack"}] + }, + "198813017": { + "slots": { + "eyes": {"attachment": [{"time": 0.0167, "name": "eyes-angry"}, {"time": 0.5, "name": "eyes-shut"}, {"time": 0.6667, "name": "eyes"}]}, + "mouth": {"attachment": [{"time": 0.0167, "name": "mouth-bite"}, {"time": 0.3, "name": "mouth-open"}, {"time": 0.5, "name": "mouth"}]} + }, + "bones": { + "@pivot-back": { + "rotate": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "angle": -3.92, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "angle": 2.51, "curve": 0.697, "c4": 0.3}, + {"time": 0.3, "angle": -2}, {"time": 0.4167, "angle": -3, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5833, "angle": 3, "curve": 0, "c2": 0.17, "c3": 0.45, "c4": 0.61}, + {"time": 0.6667, "angle": -2.47, "curve": 0.345, "c2": 0.53, "c3": 0.751}, {"time": 0.75} + ], + "translate": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "x": 71.93, "y": -12.95, "curve": "stepped"}, {"time": 0.25, "x": 71.93, "y": -12.95, "curve": 0.697, "c4": 0.3}, + {"time": 0.3, "x": -65}, {"time": 0.4167, "x": -67, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5833, "x": -74.25, "y": -5.2, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.75} ] }, - "ear-left-dot-06": { + "leg-back-left-IK": { "translate": [ - {"x": 71.62, "y": 1.09}, {"time": 0.7333, "x": 127.89, "y": 1.94}, {"time": 1.2167, "x": 164.98, "y": 2.51, "curve": "stepped"}, {"time": 1.2333, "curve": "stepped"}, {"time": 1.7333}, - {"time": 2.6667, "x": 71.62, "y": 1.09} - ], - "scale": [ - {"x": 0.991, "y": 1.09, "curve": 0.33, "c2": 0.32, "c3": 0.665, "c4": 0.66}, {"time": 0.2167, "x": 1.146, "y": 0.925, "curve": 0.334, "c2": 0.34, "c3": 0.668, "c4": 0.67}, - {"time": 0.35, "x": 0.88, "y": 1.171, "curve": 0.336, "c2": 0.34, "c3": 0.671, "c4": 0.68}, {"time": 0.5, "x": 1.073, "y": 0.927, "curve": 0.339, "c2": 0.35, "c3": 0.673, "c4": 0.69}, - {"time": 0.65, "x": 0.87, "y": 1.193, "curve": 0.338, "c2": 0.35, "c3": 0.672, "c4": 0.68}, {"time": 0.7333, "x": 0.937, "y": 1.086, "curve": 0.348, "c2": 0.4, "c3": 0.683, "c4": 0.74}, - {"time": 0.9333, "x": 1.073, "y": 0.868, "curve": 0.367, "c2": 0.63, "c3": 0.705}, {"time": 1.2167, "curve": "stepped"}, {"time": 1.7333}, - {"time": 1.8833, "x": 1.117, "y": 0.874, "curve": 0.295, "c3": 0.633, "c4": 0.37}, {"time": 2.1667, "x": 0.871, "y": 1.143, "curve": 0.321, "c2": 0.28, "c3": 0.655, "c4": 0.62}, - {"time": 2.3, "x": 1.061, "y": 0.929, "curve": 0.317, "c2": 0.28, "c3": 0.654, "c4": 0.62}, {"time": 2.6, "x": 0.944, "y": 1.139, "curve": 0.331, "c2": 0.33, "c3": 0.665, "c4": 0.66}, - {"time": 2.6667, "x": 0.991, "y": 1.09} + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.1333, "x": 80.9, "curve": 0.161, "c3": 0.854}, {"time": 0.25, "x": 72.25, "curve": 0.25, "c4": 0.3}, + {"time": 0.3, "x": -24.7, "y": 18.44, "curve": "stepped"}, {"time": 0.4167, "x": -24.7, "y": 18.44, "curve": 0.306, "c3": 0.695}, + {"time": 0.5833, "x": -90.91, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.75} ] }, - "ear-right-dot-06": { + "leg-front-right-IK": { "translate": [ - {"x": 38.57, "y": -1.28}, {"time": 0.7333, "x": 109.28, "y": -3.61}, {"time": 1.4167, "x": 175.18, "y": -5.79, "curve": "stepped"}, {"time": 1.4333, "curve": "stepped"}, - {"time": 2.2667}, {"time": 2.6667, "x": 38.57, "y": -1.28} - ], - "scale": [ - {}, {"time": 0.1167, "x": 1.117, "y": 0.874, "curve": 0.295, "c3": 0.633, "c4": 0.37}, {"time": 0.35, "x": 0.871, "y": 1.143, "curve": 0.321, "c2": 0.28, "c3": 0.655, "c4": 0.62}, - {"time": 0.4667, "x": 1.061, "y": 0.929, "curve": 0.317, "c2": 0.28, "c3": 0.654, "c4": 0.62}, - {"time": 0.7167, "x": 0.944, "y": 1.139, "curve": 0.327, "c2": 0.31, "c3": 0.664, "c4": 0.66}, - {"time": 0.9333, "x": 1.146, "y": 0.925, "curve": 0.334, "c2": 0.34, "c3": 0.668, "c4": 0.67}, - {"time": 1.0667, "x": 0.88, "y": 1.171, "curve": 0.336, "c2": 0.34, "c3": 0.671, "c4": 0.68}, - {"time": 1.1833, "x": 1.073, "y": 0.927, "curve": 0.339, "c2": 0.35, "c3": 0.673, "c4": 0.69}, {"time": 1.3, "x": 0.87, "y": 1.193, "curve": 0.352, "c2": 0.41, "c3": 0.689, "c4": 0.76}, - {"time": 1.5333, "x": 1.073, "y": 0.868, "curve": 0.367, "c2": 0.63, "c3": 0.705}, {"time": 1.7667} + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 30.89, "y": 11.74, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "x": 42.9, "curve": 0.697, "c4": 0.3}, + {"time": 0.3, "x": 11.08, "y": 2.13, "curve": "stepped"}, {"time": 0.4167, "x": 11.08, "y": 2.13, "curve": 0.306, "c3": 0.695}, + {"time": 0.5833, "x": -87.1, "curve": 0, "c2": 0.17, "c3": 0.45, "c4": 0.61}, {"time": 0.6667, "x": -39.4, "curve": 0.345, "c2": 0.53, "c3": 0.751}, {"time": 0.75} ] }, - "ear-right-dot-07": { + "leg-front-left-IK": { "translate": [ - {"x": 20.4, "y": -0.34}, {"time": 0.7333, "x": 89.44, "y": -1.49}, {"time": 2.0667, "x": 214.98, "y": -3.58, "curve": "stepped"}, {"time": 2.0833, "curve": "stepped"}, {"time": 2.45}, - {"time": 2.6667, "x": 20.4, "y": -0.34} - ], - "scale": [ - {"x": 1.101, "y": 0.892, "curve": 0.306, "c2": 0.13, "c3": 0.641, "c4": 0.48}, {"time": 0.2333, "x": 0.871, "y": 1.143, "curve": 0.321, "c2": 0.28, "c3": 0.655, "c4": 0.62}, - {"time": 0.3833, "x": 1.061, "y": 0.929, "curve": 0.317, "c2": 0.28, "c3": 0.654, "c4": 0.62}, {"time": 0.7, "x": 0.944, "y": 1.139, "curve": 0.332, "c2": 0.33, "c3": 0.666, "c4": 0.66}, - {"time": 0.7333, "x": 0.966, "y": 1.116, "curve": 0.329, "c2": 0.32, "c3": 0.664, "c4": 0.66}, {"time": 1, "x": 1.146, "y": 0.925, "curve": 0.334, "c2": 0.34, "c3": 0.668, "c4": 0.67}, - {"time": 1.15, "x": 0.88, "y": 1.171, "curve": 0.336, "c2": 0.34, "c3": 0.671, "c4": 0.68}, {"time": 1.3, "x": 1.073, "y": 0.927, "curve": 0.339, "c2": 0.35, "c3": 0.673, "c4": 0.69}, - {"time": 1.45, "x": 0.87, "y": 1.193, "curve": 0.352, "c2": 0.41, "c3": 0.689, "c4": 0.76}, {"time": 1.75, "x": 1.073, "y": 0.868, "curve": 0.367, "c2": 0.63, "c3": 0.705}, - {"time": 2.0667, "curve": "stepped"}, {"time": 2.45}, {"time": 2.6, "x": 1.117, "y": 0.874, "curve": 0.323, "c3": 0.657, "c4": 0.34}, {"time": 2.6667, "x": 1.101, "y": 0.892} + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "x": 52.52, "y": 6.57, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "x": 44.73, "y": 1.83, "curve": 0.697, "c4": 0.3}, + {"time": 0.3, "x": -28.02, "y": 20.97}, {"time": 0.4167, "x": -31.01, "y": 31.21, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.5833, "x": -82.62, "curve": 0, "c2": 0.17, "c3": 0.45, "c4": 0.61}, {"time": 0.6667, "x": -55.81, "curve": 0.345, "c2": 0.53, "c3": 0.751}, {"time": 0.75} ] }, - "ear-right-dot-08": { + "@leg-front-left": { "translate": [ - {"x": 166.91, "y": 34.8}, {"time": 0.0167, "x": 168.03, "y": 35.03, "curve": "stepped"}, {"time": 0.0333, "curve": "stepped"}, {"time": 0.1833}, {"time": 0.7333, "x": 36.97, "y": 7.71}, - {"time": 2.6667, "x": 166.91, "y": 34.8} - ], - "scale": [ - {"y": 0.999, "curve": 0.336, "c2": 0.67, "c3": 0.669}, {"time": 0.0167, "curve": "stepped"}, {"time": 0.1833}, - {"time": 0.35, "x": 1.117, "y": 0.874, "curve": 0.295, "c3": 0.633, "c4": 0.37}, {"time": 0.6833, "x": 0.871, "y": 1.143, "curve": 0.329, "c2": 0.31, "c3": 0.663, "c4": 0.65}, - {"time": 0.7333, "x": 0.923, "y": 1.084, "curve": 0.325, "c2": 0.3, "c3": 0.659, "c4": 0.63}, {"time": 0.85, "x": 1.061, "y": 0.929, "curve": 0.317, "c2": 0.28, "c3": 0.654, "c4": 0.62}, - {"time": 1.1833, "x": 0.944, "y": 1.139, "curve": 0.327, "c2": 0.31, "c3": 0.664, "c4": 0.66}, - {"time": 1.5167, "x": 1.146, "y": 0.925, "curve": 0.334, "c2": 0.34, "c3": 0.668, "c4": 0.67}, - {"time": 1.6833, "x": 0.88, "y": 1.171, "curve": 0.336, "c2": 0.34, "c3": 0.671, "c4": 0.68}, {"time": 1.85, "x": 1.073, "y": 0.927, "curve": 0.339, "c2": 0.35, "c3": 0.673, "c4": 0.69}, - {"time": 2.0167, "x": 0.87, "y": 1.193, "curve": 0.352, "c2": 0.41, "c3": 0.689, "c4": 0.76}, {"time": 2.35, "x": 1.073, "y": 0.868, "curve": 0.365, "c2": 0.6, "c3": 0.702, "c4": 0.97}, - {"time": 2.6667, "y": 0.999} + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "x": -2.59, "y": -4.65, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "x": -0.61, "y": -2.94, "curve": 0.697, "c4": 0.3}, + {"time": 0.3, "x": 0.47, "y": -9.15, "curve": "stepped"}, {"time": 0.4167, "x": 0.47, "y": -9.15, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5833} ] }, - "ear-right-dot-09": { + "@leg-front-right": { "translate": [ - {"x": 112.58, "y": 11.79}, {"time": 0.7333, "x": 165.28, "y": 17.31}, {"time": 0.85, "x": 173.66, "y": 18.18, "curve": "stepped"}, {"time": 0.8667, "curve": "stepped"}, {"time": 1.1}, - {"time": 2.4167, "x": 94.61, "y": 9.91}, {"time": 2.6667, "x": 112.58, "y": 11.79} - ], - "scale": [ - {"x": 1.016, "y": 0.999, "curve": 0.335, "c2": 0.34, "c3": 0.668, "c4": 0.67}, {"time": 0.05, "x": 1.073, "y": 0.927, "curve": 0.339, "c2": 0.35, "c3": 0.673, "c4": 0.69}, - {"time": 0.2167, "x": 0.87, "y": 1.193, "curve": 0.352, "c2": 0.41, "c3": 0.689, "c4": 0.76}, - {"time": 0.5333, "x": 1.073, "y": 0.868, "curve": 0.353, "c2": 0.47, "c3": 0.688, "c4": 0.81}, {"time": 0.7333, "x": 1.012, "y": 0.978, "curve": 0.349, "c2": 0.65, "c3": 0.683}, - {"time": 0.85, "curve": "stepped"}, {"time": 1.1}, {"time": 1.2667, "x": 1.117, "y": 0.874, "curve": 0.295, "c3": 0.633, "c4": 0.37}, - {"time": 1.5833, "x": 0.871, "y": 1.143, "curve": 0.321, "c2": 0.28, "c3": 0.655, "c4": 0.62}, - {"time": 1.75, "x": 1.061, "y": 0.929, "curve": 0.317, "c2": 0.28, "c3": 0.654, "c4": 0.62}, - {"time": 2.0667, "x": 0.944, "y": 1.139, "curve": 0.327, "c2": 0.31, "c3": 0.664, "c4": 0.66}, {"time": 2.4, "x": 1.146, "y": 0.925, "curve": 0.333, "c2": 0.33, "c3": 0.667, "c4": 0.67}, - {"time": 2.4167, "x": 1.116, "y": 0.953, "curve": 0.334, "c2": 0.34, "c3": 0.668, "c4": 0.67}, {"time": 2.55, "x": 0.88, "y": 1.171, "curve": 0.335, "c2": 0.34, "c3": 0.669, "c4": 0.67}, - {"time": 2.6667, "x": 1.016, "y": 0.999} + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 4.31, "y": 11.86, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "x": -10.4, "y": -12.15, "curve": 0.697, "c4": 0.3}, + {"time": 0.3, "x": -48.45, "y": 18.12, "curve": "stepped"}, {"time": 0.4167, "x": -48.45, "y": 18.12, "curve": 0, "c2": 0.3, "c3": 0.54}, + {"time": 0.5833, "x": -10.7, "y": -18.88, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.75} ] }, - "ear-right-dot-10": { + "@leg-back-left": { "translate": [ - {"x": 26.37, "y": -4.39}, {"time": 0.7333, "x": 72.79, "y": -12.11}, {"time": 2.0833, "x": 158.24, "y": -26.33, "curve": "stepped"}, {"time": 2.1, "curve": "stepped"}, {"time": 2.25}, - {"time": 2.6667, "x": 26.37, "y": -4.39} - ], - "scale": [ - {"x": 0.968, "y": 1.037, "curve": 0.326, "c2": 0.29, "c3": 0.659, "c4": 0.63}, {"time": 0.0833, "x": 0.871, "y": 1.143, "curve": 0.321, "c2": 0.28, "c3": 0.655, "c4": 0.62}, - {"time": 0.25, "x": 1.061, "y": 0.929, "curve": 0.317, "c2": 0.28, "c3": 0.654, "c4": 0.62}, {"time": 0.5833, "x": 0.944, "y": 1.139, "curve": 0.33, "c2": 0.32, "c3": 0.664, "c4": 0.66}, - {"time": 0.7333, "x": 1.034, "y": 1.044, "curve": 0.331, "c2": 0.33, "c3": 0.666, "c4": 0.66}, - {"time": 0.9167, "x": 1.146, "y": 0.925, "curve": 0.334, "c2": 0.34, "c3": 0.668, "c4": 0.67}, - {"time": 1.0833, "x": 0.88, "y": 1.171, "curve": 0.336, "c2": 0.34, "c3": 0.671, "c4": 0.68}, {"time": 1.25, "x": 1.073, "y": 0.927, "curve": 0.339, "c2": 0.35, "c3": 0.673, "c4": 0.69}, - {"time": 1.4167, "x": 0.87, "y": 1.193, "curve": 0.352, "c2": 0.41, "c3": 0.689, "c4": 0.76}, {"time": 1.75, "x": 1.073, "y": 0.868, "curve": 0.367, "c2": 0.63, "c3": 0.705}, - {"time": 2.0833, "curve": "stepped"}, {"time": 2.25}, {"time": 2.4167, "x": 1.117, "y": 0.874, "curve": 0.303, "c3": 0.639, "c4": 0.36}, {"time": 2.6667, "x": 0.968, "y": 1.037} + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.1333, "x": 0.67, "y": -7.85, "curve": 0.161, "c3": 0.854}, {"time": 0.25, "x": 0.53, "y": -13.09, "curve": 0.25, "c4": 0.3}, + {"time": 0.3, "x": -0.22, "y": 1.34, "curve": "stepped"}, {"time": 0.4167, "x": -0.22, "y": 1.34, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.5833, "x": -0.28, "y": -7.87, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.75} ] }, - "ear-right-dot-11": { + "@shadow": { "translate": [ - {"x": 109.28, "y": -3.61}, {"time": 0.6833, "x": 175.18, "y": -5.79, "curve": "stepped"}, {"time": 0.7, "curve": "stepped"}, {"time": 1.5333}, {"time": 2.6667, "x": 109.28, "y": -3.61} + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 61.96, "curve": "stepped"}, {"time": 0.25, "x": 61.96, "curve": 0.697, "c4": 0.3}, {"time": 0.3, "x": -50.16}, + {"time": 0.4167, "x": -53.09, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5833, "x": -83.79, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.75} ], "scale": [ - {}, {"time": 0.1167, "x": 1.117, "y": 0.874, "curve": 0.295, "c3": 0.633, "c4": 0.37}, {"time": 0.35, "x": 0.871, "y": 1.143, "curve": 0.321, "c2": 0.28, "c3": 0.655, "c4": 0.62}, - {"time": 0.4667, "x": 1.061, "y": 0.929, "curve": 0.317, "c2": 0.28, "c3": 0.654, "c4": 0.62}, - {"time": 0.7167, "x": 0.944, "y": 1.139, "curve": 0.327, "c2": 0.31, "c3": 0.664, "c4": 0.66}, - {"time": 0.9333, "x": 1.146, "y": 0.925, "curve": 0.334, "c2": 0.34, "c3": 0.668, "c4": 0.67}, - {"time": 1.0667, "x": 0.88, "y": 1.171, "curve": 0.336, "c2": 0.34, "c3": 0.671, "c4": 0.68}, - {"time": 1.1833, "x": 1.073, "y": 0.927, "curve": 0.339, "c2": 0.35, "c3": 0.673, "c4": 0.69}, {"time": 1.3, "x": 0.87, "y": 1.193, "curve": 0.352, "c2": 0.41, "c3": 0.689, "c4": 0.76}, - {"time": 1.5333, "x": 1.073, "y": 0.868, "curve": 0.367, "c2": 0.63, "c3": 0.705}, {"time": 1.7667} + {"time": 0.0833, "curve": 0, "c2": 0.26, "c3": 0.369, "c4": 0.62}, {"time": 0.25, "x": 1.06, "y": 1.06, "curve": 0.697, "c4": 0.3}, + {"time": 0.3, "x": 0.96, "y": 0.96, "curve": "stepped"}, {"time": 0.4167, "x": 0.96, "y": 0.96, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.5833, "x": 1.08, "y": 1.08, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.75} ] }, - "ear-left-dot-07": { + "tail": { + "rotate": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "angle": 15.61, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "angle": 20.44, "curve": 0.697, "c4": 0.3}, + {"time": 0.3, "angle": -9.4}, {"time": 0.4167, "angle": -13.12, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5833, "angle": 15.47, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.75} + ] + } + }, + "events": [{"time": 0.3, "name": "start-attack"}] + }, + "1843465463": { + "slots": { + "eyes": {"attachment": [{"time": 0.0167, "name": "eyes-angry"}, {"time": 0.75, "name": "eyes-shut"}, {"time": 0.8333, "name": "eyes"}]}, + "leg-back-left": {"attachment": [{"time": 0.35, "name": "leg-back-left-long"}, {"time": 0.5833, "name": "leg-back-left"}]}, + "mouth": {"attachment": [{"time": 0.0167, "name": "mouth-bite"}, {"time": 0.2667, "name": "mouth-open"}, {"time": 0.5833, "name": "mouth-bite"}, {"time": 0.8333, "name": "mouth"}]} + }, + "bones": { + "@pivot-back": { + "rotate": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "angle": -3.92, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "angle": 2.51, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.3333, "angle": -6, "curve": "stepped"}, {"time": 0.35, "angle": -16}, {"time": 0.5667, "angle": -16.5, "curve": "stepped"}, {"time": 0.5833, "curve": 0.313, "c3": 0.699}, + {"time": 0.75, "angle": 6, "curve": 0.313, "c3": 0.699}, {"time": 0.9167} + ], "translate": [ - {"x": 63.96, "y": -1.07}, {"time": 1.4167, "x": 214.98, "y": -3.58, "curve": "stepped"}, {"time": 1.4333, "curve": "stepped"}, {"time": 2.0667}, {"time": 2.6667, "x": 63.96, "y": -1.07} + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "x": 71.93, "y": -12.95, "curve": "stepped"}, {"time": 0.25, "x": 71.93, "y": -12.95, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.3333, "x": -135.5, "curve": "stepped"}, {"time": 0.35, "x": -560.54, "y": 85.29}, {"time": 0.5667, "x": -562.89, "y": 81.57, "curve": "stepped"}, + {"time": 0.5833, "x": -151.24, "curve": 0.313, "c3": 0.699}, {"time": 0.75, "x": -151.24, "y": 4.06, "curve": 0.313, "c3": 0.699}, {"time": 0.9167} ], - "scale": [ - {"x": 1.034, "y": 0.977, "curve": 0.323, "c2": 0.3, "c3": 0.658, "c4": 0.64}, {"time": 0.2, "x": 0.944, "y": 1.139, "curve": 0.327, "c2": 0.31, "c3": 0.664, "c4": 0.66}, - {"time": 0.4667, "x": 1.146, "y": 0.925, "curve": 0.334, "c2": 0.34, "c3": 0.668, "c4": 0.67}, {"time": 0.6, "x": 0.88, "y": 1.171, "curve": 0.336, "c2": 0.34, "c3": 0.671, "c4": 0.68}, - {"time": 0.75, "x": 1.073, "y": 0.927, "curve": 0.339, "c2": 0.35, "c3": 0.673, "c4": 0.69}, {"time": 0.8833, "x": 0.87, "y": 1.193, "curve": 0.352, "c2": 0.41, "c3": 0.689, "c4": 0.76}, - {"time": 1.15, "x": 1.073, "y": 0.868, "curve": 0.367, "c2": 0.63, "c3": 0.705}, {"time": 1.4167, "curve": "stepped"}, {"time": 2.0667}, - {"time": 2.2, "x": 1.117, "y": 0.874, "curve": 0.295, "c3": 0.633, "c4": 0.37}, {"time": 2.4667, "x": 0.871, "y": 1.143, "curve": 0.321, "c2": 0.28, "c3": 0.655, "c4": 0.62}, - {"time": 2.6, "x": 1.061, "y": 0.929, "curve": 0.329, "c2": 0.32, "c3": 0.662, "c4": 0.65}, {"time": 2.6667, "x": 1.034, "y": 0.977} - ] + "scale": [{"time": 0.3333, "curve": "stepped"}, {"time": 0.35, "x": -1, "curve": "stepped"}, {"time": 0.5667, "x": -1, "curve": "stepped"}, {"time": 0.5833}] }, - "ear-right-dot-12": { + "@shadow": { "translate": [ - {"x": 89.44, "y": -1.49}, {"time": 1.3333, "x": 214.98, "y": -3.58, "curve": "stepped"}, {"time": 1.35, "curve": "stepped"}, {"time": 1.7167}, {"time": 2.6667, "x": 89.44, "y": -1.49} + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 61.96, "curve": "stepped"}, {"time": 0.25, "x": 61.96, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.3333, "x": -143.36, "curve": "stepped"}, {"time": 0.35, "x": -143.36}, {"time": 0.5667, "x": -157.56, "curve": "stepped"}, {"time": 0.5833, "x": -161.35, "curve": "stepped"}, + {"time": 0.75, "x": -161.35, "curve": 0.313, "c3": 0.699}, {"time": 0.9167} ], "scale": [ - {"x": 0.966, "y": 1.116, "curve": 0.329, "c2": 0.32, "c3": 0.664, "c4": 0.66}, {"time": 0.2667, "x": 1.146, "y": 0.925, "curve": 0.334, "c2": 0.34, "c3": 0.668, "c4": 0.67}, - {"time": 0.4167, "x": 0.88, "y": 1.171, "curve": 0.336, "c2": 0.34, "c3": 0.671, "c4": 0.68}, - {"time": 0.5667, "x": 1.073, "y": 0.927, "curve": 0.339, "c2": 0.35, "c3": 0.673, "c4": 0.69}, - {"time": 0.7167, "x": 0.87, "y": 1.193, "curve": 0.352, "c2": 0.41, "c3": 0.689, "c4": 0.76}, {"time": 1.0167, "x": 1.073, "y": 0.868, "curve": 0.367, "c2": 0.63, "c3": 0.705}, - {"time": 1.3333, "curve": "stepped"}, {"time": 1.7167}, {"time": 1.8667, "x": 1.117, "y": 0.874, "curve": 0.295, "c3": 0.633, "c4": 0.37}, - {"time": 2.1667, "x": 0.871, "y": 1.143, "curve": 0.321, "c2": 0.28, "c3": 0.655, "c4": 0.62}, - {"time": 2.3167, "x": 1.061, "y": 0.929, "curve": 0.317, "c2": 0.28, "c3": 0.654, "c4": 0.62}, - {"time": 2.6333, "x": 0.944, "y": 1.139, "curve": 0.332, "c2": 0.33, "c3": 0.666, "c4": 0.66}, {"time": 2.6667, "x": 0.966, "y": 1.116} + {"time": 0.0833, "curve": 0, "c2": 0.26, "c3": 0.369, "c4": 0.62}, {"time": 0.25, "x": 1.06, "y": 1.06, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "curve": "stepped"}, + {"time": 0.35}, {"time": 0.5667, "x": 1.08, "y": 1.08, "curve": "stepped"}, {"time": 0.5833, "curve": 0.313, "c3": 0.699}, + {"time": 0.75, "x": 1.08, "y": 1.08, "curve": 0.313, "c3": 0.699}, {"time": 0.9167} ] }, - "ear-left-dot-08": { - "translate": [{"x": 122.71, "y": -21.71}, {"time": 0.45, "x": 147.81, "y": -26.16, "curve": "stepped"}, {"time": 0.4667}, {"time": 2.6667, "x": 122.71, "y": -21.71}], - "scale": [ - {"x": 1.026, "y": 0.944, "curve": 0.34, "c2": 0.36, "c3": 0.674, "c4": 0.7}, {"time": 0.1, "x": 1.073, "y": 0.868, "curve": 0.367, "c2": 0.63, "c3": 0.705}, - {"time": 0.45, "curve": "stepped"}, {"time": 0.4667, "curve": 0.25, "c3": 0.75}, {"time": 0.65, "x": 1.117, "y": 0.874, "curve": 0.295, "c3": 0.633, "c4": 0.37}, - {"time": 1, "x": 0.871, "y": 1.143, "curve": 0.321, "c2": 0.28, "c3": 0.655, "c4": 0.62}, {"time": 1.1667, "x": 1.061, "y": 0.929, "curve": 0.317, "c2": 0.28, "c3": 0.654, "c4": 0.62}, - {"time": 1.5167, "x": 0.944, "y": 1.139, "curve": 0.327, "c2": 0.31, "c3": 0.664, "c4": 0.66}, - {"time": 1.8833, "x": 1.146, "y": 0.925, "curve": 0.334, "c2": 0.34, "c3": 0.668, "c4": 0.67}, {"time": 2.05, "x": 0.88, "y": 1.171, "curve": 0.336, "c2": 0.34, "c3": 0.671, "c4": 0.68}, - {"time": 2.2333, "x": 1.073, "y": 0.927, "curve": 0.339, "c2": 0.35, "c3": 0.673, "c4": 0.69}, {"time": 2.4, "x": 0.87, "y": 1.193, "curve": 0.346, "c2": 0.38, "c3": 0.681, "c4": 0.72}, - {"time": 2.6667, "x": 1.026, "y": 0.944} + "leg-back-left-IK": { + "translate": [ + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.1333, "x": 80.9, "curve": 0.161, "c3": 0.854}, {"time": 0.25, "x": 62.82, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.3333, "x": -99.34, "y": 18.56, "curve": "stepped"}, {"time": 0.35, "x": -653.9, "y": 153.81}, {"time": 0.5667, "x": -653.9, "y": 167.85, "curve": "stepped"}, + {"time": 0.5833, "x": -134.74, "curve": "stepped"}, {"time": 0.75, "x": -134.74, "curve": 0.313, "c3": 0.699}, {"time": 0.9167} ] }, - "ear-right-dot-13": { + "leg-front-right-IK": { "translate": [ - {"x": 36.97, "y": 7.71}, {"time": 1.95, "x": 168.03, "y": 35.03, "curve": "stepped"}, {"time": 1.9667, "curve": "stepped"}, {"time": 2.1167}, {"time": 2.6667, "x": 36.97, "y": 7.71} - ], - "scale": [ - {"x": 0.923, "y": 1.084, "curve": 0.325, "c2": 0.3, "c3": 0.659, "c4": 0.63}, {"time": 0.1167, "x": 1.061, "y": 0.929, "curve": 0.317, "c2": 0.28, "c3": 0.654, "c4": 0.62}, - {"time": 0.45, "x": 0.944, "y": 1.139, "curve": 0.327, "c2": 0.31, "c3": 0.664, "c4": 0.66}, - {"time": 0.7833, "x": 1.146, "y": 0.925, "curve": 0.334, "c2": 0.34, "c3": 0.668, "c4": 0.67}, {"time": 0.95, "x": 0.88, "y": 1.171, "curve": 0.336, "c2": 0.34, "c3": 0.671, "c4": 0.68}, - {"time": 1.1167, "x": 1.073, "y": 0.927, "curve": 0.339, "c2": 0.35, "c3": 0.673, "c4": 0.69}, - {"time": 1.2833, "x": 0.87, "y": 1.193, "curve": 0.352, "c2": 0.41, "c3": 0.689, "c4": 0.76}, {"time": 1.6167, "x": 1.073, "y": 0.868, "curve": 0.367, "c2": 0.63, "c3": 0.705}, - {"time": 1.95, "curve": "stepped"}, {"time": 2.1167}, {"time": 2.2833, "x": 1.117, "y": 0.874, "curve": 0.295, "c3": 0.633, "c4": 0.37}, - {"time": 2.6167, "x": 0.871, "y": 1.143, "curve": 0.329, "c2": 0.31, "c3": 0.663, "c4": 0.65}, {"time": 2.6667, "x": 0.923, "y": 1.084} + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 22.35, "curve": 0.306, "c3": 0.695}, {"time": 0.25, "x": 42.9, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.3333, "x": -131.73, "y": 44.58, "curve": "stepped"}, {"time": 0.35, "x": 244.36, "y": -4.92, "curve": 0.31, "c4": 0.8}, + {"time": 0.5667, "x": 247.43, "y": -1.85, "curve": "stepped"}, {"time": 0.5833, "x": -180.48, "curve": "stepped"}, {"time": 0.75, "x": -180.48, "curve": 0.313, "c3": 0.699}, + {"time": 0.9167} ] }, - "ear-right-dot-14": { + "leg-front-left-IK": { "translate": [ - {"x": 165.28, "y": 17.31}, {"time": 0.1167, "x": 173.66, "y": 18.18, "curve": "stepped"}, {"time": 0.1333, "curve": "stepped"}, {"time": 0.3667}, {"time": 1.6833, "x": 94.61, "y": 9.91}, - {"time": 2.6667, "x": 165.28, "y": 17.31} - ], - "scale": [ - {"x": 1.012, "y": 0.978, "curve": 0.349, "c2": 0.65, "c3": 0.683}, {"time": 0.1167, "curve": "stepped"}, {"time": 0.3667}, - {"time": 0.5333, "x": 1.117, "y": 0.874, "curve": 0.295, "c3": 0.633, "c4": 0.37}, {"time": 0.85, "x": 0.871, "y": 1.143, "curve": 0.321, "c2": 0.28, "c3": 0.655, "c4": 0.62}, - {"time": 1.0167, "x": 1.061, "y": 0.929, "curve": 0.317, "c2": 0.28, "c3": 0.654, "c4": 0.62}, - {"time": 1.3333, "x": 0.944, "y": 1.139, "curve": 0.327, "c2": 0.31, "c3": 0.664, "c4": 0.66}, - {"time": 1.6667, "x": 1.146, "y": 0.925, "curve": 0.333, "c2": 0.33, "c3": 0.667, "c4": 0.67}, - {"time": 1.6833, "x": 1.116, "y": 0.953, "curve": 0.334, "c2": 0.34, "c3": 0.668, "c4": 0.67}, - {"time": 1.8167, "x": 0.88, "y": 1.171, "curve": 0.336, "c2": 0.34, "c3": 0.671, "c4": 0.68}, - {"time": 1.9833, "x": 1.073, "y": 0.927, "curve": 0.339, "c2": 0.35, "c3": 0.673, "c4": 0.69}, {"time": 2.15, "x": 0.87, "y": 1.193, "curve": 0.352, "c2": 0.41, "c3": 0.689, "c4": 0.76}, - {"time": 2.4667, "x": 1.073, "y": 0.868, "curve": 0.353, "c2": 0.47, "c3": 0.688, "c4": 0.81}, {"time": 2.6667, "x": 1.012, "y": 0.978} + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "x": 40.76, "y": 5.08, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "x": 49, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.3333, "x": -180.92, "y": 40.32, "curve": "stepped"}, {"time": 0.35, "x": -197.17}, {"time": 0.5667, "x": -230.7, "y": 4.81, "curve": "stepped"}, + {"time": 0.5833, "x": -180.48, "curve": "stepped"}, {"time": 0.75, "x": -180.48, "curve": 0.313, "c3": 0.699}, {"time": 0.9167} ] }, - "ear-right-dot-15": { + "@leg-front-left": { "translate": [ - {"x": 72.79, "y": -12.11}, {"time": 0.8167, "x": 158.24, "y": -26.33, "curve": "stepped"}, {"time": 0.8333, "curve": "stepped"}, {"time": 1.7667}, - {"time": 2.6667, "x": 72.79, "y": -12.11} - ], - "scale": [ - {"x": 1.034, "y": 1.044, "curve": 0.331, "c2": 0.33, "c3": 0.666, "c4": 0.66}, {"time": 0.1167, "x": 1.146, "y": 0.925, "curve": 0.334, "c2": 0.34, "c3": 0.668, "c4": 0.67}, - {"time": 0.2167, "x": 0.88, "y": 1.171, "curve": 0.336, "c2": 0.34, "c3": 0.671, "c4": 0.68}, - {"time": 0.3167, "x": 1.073, "y": 0.927, "curve": 0.339, "c2": 0.35, "c3": 0.673, "c4": 0.69}, - {"time": 0.4167, "x": 0.87, "y": 1.193, "curve": 0.352, "c2": 0.41, "c3": 0.689, "c4": 0.76}, {"time": 0.6167, "x": 1.073, "y": 0.868, "curve": 0.367, "c2": 0.63, "c3": 0.705}, - {"time": 0.8167, "curve": "stepped"}, {"time": 1.7667}, {"time": 1.8833, "x": 1.117, "y": 0.874, "curve": 0.295, "c3": 0.633, "c4": 0.37}, - {"time": 2.15, "x": 0.871, "y": 1.143, "curve": 0.321, "c2": 0.28, "c3": 0.655, "c4": 0.62}, - {"time": 2.2833, "x": 1.061, "y": 0.929, "curve": 0.317, "c2": 0.28, "c3": 0.654, "c4": 0.62}, {"time": 2.55, "x": 0.944, "y": 1.139, "curve": 0.33, "c2": 0.32, "c3": 0.664, "c4": 0.66}, - {"time": 2.6667, "x": 1.034, "y": 1.044} + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "x": -2.9, "y": -1.1, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.25, "x": -0.62, "y": -3.44, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "x": -1, "y": -5.53, "curve": "stepped"}, {"time": 0.35, "x": 4.4, "y": -4.91}, + {"time": 0.5667, "x": 7.49, "y": -5.17, "curve": "stepped"}, {"time": 0.5833, "x": 18.69, "y": 1.85, "curve": "stepped"}, + {"time": 0.75, "x": 18.69, "y": 1.85, "curve": 0.306, "c3": 0.695}, {"time": 0.9167} ] }, - "ear-left-dot-09": { + "@leg-front-right": { "translate": [ - {"x": 127.89, "y": 1.94}, {"time": 0.4833, "x": 164.98, "y": 2.51, "curve": "stepped"}, {"time": 0.5, "curve": "stepped"}, {"time": 1}, {"time": 2.6667, "x": 127.89, "y": 1.94} - ], - "scale": [ - {"x": 0.937, "y": 1.086, "curve": 0.348, "c2": 0.4, "c3": 0.683, "c4": 0.74}, {"time": 0.2, "x": 1.073, "y": 0.868, "curve": 0.367, "c2": 0.63, "c3": 0.705}, - {"time": 0.4833, "curve": "stepped"}, {"time": 1}, {"time": 1.15, "x": 1.117, "y": 0.874, "curve": 0.295, "c3": 0.633, "c4": 0.37}, - {"time": 1.4333, "x": 0.871, "y": 1.143, "curve": 0.321, "c2": 0.28, "c3": 0.655, "c4": 0.62}, - {"time": 1.5667, "x": 1.061, "y": 0.929, "curve": 0.317, "c2": 0.28, "c3": 0.654, "c4": 0.62}, - {"time": 1.8667, "x": 0.944, "y": 1.139, "curve": 0.327, "c2": 0.31, "c3": 0.664, "c4": 0.66}, - {"time": 2.15, "x": 1.146, "y": 0.925, "curve": 0.334, "c2": 0.34, "c3": 0.668, "c4": 0.67}, {"time": 2.2833, "x": 0.88, "y": 1.171, "curve": 0.336, "c2": 0.34, "c3": 0.671, "c4": 0.68}, - {"time": 2.4333, "x": 1.073, "y": 0.927, "curve": 0.339, "c2": 0.35, "c3": 0.673, "c4": 0.69}, - {"time": 2.5833, "x": 0.87, "y": 1.193, "curve": 0.338, "c2": 0.35, "c3": 0.672, "c4": 0.68}, {"time": 2.6667, "x": 0.937, "y": 1.086} + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 4.31, "y": 11.86, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.25, "x": -10.48, "y": -15.33, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "x": -3.15, "y": 1.33, "curve": "stepped"}, {"time": 0.35, "x": -3.84, "y": 7.68}, + {"time": 0.5667, "x": -3.53, "y": 9.04, "curve": "stepped"}, {"time": 0.5833, "x": -2.24, "y": 13.67, "curve": 0.313, "c3": 0.699}, + {"time": 0.75, "x": -2.69, "y": -18.63, "curve": 0.313, "c3": 0.699}, {"time": 0.9167} ] }, - "ear-left-dot-10": { - "translate": [{"time": 0.1333}, {"time": 0.7333, "x": 63.96, "y": -1.07}, {"time": 2.15, "x": 214.98, "y": -3.58, "curve": "stepped"}, {"time": 2.1667}], - "scale": [ - {"time": 0.1333}, {"time": 0.2667, "x": 1.117, "y": 0.874, "curve": 0.295, "c3": 0.633, "c4": 0.37}, - {"time": 0.5333, "x": 0.871, "y": 1.143, "curve": 0.321, "c2": 0.28, "c3": 0.655, "c4": 0.62}, - {"time": 0.6667, "x": 1.061, "y": 0.929, "curve": 0.329, "c2": 0.32, "c3": 0.662, "c4": 0.65}, - {"time": 0.7333, "x": 1.034, "y": 0.977, "curve": 0.323, "c2": 0.3, "c3": 0.658, "c4": 0.64}, - {"time": 0.9333, "x": 0.944, "y": 1.139, "curve": 0.327, "c2": 0.31, "c3": 0.664, "c4": 0.66}, {"time": 1.2, "x": 1.146, "y": 0.925, "curve": 0.334, "c2": 0.34, "c3": 0.668, "c4": 0.67}, - {"time": 1.3333, "x": 0.88, "y": 1.171, "curve": 0.336, "c2": 0.34, "c3": 0.671, "c4": 0.68}, - {"time": 1.4833, "x": 1.073, "y": 0.927, "curve": 0.339, "c2": 0.35, "c3": 0.673, "c4": 0.69}, - {"time": 1.6167, "x": 0.87, "y": 1.193, "curve": 0.352, "c2": 0.41, "c3": 0.689, "c4": 0.76}, {"time": 1.8833, "x": 1.073, "y": 0.868, "curve": 0.367, "c2": 0.63, "c3": 0.705}, - {"time": 2.15} + "@leg-back-left": { + "translate": [ + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.1333, "x": 0.67, "y": -7.85, "curve": 0.161, "c3": 0.854}, {"time": 0.25, "x": 0.74, "y": -5.43, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.3333, "x": -0.54, "y": 4.44, "curve": "stepped"}, {"time": 0.35, "x": 10.26, "y": 0.56, "curve": "stepped"}, {"time": 0.5667, "x": 10.26, "y": 0.56, "curve": "stepped"}, + {"time": 0.5833} ] }, - "ear-left-dot-11": { - "translate": [ - {"x": 81.81, "y": -14.48}, {"time": 0.7333, "x": 122.71, "y": -21.71}, {"time": 1.1833, "x": 147.81, "y": -26.16, "curve": "stepped"}, {"time": 1.2}, - {"time": 2.6667, "x": 81.81, "y": -14.48} - ], - "scale": [ - {"x": 1.066, "y": 0.999, "curve": 0.334, "c2": 0.34, "c3": 0.668, "c4": 0.67}, {"time": 0.1167, "x": 0.88, "y": 1.171, "curve": 0.336, "c2": 0.34, "c3": 0.671, "c4": 0.68}, - {"time": 0.3, "x": 1.073, "y": 0.927, "curve": 0.339, "c2": 0.35, "c3": 0.673, "c4": 0.69}, {"time": 0.4667, "x": 0.87, "y": 1.193, "curve": 0.346, "c2": 0.38, "c3": 0.681, "c4": 0.72}, - {"time": 0.7333, "x": 1.026, "y": 0.944, "curve": 0.34, "c2": 0.36, "c3": 0.674, "c4": 0.7}, {"time": 0.8333, "x": 1.073, "y": 0.868, "curve": 0.367, "c2": 0.63, "c3": 0.705}, - {"time": 1.1833, "curve": "stepped"}, {"time": 1.2, "curve": 0.25, "c3": 0.75}, {"time": 1.3833, "x": 1.117, "y": 0.874, "curve": 0.295, "c3": 0.633, "c4": 0.37}, - {"time": 1.7333, "x": 0.871, "y": 1.143, "curve": 0.321, "c2": 0.28, "c3": 0.655, "c4": 0.62}, {"time": 1.9, "x": 1.061, "y": 0.929, "curve": 0.317, "c2": 0.28, "c3": 0.654, "c4": 0.62}, - {"time": 2.25, "x": 0.944, "y": 1.139, "curve": 0.327, "c2": 0.31, "c3": 0.664, "c4": 0.66}, - {"time": 2.6167, "x": 1.146, "y": 0.925, "curve": 0.333, "c2": 0.33, "c3": 0.667, "c4": 0.67}, {"time": 2.6667, "x": 1.066, "y": 0.999} + "tail": { + "rotate": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "angle": 15.61, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "angle": 20.44, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.3333, "angle": -15.58, "curve": "stepped"}, {"time": 0.35, "angle": 30.35}, {"time": 0.5667, "angle": 35.35, "curve": "stepped"}, + {"time": 0.5833, "angle": -11.84, "curve": 0.313, "c3": 0.699}, {"time": 0.75, "angle": 16.95, "curve": 0.313, "c3": 0.699}, {"time": 0.9167} ] }, - "ear-left-dot-12": { + "@pivot-main": { + "translate": [{"time": 0.75, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.8333, "y": 31, "curve": 0.315, "c4": 0.8}, {"time": 0.9167}], + "scale": [{"time": 0.5667, "curve": "stepped"}, {"time": 0.75, "y": 0.98, "curve": 0.154, "c4": 0.9}, {"time": 0.9167}] + } + }, + "drawOrder": [{"time": 0.35, "offsets": [{"slot": "leg-back-left", "offset": 2}]}, {"time": 0.5833}], + "events": [{"time": 0.35, "name": "start-attack"}, {"time": 0.5667, "name": "start-attack"}] + }, + "1988236421": { + "slots": { + "eyes": {"attachment": [{"time": 0.1333, "name": "eyes-shut"}, {"time": 0.2, "name": "eyes"}, {"time": 0.4667, "name": "eyes-shut"}]}, + "mouth": {"attachment": [{"time": 0.0833, "name": "mouth-open"}, {"time": 0.3333, "name": "mouth"}, {"time": 0.4167, "name": "mouth-open"}]} + }, + "bones": { + "@mouth": { "translate": [ - {"x": 71.62, "y": 1.09}, {"time": 0.7333, "x": 127.89, "y": 1.94}, {"time": 1.2167, "x": 164.98, "y": 2.51, "curve": "stepped"}, {"time": 1.2333, "curve": "stepped"}, {"time": 1.7333}, - {"time": 2.6667, "x": 71.62, "y": 1.09} - ], - "scale": [ - {"x": 0.991, "y": 1.09, "curve": 0.33, "c2": 0.32, "c3": 0.665, "c4": 0.66}, {"time": 0.2167, "x": 1.146, "y": 0.925, "curve": 0.334, "c2": 0.34, "c3": 0.668, "c4": 0.67}, - {"time": 0.35, "x": 0.88, "y": 1.171, "curve": 0.336, "c2": 0.34, "c3": 0.671, "c4": 0.68}, {"time": 0.5, "x": 1.073, "y": 0.927, "curve": 0.339, "c2": 0.35, "c3": 0.673, "c4": 0.69}, - {"time": 0.65, "x": 0.87, "y": 1.193, "curve": 0.338, "c2": 0.35, "c3": 0.672, "c4": 0.68}, {"time": 0.7333, "x": 0.937, "y": 1.086, "curve": 0.348, "c2": 0.4, "c3": 0.683, "c4": 0.74}, - {"time": 0.9333, "x": 1.073, "y": 0.868, "curve": 0.367, "c2": 0.63, "c3": 0.705}, {"time": 1.2167, "curve": "stepped"}, {"time": 1.7333}, - {"time": 1.8833, "x": 1.117, "y": 0.874, "curve": 0.295, "c3": 0.633, "c4": 0.37}, {"time": 2.1667, "x": 0.871, "y": 1.143, "curve": 0.321, "c2": 0.28, "c3": 0.655, "c4": 0.62}, - {"time": 2.3, "x": 1.061, "y": 0.929, "curve": 0.317, "c2": 0.28, "c3": 0.654, "c4": 0.62}, {"time": 2.6, "x": 0.944, "y": 1.139, "curve": 0.331, "c2": 0.33, "c3": 0.665, "c4": 0.66}, - {"time": 2.6667, "x": 0.991, "y": 1.09} + {"time": 0.1667, "curve": 0, "c2": 0.1, "c3": 0.479, "c4": 0.56}, {"time": 0.3333, "x": -0.56, "y": 3.4, "curve": 0.408, "c2": 0.51, "c3": 0.853}, + {"time": 0.5, "x": 0.04, "y": 0.05, "curve": 0, "c2": 0.27, "c3": 0.314, "c4": 0.8}, {"time": 0.6, "x": 3.03, "y": 2.83, "curve": 0.168, "c2": 0.32, "c3": 0.551, "c4": 0.7}, + {"time": 0.7, "x": -0.51, "y": 3.39, "curve": 0.291, "c2": 0.39, "c3": 0.63, "c4": 0.75}, {"time": 0.8, "x": -3.56, "y": 0.39, "curve": 0.329, "c2": 0.61, "c3": 0.674, "c4": 0.99}, + {"time": 0.9, "x": 0.05, "y": -0.01, "curve": 0, "c2": 0.27, "c3": 0.31, "c4": 0.8}, {"time": 1.0167, "x": 3.05, "y": 2.75, "curve": 0.154, "c2": 0.33, "c3": 0.544, "c4": 0.7}, + {"time": 1.1167, "x": -0.5, "y": 3.35, "curve": 0.298, "c2": 0.38, "c3": 0.643, "c4": 0.74}, {"time": 1.2167, "x": -3.56, "y": 0.37, "curve": 0.326, "c2": 0.61, "c3": 0.671, "c4": 0.99}, + {"time": 1.3333} ] }, - "ear-right-dot-16": { - "translate": [ - {"x": 38.57, "y": -1.28}, {"time": 0.7333, "x": 109.28, "y": -3.61}, {"time": 1.4167, "x": 175.18, "y": -5.79, "curve": "stepped"}, {"time": 1.4333, "curve": "stepped"}, - {"time": 2.2667}, {"time": 2.6667, "x": 38.57, "y": -1.28} + "@pivot-back": { + "rotate": [ + {"curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.0667, "angle": -0.59, "curve": 0.075, "c4": 0.95}, {"time": 0.1333, "angle": 1.15, "curve": 0, "c2": 0.1, "c3": 0.85}, + {"time": 0.2167, "curve": "stepped"}, {"time": 0.3333, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.4, "angle": -0.59, "curve": 0.075, "c4": 0.95}, + {"time": 0.4667, "angle": 1.15, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.5833} ], - "scale": [ - {}, {"time": 0.1167, "x": 1.117, "y": 0.874, "curve": 0.295, "c3": 0.633, "c4": 0.37}, {"time": 0.35, "x": 0.871, "y": 1.143, "curve": 0.321, "c2": 0.28, "c3": 0.655, "c4": 0.62}, - {"time": 0.4667, "x": 1.061, "y": 0.929, "curve": 0.317, "c2": 0.28, "c3": 0.654, "c4": 0.62}, - {"time": 0.7167, "x": 0.944, "y": 1.139, "curve": 0.327, "c2": 0.31, "c3": 0.664, "c4": 0.66}, - {"time": 0.9333, "x": 1.146, "y": 0.925, "curve": 0.334, "c2": 0.34, "c3": 0.668, "c4": 0.67}, - {"time": 1.0667, "x": 0.88, "y": 1.171, "curve": 0.336, "c2": 0.34, "c3": 0.671, "c4": 0.68}, - {"time": 1.1833, "x": 1.073, "y": 0.927, "curve": 0.339, "c2": 0.35, "c3": 0.673, "c4": 0.69}, {"time": 1.3, "x": 0.87, "y": 1.193, "curve": 0.352, "c2": 0.41, "c3": 0.689, "c4": 0.76}, - {"time": 1.5333, "x": 1.073, "y": 0.868, "curve": 0.367, "c2": 0.63, "c3": 0.705}, {"time": 1.7667} + "translate": [ + {"y": 0.06, "curve": 0.387, "c3": 0.314}, {"time": 0.1333, "x": -13.8, "y": 0.06, "curve": 0.387, "c3": 0.314}, {"time": 0.2167, "x": 0.02, "y": 0.06, "curve": "stepped"}, + {"time": 0.3333, "x": 0.02, "y": 0.06, "curve": 0.387, "c3": 0.314}, {"time": 0.4667, "x": -13.8, "y": 0.06, "curve": 0.387, "c3": 0.314}, {"time": 0.5833, "x": 0.02, "y": 0.06} ] }, - "ear-right-dot-17": { - "translate": [ - {"x": 20.4, "y": -0.34}, {"time": 0.7333, "x": 89.44, "y": -1.49}, {"time": 2.0667, "x": 214.98, "y": -3.58, "curve": "stepped"}, {"time": 2.0833, "curve": "stepped"}, {"time": 2.45}, - {"time": 2.6667, "x": 20.4, "y": -0.34} - ], - "scale": [ - {"x": 1.101, "y": 0.892, "curve": 0.306, "c2": 0.13, "c3": 0.641, "c4": 0.48}, {"time": 0.2333, "x": 0.871, "y": 1.143, "curve": 0.321, "c2": 0.28, "c3": 0.655, "c4": 0.62}, - {"time": 0.3833, "x": 1.061, "y": 0.929, "curve": 0.317, "c2": 0.28, "c3": 0.654, "c4": 0.62}, {"time": 0.7, "x": 0.944, "y": 1.139, "curve": 0.332, "c2": 0.33, "c3": 0.666, "c4": 0.66}, - {"time": 0.7333, "x": 0.966, "y": 1.116, "curve": 0.329, "c2": 0.32, "c3": 0.664, "c4": 0.66}, {"time": 1, "x": 1.146, "y": 0.925, "curve": 0.334, "c2": 0.34, "c3": 0.668, "c4": 0.67}, - {"time": 1.15, "x": 0.88, "y": 1.171, "curve": 0.336, "c2": 0.34, "c3": 0.671, "c4": 0.68}, {"time": 1.3, "x": 1.073, "y": 0.927, "curve": 0.339, "c2": 0.35, "c3": 0.673, "c4": 0.69}, - {"time": 1.45, "x": 0.87, "y": 1.193, "curve": 0.352, "c2": 0.41, "c3": 0.689, "c4": 0.76}, {"time": 1.75, "x": 1.073, "y": 0.868, "curve": 0.367, "c2": 0.63, "c3": 0.705}, - {"time": 2.0667, "curve": "stepped"}, {"time": 2.45}, {"time": 2.6, "x": 1.117, "y": 0.874, "curve": 0.323, "c3": 0.657, "c4": 0.34}, {"time": 2.6667, "x": 1.101, "y": 0.892} + "@leg-front-right": { + "rotate": [ + {"curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.0667, "angle": 10.98, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.2167, "angle": -8.78, "curve": 0.161, "c3": 0.854}, + {"time": 0.3333, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.4, "angle": 10.98, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.55, "angle": -8.78, "curve": 0.161, "c3": 0.854}, + {"time": 0.6667, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.8333, "angle": -9.85, "curve": 0.161, "c3": 0.854}, {"time": 0.9833, "angle": -6.21}, + {"time": 1.15, "angle": 2.69, "curve": 0.075, "c4": 0.95}, {"time": 1.3333} ] }, - "ear-right-dot-18": { - "translate": [ - {"x": 166.91, "y": 34.8}, {"time": 0.0167, "x": 168.03, "y": 35.03, "curve": "stepped"}, {"time": 0.0333, "curve": "stepped"}, {"time": 0.1833}, {"time": 0.7333, "x": 36.97, "y": 7.71}, - {"time": 2.6667, "x": 166.91, "y": 34.8} - ], - "scale": [ - {"y": 0.999, "curve": 0.336, "c2": 0.67, "c3": 0.669}, {"time": 0.0167, "curve": "stepped"}, {"time": 0.1833}, - {"time": 0.35, "x": 1.117, "y": 0.874, "curve": 0.295, "c3": 0.633, "c4": 0.37}, {"time": 0.6833, "x": 0.871, "y": 1.143, "curve": 0.329, "c2": 0.31, "c3": 0.663, "c4": 0.65}, - {"time": 0.7333, "x": 0.923, "y": 1.084, "curve": 0.325, "c2": 0.3, "c3": 0.659, "c4": 0.63}, {"time": 0.85, "x": 1.061, "y": 0.929, "curve": 0.317, "c2": 0.28, "c3": 0.654, "c4": 0.62}, - {"time": 1.1833, "x": 0.944, "y": 1.139, "curve": 0.327, "c2": 0.31, "c3": 0.664, "c4": 0.66}, - {"time": 1.5167, "x": 1.146, "y": 0.925, "curve": 0.334, "c2": 0.34, "c3": 0.668, "c4": 0.67}, - {"time": 1.6833, "x": 0.88, "y": 1.171, "curve": 0.336, "c2": 0.34, "c3": 0.671, "c4": 0.68}, {"time": 1.85, "x": 1.073, "y": 0.927, "curve": 0.339, "c2": 0.35, "c3": 0.673, "c4": 0.69}, - {"time": 2.0167, "x": 0.87, "y": 1.193, "curve": 0.352, "c2": 0.41, "c3": 0.689, "c4": 0.76}, {"time": 2.35, "x": 1.073, "y": 0.868, "curve": 0.365, "c2": 0.6, "c3": 0.702, "c4": 0.97}, - {"time": 2.6667, "y": 0.999} + "@leg-front-left": { + "rotate": [ + {"curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.0667, "angle": 10.98, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.2167, "angle": -8.78, "curve": 0.161, "c3": 0.854}, + {"time": 0.3333, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.4, "angle": 10.98, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.55, "angle": -8.78, "curve": 0.161, "c3": 0.854}, + {"time": 0.6667, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.8333, "angle": -9.84, "curve": 0.161, "c3": 0.854}, {"time": 0.9833, "angle": -6.21}, + {"time": 1.15, "angle": 2.69, "curve": 0.075, "c4": 0.95}, {"time": 1.3333} ] }, - "ear-right-dot-19": { - "translate": [ - {"x": 112.58, "y": 11.79}, {"time": 0.7333, "x": 165.28, "y": 17.31}, {"time": 0.85, "x": 173.66, "y": 18.18, "curve": "stepped"}, {"time": 0.8667, "curve": "stepped"}, {"time": 1.1}, - {"time": 2.4167, "x": 94.61, "y": 9.91}, {"time": 2.6667, "x": 112.58, "y": 11.79} - ], - "scale": [ - {"x": 1.016, "y": 0.999, "curve": 0.335, "c2": 0.34, "c3": 0.668, "c4": 0.67}, {"time": 0.05, "x": 1.073, "y": 0.927, "curve": 0.339, "c2": 0.35, "c3": 0.673, "c4": 0.69}, - {"time": 0.2167, "x": 0.87, "y": 1.193, "curve": 0.352, "c2": 0.41, "c3": 0.689, "c4": 0.76}, - {"time": 0.5333, "x": 1.073, "y": 0.868, "curve": 0.353, "c2": 0.47, "c3": 0.688, "c4": 0.81}, {"time": 0.7333, "x": 1.012, "y": 0.978, "curve": 0.349, "c2": 0.65, "c3": 0.683}, - {"time": 0.85, "curve": "stepped"}, {"time": 1.1}, {"time": 1.2667, "x": 1.117, "y": 0.874, "curve": 0.295, "c3": 0.633, "c4": 0.37}, - {"time": 1.5833, "x": 0.871, "y": 1.143, "curve": 0.321, "c2": 0.28, "c3": 0.655, "c4": 0.62}, - {"time": 1.75, "x": 1.061, "y": 0.929, "curve": 0.317, "c2": 0.28, "c3": 0.654, "c4": 0.62}, - {"time": 2.0667, "x": 0.944, "y": 1.139, "curve": 0.327, "c2": 0.31, "c3": 0.664, "c4": 0.66}, {"time": 2.4, "x": 1.146, "y": 0.925, "curve": 0.333, "c2": 0.33, "c3": 0.667, "c4": 0.67}, - {"time": 2.4167, "x": 1.116, "y": 0.953, "curve": 0.334, "c2": 0.34, "c3": 0.668, "c4": 0.67}, {"time": 2.55, "x": 0.88, "y": 1.171, "curve": 0.335, "c2": 0.34, "c3": 0.669, "c4": 0.67}, - {"time": 2.6667, "x": 1.016, "y": 0.999} + "@leg-back-left": { + "rotate": [ + {"curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.0667, "angle": 10.98, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.2167, "angle": -8.78, "curve": 0.161, "c3": 0.854}, + {"time": 0.3333, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.4, "angle": 10.98, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.55, "angle": -8.78, "curve": 0.161, "c3": 0.854}, + {"time": 0.6667, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.8333, "angle": 5.93, "curve": 0.161, "c3": 0.854}, {"time": 0.9833}, + {"time": 1.15, "angle": -4.97, "curve": 0.075, "c4": 0.95}, {"time": 1.3333} ] }, - "ear-right-dot-20": { + "@pivot-main": {"translate": [{"curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.0667, "y": 7.88, "curve": 0.078, "c4": 0.94}, {"time": 0.1333}]}, + "@pivot-center": {"translate": [{"curve": 0.387, "c3": 0.314}, {"time": 0.6667, "y": 14.05, "curve": 0.387, "c3": 0.314}, {"time": 1.3333}]}, + "@shadow": { "translate": [ - {"x": 26.37, "y": -4.39}, {"time": 0.7333, "x": 72.79, "y": -12.11}, {"time": 2.0833, "x": 158.24, "y": -26.33, "curve": "stepped"}, {"time": 2.1, "curve": "stepped"}, {"time": 2.25}, - {"time": 2.6667, "x": 26.37, "y": -4.39} + {"curve": 0.387, "c3": 0.314}, {"time": 0.1333, "x": -23.3, "curve": 0.387, "c3": 0.314}, {"time": 0.2167, "x": -9.6, "curve": "stepped"}, + {"time": 0.3333, "x": -9.6, "curve": 0.387, "c3": 0.314}, {"time": 0.4667, "x": -23.3, "curve": 0.387, "c3": 0.314}, {"time": 0.5833} ], - "scale": [ - {"x": 0.968, "y": 1.037, "curve": 0.326, "c2": 0.29, "c3": 0.659, "c4": 0.63}, {"time": 0.0833, "x": 0.871, "y": 1.143, "curve": 0.321, "c2": 0.28, "c3": 0.655, "c4": 0.62}, - {"time": 0.25, "x": 1.061, "y": 0.929, "curve": 0.317, "c2": 0.28, "c3": 0.654, "c4": 0.62}, {"time": 0.5833, "x": 0.944, "y": 1.139, "curve": 0.33, "c2": 0.32, "c3": 0.664, "c4": 0.66}, - {"time": 0.7333, "x": 1.034, "y": 1.044, "curve": 0.331, "c2": 0.33, "c3": 0.666, "c4": 0.66}, - {"time": 0.9167, "x": 1.146, "y": 0.925, "curve": 0.334, "c2": 0.34, "c3": 0.668, "c4": 0.67}, - {"time": 1.0833, "x": 0.88, "y": 1.171, "curve": 0.336, "c2": 0.34, "c3": 0.671, "c4": 0.68}, {"time": 1.25, "x": 1.073, "y": 0.927, "curve": 0.339, "c2": 0.35, "c3": 0.673, "c4": 0.69}, - {"time": 1.4167, "x": 0.87, "y": 1.193, "curve": 0.352, "c2": 0.41, "c3": 0.689, "c4": 0.76}, {"time": 1.75, "x": 1.073, "y": 0.868, "curve": 0.367, "c2": 0.63, "c3": 0.705}, - {"time": 2.0833, "curve": "stepped"}, {"time": 2.25}, {"time": 2.4167, "x": 1.117, "y": 0.874, "curve": 0.303, "c3": 0.639, "c4": 0.36}, {"time": 2.6667, "x": 0.968, "y": 1.037} + "scale": [{"curve": 0.387, "c3": 0.314}, {"time": 0.6667, "x": 0.95, "y": 0.95, "curve": 0.387, "c3": 0.314}, {"time": 1.3333}] + }, + "tail": { + "rotate": [ + {"curve": 0, "c2": 0.12, "c3": 0.348, "c4": 0.47}, {"time": 0.1, "angle": -6.85, "curve": 0.229, "c2": 0.25, "c3": 0.569, "c4": 0.6}, + {"time": 0.2, "angle": 1.43, "curve": 0.188, "c2": 0.31, "c3": 0.695}, {"time": 0.3333, "angle": 3.02, "curve": 0, "c2": 0.12, "c3": 0.347, "c4": 0.48}, + {"time": 0.4333, "angle": -6.85, "curve": 0.229, "c2": 0.25, "c3": 0.569, "c4": 0.6}, {"time": 0.5333, "angle": 1.2, "curve": 0.155, "c3": 0.85}, + {"time": 0.75, "angle": -5.95, "curve": 0.161, "c3": 0.854}, {"time": 0.95, "angle": -0.94}, {"time": 1.15, "angle": 4.91, "curve": 0.234, "c4": 0.9}, {"time": 1.3333} ] } } }, - "3799301307": { - "slots": { - "eyes-happy-accessory": { - "color": [ - {"time": 0.9, "color": "ffffff00", "curve": 0, "c2": 0.86, "c3": 0.236}, {"time": 0.9333, "color": "ffffffff", "curve": "stepped"}, - {"time": 1.0167, "color": "ffffffff", "curve": 0, "c2": 0.87, "c3": 0.764}, {"time": 1.4167, "color": "ffffff00"} + "1455190363": { + "slots": {"eyes": {"attachment": [{"time": 0.05, "name": "eyes-happy"}, {"time": 0.7667, "name": "eyes"}]}}, + "bones": { + "@pivot-back": { + "rotate": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "angle": -5.76, "curve": 0.306, "c3": 0.695}, {"time": 0.6667, "angle": -6.67, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.8333, "angle": 2.85, "curve": 0.306, "c3": 0.695}, {"time": 1} + ], + "translate": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": -11.96, "y": -12.91, "curve": 0.306, "c3": 0.695}, + {"time": 0.6667, "x": -17.52, "y": -16.38, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.8333} ] }, - "eyes-light-left": { - "color": [ - {"time": 0.1167, "color": "fff96500", "curve": 0.25, "c3": 0.75}, {"time": 0.1833, "color": "fff96584", "curve": "stepped"}, - {"time": 0.2833, "color": "fff96584", "curve": 0.25, "c3": 0.681}, {"time": 0.5, "color": "fff96500"} + "@leg-front-left": { + "translate": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": -20.02, "y": -2.36, "curve": "stepped"}, {"time": 0.6667, "x": -20.02, "y": -2.36, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.8333, "x": 5.31, "y": -7.32, "curve": 0.306, "c3": 0.695}, {"time": 1} ] }, - "eyes-light-right": { - "color": [ - {"color": "fff96500", "curve": 0.25, "c3": 0.75}, {"time": 0.0667, "color": "fff96584", "curve": "stepped"}, {"time": 0.15, "color": "fff96584", "curve": 0.25, "c3": 0.681}, - {"time": 0.3833, "color": "fff96500"} + "@leg-front-right": { + "translate": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": -36.67, "y": 20.01, "curve": 0.306, "c3": 0.695}, + {"time": 0.6667, "x": -44.17, "y": 20.3, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.8333, "x": -12.71, "y": -17.14, "curve": 0.306, "c3": 0.695}, {"time": 1} + ] + }, + "@leg-back-left": { + "translate": [ + {"time": 0.1667, "curve": 0.306, "c3": 0.695}, {"time": 0.6667, "x": -4.62, "y": -2.21, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.8333, "x": -0.1, "y": -3.16, "curve": 0.306, "c3": 0.695}, {"time": 1} + ] + }, + "tail": { + "rotate": [ + {"curve": 0, "c2": 0.3, "c3": 0.54}, {"time": 0.1667, "angle": -11.59, "curve": 0.306, "c3": 0.695}, {"time": 0.4167, "angle": 2.75, "curve": 0.306, "c3": 0.695}, + {"time": 0.6667, "angle": -13.32, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.8333, "angle": 15.71, "curve": 0.306, "c3": 0.695}, {"time": 1} + ] + }, + "@shadow": { + "scale": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": 0.96, "y": 0.96}, {"time": 0.6667, "x": 0.94, "y": 0.94, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.8333, "x": 1.06, "y": 1.06, "curve": 0.306, "c3": 0.695}, {"time": 1} ] } }, + "events": [{"time": 0.1667, "name": "hit-buff"}] + }, + "606904312": { + "slots": { + "eyes": {"attachment": [{"time": 0.05, "name": "eyes-shut"}, {"time": 0.7667, "name": "eyes"}]}, + "mouth": {"attachment": [{"time": 0.05, "name": "mouth-bite"}, {"time": 0.7667, "name": "mouth"}]} + }, "bones": { - "eyes-happy-accessory": {"scale": [{"time": 0.9, "x": 0, "y": 0, "curve": 0, "c2": 0.86, "c3": 0.236}, {"time": 1.4167}]}, - "eyes-light-left": { - "translate": [{"time": 0.1167, "curve": 0.25, "c3": 0.183}, {"time": 0.5, "x": 74.49, "y": 84.55}], - "scale": [ - {"time": 0.1167, "x": 0, "y": 0, "curve": 0.391, "c3": 0.712, "c4": 0.37}, {"time": 0.15, "x": 0.272, "y": 0.543, "curve": 0.349, "c2": 0.28, "c3": 0.679, "c4": 0.62}, - {"time": 0.1667, "x": 0.659, "y": 0.933, "curve": 0.338, "c2": 0.3, "c3": 0.667, "c4": 0.64}, - {"time": 0.1833, "x": 0.677, "y": 1.164, "curve": 0.326, "c2": 0.31, "c3": 0.655, "c4": 0.65}, {"time": 0.2, "x": 1.139, "y": 1.41, "curve": 0.315, "c2": 0.32, "c3": 0.645, "c4": 0.66}, - {"time": 0.2167, "x": 1.609, "y": 1.313, "curve": 0.282, "c2": 0.33, "c3": 0.604, "c4": 0.67}, - {"time": 0.2333, "x": 1.702, "y": 1.336, "curve": 0.303, "c2": 0.34, "c3": 0.634, "c4": 0.68}, {"time": 0.2667, "x": 1.791, "y": 1.36, "curve": 0.205, "c2": 0.56, "c3": 0.507}, - {"time": 0.35, "x": 1.648, "y": 1.273, "curve": 0.333, "c2": 0.33, "c3": 0.667, "c4": 0.67}, - {"time": 0.3833, "x": 0.946, "y": 1.224, "curve": 0.335, "c2": 0.34, "c3": 0.669, "c4": 0.67}, - {"time": 0.4167, "x": 0.353, "y": 0.293, "curve": 0.337, "c2": 0.35, "c3": 0.671, "c4": 0.68}, {"time": 0.4333, "y": 1.003, "curve": 0.382, "c2": 0.57, "c3": 0.735}, - {"time": 0.5, "x": 0, "y": 0} + "@pivot-back": { + "rotate": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "angle": 3.5}, {"time": 0.6667, "angle": 4, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.8333, "angle": -1.98, "curve": 0.306, "c3": 0.695}, {"time": 1} + ], + "translate": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "y": 2.9}, {"time": 0.6667, "y": 3.91, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.8333, "y": -2.14, "curve": 0.306, "c3": 0.695}, {"time": 1} ] }, - "eyes-light-right": { + "@leg-front-right": { "translate": [ - {"curve": 0.402, "c3": 0.716, "c4": 0.38}, {"time": 0.0667, "x": 10.53, "y": 22.35, "curve": 0.341, "c2": 0.3, "c3": 0.673, "c4": 0.64}, - {"time": 0.0833, "x": 14.42, "y": 28.8, "curve": 0.152, "c2": 0.3, "c3": 0.265}, {"time": 0.3833, "x": 74.49, "y": 84.55} + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": -0.92, "y": -19.87}, {"time": 0.6667, "x": -1.14, "y": -21.42, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.8333, "x": -0.43, "y": 9.97, "curve": 0.306, "c3": 0.695}, {"time": 1} + ] + }, + "@leg-front-left": { + "translate": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": 7.87, "y": -5.37}, {"time": 0.6667, "x": 9.12, "y": -5.44, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.8333, "x": -0.16, "y": 3.89, "curve": 0.306, "c3": 0.695}, {"time": 1} + ] + }, + "tail": { + "rotate": [ + {"curve": 0, "c2": 0.3, "c3": 0.54}, {"time": 0.1667, "angle": -17.97, "curve": 0.306, "c3": 0.695}, {"time": 0.4167, "angle": -9.96, "curve": 0.306, "c3": 0.695}, + {"time": 0.6667, "angle": -19.79, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.8333, "angle": 6.14, "curve": 0.306, "c3": 0.695}, {"time": 1} + ] + } + }, + "events": [{"time": 0.1667, "name": "hit-buff"}] + }, + "390714790": { + "slots": { + "eyes": {"attachment": [{"time": 0.0167, "name": "eyes-angry"}, {"time": 0.25, "name": "eyes-shut"}, {"time": 0.3, "name": "eyes-angry"}, {"time": 0.4333, "name": "eyes"}]}, + "mouth": {"attachment": [{"time": 0.0167, "name": "mouth-bite"}, {"time": 0.3, "name": "mouth-open"}, {"time": 0.4333, "name": "mouth"}]} + }, + "bones": { + "@pivot-back": { + "rotate": [ + {"curve": "stepped"}, {"time": 0.0167, "angle": 7.5}, {"time": 0.2333, "angle": 10, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "angle": -5, "curve": 0.315, "c4": 0.8}, + {"time": 0.4833, "angle": 5, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5833} + ], + "translate": [ + {"curve": "stepped"}, {"time": 0.0167, "x": 29.16, "y": 18.85, "curve": "stepped"}, {"time": 0.2667, "x": 29.16, "y": 18.85, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.3833, "x": -1.17, "y": 18.85, "curve": 0.315, "c4": 0.8}, {"time": 0.4833} + ] + }, + "leg-back-left-IK": { + "translate": [ + {"curve": "stepped"}, {"time": 0.0167, "x": 50.74, "y": 0.9, "curve": "stepped"}, {"time": 0.2, "x": 50.74, "y": 0.9, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.25, "x": 12.5, "y": 6.45, "curve": 0, "c2": 0.8, "c3": 0.15}, {"time": 0.3667, "x": 5.47, "y": 26.12, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.4833} + ] + }, + "@leg-back-left": { + "translate": [ + {"curve": "stepped"}, {"time": 0.0167, "x": 18.74, "y": 14.65, "curve": "stepped"}, {"time": 0.1667, "x": 18.74, "y": 14.65, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.4833} + ] + }, + "@leg-front-left": { + "translate": [ + {"curve": "stepped"}, {"time": 0.0167, "x": -0.45, "y": -3.93}, {"time": 0.2333, "x": -0.82, "y": -2.61}, {"time": 0.3333, "x": -5.6, "y": -0.89, "curve": 0.617, "c4": 0.6}, + {"time": 0.45, "x": -1.09, "y": -14.69, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5833} + ] + }, + "@leg-front-right": { + "translate": [ + {"time": 0.0167}, {"time": 0.3333, "x": -7.53, "y": 2.3, "curve": 0, "c2": 0.1, "c3": 0.853}, {"time": 0.45, "x": 0.15, "y": -4.26, "curve": 0.159, "c3": 0.853}, + {"time": 0.4833, "x": -2.34, "y": -28.14, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5833} + ] + }, + "@pivot-main": { + "translate": [ + {"curve": "stepped"}, {"time": 0.0167, "x": 33.18}, {"time": 0.2667, "x": 61.52, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3833, "x": 20.27, "y": 27.91, "curve": 0.315, "c4": 0.8}, + {"time": 0.4833} + ] + }, + "leg-front-right-IK": { + "translate": [ + {"time": 0.2333, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "x": 22.26, "y": 54.13}, {"time": 0.3833, "x": 28.04, "y": 49.32, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.45} + ] + }, + "leg-front-left-IK": { + "translate": [ + {"curve": "stepped"}, {"time": 0.0167, "x": 38.52}, {"time": 0.2333, "x": 38.87, "curve": 0, "c2": 0.3, "c3": 0.54}, {"time": 0.3333, "x": 26.12, "y": 38.71}, + {"time": 0.3833, "x": 12.33, "y": 29.93, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.45} + ] + }, + "@shadow": { + "translate": [ + {"curve": "stepped"}, {"time": 0.0167, "x": 33.22}, {"time": 0.2667, "x": 61.08, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3833, "x": 9.02, "curve": 0.315, "c4": 0.8}, + {"time": 0.4833} ], "scale": [ - {"x": 0, "y": 0, "curve": 0.391, "c3": 0.712, "c4": 0.37}, {"time": 0.0333, "x": 0.331, "y": 0.492, "curve": 0.349, "c2": 0.28, "c3": 0.679, "c4": 0.62}, - {"time": 0.05, "x": 0.801, "y": 0.845, "curve": 0.338, "c2": 0.3, "c3": 0.667, "c4": 0.64}, {"time": 0.0667, "x": 0.822, "y": 1.054, "curve": 0.311, "c2": 0.3, "c3": 0.629, "c4": 0.64}, - {"time": 0.1, "x": 1.707, "y": 1.15, "curve": 0.282, "c2": 0.33, "c3": 0.604, "c4": 0.67}, {"time": 0.1167, "x": 2.068, "y": 1.257, "curve": 0.182, "c2": 0.53, "c3": 0.468}, - {"time": 0.2167, "x": 2.002, "y": 1.153, "curve": 0.333, "c2": 0.33, "c3": 0.667, "c4": 0.67}, {"time": 0.25, "x": 1.15, "y": 1.109, "curve": 0.335, "c2": 0.34, "c3": 0.669, "c4": 0.67}, - {"time": 0.2833, "x": 0.428, "y": 0.266, "curve": 0.337, "c2": 0.35, "c3": 0.671, "c4": 0.68}, {"time": 0.3, "x": 1.215, "y": 0.909, "curve": 0.382, "c2": 0.57, "c3": 0.735}, - {"time": 0.3833, "x": 0, "y": 0} + {"curve": "stepped"}, {"time": 0.0167, "x": 1.1, "y": 1.1, "curve": "stepped"}, {"time": 0.2667, "x": 1.1, "y": 1.1, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.3833, "x": 0.98, "y": 0.98, "curve": 0.315, "c4": 0.8}, {"time": 0.4833, "x": 1.1, "y": 1.1, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5833} + ] + }, + "tail": { + "rotate": [ + {"curve": "stepped"}, {"time": 0.0167, "angle": -17.67}, {"time": 0.2333, "angle": -21.07, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.3167, "angle": -20.71, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.45, "angle": 25.83, "curve": 0.154, "c4": 0.9}, + {"time": 0.5167, "angle": -14.3, "curve": 0.161, "c3": 0.854}, {"time": 0.5833} ] } } }, - "3774600630": { + "1327954218": { + "slots": { + "eyes": {"attachment": [{"time": 0.05, "name": "eyes-angry"}, {"time": 0.7, "name": "eyes"}]}, + "mouth": {"attachment": [{"time": 0.05, "name": "mouth-bite"}, {"time": 0.2833, "name": "mouth-open"}, {"time": 0.4667, "name": "mouth-bite"}, {"time": 0.7, "name": "mouth"}]} + }, + "bones": { + "@pivot-back": { + "rotate": [ + {"curve": 0, "c2": 0.4, "c3": 0.383}, {"time": 0.15, "angle": 4, "curve": 0, "c2": 0.2, "c3": 0.851}, {"time": 0.2833, "angle": 7}, + {"time": 0.4167, "angle": 7.5, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5, "angle": 4, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.5833, "angle": 6, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.75} + ], + "translate": [ + {"curve": 0, "c2": 0.4, "c3": 0.383}, {"time": 0.25, "x": 25, "curve": 1, "c2": -0.1, "c4": 0}, {"time": 0.2833, "x": -136, "y": 25.56}, + {"time": 0.4167, "x": -153.19, "y": 25.56, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5, "x": -176.94, "curve": "stepped"}, + {"time": 0.5833, "x": -176.94, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.75} + ] + }, + "@pivot-main": {"translate": [{"time": 0.5833, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.6667, "y": 45.22, "curve": 0.315, "c4": 0.8}, {"time": 0.75}]}, + "@leg-front-left": { + "translate": [ + {"curve": 0, "c2": 0.4, "c3": 0.383}, {"time": 0.25, "x": -0.72, "y": -6.78}, {"time": 0.5833, "x": -1.48, "y": -14.61, "curve": 0, "c2": 0.17, "c3": 0.45, "c4": 0.61}, + {"time": 0.65, "x": -0.39, "y": 5.91, "curve": 0.345, "c2": 0.53, "c3": 0.751}, {"time": 0.75} + ] + }, + "@leg-front-right": { + "translate": [ + {"curve": 0, "c2": 0.39, "c3": 0.387}, {"time": 0.25, "x": -2.88, "y": -28.54, "curve": "stepped"}, + {"time": 0.5833, "x": -2.88, "y": -28.54, "curve": 0, "c2": 0.17, "c3": 0.45, "c4": 0.61}, {"time": 0.65, "x": -0.83, "y": 1.57, "curve": 0.345, "c2": 0.53, "c3": 0.751}, {"time": 0.75} + ] + }, + "leg-front-left-IK": { + "translate": [ + {"curve": 0, "c2": 0.39, "c3": 0.387}, {"time": 0.25, "x": 19.12, "curve": 0.702, "c4": 0.2}, {"time": 0.2833, "x": -43.29, "y": 59.07}, + {"time": 0.4167, "x": -61.19, "y": 52.81, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5, "x": -184.33, "y": 7.89, "curve": "stepped"}, + {"time": 0.5833, "x": -184.33, "y": 7.89, "curve": 0, "c2": 0.17, "c3": 0.45, "c4": 0.61}, {"time": 0.65, "x": -105.91, "y": -2.82, "curve": 0.345, "c2": 0.53, "c3": 0.751}, + {"time": 0.75} + ] + }, + "leg-front-right-IK": { + "translate": [ + {"time": 0.25, "curve": 0.702, "c4": 0.2}, {"time": 0.2833, "x": -27.95, "y": 28.32}, {"time": 0.4167, "x": -40.48, "y": 34.59, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.5, "x": -191.61, "curve": "stepped"}, {"time": 0.5833, "x": -191.61, "curve": 0, "c2": 0.17, "c3": 0.45, "c4": 0.61}, + {"time": 0.65, "x": -103, "y": 4.15, "curve": 0.345, "c2": 0.53, "c3": 0.751}, {"time": 0.75} + ] + }, + "leg-back-left-IK": { + "translate": [ + {"time": 0.2667, "curve": 0.461, "c4": 0.4}, {"time": 0.2833, "x": -70.51, "y": 98.54}, {"time": 0.4167, "x": -70.51, "y": 101.95, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.5, "x": -189.32, "curve": "stepped"}, {"time": 0.5833, "x": -189.32, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.75} + ] + }, + "@pivot-center": { + "rotate": [ + {"time": 0.25, "curve": 0.779, "c4": 0.3}, {"time": 0.2833, "angle": 10.18, "curve": "stepped"}, {"time": 0.4167, "angle": 10.18, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5} + ] + }, + "tail": { + "rotate": [ + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.25, "angle": 21.98, "curve": 0.851, "c4": 0.1}, {"time": 0.2833, "angle": -15.58}, + {"time": 0.4167, "angle": -20.71, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5, "angle": 19.93, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.5833, "angle": 23.12, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.6667, "angle": -14.25, "curve": 0.313, "c3": 0.699}, {"time": 0.75} + ] + }, + "@shadow": { + "translate": [ + {"time": 0.25, "curve": 0.851, "c4": 0.1}, {"time": 0.2833, "x": -143.36}, {"time": 0.4167, "x": -160.77, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.5, "x": -186.16, "curve": "stepped"}, {"time": 0.5833, "x": -186.16, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.75} + ], + "scale": [ + {"curve": 0, "c2": 0.4, "c3": 0.383}, {"time": 0.25, "x": 1.08, "y": 1.08, "curve": "stepped"}, {"time": 0.5, "x": 1.08, "y": 1.08, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.5833, "x": 1.12, "y": 1.12, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.6667, "x": 0.94, "y": 0.94, "curve": 0.315, "c4": 0.8}, {"time": 0.75} + ] + }, + "@leg-back-left": {"translate": [{"curve": 0, "c2": 0.39, "c3": 0.387}, {"time": 0.25, "x": -7.28, "y": 3.82}]} + }, + "events": [{"time": 0.2167, "name": "start-attack"}, {"time": 0.2833, "name": "hit"}] + }, + "2237748264": { + "slots": { + "eyes": {"attachment": [{"time": 0.1333, "name": "eyes-angry"}, {"time": 0.6667, "name": "eyes"}]}, + "mouth": {"attachment": [{"time": 0.1333, "name": "mouth-bite"}, {"time": 0.2667, "name": "mouth-open"}, {"time": 0.4167, "name": "mouth-bite"}, {"time": 0.6667, "name": "mouth"}]} + }, + "bones": { + "@pivot-back": { + "rotate": [ + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "angle": -3.92, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "angle": 2.51, "curve": 0, "c2": 0.3, "c3": 0.544}, + {"time": 0.35, "angle": -4.74, "curve": 0.7, "c4": 0.3}, {"time": 0.4167, "angle": 2}, {"time": 0.5833, "angle": 4, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.75} + ], + "translate": [ + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 71.93, "y": -12.95, "curve": "stepped"}, {"time": 0.25, "x": 71.93, "y": -12.95, "curve": 0, "c2": 0.3, "c3": 0.544}, + {"time": 0.4167, "x": -144.49, "y": -12.95, "curve": "stepped"}, {"time": 0.5833, "x": -144.49, "y": -12.95, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.75} + ] + }, + "leg-back-left-IK": { + "translate": [ + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.1167, "x": 93.98, "curve": 0.161, "c3": 0.854}, {"time": 0.25, "x": 67.02, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.3333, "x": -65.1, "y": -1.32, "curve": 0.315, "c4": 0.8}, {"time": 0.4167, "x": -131.67, "curve": "stepped"}, {"time": 0.5833, "x": -131.67, "curve": 0.159, "c4": 0.9}, + {"time": 0.75} + ] + }, + "leg-front-right-IK": { + "translate": [ + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 21.56, "y": 4.31, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.25, "x": 42.9, "curve": 0, "c2": 0.3, "c3": 0.544}, + {"time": 0.3667, "x": -104.26, "y": 42.61, "curve": 0.161, "c4": 0.85}, {"time": 0.4167, "x": -153.64, "curve": "stepped"}, {"time": 0.5833, "x": -153.64, "curve": 0.154, "c4": 0.9}, + {"time": 0.7, "x": 13.43, "curve": 0.161, "c3": 0.854}, {"time": 0.75} + ] + }, + "leg-front-left-IK": { + "translate": [ + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 43.11, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "x": 48.71, "y": -1.66, "curve": 0, "c2": 0.3, "c3": 0.544}, + {"time": 0.3667, "x": -87.39, "y": 18.71, "curve": 0.161, "c4": 0.85}, {"time": 0.4167, "x": -150.32, "y": 0.83}, {"time": 0.5833, "x": -142.85, "curve": 0.154, "c4": 0.9}, + {"time": 0.7, "x": 13.43, "curve": 0.161, "c3": 0.854}, {"time": 0.75} + ] + }, + "@leg-front-left": { + "translate": [ + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": -0.28, "y": 3.31, "curve": 0, "c2": 0.3, "c3": 0.544}, + {"time": 0.25, "x": -0.62, "y": -3.21, "curve": 0, "c2": 0.25, "c3": 0.457, "c4": 0.73}, {"time": 0.3667, "x": -15.24, "y": -11.32, "curve": 0.325, "c2": 0.6, "c3": 0.672}, + {"time": 0.4167, "x": -17.97, "y": -3.57, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5833, "x": -18.47, "y": -10.19, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.75} + ] + }, + "@leg-front-right": { + "translate": [ + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 3.63, "y": 19.84, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.25, "x": -10.53, "y": -16.98, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.4167, "x": -10.44, "y": -18.31, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.5833, "x": -10.92, "y": -30.23, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.75} + ] + }, + "@pivot-main": { + "translate": [ + {"time": 0.25, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "y": 26.43, "curve": 0.315, "c4": 0.8}, {"time": 0.4167, "curve": "stepped"}, + {"time": 0.5833, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.6667, "y": 26.43, "curve": 0.315, "c4": 0.8}, {"time": 0.75} + ] + }, + "@leg-back-left": { + "translate": [ + {"time": 0.1167, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "x": -0.25, "y": -9.22, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.3333, "x": -0.44, "y": 4.57, "curve": 0.306, "c4": 0.8}, {"time": 0.4167, "x": -0.58, "y": -9.21}, + {"time": 0.5833, "x": -0.15, "y": -9.98, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.75} + ] + }, + "tail": { + "rotate": [ + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "angle": 12.92, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "angle": 18.48, "curve": 0, "c2": 0.3, "c3": 0.544}, + {"time": 0.35, "angle": -6.88, "curve": 0.7, "c4": 0.3}, {"time": 0.4167, "angle": 14}, {"time": 0.5833, "angle": 19.37, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.6833, "angle": -8.78, "curve": 0.313, "c3": 0.699}, {"time": 0.75} + ] + }, + "@shadow": { + "translate": [ + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 61.96, "curve": "stepped"}, {"time": 0.25, "x": 61.96, "curve": 0, "c2": 0.3, "c3": 0.544}, + {"time": 0.35, "x": -121.98, "curve": 0.7, "c4": 0.3}, {"time": 0.4167, "x": -154.28, "curve": "stepped"}, {"time": 0.5833, "x": -154.28, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.75} + ], + "scale": [ + {"time": 0.0833, "curve": 0, "c2": 0.26, "c3": 0.369, "c4": 0.62}, {"time": 0.25, "x": 1.06, "y": 1.06, "curve": 0.192, "c2": 0.45, "c3": 0.623}, + {"time": 0.35, "x": 0.96, "y": 0.96, "curve": 0.7, "c4": 0.3}, {"time": 0.4167, "x": 1.08, "y": 1.08, "curve": "stepped"}, + {"time": 0.5833, "x": 1.08, "y": 1.08, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.75} + ] + } + }, + "events": [{"time": 0.25, "name": "start-attack"}, {"time": 0.4167, "name": "hit"}] + }, + "905926802": { "slots": { "eyes": {"attachment": [{"time": 0.0833, "name": "eyes-shut"}, {"time": 0.1667, "name": "eyes-angry"}, {"time": 0.9833, "name": "eyes-shut"}, {"time": 1.0833, "name": "eyes"}]}, "leg-front-left": { "attachment": [ - {"time": 0.5, "name": "summer-leg-front-left-stretch"}, {"time": 0.6333, "name": "summer-leg-front-left"}, {"time": 0.7667, "name": "summer-leg-front-left-stretch"}, - {"time": 0.9, "name": "summer-leg-front-left"} + {"time": 0.5, "name": "leg-front-left-stretch"}, {"time": 0.6333, "name": "leg-front-left"}, {"time": 0.7667, "name": "leg-front-left-stretch"}, {"time": 0.9, "name": "leg-front-left"} ] }, "mouth": {"attachment": [{"time": 0.0833, "name": "mouth-bite"}, {"time": 0.3667, "name": "mouth-open"}, {"time": 0.9833, "name": "mouth-bite"}, {"time": 1.0833, "name": "mouth"}]} @@ -3726,128 +3979,193 @@ }, "events": [{"time": 0.3333, "name": "start-attack"}, {"time": 0.3667, "name": "hit"}, {"time": 0.5, "name": "hit"}, {"time": 0.6333, "name": "hit"}, {"time": 0.7667, "name": "hit"}] }, - "3178494426": { + "1659336865": { + "slots": {"eyes": {"attachment": [{"time": 1, "name": "eyes-shut"}, {"time": 1.0833, "name": "eyes"}]}}, "bones": { "@pivot-back": { "rotate": [ {"curve": 0.313, "c3": 0.699}, {"time": 0.3333, "angle": 2.04, "curve": 0.313, "c3": 0.699}, {"time": 0.6667, "curve": 0.313, "c3": 0.699}, - {"time": 1, "angle": 1.79, "curve": 0.313, "c3": 0.699}, {"time": 1.3333, "curve": 0.313, "c3": 0.699}, {"time": 1.6667, "angle": 2.04, "curve": 0.313, "c3": 0.699}, - {"time": 2, "curve": 0.313, "c3": 0.699}, {"time": 2.3333, "angle": 1.79, "curve": 0.313, "c3": 0.699}, {"time": 2.6667} + {"time": 1, "angle": 1.79, "curve": 0.313, "c3": 0.699}, {"time": 1.3333} ], "translate": [ {"curve": 0.313, "c3": 0.699}, {"time": 0.3333, "y": -6.53, "curve": 0.313, "c3": 0.699}, {"time": 0.6667, "curve": 0.313, "c3": 0.699}, - {"time": 1, "y": -8.86, "curve": 0.313, "c3": 0.699}, {"time": 1.3333, "curve": 0.313, "c3": 0.699}, {"time": 1.6667, "y": -6.53, "curve": 0.313, "c3": 0.699}, - {"time": 2, "curve": 0.313, "c3": 0.699}, {"time": 2.3333, "y": -8.86, "curve": 0.313, "c3": 0.699}, {"time": 2.6667} + {"time": 1, "y": -8.86, "curve": 0.313, "c3": 0.699}, {"time": 1.3333} ], - "scale": [ - {"curve": 0.313, "c3": 0.699}, {"time": 0.6667, "y": 0.99, "curve": 0.313, "c3": 0.699}, {"time": 1.3333, "curve": 0.313, "c3": 0.699}, - {"time": 2, "y": 0.99, "curve": 0.313, "c3": 0.699}, {"time": 2.6667} - ] + "scale": [{"curve": 0.313, "c3": 0.699}, {"time": 0.6667, "y": 0.99, "curve": 0.313, "c3": 0.699}, {"time": 1.3333}] }, "@leg-front-right": { "translate": [ {"curve": 0.313, "c3": 0.699}, {"time": 0.3333, "x": 0.02, "y": -16.89, "curve": 0.313, "c3": 0.699}, {"time": 0.6667, "x": -0.04, "y": 2.46, "curve": 0.313, "c3": 0.699}, - {"time": 1, "x": -0.02, "y": -18.9, "curve": 0.313, "c3": 0.699}, {"time": 1.3333, "curve": 0.313, "c3": 0.699}, {"time": 1.6667, "x": 0.02, "y": -16.89, "curve": 0.313, "c3": 0.699}, - {"time": 2, "x": -0.04, "y": 2.46, "curve": 0.313, "c3": 0.699}, {"time": 2.3333, "x": -0.02, "y": -18.9, "curve": 0.313, "c3": 0.699}, {"time": 2.6667} + {"time": 1, "x": -0.02, "y": -18.9, "curve": 0.313, "c3": 0.699}, {"time": 1.3333} ] }, "@leg-front-left": { "translate": [ {"curve": 0.313, "c3": 0.699}, {"time": 0.3333, "x": 0.22, "y": -5.13, "curve": 0.313, "c3": 0.699}, {"time": 0.6667, "x": -0.03, "y": 1.81, "curve": 0.313, "c3": 0.699}, - {"time": 1, "x": 0.2, "y": -7.06, "curve": 0.313, "c3": 0.699}, {"time": 1.3333, "curve": 0.313, "c3": 0.699}, {"time": 1.6667, "x": 0.22, "y": -5.13, "curve": 0.313, "c3": 0.699}, - {"time": 2, "x": -0.03, "y": 1.81, "curve": 0.313, "c3": 0.699}, {"time": 2.3333, "x": 0.2, "y": -7.06, "curve": 0.313, "c3": 0.699}, {"time": 2.6667} + {"time": 1, "x": 0.2, "y": -7.06, "curve": 0.313, "c3": 0.699}, {"time": 1.3333} ], "scale": [ {"curve": 0.313, "c3": 0.699}, {"time": 0.3333, "x": 0.905, "curve": 0.313, "c3": 0.699}, {"time": 0.6667, "curve": 0.313, "c3": 0.699}, - {"time": 1, "x": 0.905, "curve": 0.313, "c3": 0.699}, {"time": 1.3333, "curve": 0.313, "c3": 0.699}, {"time": 1.6667, "x": 0.905, "curve": 0.313, "c3": 0.699}, - {"time": 2, "curve": 0.313, "c3": 0.699}, {"time": 2.3333, "x": 0.905, "curve": 0.313, "c3": 0.699}, {"time": 2.6667} + {"time": 1, "x": 0.905, "curve": 0.313, "c3": 0.699}, {"time": 1.3333} ] }, "@leg-back-left": { "translate": [ {"curve": 0.313, "c3": 0.699}, {"time": 0.3333, "x": 0.22, "y": -4.11, "curve": 0.313, "c3": 0.699}, {"time": 0.6667, "x": -0.03, "y": 1.69, "curve": 0.313, "c3": 0.699}, - {"time": 1, "x": 0.2, "y": -5.68, "curve": 0.313, "c3": 0.699}, {"time": 1.3333, "curve": 0.313, "c3": 0.699}, {"time": 1.6667, "x": 0.22, "y": -4.11, "curve": 0.313, "c3": 0.699}, - {"time": 2, "x": -0.03, "y": 1.69, "curve": 0.313, "c3": 0.699}, {"time": 2.3333, "x": 0.2, "y": -5.68, "curve": 0.313, "c3": 0.699}, {"time": 2.6667} + {"time": 1, "x": 0.2, "y": -5.68, "curve": 0.313, "c3": 0.699}, {"time": 1.3333} ], "scale": [ {"curve": 0.313, "c3": 0.699}, {"time": 0.3333, "x": 0.943, "curve": 0.313, "c3": 0.699}, {"time": 0.6667, "curve": 0.313, "c3": 0.699}, - {"time": 1, "x": 0.943, "curve": 0.313, "c3": 0.699}, {"time": 1.3333, "curve": 0.313, "c3": 0.699}, {"time": 1.6667, "x": 0.943, "curve": 0.313, "c3": 0.699}, - {"time": 2, "curve": 0.313, "c3": 0.699}, {"time": 2.3333, "x": 0.943, "curve": 0.313, "c3": 0.699}, {"time": 2.6667} + {"time": 1, "x": 0.943, "curve": 0.313, "c3": 0.699}, {"time": 1.3333} ] }, "@pivot-main": { "scale": [ {"curve": 0.313, "c3": 0.699}, {"time": 0.3333, "y": 0.98, "curve": 0.313, "c3": 0.699}, {"time": 0.6667, "curve": 0.313, "c3": 0.699}, - {"time": 1, "y": 0.98, "curve": 0.313, "c3": 0.699}, {"time": 1.3333, "curve": 0.313, "c3": 0.699}, {"time": 1.6667, "y": 0.98, "curve": 0.313, "c3": 0.699}, - {"time": 2, "curve": 0.313, "c3": 0.699}, {"time": 2.3333, "y": 0.98, "curve": 0.313, "c3": 0.699}, {"time": 2.6667} + {"time": 1, "y": 0.98, "curve": 0.313, "c3": 0.699}, {"time": 1.3333} ] }, "tail": { - "rotate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "angle": 4.54, "curve": 0.313, "c3": 0.699}, {"time": 1, "angle": -9.06, "curve": 0.313, "c3": 0.699}, - {"time": 1.3333, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1.6667, "angle": 4.54, "curve": 0.313, "c3": 0.699}, {"time": 2.3333, "angle": -9.06, "curve": 0.313, "c3": 0.699}, - {"time": 2.6667} - ] + "rotate": [{"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "angle": 4.54, "curve": 0.313, "c3": 0.699}, {"time": 1, "angle": -9.06, "curve": 0.313, "c3": 0.699}, {"time": 1.3333}] }, "back": { - "rotate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "angle": -4.27, "curve": 0.313, "c3": 0.699}, {"time": 1, "angle": 2.83, "curve": 0.313, "c3": 0.699}, - {"time": 1.3333, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1.6667, "angle": -4.27, "curve": 0.313, "c3": 0.699}, {"time": 2.3333, "angle": 2.83, "curve": 0.313, "c3": 0.699}, - {"time": 2.6667} - ] - }, - "ear-right": { - "rotate": [ - {"curve": 0.461, "c3": 0.543}, {"time": 0.6667, "angle": -3.91, "curve": 0.461, "c3": 0.543}, {"time": 1.3333, "curve": 0.461, "c3": 0.543}, - {"time": 2, "angle": -3.91, "curve": 0.461, "c3": 0.543}, {"time": 2.6667} - ] - }, - "ear-left": { - "rotate": [ - {"curve": 0.461, "c3": 0.543}, {"time": 0.6667, "angle": -3.92, "curve": 0.461, "c3": 0.543}, {"time": 1.3333, "curve": 0.461, "c3": 0.543}, - {"time": 2, "angle": -3.92, "curve": 0.461, "c3": 0.543}, {"time": 2.6667} - ] + "rotate": [{"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "angle": -4.27, "curve": 0.313, "c3": 0.699}, {"time": 1, "angle": 2.83, "curve": 0.313, "c3": 0.699}, {"time": 1.3333}] }, + "ear-right": {"rotate": [{"curve": 0.461, "c3": 0.543}, {"time": 0.6667, "angle": -3.91, "curve": 0.461, "c3": 0.543}, {"time": 1.3333}]}, + "ear-left": {"rotate": [{"curve": 0.461, "c3": 0.543}, {"time": 0.6667, "angle": -3.92, "curve": 0.461, "c3": 0.543}, {"time": 1.3333}]}, "@shadow": { "scale": [ {"curve": 0.306, "c3": 0.695}, {"time": 0.3333, "x": 1.05, "y": 1.05, "curve": 0.306, "c3": 0.695}, {"time": 0.6667, "curve": 0.306, "c3": 0.695}, - {"time": 1, "x": 1.05, "y": 1.05, "curve": 0.306, "c3": 0.695}, {"time": 1.3333, "curve": 0.306, "c3": 0.695}, {"time": 1.6667, "x": 1.05, "y": 1.05, "curve": 0.306, "c3": 0.695}, - {"time": 2, "curve": 0.306, "c3": 0.695}, {"time": 2.3333, "x": 1.05, "y": 1.05, "curve": 0.306, "c3": 0.695}, {"time": 2.6667} + {"time": 1, "x": 1.05, "y": 1.05, "curve": 0.306, "c3": 0.695}, {"time": 1.3333} ] } } }, - "1178295570": { + "554401889": { "slots": { - "mouth-accessory": { + "ball": { "color": [ - {"color": "ffffff00", "curve": 0.25, "c3": 0.75}, {"time": 0.0833, "color": "ffffffff", "curve": "stepped"}, {"time": 2.3333, "color": "ffffffff", "curve": 0, "c2": 1, "c3": 0.012}, - {"time": 2.5833, "color": "ffffff00"} - ] - } + {"color": "ffffff00", "curve": "stepped"}, {"time": 0.1667, "color": "ffffff00", "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "color": "ffffffff", "curve": "stepped"}, + {"time": 2.9167, "color": "ffffffff", "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 3.0833, "color": "ffffff00"} + ], + "attachment": [{"name": "ball"}] + }, + "eyes": {"attachment": [{"time": 0.5, "name": "eyes-shut"}, {"time": 0.5833, "name": "eyes"}, {"time": 3.0833, "name": "eyes-shut"}, {"time": 3.1667, "name": "eyes"}]}, + "mouth": {"attachment": [{"time": 0.1833, "name": "mouth-open"}, {"time": 0.5, "name": "mouth"}, {"time": 2.7667, "name": "mouth-open"}, {"time": 2.9167, "name": "mouth"}]} }, "bones": { - "mouth-accessory": { - "rotate": [{"curve": 0.25, "c3": 0.75}, {"time": 1.2333, "angle": 52.45, "curve": 0, "c2": 0.69, "c3": 0.89}, {"time": 2.5833, "angle": -64.25}], + "@pivot-back": { + "rotate": [ + {"curve": 0, "c2": 0.3, "c3": 0.546}, {"time": 0.1667, "angle": 6, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "angle": -6.98, "curve": 0.464, "c4": 0.7}, + {"time": 0.5, "angle": 3, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.6667, "curve": "stepped"}, {"time": 2.5833, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 2.75, "angle": 6, "curve": 0, "c2": 0.3, "c3": 0.546}, {"time": 2.9167, "angle": -6, "curve": 0.464, "c4": 0.7}, + {"time": 3.0833, "angle": 6, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 3.25} + ], "translate": [ - {"x": 76.63, "y": -53.41, "curve": "stepped"}, {"time": 1.1667, "x": 76.63, "y": -53.41, "curve": 0.117, "c2": 0.2, "c3": 0.488, "c4": 0.99}, {"time": 2.3333, "x": 76.63, "y": 181.61} + {"curve": 0, "c2": 0.3, "c3": 0.546}, {"time": 0.1667, "y": 1.78, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "y": 353.14, "curve": 0.464, "c4": 0.7}, + {"time": 0.5, "y": 255, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.6667, "y": 267.67, "curve": 0.156, "c3": 0.693}, + {"time": 1.1667, "x": -30, "y": 267.67, "curve": 0.317, "c3": 0.693}, {"time": 2.1667, "x": 50, "y": 267.67, "curve": 0.317, "c3": 0.693}, + {"time": 2.5833, "y": 267.67, "curve": "stepped"}, {"time": 2.75, "y": 267.67, "curve": 0, "c2": 0.3, "c3": 0.546}, {"time": 2.9167, "y": 310, "curve": 0.464, "c4": 0.7}, + {"time": 3.0833} + ] + }, + "@leg-front-right": { + "translate": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": -2.8, "y": -31.7, "curve": 0, "c2": 0.3, "c3": 0.546}, {"time": 0.25, "curve": "stepped"}, + {"time": 2.5833, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 2.75, "x": -2.8, "y": -31.7, "curve": 0.315, "c4": 0.8}, {"time": 2.8333, "curve": "stepped"}, + {"time": 3, "curve": 0.315, "c4": 0.8}, {"time": 3.0833, "x": -2.86, "y": -32.44, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 3.25} + ] + }, + "@leg-front-left": { + "translate": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": -1.46, "y": -16.59, "curve": 0, "c2": 0.3, "c3": 0.546}, {"time": 0.25, "curve": "stepped"}, + {"time": 2.5833, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 2.75, "x": -1.46, "y": -16.59, "curve": 0.315, "c4": 0.8}, {"time": 2.8333, "curve": "stepped"}, + {"time": 3, "curve": 0.315, "c4": 0.8}, {"time": 3.0833, "x": -1.64, "y": -18.64, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 3.25} + ] + }, + "leg-front-left-IK": { + "translate": [ + {"time": 0.1667, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "x": -6.9, "y": 380.8, "curve": 0.315, "c4": 0.8}, {"time": 0.5, "x": -5.5, "y": 268.35, "curve": "stepped"}, + {"time": 0.6667, "x": -5.5, "y": 268.35, "curve": 0.317, "c3": 0.693}, {"time": 0.9167, "x": -38.87, "y": 268.35, "curve": 0.317, "c3": 0.693}, + {"time": 1.1667, "x": -10.16, "y": 268.35, "curve": 0.317, "c3": 0.693}, {"time": 1.4167, "x": -39.65, "y": 268.35, "curve": 0.317, "c3": 0.693}, + {"time": 1.6667, "x": 23.98, "y": 268.35, "curve": 0.317, "c3": 0.693}, {"time": 1.9167, "x": 5.36, "y": 268.35, "curve": 0.317, "c3": 0.693}, + {"time": 2.1667, "x": 67.44, "y": 268.35, "curve": 0.317, "c3": 0.693}, {"time": 2.4167, "x": -3.95, "y": 268.35, "curve": 0.317, "c3": 0.693}, + {"time": 2.5833, "x": -5.5, "y": 268.35, "curve": "stepped"}, {"time": 2.9167, "x": -5.5, "y": 268.35, "curve": 0.315, "c4": 0.8}, {"time": 3.0833} + ] + }, + "leg-front-right-IK": { + "translate": [ + {"time": 0.1667, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "x": -6.9, "y": 397.8, "curve": 0.315, "c4": 0.8}, {"time": 0.5, "x": 15.4, "y": 268.08, "curve": "stepped"}, + {"time": 0.6667, "x": 15.4, "y": 268.08, "curve": 0.317, "c3": 0.693}, {"time": 0.9167, "x": 24.64, "y": 268.08, "curve": 0.317, "c3": 0.693}, + {"time": 1.1667, "x": -41.71, "y": 268.08, "curve": 0.317, "c3": 0.693}, {"time": 1.4167, "x": 22.12, "y": 268.08, "curve": 0.317, "c3": 0.693}, + {"time": 1.6667, "x": -0.56, "y": 268.08, "curve": 0.317, "c3": 0.693}, {"time": 1.9167, "x": 61.6, "y": 268.08, "curve": 0.317, "c3": 0.693}, + {"time": 2.1667, "x": 33.88, "y": 268.08, "curve": 0.317, "c3": 0.693}, {"time": 2.4167, "x": 49, "y": 268.08, "curve": 0.317, "c3": 0.693}, + {"time": 2.5833, "x": 15.4, "y": 268.08, "curve": "stepped"}, {"time": 2.9167, "x": 15.4, "y": 268.08, "curve": 0.315, "c4": 0.8}, {"time": 3.0833} + ] + }, + "leg-back-left-IK": { + "translate": [ + {"time": 0.1667, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "x": -0.4, "y": 363.25, "curve": 0.315, "c4": 0.8}, {"time": 0.5, "x": -26.16, "y": 267.01}, + {"time": 0.6667, "x": -33.59, "y": 267.01, "curve": 0.317, "c3": 0.693}, {"time": 0.9167, "x": -22.32, "y": 267.01, "curve": 0.317, "c3": 0.693}, + {"time": 1.1667, "x": -63.32, "y": 267.01, "curve": 0.317, "c3": 0.693}, {"time": 1.4167, "x": -28.35, "y": 267.01, "curve": 0.317, "c3": 0.693}, + {"time": 1.6667, "x": -28.02, "y": 267.01, "curve": 0.317, "c3": 0.693}, {"time": 1.9167, "x": 14.36, "y": 267.01, "curve": 0.317, "c3": 0.693}, + {"time": 2.1667, "x": 9.14, "y": 267.01, "curve": 0.317, "c3": 0.693}, {"time": 2.4167, "x": 11.99, "y": 267.01, "curve": 0.317, "c3": 0.693}, + {"time": 2.6667, "x": -33.59, "y": 267.01, "curve": "stepped"}, {"time": 2.9167, "x": -33.59, "y": 267.01, "curve": 0.315, "c4": 0.8}, {"time": 3.0833} + ] + }, + "@ball": { + "rotate": [ + {"time": 0.6667, "curve": 0.156, "c3": 0.693}, {"time": 1.1667, "angle": 18, "curve": 0.317, "c3": 0.693}, {"time": 2.1667, "angle": -18, "curve": 0.317, "c3": 0.693}, {"time": 2.75} + ], + "translate": [ + {"time": 0.6667, "curve": 0.156, "c3": 0.693}, {"time": 1.1667, "x": -32, "curve": 0.317, "c3": 0.693}, {"time": 2.1667, "x": 32, "curve": 0.317, "c3": 0.693}, {"time": 2.75} ], "scale": [ - {"x": 0, "y": 0, "curve": 0.25, "c3": 0.75}, {"time": 1.1667, "curve": 0.25, "c3": 0.75}, {"time": 1.2333, "x": 0.86, "y": 1.14, "curve": 0.25, "c3": 0.75}, - {"time": 1.3333, "x": 1.12, "y": 0.88, "curve": 0.25, "c3": 0.75}, {"time": 1.45, "x": 1.1, "y": 0.9, "curve": 0.25, "c3": 0.75}, - {"time": 1.6, "x": 0.92, "y": 1.08, "curve": 0.25, "c3": 0.75}, {"time": 1.7667, "x": 1.06, "y": 0.94, "curve": 0.25, "c3": 0.75}, - {"time": 1.9333, "x": 0.96, "y": 1.04, "curve": 0.25, "c3": 0.75}, {"time": 2.1167, "x": 1.02, "y": 0.98, "curve": 0.25, "c3": 0.75}, - {"time": 2.3333, "curve": 0, "c2": 0.92, "c3": 0.131, "c4": 0.99}, {"time": 2.5, "x": 1.373, "y": 1.373} + {"x": 0, "y": 0, "curve": "stepped"}, {"time": 0.1667, "x": 0, "y": 0, "curve": 0, "c2": 0.6, "c3": 0.237}, {"time": 0.3333, "x": 1.2, "y": 1.2, "curve": 0.315, "c4": 0.8}, + {"time": 0.5, "curve": "stepped"}, {"time": 2.75, "curve": 0, "c2": 0.3, "c3": 0.546}, {"time": 2.9167, "x": 1.2, "y": 1.2, "curve": 0.315, "c4": 0.8}, {"time": 3.0833, "x": 0, "y": 0} ] }, - "mouth-bubble": {"translate": [{"x": 117.65, "curve": 0.25, "c3": 0.75}, {"time": 1.1667, "x": 48.76, "curve": 0, "c2": 0.85, "c3": 0.307}, {"time": 2.3333, "x": -36.18}]}, - "mouth-bubble-core": {"scale": [{"x": 0, "y": 0, "curve": 0.25, "c3": 0.75}, {"time": 2.2833, "curve": 0, "c2": 0.99, "c3": 0.121}, {"time": 2.4333, "x": 2.773, "y": 2.773}]} + "ball": { + "scale": [ + {"time": 0.3333, "curve": 0.617, "c4": 0.6}, {"time": 0.5, "x": 1.2, "y": 0.802, "curve": 0, "c2": 0.39, "c3": 0.387}, {"time": 0.6667, "curve": "stepped"}, + {"time": 2.5833, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 2.75, "x": 1.2, "y": 0.9, "curve": 0, "c2": 0.3, "c3": 0.546}, {"time": 2.9167} + ] + }, + "@pivot-center": { + "rotate": [ + {"time": 0.6667, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.9167, "angle": 2, "curve": 0.461, "c3": 0.543}, {"time": 1.4167, "angle": -2, "curve": 0.461, "c3": 0.543}, + {"time": 1.9167, "angle": 2, "curve": 0.461, "c3": 0.543}, {"time": 2.4167, "angle": -2, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 2.75} + ] + }, + "@shadow": { + "translate": [ + {"time": 0.6667, "curve": 0.317, "c3": 0.693}, {"time": 1.1667, "x": -32, "curve": 0.317, "c3": 0.693}, {"time": 2.1667, "x": 32, "curve": 0.317, "c3": 0.693}, {"time": 2.5833} + ], + "scale": [ + {"curve": 0, "c2": 0.3, "c3": 0.546}, {"time": 0.1667, "x": 1.1, "y": 1.1, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "curve": 0.464, "c4": 0.7}, + {"time": 0.5, "x": 1.06, "y": 1.06, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.6667, "curve": "stepped"}, {"time": 2.5833, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 2.75, "x": 1.06, "y": 1.06, "curve": 0, "c2": 0.3, "c3": 0.546}, {"time": 2.9167, "curve": 0.464, "c4": 0.7}, + {"time": 3.0833, "x": 1.1, "y": 1.1, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 3.25} + ] + }, + "tail": { + "rotate": [ + {"curve": 0, "c2": 0.3, "c3": 0.546}, {"time": 0.1667, "angle": 17.35, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "angle": -14.67, "curve": 0.464, "c4": 0.7}, + {"time": 0.5, "angle": 19.12, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.6667, "angle": -10.65, "curve": 0.317, "c3": 0.693}, + {"time": 0.9167, "angle": -0.65, "curve": 0.317, "c3": 0.693}, {"time": 1.1667, "angle": -10.65, "curve": 0.317, "c3": 0.693}, + {"time": 1.4167, "angle": -0.65, "curve": 0.317, "c3": 0.693}, {"time": 1.6667, "angle": -10.65, "curve": 0.317, "c3": 0.693}, + {"time": 1.9167, "angle": -0.65, "curve": 0.317, "c3": 0.693}, {"time": 2.1667, "angle": -10.65, "curve": 0.317, "c3": 0.693}, + {"time": 2.4167, "angle": -0.65, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 2.5833, "angle": -10.65, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 2.75, "angle": 19.35, "curve": 0, "c2": 0.3, "c3": 0.546}, {"time": 2.9167, "angle": -18.65, "curve": 0, "c2": 0.3, "c3": 0.546}, + {"time": 3.0833, "angle": 17.35, "curve": 0.317, "c3": 0.693}, {"time": 3.25} + ] + } } }, - "3634120758": { + "1001093024": { "slots": { "eyes": {"attachment": [{"time": 0.0833, "name": "eyes-happy"}, {"time": 1, "name": "eyes"}]}, - "leg-back-left": {"attachment": [{"time": 0.0667, "name": "summer-leg-back-left-long"}, {"time": 0.9, "name": "summer-leg-back-left"}]}, + "leg-back-left": {"attachment": [{"time": 0.0667, "name": "leg-back-left-long"}, {"time": 0.9, "name": "leg-back-left"}]}, "mouth": {"attachment": [{"time": 0.0833, "name": "mouth-smile"}, {"time": 1, "name": "mouth"}]} }, "bones": { @@ -3905,13 +4223,155 @@ ] } }, - "drawOrder": [{"time": 0.0667, "offsets": [{"slot": "leg-back-left", "offset": 1}]}, {"time": 0.9}] + "drawOrder": [{"time": 0.0667, "offsets": [{"slot": "leg-back-left", "offset": 2}]}, {"time": 0.9}] }, - "3942433225": { + "2021333900": { "slots": { - "eyes": {"attachment": [{"name": "eyes-happy"}]}, - "leg-front-left": {"attachment": [{"time": 0.2, "name": "summer-leg-front-left-stretch"}, {"time": 0.5833, "name": "summer-leg-front-left"}]} - }, + "eyes": {"attachment": [{"time": 0.05, "name": "eyes-happy"}, {"time": 2.0833, "name": "eyes"}]}, + "mouth": {"attachment": [{"time": 0.05, "name": "mouth-bite"}, {"time": 2.0833, "name": "mouth"}]} + }, + "bones": { + "@pivot-back": { + "rotate": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "angle": 6, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.4833, "angle": 7, "curve": 0.317, "c3": 0.693}, + {"time": 0.55, "angle": 6.5, "curve": 0.317, "c3": 0.693}, {"time": 0.6167, "angle": 7, "curve": 0.317, "c3": 0.693}, {"time": 0.6833, "angle": 6.5, "curve": 0, "c2": 0.1, "c3": 0.85}, + {"time": 0.9167, "angle": 8, "curve": 0.317, "c3": 0.693}, {"time": 1.3333, "angle": -7, "curve": 0.461, "c3": 0.543}, {"time": 1.9167, "angle": -9, "curve": 0.154, "c4": 0.9}, + {"time": 2.1667, "angle": 3, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 2.3333} + ], + "translate": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "x": 7, "y": 6, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.9167, "x": 11, "y": 10, "curve": 0.317, "c3": 0.693}, + {"time": 1.3333, "x": -45, "y": -14, "curve": 0.461, "c3": 0.543}, {"time": 1.9167, "x": -45, "y": -18, "curve": 0.154, "c4": 0.9}, + {"time": 2.1667, "y": 4.23, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 2.3333} + ] + }, + "@leg-front-right": { + "translate": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "x": -2.08, "y": -23.58, "curve": "stepped"}, {"time": 0.9167, "x": -2.08, "y": -23.58, "curve": 0.317, "c3": 0.693}, + {"time": 1.3333, "x": -56.51, "y": 25.21, "curve": 0.461, "c3": 0.543}, {"time": 1.9167, "x": -57.58, "y": 31.33, "curve": 0.154, "c4": 0.9}, + {"time": 2.1667, "x": -1.95, "y": -12.95, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 2.3333} + ] + }, + "@leg-front-left": { + "translate": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "x": -0.92, "y": -10.48, "curve": "stepped"}, {"time": 0.9167, "x": -0.92, "y": -10.48, "curve": 0.317, "c3": 0.693}, + {"time": 1.3333, "x": -48.7, "y": 5.49, "curve": 0.461, "c3": 0.543}, {"time": 1.9167, "x": -49.1, "y": 7.78, "curve": 0.154, "c4": 0.9}, + {"time": 2.1667, "x": -0.87, "y": -4.98, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 2.3333} + ] + }, + "@leg-back-left": { + "translate": [ + {"time": 0.25}, {"time": 0.9167, "x": 0.52, "y": 4.2, "curve": 0.317, "c3": 0.693}, {"time": 1.3333, "x": -2.48, "y": -1.61, "curve": "stepped"}, + {"time": 1.9167, "x": -2.48, "y": -1.61, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 2.1667} + ] + }, + "leg-front-left-IK": { + "translate": [ + {"time": 0.9167, "curve": 0.317, "c3": 0.693}, {"time": 1.3333, "x": -11.56, "curve": "stepped"}, {"time": 1.9167, "x": -11.56, "curve": 0.154, "c4": 0.9}, {"time": 2.1667} + ] + }, + "leg-front-right-IK": { + "translate": [{"time": 0.9167, "curve": 0.317, "c3": 0.693}, {"time": 1.3333, "x": -5.65, "curve": "stepped"}, {"time": 1.9167, "x": -5.65, "curve": 0.154, "c4": 0.9}, {"time": 2.1667}] + }, + "leg-back-left-IK": { + "translate": [ + {"time": 0.9167, "curve": 0.317, "c3": 0.693}, {"time": 1.3333, "x": -33.62, "curve": "stepped"}, {"time": 1.9167, "x": -33.62, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 2.1667} + ] + }, + "tail": { + "rotate": [ + {"curve": 0, "c2": 0.3, "c3": 0.546}, {"time": 0.25, "angle": 20.35, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.4167, "angle": 15.85, "curve": 0.317, "c3": 0.693}, + {"time": 0.4833, "angle": 17.35, "curve": 0.317, "c3": 0.693}, {"time": 0.55, "angle": 15.85, "curve": 0.317, "c3": 0.693}, {"time": 0.6167, "angle": 18.35, "curve": 0.317, "c3": 0.693}, + {"time": 0.6833, "angle": 16.85, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.9167, "angle": 18.35, "curve": 0.317, "c3": 0.693}, + {"time": 1.3333, "angle": -9.65, "curve": 0.461, "c3": 0.543}, {"time": 1.9167, "angle": -13.65, "curve": 0.154, "c4": 0.9}, + {"time": 2.1667, "angle": 10.35, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 2.3333} + ] + } + } + }, + "1003789695": { + "slots": { + "eyes": {"attachment": [{"time": 0.3, "name": "eyes-angry"}, {"time": 1.2333, "name": "eyes"}]}, + "mouth": {"attachment": [{"time": 0.3, "name": "mouth-bite"}, {"time": 1.2333, "name": "mouth"}]} + }, + "bones": { + "@pivot-back": { + "rotate": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1, "angle": 6, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.2, "angle": -6, "curve": 0.315, "c4": 0.8}, + {"time": 0.3, "angle": 5.5, "curve": 0.317, "c3": 0.693}, {"time": 0.3833, "angle": 4.5, "curve": 0.317, "c3": 0.693}, {"time": 0.4667, "angle": 5.5, "curve": 0.317, "c3": 0.693}, + {"time": 0.55, "angle": 4.5, "curve": 0.317, "c3": 0.693}, {"time": 0.6333, "angle": 5.5, "curve": 0.317, "c3": 0.693}, {"time": 0.7167, "angle": 4.5, "curve": 0.317, "c3": 0.693}, + {"time": 0.8, "angle": 5.5, "curve": 0.317, "c3": 0.693}, {"time": 0.8833, "angle": 4.5, "curve": 0.317, "c3": 0.693}, {"time": 0.9667, "angle": 5.5, "curve": 0.317, "c3": 0.693}, + {"time": 1.05, "angle": 4.5, "curve": 0.317, "c3": 0.693}, {"time": 1.1333, "angle": 5.5, "curve": 0.317, "c3": 0.693}, {"time": 1.2167, "angle": 6, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 1.3167, "angle": -3, "curve": 0.315, "c4": 0.8}, {"time": 1.4167} + ], + "translate": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1, "y": 4.69, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.2, "y": 43.73, "curve": 0.315, "c4": 0.8}, + {"time": 0.3, "y": 3.84, "curve": "stepped"}, {"time": 1.2167, "y": 3.84, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1.3167, "y": 43.73, "curve": 0.315, "c4": 0.8}, {"time": 1.4167} + ] + }, + "@leg-front-left": { + "translate": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1, "x": -1.28, "y": -14.48, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.2, "curve": 0.315, "c4": 0.8}, + {"time": 0.3, "x": -1.28, "y": -14.48, "curve": 0.317, "c3": 0.693}, {"time": 0.3833, "x": -1.02, "y": -10.26, "curve": 0.317, "c3": 0.693}, + {"time": 0.4667, "x": -1.22, "y": -13.05, "curve": 0.317, "c3": 0.693}, {"time": 0.55, "x": -1.02, "y": -10.26, "curve": 0.317, "c3": 0.693}, + {"time": 0.6333, "x": -1.22, "y": -13.05, "curve": 0.317, "c3": 0.693}, {"time": 0.7167, "x": -1.02, "y": -10.26, "curve": 0.317, "c3": 0.693}, + {"time": 0.8, "x": -1.22, "y": -13.05, "curve": 0.317, "c3": 0.693}, {"time": 0.8833, "x": -1.02, "y": -10.26, "curve": 0.317, "c3": 0.693}, + {"time": 0.9667, "x": -1.22, "y": -13.05, "curve": 0.317, "c3": 0.693}, {"time": 1.05, "x": -1.02, "y": -10.26, "curve": 0.317, "c3": 0.693}, + {"time": 1.1333, "x": -1.22, "y": -13.05, "curve": 0.317, "c3": 0.693}, {"time": 1.2167, "x": -1.28, "y": -14.48, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1.3167} + ] + }, + "@leg-front-right": { + "translate": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1, "x": -2.46, "y": -27.93, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.2, "curve": 0.315, "c4": 0.8}, + {"time": 0.3, "x": -2.46, "y": -27.93, "curve": 0.317, "c3": 0.693}, {"time": 0.3833, "x": -2.06, "y": -21.45, "curve": 0.317, "c3": 0.693}, + {"time": 0.4667, "x": -2.44, "y": -26.54, "curve": 0.317, "c3": 0.693}, {"time": 0.55, "x": -2.06, "y": -21.45, "curve": 0.317, "c3": 0.693}, + {"time": 0.6333, "x": -2.44, "y": -26.54, "curve": 0.317, "c3": 0.693}, {"time": 0.7167, "x": -2.06, "y": -21.45, "curve": 0.317, "c3": 0.693}, + {"time": 0.8, "x": -2.44, "y": -26.54, "curve": 0.317, "c3": 0.693}, {"time": 0.8833, "x": -2.06, "y": -21.45, "curve": 0.317, "c3": 0.693}, + {"time": 0.9667, "x": -2.44, "y": -26.54, "curve": 0.317, "c3": 0.693}, {"time": 1.05, "x": -2.06, "y": -21.45, "curve": 0.317, "c3": 0.693}, + {"time": 1.1333, "x": -2.44, "y": -26.54, "curve": 0.317, "c3": 0.693}, {"time": 1.2167, "x": -2.46, "y": -27.93, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1.3167} + ] + }, + "@pivot-main": { + "translate": [ + {"time": 0.1, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.3, "x": -154.22, "curve": "stepped"}, {"time": 1.2167, "x": -154.22, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 1.4167} + ] + }, + "leg-front-left-IK": {"translate": [{"time": 1.2167, "curve": 0.315, "c4": 0.8}, {"time": 1.3167, "x": -61.13, "curve": 0.315, "c4": 0.8}, {"time": 1.4167}]}, + "leg-front-right-IK": {"translate": [{"time": 1.2167, "curve": 0.315, "c4": 0.8}, {"time": 1.3167, "x": -61.13, "curve": 0.315, "c4": 0.8}, {"time": 1.4167}]}, + "@shadow": { + "translate": [ + {"time": 0.1, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.3, "x": -162.84, "curve": "stepped"}, {"time": 1.2167, "x": -162.84, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 1.4167} + ], + "scale": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1, "x": 1.1, "y": 1.1, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.2, "x": 0.92, "y": 0.92, "curve": 0.315, "c4": 0.8}, + {"time": 0.3, "x": 1.1, "y": 1.1, "curve": 0.317, "c3": 0.693}, {"time": 0.3833, "x": 1.06, "y": 1.06, "curve": 0.317, "c3": 0.693}, + {"time": 0.4667, "x": 1.1, "y": 1.1, "curve": 0.317, "c3": 0.693}, {"time": 0.55, "x": 1.06, "y": 1.06, "curve": 0.317, "c3": 0.693}, + {"time": 0.6333, "x": 1.1, "y": 1.1, "curve": 0.317, "c3": 0.693}, {"time": 0.7167, "x": 1.06, "y": 1.06, "curve": 0.317, "c3": 0.693}, + {"time": 0.8, "x": 1.1, "y": 1.1, "curve": 0.317, "c3": 0.693}, {"time": 0.8833, "x": 1.06, "y": 1.06, "curve": 0.317, "c3": 0.693}, + {"time": 0.9667, "x": 1.1, "y": 1.1, "curve": 0.317, "c3": 0.693}, {"time": 1.05, "x": 1.06, "y": 1.06, "curve": 0.317, "c3": 0.693}, + {"time": 1.1333, "x": 1.1, "y": 1.1, "curve": "stepped"}, {"time": 1.2167, "x": 1.1, "y": 1.1, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 1.3167, "x": 0.92, "y": 0.92, "curve": 0.315, "c4": 0.8}, {"time": 1.4167} + ] + }, + "tail": { + "rotate": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1, "angle": 16.7, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.2, "angle": -16.65, "curve": 0.315, "c4": 0.8}, + {"time": 0.3, "angle": 17.85, "curve": 0.317, "c3": 0.693}, {"time": 0.4333, "angle": 15.5, "curve": 0.317, "c3": 0.693}, {"time": 0.5667, "angle": 17.85, "curve": 0.317, "c3": 0.693}, + {"time": 0.7, "angle": 15.5, "curve": 0.317, "c3": 0.693}, {"time": 0.8333, "angle": 17.85, "curve": 0.317, "c3": 0.693}, {"time": 0.95, "angle": 15.5, "curve": 0.317, "c3": 0.693}, + {"time": 1.0833, "angle": 17.85, "curve": 0.317, "c3": 0.693}, {"time": 1.2167, "angle": 15.5, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 1.3167, "angle": -14.65, "curve": 0.315, "c4": 0.8}, {"time": 1.4167} + ] + }, + "back": { + "rotate": [ + {"time": 0.3, "curve": 0.306, "c3": 0.695}, {"time": 0.4833, "angle": 5.93, "curve": 0.306, "c3": 0.695}, {"time": 0.65, "curve": 0.306, "c3": 0.695}, + {"time": 0.8333, "angle": 5.93, "curve": 0.306, "c3": 0.695}, {"time": 1.0167, "curve": 0.306, "c3": 0.695}, {"time": 1.2167, "angle": 5.93, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 1.4167} + ] + } + } + }, + "1438840721": { + "slots": {"eyes": {"attachment": [{"name": "eyes-happy"}]}, "leg-front-left": {"attachment": [{"time": 0.2, "name": "leg-front-left-stretch"}, {"time": 0.5833, "name": "leg-front-left"}]}}, "bones": { "@leg-front-left": { "translate": [ @@ -3995,8 +4455,8 @@ "back": {"rotate": [{"curve": 0.306, "c3": 0.695}, {"time": 0.25, "angle": 9.32, "curve": 0.306, "c3": 0.695}, {"time": 0.5, "angle": -5.11, "curve": 0.306, "c3": 0.695}, {"time": 0.75}]} } }, - "237238075": { - "slots": {"leg-front-left": {"attachment": [{"time": 0.2, "name": "summer-leg-front-left-stretch"}, {"time": 0.6667, "name": "summer-leg-front-left"}]}}, + "3577885069": { + "slots": {"leg-front-left": {"attachment": [{"time": 0.2, "name": "leg-front-left-stretch"}, {"time": 0.6667, "name": "leg-front-left"}]}}, "bones": { "@pivot-back": { "translate": [ @@ -4062,233 +4522,445 @@ } } }, - "3921179016": { + "3833448733": { "slots": { - "eyes": {"attachment": [{"name": "eyes-shut"}, {"time": 0.2167, "name": "eyes"}]}, "mouth": {"attachment": [{"time": 0.0333, "name": "mouth-open"}, {"time": 0.2333, "name": "mouth"}]} + "eyes": { + "attachment": [ + {"time": 0.05, "name": "eyes-angry"}, {"time": 0.3333, "name": "eyes-shut"}, {"time": 0.4333, "name": "eyes-angry"}, {"time": 1.0833, "name": "eyes-shut"}, + {"time": 1.1667, "name": "eyes-angry"}, {"time": 1.2833, "name": "eyes"} + ] + }, + "mouth": {"attachment": [{"time": 0.05, "name": "mouth-bite"}, {"time": 0.4333, "name": "mouth-open"}, {"time": 0.9167, "name": "mouth-bite"}, {"time": 1.2833, "name": "mouth"}]} }, "bones": { "@pivot-back": { - "rotate": [{"angle": -8.23, "curve": "stepped"}, {"time": 0.2333, "angle": -8.23, "curve": 0, "c2": 0.1, "c3": 0.847}, {"time": 0.4167}], - "translate": [{"x": 0.02, "y": -108.13, "curve": 0, "c2": 0.4, "c3": 0.533}, {"time": 0.1667, "x": 17.97, "y": 94.25, "curve": 0.315, "c4": 0.8}, {"time": 0.4167, "y": -0.04}] + "rotate": [{"curve": 0, "c2": 0.3, "c3": 0.546}, {"time": 0.0833, "angle": 6, "curve": 0, "c2": 0.2, "c3": 0.828}, {"time": 0.1667}], + "translate": [ + {"curve": 0, "c2": 0.3, "c3": 0.546}, {"time": 0.0833, "y": 5, "curve": 0.313, "c3": 0.699}, {"time": 0.1667, "y": 220, "curve": 0.617, "c4": 0.6}, {"time": 0.3333, "y": 10}, + {"time": 0.4167, "y": 5, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5833, "y": 420, "curve": 0.852, "c4": 0.1}, {"time": 0.9167}, + {"time": 1.0833, "y": -5, "curve": 0, "c2": 0.17, "c3": 0.461, "c4": 0.62}, {"time": 1.2167, "y": 130, "curve": 0.353, "c2": 0.54, "c3": 0.751}, {"time": 1.3333} + ] + }, + "@leg-front-right": {"translate": [{"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "x": -2.46, "y": -27.89, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.1167}]}, + "@leg-front-left": {"translate": [{"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "x": -1.21, "y": -13.68, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.1167}]}, + "@pivot-center": { + "rotate": [ + {"time": 0.1167, "curve": 0.313, "c3": 0.817}, {"time": 0.3333, "angle": 180, "curve": "stepped"}, {"time": 0.4167, "angle": 180, "curve": 0.313, "c3": 0.699}, + {"time": 0.6667, "angle": -1, "curve": 0.837, "c4": 0.2}, {"time": 0.9167, "angle": 178}, {"time": 1.0833, "angle": 180, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1.3333} + ] + }, + "leg-front-left-IK": { + "translate": [ + {"time": 0.0833, "x": 3.28, "y": 8.42, "curve": 0.344, "c3": 0.715, "c4": 0.45}, {"time": 0.1167, "x": 23.89, "y": 74.66, "curve": 0.589, "c2": 0.35, "c4": 0.75}, + {"time": 0.1667, "x": -100.7, "y": 242.98, "curve": 0.306, "c3": 0.695}, {"time": 0.25, "x": -233.21, "y": 406.49, "curve": 0.474, "c3": 0.714, "c4": 0.56}, + {"time": 0.3, "x": -153, "y": 482.64, "curve": 0.306, "c2": 0.39, "c3": 0.628, "c4": 0.74}, {"time": 0.3167, "x": -106.74, "y": 465.65, "curve": 0.287, "c2": 0.62, "c3": 0.612}, + {"time": 0.3333, "x": -79.92, "y": 385}, {"time": 0.4167, "x": -126.28, "y": 392.02, "curve": 0, "c2": 0.17, "c3": 0.45, "c4": 0.61}, + {"time": 0.5, "x": -212.54, "y": 584.25, "curve": 0.323, "c2": 0.4, "c3": 0.681, "c4": 0.77}, {"time": 0.55, "x": -233.91, "y": 520.55, "curve": 0.377, "c2": 0.62, "c3": 0.724}, + {"time": 0.5833, "x": -173.29, "y": 470.76}, {"time": 0.6667, "x": 19.48, "y": 419.84}, {"time": 0.75, "x": 31.74, "y": 414.89, "curve": 0.255, "c3": 0.659, "c4": 0.47}, + {"time": 0.8333, "x": 83.62, "y": 412.28, "curve": 0.41, "c2": 0.34, "c3": 0.774, "c4": 0.71}, + {"time": 0.8833, "x": 116.53, "y": 400.02, "curve": 0.427, "c2": 0.37, "c3": 0.767, "c4": 0.71}, {"time": 0.9, "x": 130.33, "y": 410.53, "curve": 0.649, "c2": 0.4, "c4": 0.74}, + {"time": 0.9167, "x": -78.08, "y": 379.36}, {"time": 1.0833, "x": -92.45, "y": 375.87, "curve": 0, "c2": 0.17, "c3": 0.45, "c4": 0.61}, + {"time": 1.15, "x": 127.37, "y": 350.17, "curve": 0.345, "c2": 0.53, "c3": 0.751}, {"time": 1.2167, "x": 133.62, "y": 244.55, "curve": 0, "c2": 0.1, "c3": 0.769}, {"time": 1.3333} + ] + }, + "leg-front-right-IK": { + "translate": [ + {"time": 0.0833, "curve": 0.344, "c3": 0.715, "c4": 0.45}, {"time": 0.1167, "x": 41.2, "y": 75.27, "curve": 0.589, "c2": 0.35, "c4": 0.75}, + {"time": 0.1667, "x": -103.56, "y": 361.93, "curve": 0.313, "c3": 0.699}, {"time": 0.25, "x": 61.46, "y": 606.37, "curve": 0.474, "c3": 0.714, "c4": 0.56}, + {"time": 0.3, "x": 293.95, "y": 550.17, "curve": 0.306, "c2": 0.39, "c3": 0.628, "c4": 0.74}, {"time": 0.3167, "x": 340.35, "y": 482.44, "curve": 0.287, "c2": 0.62, "c3": 0.612}, + {"time": 0.3333, "x": 426.33, "y": 357.51}, {"time": 0.4167, "x": 340.52, "y": 373.76, "curve": 0, "c2": 0.17, "c3": 0.45, "c4": 0.61}, + {"time": 0.5, "x": 236.72, "y": 764.35, "curve": 0.323, "c2": 0.4, "c3": 0.681, "c4": 0.77}, {"time": 0.55, "x": -18.99, "y": 764.25, "curve": 0.377, "c2": 0.62, "c3": 0.724}, + {"time": 0.5833, "x": -86.72, "y": 646.17}, {"time": 0.6667, "x": 16.1, "y": 426.11}, {"time": 0.75, "x": 19.92, "y": 404.36, "curve": 0.255, "c3": 0.659, "c4": 0.47}, + {"time": 0.8333, "x": 90.31, "y": 343.4, "curve": 0.41, "c2": 0.34, "c3": 0.774, "c4": 0.71}, + {"time": 0.8833, "x": 202.62, "y": 235.31, "curve": 0.427, "c2": 0.37, "c3": 0.767, "c4": 0.71}, {"time": 0.9, "x": 290.37, "y": 171.88, "curve": 0.649, "c2": 0.4, "c4": 0.74}, + {"time": 0.9167, "x": 412.25, "y": 355.41}, {"time": 1.0833, "x": 345.67, "y": 359.46, "curve": 0, "c2": 0.17, "c3": 0.45, "c4": 0.61}, + {"time": 1.15, "x": 400.77, "y": 121.52, "curve": 0.345, "c2": 0.53, "c3": 0.751}, {"time": 1.2167, "x": 172.82, "y": 29.19, "curve": 0.306, "c4": 0.8}, {"time": 1.3333} + ] + }, + "leg-back-left-IK": { + "translate": [ + {"time": 0.0833, "x": 1.05, "y": 4.19, "curve": 0.344, "c3": 0.715, "c4": 0.45}, {"time": 0.1167, "x": 28.54, "y": 87, "curve": 0.589, "c2": 0.35, "c4": 0.75}, + {"time": 0.1667, "x": -101.24, "y": 155.59, "curve": 0.313, "c3": 0.699}, {"time": 0.25, "x": -446.46, "y": 186.66, "curve": 0.474, "c3": 0.714, "c4": 0.56}, + {"time": 0.3, "x": -509.64, "y": 364.51, "curve": 0.306, "c2": 0.39, "c3": 0.628, "c4": 0.74}, {"time": 0.3167, "x": -479.36, "y": 400.3, "curve": 0.287, "c2": 0.62, "c3": 0.612}, + {"time": 0.3333, "x": -473.08, "y": 343.1}, {"time": 0.4167, "x": -421.75, "y": 358.21, "curve": 0, "c2": 0.17, "c3": 0.45, "c4": 0.61}, + {"time": 0.5, "x": -502.28, "y": 409.04, "curve": 0.323, "c2": 0.4, "c3": 0.681, "c4": 0.77}, {"time": 0.55, "x": -357.82, "y": 309.09, "curve": 0.377, "c2": 0.62, "c3": 0.724}, + {"time": 0.5833, "x": -190.14, "y": 299.56}, {"time": 0.6667, "x": 28.01, "y": 424.39}, {"time": 0.75, "x": 15.55, "y": 419.34, "curve": 0.255, "c3": 0.659, "c4": 0.47}, + {"time": 0.8333, "x": 74.85, "y": 472.68, "curve": 0.41, "c2": 0.34, "c3": 0.774, "c4": 0.71}, + {"time": 0.8833, "x": 69.06, "y": 556.5, "curve": 0.427, "c2": 0.37, "c3": 0.767, "c4": 0.71}, {"time": 0.9, "x": 11.02, "y": 617.8, "curve": 0.649, "c2": 0.4, "c4": 0.74}, + {"time": 0.9167, "x": -407.64, "y": 352.01}, {"time": 1.0833, "x": -407.65, "y": 352.01, "curve": 0, "c2": 0.17, "c3": 0.45, "c4": 0.61}, + {"time": 1.15, "x": -101.44, "y": 524.93, "curve": 0.345, "c2": 0.53, "c3": 0.751}, {"time": 1.2167, "x": 63.56, "y": 378.89, "curve": 0, "c2": 0.1, "c3": 0.769}, {"time": 1.3333} + ] }, - "@leg-back-left": {"rotate": [{"angle": 14.26, "curve": "stepped"}, {"time": 0.2333, "angle": 14.26, "curve": 0, "c2": 0.1, "c3": 0.847}, {"time": 0.4167, "angle": -11.75}]}, - "@leg-front-left": {"rotate": [{"angle": 14.58, "curve": "stepped"}, {"time": 0.2333, "angle": 14.58, "curve": 0, "c2": 0.1, "c3": 0.847}, {"time": 0.4167, "angle": 20.14}]}, - "@leg-front-right": {"rotate": [{"angle": 12.31, "curve": "stepped"}, {"time": 0.2333, "angle": 12.31, "curve": 0, "c2": 0.1, "c3": 0.847}, {"time": 0.4167, "angle": -30.3}]}, "tail": { "rotate": [ - {"angle": -18.5, "curve": "stepped"}, {"time": 0.1167, "angle": -18.5, "curve": 0, "c2": 0.1, "c3": 0.844}, {"time": 0.2667, "angle": 4.16, "curve": 0.309, "c4": 0.8}, {"time": 0.4167} + {"curve": 0, "c2": 0.3, "c3": 0.546}, {"time": 0.0833, "angle": 19.35, "curve": 0.313, "c3": 0.699}, {"time": 0.1667, "angle": -22.95, "curve": 0.617, "c4": 0.6}, + {"time": 0.3333, "angle": 22.22}, {"time": 0.4167, "angle": 24.08, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5833, "angle": -30.94, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.6667, "angle": 18.1, "curve": 0.313, "c3": 0.699}, {"time": 0.8333, "angle": -20.52, "curve": 0.464, "c4": 0.7}, {"time": 0.9167, "angle": 16.35}, + {"time": 1.0833, "angle": 20.35, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1.2167, "angle": -9.93, "curve": 0.161, "c3": 0.854}, {"time": 1.3333} ] }, - "@shadow": {"scale": [{"x": 1.3, "y": 1.3, "curve": 0, "c2": 0.4, "c3": 0.533}, {"time": 0.1667, "x": 0.9, "y": 0.9, "curve": 0.315, "c4": 0.8}, {"time": 0.4167}]} - } + "@shadow": { + "scale": [ + {"curve": 0, "c2": 0.3, "c3": 0.546}, {"time": 0.0833, "x": 1.1, "y": 1.1, "curve": 0.313, "c3": 0.699}, {"time": 0.1667, "x": 0.92, "y": 0.92, "curve": 0.617, "c4": 0.6}, + {"time": 0.3333, "x": 1.12, "y": 1.12}, {"time": 0.4167, "x": 1.16, "y": 1.16, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5833, "x": 0.86, "y": 0.86, "curve": 0.752, "c4": 0.2}, + {"time": 0.9167, "x": 1.12, "y": 1.12}, {"time": 1.0833, "x": 1.16, "y": 1.16, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1.3333} + ] + }, + "@pivot-main": {"scale": [{"time": 0.3333, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.4167, "y": 0.9, "curve": 0, "c2": 0.3, "c3": 0.546}, {"time": 0.5}]} + }, + "events": [{"time": 0.4333, "name": "jump"}, {"time": 0.8333, "name": "start-attack"}, {"time": 0.9167, "name": "hit"}] }, - "3722823556": { + "3317139533": { "slots": { - "eyes": {"attachment": [{"time": 0.05, "name": "eyes-angry"}, {"time": 0.8833, "name": "eyes"}]}, - "mouth": {"attachment": [{"time": 0.05, "name": "mouth-bite"}, {"time": 0.4667, "name": "mouth-open"}, {"time": 0.75, "name": "mouth-bite"}, {"time": 0.8833, "name": "mouth"}]} + "eyes": {"attachment": [{"time": 0.05, "name": "eyes-angry"}, {"time": 0.8333, "name": "eyes-shut"}, {"time": 0.9167, "name": "eyes"}]}, + "mouth": {"attachment": [{"time": 0.05, "name": "mouth-bite"}, {"time": 0.3333, "name": "mouth-open"}, {"time": 0.75, "name": "mouth-bite"}, {"time": 0.9167, "name": "mouth"}]} }, "bones": { + "tail": { + "rotate": [ + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.25, "angle": 21.98, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3167, "angle": -15.58, "curve": "stepped"}, + {"time": 0.3333, "angle": -19.65, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.4, "angle": 20.35, "curve": "stepped"}, {"time": 0.4333, "angle": -19.65, "curve": "stepped"}, + {"time": 0.4667, "angle": -19.65, "curve": 0.461, "c3": 0.543}, {"time": 0.5333, "angle": 20.35, "curve": "stepped"}, {"time": 0.5667, "angle": -19.65, "curve": "stepped"}, + {"time": 0.6, "angle": -19.65, "curve": 0.461, "c3": 0.543}, {"time": 0.6667, "angle": 20.35, "curve": "stepped"}, {"time": 0.7, "angle": -19.65, "curve": "stepped"}, + {"time": 0.75, "angle": -11.84, "curve": 0.313, "c3": 0.699}, {"time": 0.8333, "angle": 16.95, "curve": 0.313, "c3": 0.699}, {"time": 1} + ] + }, "@pivot-back": { "rotate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "angle": 4, "curve": 0, "c2": 0.6, "c3": 0.237}, {"time": 0.3333, "angle": -8.88, "curve": 0.621, "c3": 0, "c4": 1.6}, - {"time": 0.6667, "angle": 8.17, "curve": 0.701, "c4": 0.5}, {"time": 0.8833, "angle": 5, "curve": 0.461, "c3": 0.543}, {"time": 1} + {"curve": 0, "c2": 0.4, "c3": 0.383}, {"time": 0.15, "angle": 4, "curve": "stepped"}, {"time": 0.25, "angle": 4, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.3167, "curve": "stepped"}, {"time": 0.3333, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.4, "angle": -2.45, "curve": "stepped"}, {"time": 0.4333, "curve": "stepped"}, + {"time": 0.4667, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.5333, "angle": -2.45, "curve": "stepped"}, {"time": 0.5667, "curve": "stepped"}, + {"time": 0.6, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.6667, "angle": -2.45, "curve": "stepped"}, {"time": 0.7, "curve": "stepped"}, {"time": 0.75, "curve": 0.313, "c3": 0.699}, + {"time": 0.8333, "angle": 6, "curve": 0.313, "c3": 0.699}, {"time": 1} ], "translate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": 33.65, "y": -5, "curve": 0, "c2": 0.6, "c3": 0.237}, - {"time": 0.3333, "x": -62.54, "y": 309.16, "curve": 0.621, "c3": 0, "c4": 1.6}, {"time": 0.6667, "x": 12.32, "y": 268.04, "curve": 0.701, "c4": 0.5}, {"time": 0.8833} - ] + {"curve": 0, "c2": 0.4, "c3": 0.383}, {"time": 0.25, "x": 25, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3167, "x": -135.5, "curve": "stepped"}, + {"time": 0.3333, "x": -560.54, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.4, "x": -560.54, "y": 9.3, "curve": "stepped"}, {"time": 0.4333, "x": -560.54, "curve": "stepped"}, + {"time": 0.4667, "x": -560.54, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.5333, "x": -560.54, "y": 9.3, "curve": "stepped"}, {"time": 0.5667, "x": -560.54, "curve": "stepped"}, + {"time": 0.6, "x": -560.54, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.6667, "x": -560.54, "y": 9.3, "curve": "stepped"}, {"time": 0.7, "x": -560.54, "curve": "stepped"}, + {"time": 0.75, "x": -151.24, "curve": 0.313, "c3": 0.699}, {"time": 0.8333, "x": -151.24, "y": 4.06, "curve": 0.313, "c3": 0.699}, {"time": 1} + ], + "scale": [{"time": 0.3167, "curve": "stepped"}, {"time": 0.3333, "x": -1, "curve": "stepped"}, {"time": 0.7, "x": -1, "curve": "stepped"}, {"time": 0.75}] }, - "@leg-front-left": { + "@leg-front-right": { "translate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": -0.29, "y": -5.47, "curve": 0, "c2": 0.6, "c3": 0.237}, {"time": 0.3333, "curve": "stepped"}, - {"time": 0.6667, "curve": 0.701, "c4": 0.5}, {"time": 0.8833, "x": -0.95, "y": -14.45, "curve": 0.461, "c3": 0.543}, {"time": 1} + {"curve": 0, "c2": 0.4, "c3": 0.383}, {"time": 0.25, "x": -1.86, "y": -9.26, "curve": "stepped"}, {"time": 0.3167, "x": -1.86, "y": -9.26, "curve": "stepped"}, + {"time": 0.3333, "x": -2.24, "y": 13.67, "curve": "stepped"}, {"time": 0.75, "x": -2.24, "y": 13.67, "curve": 0.313, "c3": 0.699}, + {"time": 0.8333, "x": -1.86, "y": -9.26, "curve": 0.313, "c3": 0.699}, {"time": 1} ] }, - "@leg-front-right": { + "@leg-front-left": { "translate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": -0.29, "y": -5.47, "curve": 0, "c2": 0.6, "c3": 0.237}, {"time": 0.3333, "curve": "stepped"}, - {"time": 0.6667, "curve": 0.701, "c4": 0.5}, {"time": 0.8833, "x": -1.66, "y": -25.29, "curve": 0.461, "c3": 0.543}, {"time": 1} + {"curve": 0, "c2": 0.4, "c3": 0.383}, {"time": 0.25, "x": -1, "y": -5.53, "curve": "stepped"}, {"time": 0.3167, "x": -1, "y": -5.53, "curve": "stepped"}, + {"time": 0.3333, "x": -1.12, "y": 1.52, "curve": "stepped"}, {"time": 0.75, "x": -1.12, "y": 1.52, "curve": 0.313, "c3": 0.699}, + {"time": 0.8333, "x": -1, "y": -5.53, "curve": 0.313, "c3": 0.699}, {"time": 1} ] }, "@shadow": { "translate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": 24.43, "curve": 0, "c2": 0.6, "c3": 0.237}, {"time": 0.3333, "x": -70.38, "curve": 0.621, "c3": 0, "c4": 1.4}, - {"time": 0.6667, "x": 5.15, "curve": 0.701, "c4": 0.5}, {"time": 0.8833, "x": -8.95, "curve": 0.461, "c3": 0.543}, {"time": 1} + {"time": 0.25, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3167, "x": -143.36, "curve": "stepped"}, {"time": 0.7, "x": -143.36, "curve": "stepped"}, + {"time": 0.75, "x": -161.35, "curve": "stepped"}, {"time": 0.8333, "x": -161.35, "curve": 0.313, "c3": 0.699}, {"time": 1} ], "scale": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": 1.08, "y": 1.08, "curve": 0, "c2": 0.6, "c3": 0.237}, - {"time": 0.3333, "x": 0.85, "y": 0.85, "curve": 0.621, "c3": 0, "c4": 1.4}, {"time": 0.6667, "x": 0.9, "y": 0.9, "curve": 0.701, "c4": 0.5}, - {"time": 0.8833, "x": 1.1, "y": 1.1, "curve": 0.461, "c3": 0.543}, {"time": 1} + {"curve": 0, "c2": 0.4, "c3": 0.383}, {"time": 0.25, "x": 1.08, "y": 1.08, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3167, "curve": "stepped"}, + {"time": 0.3333, "x": 1.02, "y": 1.02, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.4, "x": 0.96, "y": 0.96, "curve": "stepped"}, + {"time": 0.4333, "x": 1.02, "y": 1.02, "curve": "stepped"}, {"time": 0.4667, "x": 1.02, "y": 1.02, "curve": 0, "c2": 0.3, "c3": 0.544}, + {"time": 0.5333, "x": 0.96, "y": 0.96, "curve": "stepped"}, {"time": 0.5667, "x": 1.02, "y": 1.02, "curve": "stepped"}, + {"time": 0.6, "x": 1.02, "y": 1.02, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.6667, "x": 0.96, "y": 0.96, "curve": "stepped"}, + {"time": 0.7, "x": 1.02, "y": 1.02, "curve": "stepped"}, {"time": 0.75, "curve": 0.313, "c3": 0.699}, {"time": 0.8333, "x": 1.08, "y": 1.08, "curve": 0.313, "c3": 0.699}, {"time": 1} ] }, - "tail": { - "rotate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "angle": 17.93, "curve": 0, "c2": 0.6, "c3": 0.237}, {"time": 0.3333, "angle": -15.3, "curve": 0.621, "c3": 0, "c4": 1.4}, - {"time": 0.6667, "angle": 24.81, "curve": 0.701, "c4": 0.5}, {"time": 0.8833, "angle": -15.84, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 1} + "leg-front-left-IK": { + "translate": [ + {"time": 0.25, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3167, "x": -192.09, "y": 31.17, "curve": "stepped"}, + {"time": 0.3333, "x": -219.56, "y": 3.98, "curve": 0.277, "c3": 0.849, "c4": 0.67}, {"time": 0.65, "x": -219.56, "y": 3.98, "curve": 0.641, "c2": 0.41, "c4": 0.76}, + {"time": 0.7, "x": -226.38, "y": 3.98, "curve": "stepped"}, {"time": 0.75, "x": -157.76, "curve": "stepped"}, {"time": 0.8333, "x": -157.76, "curve": 0.306, "c3": 0.695}, {"time": 1} ] - } + }, + "leg-front-right-IK": { + "translate": [ + {"time": 0.25, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3167, "x": -172.87, "y": 28.32, "curve": "stepped"}, {"time": 0.3333, "x": 295.89, "y": 8.85, "curve": "stepped"}, + {"time": 0.7, "x": 295.89, "y": 8.85, "curve": "stepped"}, {"time": 0.75, "x": -180.48, "curve": "stepped"}, {"time": 0.8333, "x": -180.48, "curve": 0.313, "c3": 0.699}, {"time": 1} + ] + }, + "leg-back-left-IK": { + "translate": [ + {"time": 0.25, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3167, "x": -96.78, "y": 27.51, "curve": "stepped"}, {"time": 0.3333, "x": -542.14, "curve": "stepped"}, + {"time": 0.7, "x": -542.14, "curve": "stepped"}, {"time": 0.75, "x": -134.74, "curve": "stepped"}, {"time": 0.8333, "x": -134.74, "curve": 0.313, "c3": 0.699}, {"time": 1} + ] + }, + "@leg-back-left": { + "translate": [{"time": 0.3167, "curve": "stepped"}, {"time": 0.3333, "x": -0.06, "y": 3.33, "curve": "stepped"}, {"time": 0.7, "x": -0.06, "y": 3.33, "curve": "stepped"}, {"time": 0.75}] + }, + "@pivot-main": {"translate": [{"time": 0.8333, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.9167, "y": 31, "curve": 0.315, "c4": 0.8}, {"time": 1}]} }, - "events": [{"time": 0.4667, "name": "start-attack"}] + "events": [{"time": 0.3167, "name": "start-attack"}, {"time": 0.4333, "name": "hit"}, {"time": 0.5667, "name": "hit"}, {"time": 0.7, "name": "hit"}] }, - "3577703416": { + "3108617565": { "slots": { - "eyes": {"attachment": [{"time": 0.0833, "name": "eyes-angry"}, {"time": 0.6667, "name": "eyes-shut"}, {"time": 0.75, "name": "eyes"}]}, - "mouth": {"attachment": [{"time": 0.0833, "name": "mouth-bite"}, {"time": 0.35, "name": "mouth-open"}, {"time": 0.55, "name": "mouth-bite"}, {"time": 0.75, "name": "mouth"}]} + "eyes": {"attachment": [{"time": 0.0167, "name": "eyes-angry"}, {"time": 0.85, "name": "eyes-shut"}, {"time": 0.9333, "name": "eyes"}]}, + "mouth": {"attachment": [{"time": 0.0167, "name": "mouth-bite"}, {"time": 0.1833, "name": "mouth-open"}, {"time": 0.5, "name": "mouth-bite"}, {"time": 0.9333, "name": "mouth"}]} }, "bones": { "@pivot-back": { "rotate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "angle": 4, "curve": 0, "c2": 0.5, "c3": 0.3}, {"time": 0.3333, "angle": -23.77, "curve": "stepped"}, - {"time": 0.35, "angle": -29.82, "curve": 0.698, "c3": 0.541}, {"time": 0.5833, "angle": 3}, {"time": 0.7167, "angle": 4, "curve": 0, "c2": 0.09, "c3": 0.479, "c4": 0.56}, - {"time": 0.8167, "angle": -5.09, "curve": 0.416, "c2": 0.51, "c3": 0.865}, {"time": 0.9167} + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "angle": -3.92, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "angle": 2.51, "curve": 0, "c2": 0.2, "c3": 0.858}, + {"time": 0.25, "angle": -6, "curve": "stepped"}, {"time": 0.7167, "angle": -6, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.8333, "angle": 6, "curve": 0.313, "c3": 0.699}, {"time": 1} ], "translate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": 33.65, "y": -5, "curve": 0, "c2": 0.5, "c3": 0.3}, {"time": 0.3333, "x": 80.56, "y": 137.85, "curve": "stepped"}, - {"time": 0.35, "x": 147.57, "y": 42.83, "curve": 0, "c2": 0.2, "c3": 0.686}, {"time": 0.5, "x": 206.93, "y": -26.82, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.5833, "x": 226.09}, - {"time": 0.7167, "x": 237.58, "y": 2, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.9167} + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "x": 71.93, "y": -12.95, "curve": "stepped"}, {"time": 0.1667, "x": 71.93, "y": -12.95, "curve": 0, "c2": 0.2, "c3": 0.858}, + {"time": 0.25, "x": -145.48, "y": 99.8, "curve": 0, "c2": 0.3, "c3": 0.698}, {"time": 0.4167, "x": -145, "y": 149.7, "curve": 1, "c4": 0}, {"time": 0.5, "x": -145}, + {"time": 0.6667, "x": -145, "y": 2.5, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.7167, "y": 48.98, "curve": 0.315, "c4": 0.8}, + {"time": 0.8333, "y": -3.33, "curve": 0.313, "c3": 0.699}, {"time": 1} ] }, - "@pivot-main": { + "@leg-front-left": { "translate": [ - {"time": 0.5833, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.7167, "x": 15, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.8167, "x": 7.5, "y": 59.4, "curve": 0.315, "c4": 0.8}, - {"time": 0.9167} + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "x": -2.77, "y": -2.64, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.1667, "x": -0.53, "y": 0.11, "curve": 0, "c2": 0.2, "c3": 0.858}, {"time": 0.25, "x": -1, "y": -5.53, "curve": "stepped"}, + {"time": 0.7167, "x": -1, "y": -5.53, "curve": 0.464, "c4": 0.7}, {"time": 0.8333, "x": -2.17, "y": -17.49, "curve": 0.313, "c3": 0.699}, {"time": 1} ] }, - "leg-front-left-IK": { + "@leg-back-left": { "translate": [ - {"time": 0.1667, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.3333, "x": 31.94, "y": 229.47, "curve": "stepped"}, {"time": 0.35, "x": 25.96, "y": 213.29, "curve": 0.384, "c3": 0.537}, - {"time": 0.5833, "x": 202.93}, {"time": 0.7, "x": 190.82, "curve": 0.315, "c4": 0.8}, {"time": 0.7667, "x": 145.27, "curve": 0.237, "c4": 0.8}, {"time": 0.9167} + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 0.67, "y": -7.85, "curve": 0.161, "c3": 0.854}, {"time": 0.1667, "x": 0.53, "y": -13.09, "curve": 0, "c2": 0.2, "c3": 0.858}, + {"time": 0.25, "curve": "stepped"}, {"time": 0.7167, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.8333, "x": -0.5, "y": -5.23, "curve": 0.313, "c3": 0.699}, {"time": 1} + ] + }, + "@shadow": { + "translate": [ + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 61.96, "curve": "stepped"}, {"time": 0.1667, "x": 61.96, "curve": 0, "c2": 0.2, "c3": 0.858}, + {"time": 0.25, "x": -143.36, "curve": 0, "c2": 0.3, "c3": 0.698}, {"time": 0.4167, "x": -154.48, "curve": "stepped"}, {"time": 0.6667, "x": -154.48, "curve": 0, "c2": 0.3, "c3": 0.544}, + {"time": 0.7167, "x": -9.48, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.8333} + ], + "scale": [ + {"time": 0.0833, "curve": 0, "c2": 0.26, "c3": 0.369, "c4": 0.62}, {"time": 0.1667, "x": 1.06, "y": 1.06, "curve": 0, "c2": 0.2, "c3": 0.858}, + {"time": 0.25, "curve": 0, "c2": 0.3, "c3": 0.698}, {"time": 0.4167, "x": 0.86, "y": 0.86}, {"time": 0.5, "x": 1.16, "y": 1.16}, + {"time": 0.6667, "x": 1.18, "y": 1.18, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.7167, "x": 1.02, "y": 1.02, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.8333, "x": 1.1, "y": 1.1, "curve": 0.313, "c3": 0.699}, {"time": 1} ] }, "leg-front-right-IK": { "translate": [ - {"time": 0.1667, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.3333, "x": 54.35, "y": 299.4, "curve": "stepped"}, {"time": 0.35, "x": 74.27, "y": 309.43, "curve": 0.384, "c3": 0.537}, - {"time": 0.5833, "x": 199.77}, {"time": 0.7, "x": 187.66, "curve": 0.315, "c4": 0.8}, {"time": 0.7667, "x": 143.69, "curve": 0.237, "c4": 0.8}, {"time": 0.9167} + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 30.89, "y": 11.74, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": 42.9, "curve": 0, "c2": 0.2, "c3": 0.858}, + {"time": 0.25, "x": -172.87, "y": 28.32, "curve": 0, "c2": 0.3, "c3": 0.698}, {"time": 0.4667, "x": 261.69, "y": 187.13, "curve": 1, "c4": 0.1}, {"time": 0.5, "x": 166.41, "y": 465.39}, + {"time": 0.6667, "x": 101.69, "y": 451.97, "curve": "stepped"}, {"time": 0.7, "x": -101.81, "y": 172.32, "curve": "stepped"}, {"time": 0.7167} ] }, "leg-back-left-IK": { "translate": [ - {"time": 0.1667, "curve": 0, "c2": 0.4, "c3": 0.383}, {"time": 0.3333, "x": 47.11, "y": 167.16, "curve": "stepped"}, {"time": 0.35, "x": 7.09, "y": 110.08, "curve": 0.312, "c4": 0.8}, - {"time": 0.5, "x": 185.62, "y": 1.08, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.7167, "x": 244.18, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.8167, "x": 141.99, "y": 26.46, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.9167} + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 80.9, "curve": 0.161, "c3": 0.854}, {"time": 0.1667, "x": 72.25, "curve": 0, "c2": 0.2, "c3": 0.858}, + {"time": 0.25, "x": -96.78, "y": 27.51, "curve": 0, "c2": 0.3, "c3": 0.698}, {"time": 0.4667, "x": -250.56, "y": 568.36, "curve": 1, "c4": 0.1}, {"time": 0.5, "x": -654.65, "y": 234.55}, + {"time": 0.6667, "x": -665.01, "y": 210.09, "curve": "stepped"}, {"time": 0.7, "x": -61.52, "y": -3.55, "curve": "stepped"}, {"time": 0.7167} ] }, "@leg-front-right": { "translate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": -0.29, "y": -5.47}, {"time": 0.3333, "curve": "stepped"}, {"time": 0.5833, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.7167, "x": 9.38, "y": 7.22}, {"time": 0.9167} + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 4.31, "y": 11.86, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.1667, "x": -10.19, "y": -4.67, "curve": 0, "c2": 0.2, "c3": 0.858}, {"time": 0.25, "curve": "stepped"}, {"time": 0.7167, "curve": 0.464, "c4": 0.7}, + {"time": 0.8333, "x": -4.16, "y": -33.18, "curve": 0.313, "c3": 0.699}, {"time": 1} ] }, - "@leg-front-left": { + "leg-front-left-IK": { "translate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": -0.29, "y": -5.47}, {"time": 0.3333, "curve": "stepped"}, {"time": 0.5833, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.7167, "x": 6.82, "y": 7.35}, {"time": 0.9167} + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "x": 42.22, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": 42.9, "curve": 0, "c2": 0.2, "c3": 0.858}, + {"time": 0.25, "x": -192.09, "y": 31.17, "curve": 0, "c2": 0.3, "c3": 0.698}, {"time": 0.4667, "x": -33.07, "y": 448.19, "curve": 1, "c4": 0.1}, {"time": 0.5, "x": -325.8, "y": 359.06}, + {"time": 0.6667, "x": -307.09, "y": 359.93, "curve": "stepped"}, {"time": 0.7, "x": -83.89, "y": 65.11, "curve": "stepped"}, {"time": 0.7167} ] }, "tail": { "rotate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "angle": 19.35, "curve": 0, "c2": 0.4, "c3": 0.383}, {"time": 0.3333, "angle": -0.88, "curve": "stepped"}, - {"time": 0.35, "angle": -13.56, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.5, "angle": 0.52, "curve": 0, "c2": 0.3, "c3": 0.544}, - {"time": 0.7167, "angle": 19.32, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.8, "angle": -9.3, "curve": 0.313, "c3": 0.699}, {"time": 0.9167} + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "angle": 15.61, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "angle": 20.44, "curve": 0, "c2": 0.2, "c3": 0.858}, + {"time": 0.25, "angle": -14.65, "curve": 0.313, "c3": 0.699}, {"time": 0.4667, "angle": -49.65, "curve": 1, "c4": 0.1}, {"time": 0.5, "angle": -2.15}, + {"time": 0.6667, "angle": -1.85, "curve": 0, "c2": 0.4, "c3": 0.383}, {"time": 0.8333, "angle": 21.05, "curve": 0.313, "c3": 0.699}, {"time": 1} ] }, - "@shadow": { - "translate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": 24.43, "curve": 0, "c2": 0.4, "c3": 0.383}, {"time": 0.3333, "x": 86.58, "curve": "stepped"}, - {"time": 0.35, "x": 154.34, "curve": 0.315, "c4": 0.8}, {"time": 0.5, "x": 208.2, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.5833, "x": 216.55}, - {"time": 0.7167, "x": 243.36, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.9167} - ], - "scale": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": 1.08, "y": 1.08, "curve": 0, "c2": 0.4, "c3": 0.383}, {"time": 0.3333, "x": 0.92, "y": 0.92, "curve": "stepped"}, - {"time": 0.35, "x": 0.9, "y": 0.9, "curve": 0.315, "c4": 0.8}, {"time": 0.5, "x": 1.02, "y": 1.02, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.5833, "x": 1.08, "y": 1.08}, - {"time": 0.7167, "x": 1.1, "y": 1.1, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.9167} + "@pivot-center": { + "rotate": [ + {"time": 0.25, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.4667, "angle": 112.05, "curve": 1, "c4": 0.1}, {"time": 0.5, "angle": -146.9}, + {"time": 0.6667, "angle": -145.45, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.7167} ] } }, - "events": [{"time": 0.35, "name": "start-attack"}] + "events": [{"time": 0.4167, "name": "start-attack"}, {"time": 0.5, "name": "hit"}] }, - "1793942137": { + "519942130": { "slots": { - "eyes": {"attachment": [{"time": 0.0167, "name": "eyes-angry"}, {"time": 0.5, "name": "eyes-shut"}, {"time": 0.6667, "name": "eyes"}]}, - "mouth": {"attachment": [{"time": 0.0167, "name": "mouth-bite"}, {"time": 0.3, "name": "mouth-open"}, {"time": 0.5, "name": "mouth"}]} + "eyes": {"attachment": [{"time": 0.0167, "name": "eyes-angry"}, {"time": 0.9167, "name": "eyes"}]}, + "mouth": {"attachment": [{"time": 0.0167, "name": "mouth-bite"}, {"time": 0.1833, "name": "mouth-open"}, {"time": 0.5, "name": "mouth-bite"}, {"time": 0.9167, "name": "mouth"}]} }, "bones": { "@pivot-back": { "rotate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "angle": -3.92, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "angle": 2.51, "curve": 0.697, "c4": 0.3}, - {"time": 0.3, "angle": -2}, {"time": 0.4167, "angle": -3, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5833, "angle": 3, "curve": 0, "c2": 0.17, "c3": 0.45, "c4": 0.61}, - {"time": 0.6667, "angle": -2.47, "curve": 0.345, "c2": 0.53, "c3": 0.751}, {"time": 0.75} + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "angle": -3.92, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "angle": 2.51, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.25, "angle": -6, "curve": "stepped"}, {"time": 0.2667, "angle": -20, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.4833, "angle": -22, "curve": "stepped"}, + {"time": 0.5, "angle": 10}, {"time": 0.6667, "angle": 12, "curve": "stepped"}, {"time": 0.7, "angle": 4, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.8333, "angle": 6, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1} ], "translate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "x": 71.93, "y": -12.95, "curve": "stepped"}, {"time": 0.25, "x": 71.93, "y": -12.95, "curve": 0.697, "c4": 0.3}, - {"time": 0.3, "x": -65}, {"time": 0.4167, "x": -67, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5833, "x": -74.25, "y": -5.2, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.75} - ] - }, - "leg-back-left-IK": { - "translate": [ - {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.1333, "x": 80.9, "curve": 0.161, "c3": 0.854}, {"time": 0.25, "x": 49.4, "curve": 0.25, "c4": 0.3}, - {"time": 0.3, "x": -1.03, "y": 44.55}, {"time": 0.4167, "x": -2.69, "y": 48.98, "curve": 0.313, "c3": 0.699}, {"time": 0.5833, "x": -90.91, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.75} - ] + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "x": 71.93, "y": -12.95, "curve": "stepped"}, {"time": 0.1667, "x": 71.93, "y": -12.95, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.25, "x": -135.5, "curve": "stepped"}, {"time": 0.2667, "x": -551.77, "y": 110, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.4833, "x": -551.77, "y": 120.52, "curve": "stepped"}, {"time": 0.5, "x": -565, "y": -35}, {"time": 0.6667, "x": -565, "y": -40, "curve": "stepped"}, + {"time": 0.7, "x": -135.5, "y": 5, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.8333, "x": -135.5, "y": 10, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1} + ], + "scale": [{"time": 0.25, "curve": "stepped"}, {"time": 0.2667, "x": -1, "curve": "stepped"}, {"time": 0.6667, "x": -1, "curve": "stepped"}, {"time": 0.7}] }, "leg-front-right-IK": { "translate": [ - {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 30.89, "y": 11.74, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "x": 42.9, "curve": 0.697, "c4": 0.3}, - {"time": 0.3, "x": 12.5}, {"time": 0.4167, "x": 2.32, "curve": 0.313, "c3": 0.699}, {"time": 0.5833, "x": -87.1, "curve": 0, "c2": 0.17, "c3": 0.45, "c4": 0.61}, - {"time": 0.6667, "x": -39.4, "curve": 0.345, "c2": 0.53, "c3": 0.751}, {"time": 0.75} + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 30.89, "y": 11.74, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": 42.9, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.25, "x": -172.87, "y": 28.32, "curve": "stepped"}, {"time": 0.2667, "x": 224.47, "y": -9.31, "curve": "stepped"}, + {"time": 0.4833, "x": 224.47, "y": -9.31, "curve": "stepped"}, {"time": 0.5, "x": 219.47, "curve": "stepped"}, {"time": 0.6667, "x": 219.47, "curve": "stepped"}, + {"time": 0.7, "x": -152.3, "curve": "stepped"}, {"time": 0.8333, "x": -152.3, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1} ] }, "leg-front-left-IK": { "translate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "x": 8.25, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "x": 42.9, "curve": 0.697, "c4": 0.3}, - {"time": 0.3, "x": -18.24, "y": 8.75}, {"time": 0.4167, "x": -13.29, "y": 27.54, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.5833, "x": -112.56, "curve": 0, "c2": 0.17, "c3": 0.45, "c4": 0.61}, {"time": 0.6667, "x": -55.81, "curve": 0.345, "c2": 0.53, "c3": 0.751}, {"time": 0.75} + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "x": 43.18, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": 42.9, "y": -3.49, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.25, "x": -192.09, "y": 31.17, "curve": "stepped"}, {"time": 0.2667, "x": -277.01, "y": 66.37, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.4833, "x": -274.01, "y": 75.85, "curve": "stepped"}, {"time": 0.5, "x": -170.67, "curve": "stepped"}, {"time": 0.6667, "x": -170.67, "curve": "stepped"}, + {"time": 0.7, "x": -151.12, "curve": "stepped"}, {"time": 0.8333, "x": -151.12, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1} ] }, "@leg-front-left": { "translate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "x": -4.8, "y": 21.17, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "x": -0.53, "y": 0.11, "curve": 0.697, "c4": 0.3}, - {"time": 0.3} + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "x": -2.8, "y": -2.2, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.1667, "x": -0.62, "y": -3.38, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "x": -1, "y": -5.53, "curve": "stepped"}, + {"time": 0.2667, "x": 4, "y": -0.66, "curve": "stepped"}, {"time": 0.4833, "x": 4, "y": -0.66, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.5, "x": 4.53, "y": 2.49, "curve": "stepped"}, {"time": 0.6667, "x": 4.53, "y": 2.49, "curve": "stepped"}, + {"time": 0.7, "x": -1, "y": -5.53, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.8333, "x": -0.91, "y": -4.54, "curve": 0.315, "c4": 0.8}, {"time": 1} ] }, - "@leg-front-right": { + "@leg-back-left": { "translate": [ - {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 4.31, "y": 11.86, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "x": -10.19, "y": -4.67, "curve": 0.697, "c4": 0.3}, - {"time": 0.3, "x": -30.7, "y": 11.75, "curve": "stepped"}, {"time": 0.4167, "x": -30.7, "y": 11.75, "curve": 0, "c2": 0.3, "c3": 0.544}, - {"time": 0.5833, "x": -10.19, "y": -4.67, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.75} + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 0.67, "y": -7.85, "curve": 0.161, "c3": 0.854}, {"time": 0.1667, "x": 0.61, "y": -9.9, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.25, "curve": "stepped"}, {"time": 0.2667, "x": -1.82, "y": 0.09}, {"time": 0.4833, "x": -6.6, "y": 4.03, "curve": "stepped"}, + {"time": 0.5, "x": 10.86, "y": -7.65, "curve": "stepped"}, {"time": 0.6667, "x": 10.86, "y": -7.65, "curve": "stepped"}, {"time": 0.7} ] }, - "@leg-back-left": { + "leg-back-left-IK": { "translate": [ - {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.1333, "x": 0.67, "y": -7.85, "curve": 0.161, "c3": 0.854}, {"time": 0.25, "x": 0.53, "y": -13.09, "curve": 0.25, "c4": 0.3}, - {"time": 0.3, "x": 0.58, "y": -14.14, "curve": "stepped"}, {"time": 0.4167, "x": 0.58, "y": -14.14, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.5833, "x": -0.28, "y": -7.87, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.75} + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 80.9, "curve": 0.161, "c3": 0.854}, {"time": 0.1667, "x": 72.57, "y": -3.2, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.25, "x": -106.8, "y": 17.49, "curve": "stepped"}, {"time": 0.2667, "x": -654.94, "y": 154.36, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.4833, "x": -669.36, "y": 180.24, "curve": "stepped"}, {"time": 0.5, "x": -541.29, "y": -24.41, "curve": "stepped"}, + {"time": 0.6667, "x": -541.29, "y": -24.41, "curve": "stepped"}, {"time": 0.7, "x": -130.76, "curve": "stepped"}, {"time": 0.8333, "x": -130.76, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 1} + ] + }, + "@leg-front-right": { + "translate": [ + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 4.31, "y": 11.86, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.1667, "x": -10.19, "y": -4.67, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "x": -1.86, "y": -9.26, "curve": "stepped"}, + {"time": 0.2667, "x": -5.58, "y": 2.65, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.4833, "x": -3.84, "y": 7.68, "curve": "stepped"}, + {"time": 0.5, "x": -8.1, "y": 29.66, "curve": "stepped"}, {"time": 0.6667, "x": -8.1, "y": 29.66, "curve": "stepped"}, + {"time": 0.7, "x": -1.86, "y": -9.26, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.8333, "x": -2.25, "y": -13.72, "curve": 0.315, "c4": 0.8}, {"time": 1} ] }, "@shadow": { "translate": [ - {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 61.96, "curve": "stepped"}, {"time": 0.25, "x": 61.96, "curve": 0.697, "c4": 0.3}, {"time": 0.3, "x": -50.16}, - {"time": 0.4167, "x": -53.09, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5833, "x": -83.79, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.75} + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 61.96, "curve": "stepped"}, {"time": 0.1667, "x": 61.96, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.25, "x": -143.36, "curve": "stepped"}, {"time": 0.2667, "x": -150.21, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.4833, "x": -152.15, "curve": "stepped"}, + {"time": 0.5, "x": -142.78}, {"time": 0.6667, "x": -144.04, "curve": "stepped"}, {"time": 0.7, "x": -144.72, "curve": "stepped"}, + {"time": 0.8333, "x": -144.72, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1} ], "scale": [ - {"time": 0.0833, "curve": 0, "c2": 0.26, "c3": 0.369, "c4": 0.62}, {"time": 0.25, "x": 1.06, "y": 1.06, "curve": 0.697, "c4": 0.3}, - {"time": 0.3, "x": 0.96, "y": 0.96, "curve": "stepped"}, {"time": 0.4167, "x": 0.96, "y": 0.96, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.5833, "x": 1.08, "y": 1.08, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.75} + {"time": 0.0833, "curve": 0, "c2": 0.26, "c3": 0.369, "c4": 0.62}, {"time": 0.1667, "x": 1.06, "y": 1.06, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "curve": "stepped"}, + {"time": 0.2667, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.4833, "x": 0.9, "y": 0.9, "curve": "stepped"}, {"time": 0.5, "x": 1.06, "y": 1.06}, + {"time": 0.6667, "x": 1.1, "y": 1.1, "curve": "stepped"}, {"time": 0.7, "x": 1.06, "y": 1.06, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.8333, "x": 1.1, "y": 1.1, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1} ] }, "tail": { "rotate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "angle": 15.61, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "angle": 20.44, "curve": 0.697, "c4": 0.3}, - {"time": 0.3, "angle": -9.4}, {"time": 0.4167, "angle": -13.12, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5833, "angle": 15.47, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.75} + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "angle": 15.61, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "angle": 20.44, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.25, "angle": -15.58, "curve": "stepped"}, {"time": 0.2667, "angle": 40.35, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.4833, "angle": 41.35, "curve": "stepped"}, + {"time": 0.5, "angle": -14.65}, {"time": 0.6667, "angle": -15.65, "curve": "stepped"}, {"time": 0.7, "angle": -15.58, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.8333, "angle": 19.38, "curve": 0.313, "c3": 0.699}, {"time": 1} ] - } - }, - "events": [{"time": 0.3, "name": "start-attack"}] + }, + "@pivot-main": {"translate": [{"time": 0.8333, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.9167, "y": 31, "curve": 0.315, "c4": 0.8}, {"time": 1}]} + }, + "events": [{"time": 0.3333, "name": "start-attack"}, {"time": 0.5, "name": "hit"}] }, - "977217026": { + "628713175": { + "slots": { + "eyes": {"attachment": [{"time": 0.05, "name": "eyes-angry"}, {"time": 0.6667, "name": "eyes-shut"}, {"time": 0.75, "name": "eyes"}]}, + "mouth": {"attachment": [{"time": 0.05, "name": "mouth-bite"}, {"time": 0.2667, "name": "mouth-open"}, {"time": 0.55, "name": "mouth-bite"}, {"time": 0.75, "name": "mouth"}]} + }, + "bones": { + "@leg-front-right": { + "translate": [ + {"curve": 0, "c2": 0.4, "c3": 0.383}, {"time": 0.25, "x": -2.2, "y": -15.65, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3167, "x": -1.86, "y": -9.26, "curve": "stepped"}, + {"time": 0.3333, "x": -2.24, "y": 13.67, "curve": "stepped"}, {"time": 0.5333, "x": -2.24, "y": 13.67, "curve": "stepped"}, + {"time": 0.55, "x": -2.12, "y": 6.47, "curve": 0.313, "c3": 0.699}, {"time": 0.6667, "x": -3.13, "y": -23.62, "curve": 0, "c2": 0.3, "c3": 0.54}, {"time": 0.8333} + ] + }, + "tail": { + "rotate": [ + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.25, "angle": 21.98, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3167, "angle": -15.58, "curve": "stepped"}, + {"time": 0.3333, "angle": 6.35}, {"time": 0.5, "angle": 10.35, "curve": "stepped"}, {"time": 0.55, "angle": -11.84, "curve": 0.313, "c3": 0.699}, + {"time": 0.6667, "angle": 16.95, "curve": 0.313, "c3": 0.699}, {"time": 0.8333} + ] + }, + "@pivot-back": { + "rotate": [ + {"curve": 0, "c2": 0.4, "c3": 0.383}, {"time": 0.15, "angle": 4, "curve": "stepped"}, {"time": 0.25, "angle": 4, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.3167, "curve": "stepped"}, {"time": 0.3333}, {"time": 0.5, "angle": -3, "curve": "stepped"}, {"time": 0.55, "curve": 0.313, "c3": 0.699}, + {"time": 0.6667, "angle": 6, "curve": 0.313, "c3": 0.699}, {"time": 0.8333} + ], + "translate": [ + {"curve": 0, "c2": 0.4, "c3": 0.383}, {"time": 0.25, "x": 25, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3167, "x": -135.5, "curve": "stepped"}, {"time": 0.3333, "x": -560.54}, + {"time": 0.5, "x": -577.1, "curve": "stepped"}, {"time": 0.55, "x": -151.24, "curve": 0.313, "c3": 0.699}, {"time": 0.6667, "x": -151.24, "y": 4.06, "curve": 0.313, "c3": 0.699}, + {"time": 0.8333} + ], + "scale": [{"time": 0.3167, "curve": "stepped"}, {"time": 0.3333, "x": -1, "curve": "stepped"}, {"time": 0.5, "x": -1, "curve": "stepped"}, {"time": 0.55}] + }, + "@leg-front-left": { + "translate": [ + {"curve": 0, "c2": 0.4, "c3": 0.383}, {"time": 0.25, "x": -1, "y": -5.53, "curve": "stepped"}, {"time": 0.3167, "x": -1, "y": -5.53, "curve": "stepped"}, + {"time": 0.3333, "x": -1.12, "y": 1.52, "curve": "stepped"}, {"time": 0.55, "x": -1.12, "y": 1.52, "curve": 0.313, "c3": 0.699}, + {"time": 0.6667, "x": -1, "y": -5.53, "curve": 0.313, "c3": 0.699}, {"time": 0.8333} + ] + }, + "@shadow": { + "translate": [ + {"time": 0.25, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3167, "x": -143.36, "curve": "stepped"}, {"time": 0.3333, "x": -143.36}, {"time": 0.5, "x": -157.56, "curve": "stepped"}, + {"time": 0.55, "x": -161.35, "curve": "stepped"}, {"time": 0.6667, "x": -161.35, "curve": 0.313, "c3": 0.699}, {"time": 0.8333} + ], + "scale": [ + {"curve": 0, "c2": 0.4, "c3": 0.383}, {"time": 0.25, "x": 1.08, "y": 1.08, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3167, "curve": "stepped"}, {"time": 0.3333}, + {"time": 0.5, "x": 1.08, "y": 1.08, "curve": "stepped"}, {"time": 0.55, "curve": 0.313, "c3": 0.699}, {"time": 0.6667, "x": 1.08, "y": 1.08, "curve": 0.313, "c3": 0.699}, + {"time": 0.8333} + ] + }, + "leg-front-left-IK": { + "translate": [ + {"time": 0.25, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3167, "x": -192.09, "y": 31.17, "curve": "stepped"}, {"time": 0.3333, "x": -162.19, "curve": "stepped"}, + {"time": 0.5, "x": -162.19, "curve": "stepped"}, {"time": 0.55, "x": -180.48, "curve": "stepped"}, {"time": 0.6667, "x": -180.48, "curve": 0.313, "c3": 0.699}, {"time": 0.8333} + ] + }, + "leg-front-right-IK": { + "translate": [ + {"time": 0.25, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3167, "x": -172.87, "y": 28.32, "curve": "stepped"}, {"time": 0.3333, "x": 301.16, "y": 16.82, "curve": 0.31, "c4": 0.8}, + {"time": 0.5, "x": 285.54, "y": 12.82, "curve": "stepped"}, {"time": 0.55, "x": -180.48, "curve": "stepped"}, {"time": 0.6667, "x": -180.48, "curve": 0.313, "c3": 0.699}, + {"time": 0.8333} + ] + }, + "leg-back-left-IK": { + "translate": [ + {"time": 0.25, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3167, "x": -91.18, "y": 21.9, "curve": "stepped"}, {"time": 0.3333, "x": -595.64, "y": 5, "curve": 0.31, "c4": 0.8}, + {"time": 0.5, "x": -626.51, "y": 11.36, "curve": "stepped"}, {"time": 0.55, "x": -134.74, "curve": "stepped"}, {"time": 0.6667, "x": -134.74, "curve": 0.313, "c3": 0.699}, + {"time": 0.8333} + ] + }, + "@pivot-main": {"translate": [{"time": 0.6667, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.75, "y": 31, "curve": 0.315, "c4": 0.8}, {"time": 0.8333}]}, + "@leg-back-left": {"translate": [{"time": 0.3167, "curve": "stepped"}, {"time": 0.3333, "x": -0.06, "y": 3.33, "curve": "stepped"}, {"time": 0.5, "x": -0.06, "y": 3.33}, {"time": 0.55}]} + }, + "events": [{"time": 0.25, "name": "start-attack"}, {"time": 0.3333, "name": "hit"}] + }, + "1603776742": { "slots": { "eyes": {"attachment": [{"time": 0.0167, "name": "eyes-angry"}, {"time": 0.75, "name": "eyes-shut"}, {"time": 0.8333, "name": "eyes"}]}, - "leg-back-left": {"attachment": [{"time": 0.35, "name": "xmas-leg-back-left-long"}, {"time": 0.5833, "name": "xmas-leg-back-left"}]}, + "leg-back-left": {"attachment": [{"time": 0.35, "name": "leg-back-left-long"}, {"time": 0.5833, "name": "leg-back-left"}]}, "mouth": {"attachment": [{"time": 0.0167, "name": "mouth-bite"}, {"time": 0.2667, "name": "mouth-open"}, {"time": 0.5833, "name": "mouth-bite"}, {"time": 0.8333, "name": "mouth"}]} }, "bones": { @@ -4319,45 +4991,47 @@ }, "leg-back-left-IK": { "translate": [ - {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.1333, "x": 80.9, "curve": 0.161, "c3": 0.854}, {"time": 0.25, "x": 49.4, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.3333, "x": -96.78, "y": 27.51, "curve": "stepped"}, {"time": 0.35, "x": -579.56, "y": 123.51}, {"time": 0.5667, "x": -580.76, "y": 129.52, "curve": "stepped"}, + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.1333, "x": 80.9, "curve": 0.161, "c3": 0.854}, {"time": 0.25, "x": 62.82, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.3333, "x": -99.34, "y": 18.56, "curve": "stepped"}, {"time": 0.35, "x": -653.9, "y": 153.81}, {"time": 0.5667, "x": -653.9, "y": 167.85, "curve": "stepped"}, {"time": 0.5833, "x": -134.74, "curve": "stepped"}, {"time": 0.75, "x": -134.74, "curve": 0.313, "c3": 0.699}, {"time": 0.9167} ] }, "leg-front-right-IK": { "translate": [ - {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 30.89, "y": 11.74, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "x": 42.9, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.3333, "x": -172.87, "y": 28.32, "curve": "stepped"}, {"time": 0.35, "x": 169.94, "curve": "stepped"}, {"time": 0.5667, "x": 169.94, "curve": "stepped"}, - {"time": 0.5833, "x": -180.48, "curve": "stepped"}, {"time": 0.75, "x": -180.48, "curve": 0.313, "c3": 0.699}, {"time": 0.9167} + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 22.35, "curve": 0.306, "c3": 0.695}, {"time": 0.25, "x": 42.9, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.3333, "x": -131.73, "y": 44.58, "curve": "stepped"}, {"time": 0.35, "x": 244.36, "y": -4.92, "curve": 0.31, "c4": 0.8}, + {"time": 0.5667, "x": 247.43, "y": -1.85, "curve": "stepped"}, {"time": 0.5833, "x": -180.48, "curve": "stepped"}, {"time": 0.75, "x": -180.48, "curve": 0.313, "c3": 0.699}, + {"time": 0.9167} ] }, "leg-front-left-IK": { "translate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "x": 8.25, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "x": 42.9, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.3333, "x": -192.09, "y": 31.17, "curve": "stepped"}, {"time": 0.35, "x": -197.17}, {"time": 0.5667, "x": -192.36, "y": 4.81, "curve": "stepped"}, + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "x": 40.76, "y": 5.08, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "x": 49, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.3333, "x": -180.92, "y": 40.32, "curve": "stepped"}, {"time": 0.35, "x": -197.17}, {"time": 0.5667, "x": -230.7, "y": 4.81, "curve": "stepped"}, {"time": 0.5833, "x": -180.48, "curve": "stepped"}, {"time": 0.75, "x": -180.48, "curve": 0.313, "c3": 0.699}, {"time": 0.9167} ] }, "@leg-front-left": { "translate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "x": -4.8, "y": 21.17, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.25, "x": -0.53, "y": 0.11, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "x": -1, "y": -5.53, "curve": "stepped"}, - {"time": 0.35, "x": 2.26, "y": 14.19, "curve": "stepped"}, {"time": 0.5667, "x": 2.26, "y": 14.19, "curve": "stepped"}, - {"time": 0.5833, "x": -1.12, "y": 1.52, "curve": 0.313, "c3": 0.699}, {"time": 0.75, "x": -1, "y": -5.53, "curve": 0.313, "c3": 0.699}, {"time": 0.9167} + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "x": -2.9, "y": -1.1, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.25, "x": -0.62, "y": -3.44, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "x": -1, "y": -5.53, "curve": "stepped"}, {"time": 0.35, "x": 4.4, "y": -4.91}, + {"time": 0.5667, "x": 7.49, "y": -5.17, "curve": "stepped"}, {"time": 0.5833, "x": 18.69, "y": 1.85, "curve": "stepped"}, + {"time": 0.75, "x": 18.69, "y": 1.85, "curve": 0.306, "c3": 0.695}, {"time": 0.9167} ] }, "@leg-front-right": { "translate": [ {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 4.31, "y": 11.86, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.25, "x": -10.19, "y": -4.67, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "x": -1.86, "y": -9.26, "curve": "stepped"}, {"time": 0.35, "x": -3.84, "y": 7.68}, + {"time": 0.25, "x": -10.48, "y": -15.33, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "x": -3.15, "y": 1.33, "curve": "stepped"}, {"time": 0.35, "x": -3.84, "y": 7.68}, {"time": 0.5667, "x": -3.53, "y": 9.04, "curve": "stepped"}, {"time": 0.5833, "x": -2.24, "y": 13.67, "curve": 0.313, "c3": 0.699}, - {"time": 0.75, "x": -1.86, "y": -9.26, "curve": 0.313, "c3": 0.699}, {"time": 0.9167} + {"time": 0.75, "x": -2.69, "y": -18.63, "curve": 0.313, "c3": 0.699}, {"time": 0.9167} ] }, "@leg-back-left": { "translate": [ - {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.1333, "x": 0.67, "y": -7.85, "curve": 0.161, "c3": 0.854}, {"time": 0.25, "x": 0.53, "y": -13.09, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.3333, "curve": "stepped"}, {"time": 0.35, "x": 10.26, "y": 0.56, "curve": "stepped"}, {"time": 0.5667, "x": 10.26, "y": 0.56, "curve": "stepped"}, {"time": 0.5833} + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.1333, "x": 0.67, "y": -7.85, "curve": 0.161, "c3": 0.854}, {"time": 0.25, "x": 0.74, "y": -5.43, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.3333, "x": -0.54, "y": 4.44, "curve": "stepped"}, {"time": 0.35, "x": 10.26, "y": 0.56, "curve": "stepped"}, {"time": 0.5667, "x": 10.26, "y": 0.56, "curve": "stepped"}, + {"time": 0.5833} ] }, "tail": { @@ -4372,1477 +5046,1983 @@ "scale": [{"time": 0.5667, "curve": "stepped"}, {"time": 0.75, "y": 0.98, "curve": 0.154, "c4": 0.9}, {"time": 0.9167}] } }, - "events": [{"time": 0.35, "name": "start-attack"}] + "drawOrder": [{"time": 0.35, "offsets": [{"slot": "leg-back-left", "offset": 3}]}, {"time": 0.5833}], + "events": [{"time": 0.35, "name": "start-attack"}, {"time": 0.5667, "name": "start-attack"}] }, - "2571197086": { + "2758931518": { "slots": { - "eyes": {"attachment": [{"time": 0.1333, "name": "eyes-shut"}, {"time": 0.2, "name": "eyes"}, {"time": 0.4667, "name": "eyes-shut"}]}, - "mouth": { - "attachment": [ - {"time": 0.0833, "name": "mouth-open"}, {"time": 0.1667, "name": "mouth-eat"}, {"time": 0.3333, "name": "mouth"}, {"time": 0.4167, "name": "mouth-open"}, - {"time": 0.5, "name": "mouth-eat"} - ] - } + "eyes": {"attachment": [{"time": 0.0833, "name": "eyes-happy"}, {"time": 1, "name": "eyes"}]}, + "leg-back-left": {"attachment": [{"time": 0.0667, "name": "leg-back-left-long"}, {"time": 0.9, "name": "leg-back-left"}]}, + "mouth": {"attachment": [{"time": 0.0833, "name": "mouth-smile"}, {"time": 1, "name": "mouth"}]} }, "bones": { - "@mouth": { - "translate": [ - {"time": 0.1667, "curve": 0, "c2": 0.1, "c3": 0.479, "c4": 0.56}, {"time": 0.3333, "x": -0.56, "y": 3.4, "curve": 0.408, "c2": 0.51, "c3": 0.853}, - {"time": 0.5, "x": 0.04, "y": 0.05, "curve": 0, "c2": 0.27, "c3": 0.314, "c4": 0.8}, {"time": 0.6, "x": 3.03, "y": 2.83, "curve": 0.168, "c2": 0.32, "c3": 0.551, "c4": 0.7}, - {"time": 0.7, "x": -0.51, "y": 3.39, "curve": 0.291, "c2": 0.39, "c3": 0.63, "c4": 0.75}, {"time": 0.8, "x": -3.56, "y": 0.39, "curve": 0.329, "c2": 0.61, "c3": 0.674, "c4": 0.99}, - {"time": 0.9, "x": 0.05, "y": -0.01, "curve": 0, "c2": 0.27, "c3": 0.31, "c4": 0.8}, {"time": 1.0167, "x": 3.05, "y": 2.75, "curve": 0.154, "c2": 0.33, "c3": 0.544, "c4": 0.7}, - {"time": 1.1167, "x": -0.5, "y": 3.35, "curve": 0.298, "c2": 0.38, "c3": 0.643, "c4": 0.74}, {"time": 1.2167, "x": -3.56, "y": 0.37, "curve": 0.326, "c2": 0.61, "c3": 0.671, "c4": 0.99}, - {"time": 1.3333} - ] - }, "@pivot-back": { "rotate": [ - {"curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.0667, "angle": -0.59, "curve": 0.075, "c4": 0.95}, {"time": 0.1333, "angle": 1.15, "curve": 0, "c2": 0.1, "c3": 0.85}, - {"time": 0.2167, "curve": "stepped"}, {"time": 0.3333, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.4, "angle": -0.59, "curve": 0.075, "c4": 0.95}, - {"time": 0.4667, "angle": 1.15, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.5833} + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "angle": -18, "curve": 0.317, "c3": 0.693}, {"time": 0.3333, "angle": -17, "curve": 0.317, "c3": 0.693}, + {"time": 0.5, "angle": -18, "curve": 0.317, "c3": 0.693}, {"time": 0.6667, "angle": -17, "curve": 0.317, "c3": 0.693}, {"time": 0.8333, "angle": -18, "curve": 0.317, "c3": 0.693}, + {"time": 1.0833} ], "translate": [ - {"y": 0.06, "curve": 0.387, "c3": 0.314}, {"time": 0.1333, "x": -13.8, "y": 0.06, "curve": 0.387, "c3": 0.314}, {"time": 0.2167, "x": 0.02, "y": 0.06, "curve": "stepped"}, - {"time": 0.3333, "x": 0.02, "y": 0.06, "curve": 0.387, "c3": 0.314}, {"time": 0.4667, "x": -13.8, "y": 0.06, "curve": 0.387, "c3": 0.314}, {"time": 0.5833, "x": 0.02, "y": 0.06} - ] - }, - "@leg-front-right": { - "rotate": [ - {"curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.0667, "angle": 10.98, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.2167, "angle": -8.78, "curve": 0.161, "c3": 0.854}, - {"time": 0.3333, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.4, "angle": 10.98, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.55, "angle": -8.78, "curve": 0.161, "c3": 0.854}, - {"time": 0.6667, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.8333, "angle": -9.85, "curve": 0.161, "c3": 0.854}, {"time": 0.9833, "angle": -6.21}, - {"time": 1.15, "angle": 2.69, "curve": 0.075, "c4": 0.95}, {"time": 1.3333} + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": 33.94, "y": -52, "curve": "stepped"}, {"time": 0.8333, "x": 33.94, "y": -52, "curve": 0.317, "c3": 0.693}, {"time": 1.0833} ] }, "@leg-front-left": { - "rotate": [ - {"curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.0667, "angle": 10.98, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.2167, "angle": -8.78, "curve": 0.161, "c3": 0.854}, - {"time": 0.3333, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.4, "angle": 10.98, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.55, "angle": -8.78, "curve": 0.161, "c3": 0.854}, - {"time": 0.6667, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.8333, "angle": -9.84, "curve": 0.161, "c3": 0.854}, {"time": 0.9833, "angle": -6.21}, - {"time": 1.15, "angle": 2.69, "curve": 0.075, "c4": 0.95}, {"time": 1.3333} + "translate": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": -27.99, "y": 1.7, "curve": 0.25, "c3": 0.75}, {"time": 0.3333, "x": -26.93, "y": -1.56, "curve": 0.25, "c3": 0.75}, + {"time": 0.5, "x": -27.99, "y": 1.7, "curve": 0.25, "c3": 0.75}, {"time": 0.6667, "x": -26.93, "y": -1.56, "curve": 0.25, "c3": 0.75}, + {"time": 0.8333, "x": -27.99, "y": 1.7, "curve": 0.317, "c3": 0.693}, {"time": 1.0833} ] }, - "@leg-back-left": { - "rotate": [ - {"curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.0667, "angle": 10.98, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.2167, "angle": -8.78, "curve": 0.161, "c3": 0.854}, - {"time": 0.3333, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.4, "angle": 10.98, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.55, "angle": -8.78, "curve": 0.161, "c3": 0.854}, - {"time": 0.6667, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.8333, "angle": 5.93, "curve": 0.161, "c3": 0.854}, {"time": 0.9833}, - {"time": 1.15, "angle": -4.97, "curve": 0.075, "c4": 0.95}, {"time": 1.3333} + "@leg-front-right": { + "translate": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": -84.32, "y": 39.72, "curve": 0.317, "c3": 0.693}, {"time": 0.3333, "x": -82.71, "y": 34.75, "curve": 0.317, "c3": 0.693}, + {"time": 0.5, "x": -84.32, "y": 39.72, "curve": 0.317, "c3": 0.693}, {"time": 0.6667, "x": -82.71, "y": 34.75, "curve": 0.317, "c3": 0.693}, + {"time": 0.8333, "x": -84.32, "y": 39.72, "curve": 0.317, "c3": 0.693}, {"time": 1.0833} ] }, - "@pivot-main": {"translate": [{"curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.0667, "y": 7.88, "curve": 0.078, "c4": 0.94}, {"time": 0.1333}]}, - "@pivot-center": {"translate": [{"curve": 0.387, "c3": 0.314}, {"time": 0.6667, "y": 14.05, "curve": 0.387, "c3": 0.314}, {"time": 1.3333}]}, - "@shadow": { + "leg-front-right-IK": { + "translate": [{"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": 40.32, "curve": "stepped"}, {"time": 0.8333, "x": 40.32, "curve": 0.317, "c3": 0.693}, {"time": 1.0833}] + }, + "leg-front-left-IK": { + "translate": [{"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": 26.51, "curve": "stepped"}, {"time": 0.8333, "x": 26.51, "curve": 0.317, "c3": 0.693}, {"time": 1.0833}] + }, + "leg-back-left-IK": { "translate": [ - {"curve": 0.387, "c3": 0.314}, {"time": 0.1333, "x": -23.3, "curve": 0.387, "c3": 0.314}, {"time": 0.2167, "x": -9.6, "curve": "stepped"}, - {"time": 0.3333, "x": -9.6, "curve": 0.387, "c3": 0.314}, {"time": 0.4667, "x": -23.3, "curve": 0.387, "c3": 0.314}, {"time": 0.5833} - ], - "scale": [{"curve": 0.387, "c3": 0.314}, {"time": 0.6667, "x": 0.95, "y": 0.95, "curve": 0.387, "c3": 0.314}, {"time": 1.3333}] + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": -30.93, "y": 88.63, "curve": 0.617, "c4": 0.6}, {"time": 0.2667, "x": -62.81, "y": 72.23, "curve": 0, "c2": 0.4, "c3": 0.383}, + {"time": 0.35, "x": -28.19, "y": 96.83, "curve": 0.617, "c4": 0.6}, {"time": 0.45, "x": -62.81, "y": 72.23, "curve": 0, "c2": 0.4, "c3": 0.383}, + {"time": 0.55, "x": -28.19, "y": 96.83, "curve": 0.617, "c4": 0.6}, {"time": 0.6333, "x": -62.81, "y": 72.23, "curve": 0, "c2": 0.4, "c3": 0.383}, + {"time": 0.7333, "x": -28.19, "y": 96.83, "curve": 0.434, "c3": 0.739, "c4": 0.4}, {"time": 0.8333, "x": -56.92, "y": 76.7, "curve": 0.223, "c2": 0.33, "c3": 0.336}, {"time": 1.0833} + ] }, "tail": { "rotate": [ - {"curve": 0, "c2": 0.12, "c3": 0.348, "c4": 0.47}, {"time": 0.1, "angle": -6.85, "curve": 0.229, "c2": 0.25, "c3": 0.569, "c4": 0.6}, - {"time": 0.2, "angle": 1.43, "curve": 0.188, "c2": 0.31, "c3": 0.695}, {"time": 0.3333, "angle": 3.02, "curve": 0, "c2": 0.12, "c3": 0.347, "c4": 0.48}, - {"time": 0.4333, "angle": -6.85, "curve": 0.229, "c2": 0.25, "c3": 0.569, "c4": 0.6}, {"time": 0.5333, "angle": 1.2, "curve": 0.155, "c3": 0.85}, - {"time": 0.75, "angle": -5.95, "curve": 0.161, "c3": 0.854}, {"time": 0.95, "angle": -0.94}, {"time": 1.15, "angle": 4.91, "curve": 0.234, "c4": 0.9}, {"time": 1.3333} + {"curve": 0, "c2": 0.3, "c3": 0.546}, {"time": 0.1667, "angle": 25.35, "curve": 0.317, "c3": 0.693}, {"time": 0.3333, "angle": 33.35, "curve": 0.317, "c3": 0.693}, + {"time": 0.5, "angle": 25.35, "curve": 0.317, "c3": 0.693}, {"time": 0.6667, "angle": 33.35, "curve": 0.317, "c3": 0.693}, + {"time": 0.9167, "angle": 25.35, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 1.0833} + ] + }, + "@shadow": { + "translate": [{"curve": 0, "c2": 0.3, "c3": 0.546}, {"time": 0.1667, "x": 32.73, "curve": "stepped"}, {"time": 0.8333, "x": 32.73, "curve": 0.317, "c3": 0.693}, {"time": 1.0833}], + "scale": [ + {"time": 0.1667, "curve": 0.317, "c3": 0.693}, {"time": 0.25, "x": 1.02, "y": 1.02, "curve": 0.317, "c3": 0.693}, {"time": 0.3333, "curve": 0.317, "c3": 0.693}, + {"time": 0.4167, "x": 1.02, "y": 1.02, "curve": 0.317, "c3": 0.693}, {"time": 0.5, "curve": 0.317, "c3": 0.693}, {"time": 0.5833, "x": 1.02, "y": 1.02, "curve": 0.317, "c3": 0.693}, + {"time": 0.6667, "curve": 0.317, "c3": 0.693}, {"time": 0.8333, "x": 1.02, "y": 1.02, "curve": 0.317, "c3": 0.693}, {"time": 1.0833} ] } - } + }, + "drawOrder": [{"time": 0.0667, "offsets": [{"slot": "leg-back-left", "offset": 3}]}, {"time": 0.9}] }, - "2993060391": { - "slots": {"eyes": {"attachment": [{"time": 0.05, "name": "eyes-shut"}, {"time": 0.7667, "name": "eyes"}]}}, + "997902532": { + "slots": { + "eyes": {"attachment": [{"time": 0.0167, "name": "eyes-angry"}, {"time": 0.75, "name": "eyes-shut"}, {"time": 0.8333, "name": "eyes"}]}, + "leg-back-left": {"attachment": [{"time": 0.35, "name": "leg-back-left-long"}, {"time": 0.5833, "name": "leg-back-left"}]}, + "mouth": {"attachment": [{"time": 0.0167, "name": "mouth-bite"}, {"time": 0.2667, "name": "mouth-open"}, {"time": 0.5833, "name": "mouth-bite"}, {"time": 0.8333, "name": "mouth"}]} + }, "bones": { "@pivot-back": { "rotate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "angle": -5.76, "curve": 0.306, "c3": 0.695}, {"time": 0.6667, "angle": -6.67, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.8333, "angle": 2.85, "curve": 0.306, "c3": 0.695}, {"time": 1} + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "angle": -3.92, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "angle": 2.51, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.3333, "angle": -6, "curve": "stepped"}, {"time": 0.35, "angle": -16}, {"time": 0.5667, "angle": -16.5, "curve": "stepped"}, {"time": 0.5833, "curve": 0.313, "c3": 0.699}, + {"time": 0.75, "angle": 6, "curve": 0.313, "c3": 0.699}, {"time": 0.9167} ], "translate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": -11.96, "y": -12.91, "curve": 0.306, "c3": 0.695}, - {"time": 0.6667, "x": -17.52, "y": -16.38, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.8333} + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "x": 71.93, "y": -12.95, "curve": "stepped"}, {"time": 0.25, "x": 71.93, "y": -12.95, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.3333, "x": -135.5, "curve": "stepped"}, {"time": 0.35, "x": -560.54, "y": 85.29}, {"time": 0.5667, "x": -562.89, "y": 81.57, "curve": "stepped"}, + {"time": 0.5833, "x": -151.24, "curve": 0.313, "c3": 0.699}, {"time": 0.75, "x": -151.24, "y": 4.06, "curve": 0.313, "c3": 0.699}, {"time": 0.9167} + ], + "scale": [{"time": 0.3333, "curve": "stepped"}, {"time": 0.35, "x": -1, "curve": "stepped"}, {"time": 0.5667, "x": -1, "curve": "stepped"}, {"time": 0.5833}] + }, + "@shadow": { + "translate": [ + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 61.96, "curve": "stepped"}, {"time": 0.25, "x": 61.96, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.3333, "x": -143.36, "curve": "stepped"}, {"time": 0.35, "x": -143.36}, {"time": 0.5667, "x": -157.56, "curve": "stepped"}, {"time": 0.5833, "x": -161.35, "curve": "stepped"}, + {"time": 0.75, "x": -161.35, "curve": 0.313, "c3": 0.699}, {"time": 0.9167} + ], + "scale": [ + {"time": 0.0833, "curve": 0, "c2": 0.26, "c3": 0.369, "c4": 0.62}, {"time": 0.25, "x": 1.06, "y": 1.06, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "curve": "stepped"}, + {"time": 0.35}, {"time": 0.5667, "x": 1.08, "y": 1.08, "curve": "stepped"}, {"time": 0.5833, "curve": 0.313, "c3": 0.699}, + {"time": 0.75, "x": 1.08, "y": 1.08, "curve": 0.313, "c3": 0.699}, {"time": 0.9167} + ] + }, + "leg-back-left-IK": { + "translate": [ + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.1333, "x": 80.9, "curve": 0.161, "c3": 0.854}, {"time": 0.25, "x": 62.82, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.3333, "x": -99.34, "y": 18.56, "curve": "stepped"}, {"time": 0.35, "x": -653.9, "y": 153.81}, {"time": 0.5667, "x": -653.9, "y": 167.85, "curve": "stepped"}, + {"time": 0.5833, "x": -134.74, "curve": "stepped"}, {"time": 0.75, "x": -134.74, "curve": 0.313, "c3": 0.699}, {"time": 0.9167} + ] + }, + "leg-front-right-IK": { + "translate": [ + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 22.35, "curve": 0.306, "c3": 0.695}, {"time": 0.25, "x": 42.9, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.3333, "x": -131.73, "y": 44.58, "curve": "stepped"}, {"time": 0.35, "x": 244.36, "y": -4.92, "curve": 0.31, "c4": 0.8}, + {"time": 0.5667, "x": 247.43, "y": -1.85, "curve": "stepped"}, {"time": 0.5833, "x": -180.48, "curve": "stepped"}, {"time": 0.75, "x": -180.48, "curve": 0.313, "c3": 0.699}, + {"time": 0.9167} + ] + }, + "leg-front-left-IK": { + "translate": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "x": 40.76, "y": 5.08, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "x": 49, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.3333, "x": -180.92, "y": 40.32, "curve": "stepped"}, {"time": 0.35, "x": -197.17}, {"time": 0.5667, "x": -230.7, "y": 4.81, "curve": "stepped"}, + {"time": 0.5833, "x": -180.48, "curve": "stepped"}, {"time": 0.75, "x": -180.48, "curve": 0.313, "c3": 0.699}, {"time": 0.9167} ] }, "@leg-front-left": { "translate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": -10.29, "y": 8.94, "curve": 0.306, "c3": 0.695}, {"time": 0.6667, "x": -14.48, "y": 9.14, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.8333, "x": -16.19, "y": -6.62, "curve": 0.306, "c3": 0.695}, {"time": 1} + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "x": -2.9, "y": -1.1, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.25, "x": -0.62, "y": -3.44, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "x": -1, "y": -5.53, "curve": "stepped"}, {"time": 0.35, "x": 4.4, "y": -4.91}, + {"time": 0.5667, "x": 7.49, "y": -5.17, "curve": "stepped"}, {"time": 0.5833, "x": 18.69, "y": 1.85, "curve": "stepped"}, + {"time": 0.75, "x": 18.69, "y": 1.85, "curve": 0.306, "c3": 0.695}, {"time": 0.9167} ] }, "@leg-front-right": { "translate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": -23.33, "y": 21.58, "curve": 0.306, "c3": 0.695}, - {"time": 0.6667, "x": -23.53, "y": 23.07, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.8333, "x": -12.56, "y": -12.55, "curve": 0.306, "c3": 0.695}, {"time": 1} + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 4.31, "y": 11.86, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.25, "x": -10.48, "y": -15.33, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "x": -3.15, "y": 1.33, "curve": "stepped"}, {"time": 0.35, "x": -3.84, "y": 7.68}, + {"time": 0.5667, "x": -3.53, "y": 9.04, "curve": "stepped"}, {"time": 0.5833, "x": -2.24, "y": 13.67, "curve": 0.313, "c3": 0.699}, + {"time": 0.75, "x": -2.69, "y": -18.63, "curve": 0.313, "c3": 0.699}, {"time": 0.9167} ] }, "@leg-back-left": { "translate": [ - {"time": 0.1667, "curve": 0.306, "c3": 0.695}, {"time": 0.6667, "x": -4.62, "y": -2.21, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.8333, "x": -0.1, "y": -3.16, "curve": 0.306, "c3": 0.695}, {"time": 1} + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.1333, "x": 0.67, "y": -7.85, "curve": 0.161, "c3": 0.854}, {"time": 0.25, "x": 0.74, "y": -5.43, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.3333, "x": -0.54, "y": 4.44, "curve": "stepped"}, {"time": 0.35, "x": 10.26, "y": 0.56, "curve": "stepped"}, {"time": 0.5667, "x": 10.26, "y": 0.56, "curve": "stepped"}, + {"time": 0.5833} ] }, "tail": { "rotate": [ - {"curve": 0, "c2": 0.3, "c3": 0.54}, {"time": 0.1667, "angle": -11.59, "curve": 0.306, "c3": 0.695}, {"time": 0.4167, "angle": 2.75, "curve": 0.306, "c3": 0.695}, - {"time": 0.6667, "angle": -13.32, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.8333, "angle": 15.71, "curve": 0.306, "c3": 0.695}, {"time": 1} + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "angle": 15.61, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "angle": 20.44, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.3333, "angle": -15.58, "curve": "stepped"}, {"time": 0.35, "angle": 30.35}, {"time": 0.5667, "angle": 35.35, "curve": "stepped"}, + {"time": 0.5833, "angle": -11.84, "curve": 0.313, "c3": 0.699}, {"time": 0.75, "angle": 16.95, "curve": 0.313, "c3": 0.699}, {"time": 0.9167} ] }, - "@shadow": { - "scale": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": 0.96, "y": 0.96}, {"time": 0.6667, "x": 0.94, "y": 0.94, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.8333, "x": 1.06, "y": 1.06, "curve": 0.306, "c3": 0.695}, {"time": 1} - ] + "@pivot-main": { + "translate": [{"time": 0.75, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.8333, "y": 31, "curve": 0.315, "c4": 0.8}, {"time": 0.9167}], + "scale": [{"time": 0.5667, "curve": "stepped"}, {"time": 0.75, "y": 0.98, "curve": 0.154, "c4": 0.9}, {"time": 0.9167}] } }, - "events": [{"time": 0.1667, "name": "hit-buff"}] + "drawOrder": [{"time": 0.35, "offsets": [{"slot": "leg-back-left", "offset": 1}]}, {"time": 0.5833}], + "events": [{"time": 0.35, "name": "start-attack"}, {"time": 0.5667, "name": "start-attack"}] }, - "2919546916": { + "1085666627": { "slots": { - "eyes": {"attachment": [{"time": 0.05, "name": "eyes-shut"}, {"time": 0.7667, "name": "eyes"}]}, - "mouth": {"attachment": [{"time": 0.05, "name": "mouth-bite"}, {"time": 0.7667, "name": "mouth"}]} + "eyes": {"attachment": [{"time": 0.0833, "name": "eyes-happy"}, {"time": 1, "name": "eyes"}]}, + "leg-back-left": {"attachment": [{"time": 0.0667, "name": "leg-back-left-long"}, {"time": 0.9, "name": "leg-back-left"}]}, + "mouth": {"attachment": [{"time": 0.0833, "name": "mouth-smile"}, {"time": 1, "name": "mouth"}]} }, "bones": { "@pivot-back": { "rotate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "angle": 3.5}, {"time": 0.6667, "angle": 4, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.8333, "angle": -1.98, "curve": 0.306, "c3": 0.695}, {"time": 1} + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "angle": -18, "curve": 0.317, "c3": 0.693}, {"time": 0.3333, "angle": -17, "curve": 0.317, "c3": 0.693}, + {"time": 0.5, "angle": -18, "curve": 0.317, "c3": 0.693}, {"time": 0.6667, "angle": -17, "curve": 0.317, "c3": 0.693}, {"time": 0.8333, "angle": -18, "curve": 0.317, "c3": 0.693}, + {"time": 1.0833} ], "translate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "y": 2.9}, {"time": 0.6667, "y": 3.91, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.8333, "y": -2.14, "curve": 0.306, "c3": 0.695}, {"time": 1} + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": 33.94, "y": -52, "curve": "stepped"}, {"time": 0.8333, "x": 33.94, "y": -52, "curve": 0.317, "c3": 0.693}, {"time": 1.0833} + ] + }, + "@leg-front-left": { + "translate": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": -27.99, "y": 1.7, "curve": 0.25, "c3": 0.75}, {"time": 0.3333, "x": -26.93, "y": -1.56, "curve": 0.25, "c3": 0.75}, + {"time": 0.5, "x": -27.99, "y": 1.7, "curve": 0.25, "c3": 0.75}, {"time": 0.6667, "x": -26.93, "y": -1.56, "curve": 0.25, "c3": 0.75}, + {"time": 0.8333, "x": -27.99, "y": 1.7, "curve": 0.317, "c3": 0.693}, {"time": 1.0833} ] }, "@leg-front-right": { "translate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": -0.75, "y": -16.02}, {"time": 0.6667, "x": -1.01, "y": -19.02, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.8333, "x": -0.43, "y": 9.97, "curve": 0.306, "c3": 0.695}, {"time": 1} + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": -84.32, "y": 39.72, "curve": 0.317, "c3": 0.693}, {"time": 0.3333, "x": -82.71, "y": 34.75, "curve": 0.317, "c3": 0.693}, + {"time": 0.5, "x": -84.32, "y": 39.72, "curve": 0.317, "c3": 0.693}, {"time": 0.6667, "x": -82.71, "y": 34.75, "curve": 0.317, "c3": 0.693}, + {"time": 0.8333, "x": -84.32, "y": 39.72, "curve": 0.317, "c3": 0.693}, {"time": 1.0833} ] }, - "@leg-front-left": { + "leg-front-right-IK": { + "translate": [{"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": 40.32, "curve": "stepped"}, {"time": 0.8333, "x": 40.32, "curve": 0.317, "c3": 0.693}, {"time": 1.0833}] + }, + "leg-front-left-IK": { + "translate": [{"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": 26.51, "curve": "stepped"}, {"time": 0.8333, "x": 26.51, "curve": 0.317, "c3": 0.693}, {"time": 1.0833}] + }, + "leg-back-left-IK": { "translate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": -0.41, "y": -8.76}, {"time": 0.6667, "x": -0.5, "y": -9.35, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.8333, "x": -0.23, "y": 5.14, "curve": 0.306, "c3": 0.695}, {"time": 1} + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": -30.93, "y": 88.63, "curve": 0.617, "c4": 0.6}, {"time": 0.2667, "x": -62.81, "y": 72.23, "curve": 0, "c2": 0.4, "c3": 0.383}, + {"time": 0.35, "x": -28.19, "y": 96.83, "curve": 0.617, "c4": 0.6}, {"time": 0.45, "x": -62.81, "y": 72.23, "curve": 0, "c2": 0.4, "c3": 0.383}, + {"time": 0.55, "x": -28.19, "y": 96.83, "curve": 0.617, "c4": 0.6}, {"time": 0.6333, "x": -62.81, "y": 72.23, "curve": 0, "c2": 0.4, "c3": 0.383}, + {"time": 0.7333, "x": -28.19, "y": 96.83, "curve": 0.434, "c3": 0.739, "c4": 0.4}, {"time": 0.8333, "x": -56.92, "y": 76.7, "curve": 0.223, "c2": 0.33, "c3": 0.336}, {"time": 1.0833} ] }, "tail": { "rotate": [ - {"curve": 0, "c2": 0.3, "c3": 0.54}, {"time": 0.1667, "angle": -17.97, "curve": 0.306, "c3": 0.695}, {"time": 0.4167, "angle": -9.96, "curve": 0.306, "c3": 0.695}, - {"time": 0.6667, "angle": -19.79, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.8333, "angle": 6.14, "curve": 0.306, "c3": 0.695}, {"time": 1} + {"curve": 0, "c2": 0.3, "c3": 0.546}, {"time": 0.1667, "angle": 25.35, "curve": 0.317, "c3": 0.693}, {"time": 0.3333, "angle": 33.35, "curve": 0.317, "c3": 0.693}, + {"time": 0.5, "angle": 25.35, "curve": 0.317, "c3": 0.693}, {"time": 0.6667, "angle": 33.35, "curve": 0.317, "c3": 0.693}, + {"time": 0.9167, "angle": 25.35, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 1.0833} + ] + }, + "@shadow": { + "translate": [{"curve": 0, "c2": 0.3, "c3": 0.546}, {"time": 0.1667, "x": 32.73, "curve": "stepped"}, {"time": 0.8333, "x": 32.73, "curve": 0.317, "c3": 0.693}, {"time": 1.0833}], + "scale": [ + {"time": 0.1667, "curve": 0.317, "c3": 0.693}, {"time": 0.25, "x": 1.02, "y": 1.02, "curve": 0.317, "c3": 0.693}, {"time": 0.3333, "curve": 0.317, "c3": 0.693}, + {"time": 0.4167, "x": 1.02, "y": 1.02, "curve": 0.317, "c3": 0.693}, {"time": 0.5, "curve": 0.317, "c3": 0.693}, {"time": 0.5833, "x": 1.02, "y": 1.02, "curve": 0.317, "c3": 0.693}, + {"time": 0.6667, "curve": 0.317, "c3": 0.693}, {"time": 0.8333, "x": 1.02, "y": 1.02, "curve": 0.317, "c3": 0.693}, {"time": 1.0833} ] } }, - "events": [{"time": 0.1667, "name": "hit-buff"}] + "drawOrder": [{"time": 0.0667, "offsets": [{"slot": "leg-back-left", "offset": 1}]}, {"time": 0.9}] }, - "2695183231": { + "1147301273": { "slots": { - "eyes": {"attachment": [{"time": 0.0167, "name": "eyes-shut"}, {"time": 0.1833, "name": "eyes-angry"}, {"time": 0.4, "name": "eyes"}]}, - "mouth": {"attachment": [{"time": 0.0167, "name": "mouth-bite"}, {"time": 0.4, "name": "mouth"}]} + "eyes": {"attachment": [{"name": "eyes-shut"}, {"time": 0.2, "name": "eyes"}]}, "mouth": {"attachment": [{"time": 0.0333, "name": "mouth-open"}, {"time": 0.2167, "name": "mouth"}]} }, "bones": { "@pivot-back": { - "rotate": [ - {"curve": "stepped"}, {"time": 0.0167, "angle": -20}, {"time": 0.1667, "angle": -22, "curve": 0.464, "c4": 0.7}, {"time": 0.3167, "angle": 5.2, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.4167} - ], - "translate": [{"curve": "stepped"}, {"time": 0.0167, "x": 75, "y": -4.42}, {"time": 0.1667, "x": 80, "y": -7.47, "curve": 0.464, "c4": 0.7}, {"time": 0.3167}] + "rotate": [{"angle": -8.23, "curve": "stepped"}, {"time": 0.1667, "angle": -8.23}, {"time": 0.3333, "angle": 5.43}, {"time": 0.5}], + "translate": [{"y": -0.04}, {"time": 0.1667, "x": 17.97, "y": 94.25}, {"time": 0.3333, "y": -0.04}] }, - "@leg-front-left": {"translate": [{"time": 0.1667, "curve": 0.62, "c4": 0.3}, {"time": 0.3167, "x": -1.1, "y": -14.87, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.4167}]}, - "@shadow": { + "@leg-back-left": {"rotate": [{"angle": 14.26, "curve": "stepped"}, {"time": 0.2167, "angle": 14.26}, {"time": 0.3333, "angle": -11.75}]}, + "@leg-front-left": {"rotate": [{"angle": 14.58, "curve": "stepped"}, {"time": 0.2167, "angle": 14.58}, {"time": 0.3333, "angle": 20.14}]}, + "@leg-front-right": {"rotate": [{"angle": 12.31, "curve": "stepped"}, {"time": 0.2167, "angle": 12.31}, {"time": 0.3333, "angle": -30.3}]}, + "tail": {"rotate": [{}, {"time": 0.1667, "angle": -18.5}, {"time": 0.3333, "angle": 4.16}, {"time": 0.5}]}, + "@shadow": {"scale": [{"x": 1.3, "y": 1.3}, {"time": 0.1667, "x": 0.9, "y": 0.9}, {"time": 0.3333}]} + } + }, + "280689314": { + "slots": {"eyes": {"attachment": [{"name": "eyes-shut"}]}}, + "bones": { + "@pivot-back": { "translate": [ - {"curve": "stepped"}, {"time": 0.0167, "x": 70.3, "curve": "stepped"}, {"time": 0.1667, "x": 70.3, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.3167, "x": 12.49, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.4167} + {"y": 0.06}, {"time": 0.2167, "y": -17.94}, {"time": 0.45, "y": 0.06}, {"time": 0.6667, "y": -17.94}, {"time": 0.9, "y": 0.06}, {"time": 1.1167, "y": -17.94}, {"time": 1.3333, "y": 0.06} ], - "scale": [ - {"curve": "stepped"}, {"time": 0.0167, "x": 0.98, "y": 0.98}, {"time": 0.1667, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.3167, "x": 1.08, "y": 1.08, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.4167} - ] - }, - "leg-back-left-IK": { - "translate": [ - {"curve": "stepped"}, {"time": 0.0167, "x": 20.18, "y": 0.9, "curve": "stepped"}, {"time": 0.1667, "x": 20.18, "y": 0.9, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333} - ] + "scale": [{}, {"time": 0.2167, "y": 0.98}, {"time": 0.45}, {"time": 0.6667, "y": 0.98}, {"time": 0.9}, {"time": 1.1167, "y": 0.98}, {"time": 1.3333}] }, - "@leg-back-left": { - "translate": [ - {"curve": "stepped"}, {"time": 0.0167, "x": -2.63, "y": 8.92, "curve": "stepped"}, {"time": 0.1667, "x": -2.63, "y": 8.92, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3167} + "@leg-front-left": { + "rotate": [ + {}, {"time": 0.1167, "angle": -12.07}, {"time": 0.2167, "angle": -2.63}, {"time": 0.3333, "angle": 7.79}, {"time": 0.45}, {"time": 0.55, "angle": -12.07}, + {"time": 0.6667, "angle": -2.63}, {"time": 0.7667, "angle": 7.79}, {"time": 0.8833}, {"time": 1, "angle": -12.07}, {"time": 1.1, "angle": -2.63}, {"time": 1.2167, "angle": 7.79}, + {"time": 1.3333} ] }, - "@pivot-main": {"translate": [{"curve": "stepped"}, {"time": 0.0167, "x": 20, "curve": "stepped"}, {"time": 0.3167, "x": 20, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.4167}]}, - "@leg-front-right": {"translate": [{"time": 0.1667, "curve": 0.62, "c4": 0.3}, {"time": 0.3167, "x": -2.11, "y": -28.46, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.4167}]}, - "tail": { + "@leg-front-right": { "rotate": [ - {"curve": "stepped"}, {"time": 0.0167, "angle": 19}, {"time": 0.1667, "angle": 23.91, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.3167, "angle": -21.75, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.4167} + {}, {"time": 0.1167, "angle": -12.07}, {"time": 0.2167, "angle": -2.63}, {"time": 0.3333, "angle": 7.79}, {"time": 0.45}, {"time": 0.55, "angle": -12.07}, + {"time": 0.6667, "angle": -2.63}, {"time": 0.7667, "angle": 7.79}, {"time": 0.8833}, {"time": 1, "angle": -12.07}, {"time": 1.1, "angle": -2.63}, {"time": 1.2167, "angle": 7.79}, + {"time": 1.3333} ] }, - "leg-front-right-IK": { - "translate": [ - {"curve": "stepped"}, {"time": 0.0167, "x": 16.22, "y": 104.1}, {"time": 0.0833, "x": -5.7, "y": 124.11}, {"time": 0.1667, "x": 28.08, "y": 105.42, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.3167} + "@leg-back-left": { + "rotate": [ + {}, {"time": 0.1167, "angle": 8.89}, {"time": 0.2167, "angle": 0.78}, {"time": 0.3333, "angle": -7.35}, {"time": 0.45}, {"time": 0.55, "angle": 8.89}, {"time": 0.6667, "angle": 0.78}, + {"time": 0.7667, "angle": -7.35}, {"time": 0.8833}, {"time": 1, "angle": 8.89}, {"time": 1.1, "angle": 0.78}, {"time": 1.2167, "angle": -7.35}, {"time": 1.3333} ] }, - "leg-front-left-IK": { - "translate": [ - {"curve": "stepped"}, {"time": 0.0167, "x": -29.76, "y": 76.11}, {"time": 0.0833, "x": 3.25, "y": 55.34}, {"time": 0.1667, "x": -35.9, "y": 81.82, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.3167} - ] + "tail": {"rotate": [{}, {"time": 0.3333, "angle": -10.75}, {"time": 0.7333, "angle": 3.03}, {"time": 1.05, "angle": 5.39}, {"time": 1.3333}]}, + "@shadow": { + "scale": [{}, {"time": 0.2167, "x": 1.1, "y": 1.1}, {"time": 0.45}, {"time": 0.6667, "x": 1.1, "y": 1.1}, {"time": 0.9}, {"time": 1.1167, "x": 1.1, "y": 1.1}, {"time": 1.3333}] } } }, - "721863963": { + "2066226114": { "slots": { - "eyes": {"attachment": [{"time": 0.0167, "name": "eyes-shut"}, {"time": 0.1833, "name": "eyes-angry"}, {"time": 0.4, "name": "eyes"}]}, - "mouth": {"attachment": [{"time": 0.0167, "name": "mouth-bite"}, {"time": 0.4, "name": "mouth"}]} + "eyes": {"attachment": [{"time": 0.05, "name": "eyes-angry"}, {"time": 0.8833, "name": "eyes"}]}, + "mouth": {"attachment": [{"time": 0.05, "name": "mouth-bite"}, {"time": 0.4667, "name": "mouth-open"}, {"time": 0.75, "name": "mouth-bite"}, {"time": 0.8833, "name": "mouth"}]} }, "bones": { - "tail": { - "rotate": [ - {"curve": "stepped"}, {"time": 0.0167, "angle": 35.35}, {"time": 0.1667, "angle": 50.35, "curve": 0.315, "c4": 0.8}, {"time": 0.3167, "angle": -21.75, "curve": 0, "c2": 0.1, "c3": 0.85}, - {"time": 0.4167} - ] + "@pivot-back": { + "rotate": [{}, {"time": 0.1667, "angle": 4}, {"time": 0.3333, "angle": -8.88}, {"time": 0.6667, "angle": 8.17}, {"time": 0.8833, "angle": 5}, {"time": 1}], + "translate": [{}, {"time": 0.1667, "x": 33.65, "y": -5}, {"time": 0.3333, "x": -62.54, "y": 309.16}, {"time": 0.6667, "x": 12.32, "y": 268.04}, {"time": 0.8833}] }, - "leg-front-right-IK": { - "translate": [{"curve": "stepped"}, {"time": 0.0167, "x": 16.22, "y": 104.1}, {"time": 0.1667, "x": 71.03, "y": 278.02, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3167}] + "@leg-front-left": { + "translate": [{}, {"time": 0.1667, "x": -0.29, "y": -5.47}, {"time": 0.3333, "curve": "stepped"}, {"time": 0.6667}, {"time": 0.8833, "x": -0.95, "y": -14.45}, {"time": 1}] + }, + "@leg-front-right": { + "translate": [{}, {"time": 0.1667, "x": -1.07, "y": -20.09}, {"time": 0.3333, "curve": "stepped"}, {"time": 0.6667}, {"time": 0.8833, "x": -1.66, "y": -25.29}, {"time": 1}] }, + "@shadow": { + "translate": [{}, {"time": 0.1667, "x": 24.43}, {"time": 0.3333, "x": -70.38}, {"time": 0.6667, "x": 5.15}, {"time": 0.8833, "x": -8.95}, {"time": 1}], + "scale": [{}, {"time": 0.1667, "x": 1.08, "y": 1.08}, {"time": 0.3333, "x": 0.85, "y": 0.85}, {"time": 0.6667, "x": 0.9, "y": 0.9}, {"time": 0.8833, "x": 1.1, "y": 1.1}, {"time": 1}] + }, + "tail": {"rotate": [{}, {"time": 0.1667, "angle": 17.93}, {"time": 0.3333, "angle": -15.3}, {"time": 0.6667, "angle": 24.81}, {"time": 0.8833, "angle": -15.84}, {"time": 1}]} + }, + "events": [{"time": 0.4667, "name": "start-attack"}] + }, + "1602569476": { + "slots": { + "eyes": {"attachment": [{"time": 0.0833, "name": "eyes-angry"}, {"time": 0.6667, "name": "eyes-shut"}, {"time": 0.75, "name": "eyes"}]}, + "mouth": {"attachment": [{"time": 0.0833, "name": "mouth-bite"}, {"time": 0.35, "name": "mouth-open"}, {"time": 0.55, "name": "mouth-bite"}, {"time": 0.75, "name": "mouth"}]} + }, + "bones": { "@pivot-back": { "rotate": [ - {"curve": "stepped"}, {"time": 0.0167, "angle": -45}, {"time": 0.1667, "angle": -50, "curve": 0.464, "c4": 0.7}, {"time": 0.3167, "angle": 5.2, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.4167} + {}, {"time": 0.1667, "angle": 4}, {"time": 0.3333, "angle": -23.77, "curve": "stepped"}, {"time": 0.35, "angle": -29.82}, {"time": 0.5833, "angle": 3}, {"time": 0.7167, "angle": 4}, + {"time": 0.8167, "angle": -5.09}, {"time": 0.9167} ], - "translate": [{"curve": "stepped"}, {"time": 0.0167, "x": 94.99, "y": -21}, {"time": 0.1667, "x": 107, "y": -60, "curve": 0.464, "c4": 0.7}, {"time": 0.3167}] + "translate": [ + {}, {"time": 0.1667, "x": 33.65, "y": -5}, {"time": 0.3333, "x": 80.56, "y": 137.85, "curve": "stepped"}, {"time": 0.35, "x": 147.57, "y": 42.83}, + {"time": 0.5, "x": 206.93, "y": -26.82}, {"time": 0.5833, "x": 226.09}, {"time": 0.7167, "x": 237.58, "y": 2}, {"time": 0.9167} + ] }, - "@shadow": { + "@pivot-main": {"translate": [{"time": 0.5833}, {"time": 0.7167, "x": 15}, {"time": 0.8167, "x": 7.5, "y": 59.4}, {"time": 0.9167}]}, + "leg-front-left-IK": { "translate": [ - {"curve": "stepped"}, {"time": 0.0167, "x": 70.3, "curve": "stepped"}, {"time": 0.1667, "x": 70.3, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.3167, "x": 12.49, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.4167} - ], - "scale": [ - {"curve": "stepped"}, {"time": 0.0167, "x": 0.98, "y": 0.98}, {"time": 0.1667, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.3167, "x": 1.08, "y": 1.08, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.4167} + {"time": 0.1667}, {"time": 0.3333, "x": 27.04, "y": 216.41, "curve": "stepped"}, {"time": 0.35, "x": 51.7, "y": 178.19}, {"time": 0.5833, "x": 202.93}, + {"time": 0.7, "x": 218.86, "y": 2.61}, {"time": 0.7667, "x": 145.27}, {"time": 0.9167} ] }, - "leg-back-left-IK": { + "leg-front-right-IK": { "translate": [ - {"curve": "stepped"}, {"time": 0.0167, "x": 20.18, "y": 0.9, "curve": "stepped"}, {"time": 0.1667, "x": 20.18, "y": 0.9, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333} + {"time": 0.1667}, {"time": 0.3333, "x": 54.35, "y": 310.88, "curve": "stepped"}, {"time": 0.35, "x": 67.2, "y": 319.96}, {"time": 0.5833, "x": 199.77}, {"time": 0.7, "x": 187.66}, + {"time": 0.7667, "x": 143.69}, {"time": 0.9167} ] }, - "@leg-back-left": { + "leg-back-left-IK": { "translate": [ - {"curve": "stepped"}, {"time": 0.0167, "x": -2.63, "y": 8.92, "curve": "stepped"}, {"time": 0.1667, "x": -2.63, "y": 8.92, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3167} + {"time": 0.1667}, {"time": 0.3333, "x": 50.37, "y": 150.84, "curve": "stepped"}, {"time": 0.35, "x": 34.64, "y": 81.96}, {"time": 0.5, "x": 185.62, "y": 1.08}, + {"time": 0.7167, "x": 244.18}, {"time": 0.8167, "x": 108.59, "y": 18.82}, {"time": 0.9167} ] }, - "@pivot-main": {"translate": [{"curve": "stepped"}, {"time": 0.0167, "x": 20, "curve": "stepped"}, {"time": 0.3167, "x": 20, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.4167}]}, - "leg-front-left-IK": { - "translate": [{"curve": "stepped"}, {"time": 0.0167, "x": -29.76, "y": 76.11}, {"time": 0.1667, "x": 6.72, "y": 156.82, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3167}] + "@leg-front-right": { + "translate": [{}, {"time": 0.1667, "x": -1.03, "y": -19.32}, {"time": 0.3333, "curve": "stepped"}, {"time": 0.5833}, {"time": 0.7167, "x": 9.38, "y": 7.22}, {"time": 0.9167}] }, - "@leg-front-left": {"translate": [{"time": 0.1667, "curve": 0.62, "c4": 0.3}, {"time": 0.3167, "x": -1.1, "y": -14.87, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.4167}]}, - "@leg-front-right": {"translate": [{"time": 0.1667, "curve": 0.62, "c4": 0.3}, {"time": 0.3167, "x": -2.11, "y": -28.46, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.4167}]} - } + "@leg-front-left": { + "translate": [{}, {"time": 0.1667, "x": -0.29, "y": -5.47}, {"time": 0.3333, "curve": "stepped"}, {"time": 0.5833}, {"time": 0.7167, "x": 6.3, "y": -2.41}, {"time": 0.9167}] + }, + "tail": { + "rotate": [ + {}, {"time": 0.1667, "angle": 19.35}, {"time": 0.3333, "angle": -0.88, "curve": "stepped"}, {"time": 0.35, "angle": -13.56}, {"time": 0.5, "angle": 0.52}, + {"time": 0.7167, "angle": 19.32}, {"time": 0.8, "angle": -9.3}, {"time": 0.9167} + ] + }, + "@shadow": { + "translate": [ + {}, {"time": 0.1667, "x": 24.43}, {"time": 0.3333, "x": 86.58, "curve": "stepped"}, {"time": 0.35, "x": 154.34}, {"time": 0.5, "x": 208.2}, {"time": 0.5833, "x": 216.55}, + {"time": 0.7167, "x": 243.36}, {"time": 0.9167} + ], + "scale": [ + {}, {"time": 0.1667, "x": 1.08, "y": 1.08}, {"time": 0.3333, "x": 0.92, "y": 0.92, "curve": "stepped"}, {"time": 0.35, "x": 0.9, "y": 0.9}, {"time": 0.5, "x": 1.02, "y": 1.02}, + {"time": 0.5833, "x": 1.08, "y": 1.08}, {"time": 0.7167, "x": 1.1, "y": 1.1}, {"time": 0.9167} + ] + } + }, + "events": [{"time": 0.35, "name": "start-attack"}] }, - "2501809037": { + "1656607229": { "slots": { - "eyes": {"attachment": [{"time": 0.0167, "name": "eyes-shut"}, {"time": 0.6, "name": "eyes-angry"}, {"time": 0.8333, "name": "eyes-shut"}, {"time": 0.9167, "name": "eyes"}]}, - "mouth": {"attachment": [{"time": 0.0167, "name": "mouth-bite"}, {"time": 0.9167, "name": "mouth"}]} + "eyes": {"attachment": [{"time": 0.0167, "name": "eyes-angry"}, {"time": 0.5, "name": "eyes-shut"}, {"time": 0.6667, "name": "eyes"}]}, + "mouth": {"attachment": [{"time": 0.0167, "name": "mouth-bite"}, {"time": 0.3, "name": "mouth-open"}, {"time": 0.5, "name": "mouth"}]} }, "bones": { "@pivot-back": { "rotate": [ - {"curve": "stepped"}, {"time": 0.0167, "angle": -45}, {"time": 0.1, "angle": -85, "curve": "stepped"}, {"time": 0.6667, "angle": -85, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.8333, "angle": 6, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1} + {}, {"time": 0.0833, "angle": -3.92}, {"time": 0.25, "angle": 2.51}, {"time": 0.3, "angle": -2}, {"time": 0.4167, "angle": -3}, {"time": 0.5833, "angle": 3}, + {"time": 0.6667, "angle": -2.47}, {"time": 0.75} ], "translate": [ - {"curve": "stepped"}, {"time": 0.0167, "x": 94.99, "y": -21}, {"time": 0.05, "x": 256.42, "y": -60}, {"time": 0.1, "x": 408.25, "y": -188, "curve": "stepped"}, - {"time": 0.6667, "x": 408.25, "y": -188, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.8333, "y": 12.75, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1} + {}, {"time": 0.0833, "x": 71.93, "y": -12.95, "curve": "stepped"}, {"time": 0.25, "x": 71.93, "y": -12.95}, {"time": 0.3, "x": -65}, {"time": 0.4167, "x": -67}, + {"time": 0.5833, "x": -74.25, "y": -5.2}, {"time": 0.75} ] }, - "@shadow": { + "leg-back-left-IK": { "translate": [ - {"curve": "stepped"}, {"time": 0.0167, "x": 144.17}, {"time": 0.1, "x": 589.27, "curve": 0.313, "c3": 0.699}, {"time": 0.25, "x": 627.48, "curve": 0.313, "c3": 0.699}, - {"time": 0.4167, "x": 576.87, "curve": 0.313, "c3": 0.699}, {"time": 0.55, "x": 602.83, "curve": 0.313, "c3": 0.699}, {"time": 0.6667, "x": 576.87, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.8333} - ], - "scale": [ - {"curve": "stepped"}, {"time": 0.0167, "x": 0.92, "y": 0.92}, {"time": 0.1, "curve": 0, "c2": 0.22, "c3": 0.373, "c4": 0.57}, {"time": 0.25, "x": 1.04, "y": 1.04, "curve": "stepped"}, - {"time": 0.6667, "x": 1.04, "y": 1.04, "curve": 0.206, "c2": 0.38, "c3": 0.736}, {"time": 0.8333, "x": 1.1, "y": 1.1, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1} + {}, {"time": 0.1333, "x": 80.9}, {"time": 0.25, "x": 72.25}, {"time": 0.3, "x": -24.7, "y": 18.44, "curve": "stepped"}, {"time": 0.4167, "x": -24.7, "y": 18.44}, + {"time": 0.5833, "x": -90.91}, {"time": 0.75} ] }, - "@leg-back-left": {"translate": [{"curve": "stepped"}, {"time": 0.0167, "x": 6.4, "y": 0.19}, {"time": 0.1667}]}, "leg-front-right-IK": { "translate": [ - {"curve": "stepped"}, {"time": 0.0167, "x": 58.1, "y": 326.43}, {"time": 0.05, "x": 435.63, "y": 548.48}, {"time": 0.1, "x": 913.38, "y": 395.89, "curve": 0.313, "c3": 0.699}, - {"time": 0.25, "x": 1012.56, "y": 347.92, "curve": 0.313, "c3": 0.699}, {"time": 0.4167, "x": 846.21, "y": 399.13, "curve": 0.313, "c3": 0.699}, - {"time": 0.5833, "x": 946.83, "y": 385.44}, {"time": 0.6667, "x": 936.57, "y": 385.44}, {"time": 0.7, "x": 419.93, "y": 448.74}, {"time": 0.75, "x": 67.2, "y": 277.12}, - {"time": 0.7833, "x": -19.68, "y": 128.46}, {"time": 0.8333} + {}, {"time": 0.0833, "x": 30.89, "y": 11.74}, {"time": 0.25, "x": 42.9}, {"time": 0.3, "x": 11.08, "y": 2.13, "curve": "stepped"}, {"time": 0.4167, "x": 11.08, "y": 2.13}, + {"time": 0.5833, "x": -87.1}, {"time": 0.6667, "x": -39.4}, {"time": 0.75} ] }, - "tail": { - "rotate": [ - {"curve": "stepped"}, {"time": 0.0167, "angle": 35.35}, {"time": 0.1, "angle": -18.03, "curve": 0.313, "c3": 0.699}, {"time": 0.25, "angle": 12.69, "curve": 0.313, "c3": 0.699}, - {"time": 0.4167, "angle": -15.12, "curve": 0.313, "c3": 0.699}, {"time": 0.6667, "angle": 1.29, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.8333, "angle": 19.35, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1} + "leg-front-left-IK": { + "translate": [ + {}, {"time": 0.0833, "x": 52.52, "y": 6.57}, {"time": 0.25, "x": 44.73, "y": 1.83}, {"time": 0.3, "x": -28.02, "y": 20.97}, {"time": 0.4167, "x": -31.01, "y": 31.21}, + {"time": 0.5833, "x": -82.62}, {"time": 0.6667, "x": -55.81}, {"time": 0.75} ] }, - "leg-back-left-IK": { + "@leg-front-left": { "translate": [ - {"curve": "stepped"}, {"time": 0.0167, "x": 20.18, "y": 33.84}, {"time": 0.05, "x": -53.54, "y": 197.14}, {"time": 0.1, "x": 220.06, "y": 374.42, "curve": 0.313, "c3": 0.699}, - {"time": 0.25, "x": 335.68, "y": 391.64, "curve": 0.313, "c3": 0.699}, {"time": 0.4167, "x": 170.05, "y": 340.55, "curve": 0.313, "c3": 0.699}, - {"time": 0.5833, "x": 291.92, "y": 373.82}, {"time": 0.6667, "x": 229.33, "y": 365.61}, {"time": 0.7, "x": -104.68, "y": 157.02}, {"time": 0.75, "x": -148.93, "y": -14.62}, - {"time": 0.7833, "x": -109.09, "y": -31.79}, {"time": 0.8333} + {}, {"time": 0.0833, "x": -2.59, "y": -4.65}, {"time": 0.25, "x": -0.61, "y": -2.94}, {"time": 0.3, "x": 0.47, "y": -9.15, "curve": "stepped"}, {"time": 0.4167, "x": 0.47, "y": -9.15}, + {"time": 0.5833} ] }, - "leg-front-left-IK": { + "@leg-front-right": { "translate": [ - {"curve": "stepped"}, {"time": 0.0167, "x": -5.09, "y": 195.15}, {"time": 0.05, "x": 166.41, "y": 396.25}, {"time": 0.1, "x": 586.24, "y": 418.86, "curve": 0.313, "c3": 0.699}, - {"time": 0.25, "x": 572.1, "y": 418.86, "curve": 0.313, "c3": 0.699}, {"time": 0.4167, "x": 579.62, "y": 409.31, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.6667, "x": 558.15, "y": 409.31}, {"time": 0.7, "x": 139.45, "y": 332.03}, {"time": 0.75, "x": -52.17, "y": 116.05}, {"time": 0.7833, "x": -60.89, "y": 33.46}, {"time": 0.8333} + {}, {"time": 0.0833, "x": 4.31, "y": 11.86}, {"time": 0.25, "x": -10.4, "y": -12.15}, {"time": 0.3, "x": -48.45, "y": 18.12, "curve": "stepped"}, + {"time": 0.4167, "x": -48.45, "y": 18.12}, {"time": 0.5833, "x": -10.7, "y": -18.88}, {"time": 0.75} ] }, - "@pivot-center": { - "rotate": [ - {"time": 0.0167, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.1, "angle": -95, "curve": 0.313, "c3": 0.699}, {"time": 0.25, "angle": -105, "curve": 0.313, "c3": 0.699}, - {"time": 0.4167, "angle": -90, "curve": 0.313, "c3": 0.699}, {"time": 0.55, "angle": -100, "curve": 0.313, "c3": 0.699}, - {"time": 0.6667, "angle": -90, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.8333} - ], + "@leg-back-left": { "translate": [ - {"time": 0.1, "curve": 0.313, "c3": 0.699}, {"time": 0.25, "x": 1.68, "y": 38.2, "curve": 0.313, "c3": 0.699}, {"time": 0.4167, "x": -2.73, "y": -12.21, "curve": 0.313, "c3": 0.699}, - {"time": 0.55, "x": -0.47, "y": 13.65, "curve": 0.313, "c3": 0.699}, {"time": 0.6667, "x": -2.73, "y": -12.21, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.8333} + {}, {"time": 0.1333, "x": 0.67, "y": -7.85}, {"time": 0.25, "x": 0.53, "y": -13.09}, {"time": 0.3, "x": -0.22, "y": 1.34, "curve": "stepped"}, {"time": 0.4167, "x": -0.22, "y": 1.34}, + {"time": 0.5833, "x": -0.28, "y": -7.87}, {"time": 0.75} ] }, - "@pivot-main": { - "translate": [{"time": 0.6667, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.75, "y": 50, "curve": 0.315, "c4": 0.8}, {"time": 0.8333}], + "@shadow": { + "translate": [ + {}, {"time": 0.0833, "x": 61.96, "curve": "stepped"}, {"time": 0.25, "x": 61.96}, {"time": 0.3, "x": -50.16}, {"time": 0.4167, "x": -53.09}, {"time": 0.5833, "x": -83.79}, {"time": 0.75} + ], "scale": [ - {"time": 0.1, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "y": 0.93, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "curve": "stepped"}, - {"time": 0.5667, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.65, "y": 0.9, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.7333, "curve": "stepped"}, - {"time": 0.8333, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.9167, "y": 0.98, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1} + {"time": 0.0833}, {"time": 0.25, "x": 1.06, "y": 1.06}, {"time": 0.3, "x": 0.96, "y": 0.96, "curve": "stepped"}, {"time": 0.4167, "x": 0.96, "y": 0.96}, + {"time": 0.5833, "x": 1.08, "y": 1.08}, {"time": 0.75} + ] + }, + "tail": { + "rotate": [ + {}, {"time": 0.0833, "angle": 15.61}, {"time": 0.25, "angle": 20.44}, {"time": 0.3, "angle": -9.4}, {"time": 0.4167, "angle": -13.12}, {"time": 0.5833, "angle": 15.47}, {"time": 0.75} ] } - } + }, + "events": [{"time": 0.3, "name": "start-attack"}] }, - "3309952905": { + "755443278": { "slots": { - "eyes": {"attachment": [{"time": 0.0167, "name": "eyes-shut"}, {"time": 0.3, "name": "eyes-angry"}, {"time": 0.4833, "name": "eyes"}]}, - "mouth": {"attachment": [{"time": 0.0167, "name": "mouth-bite"}, {"time": 0.4833, "name": "mouth"}]} + "eyes": {"attachment": [{"time": 0.05, "name": "eyes-angry"}, {"time": 1.2333, "name": "eyes"}]}, + "mouth": {"attachment": [{"time": 0.05, "name": "mouth-bite"}, {"time": 0.4667, "name": "mouth-open"}, {"time": 1.0833, "name": "mouth-bite"}, {"time": 1.2333, "name": "mouth"}]} }, "bones": { "@pivot-back": { - "rotate": [ - {"curve": "stepped"}, {"time": 0.0167, "angle": 8}, {"time": 0.2333, "angle": 10, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "angle": -5, "curve": 0.315, "c4": 0.8}, - {"time": 0.4833, "angle": 5, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5833} - ], + "rotate": [{}, {"time": 0.1667, "angle": 4}, {"time": 0.4167, "angle": -8.88}, {"time": 1, "angle": 8.17}, {"time": 1.2333, "angle": 5}, {"time": 1.3333}], + "translate": [{}, {"time": 0.1667, "x": 33.65, "y": -5}, {"time": 0.4167, "x": -62.54, "y": 309.16}, {"time": 1, "x": 12.32, "y": 268.04}, {"time": 1.2333}] + }, + "@shadow": { + "translate": [{}, {"time": 0.1667, "x": 24.43}, {"time": 0.4167, "x": -70.38}, {"time": 1, "x": 5.15}, {"time": 1.2333, "x": -8.95}, {"time": 1.3333}], + "scale": [{}, {"time": 0.1667, "x": 1.08, "y": 1.08}, {"time": 0.4167, "x": 0.85, "y": 0.85}, {"time": 1, "x": 0.9, "y": 0.9}, {"time": 1.2333, "x": 1.1, "y": 1.1}, {"time": 1.3333}] + }, + "@leg-front-left": { + "translate": [{}, {"time": 0.1667, "x": -0.29, "y": -5.47}, {"time": 0.4167, "curve": "stepped"}, {"time": 1}, {"time": 1.2333, "x": -0.95, "y": -14.45}, {"time": 1.3333}] + }, + "@leg-front-right": { + "translate": [{}, {"time": 0.1667, "x": -0.29, "y": -5.47}, {"time": 0.4167, "curve": "stepped"}, {"time": 1}, {"time": 1.2333, "x": -1.66, "y": -25.29}, {"time": 1.3333}] + }, + "tail": {"rotate": [{}, {"time": 0.1667, "angle": 17.93}, {"time": 0.4167, "angle": -15.3}, {"time": 1, "angle": 24.81}, {"time": 1.2333, "angle": -15.84}, {"time": 1.3333}]} + }, + "events": [{"time": 0.4667, "name": "start-attack"}, {"time": 0.7, "name": "start-attack"}, {"time": 0.9333, "name": "start-attack"}] + }, + "194250333": { + "slots": { + "eyes": {"attachment": [{"time": 0.0167, "name": "eyes-angry"}, {"time": 0.75, "name": "eyes-shut"}, {"time": 0.8333, "name": "eyes"}]}, + "leg-back-left": {"attachment": [{"time": 0.35, "name": "leg-back-left-long"}, {"time": 0.5833, "name": "leg-back-left"}]}, + "mouth": {"attachment": [{"time": 0.0167, "name": "mouth-bite"}, {"time": 0.2667, "name": "mouth-open"}, {"time": 0.5833, "name": "mouth-bite"}, {"time": 0.8333, "name": "mouth"}]} + }, + "bones": { + "@leg-back-left": { "translate": [ - {"curve": "stepped"}, {"time": 0.0167, "x": 29.16, "y": 6.28}, {"time": 0.2667, "x": 18.48, "y": 18.85, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.3833, "x": -1.17, "y": 18.85, "curve": 0.315, "c4": 0.8}, {"time": 0.4833} + {}, {"time": 0.1333, "x": 0.67, "y": -7.85}, {"time": 0.25, "x": 0.74, "y": -5.43}, {"time": 0.3333, "x": -0.54, "y": 4.44, "curve": "stepped"}, + {"time": 0.35, "x": 10.26, "y": 0.56, "curve": "stepped"}, {"time": 0.5667, "x": 10.26, "y": 0.56, "curve": "stepped"}, {"time": 0.5833} ] }, - "leg-front-right-IK": { + "@pivot-back": { + "rotate": [ + {}, {"time": 0.0833, "angle": -3.92}, {"time": 0.25, "angle": 2.51}, {"time": 0.3333, "angle": -6, "curve": "stepped"}, {"time": 0.35, "angle": -16}, + {"time": 0.5667, "angle": -16.5, "curve": "stepped"}, {"time": 0.5833}, {"time": 0.75, "angle": 6}, {"time": 0.9167} + ], "translate": [ - {"time": 0.2333, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "x": 28.04, "y": 49.32, "curve": "stepped"}, - {"time": 0.3833, "x": 28.04, "y": 49.32, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.45} - ] + {}, {"time": 0.0833, "x": 71.93, "y": -12.95, "curve": "stepped"}, {"time": 0.25, "x": 71.93, "y": -12.95}, {"time": 0.3333, "x": -135.5, "curve": "stepped"}, + {"time": 0.35, "x": -560.54, "y": 85.29}, {"time": 0.5667, "x": -562.89, "y": 81.57, "curve": "stepped"}, {"time": 0.5833, "x": -151.24}, {"time": 0.75, "x": -151.24, "y": 4.06}, + {"time": 0.9167} + ], + "scale": [{"time": 0.3333, "curve": "stepped"}, {"time": 0.35, "x": -1, "curve": "stepped"}, {"time": 0.5667, "x": -1, "curve": "stepped"}, {"time": 0.5833}] }, "@shadow": { "translate": [ - {"curve": "stepped"}, {"time": 0.0167, "x": 33.22}, {"time": 0.2667, "x": 61.08, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3833, "x": 9.02, "curve": 0.315, "c4": 0.8}, - {"time": 0.4833} + {}, {"time": 0.0833, "x": 61.96, "curve": "stepped"}, {"time": 0.25, "x": 61.96}, {"time": 0.3333, "x": -143.36, "curve": "stepped"}, {"time": 0.35, "x": -143.36}, + {"time": 0.5667, "x": -157.56, "curve": "stepped"}, {"time": 0.5833, "x": -161.35, "curve": "stepped"}, {"time": 0.75, "x": -161.35}, {"time": 0.9167} ], "scale": [ - {"curve": "stepped"}, {"time": 0.0167, "x": 1.1, "y": 1.1, "curve": "stepped"}, {"time": 0.2667, "x": 1.1, "y": 1.1, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.3833, "x": 0.98, "y": 0.98, "curve": 0.315, "c4": 0.8}, {"time": 0.4833, "x": 1.1, "y": 1.1, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5833} + {"time": 0.0833}, {"time": 0.25, "x": 1.06, "y": 1.06}, {"time": 0.3333, "curve": "stepped"}, {"time": 0.35}, {"time": 0.5667, "x": 1.08, "y": 1.08, "curve": "stepped"}, + {"time": 0.5833}, {"time": 0.75, "x": 1.08, "y": 1.08}, {"time": 0.9167} ] }, "leg-back-left-IK": { "translate": [ - {"curve": "stepped"}, {"time": 0.0167, "x": 50.74, "y": 0.9, "curve": "stepped"}, {"time": 0.2, "x": 50.74, "y": 0.9, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.25, "x": 12.5, "y": 6.45, "curve": 0, "c2": 0.8, "c3": 0.15}, {"time": 0.3667, "x": 5.47, "y": 26.12, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.4833} + {}, {"time": 0.1333, "x": 80.9}, {"time": 0.25, "x": 62.82}, {"time": 0.3333, "x": -99.34, "y": 18.56, "curve": "stepped"}, {"time": 0.35, "x": -653.9, "y": 153.81}, + {"time": 0.5667, "x": -653.9, "y": 167.85, "curve": "stepped"}, {"time": 0.5833, "x": -134.74, "curve": "stepped"}, {"time": 0.75, "x": -134.74}, {"time": 0.9167} ] }, - "@leg-back-left": { - "translate": [{"curve": "stepped"}, {"time": 0.0167, "x": 18.54, "y": 10.88}, {"time": 0.1667, "x": 18.74, "y": 14.65, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.4833}] + "leg-front-right-IK": { + "translate": [ + {}, {"time": 0.0833, "x": 22.35}, {"time": 0.25, "x": 42.9}, {"time": 0.3333, "x": -131.73, "y": 44.58, "curve": "stepped"}, {"time": 0.35, "x": 244.36, "y": -4.92}, + {"time": 0.5667, "x": 247.43, "y": -1.85, "curve": "stepped"}, {"time": 0.5833, "x": -180.48, "curve": "stepped"}, {"time": 0.75, "x": -180.48}, {"time": 0.9167} + ] + }, + "leg-front-left-IK": { + "translate": [ + {}, {"time": 0.0833, "x": 40.76, "y": 5.08}, {"time": 0.25, "x": 49}, {"time": 0.3333, "x": -180.92, "y": 40.32, "curve": "stepped"}, {"time": 0.35, "x": -197.17}, + {"time": 0.5667, "x": -230.7, "y": 4.81, "curve": "stepped"}, {"time": 0.5833, "x": -180.48, "curve": "stepped"}, {"time": 0.75, "x": -180.48}, {"time": 0.9167} + ] }, "@leg-front-left": { "translate": [ - {"curve": "stepped"}, {"time": 0.0167, "x": 0.77, "y": 3.87}, {"time": 0.3667, "x": 1.05, "y": 9.15, "curve": 0.617, "c4": 0.6}, - {"time": 0.4833, "x": -1.09, "y": -14.69, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5833} + {}, {"time": 0.0833, "x": -2.9, "y": -1.1}, {"time": 0.25, "x": -0.62, "y": -3.44}, {"time": 0.3333, "x": -1, "y": -5.53, "curve": "stepped"}, {"time": 0.35, "x": 4.4, "y": -4.91}, + {"time": 0.5667, "x": 7.49, "y": -5.17, "curve": "stepped"}, {"time": 0.5833, "x": 18.69, "y": 1.85, "curve": "stepped"}, {"time": 0.75, "x": 18.69, "y": 1.85}, {"time": 0.9167} ] }, "@leg-front-right": { - "translate": [{"time": 0.0167}, {"time": 0.45, "x": 0.18, "y": 4.24, "curve": "stepped"}, {"time": 0.4833, "x": -2.34, "y": -28.14, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5833}] - }, - "@pivot-main": { "translate": [ - {"curve": "stepped"}, {"time": 0.0167, "x": 33.18}, {"time": 0.2667, "x": 61.52, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3833, "x": 20.27, "y": 27.91, "curve": 0.315, "c4": 0.8}, - {"time": 0.4833} + {}, {"time": 0.0833, "x": 4.31, "y": 11.86}, {"time": 0.25, "x": -10.48, "y": -15.33}, {"time": 0.3333, "x": -3.15, "y": 1.33, "curve": "stepped"}, {"time": 0.35, "x": -3.84, "y": 7.68}, + {"time": 0.5667, "x": -3.53, "y": 9.04, "curve": "stepped"}, {"time": 0.5833, "x": -2.24, "y": 13.67}, {"time": 0.75, "x": -2.69, "y": -18.63}, {"time": 0.9167} ] }, "tail": { "rotate": [ - {"curve": "stepped"}, {"time": 0.0167, "angle": -18.65}, {"time": 0.2333, "angle": -21.65, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.3333, "angle": -13.3, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.45, "angle": 12.04, "curve": 0.154, "c4": 0.9}, - {"time": 0.5167, "angle": -9.14, "curve": 0.161, "c3": 0.854}, {"time": 0.5833} + {}, {"time": 0.0833, "angle": 15.61}, {"time": 0.25, "angle": 20.44}, {"time": 0.3333, "angle": -15.58, "curve": "stepped"}, {"time": 0.35, "angle": 30.35}, + {"time": 0.5667, "angle": 35.35, "curve": "stepped"}, {"time": 0.5833, "angle": -11.84}, {"time": 0.75, "angle": 16.95}, {"time": 0.9167} ] }, - "leg-front-left-IK": { - "translate": [ - {"time": 0.2333, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "x": 12.33, "y": 29.93, "curve": "stepped"}, - {"time": 0.3833, "x": 12.33, "y": 29.93, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.45} - ] - } - } + "@pivot-main": {"translate": [{"time": 0.75}, {"time": 0.8333, "y": 31}, {"time": 0.9167}], "scale": [{"time": 0.5667, "curve": "stepped"}, {"time": 0.75, "y": 0.98}, {"time": 0.9167}]} + }, + "drawOrder": [{"time": 0.35, "offsets": [{"slot": "leg-back-left", "offset": 1}]}, {"time": 0.5833}], + "events": [{"time": 0.35, "name": "start-attack"}, {"time": 0.5667, "name": "start-attack"}] }, - "228539860": { + "2608588942": { "slots": { - "eyes": {"attachment": [{"time": 0.0167, "name": "eyes-angry"}, {"time": 0.25, "name": "eyes-shut"}, {"time": 0.3, "name": "eyes-angry"}, {"time": 0.4333, "name": "eyes"}]}, - "mouth": {"attachment": [{"time": 0.0167, "name": "mouth-bite"}, {"time": 0.3, "name": "mouth-open"}, {"time": 0.4333, "name": "mouth"}]} + "eyes": {"attachment": [{"time": 0.1333, "name": "eyes-shut"}, {"time": 0.2, "name": "eyes"}, {"time": 0.4667, "name": "eyes-shut"}, {"time": 0.5833, "name": "eyes"}]}, + "mouth": { + "attachment": [ + {"time": 0.0833, "name": "mouth-open"}, {"time": 0.1667, "name": "mouth-bite"}, {"time": 0.3333, "name": "mouth"}, {"time": 0.4167, "name": "mouth-open"}, + {"time": 0.5, "name": "mouth-bite"}, {"time": 0.5833, "name": "mouth"} + ] + } }, "bones": { + "@mouth": {"translate": [{"time": 0.1667}, {"time": 0.3333, "x": -0.56, "y": 3.4}, {"time": 0.5, "x": 0.04, "y": 0.05}]}, "@pivot-back": { "rotate": [ - {"curve": "stepped"}, {"time": 0.0167, "angle": 7.5}, {"time": 0.2333, "angle": 10, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "angle": -5, "curve": 0.315, "c4": 0.8}, - {"time": 0.4833, "angle": 5, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5833} + {}, {"time": 0.0667, "angle": -0.59}, {"time": 0.1333, "angle": 1.15}, {"time": 0.2167, "curve": "stepped"}, {"time": 0.3333}, {"time": 0.4, "angle": -0.59}, + {"time": 0.4667, "angle": 1.15}, {"time": 0.5833} ], "translate": [ - {"curve": "stepped"}, {"time": 0.0167, "x": 29.16, "y": 18.85, "curve": "stepped"}, {"time": 0.2667, "x": 29.16, "y": 18.85, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.3833, "x": -1.17, "y": 18.85, "curve": 0.315, "c4": 0.8}, {"time": 0.4833} - ] - }, - "leg-back-left-IK": { - "translate": [ - {"curve": "stepped"}, {"time": 0.0167, "x": 50.74, "y": 0.9, "curve": "stepped"}, {"time": 0.2, "x": 50.74, "y": 0.9, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.25, "x": 12.5, "y": 6.45, "curve": 0, "c2": 0.8, "c3": 0.15}, {"time": 0.3667, "x": 5.47, "y": 26.12, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.4833} - ] - }, - "@leg-back-left": { - "translate": [ - {"curve": "stepped"}, {"time": 0.0167, "x": 18.74, "y": 14.65, "curve": "stepped"}, {"time": 0.1667, "x": 18.74, "y": 14.65, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.4833} - ] - }, - "@leg-front-left": { - "translate": [ - {"curve": "stepped"}, {"time": 0.0167, "x": 1.05, "y": 9.15, "curve": "stepped"}, {"time": 0.3667, "x": 1.05, "y": 9.15, "curve": 0.617, "c4": 0.6}, - {"time": 0.4833, "x": -1.09, "y": -14.69, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5833} + {"y": 0.06}, {"time": 0.1333, "x": -13.8, "y": 0.06}, {"time": 0.2167, "x": 0.02, "y": 0.06, "curve": "stepped"}, {"time": 0.3333, "x": 0.02, "y": 0.06}, + {"time": 0.4667, "x": -13.8, "y": 0.06}, {"time": 0.5833, "x": 0.02, "y": 0.06} ] }, "@leg-front-right": { - "translate": [{"time": 0.0167}, {"time": 0.45, "x": 0.18, "y": 4.24, "curve": "stepped"}, {"time": 0.4833, "x": -2.34, "y": -28.14, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5833}] - }, - "@pivot-main": { - "translate": [ - {"curve": "stepped"}, {"time": 0.0167, "x": 33.18}, {"time": 0.2667, "x": 61.52, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3833, "x": 20.27, "y": 27.91, "curve": 0.315, "c4": 0.8}, - {"time": 0.4833} + "rotate": [ + {}, {"time": 0.0667, "angle": 10.98}, {"time": 0.2167, "angle": -8.78}, {"time": 0.3333}, {"time": 0.4, "angle": 10.98}, {"time": 0.55, "angle": -8.78}, {"time": 0.6667}, + {"time": 0.8333, "angle": -9.85}, {"time": 0.9833, "angle": -6.21}, {"time": 1.15, "angle": 2.69}, {"time": 1.3333, "angle": -30.3} ] }, - "leg-front-right-IK": { - "translate": [ - {"time": 0.2333, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "x": 28.04, "y": 49.32, "curve": "stepped"}, - {"time": 0.3833, "x": 28.04, "y": 49.32, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.45} + "@leg-front-left": { + "rotate": [ + {}, {"time": 0.0667, "angle": 10.98}, {"time": 0.2167, "angle": -8.78}, {"time": 0.3333}, {"time": 0.4, "angle": 10.98}, {"time": 0.55, "angle": -8.78}, {"time": 0.6667}, + {"time": 0.8333, "angle": -9.84}, {"time": 0.9833, "angle": -6.21}, {"time": 1.15, "angle": 2.69}, {"time": 1.3333, "angle": 20.14} ] }, - "leg-front-left-IK": { - "translate": [ - {"time": 0.2333, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "x": 12.33, "y": 29.93, "curve": "stepped"}, - {"time": 0.3833, "x": 12.33, "y": 29.93, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.45} + "@leg-back-left": { + "rotate": [ + {}, {"time": 0.0667, "angle": 10.98}, {"time": 0.2167, "angle": -8.78}, {"time": 0.3333}, {"time": 0.4, "angle": 10.98}, {"time": 0.55, "angle": -8.78}, {"time": 0.6667}, + {"time": 0.8333, "angle": 5.93}, {"time": 0.9833}, {"time": 1.15, "angle": -4.97}, {"time": 1.3333, "angle": -11.75} ] }, + "@pivot-main": {"translate": [{}, {"time": 0.0667, "y": 7.88}, {"time": 0.1333}]}, + "@pivot-center": {"translate": [{}, {"time": 0.6667, "y": 14.05}, {"time": 1.3333}]}, "@shadow": { - "translate": [ - {"curve": "stepped"}, {"time": 0.0167, "x": 33.22}, {"time": 0.2667, "x": 61.08, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3833, "x": 9.02, "curve": 0.315, "c4": 0.8}, - {"time": 0.4833} - ], - "scale": [ - {"curve": "stepped"}, {"time": 0.0167, "x": 1.1, "y": 1.1, "curve": "stepped"}, {"time": 0.2667, "x": 1.1, "y": 1.1, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.3833, "x": 0.98, "y": 0.98, "curve": 0.315, "c4": 0.8}, {"time": 0.4833, "x": 1.1, "y": 1.1, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5833} - ] + "translate": [{}, {"time": 0.1333, "x": -23.3}, {"time": 0.2167, "x": -9.6, "curve": "stepped"}, {"time": 0.3333, "x": -9.6}, {"time": 0.4667, "x": -23.3}, {"time": 0.5833}], + "scale": [{}, {"time": 0.6667, "x": 0.95, "y": 0.95}, {"time": 1.3333}] }, "tail": { "rotate": [ - {"curve": "stepped"}, {"time": 0.0167, "angle": -17.67}, {"time": 0.2333, "angle": -21.07, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.3167, "angle": -20.71, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.45, "angle": 25.83, "curve": 0.154, "c4": 0.9}, - {"time": 0.5167, "angle": -14.3, "curve": 0.161, "c3": 0.854}, {"time": 0.5833} + {}, {"time": 0.1, "angle": -6.85}, {"time": 0.2, "angle": 1.43}, {"time": 0.3333, "angle": 3.02}, {"time": 0.4333, "angle": -6.85}, {"time": 0.5333, "angle": 1.2}, + {"time": 0.75, "angle": -5.95}, {"time": 0.95, "angle": -0.94}, {"time": 1.15, "angle": 4.91}, {"time": 1.3333} ] } } }, - "3177102970": { + "675090927": { "slots": { - "eyes": {"attachment": [{"time": 0.05, "name": "eyes-angry"}, {"time": 0.7, "name": "eyes"}]}, - "mouth": {"attachment": [{"time": 0.05, "name": "mouth-bite"}, {"time": 0.2833, "name": "mouth-open"}, {"time": 0.4667, "name": "mouth-bite"}, {"time": 0.7, "name": "mouth"}]} + "eyes": {"attachment": [{"time": 0.1333, "name": "eyes-shut"}, {"time": 0.2, "name": "eyes"}, {"time": 0.4667, "name": "eyes-shut"}]}, + "mouth": {"attachment": [{"time": 0.0833, "name": "mouth-open"}, {"time": 0.3333, "name": "mouth"}, {"time": 0.4167, "name": "mouth-open"}]} }, "bones": { - "@pivot-back": { - "rotate": [ - {"curve": 0, "c2": 0.4, "c3": 0.383}, {"time": 0.15, "angle": 4, "curve": 0, "c2": 0.2, "c3": 0.851}, {"time": 0.2833, "angle": 7}, - {"time": 0.4167, "angle": 7.5, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5, "angle": 4, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.5833, "angle": 6, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.75} - ], + "@mouth": { "translate": [ - {"curve": 0, "c2": 0.4, "c3": 0.383}, {"time": 0.25, "x": 25, "curve": 1, "c2": -0.1, "c4": 0}, {"time": 0.2833, "x": -136, "y": 25.56}, - {"time": 0.4167, "x": -153.19, "y": 25.56, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5, "x": -176.94, "curve": "stepped"}, - {"time": 0.5833, "x": -176.94, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.75} + {"time": 0.1667}, {"time": 0.3333, "x": -0.56, "y": 3.4}, {"time": 0.5, "x": 0.04, "y": 0.05}, {"time": 0.6, "x": 3.03, "y": 2.83}, {"time": 0.7, "x": -0.51, "y": 3.39}, + {"time": 0.8, "x": -3.56, "y": 0.39}, {"time": 0.9, "x": 0.05, "y": -0.01}, {"time": 1.0167, "x": 3.05, "y": 2.75}, {"time": 1.1167, "x": -0.5, "y": 3.35}, + {"time": 1.2167, "x": -3.56, "y": 0.37}, {"time": 1.3333} ] }, - "@pivot-main": {"translate": [{"time": 0.5833, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.6667, "y": 45.22, "curve": 0.315, "c4": 0.8}, {"time": 0.75}]}, - "@leg-front-left": { + "@pivot-back": { + "rotate": [ + {}, {"time": 0.0667, "angle": -0.59}, {"time": 0.1333, "angle": 1.15}, {"time": 0.2167, "curve": "stepped"}, {"time": 0.3333}, {"time": 0.4, "angle": -0.59}, + {"time": 0.4667, "angle": 1.15}, {"time": 0.5833} + ], "translate": [ - {"curve": 0, "c2": 0.4, "c3": 0.383}, {"time": 0.25, "x": -1.48, "y": -14.61, "curve": "stepped"}, - {"time": 0.5833, "x": -1.48, "y": -14.61, "curve": 0, "c2": 0.17, "c3": 0.45, "c4": 0.61}, {"time": 0.65, "x": -0.39, "y": 5.91, "curve": 0.345, "c2": 0.53, "c3": 0.751}, {"time": 0.75} + {"y": 0.06}, {"time": 0.1333, "x": -13.8, "y": 0.06}, {"time": 0.2167, "x": 0.02, "y": 0.06, "curve": "stepped"}, {"time": 0.3333, "x": 0.02, "y": 0.06}, + {"time": 0.4667, "x": -13.8, "y": 0.06}, {"time": 0.5833, "x": 0.02, "y": 0.06} ] }, "@leg-front-right": { - "translate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "x": -2.88, "y": -28.54, "curve": "stepped"}, - {"time": 0.5833, "x": -2.88, "y": -28.54, "curve": 0, "c2": 0.17, "c3": 0.45, "c4": 0.61}, {"time": 0.65, "x": -0.83, "y": 1.57, "curve": 0.345, "c2": 0.53, "c3": 0.751}, {"time": 0.75} - ] - }, - "leg-front-left-IK": { - "translate": [ - {"time": 0.25, "curve": 0.702, "c4": 0.2}, {"time": 0.2833, "x": -43.29, "y": 59.07}, {"time": 0.4167, "x": -61.19, "y": 52.81, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.5, "x": -191.61, "curve": "stepped"}, {"time": 0.5833, "x": -191.61, "curve": 0, "c2": 0.17, "c3": 0.45, "c4": 0.61}, - {"time": 0.65, "x": -105.91, "y": -2.82, "curve": 0.345, "c2": 0.53, "c3": 0.751}, {"time": 0.75} - ] - }, - "leg-front-right-IK": { - "translate": [ - {"time": 0.25, "curve": 0.702, "c4": 0.2}, {"time": 0.2833, "x": -27.95, "y": 28.32}, {"time": 0.4167, "x": -40.48, "y": 34.59, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.5, "x": -191.61, "curve": "stepped"}, {"time": 0.5833, "x": -191.61, "curve": 0, "c2": 0.17, "c3": 0.45, "c4": 0.61}, - {"time": 0.65, "x": -103, "y": 4.15, "curve": 0.345, "c2": 0.53, "c3": 0.751}, {"time": 0.75} - ] - }, - "leg-back-left-IK": { - "translate": [ - {"time": 0.25, "curve": 0.25, "c4": 0.2}, {"time": 0.2833, "x": -70.51, "y": 98.54}, {"time": 0.4167, "x": -70.51, "y": 101.95, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.5, "x": -197.17, "curve": "stepped"}, {"time": 0.5833, "x": -197.17, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.75} + "rotate": [ + {}, {"time": 0.0667, "angle": 10.98}, {"time": 0.2167, "angle": -8.78}, {"time": 0.3333}, {"time": 0.4, "angle": 10.98}, {"time": 0.55, "angle": -8.78}, {"time": 0.6667}, + {"time": 0.8333, "angle": -9.85}, {"time": 0.9833, "angle": -6.21}, {"time": 1.15, "angle": 2.69}, {"time": 1.3333} ] }, - "@pivot-center": { + "@leg-front-left": { "rotate": [ - {"time": 0.25, "curve": 0.779, "c4": 0.3}, {"time": 0.2833, "angle": 10.18, "curve": "stepped"}, {"time": 0.4167, "angle": 10.18, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5} + {}, {"time": 0.0667, "angle": 10.98}, {"time": 0.2167, "angle": -8.78}, {"time": 0.3333}, {"time": 0.4, "angle": 10.98}, {"time": 0.55, "angle": -8.78}, {"time": 0.6667}, + {"time": 0.8333, "angle": -9.84}, {"time": 0.9833, "angle": -6.21}, {"time": 1.15, "angle": 2.69}, {"time": 1.3333} ] }, - "tail": { + "@leg-back-left": { "rotate": [ - {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.25, "angle": 21.98, "curve": 0.851, "c4": 0.1}, {"time": 0.2833, "angle": -15.58}, - {"time": 0.4167, "angle": -20.71, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5, "angle": 19.93, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.5833, "angle": 23.12, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.6667, "angle": -14.25, "curve": 0.313, "c3": 0.699}, {"time": 0.75} + {}, {"time": 0.0667, "angle": 10.98}, {"time": 0.2167, "angle": -8.78}, {"time": 0.3333}, {"time": 0.4, "angle": 10.98}, {"time": 0.55, "angle": -8.78}, {"time": 0.6667}, + {"time": 0.8333, "angle": 5.93}, {"time": 0.9833}, {"time": 1.15, "angle": -4.97}, {"time": 1.3333} ] }, + "@pivot-main": {"translate": [{}, {"time": 0.0667, "y": 7.88}, {"time": 0.1333}]}, + "@pivot-center": {"translate": [{}, {"time": 0.6667, "y": 14.05}, {"time": 1.3333}]}, "@shadow": { - "translate": [ - {"time": 0.25, "curve": 0.851, "c4": 0.1}, {"time": 0.2833, "x": -143.36}, {"time": 0.4167, "x": -160.77, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.5, "x": -186.16, "curve": "stepped"}, {"time": 0.5833, "x": -186.16, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.75} - ], - "scale": [ - {"curve": 0, "c2": 0.4, "c3": 0.383}, {"time": 0.25, "x": 1.08, "y": 1.08, "curve": "stepped"}, {"time": 0.5, "x": 1.08, "y": 1.08, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.5833, "x": 1.12, "y": 1.12, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.6667, "x": 0.94, "y": 0.94, "curve": 0.315, "c4": 0.8}, {"time": 0.75} + "translate": [{}, {"time": 0.1333, "x": -23.3}, {"time": 0.2167, "x": -9.6, "curve": "stepped"}, {"time": 0.3333, "x": -9.6}, {"time": 0.4667, "x": -23.3}, {"time": 0.5833}], + "scale": [{}, {"time": 0.6667, "x": 0.95, "y": 0.95}, {"time": 1.3333}] + }, + "tail": { + "rotate": [ + {}, {"time": 0.1, "angle": -6.85}, {"time": 0.2, "angle": 1.43}, {"time": 0.3333, "angle": 3.02}, {"time": 0.4333, "angle": -6.85}, {"time": 0.5333, "angle": 1.2}, + {"time": 0.75, "angle": -5.95}, {"time": 0.95, "angle": -0.94}, {"time": 1.15, "angle": 4.91}, {"time": 1.3333} ] } - }, - "events": [{"time": 0.2167, "name": "start-attack"}, {"time": 0.2833, "name": "hit"}] + } }, - "1912445836": { - "slots": { - "eyes": {"attachment": [{"time": 0.1333, "name": "eyes-angry"}, {"time": 0.6667, "name": "eyes"}]}, - "mouth": {"attachment": [{"time": 0.1333, "name": "mouth-bite"}, {"time": 0.2667, "name": "mouth-open"}, {"time": 0.4167, "name": "mouth-bite"}, {"time": 0.6667, "name": "mouth"}]} - }, + "813164421": { + "slots": {"eyes": {"attachment": [{"time": 0.0167, "name": "eyes-angry"}, {"time": 0.6333, "name": "eyes-shut"}, {"time": 0.7, "name": "eyes-angry"}, {"time": 1.2833, "name": "eyes"}]}}, "bones": { "@pivot-back": { "rotate": [ - {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "angle": -3.92, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "angle": 2.51, "curve": 0, "c2": 0.3, "c3": 0.544}, - {"time": 0.35, "angle": -4.74, "curve": 0.7, "c4": 0.3}, {"time": 0.4167, "angle": 2}, {"time": 0.5833, "angle": 4, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.75} + {}, {"time": 0.1667, "angle": -5.15}, {"time": 0.3333, "angle": 4.71}, {"time": 0.5, "angle": -2.3}, {"time": 0.6667, "angle": 2.84}, {"time": 0.9167, "angle": -3.66}, + {"time": 1.0833, "angle": -0.77}, {"time": 1.25} ], "translate": [ - {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 71.93, "y": -12.95, "curve": "stepped"}, {"time": 0.25, "x": 71.93, "y": -12.95, "curve": 0, "c2": 0.3, "c3": 0.544}, - {"time": 0.4167, "x": -144.49, "y": -12.95, "curve": "stepped"}, {"time": 0.5833, "x": -144.49, "y": -12.95, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.75} - ] - }, - "leg-back-left-IK": { - "translate": [ - {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.1333, "x": 80.9, "curve": 0.161, "c3": 0.854}, {"time": 0.25, "x": 49.4}, - {"time": 0.3333, "x": -52.84, "y": 44.64, "curve": 0.315, "c4": 0.8}, {"time": 0.4167, "x": -131.67, "curve": "stepped"}, {"time": 0.5833, "x": -131.67}, {"time": 0.75} - ] - }, - "leg-front-right-IK": { - "translate": [ - {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 30.89, "y": 11.74, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "x": 42.9, "curve": 0, "c2": 0.3, "c3": 0.544}, - {"time": 0.3667, "x": -61.28, "y": 38.08, "curve": 0.161, "c4": 0.85}, {"time": 0.4167, "x": -153.64, "curve": "stepped"}, {"time": 0.5833, "x": -153.64, "curve": 0.154, "c4": 0.9}, - {"time": 0.7, "x": 13.43, "curve": 0.161, "c3": 0.854}, {"time": 0.75} - ] - }, - "leg-front-left-IK": { - "translate": [ - {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 8.25, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "x": 42.9, "curve": 0, "c2": 0.3, "c3": 0.544}, - {"time": 0.3667, "x": -62.49, "y": 8.75, "curve": 0.161, "c4": 0.85}, {"time": 0.4167, "x": -153.64, "curve": "stepped"}, {"time": 0.5833, "x": -153.64, "curve": 0.154, "c4": 0.9}, - {"time": 0.7, "x": 13.43, "curve": 0.161, "c3": 0.854}, {"time": 0.75} - ] - }, - "@leg-front-left": { - "translate": [ - {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": -1.88, "y": 22.02, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.25, "x": -0.53, "y": 0.11, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.4167, "x": -17.9, "y": 0.58, "curve": "stepped"}, - {"time": 0.5833, "x": -17.9, "y": 0.58, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.75} + {}, {"time": 0.25, "x": -74.35, "y": -25.83}, {"time": 0.4167, "x": -74.35, "y": 55.38}, {"time": 0.5833, "x": 103.85, "y": -14.97}, {"time": 0.75, "x": 103.82, "y": 55.43}, + {"time": 1, "x": -40.96, "y": -15.97}, {"time": 1.1667, "x": -40.96, "y": 0.03}, {"time": 1.3333} ] }, "@leg-front-right": { - "translate": [ - {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 4.31, "y": 11.86, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "x": -10.19, "y": -4.67, "curve": "stepped"}, - {"time": 0.5833, "x": -10.19, "y": -4.67, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.75} + "rotate": [ + {}, {"time": 0.1667, "angle": 13.08}, {"time": 0.4167, "angle": -24.68, "curve": "stepped"}, {"time": 0.5833, "angle": -24.68}, {"time": 0.75, "angle": 8.39, "curve": "stepped"}, + {"time": 0.9167, "angle": 8.39}, {"time": 1.1667, "angle": -16.49}, {"time": 1.3333, "angle": -30.3} ] }, - "@pivot-main": { - "translate": [ - {"time": 0.25, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "y": 26.43, "curve": 0.315, "c4": 0.8}, {"time": 0.4167, "curve": "stepped"}, - {"time": 0.5833, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.6667, "y": 26.43, "curve": 0.315, "c4": 0.8}, {"time": 0.75} + "@leg-front-left": { + "rotate": [ + {}, {"time": 0.1667, "angle": 13.08}, {"time": 0.4167, "angle": -24.68, "curve": "stepped"}, {"time": 0.5833, "angle": -24.68}, {"time": 0.75, "angle": 8.39, "curve": "stepped"}, + {"time": 0.9167, "angle": 8.39}, {"time": 1.1667, "angle": -16.49}, {"time": 1.3333, "angle": 20.14} ] }, "@leg-back-left": { - "translate": [ - {"time": 0.0833, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "x": -0.35, "y": -13.05, "curve": "stepped"}, {"time": 0.3333, "x": -0.35, "y": -13.05}, - {"time": 0.5833, "x": -0.47, "y": -16.1, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.75} + "rotate": [ + {}, {"time": 0.1667, "angle": 13.08}, {"time": 0.3333, "angle": -13.36}, {"time": 0.75, "angle": 11.05, "curve": "stepped"}, {"time": 0.9167, "angle": 11.05}, + {"time": 1.1667, "angle": -13.83}, {"time": 1.3333, "angle": -11.75} ] }, "tail": { "rotate": [ - {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "angle": 12.92, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "angle": 18.48, "curve": 0, "c2": 0.3, "c3": 0.544}, - {"time": 0.35, "angle": -6.88, "curve": 0.7, "c4": 0.3}, {"time": 0.4167, "angle": 14}, {"time": 0.5833, "angle": 19.37, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.6833, "angle": -8.78, "curve": 0.313, "c3": 0.699}, {"time": 0.75} + {}, {"time": 0.1667, "angle": -6}, {"time": 0.25, "angle": 1.14}, {"time": 0.4167, "angle": -8.39}, {"time": 0.5833, "angle": 0.59}, {"time": 0.75, "angle": -10.53}, + {"time": 1, "angle": -2.29}, {"time": 1.1667, "angle": -9.12}, {"time": 1.3333} + ] + }, + "back": { + "rotate": [ + {}, {"time": 0.1667, "angle": -1.84}, {"time": 0.25, "angle": 3}, {"time": 0.4167, "angle": 0.04}, {"time": 0.5833, "angle": 4.01}, {"time": 0.75, "angle": 0.76}, + {"time": 1, "angle": 4.04}, {"time": 1.1667, "angle": 1.6}, {"time": 1.3333} ] }, "@shadow": { "translate": [ - {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 61.96, "curve": "stepped"}, {"time": 0.25, "x": 61.96, "curve": 0, "c2": 0.3, "c3": 0.544}, - {"time": 0.35, "x": -121.98, "curve": 0.7, "c4": 0.3}, {"time": 0.4167, "x": -154.28, "curve": "stepped"}, {"time": 0.5833, "x": -154.28, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.75} + {}, {"time": 0.25, "x": -83.7}, {"time": 0.4167, "x": -83.9}, {"time": 0.5833, "x": 94.25}, {"time": 0.75, "x": 94.33}, {"time": 1, "x": -50.6, "curve": "stepped"}, + {"time": 1.1667, "x": -50.6}, {"time": 1.3333} ], "scale": [ - {"time": 0.0833, "curve": 0, "c2": 0.26, "c3": 0.369, "c4": 0.62}, {"time": 0.25, "x": 1.06, "y": 1.06, "curve": 0.192, "c2": 0.45, "c3": 0.623}, - {"time": 0.35, "x": 0.96, "y": 0.96, "curve": 0.7, "c4": 0.3}, {"time": 0.4167, "x": 1.08, "y": 1.08, "curve": "stepped"}, - {"time": 0.5833, "x": 1.08, "y": 1.08, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.75} + {}, {"time": 0.25, "x": 1.04, "y": 1.04}, {"time": 0.4167, "x": 0.95, "y": 0.95}, {"time": 0.5833, "x": 1.08, "y": 1.08}, {"time": 0.75, "x": 0.96, "y": 0.96}, + {"time": 1, "x": 1.08, "y": 1.08}, {"time": 1.1667, "x": 1.04, "y": 1.04}, {"time": 1.3333} ] } - }, - "events": [{"time": 0.25, "name": "start-attack"}, {"time": 0.4167, "name": "hit"}] + } }, - "2627626635": { + "832317166": { "slots": { - "eyes": {"attachment": [{"time": 0.0833, "name": "eyes-shut"}, {"time": 0.1667, "name": "eyes-angry"}, {"time": 0.9833, "name": "eyes-shut"}, {"time": 1.0833, "name": "eyes"}]}, - "leg-front-left": { + "eyes": { "attachment": [ - {"time": 0.5, "name": "xmas-leg-front-left-stretch"}, {"time": 0.6333, "name": "xmas-leg-front-left"}, {"time": 0.7667, "name": "xmas-leg-front-left-stretch"}, - {"time": 0.9, "name": "xmas-leg-front-left"} + {"time": 0.05, "name": "eyes-angry"}, {"time": 0.55, "name": "eyes-shut"}, {"time": 0.65, "name": "eyes-angry"}, {"time": 0.9, "name": "eyes-shut"}, {"time": 0.9667, "name": "eyes"} ] }, - "mouth": {"attachment": [{"time": 0.0833, "name": "mouth-bite"}, {"time": 0.3667, "name": "mouth-open"}, {"time": 0.9833, "name": "mouth-bite"}, {"time": 1.0833, "name": "mouth"}]} + "mouth": { + "attachment": [ + {"time": 0.1167, "name": "mouth-open"}, {"time": 0.3833, "name": "mouth-bite"}, {"time": 0.65, "name": "mouth-open"}, {"time": 0.9, "name": "mouth-bite"}, + {"time": 0.9667, "name": "mouth"} + ] + } }, "bones": { "@pivot-back": { "rotate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.15, "angle": 3.67, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.3333, "angle": -14.29, "curve": 0.779, "c4": 0.3}, - {"time": 0.3667, "angle": 15.82}, {"time": 0.4667, "angle": 16.67, "curve": 0.779, "c4": 0.3}, {"time": 0.5, "angle": -19.96}, {"time": 0.6, "angle": -21.17, "curve": 0.779, "c4": 0.3}, - {"time": 0.6333, "angle": 15.82}, {"time": 0.7333, "angle": 16.67, "curve": 0.779, "c4": 0.3}, {"time": 0.7667, "angle": -19.96}, - {"time": 0.8667, "angle": -21.17, "curve": 0.779, "c4": 0.3}, {"time": 0.9833, "angle": 4.4, "curve": 0, "c2": 0.1, "c3": 0.85}, - {"time": 1.05, "angle": 6.79, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1.25} + {}, {"time": 0.1, "angle": 6}, {"time": 0.25, "angle": -10.31}, {"time": 0.3833, "angle": 5}, {"time": 0.6333, "angle": 6}, {"time": 0.7667, "angle": -5.94}, + {"time": 0.9, "angle": 6.92}, {"time": 1} ], - "translate": [ - {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.2167, "x": 8.02, "curve": 0, "c2": 0.4, "c3": 0.383}, {"time": 0.3333, "x": -54.3, "y": 61.69, "curve": 0.779, "c4": 0.3}, - {"time": 0.3667, "x": -60.41, "y": 130.13}, {"time": 0.4667, "x": -60.41, "y": 130.01, "curve": 0.779, "c4": 0.3}, {"time": 0.5, "x": -58.41, "y": 9.6}, - {"time": 0.6, "x": -58.41, "y": 9.9, "curve": 0.779, "c4": 0.3}, {"time": 0.6333, "x": -60.41, "y": 130.13}, {"time": 0.7333, "x": -60.41, "y": 130.01, "curve": 0.779, "c4": 0.3}, - {"time": 0.7667, "x": -58.41, "y": 9.6}, {"time": 0.8667, "x": -58.41, "y": 9.9, "curve": 0.779, "c4": 0.3}, {"time": 0.9833} - ] + "translate": [{"time": 0.1}, {"time": 0.25, "y": 82.86}, {"time": 0.3833, "curve": "stepped"}, {"time": 0.6333}, {"time": 0.7667, "y": 70.12}, {"time": 0.9}] }, - "@leg-front-right": { + "@pivot-main": {"translate": [{"time": 0.1}, {"time": 0.3833, "x": 542.6}, {"time": 0.6333, "x": 603.73}, {"time": 0.9}]}, + "@leg-front-left": { "translate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.2167, "x": -18.54, "y": -11.57}, {"time": 0.25, "x": -23.07, "y": 10.08, "curve": 0, "c2": 0.4, "c3": 0.383}, - {"time": 0.3333, "x": 29.92, "y": -4.24, "curve": 0.779, "c4": 0.4}, {"time": 0.3667, "x": 22.95, "y": 2.68}, {"time": 0.4667, "x": 29.92, "y": -4.24, "curve": 0.779, "c4": 0.4}, - {"time": 0.5, "x": 22.95, "y": 2.68}, {"time": 0.6, "x": 29.92, "y": -4.24, "curve": 0.779, "c4": 0.4}, {"time": 0.6333, "x": 22.95, "y": 2.68}, - {"time": 0.7333, "x": 29.92, "y": -4.24, "curve": 0.779, "c4": 0.4}, {"time": 0.7667, "x": 22.95, "y": 2.68, "curve": "stepped"}, - {"time": 0.9167, "x": 22.95, "y": 2.68, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.95, "curve": 0.464, "c4": 0.7}, {"time": 0.9833, "x": -1.45, "y": -24.11, "curve": "stepped"}, - {"time": 1.05, "x": -1.45, "y": -24.11, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1.0833} - ], - "scale": [ - {"time": 0.2167}, {"time": 0.25, "x": 1.5}, {"time": 0.3333, "curve": 0.779, "c4": 0.4}, {"time": 0.3667, "x": 1.5}, {"time": 0.4667, "x": 1.51, "curve": 0.157, "c2": 0.33, "c3": 0.727}, - {"time": 0.5, "curve": "stepped"}, {"time": 0.6, "curve": 0.779, "c4": 0.4}, {"time": 0.6333, "x": 1.5}, {"time": 0.7333, "x": 1.51, "curve": 0.157, "c2": 0.33, "c3": 0.727}, - {"time": 0.7667} + {}, {"time": 0.1, "x": -1.93, "y": -18.15}, {"time": 0.25}, {"time": 0.3833, "x": -1.93, "y": -18.15}, {"time": 0.6333, "x": -1.68, "y": -15.27}, {"time": 0.7667}, + {"time": 0.9, "x": -1.93, "y": -18.15}, {"time": 1} ] }, - "@leg-front-left": { + "@leg-front-right": { "translate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.2167, "x": -6.84, "y": -9.77, "curve": "stepped"}, {"time": 0.9833, "x": -6.84, "y": -9.77, "curve": 0, "c2": 0.1, "c3": 0.85}, - {"time": 1.05, "x": -6.29, "y": -18.69, "curve": 0, "c2": 0.23, "c3": 0.365, "c4": 0.58}, {"time": 1.0833, "x": -3.64, "y": -2.46, "curve": 0.177, "c2": 0.35, "c3": 0.731}, - {"time": 1.25} - ], - "scale": [ - {"time": 0.4667, "curve": 0.779, "c4": 0.4}, {"time": 0.5, "x": 1.5}, {"time": 0.6, "x": 1.51, "curve": 0.157, "c2": 0.33, "c3": 0.727}, {"time": 0.6333, "curve": "stepped"}, - {"time": 0.7333, "curve": 0.779, "c4": 0.4}, {"time": 0.7667, "x": 1.5}, {"time": 0.8667, "x": 1.51, "curve": 0.157, "c2": 0.33, "c3": 0.727}, {"time": 0.9833} + {}, {"time": 0.1, "x": -3.41, "y": -31.95}, {"time": 0.25}, {"time": 0.3833, "x": -3.41, "y": -31.95}, {"time": 0.6333, "x": -3.16, "y": -29.07}, {"time": 0.7667}, + {"time": 0.9, "x": -3.41, "y": -31.95}, {"time": 1} ] }, "@leg-back-left": { "translate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.2167, "x": -0.11, "y": -2.73, "curve": "stepped"}, {"time": 0.9833, "x": -0.11, "y": -2.73, "curve": 0, "c2": 0.1, "c3": 0.85}, - {"time": 1.05, "x": -0.46, "y": -6.19, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1.25} + {}, {"time": 0.1, "x": -0.42, "y": -4.72}, {"time": 0.25}, {"time": 0.3833, "x": -0.42, "y": -4.72, "curve": "stepped"}, {"time": 0.6333, "x": -0.42, "y": -4.72}, {"time": 0.7667}, + {"time": 0.9, "x": -0.42, "y": -4.72}, {"time": 1} ] }, - "@pivot-main": { - "translate": [ - {"time": 0.15, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "x": -73.35, "y": 43, "curve": "stepped"}, {"time": 0.8667, "x": -73.35, "y": 43, "curve": 0.315, "c4": 0.8}, - {"time": 0.9833, "x": -146.44, "curve": "stepped"}, {"time": 1.05, "x": -146.44, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1.15, "x": -45.61, "y": 50.15, "curve": 0.315, "c4": 0.8}, - {"time": 1.25} - ], - "scale": [{"time": 0.9833, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1.05, "y": 0.98, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1.15}] - }, "leg-front-right-IK": { "translate": [ - {"time": 0.15, "curve": 0, "c2": 0.18, "c3": 0.416, "c4": 0.58}, {"time": 0.2167, "x": 49.59, "y": 35.17}, {"time": 0.25, "x": -2.16, "y": 99.87, "curve": 0, "c2": 0.4, "c3": 0.383}, - {"time": 0.3333, "x": -160.66, "y": 272.78, "curve": 0.779, "c4": 0.4}, {"time": 0.3667, "x": -48.06, "y": 31.6}, {"time": 0.4667, "x": -24.61, "y": 31.6, "curve": 0.779, "c4": 0.4}, - {"time": 0.5, "x": -151.82, "y": 190.82}, {"time": 0.6, "x": -160.66, "y": 272.78, "curve": 0.779, "c4": 0.4}, {"time": 0.6333, "x": -48.06, "y": 31.6}, - {"time": 0.7333, "x": -24.61, "y": 31.6, "curve": 0.779, "c4": 0.4}, {"time": 0.7667, "x": -151.82, "y": 190.82}, {"time": 0.8667, "x": -160.66, "y": 272.78, "curve": 0.779, "c4": 0.4}, - {"time": 0.9833, "curve": "stepped"}, {"time": 1.05, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 1.0833, "x": -14.68, "y": -19.57, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1.25} + {"time": 0.1}, {"time": 0.2167, "x": -58.81, "y": 174.08}, {"time": 0.2833, "x": 10.68, "y": 136.08}, {"time": 0.3833, "x": 11}, {"time": 0.6333, "x": -14.37}, + {"time": 0.7333, "x": 26.13, "y": 111.42}, {"time": 0.8, "x": -44.87, "y": 129.12}, {"time": 0.9} ] }, "leg-front-left-IK": { "translate": [ - {"time": 0.15, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "x": -54.88, "y": 124.95, "curve": 0.779, "c4": 0.4}, {"time": 0.3667, "x": 37.97, "y": 122.64}, - {"time": 0.4667, "x": 48.96, "y": 138.43, "curve": 0.779, "c4": 0.4}, {"time": 0.5, "x": -142.3, "y": 180.66}, {"time": 0.6, "x": -134.29, "y": 191.98, "curve": 0.779, "c4": 0.4}, - {"time": 0.6333, "x": 37.97, "y": 122.64}, {"time": 0.7333, "x": 48.96, "y": 138.43, "curve": 0.779, "c4": 0.4}, {"time": 0.7667, "x": -142.3, "y": 180.66}, - {"time": 0.8667, "x": -134.29, "y": 191.98, "curve": 0.617, "c4": 0.6}, {"time": 0.9833, "curve": "stepped"}, {"time": 1.05, "curve": 0, "c2": 0.1, "c3": 0.85}, - {"time": 1.0833, "x": -7.79, "y": -10.12, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1.25} + {"time": 0.1}, {"time": 0.2167, "x": -73.46, "y": 138.38}, {"time": 0.2833, "x": -0.77, "y": 108.17}, {"time": 0.3833, "x": 11}, {"time": 0.6333, "x": -14.37}, + {"time": 0.7333, "x": 11.48, "y": 75.71}, {"time": 0.8, "x": -56.77, "y": 100.13}, {"time": 0.9} ] }, "leg-back-left-IK": { "translate": [ - {"time": 0.0833, "curve": 0.332, "c3": 0.682, "c4": 0.41}, {"time": 0.2167, "x": 21.57, "y": 4.03, "curve": 0, "c2": 0.4, "c3": 0.383}, - {"time": 0.3333, "x": -50.73, "y": 91.08, "curve": 0.779, "c4": 0.4}, {"time": 0.3667, "x": 19.18, "y": 184.64}, {"time": 0.4667, "x": 25.59, "y": 197.69, "curve": 0.779, "c4": 0.4}, - {"time": 0.5, "x": -145.53, "y": 47.62}, {"time": 0.6, "x": -152.68, "y": 53.34, "curve": 0.779, "c4": 0.4}, {"time": 0.6333, "x": 19.18, "y": 184.64}, - {"time": 0.7333, "x": 25.59, "y": 197.69, "curve": 0.779, "c4": 0.4}, {"time": 0.7667, "x": -145.53, "y": 47.62}, {"time": 0.8667, "x": -153.88, "y": 53.26, "curve": 0.779, "c4": 0.4}, - {"time": 0.9833, "curve": "stepped"}, {"time": 1.05, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 1.1667, "x": 24.35, "y": 13.92, "curve": 0.154, "c4": 0.9}, {"time": 1.25} + {"time": 0.1}, {"time": 0.2, "x": -56.56, "y": 95.34}, {"time": 0.2667, "x": 21.01, "y": 67.87}, {"time": 0.3833, "x": 0.85}, {"time": 0.6333, "x": -16.87}, + {"time": 0.7167, "x": 21.01, "y": 67.87}, {"time": 0.7833, "x": -41.39, "y": 75.95}, {"time": 0.9} ] }, "tail": { "rotate": [ - {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.15, "angle": 14.68, "curve": 0.315, "c4": 0.8}, {"time": 0.2167, "angle": -12.57}, - {"time": 0.3333, "angle": -14.89, "curve": 0.779, "c4": 0.4}, {"time": 0.3667, "angle": 20.64}, {"time": 0.4667, "angle": 25.18, "curve": 0.779, "c4": 0.4}, - {"time": 0.5, "angle": -19.72}, {"time": 0.6, "angle": -22.19, "curve": 0.779, "c4": 0.4}, {"time": 0.6333, "angle": 20.64}, {"time": 0.7333, "angle": 25.18, "curve": 0.779, "c4": 0.4}, - {"time": 0.7667, "angle": -19.72}, {"time": 0.8667, "angle": -22.19, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.9833, "angle": 23.3}, - {"time": 1.05, "angle": 26.39, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1.1333, "angle": -14.8, "curve": 0.154, "c4": 0.9}, {"time": 1.25} + {}, {"time": 0.1, "angle": 21.16}, {"time": 0.25, "angle": -27.62}, {"time": 0.3833, "angle": 17.89}, {"time": 0.6333, "angle": 23.46}, {"time": 0.7667, "angle": -27.7}, + {"time": 0.9, "angle": 21.16}, {"time": 1} ] }, "@shadow": { - "translate": [ - {"time": 0.15, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.3333, "x": -132.39, "curve": 0.779, "c4": 0.4}, {"time": 0.3667, "x": -111.3, "curve": "stepped"}, - {"time": 0.8667, "x": -111.3, "curve": 0.315, "c4": 0.8}, {"time": 0.9833, "x": -132.39, "curve": "stepped"}, {"time": 1.05, "x": -132.39, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 1.25} - ], + "translate": [{"time": 0.1}, {"time": 0.3833, "x": 542.6}, {"time": 0.6333, "x": 603.73}, {"time": 0.9}], "scale": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.15, "x": 1.05, "y": 1.05, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.3333, "x": 0.93, "y": 0.93, "curve": 0.779, "c4": 0.4}, - {"time": 0.3667, "x": 0.95, "y": 0.95}, {"time": 0.4667, "x": 0.93, "y": 0.93, "curve": 0.779, "c4": 0.4}, {"time": 0.5}, {"time": 0.6, "x": 1.05, "y": 1.05, "curve": 0.779, "c4": 0.4}, - {"time": 0.6333}, {"time": 0.7333, "x": 0.93, "y": 0.93, "curve": 0.779, "c4": 0.4}, {"time": 0.7667}, {"time": 0.8667, "x": 1.05, "y": 1.05, "curve": 0.315, "c4": 0.8}, - {"time": 0.9833, "x": 1.09, "y": 1.09, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 1.05, "x": 1.11, "y": 1.11, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1.25} + {}, {"time": 0.1, "x": 1.08, "y": 1.08}, {"time": 0.25, "x": 0.9, "y": 0.9}, {"time": 0.3833, "x": 1.08, "y": 1.08}, {"time": 0.6333, "x": 1.1, "y": 1.1}, + {"time": 0.7833, "x": 0.9, "y": 0.9}, {"time": 0.9, "x": 1.08, "y": 1.08}, {"time": 1} ] } - }, - "drawOrder": [{"time": 0.4833, "offsets": [{"slot": "leg-front-left", "offset": 6}]}, {"time": 0.6167}, {"time": 0.75, "offsets": [{"slot": "leg-front-left", "offset": 6}]}, {"time": 0.9}], - "events": [{"time": 0.3333, "name": "start-attack"}, {"time": 0.3667, "name": "hit"}, {"time": 0.5, "name": "hit"}, {"time": 0.6333, "name": "hit"}, {"time": 0.7667, "name": "hit"}] + } }, - "1384528274": { + "2441292734": { "slots": { - "eyes": {"attachment": [{"time": 1, "name": "eyes-shut"}, {"time": 1.0833, "name": "eyes"}]}, - "eyes-glow": {"attachment": [{"time": 0.3333, "name": "eyes-glow"}, {"time": 0.5833, "name": null}]}, - "horn": {"attachment": [{"time": 0.5833, "name": "horn-blink"}, {"time": 0.8333, "name": "horn"}]}, - "mouth": {"attachment": [{"time": 0.0833, "name": "mouth-blink"}, {"time": 0.3333, "name": "mouth"}]} + "eyes": { + "attachment": [ + {"time": 0.1333, "name": "eyes-shut"}, {"time": 0.2, "name": "eyes"}, {"time": 0.55, "name": "eyes-shut"}, {"time": 0.6167, "name": "eyes"}, {"time": 0.9667, "name": "eyes-shut"} + ] + }, + "mouth": { + "attachment": [ + {"time": 0.1833, "name": "mouth-open"}, {"time": 0.5, "name": "mouth"}, {"time": 0.6, "name": "mouth-open"}, {"time": 0.9, "name": "mouth"}, {"time": 0.9667, "name": "mouth-bite"} + ] + } }, "bones": { "@pivot-back": { "rotate": [ - {"curve": 0.313, "c3": 0.699}, {"time": 0.3333, "angle": 2.04, "curve": 0.313, "c3": 0.699}, {"time": 0.6667, "curve": 0.313, "c3": 0.699}, - {"time": 1, "angle": 1.79, "curve": 0.313, "c3": 0.699}, {"time": 1.3333} + {}, {"time": 0.1667, "angle": 3.53}, {"time": 0.3333, "angle": -10.14}, {"time": 0.5}, {"time": 0.5833, "angle": 3.53}, {"time": 0.75, "angle": -10.14}, {"time": 0.9167}, + {"time": 1.0833, "angle": 5.43}, {"time": 1.15, "angle": 3.94}, {"time": 1.2, "angle": 5.43}, {"time": 1.2333, "angle": 3.94}, {"time": 1.2667, "angle": 5.43}, + {"time": 1.3, "angle": 3.94}, {"time": 1.3333, "angle": 5.43}, {"time": 1.3667, "angle": 3.94}, {"time": 1.4, "angle": 5.43}, {"time": 1.4333, "angle": 3.94}, + {"time": 1.4667, "angle": 5.43}, {"time": 1.5, "angle": 3.94} ], "translate": [ - {"curve": 0.313, "c3": 0.699}, {"time": 0.3333, "y": -6.53, "curve": 0.313, "c3": 0.699}, {"time": 0.6667, "curve": 0.313, "c3": 0.699}, - {"time": 1, "y": -8.86, "curve": 0.313, "c3": 0.699}, {"time": 1.3333} - ], - "scale": [{"curve": 0.313, "c3": 0.699}, {"time": 0.6667, "y": 0.99, "curve": 0.313, "c3": 0.699}, {"time": 1.3333}] + {"y": 44.46}, {"time": 0.1667, "y": 12.46}, {"time": 0.3333, "y": 209.26}, {"time": 0.5, "y": 44.46}, {"time": 0.5833, "y": 12.46}, {"time": 0.75, "y": 209.26}, + {"time": 0.9167, "y": 44.46} + ] }, "@leg-front-right": { - "translate": [ - {"curve": 0.313, "c3": 0.699}, {"time": 0.3333, "x": 0.02, "y": -16.89, "curve": 0.313, "c3": 0.699}, {"time": 0.6667, "x": -0.04, "y": 2.46, "curve": 0.313, "c3": 0.699}, - {"time": 1, "x": -0.02, "y": -18.9, "curve": 0.313, "c3": 0.699}, {"time": 1.3333} + "rotate": [ + {}, {"time": 0.1667, "angle": -14.05}, {"time": 0.3333, "angle": 13.89}, {"time": 0.5}, {"time": 0.5833, "angle": -12.58}, {"time": 0.75, "angle": 13.89}, {"time": 0.9167}, + {"time": 1.0833, "angle": -12.58} ] }, "@leg-front-left": { - "translate": [ - {"curve": 0.313, "c3": 0.699}, {"time": 0.3333, "x": 0.22, "y": -5.13, "curve": 0.313, "c3": 0.699}, {"time": 0.6667, "x": -0.03, "y": 1.81, "curve": 0.313, "c3": 0.699}, - {"time": 1, "x": 0.2, "y": -7.06, "curve": 0.313, "c3": 0.699}, {"time": 1.3333} - ], - "scale": [ - {"curve": 0.313, "c3": 0.699}, {"time": 0.3333, "x": 0.905, "curve": 0.313, "c3": 0.699}, {"time": 0.6667, "curve": 0.313, "c3": 0.699}, - {"time": 1, "x": 0.905, "curve": 0.313, "c3": 0.699}, {"time": 1.3333} + "rotate": [ + {}, {"time": 0.1667, "angle": -14.05}, {"time": 0.3333, "angle": 13.89}, {"time": 0.5}, {"time": 0.5833, "angle": -12.58}, {"time": 0.75, "angle": 13.89}, {"time": 0.9167}, + {"time": 1.0833, "angle": -12.58} ] }, "@leg-back-left": { - "translate": [ - {"curve": 0.313, "c3": 0.699}, {"time": 0.3333, "x": 0.22, "y": -4.11, "curve": 0.313, "c3": 0.699}, {"time": 0.6667, "x": -0.03, "y": 1.69, "curve": 0.313, "c3": 0.699}, - {"time": 1, "x": 0.2, "y": -5.68, "curve": 0.313, "c3": 0.699}, {"time": 1.3333} - ], - "scale": [ - {"curve": 0.313, "c3": 0.699}, {"time": 0.3333, "x": 0.943, "curve": 0.313, "c3": 0.699}, {"time": 0.6667, "curve": 0.313, "c3": 0.699}, - {"time": 1, "x": 0.943, "curve": 0.313, "c3": 0.699}, {"time": 1.3333} + "rotate": [ + {}, {"time": 0.1667, "angle": -14.05}, {"time": 0.3333, "angle": 13.89}, {"time": 0.5}, {"time": 0.5833, "angle": -12.58}, {"time": 0.75, "angle": 13.89}, {"time": 0.9167}, + {"time": 1.0833, "angle": -12.58} ] }, - "@pivot-main": { + "tail": { + "rotate": [ + {}, {"time": 0.1667, "angle": 14.79}, {"time": 0.25, "angle": -27.83, "curve": "stepped"}, {"time": 0.3333, "angle": -27.83}, {"time": 0.5, "angle": 14.79, "curve": "stepped"}, + {"time": 0.5833, "angle": 14.79}, {"time": 0.6667, "angle": -27.83, "curve": "stepped"}, {"time": 0.75, "angle": -27.83}, {"time": 0.9167}, {"time": 1.0833, "angle": 12.48}, + {"time": 1.15, "angle": 9.69}, {"time": 1.2, "angle": 12.48}, {"time": 1.2333, "angle": 9.69}, {"time": 1.2667, "angle": 12.48}, {"time": 1.3, "angle": 9.69}, + {"time": 1.3333, "angle": 12.48}, {"time": 1.3667, "angle": 9.69}, {"time": 1.4, "angle": 12.48}, {"time": 1.4333, "angle": 9.69}, {"time": 1.4667, "angle": 12.48}, + {"time": 1.5, "angle": 9.69} + ] + }, + "@shadow": { "scale": [ - {"curve": 0.313, "c3": 0.699}, {"time": 0.3333, "y": 0.98, "curve": 0.313, "c3": 0.699}, {"time": 0.6667, "curve": 0.313, "c3": 0.699}, - {"time": 1, "y": 0.98, "curve": 0.313, "c3": 0.699}, {"time": 1.3333} + {}, {"time": 0.1667, "x": 1.1, "y": 1.1}, {"time": 0.3333, "x": 0.9, "y": 0.9}, {"time": 0.5833, "x": 1.1, "y": 1.1}, {"time": 0.75, "x": 0.9, "y": 0.9}, {"time": 0.9167}, + {"time": 1.0833, "x": 1.05, "y": 1.05}, {"time": 1.15}, {"time": 1.2, "x": 1.05, "y": 1.05}, {"time": 1.25}, {"time": 1.3, "x": 1.05, "y": 1.05}, {"time": 1.35}, + {"time": 1.4, "x": 1.05, "y": 1.05}, {"time": 1.45}, {"time": 1.5, "x": 1.05, "y": 1.05} ] + } + } + }, + "4288170902": { + "slots": {"eyes": {"attachment": [{"time": 0.05, "name": "eyes-happy"}, {"time": 0.7667, "name": "eyes"}]}}, + "bones": { + "@pivot-back": { + "rotate": [{}, {"time": 0.1667, "angle": -5.76}, {"time": 0.6667, "angle": -6.67}, {"time": 0.8333, "angle": 2.85}, {"time": 1}], + "translate": [{}, {"time": 0.1667, "x": -11.96, "y": -12.91}, {"time": 0.6667, "x": -17.52, "y": -16.38}, {"time": 0.8333}] }, - "tail": { - "rotate": [{"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "angle": 4.54, "curve": 0.313, "c3": 0.699}, {"time": 1, "angle": -9.06, "curve": 0.313, "c3": 0.699}, {"time": 1.3333}] + "@leg-front-left": { + "translate": [{}, {"time": 0.1667, "x": -20.02, "y": -2.36, "curve": "stepped"}, {"time": 0.6667, "x": -20.02, "y": -2.36}, {"time": 0.8333, "x": 5.31, "y": -7.32}, {"time": 1}] }, - "back": { - "rotate": [{"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "angle": -4.27, "curve": 0.313, "c3": 0.699}, {"time": 1, "angle": 2.83, "curve": 0.313, "c3": 0.699}, {"time": 1.3333}] + "@leg-front-right": {"translate": [{}, {"time": 0.1667, "x": -36.67, "y": 20.01}, {"time": 0.6667, "x": -44.17, "y": 20.3}, {"time": 0.8333, "x": -12.71, "y": -17.14}, {"time": 1}]}, + "@leg-back-left": {"translate": [{"time": 0.1667}, {"time": 0.6667, "x": -4.62, "y": -2.21}, {"time": 0.8333, "x": -0.1, "y": -3.16}, {"time": 1}]}, + "tail": {"rotate": [{}, {"time": 0.1667, "angle": -11.59}, {"time": 0.4167, "angle": 2.75}, {"time": 0.6667, "angle": -13.32}, {"time": 0.8333, "angle": 15.71}, {"time": 1}]}, + "@shadow": {"scale": [{}, {"time": 0.1667, "x": 0.96, "y": 0.96}, {"time": 0.6667, "x": 0.94, "y": 0.94}, {"time": 0.8333, "x": 1.06, "y": 1.06}, {"time": 1}]} + }, + "events": [{"time": 0.1667, "name": "hit-buff"}] + }, + "333978181": { + "slots": { + "eyes": {"attachment": [{"time": 0.05, "name": "eyes-shut"}, {"time": 0.7667, "name": "eyes"}]}, + "mouth": {"attachment": [{"time": 0.05, "name": "mouth-bite"}, {"time": 0.7667, "name": "mouth"}]} + }, + "bones": { + "@pivot-back": { + "rotate": [{}, {"time": 0.1667, "angle": 3.5}, {"time": 0.6667, "angle": 4}, {"time": 0.8333, "angle": -1.98}, {"time": 1}], + "translate": [{}, {"time": 0.1667, "y": 2.9}, {"time": 0.6667, "y": 3.91}, {"time": 0.8333, "y": -2.14}, {"time": 1}] }, - "ear-right": {"rotate": [{"curve": 0.461, "c3": 0.543}, {"time": 0.6667, "angle": -4, "curve": 0.461, "c3": 0.543}, {"time": 1.3333}]}, - "ear-left": {"rotate": [{"curve": 0.461, "c3": 0.543}, {"time": 0.6667, "angle": -4, "curve": 0.461, "c3": 0.543}, {"time": 1.3333}]}, + "@leg-front-right": {"translate": [{}, {"time": 0.1667, "x": -0.92, "y": -19.87}, {"time": 0.6667, "x": -1.14, "y": -21.42}, {"time": 0.8333, "x": -0.43, "y": 9.97}, {"time": 1}]}, + "@leg-front-left": {"translate": [{}, {"time": 0.1667, "x": 7.87, "y": -5.37}, {"time": 0.6667, "x": 9.12, "y": -5.44}, {"time": 0.8333, "x": -0.16, "y": 3.89}, {"time": 1}]}, + "tail": {"rotate": [{}, {"time": 0.1667, "angle": -17.97}, {"time": 0.4167, "angle": -9.96}, {"time": 0.6667, "angle": -19.79}, {"time": 0.8333, "angle": 6.14}, {"time": 1}]} + }, + "events": [{"time": 0.1667, "name": "hit-buff"}] + }, + "2330259298": { + "slots": { + "eyes": {"attachment": [{"time": 0.0167, "name": "eyes-shut"}, {"time": 0.1833, "name": "eyes-angry"}, {"time": 0.4, "name": "eyes"}]}, + "mouth": {"attachment": [{"time": 0.0167, "name": "mouth-bite"}, {"time": 0.4, "name": "mouth"}]} + }, + "bones": { + "@pivot-back": { + "rotate": [{"curve": "stepped"}, {"time": 0.0167, "angle": -20}, {"time": 0.1667, "angle": -22}, {"time": 0.3167, "angle": 5.2}, {"time": 0.4167}], + "translate": [{"curve": "stepped"}, {"time": 0.0167, "x": 75, "y": -4.42}, {"time": 0.1667, "x": 80, "y": -7.47}, {"time": 0.3167}] + }, + "@leg-front-left": {"translate": [{"time": 0.1667}, {"time": 0.3167, "x": -1.1, "y": -14.87}, {"time": 0.4167}]}, "@shadow": { - "scale": [ - {"curve": 0.306, "c3": 0.695}, {"time": 0.3333, "x": 1.05, "y": 1.05, "curve": 0.306, "c3": 0.695}, {"time": 0.6667, "curve": 0.306, "c3": 0.695}, - {"time": 1, "x": 1.05, "y": 1.05, "curve": 0.306, "c3": 0.695}, {"time": 1.3333} - ] + "translate": [{"curve": "stepped"}, {"time": 0.0167, "x": 70.3, "curve": "stepped"}, {"time": 0.1667, "x": 70.3}, {"time": 0.3167, "x": 12.49}, {"time": 0.4167}], + "scale": [{"curve": "stepped"}, {"time": 0.0167, "x": 0.98, "y": 0.98}, {"time": 0.1667}, {"time": 0.3167, "x": 1.08, "y": 1.08}, {"time": 0.4167}] + }, + "leg-back-left-IK": {"translate": [{"curve": "stepped"}, {"time": 0.0167, "x": 20.18, "y": 0.9, "curve": "stepped"}, {"time": 0.1667, "x": 20.18, "y": 0.9}, {"time": 0.3333}]}, + "@leg-back-left": {"translate": [{"curve": "stepped"}, {"time": 0.0167, "x": -0.94, "y": 4.51, "curve": "stepped"}, {"time": 0.1667, "x": -0.94, "y": 4.51}, {"time": 0.3167}]}, + "@pivot-main": {"translate": [{"curve": "stepped"}, {"time": 0.0167, "x": 20, "curve": "stepped"}, {"time": 0.3167, "x": 20}, {"time": 0.4167}]}, + "@leg-front-right": {"translate": [{"time": 0.1667}, {"time": 0.3167, "x": -2.11, "y": -28.46}, {"time": 0.4167}]}, + "tail": {"rotate": [{"curve": "stepped"}, {"time": 0.0167, "angle": 19}, {"time": 0.1667, "angle": 23.91}, {"time": 0.3167, "angle": -21.75}, {"time": 0.4167}]}, + "leg-front-right-IK": { + "translate": [{"curve": "stepped"}, {"time": 0.0167, "x": 44.88, "y": 143.25}, {"time": 0.0833, "x": -0.81, "y": 175.84}, {"time": 0.1667, "x": 46.95, "y": 154.35}, {"time": 0.3167}] + }, + "leg-front-left-IK": { + "translate": [{"curve": "stepped"}, {"time": 0.0167, "x": -4.98, "y": 86.81}, {"time": 0.0833, "x": 23.52, "y": 63.22}, {"time": 0.1667, "x": -2.69, "y": 90.83}, {"time": 0.3167}] } } }, - "880116349": { + "2907251534": { "slots": { - "ball": { - "color": [ - {"color": "ffffff00", "curve": "stepped"}, {"time": 0.1667, "color": "ffffff00", "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "color": "ffffffff", "curve": "stepped"}, - {"time": 2.9167, "color": "ffffffff", "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 3.0833, "color": "ffffff00"} - ], - "attachment": [{"name": "ball"}] + "eyes": {"attachment": [{"time": 0.0167, "name": "eyes-shut"}, {"time": 0.1833, "name": "eyes-angry"}, {"time": 0.4, "name": "eyes"}]}, + "mouth": {"attachment": [{"time": 0.0167, "name": "mouth-bite"}, {"time": 0.4, "name": "mouth"}]} + }, + "bones": { + "tail": {"rotate": [{"curve": "stepped"}, {"time": 0.0167, "angle": 35.35}, {"time": 0.1667, "angle": 50.35}, {"time": 0.3167, "angle": -21.75}, {"time": 0.4167}]}, + "leg-front-right-IK": {"translate": [{"curve": "stepped"}, {"time": 0.0167, "x": 74.76, "y": 322.04}, {"time": 0.1667, "x": 85.96, "y": 349.35}, {"time": 0.3167}]}, + "@pivot-back": { + "rotate": [{"curve": "stepped"}, {"time": 0.0167, "angle": -45}, {"time": 0.1667, "angle": -50}, {"time": 0.3167, "angle": 5.2}, {"time": 0.4167}], + "translate": [{"curve": "stepped"}, {"time": 0.0167, "x": 94.99, "y": -21}, {"time": 0.1667, "x": 107, "y": -60}, {"time": 0.3167}] }, - "eyes": {"attachment": [{"time": 0.5, "name": "eyes-shut"}, {"time": 0.5833, "name": "eyes"}, {"time": 3.0833, "name": "eyes-shut"}, {"time": 3.1667, "name": "eyes"}]}, - "mouth": {"attachment": [{"time": 0.1833, "name": "mouth-open"}, {"time": 0.5, "name": "mouth"}, {"time": 2.7667, "name": "mouth-open"}, {"time": 2.9167, "name": "mouth"}]} + "@shadow": { + "translate": [{"curve": "stepped"}, {"time": 0.0167, "x": 70.3, "curve": "stepped"}, {"time": 0.1667, "x": 70.3}, {"time": 0.3167, "x": 12.49}, {"time": 0.4167}], + "scale": [{"curve": "stepped"}, {"time": 0.0167, "x": 0.98, "y": 0.98}, {"time": 0.1667}, {"time": 0.3167, "x": 1.08, "y": 1.08}, {"time": 0.4167}] + }, + "leg-back-left-IK": {"translate": [{"curve": "stepped"}, {"time": 0.0167, "x": 11.67, "y": 0.9, "curve": "stepped"}, {"time": 0.1667, "x": 11.67, "y": 0.9}, {"time": 0.3333}]}, + "@leg-back-left": {"translate": [{"curve": "stepped"}, {"time": 0.0167, "x": -2.63, "y": 8.92}, {"time": 0.1667, "x": 18.61, "y": -8.3}, {"time": 0.3167}]}, + "@pivot-main": {"translate": [{"curve": "stepped"}, {"time": 0.0167, "x": 20, "curve": "stepped"}, {"time": 0.3167, "x": 20}, {"time": 0.4167}]}, + "leg-front-left-IK": {"translate": [{"curve": "stepped"}, {"time": 0.0167, "x": -4.7, "y": 168.09}, {"time": 0.1667, "x": 6.72, "y": 174.87}, {"time": 0.3167}]}, + "@leg-front-left": {"translate": [{"time": 0.1667}, {"time": 0.3167, "x": -1.1, "y": -14.87}, {"time": 0.4167}]}, + "@leg-front-right": {"translate": [{"time": 0.1667}, {"time": 0.3167, "x": -2.11, "y": -28.46}, {"time": 0.4167}]} + } + }, + "3476801918": { + "slots": { + "eyes": {"attachment": [{"time": 0.0167, "name": "eyes-shut"}, {"time": 0.5833, "name": "eyes-angry"}, {"time": 0.8333, "name": "eyes-shut"}, {"time": 0.9167, "name": "eyes"}]}, + "mouth": {"attachment": [{"time": 0.0167, "name": "mouth-bite"}, {"time": 0.6667, "name": "mouth-open"}, {"time": 0.8333, "name": "mouth"}]} }, "bones": { "@pivot-back": { "rotate": [ - {"curve": 0, "c2": 0.3, "c3": 0.546}, {"time": 0.1667, "angle": 6, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "angle": -6.98, "curve": 0.464, "c4": 0.7}, - {"time": 0.5, "angle": 3, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.6667, "curve": "stepped"}, {"time": 2.5833, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 2.75, "angle": 6, "curve": 0, "c2": 0.3, "c3": 0.546}, {"time": 2.9167, "angle": -6, "curve": 0.464, "c4": 0.7}, - {"time": 3.0833, "angle": 6, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 3.25} + {"curve": "stepped"}, {"time": 0.0167, "angle": -45}, {"time": 0.1, "angle": -85, "curve": "stepped"}, {"time": 0.6667, "angle": -85}, {"time": 0.8333, "angle": 6}, {"time": 1} ], "translate": [ - {"curve": 0, "c2": 0.3, "c3": 0.546}, {"time": 0.1667, "y": 1.78, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "y": 353.14, "curve": 0.464, "c4": 0.7}, - {"time": 0.5, "y": 255, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.6667, "y": 267.67, "curve": 0.156, "c3": 0.693}, - {"time": 1.1667, "x": -30, "y": 267.67, "curve": 0.317, "c3": 0.693}, {"time": 2.1667, "x": 50, "y": 267.67, "curve": 0.317, "c3": 0.693}, - {"time": 2.5833, "y": 267.67, "curve": "stepped"}, {"time": 2.75, "y": 267.67, "curve": 0, "c2": 0.3, "c3": 0.546}, {"time": 2.9167, "y": 310, "curve": 0.464, "c4": 0.7}, - {"time": 3.0833} + {"curve": "stepped"}, {"time": 0.0167, "x": 94.99, "y": -21}, {"time": 0.05, "x": 256.42, "y": -60}, {"time": 0.1, "x": 408.25, "y": -188, "curve": "stepped"}, + {"time": 0.6667, "x": 408.25, "y": -188}, {"time": 0.8333, "y": 12.75}, {"time": 1} ] }, - "@leg-front-right": { + "@shadow": { "translate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": -2.8, "y": -31.7, "curve": 0, "c2": 0.3, "c3": 0.546}, {"time": 0.25, "curve": "stepped"}, - {"time": 2.5833, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 2.75, "x": -2.8, "y": -31.7, "curve": 0.315, "c4": 0.8}, {"time": 2.8333, "curve": "stepped"}, - {"time": 3, "curve": 0.315, "c4": 0.8}, {"time": 3.0833, "x": -2.86, "y": -32.44, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 3.25} - ] - }, - "@leg-front-left": { - "translate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": -1.46, "y": -16.59, "curve": 0, "c2": 0.3, "c3": 0.546}, {"time": 0.25, "curve": "stepped"}, - {"time": 2.5833, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 2.75, "x": -1.46, "y": -16.59, "curve": 0.315, "c4": 0.8}, {"time": 2.8333, "curve": "stepped"}, - {"time": 3, "curve": 0.315, "c4": 0.8}, {"time": 3.0833, "x": -1.64, "y": -18.64, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 3.25} + {"curve": "stepped"}, {"time": 0.0167, "x": 144.17}, {"time": 0.1, "x": 589.27}, {"time": 0.25, "x": 627.48}, {"time": 0.4167, "x": 576.87}, {"time": 0.55, "x": 602.83}, + {"time": 0.6667, "x": 576.87}, {"time": 0.8333} + ], + "scale": [ + {"curve": "stepped"}, {"time": 0.0167, "x": 0.92, "y": 0.92}, {"time": 0.1}, {"time": 0.25, "x": 1.04, "y": 1.04, "curve": "stepped"}, {"time": 0.6667, "x": 1.04, "y": 1.04}, + {"time": 0.8333, "x": 1.1, "y": 1.1}, {"time": 1} ] }, - "leg-front-left-IK": { + "@leg-back-left": {"translate": [{"curve": "stepped"}, {"time": 0.0167, "x": 6.4, "y": 0.19}, {"time": 0.1667}]}, + "leg-front-right-IK": { "translate": [ - {"time": 0.1667, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "x": -6.9, "y": 380.8, "curve": 0.315, "c4": 0.8}, {"time": 0.5, "x": -5.5, "y": 268.35, "curve": "stepped"}, - {"time": 0.6667, "x": -5.5, "y": 268.35, "curve": 0.317, "c3": 0.693}, {"time": 0.9167, "x": -38.87, "y": 268.35, "curve": 0.317, "c3": 0.693}, - {"time": 1.1667, "x": -10.16, "y": 268.35, "curve": 0.317, "c3": 0.693}, {"time": 1.4167, "x": -39.65, "y": 268.35, "curve": 0.317, "c3": 0.693}, - {"time": 1.6667, "x": 23.98, "y": 268.35, "curve": 0.317, "c3": 0.693}, {"time": 1.9167, "x": 5.36, "y": 268.35, "curve": 0.317, "c3": 0.693}, - {"time": 2.1667, "x": 67.44, "y": 268.35, "curve": 0.317, "c3": 0.693}, {"time": 2.4167, "x": -3.95, "y": 268.35, "curve": 0.317, "c3": 0.693}, - {"time": 2.5833, "x": -5.5, "y": 268.35, "curve": "stepped"}, {"time": 2.9167, "x": -5.5, "y": 268.35, "curve": 0.315, "c4": 0.8}, {"time": 3.0833} + {"curve": "stepped"}, {"time": 0.0167, "x": 69.67, "y": 327.04}, {"time": 0.05, "x": 451.04, "y": 582.91}, {"time": 0.0833, "x": 787.85, "y": 470.29}, + {"time": 0.1, "x": 945.09, "y": 394.99}, {"time": 0.25, "x": 1086.85, "y": 338.86}, {"time": 0.4167, "x": 921.41, "y": 410.91}, {"time": 0.5833, "x": 1028.37, "y": 385.44}, + {"time": 0.6667, "x": 914.82, "y": 422.49}, {"time": 0.7, "x": 413.58, "y": 458.44}, {"time": 0.75, "x": 45.46, "y": 287.09}, {"time": 0.7833, "x": -34.18, "y": 117.59}, {"time": 0.8333} ] }, - "leg-front-right-IK": { - "translate": [ - {"time": 0.1667, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "x": -6.9, "y": 397.8, "curve": 0.315, "c4": 0.8}, {"time": 0.5, "x": 15.4, "y": 268.08, "curve": "stepped"}, - {"time": 0.6667, "x": 15.4, "y": 268.08, "curve": 0.317, "c3": 0.693}, {"time": 0.9167, "x": 24.64, "y": 268.08, "curve": 0.317, "c3": 0.693}, - {"time": 1.1667, "x": -41.71, "y": 268.08, "curve": 0.317, "c3": 0.693}, {"time": 1.4167, "x": 22.12, "y": 268.08, "curve": 0.317, "c3": 0.693}, - {"time": 1.6667, "x": -0.56, "y": 268.08, "curve": 0.317, "c3": 0.693}, {"time": 1.9167, "x": 61.6, "y": 268.08, "curve": 0.317, "c3": 0.693}, - {"time": 2.1667, "x": 33.88, "y": 268.08, "curve": 0.317, "c3": 0.693}, {"time": 2.4167, "x": 49, "y": 268.08, "curve": 0.317, "c3": 0.693}, - {"time": 2.5833, "x": 15.4, "y": 268.08, "curve": "stepped"}, {"time": 2.9167, "x": 15.4, "y": 268.08, "curve": 0.315, "c4": 0.8}, {"time": 3.0833} + "tail": { + "rotate": [ + {"curve": "stepped"}, {"time": 0.0167, "angle": 35.35}, {"time": 0.1, "angle": -18.03}, {"time": 0.25, "angle": 12.69}, {"time": 0.4167, "angle": -15.12}, + {"time": 0.6667, "angle": 1.29}, {"time": 0.8333, "angle": 19.35}, {"time": 1} ] }, "leg-back-left-IK": { "translate": [ - {"time": 0.1667, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "x": -0.4, "y": 363.25, "curve": 0.315, "c4": 0.8}, {"time": 0.5, "x": -26.16, "y": 267.01}, - {"time": 0.6667, "x": -33.59, "y": 267.01, "curve": 0.317, "c3": 0.693}, {"time": 0.9167, "x": -22.32, "y": 267.01, "curve": 0.317, "c3": 0.693}, - {"time": 1.1667, "x": -63.32, "y": 267.01, "curve": 0.317, "c3": 0.693}, {"time": 1.4167, "x": -28.35, "y": 267.01, "curve": 0.317, "c3": 0.693}, - {"time": 1.6667, "x": -28.02, "y": 267.01, "curve": 0.317, "c3": 0.693}, {"time": 1.9167, "x": 14.36, "y": 267.01, "curve": 0.317, "c3": 0.693}, - {"time": 2.1667, "x": 9.14, "y": 267.01, "curve": 0.317, "c3": 0.693}, {"time": 2.4167, "x": 11.99, "y": 267.01, "curve": 0.317, "c3": 0.693}, - {"time": 2.6667, "x": -33.59, "y": 267.01, "curve": "stepped"}, {"time": 2.9167, "x": -33.59, "y": 267.01, "curve": 0.315, "c4": 0.8}, {"time": 3.0833} + {"curve": "stepped"}, {"time": 0.0167, "x": -3.7, "y": 19.91}, {"time": 0.05, "x": -86.78, "y": 121.52}, {"time": 0.1, "x": 129.15, "y": 364.61}, {"time": 0.25, "x": 262.18, "y": 406.7}, + {"time": 0.4167, "x": 109.91, "y": 347.96}, {"time": 0.5833, "x": 216.28, "y": 393.95}, {"time": 0.6667, "x": 118.81, "y": 360.02}, {"time": 0.7, "x": -121.03, "y": 41.31}, + {"time": 0.75, "x": -95.31, "y": -47.01}, {"time": 0.7833, "x": 22.31, "y": -53.8}, {"time": 0.8333} ] }, - "@ball": { - "rotate": [ - {"time": 0.6667, "curve": 0.156, "c3": 0.693}, {"time": 1.1667, "angle": 18, "curve": 0.317, "c3": 0.693}, {"time": 2.1667, "angle": -18, "curve": 0.317, "c3": 0.693}, {"time": 2.75} - ], + "leg-front-left-IK": { "translate": [ - {"time": 0.6667, "curve": 0.156, "c3": 0.693}, {"time": 1.1667, "x": -32, "curve": 0.317, "c3": 0.693}, {"time": 2.1667, "x": 32, "curve": 0.317, "c3": 0.693}, {"time": 2.75} - ], - "scale": [ - {"x": 0, "y": 0, "curve": "stepped"}, {"time": 0.1667, "x": 0, "y": 0, "curve": 0, "c2": 0.6, "c3": 0.237}, {"time": 0.3333, "x": 1.2, "y": 1.2, "curve": 0.315, "c4": 0.8}, - {"time": 0.5, "curve": "stepped"}, {"time": 2.75, "curve": 0, "c2": 0.3, "c3": 0.546}, {"time": 2.9167, "x": 1.2, "y": 1.2, "curve": 0.315, "c4": 0.8}, {"time": 3.0833, "x": 0, "y": 0} - ] - }, - "ball": { - "scale": [ - {"time": 0.3333, "curve": 0.617, "c4": 0.6}, {"time": 0.5, "x": 1.2, "y": 0.9, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.6667, "curve": "stepped"}, - {"time": 2.5833, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 2.75, "x": 1.2, "y": 0.9, "curve": 0, "c2": 0.3, "c3": 0.546}, {"time": 2.9167} + {"curve": "stepped"}, {"time": 0.0167, "x": -5.8, "y": 177.99}, {"time": 0.05, "x": 106.35, "y": 306.87}, {"time": 0.0833, "x": 355.94, "y": 424.69}, + {"time": 0.1, "x": 515.46, "y": 408.14}, {"time": 0.25, "x": 536.35, "y": 423.87}, {"time": 0.4167, "x": 492.39, "y": 405.73}, {"time": 0.6667, "x": 482.36, "y": 419.06}, + {"time": 0.7, "x": 97.67, "y": 283.45}, {"time": 0.75, "x": -12.16, "y": 45.82}, {"time": 0.7833, "x": -31.56, "y": 29.02}, {"time": 0.8333} ] }, "@pivot-center": { "rotate": [ - {"time": 0.6667, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.9167, "angle": 2, "curve": 0.461, "c3": 0.543}, {"time": 1.4167, "angle": -2, "curve": 0.461, "c3": 0.543}, - {"time": 1.9167, "angle": 2, "curve": 0.461, "c3": 0.543}, {"time": 2.4167, "angle": -2, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 2.75} + {"time": 0.0167}, {"time": 0.1, "angle": -95}, {"time": 0.25, "angle": -105}, {"time": 0.4167, "angle": -90}, {"time": 0.55, "angle": -100}, {"time": 0.6667, "angle": -90}, + {"time": 0.8333} + ], + "translate": [ + {"time": 0.1}, {"time": 0.25, "x": 1.68, "y": 38.2}, {"time": 0.4167, "x": -2.73, "y": -12.21}, {"time": 0.55, "x": -0.47, "y": 13.65}, {"time": 0.6667, "x": -2.73, "y": -12.21}, + {"time": 0.8333} ] }, - "@shadow": { - "translate": [ - {"time": 0.6667, "curve": 0.317, "c3": 0.693}, {"time": 1.1667, "x": -32, "curve": 0.317, "c3": 0.693}, {"time": 2.1667, "x": 32, "curve": 0.317, "c3": 0.693}, {"time": 2.5833} - ], + "@pivot-main": { + "translate": [{"time": 0.6667}, {"time": 0.75, "y": 150}, {"time": 0.8333}], "scale": [ - {"curve": 0, "c2": 0.3, "c3": 0.546}, {"time": 0.1667, "x": 1.1, "y": 1.1, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "curve": 0.464, "c4": 0.7}, - {"time": 0.5, "x": 1.06, "y": 1.06, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.6667, "curve": "stepped"}, {"time": 2.5833, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 2.75, "x": 1.06, "y": 1.06, "curve": 0, "c2": 0.3, "c3": 0.546}, {"time": 2.9167, "curve": 0.464, "c4": 0.7}, - {"time": 3.0833, "x": 1.1, "y": 1.1, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 3.25} + {"time": 0.1}, {"time": 0.1667, "y": 0.93}, {"time": 0.25, "curve": "stepped"}, {"time": 0.5667}, {"time": 0.65, "y": 0.7}, {"time": 0.7333, "curve": "stepped"}, {"time": 0.8333}, + {"time": 0.9167, "y": 0.98}, {"time": 1} ] }, - "tail": { - "rotate": [ - {"curve": 0, "c2": 0.3, "c3": 0.546}, {"time": 0.1667, "angle": 17.35, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "angle": -14.67, "curve": 0.464, "c4": 0.7}, - {"time": 0.5, "angle": 19.12, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.6667, "angle": -10.65, "curve": 0.317, "c3": 0.693}, - {"time": 0.9167, "angle": -0.65, "curve": 0.317, "c3": 0.693}, {"time": 1.1667, "angle": -10.65, "curve": 0.317, "c3": 0.693}, - {"time": 1.4167, "angle": -0.65, "curve": 0.317, "c3": 0.693}, {"time": 1.6667, "angle": -10.65, "curve": 0.317, "c3": 0.693}, - {"time": 1.9167, "angle": -0.65, "curve": 0.317, "c3": 0.693}, {"time": 2.1667, "angle": -10.65, "curve": 0.317, "c3": 0.693}, - {"time": 2.4167, "angle": -0.65, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 2.5833, "angle": -10.65, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 2.75, "angle": 19.35, "curve": 0, "c2": 0.3, "c3": 0.546}, {"time": 2.9167, "angle": -18.65, "curve": 0, "c2": 0.3, "c3": 0.546}, - {"time": 3.0833, "angle": 17.35, "curve": 0.317, "c3": 0.693}, {"time": 3.25} - ] - } + "@leg-front-right": {"translate": [{"time": 0.75}, {"time": 0.8333, "x": -2.23, "y": -25.27}, {"time": 1}]} } }, - "4155096617": { + "3241238139": { "slots": { - "eyes": {"attachment": [{"time": 0.1, "name": "eyes-shut"}, {"time": 1, "name": "eyes"}]}, - "leg-back-left": {"attachment": [{"time": 0.0667, "name": "xmas-leg-back-left-long"}, {"time": 0.9, "name": "xmas-leg-back-left"}]} + "eyes": {"attachment": [{"time": 0.0167, "name": "eyes-shut"}, {"time": 0.3, "name": "eyes-angry"}, {"time": 0.4833, "name": "eyes"}]}, + "mouth": {"attachment": [{"time": 0.0167, "name": "mouth-bite"}, {"time": 0.4833, "name": "mouth"}]} }, "bones": { "@pivot-back": { + "rotate": [{"curve": "stepped"}, {"time": 0.0167, "angle": 8}, {"time": 0.2333, "angle": 10}, {"time": 0.3333, "angle": -5}, {"time": 0.4833, "angle": 5}, {"time": 0.5833}], + "translate": [{"curve": "stepped"}, {"time": 0.0167, "x": 29.16, "y": 6.28}, {"time": 0.2667, "x": 18.48, "y": 18.85}, {"time": 0.3833, "x": -1.17, "y": 18.85}, {"time": 0.4833}] + }, + "@shadow": { + "translate": [{"curve": "stepped"}, {"time": 0.0167, "x": 33.22}, {"time": 0.2667, "x": 61.08}, {"time": 0.3833, "x": 9.02}, {"time": 0.4833}], + "scale": [ + {"curve": "stepped"}, {"time": 0.0167, "x": 1.1, "y": 1.1, "curve": "stepped"}, {"time": 0.2667, "x": 1.1, "y": 1.1}, {"time": 0.3833, "x": 0.98, "y": 0.98}, + {"time": 0.4833, "x": 1.1, "y": 1.1}, {"time": 0.5833} + ] + }, + "@pivot-main": {"translate": [{"curve": "stepped"}, {"time": 0.0167, "x": 33.18}, {"time": 0.2667, "x": 61.52}, {"time": 0.3833, "x": 20.27, "y": 27.91}, {"time": 0.4833}]}, + "tail": { "rotate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "angle": -18, "curve": 0.317, "c3": 0.693}, {"time": 0.3333, "angle": -17, "curve": 0.317, "c3": 0.693}, - {"time": 0.5, "angle": -18, "curve": 0.317, "c3": 0.693}, {"time": 0.6667, "angle": -17, "curve": 0.317, "c3": 0.693}, {"time": 0.8333, "angle": -18, "curve": 0.317, "c3": 0.693}, - {"time": 1.0833} - ], - "translate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": 33.94, "y": -52, "curve": "stepped"}, {"time": 0.8333, "x": 33.94, "y": -52, "curve": 0.317, "c3": 0.693}, {"time": 1.0833} + {"curve": "stepped"}, {"time": 0.0167, "angle": -18.65}, {"time": 0.2333, "angle": -21.65}, {"time": 0.3333, "angle": -13.3}, {"time": 0.45, "angle": 12.04}, + {"time": 0.5167, "angle": -9.14}, {"time": 0.5833} ] }, + "leg-front-right-IK": {"translate": [{"time": 0.2333}, {"time": 0.3333, "x": 22.26, "y": 54.13}, {"time": 0.3833, "x": 28.04, "y": 49.32}, {"time": 0.45}]}, "@leg-front-left": { "translate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": -27.99, "y": 1.7, "curve": 0.25, "c3": 0.75}, {"time": 0.3333, "x": -26.93, "y": -1.56, "curve": 0.25, "c3": 0.75}, - {"time": 0.5, "x": -27.99, "y": 1.7, "curve": 0.25, "c3": 0.75}, {"time": 0.6667, "x": -26.93, "y": -1.56, "curve": 0.25, "c3": 0.75}, - {"time": 0.8333, "x": -27.99, "y": 1.7, "curve": 0.317, "c3": 0.693}, {"time": 1.0833} + {"curve": "stepped"}, {"time": 0.0167, "x": -0.45, "y": -3.93}, {"time": 0.2333, "x": -0.82, "y": -2.61}, {"time": 0.3333, "x": -5.6, "y": -0.89}, + {"time": 0.45, "x": -1.09, "y": -14.69}, {"time": 0.5833} ] }, - "@leg-front-right": { + "leg-back-left-IK": { "translate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": -84.32, "y": 39.72, "curve": 0.317, "c3": 0.693}, {"time": 0.3333, "x": -82.71, "y": 34.75, "curve": 0.317, "c3": 0.693}, - {"time": 0.5, "x": -84.32, "y": 39.72, "curve": 0.317, "c3": 0.693}, {"time": 0.6667, "x": -82.71, "y": 34.75, "curve": 0.317, "c3": 0.693}, - {"time": 0.8333, "x": -84.32, "y": 39.72, "curve": 0.317, "c3": 0.693}, {"time": 1.0833} + {"curve": "stepped"}, {"time": 0.0167, "x": 50.74, "y": 0.9, "curve": "stepped"}, {"time": 0.2, "x": 50.74, "y": 0.9}, {"time": 0.25, "x": 12.5, "y": 6.45}, + {"time": 0.3667, "x": 5.47, "y": 26.12}, {"time": 0.4833} ] }, - "leg-front-right-IK": { - "translate": [{"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": 40.32, "curve": "stepped"}, {"time": 0.8333, "x": 40.32, "curve": 0.317, "c3": 0.693}, {"time": 1.0833}] + "@leg-front-right": { + "translate": [{"time": 0.0167}, {"time": 0.3333, "x": -7.53, "y": 2.3}, {"time": 0.45, "x": 0.15, "y": -4.26}, {"time": 0.4833, "x": -2.34, "y": -28.14}, {"time": 0.5833}] }, + "@leg-back-left": {"translate": [{"curve": "stepped"}, {"time": 0.0167, "x": 18.74, "y": 14.65, "curve": "stepped"}, {"time": 0.1667, "x": 18.74, "y": 14.65}, {"time": 0.4833}]}, "leg-front-left-IK": { - "translate": [{"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": 26.51, "curve": "stepped"}, {"time": 0.8333, "x": 26.51, "curve": 0.317, "c3": 0.693}, {"time": 1.0833}] - }, - "leg-back-left-IK": { "translate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": -30.93, "y": 88.63, "curve": 0.617, "c4": 0.6}, {"time": 0.2667, "x": -62.81, "y": 72.23, "curve": 0, "c2": 0.4, "c3": 0.383}, - {"time": 0.35, "x": -28.19, "y": 96.83, "curve": 0.617, "c4": 0.6}, {"time": 0.45, "x": -62.81, "y": 72.23, "curve": 0, "c2": 0.4, "c3": 0.383}, - {"time": 0.55, "x": -28.19, "y": 96.83, "curve": 0.617, "c4": 0.6}, {"time": 0.6333, "x": -62.81, "y": 72.23, "curve": 0, "c2": 0.4, "c3": 0.383}, - {"time": 0.7333, "x": -28.19, "y": 96.83, "curve": 0.434, "c3": 0.739, "c4": 0.4}, {"time": 0.8333, "x": -56.92, "y": 76.7, "curve": 0.223, "c2": 0.33, "c3": 0.336}, {"time": 1.0833} - ] - }, - "tail": { - "rotate": [ - {"curve": 0, "c2": 0.3, "c3": 0.546}, {"time": 0.1667, "angle": 25.35, "curve": 0.317, "c3": 0.693}, {"time": 0.3333, "angle": 33.35, "curve": 0.317, "c3": 0.693}, - {"time": 0.5, "angle": 25.35, "curve": 0.317, "c3": 0.693}, {"time": 0.6667, "angle": 33.35, "curve": 0.317, "c3": 0.693}, - {"time": 0.9167, "angle": 25.35, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 1.0833} - ] - }, - "@shadow": { - "translate": [{"curve": 0, "c2": 0.3, "c3": 0.546}, {"time": 0.1667, "x": 32.73, "curve": "stepped"}, {"time": 0.8333, "x": 32.73, "curve": 0.317, "c3": 0.693}, {"time": 1.0833}], - "scale": [ - {"time": 0.1667, "curve": 0.317, "c3": 0.693}, {"time": 0.25, "x": 1.02, "y": 1.02, "curve": 0.317, "c3": 0.693}, {"time": 0.3333, "curve": 0.317, "c3": 0.693}, - {"time": 0.4167, "x": 1.02, "y": 1.02, "curve": 0.317, "c3": 0.693}, {"time": 0.5, "curve": 0.317, "c3": 0.693}, {"time": 0.5833, "x": 1.02, "y": 1.02, "curve": 0.317, "c3": 0.693}, - {"time": 0.6667, "curve": 0.317, "c3": 0.693}, {"time": 0.8333, "x": 1.02, "y": 1.02, "curve": 0.317, "c3": 0.693}, {"time": 1.0833} + {"curve": "stepped"}, {"time": 0.0167, "x": 38.52}, {"time": 0.2333, "x": 38.87}, {"time": 0.3333, "x": 26.12, "y": 38.71}, {"time": 0.3833, "x": 12.33, "y": 29.93}, {"time": 0.45} ] } } }, - "2146505268": { - "slots": {"eyes": {"attachment": [{"time": 0.05, "name": "eyes-shut"}, {"time": 2.0833, "name": "eyes"}]}}, + "3504379809": { + "slots": { + "eyes": {"attachment": [{"time": 0.0167, "name": "eyes-angry"}, {"time": 0.25, "name": "eyes-shut"}, {"time": 0.3, "name": "eyes-angry"}, {"time": 0.4333, "name": "eyes"}]}, + "mouth": {"attachment": [{"time": 0.0167, "name": "mouth-bite"}, {"time": 0.3, "name": "mouth-open"}, {"time": 0.4333, "name": "mouth"}]} + }, "bones": { "@pivot-back": { - "rotate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "angle": 6, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.4833, "angle": 7, "curve": 0.317, "c3": 0.693}, - {"time": 0.55, "angle": 6.5, "curve": 0.317, "c3": 0.693}, {"time": 0.6167, "angle": 7, "curve": 0.317, "c3": 0.693}, {"time": 0.6833, "angle": 6.5, "curve": 0, "c2": 0.1, "c3": 0.85}, - {"time": 0.9167, "angle": 8, "curve": 0.317, "c3": 0.693}, {"time": 1.3333, "angle": -7, "curve": 0.461, "c3": 0.543}, {"time": 1.9167, "angle": -9, "curve": 0.154, "c4": 0.9}, - {"time": 2.1667, "angle": 3, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 2.3333} - ], + "rotate": [{"curve": "stepped"}, {"time": 0.0167, "angle": 7.5}, {"time": 0.2333, "angle": 10}, {"time": 0.3333, "angle": -5}, {"time": 0.4833, "angle": 5}, {"time": 0.5833}], "translate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "x": 7, "y": 6, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.9167, "x": 11, "y": 10, "curve": 0.317, "c3": 0.693}, - {"time": 1.3333, "x": -45, "y": -14, "curve": 0.461, "c3": 0.543}, {"time": 1.9167, "x": -45, "y": -18, "curve": 0.154, "c4": 0.9}, - {"time": 2.1667, "y": 4.23, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 2.3333} + {"curve": "stepped"}, {"time": 0.0167, "x": 29.16, "y": 18.85, "curve": "stepped"}, {"time": 0.2667, "x": 29.16, "y": 18.85}, {"time": 0.3833, "x": -1.17, "y": 18.85}, {"time": 0.4833} ] }, - "@leg-front-right": { + "leg-back-left-IK": { "translate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "x": -2.08, "y": -23.58, "curve": "stepped"}, {"time": 0.9167, "x": -2.08, "y": -23.58, "curve": 0.317, "c3": 0.693}, - {"time": 1.3333, "x": -56.51, "y": 25.21, "curve": 0.461, "c3": 0.543}, {"time": 1.9167, "x": -57.58, "y": 31.33, "curve": 0.154, "c4": 0.9}, - {"time": 2.1667, "x": -1.95, "y": -12.95, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 2.3333} + {"curve": "stepped"}, {"time": 0.0167, "x": 50.74, "y": 0.9, "curve": "stepped"}, {"time": 0.2, "x": 50.74, "y": 0.9}, {"time": 0.25, "x": 12.5, "y": 6.45}, + {"time": 0.3667, "x": 5.47, "y": 26.12}, {"time": 0.4833} ] }, + "@leg-back-left": {"translate": [{"curve": "stepped"}, {"time": 0.0167, "x": 18.74, "y": 14.65, "curve": "stepped"}, {"time": 0.1667, "x": 18.74, "y": 14.65}, {"time": 0.4833}]}, "@leg-front-left": { "translate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "x": -0.92, "y": -10.48, "curve": "stepped"}, {"time": 0.9167, "x": -0.92, "y": -10.48, "curve": 0.317, "c3": 0.693}, - {"time": 1.3333, "x": -48.7, "y": 5.49, "curve": 0.461, "c3": 0.543}, {"time": 1.9167, "x": -49.1, "y": 7.78, "curve": 0.154, "c4": 0.9}, - {"time": 2.1667, "x": -0.87, "y": -4.98, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 2.3333} + {"curve": "stepped"}, {"time": 0.0167, "x": -0.45, "y": -3.93}, {"time": 0.2333, "x": -0.82, "y": -2.61}, {"time": 0.3333, "x": -5.6, "y": -0.89}, + {"time": 0.45, "x": -1.09, "y": -14.69}, {"time": 0.5833} ] }, - "@leg-back-left": { - "translate": [ - {"time": 0.25}, {"time": 0.9167, "x": 0.52, "y": 4.2, "curve": 0.317, "c3": 0.693}, {"time": 1.3333, "x": -2.48, "y": -1.61, "curve": "stepped"}, - {"time": 1.9167, "x": -2.48, "y": -1.61, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 2.1667} - ] + "@leg-front-right": { + "translate": [{"time": 0.0167}, {"time": 0.3333, "x": -7.53, "y": 2.3}, {"time": 0.45, "x": 0.15, "y": -4.26}, {"time": 0.4833, "x": -2.34, "y": -28.14}, {"time": 0.5833}] }, + "@pivot-main": {"translate": [{"curve": "stepped"}, {"time": 0.0167, "x": 33.18}, {"time": 0.2667, "x": 61.52}, {"time": 0.3833, "x": 20.27, "y": 27.91}, {"time": 0.4833}]}, + "leg-front-right-IK": {"translate": [{"time": 0.2333}, {"time": 0.3333, "x": 22.26, "y": 54.13}, {"time": 0.3833, "x": 28.04, "y": 49.32}, {"time": 0.45}]}, "leg-front-left-IK": { "translate": [ - {"time": 0.9167, "curve": 0.317, "c3": 0.693}, {"time": 1.3333, "x": -11.56, "curve": "stepped"}, {"time": 1.9167, "x": -11.56, "curve": 0.154, "c4": 0.9}, {"time": 2.1667} + {"curve": "stepped"}, {"time": 0.0167, "x": 38.52}, {"time": 0.2333, "x": 38.87}, {"time": 0.3333, "x": 26.12, "y": 38.71}, {"time": 0.3833, "x": 12.33, "y": 29.93}, {"time": 0.45} ] }, - "leg-front-right-IK": { - "translate": [{"time": 0.9167, "curve": 0.317, "c3": 0.693}, {"time": 1.3333, "x": -5.65, "curve": "stepped"}, {"time": 1.9167, "x": -5.65, "curve": 0.154, "c4": 0.9}, {"time": 2.1667}] - }, - "leg-back-left-IK": { - "translate": [ - {"time": 0.9167, "curve": 0.317, "c3": 0.693}, {"time": 1.3333, "x": -33.62, "curve": "stepped"}, {"time": 1.9167, "x": -33.62, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 2.1667} + "@shadow": { + "translate": [{"curve": "stepped"}, {"time": 0.0167, "x": 33.22}, {"time": 0.2667, "x": 61.08}, {"time": 0.3833, "x": 9.02}, {"time": 0.4833}], + "scale": [ + {"curve": "stepped"}, {"time": 0.0167, "x": 1.1, "y": 1.1, "curve": "stepped"}, {"time": 0.2667, "x": 1.1, "y": 1.1}, {"time": 0.3833, "x": 0.98, "y": 0.98}, + {"time": 0.4833, "x": 1.1, "y": 1.1}, {"time": 0.5833} ] }, "tail": { "rotate": [ - {"curve": 0, "c2": 0.3, "c3": 0.546}, {"time": 0.25, "angle": 20.35, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.4167, "angle": 15.85, "curve": 0.317, "c3": 0.693}, - {"time": 0.4833, "angle": 17.35, "curve": 0.317, "c3": 0.693}, {"time": 0.55, "angle": 15.85, "curve": 0.317, "c3": 0.693}, {"time": 0.6167, "angle": 18.35, "curve": 0.317, "c3": 0.693}, - {"time": 0.6833, "angle": 16.85, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.9167, "angle": 18.35, "curve": 0.317, "c3": 0.693}, - {"time": 1.3333, "angle": -9.65, "curve": 0.461, "c3": 0.543}, {"time": 1.9167, "angle": -13.65, "curve": 0.154, "c4": 0.9}, - {"time": 2.1667, "angle": 10.35, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 2.3333} + {"curve": "stepped"}, {"time": 0.0167, "angle": -17.67}, {"time": 0.2333, "angle": -21.07}, {"time": 0.3167, "angle": -20.71}, {"time": 0.45, "angle": 25.83}, + {"time": 0.5167, "angle": -14.3}, {"time": 0.5833} ] } } }, - "3708365579": { + "356425390": { "slots": { - "eyes": {"attachment": [{"time": 0.3, "name": "eyes-angry"}, {"time": 1.2333, "name": "eyes"}]}, - "mouth": {"attachment": [{"time": 0.3, "name": "mouth-bite"}, {"time": 1.2333, "name": "mouth"}]} + "eyes": {"attachment": [{"time": 0.05, "name": "eyes-angry"}, {"time": 0.7, "name": "eyes"}]}, + "mouth": {"attachment": [{"time": 0.05, "name": "mouth-bite"}, {"time": 0.2833, "name": "mouth-open"}, {"time": 0.4667, "name": "mouth-bite"}, {"time": 0.7, "name": "mouth"}]} }, "bones": { "@pivot-back": { - "rotate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1, "angle": 6, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.2, "angle": -6, "curve": 0.315, "c4": 0.8}, - {"time": 0.3, "angle": 5.5, "curve": 0.317, "c3": 0.693}, {"time": 0.3833, "angle": 4.5, "curve": 0.317, "c3": 0.693}, {"time": 0.4667, "angle": 5.5, "curve": 0.317, "c3": 0.693}, - {"time": 0.55, "angle": 4.5, "curve": 0.317, "c3": 0.693}, {"time": 0.6333, "angle": 5.5, "curve": 0.317, "c3": 0.693}, {"time": 0.7167, "angle": 4.5, "curve": 0.317, "c3": 0.693}, - {"time": 0.8, "angle": 5.5, "curve": 0.317, "c3": 0.693}, {"time": 0.8833, "angle": 4.5, "curve": 0.317, "c3": 0.693}, {"time": 0.9667, "angle": 5.5, "curve": 0.317, "c3": 0.693}, - {"time": 1.05, "angle": 4.5, "curve": 0.317, "c3": 0.693}, {"time": 1.1333, "angle": 5.5, "curve": 0.317, "c3": 0.693}, {"time": 1.2167, "angle": 6, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 1.3167, "angle": -3, "curve": 0.315, "c4": 0.8}, {"time": 1.4167} - ], + "rotate": [{}, {"time": 0.15, "angle": 4}, {"time": 0.2833, "angle": 7}, {"time": 0.4167, "angle": 7.5}, {"time": 0.5, "angle": 4}, {"time": 0.5833, "angle": 6}, {"time": 0.75}], "translate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1, "y": 4.69, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.2, "y": 43.73, "curve": 0.315, "c4": 0.8}, - {"time": 0.3, "y": 3.84, "curve": "stepped"}, {"time": 1.2167, "y": 3.84, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1.3167, "y": 43.73, "curve": 0.315, "c4": 0.8}, {"time": 1.4167} + {}, {"time": 0.25, "x": 25}, {"time": 0.2833, "x": -136, "y": 25.56}, {"time": 0.4167, "x": -153.19, "y": 25.56}, {"time": 0.5, "x": -176.94, "curve": "stepped"}, + {"time": 0.5833, "x": -176.94}, {"time": 0.75} ] }, - "@leg-front-left": { + "@pivot-main": {"translate": [{"time": 0.5833}, {"time": 0.6667, "y": 45.22}, {"time": 0.75}]}, + "@leg-front-left": {"translate": [{}, {"time": 0.25, "x": -0.72, "y": -6.78}, {"time": 0.5833, "x": -1.48, "y": -14.61}, {"time": 0.65, "x": -0.39, "y": 5.91}, {"time": 0.75}]}, + "@leg-front-right": { + "translate": [{}, {"time": 0.25, "x": -2.88, "y": -28.54, "curve": "stepped"}, {"time": 0.5833, "x": -2.88, "y": -28.54}, {"time": 0.65, "x": -0.83, "y": 1.57}, {"time": 0.75}] + }, + "leg-front-left-IK": { "translate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1, "x": -1.28, "y": -14.48, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.2, "curve": 0.315, "c4": 0.8}, - {"time": 0.3, "x": -1.28, "y": -14.48, "curve": 0.317, "c3": 0.693}, {"time": 0.3833, "x": -1.02, "y": -10.26, "curve": 0.317, "c3": 0.693}, - {"time": 0.4667, "x": -1.22, "y": -13.05, "curve": 0.317, "c3": 0.693}, {"time": 0.55, "x": -1.02, "y": -10.26, "curve": 0.317, "c3": 0.693}, - {"time": 0.6333, "x": -1.22, "y": -13.05, "curve": 0.317, "c3": 0.693}, {"time": 0.7167, "x": -1.02, "y": -10.26, "curve": 0.317, "c3": 0.693}, - {"time": 0.8, "x": -1.22, "y": -13.05, "curve": 0.317, "c3": 0.693}, {"time": 0.8833, "x": -1.02, "y": -10.26, "curve": 0.317, "c3": 0.693}, - {"time": 0.9667, "x": -1.22, "y": -13.05, "curve": 0.317, "c3": 0.693}, {"time": 1.05, "x": -1.02, "y": -10.26, "curve": 0.317, "c3": 0.693}, - {"time": 1.1333, "x": -1.22, "y": -13.05, "curve": 0.317, "c3": 0.693}, {"time": 1.2167, "x": -1.28, "y": -14.48, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1.3167} + {}, {"time": 0.25, "x": 19.12}, {"time": 0.2833, "x": -43.29, "y": 59.07}, {"time": 0.4167, "x": -61.19, "y": 52.81}, {"time": 0.5, "x": -184.33, "y": 7.89, "curve": "stepped"}, + {"time": 0.5833, "x": -184.33, "y": 7.89}, {"time": 0.65, "x": -105.91, "y": -2.82}, {"time": 0.75} ] }, - "@leg-front-right": { + "leg-front-right-IK": { "translate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1, "x": -2.46, "y": -27.93, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.2, "curve": 0.315, "c4": 0.8}, - {"time": 0.3, "x": -2.46, "y": -27.93, "curve": 0.317, "c3": 0.693}, {"time": 0.3833, "x": -2.06, "y": -21.45, "curve": 0.317, "c3": 0.693}, - {"time": 0.4667, "x": -2.44, "y": -26.54, "curve": 0.317, "c3": 0.693}, {"time": 0.55, "x": -2.06, "y": -21.45, "curve": 0.317, "c3": 0.693}, - {"time": 0.6333, "x": -2.44, "y": -26.54, "curve": 0.317, "c3": 0.693}, {"time": 0.7167, "x": -2.06, "y": -21.45, "curve": 0.317, "c3": 0.693}, - {"time": 0.8, "x": -2.44, "y": -26.54, "curve": 0.317, "c3": 0.693}, {"time": 0.8833, "x": -2.06, "y": -21.45, "curve": 0.317, "c3": 0.693}, - {"time": 0.9667, "x": -2.44, "y": -26.54, "curve": 0.317, "c3": 0.693}, {"time": 1.05, "x": -2.06, "y": -21.45, "curve": 0.317, "c3": 0.693}, - {"time": 1.1333, "x": -2.44, "y": -26.54, "curve": 0.317, "c3": 0.693}, {"time": 1.2167, "x": -2.46, "y": -27.93, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1.3167} + {"time": 0.25}, {"time": 0.2833, "x": -27.95, "y": 28.32}, {"time": 0.4167, "x": -40.48, "y": 34.59}, {"time": 0.5, "x": -191.61, "curve": "stepped"}, {"time": 0.5833, "x": -191.61}, + {"time": 0.65, "x": -103, "y": 4.15}, {"time": 0.75} ] }, - "@pivot-main": { + "leg-back-left-IK": { "translate": [ - {"time": 0.1, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.3, "x": -154.22, "curve": "stepped"}, {"time": 1.2167, "x": -154.22, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 1.4167} + {"time": 0.2667}, {"time": 0.2833, "x": -70.51, "y": 98.54}, {"time": 0.4167, "x": -70.51, "y": 101.95}, {"time": 0.5, "x": -189.32, "curve": "stepped"}, {"time": 0.5833, "x": -189.32}, + {"time": 0.75} + ] + }, + "@pivot-center": {"rotate": [{"time": 0.25}, {"time": 0.2833, "angle": 10.18, "curve": "stepped"}, {"time": 0.4167, "angle": 10.18}, {"time": 0.5}]}, + "tail": { + "rotate": [ + {}, {"time": 0.25, "angle": 21.98}, {"time": 0.2833, "angle": -15.58}, {"time": 0.4167, "angle": -20.71}, {"time": 0.5, "angle": 19.93}, {"time": 0.5833, "angle": 23.12}, + {"time": 0.6667, "angle": -14.25}, {"time": 0.75} ] }, - "leg-front-left-IK": {"translate": [{"time": 1.2167, "curve": 0.315, "c4": 0.8}, {"time": 1.3167, "x": -61.13, "curve": 0.315, "c4": 0.8}, {"time": 1.4167}]}, - "leg-front-right-IK": {"translate": [{"time": 1.2167, "curve": 0.315, "c4": 0.8}, {"time": 1.3167, "x": -61.13, "curve": 0.315, "c4": 0.8}, {"time": 1.4167}]}, "@shadow": { "translate": [ - {"time": 0.1, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.3, "x": -162.84, "curve": "stepped"}, {"time": 1.2167, "x": -162.84, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 1.4167} + {"time": 0.25}, {"time": 0.2833, "x": -143.36}, {"time": 0.4167, "x": -160.77}, {"time": 0.5, "x": -186.16, "curve": "stepped"}, {"time": 0.5833, "x": -186.16}, {"time": 0.75} ], "scale": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1, "x": 1.1, "y": 1.1, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.2, "x": 0.92, "y": 0.92, "curve": 0.315, "c4": 0.8}, - {"time": 0.3, "x": 1.1, "y": 1.1, "curve": 0.317, "c3": 0.693}, {"time": 0.3833, "x": 1.06, "y": 1.06, "curve": 0.317, "c3": 0.693}, - {"time": 0.4667, "x": 1.1, "y": 1.1, "curve": 0.317, "c3": 0.693}, {"time": 0.55, "x": 1.06, "y": 1.06, "curve": 0.317, "c3": 0.693}, - {"time": 0.6333, "x": 1.1, "y": 1.1, "curve": 0.317, "c3": 0.693}, {"time": 0.7167, "x": 1.06, "y": 1.06, "curve": 0.317, "c3": 0.693}, - {"time": 0.8, "x": 1.1, "y": 1.1, "curve": 0.317, "c3": 0.693}, {"time": 0.8833, "x": 1.06, "y": 1.06, "curve": 0.317, "c3": 0.693}, - {"time": 0.9667, "x": 1.1, "y": 1.1, "curve": 0.317, "c3": 0.693}, {"time": 1.05, "x": 1.06, "y": 1.06, "curve": 0.317, "c3": 0.693}, - {"time": 1.1333, "x": 1.1, "y": 1.1, "curve": "stepped"}, {"time": 1.2167, "x": 1.1, "y": 1.1, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 1.3167, "x": 0.92, "y": 0.92, "curve": 0.315, "c4": 0.8}, {"time": 1.4167} + {}, {"time": 0.25, "x": 1.08, "y": 1.08, "curve": "stepped"}, {"time": 0.5, "x": 1.08, "y": 1.08}, {"time": 0.5833, "x": 1.12, "y": 1.12}, {"time": 0.6667, "x": 0.94, "y": 0.94}, + {"time": 0.75} ] }, - "tail": { - "rotate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1, "angle": 16.7, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.2, "angle": -16.65, "curve": 0.315, "c4": 0.8}, - {"time": 0.3, "angle": 17.85, "curve": 0.317, "c3": 0.693}, {"time": 0.4333, "angle": 15.5, "curve": 0.317, "c3": 0.693}, {"time": 0.5667, "angle": 17.85, "curve": 0.317, "c3": 0.693}, - {"time": 0.7, "angle": 15.5, "curve": 0.317, "c3": 0.693}, {"time": 0.8333, "angle": 17.85, "curve": 0.317, "c3": 0.693}, {"time": 0.95, "angle": 15.5, "curve": 0.317, "c3": 0.693}, - {"time": 1.0833, "angle": 17.85, "curve": 0.317, "c3": 0.693}, {"time": 1.2167, "angle": 15.5, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 1.3167, "angle": -14.65, "curve": 0.315, "c4": 0.8}, {"time": 1.4167} - ] - } - } + "@leg-back-left": {"translate": [{}, {"time": 0.25, "x": -7.28, "y": 3.82}]} + }, + "events": [{"time": 0.2167, "name": "start-attack"}, {"time": 0.2833, "name": "hit"}] }, - "2297652214": { + "3430008503": { "slots": { - "eyes": {"attachment": [{"name": "eyes-happy"}]}, - "leg-back-left": {"attachment": [{"time": 0.2833, "name": "xmas-leg-back-left-stretch"}, {"time": 0.6333, "name": "xmas-leg-back-left"}]}, - "leg-front-left": {"attachment": [{"time": 0.2833, "name": "xmas-leg-front-left-stretch"}, {"time": 0.6333, "name": "xmas-leg-front-left"}]}, - "leg-front-right": {"attachment": [{"time": 0.2833, "name": "xmas-leg-front-right-stretch"}, {"time": 0.6333, "name": "xmas-leg-front-right"}]} + "eyes": {"attachment": [{"time": 0.1333, "name": "eyes-angry"}, {"time": 0.6667, "name": "eyes"}]}, + "mouth": {"attachment": [{"time": 0.1333, "name": "mouth-bite"}, {"time": 0.2667, "name": "mouth-open"}, {"time": 0.4167, "name": "mouth-bite"}, {"time": 0.6667, "name": "mouth"}]} }, "bones": { - "@leg-front-left": { - "translate": [ - {"x": -14.55, "y": -2.39, "curve": 0.374, "c2": 0.33, "c3": 0.72, "c4": 0.68}, {"time": 0.0333, "x": -24.69, "y": -4.71, "curve": 0.37, "c2": 0.57, "c3": 0.746}, - {"time": 0.1667, "x": -24.61, "y": -1.31, "curve": 0.37, "c2": 0.57, "c3": 0.746}, {"time": 0.3333, "x": 13.45, "y": -27.72, "curve": 0.345, "c2": 0.53, "c3": 0.751}, - {"time": 0.4833, "x": 40.66, "y": -4.9, "curve": 0.262, "c3": 0.63, "c4": 0.42}, {"time": 0.5667, "x": 49.25, "y": 8.32, "curve": 0.343, "c2": 0.3, "c3": 0.688, "c4": 0.65}, - {"time": 0.7, "x": 9.23, "y": 17.43, "curve": 0.255, "c3": 0.659, "c4": 0.47}, {"time": 0.75, "x": -14.55, "y": -2.39} + "@pivot-back": { + "rotate": [ + {}, {"time": 0.0833, "angle": -3.92}, {"time": 0.25, "angle": 2.51}, {"time": 0.35, "angle": -4.74}, {"time": 0.4167, "angle": 2}, {"time": 0.5833, "angle": 4}, {"time": 0.75} ], - "scale": [ - {"curve": 0.459, "c2": 0.59, "c3": 0.838}, {"time": 0.0333, "x": 0.935, "curve": 0.331, "c3": 0.677, "c4": 0.4}, {"time": 0.0667, "x": 0.87, "curve": 0.464, "c4": 0.7}, {"time": 0.1667} - ] - }, - "leg-front-left-IK": { "translate": [ - {"x": 0.33, "y": 2.27, "curve": 0.154, "c4": 0.9}, {"time": 0.0833, "x": 32.98, "y": -4.28, "curve": 0.269, "c2": 0.57, "c3": 0.577}, - {"time": 0.1667, "x": 53.3, "y": 2.35, "curve": 0.461, "c3": 0.543}, {"time": 0.4167, "x": -85.44, "y": 106.83, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.5167, "x": -85.78, "y": 86.09, "curve": 0.143, "c3": 0.57, "c4": 0.46}, {"time": 0.7, "x": -26.89, "y": 8.67, "curve": 0, "c2": 0.09, "c3": 0.479, "c4": 0.56}, - {"time": 0.75, "x": 0.33, "y": 2.27} + {}, {"time": 0.0833, "x": 71.93, "y": -12.95, "curve": "stepped"}, {"time": 0.25, "x": 71.93, "y": -12.95}, {"time": 0.4167, "x": -144.49, "y": -12.95, "curve": "stepped"}, + {"time": 0.5833, "x": -144.49, "y": -12.95}, {"time": 0.75} ] }, "leg-back-left-IK": { "translate": [ - {"x": 17.64, "y": 16.11, "curve": 0.455, "c2": 0.58, "c3": 0.847}, {"time": 0.0333, "curve": 0, "c2": 0.1, "c3": 0.85}, - {"time": 0.2333, "x": -50.37, "curve": 0, "c2": 0.09, "c3": 0.466, "c4": 0.7}, {"time": 0.3, "x": 11.38, "y": 18.2, "curve": 0.177, "c2": 0.44, "c3": 0.617}, - {"time": 0.5333, "x": 56.74, "y": 103.8, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.6667, "x": 71.93, "y": 112.16, "curve": 0.315, "c4": 0.8}, {"time": 0.75, "x": 17.64, "y": 16.11} + {}, {"time": 0.1167, "x": 93.98}, {"time": 0.25, "x": 67.02}, {"time": 0.3333, "x": -65.1, "y": -1.32}, {"time": 0.4167, "x": -131.67, "curve": "stepped"}, + {"time": 0.5833, "x": -131.67}, {"time": 0.75} ] }, - "@shadow": { - "scale": [ - {"curve": 0.313, "c3": 0.699}, {"time": 0.25, "x": 0.94, "y": 0.94, "curve": 0.313, "c3": 0.699}, {"time": 0.4333, "x": 0.8, "y": 0.8, "curve": 0.315, "c4": 0.8}, {"time": 0.75} + "leg-front-right-IK": { + "translate": [ + {}, {"time": 0.0833, "x": 21.56, "y": 4.31}, {"time": 0.25, "x": 42.9}, {"time": 0.3667, "x": -104.26, "y": 42.61}, {"time": 0.4167, "x": -153.64, "curve": "stepped"}, + {"time": 0.5833, "x": -153.64}, {"time": 0.7, "x": 13.43}, {"time": 0.75} ] }, - "tail": { - "rotate": [{"curve": 0.161, "c3": 0.854}, {"time": 0.25, "angle": -15.26, "curve": 0, "c2": 0.3, "c3": 0.546}, {"time": 0.5, "angle": 3.48, "curve": 0.154, "c4": 0.9}, {"time": 0.75}] + "leg-front-left-IK": { + "translate": [ + {}, {"time": 0.0833, "x": 43.11}, {"time": 0.25, "x": 48.71, "y": -1.66}, {"time": 0.3667, "x": -87.39, "y": 18.71}, {"time": 0.4167, "x": -150.32, "y": 0.83}, + {"time": 0.5833, "x": -142.85}, {"time": 0.7, "x": 13.43}, {"time": 0.75} + ] }, - "@leg-front-right": { + "@leg-front-left": { "translate": [ - {"x": 7.78, "y": -11.23, "curve": 0.649, "c2": 0.4, "c4": 0.74}, {"time": 0.0167, "x": -0.64, "y": -13.16, "curve": 0.313, "c3": 0.699}, - {"time": 0.1333, "x": -9.39, "y": -16.39, "curve": 0.346, "c2": 0.44, "c3": 0.699}, {"time": 0.3167, "x": -26.29, "y": 12.52, "curve": 0, "c2": 0.18, "c3": 0.424, "c4": 0.59}, - {"time": 0.4333, "x": 7.42, "y": -10.53, "curve": 0.316, "c2": 0.49, "c3": 0.751}, {"time": 0.6, "x": 37.87, "y": -4.31, "curve": 0.289, "c3": 0.884, "c4": 0.7}, - {"time": 0.75, "x": 7.78, "y": -11.23} + {}, {"time": 0.0833, "x": -0.28, "y": 3.31}, {"time": 0.25, "x": -0.62, "y": -3.21}, {"time": 0.3667, "x": -15.24, "y": -11.32}, {"time": 0.4167, "x": -17.97, "y": -3.57}, + {"time": 0.5833, "x": -18.47, "y": -10.19}, {"time": 0.75} ] }, - "leg-front-right-IK": { + "@leg-front-right": { "translate": [ - {"x": -13.57, "y": 17.19, "curve": 0.645, "c2": 0.47, "c4": 0.81}, {"time": 0.0167, "curve": 0.313, "c3": 0.699}, {"time": 0.2667, "x": 52.85, "curve": 0, "c2": 0.3, "c3": 0.544}, - {"time": 0.5, "x": -85.89, "y": 125.19}, {"time": 0.6, "x": -87.57, "y": 110.89, "curve": 0.142, "c3": 0.858, "c4": 0.77}, {"time": 0.75, "x": -13.57, "y": 17.19} + {}, {"time": 0.0833, "x": 3.63, "y": 19.84}, {"time": 0.25, "x": -10.53, "y": -16.98}, {"time": 0.4167, "x": -10.44, "y": -18.31}, {"time": 0.5833, "x": -10.92, "y": -30.23}, + {"time": 0.75} ] }, + "@pivot-main": {"translate": [{"time": 0.25}, {"time": 0.3333, "y": 26.43}, {"time": 0.4167, "curve": "stepped"}, {"time": 0.5833}, {"time": 0.6667, "y": 26.43}, {"time": 0.75}]}, "@leg-back-left": { "translate": [ - {"x": -4.73, "y": 6.6, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.15, "x": 1.29, "y": -4.22, "curve": 0.44, "c2": 0.55, "c3": 0.858}, - {"time": 0.25, "x": 2.16, "y": 6.49, "curve": 0, "c2": 0.09, "c3": 0.466, "c4": 0.7}, {"time": 0.3, "x": -5.17, "y": 15.67, "curve": 0.218, "c2": 0.39, "c3": 0.738}, - {"time": 0.5333, "x": -14.09, "y": -7.98, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.6667, "x": -12.69, "y": -11.31, "curve": 0.315, "c4": 0.8}, {"time": 0.75, "x": -4.73, "y": 6.6} - ], - "scale": [{"curve": 0, "c2": 0.1, "c3": 0.457, "c4": 0.54}, {"time": 0.0667, "x": 0.837, "curve": 0.395, "c2": 0.49, "c3": 0.868}, {"time": 0.15}] + {"time": 0.1167}, {"time": 0.25, "x": -0.25, "y": -9.22}, {"time": 0.3333, "x": -0.44, "y": 4.57}, {"time": 0.4167, "x": -0.58, "y": -9.21}, {"time": 0.5833, "x": -0.15, "y": -9.98}, + {"time": 0.75} + ] }, - "@pivot-back": { + "tail": { "rotate": [ - {"angle": 3.74, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "angle": 1.5, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.25, "angle": -2, "curve": 0, "c2": 0.1, "c3": 0.85}, - {"time": 0.35, "angle": -5, "curve": 0.154, "c4": 0.9}, {"time": 0.6667, "angle": 5, "curve": 0.154, "c4": 0.9}, {"time": 0.75, "angle": 3.74} - ], - "translate": [ - {"y": 8, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "y": -10, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.25, "curve": 0, "c2": 0.1, "c3": 0.85}, - {"time": 0.5667, "y": 80.61, "curve": 0.154, "c4": 0.9}, {"time": 0.75, "y": 8} + {}, {"time": 0.0833, "angle": 12.92}, {"time": 0.25, "angle": 18.48}, {"time": 0.35, "angle": -6.88}, {"time": 0.4167, "angle": 14}, {"time": 0.5833, "angle": 19.37}, + {"time": 0.6833, "angle": -8.78}, {"time": 0.75} ] }, - "@pivot-main": {"scale": [{"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1333, "y": 0.85, "curve": 0.306, "c4": 0.8}, {"time": 0.25}]} + "@shadow": { + "translate": [ + {}, {"time": 0.0833, "x": 61.96, "curve": "stepped"}, {"time": 0.25, "x": 61.96}, {"time": 0.35, "x": -121.98}, {"time": 0.4167, "x": -154.28, "curve": "stepped"}, + {"time": 0.5833, "x": -154.28}, {"time": 0.75} + ], + "scale": [ + {"time": 0.0833}, {"time": 0.25, "x": 1.06, "y": 1.06}, {"time": 0.35, "x": 0.96, "y": 0.96}, {"time": 0.4167, "x": 1.08, "y": 1.08, "curve": "stepped"}, + {"time": 0.5833, "x": 1.08, "y": 1.08}, {"time": 0.75} + ] + } }, - "drawOrder": [{"time": 0.2833, "offsets": [{"slot": "leg-front-right", "offset": 7}, {"slot": "leg-front-left", "offset": 6}]}, {"time": 0.6333}] + "events": [{"time": 0.25, "name": "start-attack"}, {"time": 0.4167, "name": "hit"}] }, - "1973997258": { - "slots": {"leg-front-left": {"attachment": [{"time": 0.2, "name": "xmas-leg-front-left-stretch"}, {"time": 0.6667, "name": "xmas-leg-front-left"}]}}, + "3483963258": { "bones": { - "@pivot-back": { + "leg-front-left-IK": { "translate": [ - {"y": 8, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "y": -10, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.25, "curve": 0, "c2": 0.1, "c3": 0.85}, - {"time": 0.5833, "y": 80.61, "curve": 0.154, "c4": 0.9}, {"time": 0.75, "y": 8} + {}, {"time": 0.0833, "x": 3.08}, {"time": 0.15, "x": 13.79}, {"time": 0.25, "x": -43.09}, {"time": 0.3333, "x": 26.11, "curve": "stepped"}, {"time": 0.5, "x": 26.11}, {"time": 0.5833} ] }, - "@leg-front-left": { + "@pivot-back": { + "rotate": [{}, {"time": 0.0833, "angle": 5.51}, {"time": 0.2, "angle": -4}, {"time": 0.5, "angle": 5.83}, {"time": 0.5833, "angle": -1.41}, {"time": 0.6667}], + "translate": [{}, {"time": 0.1167, "x": 13.63, "y": 1.37}, {"time": 0.5, "y": -4.7}, {"time": 0.6667}] + }, + "@leg-front-right": { "translate": [ - {"x": -14.55, "y": -2.39, "curve": 0.374, "c2": 0.33, "c3": 0.72, "c4": 0.68}, {"time": 0.0333, "x": -24.61, "y": -1.31, "curve": "stepped"}, - {"time": 0.1667, "x": -24.61, "y": -1.31, "curve": 0.37, "c2": 0.57, "c3": 0.746}, {"time": 0.3333, "x": 13.45, "y": -27.72, "curve": 0.345, "c2": 0.53, "c3": 0.751}, - {"time": 0.4833, "x": 40.66, "y": -4.9, "curve": 0.255, "c3": 0.673, "c4": 0.49}, {"time": 0.5833, "x": 39.16, "y": 14.5, "curve": 0.565, "c2": 0.41, "c4": 0.82}, - {"time": 0.6667, "x": 1.05, "y": 16.15, "curve": 0.255, "c3": 0.659, "c4": 0.47}, {"time": 0.75, "x": -14.55, "y": -2.39} - ], - "scale": [ - {"x": 0.969, "curve": 0.459, "c2": 0.59, "c3": 0.838}, {"time": 0.0333, "x": 0.961, "curve": 0.154, "c4": 0.9}, {"time": 0.1667, "x": 1.075, "curve": 0, "c2": 0.1, "c3": 0.85}, - {"time": 0.3333, "curve": "stepped"}, {"time": 0.6667, "curve": 0, "c2": 0.09, "c3": 0.589, "c4": 0.67}, {"time": 0.75, "x": 0.969} + {}, {"time": 0.0833, "x": -1.98, "y": -24.83}, {"time": 0.1667, "x": -2.18, "y": -3.56}, {"time": 0.3333, "x": -2.18, "y": -2.89, "curve": "stepped"}, + {"time": 0.4833, "x": -2.18, "y": -2.89}, {"time": 0.5, "x": -1.98, "y": -24.83}, {"time": 0.5833, "x": -1.28, "y": 8.38}, {"time": 0.6667} ] }, - "leg-front-left-IK": { + "tail": {"rotate": [{}, {"time": 0.1167, "angle": 11.6}, {"time": 0.25, "angle": -18.66}, {"time": 0.4667, "angle": 16.43}, {"time": 0.5833, "angle": -6.67}, {"time": 0.6667}]}, + "leg-back-left-IK": {"translate": [{"time": 0.15}, {"time": 0.25, "x": -43.09}, {"time": 0.4, "x": 34.02, "curve": "stepped"}, {"time": 0.45, "x": 34.02}, {"time": 0.5833}]}, + "@leg-back-left": {"translate": [{}, {"time": 0.1333, "x": -0.27, "y": -3.45, "curve": "stepped"}, {"time": 0.5, "x": -0.27, "y": -3.45}, {"time": 0.6667}]}, + "@leg-front-left": { "translate": [ - {"x": 4.88, "y": 20.49, "curve": 0.416, "c2": 0.51, "c3": 0.865}, {"time": 0.0833, "x": 28.75, "y": 34.52, "curve": 0.269, "c2": 0.57, "c3": 0.577}, - {"time": 0.1667, "x": 31.44, "y": 44.28, "curve": 0.461, "c3": 0.543}, {"time": 0.4167, "x": -85.44, "y": 106.83}, - {"time": 0.5167, "x": -87.18, "y": 81.5, "curve": 0.143, "c3": 0.57, "c4": 0.46}, {"time": 0.6667, "x": -21.75, "y": 25.36, "curve": 0, "c2": 0.09, "c3": 0.479, "c4": 0.56}, - {"time": 0.75, "x": 4.88, "y": 20.49} + {}, {"time": 0.0833, "x": -1.04, "y": -13.11}, {"time": 0.1667, "x": -1.14, "y": -2.73}, {"time": 0.3333, "x": -1.16, "y": -1.14, "curve": "stepped"}, + {"time": 0.4833, "x": -1.16, "y": -1.14}, {"time": 0.5, "x": -1.04, "y": -13.11}, {"time": 0.5833, "x": -0.69, "y": 4.65}, {"time": 0.6667} ] }, - "leg-back-left-IK": { + "leg-front-right-IK": { "translate": [ - {"x": 17.64, "y": 16.11, "curve": 0.455, "c2": 0.58, "c3": 0.847}, {"time": 0.0333, "curve": 0, "c2": 0.1, "c3": 0.85}, - {"time": 0.2333, "x": -50.37, "curve": 0, "c2": 0.09, "c3": 0.466, "c4": 0.7}, {"time": 0.3, "x": 11.38, "y": 18.2, "curve": 0.177, "c2": 0.44, "c3": 0.617}, - {"time": 0.5333, "x": 56.74, "y": 103.8, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.6667, "x": 71.93, "y": 112.16, "curve": 0.139, "c3": 0.671, "c4": 0.58}, - {"time": 0.75, "x": 17.64, "y": 16.11} + {}, {"time": 0.0833, "x": 3.08}, {"time": 0.15, "x": 13.79}, {"time": 0.25, "x": -43.09}, {"time": 0.3333, "x": 26.11, "curve": "stepped"}, {"time": 0.5, "x": 26.11}, {"time": 0.5833} ] }, - "@shadow": { - "scale": [ - {"curve": 0.313, "c3": 0.699}, {"time": 0.25, "x": 0.94, "y": 0.94, "curve": 0.313, "c3": 0.699}, {"time": 0.4333, "x": 0.8, "y": 0.8, "curve": 0.315, "c4": 0.8}, {"time": 0.75} - ] + "@shadow": {"scale": [{}, {"time": 0.0833, "x": 1.1, "y": 1.1}, {"time": 0.3333, "x": 0.8, "y": 0.8}, {"time": 0.5, "x": 1.1, "y": 1.1}, {"time": 0.6667}]}, + "@pivot-main": { + "translate": [{"time": 0.1667}, {"time": 0.3333, "y": 133.58}, {"time": 0.5}], + "scale": [{}, {"time": 0.0833, "y": 0.97}, {"time": 0.1667, "curve": "stepped"}, {"time": 0.4167}, {"time": 0.5, "y": 0.97}, {"time": 0.5833}] + } + }, + "events": [{"time": 0.15, "name": "jump"}] + }, + "1819067675": { + "bones": { + "@pivot-back": { + "rotate": [{}, {"time": 0.0833, "angle": 5.51}, {"time": 0.2, "angle": -4}, {"time": 0.5, "angle": 5.83}, {"time": 0.5833, "angle": -1.41}, {"time": 0.6667}], + "translate": [{}, {"time": 0.1167, "x": 13.63, "y": 1.37}, {"time": 0.5, "y": -4.7}, {"time": 0.6667}] }, - "@pivot-main": {"scale": [{"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "y": 0.98, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.25}]}, "@leg-front-right": { "translate": [ - {"x": -0.64, "y": -13.16, "curve": 0.313, "c3": 0.654, "c4": 0.45}, {"time": 0.1167, "x": -9.39, "y": -16.39, "curve": 0.346, "c2": 0.44, "c3": 0.699}, - {"time": 0.3, "x": -26.29, "y": 12.52, "curve": 0, "c2": 0.18, "c3": 0.424, "c4": 0.59}, {"time": 0.4167, "x": 7.42, "y": -10.53, "curve": 0.316, "c2": 0.49, "c3": 0.751}, - {"time": 0.5833, "x": 37.87, "y": -4.31, "curve": 0.315, "c4": 0.8}, {"time": 0.75, "x": -0.64, "y": -13.16} + {}, {"time": 0.0833, "x": -1.98, "y": -24.83}, {"time": 0.1667, "x": -2.18, "y": -3.56}, {"time": 0.3333, "x": -2.18, "y": -2.89, "curve": "stepped"}, + {"time": 0.4833, "x": -2.18, "y": -2.89}, {"time": 0.5, "x": -1.98, "y": -24.83}, {"time": 0.5833, "x": -1.28, "y": 8.38}, {"time": 0.6667} ] }, - "@leg-back-left": { + "leg-front-right-IK": {"translate": [{"time": 0.15}, {"time": 0.25, "x": 26.77}, {"time": 0.35, "x": -20.02, "curve": "stepped"}, {"time": 0.5, "x": -20.02}, {"time": 0.5833}]}, + "@leg-front-left": { "translate": [ - {"x": -4.73, "y": 6.6, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.15, "x": 1.29, "y": -4.22, "curve": 0.44, "c2": 0.55, "c3": 0.858}, - {"time": 0.25, "x": 2.16, "y": 6.49, "curve": 0, "c2": 0.09, "c3": 0.466, "c4": 0.7}, {"time": 0.3, "x": -5.17, "y": 15.67, "curve": 0.218, "c2": 0.39, "c3": 0.738}, - {"time": 0.5333, "x": -14.09, "y": -7.98, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.6667, "x": -12.69, "y": -11.31, "curve": 0.139, "c3": 0.671, "c4": 0.58}, - {"time": 0.75, "x": -4.73, "y": 6.6} - ], - "scale": [{"curve": 0, "c2": 0.1, "c3": 0.457, "c4": 0.54}, {"time": 0.0667, "x": 0.837, "curve": 0.395, "c2": 0.49, "c3": 0.868}, {"time": 0.15}] + {}, {"time": 0.0833, "x": -1.04, "y": -13.11}, {"time": 0.1667, "x": -1.14, "y": -2.73}, {"time": 0.3333, "x": -1.16, "y": -1.14, "curve": "stepped"}, + {"time": 0.4833, "x": -1.16, "y": -1.14}, {"time": 0.5, "x": -1.04, "y": -13.11}, {"time": 0.5833, "x": -0.69, "y": 4.65}, {"time": 0.6667} + ] }, - "leg-front-right-IK": { + "leg-front-left-IK": {"translate": [{"time": 0.15}, {"time": 0.25, "x": 26.77}, {"time": 0.35, "x": -20.02, "curve": "stepped"}, {"time": 0.5, "x": -20.02}, {"time": 0.5833}]}, + "@leg-back-left": {"translate": [{}, {"time": 0.1333, "x": -0.27, "y": -3.45, "curve": "stepped"}, {"time": 0.5, "x": -0.27, "y": -3.45}, {"time": 0.6667}]}, + "leg-back-left-IK": { "translate": [ - {"curve": 0.313, "c3": 0.699}, {"time": 0.25, "x": 52.85, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.4833, "x": -85.89, "y": 125.19}, - {"time": 0.5833, "x": -87.57, "y": 110.89, "curve": 0.154, "c4": 0.9}, {"time": 0.75} + {"time": 0.15}, {"time": 0.25, "x": 26.77, "curve": "stepped"}, {"time": 0.3, "x": 26.77}, {"time": 0.4167, "x": -20.02, "curve": "stepped"}, {"time": 0.5, "x": -20.02}, {"time": 0.5833} ] - } - } + }, + "@pivot-main": { + "translate": [{"time": 0.1667}, {"time": 0.3333, "y": 133.58}, {"time": 0.5}], + "scale": [{}, {"time": 0.0833, "y": 0.97}, {"time": 0.1667, "curve": "stepped"}, {"time": 0.4167}, {"time": 0.5, "y": 0.97}, {"time": 0.5833}] + }, + "tail": {"rotate": [{}, {"time": 0.1167, "angle": 11.6}, {"time": 0.25, "angle": -18.66}, {"time": 0.4667, "angle": 16.43}, {"time": 0.5833, "angle": -6.67}, {"time": 0.6667}]}, + "@shadow": {"scale": [{}, {"time": 0.0833, "x": 1.1, "y": 1.1}, {"time": 0.3333, "x": 0.8, "y": 0.8}, {"time": 0.5, "x": 1.1, "y": 1.1}, {"time": 0.6667}]} + }, + "events": [{"time": 0.15, "name": "jump"}] }, - "244230390": { + "4202784040": { "slots": { - "eyes": { + "eyes": {"attachment": [{"time": 0.0833, "name": "eyes-shut"}, {"time": 0.1667, "name": "eyes-angry"}, {"time": 0.9833, "name": "eyes-shut"}, {"time": 1.0833, "name": "eyes"}]}, + "leg-front-left": { "attachment": [ - {"time": 0.05, "name": "eyes-angry"}, {"time": 0.3333, "name": "eyes-shut"}, {"time": 0.4333, "name": "eyes-angry"}, {"time": 1.0833, "name": "eyes-shut"}, - {"time": 1.1667, "name": "eyes-angry"}, {"time": 1.2833, "name": "eyes"} + {"time": 0.5, "name": "leg-front-left-stretch"}, {"time": 0.6333, "name": "leg-front-left"}, {"time": 0.7667, "name": "leg-front-left-stretch"}, {"time": 0.9, "name": "leg-front-left"} ] }, - "mouth": {"attachment": [{"time": 0.05, "name": "mouth-bite"}, {"time": 0.4333, "name": "mouth-open"}, {"time": 0.9167, "name": "mouth-bite"}, {"time": 1.2833, "name": "mouth"}]} + "mouth": {"attachment": [{"time": 0.0833, "name": "mouth-bite"}, {"time": 0.3667, "name": "mouth-open"}, {"time": 0.9833, "name": "mouth-bite"}, {"time": 1.0833, "name": "mouth"}]} }, "bones": { - "@pivot-back": { - "rotate": [{"curve": 0, "c2": 0.3, "c3": 0.546}, {"time": 0.0833, "angle": 6, "curve": 0, "c2": 0.2, "c3": 0.828}, {"time": 0.1667}], + "@leg-front-left": { "translate": [ - {"curve": 0, "c2": 0.3, "c3": 0.546}, {"time": 0.0833, "y": 5, "curve": 0.313, "c3": 0.699}, {"time": 0.1667, "y": 220, "curve": 0.617, "c4": 0.6}, {"time": 0.3333, "y": 10}, - {"time": 0.4167, "y": 5, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5833, "y": 420, "curve": 0.852, "c4": 0.1}, {"time": 0.9167}, - {"time": 1.0833, "y": -5, "curve": 0, "c2": 0.17, "c3": 0.461, "c4": 0.62}, {"time": 1.2167, "y": 130, "curve": 0.353, "c2": 0.54, "c3": 0.751}, {"time": 1.3333} + {}, {"time": 0.2167, "x": -6.84, "y": -9.77, "curve": "stepped"}, {"time": 0.9833, "x": -6.84, "y": -9.77}, {"time": 1.05, "x": -6.29, "y": -18.69}, + {"time": 1.0833, "x": -3.64, "y": -2.46}, {"time": 1.25} + ], + "scale": [ + {"time": 0.4667}, {"time": 0.5, "x": 1.5}, {"time": 0.6, "x": 1.51}, {"time": 0.6333, "curve": "stepped"}, {"time": 0.7333}, {"time": 0.7667, "x": 1.5}, {"time": 0.8667, "x": 1.51}, + {"time": 0.9833} ] }, - "@leg-front-right": {"translate": [{"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "x": -2.46, "y": -27.89, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.1167}]}, - "@leg-front-left": {"translate": [{"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "x": -1.21, "y": -13.68, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.1167}]}, - "@pivot-center": { + "@pivot-back": { "rotate": [ - {"time": 0.1167, "curve": 0.313, "c3": 0.817}, {"time": 0.3333, "angle": 180, "curve": "stepped"}, {"time": 0.4167, "angle": 180, "curve": 0.313, "c3": 0.699}, - {"time": 0.6667, "angle": -1, "curve": 0.837, "c4": 0.2}, {"time": 0.9167, "angle": 178}, {"time": 1.0833, "angle": 180, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1.3333} + {}, {"time": 0.15, "angle": 3.67}, {"time": 0.3333, "angle": -14.29}, {"time": 0.3667, "angle": 15.82}, {"time": 0.4667, "angle": 16.67}, {"time": 0.5, "angle": -19.96}, + {"time": 0.6, "angle": -21.17}, {"time": 0.6333, "angle": 15.82}, {"time": 0.7333, "angle": 16.67}, {"time": 0.7667, "angle": -19.96}, {"time": 0.8667, "angle": -21.17}, + {"time": 0.9833, "angle": 4.4}, {"time": 1.05, "angle": 6.79}, {"time": 1.25} + ], + "translate": [ + {}, {"time": 0.2167, "x": 8.02}, {"time": 0.3333, "x": -54.3, "y": 61.69}, {"time": 0.3667, "x": -60.41, "y": 130.13}, {"time": 0.4667, "x": -60.41, "y": 130.01}, + {"time": 0.5, "x": -58.41, "y": 9.6}, {"time": 0.6, "x": -58.41, "y": 9.9}, {"time": 0.6333, "x": -60.41, "y": 130.13}, {"time": 0.7333, "x": -60.41, "y": 130.01}, + {"time": 0.7667, "x": -58.41, "y": 9.6}, {"time": 0.8667, "x": -58.41, "y": 9.9}, {"time": 0.9833} ] }, - "leg-front-left-IK": { + "@leg-front-right": { "translate": [ - {"time": 0.0833, "curve": 0.344, "c3": 0.715, "c4": 0.45}, {"time": 0.1167, "x": 22.19, "y": 83.99, "curve": 0.589, "c2": 0.35, "c4": 0.75}, - {"time": 0.1667, "x": -154.45, "y": 263.51, "curve": 0.313, "c3": 0.699}, {"time": 0.25, "x": -189.73, "y": 441.11, "curve": 0.474, "c3": 0.714, "c4": 0.56}, - {"time": 0.3, "x": -88.64, "y": 479.87, "curve": 0.306, "c2": 0.39, "c3": 0.628, "c4": 0.74}, {"time": 0.3167, "x": -37.54, "y": 455.97, "curve": 0.287, "c2": 0.62, "c3": 0.612}, - {"time": 0.3333, "x": -25.25, "y": 378.08}, {"time": 0.4167, "x": -25.25, "y": 378.18, "curve": 0, "c2": 0.17, "c3": 0.45, "c4": 0.61}, - {"time": 0.5, "x": -158.66, "y": 578.62, "curve": 0.323, "c2": 0.4, "c3": 0.681, "c4": 0.77}, {"time": 0.55, "x": -205.92, "y": 567.89, "curve": 0.377, "c2": 0.62, "c3": 0.724}, - {"time": 0.5833, "x": -173.29, "y": 508.55}, {"time": 0.6667, "x": 20, "y": 418.28}, {"time": 0.75, "x": 22.88, "y": 389.88, "curve": 0.255, "c3": 0.659, "c4": 0.47}, - {"time": 0.8333, "x": 116.45, "y": 378.42, "curve": 0.41, "c2": 0.34, "c3": 0.774, "c4": 0.71}, - {"time": 0.8833, "x": 152.48, "y": 372.41, "curve": 0.427, "c2": 0.37, "c3": 0.767, "c4": 0.71}, {"time": 0.9, "x": 169.41, "y": 373.02, "curve": 0.649, "c2": 0.4, "c4": 0.74}, - {"time": 0.9167, "x": -24.94, "y": 385.61, "curve": "stepped"}, {"time": 1.0833, "x": -24.94, "y": 385.61, "curve": 0, "c2": 0.17, "c3": 0.45, "c4": 0.61}, - {"time": 1.15, "x": 153.37, "y": 346.29, "curve": 0.345, "c2": 0.53, "c3": 0.751}, {"time": 1.2167, "x": 149.53, "y": 227.09, "curve": 0, "c2": 0.1, "c3": 0.769}, {"time": 1.3333} + {}, {"time": 0.15, "x": -16.23, "y": -19.18}, {"time": 0.2167, "x": -18.54, "y": -11.57}, {"time": 0.25, "x": -22.65, "y": 8.05}, {"time": 0.3333, "x": 29.92, "y": -4.24}, + {"time": 0.3667, "x": 22.95, "y": 2.68}, {"time": 0.4667, "x": 29.92, "y": -4.24}, {"time": 0.5, "x": 22.95, "y": 2.68}, {"time": 0.6, "x": 29.92, "y": -4.24}, + {"time": 0.6333, "x": 22.95, "y": 2.68}, {"time": 0.7333, "x": 29.92, "y": -4.24}, {"time": 0.7667, "x": 22.95, "y": 2.68, "curve": "stepped"}, {"time": 0.9167, "x": 22.95, "y": 2.68}, + {"time": 0.95}, {"time": 0.9833, "x": -1.45, "y": -24.11}, {"time": 1.05, "x": -3.72, "y": -46.34}, {"time": 1.0833} + ], + "scale": [ + {"time": 0.2167}, {"time": 0.25, "x": 1.5}, {"time": 0.3333}, {"time": 0.3667, "x": 1.5}, {"time": 0.4667, "x": 1.51}, {"time": 0.5, "curve": "stepped"}, {"time": 0.6}, + {"time": 0.6333, "x": 1.5}, {"time": 0.7333, "x": 1.51}, {"time": 0.7667} ] }, + "@leg-back-left": { + "translate": [{}, {"time": 0.2167, "x": -0.11, "y": -2.73, "curve": "stepped"}, {"time": 0.9833, "x": -0.11, "y": -2.73}, {"time": 1.05, "x": -0.46, "y": -6.19}, {"time": 1.25}] + }, + "@pivot-main": { + "translate": [ + {"time": 0.15}, {"time": 0.3333, "x": -73.35, "y": 43, "curve": "stepped"}, {"time": 0.8667, "x": -73.35, "y": 43}, {"time": 0.9833, "x": -146.44, "curve": "stepped"}, + {"time": 1.05, "x": -146.44}, {"time": 1.15, "x": -45.61, "y": 50.15}, {"time": 1.25} + ], + "scale": [{"time": 0.9833}, {"time": 1.05, "y": 0.98}, {"time": 1.15}] + }, "leg-front-right-IK": { "translate": [ - {"time": 0.0833, "curve": 0.344, "c3": 0.715, "c4": 0.45}, {"time": 0.1167, "x": 41.2, "y": 75.27, "curve": 0.589, "c2": 0.35, "c4": 0.75}, - {"time": 0.1667, "x": -91.03, "y": 383.62, "curve": 0.313, "c3": 0.699}, {"time": 0.25, "x": 71.9, "y": 568.87, "curve": 0.474, "c3": 0.714, "c4": 0.56}, - {"time": 0.3, "x": 274.2, "y": 504.55, "curve": 0.306, "c2": 0.39, "c3": 0.628, "c4": 0.74}, {"time": 0.3167, "x": 313.79, "y": 451.12, "curve": 0.287, "c2": 0.62, "c3": 0.612}, - {"time": 0.3333, "x": 331.67, "y": 349.34}, {"time": 0.4167, "x": 331.67, "y": 354.84, "curve": 0, "c2": 0.17, "c3": 0.45, "c4": 0.61}, - {"time": 0.5, "x": 141.4, "y": 685.41, "curve": 0.323, "c2": 0.4, "c3": 0.681, "c4": 0.77}, {"time": 0.55, "x": -27.68, "y": 739.93, "curve": 0.377, "c2": 0.62, "c3": 0.724}, - {"time": 0.5833, "x": -93.67, "y": 643.85}, {"time": 0.6667, "x": 18.99, "y": 416.84}, {"time": 0.75, "x": 24.55, "y": 373.09, "curve": 0.255, "c3": 0.659, "c4": 0.47}, - {"time": 0.8333, "x": 142.42, "y": 283.76, "curve": 0.41, "c2": 0.34, "c3": 0.774, "c4": 0.71}, - {"time": 0.8833, "x": 202.04, "y": 226.63, "curve": 0.427, "c2": 0.37, "c3": 0.767, "c4": 0.71}, {"time": 0.9, "x": 283.42, "y": 177.09, "curve": 0.649, "c2": 0.4, "c4": 0.74}, - {"time": 0.9167, "x": 327.72, "y": 357.72, "curve": "stepped"}, {"time": 1.0833, "x": 327.72, "y": 357.72, "curve": 0, "c2": 0.17, "c3": 0.45, "c4": 0.61}, - {"time": 1.15, "x": 361.45, "y": 119.38, "curve": 0.345, "c2": 0.53, "c3": 0.751}, {"time": 1.2167, "x": 166.38, "y": 58.5, "curve": 0.313, "c3": 0.699}, {"time": 1.3333} + {"time": 0.15}, {"time": 0.2167, "x": 19.11, "y": 67.51}, {"time": 0.25, "x": 9.04, "y": 75.61}, {"time": 0.3333, "x": -160.66, "y": 272.78}, {"time": 0.3667, "x": -57.38, "y": -16.06}, + {"time": 0.4667, "x": -10.1, "y": -16.06}, {"time": 0.5, "x": -151.82, "y": 190.82}, {"time": 0.6, "x": -168.95, "y": 277.96}, {"time": 0.6333, "x": -54.28, "y": -17.1}, + {"time": 0.7333, "x": -12.17, "y": -17.1}, {"time": 0.7667, "x": -151.82, "y": 190.82}, {"time": 0.8667, "x": -165.84, "y": 271.75}, {"time": 0.9833, "curve": "stepped"}, {"time": 1.05}, + {"time": 1.0833, "x": -14.68, "y": -19.57}, {"time": 1.25} + ] + }, + "leg-front-left-IK": { + "translate": [ + {"time": 0.15}, {"time": 0.3333, "x": -54.88, "y": 124.95}, {"time": 0.3667, "x": 37.97, "y": 122.64}, {"time": 0.4667, "x": 48.96, "y": 138.43}, {"time": 0.5, "x": -142.3, "y": 180.66}, + {"time": 0.6, "x": -134.29, "y": 191.98}, {"time": 0.6333, "x": 37.97, "y": 122.64}, {"time": 0.7333, "x": 48.96, "y": 138.43}, {"time": 0.7667, "x": -142.3, "y": 180.66}, + {"time": 0.8667, "x": -134.29, "y": 191.98}, {"time": 0.9833, "curve": "stepped"}, {"time": 1.05}, {"time": 1.0833, "x": -7.79, "y": -10.12}, {"time": 1.25} ] }, "leg-back-left-IK": { "translate": [ - {"time": 0.0833, "curve": 0.344, "c3": 0.715, "c4": 0.45}, {"time": 0.1167, "x": 23.75, "y": 96.58, "curve": 0.589, "c2": 0.35, "c4": 0.75}, - {"time": 0.1667, "x": -126, "y": 104.86, "curve": 0.313, "c3": 0.699}, {"time": 0.25, "x": -417.04, "y": 255.78, "curve": 0.474, "c3": 0.714, "c4": 0.56}, - {"time": 0.3, "x": -400.79, "y": 386.51, "curve": 0.306, "c2": 0.39, "c3": 0.628, "c4": 0.74}, {"time": 0.3167, "x": -387.99, "y": 389.59, "curve": 0.287, "c2": 0.62, "c3": 0.612}, - {"time": 0.3333, "x": -372.12, "y": 336.33}, {"time": 0.4167, "x": -372.12, "y": 328.75, "curve": 0, "c2": 0.17, "c3": 0.45, "c4": 0.61}, - {"time": 0.5, "x": -408.65, "y": 427.65, "curve": 0.323, "c2": 0.4, "c3": 0.681, "c4": 0.77}, {"time": 0.55, "x": -330.75, "y": 377.9, "curve": 0.377, "c2": 0.62, "c3": 0.724}, - {"time": 0.5833, "x": -213.83, "y": 364.99}, {"time": 0.6667, "x": 28.01, "y": 424.39}, {"time": 0.75, "x": 22.32, "y": 405.24, "curve": 0.255, "c3": 0.659, "c4": 0.47}, - {"time": 0.8333, "x": 81.05, "y": 468.17, "curve": 0.41, "c2": 0.34, "c3": 0.774, "c4": 0.71}, - {"time": 0.8833, "x": 74.13, "y": 497.85, "curve": 0.427, "c2": 0.37, "c3": 0.767, "c4": 0.71}, {"time": 0.9, "x": 27.94, "y": 523.61, "curve": 0.649, "c2": 0.4, "c4": 0.74}, - {"time": 0.9167, "x": -347.46, "y": 340.34, "curve": "stepped"}, {"time": 1.0833, "x": -347.46, "y": 340.34, "curve": 0, "c2": 0.17, "c3": 0.45, "c4": 0.61}, - {"time": 1.15, "x": -53.06, "y": 456.83, "curve": 0.345, "c2": 0.53, "c3": 0.751}, {"time": 1.2167, "x": 70.73, "y": 376.2, "curve": 0, "c2": 0.1, "c3": 0.769}, {"time": 1.3333} + {"time": 0.0833}, {"time": 0.2167, "x": 21.57, "y": 4.03}, {"time": 0.3333, "x": -50.73, "y": 91.08}, {"time": 0.3667, "x": 19.18, "y": 184.64}, + {"time": 0.4667, "x": 25.59, "y": 197.69}, {"time": 0.5, "x": -145.53, "y": 47.62}, {"time": 0.6, "x": -152.68, "y": 53.34}, {"time": 0.6333, "x": 19.18, "y": 184.64}, + {"time": 0.7333, "x": 25.59, "y": 197.69}, {"time": 0.7667, "x": -145.53, "y": 47.62}, {"time": 0.8667, "x": -153.88, "y": 53.26}, {"time": 0.9833, "curve": "stepped"}, {"time": 1.05}, + {"time": 1.1667, "x": 24.35, "y": 13.92}, {"time": 1.25} ] }, "tail": { "rotate": [ - {"curve": 0, "c2": 0.3, "c3": 0.546}, {"time": 0.0833, "angle": 19.35, "curve": 0.313, "c3": 0.699}, {"time": 0.1667, "angle": -22.95, "curve": 0.617, "c4": 0.6}, - {"time": 0.3333, "angle": 22.22}, {"time": 0.4167, "angle": 24.08, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5833, "angle": -30.94, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.6667, "angle": 18.1, "curve": 0.313, "c3": 0.699}, {"time": 0.8333, "angle": -20.52, "curve": 0.464, "c4": 0.7}, {"time": 0.9167, "angle": 16.35}, - {"time": 1.0833, "angle": 20.35, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1.2167, "angle": -9.93, "curve": 0.161, "c3": 0.854}, {"time": 1.3333} + {}, {"time": 0.15, "angle": 14.68}, {"time": 0.2167, "angle": -12.57}, {"time": 0.3333, "angle": -14.89}, {"time": 0.3667, "angle": 20.64}, {"time": 0.4667, "angle": 25.18}, + {"time": 0.5, "angle": -19.72}, {"time": 0.6, "angle": -22.19}, {"time": 0.6333, "angle": 20.64}, {"time": 0.7333, "angle": 25.18}, {"time": 0.7667, "angle": -19.72}, + {"time": 0.8667, "angle": -22.19}, {"time": 0.9833, "angle": 23.3}, {"time": 1.05, "angle": 26.39}, {"time": 1.1333, "angle": -14.8}, {"time": 1.25} ] }, "@shadow": { + "translate": [ + {"time": 0.15}, {"time": 0.3333, "x": -132.39}, {"time": 0.3667, "x": -111.3, "curve": "stepped"}, {"time": 0.8667, "x": -111.3}, {"time": 0.9833, "x": -132.39, "curve": "stepped"}, + {"time": 1.05, "x": -132.39}, {"time": 1.25} + ], "scale": [ - {"curve": 0, "c2": 0.3, "c3": 0.546}, {"time": 0.0833, "x": 1.1, "y": 1.1, "curve": 0.313, "c3": 0.699}, {"time": 0.1667, "x": 0.92, "y": 0.92, "curve": 0.617, "c4": 0.6}, - {"time": 0.3333, "x": 1.12, "y": 1.12}, {"time": 0.4167, "x": 1.16, "y": 1.16, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5833, "x": 0.86, "y": 0.86, "curve": 0.752, "c4": 0.2}, - {"time": 0.9167, "x": 1.12, "y": 1.12}, {"time": 1.0833, "x": 1.16, "y": 1.16, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1.3333} + {}, {"time": 0.15, "x": 1.05, "y": 1.05}, {"time": 0.3333, "x": 0.93, "y": 0.93}, {"time": 0.3667, "x": 0.95, "y": 0.95}, {"time": 0.4667, "x": 0.93, "y": 0.93}, {"time": 0.5}, + {"time": 0.6, "x": 1.05, "y": 1.05}, {"time": 0.6333}, {"time": 0.7333, "x": 0.93, "y": 0.93}, {"time": 0.7667}, {"time": 0.8667, "x": 1.05, "y": 1.05}, + {"time": 0.9833, "x": 1.09, "y": 1.09}, {"time": 1.05, "x": 1.11, "y": 1.11}, {"time": 1.25} ] - }, - "@pivot-main": {"scale": [{"time": 0.3333, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.4167, "y": 0.9, "curve": 0, "c2": 0.3, "c3": 0.546}, {"time": 0.5}]} + } }, - "events": [{"time": 0.4333, "name": "jump"}, {"time": 0.8333, "name": "start-attack"}, {"time": 0.9167, "name": "hit"}] + "events": [{"time": 0.3333, "name": "start-attack"}, {"time": 0.3667, "name": "hit"}, {"time": 0.5, "name": "hit"}, {"time": 0.6333, "name": "hit"}, {"time": 0.7667, "name": "hit"}] }, - "2905793214": { + "1009184389": { + "slots": {"eyes": {"attachment": [{"time": 1, "name": "eyes-shut"}, {"time": 1.0833, "name": "eyes"}]}}, + "bones": { + "@pivot-back": { + "rotate": [{}, {"time": 0.3333, "angle": 2.04}, {"time": 0.6667}, {"time": 1, "angle": 1.79}, {"time": 1.3333}], + "translate": [{}, {"time": 0.3333, "y": -6.53}, {"time": 0.6667}, {"time": 1, "y": -8.86}, {"time": 1.3333}], + "scale": [{}, {"time": 0.6667, "y": 0.99}, {"time": 1.3333}] + }, + "@leg-front-right": {"translate": [{}, {"time": 0.3333, "x": 0.02, "y": -16.89}, {"time": 0.6667, "x": -0.04, "y": 2.46}, {"time": 1, "x": -0.02, "y": -18.9}, {"time": 1.3333}]}, + "@leg-front-left": { + "translate": [{}, {"time": 0.3333, "x": 0.22, "y": -5.13}, {"time": 0.6667, "x": -0.03, "y": 1.81}, {"time": 1, "x": 0.2, "y": -7.06}, {"time": 1.3333}], + "scale": [{}, {"time": 0.3333, "x": 0.905}, {"time": 0.6667}, {"time": 1, "x": 0.905}, {"time": 1.3333}] + }, + "@leg-back-left": { + "translate": [{}, {"time": 0.3333, "x": 0.22, "y": -4.11}, {"time": 0.6667, "x": -0.03, "y": 1.69}, {"time": 1, "x": 0.2, "y": -5.68}, {"time": 1.3333}], + "scale": [{}, {"time": 0.3333, "x": 0.943}, {"time": 0.6667}, {"time": 1, "x": 0.943}, {"time": 1.3333}] + }, + "@pivot-main": {"scale": [{}, {"time": 0.3333, "y": 0.98}, {"time": 0.6667}, {"time": 1, "y": 0.98}, {"time": 1.3333}]}, + "tail": {"rotate": [{}, {"time": 0.3333, "angle": 4.54}, {"time": 1, "angle": -9.06}, {"time": 1.3333}]}, + "back": {"rotate": [{}, {"time": 0.3333, "angle": -4.27}, {"time": 1, "angle": 2.83}, {"time": 1.3333}]}, + "ear-right": {"rotate": [{}, {"time": 0.6667, "angle": -3.91}, {"time": 1.3333}]}, + "ear-left": {"rotate": [{}, {"time": 0.6667, "angle": -3.92}, {"time": 1.3333}]}, + "@shadow": {"scale": [{}, {"time": 0.3333, "x": 1.05, "y": 1.05}, {"time": 0.6667}, {"time": 1, "x": 1.05, "y": 1.05}, {"time": 1.3333}]} + } + }, + "563567727": { "slots": { - "eyes": {"attachment": [{"time": 0.05, "name": "eyes-angry"}, {"time": 0.8333, "name": "eyes-shut"}, {"time": 0.9167, "name": "eyes"}]}, - "mouth": {"attachment": [{"time": 0.05, "name": "mouth-bite"}, {"time": 0.3333, "name": "mouth-open"}, {"time": 0.75, "name": "mouth-bite"}, {"time": 0.9167, "name": "mouth"}]} + "eyes": {"attachment": [{"time": 0.0833, "name": "eyes-shut"}, {"time": 0.1667, "name": "eyes-angry"}, {"time": 0.5833, "name": "eyes-shut"}, {"time": 0.6667, "name": "eyes"}]}, + "mouth": {"attachment": [{"time": 0.0833, "name": "mouth-bite"}, {"time": 0.3667, "name": "mouth-open"}, {"time": 0.5833, "name": "mouth"}]} }, "bones": { - "tail": { - "rotate": [ - {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.25, "angle": 21.98, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3167, "angle": -15.58, "curve": "stepped"}, - {"time": 0.3333, "angle": -19.65, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.4, "angle": 20.35, "curve": "stepped"}, {"time": 0.4333, "angle": -19.65, "curve": "stepped"}, - {"time": 0.4667, "angle": -19.65, "curve": 0.461, "c3": 0.543}, {"time": 0.5333, "angle": 20.35, "curve": "stepped"}, {"time": 0.5667, "angle": -19.65, "curve": "stepped"}, - {"time": 0.6, "angle": -19.65, "curve": 0.461, "c3": 0.543}, {"time": 0.6667, "angle": 20.35, "curve": "stepped"}, {"time": 0.7, "angle": -19.65, "curve": "stepped"}, - {"time": 0.75, "angle": -11.84, "curve": 0.313, "c3": 0.699}, {"time": 0.8333, "angle": 16.95, "curve": 0.313, "c3": 0.699}, {"time": 1} - ] - }, "@pivot-back": { "rotate": [ - {"curve": 0, "c2": 0.4, "c3": 0.383}, {"time": 0.15, "angle": 4, "curve": "stepped"}, {"time": 0.25, "angle": 4, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.3167, "curve": "stepped"}, {"time": 0.3333, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.4, "angle": -2.45, "curve": "stepped"}, {"time": 0.4333, "curve": "stepped"}, - {"time": 0.4667, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.5333, "angle": -2.45, "curve": "stepped"}, {"time": 0.5667, "curve": "stepped"}, - {"time": 0.6, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.6667, "angle": -2.45, "curve": "stepped"}, {"time": 0.7, "curve": "stepped"}, {"time": 0.75, "curve": 0.313, "c3": 0.699}, - {"time": 0.8333, "angle": 6, "curve": 0.313, "c3": 0.699}, {"time": 1} + {}, {"time": 0.15, "angle": 3.67}, {"time": 0.3333, "angle": -14.29}, {"time": 0.3667, "angle": 15.82}, {"time": 0.45, "angle": 16.67}, {"time": 0.5667, "angle": 4.4}, + {"time": 0.6333, "angle": 6.79}, {"time": 0.8333} ], "translate": [ - {"curve": 0, "c2": 0.4, "c3": 0.383}, {"time": 0.25, "x": 25, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3167, "x": -135.5, "curve": "stepped"}, - {"time": 0.3333, "x": -560.54, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.4, "x": -560.54, "y": 9.3, "curve": "stepped"}, {"time": 0.4333, "x": -560.54, "curve": "stepped"}, - {"time": 0.4667, "x": -560.54, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.5333, "x": -560.54, "y": 9.3, "curve": "stepped"}, {"time": 0.5667, "x": -560.54, "curve": "stepped"}, - {"time": 0.6, "x": -560.54, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.6667, "x": -560.54, "y": 9.3, "curve": "stepped"}, {"time": 0.7, "x": -560.54, "curve": "stepped"}, - {"time": 0.75, "x": -151.24, "curve": 0.313, "c3": 0.699}, {"time": 0.8333, "x": -151.24, "y": 4.06, "curve": 0.313, "c3": 0.699}, {"time": 1} - ], - "scale": [{"time": 0.3167, "curve": "stepped"}, {"time": 0.3333, "x": -1, "curve": "stepped"}, {"time": 0.7, "x": -1, "curve": "stepped"}, {"time": 0.75}] + {}, {"time": 0.2167, "x": 8.02}, {"time": 0.3333, "x": -54.3, "y": 61.69}, {"time": 0.3667, "x": -60.41, "y": 130.13}, {"time": 0.45, "x": -60.41, "y": 130.01}, {"time": 0.5667} + ] }, "@leg-front-right": { "translate": [ - {"curve": 0, "c2": 0.4, "c3": 0.383}, {"time": 0.25, "x": -1.86, "y": -9.26, "curve": "stepped"}, {"time": 0.3167, "x": -1.86, "y": -9.26, "curve": "stepped"}, - {"time": 0.3333, "x": -2.24, "y": 13.67, "curve": "stepped"}, {"time": 0.75, "x": -2.24, "y": 13.67, "curve": 0.313, "c3": 0.699}, - {"time": 0.8333, "x": -1.86, "y": -9.26, "curve": 0.313, "c3": 0.699}, {"time": 1} - ] + {}, {"time": 0.2167, "x": -18.54, "y": -11.57}, {"time": 0.25, "x": -23.07, "y": 10.08}, {"time": 0.3333, "x": 29.92, "y": -4.24}, + {"time": 0.3667, "x": 22.95, "y": 2.68, "curve": "stepped"}, {"time": 0.45, "x": 22.95, "y": 2.68}, {"time": 0.5333, "x": 29.92, "y": -4.24}, + {"time": 0.5667, "x": -1.45, "y": -24.11, "curve": "stepped"}, {"time": 0.6333, "x": -1.45, "y": -24.11}, {"time": 0.6667} + ], + "scale": [{"time": 0.2}, {"time": 0.25, "x": 1.5}, {"time": 0.3333}, {"time": 0.3667, "x": 1.5}, {"time": 0.45, "x": 1.51}, {"time": 0.4833}] }, "@leg-front-left": { "translate": [ - {"curve": 0, "c2": 0.4, "c3": 0.383}, {"time": 0.25, "x": -1, "y": -5.53, "curve": "stepped"}, {"time": 0.3167, "x": -1, "y": -5.53, "curve": "stepped"}, - {"time": 0.3333, "x": -1.12, "y": 1.52, "curve": "stepped"}, {"time": 0.75, "x": -1.12, "y": 1.52, "curve": 0.313, "c3": 0.699}, - {"time": 0.8333, "x": -1, "y": -5.53, "curve": 0.313, "c3": 0.699}, {"time": 1} + {}, {"time": 0.2167, "x": -6.84, "y": -9.77, "curve": "stepped"}, {"time": 0.5667, "x": -6.84, "y": -9.77}, {"time": 0.6333, "x": -6.29, "y": -18.69}, + {"time": 0.6667, "x": -3.64, "y": -2.46}, {"time": 0.8333} ] }, - "@shadow": { + "@leg-back-left": { + "translate": [{}, {"time": 0.2167, "x": -0.11, "y": -2.73, "curve": "stepped"}, {"time": 0.5667, "x": -0.11, "y": -2.73}, {"time": 0.6333, "x": -0.46, "y": -6.19}, {"time": 0.8333}] + }, + "@pivot-main": { "translate": [ - {"time": 0.25, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3167, "x": -143.36, "curve": "stepped"}, {"time": 0.7, "x": -143.36, "curve": "stepped"}, - {"time": 0.75, "x": -161.35, "curve": "stepped"}, {"time": 0.8333, "x": -161.35, "curve": 0.313, "c3": 0.699}, {"time": 1} + {"time": 0.15}, {"time": 0.3333, "x": -73.35, "y": 43, "curve": "stepped"}, {"time": 0.45, "x": -73.35, "y": 43}, {"time": 0.5667, "x": -146.44, "curve": "stepped"}, + {"time": 0.6333, "x": -146.44}, {"time": 0.7333, "x": -45.61, "y": 50.15}, {"time": 0.8333} ], - "scale": [ - {"curve": 0, "c2": 0.4, "c3": 0.383}, {"time": 0.25, "x": 1.08, "y": 1.08, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3167, "curve": "stepped"}, - {"time": 0.3333, "x": 1.02, "y": 1.02, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.4, "x": 0.96, "y": 0.96, "curve": "stepped"}, - {"time": 0.4333, "x": 1.02, "y": 1.02, "curve": "stepped"}, {"time": 0.4667, "x": 1.02, "y": 1.02, "curve": 0, "c2": 0.3, "c3": 0.544}, - {"time": 0.5333, "x": 0.96, "y": 0.96, "curve": "stepped"}, {"time": 0.5667, "x": 1.02, "y": 1.02, "curve": "stepped"}, - {"time": 0.6, "x": 1.02, "y": 1.02, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.6667, "x": 0.96, "y": 0.96, "curve": "stepped"}, - {"time": 0.7, "x": 1.02, "y": 1.02, "curve": "stepped"}, {"time": 0.75, "curve": 0.313, "c3": 0.699}, {"time": 0.8333, "x": 1.08, "y": 1.08, "curve": 0.313, "c3": 0.699}, {"time": 1} + "scale": [{"time": 0.5667}, {"time": 0.6333, "y": 0.98}, {"time": 0.7333}] + }, + "leg-front-right-IK": { + "translate": [ + {"time": 0.15}, {"time": 0.2167, "x": 49.59, "y": 35.17}, {"time": 0.25, "x": -2.16, "y": 99.87}, {"time": 0.3333, "x": -158.6, "y": 254.45}, {"time": 0.3667, "x": -48.06, "y": 31.6}, + {"time": 0.45, "x": -24.61, "y": 31.6}, {"time": 0.5667, "curve": "stepped"}, {"time": 0.6333}, {"time": 0.6667, "x": -14.68, "y": -19.57}, {"time": 0.8333} ] }, "leg-front-left-IK": { "translate": [ - {"time": 0.25, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3167, "x": -192.09, "y": 31.17, "curve": "stepped"}, {"time": 0.3333, "x": -162.19, "curve": "stepped"}, - {"time": 0.7, "x": -162.19, "curve": "stepped"}, {"time": 0.75, "x": -180.48, "curve": "stepped"}, {"time": 0.8333, "x": -180.48, "curve": 0.313, "c3": 0.699}, {"time": 1} + {"time": 0.15}, {"time": 0.3333, "x": -54.88, "y": 124.95}, {"time": 0.3667, "x": 37.97, "y": 122.64}, {"time": 0.45, "x": 48.96, "y": 138.43}, {"time": 0.5667, "curve": "stepped"}, + {"time": 0.6333}, {"time": 0.6667, "x": -7.79, "y": -10.12}, {"time": 0.8333} + ] + }, + "leg-back-left-IK": { + "translate": [ + {"time": 0.0833}, {"time": 0.2167, "x": 21.57, "y": 4.03}, {"time": 0.3333, "x": -50.73, "y": 91.08}, {"time": 0.3667, "x": 19.18, "y": 184.64}, {"time": 0.45, "x": 25.59, "y": 197.69}, + {"time": 0.5667, "curve": "stepped"}, {"time": 0.6333}, {"time": 0.75, "x": 24.35, "y": 13.92}, {"time": 0.8333} + ] + }, + "tail": { + "rotate": [ + {}, {"time": 0.15, "angle": 14.68}, {"time": 0.2167, "angle": -12.57}, {"time": 0.3333, "angle": -14.89}, {"time": 0.3667, "angle": 25.96}, {"time": 0.45, "angle": 33.77}, + {"time": 0.6167, "angle": 26.39}, {"time": 0.7167, "angle": -14.8}, {"time": 0.8333} + ] + }, + "@shadow": { + "translate": [ + {"time": 0.15}, {"time": 0.3333, "x": -132.39}, {"time": 0.3667, "x": -111.3, "curve": "stepped"}, {"time": 0.45, "x": -111.3}, {"time": 0.5667, "x": -132.39, "curve": "stepped"}, + {"time": 0.6333, "x": -132.39}, {"time": 0.8333} + ], + "scale": [ + {}, {"time": 0.15, "x": 1.05, "y": 1.05}, {"time": 0.3333, "x": 0.93, "y": 0.93}, {"time": 0.3667, "x": 0.95, "y": 0.95}, {"time": 0.45, "x": 0.97, "y": 0.97}, + {"time": 0.5667, "x": 1.05, "y": 1.05}, {"time": 0.6333, "x": 1.07, "y": 1.07}, {"time": 0.8333} + ] + } + }, + "events": [{"time": 0.3333, "name": "start-attack"}, {"time": 0.3667, "name": "hit"}] + }, + "1608256657": { + "slots": {"eyes": {"attachment": [{"time": 0.9167, "name": "eyes-shut"}, {"time": 1, "name": "eyes"}]}}, + "bones": { + "@pivot-back": {"translate": [{"y": -97.74}, {"time": 0.6667, "y": -82.74}, {"time": 1.3333, "y": -97.74}]}, + "@leg-front-left": {"rotate": [{}, {"time": 0.3333, "angle": -17.48}, {"time": 0.7333}, {"time": 1.05, "angle": 8.38}, {"time": 1.3333}]}, + "@leg-front-right": {"rotate": [{}, {"time": 0.3333, "angle": 9.43}, {"time": 0.7333}, {"time": 1.05, "angle": -11.74}, {"time": 1.3333}]}, + "@leg-back-left": {"rotate": [{}, {"time": 0.3333, "angle": -12.53}, {"time": 0.7333}, {"time": 1.05, "angle": 9.41}, {"time": 1.3333}]}, + "tail": {"rotate": [{}, {"time": 0.3333, "angle": -5.06}, {"time": 0.7333, "angle": -0.77}, {"time": 1.05, "angle": 2.12}, {"time": 1.3333}]}, + "@shadow": {"scale": [{"x": 1.3, "y": 1.3}, {"time": 0.6667, "x": 1.25, "y": 1.25}, {"time": 1.3333, "x": 1.3, "y": 1.3}]} + } + }, + "2828827010": { + "slots": { + "ball": { + "color": [ + {"color": "ffffff00", "curve": "stepped"}, {"time": 0.1667, "color": "ffffff00"}, {"time": 0.3333, "color": "ffffffff", "curve": "stepped"}, {"time": 2.9167, "color": "ffffffff"}, + {"time": 3.0833, "color": "ffffff00"} + ], + "attachment": [{"name": "ball"}] + }, + "eyes": {"attachment": [{"time": 0.5, "name": "eyes-shut"}, {"time": 0.5833, "name": "eyes"}, {"time": 3.0833, "name": "eyes-shut"}, {"time": 3.1667, "name": "eyes"}]}, + "mouth": {"attachment": [{"time": 0.1833, "name": "mouth-open"}, {"time": 0.5, "name": "mouth"}, {"time": 2.7667, "name": "mouth-open"}, {"time": 2.9167, "name": "mouth"}]} + }, + "bones": { + "ball": {"scale": [{"time": 0.3333}, {"time": 0.5, "x": 1.2, "y": 0.802}, {"time": 0.6667, "curve": "stepped"}, {"time": 2.5833}, {"time": 2.75, "x": 1.2, "y": 0.9}, {"time": 2.9167}]}, + "@pivot-back": { + "rotate": [ + {}, {"time": 0.1667, "angle": 6}, {"time": 0.3333, "angle": -6.98}, {"time": 0.5, "angle": 3}, {"time": 0.6667, "curve": "stepped"}, {"time": 2.5833}, {"time": 2.75, "angle": 6}, + {"time": 2.9167, "angle": -6}, {"time": 3.0833, "angle": 6}, {"time": 3.25} + ], + "translate": [ + {}, {"time": 0.1667, "y": 1.78}, {"time": 0.3333, "y": 353.14}, {"time": 0.5, "y": 255}, {"time": 0.6667, "y": 267.67}, {"time": 1.1667, "x": -30, "y": 267.67}, + {"time": 2.1667, "x": 50, "y": 267.67}, {"time": 2.5833, "y": 267.67, "curve": "stepped"}, {"time": 2.75, "y": 267.67}, {"time": 2.9167, "y": 310}, {"time": 3.0833} + ] + }, + "@leg-front-right": { + "translate": [ + {}, {"time": 0.1667, "x": -2.8, "y": -31.7}, {"time": 0.25, "curve": "stepped"}, {"time": 2.5833}, {"time": 2.75, "x": -2.8, "y": -31.7}, {"time": 2.8333, "curve": "stepped"}, + {"time": 3}, {"time": 3.0833, "x": -2.86, "y": -32.44}, {"time": 3.25} + ] + }, + "@leg-front-left": { + "translate": [ + {}, {"time": 0.1667, "x": -1.46, "y": -16.59}, {"time": 0.25, "curve": "stepped"}, {"time": 2.5833}, {"time": 2.75, "x": -1.46, "y": -16.59}, {"time": 2.8333, "curve": "stepped"}, + {"time": 3}, {"time": 3.0833, "x": -1.64, "y": -18.64}, {"time": 3.25} + ] + }, + "leg-front-left-IK": { + "translate": [ + {"time": 0.1667}, {"time": 0.3333, "x": -6.9, "y": 380.8}, {"time": 0.5, "x": -5.5, "y": 268.35, "curve": "stepped"}, {"time": 0.6667, "x": -5.5, "y": 268.35}, + {"time": 0.9167, "x": -38.87, "y": 268.35}, {"time": 1.1667, "x": -10.16, "y": 268.35}, {"time": 1.4167, "x": -39.65, "y": 268.35}, {"time": 1.6667, "x": 23.98, "y": 268.35}, + {"time": 1.9167, "x": 5.36, "y": 268.35}, {"time": 2.1667, "x": 67.44, "y": 268.35}, {"time": 2.4167, "x": -3.95, "y": 268.35}, + {"time": 2.5833, "x": -5.5, "y": 268.35, "curve": "stepped"}, {"time": 2.9167, "x": -5.5, "y": 268.35}, {"time": 3.0833} ] }, "leg-front-right-IK": { "translate": [ - {"time": 0.25, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3167, "x": -172.87, "y": 28.32, "curve": "stepped"}, {"time": 0.3333, "x": 216.26, "curve": "stepped"}, - {"time": 0.7, "x": 216.26, "curve": "stepped"}, {"time": 0.75, "x": -180.48, "curve": "stepped"}, {"time": 0.8333, "x": -180.48, "curve": 0.313, "c3": 0.699}, {"time": 1} + {"time": 0.1667}, {"time": 0.3333, "x": -6.9, "y": 397.8}, {"time": 0.5, "x": 15.4, "y": 268.08, "curve": "stepped"}, {"time": 0.6667, "x": 15.4, "y": 268.08}, + {"time": 0.9167, "x": 24.64, "y": 268.08}, {"time": 1.1667, "x": -41.71, "y": 268.08}, {"time": 1.4167, "x": 22.12, "y": 268.08}, {"time": 1.6667, "x": -0.56, "y": 268.08}, + {"time": 1.9167, "x": 61.6, "y": 268.08}, {"time": 2.1667, "x": 33.88, "y": 268.08}, {"time": 2.4167, "x": 49, "y": 268.08}, {"time": 2.5833, "x": 15.4, "y": 268.08, "curve": "stepped"}, + {"time": 2.9167, "x": 15.4, "y": 268.08}, {"time": 3.0833} ] }, "leg-back-left-IK": { "translate": [ - {"time": 0.25, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3167, "x": -96.78, "y": 27.51, "curve": "stepped"}, {"time": 0.3333, "x": -522.72, "curve": "stepped"}, - {"time": 0.7, "x": -522.72, "curve": "stepped"}, {"time": 0.75, "x": -134.74, "curve": "stepped"}, {"time": 0.8333, "x": -134.74, "curve": 0.313, "c3": 0.699}, {"time": 1} + {"time": 0.1667}, {"time": 0.3333, "x": -0.4, "y": 363.25}, {"time": 0.5, "x": -26.16, "y": 267.01}, {"time": 0.6667, "x": -33.59, "y": 267.01}, + {"time": 0.9167, "x": -22.32, "y": 267.01}, {"time": 1.1667, "x": -63.32, "y": 267.01}, {"time": 1.4167, "x": -28.35, "y": 267.01}, {"time": 1.6667, "x": -28.02, "y": 267.01}, + {"time": 1.9167, "x": 14.36, "y": 267.01}, {"time": 2.1667, "x": 9.14, "y": 267.01}, {"time": 2.4167, "x": 11.99, "y": 267.01}, + {"time": 2.6667, "x": -33.59, "y": 267.01, "curve": "stepped"}, {"time": 2.9167, "x": -33.59, "y": 267.01}, {"time": 3.0833} + ] + }, + "@ball": { + "rotate": [{"time": 0.6667}, {"time": 1.1667, "angle": 18}, {"time": 2.1667, "angle": -18}, {"time": 2.75}], + "translate": [{"time": 0.6667}, {"time": 1.1667, "x": -32}, {"time": 2.1667, "x": 32}, {"time": 2.75}], + "scale": [ + {"x": 0, "y": 0, "curve": "stepped"}, {"time": 0.1667, "x": 0, "y": 0}, {"time": 0.3333, "x": 1.2, "y": 1.2}, {"time": 0.5, "curve": "stepped"}, {"time": 2.75}, + {"time": 2.9167, "x": 1.2, "y": 1.2}, {"time": 3.0833, "x": 0, "y": 0} + ] + }, + "@pivot-center": {"rotate": [{"time": 0.6667}, {"time": 0.9167, "angle": 2}, {"time": 1.4167, "angle": -2}, {"time": 1.9167, "angle": 2}, {"time": 2.4167, "angle": -2}, {"time": 2.75}]}, + "@shadow": { + "translate": [{"time": 0.6667}, {"time": 1.1667, "x": -32}, {"time": 2.1667, "x": 32}, {"time": 2.5833}], + "scale": [ + {}, {"time": 0.1667, "x": 1.1, "y": 1.1}, {"time": 0.3333}, {"time": 0.5, "x": 1.06, "y": 1.06}, {"time": 0.6667, "curve": "stepped"}, {"time": 2.5833}, + {"time": 2.75, "x": 1.06, "y": 1.06}, {"time": 2.9167}, {"time": 3.0833, "x": 1.1, "y": 1.1}, {"time": 3.25} + ] + }, + "tail": { + "rotate": [ + {}, {"time": 0.1667, "angle": 17.35}, {"time": 0.3333, "angle": -14.67}, {"time": 0.5, "angle": 19.12}, {"time": 0.6667, "angle": -10.65}, {"time": 0.9167, "angle": -0.65}, + {"time": 1.1667, "angle": -10.65}, {"time": 1.4167, "angle": -0.65}, {"time": 1.6667, "angle": -10.65}, {"time": 1.9167, "angle": -0.65}, {"time": 2.1667, "angle": -10.65}, + {"time": 2.4167, "angle": -0.65}, {"time": 2.5833, "angle": -10.65}, {"time": 2.75, "angle": 19.35}, {"time": 2.9167, "angle": -18.65}, {"time": 3.0833, "angle": 17.35}, {"time": 3.25} + ] + } + } + }, + "1873947245": { + "slots": { + "eyes": {"attachment": [{"time": 0.0833, "name": "eyes-happy"}, {"time": 1, "name": "eyes"}]}, + "leg-back-left": {"attachment": [{"time": 0.0667, "name": "leg-back-left-long"}, {"time": 0.9, "name": "leg-back-left"}]}, + "mouth": {"attachment": [{"time": 0.0833, "name": "mouth-smile"}, {"time": 1, "name": "mouth"}]} + }, + "bones": { + "@pivot-back": { + "rotate": [ + {}, {"time": 0.1667, "angle": -18}, {"time": 0.3333, "angle": -17}, {"time": 0.5, "angle": -18}, {"time": 0.6667, "angle": -17}, {"time": 0.8333, "angle": -18}, {"time": 1.0833} + ], + "translate": [{}, {"time": 0.1667, "x": 33.94, "y": -52, "curve": "stepped"}, {"time": 0.8333, "x": 33.94, "y": -52}, {"time": 1.0833}] + }, + "@leg-front-left": { + "translate": [ + {}, {"time": 0.1667, "x": -27.99, "y": 1.7}, {"time": 0.3333, "x": -26.93, "y": -1.56}, {"time": 0.5, "x": -27.99, "y": 1.7}, {"time": 0.6667, "x": -26.93, "y": -1.56}, + {"time": 0.8333, "x": -27.99, "y": 1.7}, {"time": 1.0833} + ] + }, + "@leg-front-right": { + "translate": [ + {}, {"time": 0.1667, "x": -84.32, "y": 39.72}, {"time": 0.3333, "x": -82.71, "y": 34.75}, {"time": 0.5, "x": -84.32, "y": 39.72}, {"time": 0.6667, "x": -82.71, "y": 34.75}, + {"time": 0.8333, "x": -84.32, "y": 39.72}, {"time": 1.0833} + ] + }, + "leg-front-right-IK": {"translate": [{}, {"time": 0.1667, "x": 40.32, "curve": "stepped"}, {"time": 0.8333, "x": 40.32}, {"time": 1.0833}]}, + "leg-front-left-IK": {"translate": [{}, {"time": 0.1667, "x": 26.51, "curve": "stepped"}, {"time": 0.8333, "x": 26.51}, {"time": 1.0833}]}, + "leg-back-left-IK": { + "translate": [ + {}, {"time": 0.1667, "x": -30.93, "y": 88.63}, {"time": 0.2667, "x": -62.81, "y": 72.23}, {"time": 0.35, "x": -28.19, "y": 96.83}, {"time": 0.45, "x": -62.81, "y": 72.23}, + {"time": 0.55, "x": -28.19, "y": 96.83}, {"time": 0.6333, "x": -62.81, "y": 72.23}, {"time": 0.7333, "x": -28.19, "y": 96.83}, {"time": 0.8333, "x": -56.92, "y": 76.7}, {"time": 1.0833} + ] + }, + "tail": { + "rotate": [ + {}, {"time": 0.1667, "angle": 25.35}, {"time": 0.3333, "angle": 33.35}, {"time": 0.5, "angle": 25.35}, {"time": 0.6667, "angle": 33.35}, {"time": 0.9167, "angle": 25.35}, + {"time": 1.0833} + ] + }, + "@shadow": { + "translate": [{}, {"time": 0.1667, "x": 32.73, "curve": "stepped"}, {"time": 0.8333, "x": 32.73}, {"time": 1.0833}], + "scale": [ + {"time": 0.1667}, {"time": 0.25, "x": 1.02, "y": 1.02}, {"time": 0.3333}, {"time": 0.4167, "x": 1.02, "y": 1.02}, {"time": 0.5}, {"time": 0.5833, "x": 1.02, "y": 1.02}, {"time": 0.6667}, + {"time": 0.8333, "x": 1.02, "y": 1.02}, {"time": 1.0833} + ] + } + }, + "drawOrder": [{"time": 0.0667, "offsets": [{"slot": "leg-back-left", "offset": 1}]}, {"time": 0.9}] + }, + "3181009532": { + "slots": { + "eyes": {"attachment": [{"time": 0.05, "name": "eyes-happy"}, {"time": 2.0833, "name": "eyes"}]}, + "mouth": {"attachment": [{"time": 0.05, "name": "mouth-bite"}, {"time": 2.0833, "name": "mouth"}]} + }, + "bones": { + "@pivot-back": { + "rotate": [ + {}, {"time": 0.25, "angle": 6}, {"time": 0.4833, "angle": 7}, {"time": 0.55, "angle": 6.5}, {"time": 0.6167, "angle": 7}, {"time": 0.6833, "angle": 6.5}, {"time": 0.9167, "angle": 8}, + {"time": 1.3333, "angle": -7}, {"time": 1.9167, "angle": -9}, {"time": 2.1667, "angle": 3}, {"time": 2.3333} + ], + "translate": [ + {}, {"time": 0.25, "x": 7, "y": 6}, {"time": 0.9167, "x": 11, "y": 10}, {"time": 1.3333, "x": -45, "y": -14}, {"time": 1.9167, "x": -45, "y": -18}, {"time": 2.1667, "y": 4.23}, + {"time": 2.3333} + ] + }, + "@leg-front-right": { + "translate": [ + {}, {"time": 0.25, "x": -2.08, "y": -23.58, "curve": "stepped"}, {"time": 0.9167, "x": -2.08, "y": -23.58}, {"time": 1.3333, "x": -56.51, "y": 25.21}, + {"time": 1.9167, "x": -57.58, "y": 31.33}, {"time": 2.1667, "x": -1.95, "y": -12.95}, {"time": 2.3333} + ] + }, + "@leg-front-left": { + "translate": [ + {}, {"time": 0.25, "x": -0.92, "y": -10.48, "curve": "stepped"}, {"time": 0.9167, "x": -0.92, "y": -10.48}, {"time": 1.3333, "x": -48.7, "y": 5.49}, + {"time": 1.9167, "x": -49.1, "y": 7.78}, {"time": 2.1667, "x": -0.87, "y": -4.98}, {"time": 2.3333} + ] + }, + "@leg-back-left": { + "translate": [ + {"time": 0.25}, {"time": 0.9167, "x": 0.52, "y": 4.2}, {"time": 1.3333, "x": -2.48, "y": -1.61, "curve": "stepped"}, {"time": 1.9167, "x": -2.48, "y": -1.61}, {"time": 2.1667} + ] + }, + "leg-front-left-IK": {"translate": [{"time": 0.9167}, {"time": 1.3333, "x": -11.56, "curve": "stepped"}, {"time": 1.9167, "x": -11.56}, {"time": 2.1667}]}, + "leg-front-right-IK": {"translate": [{"time": 0.9167}, {"time": 1.3333, "x": -5.65, "curve": "stepped"}, {"time": 1.9167, "x": -5.65}, {"time": 2.1667}]}, + "leg-back-left-IK": {"translate": [{"time": 0.9167}, {"time": 1.3333, "x": -33.62, "curve": "stepped"}, {"time": 1.9167, "x": -33.62}, {"time": 2.1667}]}, + "tail": { + "rotate": [ + {}, {"time": 0.25, "angle": 20.35}, {"time": 0.4167, "angle": 15.85}, {"time": 0.4833, "angle": 17.35}, {"time": 0.55, "angle": 15.85}, {"time": 0.6167, "angle": 18.35}, + {"time": 0.6833, "angle": 16.85}, {"time": 0.9167, "angle": 18.35}, {"time": 1.3333, "angle": -9.65}, {"time": 1.9167, "angle": -13.65}, {"time": 2.1667, "angle": 10.35}, + {"time": 2.3333} + ] + } + } + }, + "986957450": { + "slots": { + "eyes": {"attachment": [{"time": 0.3, "name": "eyes-angry"}, {"time": 1.2333, "name": "eyes"}]}, + "mouth": {"attachment": [{"time": 0.3, "name": "mouth-bite"}, {"time": 1.2333, "name": "mouth"}]} + }, + "bones": { + "@pivot-back": { + "rotate": [ + {}, {"time": 0.1, "angle": 6}, {"time": 0.2, "angle": -6}, {"time": 0.3, "angle": 5.5}, {"time": 0.3833, "angle": 4.5}, {"time": 0.4667, "angle": 5.5}, {"time": 0.55, "angle": 4.5}, + {"time": 0.6333, "angle": 5.5}, {"time": 0.7167, "angle": 4.5}, {"time": 0.8, "angle": 5.5}, {"time": 0.8833, "angle": 4.5}, {"time": 0.9667, "angle": 5.5}, {"time": 1.05, "angle": 4.5}, + {"time": 1.1333, "angle": 5.5}, {"time": 1.2167, "angle": 6}, {"time": 1.3167, "angle": -3}, {"time": 1.4167} + ], + "translate": [ + {}, {"time": 0.1, "y": 4.69}, {"time": 0.2, "y": 43.73}, {"time": 0.3, "y": 3.84, "curve": "stepped"}, {"time": 1.2167, "y": 3.84}, {"time": 1.3167, "y": 43.73}, {"time": 1.4167} + ] + }, + "@leg-front-left": { + "translate": [ + {}, {"time": 0.1, "x": -1.28, "y": -14.48}, {"time": 0.2}, {"time": 0.3, "x": -1.28, "y": -14.48}, {"time": 0.3833, "x": -1.02, "y": -10.26}, {"time": 0.4667, "x": -1.22, "y": -13.05}, + {"time": 0.55, "x": -1.02, "y": -10.26}, {"time": 0.6333, "x": -1.22, "y": -13.05}, {"time": 0.7167, "x": -1.02, "y": -10.26}, {"time": 0.8, "x": -1.22, "y": -13.05}, + {"time": 0.8833, "x": -1.02, "y": -10.26}, {"time": 0.9667, "x": -1.22, "y": -13.05}, {"time": 1.05, "x": -1.02, "y": -10.26}, {"time": 1.1333, "x": -1.22, "y": -13.05}, + {"time": 1.2167, "x": -1.28, "y": -14.48}, {"time": 1.3167} + ] + }, + "@leg-front-right": { + "translate": [ + {}, {"time": 0.1, "x": -2.46, "y": -27.93}, {"time": 0.2}, {"time": 0.3, "x": -2.46, "y": -27.93}, {"time": 0.3833, "x": -2.06, "y": -21.45}, {"time": 0.4667, "x": -2.44, "y": -26.54}, + {"time": 0.55, "x": -2.06, "y": -21.45}, {"time": 0.6333, "x": -2.44, "y": -26.54}, {"time": 0.7167, "x": -2.06, "y": -21.45}, {"time": 0.8, "x": -2.44, "y": -26.54}, + {"time": 0.8833, "x": -2.06, "y": -21.45}, {"time": 0.9667, "x": -2.44, "y": -26.54}, {"time": 1.05, "x": -2.06, "y": -21.45}, {"time": 1.1333, "x": -2.44, "y": -26.54}, + {"time": 1.2167, "x": -2.46, "y": -27.93}, {"time": 1.3167} + ] + }, + "@pivot-main": {"translate": [{"time": 0.1}, {"time": 0.3, "x": -154.22, "curve": "stepped"}, {"time": 1.2167, "x": -154.22}, {"time": 1.4167}]}, + "leg-front-left-IK": {"translate": [{"time": 1.2167}, {"time": 1.3167, "x": -61.13}, {"time": 1.4167}]}, + "leg-front-right-IK": {"translate": [{"time": 1.2167}, {"time": 1.3167, "x": -61.13}, {"time": 1.4167}]}, + "@shadow": { + "translate": [{"time": 0.1}, {"time": 0.3, "x": -162.84, "curve": "stepped"}, {"time": 1.2167, "x": -162.84}, {"time": 1.4167}], + "scale": [ + {}, {"time": 0.1, "x": 1.1, "y": 1.1}, {"time": 0.2, "x": 0.92, "y": 0.92}, {"time": 0.3, "x": 1.1, "y": 1.1}, {"time": 0.3833, "x": 1.06, "y": 1.06}, + {"time": 0.4667, "x": 1.1, "y": 1.1}, {"time": 0.55, "x": 1.06, "y": 1.06}, {"time": 0.6333, "x": 1.1, "y": 1.1}, {"time": 0.7167, "x": 1.06, "y": 1.06}, + {"time": 0.8, "x": 1.1, "y": 1.1}, {"time": 0.8833, "x": 1.06, "y": 1.06}, {"time": 0.9667, "x": 1.1, "y": 1.1}, {"time": 1.05, "x": 1.06, "y": 1.06}, + {"time": 1.1333, "x": 1.1, "y": 1.1, "curve": "stepped"}, {"time": 1.2167, "x": 1.1, "y": 1.1}, {"time": 1.3167, "x": 0.92, "y": 0.92}, {"time": 1.4167} + ] + }, + "tail": { + "rotate": [ + {}, {"time": 0.1, "angle": 16.7}, {"time": 0.2, "angle": -16.65}, {"time": 0.3, "angle": 17.85}, {"time": 0.4333, "angle": 15.5}, {"time": 0.5667, "angle": 17.85}, + {"time": 0.7, "angle": 15.5}, {"time": 0.8333, "angle": 17.85}, {"time": 0.95, "angle": 15.5}, {"time": 1.0833, "angle": 17.85}, {"time": 1.2167, "angle": 15.5}, + {"time": 1.3167, "angle": -14.65}, {"time": 1.4167} + ] + }, + "back": {"rotate": [{"time": 0.3}, {"time": 0.4833, "angle": 5.93}, {"time": 0.65}, {"time": 0.8333, "angle": 5.93}, {"time": 1.0167}, {"time": 1.2167, "angle": 5.93}, {"time": 1.4167}]} + } + }, + "122256817": { + "slots": {"eyes": {"attachment": [{"name": "eyes-happy"}]}, "leg-front-left": {"attachment": [{"time": 0.2, "name": "leg-front-left-stretch"}, {"time": 0.5833, "name": "leg-front-left"}]}}, + "bones": { + "@leg-back-left": { + "translate": [ + {"x": -4.73, "y": 6.6}, {"time": 0.15, "x": 1.29, "y": -4.22}, {"time": 0.25, "x": 2.16, "y": 6.49}, {"time": 0.3, "x": -5.17, "y": 15.67}, {"time": 0.5333, "x": -14.09, "y": -7.98}, + {"time": 0.6667, "x": -12.69, "y": -11.31}, {"time": 0.75, "x": -4.73, "y": 6.6} + ], + "scale": [{}, {"time": 0.0667, "x": 0.837}, {"time": 0.15}] + }, + "@leg-front-left": { + "translate": [ + {"x": -14.55, "y": -2.39}, {"time": 0.0333, "x": -24.69, "y": -4.71}, {"time": 0.1667, "x": -24.61, "y": -1.31}, {"time": 0.3333, "x": 13.45, "y": -27.72}, + {"time": 0.4833, "x": 40.66, "y": -4.9}, {"time": 0.5667, "x": 49.25, "y": 8.32}, {"time": 0.7, "x": 9.23, "y": 17.43}, {"time": 0.75, "x": -14.55, "y": -2.39} + ], + "scale": [{}, {"time": 0.0333, "x": 0.935}, {"time": 0.0667, "x": 0.87}, {"time": 0.1667}] + }, + "leg-front-left-IK": { + "translate": [ + {"x": 0.33, "y": 2.27}, {"time": 0.0833, "x": 32.98, "y": -4.28}, {"time": 0.1667, "x": 53.3, "y": 2.35}, {"time": 0.4167, "x": -85.44, "y": 106.83}, + {"time": 0.5167, "x": -85.78, "y": 86.09}, {"time": 0.7, "x": -26.89, "y": 8.67}, {"time": 0.75, "x": 0.33, "y": 2.27} + ] + }, + "leg-back-left-IK": { + "translate": [ + {"x": 17.64, "y": 16.11}, {"time": 0.0333}, {"time": 0.2333, "x": -50.37}, {"time": 0.3, "x": 11.38, "y": 18.2}, {"time": 0.5333, "x": 56.74, "y": 103.8}, + {"time": 0.6667, "x": 71.93, "y": 112.16}, {"time": 0.75, "x": 17.64, "y": 16.11} + ] + }, + "@shadow": {"scale": [{}, {"time": 0.25, "x": 0.94, "y": 0.94}, {"time": 0.4333, "x": 0.8, "y": 0.8}, {"time": 0.75}]}, + "tail": {"rotate": [{}, {"time": 0.25, "angle": -20}, {"time": 0.5, "angle": 4.21}, {"time": 0.75}]}, + "@leg-front-right": { + "translate": [ + {"x": 7.78, "y": -11.23}, {"time": 0.0167, "x": -0.64, "y": -13.16}, {"time": 0.1333, "x": -9.39, "y": -16.39}, {"time": 0.3167, "x": -26.29, "y": 12.52}, + {"time": 0.4333, "x": 7.42, "y": -10.53}, {"time": 0.6, "x": 37.87, "y": -4.31}, {"time": 0.75, "x": 7.78, "y": -11.23} + ] + }, + "leg-front-right-IK": { + "translate": [ + {"x": -13.57, "y": 17.19}, {"time": 0.0167}, {"time": 0.2667, "x": 52.85}, {"time": 0.5, "x": -85.89, "y": 125.19}, {"time": 0.6, "x": -87.57, "y": 110.89}, + {"time": 0.75, "x": -13.57, "y": 17.19} + ] + }, + "@pivot-back": { + "rotate": [{"angle": 3.74}, {"time": 0.0833, "angle": 1.5}, {"time": 0.25, "angle": -2}, {"time": 0.35, "angle": -5}, {"time": 0.6667, "angle": 5}, {"time": 0.75, "angle": 3.74}], + "translate": [{"y": 8}, {"time": 0.0833, "y": -10}, {"time": 0.25}, {"time": 0.5667, "y": 80.61}, {"time": 0.75, "y": 8}] + }, + "@pivot-main": {"scale": [{}, {"time": 0.1333, "y": 0.85}, {"time": 0.25}]}, + "ear-right": {"rotate": [{"angle": 6.45}, {"time": 0.25, "angle": -6.15}, {"time": 0.5, "angle": -7.47}, {"time": 0.75, "angle": 6.45}]}, + "ear-left": {"rotate": [{"angle": 6.45}, {"time": 0.25, "angle": -6.15}, {"time": 0.5, "angle": -7.47}, {"time": 0.75, "angle": 6.45}]}, + "back": {"rotate": [{}, {"time": 0.25, "angle": 9.32}, {"time": 0.5, "angle": -5.11}, {"time": 0.75}]} + } + }, + "3633791092": { + "slots": {"leg-front-left": {"attachment": [{"time": 0.2, "name": "leg-front-left-stretch"}, {"time": 0.6667, "name": "leg-front-left"}]}}, + "bones": { + "@leg-front-left": { + "translate": [ + {"x": -14.55, "y": -2.39}, {"time": 0.0333, "x": -24.61, "y": -1.31, "curve": "stepped"}, {"time": 0.1667, "x": -24.61, "y": -1.31}, {"time": 0.3333, "x": 13.45, "y": -27.72}, + {"time": 0.4833, "x": 40.66, "y": -4.9}, {"time": 0.5833, "x": 39.16, "y": 14.5}, {"time": 0.6667, "x": 1.05, "y": 16.15}, {"time": 0.75, "x": -14.55, "y": -2.39} + ], + "scale": [{"x": 0.969}, {"time": 0.0333, "x": 0.961}, {"time": 0.1667, "x": 1.075}, {"time": 0.3333, "curve": "stepped"}, {"time": 0.6667}, {"time": 0.75, "x": 0.969}] + }, + "@pivot-back": {"translate": [{"y": 8}, {"time": 0.0833, "y": -10}, {"time": 0.25}, {"time": 0.5833, "y": 80.61}, {"time": 0.75, "y": 8}]}, + "leg-front-left-IK": { + "translate": [ + {"x": 4.88, "y": 20.49}, {"time": 0.0833, "x": 28.75, "y": 34.52}, {"time": 0.1667, "x": 31.44, "y": 44.28}, {"time": 0.4167, "x": -85.44, "y": 106.83}, + {"time": 0.5167, "x": -87.18, "y": 81.5}, {"time": 0.6667, "x": -21.75, "y": 25.36}, {"time": 0.75, "x": 4.88, "y": 20.49} + ] + }, + "leg-back-left-IK": { + "translate": [ + {"x": 17.64, "y": 16.11}, {"time": 0.0333}, {"time": 0.2333, "x": -50.37}, {"time": 0.3, "x": 11.38, "y": 18.2}, {"time": 0.5333, "x": 56.74, "y": 103.8}, + {"time": 0.6667, "x": 71.93, "y": 112.16}, {"time": 0.75, "x": 17.64, "y": 16.11} + ] + }, + "@shadow": {"scale": [{}, {"time": 0.25, "x": 0.94, "y": 0.94}, {"time": 0.4333, "x": 0.8, "y": 0.8}, {"time": 0.75}]}, + "@pivot-main": {"scale": [{}, {"time": 0.0833, "y": 0.98}, {"time": 0.25}]}, + "@leg-front-right": { + "translate": [ + {"x": -0.64, "y": -13.16}, {"time": 0.1167, "x": -9.39, "y": -16.39}, {"time": 0.3, "x": -26.29, "y": 12.52}, {"time": 0.4167, "x": 7.42, "y": -10.53}, + {"time": 0.5833, "x": 37.87, "y": -4.31}, {"time": 0.75, "x": -0.64, "y": -13.16} + ] + }, + "@leg-back-left": { + "translate": [ + {"x": -4.73, "y": 6.6}, {"time": 0.15, "x": 1.29, "y": -4.22}, {"time": 0.25, "x": 2.16, "y": 6.49}, {"time": 0.3, "x": -5.17, "y": 15.67}, {"time": 0.5333, "x": -14.09, "y": -7.98}, + {"time": 0.6667, "x": -12.69, "y": -11.31}, {"time": 0.75, "x": -4.73, "y": 6.6} + ], + "scale": [{}, {"time": 0.0667, "x": 0.837}, {"time": 0.15}] + }, + "leg-front-right-IK": {"translate": [{}, {"time": 0.25, "x": 52.85}, {"time": 0.4833, "x": -85.89, "y": 125.19}, {"time": 0.5833, "x": -87.57, "y": 110.89}, {"time": 0.75}]} + } + }, + "1739135238": { + "slots": { + "eyes": { + "attachment": [ + {"time": 0.05, "name": "eyes-angry"}, {"time": 0.3333, "name": "eyes-shut"}, {"time": 0.4333, "name": "eyes-angry"}, {"time": 1.0833, "name": "eyes-shut"}, + {"time": 1.1667, "name": "eyes-angry"}, {"time": 1.2833, "name": "eyes"} + ] + }, + "mouth": {"attachment": [{"time": 0.05, "name": "mouth-bite"}, {"time": 0.4333, "name": "mouth-open"}, {"time": 0.9167, "name": "mouth-bite"}, {"time": 1.2833, "name": "mouth"}]} + }, + "bones": { + "@pivot-back": { + "rotate": [{}, {"time": 0.0833, "angle": 6}, {"time": 0.1667}], + "translate": [ + {}, {"time": 0.0833, "y": 5}, {"time": 0.1667, "y": 220}, {"time": 0.3333, "y": 10}, {"time": 0.4167, "y": 5}, {"time": 0.5833, "y": 420}, {"time": 0.9167}, {"time": 1.0833, "y": -5}, + {"time": 1.2167, "y": 130}, {"time": 1.3333} + ] + }, + "@leg-front-right": {"translate": [{}, {"time": 0.0833, "x": -2.46, "y": -27.89}, {"time": 0.1167}]}, + "@leg-front-left": {"translate": [{}, {"time": 0.0833, "x": -1.21, "y": -13.68}, {"time": 0.1167}]}, + "@pivot-center": { + "rotate": [ + {"time": 0.1167}, {"time": 0.3333, "angle": 180, "curve": "stepped"}, {"time": 0.4167, "angle": 180}, {"time": 0.6667, "angle": -1}, {"time": 0.9167, "angle": 178}, + {"time": 1.0833, "angle": 180}, {"time": 1.3333} + ] + }, + "leg-front-left-IK": { + "translate": [ + {"time": 0.0833, "x": 3.28, "y": 8.42}, {"time": 0.1167, "x": 23.89, "y": 74.66}, {"time": 0.1667, "x": -100.7, "y": 242.98}, {"time": 0.25, "x": -233.21, "y": 406.49}, + {"time": 0.3, "x": -153, "y": 482.64}, {"time": 0.3167, "x": -106.74, "y": 465.65}, {"time": 0.3333, "x": -79.92, "y": 385}, {"time": 0.4167, "x": -126.28, "y": 392.02}, + {"time": 0.5, "x": -212.54, "y": 584.25}, {"time": 0.55, "x": -233.91, "y": 520.55}, {"time": 0.5833, "x": -173.29, "y": 470.76}, {"time": 0.6667, "x": 19.48, "y": 419.84}, + {"time": 0.75, "x": 31.74, "y": 414.89}, {"time": 0.8333, "x": 83.62, "y": 412.28}, {"time": 0.8833, "x": 116.53, "y": 400.02}, {"time": 0.9, "x": 130.33, "y": 410.53}, + {"time": 0.9167, "x": -78.08, "y": 379.36}, {"time": 1.0833, "x": -92.45, "y": 375.87}, {"time": 1.15, "x": 127.37, "y": 350.17}, {"time": 1.2167, "x": 133.62, "y": 244.55}, + {"time": 1.3333} + ] + }, + "leg-front-right-IK": { + "translate": [ + {"time": 0.0833}, {"time": 0.1167, "x": 41.2, "y": 75.27}, {"time": 0.1667, "x": -103.56, "y": 361.93}, {"time": 0.25, "x": 61.46, "y": 606.37}, {"time": 0.3, "x": 293.95, "y": 550.17}, + {"time": 0.3167, "x": 340.35, "y": 482.44}, {"time": 0.3333, "x": 426.33, "y": 357.51}, {"time": 0.4167, "x": 340.52, "y": 373.76}, {"time": 0.5, "x": 236.72, "y": 764.35}, + {"time": 0.55, "x": -18.99, "y": 764.25}, {"time": 0.5833, "x": -86.72, "y": 646.17}, {"time": 0.6667, "x": 16.1, "y": 426.11}, {"time": 0.75, "x": 19.92, "y": 404.36}, + {"time": 0.8333, "x": 90.31, "y": 343.4}, {"time": 0.8833, "x": 202.62, "y": 235.31}, {"time": 0.9, "x": 290.37, "y": 171.88}, {"time": 0.9167, "x": 412.25, "y": 355.41}, + {"time": 1.0833, "x": 345.67, "y": 359.46}, {"time": 1.15, "x": 400.77, "y": 121.52}, {"time": 1.2167, "x": 172.82, "y": 29.19}, {"time": 1.3333} + ] + }, + "leg-back-left-IK": { + "translate": [ + {"time": 0.0833, "x": 1.05, "y": 4.19}, {"time": 0.1167, "x": 28.54, "y": 87}, {"time": 0.1667, "x": -101.24, "y": 155.59}, {"time": 0.25, "x": -446.46, "y": 186.66}, + {"time": 0.3, "x": -509.64, "y": 364.51}, {"time": 0.3167, "x": -479.36, "y": 400.3}, {"time": 0.3333, "x": -473.08, "y": 343.1}, {"time": 0.4167, "x": -421.75, "y": 358.21}, + {"time": 0.5, "x": -502.28, "y": 409.04}, {"time": 0.55, "x": -357.82, "y": 309.09}, {"time": 0.5833, "x": -190.14, "y": 299.56}, {"time": 0.6667, "x": 28.01, "y": 424.39}, + {"time": 0.75, "x": 15.55, "y": 419.34}, {"time": 0.8333, "x": 74.85, "y": 472.68}, {"time": 0.8833, "x": 69.06, "y": 556.5}, {"time": 0.9, "x": 11.02, "y": 617.8}, + {"time": 0.9167, "x": -407.64, "y": 352.01}, {"time": 1.0833, "x": -407.65, "y": 352.01}, {"time": 1.15, "x": -101.44, "y": 524.93}, {"time": 1.2167, "x": 63.56, "y": 378.89}, + {"time": 1.3333} + ] + }, + "tail": { + "rotate": [ + {}, {"time": 0.0833, "angle": 19.35}, {"time": 0.1667, "angle": -22.95}, {"time": 0.3333, "angle": 22.22}, {"time": 0.4167, "angle": 24.08}, {"time": 0.5833, "angle": -30.94}, + {"time": 0.6667, "angle": 18.1}, {"time": 0.8333, "angle": -20.52}, {"time": 0.9167, "angle": 16.35}, {"time": 1.0833, "angle": 20.35}, {"time": 1.2167, "angle": -9.93}, {"time": 1.3333} + ] + }, + "@shadow": { + "scale": [ + {}, {"time": 0.0833, "x": 1.1, "y": 1.1}, {"time": 0.1667, "x": 0.92, "y": 0.92}, {"time": 0.3333, "x": 1.12, "y": 1.12}, {"time": 0.4167, "x": 1.16, "y": 1.16}, + {"time": 0.5833, "x": 0.86, "y": 0.86}, {"time": 0.9167, "x": 1.12, "y": 1.12}, {"time": 1.0833, "x": 1.16, "y": 1.16}, {"time": 1.3333} + ] + }, + "@pivot-main": {"scale": [{"time": 0.3333}, {"time": 0.4167, "y": 0.9}, {"time": 0.5}]} + }, + "events": [{"time": 0.4333, "name": "jump"}, {"time": 0.8333, "name": "start-attack"}, {"time": 0.9167, "name": "hit"}] + }, + "2678688179": { + "slots": {"eyes": {"attachment": [{"name": "eyes-shut"}]}}, + "bones": { + "@pivot-back": {"translate": [{}, {"time": 0.6667, "y": 22.76}, {"time": 1.3333}]}, + "tail": {"rotate": [{}, {"time": 0.3333, "angle": -5.21}, {"time": 0.7333, "angle": -0.27}, {"time": 1.05, "angle": 1.75}, {"time": 1.3333}]}, + "@shadow": {"scale": [{}, {"time": 0.6667, "x": 0.9, "y": 0.9}, {"time": 1.3333}]} + } + }, + "2498186781": { + "slots": { + "eyes": {"attachment": [{"time": 0.05, "name": "eyes-angry"}, {"time": 0.8333, "name": "eyes-shut"}, {"time": 0.9167, "name": "eyes"}]}, + "mouth": {"attachment": [{"time": 0.05, "name": "mouth-bite"}, {"time": 0.3333, "name": "mouth-open"}, {"time": 0.75, "name": "mouth-bite"}, {"time": 0.9167, "name": "mouth"}]} + }, + "bones": { + "tail": { + "rotate": [ + {}, {"time": 0.25, "angle": 21.98}, {"time": 0.3167, "angle": -15.58, "curve": "stepped"}, {"time": 0.3333, "angle": -19.65}, {"time": 0.4, "angle": 20.35, "curve": "stepped"}, + {"time": 0.4333, "angle": -19.65, "curve": "stepped"}, {"time": 0.4667, "angle": -19.65}, {"time": 0.5333, "angle": 20.35, "curve": "stepped"}, + {"time": 0.5667, "angle": -19.65, "curve": "stepped"}, {"time": 0.6, "angle": -19.65}, {"time": 0.6667, "angle": 20.35, "curve": "stepped"}, + {"time": 0.7, "angle": -19.65, "curve": "stepped"}, {"time": 0.75, "angle": -11.84}, {"time": 0.8333, "angle": 16.95}, {"time": 1} + ] + }, + "@pivot-back": { + "rotate": [ + {}, {"time": 0.15, "angle": 4, "curve": "stepped"}, {"time": 0.25, "angle": 4}, {"time": 0.3167, "curve": "stepped"}, {"time": 0.3333}, {"time": 0.4, "angle": -2.45, "curve": "stepped"}, + {"time": 0.4333, "curve": "stepped"}, {"time": 0.4667}, {"time": 0.5333, "angle": -2.45, "curve": "stepped"}, {"time": 0.5667, "curve": "stepped"}, {"time": 0.6}, + {"time": 0.6667, "angle": -2.45, "curve": "stepped"}, {"time": 0.7, "curve": "stepped"}, {"time": 0.75}, {"time": 0.8333, "angle": 6}, {"time": 1} + ], + "translate": [ + {}, {"time": 0.25, "x": 25}, {"time": 0.3167, "x": -135.5, "curve": "stepped"}, {"time": 0.3333, "x": -560.54}, {"time": 0.4, "x": -560.54, "y": 9.3, "curve": "stepped"}, + {"time": 0.4333, "x": -560.54, "curve": "stepped"}, {"time": 0.4667, "x": -560.54}, {"time": 0.5333, "x": -560.54, "y": 9.3, "curve": "stepped"}, + {"time": 0.5667, "x": -560.54, "curve": "stepped"}, {"time": 0.6, "x": -560.54}, {"time": 0.6667, "x": -560.54, "y": 9.3, "curve": "stepped"}, + {"time": 0.7, "x": -560.54, "curve": "stepped"}, {"time": 0.75, "x": -151.24}, {"time": 0.8333, "x": -151.24, "y": 4.06}, {"time": 1} + ], + "scale": [{"time": 0.3167, "curve": "stepped"}, {"time": 0.3333, "x": -1, "curve": "stepped"}, {"time": 0.7, "x": -1, "curve": "stepped"}, {"time": 0.75}] + }, + "@leg-front-right": { + "translate": [ + {}, {"time": 0.25, "x": -1.86, "y": -9.26, "curve": "stepped"}, {"time": 0.3167, "x": -1.86, "y": -9.26, "curve": "stepped"}, + {"time": 0.3333, "x": -2.24, "y": 13.67, "curve": "stepped"}, {"time": 0.75, "x": -2.24, "y": 13.67}, {"time": 0.8333, "x": -1.86, "y": -9.26}, {"time": 1} + ] + }, + "@leg-front-left": { + "translate": [ + {}, {"time": 0.25, "x": -1, "y": -5.53, "curve": "stepped"}, {"time": 0.3167, "x": -1, "y": -5.53, "curve": "stepped"}, {"time": 0.3333, "x": -1.12, "y": 1.52, "curve": "stepped"}, + {"time": 0.75, "x": -1.12, "y": 1.52}, {"time": 0.8333, "x": -1, "y": -5.53}, {"time": 1} + ] + }, + "@shadow": { + "translate": [ + {"time": 0.25}, {"time": 0.3167, "x": -143.36, "curve": "stepped"}, {"time": 0.7, "x": -143.36, "curve": "stepped"}, {"time": 0.75, "x": -161.35, "curve": "stepped"}, + {"time": 0.8333, "x": -161.35}, {"time": 1} + ], + "scale": [ + {}, {"time": 0.25, "x": 1.08, "y": 1.08}, {"time": 0.3167, "curve": "stepped"}, {"time": 0.3333, "x": 1.02, "y": 1.02}, {"time": 0.4, "x": 0.96, "y": 0.96, "curve": "stepped"}, + {"time": 0.4333, "x": 1.02, "y": 1.02, "curve": "stepped"}, {"time": 0.4667, "x": 1.02, "y": 1.02}, {"time": 0.5333, "x": 0.96, "y": 0.96, "curve": "stepped"}, + {"time": 0.5667, "x": 1.02, "y": 1.02, "curve": "stepped"}, {"time": 0.6, "x": 1.02, "y": 1.02}, {"time": 0.6667, "x": 0.96, "y": 0.96, "curve": "stepped"}, + {"time": 0.7, "x": 1.02, "y": 1.02, "curve": "stepped"}, {"time": 0.75}, {"time": 0.8333, "x": 1.08, "y": 1.08}, {"time": 1} + ] + }, + "leg-front-left-IK": { + "translate": [ + {"time": 0.25}, {"time": 0.3167, "x": -192.09, "y": 31.17, "curve": "stepped"}, {"time": 0.3333, "x": -219.56, "y": 3.98, "curve": "stepped"}, {"time": 0.65, "x": -219.56, "y": 3.98}, + {"time": 0.7, "x": -226.38, "y": 3.98, "curve": "stepped"}, {"time": 0.75, "x": -157.76, "curve": "stepped"}, {"time": 0.8333, "x": -157.76}, {"time": 1} + ] + }, + "leg-front-right-IK": { + "translate": [ + {"time": 0.25}, {"time": 0.3167, "x": -172.87, "y": 28.32, "curve": "stepped"}, {"time": 0.3333, "x": 295.89, "y": 8.85, "curve": "stepped"}, + {"time": 0.7, "x": 295.89, "y": 8.85, "curve": "stepped"}, {"time": 0.75, "x": -180.48, "curve": "stepped"}, {"time": 0.8333, "x": -180.48}, {"time": 1} + ] + }, + "leg-back-left-IK": { + "translate": [ + {"time": 0.25}, {"time": 0.3167, "x": -96.78, "y": 27.51, "curve": "stepped"}, {"time": 0.3333, "x": -542.14, "curve": "stepped"}, {"time": 0.7, "x": -542.14, "curve": "stepped"}, + {"time": 0.75, "x": -134.74, "curve": "stepped"}, {"time": 0.8333, "x": -134.74}, {"time": 1} ] }, "@leg-back-left": { "translate": [{"time": 0.3167, "curve": "stepped"}, {"time": 0.3333, "x": -0.06, "y": 3.33, "curve": "stepped"}, {"time": 0.7, "x": -0.06, "y": 3.33, "curve": "stepped"}, {"time": 0.75}] }, - "@pivot-main": {"translate": [{"time": 0.8333, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.9167, "y": 31, "curve": 0.315, "c4": 0.8}, {"time": 1}]} + "@pivot-main": {"translate": [{"time": 0.8333}, {"time": 0.9167, "y": 31}, {"time": 1}]} }, "events": [{"time": 0.3167, "name": "start-attack"}, {"time": 0.4333, "name": "hit"}, {"time": 0.5667, "name": "hit"}, {"time": 0.7, "name": "hit"}] }, - "3678751400": { + "3944557328": { "slots": { "eyes": {"attachment": [{"time": 0.0167, "name": "eyes-angry"}, {"time": 0.85, "name": "eyes-shut"}, {"time": 0.9333, "name": "eyes"}]}, "mouth": {"attachment": [{"time": 0.0167, "name": "mouth-bite"}, {"time": 0.1833, "name": "mouth-open"}, {"time": 0.5, "name": "mouth-bite"}, {"time": 0.9333, "name": "mouth"}]} @@ -5850,87 +7030,71 @@ "bones": { "@pivot-back": { "rotate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "angle": -3.92, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "angle": 2.51, "curve": 0, "c2": 0.2, "c3": 0.858}, - {"time": 0.25, "angle": -6, "curve": "stepped"}, {"time": 0.7167, "angle": -6, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.8333, "angle": 6, "curve": 0.313, "c3": 0.699}, {"time": 1} + {}, {"time": 0.0833, "angle": -3.92}, {"time": 0.1667, "angle": 2.51}, {"time": 0.25, "angle": -6, "curve": "stepped"}, {"time": 0.7167, "angle": -6}, {"time": 0.8333, "angle": 6}, + {"time": 1} ], "translate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "x": 71.93, "y": -12.95, "curve": "stepped"}, {"time": 0.1667, "x": 71.93, "y": -12.95, "curve": 0, "c2": 0.2, "c3": 0.858}, - {"time": 0.25, "x": -145.48, "y": 99.8, "curve": 0, "c2": 0.3, "c3": 0.698}, {"time": 0.4167, "x": -145, "y": 149.7, "curve": 1, "c4": 0}, {"time": 0.5, "x": -145}, - {"time": 0.6667, "x": -145, "y": 2.5, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.7167, "y": 48.98, "curve": 0.315, "c4": 0.8}, - {"time": 0.8333, "y": -3.33, "curve": 0.313, "c3": 0.699}, {"time": 1} + {}, {"time": 0.0833, "x": 71.93, "y": -12.95, "curve": "stepped"}, {"time": 0.1667, "x": 71.93, "y": -12.95}, {"time": 0.25, "x": -145.48, "y": 99.8}, + {"time": 0.4167, "x": -145, "y": 149.7}, {"time": 0.5, "x": -145}, {"time": 0.6667, "x": -145, "y": 2.5}, {"time": 0.7167, "y": 48.98}, {"time": 0.8333, "y": -3.33}, {"time": 1} ] }, "@leg-front-left": { "translate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "x": -4.8, "y": 21.17, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.1667, "x": -0.53, "y": 0.11, "curve": 0, "c2": 0.2, "c3": 0.858}, {"time": 0.25, "x": -1, "y": -5.53, "curve": "stepped"}, - {"time": 0.7167, "x": -1, "y": -5.53, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.8333, "x": -2.17, "y": -17.49, "curve": 0.313, "c3": 0.699}, {"time": 1} + {}, {"time": 0.0833, "x": -2.77, "y": -2.64}, {"time": 0.1667, "x": -0.53, "y": 0.11}, {"time": 0.25, "x": -1, "y": -5.53, "curve": "stepped"}, {"time": 0.7167, "x": -1, "y": -5.53}, + {"time": 0.8333, "x": -2.17, "y": -17.49}, {"time": 1} ] }, "@leg-back-left": { "translate": [ - {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 0.67, "y": -7.85, "curve": 0.161, "c3": 0.854}, {"time": 0.1667, "x": 0.53, "y": -13.09, "curve": 0, "c2": 0.2, "c3": 0.858}, - {"time": 0.25, "curve": "stepped"}, {"time": 0.7167, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.8333, "x": -0.5, "y": -5.23, "curve": 0.313, "c3": 0.699}, {"time": 1} + {}, {"time": 0.0833, "x": 0.67, "y": -7.85}, {"time": 0.1667, "x": 0.53, "y": -13.09}, {"time": 0.25, "curve": "stepped"}, {"time": 0.7167}, {"time": 0.8333, "x": -0.5, "y": -5.23}, + {"time": 1} ] }, "@shadow": { "translate": [ - {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 61.96, "curve": "stepped"}, {"time": 0.1667, "x": 61.96, "curve": 0, "c2": 0.2, "c3": 0.858}, - {"time": 0.25, "x": -143.36, "curve": 0, "c2": 0.3, "c3": 0.698}, {"time": 0.4167, "x": -154.48, "curve": "stepped"}, {"time": 0.6667, "x": -154.48, "curve": 0, "c2": 0.3, "c3": 0.544}, - {"time": 0.7167, "x": -9.48, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.8333} + {}, {"time": 0.0833, "x": 61.96, "curve": "stepped"}, {"time": 0.1667, "x": 61.96}, {"time": 0.25, "x": -143.36}, {"time": 0.4167, "x": -154.48, "curve": "stepped"}, + {"time": 0.6667, "x": -154.48}, {"time": 0.7167, "x": -9.48}, {"time": 0.8333} ], "scale": [ - {"time": 0.0833, "curve": 0, "c2": 0.26, "c3": 0.369, "c4": 0.62}, {"time": 0.1667, "x": 1.06, "y": 1.06, "curve": 0, "c2": 0.2, "c3": 0.858}, - {"time": 0.25, "curve": 0, "c2": 0.3, "c3": 0.698}, {"time": 0.4167, "x": 0.86, "y": 0.86}, {"time": 0.5, "x": 1.16, "y": 1.16}, - {"time": 0.6667, "x": 1.18, "y": 1.18, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.7167, "x": 1.02, "y": 1.02, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.8333, "x": 1.1, "y": 1.1, "curve": 0.313, "c3": 0.699}, {"time": 1} + {"time": 0.0833}, {"time": 0.1667, "x": 1.06, "y": 1.06}, {"time": 0.25}, {"time": 0.4167, "x": 0.86, "y": 0.86}, {"time": 0.5, "x": 1.16, "y": 1.16}, + {"time": 0.6667, "x": 1.18, "y": 1.18}, {"time": 0.7167, "x": 1.02, "y": 1.02}, {"time": 0.8333, "x": 1.1, "y": 1.1}, {"time": 1} ] }, "leg-front-right-IK": { "translate": [ - {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 30.89, "y": 11.74, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": 42.9, "curve": 0, "c2": 0.2, "c3": 0.858}, - {"time": 0.25, "x": -172.87, "y": 28.32, "curve": 0, "c2": 0.3, "c3": 0.698}, {"time": 0.4667, "x": 199.66, "y": 192.83, "curve": 1, "c4": 0.1}, {"time": 0.5, "x": 89.09, "y": 434.08}, - {"time": 0.6667, "x": 80.6, "y": 434.08, "curve": "stepped"}, {"time": 0.7, "x": -94.86, "y": 132.5, "curve": "stepped"}, {"time": 0.7167} + {}, {"time": 0.0833, "x": 30.89, "y": 11.74}, {"time": 0.1667, "x": 42.9}, {"time": 0.25, "x": -172.87, "y": 28.32}, {"time": 0.4667, "x": 261.69, "y": 187.13}, + {"time": 0.5, "x": 166.41, "y": 465.39}, {"time": 0.6667, "x": 101.69, "y": 451.97, "curve": "stepped"}, {"time": 0.7, "x": -101.81, "y": 172.32, "curve": "stepped"}, {"time": 0.7167} ] }, "leg-back-left-IK": { "translate": [ - {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 80.9, "curve": 0.161, "c3": 0.854}, {"time": 0.1667, "x": 49.4, "curve": 0, "c2": 0.2, "c3": 0.858}, - {"time": 0.25, "x": -96.78, "y": 27.51, "curve": 0, "c2": 0.3, "c3": 0.698}, {"time": 0.4667, "x": -198.14, "y": 564.33, "curve": 1, "c4": 0.1}, {"time": 0.5, "x": -540.11, "y": 265.13}, - {"time": 0.6667, "x": -537.68, "y": 265.13, "curve": "stepped"}, {"time": 0.7, "x": -58.81, "y": -31.78, "curve": "stepped"}, {"time": 0.7167} + {}, {"time": 0.0833, "x": 80.9}, {"time": 0.1667, "x": 72.25}, {"time": 0.25, "x": -96.78, "y": 27.51}, {"time": 0.4667, "x": -250.56, "y": 568.36}, + {"time": 0.5, "x": -654.65, "y": 234.55}, {"time": 0.6667, "x": -665.01, "y": 210.09, "curve": "stepped"}, {"time": 0.7, "x": -61.52, "y": -3.55, "curve": "stepped"}, {"time": 0.7167} ] }, "@leg-front-right": { "translate": [ - {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 4.31, "y": 11.86, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.1667, "x": -10.19, "y": -4.67, "curve": 0, "c2": 0.2, "c3": 0.858}, {"time": 0.25, "x": -1.86, "y": -9.26, "curve": "stepped"}, - {"time": 0.7167, "x": -1.86, "y": -9.26, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.8333, "x": -4.16, "y": -33.18, "curve": 0.313, "c3": 0.699}, {"time": 1} + {}, {"time": 0.0833, "x": 4.31, "y": 11.86}, {"time": 0.1667, "x": -10.19, "y": -4.67}, {"time": 0.25, "curve": "stepped"}, {"time": 0.7167}, {"time": 0.8333, "x": -4.16, "y": -33.18}, + {"time": 1} ] }, "leg-front-left-IK": { "translate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "x": 8.25, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": 42.9, "curve": 0, "c2": 0.2, "c3": 0.858}, - {"time": 0.25, "x": -192.09, "y": 31.17, "curve": 0, "c2": 0.3, "c3": 0.698}, {"time": 0.4667, "x": 15.15, "y": 402.55, "curve": 1, "c4": 0.1}, {"time": 0.5, "x": -259.78, "y": 378.01}, - {"time": 0.6667, "x": -253.71, "y": 378.01, "curve": "stepped"}, {"time": 0.7, "x": -108.47, "y": 46.07, "curve": "stepped"}, {"time": 0.7167} + {}, {"time": 0.0833, "x": 42.22}, {"time": 0.1667, "x": 42.9}, {"time": 0.25, "x": -192.09, "y": 31.17}, {"time": 0.4667, "x": -33.07, "y": 448.19}, + {"time": 0.5, "x": -325.8, "y": 359.06}, {"time": 0.6667, "x": -307.09, "y": 359.93, "curve": "stepped"}, {"time": 0.7, "x": -83.89, "y": 65.11, "curve": "stepped"}, {"time": 0.7167} ] }, "tail": { "rotate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "angle": 15.61, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "angle": 20.44, "curve": 0, "c2": 0.2, "c3": 0.858}, - {"time": 0.25, "angle": -14.65, "curve": 0.313, "c3": 0.699}, {"time": 0.4667, "angle": -49.65, "curve": 1, "c4": 0.1}, {"time": 0.5, "angle": -2.15}, - {"time": 0.6667, "angle": -1.85, "curve": 0, "c2": 0.4, "c3": 0.383}, {"time": 0.8333, "angle": 21.05, "curve": 0.313, "c3": 0.699}, {"time": 1} + {}, {"time": 0.0833, "angle": 15.61}, {"time": 0.1667, "angle": 20.44}, {"time": 0.25, "angle": -14.65}, {"time": 0.4667, "angle": -49.65}, {"time": 0.5, "angle": -2.15}, + {"time": 0.6667, "angle": -1.85}, {"time": 0.8333, "angle": 21.05}, {"time": 1} ] }, - "@pivot-center": { - "rotate": [ - {"time": 0.25, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.4667, "angle": 112.05, "curve": 1, "c4": 0.1}, {"time": 0.5, "angle": -146.9}, - {"time": 0.6667, "angle": -145.45, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.7167} - ] - } + "@pivot-center": {"rotate": [{"time": 0.25}, {"time": 0.4667, "angle": 112.05}, {"time": 0.5, "angle": -146.9}, {"time": 0.6667, "angle": -145.45}, {"time": 0.7167}]} }, "events": [{"time": 0.4167, "name": "start-attack"}, {"time": 0.5, "name": "hit"}] }, - "2662497262": { + "70462377": { "slots": { "eyes": {"attachment": [{"time": 0.0167, "name": "eyes-angry"}, {"time": 0.9167, "name": "eyes"}]}, "mouth": {"attachment": [{"time": 0.0167, "name": "mouth-bite"}, {"time": 0.1833, "name": "mouth-open"}, {"time": 0.5, "name": "mouth-bite"}, {"time": 0.9167, "name": "mouth"}]} @@ -5938,94 +7102,82 @@ "bones": { "@pivot-back": { "rotate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "angle": -3.92, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "angle": 2.51, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.25, "angle": -6, "curve": "stepped"}, {"time": 0.2667, "angle": -20, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.4833, "angle": -22, "curve": "stepped"}, - {"time": 0.5, "angle": 10}, {"time": 0.6667, "angle": 12, "curve": "stepped"}, {"time": 0.7, "angle": 4, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.8333, "angle": 6, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1} + {}, {"time": 0.0833, "angle": -3.92}, {"time": 0.1667, "angle": 2.51}, {"time": 0.25, "angle": -6, "curve": "stepped"}, {"time": 0.2667, "angle": -20}, + {"time": 0.4833, "angle": -22, "curve": "stepped"}, {"time": 0.5, "angle": 10}, {"time": 0.6667, "angle": 12, "curve": "stepped"}, {"time": 0.7, "angle": 4}, + {"time": 0.8333, "angle": 6}, {"time": 1} ], "translate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "x": 71.93, "y": -12.95, "curve": "stepped"}, {"time": 0.1667, "x": 71.93, "y": -12.95, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.25, "x": -135.5, "curve": "stepped"}, {"time": 0.2667, "x": -551.77, "y": 110, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.4833, "x": -551.77, "y": 120.52, "curve": "stepped"}, {"time": 0.5, "x": -565, "y": -35}, {"time": 0.6667, "x": -565, "y": -40, "curve": "stepped"}, - {"time": 0.7, "x": -135.5, "y": 5, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.8333, "x": -135.5, "y": 10, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1} + {}, {"time": 0.0833, "x": 71.93, "y": -12.95, "curve": "stepped"}, {"time": 0.1667, "x": 71.93, "y": -12.95}, {"time": 0.25, "x": -135.5, "curve": "stepped"}, + {"time": 0.2667, "x": -551.77, "y": 110}, {"time": 0.4833, "x": -551.77, "y": 120.52, "curve": "stepped"}, {"time": 0.5, "x": -565, "y": -35}, + {"time": 0.6667, "x": -565, "y": -40, "curve": "stepped"}, {"time": 0.7, "x": -135.5, "y": 5}, {"time": 0.8333, "x": -135.5, "y": 10}, {"time": 1} ], "scale": [{"time": 0.25, "curve": "stepped"}, {"time": 0.2667, "x": -1, "curve": "stepped"}, {"time": 0.6667, "x": -1, "curve": "stepped"}, {"time": 0.7}] }, "leg-front-right-IK": { "translate": [ - {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 30.89, "y": 11.74, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": 42.9, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.25, "x": -172.87, "y": 28.32, "curve": "stepped"}, {"time": 0.2667, "x": 169.94, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.4833, "x": 160.13, "curve": "stepped"}, - {"time": 0.5, "x": 219.47, "curve": "stepped"}, {"time": 0.6667, "x": 219.47, "curve": "stepped"}, {"time": 0.7, "x": -152.3, "curve": "stepped"}, - {"time": 0.8333, "x": -152.3, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1} + {}, {"time": 0.0833, "x": 30.89, "y": 11.74}, {"time": 0.1667, "x": 42.9}, {"time": 0.25, "x": -172.87, "y": 28.32, "curve": "stepped"}, + {"time": 0.2667, "x": 224.47, "y": -9.31, "curve": "stepped"}, {"time": 0.4833, "x": 224.47, "y": -9.31, "curve": "stepped"}, {"time": 0.5, "x": 219.47, "curve": "stepped"}, + {"time": 0.6667, "x": 219.47, "curve": "stepped"}, {"time": 0.7, "x": -152.3, "curve": "stepped"}, {"time": 0.8333, "x": -152.3}, {"time": 1} ] }, "leg-front-left-IK": { "translate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "x": 8.25, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": 42.9, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.25, "x": -192.09, "y": 31.17, "curve": "stepped"}, {"time": 0.2667, "x": -197.17, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.4833, "x": -206.28, "curve": "stepped"}, - {"time": 0.5, "x": -170.67, "curve": "stepped"}, {"time": 0.6667, "x": -170.67, "curve": "stepped"}, {"time": 0.7, "x": -151.12, "curve": "stepped"}, - {"time": 0.8333, "x": -151.12, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1} + {}, {"time": 0.0833, "x": 43.18}, {"time": 0.1667, "x": 42.9, "y": -3.49}, {"time": 0.25, "x": -192.09, "y": 31.17, "curve": "stepped"}, {"time": 0.2667, "x": -277.01, "y": 66.37}, + {"time": 0.4833, "x": -274.01, "y": 75.85, "curve": "stepped"}, {"time": 0.5, "x": -170.67, "curve": "stepped"}, {"time": 0.6667, "x": -170.67, "curve": "stepped"}, + {"time": 0.7, "x": -151.12, "curve": "stepped"}, {"time": 0.8333, "x": -151.12}, {"time": 1} ] }, "@leg-front-left": { "translate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "x": -4.8, "y": 21.17, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.1667, "x": -0.53, "y": 0.11, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "x": -1, "y": -5.53, "curve": "stepped"}, - {"time": 0.2667, "x": 2.26, "y": 14.19, "curve": "stepped"}, {"time": 0.4833, "x": 2.26, "y": 14.19, "curve": "stepped"}, {"time": 0.5, "x": 3.58, "y": 7.39, "curve": "stepped"}, - {"time": 0.6667, "x": 3.58, "y": 7.39, "curve": "stepped"}, {"time": 0.7, "x": -1, "y": -5.53, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.8333, "x": -0.91, "y": -4.54, "curve": 0.315, "c4": 0.8}, {"time": 1} + {}, {"time": 0.0833, "x": -2.8, "y": -2.2}, {"time": 0.1667, "x": -0.62, "y": -3.38}, {"time": 0.25, "x": -1, "y": -5.53, "curve": "stepped"}, + {"time": 0.2667, "x": 4, "y": -0.66, "curve": "stepped"}, {"time": 0.4833, "x": 4, "y": -0.66}, {"time": 0.5, "x": 4.53, "y": 2.49, "curve": "stepped"}, + {"time": 0.6667, "x": 4.53, "y": 2.49, "curve": "stepped"}, {"time": 0.7, "x": -1, "y": -5.53}, {"time": 0.8333, "x": -0.91, "y": -4.54}, {"time": 1} ] }, "@leg-back-left": { "translate": [ - {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 0.67, "y": -7.85, "curve": 0.161, "c3": 0.854}, {"time": 0.1667, "x": 0.53, "y": -13.09, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.25, "curve": "stepped"}, {"time": 0.2667, "x": 10.26, "y": 0.56, "curve": "stepped"}, {"time": 0.6667, "x": 10.26, "y": 0.56, "curve": "stepped"}, {"time": 0.7} + {}, {"time": 0.0833, "x": 0.67, "y": -7.85}, {"time": 0.1667, "x": 0.61, "y": -9.9}, {"time": 0.25, "curve": "stepped"}, {"time": 0.2667, "x": -1.82, "y": 0.09}, + {"time": 0.4833, "x": -6.6, "y": 4.03, "curve": "stepped"}, {"time": 0.5, "x": 10.86, "y": -7.65, "curve": "stepped"}, {"time": 0.6667, "x": 10.86, "y": -7.65, "curve": "stepped"}, + {"time": 0.7} ] }, "leg-back-left-IK": { "translate": [ - {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 80.9, "curve": 0.161, "c3": 0.854}, {"time": 0.1667, "x": 49.4, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.25, "x": -96.78, "y": 27.51, "curve": "stepped"}, {"time": 0.2667, "x": -579.56, "y": 123.51, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.4833, "x": -583.99, "y": 134.19, "curve": "stepped"}, {"time": 0.5, "x": -508.12, "curve": "stepped"}, {"time": 0.6667, "x": -508.12, "curve": "stepped"}, - {"time": 0.7, "x": -130.76, "curve": "stepped"}, {"time": 0.8333, "x": -130.76, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1} + {}, {"time": 0.0833, "x": 80.9}, {"time": 0.1667, "x": 72.57, "y": -3.2}, {"time": 0.25, "x": -106.8, "y": 17.49, "curve": "stepped"}, {"time": 0.2667, "x": -654.94, "y": 154.36}, + {"time": 0.4833, "x": -669.36, "y": 180.24, "curve": "stepped"}, {"time": 0.5, "x": -541.29, "y": -24.41, "curve": "stepped"}, + {"time": 0.6667, "x": -541.29, "y": -24.41, "curve": "stepped"}, {"time": 0.7, "x": -130.76, "curve": "stepped"}, {"time": 0.8333, "x": -130.76}, {"time": 1} ] }, "@leg-front-right": { "translate": [ - {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 4.31, "y": 11.86, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.1667, "x": -10.19, "y": -4.67, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "x": -1.86, "y": -9.26, "curve": "stepped"}, - {"time": 0.2667, "x": -3.84, "y": 7.68, "curve": "stepped"}, {"time": 0.4833, "x": -3.84, "y": 7.68, "curve": "stepped"}, {"time": 0.5, "x": -8.1, "y": 29.66, "curve": "stepped"}, - {"time": 0.6667, "x": -8.1, "y": 29.66, "curve": "stepped"}, {"time": 0.7, "x": -1.86, "y": -9.26, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.8333, "x": -2.25, "y": -13.72, "curve": 0.315, "c4": 0.8}, {"time": 1} + {}, {"time": 0.0833, "x": 4.31, "y": 11.86}, {"time": 0.1667, "x": -10.19, "y": -4.67}, {"time": 0.25, "x": -1.86, "y": -9.26, "curve": "stepped"}, + {"time": 0.2667, "x": -5.58, "y": 2.65}, {"time": 0.4833, "x": -3.84, "y": 7.68, "curve": "stepped"}, {"time": 0.5, "x": -8.1, "y": 29.66, "curve": "stepped"}, + {"time": 0.6667, "x": -8.1, "y": 29.66, "curve": "stepped"}, {"time": 0.7, "x": -1.86, "y": -9.26}, {"time": 0.8333, "x": -2.25, "y": -13.72}, {"time": 1} ] }, "@shadow": { "translate": [ - {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 61.96, "curve": "stepped"}, {"time": 0.1667, "x": 61.96, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.25, "x": -143.36, "curve": "stepped"}, {"time": 0.2667, "x": -150.21, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.4833, "x": -152.15, "curve": "stepped"}, - {"time": 0.5, "x": -142.78}, {"time": 0.6667, "x": -144.04, "curve": "stepped"}, {"time": 0.7, "x": -144.72, "curve": "stepped"}, - {"time": 0.8333, "x": -144.72, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1} + {}, {"time": 0.0833, "x": 61.96, "curve": "stepped"}, {"time": 0.1667, "x": 61.96}, {"time": 0.25, "x": -143.36, "curve": "stepped"}, {"time": 0.2667, "x": -150.21}, + {"time": 0.4833, "x": -152.15, "curve": "stepped"}, {"time": 0.5, "x": -142.78}, {"time": 0.6667, "x": -144.04, "curve": "stepped"}, {"time": 0.7, "x": -144.72, "curve": "stepped"}, + {"time": 0.8333, "x": -144.72}, {"time": 1} ], "scale": [ - {"time": 0.0833, "curve": 0, "c2": 0.26, "c3": 0.369, "c4": 0.62}, {"time": 0.1667, "x": 1.06, "y": 1.06, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "curve": "stepped"}, - {"time": 0.2667, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.4833, "x": 0.9, "y": 0.9, "curve": "stepped"}, {"time": 0.5, "x": 1.06, "y": 1.06}, - {"time": 0.6667, "x": 1.1, "y": 1.1, "curve": "stepped"}, {"time": 0.7, "x": 1.06, "y": 1.06, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.8333, "x": 1.1, "y": 1.1, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1} + {"time": 0.0833}, {"time": 0.1667, "x": 1.06, "y": 1.06}, {"time": 0.25, "curve": "stepped"}, {"time": 0.2667}, {"time": 0.4833, "x": 0.9, "y": 0.9, "curve": "stepped"}, + {"time": 0.5, "x": 1.06, "y": 1.06}, {"time": 0.6667, "x": 1.1, "y": 1.1, "curve": "stepped"}, {"time": 0.7, "x": 1.06, "y": 1.06}, {"time": 0.8333, "x": 1.1, "y": 1.1}, {"time": 1} ] }, "tail": { "rotate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "angle": 15.61, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "angle": 20.44, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.25, "angle": -15.58, "curve": "stepped"}, {"time": 0.2667, "angle": 40.35, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.4833, "angle": 41.35, "curve": "stepped"}, - {"time": 0.5, "angle": -14.65}, {"time": 0.6667, "angle": -15.65, "curve": "stepped"}, {"time": 0.7, "angle": -15.58, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.8333, "angle": 19.38, "curve": 0.313, "c3": 0.699}, {"time": 1} + {}, {"time": 0.0833, "angle": 15.61}, {"time": 0.1667, "angle": 20.44}, {"time": 0.25, "angle": -15.58, "curve": "stepped"}, {"time": 0.2667, "angle": 40.35}, + {"time": 0.4833, "angle": 41.35, "curve": "stepped"}, {"time": 0.5, "angle": -14.65}, {"time": 0.6667, "angle": -15.65, "curve": "stepped"}, {"time": 0.7, "angle": -15.58}, + {"time": 0.8333, "angle": 19.38}, {"time": 1} ] }, - "@pivot-main": {"translate": [{"time": 0.8333, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.9167, "y": 31, "curve": 0.315, "c4": 0.8}, {"time": 1}]} + "@pivot-main": {"translate": [{"time": 0.8333}, {"time": 0.9167, "y": 31}, {"time": 1}]} }, "events": [{"time": 0.3333, "name": "start-attack"}, {"time": 0.5, "name": "hit"}] }, - "2102433122": { + "319146610": { "slots": { "eyes": {"attachment": [{"time": 0.05, "name": "eyes-angry"}, {"time": 0.6667, "name": "eyes-shut"}, {"time": 0.75, "name": "eyes"}]}, "mouth": {"attachment": [{"time": 0.05, "name": "mouth-bite"}, {"time": 0.2667, "name": "mouth-open"}, {"time": 0.55, "name": "mouth-bite"}, {"time": 0.75, "name": "mouth"}]} @@ -6033,76 +7185,116 @@ "bones": { "@leg-front-right": { "translate": [ - {"curve": 0, "c2": 0.4, "c3": 0.383}, {"time": 0.25, "x": -1.86, "y": -9.26, "curve": "stepped"}, {"time": 0.3167, "x": -1.86, "y": -9.26, "curve": "stepped"}, - {"time": 0.3333, "x": -2.24, "y": 13.67, "curve": "stepped"}, {"time": 0.55, "x": -2.24, "y": 13.67, "curve": 0.313, "c3": 0.699}, - {"time": 0.6667, "x": -1.86, "y": -9.26, "curve": 0.313, "c3": 0.699}, {"time": 0.8333} + {}, {"time": 0.25, "x": -2.2, "y": -15.65}, {"time": 0.3167, "x": -1.86, "y": -9.26, "curve": "stepped"}, {"time": 0.3333, "x": -2.24, "y": 13.67, "curve": "stepped"}, + {"time": 0.5333, "x": -2.24, "y": 13.67, "curve": "stepped"}, {"time": 0.55, "x": -2.12, "y": 6.47}, {"time": 0.6667, "x": -3.13, "y": -23.62}, {"time": 0.8333} ] }, "tail": { "rotate": [ - {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.25, "angle": 21.98, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3167, "angle": -15.58, "curve": "stepped"}, - {"time": 0.3333, "angle": 6.35}, {"time": 0.5, "angle": 10.35, "curve": "stepped"}, {"time": 0.55, "angle": -11.84, "curve": 0.313, "c3": 0.699}, - {"time": 0.6667, "angle": 16.95, "curve": 0.313, "c3": 0.699}, {"time": 0.8333} + {}, {"time": 0.25, "angle": 21.98}, {"time": 0.3167, "angle": -15.58, "curve": "stepped"}, {"time": 0.3333, "angle": 6.35}, {"time": 0.5, "angle": 10.35, "curve": "stepped"}, + {"time": 0.55, "angle": -11.84}, {"time": 0.6667, "angle": 16.95}, {"time": 0.8333} ] }, "@pivot-back": { "rotate": [ - {"curve": 0, "c2": 0.4, "c3": 0.383}, {"time": 0.15, "angle": 4, "curve": "stepped"}, {"time": 0.25, "angle": 4, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.3167, "curve": "stepped"}, {"time": 0.3333}, {"time": 0.5, "angle": -3, "curve": "stepped"}, {"time": 0.55, "curve": 0.313, "c3": 0.699}, - {"time": 0.6667, "angle": 6, "curve": 0.313, "c3": 0.699}, {"time": 0.8333} + {}, {"time": 0.15, "angle": 4, "curve": "stepped"}, {"time": 0.25, "angle": 4}, {"time": 0.3167, "curve": "stepped"}, {"time": 0.3333}, {"time": 0.5, "angle": -3, "curve": "stepped"}, + {"time": 0.55}, {"time": 0.6667, "angle": 6}, {"time": 0.8333} ], "translate": [ - {"curve": 0, "c2": 0.4, "c3": 0.383}, {"time": 0.25, "x": 25, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3167, "x": -135.5, "curve": "stepped"}, {"time": 0.3333, "x": -560.54}, - {"time": 0.5, "x": -577.1, "curve": "stepped"}, {"time": 0.55, "x": -151.24, "curve": 0.313, "c3": 0.699}, {"time": 0.6667, "x": -151.24, "y": 4.06, "curve": 0.313, "c3": 0.699}, - {"time": 0.8333} + {}, {"time": 0.25, "x": 25}, {"time": 0.3167, "x": -135.5, "curve": "stepped"}, {"time": 0.3333, "x": -560.54}, {"time": 0.5, "x": -577.1, "curve": "stepped"}, + {"time": 0.55, "x": -151.24}, {"time": 0.6667, "x": -151.24, "y": 4.06}, {"time": 0.8333} ], "scale": [{"time": 0.3167, "curve": "stepped"}, {"time": 0.3333, "x": -1, "curve": "stepped"}, {"time": 0.5, "x": -1, "curve": "stepped"}, {"time": 0.55}] }, "@leg-front-left": { "translate": [ - {"curve": 0, "c2": 0.4, "c3": 0.383}, {"time": 0.25, "x": -1, "y": -5.53, "curve": "stepped"}, {"time": 0.3167, "x": -1, "y": -5.53, "curve": "stepped"}, - {"time": 0.3333, "x": -1.12, "y": 1.52, "curve": "stepped"}, {"time": 0.55, "x": -1.12, "y": 1.52, "curve": 0.313, "c3": 0.699}, - {"time": 0.6667, "x": -1, "y": -5.53, "curve": 0.313, "c3": 0.699}, {"time": 0.8333} + {}, {"time": 0.25, "x": -1, "y": -5.53, "curve": "stepped"}, {"time": 0.3167, "x": -1, "y": -5.53, "curve": "stepped"}, {"time": 0.3333, "x": -1.12, "y": 1.52, "curve": "stepped"}, + {"time": 0.55, "x": -1.12, "y": 1.52}, {"time": 0.6667, "x": -1, "y": -5.53}, {"time": 0.8333} ] }, "@shadow": { "translate": [ - {"time": 0.25, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3167, "x": -143.36, "curve": "stepped"}, {"time": 0.3333, "x": -143.36}, {"time": 0.5, "x": -157.56, "curve": "stepped"}, - {"time": 0.55, "x": -161.35, "curve": "stepped"}, {"time": 0.6667, "x": -161.35, "curve": 0.313, "c3": 0.699}, {"time": 0.8333} + {"time": 0.25}, {"time": 0.3167, "x": -143.36, "curve": "stepped"}, {"time": 0.3333, "x": -143.36}, {"time": 0.5, "x": -157.56, "curve": "stepped"}, + {"time": 0.55, "x": -161.35, "curve": "stepped"}, {"time": 0.6667, "x": -161.35}, {"time": 0.8333} ], "scale": [ - {"curve": 0, "c2": 0.4, "c3": 0.383}, {"time": 0.25, "x": 1.08, "y": 1.08, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3167, "curve": "stepped"}, {"time": 0.3333}, - {"time": 0.5, "x": 1.08, "y": 1.08, "curve": "stepped"}, {"time": 0.55, "curve": 0.313, "c3": 0.699}, {"time": 0.6667, "x": 1.08, "y": 1.08, "curve": 0.313, "c3": 0.699}, - {"time": 0.8333} + {}, {"time": 0.25, "x": 1.08, "y": 1.08}, {"time": 0.3167, "curve": "stepped"}, {"time": 0.3333}, {"time": 0.5, "x": 1.08, "y": 1.08, "curve": "stepped"}, {"time": 0.55}, + {"time": 0.6667, "x": 1.08, "y": 1.08}, {"time": 0.8333} ] }, "leg-front-left-IK": { "translate": [ - {"time": 0.25, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3167, "x": -192.09, "y": 31.17, "curve": "stepped"}, {"time": 0.3333, "x": -162.19, "curve": "stepped"}, - {"time": 0.5, "x": -162.19, "curve": "stepped"}, {"time": 0.55, "x": -180.48, "curve": "stepped"}, {"time": 0.6667, "x": -180.48, "curve": 0.313, "c3": 0.699}, {"time": 0.8333} + {"time": 0.25}, {"time": 0.3167, "x": -192.09, "y": 31.17, "curve": "stepped"}, {"time": 0.3333, "x": -162.19, "curve": "stepped"}, {"time": 0.5, "x": -162.19, "curve": "stepped"}, + {"time": 0.55, "x": -180.48, "curve": "stepped"}, {"time": 0.6667, "x": -180.48}, {"time": 0.8333} ] }, "leg-front-right-IK": { "translate": [ - {"time": 0.25, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3167, "x": -172.87, "y": 28.32, "curve": "stepped"}, {"time": 0.3333, "x": 216.26, "curve": 0.31, "c4": 0.8}, - {"time": 0.5, "x": 201.43, "curve": "stepped"}, {"time": 0.55, "x": -180.48, "curve": "stepped"}, {"time": 0.6667, "x": -180.48, "curve": 0.313, "c3": 0.699}, {"time": 0.8333} + {"time": 0.25}, {"time": 0.3167, "x": -172.87, "y": 28.32, "curve": "stepped"}, {"time": 0.3333, "x": 301.16, "y": 16.82}, {"time": 0.5, "x": 285.54, "y": 12.82, "curve": "stepped"}, + {"time": 0.55, "x": -180.48, "curve": "stepped"}, {"time": 0.6667, "x": -180.48}, {"time": 0.8333} ] }, "leg-back-left-IK": { "translate": [ - {"time": 0.25, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3167, "x": -96.78, "y": 27.51, "curve": "stepped"}, {"time": 0.3333, "x": -522.72, "curve": 0.31, "c4": 0.8}, - {"time": 0.5, "x": -528.43, "curve": "stepped"}, {"time": 0.55, "x": -134.74, "curve": "stepped"}, {"time": 0.6667, "x": -134.74, "curve": 0.313, "c3": 0.699}, {"time": 0.8333} + {"time": 0.25}, {"time": 0.3167, "x": -91.18, "y": 21.9, "curve": "stepped"}, {"time": 0.3333, "x": -595.64, "y": 5}, {"time": 0.5, "x": -626.51, "y": 11.36, "curve": "stepped"}, + {"time": 0.55, "x": -134.74, "curve": "stepped"}, {"time": 0.6667, "x": -134.74}, {"time": 0.8333} ] }, - "@pivot-main": {"translate": [{"time": 0.6667, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.75, "y": 31, "curve": 0.315, "c4": 0.8}, {"time": 0.8333}]}, + "@pivot-main": {"translate": [{"time": 0.6667}, {"time": 0.75, "y": 31}, {"time": 0.8333}]}, "@leg-back-left": {"translate": [{"time": 0.3167, "curve": "stepped"}, {"time": 0.3333, "x": -0.06, "y": 3.33, "curve": "stepped"}, {"time": 0.5, "x": -0.06, "y": 3.33}, {"time": 0.55}]} }, "events": [{"time": 0.25, "name": "start-attack"}, {"time": 0.3333, "name": "hit"}] }, - "1843465463": { + "1893268900": { + "bones": { + "@pivot-back": { + "rotate": [ + {}, {"time": 0.1667, "angle": 8.43}, {"time": 0.4167, "angle": -69.48}, {"time": 0.5833, "angle": 151.42}, {"time": 0.8333, "angle": -5.75}, {"time": 1, "angle": -7.09}, + {"time": 1.25, "angle": 7.21}, {"time": 1.5} + ], + "translate": [ + {"x": 0.02, "y": 44.43}, {"time": 0.1667, "x": 25.79, "y": 23.82}, {"time": 0.4167, "x": -156.83, "y": 231.34}, {"time": 0.5833, "x": -1.88, "y": 372.46}, + {"time": 0.6667, "x": 196.15, "y": 317.74}, {"time": 0.8333, "x": 558.6, "y": 68.09}, {"time": 1, "x": 586.58, "y": 68.09}, {"time": 1.25, "x": 594.57, "y": 68.09}, + {"time": 1.5, "x": 0.02, "y": 44.43} + ] + }, + "tail": { + "rotate": [ + {}, {"time": 0.1667, "angle": 16.63}, {"time": 0.4167, "angle": -38.13}, {"time": 0.6667, "angle": 21.47}, {"time": 1, "angle": -14.5}, {"time": 1.25, "angle": 17}, {"time": 1.5} + ] + }, + "@leg-back-left": { + "rotate": [ + {}, {"time": 0.1667, "angle": -14.34}, {"time": 0.4167, "angle": 14.4}, {"time": 0.6667, "angle": -14.29, "curve": "stepped"}, {"time": 1, "angle": -14.29}, + {"time": 1.25, "angle": 14.99}, {"time": 1.5} + ] + }, + "@leg-front-left": { + "rotate": [ + {}, {"time": 0.1667, "angle": -18.49}, {"time": 0.4167, "angle": 10.25}, {"time": 0.6667, "angle": -18.44}, {"time": 1, "angle": -22.13}, {"time": 1.25, "angle": 7.14}, {"time": 1.5} + ] + }, + "@leg-front-right": { + "rotate": [ + {}, {"time": 0.1667, "angle": -18.49}, {"time": 0.4167, "angle": 10.25}, {"time": 0.6667, "angle": -18.44}, {"time": 1, "angle": -22.13}, {"time": 1.25, "angle": 7.14}, {"time": 1.5} + ] + }, + "@shadow": { + "translate": [ + {}, {"time": 0.1667, "x": 19.25}, {"time": 0.4167, "x": -31.7}, {"time": 0.5833, "x": 395}, {"time": 0.8333, "x": 549.5}, {"time": 1, "x": 577.9}, {"time": 1.25, "x": 587.3}, + {"time": 1.5} + ], + "scale": [ + {}, {"time": 0.1667, "x": 1.12, "y": 1.12}, {"time": 0.4167, "x": 0.84, "y": 0.84}, {"time": 0.5833, "x": 0.9, "y": 0.9}, {"time": 0.8333, "x": 0.98, "y": 0.98}, + {"time": 1, "x": 0.94, "y": 0.94}, {"time": 1.25, "x": 1.02, "y": 1.02}, {"time": 1.5} + ] + } + } + }, + "3899988824": { "slots": { "eyes": {"attachment": [{"time": 0.0167, "name": "eyes-angry"}, {"time": 0.75, "name": "eyes-shut"}, {"time": 0.8333, "name": "eyes"}]}, - "leg-back-left": {"attachment": [{"time": 0.35, "name": "leg-back-left-long"}, {"time": 0.5833, "name": "leg-back-left"}]}, + "leg-back-left": {"attachment": [{"time": 0.35, "name": "mystic-leg-back-left-long"}, {"time": 0.5833, "name": "mystic-leg-back-left"}]}, "mouth": {"attachment": [{"time": 0.0167, "name": "mouth-bite"}, {"time": 0.2667, "name": "mouth-open"}, {"time": 0.5833, "name": "mouth-bite"}, {"time": 0.8333, "name": "mouth"}]} }, "bones": { @@ -6188,204 +7380,49 @@ "scale": [{"time": 0.5667, "curve": "stepped"}, {"time": 0.75, "y": 0.98, "curve": 0.154, "c4": 0.9}, {"time": 0.9167}] } }, - "drawOrder": [{"time": 0.35, "offsets": [{"slot": "leg-back-left", "offset": 2}]}, {"time": 0.5833}], + "drawOrder": [{"time": 0.35, "offsets": [{"slot": "leg-back-left", "offset": 1}]}, {"time": 0.5833}], "events": [{"time": 0.35, "name": "start-attack"}, {"time": 0.5667, "name": "start-attack"}] }, - "1001093024": { + "3861365989": { "slots": { - "eyes": {"attachment": [{"time": 0.0833, "name": "eyes-happy"}, {"time": 1, "name": "eyes"}]}, - "leg-back-left": {"attachment": [{"time": 0.0667, "name": "leg-back-left-long"}, {"time": 0.9, "name": "leg-back-left"}]}, - "mouth": {"attachment": [{"time": 0.0833, "name": "mouth-smile"}, {"time": 1, "name": "mouth"}]} + "eyes": {"attachment": [{"time": 0.0833, "name": "eyes-shut"}, {"time": 0.1667, "name": "eyes-angry"}, {"time": 0.9833, "name": "eyes-shut"}, {"time": 1.0833, "name": "eyes"}]}, + "leg-front-left": { + "attachment": [ + {"time": 0.5, "name": "mystic-leg-front-left-stretch"}, {"time": 0.6333, "name": "mystic-leg-front-left"}, {"time": 0.7667, "name": "mystic-leg-front-left-stretch"}, + {"time": 0.9, "name": "mystic-leg-front-left"} + ] + }, + "mouth": {"attachment": [{"time": 0.0833, "name": "mouth-bite"}, {"time": 0.3667, "name": "mouth-open"}, {"time": 0.9833, "name": "mouth-bite"}, {"time": 1.0833, "name": "mouth"}]} }, "bones": { "@pivot-back": { "rotate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "angle": -18, "curve": 0.317, "c3": 0.693}, {"time": 0.3333, "angle": -17, "curve": 0.317, "c3": 0.693}, - {"time": 0.5, "angle": -18, "curve": 0.317, "c3": 0.693}, {"time": 0.6667, "angle": -17, "curve": 0.317, "c3": 0.693}, {"time": 0.8333, "angle": -18, "curve": 0.317, "c3": 0.693}, - {"time": 1.0833} + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.15, "angle": 3.67, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.3333, "angle": -14.29, "curve": 0.779, "c4": 0.3}, + {"time": 0.3667, "angle": 15.82}, {"time": 0.4667, "angle": 16.67, "curve": 0.779, "c4": 0.3}, {"time": 0.5, "angle": -19.96}, {"time": 0.6, "angle": -21.17, "curve": 0.779, "c4": 0.3}, + {"time": 0.6333, "angle": 15.82}, {"time": 0.7333, "angle": 16.67, "curve": 0.779, "c4": 0.3}, {"time": 0.7667, "angle": -19.96}, + {"time": 0.8667, "angle": -21.17, "curve": 0.779, "c4": 0.3}, {"time": 0.9833, "angle": 4.4, "curve": 0, "c2": 0.1, "c3": 0.85}, + {"time": 1.05, "angle": 6.79, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1.25} ], "translate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": 33.94, "y": -52, "curve": "stepped"}, {"time": 0.8333, "x": 33.94, "y": -52, "curve": 0.317, "c3": 0.693}, {"time": 1.0833} + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.2167, "x": 8.02, "curve": 0, "c2": 0.4, "c3": 0.383}, {"time": 0.3333, "x": -54.3, "y": 61.69, "curve": 0.779, "c4": 0.3}, + {"time": 0.3667, "x": -60.41, "y": 130.13}, {"time": 0.4667, "x": -60.41, "y": 130.01, "curve": 0.779, "c4": 0.3}, {"time": 0.5, "x": -58.41, "y": 9.6}, + {"time": 0.6, "x": -58.41, "y": 9.9, "curve": 0.779, "c4": 0.3}, {"time": 0.6333, "x": -60.41, "y": 130.13}, {"time": 0.7333, "x": -60.41, "y": 130.01, "curve": 0.779, "c4": 0.3}, + {"time": 0.7667, "x": -58.41, "y": 9.6}, {"time": 0.8667, "x": -58.41, "y": 9.9, "curve": 0.779, "c4": 0.3}, {"time": 0.9833} ] }, - "@leg-front-left": { + "@leg-front-right": { "translate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": -27.99, "y": 1.7, "curve": 0.25, "c3": 0.75}, {"time": 0.3333, "x": -26.93, "y": -1.56, "curve": 0.25, "c3": 0.75}, - {"time": 0.5, "x": -27.99, "y": 1.7, "curve": 0.25, "c3": 0.75}, {"time": 0.6667, "x": -26.93, "y": -1.56, "curve": 0.25, "c3": 0.75}, - {"time": 0.8333, "x": -27.99, "y": 1.7, "curve": 0.317, "c3": 0.693}, {"time": 1.0833} - ] - }, - "@leg-front-right": { - "translate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": -84.32, "y": 39.72, "curve": 0.317, "c3": 0.693}, {"time": 0.3333, "x": -82.71, "y": 34.75, "curve": 0.317, "c3": 0.693}, - {"time": 0.5, "x": -84.32, "y": 39.72, "curve": 0.317, "c3": 0.693}, {"time": 0.6667, "x": -82.71, "y": 34.75, "curve": 0.317, "c3": 0.693}, - {"time": 0.8333, "x": -84.32, "y": 39.72, "curve": 0.317, "c3": 0.693}, {"time": 1.0833} - ] - }, - "leg-front-right-IK": { - "translate": [{"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": 40.32, "curve": "stepped"}, {"time": 0.8333, "x": 40.32, "curve": 0.317, "c3": 0.693}, {"time": 1.0833}] - }, - "leg-front-left-IK": { - "translate": [{"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": 26.51, "curve": "stepped"}, {"time": 0.8333, "x": 26.51, "curve": 0.317, "c3": 0.693}, {"time": 1.0833}] - }, - "leg-back-left-IK": { - "translate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": -30.93, "y": 88.63, "curve": 0.617, "c4": 0.6}, {"time": 0.2667, "x": -62.81, "y": 72.23, "curve": 0, "c2": 0.4, "c3": 0.383}, - {"time": 0.35, "x": -28.19, "y": 96.83, "curve": 0.617, "c4": 0.6}, {"time": 0.45, "x": -62.81, "y": 72.23, "curve": 0, "c2": 0.4, "c3": 0.383}, - {"time": 0.55, "x": -28.19, "y": 96.83, "curve": 0.617, "c4": 0.6}, {"time": 0.6333, "x": -62.81, "y": 72.23, "curve": 0, "c2": 0.4, "c3": 0.383}, - {"time": 0.7333, "x": -28.19, "y": 96.83, "curve": 0.434, "c3": 0.739, "c4": 0.4}, {"time": 0.8333, "x": -56.92, "y": 76.7, "curve": 0.223, "c2": 0.33, "c3": 0.336}, {"time": 1.0833} - ] - }, - "tail": { - "rotate": [ - {"curve": 0, "c2": 0.3, "c3": 0.546}, {"time": 0.1667, "angle": 25.35, "curve": 0.317, "c3": 0.693}, {"time": 0.3333, "angle": 33.35, "curve": 0.317, "c3": 0.693}, - {"time": 0.5, "angle": 25.35, "curve": 0.317, "c3": 0.693}, {"time": 0.6667, "angle": 33.35, "curve": 0.317, "c3": 0.693}, - {"time": 0.9167, "angle": 25.35, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 1.0833} - ] - }, - "@shadow": { - "translate": [{"curve": 0, "c2": 0.3, "c3": 0.546}, {"time": 0.1667, "x": 32.73, "curve": "stepped"}, {"time": 0.8333, "x": 32.73, "curve": 0.317, "c3": 0.693}, {"time": 1.0833}], - "scale": [ - {"time": 0.1667, "curve": 0.317, "c3": 0.693}, {"time": 0.25, "x": 1.02, "y": 1.02, "curve": 0.317, "c3": 0.693}, {"time": 0.3333, "curve": 0.317, "c3": 0.693}, - {"time": 0.4167, "x": 1.02, "y": 1.02, "curve": 0.317, "c3": 0.693}, {"time": 0.5, "curve": 0.317, "c3": 0.693}, {"time": 0.5833, "x": 1.02, "y": 1.02, "curve": 0.317, "c3": 0.693}, - {"time": 0.6667, "curve": 0.317, "c3": 0.693}, {"time": 0.8333, "x": 1.02, "y": 1.02, "curve": 0.317, "c3": 0.693}, {"time": 1.0833} - ] - } - }, - "drawOrder": [{"time": 0.0667, "offsets": [{"slot": "leg-back-left", "offset": 2}]}, {"time": 0.9}] - }, - "3899988824": { - "slots": { - "eyes": {"attachment": [{"time": 0.0167, "name": "eyes-angry"}, {"time": 0.75, "name": "eyes-shut"}, {"time": 0.8333, "name": "eyes"}]}, - "leg-back-left": {"attachment": [{"time": 0.35, "name": "mystic-leg-back-left-long"}, {"time": 0.5833, "name": "mystic-leg-back-left"}]}, - "mouth": {"attachment": [{"time": 0.0167, "name": "mouth-bite"}, {"time": 0.2667, "name": "mouth-open"}, {"time": 0.5833, "name": "mouth-bite"}, {"time": 0.8333, "name": "mouth"}]} - }, - "bones": { - "@pivot-back": { - "rotate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "angle": -3.92, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "angle": 2.51, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.3333, "angle": -6, "curve": "stepped"}, {"time": 0.35, "angle": -16}, {"time": 0.5667, "angle": -16.5, "curve": "stepped"}, {"time": 0.5833, "curve": 0.313, "c3": 0.699}, - {"time": 0.75, "angle": 6, "curve": 0.313, "c3": 0.699}, {"time": 0.9167} - ], - "translate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "x": 71.93, "y": -12.95, "curve": "stepped"}, {"time": 0.25, "x": 71.93, "y": -12.95, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.3333, "x": -135.5, "curve": "stepped"}, {"time": 0.35, "x": -560.54, "y": 85.29}, {"time": 0.5667, "x": -562.89, "y": 81.57, "curve": "stepped"}, - {"time": 0.5833, "x": -151.24, "curve": 0.313, "c3": 0.699}, {"time": 0.75, "x": -151.24, "y": 4.06, "curve": 0.313, "c3": 0.699}, {"time": 0.9167} - ], - "scale": [{"time": 0.3333, "curve": "stepped"}, {"time": 0.35, "x": -1, "curve": "stepped"}, {"time": 0.5667, "x": -1, "curve": "stepped"}, {"time": 0.5833}] - }, - "@shadow": { - "translate": [ - {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 61.96, "curve": "stepped"}, {"time": 0.25, "x": 61.96, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.3333, "x": -143.36, "curve": "stepped"}, {"time": 0.35, "x": -143.36}, {"time": 0.5667, "x": -157.56, "curve": "stepped"}, {"time": 0.5833, "x": -161.35, "curve": "stepped"}, - {"time": 0.75, "x": -161.35, "curve": 0.313, "c3": 0.699}, {"time": 0.9167} - ], - "scale": [ - {"time": 0.0833, "curve": 0, "c2": 0.26, "c3": 0.369, "c4": 0.62}, {"time": 0.25, "x": 1.06, "y": 1.06, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "curve": "stepped"}, - {"time": 0.35}, {"time": 0.5667, "x": 1.08, "y": 1.08, "curve": "stepped"}, {"time": 0.5833, "curve": 0.313, "c3": 0.699}, - {"time": 0.75, "x": 1.08, "y": 1.08, "curve": 0.313, "c3": 0.699}, {"time": 0.9167} - ] - }, - "leg-back-left-IK": { - "translate": [ - {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.1333, "x": 80.9, "curve": 0.161, "c3": 0.854}, {"time": 0.25, "x": 62.82, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.3333, "x": -99.34, "y": 18.56, "curve": "stepped"}, {"time": 0.35, "x": -653.9, "y": 153.81}, {"time": 0.5667, "x": -653.9, "y": 167.85, "curve": "stepped"}, - {"time": 0.5833, "x": -134.74, "curve": "stepped"}, {"time": 0.75, "x": -134.74, "curve": 0.313, "c3": 0.699}, {"time": 0.9167} - ] - }, - "leg-front-right-IK": { - "translate": [ - {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 22.35, "curve": 0.306, "c3": 0.695}, {"time": 0.25, "x": 42.9, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.3333, "x": -131.73, "y": 44.58, "curve": "stepped"}, {"time": 0.35, "x": 244.36, "y": -4.92, "curve": 0.31, "c4": 0.8}, - {"time": 0.5667, "x": 247.43, "y": -1.85, "curve": "stepped"}, {"time": 0.5833, "x": -180.48, "curve": "stepped"}, {"time": 0.75, "x": -180.48, "curve": 0.313, "c3": 0.699}, - {"time": 0.9167} - ] - }, - "leg-front-left-IK": { - "translate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "x": 40.76, "y": 5.08, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "x": 49, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.3333, "x": -180.92, "y": 40.32, "curve": "stepped"}, {"time": 0.35, "x": -197.17}, {"time": 0.5667, "x": -230.7, "y": 4.81, "curve": "stepped"}, - {"time": 0.5833, "x": -180.48, "curve": "stepped"}, {"time": 0.75, "x": -180.48, "curve": 0.313, "c3": 0.699}, {"time": 0.9167} - ] - }, - "@leg-front-left": { - "translate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "x": -2.9, "y": -1.1, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.25, "x": -0.62, "y": -3.44, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "x": -1, "y": -5.53, "curve": "stepped"}, {"time": 0.35, "x": 4.4, "y": -4.91}, - {"time": 0.5667, "x": 7.49, "y": -5.17, "curve": "stepped"}, {"time": 0.5833, "x": 18.69, "y": 1.85, "curve": "stepped"}, - {"time": 0.75, "x": 18.69, "y": 1.85, "curve": 0.306, "c3": 0.695}, {"time": 0.9167} - ] - }, - "@leg-front-right": { - "translate": [ - {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 4.31, "y": 11.86, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.25, "x": -10.48, "y": -15.33, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "x": -3.15, "y": 1.33, "curve": "stepped"}, {"time": 0.35, "x": -3.84, "y": 7.68}, - {"time": 0.5667, "x": -3.53, "y": 9.04, "curve": "stepped"}, {"time": 0.5833, "x": -2.24, "y": 13.67, "curve": 0.313, "c3": 0.699}, - {"time": 0.75, "x": -2.69, "y": -18.63, "curve": 0.313, "c3": 0.699}, {"time": 0.9167} - ] - }, - "@leg-back-left": { - "translate": [ - {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.1333, "x": 0.67, "y": -7.85, "curve": 0.161, "c3": 0.854}, {"time": 0.25, "x": 0.74, "y": -5.43, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.3333, "x": -0.54, "y": 4.44, "curve": "stepped"}, {"time": 0.35, "x": 10.26, "y": 0.56, "curve": "stepped"}, {"time": 0.5667, "x": 10.26, "y": 0.56, "curve": "stepped"}, - {"time": 0.5833} - ] - }, - "tail": { - "rotate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "angle": 15.61, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "angle": 20.44, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.3333, "angle": -15.58, "curve": "stepped"}, {"time": 0.35, "angle": 30.35}, {"time": 0.5667, "angle": 35.35, "curve": "stepped"}, - {"time": 0.5833, "angle": -11.84, "curve": 0.313, "c3": 0.699}, {"time": 0.75, "angle": 16.95, "curve": 0.313, "c3": 0.699}, {"time": 0.9167} - ] - }, - "@pivot-main": { - "translate": [{"time": 0.75, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.8333, "y": 31, "curve": 0.315, "c4": 0.8}, {"time": 0.9167}], - "scale": [{"time": 0.5667, "curve": "stepped"}, {"time": 0.75, "y": 0.98, "curve": 0.154, "c4": 0.9}, {"time": 0.9167}] - } - }, - "drawOrder": [{"time": 0.35, "offsets": [{"slot": "leg-back-left", "offset": 1}]}, {"time": 0.5833}], - "events": [{"time": 0.35, "name": "start-attack"}, {"time": 0.5667, "name": "start-attack"}] - }, - "3861365989": { - "slots": { - "eyes": {"attachment": [{"time": 0.0833, "name": "eyes-shut"}, {"time": 0.1667, "name": "eyes-angry"}, {"time": 0.9833, "name": "eyes-shut"}, {"time": 1.0833, "name": "eyes"}]}, - "leg-front-left": { - "attachment": [ - {"time": 0.5, "name": "mystic-leg-front-left-stretch"}, {"time": 0.6333, "name": "mystic-leg-front-left"}, {"time": 0.7667, "name": "mystic-leg-front-left-stretch"}, - {"time": 0.9, "name": "mystic-leg-front-left"} - ] - }, - "mouth": {"attachment": [{"time": 0.0833, "name": "mouth-bite"}, {"time": 0.3667, "name": "mouth-open"}, {"time": 0.9833, "name": "mouth-bite"}, {"time": 1.0833, "name": "mouth"}]} - }, - "bones": { - "@pivot-back": { - "rotate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.15, "angle": 3.67, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.3333, "angle": -14.29, "curve": 0.779, "c4": 0.3}, - {"time": 0.3667, "angle": 15.82}, {"time": 0.4667, "angle": 16.67, "curve": 0.779, "c4": 0.3}, {"time": 0.5, "angle": -19.96}, {"time": 0.6, "angle": -21.17, "curve": 0.779, "c4": 0.3}, - {"time": 0.6333, "angle": 15.82}, {"time": 0.7333, "angle": 16.67, "curve": 0.779, "c4": 0.3}, {"time": 0.7667, "angle": -19.96}, - {"time": 0.8667, "angle": -21.17, "curve": 0.779, "c4": 0.3}, {"time": 0.9833, "angle": 4.4, "curve": 0, "c2": 0.1, "c3": 0.85}, - {"time": 1.05, "angle": 6.79, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1.25} - ], - "translate": [ - {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.2167, "x": 8.02, "curve": 0, "c2": 0.4, "c3": 0.383}, {"time": 0.3333, "x": -54.3, "y": 61.69, "curve": 0.779, "c4": 0.3}, - {"time": 0.3667, "x": -60.41, "y": 130.13}, {"time": 0.4667, "x": -60.41, "y": 130.01, "curve": 0.779, "c4": 0.3}, {"time": 0.5, "x": -58.41, "y": 9.6}, - {"time": 0.6, "x": -58.41, "y": 9.9, "curve": 0.779, "c4": 0.3}, {"time": 0.6333, "x": -60.41, "y": 130.13}, {"time": 0.7333, "x": -60.41, "y": 130.01, "curve": 0.779, "c4": 0.3}, - {"time": 0.7667, "x": -58.41, "y": 9.6}, {"time": 0.8667, "x": -58.41, "y": 9.9, "curve": 0.779, "c4": 0.3}, {"time": 0.9833} - ] - }, - "@leg-front-right": { - "translate": [ - {"curve": 0, "c2": 0.17, "c3": 0.521, "c4": 0.69}, {"time": 0.15, "x": -16.23, "y": -19.18, "curve": 0.377, "c2": 0.59, "c3": 0.739}, {"time": 0.2167, "x": -18.54, "y": -11.57}, - {"time": 0.25, "x": -22.65, "y": 8.05, "curve": 0, "c2": 0.4, "c3": 0.383}, {"time": 0.3333, "x": 29.92, "y": -4.24, "curve": 0.779, "c4": 0.4}, {"time": 0.3667, "x": 22.95, "y": 2.68}, - {"time": 0.4667, "x": 29.92, "y": -4.24, "curve": 0.779, "c4": 0.4}, {"time": 0.5, "x": 22.95, "y": 2.68}, {"time": 0.6, "x": 29.92, "y": -4.24, "curve": 0.779, "c4": 0.4}, - {"time": 0.6333, "x": 22.95, "y": 2.68}, {"time": 0.7333, "x": 29.92, "y": -4.24, "curve": 0.779, "c4": 0.4}, {"time": 0.7667, "x": 22.95, "y": 2.68, "curve": "stepped"}, - {"time": 0.9167, "x": 22.95, "y": 2.68, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.95, "curve": 0.464, "c4": 0.7}, {"time": 0.9833, "x": -1.45, "y": -24.11}, - {"time": 1.05, "x": -3.72, "y": -46.34, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1.0833} - ], - "scale": [ - {"time": 0.2167}, {"time": 0.25, "x": 1.5}, {"time": 0.3333, "curve": 0.779, "c4": 0.4}, {"time": 0.3667, "x": 1.5}, {"time": 0.4667, "x": 1.51, "curve": 0.157, "c2": 0.33, "c3": 0.727}, - {"time": 0.5, "curve": "stepped"}, {"time": 0.6, "curve": 0.779, "c4": 0.4}, {"time": 0.6333, "x": 1.5}, {"time": 0.7333, "x": 1.51, "curve": 0.157, "c2": 0.33, "c3": 0.727}, - {"time": 0.7667} + {"curve": 0, "c2": 0.17, "c3": 0.521, "c4": 0.69}, {"time": 0.15, "x": -16.23, "y": -19.18, "curve": 0.377, "c2": 0.59, "c3": 0.739}, {"time": 0.2167, "x": -18.54, "y": -11.57}, + {"time": 0.25, "x": -22.65, "y": 8.05, "curve": 0, "c2": 0.4, "c3": 0.383}, {"time": 0.3333, "x": 29.92, "y": -4.24, "curve": 0.779, "c4": 0.4}, {"time": 0.3667, "x": 22.95, "y": 2.68}, + {"time": 0.4667, "x": 29.92, "y": -4.24, "curve": 0.779, "c4": 0.4}, {"time": 0.5, "x": 22.95, "y": 2.68}, {"time": 0.6, "x": 29.92, "y": -4.24, "curve": 0.779, "c4": 0.4}, + {"time": 0.6333, "x": 22.95, "y": 2.68}, {"time": 0.7333, "x": 29.92, "y": -4.24, "curve": 0.779, "c4": 0.4}, {"time": 0.7667, "x": 22.95, "y": 2.68, "curve": "stepped"}, + {"time": 0.9167, "x": 22.95, "y": 2.68, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.95, "curve": 0.464, "c4": 0.7}, {"time": 0.9833, "x": -1.45, "y": -24.11}, + {"time": 1.05, "x": -3.72, "y": -46.34, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1.0833} + ], + "scale": [ + {"time": 0.2167}, {"time": 0.25, "x": 1.5}, {"time": 0.3333, "curve": 0.779, "c4": 0.4}, {"time": 0.3667, "x": 1.5}, {"time": 0.4667, "x": 1.51, "curve": 0.157, "c2": 0.33, "c3": 0.727}, + {"time": 0.5, "curve": "stepped"}, {"time": 0.6, "curve": 0.779, "c4": 0.4}, {"time": 0.6333, "x": 1.5}, {"time": 0.7333, "x": 1.51, "curve": 0.157, "c2": 0.33, "c3": 0.727}, + {"time": 0.7667} ] }, "@leg-front-left": { @@ -6683,13244 +7720,20706 @@ } } }, - "1749937284": { - "slots": {"eyes": {"attachment": [{"time": 1, "name": "eyes-shut"}, {"time": 1.0833, "name": "eyes"}]}}, + "3562907511": { + "slots": { + "eyes": {"attachment": [{"time": 0.8833, "name": "eyes"}]}, + "mouth": {"attachment": [{"time": 0.05, "name": "mouth-bite"}, {"time": 0.4667, "name": "mouth-open"}, {"time": 0.75, "name": "mouth-bite"}, {"time": 0.8833, "name": "mouth"}]} + }, "bones": { "@pivot-back": { "rotate": [ - {"curve": 0.313, "c3": 0.699}, {"time": 0.3333, "angle": 2.04, "curve": 0.313, "c3": 0.699}, {"time": 0.6667, "curve": 0.313, "c3": 0.699}, - {"time": 1, "angle": 1.79, "curve": 0.313, "c3": 0.699}, {"time": 1.3333} - ], - "translate": [ - {"curve": 0.313, "c3": 0.699}, {"time": 0.3333, "y": -6.53, "curve": 0.313, "c3": 0.699}, {"time": 0.6667, "curve": 0.313, "c3": 0.699}, - {"time": 1, "y": -8.86, "curve": 0.313, "c3": 0.699}, {"time": 1.3333} + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "angle": 4, "curve": 0, "c2": 0.6, "c3": 0.237}, {"time": 0.3333, "angle": -8.88, "curve": 0.621, "c3": 0, "c4": 1.6}, + {"time": 0.6667, "angle": 8.17, "curve": 0.701, "c4": 0.5}, {"time": 0.8833, "angle": 5, "curve": 0.461, "c3": 0.543}, {"time": 1} ], - "scale": [{"curve": 0.313, "c3": 0.699}, {"time": 0.6667, "y": 0.99, "curve": 0.313, "c3": 0.699}, {"time": 1.3333}] - }, - "@leg-front-right": { "translate": [ - {"curve": 0.313, "c3": 0.699}, {"time": 0.3333, "x": 0.02, "y": -16.89, "curve": 0.313, "c3": 0.699}, {"time": 0.6667, "x": -0.04, "y": 2.46, "curve": 0.313, "c3": 0.699}, - {"time": 1, "x": -0.02, "y": -18.9, "curve": 0.313, "c3": 0.699}, {"time": 1.3333} + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": 33.65, "y": -5, "curve": 0, "c2": 0.6, "c3": 0.237}, + {"time": 0.3333, "x": -62.54, "y": 309.16, "curve": 0.621, "c3": 0, "c4": 1.6}, {"time": 0.6667, "x": 12.32, "y": 268.04, "curve": 0.701, "c4": 0.5}, {"time": 0.8833} ] }, "@leg-front-left": { "translate": [ - {"curve": 0.313, "c3": 0.699}, {"time": 0.3333, "x": 0.22, "y": -5.13, "curve": 0.313, "c3": 0.699}, {"time": 0.6667, "x": -0.03, "y": 1.81, "curve": 0.313, "c3": 0.699}, - {"time": 1, "x": 0.2, "y": -7.06, "curve": 0.313, "c3": 0.699}, {"time": 1.3333} - ], - "scale": [ - {"curve": 0.313, "c3": 0.699}, {"time": 0.3333, "x": 0.905, "curve": 0.313, "c3": 0.699}, {"time": 0.6667, "curve": 0.313, "c3": 0.699}, - {"time": 1, "x": 0.905, "curve": 0.313, "c3": 0.699}, {"time": 1.3333} + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": -0.29, "y": -5.47, "curve": 0, "c2": 0.6, "c3": 0.237}, {"time": 0.3333, "curve": "stepped"}, + {"time": 0.6667, "curve": 0.701, "c4": 0.5}, {"time": 0.8833, "x": -0.95, "y": -14.45, "curve": 0.461, "c3": 0.543}, {"time": 1} ] }, - "@leg-back-left": { + "@leg-front-right": { "translate": [ - {"curve": 0.313, "c3": 0.699}, {"time": 0.3333, "x": 0.22, "y": -4.11, "curve": 0.313, "c3": 0.699}, {"time": 0.6667, "x": -0.03, "y": 1.69, "curve": 0.313, "c3": 0.699}, - {"time": 1, "x": 0.2, "y": -5.68, "curve": 0.313, "c3": 0.699}, {"time": 1.3333} - ], - "scale": [ - {"curve": 0.313, "c3": 0.699}, {"time": 0.3333, "x": 0.943, "curve": 0.313, "c3": 0.699}, {"time": 0.6667, "curve": 0.313, "c3": 0.699}, - {"time": 1, "x": 0.943, "curve": 0.313, "c3": 0.699}, {"time": 1.3333} - ] - }, - "@pivot-main": { - "scale": [ - {"curve": 0.313, "c3": 0.699}, {"time": 0.3333, "y": 0.98, "curve": 0.313, "c3": 0.699}, {"time": 0.6667, "curve": 0.313, "c3": 0.699}, - {"time": 1, "y": 0.98, "curve": 0.313, "c3": 0.699}, {"time": 1.3333} + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": -1.07, "y": -20.09, "curve": 0, "c2": 0.6, "c3": 0.237}, {"time": 0.3333, "curve": "stepped"}, + {"time": 0.6667, "curve": 0.701, "c4": 0.5}, {"time": 0.8833, "x": -1.66, "y": -25.29, "curve": 0.461, "c3": 0.543}, {"time": 1} ] }, - "tail": { - "rotate": [{"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "angle": 4.54, "curve": 0.313, "c3": 0.699}, {"time": 1, "angle": -9.06, "curve": 0.313, "c3": 0.699}, {"time": 1.3333}] - }, - "back": { - "rotate": [{"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "angle": -4.27, "curve": 0.313, "c3": 0.699}, {"time": 1, "angle": 2.83, "curve": 0.313, "c3": 0.699}, {"time": 1.3333}] - }, - "ear-right": {"rotate": [{"curve": 0.461, "c3": 0.543}, {"time": 0.6667, "angle": -3.91, "curve": 0.461, "c3": 0.543}, {"time": 1.3333}]}, - "ear-left": {"rotate": [{"curve": 0.461, "c3": 0.543}, {"time": 0.6667, "angle": -3.92, "curve": 0.461, "c3": 0.543}, {"time": 1.3333}]}, "@shadow": { + "translate": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": 24.43, "curve": 0, "c2": 0.6, "c3": 0.237}, {"time": 0.3333, "x": -70.38, "curve": 0.621, "c3": 0, "c4": 1.4}, + {"time": 0.6667, "x": 5.15, "curve": 0.701, "c4": 0.5}, {"time": 0.8833, "x": -8.95, "curve": 0.461, "c3": 0.543}, {"time": 1} + ], "scale": [ - {"curve": 0.306, "c3": 0.695}, {"time": 0.3333, "x": 1.05, "y": 1.05, "curve": 0.306, "c3": 0.695}, {"time": 0.6667, "curve": 0.306, "c3": 0.695}, - {"time": 1, "x": 1.05, "y": 1.05, "curve": 0.306, "c3": 0.695}, {"time": 1.3333} + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": 1.08, "y": 1.08, "curve": 0, "c2": 0.6, "c3": 0.237}, + {"time": 0.3333, "x": 0.85, "y": 0.85, "curve": 0.621, "c3": 0, "c4": 1.4}, {"time": 0.6667, "x": 0.9, "y": 0.9, "curve": 0.701, "c4": 0.5}, + {"time": 0.8833, "x": 1.1, "y": 1.1, "curve": 0.461, "c3": 0.543}, {"time": 1} ] }, - "@mouth": { - "translate": [ - {"curve": 0.342, "c3": 0.67}, {"time": 0.1667, "x": 4.05, "y": 6.14, "curve": 0.342, "c3": 0.67}, {"time": 0.3333, "x": 0.01, "y": 12.29, "curve": 0.342, "c3": 0.67}, - {"time": 0.5, "x": -4.86, "y": 6.15, "curve": 0.342, "c3": 0.67}, {"time": 0.6667, "curve": 0.342, "c3": 0.67}, {"time": 0.8333, "x": 4.05, "y": 6.14, "curve": 0.342, "c3": 0.67}, - {"time": 1, "x": 0.01, "y": 12.29, "curve": 0.342, "c3": 0.67}, {"time": 1.1667, "x": -4.86, "y": 6.15, "curve": 0.342, "c3": 0.67}, {"time": 1.3333} + "tail": { + "rotate": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "angle": 17.93, "curve": 0, "c2": 0.6, "c3": 0.237}, {"time": 0.3333, "angle": -15.3, "curve": 0.621, "c3": 0, "c4": 1.4}, + {"time": 0.6667, "angle": 24.81, "curve": 0.701, "c4": 0.5}, {"time": 0.8833, "angle": -15.84, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 1} ] } - } + }, + "events": [{"time": 0.4667, "name": "start-attack"}] }, - "4036940331": { + "2919275767": { "slots": { - "eyes": {"attachment": [{"name": "eyes-shut"}, {"time": 0.2167, "name": "eyes"}]}, "mouth": {"attachment": [{"time": 0.0333, "name": "mouth-open"}, {"time": 0.2333, "name": "mouth"}]} + "eyes": {"attachment": [{"time": 0.6667, "name": "eyes-shut"}, {"time": 0.75, "name": "eyes"}]}, + "mouth": {"attachment": [{"time": 0.0833, "name": "mouth-bite"}, {"time": 0.35, "name": "mouth-open"}, {"time": 0.55, "name": "mouth-bite"}, {"time": 0.75, "name": "mouth"}]} }, "bones": { "@pivot-back": { - "rotate": [{"angle": -8.23, "curve": "stepped"}, {"time": 0.2333, "angle": -8.23, "curve": 0, "c2": 0.1, "c3": 0.847}, {"time": 0.4167}], - "translate": [{"x": 0.02, "y": -108.13, "curve": 0, "c2": 0.4, "c3": 0.533}, {"time": 0.1667, "x": 17.97, "y": 94.25, "curve": 0.315, "c4": 0.8}, {"time": 0.4167, "y": -0.04}] - }, - "@leg-back-left": {"rotate": [{"angle": 14.26, "curve": "stepped"}, {"time": 0.2333, "angle": 14.26, "curve": 0, "c2": 0.1, "c3": 0.847}, {"time": 0.4167, "angle": -11.75}]}, - "@leg-front-left": {"rotate": [{"angle": 14.58, "curve": "stepped"}, {"time": 0.2333, "angle": 14.58, "curve": 0, "c2": 0.1, "c3": 0.847}, {"time": 0.4167, "angle": 20.14}]}, - "@leg-front-right": {"rotate": [{"angle": 12.31, "curve": "stepped"}, {"time": 0.2333, "angle": 12.31, "curve": 0, "c2": 0.1, "c3": 0.847}, {"time": 0.4167, "angle": -30.3}]}, - "tail": { "rotate": [ - {"angle": -18.5, "curve": "stepped"}, {"time": 0.1167, "angle": -18.5, "curve": 0, "c2": 0.1, "c3": 0.844}, {"time": 0.2667, "angle": 4.16, "curve": 0.309, "c4": 0.8}, {"time": 0.4167} - ] - }, - "@shadow": {"scale": [{"x": 1.3, "y": 1.3, "curve": 0, "c2": 0.4, "c3": 0.533}, {"time": 0.1667, "x": 0.9, "y": 0.9, "curve": 0.315, "c4": 0.8}, {"time": 0.4167}]}, - "@body3": { - "rotate": [ - {"angle": -7.84, "curve": 0.381, "c2": 0.54, "c3": 0.744}, {"time": 0.0833, "angle": -3.77, "curve": 0.25, "c3": 0.75}, - {"time": 0.3, "angle": -14, "curve": 0.246, "c3": 0.635, "c4": 0.55}, {"time": 0.4167, "angle": -7.75} + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "angle": 4, "curve": 0, "c2": 0.5, "c3": 0.3}, {"time": 0.3333, "angle": -23.77, "curve": "stepped"}, + {"time": 0.35, "angle": -29.82, "curve": 0.698, "c3": 0.541}, {"time": 0.5833, "angle": 3}, {"time": 0.7167, "angle": 4, "curve": 0, "c2": 0.09, "c3": 0.479, "c4": 0.56}, + {"time": 0.8167, "angle": -5.09, "curve": 0.416, "c2": 0.51, "c3": 0.865}, {"time": 0.9167} ], - "translate": [{"curve": 0.25, "c3": 0.75}, {"time": 0.2167, "x": 34.51, "y": -19.31, "curve": 0.25, "c3": 0.75}, {"time": 0.4167}] + "translate": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": 33.65, "y": -5, "curve": 0, "c2": 0.5, "c3": 0.3}, {"time": 0.3333, "x": 80.56, "y": 137.85, "curve": "stepped"}, + {"time": 0.35, "x": 147.57, "y": 42.83, "curve": 0, "c2": 0.2, "c3": 0.686}, {"time": 0.5, "x": 206.93, "y": -26.82, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.5833, "x": 226.09}, + {"time": 0.7167, "x": 237.58, "y": 2, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.9167} + ] }, - "@body4": { - "rotate": [ - {"angle": -10.59, "curve": 0.329, "c2": 0.32, "c3": 0.758}, {"time": 0.1667, "angle": 14.26, "curve": 0.242, "c3": 0.667, "c4": 0.67}, - {"time": 0.3167, "angle": -9.89, "curve": 0.379, "c2": 0.6, "c3": 0.724}, {"time": 0.3667, "angle": -15.35, "curve": 0.279, "c3": 0.622, "c4": 0.39}, {"time": 0.4167, "angle": -10.5} - ], + "@pivot-main": { "translate": [ - {"x": 10.26, "y": 1.87, "curve": 0.371, "c2": 0.48, "c3": 0.752}, {"time": 0.1167, "x": 24.8, "y": -25.19, "curve": 0.25, "c3": 0.75}, - {"time": 0.3167, "x": -1.59, "y": 23.93, "curve": 0.253, "c3": 0.622, "c4": 0.48}, {"time": 0.4167, "x": 10.26, "y": 1.87} + {"time": 0.5833, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.7167, "x": 15, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.8167, "x": 7.5, "y": 59.4, "curve": 0.315, "c4": 0.8}, + {"time": 0.9167} ] }, - "@body6": { - "rotate": [ - {"angle": 5.45, "curve": 0.353, "c2": 0.4, "c3": 0.696, "c4": 0.77}, {"time": 0.05, "angle": -2.53, "curve": 0.371, "c2": 0.62, "c3": 0.71}, - {"time": 0.0833, "angle": -5.24, "curve": 0.25, "c3": 0.75}, {"time": 0.3, "angle": 22.83, "curve": 0.246, "c3": 0.635, "c4": 0.55}, {"time": 0.4167, "angle": 5.53} - ], + "leg-front-left-IK": { "translate": [ - {"x": -8.27, "y": 3.25, "curve": 0.379, "c2": 0.6, "c3": 0.724}, {"time": 0.05, "x": 5.81, "y": -4.07, "curve": 0.25, "c3": 0.75}, - {"time": 0.2667, "x": -70.52, "y": 35.61, "curve": 0.242, "c3": 0.667, "c4": 0.67}, {"time": 0.4167, "x": -8.27, "y": 3.25} + {"time": 0.1667, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.3333, "x": 27.04, "y": 216.41, "curve": "stepped"}, {"time": 0.35, "x": 51.7, "y": 178.19, "curve": 0.384, "c3": 0.537}, + {"time": 0.5833, "x": 202.93}, {"time": 0.7, "x": 218.86, "y": 2.61, "curve": 0.315, "c4": 0.8}, {"time": 0.7667, "x": 145.27, "curve": 0.237, "c4": 0.8}, {"time": 0.9167} ] }, - "body-braid2": {"rotate": [{"angle": -1.43, "curve": 0.25, "c3": 0.75}, {"time": 0.2167, "angle": 20.83, "curve": 0.25, "c3": 0.75}, {"time": 0.4167, "angle": -1.43}]}, - "body-braid4": { - "rotate": [ - {"angle": 16.39, "curve": 0.351, "c2": 0.4, "c3": 0.757}, {"time": 0.1333, "angle": -11.53, "curve": 0.25, "c3": 0.75}, - {"time": 0.35, "angle": 27.46, "curve": 0.265, "c3": 0.618, "c4": 0.43}, {"time": 0.4167, "angle": 16.39} + "leg-front-right-IK": { + "translate": [ + {"time": 0.1667, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.3333, "x": 54.35, "y": 310.88, "curve": "stepped"}, {"time": 0.35, "x": 67.2, "y": 319.96, "curve": 0.384, "c3": 0.537}, + {"time": 0.5833, "x": 199.77}, {"time": 0.7, "x": 187.66, "curve": 0.315, "c4": 0.8}, {"time": 0.7667, "x": 143.69, "curve": 0.237, "c4": 0.8}, {"time": 0.9167} ] }, - "body-braid3": { - "rotate": [ - {"angle": -0.64, "curve": 0.379, "c2": 0.6, "c3": 0.724}, {"time": 0.05, "angle": -8.3, "curve": 0.25, "c3": 0.75}, - {"time": 0.2667, "angle": 33.27, "curve": 0.242, "c3": 0.667, "c4": 0.67}, {"time": 0.4167, "angle": -0.64} + "leg-back-left-IK": { + "translate": [ + {"time": 0.1667, "curve": 0, "c2": 0.4, "c3": 0.383}, {"time": 0.3333, "x": 50.37, "y": 150.84, "curve": "stepped"}, {"time": 0.35, "x": 34.64, "y": 81.96, "curve": 0.306, "c4": 0.8}, + {"time": 0.5, "x": 185.62, "y": 1.08, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.7167, "x": 244.18, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.8167, "x": 108.59, "y": 18.82, "curve": 0.306, "c4": 0.8}, {"time": 0.9167} ] }, - "@body2": { - "rotate": [ - {"angle": -6.39, "curve": 0.371, "c2": 0.62, "c3": 0.71}, {"time": 0.0333, "angle": 7.45, "curve": 0.25, "c3": 0.75}, - {"time": 0.25, "angle": -28.57, "curve": 0.243, "c3": 0.689, "c4": 0.75}, {"time": 0.4167, "angle": -6.39} - ], - "translate": [{"x": -13.57, "y": -11.06, "curve": 0.25, "c3": 0.75}, {"time": 0.2167, "x": -14.84, "y": -12.21, "curve": 0.25, "c3": 0.75}, {"time": 0.4167, "x": -13.57, "y": -11.06}] + "@leg-front-right": { + "translate": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": -1.03, "y": -19.32}, {"time": 0.3333, "curve": "stepped"}, {"time": 0.5833, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.7167, "x": 9.38, "y": 7.22}, {"time": 0.9167} + ] }, - "body-braid6": { - "rotate": [ - {"angle": 17.23, "curve": 0.283, "c2": 0.14, "c3": 0.754}, {"time": 0.1833, "angle": -20.17, "curve": 0.25, "c3": 0.75}, - {"time": 0.4, "angle": 18.35, "curve": 0.309, "c3": 0.644, "c4": 0.35}, {"time": 0.4167, "angle": 17.23} + "@leg-front-left": { + "translate": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": -0.29, "y": -5.47}, {"time": 0.3333, "curve": "stepped"}, {"time": 0.5833, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.7167, "x": 6.3, "y": -2.41}, {"time": 0.9167} ] }, - "body-braid5": { + "tail": { "rotate": [ - {"angle": 14.38, "curve": 0.375, "c2": 0.5, "c3": 0.75}, {"time": 0.1, "angle": -7.27, "curve": 0.25, "c3": 0.75}, - {"time": 0.3167, "angle": 36.02, "curve": 0.25, "c3": 0.625, "c4": 0.5}, {"time": 0.4167, "angle": 14.38} + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "angle": 19.35, "curve": 0, "c2": 0.4, "c3": 0.383}, {"time": 0.3333, "angle": -0.88, "curve": "stepped"}, + {"time": 0.35, "angle": -13.56, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.5, "angle": 0.52, "curve": 0, "c2": 0.3, "c3": 0.544}, + {"time": 0.7167, "angle": 19.32, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.8, "angle": -9.3, "curve": 0.313, "c3": 0.699}, {"time": 0.9167} ] }, - "body-braid": { - "rotate": [ - {"angle": -0.26, "curve": 0.371, "c2": 0.62, "c3": 0.71}, {"time": 0.0333, "angle": -2.68, "curve": 0.25, "c3": 0.75}, - {"time": 0.25, "angle": 22.42, "curve": 0.243, "c3": 0.689, "c4": 0.75}, {"time": 0.4167, "angle": -0.26} + "@shadow": { + "translate": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": 24.43, "curve": 0, "c2": 0.4, "c3": 0.383}, {"time": 0.3333, "x": 86.58, "curve": "stepped"}, + {"time": 0.35, "x": 154.34, "curve": 0.315, "c4": 0.8}, {"time": 0.5, "x": 208.2, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.5833, "x": 216.55}, + {"time": 0.7167, "x": 243.36, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.9167} + ], + "scale": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": 1.08, "y": 1.08, "curve": 0, "c2": 0.4, "c3": 0.383}, {"time": 0.3333, "x": 0.92, "y": 0.92, "curve": "stepped"}, + {"time": 0.35, "x": 0.9, "y": 0.9, "curve": 0.315, "c4": 0.8}, {"time": 0.5, "x": 1.02, "y": 1.02, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.5833, "x": 1.08, "y": 1.08}, + {"time": 0.7167, "x": 1.1, "y": 1.1, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.9167} ] } - } + }, + "events": [{"time": 0.35, "name": "start-attack"}] }, - "1257499719": { - "slots": {"eyes": {"attachment": [{"name": "eyes-shut"}]}}, + "1482039890": { + "slots": { + "eyes": {"attachment": [{"time": 0.5, "name": "eyes-shut"}, {"time": 0.6667, "name": "eyes"}]}, + "mouth": {"attachment": [{"time": 0.0167, "name": "mouth-bite"}, {"time": 0.3, "name": "mouth-open"}, {"time": 0.5, "name": "mouth"}]} + }, "bones": { "@pivot-back": { - "translate": [ - {"y": 0.06, "curve": 0.387, "c3": 0.314}, {"time": 0.2167, "y": -17.94, "curve": 0.387, "c3": 0.314}, {"time": 0.45, "y": 0.06, "curve": 0.387, "c3": 0.314}, - {"time": 0.6667, "y": -17.94, "curve": 0.387, "c3": 0.314}, {"time": 0.9, "y": 0.06, "curve": 0.387, "c3": 0.314}, {"time": 1.1167, "y": -17.94, "curve": 0.387, "c3": 0.314}, - {"time": 1.3333, "y": 0.06} + "rotate": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "angle": -3.92, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "angle": 2.51, "curve": 0.697, "c4": 0.3}, + {"time": 0.3, "angle": -2}, {"time": 0.4167, "angle": -3, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5833, "angle": 3, "curve": 0, "c2": 0.17, "c3": 0.45, "c4": 0.61}, + {"time": 0.6667, "angle": -2.47, "curve": 0.345, "c2": 0.53, "c3": 0.751}, {"time": 0.75} ], - "scale": [ - {"curve": 0.387, "c3": 0.314}, {"time": 0.2167, "y": 0.98, "curve": 0.387, "c3": 0.314}, {"time": 0.45, "curve": 0.387, "c3": 0.314}, - {"time": 0.6667, "y": 0.98, "curve": 0.387, "c3": 0.314}, {"time": 0.9, "curve": 0.387, "c3": 0.314}, {"time": 1.1167, "y": 0.98, "curve": 0.387, "c3": 0.314}, {"time": 1.3333} + "translate": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "x": 71.93, "y": -12.95, "curve": "stepped"}, {"time": 0.25, "x": 71.93, "y": -12.95, "curve": 0.697, "c4": 0.3}, + {"time": 0.3, "x": -65}, {"time": 0.4167, "x": -67, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5833, "x": -74.25, "y": -5.2, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.75} + ] + }, + "leg-back-left-IK": { + "translate": [ + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.1333, "x": 80.9, "curve": 0.161, "c3": 0.854}, {"time": 0.25, "x": 72.25, "curve": 0.25, "c4": 0.3}, + {"time": 0.3, "x": -24.7, "y": 18.44, "curve": "stepped"}, {"time": 0.4167, "x": -24.7, "y": 18.44, "curve": 0.306, "c3": 0.695}, + {"time": 0.5833, "x": -90.91, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.75} + ] + }, + "leg-front-right-IK": { + "translate": [ + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 30.89, "y": 11.74, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "x": 42.9, "curve": 0.697, "c4": 0.3}, + {"time": 0.3, "x": 11.08, "y": 2.13, "curve": "stepped"}, {"time": 0.4167, "x": 11.08, "y": 2.13, "curve": 0.306, "c3": 0.695}, + {"time": 0.5833, "x": -87.1, "curve": 0, "c2": 0.17, "c3": 0.45, "c4": 0.61}, {"time": 0.6667, "x": -39.4, "curve": 0.345, "c2": 0.53, "c3": 0.751}, {"time": 0.75} + ] + }, + "leg-front-left-IK": { + "translate": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "x": 52.52, "y": 6.57, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "x": 44.73, "y": 1.83, "curve": 0.697, "c4": 0.3}, + {"time": 0.3, "x": -28.02, "y": 20.97}, {"time": 0.4167, "x": -31.01, "y": 31.21, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.5833, "x": -82.62, "curve": 0, "c2": 0.17, "c3": 0.45, "c4": 0.61}, {"time": 0.6667, "x": -55.81, "curve": 0.345, "c2": 0.53, "c3": 0.751}, {"time": 0.75} ] }, "@leg-front-left": { - "rotate": [ - {"curve": 0, "c2": 0.1, "c3": 0.843}, {"time": 0.1167, "angle": -12.07, "curve": 0.161, "c3": 0.854}, {"time": 0.2167, "angle": -2.63}, - {"time": 0.3333, "angle": 7.79, "curve": 0.079, "c4": 0.95}, {"time": 0.45, "curve": 0, "c2": 0.1, "c3": 0.843}, {"time": 0.55, "angle": -12.07, "curve": 0.161, "c3": 0.854}, - {"time": 0.6667, "angle": -2.63}, {"time": 0.7667, "angle": 7.79, "curve": 0.079, "c4": 0.95}, {"time": 0.8833, "curve": 0, "c2": 0.1, "c3": 0.843}, - {"time": 1, "angle": -12.07, "curve": 0.161, "c3": 0.854}, {"time": 1.1, "angle": -2.63}, {"time": 1.2167, "angle": 7.79, "curve": 0.079, "c4": 0.95}, {"time": 1.3333} + "translate": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "x": -2.59, "y": -4.65, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "x": -0.61, "y": -2.94, "curve": 0.697, "c4": 0.3}, + {"time": 0.3, "x": 0.47, "y": -9.15, "curve": "stepped"}, {"time": 0.4167, "x": 0.47, "y": -9.15, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5833} ] }, "@leg-front-right": { - "rotate": [ - {"curve": 0, "c2": 0.1, "c3": 0.843}, {"time": 0.1167, "angle": -12.07, "curve": 0.161, "c3": 0.854}, {"time": 0.2167, "angle": -2.63}, - {"time": 0.3333, "angle": 7.79, "curve": 0.079, "c4": 0.95}, {"time": 0.45, "curve": 0, "c2": 0.1, "c3": 0.843}, {"time": 0.55, "angle": -12.07, "curve": 0.161, "c3": 0.854}, - {"time": 0.6667, "angle": -2.63}, {"time": 0.7667, "angle": 7.79, "curve": 0.079, "c4": 0.95}, {"time": 0.8833, "curve": 0, "c2": 0.1, "c3": 0.843}, - {"time": 1, "angle": -12.07, "curve": 0.161, "c3": 0.854}, {"time": 1.1, "angle": -2.63}, {"time": 1.2167, "angle": 7.79, "curve": 0.079, "c4": 0.95}, {"time": 1.3333} + "translate": [ + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 4.31, "y": 11.86, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "x": -10.4, "y": -12.15, "curve": 0.697, "c4": 0.3}, + {"time": 0.3, "x": -48.45, "y": 18.12, "curve": "stepped"}, {"time": 0.4167, "x": -48.45, "y": 18.12, "curve": 0, "c2": 0.3, "c3": 0.54}, + {"time": 0.5833, "x": -10.7, "y": -18.88, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.75} ] }, "@leg-back-left": { - "rotate": [ - {"curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.1167, "angle": 8.89, "curve": 0.161, "c3": 0.854}, {"time": 0.2167, "angle": 0.78}, - {"time": 0.3333, "angle": -7.35, "curve": 0.079, "c4": 0.95}, {"time": 0.45, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.55, "angle": 8.89, "curve": 0.161, "c3": 0.854}, - {"time": 0.6667, "angle": 0.78}, {"time": 0.7667, "angle": -7.35, "curve": 0.079, "c4": 0.95}, {"time": 0.8833, "curve": 0, "c2": 0.1, "c3": 0.85}, - {"time": 1, "angle": 8.89, "curve": 0.161, "c3": 0.854}, {"time": 1.1, "angle": 0.78}, {"time": 1.2167, "angle": -7.35, "curve": 0.079, "c4": 0.95}, {"time": 1.3333} - ] - }, - "tail": { - "rotate": [ - {"curve": 0, "c2": 0.05, "c3": 0.658}, {"time": 0.3333, "angle": -10.75, "curve": 0.304, "c3": 0.689}, {"time": 0.7333, "angle": 3.03}, - {"time": 1.05, "angle": 5.39, "curve": 0.234, "c4": 0.9}, {"time": 1.3333} + "translate": [ + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.1333, "x": 0.67, "y": -7.85, "curve": 0.161, "c3": 0.854}, {"time": 0.25, "x": 0.53, "y": -13.09, "curve": 0.25, "c4": 0.3}, + {"time": 0.3, "x": -0.22, "y": 1.34, "curve": "stepped"}, {"time": 0.4167, "x": -0.22, "y": 1.34, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.5833, "x": -0.28, "y": -7.87, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.75} ] }, "@shadow": { + "translate": [ + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 61.96, "curve": "stepped"}, {"time": 0.25, "x": 61.96, "curve": 0.697, "c4": 0.3}, {"time": 0.3, "x": -50.16}, + {"time": 0.4167, "x": -53.09, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5833, "x": -83.79, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.75} + ], "scale": [ - {"curve": 0.387, "c3": 0.314}, {"time": 0.2167, "x": 1.1, "y": 1.1, "curve": 0.387, "c3": 0.314}, {"time": 0.45, "curve": 0.387, "c3": 0.314}, - {"time": 0.6667, "x": 1.1, "y": 1.1, "curve": 0.387, "c3": 0.314}, {"time": 0.9, "curve": 0.387, "c3": 0.314}, {"time": 1.1167, "x": 1.1, "y": 1.1, "curve": 0.387, "c3": 0.314}, - {"time": 1.3333} + {"time": 0.0833, "curve": 0, "c2": 0.26, "c3": 0.369, "c4": 0.62}, {"time": 0.25, "x": 1.06, "y": 1.06, "curve": 0.697, "c4": 0.3}, + {"time": 0.3, "x": 0.96, "y": 0.96, "curve": "stepped"}, {"time": 0.4167, "x": 0.96, "y": 0.96, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.5833, "x": 1.08, "y": 1.08, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.75} ] }, - "@body3": { + "tail": { "rotate": [ - {"angle": -6.36, "curve": 0.349, "c2": 0.39, "c3": 0.706, "c4": 0.8}, {"time": 0.0833, "angle": -12.79, "curve": 0.369, "c2": 0.63, "c3": 0.707}, - {"time": 0.1167, "angle": -14, "curve": 0.25, "c3": 0.75}, {"time": 0.3333, "curve": 0.25, "c3": 0.75}, {"time": 0.5667, "angle": -14.35, "curve": 0.25, "c3": 0.75}, - {"time": 0.7833, "curve": 0.25, "c3": 0.75}, {"time": 1.0167, "angle": -15.03, "curve": 0.25, "c3": 0.75}, {"time": 1.2333, "curve": 0.253, "c3": 0.622, "c4": 0.48}, - {"time": 1.3333, "angle": -6.36} - ], - "translate": [ - {"x": 22.51, "y": -12.59, "curve": 0.382, "c2": 0.55, "c3": 0.741}, {"time": 0.0833, "x": 34.51, "y": -19.31, "curve": 0.25, "c3": 0.75}, {"time": 0.3, "curve": 0.25, "c3": 0.75}, - {"time": 0.5333, "x": 34.51, "y": -19.31, "curve": 0.25, "c3": 0.75}, {"time": 0.75, "curve": 0.25, "c3": 0.75}, {"time": 0.9833, "x": 41.66, "y": -18.14, "curve": 0.25, "c3": 0.75}, - {"time": 1.2, "curve": 0.245, "c3": 0.64, "c4": 0.57}, {"time": 1.3333, "x": 22.51, "y": -12.59} + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "angle": 15.61, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "angle": 20.44, "curve": 0.697, "c4": 0.3}, + {"time": 0.3, "angle": -9.4}, {"time": 0.4167, "angle": -13.12, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5833, "angle": 15.47, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.75} ] - }, - "@body4": { + } + }, + "events": [{"time": 0.3, "name": "start-attack"}] + }, + "3763101013": { + "slots": { + "eyes": {"attachment": [{"time": 1.2333, "name": "eyes"}]}, + "mouth": {"attachment": [{"time": 0.05, "name": "mouth-bite"}, {"time": 0.4667, "name": "mouth-open"}, {"time": 1.0833, "name": "mouth-bite"}, {"time": 1.2333, "name": "mouth"}]} + }, + "bones": { + "@pivot-back": { "rotate": [ - {"angle": 4.43, "curve": 0.334, "c2": 0.34, "c3": 0.671, "c4": 0.68}, {"time": 0.0333, "angle": 6.41, "curve": 0.382, "c2": 0.55, "c3": 0.741}, - {"time": 0.1167, "angle": 9.83, "curve": 0.25, "c3": 0.75}, {"time": 0.3333, "curve": 0.25, "c3": 0.75}, {"time": 0.5667, "angle": 7.58, "curve": 0.25, "c3": 0.75}, - {"time": 0.7833, "curve": 0.25, "c3": 0.75}, {"time": 1.0167, "angle": 9.83, "curve": 0.25, "c3": 0.75}, {"time": 1.2333, "curve": 0.253, "c3": 0.622, "c4": 0.48}, - {"time": 1.3333, "angle": 4.43} + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "angle": 4, "curve": 0, "c2": 0.6, "c3": 0.237}, {"time": 0.4167, "angle": -8.88, "curve": 0, "c2": 0.6, "c3": 0, "c4": 1.4}, + {"time": 1, "angle": 8.17, "curve": 0.701, "c4": 0.5}, {"time": 1.2333, "angle": 5, "curve": 0.461, "c3": 0.543}, {"time": 1.3333} ], "translate": [ - {"x": 29.25, "y": -8.29, "curve": 0.369, "c2": 0.63, "c3": 0.707}, {"time": 0.0333, "x": 32.23, "y": -9.74, "curve": 0.25, "c3": 0.75}, {"time": 0.25, "curve": 0.25, "c3": 0.75}, - {"time": 0.4833, "x": 46.53, "y": -7.39, "curve": 0.25, "c3": 0.75}, {"time": 0.7, "x": 2.58, "y": 6.67, "curve": 0.25, "c3": 0.75}, - {"time": 0.9333, "x": 23.08, "y": -13.68, "curve": 0.25, "c3": 0.75}, {"time": 1.15, "x": -2.39, "y": 7.1, "curve": 0.244, "c3": 0.693, "c4": 0.76}, - {"time": 1.3333, "x": 29.25, "y": -8.29} + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": 33.65, "y": -5, "curve": 0, "c2": 0.6, "c3": 0.237}, + {"time": 0.4167, "x": -62.54, "y": 309.16, "curve": 0, "c2": 0.6, "c3": 0, "c4": 1.4}, {"time": 1, "x": 12.32, "y": 268.04, "curve": 0.701, "c4": 0.5}, {"time": 1.2333} ] }, - "@body6": { - "rotate": [ - {"angle": 8.58, "curve": 0.346, "c2": 0.37, "c3": 0.687, "c4": 0.73}, {"time": 0.05, "angle": 12.94, "curve": 0.378, "c2": 0.61, "c3": 0.721}, - {"time": 0.1, "angle": 15.47, "curve": 0.25, "c3": 0.75}, {"time": 0.3167, "curve": 0.25, "c3": 0.75}, {"time": 0.55, "angle": 15.47, "curve": 0.25, "c3": 0.75}, - {"time": 0.7667, "curve": 0.25, "c3": 0.75}, {"time": 1, "angle": 15.47, "curve": 0.25, "c3": 0.75}, {"time": 1.2167, "curve": 0.248, "c3": 0.629, "c4": 0.52}, - {"time": 1.3333, "angle": 8.58} - ], + "@shadow": { "translate": [ - {"x": -14.27, "y": -0.95, "curve": 0.378, "c2": 0.61, "c3": 0.721}, {"time": 0.05, "x": -17.06, "y": -1.14, "curve": 0.25, "c3": 0.75}, {"time": 0.2667, "curve": 0.25, "c3": 0.75}, - {"time": 0.5, "x": -17.06, "y": -1.14, "curve": 0.25, "c3": 0.75}, {"time": 0.7167, "curve": 0.25, "c3": 0.75}, {"time": 0.95, "x": -17.06, "y": -1.14, "curve": 0.25, "c3": 0.75}, - {"time": 1.1667, "curve": 0.242, "c3": 0.671, "c4": 0.68}, {"time": 1.3333, "x": -14.27, "y": -0.95} + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": 24.43, "curve": 0, "c2": 0.6, "c3": 0.237}, {"time": 0.4167, "x": -70.38, "curve": 0, "c2": 0.6, "c3": 0, "c4": 1.4}, + {"time": 1, "x": 5.15, "curve": 0.701, "c4": 0.5}, {"time": 1.2333, "x": -8.95, "curve": 0.461, "c3": 0.543}, {"time": 1.3333} + ], + "scale": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": 1.08, "y": 1.08, "curve": 0, "c2": 0.6, "c3": 0.237}, + {"time": 0.4167, "x": 0.85, "y": 0.85, "curve": 0, "c2": 0.6, "c3": 0, "c4": 1.4}, {"time": 1, "x": 0.9, "y": 0.9, "curve": 0.701, "c4": 0.5}, + {"time": 1.2333, "x": 1.1, "y": 1.1, "curve": 0.461, "c3": 0.543}, {"time": 1.3333} ] }, - "body-braid2": { - "rotate": [ - {"angle": 9.33, "curve": 0.25, "c3": 0.75}, {"time": 0.2167, "curve": 0.25, "c3": 0.75}, {"time": 0.45, "angle": 11.55, "curve": 0.25, "c3": 0.75}, - {"time": 0.6667, "curve": 0.25, "c3": 0.75}, {"time": 0.9, "angle": 9.33, "curve": 0.25, "c3": 0.75}, {"time": 1.1167, "curve": 0.25, "c3": 0.75}, {"time": 1.3333, "angle": 9.33} + "@leg-front-left": { + "translate": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": -0.29, "y": -5.47, "curve": 0, "c2": 0.6, "c3": 0.237}, {"time": 0.4167, "curve": "stepped"}, + {"time": 1, "curve": 0.701, "c4": 0.5}, {"time": 1.2333, "x": -0.95, "y": -14.45, "curve": 0.461, "c3": 0.543}, {"time": 1.3333} ] }, - "body-braid4": { - "rotate": [ - {"angle": 2.83, "curve": 0.346, "c2": 0.38, "c3": 0.757}, {"time": 0.15, "angle": 11.24, "curve": 0.25, "c3": 0.75}, {"time": 0.3667, "curve": 0.25, "c3": 0.75}, - {"time": 0.6, "angle": 35.73, "curve": 0.25, "c3": 0.75}, {"time": 0.8167, "curve": 0.25, "c3": 0.75}, {"time": 1.05, "angle": 26.06, "curve": 0.25, "c3": 0.75}, - {"time": 1.2667, "curve": 0.268, "c3": 0.618, "c4": 0.42}, {"time": 1.3333, "angle": 2.83} + "@leg-front-right": { + "translate": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": -0.29, "y": -5.47, "curve": 0, "c2": 0.6, "c3": 0.237}, {"time": 0.4167, "curve": "stepped"}, + {"time": 1, "curve": 0.701, "c4": 0.5}, {"time": 1.2333, "x": -1.66, "y": -25.29, "curve": 0.461, "c3": 0.543}, {"time": 1.3333} ] }, - "body-braid3": { + "tail": { "rotate": [ - {"angle": 12.76, "curve": 0.382, "c2": 0.58, "c3": 0.732}, {"time": 0.0667, "angle": 17.05, "curve": 0.25, "c3": 0.75}, {"time": 0.2833, "curve": 0.25, "c3": 0.75}, - {"time": 0.5167, "angle": 28.89, "curve": 0.25, "c3": 0.75}, {"time": 0.7333, "curve": 0.25, "c3": 0.75}, {"time": 0.9667, "angle": 27.36, "curve": 0.25, "c3": 0.75}, - {"time": 1.1833, "curve": 0.243, "c3": 0.654, "c4": 0.62}, {"time": 1.3333, "angle": 12.76} - ] - }, - "@body2": { - "rotate": [ - {"angle": -0.87, "curve": 0.293, "c2": 0.2, "c3": 0.685, "c4": 0.73}, {"time": 0.1333, "angle": -8.39, "curve": 0.378, "c2": 0.61, "c3": 0.721}, - {"time": 0.1833, "angle": -10.03, "curve": 0.25, "c3": 0.75}, {"time": 0.4, "curve": 0.25, "c3": 0.75}, {"time": 0.6333, "angle": -10.03, "curve": 0.25, "c3": 0.75}, - {"time": 0.85, "curve": 0.25, "c3": 0.75}, {"time": 1.0833, "angle": -10.03, "curve": 0.25, "c3": 0.75}, {"time": 1.3, "curve": 0.293, "c3": 0.631, "c4": 0.37}, - {"time": 1.3333, "angle": -0.87} - ], - "translate": [ - {"x": 0.98, "y": 2.41, "curve": 0.36, "c2": 0.43, "c3": 0.755}, {"time": 0.1333, "x": 2.83, "y": 6.92, "curve": 0.25, "c3": 0.75}, {"time": 0.35, "curve": 0.25, "c3": 0.75}, - {"time": 0.5833, "x": 2.83, "y": 6.92, "curve": 0.25, "c3": 0.75}, {"time": 0.8, "curve": 0.25, "c3": 0.75}, {"time": 1.0333, "x": 2.83, "y": 6.92, "curve": 0.25, "c3": 0.75}, - {"time": 1.25, "curve": 0.259, "c3": 0.618, "c4": 0.45}, {"time": 1.3333, "x": 0.98, "y": 2.41} - ] - }, - "body-braid6": { - "rotate": [ - {"angle": -4.61, "curve": 0.25, "c3": 0.75}, {"time": 0.2167, "angle": 2.13, "curve": 0.25, "c3": 0.75}, {"time": 0.4333, "angle": 9.58, "curve": 0.25, "c3": 0.75}, - {"time": 0.6667, "angle": -2.31, "curve": 0.25, "c3": 0.75}, {"time": 0.8833, "angle": -9.15, "curve": 0.25, "c3": 0.75}, {"time": 1.1167, "angle": 21.18, "curve": 0.25, "c3": 0.75}, - {"time": 1.3333, "angle": -4.61} - ] - }, - "body-braid5": { - "rotate": [ - {"angle": 12.79, "curve": 0.371, "c2": 0.48, "c3": 0.752}, {"time": 0.1167, "angle": 19.81, "curve": 0.25, "c3": 0.75}, {"time": 0.3333, "angle": 7.07, "curve": 0.25, "c3": 0.75}, - {"time": 0.5667, "angle": 33.01, "curve": 0.25, "c3": 0.75}, {"time": 0.7833, "angle": 7.07, "curve": 0.25, "c3": 0.75}, {"time": 1.0167, "angle": 29.58, "curve": 0.25, "c3": 0.75}, - {"time": 1.2333, "angle": 7.07, "curve": 0.253, "c3": 0.622, "c4": 0.48}, {"time": 1.3333, "angle": 12.79} - ] - }, - "body-braid": { - "rotate": [ - {"angle": 10.41, "curve": 0.369, "c2": 0.63, "c3": 0.707}, {"time": 0.0333, "angle": 10.92, "curve": 0.25, "c3": 0.75}, {"time": 0.25, "curve": 0.25, "c3": 0.75}, - {"time": 0.4833, "angle": 17.85, "curve": 0.25, "c3": 0.75}, {"time": 0.7, "angle": 7.76, "curve": 0.25, "c3": 0.75}, {"time": 0.9333, "angle": 10.92, "curve": 0.25, "c3": 0.75}, - {"time": 1.15, "angle": 5.09, "curve": 0.244, "c3": 0.693, "c4": 0.76}, {"time": 1.3333, "angle": 10.41} + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "angle": 17.93, "curve": 0, "c2": 0.6, "c3": 0.237}, {"time": 0.4167, "angle": -15.3, "curve": 0, "c2": 0.6, "c3": 0, "c4": 1.4}, + {"time": 1, "angle": 24.81, "curve": 0.701, "c4": 0.5}, {"time": 1.2333, "angle": -15.84, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 1.3333} ] } - } + }, + "events": [{"time": 0.4667, "name": "start-attack"}, {"time": 0.7, "name": "start-attack"}, {"time": 0.9333, "name": "start-attack"}] }, - "1577594643": { + "2874629885": { "slots": { - "eyes": {"attachment": [{"time": 0.05, "name": "eyes-angry"}, {"time": 0.8833, "name": "eyes"}]}, - "mouth": {"attachment": [{"time": 0.05, "name": "mouth-bite"}, {"time": 0.4667, "name": "mouth-open"}, {"time": 0.8333, "name": "mouth-bite"}, {"time": 0.8833, "name": "mouth"}]} + "eyes": {"attachment": [{"time": 0.75, "name": "eyes-shut"}, {"time": 0.8333, "name": "eyes"}]}, + "leg-back-left": {"attachment": [{"time": 0.35, "name": "mystic-leg-back-left-long"}, {"time": 0.5833, "name": "mystic-leg-back-left"}]}, + "mouth": {"attachment": [{"time": 0.0167, "name": "mouth-bite"}, {"time": 0.2667, "name": "mouth-open"}, {"time": 0.5833, "name": "mouth-bite"}, {"time": 0.8333, "name": "mouth"}]} }, "bones": { "@pivot-back": { "rotate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "angle": 4, "curve": 0, "c2": 0.6, "c3": 0.237}, {"time": 0.3333, "angle": -8.88, "curve": 0.621, "c3": 0, "c4": 1.6}, - {"time": 0.6667, "angle": 8.17, "curve": 0.701, "c4": 0.5}, {"time": 0.8833, "angle": 5, "curve": 0.461, "c3": 0.543}, {"time": 1} + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "angle": -3.92, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "angle": 2.51, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.3333, "angle": -6, "curve": "stepped"}, {"time": 0.35, "angle": -16}, {"time": 0.5667, "angle": -16.5, "curve": "stepped"}, {"time": 0.5833, "curve": 0.313, "c3": 0.699}, + {"time": 0.75, "angle": 6, "curve": 0.313, "c3": 0.699}, {"time": 0.9167} ], "translate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": 33.65, "y": -5, "curve": 0, "c2": 0.6, "c3": 0.237}, - {"time": 0.3333, "x": -62.54, "y": 309.16, "curve": 0.621, "c3": 0, "c4": 1.6}, {"time": 0.6667, "x": 12.32, "y": 268.04, "curve": 0.701, "c4": 0.5}, {"time": 0.8833} - ] + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "x": 71.93, "y": -12.95, "curve": "stepped"}, {"time": 0.25, "x": 71.93, "y": -12.95, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.3333, "x": -135.5, "curve": "stepped"}, {"time": 0.35, "x": -560.54, "y": 85.29}, {"time": 0.5667, "x": -562.89, "y": 81.57, "curve": "stepped"}, + {"time": 0.5833, "x": -151.24, "curve": 0.313, "c3": 0.699}, {"time": 0.75, "x": -151.24, "y": 4.06, "curve": 0.313, "c3": 0.699}, {"time": 0.9167} + ], + "scale": [{"time": 0.3333, "curve": "stepped"}, {"time": 0.35, "x": -1, "curve": "stepped"}, {"time": 0.5667, "x": -1, "curve": "stepped"}, {"time": 0.5833}] }, - "@leg-front-left": { + "@shadow": { "translate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": -0.29, "y": -5.47, "curve": 0, "c2": 0.6, "c3": 0.237}, {"time": 0.3333, "curve": "stepped"}, - {"time": 0.6667, "curve": 0.701, "c4": 0.5}, {"time": 0.8833, "x": -0.95, "y": -14.45, "curve": 0.461, "c3": 0.543}, {"time": 1} + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 61.96, "curve": "stepped"}, {"time": 0.25, "x": 61.96, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.3333, "x": -143.36, "curve": "stepped"}, {"time": 0.35, "x": -143.36}, {"time": 0.5667, "x": -157.56, "curve": "stepped"}, {"time": 0.5833, "x": -161.35, "curve": "stepped"}, + {"time": 0.75, "x": -161.35, "curve": 0.313, "c3": 0.699}, {"time": 0.9167} + ], + "scale": [ + {"time": 0.0833, "curve": 0, "c2": 0.26, "c3": 0.369, "c4": 0.62}, {"time": 0.25, "x": 1.06, "y": 1.06, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "curve": "stepped"}, + {"time": 0.35}, {"time": 0.5667, "x": 1.08, "y": 1.08, "curve": "stepped"}, {"time": 0.5833, "curve": 0.313, "c3": 0.699}, + {"time": 0.75, "x": 1.08, "y": 1.08, "curve": 0.313, "c3": 0.699}, {"time": 0.9167} ] }, - "@leg-front-right": { + "leg-back-left-IK": { "translate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": -0.29, "y": -5.47, "curve": 0, "c2": 0.6, "c3": 0.237}, {"time": 0.3333, "curve": "stepped"}, - {"time": 0.6667, "curve": 0.701, "c4": 0.5}, {"time": 0.8833, "x": -1.66, "y": -25.29, "curve": 0.461, "c3": 0.543}, {"time": 1} + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.1333, "x": 80.9, "curve": 0.161, "c3": 0.854}, {"time": 0.25, "x": 62.82, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.3333, "x": -99.34, "y": 18.56, "curve": "stepped"}, {"time": 0.35, "x": -653.9, "y": 153.81}, {"time": 0.5667, "x": -653.9, "y": 167.85, "curve": "stepped"}, + {"time": 0.5833, "x": -134.74, "curve": "stepped"}, {"time": 0.75, "x": -134.74, "curve": 0.313, "c3": 0.699}, {"time": 0.9167} ] }, - "@shadow": { + "leg-front-right-IK": { "translate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": 24.43, "curve": 0, "c2": 0.6, "c3": 0.237}, {"time": 0.3333, "x": -70.38, "curve": 0.621, "c3": 0, "c4": 1.4}, - {"time": 0.6667, "x": 5.15, "curve": 0.701, "c4": 0.5}, {"time": 0.8833, "x": -8.95, "curve": 0.461, "c3": 0.543}, {"time": 1} - ], - "scale": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": 1.08, "y": 1.08, "curve": 0, "c2": 0.6, "c3": 0.237}, - {"time": 0.3333, "x": 0.85, "y": 0.85, "curve": 0.621, "c3": 0, "c4": 1.4}, {"time": 0.6667, "x": 0.9, "y": 0.9, "curve": 0.701, "c4": 0.5}, - {"time": 0.8833, "x": 1.1, "y": 1.1, "curve": 0.461, "c3": 0.543}, {"time": 1} + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 22.35, "curve": 0.306, "c3": 0.695}, {"time": 0.25, "x": 42.9, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.3333, "x": -131.73, "y": 44.58, "curve": "stepped"}, {"time": 0.35, "x": 244.36, "y": -4.92, "curve": 0.31, "c4": 0.8}, + {"time": 0.5667, "x": 247.43, "y": -1.85, "curve": "stepped"}, {"time": 0.5833, "x": -180.48, "curve": "stepped"}, {"time": 0.75, "x": -180.48, "curve": 0.313, "c3": 0.699}, + {"time": 0.9167} ] }, - "tail": { - "rotate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "angle": 17.93, "curve": 0, "c2": 0.6, "c3": 0.237}, {"time": 0.3333, "angle": -15.3, "curve": 0.621, "c3": 0, "c4": 1.4}, - {"time": 0.6667, "angle": 24.81, "curve": 0.701, "c4": 0.5}, {"time": 0.8833, "angle": -15.84, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 1} + "leg-front-left-IK": { + "translate": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "x": 40.76, "y": 5.08, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "x": 49, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.3333, "x": -180.92, "y": 40.32, "curve": "stepped"}, {"time": 0.35, "x": -197.17}, {"time": 0.5667, "x": -230.7, "y": 4.81, "curve": "stepped"}, + {"time": 0.5833, "x": -180.48, "curve": "stepped"}, {"time": 0.75, "x": -180.48, "curve": 0.313, "c3": 0.699}, {"time": 0.9167} ] }, - "@body3": { - "rotate": [ - {"angle": -0.6, "curve": 0.36, "c2": 0.64, "c3": 0.695}, {"time": 0.0333, "curve": 0.25, "c3": 0.75}, {"time": 0.2, "angle": -3.77, "curve": 0.25, "c3": 0.75}, - {"time": 0.3667, "angle": -14, "curve": 0.25, "c3": 0.75}, {"time": 0.5333, "angle": -3.77, "curve": 0.25, "c3": 0.75}, - {"time": 0.7, "angle": -14, "curve": 0.245, "c3": 0.711, "c4": 0.83}, {"time": 1, "angle": -0.6} - ], + "@leg-front-left": { "translate": [ - {"time": 0.1667, "curve": 0.25, "c3": 0.75}, {"time": 0.3333, "x": 45.36, "y": -33.56, "curve": 0.25, "c3": 0.75}, {"time": 0.5, "curve": 0.25, "c3": 0.75}, - {"time": 0.6667, "x": 45.36, "y": -33.56, "curve": 0.25, "c3": 0.75}, {"time": 1} + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "x": -2.9, "y": -1.1, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.25, "x": -0.62, "y": -3.44, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "x": -1, "y": -5.53, "curve": "stepped"}, {"time": 0.35, "x": 4.4, "y": -4.91}, + {"time": 0.5667, "x": 7.49, "y": -5.17, "curve": "stepped"}, {"time": 0.5833, "x": 18.69, "y": 1.85, "curve": "stepped"}, + {"time": 0.75, "x": 18.69, "y": 1.85, "curve": 0.306, "c3": 0.695}, {"time": 0.9167} ] }, - "@body4": { - "rotate": [ - {"angle": 1.85, "curve": 0.375, "c2": 0.62, "c3": 0.716}, {"time": 0.0667, "curve": 0.25, "c3": 0.75}, {"time": 0.2333, "angle": -15.35, "curve": 0.25, "c3": 0.75}, - {"time": 0.4, "angle": 14.26, "curve": 0.25, "c3": 0.75}, {"time": 0.5667, "angle": -15.35, "curve": 0.25, "c3": 0.75}, - {"time": 0.7333, "angle": 14.26, "curve": 0.243, "c3": 0.68, "c4": 0.71}, {"time": 1, "angle": 1.85} - ], + "@leg-front-right": { "translate": [ - {"curve": 0.25, "c3": 0.75}, {"time": 0.1667, "x": -1.59, "y": 23.93, "curve": 0.25, "c3": 0.75}, {"time": 0.3333, "x": 6.55, "y": -29.78, "curve": 0.25, "c3": 0.75}, - {"time": 0.5, "x": -1.59, "y": 23.93, "curve": 0.25, "c3": 0.75}, {"time": 0.6667, "x": 6.55, "y": -29.78, "curve": 0.25, "c3": 0.75}, {"time": 1} + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 4.31, "y": 11.86, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.25, "x": -10.48, "y": -15.33, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "x": -3.15, "y": 1.33, "curve": "stepped"}, {"time": 0.35, "x": -3.84, "y": 7.68}, + {"time": 0.5667, "x": -3.53, "y": 9.04, "curve": "stepped"}, {"time": 0.5833, "x": -2.24, "y": 13.67, "curve": 0.313, "c3": 0.699}, + {"time": 0.75, "x": -2.69, "y": -18.63, "curve": 0.313, "c3": 0.699}, {"time": 0.9167} ] }, - "@body6": { - "rotate": [ - {"angle": 4.68, "curve": 0.348, "c2": 0.39, "c3": 0.683, "c4": 0.73}, {"time": 0.0333, "angle": 2.14, "curve": 0.369, "c2": 0.63, "c3": 0.706}, - {"time": 0.0833, "curve": 0.25, "c3": 0.75}, {"time": 0.25, "angle": -5.24, "curve": 0.25, "c3": 0.75}, {"time": 0.4167, "angle": 25.77, "curve": 0.25, "c3": 0.75}, - {"time": 0.5833, "angle": -5.24, "curve": 0.25, "c3": 0.75}, {"time": 0.75, "angle": 25.77, "curve": 0.242, "c3": 0.667, "c4": 0.67}, {"time": 1, "angle": 4.68} - ], + "@leg-back-left": { "translate": [ - {"x": -3, "y": 1.52, "curve": 0.36, "c2": 0.64, "c3": 0.695}, {"time": 0.0333, "curve": 0.25, "c3": 0.75}, {"time": 0.2, "x": 5.81, "y": -4.07, "curve": 0.25, "c3": 0.75}, - {"time": 0.3667, "x": -70.52, "y": 35.61, "curve": 0.25, "c3": 0.75}, {"time": 0.5333, "x": 5.81, "y": -4.07, "curve": 0.25, "c3": 0.75}, - {"time": 0.7, "x": -70.52, "y": 35.61, "curve": 0.245, "c3": 0.711, "c4": 0.83}, {"time": 1, "x": -3, "y": 1.52} + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.1333, "x": 0.67, "y": -7.85, "curve": 0.161, "c3": 0.854}, {"time": 0.25, "x": 0.74, "y": -5.43, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.3333, "x": -0.54, "y": 4.44, "curve": "stepped"}, {"time": 0.35, "x": 10.26, "y": 0.56, "curve": "stepped"}, {"time": 0.5667, "x": 10.26, "y": 0.56, "curve": "stepped"}, + {"time": 0.5833} ] }, - "body-braid2": { + "tail": { "rotate": [ - {"angle": 0.89, "curve": 0.36, "c2": 0.64, "c3": 0.695}, {"time": 0.0333, "curve": 0.25, "c3": 0.75}, {"time": 0.2, "angle": -1.43, "curve": 0.25, "c3": 0.75}, - {"time": 0.3667, "angle": 20.83, "curve": 0.25, "c3": 0.75}, {"time": 0.5333, "angle": -1.43, "curve": 0.25, "c3": 0.75}, - {"time": 0.7, "angle": 20.83, "curve": 0.245, "c3": 0.711, "c4": 0.83}, {"time": 1, "angle": 0.89} + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "angle": 15.61, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "angle": 20.44, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.3333, "angle": -15.58, "curve": "stepped"}, {"time": 0.35, "angle": 30.35}, {"time": 0.5667, "angle": 35.35, "curve": "stepped"}, + {"time": 0.5833, "angle": -11.84, "curve": 0.313, "c3": 0.699}, {"time": 0.75, "angle": 16.95, "curve": 0.313, "c3": 0.699}, {"time": 0.9167} ] }, - "body-braid4": { + "@pivot-main": { + "translate": [{"time": 0.75, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.8333, "y": 31, "curve": 0.315, "c4": 0.8}, {"time": 0.9167}], + "scale": [{"time": 0.5667, "curve": "stepped"}, {"time": 0.75, "y": 0.98, "curve": 0.154, "c4": 0.9}, {"time": 0.9167}] + } + }, + "drawOrder": [{"time": 0.35, "offsets": [{"slot": "leg-back-left", "offset": 1}]}, {"time": 0.5833}], + "events": [{"time": 0.35, "name": "start-attack"}, {"time": 0.5667, "name": "start-attack"}] + }, + "3805987248": { + "slots": {"eyes": {"attachment": [{"time": 0.6333, "name": "eyes-shut"}, {"time": 0.7, "name": "eyes-angry"}, {"time": 1.2833, "name": "eyes"}]}}, + "bones": { + "@pivot-back": { "rotate": [ - {"angle": 11.92, "curve": 0.379, "c2": 0.52, "c3": 0.747}, {"time": 0.15, "curve": 0.25, "c3": 0.75}, {"time": 0.3167, "angle": -11.53, "curve": 0.25, "c3": 0.75}, - {"time": 0.4833, "angle": 27.46, "curve": 0.25, "c3": 0.75}, {"time": 0.65, "angle": -11.53, "curve": 0.25, "c3": 0.75}, - {"time": 0.8167, "angle": 27.46, "curve": 0.247, "c3": 0.63, "c4": 0.53}, {"time": 1, "angle": 11.92} + {"curve": 0.302, "c4": 0.8}, {"time": 0.1667, "angle": -5.15, "curve": 0, "c2": 0.2, "c3": 0.692}, {"time": 0.3333, "angle": 4.71, "curve": 0, "c2": 0.1, "c3": 0.853}, + {"time": 0.5, "angle": -2.3, "curve": 0.308, "c3": 0.692}, {"time": 0.6667, "angle": 2.84, "curve": 0.314, "c3": 0.701}, + {"time": 0.9167, "angle": -3.66, "curve": 0, "c2": 0.1, "c3": 0.845}, {"time": 1.0833, "angle": -0.77, "curve": 0.311, "c4": 0.8}, {"time": 1.25} + ], + "translate": [ + {"curve": 0.308, "c4": 0.79}, {"time": 0.25, "x": -74.35, "y": -25.83, "curve": 0, "c2": 0.3, "c3": 0.537}, {"time": 0.4167, "x": -74.35, "y": 55.38, "curve": 0, "c2": 0.1, "c3": 0.853}, + {"time": 0.5833, "x": 103.85, "y": -14.97, "curve": 0.308, "c3": 0.692}, {"time": 0.75, "x": 103.82, "y": 55.43, "curve": 0.314, "c3": 0.701}, + {"time": 1, "x": -40.96, "y": -15.97, "curve": 0.314, "c3": 0.701}, {"time": 1.1667, "x": -40.96, "y": 0.03, "curve": 0, "c2": 0.05, "c3": 0.933}, {"time": 1.3333} ] }, - "body-braid3": { + "@leg-front-right": { "rotate": [ - {"angle": 6.14, "curve": 0.379, "c2": 0.6, "c3": 0.724}, {"time": 0.0833, "curve": 0.25, "c3": 0.75}, {"time": 0.25, "angle": -8.3, "curve": 0.25, "c3": 0.75}, - {"time": 0.4167, "angle": 33.27, "curve": 0.25, "c3": 0.75}, {"time": 0.5833, "angle": -8.3, "curve": 0.25, "c3": 0.75}, - {"time": 0.75, "angle": 33.27, "curve": 0.242, "c3": 0.667, "c4": 0.67}, {"time": 1, "angle": 6.14} + {"curve": 0.307, "c4": 0.8}, {"time": 0.1667, "angle": 13.08, "curve": 0.302, "c3": 0.695}, {"time": 0.4167, "angle": -24.68, "curve": "stepped"}, + {"time": 0.5833, "angle": -24.68, "curve": 0, "c2": 0.2, "c3": 0.689}, {"time": 0.75, "angle": 8.39, "curve": "stepped"}, {"time": 0.9167, "angle": 8.39, "curve": 0.308, "c4": 0.8}, + {"time": 1.1667, "angle": -16.49, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 1.3333, "angle": -30.3} ] }, - "@body2": { + "@leg-front-left": { "rotate": [ - {"angle": -8.07, "curve": 0.344, "c2": 0.37, "c3": 0.684, "c4": 0.72}, {"time": 0.0667, "angle": -3.45, "curve": 0.379, "c2": 0.6, "c3": 0.724}, - {"time": 0.15, "curve": 0.25, "c3": 0.75}, {"time": 0.3167, "angle": 7.45, "curve": 0.25, "c3": 0.75}, {"time": 0.4833, "angle": -18.73, "curve": 0.25, "c3": 0.75}, - {"time": 0.65, "angle": 7.45, "curve": 0.25, "c3": 0.75}, {"time": 0.8167, "angle": -18.73, "curve": 0.247, "c3": 0.63, "c4": 0.53}, {"time": 1, "angle": -8.07} - ], - "translate": [ - {"x": 0.6, "y": -5.37, "curve": 0.375, "c2": 0.62, "c3": 0.716}, {"time": 0.0667, "curve": 0.25, "c3": 0.75}, {"time": 0.2333, "x": -0.08, "y": 1.15, "curve": 0.25, "c3": 0.75}, - {"time": 0.4, "x": 4.59, "y": -41.28, "curve": 0.25, "c3": 0.75}, {"time": 0.5667, "x": -0.08, "y": 1.15, "curve": 0.25, "c3": 0.75}, - {"time": 0.7333, "x": 4.59, "y": -41.28, "curve": 0.243, "c3": 0.68, "c4": 0.71}, {"time": 1, "x": 0.6, "y": -5.37} + {"curve": 0.307, "c4": 0.8}, {"time": 0.1667, "angle": 13.08, "curve": 0.302, "c3": 0.695}, {"time": 0.4167, "angle": -24.68, "curve": "stepped"}, + {"time": 0.5833, "angle": -24.68, "curve": 0, "c2": 0.2, "c3": 0.689}, {"time": 0.75, "angle": 8.39, "curve": "stepped"}, {"time": 0.9167, "angle": 8.39, "curve": 0.308, "c4": 0.8}, + {"time": 1.1667, "angle": -16.49, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 1.3333, "angle": 20.14} ] }, - "body-braid6": { + "@leg-back-left": { "rotate": [ - {"angle": 14.96, "curve": 0.333, "c2": 0.33, "c3": 0.758}, {"time": 0.25, "curve": 0.25, "c3": 0.75}, {"time": 0.4167, "angle": -20.17, "curve": 0.25, "c3": 0.75}, - {"time": 0.5833, "angle": 18.35, "curve": 0.25, "c3": 0.75}, {"time": 0.75, "angle": -20.17, "curve": 0.25, "c3": 0.75}, - {"time": 0.9167, "angle": 18.35, "curve": 0.276, "c3": 0.621, "c4": 0.4}, {"time": 1, "angle": 14.96} + {"curve": 0.307, "c4": 0.8}, {"time": 0.1667, "angle": 13.08}, {"time": 0.3333, "angle": -13.36}, {"time": 0.75, "angle": 11.05, "curve": "stepped"}, + {"time": 0.9167, "angle": 11.05, "curve": 0.308, "c4": 0.8}, {"time": 1.1667, "angle": -13.83, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 1.3333, "angle": -11.75} ] }, - "body-braid5": { + "tail": { "rotate": [ - {"angle": 10.97, "curve": 0.382, "c2": 0.57, "c3": 0.737}, {"time": 0.1167, "curve": 0.25, "c3": 0.75}, {"time": 0.2833, "angle": -7.27, "curve": 0.25, "c3": 0.75}, - {"time": 0.45, "angle": 36.02, "curve": 0.25, "c3": 0.75}, {"time": 0.6167, "angle": -7.27, "curve": 0.25, "c3": 0.75}, - {"time": 0.7833, "angle": 36.02, "curve": 0.244, "c3": 0.646, "c4": 0.59}, {"time": 1, "angle": 10.97} + {"curve": 0, "c2": 0.2, "c3": 0.698}, {"time": 0.1667, "angle": -6, "curve": 0.305, "c3": 0.698}, {"time": 0.25, "angle": 1.14, "curve": 0.301, "c3": 0.698}, + {"time": 0.4167, "angle": -8.39, "curve": 0, "c2": 0.2, "c3": 0.698}, {"time": 0.5833, "angle": 0.59, "curve": 0.305, "c3": 0.698}, + {"time": 0.75, "angle": -10.53, "curve": 0, "c2": 0.2, "c3": 0.692}, {"time": 1, "angle": -2.29, "curve": 0.302, "c3": 0.692}, + {"time": 1.1667, "angle": -9.12, "curve": 0, "c2": 0.1, "c3": 0.844}, {"time": 1.3333} ] }, - "body-braid": { + "back": { "rotate": [ - {"angle": 1.86, "curve": 0.369, "c2": 0.63, "c3": 0.706}, {"time": 0.05, "curve": 0.25, "c3": 0.75}, {"time": 0.2167, "angle": -2.68, "curve": 0.25, "c3": 0.75}, - {"time": 0.3833, "angle": 22.42, "curve": 0.25, "c3": 0.75}, {"time": 0.55, "angle": -2.68, "curve": 0.25, "c3": 0.75}, - {"time": 0.7167, "angle": 22.42, "curve": 0.244, "c3": 0.694, "c4": 0.77}, {"time": 1, "angle": 1.86} + {"curve": 0, "c2": 0.2, "c3": 0.698}, {"time": 0.1667, "angle": -1.84, "curve": 0.305, "c3": 0.698}, {"time": 0.25, "angle": 3, "curve": 0.301, "c3": 0.698}, + {"time": 0.4167, "angle": 0.04, "curve": 0, "c2": 0.2, "c3": 0.698}, {"time": 0.5833, "angle": 4.01, "curve": 0.305, "c3": 0.698}, + {"time": 0.75, "angle": 0.76, "curve": 0, "c2": 0.2, "c3": 0.692}, {"time": 1, "angle": 4.04, "curve": 0.302, "c3": 0.692}, + {"time": 1.1667, "angle": 1.6, "curve": 0, "c2": 0.1, "c3": 0.844}, {"time": 1.3333} ] }, - "@body5": { - "rotate": [ - {"time": 0.1667, "curve": 0.25, "c3": 0.75}, {"time": 0.3333, "angle": 0.5, "curve": 0.25, "c3": 0.75}, {"time": 0.5, "curve": 0.25, "c3": 0.75}, - {"time": 0.6667, "angle": 0.5, "curve": 0.25, "c3": 0.75}, {"time": 1} + "@shadow": { + "translate": [ + {"curve": 0.315, "c4": 0.8}, {"time": 0.25, "x": -83.7, "curve": 0, "c2": 0.3, "c3": 0.535}, {"time": 0.4167, "x": -83.9, "curve": 0, "c2": 0.1, "c3": 0.85}, + {"time": 0.5833, "x": 94.25, "curve": 0.309, "c3": 0.691}, {"time": 0.75, "x": 94.33, "curve": 0.309, "c3": 0.691}, {"time": 1, "x": -50.6, "curve": "stepped"}, + {"time": 1.1667, "x": -50.6, "curve": 0.082, "c3": 0.928}, {"time": 1.3333} + ], + "scale": [ + {"curve": 0.315, "c4": 0.8}, {"time": 0.25, "x": 1.04, "y": 1.04, "curve": 0, "c2": 0.3, "c3": 0.535}, {"time": 0.4167, "x": 0.95, "y": 0.95, "curve": 0, "c2": 0.1, "c3": 0.85}, + {"time": 0.5833, "x": 1.08, "y": 1.08, "curve": 0.309, "c3": 0.691}, {"time": 0.75, "x": 0.96, "y": 0.96, "curve": 0.309, "c3": 0.691}, + {"time": 1, "x": 1.08, "y": 1.08, "curve": 0.309, "c3": 0.691}, {"time": 1.1667, "x": 1.04, "y": 1.04, "curve": 0.082, "c3": 0.928}, {"time": 1.3333} ] } - }, - "events": [{"time": 0.5, "name": "start-attack"}] + } }, - "3051257523": { + "2697405811": { "slots": { - "eyes": {"attachment": [{"time": 0.0833, "name": "eyes-angry"}, {"time": 0.6667, "name": "eyes-shut"}, {"time": 0.75, "name": "eyes"}]}, - "mouth": {"attachment": [{"time": 0.0833, "name": "mouth-bite"}, {"time": 0.35, "name": "mouth-open"}, {"time": 0.55, "name": "mouth-bite"}, {"time": 0.75, "name": "mouth"}]} + "eyes": {"attachment": [{"time": 0.55, "name": "eyes-shut"}, {"time": 0.65, "name": "eyes-angry"}, {"time": 0.9, "name": "eyes-shut"}, {"time": 0.9667, "name": "eyes"}]}, + "mouth": { + "attachment": [ + {"time": 0.1167, "name": "mouth-open"}, {"time": 0.3833, "name": "mouth-bite"}, {"time": 0.65, "name": "mouth-open"}, {"time": 0.9, "name": "mouth-bite"}, + {"time": 0.9667, "name": "mouth"} + ] + } }, "bones": { "@pivot-back": { "rotate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "angle": 4, "curve": 0, "c2": 0.5, "c3": 0.3}, {"time": 0.3333, "angle": -23.77, "curve": "stepped"}, - {"time": 0.35, "angle": -29.82, "curve": 0.698, "c3": 0.541}, {"time": 0.5833, "angle": 3}, {"time": 0.7167, "angle": 4, "curve": 0, "c2": 0.09, "c3": 0.479, "c4": 0.56}, - {"time": 0.8167, "angle": -5.09, "curve": 0.416, "c2": 0.51, "c3": 0.865}, {"time": 0.9167} + {"curve": 0, "c2": 0.2, "c3": 0.695}, {"time": 0.1, "angle": 6, "curve": 0, "c2": 0.2, "c3": 0.695}, {"time": 0.25, "angle": -10.31, "curve": 0.317, "c4": 0.8}, + {"time": 0.3833, "angle": 5}, {"time": 0.6333, "angle": 6, "curve": 0, "c2": 0.2, "c3": 0.695}, {"time": 0.7667, "angle": -5.94, "curve": 0.317, "c4": 0.8}, + {"time": 0.9, "angle": 6.92, "curve": 0, "c2": 0.2, "c3": 0.695}, {"time": 1} ], "translate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": 33.65, "y": -5, "curve": 0, "c2": 0.5, "c3": 0.3}, {"time": 0.3333, "x": 80.56, "y": 137.85, "curve": "stepped"}, - {"time": 0.35, "x": 147.57, "y": 42.83, "curve": 0, "c2": 0.2, "c3": 0.686}, {"time": 0.5, "x": 206.93, "y": -26.82, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.5833, "x": 226.09}, - {"time": 0.7167, "x": 237.58, "y": 2, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.9167} + {"time": 0.1, "curve": 0, "c2": 0.2, "c3": 0.695}, {"time": 0.25, "y": 82.86, "curve": 0.317, "c4": 0.8}, {"time": 0.3833, "curve": "stepped"}, + {"time": 0.6333, "curve": 0, "c2": 0.2, "c3": 0.695}, {"time": 0.7667, "y": 70.12, "curve": 0.317, "c4": 0.8}, {"time": 0.9} ] }, "@pivot-main": { + "translate": [{"time": 0.1, "curve": 0, "c2": 0.15, "c3": 0.703}, {"time": 0.3833, "x": 542.6}, {"time": 0.6333, "x": 603.73, "curve": 0, "c2": 0.1, "c3": 0.852}, {"time": 0.9}] + }, + "@leg-front-left": { "translate": [ - {"time": 0.5833, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.7167, "x": 15, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.8167, "x": 7.5, "y": 59.4, "curve": 0.315, "c4": 0.8}, - {"time": 0.9167} + {"curve": 0, "c2": 0.2, "c3": 0.695}, {"time": 0.1, "x": -1.93, "y": -18.15, "curve": 0, "c2": 0.3, "c3": 0.62}, {"time": 0.25, "curve": 0.313, "c4": 0.8}, + {"time": 0.3833, "x": -1.93, "y": -18.15}, {"time": 0.6333, "x": -1.68, "y": -15.27, "curve": 0, "c2": 0.2, "c3": 0.691}, {"time": 0.7667, "curve": 0.309, "c4": 0.8}, + {"time": 0.9, "x": -1.93, "y": -18.15, "curve": 0, "c2": 0.19, "c3": 0.695}, {"time": 1} ] }, - "leg-front-left-IK": { + "@leg-front-right": { "translate": [ - {"time": 0.1667, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.3333, "x": 31.94, "y": 229.47, "curve": "stepped"}, {"time": 0.35, "x": 6.23, "y": 175.34, "curve": 0.384, "c3": 0.537}, - {"time": 0.5833, "x": 202.93}, {"time": 0.7, "x": 190.82, "curve": 0.315, "c4": 0.8}, {"time": 0.7667, "x": 145.27, "curve": 0.237, "c4": 0.8}, {"time": 0.9167} + {"curve": 0, "c2": 0.2, "c3": 0.695}, {"time": 0.1, "x": -3.41, "y": -31.95, "curve": 0, "c2": 0.3, "c3": 0.62}, {"time": 0.25, "curve": 0.313, "c4": 0.8}, + {"time": 0.3833, "x": -3.41, "y": -31.95}, {"time": 0.6333, "x": -3.16, "y": -29.07, "curve": 0, "c2": 0.2, "c3": 0.691}, {"time": 0.7667, "curve": 0.309, "c4": 0.8}, + {"time": 0.9, "x": -3.41, "y": -31.95, "curve": 0, "c2": 0.19, "c3": 0.695}, {"time": 1} ] }, - "leg-front-right-IK": { + "@leg-back-left": { "translate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": 9.33, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.3333, "x": 54.35, "y": 345.22, "curve": "stepped"}, - {"time": 0.35, "x": 63.69, "y": 345.57, "curve": 0.384, "c3": 0.537}, {"time": 0.5833, "x": 199.77}, {"time": 0.7, "x": 187.66, "curve": 0.315, "c4": 0.8}, - {"time": 0.7667, "x": 143.69, "curve": 0.237, "c4": 0.8}, {"time": 0.9167} + {"curve": 0, "c2": 0.2, "c3": 0.695}, {"time": 0.1, "x": -0.42, "y": -4.72, "curve": 0, "c2": 0.3, "c3": 0.62}, {"time": 0.25, "curve": 0.313, "c4": 0.8}, + {"time": 0.3833, "x": -0.42, "y": -4.72, "curve": "stepped"}, {"time": 0.6333, "x": -0.42, "y": -4.72, "curve": 0, "c2": 0.2, "c3": 0.691}, {"time": 0.7667, "curve": 0.309, "c4": 0.8}, + {"time": 0.9, "x": -0.42, "y": -4.72, "curve": 0, "c2": 0.19, "c3": 0.695}, {"time": 1} ] }, - "leg-back-left-IK": { + "leg-front-right-IK": { "translate": [ - {"time": 0.1667, "curve": 0, "c2": 0.4, "c3": 0.383}, {"time": 0.3333, "x": -8.28, "y": 157.2, "curve": "stepped"}, {"time": 0.35, "x": 22.27, "y": 70.62, "curve": 0.312, "c4": 0.8}, - {"time": 0.5, "x": 185.62, "y": 1.08, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.7167, "x": 244.18, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.8167, "x": 141.99, "y": 26.46, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.9167} + {"time": 0.1, "curve": 0, "c2": 0.3, "c3": 0.62}, {"time": 0.2167, "x": -58.81, "y": 174.08, "curve": 0.257, "c3": 0.637, "c4": 0.43}, + {"time": 0.2833, "x": 10.68, "y": 136.08, "curve": 0.518, "c2": 0.35, "c4": 0.83}, {"time": 0.3833, "x": 11}, {"time": 0.6333, "x": -14.37, "curve": 0, "c2": 0.2, "c3": 0.691}, + {"time": 0.7333, "x": 26.13, "y": 111.42, "curve": 0.257, "c3": 0.63, "c4": 0.42}, {"time": 0.8, "x": -44.87, "y": 129.12, "curve": 0.503, "c2": 0.34, "c4": 0.83}, {"time": 0.9} ] }, - "@leg-front-right": { + "leg-front-left-IK": { "translate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": 6.95, "y": -25.59, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "curve": "stepped"}, - {"time": 0.5833, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.7167, "x": 8.43, "y": -10.83}, {"time": 0.9167} + {"time": 0.1, "curve": 0, "c2": 0.3, "c3": 0.62}, {"time": 0.2167, "x": -73.46, "y": 138.38, "curve": 0.257, "c3": 0.637, "c4": 0.43}, + {"time": 0.2833, "x": -0.77, "y": 108.17, "curve": 0.518, "c2": 0.35, "c4": 0.83}, {"time": 0.3833, "x": 11}, {"time": 0.6333, "x": -14.37, "curve": 0, "c2": 0.2, "c3": 0.691}, + {"time": 0.7333, "x": 11.48, "y": 75.71, "curve": 0.257, "c3": 0.63, "c4": 0.42}, {"time": 0.8, "x": -56.77, "y": 100.13, "curve": 0.503, "c2": 0.34, "c4": 0.83}, {"time": 0.9} ] }, - "@leg-front-left": { + "leg-back-left-IK": { "translate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": -0.29, "y": -5.47}, {"time": 0.3333, "curve": "stepped"}, {"time": 0.5833, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.7167, "x": 6.82, "y": 7.35}, {"time": 0.9167} + {"time": 0.1, "curve": 0, "c2": 0.3, "c3": 0.62}, {"time": 0.2, "x": -56.56, "y": 95.34, "curve": 0.257, "c3": 0.637, "c4": 0.43}, + {"time": 0.2667, "x": 21.01, "y": 67.87, "curve": 0.518, "c2": 0.35, "c4": 0.83}, {"time": 0.3833, "x": 0.85}, {"time": 0.6333, "x": -16.87, "curve": 0, "c2": 0.2, "c3": 0.691}, + {"time": 0.7167, "x": 21.01, "y": 67.87, "curve": 0.257, "c3": 0.63, "c4": 0.42}, {"time": 0.7833, "x": -41.39, "y": 75.95, "curve": 0.503, "c2": 0.34, "c4": 0.83}, {"time": 0.9} ] }, "tail": { "rotate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "angle": 19.35, "curve": 0, "c2": 0.4, "c3": 0.383}, {"time": 0.3333, "angle": -0.88, "curve": "stepped"}, - {"time": 0.35, "angle": -13.56, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.5, "angle": 0.52, "curve": 0, "c2": 0.3, "c3": 0.544}, - {"time": 0.7167, "angle": 19.32, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.8, "angle": -9.3, "curve": 0.313, "c3": 0.699}, {"time": 0.9167} + {"curve": 0, "c2": 0.2, "c3": 0.695}, {"time": 0.1, "angle": 21.16, "curve": 0, "c2": 0.2, "c3": 0.695}, {"time": 0.25, "angle": -27.62, "curve": 0.317, "c4": 0.8}, + {"time": 0.3833, "angle": 17.89}, {"time": 0.6333, "angle": 23.46, "curve": 0, "c2": 0.2, "c3": 0.695}, {"time": 0.7667, "angle": -27.7, "curve": 0.317, "c4": 0.8}, + {"time": 0.9, "angle": 21.16, "curve": 0, "c2": 0.2, "c3": 0.695}, {"time": 1} ] }, "@shadow": { - "translate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": 24.43, "curve": 0, "c2": 0.4, "c3": 0.383}, {"time": 0.3333, "x": 86.58, "curve": "stepped"}, - {"time": 0.35, "x": 154.34, "curve": 0.315, "c4": 0.8}, {"time": 0.5, "x": 208.2, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.5833, "x": 216.55}, - {"time": 0.7167, "x": 243.36, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.9167} - ], + "translate": [{"time": 0.1}, {"time": 0.3833, "x": 542.6}, {"time": 0.6333, "x": 603.73, "curve": 0, "c2": 0.1, "c3": 0.852}, {"time": 0.9}], "scale": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": 1.08, "y": 1.08, "curve": 0, "c2": 0.4, "c3": 0.383}, {"time": 0.3333, "x": 0.92, "y": 0.92, "curve": "stepped"}, - {"time": 0.35, "x": 0.9, "y": 0.9, "curve": 0.315, "c4": 0.8}, {"time": 0.5, "x": 1.02, "y": 1.02, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.5833, "x": 1.08, "y": 1.08}, - {"time": 0.7167, "x": 1.1, "y": 1.1, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.9167} + {}, {"time": 0.1, "x": 1.08, "y": 1.08}, {"time": 0.25, "x": 0.9, "y": 0.9}, {"time": 0.3833, "x": 1.08, "y": 1.08}, {"time": 0.6333, "x": 1.1, "y": 1.1}, + {"time": 0.7833, "x": 0.9, "y": 0.9}, {"time": 0.9, "x": 1.08, "y": 1.08}, {"time": 1} ] - }, - "@body3": { - "rotate": [ - {"angle": -0.38, "curve": 0.371, "c2": 0.62, "c3": 0.71}, {"time": 0.0333, "curve": 0.25, "c3": 0.75}, {"time": 0.2, "angle": 7.65, "curve": 0.25, "c3": 0.75}, - {"time": 0.3667, "angle": -15.43, "curve": 0.25, "c3": 0.75}, {"time": 0.5333, "angle": 14.64, "curve": 0.25, "c3": 0.75}, - {"time": 0.75, "angle": -3.96, "curve": 0.243, "c3": 0.689, "c4": 0.75}, {"time": 0.9167, "angle": -0.38} - ], - "translate": [{"curve": 0.25, "c3": 0.75}, {"time": 0.1667, "x": -11.6, "y": 9.76, "curve": 0.25, "c3": 0.75}, {"time": 0.3333}] - }, - "@body4": { + } + } + }, + "236468041": { + "slots": { + "eyes": {"attachment": [{"time": 0.25, "name": "eyes-shut"}, {"time": 0.3, "name": "eyes-angry"}, {"time": 0.4333, "name": "eyes"}]}, + "mouth": {"attachment": [{"time": 0.0167, "name": "mouth-bite"}, {"time": 0.3, "name": "mouth-open"}, {"time": 0.4333, "name": "mouth"}]} + }, + "bones": { + "@pivot-back": { "rotate": [ - {"angle": -3.56, "curve": 0.379, "c2": 0.6, "c3": 0.724}, {"time": 0.05, "curve": 0.25, "c3": 0.75}, {"time": 0.2167, "angle": 9.83, "curve": 0.25, "c3": 0.75}, - {"time": 0.3833, "angle": -18.47, "curve": 0.25, "c3": 0.75}, {"time": 0.55, "angle": 16.63, "curve": 0.25, "c3": 0.75}, - {"time": 0.7667, "angle": -19.31, "curve": 0.242, "c3": 0.667, "c4": 0.67}, {"time": 0.9167, "angle": -3.56} + {"curve": "stepped"}, {"time": 0.0167, "angle": 7.5}, {"time": 0.2333, "angle": 10, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "angle": -5, "curve": 0.315, "c4": 0.8}, + {"time": 0.4833, "angle": 5, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5833} ], "translate": [ - {"x": -2.39, "y": 7.1, "curve": 0.25, "c3": 0.75}, {"time": 0.1667, "x": 9, "y": 2.91, "curve": 0.25, "c3": 0.75}, {"time": 0.3333, "x": -1.59, "y": 23.93, "curve": 0.25, "c3": 0.75}, - {"time": 0.5, "x": 21.48, "y": -4.06, "curve": 0.25, "c3": 0.75}, {"time": 0.7167, "x": -1.59, "y": 23.93, "curve": 0.25, "c3": 0.75}, {"time": 0.9167, "x": -2.39, "y": 7.1} + {"curve": "stepped"}, {"time": 0.0167, "x": 29.16, "y": 18.85, "curve": "stepped"}, {"time": 0.2667, "x": 29.16, "y": 18.85, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.3833, "x": -1.17, "y": 18.85, "curve": 0.315, "c4": 0.8}, {"time": 0.4833} ] }, - "@body6": { - "rotate": [ - {"angle": -3.53, "curve": 0.353, "c2": 0.4, "c3": 0.696, "c4": 0.77}, {"time": 0.05, "angle": -0.89, "curve": 0.371, "c2": 0.62, "c3": 0.71}, {"time": 0.0833, "curve": 0.25, "c3": 0.75}, - {"time": 0.25, "angle": 15.47, "curve": 0.25, "c3": 0.75}, {"time": 0.4167, "angle": -8.36, "curve": 0.25, "c3": 0.75}, {"time": 0.5833, "angle": 26.49, "curve": 0.25, "c3": 0.75}, - {"time": 0.8, "angle": -9.2, "curve": 0.246, "c3": 0.635, "c4": 0.55}, {"time": 0.9167, "angle": -3.53} - ], + "leg-back-left-IK": { "translate": [ - {"x": 1.07, "y": -0.75, "curve": 0.379, "c2": 0.6, "c3": 0.724}, {"time": 0.05, "curve": 0.25, "c3": 0.75}, {"time": 0.2167, "x": -17.06, "y": -1.14, "curve": 0.25, "c3": 0.75}, - {"time": 0.3833, "x": 5.81, "y": -4.07, "curve": 0.25, "c3": 0.75}, {"time": 0.55, "x": -27.26, "y": 10.72, "curve": 0.25, "c3": 0.75}, - {"time": 0.7667, "x": 5.81, "y": -4.07, "curve": 0.242, "c3": 0.667, "c4": 0.67}, {"time": 0.9167, "x": 1.07, "y": -0.75} + {"curve": "stepped"}, {"time": 0.0167, "x": 50.74, "y": 0.9, "curve": "stepped"}, {"time": 0.2, "x": 50.74, "y": 0.9, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.25, "x": 12.5, "y": 6.45, "curve": 0, "c2": 0.8, "c3": 0.15}, {"time": 0.3667, "x": 5.47, "y": 26.12, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.4833} ] }, - "body-braid2": { - "rotate": [ - {"angle": -0.21, "curve": 0.356, "c2": 0.65, "c3": 0.691}, {"time": 0.0167, "curve": 0.25, "c3": 0.75}, {"time": 0.1833, "angle": 9.33, "curve": 0.25, "c3": 0.75}, - {"time": 0.35, "angle": -3.12, "curve": 0.25, "c3": 0.75}, {"time": 0.5167, "angle": 12.46, "curve": 0.25, "c3": 0.75}, - {"time": 0.7333, "angle": -7.14, "curve": 0.246, "c3": 0.717, "c4": 0.86}, {"time": 0.9167, "angle": -0.21} + "@leg-back-left": { + "translate": [ + {"curve": "stepped"}, {"time": 0.0167, "x": 18.74, "y": 14.65, "curve": "stepped"}, {"time": 0.1667, "x": 18.74, "y": 14.65, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.4833} ] }, - "body-braid4": { - "rotate": [ - {"angle": -5.82, "curve": 0.333, "c2": 0.33, "c3": 0.758}, {"time": 0.15, "curve": 0.25, "c3": 0.75}, {"time": 0.3167, "angle": 19.6, "curve": 0.25, "c3": 0.75}, - {"time": 0.4833, "angle": -3.12, "curve": 0.25, "c3": 0.75}, {"time": 0.65, "angle": 25.68, "curve": 0.25, "c3": 0.75}, - {"time": 0.8667, "angle": -7.14, "curve": 0.276, "c3": 0.621, "c4": 0.4}, {"time": 0.9167, "angle": -5.82} - ], - "translate": [{"x": -2.3, "y": -9.73}] + "@leg-front-left": { + "translate": [ + {"curve": "stepped"}, {"time": 0.0167, "x": -0.45, "y": -3.93}, {"time": 0.2333, "x": -0.82, "y": -2.61}, {"time": 0.3333, "x": -5.6, "y": -0.89, "curve": 0.617, "c4": 0.6}, + {"time": 0.45, "x": -1.09, "y": -14.69, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5833} + ] }, - "body-braid3": { - "rotate": [ - {"angle": -2.03, "curve": 0.382, "c2": 0.57, "c3": 0.735}, {"time": 0.0667, "curve": 0.25, "c3": 0.75}, {"time": 0.2333, "angle": 20.19, "curve": 0.25, "c3": 0.75}, - {"time": 0.4, "angle": -3.12, "curve": 0.25, "c3": 0.75}, {"time": 0.5667, "angle": 27.61, "curve": 0.25, "c3": 0.75}, - {"time": 0.7833, "angle": -7.14, "curve": 0.243, "c3": 0.649, "c4": 0.6}, {"time": 0.9167, "angle": -2.03} + "@leg-front-right": { + "translate": [ + {"time": 0.0167}, {"time": 0.3333, "x": -7.53, "y": 2.3, "curve": 0, "c2": 0.1, "c3": 0.853}, {"time": 0.45, "x": 0.15, "y": -4.26, "curve": 0.159, "c3": 0.853}, + {"time": 0.4833, "x": -2.34, "y": -28.14, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5833} ] }, - "@body2": { - "rotate": [ - {"angle": -2.41, "curve": 0.333, "c2": 0.33, "c3": 0.676, "c4": 0.7}, {"time": 0.05, "angle": -1.12, "curve": 0.382, "c2": 0.57, "c3": 0.735}, - {"time": 0.1167, "curve": 0.25, "c3": 0.75}, {"time": 0.2833, "angle": 12.91, "curve": 0.25, "c3": 0.75}, {"time": 0.45, "angle": -6.19, "curve": 0.25, "c3": 0.75}, - {"time": 0.6167, "angle": 25.88, "curve": 0.25, "c3": 0.75}, {"time": 0.8333, "angle": -3.96, "curve": 0.256, "c3": 0.619, "c4": 0.46}, {"time": 0.9167, "angle": -2.41} - ], - "translate": [{"time": 0.3833, "curve": 0.25, "c3": 0.75}, {"time": 0.55, "x": -14.09, "y": -2.21, "curve": 0.25, "c3": 0.75}, {"time": 0.7667}] + "@pivot-main": { + "translate": [ + {"curve": "stepped"}, {"time": 0.0167, "x": 33.18}, {"time": 0.2667, "x": 61.52, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3833, "x": 20.27, "y": 27.91, "curve": 0.315, "c4": 0.8}, + {"time": 0.4833} + ] }, - "body-braid6": { - "rotate": [ - {"angle": -11.03, "curve": 0.355, "c2": 0.65, "c3": 0.689}, {"time": 0.0167, "angle": -11.74, "curve": 0.25, "c3": 0.75}, {"time": 0.2167, "angle": -4.61, "curve": 0.25, "c3": 0.75}, - {"time": 0.3833, "angle": 13.39, "curve": 0.25, "c3": 0.75}, {"time": 0.55, "angle": -7.73, "curve": 0.25, "c3": 0.75}, - {"time": 0.7167, "angle": 15.52, "curve": 0.246, "c3": 0.719, "c4": 0.87}, {"time": 0.9167, "angle": -11.03} + "leg-front-right-IK": { + "translate": [ + {"time": 0.2333, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "x": 22.26, "y": 54.13}, {"time": 0.3833, "x": 28.04, "y": 49.32, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.45} ] }, - "body-braid5": { - "rotate": [ - {"angle": 2.72, "curve": 0.365, "c2": 0.45, "c3": 0.754}, {"time": 0.1167, "angle": 7.07, "curve": 0.25, "c3": 0.75}, {"time": 0.2833, "angle": 31.61, "curve": 0.25, "c3": 0.75}, - {"time": 0.45, "angle": 3.95, "curve": 0.25, "c3": 0.75}, {"time": 0.6167, "angle": 33.27, "curve": 0.25, "c3": 0.75}, - {"time": 0.8333, "angle": -0.06, "curve": 0.256, "c3": 0.619, "c4": 0.46}, {"time": 0.9167, "angle": 2.72} + "leg-front-left-IK": { + "translate": [ + {"curve": "stepped"}, {"time": 0.0167, "x": 38.52}, {"time": 0.2333, "x": 38.87, "curve": 0, "c2": 0.3, "c3": 0.54}, {"time": 0.3333, "x": 26.12, "y": 38.71}, + {"time": 0.3833, "x": 12.33, "y": 29.93, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.45} ] }, - "body-braid": { - "rotate": [ - {"angle": 3.78, "curve": 0.379, "c2": 0.6, "c3": 0.724}, {"time": 0.05, "angle": 5.09, "curve": 0.25, "c3": 0.75}, {"time": 0.2167, "angle": 10.61, "curve": 0.25, "c3": 0.75}, - {"time": 0.3833, "angle": 0.29, "curve": 0.25, "c3": 0.75}, {"time": 0.55, "angle": 27.5, "curve": 0.25, "c3": 0.75}, - {"time": 0.7667, "angle": -2.04, "curve": 0.242, "c3": 0.667, "c4": 0.67}, {"time": 0.9167, "angle": 3.78} + "@shadow": { + "translate": [ + {"curve": "stepped"}, {"time": 0.0167, "x": 33.22}, {"time": 0.2667, "x": 61.08, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3833, "x": 9.02, "curve": 0.315, "c4": 0.8}, + {"time": 0.4833} + ], + "scale": [ + {"curve": "stepped"}, {"time": 0.0167, "x": 1.1, "y": 1.1, "curve": "stepped"}, {"time": 0.2667, "x": 1.1, "y": 1.1, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.3833, "x": 0.98, "y": 0.98, "curve": 0.315, "c4": 0.8}, {"time": 0.4833, "x": 1.1, "y": 1.1, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5833} ] }, - "@body5": { + "tail": { "rotate": [ - {"time": 0.1667, "curve": 0.25, "c3": 0.75}, {"time": 0.3333, "angle": -3.12, "curve": 0.271, "c3": 0.619, "c4": 0.41}, - {"time": 0.5, "angle": -0.04, "curve": 0.342, "c2": 0.36, "c3": 0.757}, {"time": 0.9167} + {"curve": "stepped"}, {"time": 0.0167, "angle": -17.67}, {"time": 0.2333, "angle": -21.07, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.3167, "angle": -20.71, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.45, "angle": 25.83, "curve": 0.154, "c4": 0.9}, + {"time": 0.5167, "angle": -14.3, "curve": 0.161, "c3": 0.854}, {"time": 0.5833} ] } - }, - "events": [{"time": 0.35, "name": "start-attack"}] + } }, - "983904028": { + "3312470590": { "slots": { - "eyes": {"attachment": [{"time": 0.0167, "name": "eyes-angry"}, {"time": 0.5, "name": "eyes-shut"}, {"time": 0.6667, "name": "eyes"}]}, - "mouth": {"attachment": [{"time": 0.0167, "name": "mouth-bite"}, {"time": 0.3, "name": "mouth-open"}, {"time": 0.5, "name": "mouth"}]} + "eyes": {"attachment": [{"time": 0.7, "name": "eyes"}]}, + "mouth": {"attachment": [{"time": 0.05, "name": "mouth-bite"}, {"time": 0.2833, "name": "mouth-open"}, {"time": 0.4667, "name": "mouth-bite"}, {"time": 0.7, "name": "mouth"}]} }, "bones": { "@pivot-back": { "rotate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "angle": -3.92, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "angle": 2.51, "curve": 0.697, "c4": 0.3}, - {"time": 0.3, "angle": -2}, {"time": 0.4167, "angle": -3, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5833, "angle": 3, "curve": 0, "c2": 0.17, "c3": 0.45, "c4": 0.61}, - {"time": 0.6667, "angle": -2.47, "curve": 0.345, "c2": 0.53, "c3": 0.751}, {"time": 0.75} + {"curve": 0, "c2": 0.4, "c3": 0.383}, {"time": 0.15, "angle": 4, "curve": 0, "c2": 0.2, "c3": 0.851}, {"time": 0.2833, "angle": 7}, + {"time": 0.4167, "angle": 7.5, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5, "angle": 4, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.5833, "angle": 6, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.75} ], "translate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "x": 71.93, "y": -12.95, "curve": "stepped"}, {"time": 0.25, "x": 71.93, "y": -12.95, "curve": 0.697, "c4": 0.3}, - {"time": 0.3, "x": -65}, {"time": 0.4167, "x": -67, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5833, "x": -74.25, "y": -5.2, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.75} + {"curve": 0, "c2": 0.4, "c3": 0.383}, {"time": 0.25, "x": 25, "curve": 1, "c2": -0.1, "c4": 0}, {"time": 0.2833, "x": -136, "y": 25.56}, + {"time": 0.4167, "x": -153.19, "y": 25.56, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5, "x": -176.94, "curve": "stepped"}, + {"time": 0.5833, "x": -176.94, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.75} ] }, - "leg-back-left-IK": { + "@pivot-main": {"translate": [{"time": 0.5833, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.6667, "y": 45.22, "curve": 0.315, "c4": 0.8}, {"time": 0.75}]}, + "@leg-front-left": { "translate": [ - {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.1333, "x": 80.9, "curve": 0.161, "c3": 0.854}, {"time": 0.25, "x": 49.4, "curve": 0.25, "c4": 0.3}, - {"time": 0.3, "x": -1.03, "y": 44.55}, {"time": 0.4167, "x": -2.69, "y": 48.98, "curve": 0.313, "c3": 0.699}, {"time": 0.5833, "x": -90.91, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.75} + {"curve": 0, "c2": 0.4, "c3": 0.383}, {"time": 0.25, "x": -0.72, "y": -6.78}, {"time": 0.5833, "x": -1.48, "y": -14.61, "curve": 0, "c2": 0.17, "c3": 0.45, "c4": 0.61}, + {"time": 0.65, "x": -0.39, "y": 5.91, "curve": 0.345, "c2": 0.53, "c3": 0.751}, {"time": 0.75} ] }, - "leg-front-right-IK": { + "@leg-front-right": { "translate": [ - {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 44.25, "y": 4.66, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "x": 42.9, "curve": 0.697, "c4": 0.3}, - {"time": 0.3, "x": 12.5}, {"time": 0.4167, "x": 2.32, "curve": 0.313, "c3": 0.699}, {"time": 0.5833, "x": -87.1, "curve": 0, "c2": 0.17, "c3": 0.45, "c4": 0.61}, - {"time": 0.6667, "x": -39.4, "curve": 0.345, "c2": 0.53, "c3": 0.751}, {"time": 0.75} + {"curve": 0, "c2": 0.39, "c3": 0.387}, {"time": 0.25, "x": -2.88, "y": -28.54, "curve": "stepped"}, + {"time": 0.5833, "x": -2.88, "y": -28.54, "curve": 0, "c2": 0.17, "c3": 0.45, "c4": 0.61}, {"time": 0.65, "x": -0.83, "y": 1.57, "curve": 0.345, "c2": 0.53, "c3": 0.751}, {"time": 0.75} ] }, "leg-front-left-IK": { "translate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "x": 8.25, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "x": 42.9, "curve": 0.697, "c4": 0.3}, - {"time": 0.3, "x": -18.24, "y": 8.75}, {"time": 0.4167, "x": -28.22, "y": 30.68, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.5833, "x": -112.56, "curve": 0, "c2": 0.17, "c3": 0.45, "c4": 0.61}, {"time": 0.6667, "x": -55.81, "curve": 0.345, "c2": 0.53, "c3": 0.751}, {"time": 0.75} + {"curve": 0, "c2": 0.39, "c3": 0.387}, {"time": 0.25, "x": 19.12, "curve": 0.702, "c4": 0.2}, {"time": 0.2833, "x": -43.29, "y": 59.07}, + {"time": 0.4167, "x": -61.19, "y": 52.81, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5, "x": -184.33, "y": 7.89, "curve": "stepped"}, + {"time": 0.5833, "x": -184.33, "y": 7.89, "curve": 0, "c2": 0.17, "c3": 0.45, "c4": 0.61}, {"time": 0.65, "x": -105.91, "y": -2.82, "curve": 0.345, "c2": 0.53, "c3": 0.751}, + {"time": 0.75} ] }, - "@leg-front-left": { + "leg-front-right-IK": { "translate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "x": -4.8, "y": 21.17, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "x": -0.53, "y": 0.11, "curve": 0.697, "c4": 0.3}, - {"time": 0.3} + {"time": 0.25, "curve": 0.702, "c4": 0.2}, {"time": 0.2833, "x": -27.95, "y": 28.32}, {"time": 0.4167, "x": -40.48, "y": 34.59, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.5, "x": -191.61, "curve": "stepped"}, {"time": 0.5833, "x": -191.61, "curve": 0, "c2": 0.17, "c3": 0.45, "c4": 0.61}, + {"time": 0.65, "x": -103, "y": 4.15, "curve": 0.345, "c2": 0.53, "c3": 0.751}, {"time": 0.75} ] }, - "@leg-front-right": { + "leg-back-left-IK": { "translate": [ - {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 3.37, "y": 22.83, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "x": 12.06, "y": -24.92, "curve": 0.697, "c4": 0.3}, - {"time": 0.3, "x": -30.7, "y": 11.75, "curve": "stepped"}, {"time": 0.4167, "x": -30.7, "y": 11.75, "curve": 0, "c2": 0.3, "c3": 0.544}, - {"time": 0.5833, "x": -10.19, "y": -4.67, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.75} + {"time": 0.2667, "curve": 0.461, "c4": 0.4}, {"time": 0.2833, "x": -70.51, "y": 98.54}, {"time": 0.4167, "x": -70.51, "y": 101.95, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.5, "x": -189.32, "curve": "stepped"}, {"time": 0.5833, "x": -189.32, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.75} ] }, - "@leg-back-left": { - "translate": [ - {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.1333, "x": 0.67, "y": -7.85, "curve": 0.161, "c3": 0.854}, {"time": 0.25, "x": 0.53, "y": -13.09, "curve": 0.25, "c4": 0.3}, - {"time": 0.3, "x": 0.58, "y": -14.14, "curve": "stepped"}, {"time": 0.4167, "x": 0.58, "y": -14.14, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.5833, "x": -0.28, "y": -7.87, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.75} + "@pivot-center": { + "rotate": [ + {"time": 0.25, "curve": 0.779, "c4": 0.3}, {"time": 0.2833, "angle": 10.18, "curve": "stepped"}, {"time": 0.4167, "angle": 10.18, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5} + ] + }, + "tail": { + "rotate": [ + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.25, "angle": 21.98, "curve": 0.851, "c4": 0.1}, {"time": 0.2833, "angle": -15.58}, + {"time": 0.4167, "angle": -20.71, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5, "angle": 19.93, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.5833, "angle": 23.12, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.6667, "angle": -14.25, "curve": 0.313, "c3": 0.699}, {"time": 0.75} ] }, "@shadow": { "translate": [ - {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 61.96, "curve": "stepped"}, {"time": 0.25, "x": 61.96, "curve": 0.697, "c4": 0.3}, {"time": 0.3, "x": -50.16}, - {"time": 0.4167, "x": -53.09, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5833, "x": -83.79, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.75} + {"time": 0.25, "curve": 0.851, "c4": 0.1}, {"time": 0.2833, "x": -143.36}, {"time": 0.4167, "x": -160.77, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.5, "x": -186.16, "curve": "stepped"}, {"time": 0.5833, "x": -186.16, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.75} ], "scale": [ - {"time": 0.0833, "curve": 0, "c2": 0.26, "c3": 0.369, "c4": 0.62}, {"time": 0.25, "x": 1.06, "y": 1.06, "curve": 0.697, "c4": 0.3}, - {"time": 0.3, "x": 0.96, "y": 0.96, "curve": "stepped"}, {"time": 0.4167, "x": 0.96, "y": 0.96, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.5833, "x": 1.08, "y": 1.08, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.75} + {"curve": 0, "c2": 0.4, "c3": 0.383}, {"time": 0.25, "x": 1.08, "y": 1.08, "curve": "stepped"}, {"time": 0.5, "x": 1.08, "y": 1.08, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.5833, "x": 1.12, "y": 1.12, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.6667, "x": 0.94, "y": 0.94, "curve": 0.315, "c4": 0.8}, {"time": 0.75} ] }, - "tail": { - "rotate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "angle": 15.61, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "angle": 20.44, "curve": 0.697, "c4": 0.3}, - {"time": 0.3, "angle": -9.4}, {"time": 0.4167, "angle": -13.12, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5833, "angle": 15.47, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.75} - ] - }, - "@body3": { + "@leg-back-left": {"translate": [{"curve": 0, "c2": 0.39, "c3": 0.387}, {"time": 0.25, "x": -7.28, "y": 3.82}]} + }, + "events": [{"time": 0.2167, "name": "start-attack"}, {"time": 0.2833, "name": "hit"}] + }, + "1941113513": { + "slots": { + "eyes": {"attachment": [{"time": 0.6667, "name": "eyes"}]}, + "mouth": {"attachment": [{"time": 0.1333, "name": "mouth-bite"}, {"time": 0.2667, "name": "mouth-open"}, {"time": 0.4167, "name": "mouth-bite"}, {"time": 0.6667, "name": "mouth"}]} + }, + "bones": { + "@pivot-back": { "rotate": [ - {"angle": -4.35, "curve": 0.363, "c2": 0.64, "c3": 0.699}, {"time": 0.0333, "angle": -3.77, "curve": 0.25, "c3": 0.75}, {"time": 0.2, "angle": 7.65, "curve": 0.25, "c3": 0.75}, - {"time": 0.3167, "angle": -3.77, "curve": 0.25, "c3": 0.75}, {"time": 0.5, "angle": -14, "curve": 0.245, "c3": 0.705, "c4": 0.81}, {"time": 0.75, "angle": -4.35} + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "angle": -3.92, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "angle": 2.51, "curve": 0, "c2": 0.3, "c3": 0.544}, + {"time": 0.35, "angle": -4.74, "curve": 0.7, "c4": 0.3}, {"time": 0.4167, "angle": 2}, {"time": 0.5833, "angle": 4, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.75} ], "translate": [ - {"curve": 0.25, "c3": 0.75}, {"time": 0.1667, "x": -11.6, "y": 9.76, "curve": 0.25, "c3": 0.75}, {"time": 0.2833, "curve": 0.25, "c3": 0.75}, - {"time": 0.4667, "x": 45.36, "y": -33.56, "curve": 0.25, "c3": 0.75}, {"time": 0.75} + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 71.93, "y": -12.95, "curve": "stepped"}, {"time": 0.25, "x": 71.93, "y": -12.95, "curve": 0, "c2": 0.3, "c3": 0.544}, + {"time": 0.4167, "x": -144.49, "y": -12.95, "curve": "stepped"}, {"time": 0.5833, "x": -144.49, "y": -12.95, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.75} ] }, - "@body4": { - "rotate": [ - {"angle": -12.25, "curve": 0.372, "c2": 0.62, "c3": 0.712}, {"time": 0.05, "angle": -15.35, "curve": 0.25, "c3": 0.75}, {"time": 0.2167, "angle": 9.83, "curve": 0.25, "c3": 0.75}, - {"time": 0.3333, "angle": -15.35, "curve": 0.25, "c3": 0.75}, {"time": 0.5167, "angle": 14.26, "curve": 0.243, "c3": 0.686, "c4": 0.74}, {"time": 0.75, "angle": -12.25} - ], + "leg-back-left-IK": { "translate": [ - {"x": -1.59, "y": 23.93, "curve": 0.25, "c3": 0.75}, {"time": 0.1667, "x": 9, "y": 2.91, "curve": 0.25, "c3": 0.75}, {"time": 0.2833, "x": -1.59, "y": 23.93, "curve": 0.25, "c3": 0.75}, - {"time": 0.4667, "x": 6.55, "y": -29.78, "curve": 0.25, "c3": 0.75}, {"time": 0.75, "x": -1.59, "y": 23.93} + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.1167, "x": 93.98, "curve": 0.161, "c3": 0.854}, {"time": 0.25, "x": 67.02, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.3333, "x": -65.1, "y": -1.32, "curve": 0.315, "c4": 0.8}, {"time": 0.4167, "x": -131.67, "curve": "stepped"}, {"time": 0.5833, "x": -131.67, "curve": 0.159, "c4": 0.9}, + {"time": 0.75} ] }, - "@body6": { - "rotate": [ - {"angle": 2.05, "curve": 0.382, "c2": 0.59, "c3": 0.73}, {"time": 0.0833, "angle": -5.24, "curve": 0.25, "c3": 0.75}, {"time": 0.25, "angle": 15.47, "curve": 0.25, "c3": 0.75}, - {"time": 0.3667, "angle": -5.24, "curve": 0.25, "c3": 0.75}, {"time": 0.55, "angle": 25.77, "curve": 0.243, "c3": 0.657, "c4": 0.63}, {"time": 0.75, "angle": 2.05} - ], + "leg-front-right-IK": { "translate": [ - {"x": 5.81, "y": -4.07, "curve": 0.25, "c3": 0.75}, {"time": 0.1667, "x": -17.06, "y": -1.14, "curve": 0.25, "c3": 0.75}, - {"time": 0.2833, "x": 5.81, "y": -4.07, "curve": 0.25, "c3": 0.75}, {"time": 0.4667, "x": -70.52, "y": 35.61, "curve": 0.25, "c3": 0.75}, {"time": 0.75, "x": 5.81, "y": -4.07} + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 21.56, "y": 4.31, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.25, "x": 42.9, "curve": 0, "c2": 0.3, "c3": 0.544}, + {"time": 0.3667, "x": -104.26, "y": 42.61, "curve": 0.161, "c4": 0.85}, {"time": 0.4167, "x": -153.64, "curve": "stepped"}, {"time": 0.5833, "x": -153.64, "curve": 0.154, "c4": 0.9}, + {"time": 0.7, "x": 13.43, "curve": 0.161, "c3": 0.854}, {"time": 0.75} ] }, - "body-braid2": { - "rotate": [ - {"angle": -1.43, "curve": 0.25, "c3": 0.75}, {"time": 0.1667, "angle": 9.33, "curve": 0.25, "c3": 0.75}, {"time": 0.2833, "angle": -1.43, "curve": 0.25, "c3": 0.75}, - {"time": 0.4667, "angle": 20.83, "curve": 0.25, "c3": 0.75}, {"time": 0.75, "angle": -1.43} + "leg-front-left-IK": { + "translate": [ + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 43.11, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "x": 48.71, "y": -1.66, "curve": 0, "c2": 0.3, "c3": 0.544}, + {"time": 0.3667, "x": -87.39, "y": 18.71, "curve": 0.161, "c4": 0.85}, {"time": 0.4167, "x": -150.32, "y": 0.83}, {"time": 0.5833, "x": -142.85, "curve": 0.154, "c4": 0.9}, + {"time": 0.7, "x": 13.43, "curve": 0.161, "c3": 0.854}, {"time": 0.75} ] }, - "body-braid4": { - "rotate": [ - {"angle": 9.48, "curve": 0.372, "c2": 0.48, "c3": 0.752}, {"time": 0.15, "angle": -11.53, "curve": 0.25, "c3": 0.75}, {"time": 0.3167, "angle": 19.6, "curve": 0.25, "c3": 0.75}, - {"time": 0.4333, "angle": -11.53, "curve": 0.25, "c3": 0.75}, {"time": 0.6167, "angle": 27.46, "curve": 0.252, "c3": 0.622, "c4": 0.49}, {"time": 0.75, "angle": 9.48} - ], - "translate": [{"time": 0.1667, "x": -2.3, "y": -9.73}] - }, - "body-braid3": { - "rotate": [ - {"angle": -1.3, "curve": 0.378, "c2": 0.6, "c3": 0.722}, {"time": 0.0667, "angle": -8.3, "curve": 0.25, "c3": 0.75}, {"time": 0.2333, "angle": 20.19, "curve": 0.25, "c3": 0.75}, - {"time": 0.35, "angle": -8.3, "curve": 0.25, "c3": 0.75}, {"time": 0.5333, "angle": 33.27, "curve": 0.242, "c3": 0.67, "c4": 0.68}, {"time": 0.75, "angle": -1.3} + "@leg-front-left": { + "translate": [ + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": -0.28, "y": 3.31, "curve": 0, "c2": 0.3, "c3": 0.544}, + {"time": 0.25, "x": -0.62, "y": -3.21, "curve": 0, "c2": 0.25, "c3": 0.457, "c4": 0.73}, {"time": 0.3667, "x": -15.24, "y": -11.32, "curve": 0.325, "c2": 0.6, "c3": 0.672}, + {"time": 0.4167, "x": -17.97, "y": -3.57, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5833, "x": -18.47, "y": -10.19, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.75} ] }, - "@body2": { - "rotate": [ - {"angle": 3.04, "curve": 0.378, "c2": 0.6, "c3": 0.722}, {"time": 0.0667, "angle": 7.45, "curve": 0.25, "c3": 0.75}, {"time": 0.2333, "angle": 12.91, "curve": 0.25, "c3": 0.75}, - {"time": 0.35, "angle": 7.45, "curve": 0.25, "c3": 0.75}, {"time": 0.5333, "angle": -18.73, "curve": 0.242, "c3": 0.67, "c4": 0.68}, {"time": 0.75, "angle": 3.04} - ], + "@leg-front-right": { "translate": [ - {"x": -0.08, "y": 1.15, "curve": 0.25, "c3": 0.75}, {"time": 0.1667, "curve": 0.25, "c3": 0.75}, {"time": 0.2833, "x": -0.08, "y": 1.15, "curve": 0.25, "c3": 0.75}, - {"time": 0.4667, "x": 4.59, "y": -41.28, "curve": 0.25, "c3": 0.75}, {"time": 0.75, "x": -0.08, "y": 1.15} + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 3.63, "y": 19.84, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.25, "x": -10.53, "y": -16.98, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.4167, "x": -10.44, "y": -18.31, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.5833, "x": -10.92, "y": -30.23, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.75} ] }, - "body-braid6": { - "rotate": [ - {"angle": 14.32, "curve": 0.314, "c2": 0.26, "c3": 0.757}, {"time": 0.2333, "angle": -20.17, "curve": 0.25, "c3": 0.75}, {"time": 0.4, "angle": 13.39, "curve": 0.25, "c3": 0.75}, - {"time": 0.5167, "angle": -20.17, "curve": 0.25, "c3": 0.75}, {"time": 0.7, "angle": 18.35, "curve": 0.288, "c3": 0.628, "c4": 0.38}, {"time": 0.75, "angle": 14.32} + "@pivot-main": { + "translate": [ + {"time": 0.25, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "y": 26.43, "curve": 0.315, "c4": 0.8}, {"time": 0.4167, "curve": "stepped"}, + {"time": 0.5833, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.6667, "y": 26.43, "curve": 0.315, "c4": 0.8}, {"time": 0.75} ] }, - "body-braid5": { - "rotate": [ - {"angle": 6.07, "curve": 0.382, "c2": 0.56, "c3": 0.738}, {"time": 0.1, "angle": -7.27, "curve": 0.25, "c3": 0.75}, {"time": 0.2667, "angle": 31.61, "curve": 0.25, "c3": 0.75}, - {"time": 0.3833, "angle": -7.27, "curve": 0.25, "c3": 0.75}, {"time": 0.5667, "angle": 36.02, "curve": 0.244, "c3": 0.645, "c4": 0.59}, {"time": 0.75, "angle": 6.07} + "@leg-back-left": { + "translate": [ + {"time": 0.1167, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "x": -0.25, "y": -9.22, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.3333, "x": -0.44, "y": 4.57, "curve": 0.306, "c4": 0.8}, {"time": 0.4167, "x": -0.58, "y": -9.21}, + {"time": 0.5833, "x": -0.15, "y": -9.98, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.75} ] }, - "body-braid": { + "tail": { "rotate": [ - {"angle": -1.25, "curve": 0.363, "c2": 0.64, "c3": 0.699}, {"time": 0.0333, "angle": -2.68, "curve": 0.25, "c3": 0.75}, {"time": 0.2, "angle": 10.61, "curve": 0.25, "c3": 0.75}, - {"time": 0.3167, "angle": -2.68, "curve": 0.25, "c3": 0.75}, {"time": 0.5, "angle": 22.42, "curve": 0.245, "c3": 0.705, "c4": 0.81}, {"time": 0.75, "angle": -1.25} + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "angle": 12.92, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "angle": 18.48, "curve": 0, "c2": 0.3, "c3": 0.544}, + {"time": 0.35, "angle": -6.88, "curve": 0.7, "c4": 0.3}, {"time": 0.4167, "angle": 14}, {"time": 0.5833, "angle": 19.37, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.6833, "angle": -8.78, "curve": 0.313, "c3": 0.699}, {"time": 0.75} ] }, - "@body5": {"rotate": [{"time": 0.2833, "curve": 0.25, "c3": 0.75}, {"time": 0.4667, "angle": 0.5, "curve": 0.25, "c3": 0.75}, {"time": 0.75}]} + "@shadow": { + "translate": [ + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 61.96, "curve": "stepped"}, {"time": 0.25, "x": 61.96, "curve": 0, "c2": 0.3, "c3": 0.544}, + {"time": 0.35, "x": -121.98, "curve": 0.7, "c4": 0.3}, {"time": 0.4167, "x": -154.28, "curve": "stepped"}, {"time": 0.5833, "x": -154.28, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.75} + ], + "scale": [ + {"time": 0.0833, "curve": 0, "c2": 0.26, "c3": 0.369, "c4": 0.62}, {"time": 0.25, "x": 1.06, "y": 1.06, "curve": 0.192, "c2": 0.45, "c3": 0.623}, + {"time": 0.35, "x": 0.96, "y": 0.96, "curve": 0.7, "c4": 0.3}, {"time": 0.4167, "x": 1.08, "y": 1.08, "curve": "stepped"}, + {"time": 0.5833, "x": 1.08, "y": 1.08, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.75} + ] + } }, - "events": [{"time": 0.3, "name": "start-attack"}, {"time": 0.35, "name": "start-attack"}] + "events": [{"time": 0.25, "name": "start-attack"}, {"time": 0.4167, "name": "hit"}] }, - "2051614957": { - "slots": { - "eyes": {"attachment": [{"time": 0.05, "name": "eyes-angry"}, {"time": 1.2333, "name": "eyes"}]}, - "mouth": {"attachment": [{"time": 0.05, "name": "mouth-bite"}, {"time": 0.4667, "name": "mouth-open"}, {"time": 1.0833, "name": "mouth-bite"}, {"time": 1.2333, "name": "mouth"}]} - }, + "1082465462": { + "slots": {"eyes": {"attachment": [{"time": 1.2333, "name": "eyes"}]}, "mouth": {"attachment": [{"time": 0.3, "name": "mouth-bite"}, {"time": 1.2333, "name": "mouth"}]}}, "bones": { "@pivot-back": { "rotate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "angle": 4, "curve": 0, "c2": 0.6, "c3": 0.237}, {"time": 0.4167, "angle": -8.88, "curve": 0, "c2": 0.6, "c3": 0, "c4": 1.4}, - {"time": 1, "angle": 8.17, "curve": 0.701, "c4": 0.5}, {"time": 1.2333, "angle": 5, "curve": 0.461, "c3": 0.543}, {"time": 1.3333} + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1, "angle": 6, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.2, "angle": -6, "curve": 0.315, "c4": 0.8}, + {"time": 0.3, "angle": 5.5, "curve": 0.317, "c3": 0.693}, {"time": 0.3833, "angle": 4.5, "curve": 0.317, "c3": 0.693}, {"time": 0.4667, "angle": 5.5, "curve": 0.317, "c3": 0.693}, + {"time": 0.55, "angle": 4.5, "curve": 0.317, "c3": 0.693}, {"time": 0.6333, "angle": 5.5, "curve": 0.317, "c3": 0.693}, {"time": 0.7167, "angle": 4.5, "curve": 0.317, "c3": 0.693}, + {"time": 0.8, "angle": 5.5, "curve": 0.317, "c3": 0.693}, {"time": 0.8833, "angle": 4.5, "curve": 0.317, "c3": 0.693}, {"time": 0.9667, "angle": 5.5, "curve": 0.317, "c3": 0.693}, + {"time": 1.05, "angle": 4.5, "curve": 0.317, "c3": 0.693}, {"time": 1.1333, "angle": 5.5, "curve": 0.317, "c3": 0.693}, {"time": 1.2167, "angle": 6, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 1.3167, "angle": -3, "curve": 0.315, "c4": 0.8}, {"time": 1.4167} ], "translate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": 33.65, "y": -5, "curve": 0, "c2": 0.6, "c3": 0.237}, - {"time": 0.4167, "x": -62.54, "y": 309.16, "curve": 0, "c2": 0.6, "c3": 0, "c4": 1.4}, {"time": 1, "x": 12.32, "y": 268.04, "curve": 0.701, "c4": 0.5}, {"time": 1.2333} - ] - }, - "@shadow": { - "translate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": 24.43, "curve": 0, "c2": 0.6, "c3": 0.237}, {"time": 0.4167, "x": -70.38, "curve": 0, "c2": 0.6, "c3": 0, "c4": 1.4}, - {"time": 1, "x": 5.15, "curve": 0.701, "c4": 0.5}, {"time": 1.2333, "x": -8.95, "curve": 0.461, "c3": 0.543}, {"time": 1.3333} - ], - "scale": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": 1.08, "y": 1.08, "curve": 0, "c2": 0.6, "c3": 0.237}, - {"time": 0.4167, "x": 0.85, "y": 0.85, "curve": 0, "c2": 0.6, "c3": 0, "c4": 1.4}, {"time": 1, "x": 0.9, "y": 0.9, "curve": 0.701, "c4": 0.5}, - {"time": 1.2333, "x": 1.1, "y": 1.1, "curve": 0.461, "c3": 0.543}, {"time": 1.3333} + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1, "y": 4.69, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.2, "y": 43.73, "curve": 0.315, "c4": 0.8}, + {"time": 0.3, "y": 3.84, "curve": "stepped"}, {"time": 1.2167, "y": 3.84, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1.3167, "y": 43.73, "curve": 0.315, "c4": 0.8}, {"time": 1.4167} ] }, "@leg-front-left": { "translate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": -0.29, "y": -5.47, "curve": 0, "c2": 0.6, "c3": 0.237}, {"time": 0.4167, "curve": "stepped"}, - {"time": 1, "curve": 0.701, "c4": 0.5}, {"time": 1.2333, "x": -0.95, "y": -14.45, "curve": 0.461, "c3": 0.543}, {"time": 1.3333} + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1, "x": -1.28, "y": -14.48, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.2, "curve": 0.315, "c4": 0.8}, + {"time": 0.3, "x": -1.28, "y": -14.48, "curve": 0.317, "c3": 0.693}, {"time": 0.3833, "x": -1.02, "y": -10.26, "curve": 0.317, "c3": 0.693}, + {"time": 0.4667, "x": -1.22, "y": -13.05, "curve": 0.317, "c3": 0.693}, {"time": 0.55, "x": -1.02, "y": -10.26, "curve": 0.317, "c3": 0.693}, + {"time": 0.6333, "x": -1.22, "y": -13.05, "curve": 0.317, "c3": 0.693}, {"time": 0.7167, "x": -1.02, "y": -10.26, "curve": 0.317, "c3": 0.693}, + {"time": 0.8, "x": -1.22, "y": -13.05, "curve": 0.317, "c3": 0.693}, {"time": 0.8833, "x": -1.02, "y": -10.26, "curve": 0.317, "c3": 0.693}, + {"time": 0.9667, "x": -1.22, "y": -13.05, "curve": 0.317, "c3": 0.693}, {"time": 1.05, "x": -1.02, "y": -10.26, "curve": 0.317, "c3": 0.693}, + {"time": 1.1333, "x": -1.22, "y": -13.05, "curve": 0.317, "c3": 0.693}, {"time": 1.2167, "x": -1.28, "y": -14.48, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1.3167} ] }, "@leg-front-right": { "translate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": -0.29, "y": -5.47, "curve": 0, "c2": 0.6, "c3": 0.237}, {"time": 0.4167, "curve": "stepped"}, - {"time": 1, "curve": 0.701, "c4": 0.5}, {"time": 1.2333, "x": -1.66, "y": -25.29, "curve": 0.461, "c3": 0.543}, {"time": 1.3333} - ] - }, - "tail": { - "rotate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "angle": 17.93, "curve": 0, "c2": 0.6, "c3": 0.237}, {"time": 0.4167, "angle": -15.3, "curve": 0, "c2": 0.6, "c3": 0, "c4": 1.4}, - {"time": 1, "angle": 24.81, "curve": 0.701, "c4": 0.5}, {"time": 1.2333, "angle": -15.84, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 1.3333} + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1, "x": -2.46, "y": -27.93, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.2, "curve": 0.315, "c4": 0.8}, + {"time": 0.3, "x": -2.46, "y": -27.93, "curve": 0.317, "c3": 0.693}, {"time": 0.3833, "x": -2.06, "y": -21.45, "curve": 0.317, "c3": 0.693}, + {"time": 0.4667, "x": -2.44, "y": -26.54, "curve": 0.317, "c3": 0.693}, {"time": 0.55, "x": -2.06, "y": -21.45, "curve": 0.317, "c3": 0.693}, + {"time": 0.6333, "x": -2.44, "y": -26.54, "curve": 0.317, "c3": 0.693}, {"time": 0.7167, "x": -2.06, "y": -21.45, "curve": 0.317, "c3": 0.693}, + {"time": 0.8, "x": -2.44, "y": -26.54, "curve": 0.317, "c3": 0.693}, {"time": 0.8833, "x": -2.06, "y": -21.45, "curve": 0.317, "c3": 0.693}, + {"time": 0.9667, "x": -2.44, "y": -26.54, "curve": 0.317, "c3": 0.693}, {"time": 1.05, "x": -2.06, "y": -21.45, "curve": 0.317, "c3": 0.693}, + {"time": 1.1333, "x": -2.44, "y": -26.54, "curve": 0.317, "c3": 0.693}, {"time": 1.2167, "x": -2.46, "y": -27.93, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1.3167} ] }, - "@body3": { - "rotate": [ - {"angle": -0.6, "curve": 0.36, "c2": 0.64, "c3": 0.695}, {"time": 0.05, "curve": 0.25, "c3": 0.75}, {"time": 0.2667, "angle": -3.77, "curve": 0.25, "c3": 0.75}, - {"time": 0.4833, "angle": 11.65, "curve": 0.25, "c3": 0.75}, {"time": 0.7167, "angle": 2.65, "curve": 0.25, "c3": 0.75}, - {"time": 1.0167, "angle": 16.05, "curve": 0.245, "c3": 0.711, "c4": 0.83}, {"time": 1.3333, "angle": -0.6} - ], + "@pivot-main": { "translate": [ - {"time": 0.2167, "curve": 0.25, "c3": 0.75}, {"time": 0.45, "x": 45.36, "y": -33.56, "curve": 0.25, "c3": 0.75}, {"time": 0.6667, "curve": 0.25, "c3": 0.75}, - {"time": 0.8833, "x": 45.36, "y": -33.56, "curve": 0.25, "c3": 0.75}, {"time": 1.3333} + {"time": 0.1, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.3, "x": -154.22, "curve": "stepped"}, {"time": 1.2167, "x": -154.22, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 1.4167} ] }, - "@body4": { - "rotate": [ - {"angle": 1.85, "curve": 0.375, "c2": 0.62, "c3": 0.716}, {"time": 0.0833, "curve": 0.25, "c3": 0.75}, {"time": 0.3167, "angle": -15.35, "curve": 0.25, "c3": 0.75}, - {"time": 0.5333, "angle": 7.12, "curve": 0.25, "c3": 0.75}, {"time": 0.75, "angle": 2.63, "curve": 0.25, "c3": 0.75}, - {"time": 0.9833, "angle": 14.26, "curve": 0.243, "c3": 0.68, "c4": 0.71}, {"time": 1.3333, "angle": 1.85} - ], + "leg-front-left-IK": {"translate": [{"time": 1.2167, "curve": 0.315, "c4": 0.8}, {"time": 1.3167, "x": -61.13, "curve": 0.315, "c4": 0.8}, {"time": 1.4167}]}, + "leg-front-right-IK": {"translate": [{"time": 1.2167, "curve": 0.315, "c4": 0.8}, {"time": 1.3167, "x": -61.13, "curve": 0.315, "c4": 0.8}, {"time": 1.4167}]}, + "@shadow": { "translate": [ - {"curve": 0.25, "c3": 0.75}, {"time": 0.2167, "x": -1.59, "y": 23.93, "curve": 0.25, "c3": 0.75}, {"time": 0.45, "x": 32.21, "y": -54.88, "curve": 0.25, "c3": 0.75}, - {"time": 0.6667, "x": 24.69, "y": -10.35, "curve": 0.25, "c3": 0.75}, {"time": 0.8833, "x": 12.84, "y": -10.83, "curve": 0.25, "c3": 0.75}, {"time": 1.3333} + {"time": 0.1, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.3, "x": -162.84, "curve": "stepped"}, {"time": 1.2167, "x": -162.84, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 1.4167} + ], + "scale": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1, "x": 1.1, "y": 1.1, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.2, "x": 0.92, "y": 0.92, "curve": 0.315, "c4": 0.8}, + {"time": 0.3, "x": 1.1, "y": 1.1, "curve": 0.317, "c3": 0.693}, {"time": 0.3833, "x": 1.06, "y": 1.06, "curve": 0.317, "c3": 0.693}, + {"time": 0.4667, "x": 1.1, "y": 1.1, "curve": 0.317, "c3": 0.693}, {"time": 0.55, "x": 1.06, "y": 1.06, "curve": 0.317, "c3": 0.693}, + {"time": 0.6333, "x": 1.1, "y": 1.1, "curve": 0.317, "c3": 0.693}, {"time": 0.7167, "x": 1.06, "y": 1.06, "curve": 0.317, "c3": 0.693}, + {"time": 0.8, "x": 1.1, "y": 1.1, "curve": 0.317, "c3": 0.693}, {"time": 0.8833, "x": 1.06, "y": 1.06, "curve": 0.317, "c3": 0.693}, + {"time": 0.9667, "x": 1.1, "y": 1.1, "curve": 0.317, "c3": 0.693}, {"time": 1.05, "x": 1.06, "y": 1.06, "curve": 0.317, "c3": 0.693}, + {"time": 1.1333, "x": 1.1, "y": 1.1, "curve": "stepped"}, {"time": 1.2167, "x": 1.1, "y": 1.1, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 1.3167, "x": 0.92, "y": 0.92, "curve": 0.315, "c4": 0.8}, {"time": 1.4167} ] }, - "@body6": { + "tail": { "rotate": [ - {"angle": 4.68, "curve": 0.348, "c2": 0.39, "c3": 0.683, "c4": 0.73}, {"time": 0.0667, "angle": 2.14, "curve": 0.369, "c2": 0.63, "c3": 0.706}, - {"time": 0.1333, "curve": 0.25, "c3": 0.75}, {"time": 0.35, "angle": -5.24, "curve": 0.25, "c3": 0.75}, {"time": 0.5667, "angle": 25.77, "curve": 0.25, "c3": 0.75}, - {"time": 0.8, "angle": 8.55, "curve": 0.25, "c3": 0.75}, {"time": 1.0167, "angle": 25.77, "curve": 0.242, "c3": 0.667, "c4": 0.67}, {"time": 1.3333, "angle": 4.68} - ], - "translate": [ - {"x": -3, "y": 1.52, "curve": 0.36, "c2": 0.64, "c3": 0.695}, {"time": 0.0667, "curve": 0.25, "c3": 0.75}, {"time": 0.2833, "x": 5.81, "y": -4.07, "curve": 0.25, "c3": 0.75}, - {"time": 0.5, "x": -70.52, "y": 35.61, "curve": 0.25, "c3": 0.75}, {"time": 0.7333, "x": 5.81, "y": -4.07, "curve": 0.25, "c3": 0.75}, - {"time": 0.95, "x": -70.52, "y": 35.61, "curve": 0.245, "c3": 0.711, "c4": 0.83}, {"time": 1.3333, "x": -3, "y": 1.52} + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1, "angle": 16.7, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.2, "angle": -16.65, "curve": 0.315, "c4": 0.8}, + {"time": 0.3, "angle": 17.85, "curve": 0.317, "c3": 0.693}, {"time": 0.4333, "angle": 15.5, "curve": 0.317, "c3": 0.693}, {"time": 0.5667, "angle": 17.85, "curve": 0.317, "c3": 0.693}, + {"time": 0.7, "angle": 15.5, "curve": 0.317, "c3": 0.693}, {"time": 0.8333, "angle": 17.85, "curve": 0.317, "c3": 0.693}, {"time": 0.95, "angle": 15.5, "curve": 0.317, "c3": 0.693}, + {"time": 1.0833, "angle": 17.85, "curve": 0.317, "c3": 0.693}, {"time": 1.2167, "angle": 15.5, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 1.3167, "angle": -14.65, "curve": 0.315, "c4": 0.8}, {"time": 1.4167} ] }, - "body-braid2": { + "back": { "rotate": [ - {"angle": 0.89, "curve": 0.36, "c2": 0.64, "c3": 0.695}, {"time": 0.05, "curve": 0.25, "c3": 0.75}, {"time": 0.2667, "angle": -1.43, "curve": 0.25, "c3": 0.75}, - {"time": 0.4833, "angle": 20.83, "curve": 0.25, "c3": 0.75}, {"time": 0.7167, "angle": -1.43, "curve": 0.25, "c3": 0.75}, - {"time": 0.9333, "angle": 20.83, "curve": 0.245, "c3": 0.711, "c4": 0.83}, {"time": 1.3333, "angle": 0.89} + {"time": 0.3, "curve": 0.306, "c3": 0.695}, {"time": 0.4833, "angle": 5.93, "curve": 0.306, "c3": 0.695}, {"time": 0.65, "curve": 0.306, "c3": 0.695}, + {"time": 0.8333, "angle": 5.93, "curve": 0.306, "c3": 0.695}, {"time": 1.0167, "curve": 0.306, "c3": 0.695}, {"time": 1.2167, "angle": 5.93, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 1.4167} + ] + } + } + }, + "3866597167": { + "slots": { + "eyes": { + "attachment": [ + {"time": 0.3333, "name": "eyes-shut"}, {"time": 0.4333, "name": "eyes-angry"}, {"time": 1.0833, "name": "eyes-shut"}, {"time": 1.1667, "name": "eyes-angry"}, + {"time": 1.2833, "name": "eyes"} ] }, - "body-braid4": { - "rotate": [ - {"angle": 11.92, "curve": 0.379, "c2": 0.52, "c3": 0.747}, {"time": 0.2, "curve": 0.25, "c3": 0.75}, {"time": 0.4167, "angle": -11.53, "curve": 0.25, "c3": 0.75}, - {"time": 0.65, "angle": 27.46, "curve": 0.25, "c3": 0.75}, {"time": 0.8667, "angle": -11.53, "curve": 0.25, "c3": 0.75}, - {"time": 1.0833, "angle": 27.46, "curve": 0.247, "c3": 0.63, "c4": 0.53}, {"time": 1.3333, "angle": 11.92} + "mouth": {"attachment": [{"time": 0.05, "name": "mouth-bite"}, {"time": 0.4333, "name": "mouth-open"}, {"time": 0.9167, "name": "mouth-bite"}, {"time": 1.2833, "name": "mouth"}]} + }, + "bones": { + "@pivot-back": { + "rotate": [{"curve": 0, "c2": 0.3, "c3": 0.546}, {"time": 0.0833, "angle": 6, "curve": 0, "c2": 0.2, "c3": 0.828}, {"time": 0.1667}], + "translate": [ + {"curve": 0, "c2": 0.3, "c3": 0.546}, {"time": 0.0833, "y": 5, "curve": 0.313, "c3": 0.699}, {"time": 0.1667, "y": 220, "curve": 0.617, "c4": 0.6}, {"time": 0.3333, "y": 10}, + {"time": 0.4167, "y": 5, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5833, "y": 420, "curve": 0.852, "c4": 0.1}, {"time": 0.9167}, + {"time": 1.0833, "y": -5, "curve": 0, "c2": 0.17, "c3": 0.461, "c4": 0.62}, {"time": 1.2167, "y": 130, "curve": 0.353, "c2": 0.54, "c3": 0.751}, {"time": 1.3333} ] }, - "body-braid3": { + "@leg-front-right": {"translate": [{"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "x": -2.46, "y": -27.89, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.1167}]}, + "@leg-front-left": {"translate": [{"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "x": -1.21, "y": -13.68, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.1167}]}, + "@pivot-center": { "rotate": [ - {"angle": 6.14, "curve": 0.379, "c2": 0.6, "c3": 0.724}, {"time": 0.1167, "curve": 0.25, "c3": 0.75}, {"time": 0.3333, "angle": -8.3, "curve": 0.25, "c3": 0.75}, - {"time": 0.55, "angle": 33.27, "curve": 0.25, "c3": 0.75}, {"time": 0.7833, "angle": -8.3, "curve": 0.25, "c3": 0.75}, - {"time": 1, "angle": 33.27, "curve": 0.242, "c3": 0.667, "c4": 0.67}, {"time": 1.3333, "angle": 6.14} + {"time": 0.1167, "curve": 0.313, "c3": 0.817}, {"time": 0.3333, "angle": 180, "curve": "stepped"}, {"time": 0.4167, "angle": 180, "curve": 0.313, "c3": 0.699}, + {"time": 0.6667, "angle": -1, "curve": 0.837, "c4": 0.2}, {"time": 0.9167, "angle": 178}, {"time": 1.0833, "angle": 180, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1.3333} ] }, - "@body2": { - "rotate": [ - {"angle": -8.07, "curve": 0.344, "c2": 0.37, "c3": 0.684, "c4": 0.72}, {"time": 0.0833, "angle": -3.45, "curve": 0.379, "c2": 0.6, "c3": 0.724}, {"time": 0.2, "curve": 0.25, "c3": 0.75}, - {"time": 0.4167, "angle": 7.45, "curve": 0.25, "c3": 0.75}, {"time": 0.65, "angle": 17.59, "curve": 0.25, "c3": 0.75}, {"time": 0.8667, "angle": 14.17, "curve": 0.25, "c3": 0.75}, - {"time": 1.0833, "angle": -2.86, "curve": 0.247, "c3": 0.63, "c4": 0.53}, {"time": 1.3333, "angle": -8.07} - ], + "leg-front-left-IK": { "translate": [ - {"x": 0.6, "y": -5.37, "curve": 0.375, "c2": 0.62, "c3": 0.716}, {"time": 0.0833, "curve": 0.25, "c3": 0.75}, {"time": 0.3167, "x": -0.08, "y": 1.15, "curve": 0.25, "c3": 0.75}, - {"time": 0.5333, "x": 4.59, "y": -41.28, "curve": 0.25, "c3": 0.75}, {"time": 0.75, "x": -0.08, "y": 1.15, "curve": 0.25, "c3": 0.75}, - {"time": 0.9833, "x": 4.59, "y": -41.28, "curve": 0.243, "c3": 0.68, "c4": 0.71}, {"time": 1.3333, "x": 0.6, "y": -5.37} + {"time": 0.0833, "x": 3.28, "y": 8.42, "curve": 0.344, "c3": 0.715, "c4": 0.45}, {"time": 0.1167, "x": 23.89, "y": 74.66, "curve": 0.589, "c2": 0.35, "c4": 0.75}, + {"time": 0.1667, "x": -100.7, "y": 242.98, "curve": 0.306, "c3": 0.695}, {"time": 0.25, "x": -233.21, "y": 406.49, "curve": 0.474, "c3": 0.714, "c4": 0.56}, + {"time": 0.3, "x": -153, "y": 482.64, "curve": 0.306, "c2": 0.39, "c3": 0.628, "c4": 0.74}, {"time": 0.3167, "x": -106.74, "y": 465.65, "curve": 0.287, "c2": 0.62, "c3": 0.612}, + {"time": 0.3333, "x": -79.92, "y": 385}, {"time": 0.4167, "x": -126.28, "y": 392.02, "curve": 0, "c2": 0.17, "c3": 0.45, "c4": 0.61}, + {"time": 0.5, "x": -212.54, "y": 584.25, "curve": 0.323, "c2": 0.4, "c3": 0.681, "c4": 0.77}, {"time": 0.55, "x": -233.91, "y": 520.55, "curve": 0.377, "c2": 0.62, "c3": 0.724}, + {"time": 0.5833, "x": -173.29, "y": 470.76}, {"time": 0.6667, "x": 19.48, "y": 419.84}, {"time": 0.75, "x": 31.74, "y": 414.89, "curve": 0.255, "c3": 0.659, "c4": 0.47}, + {"time": 0.8333, "x": 83.62, "y": 412.28, "curve": 0.41, "c2": 0.34, "c3": 0.774, "c4": 0.71}, + {"time": 0.8833, "x": 116.53, "y": 400.02, "curve": 0.427, "c2": 0.37, "c3": 0.767, "c4": 0.71}, {"time": 0.9, "x": 130.33, "y": 410.53, "curve": 0.649, "c2": 0.4, "c4": 0.74}, + {"time": 0.9167, "x": -78.08, "y": 379.36}, {"time": 1.0833, "x": -92.45, "y": 375.87, "curve": 0, "c2": 0.17, "c3": 0.45, "c4": 0.61}, + {"time": 1.15, "x": 127.37, "y": 350.17, "curve": 0.345, "c2": 0.53, "c3": 0.751}, {"time": 1.2167, "x": 133.62, "y": 244.55, "curve": 0, "c2": 0.1, "c3": 0.769}, {"time": 1.3333} ] }, - "body-braid6": { - "rotate": [ - {"angle": 14.96, "curve": 0.333, "c2": 0.33, "c3": 0.758}, {"time": 0.3333, "curve": 0.25, "c3": 0.75}, {"time": 0.55, "angle": -20.17, "curve": 0.25, "c3": 0.75}, - {"time": 0.7833, "angle": 18.35, "curve": 0.25, "c3": 0.75}, {"time": 1, "angle": -20.17, "curve": 0.25, "c3": 0.75}, - {"time": 1.2167, "angle": 18.35, "curve": 0.276, "c3": 0.621, "c4": 0.4}, {"time": 1.3333, "angle": 14.96} + "leg-front-right-IK": { + "translate": [ + {"time": 0.0833, "curve": 0.344, "c3": 0.715, "c4": 0.45}, {"time": 0.1167, "x": 41.2, "y": 75.27, "curve": 0.589, "c2": 0.35, "c4": 0.75}, + {"time": 0.1667, "x": -103.56, "y": 361.93, "curve": 0.313, "c3": 0.699}, {"time": 0.25, "x": 61.46, "y": 606.37, "curve": 0.474, "c3": 0.714, "c4": 0.56}, + {"time": 0.3, "x": 293.95, "y": 550.17, "curve": 0.306, "c2": 0.39, "c3": 0.628, "c4": 0.74}, {"time": 0.3167, "x": 340.35, "y": 482.44, "curve": 0.287, "c2": 0.62, "c3": 0.612}, + {"time": 0.3333, "x": 426.33, "y": 357.51}, {"time": 0.4167, "x": 340.52, "y": 373.76, "curve": 0, "c2": 0.17, "c3": 0.45, "c4": 0.61}, + {"time": 0.5, "x": 236.72, "y": 764.35, "curve": 0.323, "c2": 0.4, "c3": 0.681, "c4": 0.77}, {"time": 0.55, "x": -18.99, "y": 764.25, "curve": 0.377, "c2": 0.62, "c3": 0.724}, + {"time": 0.5833, "x": -86.72, "y": 646.17}, {"time": 0.6667, "x": 16.1, "y": 426.11}, {"time": 0.75, "x": 19.92, "y": 404.36, "curve": 0.255, "c3": 0.659, "c4": 0.47}, + {"time": 0.8333, "x": 90.31, "y": 343.4, "curve": 0.41, "c2": 0.34, "c3": 0.774, "c4": 0.71}, + {"time": 0.8833, "x": 202.62, "y": 235.31, "curve": 0.427, "c2": 0.37, "c3": 0.767, "c4": 0.71}, {"time": 0.9, "x": 290.37, "y": 171.88, "curve": 0.649, "c2": 0.4, "c4": 0.74}, + {"time": 0.9167, "x": 412.25, "y": 355.41}, {"time": 1.0833, "x": 345.67, "y": 359.46, "curve": 0, "c2": 0.17, "c3": 0.45, "c4": 0.61}, + {"time": 1.15, "x": 400.77, "y": 121.52, "curve": 0.345, "c2": 0.53, "c3": 0.751}, {"time": 1.2167, "x": 172.82, "y": 29.19, "curve": 0.306, "c4": 0.8}, {"time": 1.3333} ] }, - "body-braid5": { - "rotate": [ - {"angle": 10.97, "curve": 0.382, "c2": 0.57, "c3": 0.737}, {"time": 0.15, "curve": 0.25, "c3": 0.75}, {"time": 0.3833, "angle": -7.27, "curve": 0.25, "c3": 0.75}, - {"time": 0.6, "angle": 36.02, "curve": 0.25, "c3": 0.75}, {"time": 0.8167, "angle": -7.27, "curve": 0.25, "c3": 0.75}, - {"time": 1.05, "angle": 36.02, "curve": 0.244, "c3": 0.646, "c4": 0.59}, {"time": 1.3333, "angle": 10.97} + "leg-back-left-IK": { + "translate": [ + {"time": 0.0833, "x": 1.05, "y": 4.19, "curve": 0.344, "c3": 0.715, "c4": 0.45}, {"time": 0.1167, "x": 28.54, "y": 87, "curve": 0.589, "c2": 0.35, "c4": 0.75}, + {"time": 0.1667, "x": -101.24, "y": 155.59, "curve": 0.313, "c3": 0.699}, {"time": 0.25, "x": -446.46, "y": 186.66, "curve": 0.474, "c3": 0.714, "c4": 0.56}, + {"time": 0.3, "x": -509.64, "y": 364.51, "curve": 0.306, "c2": 0.39, "c3": 0.628, "c4": 0.74}, {"time": 0.3167, "x": -479.36, "y": 400.3, "curve": 0.287, "c2": 0.62, "c3": 0.612}, + {"time": 0.3333, "x": -473.08, "y": 343.1}, {"time": 0.4167, "x": -421.75, "y": 358.21, "curve": 0, "c2": 0.17, "c3": 0.45, "c4": 0.61}, + {"time": 0.5, "x": -502.28, "y": 409.04, "curve": 0.323, "c2": 0.4, "c3": 0.681, "c4": 0.77}, {"time": 0.55, "x": -357.82, "y": 309.09, "curve": 0.377, "c2": 0.62, "c3": 0.724}, + {"time": 0.5833, "x": -190.14, "y": 299.56}, {"time": 0.6667, "x": 28.01, "y": 424.39}, {"time": 0.75, "x": 15.55, "y": 419.34, "curve": 0.255, "c3": 0.659, "c4": 0.47}, + {"time": 0.8333, "x": 74.85, "y": 472.68, "curve": 0.41, "c2": 0.34, "c3": 0.774, "c4": 0.71}, + {"time": 0.8833, "x": 69.06, "y": 556.5, "curve": 0.427, "c2": 0.37, "c3": 0.767, "c4": 0.71}, {"time": 0.9, "x": 11.02, "y": 617.8, "curve": 0.649, "c2": 0.4, "c4": 0.74}, + {"time": 0.9167, "x": -407.64, "y": 352.01}, {"time": 1.0833, "x": -407.65, "y": 352.01, "curve": 0, "c2": 0.17, "c3": 0.45, "c4": 0.61}, + {"time": 1.15, "x": -101.44, "y": 524.93, "curve": 0.345, "c2": 0.53, "c3": 0.751}, {"time": 1.2167, "x": 63.56, "y": 378.89, "curve": 0, "c2": 0.1, "c3": 0.769}, {"time": 1.3333} ] }, - "body-braid": { + "tail": { "rotate": [ - {"angle": 1.86, "curve": 0.369, "c2": 0.63, "c3": 0.706}, {"time": 0.0667, "curve": 0.25, "c3": 0.75}, {"time": 0.2833, "angle": -2.68, "curve": 0.25, "c3": 0.75}, - {"time": 0.5167, "angle": 22.42, "curve": 0.25, "c3": 0.75}, {"time": 0.7333, "angle": -2.68, "curve": 0.25, "c3": 0.75}, - {"time": 0.95, "angle": 22.42, "curve": 0.244, "c3": 0.694, "c4": 0.77}, {"time": 1.3333, "angle": 1.86} + {"curve": 0, "c2": 0.3, "c3": 0.546}, {"time": 0.0833, "angle": 19.35, "curve": 0.313, "c3": 0.699}, {"time": 0.1667, "angle": -22.95, "curve": 0.617, "c4": 0.6}, + {"time": 0.3333, "angle": 22.22}, {"time": 0.4167, "angle": 24.08, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5833, "angle": -30.94, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.6667, "angle": 18.1, "curve": 0.313, "c3": 0.699}, {"time": 0.8333, "angle": -20.52, "curve": 0.464, "c4": 0.7}, {"time": 0.9167, "angle": 16.35}, + {"time": 1.0833, "angle": 20.35, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1.2167, "angle": -9.93, "curve": 0.161, "c3": 0.854}, {"time": 1.3333} ] }, - "@body5": { - "rotate": [ - {"time": 0.2167, "curve": 0.25, "c3": 0.75}, {"time": 0.45, "angle": 0.5, "curve": 0.25, "c3": 0.75}, {"time": 0.6667, "curve": 0.25, "c3": 0.75}, - {"time": 0.8833, "angle": 0.5, "curve": 0.25, "c3": 0.75}, {"time": 1.3333} + "@shadow": { + "scale": [ + {"curve": 0, "c2": 0.3, "c3": 0.546}, {"time": 0.0833, "x": 1.1, "y": 1.1, "curve": 0.313, "c3": 0.699}, {"time": 0.1667, "x": 0.92, "y": 0.92, "curve": 0.617, "c4": 0.6}, + {"time": 0.3333, "x": 1.12, "y": 1.12}, {"time": 0.4167, "x": 1.16, "y": 1.16, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5833, "x": 0.86, "y": 0.86, "curve": 0.752, "c4": 0.2}, + {"time": 0.9167, "x": 1.12, "y": 1.12}, {"time": 1.0833, "x": 1.16, "y": 1.16, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1.3333} ] - } + }, + "@pivot-main": {"scale": [{"time": 0.3333, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.4167, "y": 0.9, "curve": 0, "c2": 0.3, "c3": 0.546}, {"time": 0.5}]} }, - "events": [{"time": 0.4667, "name": "start-attack"}, {"time": 0.7, "name": "start-attack"}, {"time": 1.0167, "name": "start-attack"}] + "events": [{"time": 0.4333, "name": "jump"}, {"time": 0.8333, "name": "start-attack"}, {"time": 0.9167, "name": "hit"}] }, - "2283838223": { + "741810204": { "slots": { - "eyes": {"attachment": [{"time": 0.0167, "name": "eyes-angry"}, {"time": 0.75, "name": "eyes-shut"}, {"time": 0.8333, "name": "eyes"}]}, - "leg-back-left": {"attachment": [{"time": 0.35, "name": "sumo-leg-back-left-long"}, {"time": 0.5833, "name": "sumo-leg-back-left"}]}, - "mouth": {"attachment": [{"time": 0.0167, "name": "mouth-bite"}, {"time": 0.2667, "name": "mouth-open"}, {"time": 0.5833, "name": "mouth-bite"}, {"time": 0.8333, "name": "mouth"}]} + "eyes": {"attachment": [{"time": 0.8333, "name": "eyes-shut"}, {"time": 0.9167, "name": "eyes"}]}, + "mouth": {"attachment": [{"time": 0.05, "name": "mouth-bite"}, {"time": 0.3333, "name": "mouth-open"}, {"time": 0.75, "name": "mouth-bite"}, {"time": 0.9167, "name": "mouth"}]} }, "bones": { + "tail": { + "rotate": [ + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.25, "angle": 21.98, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3167, "angle": -15.58, "curve": "stepped"}, + {"time": 0.3333, "angle": -19.65, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.4, "angle": 20.35, "curve": "stepped"}, {"time": 0.4333, "angle": -19.65, "curve": "stepped"}, + {"time": 0.4667, "angle": -19.65, "curve": 0.461, "c3": 0.543}, {"time": 0.5333, "angle": 20.35, "curve": "stepped"}, {"time": 0.5667, "angle": -19.65, "curve": "stepped"}, + {"time": 0.6, "angle": -19.65, "curve": 0.461, "c3": 0.543}, {"time": 0.6667, "angle": 20.35, "curve": "stepped"}, {"time": 0.7, "angle": -19.65, "curve": "stepped"}, + {"time": 0.75, "angle": -11.84, "curve": 0.313, "c3": 0.699}, {"time": 0.8333, "angle": 16.95, "curve": 0.313, "c3": 0.699}, {"time": 1} + ] + }, "@pivot-back": { "rotate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "angle": -3.92, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "angle": 2.51, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.3333, "angle": -6, "curve": "stepped"}, {"time": 0.35, "angle": -16}, {"time": 0.5667, "angle": -16.5, "curve": "stepped"}, {"time": 0.5833, "curve": 0.313, "c3": 0.699}, - {"time": 0.75, "angle": 6, "curve": 0.313, "c3": 0.699}, {"time": 0.9167} + {"curve": 0, "c2": 0.4, "c3": 0.383}, {"time": 0.15, "angle": 4, "curve": "stepped"}, {"time": 0.25, "angle": 4, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.3167, "curve": "stepped"}, {"time": 0.3333, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.4, "angle": -2.45, "curve": "stepped"}, {"time": 0.4333, "curve": "stepped"}, + {"time": 0.4667, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.5333, "angle": -2.45, "curve": "stepped"}, {"time": 0.5667, "curve": "stepped"}, + {"time": 0.6, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.6667, "angle": -2.45, "curve": "stepped"}, {"time": 0.7, "curve": "stepped"}, {"time": 0.75, "curve": 0.313, "c3": 0.699}, + {"time": 0.8333, "angle": 6, "curve": 0.313, "c3": 0.699}, {"time": 1} ], "translate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "x": 71.93, "y": -12.95, "curve": "stepped"}, {"time": 0.25, "x": 71.93, "y": -12.95, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.3333, "x": -135.5, "curve": "stepped"}, {"time": 0.35, "x": -560.54, "y": 85.29}, {"time": 0.5667, "x": -562.89, "y": 81.57, "curve": "stepped"}, - {"time": 0.5833, "x": -151.24, "curve": 0.313, "c3": 0.699}, {"time": 0.75, "x": -151.24, "y": 4.06, "curve": 0.313, "c3": 0.699}, {"time": 0.9167} + {"curve": 0, "c2": 0.4, "c3": 0.383}, {"time": 0.25, "x": 25, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3167, "x": -135.5, "curve": "stepped"}, + {"time": 0.3333, "x": -560.54, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.4, "x": -560.54, "y": 9.3, "curve": "stepped"}, {"time": 0.4333, "x": -560.54, "curve": "stepped"}, + {"time": 0.4667, "x": -560.54, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.5333, "x": -560.54, "y": 9.3, "curve": "stepped"}, {"time": 0.5667, "x": -560.54, "curve": "stepped"}, + {"time": 0.6, "x": -560.54, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.6667, "x": -560.54, "y": 9.3, "curve": "stepped"}, {"time": 0.7, "x": -560.54, "curve": "stepped"}, + {"time": 0.75, "x": -151.24, "curve": 0.313, "c3": 0.699}, {"time": 0.8333, "x": -151.24, "y": 4.06, "curve": 0.313, "c3": 0.699}, {"time": 1} ], - "scale": [{"time": 0.3333, "curve": "stepped"}, {"time": 0.35, "x": -1, "curve": "stepped"}, {"time": 0.5667, "x": -1, "curve": "stepped"}, {"time": 0.5833}] + "scale": [{"time": 0.3167, "curve": "stepped"}, {"time": 0.3333, "x": -1, "curve": "stepped"}, {"time": 0.7, "x": -1, "curve": "stepped"}, {"time": 0.75}] }, - "@shadow": { + "@leg-front-right": { "translate": [ - {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 61.96, "curve": "stepped"}, {"time": 0.25, "x": 61.96, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.3333, "x": -143.36, "curve": "stepped"}, {"time": 0.35, "x": -143.36}, {"time": 0.5667, "x": -157.56, "curve": "stepped"}, {"time": 0.5833, "x": -161.35, "curve": "stepped"}, - {"time": 0.75, "x": -161.35, "curve": 0.313, "c3": 0.699}, {"time": 0.9167} - ], - "scale": [ - {"time": 0.0833, "curve": 0, "c2": 0.26, "c3": 0.369, "c4": 0.62}, {"time": 0.25, "x": 1.06, "y": 1.06, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "curve": "stepped"}, - {"time": 0.35}, {"time": 0.5667, "x": 1.08, "y": 1.08, "curve": "stepped"}, {"time": 0.5833, "curve": 0.313, "c3": 0.699}, - {"time": 0.75, "x": 1.08, "y": 1.08, "curve": 0.313, "c3": 0.699}, {"time": 0.9167} + {"curve": 0, "c2": 0.4, "c3": 0.383}, {"time": 0.25, "x": -1.86, "y": -9.26, "curve": "stepped"}, {"time": 0.3167, "x": -1.86, "y": -9.26, "curve": "stepped"}, + {"time": 0.3333, "x": -2.24, "y": 13.67, "curve": "stepped"}, {"time": 0.75, "x": -2.24, "y": 13.67, "curve": 0.313, "c3": 0.699}, + {"time": 0.8333, "x": -1.86, "y": -9.26, "curve": 0.313, "c3": 0.699}, {"time": 1} ] }, - "leg-back-left-IK": { + "@leg-front-left": { "translate": [ - {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.1333, "x": 80.9, "curve": 0.161, "c3": 0.854}, {"time": 0.25, "x": 49.4, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.3333, "x": -113.37, "y": 35.8, "curve": "stepped"}, {"time": 0.35, "x": -685.28, "y": 163.59}, {"time": 0.5667, "x": -686.48, "y": 176.51, "curve": "stepped"}, - {"time": 0.5833, "x": -134.74, "curve": "stepped"}, {"time": 0.75, "x": -134.74, "curve": 0.313, "c3": 0.699}, {"time": 0.9167} + {"curve": 0, "c2": 0.4, "c3": 0.383}, {"time": 0.25, "x": -1, "y": -5.53, "curve": "stepped"}, {"time": 0.3167, "x": -1, "y": -5.53, "curve": "stepped"}, + {"time": 0.3333, "x": -1.12, "y": 1.52, "curve": "stepped"}, {"time": 0.75, "x": -1.12, "y": 1.52, "curve": 0.313, "c3": 0.699}, + {"time": 0.8333, "x": -1, "y": -5.53, "curve": 0.313, "c3": 0.699}, {"time": 1} ] }, - "leg-front-right-IK": { + "@shadow": { "translate": [ - {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 30.89, "y": 11.74, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "x": 42.9, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.3333, "x": -172.87, "y": 28.32, "curve": "stepped"}, {"time": 0.35, "x": 425.15, "curve": "stepped"}, {"time": 0.5667, "x": 425.15, "curve": "stepped"}, - {"time": 0.5833, "x": -180.48, "curve": "stepped"}, {"time": 0.75, "x": -180.48, "curve": 0.313, "c3": 0.699}, {"time": 0.9167} + {"time": 0.25, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3167, "x": -143.36, "curve": "stepped"}, {"time": 0.7, "x": -143.36, "curve": "stepped"}, + {"time": 0.75, "x": -161.35, "curve": "stepped"}, {"time": 0.8333, "x": -161.35, "curve": 0.313, "c3": 0.699}, {"time": 1} + ], + "scale": [ + {"curve": 0, "c2": 0.4, "c3": 0.383}, {"time": 0.25, "x": 1.08, "y": 1.08, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3167, "curve": "stepped"}, + {"time": 0.3333, "x": 1.02, "y": 1.02, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.4, "x": 0.96, "y": 0.96, "curve": "stepped"}, + {"time": 0.4333, "x": 1.02, "y": 1.02, "curve": "stepped"}, {"time": 0.4667, "x": 1.02, "y": 1.02, "curve": 0, "c2": 0.3, "c3": 0.544}, + {"time": 0.5333, "x": 0.96, "y": 0.96, "curve": "stepped"}, {"time": 0.5667, "x": 1.02, "y": 1.02, "curve": "stepped"}, + {"time": 0.6, "x": 1.02, "y": 1.02, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.6667, "x": 0.96, "y": 0.96, "curve": "stepped"}, + {"time": 0.7, "x": 1.02, "y": 1.02, "curve": "stepped"}, {"time": 0.75, "curve": 0.313, "c3": 0.699}, {"time": 0.8333, "x": 1.08, "y": 1.08, "curve": 0.313, "c3": 0.699}, {"time": 1} ] }, "leg-front-left-IK": { "translate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "x": 8.25, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "x": 42.9, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.3333, "x": -192.09, "y": 31.17, "curve": "stepped"}, {"time": 0.35, "x": -197.17}, {"time": 0.5667, "x": -192.36, "y": 4.81, "curve": "stepped"}, - {"time": 0.5833, "x": -180.48, "curve": "stepped"}, {"time": 0.75, "x": -180.48, "curve": 0.313, "c3": 0.699}, {"time": 0.9167} + {"time": 0.25, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3167, "x": -192.09, "y": 31.17, "curve": "stepped"}, + {"time": 0.3333, "x": -219.56, "y": 3.98, "curve": 0.277, "c3": 0.849, "c4": 0.67}, {"time": 0.65, "x": -219.56, "y": 3.98, "curve": 0.641, "c2": 0.41, "c4": 0.76}, + {"time": 0.7, "x": -226.38, "y": 3.98, "curve": "stepped"}, {"time": 0.75, "x": -157.76, "curve": "stepped"}, {"time": 0.8333, "x": -157.76, "curve": 0.306, "c3": 0.695}, {"time": 1} ] }, - "@leg-front-left": { + "leg-front-right-IK": { "translate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "x": -4.8, "y": 21.17, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.25, "x": -0.53, "y": 0.11, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "x": -1, "y": -5.53, "curve": "stepped"}, - {"time": 0.35, "x": 2.26, "y": 14.19, "curve": "stepped"}, {"time": 0.5667, "x": 2.26, "y": 14.19, "curve": "stepped"}, - {"time": 0.5833, "x": -1.12, "y": 1.52, "curve": 0.313, "c3": 0.699}, {"time": 0.75, "x": -1, "y": -5.53, "curve": 0.313, "c3": 0.699}, {"time": 0.9167} + {"time": 0.25, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3167, "x": -172.87, "y": 28.32, "curve": "stepped"}, {"time": 0.3333, "x": 295.89, "y": 8.85, "curve": "stepped"}, + {"time": 0.7, "x": 295.89, "y": 8.85, "curve": "stepped"}, {"time": 0.75, "x": -180.48, "curve": "stepped"}, {"time": 0.8333, "x": -180.48, "curve": 0.313, "c3": 0.699}, {"time": 1} ] }, - "@leg-front-right": { + "leg-back-left-IK": { "translate": [ - {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 4.31, "y": 11.86, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.25, "x": -10.19, "y": -4.67, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "x": -1.86, "y": -9.26, "curve": "stepped"}, - {"time": 0.35, "x": 11.1, "y": -20.22, "curve": "stepped"}, {"time": 0.5667, "x": 11.1, "y": -20.22, "curve": "stepped"}, - {"time": 0.5833, "x": -2.24, "y": 13.67, "curve": 0.313, "c3": 0.699}, {"time": 0.75, "x": -1.86, "y": -9.26, "curve": 0.313, "c3": 0.699}, {"time": 0.9167} + {"time": 0.25, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3167, "x": -96.78, "y": 27.51, "curve": "stepped"}, {"time": 0.3333, "x": -542.14, "curve": "stepped"}, + {"time": 0.7, "x": -542.14, "curve": "stepped"}, {"time": 0.75, "x": -134.74, "curve": "stepped"}, {"time": 0.8333, "x": -134.74, "curve": 0.313, "c3": 0.699}, {"time": 1} ] }, "@leg-back-left": { + "translate": [{"time": 0.3167, "curve": "stepped"}, {"time": 0.3333, "x": -0.06, "y": 3.33, "curve": "stepped"}, {"time": 0.7, "x": -0.06, "y": 3.33, "curve": "stepped"}, {"time": 0.75}] + }, + "@pivot-main": {"translate": [{"time": 0.8333, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.9167, "y": 31, "curve": 0.315, "c4": 0.8}, {"time": 1}]} + }, + "events": [{"time": 0.3167, "name": "start-attack"}, {"time": 0.4333, "name": "hit"}, {"time": 0.5667, "name": "hit"}, {"time": 0.7, "name": "hit"}] + }, + "2809739953": { + "slots": { + "eyes": {"attachment": [{"time": 0.85, "name": "eyes-shut"}, {"time": 0.9333, "name": "eyes"}]}, + "mouth": {"attachment": [{"time": 0.0167, "name": "mouth-bite"}, {"time": 0.1833, "name": "mouth-open"}, {"time": 0.5, "name": "mouth-bite"}, {"time": 0.9333, "name": "mouth"}]} + }, + "bones": { + "@pivot-back": { + "rotate": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "angle": -3.92, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "angle": 2.51, "curve": 0, "c2": 0.2, "c3": 0.858}, + {"time": 0.25, "angle": -6, "curve": "stepped"}, {"time": 0.7167, "angle": -6, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.8333, "angle": 6, "curve": 0.313, "c3": 0.699}, {"time": 1} + ], "translate": [ - {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.1333, "x": 0.67, "y": -7.85, "curve": 0.161, "c3": 0.854}, {"time": 0.25, "x": 0.53, "y": -13.09, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.3333, "curve": "stepped"}, {"time": 0.35, "x": 10.26, "y": 0.56, "curve": "stepped"}, {"time": 0.5667, "x": 10.26, "y": 0.56, "curve": "stepped"}, {"time": 0.5833} + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "x": 71.93, "y": -12.95, "curve": "stepped"}, {"time": 0.1667, "x": 71.93, "y": -12.95, "curve": 0, "c2": 0.2, "c3": 0.858}, + {"time": 0.25, "x": -145.48, "y": 99.8, "curve": 0, "c2": 0.3, "c3": 0.698}, {"time": 0.4167, "x": -145, "y": 149.7, "curve": 1, "c4": 0}, {"time": 0.5, "x": -145}, + {"time": 0.6667, "x": -145, "y": 2.5, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.7167, "y": 48.98, "curve": 0.315, "c4": 0.8}, + {"time": 0.8333, "y": -3.33, "curve": 0.313, "c3": 0.699}, {"time": 1} ] }, - "tail": { - "rotate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "angle": 15.61, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "angle": 20.44, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.3333, "angle": -15.58, "curve": "stepped"}, {"time": 0.35, "angle": 30.35}, {"time": 0.5667, "angle": 35.35, "curve": "stepped"}, - {"time": 0.5833, "angle": -11.84, "curve": 0.313, "c3": 0.699}, {"time": 0.75, "angle": 16.95, "curve": 0.313, "c3": 0.699}, {"time": 0.9167} + "@leg-front-left": { + "translate": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "x": -2.77, "y": -2.64, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.1667, "x": -0.53, "y": 0.11, "curve": 0, "c2": 0.2, "c3": 0.858}, {"time": 0.25, "x": -1, "y": -5.53, "curve": "stepped"}, + {"time": 0.7167, "x": -1, "y": -5.53, "curve": 0.464, "c4": 0.7}, {"time": 0.8333, "x": -2.17, "y": -17.49, "curve": 0.313, "c3": 0.699}, {"time": 1} ] }, - "@pivot-main": { - "translate": [{"time": 0.75, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.8333, "y": 31, "curve": 0.315, "c4": 0.8}, {"time": 0.9167}], - "scale": [{"time": 0.5667, "curve": "stepped"}, {"time": 0.75, "y": 0.98, "curve": 0.154, "c4": 0.9}, {"time": 0.9167}] + "@leg-back-left": { + "translate": [ + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 0.67, "y": -7.85, "curve": 0.161, "c3": 0.854}, {"time": 0.1667, "x": 0.53, "y": -13.09, "curve": 0, "c2": 0.2, "c3": 0.858}, + {"time": 0.25, "curve": "stepped"}, {"time": 0.7167, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.8333, "x": -0.5, "y": -5.23, "curve": 0.313, "c3": 0.699}, {"time": 1} + ] }, - "@body3": { - "rotate": [ - {"angle": -1.06, "curve": 0.339, "c2": 0.35, "c3": 0.673, "c4": 0.69}, {"time": 0.0167, "angle": -0.76, "curve": 0.38, "c2": 0.59, "c3": 0.727}, - {"time": 0.0833, "curve": 0.25, "c3": 0.75}, {"time": 0.2, "angle": -3.77, "curve": 0.25, "c3": 0.75}, {"time": 0.4667, "angle": -14, "curve": 0.25, "c3": 0.75}, - {"time": 0.75, "angle": -3.77, "curve": 0.243, "c3": 0.649, "c4": 0.6}, {"time": 0.9167, "angle": -1.06} + "@shadow": { + "translate": [ + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 61.96, "curve": "stepped"}, {"time": 0.1667, "x": 61.96, "curve": 0, "c2": 0.2, "c3": 0.858}, + {"time": 0.25, "x": -143.36, "curve": 0, "c2": 0.3, "c3": 0.698}, {"time": 0.4167, "x": -154.48, "curve": "stepped"}, {"time": 0.6667, "x": -154.48, "curve": 0, "c2": 0.3, "c3": 0.544}, + {"time": 0.7167, "x": -9.48, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.8333} ], - "translate": [{"time": 0.1333, "curve": 0.25, "c3": 0.75}, {"time": 0.4, "x": 45.36, "y": -33.56, "curve": 0.25, "c3": 0.75}, {"time": 0.6833}] + "scale": [ + {"time": 0.0833, "curve": 0, "c2": 0.26, "c3": 0.369, "c4": 0.62}, {"time": 0.1667, "x": 1.06, "y": 1.06, "curve": 0, "c2": 0.2, "c3": 0.858}, + {"time": 0.25, "curve": 0, "c2": 0.3, "c3": 0.698}, {"time": 0.4167, "x": 0.86, "y": 0.86}, {"time": 0.5, "x": 1.16, "y": 1.16}, + {"time": 0.6667, "x": 1.18, "y": 1.18, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.7167, "x": 1.02, "y": 1.02, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.8333, "x": 1.1, "y": 1.1, "curve": 0.313, "c3": 0.699}, {"time": 1} + ] }, - "@body4": { - "rotate": [ - {"angle": -1.07, "curve": 0.366, "c2": 0.63, "c3": 0.703}, {"time": 0.0333, "curve": 0.25, "c3": 0.75}, {"time": 0.15, "angle": -15.35, "curve": 0.25, "c3": 0.75}, - {"time": 0.4167, "angle": 14.26, "curve": 0.25, "c3": 0.75}, {"time": 0.7, "angle": -15.35, "curve": 0.244, "c3": 0.7, "c4": 0.79}, {"time": 0.9167, "angle": -1.07} - ], + "leg-front-right-IK": { "translate": [ - {"curve": 0.25, "c3": 0.75}, {"time": 0.1167, "x": -1.59, "y": 23.93, "curve": 0.25, "c3": 0.75}, {"time": 0.3833, "x": 6.55, "y": -29.78, "curve": 0.25, "c3": 0.75}, - {"time": 0.6667, "x": -1.59, "y": 23.93, "curve": 0.25, "c3": 0.75}, {"time": 0.9167} + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 30.89, "y": 11.74, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": 42.9, "curve": 0, "c2": 0.2, "c3": 0.858}, + {"time": 0.25, "x": -172.87, "y": 28.32, "curve": 0, "c2": 0.3, "c3": 0.698}, {"time": 0.4667, "x": 261.69, "y": 187.13, "curve": 1, "c4": 0.1}, {"time": 0.5, "x": 166.41, "y": 465.39}, + {"time": 0.6667, "x": 101.69, "y": 451.97, "curve": "stepped"}, {"time": 0.7, "x": -101.81, "y": 172.32, "curve": "stepped"}, {"time": 0.7167} ] }, - "@body6": { - "rotate": [ - {"angle": -1.91, "curve": 0.349, "c2": 0.39, "c3": 0.689, "c4": 0.74}, {"time": 0.05, "angle": -0.68, "curve": 0.375, "c2": 0.62, "c3": 0.716}, {"time": 0.1, "curve": 0.25, "c3": 0.75}, - {"time": 0.2167, "angle": -5.24, "curve": 0.25, "c3": 0.75}, {"time": 0.4833, "angle": 25.77, "curve": 0.25, "c3": 0.75}, - {"time": 0.7667, "angle": -5.24, "curve": 0.245, "c3": 0.637, "c4": 0.56}, {"time": 0.9167, "angle": -1.91} - ], + "leg-back-left-IK": { "translate": [ - {"x": 0.76, "y": -0.53, "curve": 0.375, "c2": 0.62, "c3": 0.716}, {"time": 0.05, "curve": 0.25, "c3": 0.75}, {"time": 0.1667, "x": 5.81, "y": -4.07, "curve": 0.25, "c3": 0.75}, - {"time": 0.4333, "x": -70.52, "y": 35.61, "curve": 0.25, "c3": 0.75}, {"time": 0.7167, "x": 5.81, "y": -4.07, "curve": 0.243, "c3": 0.68, "c4": 0.71}, - {"time": 0.9167, "x": 0.76, "y": -0.53} + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 80.9, "curve": 0.161, "c3": 0.854}, {"time": 0.1667, "x": 72.25, "curve": 0, "c2": 0.2, "c3": 0.858}, + {"time": 0.25, "x": -96.78, "y": 27.51, "curve": 0, "c2": 0.3, "c3": 0.698}, {"time": 0.4667, "x": -250.56, "y": 568.36, "curve": 1, "c4": 0.1}, {"time": 0.5, "x": -654.65, "y": 234.55}, + {"time": 0.6667, "x": -665.01, "y": 210.09, "curve": "stepped"}, {"time": 0.7, "x": -61.52, "y": -3.55, "curve": "stepped"}, {"time": 0.7167} ] }, - "body-braid2": { - "rotate": [ - {"curve": 0.25, "c3": 0.75}, {"time": 0.1167, "angle": -1.43, "curve": 0.25, "c3": 0.75}, {"time": 0.3833, "angle": 20.83, "curve": 0.25, "c3": 0.75}, - {"time": 0.6667, "angle": -1.43, "curve": 0.25, "c3": 0.75}, {"time": 0.9167} + "@leg-front-right": { + "translate": [ + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 4.31, "y": 11.86, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.1667, "x": -10.19, "y": -4.67, "curve": 0, "c2": 0.2, "c3": 0.858}, {"time": 0.25, "curve": "stepped"}, {"time": 0.7167, "curve": 0.464, "c4": 0.7}, + {"time": 0.8333, "x": -4.16, "y": -33.18, "curve": 0.313, "c3": 0.699}, {"time": 1} ] }, - "body-braid4": { - "rotate": [ - {"angle": -5.26, "curve": 0.378, "c2": 0.52, "c3": 0.748}, {"time": 0.1167, "curve": 0.25, "c3": 0.75}, {"time": 0.2333, "angle": -11.53, "curve": 0.25, "c3": 0.75}, - {"time": 0.5, "angle": 27.46, "curve": 0.25, "c3": 0.75}, {"time": 0.7833, "angle": -11.53, "curve": 0.248, "c3": 0.628, "c4": 0.52}, {"time": 0.9167, "angle": -5.26} - ] - }, - "body-braid3": { - "rotate": [ - {"angle": -1.08, "curve": 0.375, "c2": 0.62, "c3": 0.716}, {"time": 0.05, "curve": 0.25, "c3": 0.75}, {"time": 0.1667, "angle": -8.3, "curve": 0.25, "c3": 0.75}, - {"time": 0.4333, "angle": 33.27, "curve": 0.25, "c3": 0.75}, {"time": 0.7167, "angle": -8.3, "curve": 0.243, "c3": 0.68, "c4": 0.71}, {"time": 0.9167, "angle": -1.08} - ] - }, - "@body2": { - "rotate": [ - {"angle": 2.08, "curve": 0.356, "c2": 0.42, "c3": 0.696, "c4": 0.78}, {"time": 0.05, "angle": 0.52, "curve": 0.366, "c2": 0.63, "c3": 0.703}, {"time": 0.0833, "curve": 0.25, "c3": 0.75}, - {"time": 0.2, "angle": 7.45, "curve": 0.25, "c3": 0.75}, {"time": 0.4667, "angle": -18.73, "curve": 0.25, "c3": 0.75}, - {"time": 0.75, "angle": 7.45, "curve": 0.243, "c3": 0.649, "c4": 0.6}, {"time": 0.9167, "angle": 2.08} - ], + "leg-front-left-IK": { "translate": [ - {"x": -0.01, "y": 0.15, "curve": 0.375, "c2": 0.62, "c3": 0.716}, {"time": 0.05, "curve": 0.25, "c3": 0.75}, {"time": 0.1667, "x": -0.08, "y": 1.15, "curve": 0.25, "c3": 0.75}, - {"time": 0.4333, "x": 4.59, "y": -41.28, "curve": 0.25, "c3": 0.75}, {"time": 0.7167, "x": -0.08, "y": 1.15, "curve": 0.243, "c3": 0.68, "c4": 0.71}, - {"time": 0.9167, "x": -0.01, "y": 0.15} - ] - }, - "body-braid6": { - "rotate": [ - {"angle": -17.55, "curve": 0.32, "c2": 0.29, "c3": 0.757}, {"time": 0.2, "curve": 0.25, "c3": 0.75}, {"time": 0.3167, "angle": -20.17, "curve": 0.25, "c3": 0.75}, - {"time": 0.5833, "angle": 18.35, "curve": 0.25, "c3": 0.75}, {"time": 0.8667, "angle": -20.17, "curve": 0.284, "c3": 0.625, "c4": 0.38}, {"time": 0.9167, "angle": -17.55} + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "x": 42.22, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": 42.9, "curve": 0, "c2": 0.2, "c3": 0.858}, + {"time": 0.25, "x": -192.09, "y": 31.17, "curve": 0, "c2": 0.3, "c3": 0.698}, {"time": 0.4667, "x": -33.07, "y": 448.19, "curve": 1, "c4": 0.1}, {"time": 0.5, "x": -325.8, "y": 359.06}, + {"time": 0.6667, "x": -307.09, "y": 359.93, "curve": "stepped"}, {"time": 0.7, "x": -83.89, "y": 65.11, "curve": "stepped"}, {"time": 0.7167} ] }, - "body-braid5": { + "tail": { "rotate": [ - {"angle": -2.68, "curve": 0.381, "c2": 0.55, "c3": 0.742}, {"time": 0.1, "curve": 0.25, "c3": 0.75}, {"time": 0.2167, "angle": -7.27, "curve": 0.25, "c3": 0.75}, - {"time": 0.4833, "angle": 36.02, "curve": 0.25, "c3": 0.75}, {"time": 0.7667, "angle": -7.27, "curve": 0.245, "c3": 0.637, "c4": 0.56}, {"time": 0.9167, "angle": -2.68} + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "angle": 15.61, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "angle": 20.44, "curve": 0, "c2": 0.2, "c3": 0.858}, + {"time": 0.25, "angle": -14.65, "curve": 0.313, "c3": 0.699}, {"time": 0.4667, "angle": -49.65, "curve": 1, "c4": 0.1}, {"time": 0.5, "angle": -2.15}, + {"time": 0.6667, "angle": -1.85, "curve": 0, "c2": 0.4, "c3": 0.383}, {"time": 0.8333, "angle": 21.05, "curve": 0.313, "c3": 0.699}, {"time": 1} ] }, - "body-braid": { + "@pivot-center": { "rotate": [ - {"angle": -0.19, "curve": 0.366, "c2": 0.63, "c3": 0.703}, {"time": 0.0333, "curve": 0.25, "c3": 0.75}, {"time": 0.15, "angle": -2.68, "curve": 0.25, "c3": 0.75}, - {"time": 0.4167, "angle": 22.42, "curve": 0.25, "c3": 0.75}, {"time": 0.7, "angle": -2.68, "curve": 0.244, "c3": 0.7, "c4": 0.79}, {"time": 0.9167, "angle": -0.19} + {"time": 0.25, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.4667, "angle": 112.05, "curve": 1, "c4": 0.1}, {"time": 0.5, "angle": -146.9}, + {"time": 0.6667, "angle": -145.45, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.7167} ] - }, - "@body5": {"rotate": [{"time": 0.1167, "curve": 0.25, "c3": 0.75}, {"time": 0.3833, "angle": 0.5, "curve": 0.25, "c3": 0.75}, {"time": 0.6667}]} + } }, - "events": [{"time": 0.35, "name": "start-attack"}] + "events": [{"time": 0.4167, "name": "start-attack"}, {"time": 0.5, "name": "hit"}] }, - "1684684533": { + "2641486435": { "slots": { - "eyes": {"attachment": [{"time": 0.1333, "name": "eyes-shut"}, {"time": 0.2, "name": "eyes"}, {"time": 0.4667, "name": "eyes-shut"}, {"time": 0.5833, "name": "eyes"}]}, - "mouth": { - "attachment": [ - {"time": 0.0833, "name": "mouth-open"}, {"time": 0.1667, "name": "mouth-bite"}, {"time": 0.3333, "name": "mouth"}, {"time": 0.4167, "name": "mouth-open"}, - {"time": 0.5, "name": "mouth-bite"}, {"time": 0.5833, "name": "mouth"} - ] - } + "eyes": {"attachment": [{"time": 0.9167, "name": "eyes"}]}, + "mouth": {"attachment": [{"time": 0.0167, "name": "mouth-bite"}, {"time": 0.1833, "name": "mouth-open"}, {"time": 0.5, "name": "mouth-bite"}, {"time": 0.9167, "name": "mouth"}]} }, "bones": { - "@mouth": { - "translate": [ - {"time": 0.1667, "curve": 0, "c2": 0.1, "c3": 0.479, "c4": 0.56}, {"time": 0.3333, "x": -0.56, "y": 3.4, "curve": 0.408, "c2": 0.51, "c3": 0.853}, {"time": 0.5, "x": 0.04, "y": 0.05} - ] - }, "@pivot-back": { "rotate": [ - {"curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.0667, "angle": -0.59, "curve": 0.075, "c4": 0.95}, {"time": 0.1333, "angle": 1.15, "curve": 0, "c2": 0.1, "c3": 0.85}, - {"time": 0.2167, "curve": "stepped"}, {"time": 0.3333, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.4, "angle": -0.59, "curve": 0.075, "c4": 0.95}, - {"time": 0.4667, "angle": 1.15, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.5833} + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "angle": -3.92, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "angle": 2.51, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.25, "angle": -6, "curve": "stepped"}, {"time": 0.2667, "angle": -20, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.4833, "angle": -22, "curve": "stepped"}, + {"time": 0.5, "angle": 10}, {"time": 0.6667, "angle": 12, "curve": "stepped"}, {"time": 0.7, "angle": 4, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.8333, "angle": 6, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1} ], "translate": [ - {"y": 0.06, "curve": 0.387, "c3": 0.314}, {"time": 0.1333, "x": -13.8, "y": 0.06, "curve": 0.387, "c3": 0.314}, {"time": 0.2167, "x": 0.02, "y": 0.06, "curve": "stepped"}, - {"time": 0.3333, "x": 0.02, "y": 0.06, "curve": 0.387, "c3": 0.314}, {"time": 0.4667, "x": -13.8, "y": 0.06, "curve": 0.387, "c3": 0.314}, {"time": 0.5833, "x": 0.02, "y": 0.06} + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "x": 71.93, "y": -12.95, "curve": "stepped"}, {"time": 0.1667, "x": 71.93, "y": -12.95, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.25, "x": -135.5, "curve": "stepped"}, {"time": 0.2667, "x": -551.77, "y": 110, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.4833, "x": -551.77, "y": 120.52, "curve": "stepped"}, {"time": 0.5, "x": -565, "y": -35}, {"time": 0.6667, "x": -565, "y": -40, "curve": "stepped"}, + {"time": 0.7, "x": -135.5, "y": 5, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.8333, "x": -135.5, "y": 10, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1} + ], + "scale": [{"time": 0.25, "curve": "stepped"}, {"time": 0.2667, "x": -1, "curve": "stepped"}, {"time": 0.6667, "x": -1, "curve": "stepped"}, {"time": 0.7}] + }, + "leg-front-right-IK": { + "translate": [ + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 30.89, "y": 11.74, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": 42.9, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.25, "x": -172.87, "y": 28.32, "curve": "stepped"}, {"time": 0.2667, "x": 224.47, "y": -9.31, "curve": "stepped"}, + {"time": 0.4833, "x": 224.47, "y": -9.31, "curve": "stepped"}, {"time": 0.5, "x": 219.47, "curve": "stepped"}, {"time": 0.6667, "x": 219.47, "curve": "stepped"}, + {"time": 0.7, "x": -152.3, "curve": "stepped"}, {"time": 0.8333, "x": -152.3, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1} ] }, - "@leg-front-right": { - "rotate": [ - {"curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.0667, "angle": 10.98, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.2167, "angle": -8.78, "curve": 0.161, "c3": 0.854}, - {"time": 0.3333, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.4, "angle": 10.98, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.55, "angle": -8.78, "curve": 0.161, "c3": 0.854}, - {"time": 0.6667, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.8333, "angle": -9.85, "curve": 0.161, "c3": 0.854}, {"time": 0.9833, "angle": -6.21}, - {"time": 1.15, "angle": 2.69, "curve": 0.075, "c4": 0.95}, {"time": 1.3333, "angle": -30.3} + "leg-front-left-IK": { + "translate": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "x": 43.18, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": 42.9, "y": -3.49, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.25, "x": -192.09, "y": 31.17, "curve": "stepped"}, {"time": 0.2667, "x": -277.01, "y": 66.37, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.4833, "x": -274.01, "y": 75.85, "curve": "stepped"}, {"time": 0.5, "x": -170.67, "curve": "stepped"}, {"time": 0.6667, "x": -170.67, "curve": "stepped"}, + {"time": 0.7, "x": -151.12, "curve": "stepped"}, {"time": 0.8333, "x": -151.12, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1} ] }, "@leg-front-left": { - "rotate": [ - {"curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.0667, "angle": 10.98, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.2167, "angle": -8.78, "curve": 0.161, "c3": 0.854}, - {"time": 0.3333, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.4, "angle": 10.98, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.55, "angle": -8.78, "curve": 0.161, "c3": 0.854}, - {"time": 0.6667, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.8333, "angle": -9.84, "curve": 0.161, "c3": 0.854}, {"time": 0.9833, "angle": -6.21}, - {"time": 1.15, "angle": 2.69, "curve": 0.075, "c4": 0.95}, {"time": 1.3333, "angle": 20.14} + "translate": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "x": -2.8, "y": -2.2, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.1667, "x": -0.62, "y": -3.38, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "x": -1, "y": -5.53, "curve": "stepped"}, + {"time": 0.2667, "x": 4, "y": -0.66, "curve": "stepped"}, {"time": 0.4833, "x": 4, "y": -0.66, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.5, "x": 4.53, "y": 2.49, "curve": "stepped"}, {"time": 0.6667, "x": 4.53, "y": 2.49, "curve": "stepped"}, + {"time": 0.7, "x": -1, "y": -5.53, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.8333, "x": -0.91, "y": -4.54, "curve": 0.315, "c4": 0.8}, {"time": 1} ] }, "@leg-back-left": { - "rotate": [ - {"curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.0667, "angle": 10.98, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.2167, "angle": -8.78, "curve": 0.161, "c3": 0.854}, - {"time": 0.3333, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.4, "angle": 10.98, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.55, "angle": -8.78, "curve": 0.161, "c3": 0.854}, - {"time": 0.6667, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.8333, "angle": 5.93, "curve": 0.161, "c3": 0.854}, {"time": 0.9833}, - {"time": 1.15, "angle": -4.97, "curve": 0.075, "c4": 0.95}, {"time": 1.3333, "angle": -11.75} - ] - }, - "@pivot-main": {"translate": [{"curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.0667, "y": 7.88, "curve": 0.078, "c4": 0.94}, {"time": 0.1333}]}, - "@pivot-center": {"translate": [{"curve": 0.387, "c3": 0.314}, {"time": 0.6667, "y": 14.05, "curve": 0.387, "c3": 0.314}, {"time": 1.3333}]}, - "@shadow": { "translate": [ - {"curve": 0.387, "c3": 0.314}, {"time": 0.1333, "x": -23.3, "curve": 0.387, "c3": 0.314}, {"time": 0.2167, "x": -9.6, "curve": "stepped"}, - {"time": 0.3333, "x": -9.6, "curve": 0.387, "c3": 0.314}, {"time": 0.4667, "x": -23.3, "curve": 0.387, "c3": 0.314}, {"time": 0.5833} - ], - "scale": [{"curve": 0.387, "c3": 0.314}, {"time": 0.6667, "x": 0.95, "y": 0.95, "curve": 0.387, "c3": 0.314}, {"time": 1.3333}] - }, - "tail": { - "rotate": [ - {"curve": 0, "c2": 0.12, "c3": 0.348, "c4": 0.47}, {"time": 0.1, "angle": -6.85, "curve": 0.229, "c2": 0.25, "c3": 0.569, "c4": 0.6}, - {"time": 0.2, "angle": 1.43, "curve": 0.188, "c2": 0.31, "c3": 0.695}, {"time": 0.3333, "angle": 3.02, "curve": 0, "c2": 0.12, "c3": 0.347, "c4": 0.48}, - {"time": 0.4333, "angle": -6.85, "curve": 0.229, "c2": 0.25, "c3": 0.569, "c4": 0.6}, {"time": 0.5333, "angle": 1.2, "curve": 0.155, "c3": 0.85}, - {"time": 0.75, "angle": -5.95, "curve": 0.161, "c3": 0.854}, {"time": 0.95, "angle": -0.94}, {"time": 1.15, "angle": 4.91, "curve": 0.234, "c4": 0.9}, {"time": 1.3333} + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 0.67, "y": -7.85, "curve": 0.161, "c3": 0.854}, {"time": 0.1667, "x": 0.61, "y": -9.9, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.25, "curve": "stepped"}, {"time": 0.2667, "x": -1.82, "y": 0.09}, {"time": 0.4833, "x": -6.6, "y": 4.03, "curve": "stepped"}, + {"time": 0.5, "x": 10.86, "y": -7.65, "curve": "stepped"}, {"time": 0.6667, "x": 10.86, "y": -7.65, "curve": "stepped"}, {"time": 0.7} ] }, - "@body4": { - "rotate": [ - {"angle": -0.03, "curve": 0.377, "c2": 0.61, "c3": 0.72}, {"time": 0.0667, "curve": 0.25, "c3": 0.75}, {"time": 0.2333, "angle": 9.83, "curve": 0.25, "c3": 0.75}, - {"time": 0.4, "angle": -15.35, "curve": 0.25, "c3": 0.75}, {"time": 0.5833, "angle": 14.26, "curve": 0.25, "c3": 0.75}, {"time": 0.8167, "angle": -19.31, "curve": 0.25, "c3": 0.75}, - {"time": 1.1, "angle": -0.65, "curve": 0.243, "c3": 0.674, "c4": 0.69}, {"time": 1.3333, "angle": -0.1} - ], + "leg-back-left-IK": { "translate": [ - {"x": -2.39, "y": 7.1, "curve": 0.25, "c3": 0.75}, {"time": 0.1667, "x": 9, "y": 2.91, "curve": 0.25, "c3": 0.75}, {"time": 0.3333, "x": -1.59, "y": 23.93, "curve": 0.25, "c3": 0.75}, - {"time": 0.5167, "x": 21.48, "y": -4.06, "curve": 0.25, "c3": 0.75}, {"time": 0.75, "x": -1.59, "y": 23.93, "curve": 0.25, "c3": 0.75}, - {"time": 1.0333, "x": -6.2, "y": 15.14, "curve": 0.25, "c3": 0.75}, {"time": 1.3333, "x": -2.39, "y": 7.1} + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 80.9, "curve": 0.161, "c3": 0.854}, {"time": 0.1667, "x": 72.57, "y": -3.2, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.25, "x": -106.8, "y": 17.49, "curve": "stepped"}, {"time": 0.2667, "x": -654.94, "y": 154.36, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.4833, "x": -669.36, "y": 180.24, "curve": "stepped"}, {"time": 0.5, "x": -541.29, "y": -24.41, "curve": "stepped"}, + {"time": 0.6667, "x": -541.29, "y": -24.41, "curve": "stepped"}, {"time": 0.7, "x": -130.76, "curve": "stepped"}, {"time": 0.8333, "x": -130.76, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 1} ] }, - "@body6": { - "rotate": [ - {"angle": -0.3, "curve": 0.352, "c2": 0.42, "c3": 0.687, "c4": 0.76}, {"time": 0.0333, "angle": -0.13, "curve": 0.362, "c2": 0.64, "c3": 0.698}, - {"time": 0.0667, "curve": 0.25, "c3": 0.75}, {"time": 0.2333, "angle": 15.47, "curve": 0.25, "c3": 0.75}, {"time": 0.4, "angle": -5.24, "curve": 0.25, "c3": 0.75}, - {"time": 0.5833, "angle": 24.11, "curve": 0.25, "c3": 0.75}, {"time": 0.8167, "angle": -9.2, "curve": 0.25, "c3": 0.75}, - {"time": 1.1, "angle": -2.43, "curve": 0.243, "c3": 0.649, "c4": 0.6}, {"time": 1.3, "angle": -0.68, "curve": 0.344, "c2": 0.37, "c3": 0.679, "c4": 0.71}, - {"time": 1.3333, "angle": -0.36} - ], + "@leg-front-right": { "translate": [ - {"x": 0.25, "y": 0.08, "curve": 0.362, "c2": 0.64, "c3": 0.698}, {"time": 0.0333, "curve": 0.25, "c3": 0.75}, {"time": 0.2, "x": -17.06, "y": -1.14, "curve": 0.25, "c3": 0.75}, - {"time": 0.3667, "x": 5.81, "y": -4.07, "curve": 0.25, "c3": 0.75}, {"time": 0.55, "x": -27.26, "y": 10.72, "curve": 0.25, "c3": 0.75}, - {"time": 0.7833, "x": 5.81, "y": -4.07, "curve": 0.25, "c3": 0.75}, {"time": 1.0667, "x": 5.12, "y": 1.61, "curve": 0.243, "c3": 0.674, "c4": 0.69}, - {"time": 1.3, "x": 0.79, "y": 0.25, "curve": 0.352, "c2": 0.42, "c3": 0.687, "c4": 0.76}, {"time": 1.3333, "x": 0.25, "y": 0.08} - ] - }, - "body-braid2": { - "rotate": [ - {"angle": 0.07, "curve": 0.25, "c3": 0.75}, {"time": 0.1667, "angle": 13.44, "curve": 0.25, "c3": 0.75}, {"time": 0.3333, "curve": 0.25, "c3": 0.75}, - {"time": 0.5167, "angle": 19.59, "curve": 0.25, "c3": 0.75}, {"time": 0.75, "angle": -7.14, "curve": 0.25, "c3": 0.75}, {"time": 1.0333, "angle": 4.57, "curve": 0.25, "c3": 0.75}, - {"time": 1.3333, "angle": 0.07} + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 4.31, "y": 11.86, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.1667, "x": -10.19, "y": -4.67, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "x": -1.86, "y": -9.26, "curve": "stepped"}, + {"time": 0.2667, "x": -5.58, "y": 2.65, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.4833, "x": -3.84, "y": 7.68, "curve": "stepped"}, + {"time": 0.5, "x": -8.1, "y": 29.66, "curve": "stepped"}, {"time": 0.6667, "x": -8.1, "y": 29.66, "curve": "stepped"}, + {"time": 0.7, "x": -1.86, "y": -9.26, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.8333, "x": -2.25, "y": -13.72, "curve": 0.315, "c4": 0.8}, {"time": 1} ] }, - "body-braid4": { - "rotate": [ - {"angle": 1.66, "curve": 0.382, "c2": 0.55, "c3": 0.741}, {"time": 0.1167, "angle": 0.07, "curve": 0.25, "c3": 0.75}, {"time": 0.2833, "angle": 19.6, "curve": 0.25, "c3": 0.75}, - {"time": 0.45, "curve": 0.25, "c3": 0.75}, {"time": 0.6333, "angle": 23.3, "curve": 0.25, "c3": 0.75}, {"time": 0.8667, "angle": -7.14, "curve": 0.25, "c3": 0.75}, - {"time": 1.15, "angle": 4.57, "curve": 0.245, "c3": 0.639, "c4": 0.56}, {"time": 1.3333, "angle": 1.66} + "@shadow": { + "translate": [ + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 61.96, "curve": "stepped"}, {"time": 0.1667, "x": 61.96, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.25, "x": -143.36, "curve": "stepped"}, {"time": 0.2667, "x": -150.21, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.4833, "x": -152.15, "curve": "stepped"}, + {"time": 0.5, "x": -142.78}, {"time": 0.6667, "x": -144.04, "curve": "stepped"}, {"time": 0.7, "x": -144.72, "curve": "stepped"}, + {"time": 0.8333, "x": -144.72, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1} ], - "translate": [{"x": -2.3, "y": -9.73}] - }, - "body-braid3": { - "rotate": [ - {"angle": 0.5, "curve": 0.371, "c2": 0.62, "c3": 0.71}, {"time": 0.05, "angle": 0.07, "curve": 0.25, "c3": 0.75}, {"time": 0.2167, "angle": 20.19, "curve": 0.25, "c3": 0.75}, - {"time": 0.3833, "curve": 0.25, "c3": 0.75}, {"time": 0.5667, "angle": 31.19, "curve": 0.25, "c3": 0.75}, {"time": 0.8, "angle": -7.14, "curve": 0.25, "c3": 0.75}, - {"time": 1.0833, "angle": 4.57, "curve": 0.243, "c3": 0.689, "c4": 0.75}, {"time": 1.3333, "angle": 0.5} - ] - }, - "body-braid6": { - "rotate": [ - {"angle": -1.62, "curve": 0.361, "c2": 0.44, "c3": 0.755}, {"time": 0.1833, "angle": -4.54, "curve": 0.25, "c3": 0.75}, {"time": 0.35, "angle": 13.39, "curve": 0.25, "c3": 0.75}, - {"time": 0.5167, "angle": -4.61, "curve": 0.25, "c3": 0.75}, {"time": 0.7, "angle": 13.15, "curve": 0.25, "c3": 0.75}, {"time": 0.9333, "angle": -11.74, "curve": 0.25, "c3": 0.75}, - {"time": 1.2167, "angle": -0.03, "curve": 0.259, "c3": 0.618, "c4": 0.45}, {"time": 1.3333, "angle": -1.62} - ] - }, - "body-braid5": { - "rotate": [ - {"angle": 8.42, "curve": 0.382, "c2": 0.57, "c3": 0.735}, {"time": 0.1, "angle": 7.14, "curve": 0.25, "c3": 0.75}, {"time": 0.2667, "angle": 31.61, "curve": 0.25, "c3": 0.75}, - {"time": 0.4333, "angle": 7.07, "curve": 0.25, "c3": 0.75}, {"time": 0.6167, "angle": 41.8, "curve": 0.25, "c3": 0.75}, {"time": 0.85, "angle": -0.06, "curve": 0.25, "c3": 0.75}, - {"time": 1.1333, "angle": 11.65, "curve": 0.243, "c3": 0.649, "c4": 0.6}, {"time": 1.3333, "angle": 8.42} - ] - }, - "body-braid": { - "rotate": [ - {"angle": 5.4, "curve": 0.362, "c2": 0.64, "c3": 0.698}, {"time": 0.0333, "angle": 5.16, "curve": 0.25, "c3": 0.75}, {"time": 0.2, "angle": 10.61, "curve": 0.25, "c3": 0.75}, - {"time": 0.3667, "angle": 3.41, "curve": 0.25, "c3": 0.75}, {"time": 0.55, "angle": 30.24, "curve": 0.25, "c3": 0.75}, {"time": 0.7833, "angle": -2.04, "curve": 0.25, "c3": 0.75}, - {"time": 1.0667, "angle": 9.67, "curve": 0.245, "c3": 0.707, "c4": 0.82}, {"time": 1.3333, "angle": 5.4} + "scale": [ + {"time": 0.0833, "curve": 0, "c2": 0.26, "c3": 0.369, "c4": 0.62}, {"time": 0.1667, "x": 1.06, "y": 1.06, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "curve": "stepped"}, + {"time": 0.2667, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.4833, "x": 0.9, "y": 0.9, "curve": "stepped"}, {"time": 0.5, "x": 1.06, "y": 1.06}, + {"time": 0.6667, "x": 1.1, "y": 1.1, "curve": "stepped"}, {"time": 0.7, "x": 1.06, "y": 1.06, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.8333, "x": 1.1, "y": 1.1, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1} ] }, - "@body5": {"rotate": [{"angle": 0.07, "curve": 0.25, "c3": 0.75}, {"time": 0.1667}]}, - "@body3": { + "tail": { "rotate": [ - {"angle": 0.42, "curve": 0.362, "c2": 0.64, "c3": 0.698}, {"time": 0.0333, "curve": 0.25, "c3": 0.75}, {"time": 0.2, "angle": 7.65, "curve": 0.25, "c3": 0.75}, - {"time": 0.3667, "angle": -12.3, "curve": 0.25, "c3": 0.75}, {"time": 0.55, "angle": 12.27, "curve": 0.25, "c3": 0.75}, {"time": 0.7833, "angle": -3.96, "curve": 0.25, "c3": 0.75}, - {"time": 1.0667, "angle": 6.88, "curve": 0.245, "c3": 0.707, "c4": 0.82}, {"time": 1.3333, "angle": 0.35} - ], - "translate": [ - {"curve": 0.25, "c3": 0.75}, {"time": 0.1667, "x": -11.6, "y": 9.76, "curve": 0.25, "c3": 0.75}, {"time": 0.3333, "curve": "stepped"}, {"time": 0.75, "curve": 0.25, "c3": 0.75}, - {"time": 1.0333, "x": -4.22, "y": -0.69, "curve": 0.25, "c3": 0.75}, {"time": 1.3333} + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "angle": 15.61, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "angle": 20.44, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.25, "angle": -15.58, "curve": "stepped"}, {"time": 0.2667, "angle": 40.35, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.4833, "angle": 41.35, "curve": "stepped"}, + {"time": 0.5, "angle": -14.65}, {"time": 0.6667, "angle": -15.65, "curve": "stepped"}, {"time": 0.7, "angle": -15.58, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.8333, "angle": 19.38, "curve": 0.313, "c3": 0.699}, {"time": 1} ] }, - "@body2": { - "rotate": [ - {"angle": 0.66, "curve": 0.348, "c2": 0.39, "c3": 0.683, "c4": 0.73}, {"time": 0.0333, "angle": 0.27, "curve": 0.371, "c2": 0.62, "c3": 0.71}, - {"time": 0.0833, "curve": 0.25, "c3": 0.75}, {"time": 0.25, "angle": 12.91, "curve": 0.25, "c3": 0.75}, {"time": 0.4167, "angle": -3.07, "curve": 0.25, "c3": 0.75}, - {"time": 0.6, "angle": 23.5, "curve": 0.25, "c3": 0.75}, {"time": 0.8333, "angle": -3.96, "curve": 0.25, "c3": 0.75}, - {"time": 1.1167, "angle": 2.81, "curve": 0.243, "c3": 0.66, "c4": 0.64}, {"time": 1.3333, "angle": 0.6} - ], - "translate": [ - {"x": -0.22, "y": -0.04, "curve": 0.362, "c2": 0.64, "c3": 0.698}, {"time": 0.0333, "curve": "stepped"}, {"time": 0.3667, "curve": 0.25, "c3": 0.75}, - {"time": 0.55, "x": -14.09, "y": -2.21, "curve": 0.25, "c3": 0.75}, {"time": 0.7833, "curve": 0.25, "c3": 0.75}, - {"time": 1.0667, "x": -4.22, "y": -0.69, "curve": 0.245, "c3": 0.707, "c4": 0.82}, {"time": 1.3333, "x": -0.22, "y": -0.04} - ] - } - } + "@pivot-main": {"translate": [{"time": 0.8333, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.9167, "y": 31, "curve": 0.315, "c4": 0.8}, {"time": 1}]} + }, + "events": [{"time": 0.3333, "name": "start-attack"}, {"time": 0.5, "name": "hit"}] }, - "2711256467": { + "1454509456": { "slots": { - "eyes": {"attachment": [{"time": 0.1333, "name": "eyes-shut"}, {"time": 0.2, "name": "eyes"}, {"time": 0.4667, "name": "eyes-shut"}]}, - "mouth": {"attachment": [{"time": 0.0833, "name": "mouth-open"}, {"time": 0.3333, "name": "mouth"}, {"time": 0.4167, "name": "mouth-open"}]} + "eyes": {"attachment": [{"time": 0.6667, "name": "eyes-shut"}, {"time": 0.75, "name": "eyes"}]}, + "mouth": {"attachment": [{"time": 0.05, "name": "mouth-bite"}, {"time": 0.2667, "name": "mouth-open"}, {"time": 0.55, "name": "mouth-bite"}, {"time": 0.75, "name": "mouth"}]} }, "bones": { - "@mouth": { + "@leg-front-right": { "translate": [ - {"time": 0.1667, "curve": 0, "c2": 0.1, "c3": 0.479, "c4": 0.56}, {"time": 0.3333, "x": -0.56, "y": 3.4, "curve": 0.408, "c2": 0.51, "c3": 0.853}, - {"time": 0.5, "x": 0.04, "y": 0.05, "curve": 0, "c2": 0.27, "c3": 0.314, "c4": 0.8}, {"time": 0.6, "x": 3.03, "y": 2.83, "curve": 0.168, "c2": 0.32, "c3": 0.551, "c4": 0.7}, - {"time": 0.7, "x": -0.51, "y": 3.39, "curve": 0.291, "c2": 0.39, "c3": 0.63, "c4": 0.75}, {"time": 0.8, "x": -3.56, "y": 0.39, "curve": 0.329, "c2": 0.61, "c3": 0.674, "c4": 0.99}, - {"time": 0.9, "x": 0.05, "y": -0.01, "curve": 0, "c2": 0.27, "c3": 0.31, "c4": 0.8}, {"time": 1.0167, "x": 3.05, "y": 2.75, "curve": 0.154, "c2": 0.33, "c3": 0.544, "c4": 0.7}, - {"time": 1.1167, "x": -0.5, "y": 3.35, "curve": 0.298, "c2": 0.38, "c3": 0.643, "c4": 0.74}, {"time": 1.2167, "x": -3.56, "y": 0.37, "curve": 0.326, "c2": 0.61, "c3": 0.671, "c4": 0.99}, - {"time": 1.3333} + {"curve": 0, "c2": 0.4, "c3": 0.383}, {"time": 0.25, "x": -2.2, "y": -15.65, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3167, "x": -1.86, "y": -9.26, "curve": "stepped"}, + {"time": 0.3333, "x": -2.24, "y": 13.67, "curve": "stepped"}, {"time": 0.5333, "x": -2.24, "y": 13.67, "curve": "stepped"}, + {"time": 0.55, "x": -2.12, "y": 6.47, "curve": 0.313, "c3": 0.699}, {"time": 0.6667, "x": -3.13, "y": -23.62, "curve": 0, "c2": 0.3, "c3": 0.54}, {"time": 0.8333} ] }, - "@pivot-back": { + "tail": { "rotate": [ - {"curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.0667, "angle": -0.59, "curve": 0.075, "c4": 0.95}, {"time": 0.1333, "angle": 1.15, "curve": 0, "c2": 0.1, "c3": 0.85}, - {"time": 0.2167, "curve": "stepped"}, {"time": 0.3333, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.4, "angle": -0.59, "curve": 0.075, "c4": 0.95}, - {"time": 0.4667, "angle": 1.15, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.5833} - ], - "translate": [ - {"y": 0.06, "curve": 0.387, "c3": 0.314}, {"time": 0.1333, "x": -13.8, "y": 0.06, "curve": 0.387, "c3": 0.314}, {"time": 0.2167, "x": 0.02, "y": 0.06, "curve": "stepped"}, - {"time": 0.3333, "x": 0.02, "y": 0.06, "curve": 0.387, "c3": 0.314}, {"time": 0.4667, "x": -13.8, "y": 0.06, "curve": 0.387, "c3": 0.314}, {"time": 0.5833, "x": 0.02, "y": 0.06} + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.25, "angle": 21.98, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3167, "angle": -15.58, "curve": "stepped"}, + {"time": 0.3333, "angle": 6.35}, {"time": 0.5, "angle": 10.35, "curve": "stepped"}, {"time": 0.55, "angle": -11.84, "curve": 0.313, "c3": 0.699}, + {"time": 0.6667, "angle": 16.95, "curve": 0.313, "c3": 0.699}, {"time": 0.8333} ] }, - "@leg-front-right": { + "@pivot-back": { "rotate": [ - {"curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.0667, "angle": 10.98, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.2167, "angle": -8.78, "curve": 0.161, "c3": 0.854}, - {"time": 0.3333, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.4, "angle": 10.98, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.55, "angle": -8.78, "curve": 0.161, "c3": 0.854}, - {"time": 0.6667, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.8333, "angle": -9.85, "curve": 0.161, "c3": 0.854}, {"time": 0.9833, "angle": -6.21}, - {"time": 1.15, "angle": 2.69, "curve": 0.075, "c4": 0.95}, {"time": 1.3333} - ] + {"curve": 0, "c2": 0.4, "c3": 0.383}, {"time": 0.15, "angle": 4, "curve": "stepped"}, {"time": 0.25, "angle": 4, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.3167, "curve": "stepped"}, {"time": 0.3333}, {"time": 0.5, "angle": -3, "curve": "stepped"}, {"time": 0.55, "curve": 0.313, "c3": 0.699}, + {"time": 0.6667, "angle": 6, "curve": 0.313, "c3": 0.699}, {"time": 0.8333} + ], + "translate": [ + {"curve": 0, "c2": 0.4, "c3": 0.383}, {"time": 0.25, "x": 25, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3167, "x": -135.5, "curve": "stepped"}, {"time": 0.3333, "x": -560.54}, + {"time": 0.5, "x": -577.1, "curve": "stepped"}, {"time": 0.55, "x": -151.24, "curve": 0.313, "c3": 0.699}, {"time": 0.6667, "x": -151.24, "y": 4.06, "curve": 0.313, "c3": 0.699}, + {"time": 0.8333} + ], + "scale": [{"time": 0.3167, "curve": "stepped"}, {"time": 0.3333, "x": -1, "curve": "stepped"}, {"time": 0.5, "x": -1, "curve": "stepped"}, {"time": 0.55}] }, "@leg-front-left": { - "rotate": [ - {"curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.0667, "angle": 10.98, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.2167, "angle": -8.78, "curve": 0.161, "c3": 0.854}, - {"time": 0.3333, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.4, "angle": 10.98, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.55, "angle": -8.78, "curve": 0.161, "c3": 0.854}, - {"time": 0.6667, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.8333, "angle": -9.84, "curve": 0.161, "c3": 0.854}, {"time": 0.9833, "angle": -6.21}, - {"time": 1.15, "angle": 2.69, "curve": 0.075, "c4": 0.95}, {"time": 1.3333} - ] - }, - "@leg-back-left": { - "rotate": [ - {"curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.0667, "angle": 10.98, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.2167, "angle": -8.78, "curve": 0.161, "c3": 0.854}, - {"time": 0.3333, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.4, "angle": 10.98, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.55, "angle": -8.78, "curve": 0.161, "c3": 0.854}, - {"time": 0.6667, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.8333, "angle": 5.93, "curve": 0.161, "c3": 0.854}, {"time": 0.9833}, - {"time": 1.15, "angle": -4.97, "curve": 0.075, "c4": 0.95}, {"time": 1.3333} + "translate": [ + {"curve": 0, "c2": 0.4, "c3": 0.383}, {"time": 0.25, "x": -1, "y": -5.53, "curve": "stepped"}, {"time": 0.3167, "x": -1, "y": -5.53, "curve": "stepped"}, + {"time": 0.3333, "x": -1.12, "y": 1.52, "curve": "stepped"}, {"time": 0.55, "x": -1.12, "y": 1.52, "curve": 0.313, "c3": 0.699}, + {"time": 0.6667, "x": -1, "y": -5.53, "curve": 0.313, "c3": 0.699}, {"time": 0.8333} ] }, - "@pivot-main": {"translate": [{"curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.0667, "y": 7.88, "curve": 0.078, "c4": 0.94}, {"time": 0.1333}]}, - "@pivot-center": {"translate": [{"curve": 0.387, "c3": 0.314}, {"time": 0.6667, "y": 14.05, "curve": 0.387, "c3": 0.314}, {"time": 1.3333}]}, "@shadow": { "translate": [ - {"curve": 0.387, "c3": 0.314}, {"time": 0.1333, "x": -23.3, "curve": 0.387, "c3": 0.314}, {"time": 0.2167, "x": -9.6, "curve": "stepped"}, - {"time": 0.3333, "x": -9.6, "curve": 0.387, "c3": 0.314}, {"time": 0.4667, "x": -23.3, "curve": 0.387, "c3": 0.314}, {"time": 0.5833} + {"time": 0.25, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3167, "x": -143.36, "curve": "stepped"}, {"time": 0.3333, "x": -143.36}, {"time": 0.5, "x": -157.56, "curve": "stepped"}, + {"time": 0.55, "x": -161.35, "curve": "stepped"}, {"time": 0.6667, "x": -161.35, "curve": 0.313, "c3": 0.699}, {"time": 0.8333} ], - "scale": [{"curve": 0.387, "c3": 0.314}, {"time": 0.6667, "x": 0.95, "y": 0.95, "curve": 0.387, "c3": 0.314}, {"time": 1.3333}] - }, - "tail": { - "rotate": [ - {"curve": 0, "c2": 0.12, "c3": 0.348, "c4": 0.47}, {"time": 0.1, "angle": -6.85, "curve": 0.229, "c2": 0.25, "c3": 0.569, "c4": 0.6}, - {"time": 0.2, "angle": 1.43, "curve": 0.188, "c2": 0.31, "c3": 0.695}, {"time": 0.3333, "angle": 3.02, "curve": 0, "c2": 0.12, "c3": 0.347, "c4": 0.48}, - {"time": 0.4333, "angle": -6.85, "curve": 0.229, "c2": 0.25, "c3": 0.569, "c4": 0.6}, {"time": 0.5333, "angle": 1.2, "curve": 0.155, "c3": 0.85}, - {"time": 0.75, "angle": -5.95, "curve": 0.161, "c3": 0.854}, {"time": 0.95, "angle": -0.94}, {"time": 1.15, "angle": 4.91, "curve": 0.234, "c4": 0.9}, {"time": 1.3333} + "scale": [ + {"curve": 0, "c2": 0.4, "c3": 0.383}, {"time": 0.25, "x": 1.08, "y": 1.08, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3167, "curve": "stepped"}, {"time": 0.3333}, + {"time": 0.5, "x": 1.08, "y": 1.08, "curve": "stepped"}, {"time": 0.55, "curve": 0.313, "c3": 0.699}, {"time": 0.6667, "x": 1.08, "y": 1.08, "curve": 0.313, "c3": 0.699}, + {"time": 0.8333} ] }, - "@body3": { - "rotate": [ - {"angle": 0.42, "curve": 0.362, "c2": 0.64, "c3": 0.698}, {"time": 0.0333, "curve": 0.25, "c3": 0.75}, {"time": 0.2, "angle": 7.65, "curve": 0.25, "c3": 0.75}, - {"time": 0.3667, "angle": -12.3, "curve": 0.25, "c3": 0.75}, {"time": 0.55, "angle": 12.27, "curve": 0.25, "c3": 0.75}, {"time": 0.7833, "angle": -3.96, "curve": 0.25, "c3": 0.75}, - {"time": 1.0667, "angle": 6.88, "curve": 0.245, "c3": 0.707, "c4": 0.82}, {"time": 1.3333, "angle": 0.35} - ], + "leg-front-left-IK": { "translate": [ - {"curve": 0.25, "c3": 0.75}, {"time": 0.1667, "x": -11.6, "y": 9.76, "curve": 0.25, "c3": 0.75}, {"time": 0.3333, "curve": "stepped"}, {"time": 0.75, "curve": 0.25, "c3": 0.75}, - {"time": 1.0333, "x": -4.22, "y": -0.69, "curve": 0.25, "c3": 0.75}, {"time": 1.3333} + {"time": 0.25, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3167, "x": -192.09, "y": 31.17, "curve": "stepped"}, {"time": 0.3333, "x": -162.19, "curve": "stepped"}, + {"time": 0.5, "x": -162.19, "curve": "stepped"}, {"time": 0.55, "x": -180.48, "curve": "stepped"}, {"time": 0.6667, "x": -180.48, "curve": 0.313, "c3": 0.699}, {"time": 0.8333} ] }, - "body-braid": { - "rotate": [ - {"angle": 5.4, "curve": 0.362, "c2": 0.64, "c3": 0.698}, {"time": 0.0333, "angle": 5.16, "curve": 0.25, "c3": 0.75}, {"time": 0.2, "angle": 10.61, "curve": 0.25, "c3": 0.75}, - {"time": 0.3667, "angle": 3.41, "curve": 0.25, "c3": 0.75}, {"time": 0.55, "angle": 30.24, "curve": 0.25, "c3": 0.75}, {"time": 0.7833, "angle": -2.04, "curve": 0.25, "c3": 0.75}, - {"time": 1.0667, "angle": 9.67, "curve": 0.245, "c3": 0.707, "c4": 0.82}, {"time": 1.3333, "angle": 5.4} + "leg-front-right-IK": { + "translate": [ + {"time": 0.25, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3167, "x": -172.87, "y": 28.32, "curve": "stepped"}, {"time": 0.3333, "x": 301.16, "y": 16.82, "curve": 0.31, "c4": 0.8}, + {"time": 0.5, "x": 285.54, "y": 12.82, "curve": "stepped"}, {"time": 0.55, "x": -180.48, "curve": "stepped"}, {"time": 0.6667, "x": -180.48, "curve": 0.313, "c3": 0.699}, + {"time": 0.8333} ] }, - "@body4": { - "rotate": [ - {"angle": -0.03, "curve": 0.377, "c2": 0.61, "c3": 0.72}, {"time": 0.0667, "curve": 0.25, "c3": 0.75}, {"time": 0.2333, "angle": 9.83, "curve": 0.25, "c3": 0.75}, - {"time": 0.4, "angle": -15.35, "curve": 0.25, "c3": 0.75}, {"time": 0.5833, "angle": 14.26, "curve": 0.25, "c3": 0.75}, {"time": 0.8167, "angle": -19.31, "curve": 0.25, "c3": 0.75}, - {"time": 1.1, "angle": -0.65, "curve": 0.243, "c3": 0.674, "c4": 0.69}, {"time": 1.3333, "angle": -0.1} - ], + "leg-back-left-IK": { "translate": [ - {"x": -2.39, "y": 7.1, "curve": 0.25, "c3": 0.75}, {"time": 0.1667, "x": 9, "y": 2.91, "curve": 0.25, "c3": 0.75}, {"time": 0.3333, "x": -1.59, "y": 23.93, "curve": 0.25, "c3": 0.75}, - {"time": 0.5167, "x": 21.48, "y": -4.06, "curve": 0.25, "c3": 0.75}, {"time": 0.75, "x": -1.59, "y": 23.93, "curve": 0.25, "c3": 0.75}, - {"time": 1.0333, "x": -6.2, "y": 15.14, "curve": 0.25, "c3": 0.75}, {"time": 1.3333, "x": -2.39, "y": 7.1} + {"time": 0.25, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3167, "x": -91.18, "y": 21.9, "curve": "stepped"}, {"time": 0.3333, "x": -595.64, "y": 5, "curve": 0.31, "c4": 0.8}, + {"time": 0.5, "x": -626.51, "y": 11.36, "curve": "stepped"}, {"time": 0.55, "x": -134.74, "curve": "stepped"}, {"time": 0.6667, "x": -134.74, "curve": 0.313, "c3": 0.699}, + {"time": 0.8333} ] }, - "body-braid4": { + "@pivot-main": {"translate": [{"time": 0.6667, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.75, "y": 31, "curve": 0.315, "c4": 0.8}, {"time": 0.8333}]}, + "@leg-back-left": {"translate": [{"time": 0.3167, "curve": "stepped"}, {"time": 0.3333, "x": -0.06, "y": 3.33, "curve": "stepped"}, {"time": 0.5, "x": -0.06, "y": 3.33}, {"time": 0.55}]} + }, + "events": [{"time": 0.25, "name": "start-attack"}, {"time": 0.3333, "name": "hit"}] + }, + "2717938682": { + "slots": {"eyes": {"attachment": [{"time": 1, "name": "eyes-shut"}, {"time": 1.0833, "name": "eyes"}]}}, + "bones": { + "@pivot-back": { "rotate": [ - {"angle": 1.66, "curve": 0.382, "c2": 0.55, "c3": 0.741}, {"time": 0.1167, "angle": 0.07, "curve": 0.25, "c3": 0.75}, {"time": 0.2833, "angle": 19.6, "curve": 0.25, "c3": 0.75}, - {"time": 0.45, "curve": 0.25, "c3": 0.75}, {"time": 0.6333, "angle": 23.3, "curve": 0.25, "c3": 0.75}, {"time": 0.8667, "angle": -7.14, "curve": 0.25, "c3": 0.75}, - {"time": 1.15, "angle": 4.57, "curve": 0.245, "c3": 0.639, "c4": 0.56}, {"time": 1.3333, "angle": 1.66} + {"curve": 0.313, "c3": 0.699}, {"time": 0.3333, "angle": 2.04, "curve": 0.313, "c3": 0.699}, {"time": 0.6667, "curve": 0.313, "c3": 0.699}, + {"time": 1, "angle": 1.79, "curve": 0.313, "c3": 0.699}, {"time": 1.3333} ], - "translate": [{"x": -2.3, "y": -9.73}] - }, - "@body6": { - "rotate": [ - {"angle": -0.3, "curve": 0.352, "c2": 0.42, "c3": 0.687, "c4": 0.76}, {"time": 0.0333, "angle": -0.13, "curve": 0.362, "c2": 0.64, "c3": 0.698}, - {"time": 0.0667, "curve": 0.25, "c3": 0.75}, {"time": 0.2333, "angle": 15.47, "curve": 0.25, "c3": 0.75}, {"time": 0.4, "angle": -5.24, "curve": 0.25, "c3": 0.75}, - {"time": 0.5833, "angle": 24.11, "curve": 0.25, "c3": 0.75}, {"time": 0.8167, "angle": -9.2, "curve": 0.25, "c3": 0.75}, - {"time": 1.1, "angle": -2.43, "curve": 0.243, "c3": 0.649, "c4": 0.6}, {"time": 1.3, "angle": -0.68, "curve": 0.344, "c2": 0.37, "c3": 0.679, "c4": 0.71}, - {"time": 1.3333, "angle": -0.36} + "translate": [ + {"curve": 0.313, "c3": 0.699}, {"time": 0.3333, "y": -6.53, "curve": 0.313, "c3": 0.699}, {"time": 0.6667, "curve": 0.313, "c3": 0.699}, + {"time": 1, "y": -8.86, "curve": 0.313, "c3": 0.699}, {"time": 1.3333} ], + "scale": [{"curve": 0.313, "c3": 0.699}, {"time": 0.6667, "y": 0.99, "curve": 0.313, "c3": 0.699}, {"time": 1.3333}] + }, + "@leg-front-right": { "translate": [ - {"x": 0.25, "y": 0.08, "curve": 0.362, "c2": 0.64, "c3": 0.698}, {"time": 0.0333, "curve": 0.25, "c3": 0.75}, {"time": 0.2, "x": -17.06, "y": -1.14, "curve": 0.25, "c3": 0.75}, - {"time": 0.3667, "x": 5.81, "y": -4.07, "curve": 0.25, "c3": 0.75}, {"time": 0.55, "x": -27.26, "y": 10.72, "curve": 0.25, "c3": 0.75}, - {"time": 0.7833, "x": 5.81, "y": -4.07, "curve": 0.25, "c3": 0.75}, {"time": 1.0667, "x": 5.12, "y": 1.61, "curve": 0.243, "c3": 0.674, "c4": 0.69}, - {"time": 1.3, "x": 0.79, "y": 0.25, "curve": 0.352, "c2": 0.42, "c3": 0.687, "c4": 0.76}, {"time": 1.3333, "x": 0.25, "y": 0.08} + {"curve": 0.313, "c3": 0.699}, {"time": 0.3333, "x": 0.02, "y": -16.89, "curve": 0.313, "c3": 0.699}, {"time": 0.6667, "x": -0.04, "y": 2.46, "curve": 0.313, "c3": 0.699}, + {"time": 1, "x": -0.02, "y": -18.9, "curve": 0.313, "c3": 0.699}, {"time": 1.3333} ] }, - "body-braid2": { - "rotate": [ - {"angle": 0.07, "curve": 0.25, "c3": 0.75}, {"time": 0.1667, "angle": 13.44, "curve": 0.25, "c3": 0.75}, {"time": 0.3333, "curve": 0.25, "c3": 0.75}, - {"time": 0.5167, "angle": 19.59, "curve": 0.25, "c3": 0.75}, {"time": 0.75, "angle": -7.14, "curve": 0.25, "c3": 0.75}, {"time": 1.0333, "angle": 4.57, "curve": 0.25, "c3": 0.75}, - {"time": 1.3333, "angle": 0.07} + "@leg-front-left": { + "translate": [ + {"curve": 0.313, "c3": 0.699}, {"time": 0.3333, "x": 0.22, "y": -5.13, "curve": 0.313, "c3": 0.699}, {"time": 0.6667, "x": -0.03, "y": 1.81, "curve": 0.313, "c3": 0.699}, + {"time": 1, "x": 0.2, "y": -7.06, "curve": 0.313, "c3": 0.699}, {"time": 1.3333} + ], + "scale": [ + {"curve": 0.313, "c3": 0.699}, {"time": 0.3333, "x": 0.905, "curve": 0.313, "c3": 0.699}, {"time": 0.6667, "curve": 0.313, "c3": 0.699}, + {"time": 1, "x": 0.905, "curve": 0.313, "c3": 0.699}, {"time": 1.3333} ] }, - "body-braid5": { - "rotate": [ - {"angle": 8.42, "curve": 0.382, "c2": 0.57, "c3": 0.735}, {"time": 0.1, "angle": 7.14, "curve": 0.25, "c3": 0.75}, {"time": 0.2667, "angle": 31.61, "curve": 0.25, "c3": 0.75}, - {"time": 0.4333, "angle": 7.07, "curve": 0.25, "c3": 0.75}, {"time": 0.6167, "angle": 41.8, "curve": 0.25, "c3": 0.75}, {"time": 0.85, "angle": -0.06, "curve": 0.25, "c3": 0.75}, - {"time": 1.1333, "angle": 11.65, "curve": 0.243, "c3": 0.649, "c4": 0.6}, {"time": 1.3333, "angle": 8.42} + "@leg-back-left": { + "translate": [ + {"curve": 0.313, "c3": 0.699}, {"time": 0.3333, "x": 0.22, "y": -4.11, "curve": 0.313, "c3": 0.699}, {"time": 0.6667, "x": -0.03, "y": 1.69, "curve": 0.313, "c3": 0.699}, + {"time": 1, "x": 0.2, "y": -5.68, "curve": 0.313, "c3": 0.699}, {"time": 1.3333} + ], + "scale": [ + {"curve": 0.313, "c3": 0.699}, {"time": 0.3333, "x": 0.943, "curve": 0.313, "c3": 0.699}, {"time": 0.6667, "curve": 0.313, "c3": 0.699}, + {"time": 1, "x": 0.943, "curve": 0.313, "c3": 0.699}, {"time": 1.3333} ] }, - "body-braid6": { - "rotate": [ - {"angle": -1.62, "curve": 0.361, "c2": 0.44, "c3": 0.755}, {"time": 0.1833, "angle": -4.54, "curve": 0.25, "c3": 0.75}, {"time": 0.35, "angle": 13.39, "curve": 0.25, "c3": 0.75}, - {"time": 0.5167, "angle": -4.61, "curve": 0.25, "c3": 0.75}, {"time": 0.7, "angle": 13.15, "curve": 0.25, "c3": 0.75}, {"time": 0.9333, "angle": -11.74, "curve": 0.25, "c3": 0.75}, - {"time": 1.2167, "angle": -0.03, "curve": 0.259, "c3": 0.618, "c4": 0.45}, {"time": 1.3333, "angle": -1.62} + "@pivot-main": { + "scale": [ + {"curve": 0.313, "c3": 0.699}, {"time": 0.3333, "y": 0.98, "curve": 0.313, "c3": 0.699}, {"time": 0.6667, "curve": 0.313, "c3": 0.699}, + {"time": 1, "y": 0.98, "curve": 0.313, "c3": 0.699}, {"time": 1.3333} ] }, - "@body5": {"rotate": [{"angle": 0.07, "curve": 0.25, "c3": 0.75}, {"time": 0.1667}]}, - "body-braid3": { - "rotate": [ - {"angle": 0.5, "curve": 0.371, "c2": 0.62, "c3": 0.71}, {"time": 0.05, "angle": 0.07, "curve": 0.25, "c3": 0.75}, {"time": 0.2167, "angle": 20.19, "curve": 0.25, "c3": 0.75}, - {"time": 0.3833, "curve": 0.25, "c3": 0.75}, {"time": 0.5667, "angle": 31.19, "curve": 0.25, "c3": 0.75}, {"time": 0.8, "angle": -7.14, "curve": 0.25, "c3": 0.75}, - {"time": 1.0833, "angle": 4.57, "curve": 0.243, "c3": 0.689, "c4": 0.75}, {"time": 1.3333, "angle": 0.5} - ] + "tail": { + "rotate": [{"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "angle": 4.54, "curve": 0.313, "c3": 0.699}, {"time": 1, "angle": -9.06, "curve": 0.313, "c3": 0.699}, {"time": 1.3333}] }, - "@body2": { - "rotate": [ - {"angle": 0.66, "curve": 0.348, "c2": 0.39, "c3": 0.683, "c4": 0.73}, {"time": 0.0333, "angle": 0.27, "curve": 0.371, "c2": 0.62, "c3": 0.71}, - {"time": 0.0833, "curve": 0.25, "c3": 0.75}, {"time": 0.25, "angle": 12.91, "curve": 0.25, "c3": 0.75}, {"time": 0.4167, "angle": -3.07, "curve": 0.25, "c3": 0.75}, - {"time": 0.6, "angle": 23.5, "curve": 0.25, "c3": 0.75}, {"time": 0.8333, "angle": -3.96, "curve": 0.25, "c3": 0.75}, - {"time": 1.1167, "angle": 2.81, "curve": 0.243, "c3": 0.66, "c4": 0.64}, {"time": 1.3333, "angle": 0.6} - ], - "translate": [ - {"x": -0.22, "y": -0.04, "curve": 0.362, "c2": 0.64, "c3": 0.698}, {"time": 0.0333, "curve": "stepped"}, {"time": 0.3667, "curve": 0.25, "c3": 0.75}, - {"time": 0.55, "x": -14.09, "y": -2.21, "curve": 0.25, "c3": 0.75}, {"time": 0.7833, "curve": 0.25, "c3": 0.75}, - {"time": 1.0667, "x": -4.22, "y": -0.69, "curve": 0.245, "c3": 0.707, "c4": 0.82}, {"time": 1.3333, "x": -0.22, "y": -0.04} + "back": { + "rotate": [{"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "angle": -4.27, "curve": 0.313, "c3": 0.699}, {"time": 1, "angle": 2.83, "curve": 0.313, "c3": 0.699}, {"time": 1.3333}] + }, + "@shadow": { + "scale": [ + {"curve": 0.306, "c3": 0.695}, {"time": 0.3333, "x": 1.05, "y": 1.05, "curve": 0.306, "c3": 0.695}, {"time": 0.6667, "curve": 0.306, "c3": 0.695}, + {"time": 1, "x": 1.05, "y": 1.05, "curve": 0.306, "c3": 0.695}, {"time": 1.3333} ] } } }, - "2809240631": { - "slots": {"eyes": {"attachment": [{"time": 0.0167, "name": "eyes-angry"}, {"time": 0.6333, "name": "eyes-shut"}, {"time": 0.7, "name": "eyes-angry"}, {"time": 1.2833, "name": "eyes"}]}}, + "1749937284": { + "slots": {"eyes": {"attachment": [{"time": 1, "name": "eyes-shut"}, {"time": 1.0833, "name": "eyes"}]}}, "bones": { "@pivot-back": { "rotate": [ - {"curve": 0.302, "c4": 0.8}, {"time": 0.1667, "angle": -5.15, "curve": 0, "c2": 0.2, "c3": 0.692}, {"time": 0.3333, "angle": 4.71, "curve": 0, "c2": 0.1, "c3": 0.853}, - {"time": 0.5, "angle": -2.3, "curve": 0.308, "c3": 0.692}, {"time": 0.6667, "angle": 2.84, "curve": 0.314, "c3": 0.701}, - {"time": 0.9167, "angle": -3.66, "curve": 0, "c2": 0.1, "c3": 0.845}, {"time": 1.0833, "angle": -0.77, "curve": 0.311, "c4": 0.8}, {"time": 1.25} + {"curve": 0.313, "c3": 0.699}, {"time": 0.3333, "angle": 2.04, "curve": 0.313, "c3": 0.699}, {"time": 0.6667, "curve": 0.313, "c3": 0.699}, + {"time": 1, "angle": 1.79, "curve": 0.313, "c3": 0.699}, {"time": 1.3333} ], "translate": [ - {"curve": 0.308, "c4": 0.79}, {"time": 0.25, "x": -74.35, "y": -25.83, "curve": 0, "c2": 0.3, "c3": 0.537}, {"time": 0.4167, "x": -74.35, "y": 55.38, "curve": 0, "c2": 0.1, "c3": 0.853}, - {"time": 0.5833, "x": 103.85, "y": -14.97, "curve": 0.308, "c3": 0.692}, {"time": 0.75, "x": 103.82, "y": 55.43, "curve": 0.314, "c3": 0.701}, - {"time": 1, "x": -40.96, "y": -15.97, "curve": 0.314, "c3": 0.701}, {"time": 1.1667, "x": -40.96, "y": 0.03, "curve": 0, "c2": 0.05, "c3": 0.933}, {"time": 1.3333} - ] + {"curve": 0.313, "c3": 0.699}, {"time": 0.3333, "y": -6.53, "curve": 0.313, "c3": 0.699}, {"time": 0.6667, "curve": 0.313, "c3": 0.699}, + {"time": 1, "y": -8.86, "curve": 0.313, "c3": 0.699}, {"time": 1.3333} + ], + "scale": [{"curve": 0.313, "c3": 0.699}, {"time": 0.6667, "y": 0.99, "curve": 0.313, "c3": 0.699}, {"time": 1.3333}] }, "@leg-front-right": { - "rotate": [ - {"curve": 0.307, "c4": 0.8}, {"time": 0.1667, "angle": 13.08, "curve": 0.302, "c3": 0.695}, {"time": 0.4167, "angle": -24.68, "curve": "stepped"}, - {"time": 0.5833, "angle": -24.68, "curve": 0, "c2": 0.2, "c3": 0.689}, {"time": 0.75, "angle": 8.39, "curve": "stepped"}, {"time": 0.9167, "angle": 8.39, "curve": 0.308, "c4": 0.8}, - {"time": 1.1667, "angle": -16.49, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 1.3333, "angle": -30.3} + "translate": [ + {"curve": 0.313, "c3": 0.699}, {"time": 0.3333, "x": 0.02, "y": -16.89, "curve": 0.313, "c3": 0.699}, {"time": 0.6667, "x": -0.04, "y": 2.46, "curve": 0.313, "c3": 0.699}, + {"time": 1, "x": -0.02, "y": -18.9, "curve": 0.313, "c3": 0.699}, {"time": 1.3333} ] }, "@leg-front-left": { - "rotate": [ - {"curve": 0.307, "c4": 0.8}, {"time": 0.1667, "angle": 13.08, "curve": 0.302, "c3": 0.695}, {"time": 0.4167, "angle": -24.68, "curve": "stepped"}, - {"time": 0.5833, "angle": -24.68, "curve": 0, "c2": 0.2, "c3": 0.689}, {"time": 0.75, "angle": 8.39, "curve": "stepped"}, {"time": 0.9167, "angle": 8.39, "curve": 0.308, "c4": 0.8}, - {"time": 1.1667, "angle": -16.49, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 1.3333, "angle": 20.14} + "translate": [ + {"curve": 0.313, "c3": 0.699}, {"time": 0.3333, "x": 0.22, "y": -5.13, "curve": 0.313, "c3": 0.699}, {"time": 0.6667, "x": -0.03, "y": 1.81, "curve": 0.313, "c3": 0.699}, + {"time": 1, "x": 0.2, "y": -7.06, "curve": 0.313, "c3": 0.699}, {"time": 1.3333} + ], + "scale": [ + {"curve": 0.313, "c3": 0.699}, {"time": 0.3333, "x": 0.905, "curve": 0.313, "c3": 0.699}, {"time": 0.6667, "curve": 0.313, "c3": 0.699}, + {"time": 1, "x": 0.905, "curve": 0.313, "c3": 0.699}, {"time": 1.3333} ] }, "@leg-back-left": { - "rotate": [ - {"curve": 0.307, "c4": 0.8}, {"time": 0.1667, "angle": 13.08}, {"time": 0.3333, "angle": -13.36}, {"time": 0.75, "angle": 11.05, "curve": "stepped"}, - {"time": 0.9167, "angle": 11.05, "curve": 0.308, "c4": 0.8}, {"time": 1.1667, "angle": -13.83, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 1.3333, "angle": -11.75} + "translate": [ + {"curve": 0.313, "c3": 0.699}, {"time": 0.3333, "x": 0.22, "y": -4.11, "curve": 0.313, "c3": 0.699}, {"time": 0.6667, "x": -0.03, "y": 1.69, "curve": 0.313, "c3": 0.699}, + {"time": 1, "x": 0.2, "y": -5.68, "curve": 0.313, "c3": 0.699}, {"time": 1.3333} + ], + "scale": [ + {"curve": 0.313, "c3": 0.699}, {"time": 0.3333, "x": 0.943, "curve": 0.313, "c3": 0.699}, {"time": 0.6667, "curve": 0.313, "c3": 0.699}, + {"time": 1, "x": 0.943, "curve": 0.313, "c3": 0.699}, {"time": 1.3333} ] }, - "tail": { - "rotate": [ - {"curve": 0, "c2": 0.2, "c3": 0.698}, {"time": 0.1667, "angle": -6, "curve": 0.305, "c3": 0.698}, {"time": 0.25, "angle": 1.14, "curve": 0.301, "c3": 0.698}, - {"time": 0.4167, "angle": -8.39, "curve": 0, "c2": 0.2, "c3": 0.698}, {"time": 0.5833, "angle": 0.59, "curve": 0.305, "c3": 0.698}, - {"time": 0.75, "angle": -10.53, "curve": 0, "c2": 0.2, "c3": 0.692}, {"time": 1, "angle": -2.29, "curve": 0.302, "c3": 0.692}, - {"time": 1.1667, "angle": -9.12, "curve": 0, "c2": 0.1, "c3": 0.844}, {"time": 1.3333} + "@pivot-main": { + "scale": [ + {"curve": 0.313, "c3": 0.699}, {"time": 0.3333, "y": 0.98, "curve": 0.313, "c3": 0.699}, {"time": 0.6667, "curve": 0.313, "c3": 0.699}, + {"time": 1, "y": 0.98, "curve": 0.313, "c3": 0.699}, {"time": 1.3333} ] }, - "back": { - "rotate": [ - {"curve": 0, "c2": 0.2, "c3": 0.698}, {"time": 0.1667, "angle": -1.84, "curve": 0.305, "c3": 0.698}, {"time": 0.25, "angle": 3, "curve": 0.301, "c3": 0.698}, - {"time": 0.4167, "angle": 0.04, "curve": 0, "c2": 0.2, "c3": 0.698}, {"time": 0.5833, "angle": 4.01, "curve": 0.305, "c3": 0.698}, - {"time": 0.75, "angle": 0.76, "curve": 0, "c2": 0.2, "c3": 0.692}, {"time": 1, "angle": 4.04, "curve": 0.302, "c3": 0.692}, - {"time": 1.1667, "angle": 1.6, "curve": 0, "c2": 0.1, "c3": 0.844}, {"time": 1.3333} - ] + "tail": { + "rotate": [{"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "angle": 4.54, "curve": 0.313, "c3": 0.699}, {"time": 1, "angle": -9.06, "curve": 0.313, "c3": 0.699}, {"time": 1.3333}] }, + "back": { + "rotate": [{"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "angle": -4.27, "curve": 0.313, "c3": 0.699}, {"time": 1, "angle": 2.83, "curve": 0.313, "c3": 0.699}, {"time": 1.3333}] + }, + "ear-right": {"rotate": [{"curve": 0.461, "c3": 0.543}, {"time": 0.6667, "angle": -3.91, "curve": 0.461, "c3": 0.543}, {"time": 1.3333}]}, + "ear-left": {"rotate": [{"curve": 0.461, "c3": 0.543}, {"time": 0.6667, "angle": -3.92, "curve": 0.461, "c3": 0.543}, {"time": 1.3333}]}, "@shadow": { - "translate": [ - {"curve": 0.315, "c4": 0.8}, {"time": 0.25, "x": -83.7, "curve": 0, "c2": 0.3, "c3": 0.535}, {"time": 0.4167, "x": -83.9, "curve": 0, "c2": 0.1, "c3": 0.85}, - {"time": 0.5833, "x": 94.25, "curve": 0.309, "c3": 0.691}, {"time": 0.75, "x": 94.33, "curve": 0.309, "c3": 0.691}, {"time": 1, "x": -50.6, "curve": "stepped"}, - {"time": 1.1667, "x": -50.6, "curve": 0.082, "c3": 0.928}, {"time": 1.3333} - ], "scale": [ - {"curve": 0.315, "c4": 0.8}, {"time": 0.25, "x": 1.04, "y": 1.04, "curve": 0, "c2": 0.3, "c3": 0.535}, {"time": 0.4167, "x": 0.95, "y": 0.95, "curve": 0, "c2": 0.1, "c3": 0.85}, - {"time": 0.5833, "x": 1.08, "y": 1.08, "curve": 0.309, "c3": 0.691}, {"time": 0.75, "x": 0.96, "y": 0.96, "curve": 0.309, "c3": 0.691}, - {"time": 1, "x": 1.08, "y": 1.08, "curve": 0.309, "c3": 0.691}, {"time": 1.1667, "x": 1.04, "y": 1.04, "curve": 0.082, "c3": 0.928}, {"time": 1.3333} + {"curve": 0.306, "c3": 0.695}, {"time": 0.3333, "x": 1.05, "y": 1.05, "curve": 0.306, "c3": 0.695}, {"time": 0.6667, "curve": 0.306, "c3": 0.695}, + {"time": 1, "x": 1.05, "y": 1.05, "curve": 0.306, "c3": 0.695}, {"time": 1.3333} ] }, - "@body3": { - "rotate": [ - {"angle": -3.55, "curve": 0.352, "c2": 0.4, "c3": 0.689, "c4": 0.75}, {"time": 0.0333, "angle": -1.23, "curve": 0.369, "c2": 0.63, "c3": 0.707}, - {"time": 0.0667, "curve": 0.25, "c3": 0.75}, {"time": 0.3, "angle": -14.35, "curve": 0.25, "c3": 0.75}, {"time": 0.5167, "curve": 0.25, "c3": 0.75}, - {"time": 0.7333, "angle": -14.35, "curve": 0.25, "c3": 0.75}, {"time": 0.95, "curve": 0.25, "c3": 0.75}, {"time": 1.1833, "angle": -14.35, "curve": 0.243, "c3": 0.654, "c4": 0.62}, - {"time": 1.3333, "angle": -3.55} - ], + "@mouth": { "translate": [ - {"x": 2.97, "y": -1.66, "curve": 0.369, "c2": 0.63, "c3": 0.707}, {"time": 0.0333, "curve": 0.25, "c3": 0.75}, {"time": 0.2667, "x": 34.51, "y": -19.31, "curve": 0.25, "c3": 0.75}, - {"time": 0.4833, "curve": 0.25, "c3": 0.75}, {"time": 0.7, "x": 34.51, "y": -19.31, "curve": 0.25, "c3": 0.75}, {"time": 0.9167, "curve": 0.25, "c3": 0.75}, - {"time": 1.15, "x": 34.51, "y": -19.31, "curve": 0.244, "c3": 0.693, "c4": 0.76}, {"time": 1.3333, "x": 2.97, "y": -1.66} + {"curve": 0.342, "c3": 0.67}, {"time": 0.1667, "x": 4.05, "y": 6.14, "curve": 0.342, "c3": 0.67}, {"time": 0.3333, "x": 0.01, "y": 12.29, "curve": 0.342, "c3": 0.67}, + {"time": 0.5, "x": -4.86, "y": 6.15, "curve": 0.342, "c3": 0.67}, {"time": 0.6667, "curve": 0.342, "c3": 0.67}, {"time": 0.8333, "x": 4.05, "y": 6.14, "curve": 0.342, "c3": 0.67}, + {"time": 1, "x": 0.01, "y": 12.29, "curve": 0.342, "c3": 0.67}, {"time": 1.1667, "x": -4.86, "y": 6.15, "curve": 0.342, "c3": 0.67}, {"time": 1.3333} ] - }, - "@body4": { + } + } + }, + "645705789": { + "slots": { + "eyes": {"attachment": [{"time": 0.0167, "name": "eyes-angry"}, {"time": 0.75, "name": "eyes-shut"}, {"time": 0.8333, "name": "eyes"}]}, + "leg-back-left": {"attachment": [{"time": 0.35, "name": "mystic-leg-back-left-long"}, {"time": 0.5833, "name": "mystic-leg-back-left"}]}, + "mouth": {"attachment": [{"time": 0.0167, "name": "mouth-bite"}, {"time": 0.2667, "name": "mouth-open"}, {"time": 0.5833, "name": "mouth-bite"}, {"time": 0.8333, "name": "mouth"}]} + }, + "bones": { + "@pivot-back": { "rotate": [ - {"angle": 4.15, "curve": 0.342, "c2": 0.36, "c3": 0.69, "c4": 0.74}, {"time": 0.0667, "angle": 1.24, "curve": 0.378, "c2": 0.61, "c3": 0.721}, - {"time": 0.1167, "curve": 0.25, "c3": 0.75}, {"time": 0.35, "angle": 7.58, "curve": 0.25, "c3": 0.75}, {"time": 0.5667, "curve": 0.25, "c3": 0.75}, - {"time": 0.7833, "angle": 7.58, "curve": 0.25, "c3": 0.75}, {"time": 1, "curve": 0.25, "c3": 0.75}, {"time": 1.2333, "angle": 7.58, "curve": 0.253, "c3": 0.622, "c4": 0.48}, - {"time": 1.3333, "angle": 4.15} + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "angle": -3.92, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "angle": 2.51, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.3333, "angle": -6, "curve": "stepped"}, {"time": 0.35, "angle": -16}, {"time": 0.5667, "angle": -16.5, "curve": "stepped"}, {"time": 0.5833, "curve": 0.313, "c3": 0.699}, + {"time": 0.75, "angle": 6, "curve": 0.313, "c3": 0.699}, {"time": 0.9167} ], "translate": [ - {"x": 11.72, "y": -1.86, "curve": 0.382, "c2": 0.58, "c3": 0.732}, {"time": 0.0667, "curve": 0.25, "c3": 0.75}, {"time": 0.3, "x": 46.53, "y": -7.39, "curve": 0.25, "c3": 0.75}, - {"time": 0.5167, "curve": 0.25, "c3": 0.75}, {"time": 0.7333, "x": 46.53, "y": -7.39, "curve": 0.25, "c3": 0.75}, {"time": 0.95, "curve": 0.25, "c3": 0.75}, - {"time": 1.1833, "x": 46.53, "y": -7.39, "curve": 0.243, "c3": 0.654, "c4": 0.62}, {"time": 1.3333, "x": 11.72, "y": -1.86} - ] + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "x": 71.93, "y": -12.95, "curve": "stepped"}, {"time": 0.25, "x": 71.93, "y": -12.95, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.3333, "x": -135.5, "curve": "stepped"}, {"time": 0.35, "x": -560.54, "y": 85.29}, {"time": 0.5667, "x": -562.89, "y": 81.57, "curve": "stepped"}, + {"time": 0.5833, "x": -151.24, "curve": 0.313, "c3": 0.699}, {"time": 0.75, "x": -151.24, "y": 4.06, "curve": 0.313, "c3": 0.699}, {"time": 0.9167} + ], + "scale": [{"time": 0.3333, "curve": "stepped"}, {"time": 0.35, "x": -1, "curve": "stepped"}, {"time": 0.5667, "x": -1, "curve": "stepped"}, {"time": 0.5833}] }, - "@body6": { - "rotate": [ - {"angle": 10.03, "curve": 0.336, "c2": 0.34, "c3": 0.691, "c4": 0.74}, {"time": 0.0833, "angle": 2.53, "curve": 0.378, "c2": 0.61, "c3": 0.721}, - {"time": 0.1333, "curve": 0.25, "c3": 0.75}, {"time": 0.3667, "angle": 15.47, "curve": 0.25, "c3": 0.75}, {"time": 0.5833, "curve": 0.25, "c3": 0.75}, - {"time": 0.8, "angle": 15.47, "curve": 0.25, "c3": 0.75}, {"time": 1.0167, "curve": 0.25, "c3": 0.75}, {"time": 1.25, "angle": 15.47, "curve": 0.259, "c3": 0.618, "c4": 0.45}, - {"time": 1.3333, "angle": 10.03} + "@shadow": { + "translate": [ + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 61.96, "curve": "stepped"}, {"time": 0.25, "x": 61.96, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.3333, "x": -143.36, "curve": "stepped"}, {"time": 0.35, "x": -143.36}, {"time": 0.5667, "x": -157.56, "curve": "stepped"}, {"time": 0.5833, "x": -161.35, "curve": "stepped"}, + {"time": 0.75, "x": -161.35, "curve": 0.313, "c3": 0.699}, {"time": 0.9167} ], + "scale": [ + {"time": 0.0833, "curve": 0, "c2": 0.26, "c3": 0.369, "c4": 0.62}, {"time": 0.25, "x": 1.06, "y": 1.06, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "curve": "stepped"}, + {"time": 0.35}, {"time": 0.5667, "x": 1.08, "y": 1.08, "curve": "stepped"}, {"time": 0.5833, "curve": 0.313, "c3": 0.699}, + {"time": 0.75, "x": 1.08, "y": 1.08, "curve": 0.313, "c3": 0.699}, {"time": 0.9167} + ] + }, + "leg-back-left-IK": { "translate": [ - {"x": -5.93, "y": -0.4, "curve": 0.382, "c2": 0.55, "c3": 0.741}, {"time": 0.0833, "curve": 0.25, "c3": 0.75}, {"time": 0.3167, "x": -17.06, "y": -1.14, "curve": 0.25, "c3": 0.75}, - {"time": 0.5333, "curve": 0.25, "c3": 0.75}, {"time": 0.75, "x": -17.06, "y": -1.14, "curve": 0.25, "c3": 0.75}, {"time": 0.9667, "curve": 0.25, "c3": 0.75}, - {"time": 1.2, "x": -17.06, "y": -1.14, "curve": 0.245, "c3": 0.64, "c4": 0.57}, {"time": 1.3333, "x": -5.93, "y": -0.4} + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.1333, "x": 80.9, "curve": 0.161, "c3": 0.854}, {"time": 0.25, "x": 62.82, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.3333, "x": -99.34, "y": 18.56, "curve": "stepped"}, {"time": 0.35, "x": -653.9, "y": 153.81}, {"time": 0.5667, "x": -653.9, "y": 167.85, "curve": "stepped"}, + {"time": 0.5833, "x": -134.74, "curve": "stepped"}, {"time": 0.75, "x": -134.74, "curve": 0.313, "c3": 0.699}, {"time": 0.9167} ] }, - "@body2": { - "rotate": [ - {"angle": -4.48, "curve": 0.34, "c2": 0.35, "c3": 0.677, "c4": 0.7}, {"time": 0.0333, "angle": -2.52, "curve": 0.382, "c2": 0.58, "c3": 0.732}, {"time": 0.1, "curve": 0.25, "c3": 0.75}, - {"time": 0.3333, "angle": -10.03, "curve": 0.25, "c3": 0.75}, {"time": 0.55, "curve": 0.25, "c3": 0.75}, {"time": 0.7667, "angle": -10.03, "curve": 0.25, "c3": 0.75}, - {"time": 0.9833, "curve": 0.25, "c3": 0.75}, {"time": 1.2167, "angle": -10.03, "curve": 0.248, "c3": 0.629, "c4": 0.52}, {"time": 1.3333, "angle": -4.48} - ], + "leg-front-right-IK": { "translate": [ - {"x": 0.24, "y": 0.6, "curve": 0.369, "c2": 0.63, "c3": 0.707}, {"time": 0.0333, "curve": 0.25, "c3": 0.75}, {"time": 0.2667, "x": 2.83, "y": 6.92, "curve": 0.25, "c3": 0.75}, - {"time": 0.4833, "curve": 0.25, "c3": 0.75}, {"time": 0.7, "x": 2.83, "y": 6.92, "curve": 0.25, "c3": 0.75}, {"time": 0.9167, "curve": 0.25, "c3": 0.75}, - {"time": 1.15, "x": 2.83, "y": 6.92, "curve": 0.244, "c3": 0.693, "c4": 0.76}, {"time": 1.3333, "x": 0.24, "y": 0.6} + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 22.35, "curve": 0.306, "c3": 0.695}, {"time": 0.25, "x": 42.9, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.3333, "x": -131.73, "y": 44.58, "curve": "stepped"}, {"time": 0.35, "x": 244.36, "y": -4.92, "curve": 0.31, "c4": 0.8}, + {"time": 0.5667, "x": 247.43, "y": -1.85, "curve": "stepped"}, {"time": 0.5833, "x": -180.48, "curve": "stepped"}, {"time": 0.75, "x": -180.48, "curve": 0.313, "c3": 0.699}, + {"time": 0.9167} ] }, - "body-braid2": { - "rotate": [ - {"angle": 0.07, "curve": 0.25, "c3": 0.75}, {"time": 0.1667, "angle": 13.44, "curve": 0.25, "c3": 0.75}, {"time": 0.3333, "curve": 0.25, "c3": 0.75}, - {"time": 0.5167, "angle": 19.59, "curve": 0.25, "c3": 0.75}, {"time": 0.75, "angle": -7.14, "curve": 0.25, "c3": 0.75}, {"time": 1.0333, "angle": 4.57, "curve": 0.25, "c3": 0.75}, - {"time": 1.3333, "angle": 0.07} + "leg-front-left-IK": { + "translate": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "x": 40.76, "y": 5.08, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "x": 49, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.3333, "x": -180.92, "y": 40.32, "curve": "stepped"}, {"time": 0.35, "x": -197.17}, {"time": 0.5667, "x": -230.7, "y": 4.81, "curve": "stepped"}, + {"time": 0.5833, "x": -180.48, "curve": "stepped"}, {"time": 0.75, "x": -180.48, "curve": 0.313, "c3": 0.699}, {"time": 0.9167} ] }, - "body-braid3": { - "rotate": [ - {"angle": 0.5, "curve": 0.371, "c2": 0.62, "c3": 0.71}, {"time": 0.05, "angle": 0.07, "curve": 0.25, "c3": 0.75}, {"time": 0.2167, "angle": 20.19, "curve": 0.25, "c3": 0.75}, - {"time": 0.3833, "curve": 0.25, "c3": 0.75}, {"time": 0.5667, "angle": 31.19, "curve": 0.25, "c3": 0.75}, {"time": 0.8, "angle": -7.14, "curve": 0.25, "c3": 0.75}, - {"time": 1.0833, "angle": 4.57, "curve": 0.243, "c3": 0.689, "c4": 0.75}, {"time": 1.3333, "angle": 0.5} + "@leg-front-left": { + "translate": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "x": -2.9, "y": -1.1, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.25, "x": -0.62, "y": -3.44, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "x": -1, "y": -5.53, "curve": "stepped"}, {"time": 0.35, "x": 4.4, "y": -4.91}, + {"time": 0.5667, "x": 7.49, "y": -5.17, "curve": "stepped"}, {"time": 0.5833, "x": 18.69, "y": 1.85, "curve": "stepped"}, + {"time": 0.75, "x": 18.69, "y": 1.85, "curve": 0.306, "c3": 0.695}, {"time": 0.9167} ] }, - "body-braid": { - "rotate": [ - {"angle": 5.4, "curve": 0.362, "c2": 0.64, "c3": 0.698}, {"time": 0.0333, "angle": 5.16, "curve": 0.25, "c3": 0.75}, {"time": 0.2, "angle": 10.61, "curve": 0.25, "c3": 0.75}, - {"time": 0.3667, "angle": 3.41, "curve": 0.25, "c3": 0.75}, {"time": 0.55, "angle": 30.24, "curve": 0.25, "c3": 0.75}, {"time": 0.7833, "angle": -2.04, "curve": 0.25, "c3": 0.75}, - {"time": 1.0667, "angle": 9.67, "curve": 0.245, "c3": 0.707, "c4": 0.82}, {"time": 1.3333, "angle": 5.4} + "@leg-front-right": { + "translate": [ + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 4.31, "y": 11.86, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.25, "x": -10.48, "y": -15.33, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "x": -3.15, "y": 1.33, "curve": "stepped"}, {"time": 0.35, "x": -3.84, "y": 7.68}, + {"time": 0.5667, "x": -3.53, "y": 9.04, "curve": "stepped"}, {"time": 0.5833, "x": -2.24, "y": 13.67, "curve": 0.313, "c3": 0.699}, + {"time": 0.75, "x": -2.69, "y": -18.63, "curve": 0.313, "c3": 0.699}, {"time": 0.9167} ] }, - "body-braid4": { - "rotate": [ - {"angle": 1.66, "curve": 0.382, "c2": 0.55, "c3": 0.741}, {"time": 0.1167, "angle": 0.07, "curve": 0.25, "c3": 0.75}, {"time": 0.2833, "angle": 19.6, "curve": 0.25, "c3": 0.75}, - {"time": 0.45, "curve": 0.25, "c3": 0.75}, {"time": 0.6333, "angle": 23.3, "curve": 0.25, "c3": 0.75}, {"time": 0.8667, "angle": -7.14, "curve": 0.25, "c3": 0.75}, - {"time": 1.15, "angle": 4.57, "curve": 0.245, "c3": 0.639, "c4": 0.56}, {"time": 1.3333, "angle": 1.66} - ], - "translate": [{"x": -2.3, "y": -9.73}] + "@leg-back-left": { + "translate": [ + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.1333, "x": 0.67, "y": -7.85, "curve": 0.161, "c3": 0.854}, {"time": 0.25, "x": 0.74, "y": -5.43, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.3333, "x": -0.54, "y": 4.44, "curve": "stepped"}, {"time": 0.35, "x": 10.26, "y": 0.56, "curve": "stepped"}, {"time": 0.5667, "x": 10.26, "y": 0.56, "curve": "stepped"}, + {"time": 0.5833} + ] }, - "body-braid5": { + "tail": { "rotate": [ - {"angle": 8.42, "curve": 0.382, "c2": 0.57, "c3": 0.735}, {"time": 0.1, "angle": 7.14, "curve": 0.25, "c3": 0.75}, {"time": 0.2667, "angle": 31.61, "curve": 0.25, "c3": 0.75}, - {"time": 0.4333, "angle": 7.07, "curve": 0.25, "c3": 0.75}, {"time": 0.6167, "angle": 41.8, "curve": 0.25, "c3": 0.75}, {"time": 0.85, "angle": -0.06, "curve": 0.25, "c3": 0.75}, - {"time": 1.1333, "angle": 11.65, "curve": 0.243, "c3": 0.649, "c4": 0.6}, {"time": 1.3333, "angle": 8.42} + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "angle": 15.61, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "angle": 20.44, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.3333, "angle": -15.58, "curve": "stepped"}, {"time": 0.35, "angle": 30.35}, {"time": 0.5667, "angle": 35.35, "curve": "stepped"}, + {"time": 0.5833, "angle": -11.84, "curve": 0.313, "c3": 0.699}, {"time": 0.75, "angle": 16.95, "curve": 0.313, "c3": 0.699}, {"time": 0.9167} ] }, - "body-braid6": { + "@pivot-main": { + "translate": [{"time": 0.75, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.8333, "y": 31, "curve": 0.315, "c4": 0.8}, {"time": 0.9167}], + "scale": [{"time": 0.5667, "curve": "stepped"}, {"time": 0.75, "y": 0.98, "curve": 0.154, "c4": 0.9}, {"time": 0.9167}] + } + }, + "drawOrder": [{"time": 0.35, "offsets": [{"slot": "leg-back-left", "offset": 10}]}, {"time": 0.5833}], + "events": [{"time": 0.35, "name": "start-attack"}, {"time": 0.5667, "name": "start-attack"}] + }, + "3979179032": { + "slots": { + "body-light-breath": {"color": [{"color": "ffffff00", "curve": 0.25, "c3": 0.75}, {"time": 1.5, "color": "ffffffff", "curve": 0.25, "c3": 0.75}, {"time": 3, "color": "ffffff00"}]}, + "body-light-pulse": { + "color": [ + {"color": "ffffff59"}, {"time": 0.1, "color": "ffffff00", "curve": "stepped"}, {"time": 0.4, "color": "ffffff00"}, {"time": 0.4333, "color": "ffffffff", "curve": "stepped"}, + {"time": 0.5667, "color": "ffffffff"}, {"time": 0.85, "color": "ffffff00", "curve": "stepped"}, {"time": 1.15, "color": "ffffff00"}, + {"time": 1.1833, "color": "ffffffff", "curve": "stepped"}, {"time": 1.3167, "color": "ffffffff"}, {"time": 1.6, "color": "ffffff00", "curve": "stepped"}, + {"time": 1.9, "color": "ffffff00"}, {"time": 1.9333, "color": "ffffffff", "curve": "stepped"}, {"time": 2.0667, "color": "ffffffff"}, + {"time": 2.35, "color": "ffffff00", "curve": "stepped"}, {"time": 2.65, "color": "ffffff00"}, {"time": 2.6833, "color": "ffffffff", "curve": "stepped"}, + {"time": 2.8167, "color": "ffffffff"}, {"time": 3, "color": "ffffff59"} + ] + } + }, + "bones": { + "body-light-life": { "rotate": [ - {"angle": -1.62, "curve": 0.361, "c2": 0.44, "c3": 0.755}, {"time": 0.1833, "angle": -4.54, "curve": 0.25, "c3": 0.75}, {"time": 0.35, "angle": 13.39, "curve": 0.25, "c3": 0.75}, - {"time": 0.5167, "angle": -4.61, "curve": 0.25, "c3": 0.75}, {"time": 0.7, "angle": 13.15, "curve": 0.25, "c3": 0.75}, {"time": 0.9333, "angle": -11.74, "curve": 0.25, "c3": 0.75}, - {"time": 1.2167, "angle": -0.03, "curve": 0.259, "c3": 0.618, "c4": 0.45}, {"time": 1.3333, "angle": -1.62} + {}, {"time": 0.4833, "angle": -157.17, "curve": "stepped"}, {"time": 0.5, "curve": "stepped"}, {"time": 0.75}, {"time": 1.2333, "angle": -157.17, "curve": "stepped"}, + {"time": 1.25, "curve": "stepped"}, {"time": 1.5}, {"time": 1.9833, "angle": -157.17, "curve": "stepped"}, {"time": 2, "curve": "stepped"}, {"time": 2.25}, + {"time": 2.7333, "angle": -157.17, "curve": "stepped"}, {"time": 2.75} ] } } }, - "180682469": { + "1566344788": { "slots": { - "eyes": { - "attachment": [ - {"time": 0.05, "name": "eyes-angry"}, {"time": 0.55, "name": "eyes-shut"}, {"time": 0.65, "name": "eyes-angry"}, {"time": 0.9, "name": "eyes-shut"}, {"time": 0.9667, "name": "eyes"} + "body-light-breath": {"color": [{"color": "ffffff00", "curve": 0.25, "c3": 0.75}, {"time": 2, "color": "ffffffff", "curve": 0.25, "c3": 0.75}, {"time": 4, "color": "ffffff00"}]}, + "body-light-pulse": { + "color": [ + {"color": "ffffff00", "curve": "stepped"}, {"time": 0.55, "color": "ffffff00"}, {"time": 0.5833, "color": "ffffffff", "curve": "stepped"}, {"time": 0.7167, "color": "ffffffff"}, + {"time": 1, "color": "ffffff00", "curve": "stepped"}, {"time": 1.55, "color": "ffffff00"}, {"time": 1.5833, "color": "ffffffff", "curve": "stepped"}, + {"time": 1.7167, "color": "ffffffff"}, {"time": 2, "color": "ffffff00", "curve": "stepped"}, {"time": 2.55, "color": "ffffff00"}, + {"time": 2.5833, "color": "ffffffff", "curve": "stepped"}, {"time": 2.7167, "color": "ffffffff"}, {"time": 3, "color": "ffffff00", "curve": "stepped"}, + {"time": 3.55, "color": "ffffff00"}, {"time": 3.5833, "color": "ffffffff", "curve": "stepped"}, {"time": 3.7167, "color": "ffffffff"}, {"time": 4, "color": "ffffff00"} ] - }, - "mouth": { - "attachment": [ - {"time": 0.1167, "name": "mouth-open"}, {"time": 0.3833, "name": "mouth-bite"}, {"time": 0.65, "name": "mouth-open"}, {"time": 0.9, "name": "mouth-bite"}, - {"time": 0.9667, "name": "mouth"} + } + }, + "bones": { + "body-light-life": { + "rotate": [ + {}, {"time": 0.65, "angle": -157.17, "curve": "stepped"}, {"time": 0.6667, "curve": "stepped"}, {"time": 1}, {"time": 1.65, "angle": -157.17, "curve": "stepped"}, + {"time": 1.6667, "curve": "stepped"}, {"time": 2}, {"time": 2.65, "angle": -157.17, "curve": "stepped"}, {"time": 2.6667, "curve": "stepped"}, {"time": 3}, + {"time": 3.65, "angle": -157.17, "curve": "stepped"}, {"time": 3.6667} ] } + } + }, + "25318063": { + "slots": { + "eyes": {"attachment": [{"time": 1, "name": "eyes-shut"}, {"time": 1.0833, "name": "eyes"}]}, + "mouth-accessory": { + "color": [ + {"time": 0.5833, "color": "ffffff00", "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.6667, "color": "ffffffff", "curve": "stepped"}, + {"time": 0.9167, "color": "ffffffff", "curve": 0.306, "c4": 0.8}, {"time": 1, "color": "ffffff00"} + ], + "attachment": [{"time": 0.5833, "name": "mouth-accessory"}, {"time": 1, "name": null}] + } }, "bones": { "@pivot-back": { "rotate": [ - {"curve": 0, "c2": 0.2, "c3": 0.695}, {"time": 0.1, "angle": 6, "curve": 0, "c2": 0.2, "c3": 0.695}, {"time": 0.25, "angle": -10.31, "curve": 0.317, "c4": 0.8}, - {"time": 0.3833, "angle": 5}, {"time": 0.6333, "angle": 6, "curve": 0, "c2": 0.2, "c3": 0.695}, {"time": 0.7667, "angle": -5.94, "curve": 0.317, "c4": 0.8}, - {"time": 0.9, "angle": 6.92, "curve": 0, "c2": 0.2, "c3": 0.695}, {"time": 1} + {"curve": 0.313, "c3": 0.699}, {"time": 0.3333, "angle": 2.04, "curve": 0.313, "c3": 0.699}, {"time": 0.6667, "curve": 0.313, "c3": 0.699}, + {"time": 1, "angle": 1.79, "curve": 0.313, "c3": 0.699}, {"time": 1.3333} ], "translate": [ - {"time": 0.1, "curve": 0, "c2": 0.2, "c3": 0.695}, {"time": 0.25, "y": 82.86, "curve": 0.317, "c4": 0.8}, {"time": 0.3833, "curve": "stepped"}, - {"time": 0.6333, "curve": 0, "c2": 0.2, "c3": 0.695}, {"time": 0.7667, "y": 70.12, "curve": 0.317, "c4": 0.8}, {"time": 0.9} - ] - }, - "@pivot-main": { - "translate": [{"time": 0.1, "curve": 0, "c2": 0.15, "c3": 0.703}, {"time": 0.3833, "x": 542.6}, {"time": 0.6333, "x": 603.73, "curve": 0, "c2": 0.1, "c3": 0.852}, {"time": 0.9}] - }, - "@leg-front-left": { - "translate": [ - {"curve": 0, "c2": 0.2, "c3": 0.695}, {"time": 0.1, "x": -1.93, "y": -18.15, "curve": 0, "c2": 0.3, "c3": 0.62}, {"time": 0.25, "curve": 0.313, "c4": 0.8}, - {"time": 0.3833, "x": -1.93, "y": -18.15}, {"time": 0.6333, "x": -1.68, "y": -15.27, "curve": 0, "c2": 0.2, "c3": 0.691}, {"time": 0.7667, "curve": 0.309, "c4": 0.8}, - {"time": 0.9, "x": -1.93, "y": -18.15, "curve": 0, "c2": 0.19, "c3": 0.695}, {"time": 1} - ] + {"curve": 0.313, "c3": 0.699}, {"time": 0.3333, "y": -6.53, "curve": 0.313, "c3": 0.699}, {"time": 0.6667, "curve": 0.313, "c3": 0.699}, + {"time": 1, "y": -8.86, "curve": 0.313, "c3": 0.699}, {"time": 1.3333} + ], + "scale": [{"curve": 0.313, "c3": 0.699}, {"time": 0.6667, "y": 0.99, "curve": 0.313, "c3": 0.699}, {"time": 1.3333}] }, "@leg-front-right": { "translate": [ - {"curve": 0, "c2": 0.2, "c3": 0.695}, {"time": 0.1, "x": -3.41, "y": -31.95, "curve": 0, "c2": 0.3, "c3": 0.62}, {"time": 0.25, "curve": 0.313, "c4": 0.8}, - {"time": 0.3833, "x": -3.41, "y": -31.95}, {"time": 0.6333, "x": -3.16, "y": -29.07, "curve": 0, "c2": 0.2, "c3": 0.691}, {"time": 0.7667, "curve": 0.309, "c4": 0.8}, - {"time": 0.9, "x": -3.41, "y": -31.95, "curve": 0, "c2": 0.19, "c3": 0.695}, {"time": 1} - ] - }, - "@leg-back-left": { - "translate": [ - {"curve": 0, "c2": 0.2, "c3": 0.695}, {"time": 0.1, "x": -0.42, "y": -4.72, "curve": 0, "c2": 0.3, "c3": 0.62}, {"time": 0.25, "curve": 0.313, "c4": 0.8}, - {"time": 0.3833, "x": -0.42, "y": -4.72, "curve": "stepped"}, {"time": 0.6333, "x": -0.42, "y": -4.72, "curve": 0, "c2": 0.2, "c3": 0.691}, {"time": 0.7667, "curve": 0.309, "c4": 0.8}, - {"time": 0.9, "x": -0.42, "y": -4.72, "curve": 0, "c2": 0.19, "c3": 0.695}, {"time": 1} + {"curve": 0.313, "c3": 0.699}, {"time": 0.3333, "x": 0.02, "y": -16.89, "curve": 0.313, "c3": 0.699}, {"time": 0.6667, "x": -0.04, "y": 2.46, "curve": 0.313, "c3": 0.699}, + {"time": 1, "x": -0.02, "y": -18.9, "curve": 0.313, "c3": 0.699}, {"time": 1.3333} ] }, - "leg-front-right-IK": { + "@leg-front-left": { "translate": [ - {"time": 0.1, "curve": 0, "c2": 0.3, "c3": 0.62}, {"time": 0.2167, "x": -58.81, "y": 174.08, "curve": 0.257, "c3": 0.637, "c4": 0.43}, - {"time": 0.2833, "x": 10.68, "y": 136.08, "curve": 0.518, "c2": 0.35, "c4": 0.83}, {"time": 0.3833, "x": 11}, {"time": 0.6333, "x": -14.37, "curve": 0, "c2": 0.2, "c3": 0.691}, - {"time": 0.7333, "x": 26.13, "y": 111.42, "curve": 0.257, "c3": 0.63, "c4": 0.42}, {"time": 0.8, "x": -44.87, "y": 129.12, "curve": 0.503, "c2": 0.34, "c4": 0.83}, {"time": 0.9} + {"curve": 0.313, "c3": 0.699}, {"time": 0.3333, "x": 0.22, "y": -5.13, "curve": 0.313, "c3": 0.699}, {"time": 0.6667, "x": -0.03, "y": 1.81, "curve": 0.313, "c3": 0.699}, + {"time": 1, "x": 0.2, "y": -7.06, "curve": 0.313, "c3": 0.699}, {"time": 1.3333} + ], + "scale": [ + {"curve": 0.313, "c3": 0.699}, {"time": 0.3333, "x": 0.905, "curve": 0.313, "c3": 0.699}, {"time": 0.6667, "curve": 0.313, "c3": 0.699}, + {"time": 1, "x": 0.905, "curve": 0.313, "c3": 0.699}, {"time": 1.3333} ] }, - "leg-front-left-IK": { + "@leg-back-left": { "translate": [ - {"time": 0.1, "curve": 0, "c2": 0.3, "c3": 0.62}, {"time": 0.2167, "x": -73.46, "y": 138.38, "curve": 0.257, "c3": 0.637, "c4": 0.43}, - {"time": 0.2833, "x": -0.77, "y": 108.17, "curve": 0.518, "c2": 0.35, "c4": 0.83}, {"time": 0.3833, "x": 11}, {"time": 0.6333, "x": -14.37, "curve": 0, "c2": 0.2, "c3": 0.691}, - {"time": 0.7333, "x": 11.48, "y": 75.71, "curve": 0.257, "c3": 0.63, "c4": 0.42}, {"time": 0.8, "x": -56.77, "y": 100.13, "curve": 0.503, "c2": 0.34, "c4": 0.83}, {"time": 0.9} + {"curve": 0.313, "c3": 0.699}, {"time": 0.3333, "x": 0.22, "y": -4.11, "curve": 0.313, "c3": 0.699}, {"time": 0.6667, "x": -0.03, "y": 1.69, "curve": 0.313, "c3": 0.699}, + {"time": 1, "x": 0.2, "y": -5.68, "curve": 0.313, "c3": 0.699}, {"time": 1.3333} + ], + "scale": [ + {"curve": 0.313, "c3": 0.699}, {"time": 0.3333, "x": 0.943, "curve": 0.313, "c3": 0.699}, {"time": 0.6667, "curve": 0.313, "c3": 0.699}, + {"time": 1, "x": 0.943, "curve": 0.313, "c3": 0.699}, {"time": 1.3333} ] }, - "leg-back-left-IK": { - "translate": [ - {"time": 0.1, "curve": 0, "c2": 0.3, "c3": 0.62}, {"time": 0.2, "x": -56.56, "y": 95.34, "curve": 0.257, "c3": 0.637, "c4": 0.43}, - {"time": 0.2667, "x": 21.01, "y": 67.87, "curve": 0.518, "c2": 0.35, "c4": 0.83}, {"time": 0.3833, "x": 0.85}, {"time": 0.6333, "x": -16.87, "curve": 0, "c2": 0.2, "c3": 0.691}, - {"time": 0.7167, "x": 21.01, "y": 67.87, "curve": 0.257, "c3": 0.63, "c4": 0.42}, {"time": 0.7833, "x": -41.39, "y": 75.95, "curve": 0.503, "c2": 0.34, "c4": 0.83}, {"time": 0.9} + "@pivot-main": { + "scale": [ + {"curve": 0.313, "c3": 0.699}, {"time": 0.3333, "y": 0.98, "curve": 0.313, "c3": 0.699}, {"time": 0.6667, "curve": 0.313, "c3": 0.699}, + {"time": 1, "y": 0.98, "curve": 0.313, "c3": 0.699}, {"time": 1.3333} ] }, "tail": { - "rotate": [ - {"curve": 0, "c2": 0.2, "c3": 0.695}, {"time": 0.1, "angle": 21.16, "curve": 0, "c2": 0.2, "c3": 0.695}, {"time": 0.25, "angle": -27.62, "curve": 0.317, "c4": 0.8}, - {"time": 0.3833, "angle": 17.89}, {"time": 0.6333, "angle": 23.46, "curve": 0, "c2": 0.2, "c3": 0.695}, {"time": 0.7667, "angle": -27.7, "curve": 0.317, "c4": 0.8}, - {"time": 0.9, "angle": 21.16, "curve": 0, "c2": 0.2, "c3": 0.695}, {"time": 1} - ] + "rotate": [{"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "angle": 4.54, "curve": 0.313, "c3": 0.699}, {"time": 1, "angle": -9.06, "curve": 0.313, "c3": 0.699}, {"time": 1.3333}] + }, + "back": { + "rotate": [{"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "angle": -4.27, "curve": 0.313, "c3": 0.699}, {"time": 1, "angle": 2.83, "curve": 0.313, "c3": 0.699}, {"time": 1.3333}] }, + "ear-right": {"rotate": [{"curve": 0.461, "c3": 0.543}, {"time": 0.6667, "angle": -3.91, "curve": 0.461, "c3": 0.543}, {"time": 1.3333}]}, + "ear-left": {"rotate": [{"curve": 0.461, "c3": 0.543}, {"time": 0.6667, "angle": -3.92, "curve": 0.461, "c3": 0.543}, {"time": 1.3333}]}, "@shadow": { - "translate": [{"time": 0.1}, {"time": 0.3833, "x": 542.6}, {"time": 0.6333, "x": 603.73, "curve": 0, "c2": 0.1, "c3": 0.852}, {"time": 0.9}], "scale": [ - {}, {"time": 0.1, "x": 1.08, "y": 1.08}, {"time": 0.25, "x": 0.9, "y": 0.9}, {"time": 0.3833, "x": 1.08, "y": 1.08}, {"time": 0.6333, "x": 1.1, "y": 1.1}, - {"time": 0.7833, "x": 0.9, "y": 0.9}, {"time": 0.9, "x": 1.08, "y": 1.08}, {"time": 1} + {"curve": 0.306, "c3": 0.695}, {"time": 0.3333, "x": 1.05, "y": 1.05, "curve": 0.306, "c3": 0.695}, {"time": 0.6667, "curve": 0.306, "c3": 0.695}, + {"time": 1, "x": 1.05, "y": 1.05, "curve": 0.306, "c3": 0.695}, {"time": 1.3333} ] }, - "@body3": { + "mouth-accessory": { + "rotate": [{"time": 0.5833}, {"time": 1, "angle": -120}], + "scale": [{"time": 0.5667}, {"time": 0.5833, "x": 0.6, "y": 0.6}, {"time": 0.8}, {"time": 1, "x": 0.6, "y": 0.6}, {"time": 1.0167}] + } + } + }, + "2880388010": { + "slots": { + "ball": { + "color": [ + {"color": "ffffff00", "curve": "stepped"}, {"time": 0.1667, "color": "ffffff00", "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "color": "ffffffff", "curve": "stepped"}, + {"time": 2.9167, "color": "ffffffff", "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 3.0833, "color": "ffffff00"} + ], + "attachment": [{"name": "ball"}] + }, + "eyes": {"attachment": [{"time": 0.5, "name": "eyes-shut"}, {"time": 0.5833, "name": "eyes"}, {"time": 3.0833, "name": "eyes-shut"}, {"time": 3.1667, "name": "eyes"}]}, + "mouth": {"attachment": [{"time": 0.1833, "name": "mouth-open"}, {"time": 0.5, "name": "mouth"}, {"time": 2.7667, "name": "mouth-open"}, {"time": 2.9167, "name": "mouth"}]} + }, + "bones": { + "@pivot-back": { "rotate": [ - {"angle": -6.19, "curve": 0.404, "c2": 0.56, "c3": 0.741}, {"time": 0.0667, "curve": 0.25, "c3": 0.75}, {"time": 0.1667, "angle": -3.77, "curve": 0.144, "c3": 0.557}, - {"time": 0.4167, "angle": -14, "curve": 0.455, "c3": 0.807}, {"time": 0.7, "angle": -3.77, "curve": 0.144, "c3": 0.557}, - {"time": 0.8833, "angle": -14, "curve": 0.397, "c3": 0.737, "c4": 0.58}, {"time": 1, "angle": -6.19} + {"curve": 0, "c2": 0.3, "c3": 0.546}, {"time": 0.1667, "angle": 6, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "angle": -6.98, "curve": 0.464, "c4": 0.7}, + {"time": 0.5, "angle": 3, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.6667, "curve": "stepped"}, {"time": 2.5833, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 2.75, "angle": 6, "curve": 0, "c2": 0.3, "c3": 0.546}, {"time": 2.9167, "angle": -6, "curve": 0.464, "c4": 0.7}, + {"time": 3.0833, "angle": 6, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 3.25} ], "translate": [ - {"time": 0.1, "curve": 0.144, "c3": 0.557}, {"time": 0.35, "x": 45.36, "y": -33.56, "curve": 0.455, "c3": 0.807}, {"time": 0.6333, "curve": 0.144, "c3": 0.557}, - {"time": 0.8167, "x": 45.36, "y": -33.56, "curve": 0.455, "c3": 0.807}, {"time": 1} + {"curve": 0, "c2": 0.3, "c3": 0.546}, {"time": 0.1667, "y": 1.78, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "y": 353.14, "curve": 0.464, "c4": 0.7}, + {"time": 0.5, "y": 255, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.6667, "y": 267.67, "curve": 0.156, "c3": 0.693}, + {"time": 1.1667, "x": -30, "y": 267.67, "curve": 0.317, "c3": 0.693}, {"time": 2.1667, "x": 50, "y": 267.67, "curve": 0.317, "c3": 0.693}, + {"time": 2.5833, "y": 267.67, "curve": "stepped"}, {"time": 2.75, "y": 267.67, "curve": 0, "c2": 0.3, "c3": 0.546}, {"time": 2.9167, "y": 310, "curve": 0.464, "c4": 0.7}, + {"time": 3.0833} ] }, - "@body4": { - "rotate": [ - {"angle": 4.33, "curve": 0.391, "c2": 0.59, "c3": 0.726}, {"time": 0.05, "curve": 0.25, "c3": 0.75}, {"time": 0.15, "angle": -15.35, "curve": 0.144, "c3": 0.557}, - {"time": 0.4, "angle": 14.26, "curve": 0.455, "c3": 0.807}, {"time": 0.6833, "angle": -15.35, "curve": 0.144, "c3": 0.557}, - {"time": 0.8667, "angle": 14.26, "curve": 0.409, "c3": 0.752, "c4": 0.65}, {"time": 1, "angle": 4.33} - ], + "@leg-front-right": { "translate": [ - {"curve": 0.25, "c3": 0.75}, {"time": 0.1, "x": -1.59, "y": 23.93, "curve": 0.144, "c3": 0.557}, {"time": 0.35, "x": 6.55, "y": -29.78, "curve": 0.455, "c3": 0.807}, - {"time": 0.6333, "x": -1.59, "y": 23.93, "curve": 0.144, "c3": 0.557}, {"time": 0.8167, "x": 6.55, "y": -29.78, "curve": 0.455, "c3": 0.807}, {"time": 1} + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": -2.8, "y": -31.7, "curve": 0, "c2": 0.3, "c3": 0.546}, {"time": 0.25, "curve": "stepped"}, + {"time": 2.5833, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 2.75, "x": -2.8, "y": -31.7, "curve": 0.315, "c4": 0.8}, {"time": 2.8333, "curve": "stepped"}, + {"time": 3, "curve": 0.315, "c4": 0.8}, {"time": 3.0833, "x": -2.86, "y": -32.44, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 3.25} ] }, - "@body6": { - "rotate": [ - {"angle": 17.65, "curve": 0.372, "c2": 0.35, "c3": 0.707, "c4": 0.72}, {"time": 0.05, "angle": 7.83, "curve": 0.391, "c2": 0.59, "c3": 0.726}, {"time": 0.1, "curve": 0.25, "c3": 0.75}, - {"time": 0.2, "angle": -5.24, "curve": 0.144, "c3": 0.557}, {"time": 0.45, "angle": 25.77, "curve": 0.455, "c3": 0.807}, {"time": 0.7333, "angle": -5.24, "curve": 0.144, "c3": 0.557}, - {"time": 0.9167, "angle": 25.77, "curve": 0.375, "c3": 0.711, "c4": 0.48}, {"time": 1, "angle": 17.65} - ], + "@leg-front-left": { "translate": [ - {"x": -21.44, "y": 10.83, "curve": 0.391, "c2": 0.59, "c3": 0.726}, {"time": 0.05, "curve": 0.25, "c3": 0.75}, {"time": 0.15, "x": 5.81, "y": -4.07, "curve": 0.144, "c3": 0.557}, - {"time": 0.4, "x": -70.52, "y": 35.61, "curve": 0.455, "c3": 0.807}, {"time": 0.6833, "x": 5.81, "y": -4.07, "curve": 0.144, "c3": 0.557}, - {"time": 0.8667, "x": -70.52, "y": 35.61, "curve": 0.409, "c3": 0.752, "c4": 0.65}, {"time": 1, "x": -21.44, "y": 10.83} + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": -1.46, "y": -16.59, "curve": 0, "c2": 0.3, "c3": 0.546}, {"time": 0.25, "curve": "stepped"}, + {"time": 2.5833, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 2.75, "x": -1.46, "y": -16.59, "curve": 0.315, "c4": 0.8}, {"time": 2.8333, "curve": "stepped"}, + {"time": 3, "curve": 0.315, "c4": 0.8}, {"time": 3.0833, "x": -1.64, "y": -18.64, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 3.25} ] }, - "body-braid2": { - "rotate": [ - {"curve": 0.25, "c3": 0.75}, {"time": 0.1, "angle": -1.43, "curve": 0.144, "c3": 0.557}, {"time": 0.35, "angle": 20.83, "curve": 0.455, "c3": 0.807}, - {"time": 0.6333, "angle": -1.43, "curve": 0.144, "c3": 0.557}, {"time": 0.8167, "angle": 13.65, "curve": 0.455, "c3": 0.807}, {"time": 1} + "leg-front-left-IK": { + "translate": [ + {"time": 0.1667, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "x": -6.9, "y": 380.8, "curve": 0.315, "c4": 0.8}, {"time": 0.5, "x": -5.5, "y": 268.35, "curve": "stepped"}, + {"time": 0.6667, "x": -5.5, "y": 268.35, "curve": 0.317, "c3": 0.693}, {"time": 0.9167, "x": -38.87, "y": 268.35, "curve": 0.317, "c3": 0.693}, + {"time": 1.1667, "x": -10.16, "y": 268.35, "curve": 0.317, "c3": 0.693}, {"time": 1.4167, "x": -39.65, "y": 268.35, "curve": 0.317, "c3": 0.693}, + {"time": 1.6667, "x": 23.98, "y": 268.35, "curve": 0.317, "c3": 0.693}, {"time": 1.9167, "x": 5.36, "y": 268.35, "curve": 0.317, "c3": 0.693}, + {"time": 2.1667, "x": 67.44, "y": 268.35, "curve": 0.317, "c3": 0.693}, {"time": 2.4167, "x": -3.95, "y": 268.35, "curve": 0.317, "c3": 0.693}, + {"time": 2.5833, "x": -5.5, "y": 268.35, "curve": "stepped"}, {"time": 2.9167, "x": -5.5, "y": 268.35, "curve": 0.315, "c4": 0.8}, {"time": 3.0833} ] }, - "body-braid4": { - "rotate": [ - {"angle": 8.96, "curve": 0.404, "c2": 0.56, "c3": 0.741}, {"time": 0.0667, "curve": 0.25, "c3": 0.75}, {"time": 0.1667, "angle": -11.53, "curve": 0.144, "c3": 0.557}, - {"time": 0.4167, "angle": 27.46, "curve": 0.455, "c3": 0.807}, {"time": 0.7, "angle": -11.53, "curve": 0.144, "c3": 0.557}, - {"time": 0.8833, "angle": 20.28, "curve": 0.397, "c3": 0.737, "c4": 0.58}, {"time": 1, "angle": 8.96} + "leg-front-right-IK": { + "translate": [ + {"time": 0.1667, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "x": -6.9, "y": 397.8, "curve": 0.315, "c4": 0.8}, {"time": 0.5, "x": 15.4, "y": 268.08, "curve": "stepped"}, + {"time": 0.6667, "x": 15.4, "y": 268.08, "curve": 0.317, "c3": 0.693}, {"time": 0.9167, "x": 24.64, "y": 268.08, "curve": 0.317, "c3": 0.693}, + {"time": 1.1667, "x": -41.71, "y": 268.08, "curve": 0.317, "c3": 0.693}, {"time": 1.4167, "x": 22.12, "y": 268.08, "curve": 0.317, "c3": 0.693}, + {"time": 1.6667, "x": -0.56, "y": 268.08, "curve": 0.317, "c3": 0.693}, {"time": 1.9167, "x": 61.6, "y": 268.08, "curve": 0.317, "c3": 0.693}, + {"time": 2.1667, "x": 33.88, "y": 268.08, "curve": 0.317, "c3": 0.693}, {"time": 2.4167, "x": 49, "y": 268.08, "curve": 0.317, "c3": 0.693}, + {"time": 2.5833, "x": 15.4, "y": 268.08, "curve": "stepped"}, {"time": 2.9167, "x": 15.4, "y": 268.08, "curve": 0.315, "c4": 0.8}, {"time": 3.0833} ] }, - "body-braid3": { - "rotate": [ - {"angle": 4.44, "curve": 0.375, "c2": 0.62, "c3": 0.709, "c4": 0.99}, {"time": 0.0333, "curve": 0.25, "c3": 0.75}, {"time": 0.1333, "angle": -8.3, "curve": 0.144, "c3": 0.557}, - {"time": 0.3833, "angle": 33.27, "curve": 0.455, "c3": 0.807}, {"time": 0.6667, "angle": -8.3, "curve": 0.144, "c3": 0.557}, - {"time": 0.85, "angle": 26.09, "curve": 0.423, "c3": 0.768, "c4": 0.73}, {"time": 1, "angle": 4.44} + "leg-back-left-IK": { + "translate": [ + {"time": 0.1667, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "x": -0.4, "y": 363.25, "curve": 0.315, "c4": 0.8}, {"time": 0.5, "x": -26.16, "y": 267.01}, + {"time": 0.6667, "x": -33.59, "y": 267.01, "curve": 0.317, "c3": 0.693}, {"time": 0.9167, "x": -22.32, "y": 267.01, "curve": 0.317, "c3": 0.693}, + {"time": 1.1667, "x": -63.32, "y": 267.01, "curve": 0.317, "c3": 0.693}, {"time": 1.4167, "x": -28.35, "y": 267.01, "curve": 0.317, "c3": 0.693}, + {"time": 1.6667, "x": -28.02, "y": 267.01, "curve": 0.317, "c3": 0.693}, {"time": 1.9167, "x": 14.36, "y": 267.01, "curve": 0.317, "c3": 0.693}, + {"time": 2.1667, "x": 9.14, "y": 267.01, "curve": 0.317, "c3": 0.693}, {"time": 2.4167, "x": 11.99, "y": 267.01, "curve": 0.317, "c3": 0.693}, + {"time": 2.6667, "x": -33.59, "y": 267.01, "curve": "stepped"}, {"time": 2.9167, "x": -33.59, "y": 267.01, "curve": 0.315, "c4": 0.8}, {"time": 3.0833} ] }, - "@body2": { + "@ball": { "rotate": [ - {"angle": -12.8, "curve": 0.388, "c2": 0.37, "c3": 0.724, "c4": 0.77}, {"time": 0.0667, "angle": -3.19, "curve": 0.375, "c2": 0.62, "c3": 0.709, "c4": 0.99}, - {"time": 0.1, "curve": 0.25, "c3": 0.75}, {"time": 0.2, "angle": 7.45, "curve": 0.144, "c3": 0.557}, {"time": 0.45, "angle": -18.73, "curve": 0.455, "c3": 0.807}, - {"time": 0.7333, "angle": 7.45, "curve": 0.144, "c3": 0.557}, {"time": 0.9167, "angle": -18.73, "curve": 0.375, "c3": 0.711, "c4": 0.48}, {"time": 1, "angle": -12.8} + {"time": 0.6667, "curve": 0.156, "c3": 0.693}, {"time": 1.1667, "angle": 18, "curve": 0.317, "c3": 0.693}, {"time": 2.1667, "angle": -18, "curve": 0.317, "c3": 0.693}, {"time": 2.75} ], "translate": [ - {"x": 2.03, "y": -18.24, "curve": 0.404, "c2": 0.56, "c3": 0.741}, {"time": 0.0667, "curve": 0.25, "c3": 0.75}, {"time": 0.1667, "x": -0.08, "y": 1.15, "curve": 0.144, "c3": 0.557}, - {"time": 0.4167, "x": 4.59, "y": -41.28, "curve": 0.455, "c3": 0.807}, {"time": 0.7, "x": -0.08, "y": 1.15, "curve": 0.144, "c3": 0.557}, - {"time": 0.8833, "x": 4.59, "y": -41.28, "curve": 0.397, "c3": 0.737, "c4": 0.58}, {"time": 1, "x": 2.03, "y": -18.24} + {"time": 0.6667, "curve": 0.156, "c3": 0.693}, {"time": 1.1667, "x": -32, "curve": 0.317, "c3": 0.693}, {"time": 2.1667, "x": 32, "curve": 0.317, "c3": 0.693}, {"time": 2.75} + ], + "scale": [ + {"x": 0, "y": 0, "curve": "stepped"}, {"time": 0.1667, "x": 0, "y": 0, "curve": 0, "c2": 0.6, "c3": 0.237}, {"time": 0.3333, "x": 1.2, "y": 1.2, "curve": 0.315, "c4": 0.8}, + {"time": 0.5, "curve": "stepped"}, {"time": 2.75, "curve": 0, "c2": 0.3, "c3": 0.546}, {"time": 2.9167, "x": 1.2, "y": 1.2, "curve": 0.315, "c4": 0.8}, {"time": 3.0833, "x": 0, "y": 0} ] }, - "body-braid5": { - "rotate": [ - {"angle": 20.01, "curve": 0.425, "c2": 0.48, "c3": 0.765}, {"time": 0.1, "curve": 0.25, "c3": 0.75}, {"time": 0.2, "angle": -7.27, "curve": 0.144, "c3": 0.557}, - {"time": 0.45, "angle": 36.02, "curve": 0.455, "c3": 0.807}, {"time": 0.7333, "angle": -7.27, "curve": 0.144, "c3": 0.557}, - {"time": 0.9167, "angle": 28.85, "curve": 0.375, "c3": 0.711, "c4": 0.48}, {"time": 1, "angle": 20.01} + "ball": { + "scale": [ + {"time": 0.3333, "curve": 0.617, "c4": 0.6}, {"time": 0.5, "x": 1.2, "y": 0.802, "curve": 0, "c2": 0.39, "c3": 0.387}, {"time": 0.6667, "curve": "stepped"}, + {"time": 2.5833, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 2.75, "x": 1.2, "y": 0.9, "curve": 0, "c2": 0.3, "c3": 0.546}, {"time": 2.9167} ] }, - "body-braid": { + "@pivot-center": { "rotate": [ - {"angle": 4.63, "curve": 0.391, "c2": 0.59, "c3": 0.726}, {"time": 0.05, "curve": 0.25, "c3": 0.75}, {"time": 0.15, "angle": -2.68, "curve": 0.144, "c3": 0.557}, - {"time": 0.4, "angle": 22.42, "curve": 0.455, "c3": 0.807}, {"time": 0.6833, "angle": -2.68, "curve": 0.144, "c3": 0.557}, - {"time": 0.8667, "angle": 15.24, "curve": 0.409, "c3": 0.752, "c4": 0.65}, {"time": 1, "angle": 4.63} + {"time": 0.6667, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.9167, "angle": 2, "curve": 0.461, "c3": 0.543}, {"time": 1.4167, "angle": -2, "curve": 0.461, "c3": 0.543}, + {"time": 1.9167, "angle": 2, "curve": 0.461, "c3": 0.543}, {"time": 2.4167, "angle": -2, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 2.75} ] }, - "@body5": { + "@shadow": { + "translate": [ + {"time": 0.6667, "curve": 0.317, "c3": 0.693}, {"time": 1.1667, "x": -32, "curve": 0.317, "c3": 0.693}, {"time": 2.1667, "x": 32, "curve": 0.317, "c3": 0.693}, {"time": 2.5833} + ], + "scale": [ + {"curve": 0, "c2": 0.3, "c3": 0.546}, {"time": 0.1667, "x": 1.1, "y": 1.1, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "curve": 0.464, "c4": 0.7}, + {"time": 0.5, "x": 1.06, "y": 1.06, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.6667, "curve": "stepped"}, {"time": 2.5833, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 2.75, "x": 1.06, "y": 1.06, "curve": 0, "c2": 0.3, "c3": 0.546}, {"time": 2.9167, "curve": 0.464, "c4": 0.7}, + {"time": 3.0833, "x": 1.1, "y": 1.1, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 3.25} + ] + }, + "tail": { "rotate": [ - {"time": 0.1, "curve": 0.144, "c3": 0.557}, {"time": 0.35, "angle": 0.5, "curve": 0.455, "c3": 0.807}, {"time": 0.6333, "curve": 0.144, "c3": 0.557}, - {"time": 0.8167, "angle": 0.5, "curve": 0.455, "c3": 0.807}, {"time": 1} + {"curve": 0, "c2": 0.3, "c3": 0.546}, {"time": 0.1667, "angle": 17.35, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "angle": -14.67, "curve": 0.464, "c4": 0.7}, + {"time": 0.5, "angle": 19.12, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.6667, "angle": -10.65, "curve": 0.317, "c3": 0.693}, + {"time": 0.9167, "angle": -0.65, "curve": 0.317, "c3": 0.693}, {"time": 1.1667, "angle": -10.65, "curve": 0.317, "c3": 0.693}, + {"time": 1.4167, "angle": -0.65, "curve": 0.317, "c3": 0.693}, {"time": 1.6667, "angle": -10.65, "curve": 0.317, "c3": 0.693}, + {"time": 1.9167, "angle": -0.65, "curve": 0.317, "c3": 0.693}, {"time": 2.1667, "angle": -10.65, "curve": 0.317, "c3": 0.693}, + {"time": 2.4167, "angle": -0.65, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 2.5833, "angle": -10.65, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 2.75, "angle": 19.35, "curve": 0, "c2": 0.3, "c3": 0.546}, {"time": 2.9167, "angle": -18.65, "curve": 0, "c2": 0.3, "c3": 0.546}, + {"time": 3.0833, "angle": 17.35, "curve": 0.317, "c3": 0.693}, {"time": 3.25} ] - } + }, + "body-light-life": {"rotate": [{}, {"time": 1.65, "angle": -151.16, "curve": "stepped"}, {"time": 1.6667}, {"time": 3.25, "angle": -151.16}]} } }, - "3760369471": { + "3902657344": { "slots": { - "eyes": { - "attachment": [ - {"time": 0.1333, "name": "eyes-shut"}, {"time": 0.2, "name": "eyes"}, {"time": 0.55, "name": "eyes-shut"}, {"time": 0.6167, "name": "eyes"}, {"time": 0.9667, "name": "eyes-shut"} - ] - }, - "mouth": { - "attachment": [ - {"time": 0.1833, "name": "mouth-open"}, {"time": 0.5, "name": "mouth"}, {"time": 0.6, "name": "mouth-open"}, {"time": 0.9, "name": "mouth"}, {"time": 0.9667, "name": "mouth-bite"} - ] - } + "eyes": {"attachment": [{"time": 0.0833, "name": "eyes-happy"}, {"time": 1, "name": "eyes"}]}, + "leg-back-left": {"attachment": [{"time": 0.0667, "name": "mystic-leg-back-left-long"}, {"time": 0.9, "name": "mystic-leg-back-left"}]}, + "mouth": {"attachment": [{"time": 0.0833, "name": "mouth-smile"}, {"time": 1, "name": "mouth"}]} }, "bones": { "@pivot-back": { "rotate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "angle": 3.53, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "angle": -10.14, "curve": 0.315, "c4": 0.8}, - {"time": 0.5, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5833, "angle": 3.53, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.75, "angle": -10.14, "curve": 0.315, "c4": 0.8}, - {"time": 0.9167, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1.0833, "angle": 5.43}, {"time": 1.15, "angle": 3.94}, {"time": 1.2, "angle": 5.43}, {"time": 1.2333, "angle": 3.94}, - {"time": 1.2667, "angle": 5.43}, {"time": 1.3, "angle": 3.94}, {"time": 1.3333, "angle": 5.43}, {"time": 1.3667, "angle": 3.94}, {"time": 1.4, "angle": 5.43}, - {"time": 1.4333, "angle": 3.94}, {"time": 1.4667, "angle": 5.43}, {"time": 1.5, "angle": 3.94} + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "angle": -18, "curve": 0.317, "c3": 0.693}, {"time": 0.3333, "angle": -17, "curve": 0.317, "c3": 0.693}, + {"time": 0.5, "angle": -18, "curve": 0.317, "c3": 0.693}, {"time": 0.6667, "angle": -17, "curve": 0.317, "c3": 0.693}, {"time": 0.8333, "angle": -18, "curve": 0.317, "c3": 0.693}, + {"time": 1.0833} ], "translate": [ - {"y": 44.46, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "y": 12.46, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "y": 209.26, "curve": 0.315, "c4": 0.8}, - {"time": 0.5, "y": 44.46, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5833, "y": 12.46, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.75, "y": 209.26, "curve": 0.315, "c4": 0.8}, - {"time": 0.9167, "y": 44.46} + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": 33.94, "y": -52, "curve": "stepped"}, {"time": 0.8333, "x": 33.94, "y": -52, "curve": 0.317, "c3": 0.693}, {"time": 1.0833} ] }, - "@leg-front-right": { - "rotate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "angle": -14.05, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "angle": 13.89, "curve": 0.315, "c4": 0.8}, - {"time": 0.5, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5833, "angle": -12.58, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.75, "angle": 13.89, "curve": 0.315, "c4": 0.8}, - {"time": 0.9167, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1.0833, "angle": -12.58} + "@leg-front-left": { + "translate": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": -27.99, "y": 1.7, "curve": 0.25, "c3": 0.75}, {"time": 0.3333, "x": -26.93, "y": -1.56, "curve": 0.25, "c3": 0.75}, + {"time": 0.5, "x": -27.99, "y": 1.7, "curve": 0.25, "c3": 0.75}, {"time": 0.6667, "x": -26.93, "y": -1.56, "curve": 0.25, "c3": 0.75}, + {"time": 0.8333, "x": -27.99, "y": 1.7, "curve": 0.317, "c3": 0.693}, {"time": 1.0833} ] }, - "@leg-front-left": { - "rotate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "angle": -14.05, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "angle": 13.89, "curve": 0.315, "c4": 0.8}, - {"time": 0.5, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5833, "angle": -12.58, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.75, "angle": 13.89, "curve": 0.315, "c4": 0.8}, - {"time": 0.9167, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1.0833, "angle": -12.58} + "@leg-front-right": { + "translate": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": -84.32, "y": 39.72, "curve": 0.317, "c3": 0.693}, {"time": 0.3333, "x": -82.71, "y": 34.75, "curve": 0.317, "c3": 0.693}, + {"time": 0.5, "x": -84.32, "y": 39.72, "curve": 0.317, "c3": 0.693}, {"time": 0.6667, "x": -82.71, "y": 34.75, "curve": 0.317, "c3": 0.693}, + {"time": 0.8333, "x": -84.32, "y": 39.72, "curve": 0.317, "c3": 0.693}, {"time": 1.0833} ] }, - "@leg-back-left": { - "rotate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "angle": -14.05, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "angle": 13.89, "curve": 0.315, "c4": 0.8}, - {"time": 0.5, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5833, "angle": -12.58, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.75, "angle": 13.89, "curve": 0.315, "c4": 0.8}, - {"time": 0.9167, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1.0833, "angle": -12.58} + "leg-front-right-IK": { + "translate": [{"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": 40.32, "curve": "stepped"}, {"time": 0.8333, "x": 40.32, "curve": 0.317, "c3": 0.693}, {"time": 1.0833}] + }, + "leg-front-left-IK": { + "translate": [{"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": 26.51, "curve": "stepped"}, {"time": 0.8333, "x": 26.51, "curve": 0.317, "c3": 0.693}, {"time": 1.0833}] + }, + "leg-back-left-IK": { + "translate": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": -30.93, "y": 88.63, "curve": 0.617, "c4": 0.6}, {"time": 0.2667, "x": -62.81, "y": 72.23, "curve": 0, "c2": 0.4, "c3": 0.383}, + {"time": 0.35, "x": -28.19, "y": 96.83, "curve": 0.617, "c4": 0.6}, {"time": 0.45, "x": -62.81, "y": 72.23, "curve": 0, "c2": 0.4, "c3": 0.383}, + {"time": 0.55, "x": -28.19, "y": 96.83, "curve": 0.617, "c4": 0.6}, {"time": 0.6333, "x": -62.81, "y": 72.23, "curve": 0, "c2": 0.4, "c3": 0.383}, + {"time": 0.7333, "x": -28.19, "y": 96.83, "curve": 0.434, "c3": 0.739, "c4": 0.4}, {"time": 0.8333, "x": -56.92, "y": 76.7, "curve": 0.223, "c2": 0.33, "c3": 0.336}, {"time": 1.0833} ] }, "tail": { "rotate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "angle": 14.79, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "angle": -27.83, "curve": "stepped"}, - {"time": 0.3333, "angle": -27.83, "curve": 0.313, "c3": 0.691}, {"time": 0.5, "angle": 14.79, "curve": "stepped"}, {"time": 0.5833, "angle": 14.79, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.6667, "angle": -27.83, "curve": "stepped"}, {"time": 0.75, "angle": -27.83, "curve": 0.313, "c3": 0.691}, {"time": 0.9167, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 1.0833, "angle": 12.48, "curve": 0.313, "c3": 0.691}, {"time": 1.15, "angle": 9.69, "curve": 0.313, "c3": 0.691}, {"time": 1.2, "angle": 12.48, "curve": 0.161, "c3": 0.854}, - {"time": 1.2333, "angle": 9.69, "curve": 0.161, "c3": 0.854}, {"time": 1.2667, "angle": 12.48, "curve": 0.161, "c3": 0.854}, {"time": 1.3, "angle": 9.69, "curve": 0.161, "c3": 0.854}, - {"time": 1.3333, "angle": 12.48, "curve": 0.161, "c3": 0.854}, {"time": 1.3667, "angle": 9.69, "curve": 0.161, "c3": 0.854}, {"time": 1.4, "angle": 12.48, "curve": 0.161, "c3": 0.854}, - {"time": 1.4333, "angle": 9.69, "curve": 0.161, "c3": 0.854}, {"time": 1.4667, "angle": 12.48, "curve": 0.161, "c3": 0.854}, {"time": 1.5, "angle": 9.69} + {"curve": 0, "c2": 0.3, "c3": 0.546}, {"time": 0.1667, "angle": 25.35, "curve": 0.317, "c3": 0.693}, {"time": 0.3333, "angle": 33.35, "curve": 0.317, "c3": 0.693}, + {"time": 0.5, "angle": 25.35, "curve": 0.317, "c3": 0.693}, {"time": 0.6667, "angle": 33.35, "curve": 0.317, "c3": 0.693}, + {"time": 0.9167, "angle": 25.35, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 1.0833} ] }, "@shadow": { + "translate": [{"curve": 0, "c2": 0.3, "c3": 0.546}, {"time": 0.1667, "x": 32.73, "curve": "stepped"}, {"time": 0.8333, "x": 32.73, "curve": 0.317, "c3": 0.693}, {"time": 1.0833}], "scale": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": 1.1, "y": 1.1, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "x": 0.9, "y": 0.9, "curve": 0.315, "c4": 0.8}, - {"time": 0.5833, "x": 1.1, "y": 1.1, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.75, "x": 0.9, "y": 0.9, "curve": 0.315, "c4": 0.8}, - {"time": 0.9167, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1.0833, "x": 1.05, "y": 1.05}, {"time": 1.15}, {"time": 1.2, "x": 1.05, "y": 1.05}, {"time": 1.25}, - {"time": 1.3, "x": 1.05, "y": 1.05}, {"time": 1.35}, {"time": 1.4, "x": 1.05, "y": 1.05}, {"time": 1.45}, {"time": 1.5, "x": 1.05, "y": 1.05} + {"time": 0.1667, "curve": 0.317, "c3": 0.693}, {"time": 0.25, "x": 1.02, "y": 1.02, "curve": 0.317, "c3": 0.693}, {"time": 0.3333, "curve": 0.317, "c3": 0.693}, + {"time": 0.4167, "x": 1.02, "y": 1.02, "curve": 0.317, "c3": 0.693}, {"time": 0.5, "curve": 0.317, "c3": 0.693}, {"time": 0.5833, "x": 1.02, "y": 1.02, "curve": 0.317, "c3": 0.693}, + {"time": 0.6667, "curve": 0.317, "c3": 0.693}, {"time": 0.8333, "x": 1.02, "y": 1.02, "curve": 0.317, "c3": 0.693}, {"time": 1.0833} ] - }, - "@body3": { + } + }, + "drawOrder": [{"time": 0.0667, "offsets": [{"slot": "leg-back-left", "offset": 10}]}, {"time": 0.9}] + }, + "3850719809": { + "slots": { + "eyes": {"attachment": [{"time": 0.0167, "name": "eyes-angry"}, {"time": 0.75, "name": "eyes-shut"}, {"time": 0.8333, "name": "eyes"}]}, + "leg-back-left": {"attachment": [{"time": 0.35, "name": "summer-leg-back-left-long"}, {"time": 0.5833, "name": "summer-leg-back-left"}]}, + "mouth": {"attachment": [{"time": 0.0167, "name": "mouth-bite"}, {"time": 0.2667, "name": "mouth-open"}, {"time": 0.5833, "name": "mouth-bite"}, {"time": 0.8333, "name": "mouth"}]} + }, + "bones": { + "@pivot-back": { "rotate": [ - {"angle": -0.48, "curve": 0.358, "c2": 0.47, "c3": 0.695, "c4": 0.82}, {"time": 0.0667, "angle": -0.09, "curve": 0.352, "c2": 0.65, "c3": 0.687}, - {"time": 0.1, "curve": 0.25, "c3": 0.75}, {"time": 0.2667, "angle": -3.77, "curve": 0.25, "c3": 0.75}, {"time": 0.4667, "angle": -14, "curve": 0.25, "c3": 0.75}, - {"time": 0.6833, "angle": -3.77, "curve": 0.25, "c3": 0.75}, {"time": 0.8833, "angle": -14, "curve": 0.25, "c3": 0.75}, - {"time": 1.1, "angle": -3.77, "curve": 0.243, "c3": 0.68, "c4": 0.71}, {"time": 1.5, "angle": -0.48} + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "angle": -3.92, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "angle": 2.51, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.3333, "angle": -6, "curve": "stepped"}, {"time": 0.35, "angle": -16}, {"time": 0.5667, "angle": -16.5, "curve": "stepped"}, {"time": 0.5833, "curve": 0.313, "c3": 0.699}, + {"time": 0.75, "angle": 6, "curve": 0.313, "c3": 0.699}, {"time": 0.9167} ], "translate": [ - {"time": 0.2333, "curve": 0.25, "c3": 0.75}, {"time": 0.4333, "x": 45.36, "y": -33.56, "curve": 0.25, "c3": 0.75}, {"time": 0.65, "curve": 0.25, "c3": 0.75}, - {"time": 0.85, "x": 45.36, "y": -33.56, "curve": 0.25, "c3": 0.75}, {"time": 1.0667} - ] - }, - "@body4": { - "rotate": [ - {"angle": -1.47, "curve": 0.346, "c2": 0.4, "c3": 0.68, "c4": 0.74}, {"time": 0.0333, "angle": -0.65, "curve": 0.36, "c2": 0.64, "c3": 0.695}, - {"time": 0.0833, "curve": 0.25, "c3": 0.75}, {"time": 0.25, "angle": -15.35, "curve": 0.25, "c3": 0.75}, {"time": 0.45, "angle": 14.26, "curve": 0.25, "c3": 0.75}, - {"time": 0.6667, "angle": -15.35, "curve": 0.25, "c3": 0.75}, {"time": 0.8667, "angle": 14.26, "curve": 0.25, "c3": 0.75}, - {"time": 1.0833, "angle": -15.35, "curve": 0.243, "c3": 0.689, "c4": 0.75}, {"time": 1.5, "angle": -1.47} + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "x": 71.93, "y": -12.95, "curve": "stepped"}, {"time": 0.25, "x": 71.93, "y": -12.95, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.3333, "x": -135.5, "curve": "stepped"}, {"time": 0.35, "x": -560.54, "y": 85.29}, {"time": 0.5667, "x": -562.89, "y": 81.57, "curve": "stepped"}, + {"time": 0.5833, "x": -151.24, "curve": 0.313, "c3": 0.699}, {"time": 0.75, "x": -151.24, "y": 4.06, "curve": 0.313, "c3": 0.699}, {"time": 0.9167} ], - "translate": [ - {"x": -0.04, "y": 0.54, "curve": 0.352, "c2": 0.65, "c3": 0.687}, {"time": 0.0333, "curve": 0.25, "c3": 0.75}, {"time": 0.2, "x": -1.59, "y": 23.93, "curve": 0.25, "c3": 0.75}, - {"time": 0.4, "x": 6.55, "y": -29.78, "curve": 0.25, "c3": 0.75}, {"time": 0.6167, "x": -1.59, "y": 23.93, "curve": 0.25, "c3": 0.75}, - {"time": 0.8167, "x": 6.55, "y": -29.78, "curve": 0.25, "c3": 0.75}, {"time": 1.0333, "x": -1.59, "y": 23.93, "curve": 0.246, "c3": 0.723, "c4": 0.88}, - {"time": 1.5, "x": -0.04, "y": 0.54} - ] + "scale": [{"time": 0.3333, "curve": "stepped"}, {"time": 0.35, "x": -1, "curve": "stepped"}, {"time": 0.5667, "x": -1, "curve": "stepped"}, {"time": 0.5833}] }, - "@body6": { - "rotate": [ - {"angle": -1.68, "curve": 0.357, "c2": 0.42, "c3": 0.7, "c4": 0.79}, {"time": 0.1167, "angle": -0.36, "curve": 0.366, "c2": 0.63, "c3": 0.703}, - {"time": 0.1833, "curve": 0.25, "c3": 0.75}, {"time": 0.35, "angle": -5.24, "curve": 0.25, "c3": 0.75}, {"time": 0.55, "angle": 25.77, "curve": 0.25, "c3": 0.75}, - {"time": 0.7667, "angle": -5.24, "curve": 0.25, "c3": 0.75}, {"time": 0.9667, "angle": 25.77, "curve": 0.25, "c3": 0.75}, - {"time": 1.1833, "angle": -5.24, "curve": 0.244, "c3": 0.643, "c4": 0.58}, {"time": 1.5, "angle": -1.68} - ], + "@shadow": { "translate": [ - {"x": 0.97, "y": -0.68, "curve": 0.378, "c2": 0.61, "c3": 0.722}, {"time": 0.1167, "curve": 0.25, "c3": 0.75}, {"time": 0.2833, "x": 5.81, "y": -4.07, "curve": 0.25, "c3": 0.75}, - {"time": 0.4833, "x": -70.52, "y": 35.61, "curve": 0.25, "c3": 0.75}, {"time": 0.7, "x": 5.81, "y": -4.07, "curve": 0.25, "c3": 0.75}, - {"time": 0.9, "x": -70.52, "y": 35.61, "curve": 0.25, "c3": 0.75}, {"time": 1.1167, "x": 5.81, "y": -4.07, "curve": 0.242, "c3": 0.671, "c4": 0.68}, {"time": 1.5, "x": 0.97, "y": -0.68} - ] - }, - "body-braid2": { - "rotate": [ - {"angle": -0.03, "curve": 0.352, "c2": 0.65, "c3": 0.687}, {"time": 0.0333, "curve": 0.25, "c3": 0.75}, {"time": 0.2, "angle": -1.43, "curve": 0.25, "c3": 0.75}, - {"time": 0.4, "angle": 20.83, "curve": 0.25, "c3": 0.75}, {"time": 0.6167, "angle": -1.43, "curve": 0.25, "c3": 0.75}, {"time": 0.8167, "angle": 20.83, "curve": 0.25, "c3": 0.75}, - {"time": 1.0333, "angle": -1.43, "curve": 0.246, "c3": 0.723, "c4": 0.88}, {"time": 1.5, "angle": -0.03} - ] - }, - "body-braid4": { - "rotate": [ - {"angle": -2.79, "curve": 0.382, "c2": 0.58, "c3": 0.731}, {"time": 0.15, "curve": 0.25, "c3": 0.75}, {"time": 0.3167, "angle": -11.53, "curve": 0.25, "c3": 0.75}, - {"time": 0.5167, "angle": 27.46, "curve": 0.25, "c3": 0.75}, {"time": 0.7333, "angle": -11.53, "curve": 0.25, "c3": 0.75}, {"time": 0.9333, "angle": 27.46, "curve": 0.25, "c3": 0.75}, - {"time": 1.15, "angle": -11.53, "curve": 0.243, "c3": 0.655, "c4": 0.63}, {"time": 1.5, "angle": -2.79} - ] - }, - "body-braid3": { - "rotate": [ - {"angle": -0.8, "curve": 0.371, "c2": 0.62, "c3": 0.71}, {"time": 0.0833, "curve": 0.25, "c3": 0.75}, {"time": 0.25, "angle": -8.3, "curve": 0.25, "c3": 0.75}, - {"time": 0.45, "angle": 33.27, "curve": 0.25, "c3": 0.75}, {"time": 0.6667, "angle": -8.3, "curve": 0.25, "c3": 0.75}, {"time": 0.8667, "angle": 33.27, "curve": 0.25, "c3": 0.75}, - {"time": 1.0833, "angle": -8.3, "curve": 0.243, "c3": 0.689, "c4": 0.75}, {"time": 1.5, "angle": -0.8} - ] - }, - "@body2": { - "rotate": [ - {"angle": 1.78, "curve": 0.355, "c2": 0.42, "c3": 0.693, "c4": 0.77}, {"time": 0.0833, "angle": 0.52, "curve": 0.366, "c2": 0.63, "c3": 0.703}, {"time": 0.15, "curve": 0.25, "c3": 0.75}, - {"time": 0.3167, "angle": 17.29, "curve": 0.25, "c3": 0.75}, {"time": 0.5167, "angle": -18.73, "curve": 0.25, "c3": 0.75}, {"time": 0.7333, "angle": 19.34, "curve": 0.25, "c3": 0.75}, - {"time": 0.9333, "angle": -24.45, "curve": 0.25, "c3": 0.75}, {"time": 1.15, "angle": 15.04, "curve": 0.244, "c3": 0.643, "c4": 0.58}, - {"time": 1.4667, "angle": 2.39, "curve": 0.338, "c2": 0.35, "c3": 0.672, "c4": 0.68}, {"time": 1.5, "angle": 1.78} + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 61.96, "curve": "stepped"}, {"time": 0.25, "x": 61.96, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.3333, "x": -143.36, "curve": "stepped"}, {"time": 0.35, "x": -143.36}, {"time": 0.5667, "x": -157.56, "curve": "stepped"}, {"time": 0.5833, "x": -161.35, "curve": "stepped"}, + {"time": 0.75, "x": -161.35, "curve": 0.313, "c3": 0.699}, {"time": 0.9167} ], - "translate": [ - {"x": -0.01, "y": 0.19, "curve": 0.378, "c2": 0.61, "c3": 0.722}, {"time": 0.1167, "curve": 0.25, "c3": 0.75}, {"time": 0.2833, "x": -0.08, "y": 1.15, "curve": 0.25, "c3": 0.75}, - {"time": 0.4833, "x": 4.59, "y": -41.28, "curve": 0.25, "c3": 0.75}, {"time": 0.7, "x": -0.08, "y": 1.15, "curve": 0.25, "c3": 0.75}, - {"time": 0.9, "x": 4.59, "y": -41.28, "curve": 0.25, "c3": 0.75}, {"time": 1.1167, "x": -0.08, "y": 1.15, "curve": 0.242, "c3": 0.671, "c4": 0.68}, {"time": 1.5, "x": -0.01, "y": 0.19} + "scale": [ + {"time": 0.0833, "curve": 0, "c2": 0.26, "c3": 0.369, "c4": 0.62}, {"time": 0.25, "x": 1.06, "y": 1.06, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "curve": "stepped"}, + {"time": 0.35}, {"time": 0.5667, "x": 1.08, "y": 1.08, "curve": "stepped"}, {"time": 0.5833, "curve": 0.313, "c3": 0.699}, + {"time": 0.75, "x": 1.08, "y": 1.08, "curve": 0.313, "c3": 0.699}, {"time": 0.9167} ] }, - "body-braid6": { - "rotate": [ - {"angle": -9.2, "curve": 0.378, "c2": 0.52, "c3": 0.748}, {"time": 0.2333, "curve": 0.25, "c3": 0.75}, {"time": 0.4, "angle": -20.17, "curve": 0.25, "c3": 0.75}, - {"time": 0.6, "angle": 18.35, "curve": 0.25, "c3": 0.75}, {"time": 0.8167, "angle": -20.17, "curve": 0.25, "c3": 0.75}, {"time": 1.0167, "angle": 18.35, "curve": 0.25, "c3": 0.75}, - {"time": 1.2333, "angle": -20.17, "curve": 0.248, "c3": 0.628, "c4": 0.52}, {"time": 1.5, "angle": -9.2} + "leg-back-left-IK": { + "translate": [ + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.1333, "x": 80.9, "curve": 0.161, "c3": 0.854}, {"time": 0.25, "x": 62.82, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.3333, "x": -99.34, "y": 18.56, "curve": "stepped"}, {"time": 0.35, "x": -653.9, "y": 153.81}, {"time": 0.5667, "x": -653.9, "y": 167.85, "curve": "stepped"}, + {"time": 0.5833, "x": -134.74, "curve": "stepped"}, {"time": 0.75, "x": -134.74, "curve": 0.313, "c3": 0.699}, {"time": 0.9167} ] }, - "body-braid5": { - "rotate": [ - {"angle": -1.21, "curve": 0.378, "c2": 0.61, "c3": 0.722}, {"time": 0.1167, "curve": 0.25, "c3": 0.75}, {"time": 0.2833, "angle": -7.27, "curve": 0.25, "c3": 0.75}, - {"time": 0.4833, "angle": 36.02, "curve": 0.25, "c3": 0.75}, {"time": 0.7, "angle": -7.27, "curve": 0.25, "c3": 0.75}, {"time": 0.9, "angle": 36.02, "curve": 0.25, "c3": 0.75}, - {"time": 1.1167, "angle": -7.27, "curve": 0.242, "c3": 0.671, "c4": 0.68}, {"time": 1.5, "angle": -1.21} + "leg-front-right-IK": { + "translate": [ + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 22.35, "curve": 0.306, "c3": 0.695}, {"time": 0.25, "x": 42.9, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.3333, "x": -131.73, "y": 44.58, "curve": "stepped"}, {"time": 0.35, "x": 244.36, "y": -4.92, "curve": 0.31, "c4": 0.8}, + {"time": 0.5667, "x": 247.43, "y": -1.85, "curve": "stepped"}, {"time": 0.5833, "x": -180.48, "curve": "stepped"}, {"time": 0.75, "x": -180.48, "curve": 0.313, "c3": 0.699}, + {"time": 0.9167} ] }, - "body-braid": { - "rotate": [ - {"angle": -0.11, "curve": 0.36, "c2": 0.64, "c3": 0.695}, {"time": 0.05, "curve": 0.25, "c3": 0.75}, {"time": 0.2167, "angle": -2.68, "curve": 0.25, "c3": 0.75}, - {"time": 0.4167, "angle": 22.42, "curve": 0.25, "c3": 0.75}, {"time": 0.6333, "angle": -2.68, "curve": 0.25, "c3": 0.75}, {"time": 0.8333, "angle": 22.42, "curve": 0.25, "c3": 0.75}, - {"time": 1.05, "angle": -2.68, "curve": 0.245, "c3": 0.711, "c4": 0.83}, {"time": 1.5, "angle": -0.11} - ] - } - } - }, - "2742360208": { - "slots": {"eyes": {"attachment": [{"time": 0.05, "name": "eyes-happy"}, {"time": 0.7667, "name": "eyes"}]}}, - "bones": { - "@pivot-back": { - "rotate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "angle": -5.76, "curve": 0.306, "c3": 0.695}, {"time": 0.6667, "angle": -6.67, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.8333, "angle": 2.85, "curve": 0.306, "c3": 0.695}, {"time": 1} - ], + "leg-front-left-IK": { "translate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": -11.96, "y": -12.91, "curve": 0.306, "c3": 0.695}, - {"time": 0.6667, "x": -17.52, "y": -16.38, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.8333} + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "x": 40.76, "y": 5.08, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "x": 49, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.3333, "x": -180.92, "y": 40.32, "curve": "stepped"}, {"time": 0.35, "x": -197.17}, {"time": 0.5667, "x": -230.7, "y": 4.81, "curve": "stepped"}, + {"time": 0.5833, "x": -180.48, "curve": "stepped"}, {"time": 0.75, "x": -180.48, "curve": 0.313, "c3": 0.699}, {"time": 0.9167} ] }, "@leg-front-left": { "translate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": -22.08, "y": 3.82, "curve": 0.306, "c3": 0.695}, {"time": 0.6667, "x": -27.67, "y": 3.91, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.8333, "x": -16.19, "y": -6.62, "curve": 0.306, "c3": 0.695}, {"time": 1} + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "x": -2.9, "y": -1.1, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.25, "x": -0.62, "y": -3.44, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "x": -1, "y": -5.53, "curve": "stepped"}, {"time": 0.35, "x": 4.4, "y": -4.91}, + {"time": 0.5667, "x": 7.49, "y": -5.17, "curve": "stepped"}, {"time": 0.5833, "x": 18.69, "y": 1.85, "curve": "stepped"}, + {"time": 0.75, "x": 18.69, "y": 1.85, "curve": 0.306, "c3": 0.695}, {"time": 0.9167} ] }, "@leg-front-right": { "translate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": -32.02, "y": 30.99, "curve": 0.306, "c3": 0.695}, - {"time": 0.6667, "x": -43.95, "y": 33.64, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.8333, "x": 1.17, "y": -19.99, "curve": 0.306, "c3": 0.695}, {"time": 1} + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 4.31, "y": 11.86, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.25, "x": -10.48, "y": -15.33, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "x": -3.15, "y": 1.33, "curve": "stepped"}, {"time": 0.35, "x": -3.84, "y": 7.68}, + {"time": 0.5667, "x": -3.53, "y": 9.04, "curve": "stepped"}, {"time": 0.5833, "x": -2.24, "y": 13.67, "curve": 0.313, "c3": 0.699}, + {"time": 0.75, "x": -2.69, "y": -18.63, "curve": 0.313, "c3": 0.699}, {"time": 0.9167} ] }, "@leg-back-left": { "translate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": -18.26, "y": -5.66, "curve": 0.306, "c3": 0.695}, - {"time": 0.6667, "x": -24.49, "y": -9.09, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.8333, "x": -0.1, "y": -3.16, "curve": 0.306, "c3": 0.695}, {"time": 1} + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.1333, "x": 0.67, "y": -7.85, "curve": 0.161, "c3": 0.854}, {"time": 0.25, "x": 0.74, "y": -5.43, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.3333, "x": -0.54, "y": 4.44, "curve": "stepped"}, {"time": 0.35, "x": 10.26, "y": 0.56, "curve": "stepped"}, {"time": 0.5667, "x": 10.26, "y": 0.56, "curve": "stepped"}, + {"time": 0.5833} ] }, "tail": { "rotate": [ - {"curve": 0, "c2": 0.3, "c3": 0.54}, {"time": 0.1667, "angle": -11.59, "curve": 0.306, "c3": 0.695}, {"time": 0.4167, "angle": 2.75, "curve": 0.306, "c3": 0.695}, - {"time": 0.6667, "angle": -13.32, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.8333, "angle": 15.71, "curve": 0.306, "c3": 0.695}, {"time": 1} - ] - }, - "@shadow": { - "scale": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": 0.96, "y": 0.96}, {"time": 0.6667, "x": 0.94, "y": 0.94, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.8333, "x": 1.06, "y": 1.06, "curve": 0.306, "c3": 0.695}, {"time": 1} + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "angle": 15.61, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "angle": 20.44, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.3333, "angle": -15.58, "curve": "stepped"}, {"time": 0.35, "angle": 30.35}, {"time": 0.5667, "angle": 35.35, "curve": "stepped"}, + {"time": 0.5833, "angle": -11.84, "curve": 0.313, "c3": 0.699}, {"time": 0.75, "angle": 16.95, "curve": 0.313, "c3": 0.699}, {"time": 0.9167} ] }, - "@body3": { + "@pivot-main": { + "translate": [{"time": 0.75, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.8333, "y": 31, "curve": 0.315, "c4": 0.8}, {"time": 0.9167}], + "scale": [{"time": 0.5667, "curve": "stepped"}, {"time": 0.75, "y": 0.98, "curve": 0.154, "c4": 0.9}, {"time": 0.9167}] + } + }, + "drawOrder": [{"time": 0.35, "offsets": [{"slot": "leg-back-left", "offset": 1}]}, {"time": 0.5833}], + "events": [{"time": 0.35, "name": "start-attack"}, {"time": 0.5667, "name": "start-attack"}] + }, + "4086061935": { + "bones": { + "ear-left-bubble-02": { "rotate": [ - {"angle": -11.21, "curve": 0.364, "c2": 0.47, "c3": 0.704, "c4": 0.84}, {"time": 0.05, "angle": -13.65, "curve": 0.354, "c2": 0.65, "c3": 0.688}, - {"time": 0.0667, "angle": -14, "curve": 0.25, "c3": 0.75}, {"time": 0.3167, "curve": 0.242, "c3": 0.662, "c4": 0.65}, - {"time": 0.5, "angle": -11.21, "curve": 0.364, "c2": 0.47, "c3": 0.704, "c4": 0.84}, {"time": 0.55, "angle": -13.65, "curve": 0.354, "c2": 0.65, "c3": 0.688}, - {"time": 0.5667, "angle": -14, "curve": 0.25, "c3": 0.75}, {"time": 0.8167, "curve": 0.242, "c3": 0.662, "c4": 0.65}, {"time": 1, "angle": -11.21} + {"angle": 22.65, "curve": 0.381, "c2": 0.59, "c3": 0.73}, {"time": 0.3833, "angle": 35.68, "curve": 0.308, "c3": 0.643, "c4": 0.35}, + {"time": 0.5, "angle": 33.83, "curve": 0.285, "c2": 0.15, "c3": 0.754}, {"time": 1.7167, "angle": -21.58, "curve": 0.282, "c3": 0.624, "c4": 0.39}, + {"time": 2, "angle": -13.53, "curve": 0.315, "c2": 0.27, "c3": 0.653, "c4": 0.62}, {"time": 2.2167, "angle": -2.35, "curve": 0.331, "c2": 0.33, "c3": 0.682, "c4": 0.71}, + {"time": 2.6667, "angle": 22.65} ], "translate": [ - {"x": 30.45, "y": -18.4, "curve": 0.374, "c2": 0.62, "c3": 0.715}, {"time": 0.05, "x": 34.51, "y": -19.31, "curve": 0.25, "c3": 0.75}, - {"time": 0.3, "x": 1.97, "y": -12.02, "curve": 0.243, "c3": 0.681, "c4": 0.72}, {"time": 0.5, "x": 30.45, "y": -18.4, "curve": 0.374, "c2": 0.62, "c3": 0.715}, - {"time": 0.55, "x": 34.51, "y": -19.31, "curve": 0.25, "c3": 0.75}, {"time": 0.8, "x": 1.97, "y": -12.02, "curve": 0.243, "c3": 0.681, "c4": 0.72}, {"time": 1, "x": 30.45, "y": -18.4} + {"x": -10.33, "y": -0.67, "curve": 0.364, "c2": 0.64, "c3": 0.701}, {"time": 0.1667, "x": -11, "y": -0.72, "curve": 0.276, "c3": 0.621, "c4": 0.4}, + {"time": 0.5, "x": -8.97, "y": -0.59, "curve": 0.333, "c2": 0.33, "c3": 0.758}, {"time": 1.5, "curve": 0.26, "c3": 0.618, "c4": 0.44}, + {"time": 2, "x": -3.69, "y": -0.24, "curve": 0.343, "c2": 0.37, "c3": 0.715, "c4": 0.83}, {"time": 2.6667, "x": -10.33, "y": -0.67} ] }, - "@body4": { - "rotate": [ - {"angle": 4.21, "curve": 0.339, "c2": 0.35, "c3": 0.676, "c4": 0.69}, {"time": 0.05, "angle": 6.54, "curve": 0.382, "c2": 0.58, "c3": 0.733}, - {"time": 0.1167, "angle": 9.83, "curve": 0.25, "c3": 0.75}, {"time": 0.3667, "angle": -2.66, "curve": 0.248, "c3": 0.629, "c4": 0.52}, - {"time": 0.5, "angle": 4.21, "curve": 0.339, "c2": 0.35, "c3": 0.676, "c4": 0.69}, {"time": 0.55, "angle": 6.54, "curve": 0.382, "c2": 0.58, "c3": 0.733}, - {"time": 0.6167, "angle": 9.83, "curve": 0.25, "c3": 0.75}, {"time": 0.8667, "angle": -2.66, "curve": 0.248, "c3": 0.629, "c4": 0.52}, {"time": 1, "angle": 4.21} - ], + "ear-left-bubble-03": { "translate": [ - {"x": 23.06, "y": -10.33, "curve": 0.368, "c2": 0.63, "c3": 0.706}, {"time": 0.05, "x": 25.02, "y": -10.92, "curve": 0.25, "c3": 0.75}, - {"time": 0.2833, "x": 0.59, "y": -3.61, "curve": 0.244, "c3": 0.695, "c4": 0.77}, {"time": 0.5, "x": 23.06, "y": -10.33, "curve": 0.368, "c2": 0.63, "c3": 0.706}, - {"time": 0.55, "x": 25.02, "y": -10.92, "curve": 0.25, "c3": 0.75}, {"time": 0.7833, "x": 0.59, "y": -3.61, "curve": 0.244, "c3": 0.695, "c4": 0.77}, {"time": 1, "x": 23.06, "y": -10.33} + {"x": -7.97, "y": -0.52, "curve": 0.356, "c2": 0.41, "c3": 0.711, "c4": 0.82}, {"time": 0.5, "x": -20.65, "y": -1.35, "curve": 0.364, "c2": 0.64, "c3": 0.701}, + {"time": 0.6667, "x": -22.49, "y": -1.47, "curve": 0.25, "c3": 0.75}, {"time": 2, "x": 6.85, "y": 0.45, "curve": 0.25, "c3": 0.625, "c4": 0.5}, {"time": 2.6667, "x": -7.97, "y": -0.52} ] }, - "@body6": { + "ear-left-bubble-04": { "rotate": [ - {"angle": 4.59, "curve": 0.331, "c2": 0.33, "c3": 0.694, "c4": 0.75}, {"time": 0.1167, "angle": 13.13, "curve": 0.377, "c2": 0.61, "c3": 0.719}, - {"time": 0.1667, "angle": 15.47, "curve": 0.25, "c3": 0.75}, {"time": 0.4167, "curve": 0.264, "c3": 0.618, "c4": 0.43}, - {"time": 0.5, "angle": 4.59, "curve": 0.331, "c2": 0.33, "c3": 0.694, "c4": 0.75}, {"time": 0.6167, "angle": 13.13, "curve": 0.377, "c2": 0.61, "c3": 0.719}, - {"time": 0.6667, "angle": 15.47, "curve": 0.25, "c3": 0.75}, {"time": 0.9167, "curve": 0.264, "c3": 0.618, "c4": 0.43}, {"time": 1, "angle": 4.59} + {"angle": 20.89, "curve": 0.276, "c2": 0.11, "c3": 0.632, "c4": 0.53}, {"time": 0.5, "angle": -3.68, "curve": 0.368, "c2": 0.47, "c3": 0.753}, + {"time": 1.25, "angle": -39.49, "curve": 0.247, "c3": 0.632, "c4": 0.53}, {"time": 2, "angle": -3.61, "curve": 0.338, "c2": 0.35, "c3": 0.674, "c4": 0.69}, + {"time": 2.15, "angle": 5.18, "curve": 0.382, "c2": 0.57, "c3": 0.734}, {"time": 2.5833, "angle": 21.99, "curve": 0.314, "c3": 0.649, "c4": 0.35}, {"time": 2.6667, "angle": 20.89} ], "translate": [ - {"x": -15.68, "y": 2.61, "curve": 0.38, "c2": 0.53, "c3": 0.746}, {"time": 0.1167, "x": -17.06, "y": -1.14, "curve": 0.25, "c3": 0.75}, - {"time": 0.3667, "x": -13.78, "y": 7.8, "curve": 0.247, "c3": 0.632, "c4": 0.53}, {"time": 0.5, "x": -15.68, "y": 2.61, "curve": 0.38, "c2": 0.53, "c3": 0.746}, - {"time": 0.6167, "x": -17.06, "y": -1.14, "curve": 0.25, "c3": 0.75}, {"time": 0.8667, "x": -13.78, "y": 7.8, "curve": 0.247, "c3": 0.632, "c4": 0.53}, - {"time": 1, "x": -15.68, "y": 2.61} - ] - }, - "body-braid2": { - "rotate": [ - {"angle": 9.33, "curve": 0.25, "c3": 0.75}, {"time": 0.25, "curve": 0.25, "c3": 0.75}, {"time": 0.5, "angle": 9.33, "curve": 0.25, "c3": 0.75}, {"time": 0.75, "curve": 0.25, "c3": 0.75}, - {"time": 1, "angle": 9.33} + {"x": -1.2, "y": -0.08, "curve": 0.299, "c2": 0.22, "c3": 0.654, "c4": 0.62}, {"time": 0.5, "x": -6.5, "y": -0.42, "curve": 0.379, "c2": 0.52, "c3": 0.747}, + {"time": 1.1, "x": -11.49, "y": -0.75, "curve": 0.243, "c3": 0.65, "c4": 0.61}, {"time": 2, "x": -3.14, "y": -0.2, "curve": 0.382, "c2": 0.57, "c3": 0.734}, + {"time": 2.4333, "curve": 0.289, "c3": 0.628, "c4": 0.38}, {"time": 2.6667, "x": -1.2, "y": -0.08} ] }, - "body-braid4": { + "ear-right-bubble-02": { "rotate": [ - {"angle": 5.44, "curve": 0.374, "c2": 0.49, "c3": 0.751}, {"time": 0.1333, "angle": 11.24, "curve": 0.25, "c3": 0.75}, {"time": 0.3833, "curve": 0.251, "c3": 0.624, "c4": 0.49}, - {"time": 0.5, "angle": 5.44, "curve": 0.374, "c2": 0.49, "c3": 0.751}, {"time": 0.6333, "angle": 11.24, "curve": 0.25, "c3": 0.75}, - {"time": 0.8833, "curve": 0.251, "c3": 0.624, "c4": 0.49}, {"time": 1, "angle": 5.44} + {"angle": 1.22, "curve": 0.318, "c2": 0.29, "c3": 0.659, "c4": 0.64}, {"time": 0.3, "angle": 8.04, "curve": 0.375, "c2": 0.5, "c3": 0.75}, + {"time": 0.9667, "angle": 19.86, "curve": 0.25, "c3": 0.625, "c4": 0.5}, {"time": 1.6333, "angle": 8.02, "curve": 0.336, "c2": 0.34, "c3": 0.671, "c4": 0.68}, + {"time": 1.8, "angle": 4.16, "curve": 0.382, "c2": 0.56, "c3": 0.74}, {"time": 2.3, "angle": -3.78, "curve": 0.272, "c3": 0.619, "c4": 0.41}, {"time": 2.6667, "angle": 1.22} + ], + "translate": [ + {"x": 3.57, "y": -0.19, "curve": 0.331, "c2": 0.33, "c3": 0.672, "c4": 0.68}, {"time": 0.3, "x": -4.24, "y": 0.22, "curve": 0.382, "c2": 0.56, "c3": 0.74}, + {"time": 0.8, "x": -13.12, "y": 0.69, "curve": 0.244, "c3": 0.641, "c4": 0.57}, {"time": 1.6333, "x": 4.46, "y": -0.23, "curve": 0.382, "c2": 0.56, "c3": 0.74}, + {"time": 2.1333, "x": 13.34, "y": -0.7, "curve": 0.258, "c3": 0.619, "c4": 0.45}, {"time": 2.6667, "x": 3.57, "y": -0.19} ] }, - "body-braid3": { - "rotate": [ - {"angle": 14.47, "curve": 0.377, "c2": 0.61, "c3": 0.719}, {"time": 0.0667, "angle": 17.05, "curve": 0.25, "c3": 0.75}, {"time": 0.3, "curve": 0.243, "c3": 0.674, "c4": 0.69}, - {"time": 0.5, "angle": 14.47, "curve": 0.377, "c2": 0.61, "c3": 0.719}, {"time": 0.5667, "angle": 17.05, "curve": 0.25, "c3": 0.75}, - {"time": 0.8, "curve": 0.243, "c3": 0.674, "c4": 0.69}, {"time": 1, "angle": 14.47} + "ear-right-bubble-03": { + "translate": [ + {"x": -18.02, "y": 0.95, "curve": 0.377, "c2": 0.61, "c3": 0.72}, {"time": 0.3, "x": -24.28, "y": 1.28, "curve": 0.25, "c3": 0.75}, + {"time": 1.6333, "x": 15.53, "y": -0.82, "curve": 0.242, "c3": 0.673, "c4": 0.69}, {"time": 2.6667, "x": -18.02, "y": 0.95} ] }, - "@body2": { + "ear-right-bubble-04": { "rotate": [ - {"angle": -3.3, "curve": 0.338, "c2": 0.35, "c3": 0.704, "c4": 0.79}, {"time": 0.1167, "angle": -9.03, "curve": 0.372, "c2": 0.62, "c3": 0.71}, - {"time": 0.1667, "angle": -10.03, "curve": 0.25, "c3": 0.75}, {"time": 0.4167, "curve": 0.261, "c3": 0.618, "c4": 0.44}, - {"time": 0.5, "angle": -3.3, "curve": 0.338, "c2": 0.35, "c3": 0.704, "c4": 0.79}, {"time": 0.6167, "angle": -9.03, "curve": 0.372, "c2": 0.62, "c3": 0.71}, - {"time": 0.6667, "angle": -10.03, "curve": 0.25, "c3": 0.75}, {"time": 0.9167, "curve": 0.261, "c3": 0.618, "c4": 0.44}, {"time": 1, "angle": -3.3} + {"angle": -8.47, "curve": 0.36, "c2": 0.64, "c3": 0.695}, {"time": 0.1333, "angle": -9.72, "curve": 0.299, "c3": 0.636, "c4": 0.36}, + {"time": 0.3, "angle": -7.78, "curve": 0.298, "c2": 0.2, "c3": 0.756}, {"time": 1.4667, "angle": 21.21, "curve": 0.299, "c3": 0.636, "c4": 0.36}, + {"time": 1.6333, "angle": 19.4, "curve": 0.298, "c2": 0.2, "c3": 0.641, "c4": 0.57}, {"time": 1.9667, "angle": 10.82, "curve": 0.346, "c2": 0.38, "c3": 0.722, "c4": 0.86}, + {"time": 2.6667, "angle": -8.47} ], "translate": [ - {"x": 2.89, "y": -4.35, "curve": 0.378, "c2": 0.52, "c3": 0.748}, {"time": 0.1167, "x": 2.83, "y": 6.92, "curve": 0.25, "c3": 0.75}, - {"time": 0.3667, "x": 2.96, "y": -18.03, "curve": 0.248, "c3": 0.629, "c4": 0.52}, {"time": 0.5, "x": 2.89, "y": -4.35, "curve": 0.378, "c2": 0.52, "c3": 0.748}, - {"time": 0.6167, "x": 2.83, "y": 6.92, "curve": 0.25, "c3": 0.75}, {"time": 0.8667, "x": 2.96, "y": -18.03, "curve": 0.248, "c3": 0.629, "c4": 0.52}, {"time": 1, "x": 2.89, "y": -4.35} + {"x": -16.1, "y": 0.65, "curve": 0.303, "c2": 0.22, "c3": 0.645, "c4": 0.59}, {"time": 0.3, "x": -8.79, "y": -0.35, "curve": 0.359, "c2": 0.43, "c3": 0.756}, + {"time": 1.1333, "x": 10.15, "y": -2.95, "curve": 0.26, "c3": 0.618, "c4": 0.44}, {"time": 1.6333, "x": 0.57, "y": -1.63, "curve": 0.359, "c2": 0.43, "c3": 0.756}, + {"time": 2.4667, "x": -18.37, "y": 0.97, "curve": 0.294, "c3": 0.631, "c4": 0.37}, {"time": 2.6667, "x": -16.1, "y": 0.65} ] }, - "body-braid6": { + "ear-right-bubble-06": { "rotate": [ - {"angle": 0.21, "curve": 0.312, "c2": 0.25, "c3": 0.757}, {"time": 0.2167, "angle": 2.13, "curve": 0.25, "c3": 0.75}, {"time": 0.4667, "curve": 0.29, "c3": 0.628, "c4": 0.38}, - {"time": 0.5, "angle": 0.21, "curve": 0.312, "c2": 0.25, "c3": 0.757}, {"time": 0.7167, "angle": 2.13, "curve": 0.25, "c3": 0.75}, - {"time": 0.9667, "curve": 0.29, "c3": 0.628, "c4": 0.38}, {"time": 1, "angle": 0.21} + {"angle": 8.02, "curve": 0.336, "c2": 0.34, "c3": 0.671, "c4": 0.68}, {"time": 0.1667, "angle": 4.16, "curve": 0.382, "c2": 0.56, "c3": 0.74}, + {"time": 0.6667, "angle": -3.78, "curve": 0.25, "c3": 0.75}, {"time": 2, "angle": 19.86, "curve": 0.25, "c3": 0.625, "c4": 0.5}, {"time": 2.6667, "angle": 8.02} + ], + "translate": [ + {"x": 4.46, "y": -0.23, "curve": 0.382, "c2": 0.56, "c3": 0.74}, {"time": 0.5, "x": 13.34, "y": -0.7, "curve": 0.25, "c3": 0.75}, + {"time": 1.8333, "x": -13.12, "y": 0.69, "curve": 0.244, "c3": 0.641, "c4": 0.57}, {"time": 2.6667, "x": 4.46, "y": -0.23} ] }, - "body-braid5": { - "rotate": [ - {"angle": 14.47, "curve": 0.38, "c2": 0.53, "c3": 0.746}, {"time": 0.1167, "angle": 19.81, "curve": 0.25, "c3": 0.75}, - {"time": 0.3667, "angle": 7.07, "curve": 0.247, "c3": 0.632, "c4": 0.53}, {"time": 0.5, "angle": 14.47, "curve": 0.38, "c2": 0.53, "c3": 0.746}, - {"time": 0.6167, "angle": 19.81, "curve": 0.25, "c3": 0.75}, {"time": 0.8667, "angle": 7.07, "curve": 0.247, "c3": 0.632, "c4": 0.53}, {"time": 1, "angle": 14.47} - ] + "ear-right-bubble-07": { + "translate": [{"x": 15.53, "y": -0.82, "curve": 0.25, "c3": 0.75}, {"time": 1.3333, "x": -24.28, "y": 1.28, "curve": 0.25, "c3": 0.75}, {"time": 2.6667, "x": 15.53, "y": -0.82}] }, - "body-braid": { - "rotate": [ - {"angle": 10.04, "curve": 0.368, "c2": 0.63, "c3": 0.706}, {"time": 0.05, "angle": 10.92, "curve": 0.25, "c3": 0.75}, {"time": 0.2833, "curve": 0.244, "c3": 0.695, "c4": 0.77}, - {"time": 0.5, "angle": 10.04, "curve": 0.368, "c2": 0.63, "c3": 0.706}, {"time": 0.55, "angle": 10.92, "curve": 0.25, "c3": 0.75}, - {"time": 0.7833, "curve": 0.244, "c3": 0.695, "c4": 0.77}, {"time": 1, "angle": 10.04} - ] - } - }, - "events": [{"time": 0.1667, "name": "hit-buff"}] - }, - "2375931044": { - "slots": { - "eyes": {"attachment": [{"time": 0.05, "name": "eyes-shut"}, {"time": 0.7667, "name": "eyes"}]}, - "mouth": {"attachment": [{"time": 0.05, "name": "mouth-bite"}, {"time": 0.7667, "name": "mouth"}]} - }, - "bones": { - "@pivot-back": { + "ear-right-bubble-08": { "rotate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "angle": 3.5}, {"time": 0.6667, "angle": 4, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.8333, "angle": -1.98, "curve": 0.306, "c3": 0.695}, {"time": 1} + {"angle": 19.4, "curve": 0.298, "c2": 0.2, "c3": 0.641, "c4": 0.57}, {"time": 0.3333, "angle": 10.82, "curve": 0.359, "c2": 0.43, "c3": 0.756}, + {"time": 1.1667, "angle": -9.72, "curve": 0.25, "c3": 0.75}, {"time": 2.5, "angle": 21.21, "curve": 0.299, "c3": 0.636, "c4": 0.36}, {"time": 2.6667, "angle": 19.4} ], "translate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "y": 2.9}, {"time": 0.6667, "y": 3.91, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.8333, "y": -2.14, "curve": 0.306, "c3": 0.695}, {"time": 1} + {"x": 0.57, "y": -1.63, "curve": 0.359, "c2": 0.43, "c3": 0.756}, {"time": 0.8333, "x": -18.37, "y": 0.97, "curve": 0.25, "c3": 0.75}, + {"time": 2.1667, "x": 10.15, "y": -2.95, "curve": 0.26, "c3": 0.618, "c4": 0.44}, {"time": 2.6667, "x": 0.57, "y": -1.63} ] }, - "@leg-front-right": { + "ear-left-bubble-06": { + "rotate": [ + {"angle": -16.25, "curve": 0.37, "c2": 0.63, "c3": 0.709}, {"time": 0.2167, "angle": -21.58, "curve": 0.282, "c3": 0.624, "c4": 0.39}, + {"time": 0.5, "angle": -13.53, "curve": 0.315, "c2": 0.27, "c3": 0.653, "c4": 0.62}, {"time": 0.7167, "angle": -2.35, "curve": 0.359, "c2": 0.43, "c3": 0.756}, + {"time": 1.55, "angle": 35.68, "curve": 0.243, "c3": 0.69, "c4": 0.75}, {"time": 2.6667, "angle": -16.25} + ], "translate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": -0.75, "y": -16.02}, {"time": 0.6667, "x": -1.01, "y": -19.02, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.8333, "x": -0.43, "y": 9.97, "curve": 0.306, "c3": 0.695}, {"time": 1} + {"curve": 0.26, "c3": 0.618, "c4": 0.44}, {"time": 0.5, "x": -3.69, "y": -0.24, "curve": 0.359, "c2": 0.43, "c3": 0.756}, + {"time": 1.3333, "x": -11, "y": -0.72, "curve": 0.25, "c3": 0.75}, {"time": 2.6667} ] }, - "@leg-front-left": { + "ear-left-bubble-07": { "translate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": -0.36, "y": -7.76}, {"time": 0.6667, "x": -0.47, "y": -8.85, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.8333, "x": -0.23, "y": 5.14, "curve": 0.306, "c3": 0.695}, {"time": 1} - ] - }, - "tail": { - "rotate": [ - {"curve": 0, "c2": 0.3, "c3": 0.54}, {"time": 0.1667, "angle": -17.97, "curve": 0.306, "c3": 0.695}, {"time": 0.4167, "angle": -9.96, "curve": 0.306, "c3": 0.695}, - {"time": 0.6667, "angle": -19.79, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.8333, "angle": 6.14, "curve": 0.306, "c3": 0.695}, {"time": 1} + {"x": -3.01, "y": -0.2, "curve": 0.382, "c2": 0.56, "c3": 0.74}, {"time": 0.5, "x": 6.85, "y": 0.45, "curve": 0.25, "c3": 0.75}, + {"time": 1.8333, "x": -22.49, "y": -1.47, "curve": 0.244, "c3": 0.641, "c4": 0.57}, {"time": 2.6667, "x": -3.01, "y": -0.2} ] }, - "@body3": { + "ear-left-bubble-08": { "rotate": [ - {"angle": -11.21, "curve": 0.364, "c2": 0.47, "c3": 0.704, "c4": 0.84}, {"time": 0.05, "angle": -13.65, "curve": 0.354, "c2": 0.65, "c3": 0.688}, - {"time": 0.0667, "angle": -14, "curve": 0.25, "c3": 0.75}, {"time": 0.3167, "curve": 0.242, "c3": 0.662, "c4": 0.65}, - {"time": 0.5, "angle": -11.21, "curve": 0.364, "c2": 0.47, "c3": 0.704, "c4": 0.84}, {"time": 0.55, "angle": -13.65, "curve": 0.354, "c2": 0.65, "c3": 0.688}, - {"time": 0.5667, "angle": -14, "curve": 0.25, "c3": 0.75}, {"time": 0.8167, "curve": 0.242, "c3": 0.662, "c4": 0.65}, {"time": 1, "angle": -11.21} + {"angle": -32.32, "curve": 0.301, "c2": 0.23, "c3": 0.656, "c4": 0.63}, {"time": 0.5, "angle": -3.61, "curve": 0.338, "c2": 0.35, "c3": 0.674, "c4": 0.69}, + {"time": 0.65, "angle": 5.18, "curve": 0.382, "c2": 0.57, "c3": 0.734}, {"time": 1.0833, "angle": 21.99, "curve": 0.25, "c3": 0.75}, + {"time": 2.4167, "angle": -39.49, "curve": 0.286, "c3": 0.626, "c4": 0.38}, {"time": 2.6667, "angle": -32.32} ], "translate": [ - {"x": 30.45, "y": -18.4, "curve": 0.374, "c2": 0.62, "c3": 0.715}, {"time": 0.05, "x": 34.51, "y": -19.31, "curve": 0.25, "c3": 0.75}, - {"time": 0.3, "x": 1.97, "y": -12.02, "curve": 0.243, "c3": 0.681, "c4": 0.72}, {"time": 0.5, "x": 30.45, "y": -18.4, "curve": 0.374, "c2": 0.62, "c3": 0.715}, - {"time": 0.55, "x": 34.51, "y": -19.31, "curve": 0.25, "c3": 0.75}, {"time": 0.8, "x": 1.97, "y": -12.02, "curve": 0.243, "c3": 0.681, "c4": 0.72}, {"time": 1, "x": 30.45, "y": -18.4} + {"x": -8.69, "y": -0.57, "curve": 0.321, "c2": 0.29, "c3": 0.675, "c4": 0.69}, {"time": 0.5, "x": -3.14, "y": -0.2, "curve": 0.382, "c2": 0.57, "c3": 0.734}, + {"time": 0.9333, "curve": 0.25, "c3": 0.75}, {"time": 2.2667, "x": -11.49, "y": -0.75, "curve": 0.269, "c3": 0.618, "c4": 0.42}, {"time": 2.6667, "x": -8.69, "y": -0.57} ] }, - "@body4": { - "rotate": [ - {"angle": 4.21, "curve": 0.339, "c2": 0.35, "c3": 0.676, "c4": 0.69}, {"time": 0.05, "angle": 6.54, "curve": 0.382, "c2": 0.58, "c3": 0.733}, - {"time": 0.1167, "angle": 9.83, "curve": 0.25, "c3": 0.75}, {"time": 0.3667, "angle": -2.66, "curve": 0.248, "c3": 0.629, "c4": 0.52}, - {"time": 0.5, "angle": 4.21, "curve": 0.339, "c2": 0.35, "c3": 0.676, "c4": 0.69}, {"time": 0.55, "angle": 6.54, "curve": 0.382, "c2": 0.58, "c3": 0.733}, - {"time": 0.6167, "angle": 9.83, "curve": 0.25, "c3": 0.75}, {"time": 0.8667, "angle": -2.66, "curve": 0.248, "c3": 0.629, "c4": 0.52}, {"time": 1, "angle": 4.21} - ], + "ear-right-dot-01": { "translate": [ - {"x": 23.06, "y": -10.33, "curve": 0.368, "c2": 0.63, "c3": 0.706}, {"time": 0.05, "x": 25.02, "y": -10.92, "curve": 0.25, "c3": 0.75}, - {"time": 0.2833, "x": 0.59, "y": -3.61, "curve": 0.244, "c3": 0.695, "c4": 0.77}, {"time": 0.5, "x": 23.06, "y": -10.33, "curve": 0.368, "c2": 0.63, "c3": 0.706}, - {"time": 0.55, "x": 25.02, "y": -10.92, "curve": 0.25, "c3": 0.75}, {"time": 0.7833, "x": 0.59, "y": -3.61, "curve": 0.244, "c3": 0.695, "c4": 0.77}, {"time": 1, "x": 23.06, "y": -10.33} + {"x": 109.28, "y": -3.61}, {"time": 0.6833, "x": 175.18, "y": -5.79, "curve": "stepped"}, {"time": 0.7, "curve": "stepped"}, {"time": 1.5333}, {"time": 2.6667, "x": 109.28, "y": -3.61} + ], + "scale": [ + {}, {"time": 0.1167, "x": 1.117, "y": 0.874, "curve": 0.295, "c3": 0.633, "c4": 0.37}, {"time": 0.35, "x": 0.871, "y": 1.143, "curve": 0.321, "c2": 0.28, "c3": 0.655, "c4": 0.62}, + {"time": 0.4667, "x": 1.061, "y": 0.929, "curve": 0.317, "c2": 0.28, "c3": 0.654, "c4": 0.62}, + {"time": 0.7167, "x": 0.944, "y": 1.139, "curve": 0.327, "c2": 0.31, "c3": 0.664, "c4": 0.66}, + {"time": 0.9333, "x": 1.146, "y": 0.925, "curve": 0.334, "c2": 0.34, "c3": 0.668, "c4": 0.67}, + {"time": 1.0667, "x": 0.88, "y": 1.171, "curve": 0.336, "c2": 0.34, "c3": 0.671, "c4": 0.68}, + {"time": 1.1833, "x": 1.073, "y": 0.927, "curve": 0.339, "c2": 0.35, "c3": 0.673, "c4": 0.69}, {"time": 1.3, "x": 0.87, "y": 1.193, "curve": 0.352, "c2": 0.41, "c3": 0.689, "c4": 0.76}, + {"time": 1.5333, "x": 1.073, "y": 0.868, "curve": 0.367, "c2": 0.63, "c3": 0.705}, {"time": 1.7667} ] }, - "@body6": { - "rotate": [ - {"angle": 4.59, "curve": 0.331, "c2": 0.33, "c3": 0.694, "c4": 0.75}, {"time": 0.1167, "angle": 13.13, "curve": 0.377, "c2": 0.61, "c3": 0.719}, - {"time": 0.1667, "angle": 15.47, "curve": 0.25, "c3": 0.75}, {"time": 0.4167, "curve": 0.264, "c3": 0.618, "c4": 0.43}, - {"time": 0.5, "angle": 4.59, "curve": 0.331, "c2": 0.33, "c3": 0.694, "c4": 0.75}, {"time": 0.6167, "angle": 13.13, "curve": 0.377, "c2": 0.61, "c3": 0.719}, - {"time": 0.6667, "angle": 15.47, "curve": 0.25, "c3": 0.75}, {"time": 0.9167, "curve": 0.264, "c3": 0.618, "c4": 0.43}, {"time": 1, "angle": 4.59} - ], + "ear-left-dot-01": { "translate": [ - {"x": -15.68, "y": 2.61, "curve": 0.38, "c2": 0.53, "c3": 0.746}, {"time": 0.1167, "x": -17.06, "y": -1.14, "curve": 0.25, "c3": 0.75}, - {"time": 0.3667, "x": -13.78, "y": 7.8, "curve": 0.247, "c3": 0.632, "c4": 0.53}, {"time": 0.5, "x": -15.68, "y": 2.61, "curve": 0.38, "c2": 0.53, "c3": 0.746}, - {"time": 0.6167, "x": -17.06, "y": -1.14, "curve": 0.25, "c3": 0.75}, {"time": 0.8667, "x": -13.78, "y": 7.8, "curve": 0.247, "c3": 0.632, "c4": 0.53}, - {"time": 1, "x": -15.68, "y": 2.61} + {"x": 63.96, "y": -1.07}, {"time": 1.4167, "x": 214.98, "y": -3.58, "curve": "stepped"}, {"time": 1.4333, "curve": "stepped"}, {"time": 2.0667}, {"time": 2.6667, "x": 63.96, "y": -1.07} + ], + "scale": [ + {"x": 1.034, "y": 0.977, "curve": 0.323, "c2": 0.3, "c3": 0.658, "c4": 0.64}, {"time": 0.2, "x": 0.944, "y": 1.139, "curve": 0.327, "c2": 0.31, "c3": 0.664, "c4": 0.66}, + {"time": 0.4667, "x": 1.146, "y": 0.925, "curve": 0.334, "c2": 0.34, "c3": 0.668, "c4": 0.67}, {"time": 0.6, "x": 0.88, "y": 1.171, "curve": 0.336, "c2": 0.34, "c3": 0.671, "c4": 0.68}, + {"time": 0.75, "x": 1.073, "y": 0.927, "curve": 0.339, "c2": 0.35, "c3": 0.673, "c4": 0.69}, {"time": 0.8833, "x": 0.87, "y": 1.193, "curve": 0.352, "c2": 0.41, "c3": 0.689, "c4": 0.76}, + {"time": 1.15, "x": 1.073, "y": 0.868, "curve": 0.367, "c2": 0.63, "c3": 0.705}, {"time": 1.4167, "curve": "stepped"}, {"time": 2.0667}, + {"time": 2.2, "x": 1.117, "y": 0.874, "curve": 0.295, "c3": 0.633, "c4": 0.37}, {"time": 2.4667, "x": 0.871, "y": 1.143, "curve": 0.321, "c2": 0.28, "c3": 0.655, "c4": 0.62}, + {"time": 2.6, "x": 1.061, "y": 0.929, "curve": 0.329, "c2": 0.32, "c3": 0.662, "c4": 0.65}, {"time": 2.6667, "x": 1.034, "y": 0.977} ] }, - "body-braid2": { - "rotate": [ - {"angle": 9.33, "curve": 0.25, "c3": 0.75}, {"time": 0.25, "curve": 0.25, "c3": 0.75}, {"time": 0.5, "angle": 9.33, "curve": 0.25, "c3": 0.75}, {"time": 0.75, "curve": 0.25, "c3": 0.75}, - {"time": 1, "angle": 9.33} + "ear-right-dot-02": { + "translate": [ + {"x": 89.44, "y": -1.49}, {"time": 1.3333, "x": 214.98, "y": -3.58, "curve": "stepped"}, {"time": 1.35, "curve": "stepped"}, {"time": 1.7167}, {"time": 2.6667, "x": 89.44, "y": -1.49} + ], + "scale": [ + {"x": 0.966, "y": 1.116, "curve": 0.329, "c2": 0.32, "c3": 0.664, "c4": 0.66}, {"time": 0.2667, "x": 1.146, "y": 0.925, "curve": 0.334, "c2": 0.34, "c3": 0.668, "c4": 0.67}, + {"time": 0.4167, "x": 0.88, "y": 1.171, "curve": 0.336, "c2": 0.34, "c3": 0.671, "c4": 0.68}, + {"time": 0.5667, "x": 1.073, "y": 0.927, "curve": 0.339, "c2": 0.35, "c3": 0.673, "c4": 0.69}, + {"time": 0.7167, "x": 0.87, "y": 1.193, "curve": 0.352, "c2": 0.41, "c3": 0.689, "c4": 0.76}, {"time": 1.0167, "x": 1.073, "y": 0.868, "curve": 0.367, "c2": 0.63, "c3": 0.705}, + {"time": 1.3333, "curve": "stepped"}, {"time": 1.7167}, {"time": 1.8667, "x": 1.117, "y": 0.874, "curve": 0.295, "c3": 0.633, "c4": 0.37}, + {"time": 2.1667, "x": 0.871, "y": 1.143, "curve": 0.321, "c2": 0.28, "c3": 0.655, "c4": 0.62}, + {"time": 2.3167, "x": 1.061, "y": 0.929, "curve": 0.317, "c2": 0.28, "c3": 0.654, "c4": 0.62}, + {"time": 2.6333, "x": 0.944, "y": 1.139, "curve": 0.332, "c2": 0.33, "c3": 0.666, "c4": 0.66}, {"time": 2.6667, "x": 0.966, "y": 1.116} ] }, - "body-braid4": { - "rotate": [ - {"angle": 5.44, "curve": 0.374, "c2": 0.49, "c3": 0.751}, {"time": 0.1333, "angle": 11.24, "curve": 0.25, "c3": 0.75}, {"time": 0.3833, "curve": 0.251, "c3": 0.624, "c4": 0.49}, - {"time": 0.5, "angle": 5.44, "curve": 0.374, "c2": 0.49, "c3": 0.751}, {"time": 0.6333, "angle": 11.24, "curve": 0.25, "c3": 0.75}, - {"time": 0.8833, "curve": 0.251, "c3": 0.624, "c4": 0.49}, {"time": 1, "angle": 5.44} + "ear-left-dot-02": { + "translate": [{"x": 122.71, "y": -21.71}, {"time": 0.45, "x": 147.81, "y": -26.16, "curve": "stepped"}, {"time": 0.4667}, {"time": 2.6667, "x": 122.71, "y": -21.71}], + "scale": [ + {"x": 1.026, "y": 0.944, "curve": 0.34, "c2": 0.36, "c3": 0.674, "c4": 0.7}, {"time": 0.1, "x": 1.073, "y": 0.868, "curve": 0.367, "c2": 0.63, "c3": 0.705}, + {"time": 0.45, "curve": "stepped"}, {"time": 0.4667, "curve": 0.25, "c3": 0.75}, {"time": 0.65, "x": 1.117, "y": 0.874, "curve": 0.295, "c3": 0.633, "c4": 0.37}, + {"time": 1, "x": 0.871, "y": 1.143, "curve": 0.321, "c2": 0.28, "c3": 0.655, "c4": 0.62}, {"time": 1.1667, "x": 1.061, "y": 0.929, "curve": 0.317, "c2": 0.28, "c3": 0.654, "c4": 0.62}, + {"time": 1.5167, "x": 0.944, "y": 1.139, "curve": 0.327, "c2": 0.31, "c3": 0.664, "c4": 0.66}, + {"time": 1.8833, "x": 1.146, "y": 0.925, "curve": 0.334, "c2": 0.34, "c3": 0.668, "c4": 0.67}, {"time": 2.05, "x": 0.88, "y": 1.171, "curve": 0.336, "c2": 0.34, "c3": 0.671, "c4": 0.68}, + {"time": 2.2333, "x": 1.073, "y": 0.927, "curve": 0.339, "c2": 0.35, "c3": 0.673, "c4": 0.69}, {"time": 2.4, "x": 0.87, "y": 1.193, "curve": 0.346, "c2": 0.38, "c3": 0.681, "c4": 0.72}, + {"time": 2.6667, "x": 1.026, "y": 0.944} ] }, - "body-braid3": { - "rotate": [ - {"angle": 14.47, "curve": 0.377, "c2": 0.61, "c3": 0.719}, {"time": 0.0667, "angle": 17.05, "curve": 0.25, "c3": 0.75}, {"time": 0.3, "curve": 0.243, "c3": 0.674, "c4": 0.69}, - {"time": 0.5, "angle": 14.47, "curve": 0.377, "c2": 0.61, "c3": 0.719}, {"time": 0.5667, "angle": 17.05, "curve": 0.25, "c3": 0.75}, - {"time": 0.8, "curve": 0.243, "c3": 0.674, "c4": 0.69}, {"time": 1, "angle": 14.47} + "ear-right-dot-03": { + "translate": [ + {"x": 36.97, "y": 7.71}, {"time": 1.95, "x": 168.03, "y": 35.03, "curve": "stepped"}, {"time": 1.9667, "curve": "stepped"}, {"time": 2.1167}, {"time": 2.6667, "x": 36.97, "y": 7.71} + ], + "scale": [ + {"x": 0.923, "y": 1.084, "curve": 0.325, "c2": 0.3, "c3": 0.659, "c4": 0.63}, {"time": 0.1167, "x": 1.061, "y": 0.929, "curve": 0.317, "c2": 0.28, "c3": 0.654, "c4": 0.62}, + {"time": 0.45, "x": 0.944, "y": 1.139, "curve": 0.327, "c2": 0.31, "c3": 0.664, "c4": 0.66}, + {"time": 0.7833, "x": 1.146, "y": 0.925, "curve": 0.334, "c2": 0.34, "c3": 0.668, "c4": 0.67}, {"time": 0.95, "x": 0.88, "y": 1.171, "curve": 0.336, "c2": 0.34, "c3": 0.671, "c4": 0.68}, + {"time": 1.1167, "x": 1.073, "y": 0.927, "curve": 0.339, "c2": 0.35, "c3": 0.673, "c4": 0.69}, + {"time": 1.2833, "x": 0.87, "y": 1.193, "curve": 0.352, "c2": 0.41, "c3": 0.689, "c4": 0.76}, {"time": 1.6167, "x": 1.073, "y": 0.868, "curve": 0.367, "c2": 0.63, "c3": 0.705}, + {"time": 1.95, "curve": "stepped"}, {"time": 2.1167}, {"time": 2.2833, "x": 1.117, "y": 0.874, "curve": 0.295, "c3": 0.633, "c4": 0.37}, + {"time": 2.6167, "x": 0.871, "y": 1.143, "curve": 0.329, "c2": 0.31, "c3": 0.663, "c4": 0.65}, {"time": 2.6667, "x": 0.923, "y": 1.084} ] }, - "@body2": { - "rotate": [ - {"angle": -3.3, "curve": 0.338, "c2": 0.35, "c3": 0.704, "c4": 0.79}, {"time": 0.1167, "angle": -9.03, "curve": 0.372, "c2": 0.62, "c3": 0.71}, - {"time": 0.1667, "angle": -10.03, "curve": 0.25, "c3": 0.75}, {"time": 0.4167, "curve": 0.261, "c3": 0.618, "c4": 0.44}, - {"time": 0.5, "angle": -3.3, "curve": 0.338, "c2": 0.35, "c3": 0.704, "c4": 0.79}, {"time": 0.6167, "angle": -9.03, "curve": 0.372, "c2": 0.62, "c3": 0.71}, - {"time": 0.6667, "angle": -10.03, "curve": 0.25, "c3": 0.75}, {"time": 0.9167, "curve": 0.261, "c3": 0.618, "c4": 0.44}, {"time": 1, "angle": -3.3} - ], + "ear-right-dot-04": { "translate": [ - {"x": 2.89, "y": -4.35, "curve": 0.378, "c2": 0.52, "c3": 0.748}, {"time": 0.1167, "x": 2.83, "y": 6.92, "curve": 0.25, "c3": 0.75}, - {"time": 0.3667, "x": 2.96, "y": -18.03, "curve": 0.248, "c3": 0.629, "c4": 0.52}, {"time": 0.5, "x": 2.89, "y": -4.35, "curve": 0.378, "c2": 0.52, "c3": 0.748}, - {"time": 0.6167, "x": 2.83, "y": 6.92, "curve": 0.25, "c3": 0.75}, {"time": 0.8667, "x": 2.96, "y": -18.03, "curve": 0.248, "c3": 0.629, "c4": 0.52}, {"time": 1, "x": 2.89, "y": -4.35} + {"x": 165.28, "y": 17.31}, {"time": 0.1167, "x": 173.66, "y": 18.18, "curve": "stepped"}, {"time": 0.1333, "curve": "stepped"}, {"time": 0.3667}, {"time": 1.6833, "x": 94.61, "y": 9.91}, + {"time": 2.6667, "x": 165.28, "y": 17.31} + ], + "scale": [ + {"x": 1.012, "y": 0.978, "curve": 0.349, "c2": 0.65, "c3": 0.683}, {"time": 0.1167, "curve": "stepped"}, {"time": 0.3667}, + {"time": 0.5333, "x": 1.117, "y": 0.874, "curve": 0.295, "c3": 0.633, "c4": 0.37}, {"time": 0.85, "x": 0.871, "y": 1.143, "curve": 0.321, "c2": 0.28, "c3": 0.655, "c4": 0.62}, + {"time": 1.0167, "x": 1.061, "y": 0.929, "curve": 0.317, "c2": 0.28, "c3": 0.654, "c4": 0.62}, + {"time": 1.3333, "x": 0.944, "y": 1.139, "curve": 0.327, "c2": 0.31, "c3": 0.664, "c4": 0.66}, + {"time": 1.6667, "x": 1.146, "y": 0.925, "curve": 0.333, "c2": 0.33, "c3": 0.667, "c4": 0.67}, + {"time": 1.6833, "x": 1.116, "y": 0.953, "curve": 0.334, "c2": 0.34, "c3": 0.668, "c4": 0.67}, + {"time": 1.8167, "x": 0.88, "y": 1.171, "curve": 0.336, "c2": 0.34, "c3": 0.671, "c4": 0.68}, + {"time": 1.9833, "x": 1.073, "y": 0.927, "curve": 0.339, "c2": 0.35, "c3": 0.673, "c4": 0.69}, {"time": 2.15, "x": 0.87, "y": 1.193, "curve": 0.352, "c2": 0.41, "c3": 0.689, "c4": 0.76}, + {"time": 2.4667, "x": 1.073, "y": 0.868, "curve": 0.353, "c2": 0.47, "c3": 0.688, "c4": 0.81}, {"time": 2.6667, "x": 1.012, "y": 0.978} ] }, - "body-braid6": { - "rotate": [ - {"angle": 0.21, "curve": 0.312, "c2": 0.25, "c3": 0.757}, {"time": 0.2167, "angle": 2.13, "curve": 0.25, "c3": 0.75}, {"time": 0.4667, "curve": 0.29, "c3": 0.628, "c4": 0.38}, - {"time": 0.5, "angle": 0.21, "curve": 0.312, "c2": 0.25, "c3": 0.757}, {"time": 0.7167, "angle": 2.13, "curve": 0.25, "c3": 0.75}, - {"time": 0.9667, "curve": 0.29, "c3": 0.628, "c4": 0.38}, {"time": 1, "angle": 0.21} + "ear-right-dot-05": { + "translate": [ + {"x": 72.79, "y": -12.11}, {"time": 0.8167, "x": 158.24, "y": -26.33, "curve": "stepped"}, {"time": 0.8333, "curve": "stepped"}, {"time": 1.7667}, + {"time": 2.6667, "x": 72.79, "y": -12.11} + ], + "scale": [ + {"x": 1.034, "y": 1.044, "curve": 0.331, "c2": 0.33, "c3": 0.666, "c4": 0.66}, {"time": 0.1167, "x": 1.146, "y": 0.925, "curve": 0.334, "c2": 0.34, "c3": 0.668, "c4": 0.67}, + {"time": 0.2167, "x": 0.88, "y": 1.171, "curve": 0.336, "c2": 0.34, "c3": 0.671, "c4": 0.68}, + {"time": 0.3167, "x": 1.073, "y": 0.927, "curve": 0.339, "c2": 0.35, "c3": 0.673, "c4": 0.69}, + {"time": 0.4167, "x": 0.87, "y": 1.193, "curve": 0.352, "c2": 0.41, "c3": 0.689, "c4": 0.76}, {"time": 0.6167, "x": 1.073, "y": 0.868, "curve": 0.367, "c2": 0.63, "c3": 0.705}, + {"time": 0.8167, "curve": "stepped"}, {"time": 1.7667}, {"time": 1.8833, "x": 1.117, "y": 0.874, "curve": 0.295, "c3": 0.633, "c4": 0.37}, + {"time": 2.15, "x": 0.871, "y": 1.143, "curve": 0.321, "c2": 0.28, "c3": 0.655, "c4": 0.62}, + {"time": 2.2833, "x": 1.061, "y": 0.929, "curve": 0.317, "c2": 0.28, "c3": 0.654, "c4": 0.62}, {"time": 2.55, "x": 0.944, "y": 1.139, "curve": 0.33, "c2": 0.32, "c3": 0.664, "c4": 0.66}, + {"time": 2.6667, "x": 1.034, "y": 1.044} ] }, - "body-braid5": { - "rotate": [ - {"angle": 14.47, "curve": 0.38, "c2": 0.53, "c3": 0.746}, {"time": 0.1167, "angle": 19.81, "curve": 0.25, "c3": 0.75}, - {"time": 0.3667, "angle": 7.07, "curve": 0.247, "c3": 0.632, "c4": 0.53}, {"time": 0.5, "angle": 14.47, "curve": 0.38, "c2": 0.53, "c3": 0.746}, - {"time": 0.6167, "angle": 19.81, "curve": 0.25, "c3": 0.75}, {"time": 0.8667, "angle": 7.07, "curve": 0.247, "c3": 0.632, "c4": 0.53}, {"time": 1, "angle": 14.47} + "ear-left-dot-03": { + "translate": [ + {"x": 127.89, "y": 1.94}, {"time": 0.4833, "x": 164.98, "y": 2.51, "curve": "stepped"}, {"time": 0.5, "curve": "stepped"}, {"time": 1}, {"time": 2.6667, "x": 127.89, "y": 1.94} + ], + "scale": [ + {"x": 0.937, "y": 1.086, "curve": 0.348, "c2": 0.4, "c3": 0.683, "c4": 0.74}, {"time": 0.2, "x": 1.073, "y": 0.868, "curve": 0.367, "c2": 0.63, "c3": 0.705}, + {"time": 0.4833, "curve": "stepped"}, {"time": 1}, {"time": 1.15, "x": 1.117, "y": 0.874, "curve": 0.295, "c3": 0.633, "c4": 0.37}, + {"time": 1.4333, "x": 0.871, "y": 1.143, "curve": 0.321, "c2": 0.28, "c3": 0.655, "c4": 0.62}, + {"time": 1.5667, "x": 1.061, "y": 0.929, "curve": 0.317, "c2": 0.28, "c3": 0.654, "c4": 0.62}, + {"time": 1.8667, "x": 0.944, "y": 1.139, "curve": 0.327, "c2": 0.31, "c3": 0.664, "c4": 0.66}, + {"time": 2.15, "x": 1.146, "y": 0.925, "curve": 0.334, "c2": 0.34, "c3": 0.668, "c4": 0.67}, {"time": 2.2833, "x": 0.88, "y": 1.171, "curve": 0.336, "c2": 0.34, "c3": 0.671, "c4": 0.68}, + {"time": 2.4333, "x": 1.073, "y": 0.927, "curve": 0.339, "c2": 0.35, "c3": 0.673, "c4": 0.69}, + {"time": 2.5833, "x": 0.87, "y": 1.193, "curve": 0.338, "c2": 0.35, "c3": 0.672, "c4": 0.68}, {"time": 2.6667, "x": 0.937, "y": 1.086} ] }, - "body-braid": { - "rotate": [ - {"angle": 10.04, "curve": 0.368, "c2": 0.63, "c3": 0.706}, {"time": 0.05, "angle": 10.92, "curve": 0.25, "c3": 0.75}, {"time": 0.2833, "curve": 0.244, "c3": 0.695, "c4": 0.77}, - {"time": 0.5, "angle": 10.04, "curve": 0.368, "c2": 0.63, "c3": 0.706}, {"time": 0.55, "angle": 10.92, "curve": 0.25, "c3": 0.75}, - {"time": 0.7833, "curve": 0.244, "c3": 0.695, "c4": 0.77}, {"time": 1, "angle": 10.04} + "ear-left-dot-04": { + "translate": [{"time": 0.1333}, {"time": 0.7333, "x": 63.96, "y": -1.07}, {"time": 2.15, "x": 214.98, "y": -3.58, "curve": "stepped"}, {"time": 2.1667}], + "scale": [ + {"time": 0.1333}, {"time": 0.2667, "x": 1.117, "y": 0.874, "curve": 0.295, "c3": 0.633, "c4": 0.37}, + {"time": 0.5333, "x": 0.871, "y": 1.143, "curve": 0.321, "c2": 0.28, "c3": 0.655, "c4": 0.62}, + {"time": 0.6667, "x": 1.061, "y": 0.929, "curve": 0.329, "c2": 0.32, "c3": 0.662, "c4": 0.65}, + {"time": 0.7333, "x": 1.034, "y": 0.977, "curve": 0.323, "c2": 0.3, "c3": 0.658, "c4": 0.64}, + {"time": 0.9333, "x": 0.944, "y": 1.139, "curve": 0.327, "c2": 0.31, "c3": 0.664, "c4": 0.66}, {"time": 1.2, "x": 1.146, "y": 0.925, "curve": 0.334, "c2": 0.34, "c3": 0.668, "c4": 0.67}, + {"time": 1.3333, "x": 0.88, "y": 1.171, "curve": 0.336, "c2": 0.34, "c3": 0.671, "c4": 0.68}, + {"time": 1.4833, "x": 1.073, "y": 0.927, "curve": 0.339, "c2": 0.35, "c3": 0.673, "c4": 0.69}, + {"time": 1.6167, "x": 0.87, "y": 1.193, "curve": 0.352, "c2": 0.41, "c3": 0.689, "c4": 0.76}, {"time": 1.8833, "x": 1.073, "y": 0.868, "curve": 0.367, "c2": 0.63, "c3": 0.705}, + {"time": 2.15} ] - } - }, - "events": [{"time": 0.1667, "name": "hit-buff"}] - }, - "576133560": { - "slots": { - "eyes": {"attachment": [{"time": 0.0167, "name": "eyes-shut"}, {"time": 0.1833, "name": "eyes-angry"}, {"time": 0.4, "name": "eyes"}]}, - "mouth": {"attachment": [{"time": 0.0167, "name": "mouth-bite"}, {"time": 0.4, "name": "mouth"}]} - }, - "bones": { - "@pivot-back": { - "rotate": [ - {"curve": "stepped"}, {"time": 0.0167, "angle": -20}, {"time": 0.1667, "angle": -22, "curve": 0.464, "c4": 0.7}, {"time": 0.3167, "angle": 5.2, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.4167} - ], - "translate": [{"curve": "stepped"}, {"time": 0.0167, "x": 75, "y": -4.42}, {"time": 0.1667, "x": 80, "y": -7.47, "curve": 0.464, "c4": 0.7}, {"time": 0.3167}] }, - "@leg-front-left": {"translate": [{"time": 0.1667, "curve": 0.62, "c4": 0.3}, {"time": 0.3167, "x": -1.1, "y": -14.87, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.4167}]}, - "@shadow": { + "ear-left-dot-05": { "translate": [ - {"curve": "stepped"}, {"time": 0.0167, "x": 70.3, "curve": "stepped"}, {"time": 0.1667, "x": 70.3, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.3167, "x": 12.49, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.4167} + {"x": 81.81, "y": -14.48}, {"time": 0.7333, "x": 122.71, "y": -21.71}, {"time": 1.1833, "x": 147.81, "y": -26.16, "curve": "stepped"}, {"time": 1.2}, + {"time": 2.6667, "x": 81.81, "y": -14.48} ], "scale": [ - {"curve": "stepped"}, {"time": 0.0167, "x": 0.98, "y": 0.98}, {"time": 0.1667, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.3167, "x": 1.08, "y": 1.08, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.4167} + {"x": 1.066, "y": 0.999, "curve": 0.334, "c2": 0.34, "c3": 0.668, "c4": 0.67}, {"time": 0.1167, "x": 0.88, "y": 1.171, "curve": 0.336, "c2": 0.34, "c3": 0.671, "c4": 0.68}, + {"time": 0.3, "x": 1.073, "y": 0.927, "curve": 0.339, "c2": 0.35, "c3": 0.673, "c4": 0.69}, {"time": 0.4667, "x": 0.87, "y": 1.193, "curve": 0.346, "c2": 0.38, "c3": 0.681, "c4": 0.72}, + {"time": 0.7333, "x": 1.026, "y": 0.944, "curve": 0.34, "c2": 0.36, "c3": 0.674, "c4": 0.7}, {"time": 0.8333, "x": 1.073, "y": 0.868, "curve": 0.367, "c2": 0.63, "c3": 0.705}, + {"time": 1.1833, "curve": "stepped"}, {"time": 1.2, "curve": 0.25, "c3": 0.75}, {"time": 1.3833, "x": 1.117, "y": 0.874, "curve": 0.295, "c3": 0.633, "c4": 0.37}, + {"time": 1.7333, "x": 0.871, "y": 1.143, "curve": 0.321, "c2": 0.28, "c3": 0.655, "c4": 0.62}, {"time": 1.9, "x": 1.061, "y": 0.929, "curve": 0.317, "c2": 0.28, "c3": 0.654, "c4": 0.62}, + {"time": 2.25, "x": 0.944, "y": 1.139, "curve": 0.327, "c2": 0.31, "c3": 0.664, "c4": 0.66}, + {"time": 2.6167, "x": 1.146, "y": 0.925, "curve": 0.333, "c2": 0.33, "c3": 0.667, "c4": 0.67}, {"time": 2.6667, "x": 1.066, "y": 0.999} ] }, - "leg-back-left-IK": { + "ear-left-dot-06": { "translate": [ - {"curve": "stepped"}, {"time": 0.0167, "x": -5.88, "y": 0.9, "curve": "stepped"}, {"time": 0.1667, "x": -5.88, "y": 0.9, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.3167, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.3695, "x": -5.88, "y": 0.9} - ] - }, - "@leg-back-left": {"translate": [{"curve": "stepped"}, {"time": 0.0167, "x": -2.22, "y": 7.86}, {"time": 0.1667, "x": -2.63, "y": 8.92, "curve": 0.306, "c4": 0.8}, {"time": 0.3167}]}, - "@pivot-main": {"translate": [{"curve": "stepped"}, {"time": 0.0167, "x": 20, "curve": "stepped"}, {"time": 0.3167, "x": 20, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.4167}]}, - "@leg-front-right": {"translate": [{"time": 0.1667, "curve": 0.62, "c4": 0.3}, {"time": 0.3167, "x": -2.11, "y": -28.46, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.4167}]}, - "tail": { - "rotate": [ - {"curve": "stepped"}, {"time": 0.0167, "angle": 19}, {"time": 0.1667, "angle": 23.91, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.3167, "angle": -21.75, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.4167} + {"x": 71.62, "y": 1.09}, {"time": 0.7333, "x": 127.89, "y": 1.94}, {"time": 1.2167, "x": 164.98, "y": 2.51, "curve": "stepped"}, {"time": 1.2333, "curve": "stepped"}, {"time": 1.7333}, + {"time": 2.6667, "x": 71.62, "y": 1.09} + ], + "scale": [ + {"x": 0.991, "y": 1.09, "curve": 0.33, "c2": 0.32, "c3": 0.665, "c4": 0.66}, {"time": 0.2167, "x": 1.146, "y": 0.925, "curve": 0.334, "c2": 0.34, "c3": 0.668, "c4": 0.67}, + {"time": 0.35, "x": 0.88, "y": 1.171, "curve": 0.336, "c2": 0.34, "c3": 0.671, "c4": 0.68}, {"time": 0.5, "x": 1.073, "y": 0.927, "curve": 0.339, "c2": 0.35, "c3": 0.673, "c4": 0.69}, + {"time": 0.65, "x": 0.87, "y": 1.193, "curve": 0.338, "c2": 0.35, "c3": 0.672, "c4": 0.68}, {"time": 0.7333, "x": 0.937, "y": 1.086, "curve": 0.348, "c2": 0.4, "c3": 0.683, "c4": 0.74}, + {"time": 0.9333, "x": 1.073, "y": 0.868, "curve": 0.367, "c2": 0.63, "c3": 0.705}, {"time": 1.2167, "curve": "stepped"}, {"time": 1.7333}, + {"time": 1.8833, "x": 1.117, "y": 0.874, "curve": 0.295, "c3": 0.633, "c4": 0.37}, {"time": 2.1667, "x": 0.871, "y": 1.143, "curve": 0.321, "c2": 0.28, "c3": 0.655, "c4": 0.62}, + {"time": 2.3, "x": 1.061, "y": 0.929, "curve": 0.317, "c2": 0.28, "c3": 0.654, "c4": 0.62}, {"time": 2.6, "x": 0.944, "y": 1.139, "curve": 0.331, "c2": 0.33, "c3": 0.665, "c4": 0.66}, + {"time": 2.6667, "x": 0.991, "y": 1.09} ] }, - "leg-front-right-IK": { + "ear-right-dot-06": { "translate": [ - {"curve": "stepped"}, {"time": 0.0167, "x": 49.22, "y": 169.28}, {"time": 0.0833, "x": -4.05, "y": 205.79}, {"time": 0.1667, "x": 52, "y": 184.62, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.3167} + {"x": 38.57, "y": -1.28}, {"time": 0.7333, "x": 109.28, "y": -3.61}, {"time": 1.4167, "x": 175.18, "y": -5.79, "curve": "stepped"}, {"time": 1.4333, "curve": "stepped"}, + {"time": 2.2667}, {"time": 2.6667, "x": 38.57, "y": -1.28} + ], + "scale": [ + {}, {"time": 0.1167, "x": 1.117, "y": 0.874, "curve": 0.295, "c3": 0.633, "c4": 0.37}, {"time": 0.35, "x": 0.871, "y": 1.143, "curve": 0.321, "c2": 0.28, "c3": 0.655, "c4": 0.62}, + {"time": 0.4667, "x": 1.061, "y": 0.929, "curve": 0.317, "c2": 0.28, "c3": 0.654, "c4": 0.62}, + {"time": 0.7167, "x": 0.944, "y": 1.139, "curve": 0.327, "c2": 0.31, "c3": 0.664, "c4": 0.66}, + {"time": 0.9333, "x": 1.146, "y": 0.925, "curve": 0.334, "c2": 0.34, "c3": 0.668, "c4": 0.67}, + {"time": 1.0667, "x": 0.88, "y": 1.171, "curve": 0.336, "c2": 0.34, "c3": 0.671, "c4": 0.68}, + {"time": 1.1833, "x": 1.073, "y": 0.927, "curve": 0.339, "c2": 0.35, "c3": 0.673, "c4": 0.69}, {"time": 1.3, "x": 0.87, "y": 1.193, "curve": 0.352, "c2": 0.41, "c3": 0.689, "c4": 0.76}, + {"time": 1.5333, "x": 1.073, "y": 0.868, "curve": 0.367, "c2": 0.63, "c3": 0.705}, {"time": 1.7667} ] }, - "leg-front-left-IK": { + "ear-right-dot-07": { "translate": [ - {"curve": "stepped"}, {"time": 0.0167, "x": -29.76, "y": 76.11}, {"time": 0.0833, "x": 8.1, "y": 65.84}, {"time": 0.1667, "x": -35.9, "y": 81.82, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.3167} - ] - }, - "@body3": { - "rotate": [ - {"angle": -6.22, "curve": 0.384, "c2": 0.6, "c3": 0.719}, {"time": 0.05, "angle": -3.77, "curve": 0.144, "c3": 0.557}, - {"time": 0.25, "angle": -14, "curve": 0.415, "c3": 0.759, "c4": 0.68}, {"time": 0.4167, "angle": -6.22} + {"x": 20.4, "y": -0.34}, {"time": 0.7333, "x": 89.44, "y": -1.49}, {"time": 2.0667, "x": 214.98, "y": -3.58, "curve": "stepped"}, {"time": 2.0833, "curve": "stepped"}, {"time": 2.45}, + {"time": 2.6667, "x": 20.4, "y": -0.34} ], - "translate": [{"curve": 0.144, "c3": 0.557}, {"time": 0.2, "x": 45.36, "y": -33.56, "curve": 0.455, "c3": 0.807}, {"time": 0.4167}] + "scale": [ + {"x": 1.101, "y": 0.892, "curve": 0.306, "c2": 0.13, "c3": 0.641, "c4": 0.48}, {"time": 0.2333, "x": 0.871, "y": 1.143, "curve": 0.321, "c2": 0.28, "c3": 0.655, "c4": 0.62}, + {"time": 0.3833, "x": 1.061, "y": 0.929, "curve": 0.317, "c2": 0.28, "c3": 0.654, "c4": 0.62}, {"time": 0.7, "x": 0.944, "y": 1.139, "curve": 0.332, "c2": 0.33, "c3": 0.666, "c4": 0.66}, + {"time": 0.7333, "x": 0.966, "y": 1.116, "curve": 0.329, "c2": 0.32, "c3": 0.664, "c4": 0.66}, {"time": 1, "x": 1.146, "y": 0.925, "curve": 0.334, "c2": 0.34, "c3": 0.668, "c4": 0.67}, + {"time": 1.15, "x": 0.88, "y": 1.171, "curve": 0.336, "c2": 0.34, "c3": 0.671, "c4": 0.68}, {"time": 1.3, "x": 1.073, "y": 0.927, "curve": 0.339, "c2": 0.35, "c3": 0.673, "c4": 0.69}, + {"time": 1.45, "x": 0.87, "y": 1.193, "curve": 0.352, "c2": 0.41, "c3": 0.689, "c4": 0.76}, {"time": 1.75, "x": 1.073, "y": 0.868, "curve": 0.367, "c2": 0.63, "c3": 0.705}, + {"time": 2.0667, "curve": "stepped"}, {"time": 2.45}, {"time": 2.6, "x": 1.117, "y": 0.874, "curve": 0.323, "c3": 0.657, "c4": 0.34}, {"time": 2.6667, "x": 1.101, "y": 0.892} + ] }, - "@body4": { - "rotate": [ - {"angle": -8.24, "curve": 0.384, "c2": 0.6, "c3": 0.719}, {"time": 0.05, "angle": -15.35, "curve": 0.144, "c3": 0.557}, - {"time": 0.25, "angle": 14.26, "curve": 0.415, "c3": 0.759, "c4": 0.68}, {"time": 0.4167, "angle": -8.24} + "ear-right-dot-08": { + "translate": [ + {"x": 166.91, "y": 34.8}, {"time": 0.0167, "x": 168.03, "y": 35.03, "curve": "stepped"}, {"time": 0.0333, "curve": "stepped"}, {"time": 0.1833}, {"time": 0.7333, "x": 36.97, "y": 7.71}, + {"time": 2.6667, "x": 166.91, "y": 34.8} ], - "translate": [{"x": -1.59, "y": 23.93, "curve": 0.144, "c3": 0.557}, {"time": 0.2, "x": 6.55, "y": -29.78, "curve": 0.455, "c3": 0.807}, {"time": 0.4167, "x": -1.59, "y": 23.93}] + "scale": [ + {"y": 0.999, "curve": 0.336, "c2": 0.67, "c3": 0.669}, {"time": 0.0167, "curve": "stepped"}, {"time": 0.1833}, + {"time": 0.35, "x": 1.117, "y": 0.874, "curve": 0.295, "c3": 0.633, "c4": 0.37}, {"time": 0.6833, "x": 0.871, "y": 1.143, "curve": 0.329, "c2": 0.31, "c3": 0.663, "c4": 0.65}, + {"time": 0.7333, "x": 0.923, "y": 1.084, "curve": 0.325, "c2": 0.3, "c3": 0.659, "c4": 0.63}, {"time": 0.85, "x": 1.061, "y": 0.929, "curve": 0.317, "c2": 0.28, "c3": 0.654, "c4": 0.62}, + {"time": 1.1833, "x": 0.944, "y": 1.139, "curve": 0.327, "c2": 0.31, "c3": 0.664, "c4": 0.66}, + {"time": 1.5167, "x": 1.146, "y": 0.925, "curve": 0.334, "c2": 0.34, "c3": 0.668, "c4": 0.67}, + {"time": 1.6833, "x": 0.88, "y": 1.171, "curve": 0.336, "c2": 0.34, "c3": 0.671, "c4": 0.68}, {"time": 1.85, "x": 1.073, "y": 0.927, "curve": 0.339, "c2": 0.35, "c3": 0.673, "c4": 0.69}, + {"time": 2.0167, "x": 0.87, "y": 1.193, "curve": 0.352, "c2": 0.41, "c3": 0.689, "c4": 0.76}, {"time": 2.35, "x": 1.073, "y": 0.868, "curve": 0.365, "c2": 0.6, "c3": 0.702, "c4": 0.97}, + {"time": 2.6667, "y": 0.999} + ] }, - "@body6": { - "rotate": [ - {"angle": 15.78, "curve": 0.366, "c2": 0.35, "c3": 0.7, "c4": 0.7}, {"time": 0.05, "angle": 5.84, "curve": 0.396, "c2": 0.58, "c3": 0.732}, - {"time": 0.1167, "angle": -5.24, "curve": 0.144, "c3": 0.557}, {"time": 0.3167, "angle": 25.77, "curve": 0.376, "c3": 0.712, "c4": 0.48}, {"time": 0.4167, "angle": 15.78} - ], + "ear-right-dot-09": { "translate": [ - {"x": -12.53, "y": 5.46, "curve": 0.384, "c2": 0.6, "c3": 0.719}, {"time": 0.05, "x": 5.81, "y": -4.07, "curve": 0.144, "c3": 0.557}, - {"time": 0.25, "x": -70.52, "y": 35.61, "curve": 0.415, "c3": 0.759, "c4": 0.68}, {"time": 0.4167, "x": -12.53, "y": 5.46} + {"x": 112.58, "y": 11.79}, {"time": 0.7333, "x": 165.28, "y": 17.31}, {"time": 0.85, "x": 173.66, "y": 18.18, "curve": "stepped"}, {"time": 0.8667, "curve": "stepped"}, {"time": 1.1}, + {"time": 2.4167, "x": 94.61, "y": 9.91}, {"time": 2.6667, "x": 112.58, "y": 11.79} + ], + "scale": [ + {"x": 1.016, "y": 0.999, "curve": 0.335, "c2": 0.34, "c3": 0.668, "c4": 0.67}, {"time": 0.05, "x": 1.073, "y": 0.927, "curve": 0.339, "c2": 0.35, "c3": 0.673, "c4": 0.69}, + {"time": 0.2167, "x": 0.87, "y": 1.193, "curve": 0.352, "c2": 0.41, "c3": 0.689, "c4": 0.76}, + {"time": 0.5333, "x": 1.073, "y": 0.868, "curve": 0.353, "c2": 0.47, "c3": 0.688, "c4": 0.81}, {"time": 0.7333, "x": 1.012, "y": 0.978, "curve": 0.349, "c2": 0.65, "c3": 0.683}, + {"time": 0.85, "curve": "stepped"}, {"time": 1.1}, {"time": 1.2667, "x": 1.117, "y": 0.874, "curve": 0.295, "c3": 0.633, "c4": 0.37}, + {"time": 1.5833, "x": 0.871, "y": 1.143, "curve": 0.321, "c2": 0.28, "c3": 0.655, "c4": 0.62}, + {"time": 1.75, "x": 1.061, "y": 0.929, "curve": 0.317, "c2": 0.28, "c3": 0.654, "c4": 0.62}, + {"time": 2.0667, "x": 0.944, "y": 1.139, "curve": 0.327, "c2": 0.31, "c3": 0.664, "c4": 0.66}, {"time": 2.4, "x": 1.146, "y": 0.925, "curve": 0.333, "c2": 0.33, "c3": 0.667, "c4": 0.67}, + {"time": 2.4167, "x": 1.116, "y": 0.953, "curve": 0.334, "c2": 0.34, "c3": 0.668, "c4": 0.67}, {"time": 2.55, "x": 0.88, "y": 1.171, "curve": 0.335, "c2": 0.34, "c3": 0.669, "c4": 0.67}, + {"time": 2.6667, "x": 1.016, "y": 0.999} ] }, - "body-braid2": {"rotate": [{"angle": -1.43, "curve": 0.144, "c3": 0.557}, {"time": 0.2, "angle": 20.83, "curve": 0.455, "c3": 0.807}, {"time": 0.4167, "angle": -1.43}]}, - "body-braid4": { - "rotate": [ - {"angle": 18.79, "curve": 0.431, "c2": 0.43, "c3": 0.773}, {"time": 0.1333, "angle": -11.53, "curve": 0.144, "c3": 0.557}, - {"time": 0.3333, "angle": 27.46, "curve": 0.367, "c3": 0.703, "c4": 0.45}, {"time": 0.4167, "angle": 18.79} + "ear-right-dot-10": { + "translate": [ + {"x": 26.37, "y": -4.39}, {"time": 0.7333, "x": 72.79, "y": -12.11}, {"time": 2.0833, "x": 158.24, "y": -26.33, "curve": "stepped"}, {"time": 2.1, "curve": "stepped"}, {"time": 2.25}, + {"time": 2.6667, "x": 26.37, "y": -4.39} + ], + "scale": [ + {"x": 0.968, "y": 1.037, "curve": 0.326, "c2": 0.29, "c3": 0.659, "c4": 0.63}, {"time": 0.0833, "x": 0.871, "y": 1.143, "curve": 0.321, "c2": 0.28, "c3": 0.655, "c4": 0.62}, + {"time": 0.25, "x": 1.061, "y": 0.929, "curve": 0.317, "c2": 0.28, "c3": 0.654, "c4": 0.62}, {"time": 0.5833, "x": 0.944, "y": 1.139, "curve": 0.33, "c2": 0.32, "c3": 0.664, "c4": 0.66}, + {"time": 0.7333, "x": 1.034, "y": 1.044, "curve": 0.331, "c2": 0.33, "c3": 0.666, "c4": 0.66}, + {"time": 0.9167, "x": 1.146, "y": 0.925, "curve": 0.334, "c2": 0.34, "c3": 0.668, "c4": 0.67}, + {"time": 1.0833, "x": 0.88, "y": 1.171, "curve": 0.336, "c2": 0.34, "c3": 0.671, "c4": 0.68}, {"time": 1.25, "x": 1.073, "y": 0.927, "curve": 0.339, "c2": 0.35, "c3": 0.673, "c4": 0.69}, + {"time": 1.4167, "x": 0.87, "y": 1.193, "curve": 0.352, "c2": 0.41, "c3": 0.689, "c4": 0.76}, {"time": 1.75, "x": 1.073, "y": 0.868, "curve": 0.367, "c2": 0.63, "c3": 0.705}, + {"time": 2.0833, "curve": "stepped"}, {"time": 2.25}, {"time": 2.4167, "x": 1.117, "y": 0.874, "curve": 0.303, "c3": 0.639, "c4": 0.36}, {"time": 2.6667, "x": 0.968, "y": 1.037} ] }, - "body-braid3": { - "rotate": [ - {"angle": 1.68, "curve": 0.384, "c2": 0.6, "c3": 0.719}, {"time": 0.05, "angle": -8.3, "curve": 0.144, "c3": 0.557}, - {"time": 0.25, "angle": 33.27, "curve": 0.415, "c3": 0.759, "c4": 0.68}, {"time": 0.4167, "angle": 1.68} + "ear-right-dot-11": { + "translate": [ + {"x": 109.28, "y": -3.61}, {"time": 0.6833, "x": 175.18, "y": -5.79, "curve": "stepped"}, {"time": 0.7, "curve": "stepped"}, {"time": 1.5333}, {"time": 2.6667, "x": 109.28, "y": -3.61} + ], + "scale": [ + {}, {"time": 0.1167, "x": 1.117, "y": 0.874, "curve": 0.295, "c3": 0.633, "c4": 0.37}, {"time": 0.35, "x": 0.871, "y": 1.143, "curve": 0.321, "c2": 0.28, "c3": 0.655, "c4": 0.62}, + {"time": 0.4667, "x": 1.061, "y": 0.929, "curve": 0.317, "c2": 0.28, "c3": 0.654, "c4": 0.62}, + {"time": 0.7167, "x": 0.944, "y": 1.139, "curve": 0.327, "c2": 0.31, "c3": 0.664, "c4": 0.66}, + {"time": 0.9333, "x": 1.146, "y": 0.925, "curve": 0.334, "c2": 0.34, "c3": 0.668, "c4": 0.67}, + {"time": 1.0667, "x": 0.88, "y": 1.171, "curve": 0.336, "c2": 0.34, "c3": 0.671, "c4": 0.68}, + {"time": 1.1833, "x": 1.073, "y": 0.927, "curve": 0.339, "c2": 0.35, "c3": 0.673, "c4": 0.69}, {"time": 1.3, "x": 0.87, "y": 1.193, "curve": 0.352, "c2": 0.41, "c3": 0.689, "c4": 0.76}, + {"time": 1.5333, "x": 1.073, "y": 0.868, "curve": 0.367, "c2": 0.63, "c3": 0.705}, {"time": 1.7667} ] }, - "@body2": { - "rotate": [ - {"angle": -4.6, "curve": 0.358, "c2": 0.37, "c3": 0.692, "c4": 0.72}, {"time": 0.0333, "angle": 1.16, "curve": 0.384, "c2": 0.6, "c3": 0.719}, - {"time": 0.0833, "angle": 7.45, "curve": 0.144, "c3": 0.557}, {"time": 0.2833, "angle": -18.73, "curve": 0.394, "c3": 0.734, "c4": 0.57}, {"time": 0.4167, "angle": -4.6} - ], + "ear-left-dot-07": { "translate": [ - {"x": 0.54, "y": -4.43, "curve": 0.37, "c2": 0.62, "c3": 0.704, "c4": 0.99}, {"time": 0.0333, "x": -0.08, "y": 1.15, "curve": 0.144, "c3": 0.557}, - {"time": 0.2333, "x": 4.59, "y": -41.28, "curve": 0.427, "c3": 0.774, "c4": 0.76}, {"time": 0.4167, "x": 0.54, "y": -4.43} + {"x": 63.96, "y": -1.07}, {"time": 1.4167, "x": 214.98, "y": -3.58, "curve": "stepped"}, {"time": 1.4333, "curve": "stepped"}, {"time": 2.0667}, {"time": 2.6667, "x": 63.96, "y": -1.07} + ], + "scale": [ + {"x": 1.034, "y": 0.977, "curve": 0.323, "c2": 0.3, "c3": 0.658, "c4": 0.64}, {"time": 0.2, "x": 0.944, "y": 1.139, "curve": 0.327, "c2": 0.31, "c3": 0.664, "c4": 0.66}, + {"time": 0.4667, "x": 1.146, "y": 0.925, "curve": 0.334, "c2": 0.34, "c3": 0.668, "c4": 0.67}, {"time": 0.6, "x": 0.88, "y": 1.171, "curve": 0.336, "c2": 0.34, "c3": 0.671, "c4": 0.68}, + {"time": 0.75, "x": 1.073, "y": 0.927, "curve": 0.339, "c2": 0.35, "c3": 0.673, "c4": 0.69}, {"time": 0.8833, "x": 0.87, "y": 1.193, "curve": 0.352, "c2": 0.41, "c3": 0.689, "c4": 0.76}, + {"time": 1.15, "x": 1.073, "y": 0.868, "curve": 0.367, "c2": 0.63, "c3": 0.705}, {"time": 1.4167, "curve": "stepped"}, {"time": 2.0667}, + {"time": 2.2, "x": 1.117, "y": 0.874, "curve": 0.295, "c3": 0.633, "c4": 0.37}, {"time": 2.4667, "x": 0.871, "y": 1.143, "curve": 0.321, "c2": 0.28, "c3": 0.655, "c4": 0.62}, + {"time": 2.6, "x": 1.061, "y": 0.929, "curve": 0.329, "c2": 0.32, "c3": 0.662, "c4": 0.65}, {"time": 2.6667, "x": 1.034, "y": 0.977} ] }, - "body-braid5": { - "rotate": [ - {"angle": 17.99, "curve": 0.416, "c2": 0.52, "c3": 0.755}, {"time": 0.1, "angle": -7.27, "curve": 0.144, "c3": 0.557}, - {"time": 0.3, "angle": 36.02, "curve": 0.385, "c3": 0.723, "c4": 0.52}, {"time": 0.4167, "angle": 17.99} + "ear-right-dot-12": { + "translate": [ + {"x": 89.44, "y": -1.49}, {"time": 1.3333, "x": 214.98, "y": -3.58, "curve": "stepped"}, {"time": 1.35, "curve": "stepped"}, {"time": 1.7167}, {"time": 2.6667, "x": 89.44, "y": -1.49} + ], + "scale": [ + {"x": 0.966, "y": 1.116, "curve": 0.329, "c2": 0.32, "c3": 0.664, "c4": 0.66}, {"time": 0.2667, "x": 1.146, "y": 0.925, "curve": 0.334, "c2": 0.34, "c3": 0.668, "c4": 0.67}, + {"time": 0.4167, "x": 0.88, "y": 1.171, "curve": 0.336, "c2": 0.34, "c3": 0.671, "c4": 0.68}, + {"time": 0.5667, "x": 1.073, "y": 0.927, "curve": 0.339, "c2": 0.35, "c3": 0.673, "c4": 0.69}, + {"time": 0.7167, "x": 0.87, "y": 1.193, "curve": 0.352, "c2": 0.41, "c3": 0.689, "c4": 0.76}, {"time": 1.0167, "x": 1.073, "y": 0.868, "curve": 0.367, "c2": 0.63, "c3": 0.705}, + {"time": 1.3333, "curve": "stepped"}, {"time": 1.7167}, {"time": 1.8667, "x": 1.117, "y": 0.874, "curve": 0.295, "c3": 0.633, "c4": 0.37}, + {"time": 2.1667, "x": 0.871, "y": 1.143, "curve": 0.321, "c2": 0.28, "c3": 0.655, "c4": 0.62}, + {"time": 2.3167, "x": 1.061, "y": 0.929, "curve": 0.317, "c2": 0.28, "c3": 0.654, "c4": 0.62}, + {"time": 2.6333, "x": 0.944, "y": 1.139, "curve": 0.332, "c2": 0.33, "c3": 0.666, "c4": 0.66}, {"time": 2.6667, "x": 0.966, "y": 1.116} ] }, - "body-braid": { - "rotate": [ - {"angle": -1.58, "curve": 0.353, "c2": 0.64, "c3": 0.686, "c4": 0.99}, {"time": 0.0167, "angle": -2.68, "curve": 0.144, "c3": 0.557}, - {"time": 0.2167, "angle": 22.42, "curve": 0.44, "c3": 0.789, "c4": 0.87}, {"time": 0.4167, "angle": -1.58} + "ear-left-dot-08": { + "translate": [{"x": 122.71, "y": -21.71}, {"time": 0.45, "x": 147.81, "y": -26.16, "curve": "stepped"}, {"time": 0.4667}, {"time": 2.6667, "x": 122.71, "y": -21.71}], + "scale": [ + {"x": 1.026, "y": 0.944, "curve": 0.34, "c2": 0.36, "c3": 0.674, "c4": 0.7}, {"time": 0.1, "x": 1.073, "y": 0.868, "curve": 0.367, "c2": 0.63, "c3": 0.705}, + {"time": 0.45, "curve": "stepped"}, {"time": 0.4667, "curve": 0.25, "c3": 0.75}, {"time": 0.65, "x": 1.117, "y": 0.874, "curve": 0.295, "c3": 0.633, "c4": 0.37}, + {"time": 1, "x": 0.871, "y": 1.143, "curve": 0.321, "c2": 0.28, "c3": 0.655, "c4": 0.62}, {"time": 1.1667, "x": 1.061, "y": 0.929, "curve": 0.317, "c2": 0.28, "c3": 0.654, "c4": 0.62}, + {"time": 1.5167, "x": 0.944, "y": 1.139, "curve": 0.327, "c2": 0.31, "c3": 0.664, "c4": 0.66}, + {"time": 1.8833, "x": 1.146, "y": 0.925, "curve": 0.334, "c2": 0.34, "c3": 0.668, "c4": 0.67}, {"time": 2.05, "x": 0.88, "y": 1.171, "curve": 0.336, "c2": 0.34, "c3": 0.671, "c4": 0.68}, + {"time": 2.2333, "x": 1.073, "y": 0.927, "curve": 0.339, "c2": 0.35, "c3": 0.673, "c4": 0.69}, {"time": 2.4, "x": 0.87, "y": 1.193, "curve": 0.346, "c2": 0.38, "c3": 0.681, "c4": 0.72}, + {"time": 2.6667, "x": 1.026, "y": 0.944} ] }, - "@body5": {"rotate": [{"curve": 0.144, "c3": 0.557}, {"time": 0.2, "angle": 0.5, "curve": 0.455, "c3": 0.807}, {"time": 0.4167}]} - } - }, - "2310646130": { - "slots": { - "eyes": {"attachment": [{"time": 0.0167, "name": "eyes-shut"}, {"time": 0.1833, "name": "eyes-angry"}, {"time": 0.4, "name": "eyes"}]}, - "mouth": {"attachment": [{"time": 0.0167, "name": "mouth-bite"}, {"time": 0.4, "name": "mouth"}]} - }, - "bones": { - "tail": { - "rotate": [ - {"curve": "stepped"}, {"time": 0.0167, "angle": 35.35}, {"time": 0.1667, "angle": 50.35, "curve": 0.315, "c4": 0.8}, {"time": 0.3167, "angle": -21.75, "curve": 0, "c2": 0.1, "c3": 0.85}, - {"time": 0.4167} + "ear-right-dot-13": { + "translate": [ + {"x": 36.97, "y": 7.71}, {"time": 1.95, "x": 168.03, "y": 35.03, "curve": "stepped"}, {"time": 1.9667, "curve": "stepped"}, {"time": 2.1167}, {"time": 2.6667, "x": 36.97, "y": 7.71} + ], + "scale": [ + {"x": 0.923, "y": 1.084, "curve": 0.325, "c2": 0.3, "c3": 0.659, "c4": 0.63}, {"time": 0.1167, "x": 1.061, "y": 0.929, "curve": 0.317, "c2": 0.28, "c3": 0.654, "c4": 0.62}, + {"time": 0.45, "x": 0.944, "y": 1.139, "curve": 0.327, "c2": 0.31, "c3": 0.664, "c4": 0.66}, + {"time": 0.7833, "x": 1.146, "y": 0.925, "curve": 0.334, "c2": 0.34, "c3": 0.668, "c4": 0.67}, {"time": 0.95, "x": 0.88, "y": 1.171, "curve": 0.336, "c2": 0.34, "c3": 0.671, "c4": 0.68}, + {"time": 1.1167, "x": 1.073, "y": 0.927, "curve": 0.339, "c2": 0.35, "c3": 0.673, "c4": 0.69}, + {"time": 1.2833, "x": 0.87, "y": 1.193, "curve": 0.352, "c2": 0.41, "c3": 0.689, "c4": 0.76}, {"time": 1.6167, "x": 1.073, "y": 0.868, "curve": 0.367, "c2": 0.63, "c3": 0.705}, + {"time": 1.95, "curve": "stepped"}, {"time": 2.1167}, {"time": 2.2833, "x": 1.117, "y": 0.874, "curve": 0.295, "c3": 0.633, "c4": 0.37}, + {"time": 2.6167, "x": 0.871, "y": 1.143, "curve": 0.329, "c2": 0.31, "c3": 0.663, "c4": 0.65}, {"time": 2.6667, "x": 0.923, "y": 1.084} ] }, - "leg-front-right-IK": { - "translate": [{"curve": "stepped"}, {"time": 0.0167, "x": 48.52, "y": 414.3}, {"time": 0.1667, "x": 69.52, "y": 458.5, "curve": 0.306, "c4": 0.8}, {"time": 0.3167}] - }, - "@pivot-back": { - "rotate": [ - {"curve": "stepped"}, {"time": 0.0167, "angle": -45}, {"time": 0.1667, "angle": -50, "curve": 0.464, "c4": 0.7}, {"time": 0.3167, "angle": 5.2, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.4167} + "ear-right-dot-14": { + "translate": [ + {"x": 165.28, "y": 17.31}, {"time": 0.1167, "x": 173.66, "y": 18.18, "curve": "stepped"}, {"time": 0.1333, "curve": "stepped"}, {"time": 0.3667}, {"time": 1.6833, "x": 94.61, "y": 9.91}, + {"time": 2.6667, "x": 165.28, "y": 17.31} ], - "translate": [{"curve": "stepped"}, {"time": 0.0167, "x": 94.99, "y": -21}, {"time": 0.1667, "x": 107, "y": -60, "curve": 0.464, "c4": 0.7}, {"time": 0.3167}] + "scale": [ + {"x": 1.012, "y": 0.978, "curve": 0.349, "c2": 0.65, "c3": 0.683}, {"time": 0.1167, "curve": "stepped"}, {"time": 0.3667}, + {"time": 0.5333, "x": 1.117, "y": 0.874, "curve": 0.295, "c3": 0.633, "c4": 0.37}, {"time": 0.85, "x": 0.871, "y": 1.143, "curve": 0.321, "c2": 0.28, "c3": 0.655, "c4": 0.62}, + {"time": 1.0167, "x": 1.061, "y": 0.929, "curve": 0.317, "c2": 0.28, "c3": 0.654, "c4": 0.62}, + {"time": 1.3333, "x": 0.944, "y": 1.139, "curve": 0.327, "c2": 0.31, "c3": 0.664, "c4": 0.66}, + {"time": 1.6667, "x": 1.146, "y": 0.925, "curve": 0.333, "c2": 0.33, "c3": 0.667, "c4": 0.67}, + {"time": 1.6833, "x": 1.116, "y": 0.953, "curve": 0.334, "c2": 0.34, "c3": 0.668, "c4": 0.67}, + {"time": 1.8167, "x": 0.88, "y": 1.171, "curve": 0.336, "c2": 0.34, "c3": 0.671, "c4": 0.68}, + {"time": 1.9833, "x": 1.073, "y": 0.927, "curve": 0.339, "c2": 0.35, "c3": 0.673, "c4": 0.69}, {"time": 2.15, "x": 0.87, "y": 1.193, "curve": 0.352, "c2": 0.41, "c3": 0.689, "c4": 0.76}, + {"time": 2.4667, "x": 1.073, "y": 0.868, "curve": 0.353, "c2": 0.47, "c3": 0.688, "c4": 0.81}, {"time": 2.6667, "x": 1.012, "y": 0.978} + ] }, - "@shadow": { + "ear-right-dot-15": { "translate": [ - {"curve": "stepped"}, {"time": 0.0167, "x": 70.3, "curve": "stepped"}, {"time": 0.1667, "x": 70.3, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.3167, "x": 12.49, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.4167} + {"x": 72.79, "y": -12.11}, {"time": 0.8167, "x": 158.24, "y": -26.33, "curve": "stepped"}, {"time": 0.8333, "curve": "stepped"}, {"time": 1.7667}, + {"time": 2.6667, "x": 72.79, "y": -12.11} ], "scale": [ - {"curve": "stepped"}, {"time": 0.0167, "x": 0.98, "y": 0.98}, {"time": 0.1667, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.3167, "x": 1.08, "y": 1.08, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.4167} + {"x": 1.034, "y": 1.044, "curve": 0.331, "c2": 0.33, "c3": 0.666, "c4": 0.66}, {"time": 0.1167, "x": 1.146, "y": 0.925, "curve": 0.334, "c2": 0.34, "c3": 0.668, "c4": 0.67}, + {"time": 0.2167, "x": 0.88, "y": 1.171, "curve": 0.336, "c2": 0.34, "c3": 0.671, "c4": 0.68}, + {"time": 0.3167, "x": 1.073, "y": 0.927, "curve": 0.339, "c2": 0.35, "c3": 0.673, "c4": 0.69}, + {"time": 0.4167, "x": 0.87, "y": 1.193, "curve": 0.352, "c2": 0.41, "c3": 0.689, "c4": 0.76}, {"time": 0.6167, "x": 1.073, "y": 0.868, "curve": 0.367, "c2": 0.63, "c3": 0.705}, + {"time": 0.8167, "curve": "stepped"}, {"time": 1.7667}, {"time": 1.8833, "x": 1.117, "y": 0.874, "curve": 0.295, "c3": 0.633, "c4": 0.37}, + {"time": 2.15, "x": 0.871, "y": 1.143, "curve": 0.321, "c2": 0.28, "c3": 0.655, "c4": 0.62}, + {"time": 2.2833, "x": 1.061, "y": 0.929, "curve": 0.317, "c2": 0.28, "c3": 0.654, "c4": 0.62}, {"time": 2.55, "x": 0.944, "y": 1.139, "curve": 0.33, "c2": 0.32, "c3": 0.664, "c4": 0.66}, + {"time": 2.6667, "x": 1.034, "y": 1.044} ] }, - "leg-back-left-IK": { - "translate": [{"curve": "stepped"}, {"time": 0.0167, "x": -126.78, "y": 61.47}, {"time": 0.1667, "x": -117.91, "y": 26.67, "curve": 0.306, "c3": 0.695}, {"time": 0.3333}] - }, - "@leg-back-left": { + "ear-left-dot-09": { "translate": [ - {"curve": "stepped"}, {"time": 0.0167, "x": -2.63, "y": 8.92, "curve": "stepped"}, {"time": 0.1667, "x": -2.63, "y": 8.92, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3167} + {"x": 127.89, "y": 1.94}, {"time": 0.4833, "x": 164.98, "y": 2.51, "curve": "stepped"}, {"time": 0.5, "curve": "stepped"}, {"time": 1}, {"time": 2.6667, "x": 127.89, "y": 1.94} + ], + "scale": [ + {"x": 0.937, "y": 1.086, "curve": 0.348, "c2": 0.4, "c3": 0.683, "c4": 0.74}, {"time": 0.2, "x": 1.073, "y": 0.868, "curve": 0.367, "c2": 0.63, "c3": 0.705}, + {"time": 0.4833, "curve": "stepped"}, {"time": 1}, {"time": 1.15, "x": 1.117, "y": 0.874, "curve": 0.295, "c3": 0.633, "c4": 0.37}, + {"time": 1.4333, "x": 0.871, "y": 1.143, "curve": 0.321, "c2": 0.28, "c3": 0.655, "c4": 0.62}, + {"time": 1.5667, "x": 1.061, "y": 0.929, "curve": 0.317, "c2": 0.28, "c3": 0.654, "c4": 0.62}, + {"time": 1.8667, "x": 0.944, "y": 1.139, "curve": 0.327, "c2": 0.31, "c3": 0.664, "c4": 0.66}, + {"time": 2.15, "x": 1.146, "y": 0.925, "curve": 0.334, "c2": 0.34, "c3": 0.668, "c4": 0.67}, {"time": 2.2833, "x": 0.88, "y": 1.171, "curve": 0.336, "c2": 0.34, "c3": 0.671, "c4": 0.68}, + {"time": 2.4333, "x": 1.073, "y": 0.927, "curve": 0.339, "c2": 0.35, "c3": 0.673, "c4": 0.69}, + {"time": 2.5833, "x": 0.87, "y": 1.193, "curve": 0.338, "c2": 0.35, "c3": 0.672, "c4": 0.68}, {"time": 2.6667, "x": 0.937, "y": 1.086} ] }, - "@pivot-main": {"translate": [{"curve": "stepped"}, {"time": 0.0167, "x": 20, "curve": "stepped"}, {"time": 0.3167, "x": 20, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.4167}]}, - "leg-front-left-IK": { - "translate": [{"curve": "stepped"}, {"time": 0.0167, "x": -81.6, "y": 219.75}, {"time": 0.1667, "x": -70.97, "y": 228.81, "curve": 0.306, "c4": 0.8}, {"time": 0.3167}] + "ear-left-dot-10": { + "translate": [{"time": 0.1333}, {"time": 0.7333, "x": 63.96, "y": -1.07}, {"time": 2.15, "x": 214.98, "y": -3.58, "curve": "stepped"}, {"time": 2.1667}], + "scale": [ + {"time": 0.1333}, {"time": 0.2667, "x": 1.117, "y": 0.874, "curve": 0.295, "c3": 0.633, "c4": 0.37}, + {"time": 0.5333, "x": 0.871, "y": 1.143, "curve": 0.321, "c2": 0.28, "c3": 0.655, "c4": 0.62}, + {"time": 0.6667, "x": 1.061, "y": 0.929, "curve": 0.329, "c2": 0.32, "c3": 0.662, "c4": 0.65}, + {"time": 0.7333, "x": 1.034, "y": 0.977, "curve": 0.323, "c2": 0.3, "c3": 0.658, "c4": 0.64}, + {"time": 0.9333, "x": 0.944, "y": 1.139, "curve": 0.327, "c2": 0.31, "c3": 0.664, "c4": 0.66}, {"time": 1.2, "x": 1.146, "y": 0.925, "curve": 0.334, "c2": 0.34, "c3": 0.668, "c4": 0.67}, + {"time": 1.3333, "x": 0.88, "y": 1.171, "curve": 0.336, "c2": 0.34, "c3": 0.671, "c4": 0.68}, + {"time": 1.4833, "x": 1.073, "y": 0.927, "curve": 0.339, "c2": 0.35, "c3": 0.673, "c4": 0.69}, + {"time": 1.6167, "x": 0.87, "y": 1.193, "curve": 0.352, "c2": 0.41, "c3": 0.689, "c4": 0.76}, {"time": 1.8833, "x": 1.073, "y": 0.868, "curve": 0.367, "c2": 0.63, "c3": 0.705}, + {"time": 2.15} + ] }, - "@leg-front-left": {"translate": [{"time": 0.1667, "curve": 0.62, "c4": 0.3}, {"time": 0.3167, "x": -1.1, "y": -14.87, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.4167}]}, - "@leg-front-right": {"translate": [{"time": 0.1667, "curve": 0.62, "c4": 0.3}, {"time": 0.3167, "x": -2.11, "y": -28.46, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.4167}]}, - "@body5": {"rotate": [{"curve": 0.144, "c3": 0.557}, {"time": 0.2, "angle": 0.5, "curve": 0.455, "c3": 0.807}, {"time": 0.4167}]}, - "@body4": { - "rotate": [ - {"angle": -8.24, "curve": 0.384, "c2": 0.6, "c3": 0.719}, {"time": 0.05, "angle": -15.35, "curve": 0.144, "c3": 0.557}, - {"time": 0.25, "angle": 14.26, "curve": 0.415, "c3": 0.759, "c4": 0.68}, {"time": 0.4167, "angle": -8.24} + "ear-left-dot-11": { + "translate": [ + {"x": 81.81, "y": -14.48}, {"time": 0.7333, "x": 122.71, "y": -21.71}, {"time": 1.1833, "x": 147.81, "y": -26.16, "curve": "stepped"}, {"time": 1.2}, + {"time": 2.6667, "x": 81.81, "y": -14.48} ], - "translate": [{"x": -1.59, "y": 23.93, "curve": 0.144, "c3": 0.557}, {"time": 0.2, "x": 6.55, "y": -29.78, "curve": 0.455, "c3": 0.807}, {"time": 0.4167, "x": -1.59, "y": 23.93}] + "scale": [ + {"x": 1.066, "y": 0.999, "curve": 0.334, "c2": 0.34, "c3": 0.668, "c4": 0.67}, {"time": 0.1167, "x": 0.88, "y": 1.171, "curve": 0.336, "c2": 0.34, "c3": 0.671, "c4": 0.68}, + {"time": 0.3, "x": 1.073, "y": 0.927, "curve": 0.339, "c2": 0.35, "c3": 0.673, "c4": 0.69}, {"time": 0.4667, "x": 0.87, "y": 1.193, "curve": 0.346, "c2": 0.38, "c3": 0.681, "c4": 0.72}, + {"time": 0.7333, "x": 1.026, "y": 0.944, "curve": 0.34, "c2": 0.36, "c3": 0.674, "c4": 0.7}, {"time": 0.8333, "x": 1.073, "y": 0.868, "curve": 0.367, "c2": 0.63, "c3": 0.705}, + {"time": 1.1833, "curve": "stepped"}, {"time": 1.2, "curve": 0.25, "c3": 0.75}, {"time": 1.3833, "x": 1.117, "y": 0.874, "curve": 0.295, "c3": 0.633, "c4": 0.37}, + {"time": 1.7333, "x": 0.871, "y": 1.143, "curve": 0.321, "c2": 0.28, "c3": 0.655, "c4": 0.62}, {"time": 1.9, "x": 1.061, "y": 0.929, "curve": 0.317, "c2": 0.28, "c3": 0.654, "c4": 0.62}, + {"time": 2.25, "x": 0.944, "y": 1.139, "curve": 0.327, "c2": 0.31, "c3": 0.664, "c4": 0.66}, + {"time": 2.6167, "x": 1.146, "y": 0.925, "curve": 0.333, "c2": 0.33, "c3": 0.667, "c4": 0.67}, {"time": 2.6667, "x": 1.066, "y": 0.999} + ] }, - "@body2": { - "rotate": [ - {"angle": -4.6, "curve": 0.358, "c2": 0.37, "c3": 0.692, "c4": 0.72}, {"time": 0.0333, "angle": 1.16, "curve": 0.384, "c2": 0.6, "c3": 0.719}, - {"time": 0.0833, "angle": 7.45, "curve": 0.144, "c3": 0.557}, {"time": 0.2833, "angle": -18.73, "curve": 0.394, "c3": 0.734, "c4": 0.57}, {"time": 0.4167, "angle": -4.6} - ], + "ear-left-dot-12": { "translate": [ - {"x": 0.54, "y": -4.43, "curve": 0.37, "c2": 0.62, "c3": 0.704, "c4": 0.99}, {"time": 0.0333, "x": -0.08, "y": 1.15, "curve": 0.144, "c3": 0.557}, - {"time": 0.2333, "x": 4.59, "y": -41.28, "curve": 0.427, "c3": 0.774, "c4": 0.76}, {"time": 0.4167, "x": 0.54, "y": -4.43} + {"x": 71.62, "y": 1.09}, {"time": 0.7333, "x": 127.89, "y": 1.94}, {"time": 1.2167, "x": 164.98, "y": 2.51, "curve": "stepped"}, {"time": 1.2333, "curve": "stepped"}, {"time": 1.7333}, + {"time": 2.6667, "x": 71.62, "y": 1.09} + ], + "scale": [ + {"x": 0.991, "y": 1.09, "curve": 0.33, "c2": 0.32, "c3": 0.665, "c4": 0.66}, {"time": 0.2167, "x": 1.146, "y": 0.925, "curve": 0.334, "c2": 0.34, "c3": 0.668, "c4": 0.67}, + {"time": 0.35, "x": 0.88, "y": 1.171, "curve": 0.336, "c2": 0.34, "c3": 0.671, "c4": 0.68}, {"time": 0.5, "x": 1.073, "y": 0.927, "curve": 0.339, "c2": 0.35, "c3": 0.673, "c4": 0.69}, + {"time": 0.65, "x": 0.87, "y": 1.193, "curve": 0.338, "c2": 0.35, "c3": 0.672, "c4": 0.68}, {"time": 0.7333, "x": 0.937, "y": 1.086, "curve": 0.348, "c2": 0.4, "c3": 0.683, "c4": 0.74}, + {"time": 0.9333, "x": 1.073, "y": 0.868, "curve": 0.367, "c2": 0.63, "c3": 0.705}, {"time": 1.2167, "curve": "stepped"}, {"time": 1.7333}, + {"time": 1.8833, "x": 1.117, "y": 0.874, "curve": 0.295, "c3": 0.633, "c4": 0.37}, {"time": 2.1667, "x": 0.871, "y": 1.143, "curve": 0.321, "c2": 0.28, "c3": 0.655, "c4": 0.62}, + {"time": 2.3, "x": 1.061, "y": 0.929, "curve": 0.317, "c2": 0.28, "c3": 0.654, "c4": 0.62}, {"time": 2.6, "x": 0.944, "y": 1.139, "curve": 0.331, "c2": 0.33, "c3": 0.665, "c4": 0.66}, + {"time": 2.6667, "x": 0.991, "y": 1.09} ] }, - "@body3": { - "rotate": [ - {"angle": -6.22, "curve": 0.384, "c2": 0.6, "c3": 0.719}, {"time": 0.05, "angle": -3.77, "curve": 0.144, "c3": 0.557}, - {"time": 0.25, "angle": -14, "curve": 0.415, "c3": 0.759, "c4": 0.68}, {"time": 0.4167, "angle": -6.22} + "ear-right-dot-16": { + "translate": [ + {"x": 38.57, "y": -1.28}, {"time": 0.7333, "x": 109.28, "y": -3.61}, {"time": 1.4167, "x": 175.18, "y": -5.79, "curve": "stepped"}, {"time": 1.4333, "curve": "stepped"}, + {"time": 2.2667}, {"time": 2.6667, "x": 38.57, "y": -1.28} ], - "translate": [{"curve": 0.144, "c3": 0.557}, {"time": 0.2, "x": 45.36, "y": -33.56, "curve": 0.455, "c3": 0.807}, {"time": 0.4167}] - }, - "body-braid2": {"rotate": [{"angle": -1.43, "curve": 0.144, "c3": 0.557}, {"time": 0.2, "angle": 20.83, "curve": 0.455, "c3": 0.807}, {"time": 0.4167, "angle": -1.43}]}, - "body-braid": { - "rotate": [ - {"angle": -1.58, "curve": 0.353, "c2": 0.64, "c3": 0.686, "c4": 0.99}, {"time": 0.0167, "angle": -2.68, "curve": 0.144, "c3": 0.557}, - {"time": 0.2167, "angle": 22.42, "curve": 0.44, "c3": 0.789, "c4": 0.87}, {"time": 0.4167, "angle": -1.58} + "scale": [ + {}, {"time": 0.1167, "x": 1.117, "y": 0.874, "curve": 0.295, "c3": 0.633, "c4": 0.37}, {"time": 0.35, "x": 0.871, "y": 1.143, "curve": 0.321, "c2": 0.28, "c3": 0.655, "c4": 0.62}, + {"time": 0.4667, "x": 1.061, "y": 0.929, "curve": 0.317, "c2": 0.28, "c3": 0.654, "c4": 0.62}, + {"time": 0.7167, "x": 0.944, "y": 1.139, "curve": 0.327, "c2": 0.31, "c3": 0.664, "c4": 0.66}, + {"time": 0.9333, "x": 1.146, "y": 0.925, "curve": 0.334, "c2": 0.34, "c3": 0.668, "c4": 0.67}, + {"time": 1.0667, "x": 0.88, "y": 1.171, "curve": 0.336, "c2": 0.34, "c3": 0.671, "c4": 0.68}, + {"time": 1.1833, "x": 1.073, "y": 0.927, "curve": 0.339, "c2": 0.35, "c3": 0.673, "c4": 0.69}, {"time": 1.3, "x": 0.87, "y": 1.193, "curve": 0.352, "c2": 0.41, "c3": 0.689, "c4": 0.76}, + {"time": 1.5333, "x": 1.073, "y": 0.868, "curve": 0.367, "c2": 0.63, "c3": 0.705}, {"time": 1.7667} ] }, - "body-braid5": { - "rotate": [ - {"angle": 17.99, "curve": 0.416, "c2": 0.52, "c3": 0.755}, {"time": 0.1, "angle": -7.27, "curve": 0.144, "c3": 0.557}, - {"time": 0.3, "angle": 36.02, "curve": 0.385, "c3": 0.723, "c4": 0.52}, {"time": 0.4167, "angle": 17.99} + "ear-right-dot-17": { + "translate": [ + {"x": 20.4, "y": -0.34}, {"time": 0.7333, "x": 89.44, "y": -1.49}, {"time": 2.0667, "x": 214.98, "y": -3.58, "curve": "stepped"}, {"time": 2.0833, "curve": "stepped"}, {"time": 2.45}, + {"time": 2.6667, "x": 20.4, "y": -0.34} + ], + "scale": [ + {"x": 1.101, "y": 0.892, "curve": 0.306, "c2": 0.13, "c3": 0.641, "c4": 0.48}, {"time": 0.2333, "x": 0.871, "y": 1.143, "curve": 0.321, "c2": 0.28, "c3": 0.655, "c4": 0.62}, + {"time": 0.3833, "x": 1.061, "y": 0.929, "curve": 0.317, "c2": 0.28, "c3": 0.654, "c4": 0.62}, {"time": 0.7, "x": 0.944, "y": 1.139, "curve": 0.332, "c2": 0.33, "c3": 0.666, "c4": 0.66}, + {"time": 0.7333, "x": 0.966, "y": 1.116, "curve": 0.329, "c2": 0.32, "c3": 0.664, "c4": 0.66}, {"time": 1, "x": 1.146, "y": 0.925, "curve": 0.334, "c2": 0.34, "c3": 0.668, "c4": 0.67}, + {"time": 1.15, "x": 0.88, "y": 1.171, "curve": 0.336, "c2": 0.34, "c3": 0.671, "c4": 0.68}, {"time": 1.3, "x": 1.073, "y": 0.927, "curve": 0.339, "c2": 0.35, "c3": 0.673, "c4": 0.69}, + {"time": 1.45, "x": 0.87, "y": 1.193, "curve": 0.352, "c2": 0.41, "c3": 0.689, "c4": 0.76}, {"time": 1.75, "x": 1.073, "y": 0.868, "curve": 0.367, "c2": 0.63, "c3": 0.705}, + {"time": 2.0667, "curve": "stepped"}, {"time": 2.45}, {"time": 2.6, "x": 1.117, "y": 0.874, "curve": 0.323, "c3": 0.657, "c4": 0.34}, {"time": 2.6667, "x": 1.101, "y": 0.892} ] }, - "body-braid4": { - "rotate": [ - {"angle": 18.79, "curve": 0.431, "c2": 0.43, "c3": 0.773}, {"time": 0.1333, "angle": -11.53, "curve": 0.144, "c3": 0.557}, - {"time": 0.3333, "angle": 27.46, "curve": 0.367, "c3": 0.703, "c4": 0.45}, {"time": 0.4167, "angle": 18.79} + "ear-right-dot-18": { + "translate": [ + {"x": 166.91, "y": 34.8}, {"time": 0.0167, "x": 168.03, "y": 35.03, "curve": "stepped"}, {"time": 0.0333, "curve": "stepped"}, {"time": 0.1833}, {"time": 0.7333, "x": 36.97, "y": 7.71}, + {"time": 2.6667, "x": 166.91, "y": 34.8} + ], + "scale": [ + {"y": 0.999, "curve": 0.336, "c2": 0.67, "c3": 0.669}, {"time": 0.0167, "curve": "stepped"}, {"time": 0.1833}, + {"time": 0.35, "x": 1.117, "y": 0.874, "curve": 0.295, "c3": 0.633, "c4": 0.37}, {"time": 0.6833, "x": 0.871, "y": 1.143, "curve": 0.329, "c2": 0.31, "c3": 0.663, "c4": 0.65}, + {"time": 0.7333, "x": 0.923, "y": 1.084, "curve": 0.325, "c2": 0.3, "c3": 0.659, "c4": 0.63}, {"time": 0.85, "x": 1.061, "y": 0.929, "curve": 0.317, "c2": 0.28, "c3": 0.654, "c4": 0.62}, + {"time": 1.1833, "x": 0.944, "y": 1.139, "curve": 0.327, "c2": 0.31, "c3": 0.664, "c4": 0.66}, + {"time": 1.5167, "x": 1.146, "y": 0.925, "curve": 0.334, "c2": 0.34, "c3": 0.668, "c4": 0.67}, + {"time": 1.6833, "x": 0.88, "y": 1.171, "curve": 0.336, "c2": 0.34, "c3": 0.671, "c4": 0.68}, {"time": 1.85, "x": 1.073, "y": 0.927, "curve": 0.339, "c2": 0.35, "c3": 0.673, "c4": 0.69}, + {"time": 2.0167, "x": 0.87, "y": 1.193, "curve": 0.352, "c2": 0.41, "c3": 0.689, "c4": 0.76}, {"time": 2.35, "x": 1.073, "y": 0.868, "curve": 0.365, "c2": 0.6, "c3": 0.702, "c4": 0.97}, + {"time": 2.6667, "y": 0.999} ] }, - "body-braid3": { - "rotate": [ - {"angle": 1.68, "curve": 0.384, "c2": 0.6, "c3": 0.719}, {"time": 0.05, "angle": -8.3, "curve": 0.144, "c3": 0.557}, - {"time": 0.25, "angle": 33.27, "curve": 0.415, "c3": 0.759, "c4": 0.68}, {"time": 0.4167, "angle": 1.68} + "ear-right-dot-19": { + "translate": [ + {"x": 112.58, "y": 11.79}, {"time": 0.7333, "x": 165.28, "y": 17.31}, {"time": 0.85, "x": 173.66, "y": 18.18, "curve": "stepped"}, {"time": 0.8667, "curve": "stepped"}, {"time": 1.1}, + {"time": 2.4167, "x": 94.61, "y": 9.91}, {"time": 2.6667, "x": 112.58, "y": 11.79} + ], + "scale": [ + {"x": 1.016, "y": 0.999, "curve": 0.335, "c2": 0.34, "c3": 0.668, "c4": 0.67}, {"time": 0.05, "x": 1.073, "y": 0.927, "curve": 0.339, "c2": 0.35, "c3": 0.673, "c4": 0.69}, + {"time": 0.2167, "x": 0.87, "y": 1.193, "curve": 0.352, "c2": 0.41, "c3": 0.689, "c4": 0.76}, + {"time": 0.5333, "x": 1.073, "y": 0.868, "curve": 0.353, "c2": 0.47, "c3": 0.688, "c4": 0.81}, {"time": 0.7333, "x": 1.012, "y": 0.978, "curve": 0.349, "c2": 0.65, "c3": 0.683}, + {"time": 0.85, "curve": "stepped"}, {"time": 1.1}, {"time": 1.2667, "x": 1.117, "y": 0.874, "curve": 0.295, "c3": 0.633, "c4": 0.37}, + {"time": 1.5833, "x": 0.871, "y": 1.143, "curve": 0.321, "c2": 0.28, "c3": 0.655, "c4": 0.62}, + {"time": 1.75, "x": 1.061, "y": 0.929, "curve": 0.317, "c2": 0.28, "c3": 0.654, "c4": 0.62}, + {"time": 2.0667, "x": 0.944, "y": 1.139, "curve": 0.327, "c2": 0.31, "c3": 0.664, "c4": 0.66}, {"time": 2.4, "x": 1.146, "y": 0.925, "curve": 0.333, "c2": 0.33, "c3": 0.667, "c4": 0.67}, + {"time": 2.4167, "x": 1.116, "y": 0.953, "curve": 0.334, "c2": 0.34, "c3": 0.668, "c4": 0.67}, {"time": 2.55, "x": 0.88, "y": 1.171, "curve": 0.335, "c2": 0.34, "c3": 0.669, "c4": 0.67}, + {"time": 2.6667, "x": 1.016, "y": 0.999} ] }, - "@body6": { - "rotate": [ - {"angle": 15.78, "curve": 0.366, "c2": 0.35, "c3": 0.7, "c4": 0.7}, {"time": 0.05, "angle": 5.84, "curve": 0.396, "c2": 0.58, "c3": 0.732}, - {"time": 0.1167, "angle": -5.24, "curve": 0.144, "c3": 0.557}, {"time": 0.3167, "angle": 25.77, "curve": 0.376, "c3": 0.712, "c4": 0.48}, {"time": 0.4167, "angle": 15.78} - ], + "ear-right-dot-20": { "translate": [ - {"x": -12.53, "y": 5.46, "curve": 0.384, "c2": 0.6, "c3": 0.719}, {"time": 0.05, "x": 5.81, "y": -4.07, "curve": 0.144, "c3": 0.557}, - {"time": 0.25, "x": -70.52, "y": 35.61, "curve": 0.415, "c3": 0.759, "c4": 0.68}, {"time": 0.4167, "x": -12.53, "y": 5.46} + {"x": 26.37, "y": -4.39}, {"time": 0.7333, "x": 72.79, "y": -12.11}, {"time": 2.0833, "x": 158.24, "y": -26.33, "curve": "stepped"}, {"time": 2.1, "curve": "stepped"}, {"time": 2.25}, + {"time": 2.6667, "x": 26.37, "y": -4.39} + ], + "scale": [ + {"x": 0.968, "y": 1.037, "curve": 0.326, "c2": 0.29, "c3": 0.659, "c4": 0.63}, {"time": 0.0833, "x": 0.871, "y": 1.143, "curve": 0.321, "c2": 0.28, "c3": 0.655, "c4": 0.62}, + {"time": 0.25, "x": 1.061, "y": 0.929, "curve": 0.317, "c2": 0.28, "c3": 0.654, "c4": 0.62}, {"time": 0.5833, "x": 0.944, "y": 1.139, "curve": 0.33, "c2": 0.32, "c3": 0.664, "c4": 0.66}, + {"time": 0.7333, "x": 1.034, "y": 1.044, "curve": 0.331, "c2": 0.33, "c3": 0.666, "c4": 0.66}, + {"time": 0.9167, "x": 1.146, "y": 0.925, "curve": 0.334, "c2": 0.34, "c3": 0.668, "c4": 0.67}, + {"time": 1.0833, "x": 0.88, "y": 1.171, "curve": 0.336, "c2": 0.34, "c3": 0.671, "c4": 0.68}, {"time": 1.25, "x": 1.073, "y": 0.927, "curve": 0.339, "c2": 0.35, "c3": 0.673, "c4": 0.69}, + {"time": 1.4167, "x": 0.87, "y": 1.193, "curve": 0.352, "c2": 0.41, "c3": 0.689, "c4": 0.76}, {"time": 1.75, "x": 1.073, "y": 0.868, "curve": 0.367, "c2": 0.63, "c3": 0.705}, + {"time": 2.0833, "curve": "stepped"}, {"time": 2.25}, {"time": 2.4167, "x": 1.117, "y": 0.874, "curve": 0.303, "c3": 0.639, "c4": 0.36}, {"time": 2.6667, "x": 0.968, "y": 1.037} ] } } }, - "2525036827": { + "3799301307": { "slots": { - "eyes": {"attachment": [{"time": 0.0167, "name": "eyes-shut"}, {"time": 0.5833, "name": "eyes-angry"}, {"time": 0.8333, "name": "eyes-shut"}, {"time": 0.9167, "name": "eyes"}]}, - "mouth": {"attachment": [{"time": 0.0167, "name": "mouth-bite"}, {"time": 0.6667, "name": "mouth-open"}, {"time": 0.8333, "name": "mouth"}]} - }, - "bones": { - "@pivot-back": { - "rotate": [ - {"curve": "stepped"}, {"time": 0.0167, "angle": -45}, {"time": 0.1, "angle": -85, "curve": "stepped"}, {"time": 0.6667, "angle": -85, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.8333, "angle": 6, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1} - ], - "translate": [ - {"curve": "stepped"}, {"time": 0.0167, "x": 94.99, "y": -21}, {"time": 0.05, "x": 256.42, "y": -60}, {"time": 0.1, "x": 408.25, "y": -188, "curve": "stepped"}, - {"time": 0.6667, "x": 408.25, "y": -188, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.8333, "y": 12.75, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1} + "eyes-happy-accessory": { + "color": [ + {"time": 0.9, "color": "ffffff00", "curve": 0, "c2": 0.86, "c3": 0.236}, {"time": 0.9333, "color": "ffffffff", "curve": "stepped"}, + {"time": 1.0167, "color": "ffffffff", "curve": 0, "c2": 0.87, "c3": 0.764}, {"time": 1.4167, "color": "ffffff00"} ] }, - "@shadow": { - "translate": [ - {"curve": "stepped"}, {"time": 0.0167, "x": 144.17}, {"time": 0.1, "x": 589.27, "curve": 0.313, "c3": 0.699}, {"time": 0.25, "x": 627.48, "curve": 0.313, "c3": 0.699}, - {"time": 0.4167, "x": 576.87, "curve": 0.313, "c3": 0.699}, {"time": 0.55, "x": 602.83, "curve": 0.313, "c3": 0.699}, {"time": 0.6667, "x": 576.87, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.8333} - ], - "scale": [ - {"curve": "stepped"}, {"time": 0.0167, "x": 0.92, "y": 0.92}, {"time": 0.1, "curve": 0, "c2": 0.22, "c3": 0.373, "c4": 0.57}, {"time": 0.25, "x": 1.04, "y": 1.04, "curve": "stepped"}, - {"time": 0.6667, "x": 1.04, "y": 1.04, "curve": 0.206, "c2": 0.38, "c3": 0.736}, {"time": 0.8333, "x": 1.1, "y": 1.1, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1} + "eyes-light-left": { + "color": [ + {"time": 0.1167, "color": "fff96500", "curve": 0.25, "c3": 0.75}, {"time": 0.1833, "color": "fff96584", "curve": "stepped"}, + {"time": 0.2833, "color": "fff96584", "curve": 0.25, "c3": 0.681}, {"time": 0.5, "color": "fff96500"} ] }, - "@leg-back-left": {"translate": [{"curve": "stepped"}, {"time": 0.0167, "x": 6.4, "y": 0.19}, {"time": 0.1667}]}, - "leg-front-right-IK": { - "translate": [ - {"curve": "stepped"}, {"time": 0.0167, "x": 85.72, "y": 376.6}, {"time": 0.05, "x": 470.49, "y": 757.6}, {"time": 0.1, "x": 1081.69, "y": 580.29, "curve": 0.313, "c3": 0.699}, - {"time": 0.25, "x": 1237.6, "y": 518.07, "curve": 0.313, "c3": 0.699}, {"time": 0.4167, "x": 1055.02, "y": 601.3, "curve": 0.313, "c3": 0.699}, - {"time": 0.5833, "x": 1168.88, "y": 568.7}, {"time": 0.6667, "x": 1116.08, "y": 602.91}, {"time": 0.7, "x": 479.71, "y": 713.72}, {"time": 0.75, "x": 20.63, "y": 378.32}, - {"time": 0.7833, "x": 1.29, "y": 116.66}, {"time": 0.8333} + "eyes-light-right": { + "color": [ + {"color": "fff96500", "curve": 0.25, "c3": 0.75}, {"time": 0.0667, "color": "fff96584", "curve": "stepped"}, {"time": 0.15, "color": "fff96584", "curve": 0.25, "c3": 0.681}, + {"time": 0.3833, "color": "fff96500"} ] - }, - "tail": { - "rotate": [ - {"curve": "stepped"}, {"time": 0.0167, "angle": 35.35}, {"time": 0.1, "angle": -18.03, "curve": 0.313, "c3": 0.699}, {"time": 0.25, "angle": 12.69, "curve": 0.313, "c3": 0.699}, - {"time": 0.4167, "angle": -15.12, "curve": 0.313, "c3": 0.699}, {"time": 0.6667, "angle": 1.29, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.8333, "angle": 19.35, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1} + } + }, + "bones": { + "eyes-happy-accessory": {"scale": [{"time": 0.9, "x": 0, "y": 0, "curve": 0, "c2": 0.86, "c3": 0.236}, {"time": 1.4167}]}, + "eyes-light-left": { + "translate": [{"time": 0.1167, "curve": 0.25, "c3": 0.183}, {"time": 0.5, "x": 74.49, "y": 84.55}], + "scale": [ + {"time": 0.1167, "x": 0, "y": 0, "curve": 0.391, "c3": 0.712, "c4": 0.37}, {"time": 0.15, "x": 0.272, "y": 0.543, "curve": 0.349, "c2": 0.28, "c3": 0.679, "c4": 0.62}, + {"time": 0.1667, "x": 0.659, "y": 0.933, "curve": 0.338, "c2": 0.3, "c3": 0.667, "c4": 0.64}, + {"time": 0.1833, "x": 0.677, "y": 1.164, "curve": 0.326, "c2": 0.31, "c3": 0.655, "c4": 0.65}, {"time": 0.2, "x": 1.139, "y": 1.41, "curve": 0.315, "c2": 0.32, "c3": 0.645, "c4": 0.66}, + {"time": 0.2167, "x": 1.609, "y": 1.313, "curve": 0.282, "c2": 0.33, "c3": 0.604, "c4": 0.67}, + {"time": 0.2333, "x": 1.702, "y": 1.336, "curve": 0.303, "c2": 0.34, "c3": 0.634, "c4": 0.68}, {"time": 0.2667, "x": 1.791, "y": 1.36, "curve": 0.205, "c2": 0.56, "c3": 0.507}, + {"time": 0.35, "x": 1.648, "y": 1.273, "curve": 0.333, "c2": 0.33, "c3": 0.667, "c4": 0.67}, + {"time": 0.3833, "x": 0.946, "y": 1.224, "curve": 0.335, "c2": 0.34, "c3": 0.669, "c4": 0.67}, + {"time": 0.4167, "x": 0.353, "y": 0.293, "curve": 0.337, "c2": 0.35, "c3": 0.671, "c4": 0.68}, {"time": 0.4333, "y": 1.003, "curve": 0.382, "c2": 0.57, "c3": 0.735}, + {"time": 0.5, "x": 0, "y": 0} ] }, - "leg-back-left-IK": { + "eyes-light-right": { "translate": [ - {"curve": "stepped"}, {"time": 0.0167, "x": -93.26, "y": 48.74}, {"time": 0.05, "x": -202.5, "y": 254.02}, {"time": 0.1, "x": 91.88, "y": 560.34, "curve": 0.313, "c3": 0.699}, - {"time": 0.25, "x": 236.84, "y": 611.48, "curve": 0.313, "c3": 0.699}, {"time": 0.4167, "x": 87.84, "y": 555.49, "curve": 0.313, "c3": 0.699}, {"time": 0.5833, "x": 186.18, "y": 586.78}, - {"time": 0.6667, "x": 77.94, "y": 549.13}, {"time": 0.7, "x": -231.86, "y": 221.08}, {"time": 0.75, "x": -168.84, "y": -46.99}, {"time": 0.7833, "x": -16.48, "y": -52.12}, - {"time": 0.8333} + {"curve": 0.402, "c3": 0.716, "c4": 0.38}, {"time": 0.0667, "x": 10.53, "y": 22.35, "curve": 0.341, "c2": 0.3, "c3": 0.673, "c4": 0.64}, + {"time": 0.0833, "x": 14.42, "y": 28.8, "curve": 0.152, "c2": 0.3, "c3": 0.265}, {"time": 0.3833, "x": 74.49, "y": 84.55} + ], + "scale": [ + {"x": 0, "y": 0, "curve": 0.391, "c3": 0.712, "c4": 0.37}, {"time": 0.0333, "x": 0.331, "y": 0.492, "curve": 0.349, "c2": 0.28, "c3": 0.679, "c4": 0.62}, + {"time": 0.05, "x": 0.801, "y": 0.845, "curve": 0.338, "c2": 0.3, "c3": 0.667, "c4": 0.64}, {"time": 0.0667, "x": 0.822, "y": 1.054, "curve": 0.311, "c2": 0.3, "c3": 0.629, "c4": 0.64}, + {"time": 0.1, "x": 1.707, "y": 1.15, "curve": 0.282, "c2": 0.33, "c3": 0.604, "c4": 0.67}, {"time": 0.1167, "x": 2.068, "y": 1.257, "curve": 0.182, "c2": 0.53, "c3": 0.468}, + {"time": 0.2167, "x": 2.002, "y": 1.153, "curve": 0.333, "c2": 0.33, "c3": 0.667, "c4": 0.67}, {"time": 0.25, "x": 1.15, "y": 1.109, "curve": 0.335, "c2": 0.34, "c3": 0.669, "c4": 0.67}, + {"time": 0.2833, "x": 0.428, "y": 0.266, "curve": 0.337, "c2": 0.35, "c3": 0.671, "c4": 0.68}, {"time": 0.3, "x": 1.215, "y": 0.909, "curve": 0.382, "c2": 0.57, "c3": 0.735}, + {"time": 0.3833, "x": 0, "y": 0} ] - }, - "leg-front-left-IK": { - "translate": [ - {"curve": "stepped"}, {"time": 0.0167, "x": -74.92, "y": 201.25}, {"time": 0.05, "x": 21.38, "y": 446.05}, {"time": 0.1, "x": 511.28, "y": 580.46, "curve": 0.313, "c3": 0.699}, - {"time": 0.25, "x": 517.43, "y": 602.17, "curve": 0.313, "c3": 0.699}, {"time": 0.4167, "x": 470.08, "y": 581.27, "curve": 0.313, "c3": 0.699}, - {"time": 0.5833, "x": 451.59, "y": 595.4, "curve": 0.375, "c2": 0.58, "c3": 0.742}, {"time": 0.6667, "x": 445.33, "y": 594.73}, {"time": 0.7, "x": 8.58, "y": 408.19}, - {"time": 0.75, "x": -93.16, "y": 70.64}, {"time": 0.7833, "x": -81.13, "y": 23.88}, {"time": 0.8333} + } + } + }, + "3774600630": { + "slots": { + "eyes": {"attachment": [{"time": 0.0833, "name": "eyes-shut"}, {"time": 0.1667, "name": "eyes-angry"}, {"time": 0.9833, "name": "eyes-shut"}, {"time": 1.0833, "name": "eyes"}]}, + "leg-front-left": { + "attachment": [ + {"time": 0.5, "name": "summer-leg-front-left-stretch"}, {"time": 0.6333, "name": "summer-leg-front-left"}, {"time": 0.7667, "name": "summer-leg-front-left-stretch"}, + {"time": 0.9, "name": "summer-leg-front-left"} ] }, - "@pivot-center": { + "mouth": {"attachment": [{"time": 0.0833, "name": "mouth-bite"}, {"time": 0.3667, "name": "mouth-open"}, {"time": 0.9833, "name": "mouth-bite"}, {"time": 1.0833, "name": "mouth"}]} + }, + "bones": { + "@pivot-back": { "rotate": [ - {"time": 0.0167, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.1, "angle": -95, "curve": 0.313, "c3": 0.699}, {"time": 0.25, "angle": -105, "curve": 0.313, "c3": 0.699}, - {"time": 0.4167, "angle": -90, "curve": 0.313, "c3": 0.699}, {"time": 0.55, "angle": -100, "curve": 0.313, "c3": 0.699}, - {"time": 0.6667, "angle": -90, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.8333} + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.15, "angle": 3.67, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.3333, "angle": -14.29, "curve": 0.779, "c4": 0.3}, + {"time": 0.3667, "angle": 15.82}, {"time": 0.4667, "angle": 16.67, "curve": 0.779, "c4": 0.3}, {"time": 0.5, "angle": -19.96}, {"time": 0.6, "angle": -21.17, "curve": 0.779, "c4": 0.3}, + {"time": 0.6333, "angle": 15.82}, {"time": 0.7333, "angle": 16.67, "curve": 0.779, "c4": 0.3}, {"time": 0.7667, "angle": -19.96}, + {"time": 0.8667, "angle": -21.17, "curve": 0.779, "c4": 0.3}, {"time": 0.9833, "angle": 4.4, "curve": 0, "c2": 0.1, "c3": 0.85}, + {"time": 1.05, "angle": 6.79, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1.25} ], "translate": [ - {"time": 0.1, "curve": 0.313, "c3": 0.699}, {"time": 0.25, "x": 1.68, "y": 38.2, "curve": 0.313, "c3": 0.699}, {"time": 0.4167, "x": -2.73, "y": -12.21, "curve": 0.313, "c3": 0.699}, - {"time": 0.55, "x": -0.47, "y": 13.65, "curve": 0.313, "c3": 0.699}, {"time": 0.6667, "x": -2.73, "y": -12.21, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.8333} + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.2167, "x": 8.02, "curve": 0, "c2": 0.4, "c3": 0.383}, {"time": 0.3333, "x": -54.3, "y": 61.69, "curve": 0.779, "c4": 0.3}, + {"time": 0.3667, "x": -60.41, "y": 130.13}, {"time": 0.4667, "x": -60.41, "y": 130.01, "curve": 0.779, "c4": 0.3}, {"time": 0.5, "x": -58.41, "y": 9.6}, + {"time": 0.6, "x": -58.41, "y": 9.9, "curve": 0.779, "c4": 0.3}, {"time": 0.6333, "x": -60.41, "y": 130.13}, {"time": 0.7333, "x": -60.41, "y": 130.01, "curve": 0.779, "c4": 0.3}, + {"time": 0.7667, "x": -58.41, "y": 9.6}, {"time": 0.8667, "x": -58.41, "y": 9.9, "curve": 0.779, "c4": 0.3}, {"time": 0.9833} ] }, - "@pivot-main": { - "translate": [{"time": 0.6667, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.75, "y": 150, "curve": 0.315, "c4": 0.8}, {"time": 0.8333}], + "@leg-front-right": { + "translate": [ + {"curve": 0, "c2": 0.17, "c3": 0.521, "c4": 0.69}, {"time": 0.15, "x": -16.23, "y": -19.18, "curve": 0.377, "c2": 0.59, "c3": 0.739}, {"time": 0.2167, "x": -18.54, "y": -11.57}, + {"time": 0.25, "x": -22.65, "y": 8.05, "curve": 0, "c2": 0.4, "c3": 0.383}, {"time": 0.3333, "x": 29.92, "y": -4.24, "curve": 0.779, "c4": 0.4}, {"time": 0.3667, "x": 22.95, "y": 2.68}, + {"time": 0.4667, "x": 29.92, "y": -4.24, "curve": 0.779, "c4": 0.4}, {"time": 0.5, "x": 22.95, "y": 2.68}, {"time": 0.6, "x": 29.92, "y": -4.24, "curve": 0.779, "c4": 0.4}, + {"time": 0.6333, "x": 22.95, "y": 2.68}, {"time": 0.7333, "x": 29.92, "y": -4.24, "curve": 0.779, "c4": 0.4}, {"time": 0.7667, "x": 22.95, "y": 2.68, "curve": "stepped"}, + {"time": 0.9167, "x": 22.95, "y": 2.68, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.95, "curve": 0.464, "c4": 0.7}, {"time": 0.9833, "x": -1.45, "y": -24.11}, + {"time": 1.05, "x": -3.72, "y": -46.34, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1.0833} + ], "scale": [ - {"time": 0.1, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "y": 0.93, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "curve": "stepped"}, - {"time": 0.5667, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.65, "y": 0.7, "curve": 0.464, "c4": 0.7}, {"time": 0.7333, "curve": "stepped"}, - {"time": 0.8333, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.9167, "y": 0.98, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1} + {"time": 0.2167}, {"time": 0.25, "x": 1.5}, {"time": 0.3333, "curve": 0.779, "c4": 0.4}, {"time": 0.3667, "x": 1.5}, {"time": 0.4667, "x": 1.51, "curve": 0.157, "c2": 0.33, "c3": 0.727}, + {"time": 0.5, "curve": "stepped"}, {"time": 0.6, "curve": 0.779, "c4": 0.4}, {"time": 0.6333, "x": 1.5}, {"time": 0.7333, "x": 1.51, "curve": 0.157, "c2": 0.33, "c3": 0.727}, + {"time": 0.7667} ] }, - "@leg-front-right": {"translate": [{"time": 0.75}, {"time": 0.8333, "x": -2.35, "y": -26.66, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1}]}, - "@body3": { - "rotate": [ - {"angle": -7.53, "curve": 0.381, "c2": 0.55, "c3": 0.742}, {"time": 0.0667, "angle": -3.77, "curve": 0.25, "c3": 0.485}, {"time": 0.3167, "angle": -14, "curve": 0.542, "c3": 0.75}, - {"time": 0.7333, "angle": -3.77, "curve": 0.25, "c3": 0.75}, {"time": 0.9, "angle": -14, "curve": 0.245, "c3": 0.637, "c4": 0.56}, {"time": 1, "angle": -7.53} - ], + "@leg-front-left": { "translate": [ - {"curve": 0.25, "c3": 0.485}, {"time": 0.25, "x": 45.36, "y": -33.56, "curve": 0.542, "c3": 0.75}, {"time": 0.6667, "curve": 0.25, "c3": 0.75}, - {"time": 0.8333, "x": 55.89, "y": -22.18, "curve": 0.25, "c3": 0.75}, {"time": 1} - ] - }, - "@body4": { - "rotate": [ - {"angle": -12.47, "curve": 0.375, "c2": 0.62, "c3": 0.716}, {"time": 0.0333, "angle": -15.35, "curve": 0.25, "c3": 0.485}, {"time": 0.2833, "angle": 14.26, "curve": 0.542, "c3": 0.75}, - {"time": 0.7, "angle": -15.35, "curve": 0.25, "c3": 0.75}, {"time": 0.8667, "angle": 6.8, "curve": 0.243, "c3": 0.68, "c4": 0.71}, {"time": 1, "angle": -12.47} + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.2167, "x": -6.84, "y": -9.77, "curve": "stepped"}, {"time": 0.9833, "x": -6.84, "y": -9.77, "curve": 0, "c2": 0.1, "c3": 0.85}, + {"time": 1.05, "x": -6.29, "y": -18.69, "curve": 0, "c2": 0.23, "c3": 0.365, "c4": 0.58}, {"time": 1.0833, "x": -3.64, "y": -2.46, "curve": 0.177, "c2": 0.35, "c3": 0.731}, + {"time": 1.25} ], - "translate": [ - {"x": -1.59, "y": 23.93, "curve": 0.25, "c3": 0.485}, {"time": 0.25, "x": 6.55, "y": -29.78, "curve": 0.542, "c3": 0.75}, - {"time": 0.6667, "x": -1.59, "y": 23.93, "curve": 0.25, "c3": 0.75}, {"time": 0.8333, "x": 33.54, "y": -3.13, "curve": 0.25, "c3": 0.75}, {"time": 1, "x": -1.59, "y": 23.93} + "scale": [ + {"time": 0.4667, "curve": 0.779, "c4": 0.4}, {"time": 0.5, "x": 1.5}, {"time": 0.6, "x": 1.51, "curve": 0.157, "c2": 0.33, "c3": 0.727}, {"time": 0.6333, "curve": "stepped"}, + {"time": 0.7333, "curve": 0.779, "c4": 0.4}, {"time": 0.7667, "x": 1.5}, {"time": 0.8667, "x": 1.51, "curve": 0.157, "c2": 0.33, "c3": 0.727}, {"time": 0.9833} ] }, - "@body6": { - "rotate": [ - {"angle": 30.87, "curve": 0.25, "c3": 0.625, "c4": 0.5}, {"time": 0.0833, "angle": 12.82, "curve": 0.375, "c2": 0.5, "c3": 0.75}, - {"time": 0.1667, "angle": -5.24, "curve": 0.25, "c3": 0.485}, {"time": 0.4167, "angle": 25.77, "curve": 0.542, "c3": 0.75}, {"time": 0.8333, "angle": -5.24, "curve": 0.25, "c3": 0.75}, - {"time": 1, "angle": 30.87} - ], + "@leg-back-left": { "translate": [ - {"x": -21.25, "y": -15.24, "curve": 0.375, "c2": 0.5, "c3": 0.75}, {"time": 0.0833, "x": 5.81, "y": -4.07, "curve": 0.25, "c3": 0.485}, - {"time": 0.3333, "x": -70.52, "y": 35.61, "curve": 0.542, "c3": 0.75}, {"time": 0.75, "x": 5.81, "y": -4.07, "curve": 0.25, "c3": 0.75}, - {"time": 0.9167, "x": -48.3, "y": -26.4, "curve": 0.25, "c3": 0.625, "c4": 0.5}, {"time": 1, "x": -21.25, "y": -15.24} - ] - }, - "body-braid2": { - "rotate": [ - {"angle": -1.43, "curve": 0.25, "c3": 0.485}, {"time": 0.25, "angle": 20.83, "curve": 0.542, "c3": 0.75}, {"time": 0.6667, "angle": -1.43, "curve": 0.25, "c3": 0.75}, - {"time": 0.8333, "angle": 20.83, "curve": 0.25, "c3": 0.75}, {"time": 1, "angle": -1.43} + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.2167, "x": -0.11, "y": -2.73, "curve": "stepped"}, {"time": 0.9833, "x": -0.11, "y": -2.73, "curve": 0, "c2": 0.1, "c3": 0.85}, + {"time": 1.05, "x": -0.46, "y": -6.19, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1.25} ] }, - "body-braid4": { - "rotate": [ - {"angle": 18.02, "curve": 0.345, "c2": 0.37, "c3": 0.757}, {"time": 0.1167, "angle": -11.53, "curve": 0.25, "c3": 0.485}, {"time": 0.3667, "angle": 27.46, "curve": 0.542, "c3": 0.75}, - {"time": 0.7833, "angle": -11.53, "curve": 0.25, "c3": 0.75}, {"time": 0.95, "angle": 27.46, "curve": 0.269, "c3": 0.618, "c4": 0.42}, {"time": 1, "angle": 18.02} - ] + "@pivot-main": { + "translate": [ + {"time": 0.15, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "x": -73.35, "y": 43, "curve": "stepped"}, {"time": 0.8667, "x": -73.35, "y": 43, "curve": 0.315, "c4": 0.8}, + {"time": 0.9833, "x": -146.44, "curve": "stepped"}, {"time": 1.05, "x": -146.44, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1.15, "x": -45.61, "y": 50.15, "curve": 0.315, "c4": 0.8}, + {"time": 1.25} + ], + "scale": [{"time": 0.9833, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1.05, "y": 0.98, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1.15}] }, - "body-braid3": { - "rotate": [ - {"angle": 1.76, "curve": 0.382, "c2": 0.58, "c3": 0.731}, {"time": 0.05, "angle": -8.3, "curve": 0.25, "c3": 0.485}, {"time": 0.3, "angle": 33.27, "curve": 0.542, "c3": 0.75}, - {"time": 0.7167, "angle": -8.3, "curve": 0.25, "c3": 0.75}, {"time": 0.8833, "angle": 33.27, "curve": 0.243, "c3": 0.655, "c4": 0.63}, {"time": 1, "angle": 1.76} + "leg-front-right-IK": { + "translate": [ + {"time": 0.15, "curve": 0, "c2": 0.18, "c3": 0.416, "c4": 0.58}, {"time": 0.2167, "x": 19.11, "y": 67.51}, {"time": 0.25, "x": 9.04, "y": 75.61, "curve": 0, "c2": 0.4, "c3": 0.383}, + {"time": 0.3333, "x": -160.66, "y": 272.78, "curve": 0.779, "c4": 0.4}, {"time": 0.3667, "x": -57.38, "y": -16.06}, {"time": 0.4667, "x": -10.1, "y": -16.06, "curve": 0.779, "c4": 0.4}, + {"time": 0.5, "x": -151.82, "y": 190.82}, {"time": 0.6, "x": -168.95, "y": 277.96, "curve": 0.779, "c4": 0.4}, {"time": 0.6333, "x": -54.28, "y": -17.1}, + {"time": 0.7333, "x": -12.17, "y": -17.1, "curve": 0.779, "c4": 0.4}, {"time": 0.7667, "x": -151.82, "y": 190.82}, {"time": 0.8667, "x": -165.84, "y": 271.75, "curve": 0.779, "c4": 0.4}, + {"time": 0.9833, "curve": "stepped"}, {"time": 1.05, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 1.0833, "x": -14.68, "y": -19.57, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1.25} ] }, - "@body2": { - "rotate": [ - {"angle": -17.59, "curve": 0.278, "c2": 0.15, "c3": 0.689, "c4": 0.74}, {"time": 0.1167, "angle": 4.05, "curve": 0.375, "c2": 0.62, "c3": 0.716}, - {"time": 0.15, "angle": 7.45, "curve": 0.25, "c3": 0.485}, {"time": 0.4, "angle": -18.73, "curve": 0.542, "c3": 0.75}, {"time": 0.8167, "angle": 7.45, "curve": 0.25, "c3": 0.75}, - {"time": 0.9833, "angle": -18.73, "curve": 0.305, "c3": 0.64, "c4": 0.36}, {"time": 1, "angle": -17.59} - ], + "leg-front-left-IK": { "translate": [ - {"x": 11.76, "y": -30.68, "curve": 0.345, "c2": 0.37, "c3": 0.757}, {"time": 0.1167, "x": -0.08, "y": 1.15, "curve": 0.25, "c3": 0.485}, - {"time": 0.3667, "x": 4.59, "y": -41.28, "curve": 0.542, "c3": 0.75}, {"time": 0.7833, "x": -0.08, "y": 1.15, "curve": 0.25, "c3": 0.75}, - {"time": 0.95, "x": 15.54, "y": -40.86, "curve": 0.269, "c3": 0.618, "c4": 0.42}, {"time": 1, "x": 11.76, "y": -30.68} + {"time": 0.15, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "x": -54.88, "y": 124.95, "curve": 0.779, "c4": 0.4}, {"time": 0.3667, "x": 37.97, "y": 122.64}, + {"time": 0.4667, "x": 48.96, "y": 138.43, "curve": 0.779, "c4": 0.4}, {"time": 0.5, "x": -142.3, "y": 180.66}, {"time": 0.6, "x": -134.29, "y": 191.98, "curve": 0.779, "c4": 0.4}, + {"time": 0.6333, "x": 37.97, "y": 122.64}, {"time": 0.7333, "x": 48.96, "y": 138.43, "curve": 0.779, "c4": 0.4}, {"time": 0.7667, "x": -142.3, "y": 180.66}, + {"time": 0.8667, "x": -134.29, "y": 191.98, "curve": 0.617, "c4": 0.6}, {"time": 0.9833, "curve": "stepped"}, {"time": 1.05, "curve": 0, "c2": 0.1, "c3": 0.85}, + {"time": 1.0833, "x": -7.79, "y": -10.12, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1.25} ] }, - "body-braid6": { - "rotate": [ - {"angle": 18.35, "curve": 0.25, "c3": 0.75}, {"time": 0.1667, "angle": -20.17, "curve": 0.25, "c3": 0.485}, {"time": 0.4167, "angle": 18.35, "curve": 0.542, "c3": 0.75}, - {"time": 0.8333, "angle": -20.17, "curve": 0.25, "c3": 0.75}, {"time": 1, "angle": 18.35} + "leg-back-left-IK": { + "translate": [ + {"time": 0.0833, "curve": 0.332, "c3": 0.682, "c4": 0.41}, {"time": 0.2167, "x": 21.57, "y": 4.03, "curve": 0, "c2": 0.4, "c3": 0.383}, + {"time": 0.3333, "x": -50.73, "y": 91.08, "curve": 0.779, "c4": 0.4}, {"time": 0.3667, "x": 19.18, "y": 184.64}, {"time": 0.4667, "x": 25.59, "y": 197.69, "curve": 0.779, "c4": 0.4}, + {"time": 0.5, "x": -145.53, "y": 47.62}, {"time": 0.6, "x": -152.68, "y": 53.34, "curve": 0.779, "c4": 0.4}, {"time": 0.6333, "x": 19.18, "y": 184.64}, + {"time": 0.7333, "x": 25.59, "y": 197.69, "curve": 0.779, "c4": 0.4}, {"time": 0.7667, "x": -145.53, "y": 47.62}, {"time": 0.8667, "x": -153.88, "y": 53.26, "curve": 0.779, "c4": 0.4}, + {"time": 0.9833, "curve": "stepped"}, {"time": 1.05, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 1.1667, "x": 24.35, "y": 13.92, "curve": 0.154, "c4": 0.9}, {"time": 1.25} ] }, - "body-braid5": { + "tail": { "rotate": [ - {"angle": 14.38, "curve": 0.375, "c2": 0.5, "c3": 0.75}, {"time": 0.0833, "angle": -7.27, "curve": 0.25, "c3": 0.485}, {"time": 0.3333, "angle": 36.02, "curve": 0.542, "c3": 0.75}, - {"time": 0.75, "angle": -7.27, "curve": 0.25, "c3": 0.75}, {"time": 0.9167, "angle": 36.02, "curve": 0.25, "c3": 0.625, "c4": 0.5}, {"time": 1, "angle": 14.38} + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.15, "angle": 14.68, "curve": 0.315, "c4": 0.8}, {"time": 0.2167, "angle": -12.57}, + {"time": 0.3333, "angle": -14.89, "curve": 0.779, "c4": 0.4}, {"time": 0.3667, "angle": 20.64}, {"time": 0.4667, "angle": 25.18, "curve": 0.779, "c4": 0.4}, + {"time": 0.5, "angle": -19.72}, {"time": 0.6, "angle": -22.19, "curve": 0.779, "c4": 0.4}, {"time": 0.6333, "angle": 20.64}, {"time": 0.7333, "angle": 25.18, "curve": 0.779, "c4": 0.4}, + {"time": 0.7667, "angle": -19.72}, {"time": 0.8667, "angle": -22.19, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.9833, "angle": 23.3}, + {"time": 1.05, "angle": 26.39, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1.1333, "angle": -14.8, "curve": 0.154, "c4": 0.9}, {"time": 1.25} ] }, - "body-braid": { - "rotate": [ - {"angle": 0.59, "curve": 0.375, "c2": 0.62, "c3": 0.716}, {"time": 0.0333, "angle": -2.68, "curve": 0.25, "c3": 0.485}, {"time": 0.2833, "angle": 22.42, "curve": 0.542, "c3": 0.75}, - {"time": 0.7, "angle": -2.68, "curve": 0.25, "c3": 0.75}, {"time": 0.8667, "angle": 22.42, "curve": 0.243, "c3": 0.68, "c4": 0.71}, {"time": 1, "angle": 0.59} + "@shadow": { + "translate": [ + {"time": 0.15, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.3333, "x": -132.39, "curve": 0.779, "c4": 0.4}, {"time": 0.3667, "x": -111.3, "curve": "stepped"}, + {"time": 0.8667, "x": -111.3, "curve": 0.315, "c4": 0.8}, {"time": 0.9833, "x": -132.39, "curve": "stepped"}, {"time": 1.05, "x": -132.39, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 1.25} + ], + "scale": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.15, "x": 1.05, "y": 1.05, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.3333, "x": 0.93, "y": 0.93, "curve": 0.779, "c4": 0.4}, + {"time": 0.3667, "x": 0.95, "y": 0.95}, {"time": 0.4667, "x": 0.93, "y": 0.93, "curve": 0.779, "c4": 0.4}, {"time": 0.5}, {"time": 0.6, "x": 1.05, "y": 1.05, "curve": 0.779, "c4": 0.4}, + {"time": 0.6333}, {"time": 0.7333, "x": 0.93, "y": 0.93, "curve": 0.779, "c4": 0.4}, {"time": 0.7667}, {"time": 0.8667, "x": 1.05, "y": 1.05, "curve": 0.315, "c4": 0.8}, + {"time": 0.9833, "x": 1.09, "y": 1.09, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 1.05, "x": 1.11, "y": 1.11, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1.25} ] } - } - }, - "3095766500": { - "slots": { - "eyes": {"attachment": [{"time": 0.0167, "name": "eyes-shut"}, {"time": 0.3, "name": "eyes-angry"}, {"time": 0.4833, "name": "eyes"}]}, - "mouth": {"attachment": [{"time": 0.0167, "name": "mouth-bite"}, {"time": 0.4833, "name": "mouth"}]} }, + "events": [{"time": 0.3333, "name": "start-attack"}, {"time": 0.3667, "name": "hit"}, {"time": 0.5, "name": "hit"}, {"time": 0.6333, "name": "hit"}, {"time": 0.7667, "name": "hit"}] + }, + "3178494426": { "bones": { "@pivot-back": { "rotate": [ - {"curve": "stepped"}, {"time": 0.0167, "angle": 8}, {"time": 0.2333, "angle": 10, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "angle": -5, "curve": 0.315, "c4": 0.8}, - {"time": 0.4833, "angle": 5, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5833} + {"curve": 0.313, "c3": 0.699}, {"time": 0.3333, "angle": 2.04, "curve": 0.313, "c3": 0.699}, {"time": 0.6667, "curve": 0.313, "c3": 0.699}, + {"time": 1, "angle": 1.79, "curve": 0.313, "c3": 0.699}, {"time": 1.3333, "curve": 0.313, "c3": 0.699}, {"time": 1.6667, "angle": 2.04, "curve": 0.313, "c3": 0.699}, + {"time": 2, "curve": 0.313, "c3": 0.699}, {"time": 2.3333, "angle": 1.79, "curve": 0.313, "c3": 0.699}, {"time": 2.6667} ], "translate": [ - {"curve": "stepped"}, {"time": 0.0167, "x": 29.16, "y": 6.28}, {"time": 0.2667, "x": 18.48, "y": 18.85, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.3833, "x": -1.17, "y": 18.85, "curve": 0.315, "c4": 0.8}, {"time": 0.4833} + {"curve": 0.313, "c3": 0.699}, {"time": 0.3333, "y": -6.53, "curve": 0.313, "c3": 0.699}, {"time": 0.6667, "curve": 0.313, "c3": 0.699}, + {"time": 1, "y": -8.86, "curve": 0.313, "c3": 0.699}, {"time": 1.3333, "curve": 0.313, "c3": 0.699}, {"time": 1.6667, "y": -6.53, "curve": 0.313, "c3": 0.699}, + {"time": 2, "curve": 0.313, "c3": 0.699}, {"time": 2.3333, "y": -8.86, "curve": 0.313, "c3": 0.699}, {"time": 2.6667} + ], + "scale": [ + {"curve": 0.313, "c3": 0.699}, {"time": 0.6667, "y": 0.99, "curve": 0.313, "c3": 0.699}, {"time": 1.3333, "curve": 0.313, "c3": 0.699}, + {"time": 2, "y": 0.99, "curve": 0.313, "c3": 0.699}, {"time": 2.6667} ] }, - "leg-front-right-IK": { + "@leg-front-right": { "translate": [ - {"time": 0.0167}, {"time": 0.2333, "x": -21.51, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "x": 6.83, "y": 84.78}, - {"time": 0.3833, "x": -2.72, "y": 58.18, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.45} + {"curve": 0.313, "c3": 0.699}, {"time": 0.3333, "x": 0.02, "y": -16.89, "curve": 0.313, "c3": 0.699}, {"time": 0.6667, "x": -0.04, "y": 2.46, "curve": 0.313, "c3": 0.699}, + {"time": 1, "x": -0.02, "y": -18.9, "curve": 0.313, "c3": 0.699}, {"time": 1.3333, "curve": 0.313, "c3": 0.699}, {"time": 1.6667, "x": 0.02, "y": -16.89, "curve": 0.313, "c3": 0.699}, + {"time": 2, "x": -0.04, "y": 2.46, "curve": 0.313, "c3": 0.699}, {"time": 2.3333, "x": -0.02, "y": -18.9, "curve": 0.313, "c3": 0.699}, {"time": 2.6667} ] }, - "@shadow": { + "@leg-front-left": { "translate": [ - {"curve": "stepped"}, {"time": 0.0167, "x": 33.22}, {"time": 0.2667, "x": 61.08, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3833, "x": 9.02, "curve": 0.315, "c4": 0.8}, - {"time": 0.4833} + {"curve": 0.313, "c3": 0.699}, {"time": 0.3333, "x": 0.22, "y": -5.13, "curve": 0.313, "c3": 0.699}, {"time": 0.6667, "x": -0.03, "y": 1.81, "curve": 0.313, "c3": 0.699}, + {"time": 1, "x": 0.2, "y": -7.06, "curve": 0.313, "c3": 0.699}, {"time": 1.3333, "curve": 0.313, "c3": 0.699}, {"time": 1.6667, "x": 0.22, "y": -5.13, "curve": 0.313, "c3": 0.699}, + {"time": 2, "x": -0.03, "y": 1.81, "curve": 0.313, "c3": 0.699}, {"time": 2.3333, "x": 0.2, "y": -7.06, "curve": 0.313, "c3": 0.699}, {"time": 2.6667} ], "scale": [ - {"curve": "stepped"}, {"time": 0.0167, "x": 1.1, "y": 1.1, "curve": "stepped"}, {"time": 0.2667, "x": 1.1, "y": 1.1, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.3833, "x": 0.98, "y": 0.98, "curve": 0.315, "c4": 0.8}, {"time": 0.4833, "x": 1.1, "y": 1.1, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5833} - ] - }, - "@leg-front-left": { - "translate": [ - {"curve": "stepped"}, {"time": 0.0167, "x": 0.77, "y": 3.87}, {"time": 0.3667, "x": 1.05, "y": 9.15, "curve": 0.617, "c4": 0.6}, - {"time": 0.4833, "x": -1.09, "y": -14.69, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5833} + {"curve": 0.313, "c3": 0.699}, {"time": 0.3333, "x": 0.905, "curve": 0.313, "c3": 0.699}, {"time": 0.6667, "curve": 0.313, "c3": 0.699}, + {"time": 1, "x": 0.905, "curve": 0.313, "c3": 0.699}, {"time": 1.3333, "curve": 0.313, "c3": 0.699}, {"time": 1.6667, "x": 0.905, "curve": 0.313, "c3": 0.699}, + {"time": 2, "curve": 0.313, "c3": 0.699}, {"time": 2.3333, "x": 0.905, "curve": 0.313, "c3": 0.699}, {"time": 2.6667} ] }, - "@leg-front-right": { + "@leg-back-left": { "translate": [ - {"curve": "stepped"}, {"time": 0.0167, "x": 27.88, "y": -51.35}, {"time": 0.2333, "x": 31.13, "y": -45.76}, {"time": 0.45, "x": 0.18, "y": 4.24}, - {"time": 0.4833, "x": -2.72, "y": -33.58, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5833} + {"curve": 0.313, "c3": 0.699}, {"time": 0.3333, "x": 0.22, "y": -4.11, "curve": 0.313, "c3": 0.699}, {"time": 0.6667, "x": -0.03, "y": 1.69, "curve": 0.313, "c3": 0.699}, + {"time": 1, "x": 0.2, "y": -5.68, "curve": 0.313, "c3": 0.699}, {"time": 1.3333, "curve": 0.313, "c3": 0.699}, {"time": 1.6667, "x": 0.22, "y": -4.11, "curve": 0.313, "c3": 0.699}, + {"time": 2, "x": -0.03, "y": 1.69, "curve": 0.313, "c3": 0.699}, {"time": 2.3333, "x": 0.2, "y": -5.68, "curve": 0.313, "c3": 0.699}, {"time": 2.6667} + ], + "scale": [ + {"curve": 0.313, "c3": 0.699}, {"time": 0.3333, "x": 0.943, "curve": 0.313, "c3": 0.699}, {"time": 0.6667, "curve": 0.313, "c3": 0.699}, + {"time": 1, "x": 0.943, "curve": 0.313, "c3": 0.699}, {"time": 1.3333, "curve": 0.313, "c3": 0.699}, {"time": 1.6667, "x": 0.943, "curve": 0.313, "c3": 0.699}, + {"time": 2, "curve": 0.313, "c3": 0.699}, {"time": 2.3333, "x": 0.943, "curve": 0.313, "c3": 0.699}, {"time": 2.6667} ] }, "@pivot-main": { - "translate": [ - {"curve": "stepped"}, {"time": 0.0167, "x": 33.18}, {"time": 0.2667, "x": 61.52, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3833, "x": 20.27, "y": 27.91, "curve": 0.315, "c4": 0.8}, - {"time": 0.4833} + "scale": [ + {"curve": 0.313, "c3": 0.699}, {"time": 0.3333, "y": 0.98, "curve": 0.313, "c3": 0.699}, {"time": 0.6667, "curve": 0.313, "c3": 0.699}, + {"time": 1, "y": 0.98, "curve": 0.313, "c3": 0.699}, {"time": 1.3333, "curve": 0.313, "c3": 0.699}, {"time": 1.6667, "y": 0.98, "curve": 0.313, "c3": 0.699}, + {"time": 2, "curve": 0.313, "c3": 0.699}, {"time": 2.3333, "y": 0.98, "curve": 0.313, "c3": 0.699}, {"time": 2.6667} ] }, "tail": { "rotate": [ - {"curve": "stepped"}, {"time": 0.0167, "angle": -18.65}, {"time": 0.2333, "angle": -21.65, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.3333, "angle": -13.3, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.45, "angle": 12.04, "curve": 0.154, "c4": 0.9}, - {"time": 0.5167, "angle": -9.14, "curve": 0.161, "c3": 0.854}, {"time": 0.5833} + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "angle": 4.54, "curve": 0.313, "c3": 0.699}, {"time": 1, "angle": -9.06, "curve": 0.313, "c3": 0.699}, + {"time": 1.3333, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1.6667, "angle": 4.54, "curve": 0.313, "c3": 0.699}, {"time": 2.3333, "angle": -9.06, "curve": 0.313, "c3": 0.699}, + {"time": 2.6667} ] }, - "leg-front-left-IK": { - "translate": [ - {"time": 0.2333, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "x": 12.33, "y": 29.93}, {"time": 0.3833, "x": 13.61, "y": 28.01, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.45} + "back": { + "rotate": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "angle": -4.27, "curve": 0.313, "c3": 0.699}, {"time": 1, "angle": 2.83, "curve": 0.313, "c3": 0.699}, + {"time": 1.3333, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1.6667, "angle": -4.27, "curve": 0.313, "c3": 0.699}, {"time": 2.3333, "angle": 2.83, "curve": 0.313, "c3": 0.699}, + {"time": 2.6667} ] }, - "leg-back-left-IK": { - "translate": [ - {"curve": "stepped"}, {"time": 0.0167, "x": 50.74, "y": 0.9, "curve": "stepped"}, {"time": 0.2, "x": 50.74, "y": 0.9, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.25, "x": 12.5, "y": 6.45, "curve": 0, "c2": 0.8, "c3": 0.15}, {"time": 0.3667, "x": 5.47, "y": 26.12, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.4833} + "ear-right": { + "rotate": [ + {"curve": 0.461, "c3": 0.543}, {"time": 0.6667, "angle": -3.91, "curve": 0.461, "c3": 0.543}, {"time": 1.3333, "curve": 0.461, "c3": 0.543}, + {"time": 2, "angle": -3.91, "curve": 0.461, "c3": 0.543}, {"time": 2.6667} ] }, - "@leg-back-left": { - "translate": [ - {"curve": "stepped"}, {"time": 0.0167, "x": 18.74, "y": 14.65, "curve": "stepped"}, {"time": 0.1667, "x": 18.74, "y": 14.65, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.4833} + "ear-left": { + "rotate": [ + {"curve": 0.461, "c3": 0.543}, {"time": 0.6667, "angle": -3.92, "curve": 0.461, "c3": 0.543}, {"time": 1.3333, "curve": 0.461, "c3": 0.543}, + {"time": 2, "angle": -3.92, "curve": 0.461, "c3": 0.543}, {"time": 2.6667} ] }, - "@body3": { - "rotate": [ - {"angle": -7.3, "curve": 0.395, "c2": 0.58, "c3": 0.731}, {"time": 0.05, "angle": -3.77, "curve": 0.144, "c3": 0.557}, {"time": 0.1667, "angle": -14, "curve": 0.455, "c3": 0.807}, - {"time": 0.2833, "angle": -3.77, "curve": 0.144, "c3": 0.557}, {"time": 0.4667, "angle": -14, "curve": 0.405, "c3": 0.747, "c4": 0.63}, {"time": 0.5833, "angle": -7.3} - ], + "@shadow": { + "scale": [ + {"curve": 0.306, "c3": 0.695}, {"time": 0.3333, "x": 1.05, "y": 1.05, "curve": 0.306, "c3": 0.695}, {"time": 0.6667, "curve": 0.306, "c3": 0.695}, + {"time": 1, "x": 1.05, "y": 1.05, "curve": 0.306, "c3": 0.695}, {"time": 1.3333, "curve": 0.306, "c3": 0.695}, {"time": 1.6667, "x": 1.05, "y": 1.05, "curve": 0.306, "c3": 0.695}, + {"time": 2, "curve": 0.306, "c3": 0.695}, {"time": 2.3333, "x": 1.05, "y": 1.05, "curve": 0.306, "c3": 0.695}, {"time": 2.6667} + ] + } + } + }, + "1178295570": { + "slots": { + "mouth-accessory": { + "color": [ + {"color": "ffffff00", "curve": 0.25, "c3": 0.75}, {"time": 0.0833, "color": "ffffffff", "curve": "stepped"}, {"time": 2.3333, "color": "ffffffff", "curve": 0, "c2": 1, "c3": 0.012}, + {"time": 2.5833, "color": "ffffff00"} + ] + } + }, + "bones": { + "mouth-accessory": { + "rotate": [{"curve": 0.25, "c3": 0.75}, {"time": 1.2333, "angle": 52.45, "curve": 0, "c2": 0.69, "c3": 0.89}, {"time": 2.5833, "angle": -64.25}], "translate": [ - {"curve": 0.144, "c3": 0.557}, {"time": 0.1167, "x": 45.36, "y": -33.56, "curve": 0.455, "c3": 0.807}, {"time": 0.2333, "curve": 0.144, "c3": 0.557}, - {"time": 0.4167, "x": 45.36, "y": -33.56, "curve": 0.455, "c3": 0.807}, {"time": 0.5833} + {"x": 76.63, "y": -53.41, "curve": "stepped"}, {"time": 1.1667, "x": 76.63, "y": -53.41, "curve": 0.117, "c2": 0.2, "c3": 0.488, "c4": 0.99}, {"time": 2.3333, "x": 76.63, "y": 181.61} + ], + "scale": [ + {"x": 0, "y": 0, "curve": 0.25, "c3": 0.75}, {"time": 1.1667, "curve": 0.25, "c3": 0.75}, {"time": 1.2333, "x": 0.86, "y": 1.14, "curve": 0.25, "c3": 0.75}, + {"time": 1.3333, "x": 1.12, "y": 0.88, "curve": 0.25, "c3": 0.75}, {"time": 1.45, "x": 1.1, "y": 0.9, "curve": 0.25, "c3": 0.75}, + {"time": 1.6, "x": 0.92, "y": 1.08, "curve": 0.25, "c3": 0.75}, {"time": 1.7667, "x": 1.06, "y": 0.94, "curve": 0.25, "c3": 0.75}, + {"time": 1.9333, "x": 0.96, "y": 1.04, "curve": 0.25, "c3": 0.75}, {"time": 2.1167, "x": 1.02, "y": 0.98, "curve": 0.25, "c3": 0.75}, + {"time": 2.3333, "curve": 0, "c2": 0.92, "c3": 0.131, "c4": 0.99}, {"time": 2.5, "x": 1.373, "y": 1.373} ] }, - "@body4": { + "mouth-bubble": {"translate": [{"x": 117.65, "curve": 0.25, "c3": 0.75}, {"time": 1.1667, "x": 48.76, "curve": 0, "c2": 0.85, "c3": 0.307}, {"time": 2.3333, "x": -36.18}]}, + "mouth-bubble-core": {"scale": [{"x": 0, "y": 0, "curve": 0.25, "c3": 0.75}, {"time": 2.2833, "curve": 0, "c2": 0.99, "c3": 0.121}, {"time": 2.4333, "x": 2.773, "y": 2.773}]} + } + }, + "3634120758": { + "slots": { + "eyes": {"attachment": [{"time": 0.0833, "name": "eyes-happy"}, {"time": 1, "name": "eyes"}]}, + "leg-back-left": {"attachment": [{"time": 0.0667, "name": "summer-leg-back-left-long"}, {"time": 0.9, "name": "summer-leg-back-left"}]}, + "mouth": {"attachment": [{"time": 0.0833, "name": "mouth-smile"}, {"time": 1, "name": "mouth"}]} + }, + "bones": { + "@pivot-back": { "rotate": [ - {"angle": -11.27, "curve": 0.378, "c2": 0.61, "c3": 0.713, "c4": 0.99}, {"time": 0.0333, "angle": -15.35, "curve": 0.144, "c3": 0.557}, - {"time": 0.15, "angle": 6.2, "curve": 0.455, "c3": 0.807}, {"time": 0.2667, "angle": -15.35, "curve": 0.144, "c3": 0.557}, - {"time": 0.45, "angle": 5.52, "curve": 0.42, "c3": 0.765, "c4": 0.71}, {"time": 0.5833, "angle": -11.27} + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "angle": -18, "curve": 0.317, "c3": 0.693}, {"time": 0.3333, "angle": -17, "curve": 0.317, "c3": 0.693}, + {"time": 0.5, "angle": -18, "curve": 0.317, "c3": 0.693}, {"time": 0.6667, "angle": -17, "curve": 0.317, "c3": 0.693}, {"time": 0.8333, "angle": -18, "curve": 0.317, "c3": 0.693}, + {"time": 1.0833} ], "translate": [ - {"x": -1.59, "y": 23.93, "curve": 0.144, "c3": 0.557}, {"time": 0.1167, "x": 6.55, "y": -29.78, "curve": 0.455, "c3": 0.807}, - {"time": 0.2333, "x": -1.59, "y": 23.93, "curve": 0.144, "c3": 0.557}, {"time": 0.4167, "x": 23.9, "y": -28.27, "curve": 0.455, "c3": 0.807}, {"time": 0.5833, "x": -1.59, "y": 23.93} + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": 33.94, "y": -52, "curve": "stepped"}, {"time": 0.8333, "x": 33.94, "y": -52, "curve": 0.317, "c3": 0.693}, {"time": 1.0833} ] }, - "@body6": { - "rotate": [ - {"angle": 10.94, "curve": 0.359, "c2": 0.32, "c3": 0.693, "c4": 0.68}, {"time": 0.0333, "angle": 5.41, "curve": 0.409, "c2": 0.54, "c3": 0.746}, - {"time": 0.1, "angle": -5.24, "curve": 0.144, "c3": 0.557}, {"time": 0.2167, "angle": 17.35, "curve": 0.455, "c3": 0.807}, {"time": 0.3333, "angle": -5.24, "curve": 0.144, "c3": 0.557}, - {"time": 0.5167, "angle": 16.19, "curve": 0.369, "c3": 0.705, "c4": 0.46}, {"time": 0.5833, "angle": 10.94} - ], + "@leg-front-left": { "translate": [ - {"x": -3.76, "y": 0.76, "curve": 0.378, "c2": 0.61, "c3": 0.713, "c4": 0.99}, {"time": 0.0333, "x": 5.81, "y": -4.07, "curve": 0.144, "c3": 0.557}, - {"time": 0.15, "x": -32, "y": -2.2, "curve": 0.455, "c3": 0.807}, {"time": 0.2667, "x": 5.81, "y": -4.07, "curve": 0.144, "c3": 0.557}, - {"time": 0.45, "x": -43.15, "y": 20.65, "curve": 0.42, "c3": 0.765, "c4": 0.71}, {"time": 0.5833, "x": -3.76, "y": 0.76} + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": -27.99, "y": 1.7, "curve": 0.25, "c3": 0.75}, {"time": 0.3333, "x": -26.93, "y": -1.56, "curve": 0.25, "c3": 0.75}, + {"time": 0.5, "x": -27.99, "y": 1.7, "curve": 0.25, "c3": 0.75}, {"time": 0.6667, "x": -26.93, "y": -1.56, "curve": 0.25, "c3": 0.75}, + {"time": 0.8333, "x": -27.99, "y": 1.7, "curve": 0.317, "c3": 0.693}, {"time": 1.0833} ] }, - "body-braid2": { - "rotate": [ - {"angle": -1.43, "curve": 0.144, "c3": 0.557}, {"time": 0.1167, "angle": 11.3, "curve": 0.455, "c3": 0.807}, {"time": 0.2333, "angle": -1.43, "curve": 0.144, "c3": 0.557}, - {"time": 0.4167, "angle": 17.43, "curve": 0.455, "c3": 0.807}, {"time": 0.5833, "angle": -1.43} + "@leg-front-right": { + "translate": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": -84.32, "y": 39.72, "curve": 0.317, "c3": 0.693}, {"time": 0.3333, "x": -82.71, "y": 34.75, "curve": 0.317, "c3": 0.693}, + {"time": 0.5, "x": -84.32, "y": 39.72, "curve": 0.317, "c3": 0.693}, {"time": 0.6667, "x": -82.71, "y": 34.75, "curve": 0.317, "c3": 0.693}, + {"time": 0.8333, "x": -84.32, "y": 39.72, "curve": 0.317, "c3": 0.693}, {"time": 1.0833} ] }, - "body-braid4": { - "rotate": [ - {"angle": 4.91, "curve": 0.42, "c2": 0.5, "c3": 0.76}, {"time": 0.0833, "angle": -11.53, "curve": 0.144, "c3": 0.557}, {"time": 0.2, "angle": 17.93, "curve": 0.455, "c3": 0.807}, - {"time": 0.3167, "angle": -11.53, "curve": 0.144, "c3": 0.557}, {"time": 0.5, "angle": 14.26, "curve": 0.38, "c3": 0.717, "c4": 0.5}, {"time": 0.5833, "angle": 4.91} - ] + "leg-front-right-IK": { + "translate": [{"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": 40.32, "curve": "stepped"}, {"time": 0.8333, "x": 40.32, "curve": 0.317, "c3": 0.693}, {"time": 1.0833}] }, - "body-braid3": { - "rotate": [ - {"angle": -2.76, "curve": 0.378, "c2": 0.61, "c3": 0.713, "c4": 0.99}, {"time": 0.0333, "angle": -8.3, "curve": 0.144, "c3": 0.557}, - {"time": 0.15, "angle": 23.74, "curve": 0.455, "c3": 0.807}, {"time": 0.2667, "angle": -8.3, "curve": 0.144, "c3": 0.557}, - {"time": 0.45, "angle": 20.07, "curve": 0.42, "c3": 0.765, "c4": 0.71}, {"time": 0.5833, "angle": -2.76} - ] + "leg-front-left-IK": { + "translate": [{"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": 26.51, "curve": "stepped"}, {"time": 0.8333, "x": 26.51, "curve": 0.317, "c3": 0.693}, {"time": 1.0833}] }, - "@body2": { - "rotate": [ - {"angle": -8.86, "curve": 0.379, "c2": 0.38, "c3": 0.714, "c4": 0.76}, {"time": 0.05, "angle": 2.34, "curve": 0.378, "c2": 0.61, "c3": 0.713, "c4": 0.99}, - {"time": 0.0833, "angle": 7.45, "curve": 0.144, "c3": 0.557}, {"time": 0.2, "angle": -18.73, "curve": 0.455, "c3": 0.807}, {"time": 0.3167, "angle": 7.45, "curve": 0.144, "c3": 0.557}, - {"time": 0.5, "angle": -18.73, "curve": 0.38, "c3": 0.717, "c4": 0.5}, {"time": 0.5833, "angle": -8.86} - ], + "leg-back-left-IK": { "translate": [ - {"x": 1.53, "y": -13.51, "curve": 0.395, "c2": 0.58, "c3": 0.731}, {"time": 0.05, "x": -0.08, "y": 1.15, "curve": 0.144, "c3": 0.557}, - {"time": 0.1667, "x": 4.59, "y": -41.28, "curve": 0.455, "c3": 0.807}, {"time": 0.2833, "x": -0.08, "y": 1.15, "curve": 0.144, "c3": 0.557}, - {"time": 0.4667, "x": 4.59, "y": -41.28, "curve": 0.405, "c3": 0.747, "c4": 0.63}, {"time": 0.5833, "x": 1.53, "y": -13.51} - ] - }, - "body-braid6": { - "rotate": [ - {"angle": -8.34, "curve": 0.363, "c2": 0.44, "c3": 0.755}, {"time": 0.1, "curve": 0.25, "c3": 0.625, "c4": 0.5}, {"time": 0.2167, "angle": -9.53, "curve": 0.375, "c2": 0.5, "c3": 0.75}, - {"time": 0.3333, "curve": 0.25, "c3": 0.75}, {"time": 0.5167, "angle": -13.2, "curve": 0.258, "c3": 0.619, "c4": 0.45}, {"time": 0.5833, "angle": -8.34} - ] - }, - "body-braid5": { - "rotate": [ - {"angle": 3.13, "curve": 0.395, "c2": 0.58, "c3": 0.731}, {"time": 0.05, "angle": -7.27, "curve": 0.144, "c3": 0.557}, {"time": 0.1667, "angle": 26.49, "curve": 0.455, "c3": 0.807}, - {"time": 0.2833, "angle": -7.27, "curve": 0.144, "c3": 0.557}, {"time": 0.4667, "angle": 22.82, "curve": 0.405, "c3": 0.747, "c4": 0.63}, {"time": 0.5833, "angle": 3.13} + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": -30.93, "y": 88.63, "curve": 0.617, "c4": 0.6}, {"time": 0.2667, "x": -62.81, "y": 72.23, "curve": 0, "c2": 0.4, "c3": 0.383}, + {"time": 0.35, "x": -28.19, "y": 96.83, "curve": 0.617, "c4": 0.6}, {"time": 0.45, "x": -62.81, "y": 72.23, "curve": 0, "c2": 0.4, "c3": 0.383}, + {"time": 0.55, "x": -28.19, "y": 96.83, "curve": 0.617, "c4": 0.6}, {"time": 0.6333, "x": -62.81, "y": 72.23, "curve": 0, "c2": 0.4, "c3": 0.383}, + {"time": 0.7333, "x": -28.19, "y": 96.83, "curve": 0.434, "c3": 0.739, "c4": 0.4}, {"time": 0.8333, "x": -56.92, "y": 76.7, "curve": 0.223, "c2": 0.33, "c3": 0.336}, {"time": 1.0833} ] }, - "body-braid": { + "tail": { "rotate": [ - {"angle": -1.2, "curve": 0.358, "c2": 0.63, "c3": 0.692, "c4": 0.99}, {"time": 0.0167, "angle": -2.68, "curve": 0.144, "c3": 0.557}, - {"time": 0.1333, "angle": 12.89, "curve": 0.455, "c3": 0.807}, {"time": 0.25, "angle": -2.68, "curve": 0.144, "c3": 0.557}, - {"time": 0.4333, "angle": 19.02, "curve": 0.436, "c3": 0.785, "c4": 0.83}, {"time": 0.5833, "angle": -1.2} + {"curve": 0, "c2": 0.3, "c3": 0.546}, {"time": 0.1667, "angle": 25.35, "curve": 0.317, "c3": 0.693}, {"time": 0.3333, "angle": 33.35, "curve": 0.317, "c3": 0.693}, + {"time": 0.5, "angle": 25.35, "curve": 0.317, "c3": 0.693}, {"time": 0.6667, "angle": 33.35, "curve": 0.317, "c3": 0.693}, + {"time": 0.9167, "angle": 25.35, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 1.0833} ] }, - "@body5": { - "rotate": [ - {"curve": 0.144, "c3": 0.557}, {"time": 0.1167, "angle": 0.5, "curve": 0.455, "c3": 0.807}, {"time": 0.2333, "curve": 0.144, "c3": 0.557}, - {"time": 0.4167, "angle": 0.5, "curve": 0.455, "c3": 0.807}, {"time": 0.5833} + "@shadow": { + "translate": [{"curve": 0, "c2": 0.3, "c3": 0.546}, {"time": 0.1667, "x": 32.73, "curve": "stepped"}, {"time": 0.8333, "x": 32.73, "curve": 0.317, "c3": 0.693}, {"time": 1.0833}], + "scale": [ + {"time": 0.1667, "curve": 0.317, "c3": 0.693}, {"time": 0.25, "x": 1.02, "y": 1.02, "curve": 0.317, "c3": 0.693}, {"time": 0.3333, "curve": 0.317, "c3": 0.693}, + {"time": 0.4167, "x": 1.02, "y": 1.02, "curve": 0.317, "c3": 0.693}, {"time": 0.5, "curve": 0.317, "c3": 0.693}, {"time": 0.5833, "x": 1.02, "y": 1.02, "curve": 0.317, "c3": 0.693}, + {"time": 0.6667, "curve": 0.317, "c3": 0.693}, {"time": 0.8333, "x": 1.02, "y": 1.02, "curve": 0.317, "c3": 0.693}, {"time": 1.0833} ] } - } + }, + "drawOrder": [{"time": 0.0667, "offsets": [{"slot": "leg-back-left", "offset": 1}]}, {"time": 0.9}] }, - "3945863285": { + "3942433225": { "slots": { - "eyes": {"attachment": [{"time": 0.0167, "name": "eyes-angry"}, {"time": 0.25, "name": "eyes-shut"}, {"time": 0.3, "name": "eyes-angry"}, {"time": 0.4333, "name": "eyes"}]}, - "mouth": {"attachment": [{"time": 0.0167, "name": "mouth-bite"}, {"time": 0.3, "name": "mouth-open"}, {"time": 0.4333, "name": "mouth"}]} + "eyes": {"attachment": [{"name": "eyes-happy"}]}, + "leg-front-left": {"attachment": [{"time": 0.2, "name": "summer-leg-front-left-stretch"}, {"time": 0.5833, "name": "summer-leg-front-left"}]} }, "bones": { - "@pivot-back": { - "rotate": [ - {"curve": "stepped"}, {"time": 0.0167, "angle": 7.5}, {"time": 0.2333, "angle": 10, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "angle": -5, "curve": 0.315, "c4": 0.8}, - {"time": 0.4833, "angle": 5, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5833} - ], - "translate": [ - {"curve": "stepped"}, {"time": 0.0167, "x": 29.16, "y": 18.85, "curve": "stepped"}, {"time": 0.2667, "x": 29.16, "y": 18.85, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.3833, "x": -1.17, "y": 18.85, "curve": 0.315, "c4": 0.8}, {"time": 0.4833} - ] - }, - "leg-back-left-IK": { + "@leg-front-left": { "translate": [ - {"curve": "stepped"}, {"time": 0.0167, "x": 50.74, "y": 0.9, "curve": "stepped"}, {"time": 0.2, "x": 50.74, "y": 0.9, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.25, "x": 12.5, "y": 6.45, "curve": 0, "c2": 0.8, "c3": 0.15}, {"time": 0.3667, "x": 5.47, "y": 26.12, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.4833} + {"x": -14.55, "y": -2.39, "curve": 0.374, "c2": 0.33, "c3": 0.72, "c4": 0.68}, {"time": 0.0333, "x": -24.69, "y": -4.71, "curve": 0.37, "c2": 0.57, "c3": 0.746}, + {"time": 0.1667, "x": -24.61, "y": -1.31, "curve": 0.37, "c2": 0.57, "c3": 0.746}, {"time": 0.3333, "x": 13.45, "y": -27.72, "curve": 0.345, "c2": 0.53, "c3": 0.751}, + {"time": 0.4833, "x": 40.66, "y": -4.9, "curve": 0.262, "c3": 0.63, "c4": 0.42}, {"time": 0.5667, "x": 49.25, "y": 8.32, "curve": 0.343, "c2": 0.3, "c3": 0.688, "c4": 0.65}, + {"time": 0.7, "x": 9.23, "y": 17.43, "curve": 0.255, "c3": 0.659, "c4": 0.47}, {"time": 0.75, "x": -14.55, "y": -2.39} + ], + "scale": [ + {"curve": 0.459, "c2": 0.59, "c3": 0.838}, {"time": 0.0333, "x": 0.935, "curve": 0.331, "c3": 0.677, "c4": 0.4}, {"time": 0.0667, "x": 0.87, "curve": 0.464, "c4": 0.7}, {"time": 0.1667} ] }, - "@leg-back-left": { + "leg-front-left-IK": { "translate": [ - {"curve": "stepped"}, {"time": 0.0167, "x": 18.74, "y": 14.65, "curve": "stepped"}, {"time": 0.1667, "x": 18.74, "y": 14.65, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.4833} + {"x": 0.33, "y": 2.27, "curve": 0.154, "c4": 0.9}, {"time": 0.0833, "x": 32.98, "y": -4.28, "curve": 0.269, "c2": 0.57, "c3": 0.577}, + {"time": 0.1667, "x": 53.3, "y": 2.35, "curve": 0.461, "c3": 0.543}, {"time": 0.4167, "x": -85.44, "y": 106.83, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.5167, "x": -85.78, "y": 86.09, "curve": 0.143, "c3": 0.57, "c4": 0.46}, {"time": 0.7, "x": -26.89, "y": 8.67, "curve": 0, "c2": 0.09, "c3": 0.479, "c4": 0.56}, + {"time": 0.75, "x": 0.33, "y": 2.27} ] }, - "@pivot-main": { + "leg-back-left-IK": { "translate": [ - {"curve": "stepped"}, {"time": 0.0167, "x": 33.18}, {"time": 0.2667, "x": 61.52, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3833, "x": 20.27, "y": 27.91, "curve": 0.315, "c4": 0.8}, - {"time": 0.4833} + {"x": 17.64, "y": 16.11, "curve": 0.455, "c2": 0.58, "c3": 0.847}, {"time": 0.0333, "curve": 0, "c2": 0.1, "c3": 0.85}, + {"time": 0.2333, "x": -50.37, "curve": 0, "c2": 0.09, "c3": 0.466, "c4": 0.7}, {"time": 0.3, "x": 11.38, "y": 18.2, "curve": 0.177, "c2": 0.44, "c3": 0.617}, + {"time": 0.5333, "x": 56.74, "y": 103.8, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.6667, "x": 71.93, "y": 112.16, "curve": 0.315, "c4": 0.8}, {"time": 0.75, "x": 17.64, "y": 16.11} ] }, "@shadow": { - "translate": [ - {"curve": "stepped"}, {"time": 0.0167, "x": 33.22}, {"time": 0.2667, "x": 61.08, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3833, "x": 9.02, "curve": 0.315, "c4": 0.8}, - {"time": 0.4833} - ], "scale": [ - {"curve": "stepped"}, {"time": 0.0167, "x": 1.1, "y": 1.1, "curve": "stepped"}, {"time": 0.2667, "x": 1.1, "y": 1.1, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.3833, "x": 0.98, "y": 0.98, "curve": 0.315, "c4": 0.8}, {"time": 0.4833, "x": 1.1, "y": 1.1, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5833} + {"curve": 0.313, "c3": 0.699}, {"time": 0.25, "x": 0.94, "y": 0.94, "curve": 0.313, "c3": 0.699}, {"time": 0.4333, "x": 0.8, "y": 0.8, "curve": 0.315, "c4": 0.8}, {"time": 0.75} ] }, "tail": { - "rotate": [ - {"curve": "stepped"}, {"time": 0.0167, "angle": -17.67}, {"time": 0.2333, "angle": -21.07, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.3167, "angle": -20.71, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.45, "angle": 25.83, "curve": 0.154, "c4": 0.9}, - {"time": 0.5167, "angle": -14.3, "curve": 0.161, "c3": 0.854}, {"time": 0.5833} - ] + "rotate": [{"curve": 0.161, "c3": 0.854}, {"time": 0.25, "angle": -20, "curve": 0, "c2": 0.3, "c3": 0.546}, {"time": 0.5, "angle": 4.21, "curve": 0.154, "c4": 0.9}, {"time": 0.75}] }, "@leg-front-right": { "translate": [ - {"curve": "stepped"}, {"time": 0.0167, "x": 27.88, "y": -51.35}, {"time": 0.2333, "x": 31.13, "y": -45.76}, {"time": 0.45, "x": 0.18, "y": 4.24}, - {"time": 0.4833, "x": -2.72, "y": -33.58, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5833} - ] - }, - "@leg-front-left": { - "translate": [ - {"curve": "stepped"}, {"time": 0.0167, "x": 0.77, "y": 3.87}, {"time": 0.3667, "x": 1.05, "y": 9.15, "curve": 0.617, "c4": 0.6}, - {"time": 0.4833, "x": -1.09, "y": -14.69, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5833} + {"x": 7.78, "y": -11.23, "curve": 0.649, "c2": 0.4, "c4": 0.74}, {"time": 0.0167, "x": -0.64, "y": -13.16, "curve": 0.313, "c3": 0.699}, + {"time": 0.1333, "x": -9.39, "y": -16.39, "curve": 0.346, "c2": 0.44, "c3": 0.699}, {"time": 0.3167, "x": -26.29, "y": 12.52, "curve": 0, "c2": 0.18, "c3": 0.424, "c4": 0.59}, + {"time": 0.4333, "x": 7.42, "y": -10.53, "curve": 0.316, "c2": 0.49, "c3": 0.751}, {"time": 0.6, "x": 37.87, "y": -4.31, "curve": 0.289, "c3": 0.884, "c4": 0.7}, + {"time": 0.75, "x": 7.78, "y": -11.23} ] }, "leg-front-right-IK": { "translate": [ - {"time": 0.0167}, {"time": 0.2333, "x": -21.51, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "x": 6.83, "y": 84.78}, - {"time": 0.3833, "x": -2.72, "y": 58.18, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.45} + {"x": -13.57, "y": 17.19, "curve": 0.645, "c2": 0.47, "c4": 0.81}, {"time": 0.0167, "curve": 0.313, "c3": 0.699}, {"time": 0.2667, "x": 52.85, "curve": 0, "c2": 0.3, "c3": 0.544}, + {"time": 0.5, "x": -85.89, "y": 125.19}, {"time": 0.6, "x": -87.57, "y": 110.89, "curve": 0.142, "c3": 0.858, "c4": 0.77}, {"time": 0.75, "x": -13.57, "y": 17.19} ] }, - "leg-front-left-IK": { + "@leg-back-left": { "translate": [ - {"time": 0.2333, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "x": 12.33, "y": 29.93}, {"time": 0.3833, "x": 13.61, "y": 28.01, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.45} - ] + {"x": -4.73, "y": 6.6, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.15, "x": 1.29, "y": -4.22, "curve": 0.44, "c2": 0.55, "c3": 0.858}, + {"time": 0.25, "x": 2.16, "y": 6.49, "curve": 0, "c2": 0.09, "c3": 0.466, "c4": 0.7}, {"time": 0.3, "x": -5.17, "y": 15.67, "curve": 0.218, "c2": 0.39, "c3": 0.738}, + {"time": 0.5333, "x": -14.09, "y": -7.98, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.6667, "x": -12.69, "y": -11.31, "curve": 0.315, "c4": 0.8}, {"time": 0.75, "x": -4.73, "y": 6.6} + ], + "scale": [{"curve": 0, "c2": 0.1, "c3": 0.457, "c4": 0.54}, {"time": 0.0667, "x": 0.837, "curve": 0.395, "c2": 0.49, "c3": 0.868}, {"time": 0.15}] }, - "@body3": { + "@pivot-back": { "rotate": [ - {"angle": -8.78, "curve": 0.362, "c2": 0.35, "c3": 0.696, "c4": 0.7}, {"time": 0.0333, "angle": -4.84, "curve": 0.395, "c2": 0.58, "c3": 0.731}, - {"time": 0.0833, "curve": 0.25, "c3": 0.75}, {"time": 0.25, "angle": -18.31, "curve": 0.25, "c3": 0.75}, {"time": 0.3333, "angle": -3.77, "curve": 0.144, "c3": 0.557}, - {"time": 0.5, "angle": -14, "curve": 0.38, "c3": 0.717, "c4": 0.5}, {"time": 0.5833, "angle": -8.78} + {"angle": 3.74, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "angle": 1.5, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.25, "angle": -2, "curve": 0, "c2": 0.1, "c3": 0.85}, + {"time": 0.35, "angle": -5, "curve": 0.154, "c4": 0.9}, {"time": 0.6667, "angle": 5, "curve": 0.154, "c4": 0.9}, {"time": 0.75, "angle": 3.74} ], "translate": [ - {"x": 8.87, "y": -6.56, "curve": 0.378, "c2": 0.61, "c3": 0.713, "c4": 0.99}, {"time": 0.0333, "curve": "stepped"}, {"time": 0.2833, "curve": 0.144, "c3": 0.557}, - {"time": 0.45, "x": 45.36, "y": -33.56, "curve": 0.42, "c3": 0.765, "c4": 0.71}, {"time": 0.5833, "x": 8.87, "y": -6.56} + {"y": 8, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "y": -10, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.25, "curve": 0, "c2": 0.1, "c3": 0.85}, + {"time": 0.5667, "y": 80.61, "curve": 0.154, "c4": 0.9}, {"time": 0.75, "y": 8} ] }, - "@body4": { + "@pivot-main": {"scale": [{"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1333, "y": 0.85, "curve": 0.306, "c4": 0.8}, {"time": 0.25}]}, + "ear-right": { "rotate": [ - {"angle": 4.92, "curve": 0.395, "c2": 0.58, "c3": 0.731}, {"time": 0.05, "curve": 0.25, "c3": 0.75}, {"time": 0.2167, "angle": -18.31, "curve": 0.25, "c3": 0.75}, - {"time": 0.3, "angle": -15.35, "curve": 0.144, "c3": 0.557}, {"time": 0.4667, "angle": 14.26, "curve": 0.405, "c3": 0.747, "c4": 0.63}, {"time": 0.5833, "angle": 4.92} - ], - "translate": [ - {"curve": 0.25, "c3": 0.75}, {"time": 0.25, "x": -1.59, "y": 23.93, "curve": 0.144, "c3": 0.557}, {"time": 0.4167, "x": 6.55, "y": -29.78, "curve": 0.455, "c3": 0.807}, {"time": 0.5833} + {"angle": 6.45, "curve": 0.306, "c3": 0.695}, {"time": 0.25, "angle": -6.15, "curve": 0.306, "c3": 0.695}, {"time": 0.5, "angle": -7.47, "curve": 0.306, "c3": 0.695}, + {"time": 0.75, "angle": 6.45} ] }, - "@body6": { + "ear-left": { "rotate": [ - {"angle": 24.05, "curve": 0.408, "c2": 0.24, "c3": 0.748, "c4": 0.76}, {"time": 0.1, "angle": 5.04, "curve": 0.378, "c2": 0.61, "c3": 0.713, "c4": 0.99}, - {"time": 0.1333, "curve": 0.25, "c3": 0.75}, {"time": 0.3, "angle": -18.31, "curve": 0.25, "c3": 0.75}, {"time": 0.3833, "angle": -5.24, "curve": 0.144, "c3": 0.557}, - {"time": 0.55, "angle": 25.77, "curve": 0.35, "c2": 0.01, "c3": 0.684, "c4": 0.39}, {"time": 0.5833, "angle": 24.05} - ], - "translate": [ - {"x": -53.54, "y": 27.04, "curve": 0.43, "c2": 0.44, "c3": 0.772}, {"time": 0.1, "curve": 0.25, "c3": 0.75}, {"time": 0.35, "x": 5.81, "y": -4.07, "curve": 0.144, "c3": 0.557}, - {"time": 0.5167, "x": -70.52, "y": 35.61, "curve": 0.369, "c3": 0.705, "c4": 0.46}, {"time": 0.5833, "x": -53.54, "y": 27.04} + {"angle": 6.45, "curve": 0.306, "c3": 0.695}, {"time": 0.25, "angle": -6.15, "curve": 0.306, "c3": 0.695}, {"time": 0.5, "angle": -7.47, "curve": 0.306, "c3": 0.695}, + {"time": 0.75, "angle": 6.45} ] }, - "body-braid2": { - "rotate": [ - {"curve": 0.289, "c2": 0.15, "c3": 0.609, "c4": 0.52}, {"time": 0.1667, "angle": -13.49, "curve": 0.303, "c2": 0.3, "c3": 0.633, "c4": 0.64}, - {"time": 0.25, "angle": 11.59, "curve": 0.144, "c3": 0.254}, {"time": 0.4167, "angle": 20.83, "curve": 0.455, "c3": 0.807}, {"time": 0.5833} + "back": {"rotate": [{"curve": 0.306, "c3": 0.695}, {"time": 0.25, "angle": 9.32, "curve": 0.306, "c3": 0.695}, {"time": 0.5, "angle": -5.11, "curve": 0.306, "c3": 0.695}, {"time": 0.75}]} + } + }, + "237238075": { + "slots": {"leg-front-left": {"attachment": [{"time": 0.2, "name": "summer-leg-front-left-stretch"}, {"time": 0.6667, "name": "summer-leg-front-left"}]}}, + "bones": { + "@pivot-back": { + "translate": [ + {"y": 8, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "y": -10, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.25, "curve": 0, "c2": 0.1, "c3": 0.85}, + {"time": 0.5833, "y": 80.61, "curve": 0.154, "c4": 0.9}, {"time": 0.75, "y": 8} ] }, - "body-braid4": { - "rotate": [ - {"angle": 17.5, "curve": 0.42, "c2": 0.5, "c3": 0.76}, {"time": 0.0833, "curve": 0.25, "c3": 0.75}, {"time": 0.25, "angle": -19.78, "curve": 0.303, "c2": 0.3, "c3": 0.633, "c4": 0.64}, - {"time": 0.3333, "angle": 1.48, "curve": 0.144, "c3": 0.254}, {"time": 0.5, "angle": 27.46, "curve": 0.38, "c3": 0.717, "c4": 0.5}, {"time": 0.5833, "angle": 17.5} + "@leg-front-left": { + "translate": [ + {"x": -14.55, "y": -2.39, "curve": 0.374, "c2": 0.33, "c3": 0.72, "c4": 0.68}, {"time": 0.0333, "x": -24.61, "y": -1.31, "curve": "stepped"}, + {"time": 0.1667, "x": -24.61, "y": -1.31, "curve": 0.37, "c2": 0.57, "c3": 0.746}, {"time": 0.3333, "x": 13.45, "y": -27.72, "curve": 0.345, "c2": 0.53, "c3": 0.751}, + {"time": 0.4833, "x": 40.66, "y": -4.9, "curve": 0.255, "c3": 0.673, "c4": 0.49}, {"time": 0.5833, "x": 39.16, "y": 14.5, "curve": 0.565, "c2": 0.41, "c4": 0.82}, + {"time": 0.6667, "x": 1.05, "y": 16.15, "curve": 0.255, "c3": 0.659, "c4": 0.47}, {"time": 0.75, "x": -14.55, "y": -2.39} + ], + "scale": [ + {"x": 0.969, "curve": 0.459, "c2": 0.59, "c3": 0.838}, {"time": 0.0333, "x": 0.961, "curve": 0.154, "c4": 0.9}, {"time": 0.1667, "x": 1.075, "curve": 0, "c2": 0.1, "c3": 0.85}, + {"time": 0.3333, "curve": "stepped"}, {"time": 0.6667, "curve": 0, "c2": 0.09, "c3": 0.589, "c4": 0.67}, {"time": 0.75, "x": 0.969} ] }, - "body-braid3": { - "rotate": [ - {"angle": 6.5, "curve": 0.378, "c2": 0.61, "c3": 0.713, "c4": 0.99}, {"time": 0.0333, "curve": 0.25, "c3": 0.75}, - {"time": 0.2, "angle": -17.77, "curve": 0.303, "c2": 0.3, "c3": 0.633, "c4": 0.64}, {"time": 0.2833, "angle": 4.71, "curve": 0.144, "c3": 0.254}, - {"time": 0.45, "angle": 33.27, "curve": 0.42, "c3": 0.765, "c4": 0.71}, {"time": 0.5833, "angle": 6.5} + "leg-front-left-IK": { + "translate": [ + {"x": 4.88, "y": 20.49, "curve": 0.416, "c2": 0.51, "c3": 0.865}, {"time": 0.0833, "x": 28.75, "y": 34.52, "curve": 0.269, "c2": 0.57, "c3": 0.577}, + {"time": 0.1667, "x": 31.44, "y": 44.28, "curve": 0.461, "c3": 0.543}, {"time": 0.4167, "x": -85.44, "y": 106.83}, + {"time": 0.5167, "x": -87.18, "y": 81.5, "curve": 0.143, "c3": 0.57, "c4": 0.46}, {"time": 0.6667, "x": -21.75, "y": 25.36, "curve": 0, "c2": 0.09, "c3": 0.479, "c4": 0.56}, + {"time": 0.75, "x": 4.88, "y": 20.49} ] }, - "@body2": { - "rotate": [ - {"angle": -3.66, "curve": 0.378, "c2": 0.61, "c3": 0.713, "c4": 0.99}, {"time": 0.0333, "curve": 0.25, "c3": 0.75}, {"time": 0.2, "angle": -18.31, "curve": 0.25, "c3": 0.75}, - {"time": 0.2833, "angle": 7.45, "curve": 0.144, "c3": 0.557}, {"time": 0.45, "angle": -18.73, "curve": 0.42, "c3": 0.765, "c4": 0.71}, {"time": 0.5833, "angle": -3.66} - ], + "leg-back-left-IK": { "translate": [ - {"curve": 0.25, "c3": 0.75}, {"time": 0.25, "x": -0.08, "y": 1.15, "curve": 0.144, "c3": 0.557}, {"time": 0.4167, "x": 4.59, "y": -41.28, "curve": 0.455, "c3": 0.807}, {"time": 0.5833} + {"x": 17.64, "y": 16.11, "curve": 0.455, "c2": 0.58, "c3": 0.847}, {"time": 0.0333, "curve": 0, "c2": 0.1, "c3": 0.85}, + {"time": 0.2333, "x": -50.37, "curve": 0, "c2": 0.09, "c3": 0.466, "c4": 0.7}, {"time": 0.3, "x": 11.38, "y": 18.2, "curve": 0.177, "c2": 0.44, "c3": 0.617}, + {"time": 0.5333, "x": 56.74, "y": 103.8, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.6667, "x": 71.93, "y": 112.16, "curve": 0.139, "c3": 0.671, "c4": 0.58}, + {"time": 0.75, "x": 17.64, "y": 16.11} ] }, - "body-braid6": { - "rotate": [ - {"angle": 1.2, "curve": 0.232, "c2": 0.57, "c3": 0.548}, {"time": 0.1167, "curve": 0.25, "c3": 0.75}, - {"time": 0.2833, "angle": -12.6, "curve": 0.303, "c2": 0.3, "c3": 0.633, "c4": 0.64}, {"time": 0.3667, "angle": 13.01, "curve": 0.222, "c3": 0.41, "c4": 0.59}, - {"time": 0.5833, "angle": 1.2} + "@shadow": { + "scale": [ + {"curve": 0.313, "c3": 0.699}, {"time": 0.25, "x": 0.94, "y": 0.94, "curve": 0.313, "c3": 0.699}, {"time": 0.4333, "x": 0.8, "y": 0.8, "curve": 0.315, "c4": 0.8}, {"time": 0.75} ] }, - "body-braid5": { - "rotate": [ - {"angle": 12.44, "curve": 0.395, "c2": 0.58, "c3": 0.731}, {"time": 0.05, "curve": 0.25, "c3": 0.75}, - {"time": 0.2167, "angle": -17.13, "curve": 0.303, "c2": 0.3, "c3": 0.633, "c4": 0.64}, {"time": 0.3, "angle": 5.74, "curve": 0.144, "c3": 0.254}, - {"time": 0.4667, "angle": 36.02, "curve": 0.405, "c3": 0.747, "c4": 0.63}, {"time": 0.5833, "angle": 12.44} + "@pivot-main": {"scale": [{"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "y": 0.98, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.25}]}, + "@leg-front-right": { + "translate": [ + {"x": -0.64, "y": -13.16, "curve": 0.313, "c3": 0.654, "c4": 0.45}, {"time": 0.1167, "x": -9.39, "y": -16.39, "curve": 0.346, "c2": 0.44, "c3": 0.699}, + {"time": 0.3, "x": -26.29, "y": 12.52, "curve": 0, "c2": 0.18, "c3": 0.424, "c4": 0.59}, {"time": 0.4167, "x": 7.42, "y": -10.53, "curve": 0.316, "c2": 0.49, "c3": 0.751}, + {"time": 0.5833, "x": 37.87, "y": -4.31, "curve": 0.315, "c4": 0.8}, {"time": 0.75, "x": -0.64, "y": -13.16} ] }, - "body-braid": { - "rotate": [ - {"angle": 1.53, "curve": 0.358, "c2": 0.63, "c3": 0.692, "c4": 0.99}, {"time": 0.0167, "curve": 0.25, "c3": 0.75}, - {"time": 0.1833, "angle": -14.27, "curve": 0.303, "c2": 0.3, "c3": 0.633, "c4": 0.64}, {"time": 0.2667, "angle": 10.34, "curve": 0.144, "c3": 0.254}, - {"time": 0.4333, "angle": 22.42, "curve": 0.436, "c3": 0.785, "c4": 0.83}, {"time": 0.5833, "angle": 1.53} + "@leg-back-left": { + "translate": [ + {"x": -4.73, "y": 6.6, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.15, "x": 1.29, "y": -4.22, "curve": 0.44, "c2": 0.55, "c3": 0.858}, + {"time": 0.25, "x": 2.16, "y": 6.49, "curve": 0, "c2": 0.09, "c3": 0.466, "c4": 0.7}, {"time": 0.3, "x": -5.17, "y": 15.67, "curve": 0.218, "c2": 0.39, "c3": 0.738}, + {"time": 0.5333, "x": -14.09, "y": -7.98, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.6667, "x": -12.69, "y": -11.31, "curve": 0.139, "c3": 0.671, "c4": 0.58}, + {"time": 0.75, "x": -4.73, "y": 6.6} + ], + "scale": [{"curve": 0, "c2": 0.1, "c3": 0.457, "c4": 0.54}, {"time": 0.0667, "x": 0.837, "curve": 0.395, "c2": 0.49, "c3": 0.868}, {"time": 0.15}] + }, + "leg-front-right-IK": { + "translate": [ + {"curve": 0.313, "c3": 0.699}, {"time": 0.25, "x": 52.85, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.4833, "x": -85.89, "y": 125.19}, + {"time": 0.5833, "x": -87.57, "y": 110.89, "curve": 0.154, "c4": 0.9}, {"time": 0.75} ] } } }, - "2469511866": { + "1384528274": { "slots": { - "eyes": {"attachment": [{"time": 0.05, "name": "eyes-angry"}, {"time": 0.7, "name": "eyes"}]}, - "mouth": {"attachment": [{"time": 0.05, "name": "mouth-bite"}, {"time": 0.2833, "name": "mouth-open"}, {"time": 0.4667, "name": "mouth-bite"}, {"time": 0.7, "name": "mouth"}]} + "eyes": {"attachment": [{"time": 1, "name": "eyes-shut"}, {"time": 1.0833, "name": "eyes"}]}, + "eyes-glow": {"attachment": [{"time": 0.3333, "name": "eyes-glow"}, {"time": 0.5833, "name": null}]}, + "horn": {"attachment": [{"time": 0.5833, "name": "horn-blink"}, {"time": 0.8333, "name": "horn"}]}, + "mouth": {"attachment": [{"time": 0.0833, "name": "mouth-blink"}, {"time": 0.3333, "name": "mouth"}]} }, "bones": { "@pivot-back": { "rotate": [ - {"curve": 0, "c2": 0.4, "c3": 0.383}, {"time": 0.15, "angle": 4, "curve": 0, "c2": 0.2, "c3": 0.851}, {"time": 0.2833, "angle": 7}, - {"time": 0.4167, "angle": 7.5, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5, "angle": 4, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.5833, "angle": 6, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.75} + {"curve": 0.313, "c3": 0.699}, {"time": 0.3333, "angle": 2.04, "curve": 0.313, "c3": 0.699}, {"time": 0.6667, "curve": 0.313, "c3": 0.699}, + {"time": 1, "angle": 1.79, "curve": 0.313, "c3": 0.699}, {"time": 1.3333} ], "translate": [ - {"curve": 0, "c2": 0.4, "c3": 0.383}, {"time": 0.25, "x": 25, "curve": 1, "c2": -0.1, "c4": 0}, {"time": 0.2833, "x": -136, "y": 25.56}, - {"time": 0.4167, "x": -153.19, "y": 25.56, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5, "x": -176.94, "curve": "stepped"}, - {"time": 0.5833, "x": -176.94, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.75} + {"curve": 0.313, "c3": 0.699}, {"time": 0.3333, "y": -6.53, "curve": 0.313, "c3": 0.699}, {"time": 0.6667, "curve": 0.313, "c3": 0.699}, + {"time": 1, "y": -8.86, "curve": 0.313, "c3": 0.699}, {"time": 1.3333} + ], + "scale": [{"curve": 0.313, "c3": 0.699}, {"time": 0.6667, "y": 0.99, "curve": 0.313, "c3": 0.699}, {"time": 1.3333}] + }, + "@leg-front-right": { + "translate": [ + {"curve": 0.313, "c3": 0.699}, {"time": 0.3333, "x": 0.02, "y": -16.89, "curve": 0.313, "c3": 0.699}, {"time": 0.6667, "x": -0.04, "y": 2.46, "curve": 0.313, "c3": 0.699}, + {"time": 1, "x": -0.02, "y": -18.9, "curve": 0.313, "c3": 0.699}, {"time": 1.3333} ] }, - "@pivot-main": {"translate": [{"time": 0.5833, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.6667, "y": 45.22, "curve": 0.315, "c4": 0.8}, {"time": 0.75}]}, "@leg-front-left": { "translate": [ - {"curve": 0, "c2": 0.4, "c3": 0.383}, {"time": 0.25, "x": -0.37, "y": -3.19, "curve": "stepped"}, - {"time": 0.5833, "x": -0.37, "y": -3.19, "curve": 0, "c2": 0.17, "c3": 0.45, "c4": 0.61}, {"time": 0.65, "x": -0.39, "y": 5.91, "curve": 0.345, "c2": 0.53, "c3": 0.751}, {"time": 0.75} + {"curve": 0.313, "c3": 0.699}, {"time": 0.3333, "x": 0.22, "y": -5.13, "curve": 0.313, "c3": 0.699}, {"time": 0.6667, "x": -0.03, "y": 1.81, "curve": 0.313, "c3": 0.699}, + {"time": 1, "x": 0.2, "y": -7.06, "curve": 0.313, "c3": 0.699}, {"time": 1.3333} + ], + "scale": [ + {"curve": 0.313, "c3": 0.699}, {"time": 0.3333, "x": 0.905, "curve": 0.313, "c3": 0.699}, {"time": 0.6667, "curve": 0.313, "c3": 0.699}, + {"time": 1, "x": 0.905, "curve": 0.313, "c3": 0.699}, {"time": 1.3333} ] }, - "@leg-front-right": { + "@leg-back-left": { "translate": [ - {"curve": 0.617, "c4": 0.6}, {"time": 0.25, "x": -5.35, "y": -53.74}, {"time": 0.5833, "x": -2.3, "y": -22.53, "curve": 0, "c2": 0.17, "c3": 0.45, "c4": 0.61}, - {"time": 0.65, "x": -0.83, "y": 1.57, "curve": 0.345, "c2": 0.53, "c3": 0.751}, {"time": 0.75} + {"curve": 0.313, "c3": 0.699}, {"time": 0.3333, "x": 0.22, "y": -4.11, "curve": 0.313, "c3": 0.699}, {"time": 0.6667, "x": -0.03, "y": 1.69, "curve": 0.313, "c3": 0.699}, + {"time": 1, "x": 0.2, "y": -5.68, "curve": 0.313, "c3": 0.699}, {"time": 1.3333} + ], + "scale": [ + {"curve": 0.313, "c3": 0.699}, {"time": 0.3333, "x": 0.943, "curve": 0.313, "c3": 0.699}, {"time": 0.6667, "curve": 0.313, "c3": 0.699}, + {"time": 1, "x": 0.943, "curve": 0.313, "c3": 0.699}, {"time": 1.3333} ] }, - "leg-front-left-IK": { + "@pivot-main": { + "scale": [ + {"curve": 0.313, "c3": 0.699}, {"time": 0.3333, "y": 0.98, "curve": 0.313, "c3": 0.699}, {"time": 0.6667, "curve": 0.313, "c3": 0.699}, + {"time": 1, "y": 0.98, "curve": 0.313, "c3": 0.699}, {"time": 1.3333} + ] + }, + "tail": { + "rotate": [{"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "angle": 4.54, "curve": 0.313, "c3": 0.699}, {"time": 1, "angle": -9.06, "curve": 0.313, "c3": 0.699}, {"time": 1.3333}] + }, + "back": { + "rotate": [{"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "angle": -4.27, "curve": 0.313, "c3": 0.699}, {"time": 1, "angle": 2.83, "curve": 0.313, "c3": 0.699}, {"time": 1.3333}] + }, + "ear-right": {"rotate": [{"curve": 0.461, "c3": 0.543}, {"time": 0.6667, "angle": -4, "curve": 0.461, "c3": 0.543}, {"time": 1.3333}]}, + "ear-left": {"rotate": [{"curve": 0.461, "c3": 0.543}, {"time": 0.6667, "angle": -4, "curve": 0.461, "c3": 0.543}, {"time": 1.3333}]}, + "@shadow": { + "scale": [ + {"curve": 0.306, "c3": 0.695}, {"time": 0.3333, "x": 1.05, "y": 1.05, "curve": 0.306, "c3": 0.695}, {"time": 0.6667, "curve": 0.306, "c3": 0.695}, + {"time": 1, "x": 1.05, "y": 1.05, "curve": 0.306, "c3": 0.695}, {"time": 1.3333} + ] + } + } + }, + "4155096617": { + "slots": { + "eyes": {"attachment": [{"time": 0.1, "name": "eyes-shut"}, {"time": 1, "name": "eyes"}]}, + "leg-back-left": {"attachment": [{"time": 0.0667, "name": "xmas-leg-back-left-long"}, {"time": 0.9, "name": "xmas-leg-back-left"}]} + }, + "bones": { + "@pivot-back": { + "rotate": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "angle": -18, "curve": 0.317, "c3": 0.693}, {"time": 0.3333, "angle": -17, "curve": 0.317, "c3": 0.693}, + {"time": 0.5, "angle": -18, "curve": 0.317, "c3": 0.693}, {"time": 0.6667, "angle": -17, "curve": 0.317, "c3": 0.693}, {"time": 0.8333, "angle": -18, "curve": 0.317, "c3": 0.693}, + {"time": 1.0833} + ], "translate": [ - {"curve": 0.462, "c3": 0.543}, {"time": 0.25, "x": 61.73, "curve": 0.702, "c4": 0.2}, {"time": 0.2833, "x": -43.29, "y": 59.07}, - {"time": 0.4167, "x": -61.19, "y": 52.81, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5, "x": -191.61, "curve": "stepped"}, - {"time": 0.5833, "x": -191.61, "curve": 0, "c2": 0.17, "c3": 0.45, "c4": 0.61}, {"time": 0.65, "x": -105.91, "y": -2.82, "curve": 0.345, "c2": 0.53, "c3": 0.751}, {"time": 0.75} + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": 33.94, "y": -52, "curve": "stepped"}, {"time": 0.8333, "x": 33.94, "y": -52, "curve": 0.317, "c3": 0.693}, {"time": 1.0833} ] }, - "leg-front-right-IK": { + "@leg-front-left": { "translate": [ - {"curve": 0.617, "c4": 0.6}, {"time": 0.25, "x": 73.82, "curve": 0.702, "c4": 0.2}, {"time": 0.2833, "x": -27.95, "y": 28.32}, - {"time": 0.4167, "x": -40.48, "y": 34.59, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5, "x": -191.61, "curve": "stepped"}, - {"time": 0.5833, "x": -191.61, "curve": 0, "c2": 0.17, "c3": 0.45, "c4": 0.61}, {"time": 0.65, "x": -103, "y": 4.15, "curve": 0.345, "c2": 0.53, "c3": 0.751}, {"time": 0.75} + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": -27.99, "y": 1.7, "curve": 0.25, "c3": 0.75}, {"time": 0.3333, "x": -26.93, "y": -1.56, "curve": 0.25, "c3": 0.75}, + {"time": 0.5, "x": -27.99, "y": 1.7, "curve": 0.25, "c3": 0.75}, {"time": 0.6667, "x": -26.93, "y": -1.56, "curve": 0.25, "c3": 0.75}, + {"time": 0.8333, "x": -27.99, "y": 1.7, "curve": 0.317, "c3": 0.693}, {"time": 1.0833} ] }, - "leg-back-left-IK": { + "@leg-front-right": { "translate": [ - {"curve": 0.306, "c3": 0.695}, {"time": 0.25, "x": 44.44, "curve": 0.25, "c4": 0.2}, {"time": 0.2833, "x": -70.51, "y": 98.54}, - {"time": 0.4167, "x": -70.51, "y": 101.95, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5, "x": -197.17, "curve": "stepped"}, - {"time": 0.5833, "x": -197.17, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.75} + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": -84.32, "y": 39.72, "curve": 0.317, "c3": 0.693}, {"time": 0.3333, "x": -82.71, "y": 34.75, "curve": 0.317, "c3": 0.693}, + {"time": 0.5, "x": -84.32, "y": 39.72, "curve": 0.317, "c3": 0.693}, {"time": 0.6667, "x": -82.71, "y": 34.75, "curve": 0.317, "c3": 0.693}, + {"time": 0.8333, "x": -84.32, "y": 39.72, "curve": 0.317, "c3": 0.693}, {"time": 1.0833} ] }, - "@pivot-center": { - "rotate": [ - {"time": 0.25, "curve": 0.779, "c4": 0.3}, {"time": 0.2833, "angle": 10.18, "curve": "stepped"}, {"time": 0.4167, "angle": 10.18, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5} + "leg-front-right-IK": { + "translate": [{"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": 40.32, "curve": "stepped"}, {"time": 0.8333, "x": 40.32, "curve": 0.317, "c3": 0.693}, {"time": 1.0833}] + }, + "leg-front-left-IK": { + "translate": [{"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": 26.51, "curve": "stepped"}, {"time": 0.8333, "x": 26.51, "curve": 0.317, "c3": 0.693}, {"time": 1.0833}] + }, + "leg-back-left-IK": { + "translate": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": -30.93, "y": 88.63, "curve": 0.617, "c4": 0.6}, {"time": 0.2667, "x": -62.81, "y": 72.23, "curve": 0, "c2": 0.4, "c3": 0.383}, + {"time": 0.35, "x": -28.19, "y": 96.83, "curve": 0.617, "c4": 0.6}, {"time": 0.45, "x": -62.81, "y": 72.23, "curve": 0, "c2": 0.4, "c3": 0.383}, + {"time": 0.55, "x": -28.19, "y": 96.83, "curve": 0.617, "c4": 0.6}, {"time": 0.6333, "x": -62.81, "y": 72.23, "curve": 0, "c2": 0.4, "c3": 0.383}, + {"time": 0.7333, "x": -28.19, "y": 96.83, "curve": 0.434, "c3": 0.739, "c4": 0.4}, {"time": 0.8333, "x": -56.92, "y": 76.7, "curve": 0.223, "c2": 0.33, "c3": 0.336}, {"time": 1.0833} ] }, "tail": { "rotate": [ - {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.25, "angle": 21.98, "curve": 0.851, "c4": 0.1}, {"time": 0.2833, "angle": -15.58}, - {"time": 0.4167, "angle": -20.71, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5, "angle": 19.93, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.5833, "angle": 23.12, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.6667, "angle": -14.25, "curve": 0.313, "c3": 0.699}, {"time": 0.75} + {"curve": 0, "c2": 0.3, "c3": 0.546}, {"time": 0.1667, "angle": 25.35, "curve": 0.317, "c3": 0.693}, {"time": 0.3333, "angle": 33.35, "curve": 0.317, "c3": 0.693}, + {"time": 0.5, "angle": 25.35, "curve": 0.317, "c3": 0.693}, {"time": 0.6667, "angle": 33.35, "curve": 0.317, "c3": 0.693}, + {"time": 0.9167, "angle": 25.35, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 1.0833} ] }, "@shadow": { - "translate": [ - {"time": 0.25, "curve": 0.851, "c4": 0.1}, {"time": 0.2833, "x": -143.36}, {"time": 0.4167, "x": -160.77, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.5, "x": -186.16, "curve": "stepped"}, {"time": 0.5833, "x": -186.16, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.75} - ], + "translate": [{"curve": 0, "c2": 0.3, "c3": 0.546}, {"time": 0.1667, "x": 32.73, "curve": "stepped"}, {"time": 0.8333, "x": 32.73, "curve": 0.317, "c3": 0.693}, {"time": 1.0833}], "scale": [ - {"curve": 0, "c2": 0.4, "c3": 0.383}, {"time": 0.25, "x": 1.08, "y": 1.08, "curve": "stepped"}, {"time": 0.5, "x": 1.08, "y": 1.08, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.5833, "x": 1.12, "y": 1.12, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.6667, "x": 0.94, "y": 0.94, "curve": 0.315, "c4": 0.8}, {"time": 0.75} + {"time": 0.1667, "curve": 0.317, "c3": 0.693}, {"time": 0.25, "x": 1.02, "y": 1.02, "curve": 0.317, "c3": 0.693}, {"time": 0.3333, "curve": 0.317, "c3": 0.693}, + {"time": 0.4167, "x": 1.02, "y": 1.02, "curve": 0.317, "c3": 0.693}, {"time": 0.5, "curve": 0.317, "c3": 0.693}, {"time": 0.5833, "x": 1.02, "y": 1.02, "curve": 0.317, "c3": 0.693}, + {"time": 0.6667, "curve": 0.317, "c3": 0.693}, {"time": 0.8333, "x": 1.02, "y": 1.02, "curve": 0.317, "c3": 0.693}, {"time": 1.0833} + ] + } + } + }, + "4036940331": { + "slots": { + "eyes": {"attachment": [{"name": "eyes-shut"}, {"time": 0.2167, "name": "eyes"}]}, "mouth": {"attachment": [{"time": 0.0333, "name": "mouth-open"}, {"time": 0.2333, "name": "mouth"}]} + }, + "bones": { + "@pivot-back": { + "rotate": [{"angle": -8.23, "curve": "stepped"}, {"time": 0.2333, "angle": -8.23, "curve": 0, "c2": 0.1, "c3": 0.847}, {"time": 0.4167}], + "translate": [{"x": 0.02, "y": -108.13, "curve": 0, "c2": 0.4, "c3": 0.533}, {"time": 0.1667, "x": 17.97, "y": 94.25, "curve": 0.315, "c4": 0.8}, {"time": 0.4167, "y": -0.04}] + }, + "@leg-back-left": {"rotate": [{"angle": 14.26, "curve": "stepped"}, {"time": 0.2333, "angle": 14.26, "curve": 0, "c2": 0.1, "c3": 0.847}, {"time": 0.4167, "angle": -11.75}]}, + "@leg-front-left": {"rotate": [{"angle": 14.58, "curve": "stepped"}, {"time": 0.2333, "angle": 14.58, "curve": 0, "c2": 0.1, "c3": 0.847}, {"time": 0.4167, "angle": 20.14}]}, + "@leg-front-right": {"rotate": [{"angle": 12.31, "curve": "stepped"}, {"time": 0.2333, "angle": 12.31, "curve": 0, "c2": 0.1, "c3": 0.847}, {"time": 0.4167, "angle": -30.3}]}, + "tail": { + "rotate": [ + {"angle": -18.5, "curve": "stepped"}, {"time": 0.1167, "angle": -18.5, "curve": 0, "c2": 0.1, "c3": 0.844}, {"time": 0.2667, "angle": 4.16, "curve": 0.309, "c4": 0.8}, {"time": 0.4167} ] }, + "@shadow": {"scale": [{"x": 1.3, "y": 1.3, "curve": 0, "c2": 0.4, "c3": 0.533}, {"time": 0.1667, "x": 0.9, "y": 0.9, "curve": 0.315, "c4": 0.8}, {"time": 0.4167}]}, "@body3": { "rotate": [ - {"angle": -0.16, "curve": 0.36, "c2": 0.64, "c3": 0.695}, {"time": 0.0167, "curve": 0.25, "c3": 0.75}, {"time": 0.2667, "angle": -3.77, "curve": 0.25, "c3": 0.75}, - {"time": 0.4333, "angle": -14, "curve": 0.25, "c3": 0.75}, {"time": 0.6, "angle": -3.77, "curve": 0.245, "c3": 0.711, "c4": 0.83}, {"time": 0.75, "angle": -0.16} + {"angle": -7.84, "curve": 0.381, "c2": 0.54, "c3": 0.744}, {"time": 0.0833, "angle": -3.77, "curve": 0.25, "c3": 0.75}, + {"time": 0.3, "angle": -14, "curve": 0.246, "c3": 0.635, "c4": 0.55}, {"time": 0.4167, "angle": -7.75} ], - "translate": [{"time": 0.25, "curve": 0.25, "c3": 0.75}, {"time": 0.4167, "x": 45.36, "y": -33.56, "curve": 0.25, "c3": 0.75}, {"time": 0.5833}] + "translate": [{"curve": 0.25, "c3": 0.75}, {"time": 0.2167, "x": 34.51, "y": -19.31, "curve": 0.25, "c3": 0.75}, {"time": 0.4167}] }, "@body4": { "rotate": [ - {"angle": -9.7, "curve": 0.33, "c2": 0.32, "c3": 0.665, "c4": 0.66}, {"time": 0.0167, "angle": -7.67, "curve": 0.375, "c2": 0.5, "c3": 0.75}, {"time": 0.1, "curve": 0.25, "c3": 0.75}, - {"time": 0.35, "angle": -15.35, "curve": 0.25, "c3": 0.75}, {"time": 0.5167, "angle": 14.26, "curve": 0.25, "c3": 0.75}, - {"time": 0.6833, "angle": -15.35, "curve": 0.258, "c3": 0.619, "c4": 0.45}, {"time": 0.75, "angle": -9.7} + {"angle": -10.59, "curve": 0.329, "c2": 0.32, "c3": 0.758}, {"time": 0.1667, "angle": 14.26, "curve": 0.242, "c3": 0.667, "c4": 0.67}, + {"time": 0.3167, "angle": -9.89, "curve": 0.379, "c2": 0.6, "c3": 0.724}, {"time": 0.3667, "angle": -15.35, "curve": 0.279, "c3": 0.622, "c4": 0.39}, {"time": 0.4167, "angle": -10.5} ], "translate": [ - {"x": -0.07, "y": 1.02, "curve": 0.36, "c2": 0.64, "c3": 0.695}, {"time": 0.0167, "curve": 0.25, "c3": 0.75}, {"time": 0.2667, "x": -1.59, "y": 23.93, "curve": 0.25, "c3": 0.75}, - {"time": 0.4333, "x": 6.55, "y": -29.78, "curve": 0.25, "c3": 0.75}, {"time": 0.6, "x": -1.59, "y": 23.93, "curve": 0.245, "c3": 0.711, "c4": 0.83}, {"time": 0.75, "x": -0.07, "y": 1.02} + {"x": 10.26, "y": 1.87, "curve": 0.371, "c2": 0.48, "c3": 0.752}, {"time": 0.1167, "x": 24.8, "y": -25.19, "curve": 0.25, "c3": 0.75}, + {"time": 0.3167, "x": -1.59, "y": 23.93, "curve": 0.253, "c3": 0.622, "c4": 0.48}, {"time": 0.4167, "x": 10.26, "y": 1.87} ] }, "@body6": { "rotate": [ - {"angle": -2.59, "curve": 0.347, "c2": 0.38, "c3": 0.694, "c4": 0.76}, {"time": 0.05, "angle": -0.68, "curve": 0.375, "c2": 0.62, "c3": 0.716}, - {"time": 0.0833, "curve": 0.25, "c3": 0.75}, {"time": 0.3333, "angle": -5.24, "curve": 0.25, "c3": 0.75}, {"time": 0.5, "angle": 25.77, "curve": 0.25, "c3": 0.75}, - {"time": 0.6667, "angle": -5.24, "curve": 0.25, "c3": 0.625, "c4": 0.5}, {"time": 0.75, "angle": -2.59} + {"angle": 5.45, "curve": 0.353, "c2": 0.4, "c3": 0.696, "c4": 0.77}, {"time": 0.05, "angle": -2.53, "curve": 0.371, "c2": 0.62, "c3": 0.71}, + {"time": 0.0833, "angle": -5.24, "curve": 0.25, "c3": 0.75}, {"time": 0.3, "angle": 22.83, "curve": 0.246, "c3": 0.635, "c4": 0.55}, {"time": 0.4167, "angle": 5.53} ], "translate": [ - {"x": 1.41, "y": -0.99, "curve": 0.382, "c2": 0.58, "c3": 0.731}, {"time": 0.05, "curve": 0.25, "c3": 0.75}, {"time": 0.3, "x": 5.81, "y": -4.07, "curve": 0.25, "c3": 0.75}, - {"time": 0.4667, "x": -70.52, "y": 35.61, "curve": 0.25, "c3": 0.75}, {"time": 0.6333, "x": 5.81, "y": -4.07, "curve": 0.243, "c3": 0.655, "c4": 0.63}, - {"time": 0.75, "x": 1.41, "y": -0.99} - ] - }, - "body-braid2": { - "rotate": [ - {"angle": -0.19, "curve": 0.32, "c2": 0.29, "c3": 0.757}, {"time": 0.2, "angle": -1.43, "curve": 0.25, "c3": 0.75}, {"time": 0.3667, "angle": 20.83, "curve": 0.25, "c3": 0.75}, - {"time": 0.5333, "angle": -1.43, "curve": 0.25, "c3": 0.75}, {"time": 0.7, "curve": 0.284, "c3": 0.625, "c4": 0.38}, {"time": 0.75, "angle": -0.19} + {"x": -8.27, "y": 3.25, "curve": 0.379, "c2": 0.6, "c3": 0.724}, {"time": 0.05, "x": 5.81, "y": -4.07, "curve": 0.25, "c3": 0.75}, + {"time": 0.2667, "x": -70.52, "y": 35.61, "curve": 0.242, "c3": 0.667, "c4": 0.67}, {"time": 0.4167, "x": -8.27, "y": 3.25} ] }, + "body-braid2": {"rotate": [{"angle": -1.43, "curve": 0.25, "c3": 0.75}, {"time": 0.2167, "angle": 20.83, "curve": 0.25, "c3": 0.75}, {"time": 0.4167, "angle": -1.43}]}, "body-braid4": { "rotate": [ - {"angle": -7.35, "curve": 0.363, "c2": 0.44, "c3": 0.755}, {"time": 0.1, "curve": 0.25, "c3": 0.75}, {"time": 0.35, "angle": -11.53, "curve": 0.25, "c3": 0.75}, - {"time": 0.5167, "angle": 27.46, "curve": 0.25, "c3": 0.75}, {"time": 0.6833, "angle": -11.53, "curve": 0.305, "c3": 0.64, "c4": 0.36}, - {"time": 0.7, "angle": -11.04, "curve": 0.289, "c2": 0.17, "c3": 0.637, "c4": 0.56}, {"time": 0.75, "angle": -7.35} + {"angle": 16.39, "curve": 0.351, "c2": 0.4, "c3": 0.757}, {"time": 0.1333, "angle": -11.53, "curve": 0.25, "c3": 0.75}, + {"time": 0.35, "angle": 27.46, "curve": 0.265, "c3": 0.618, "c4": 0.43}, {"time": 0.4167, "angle": 16.39} ] }, "body-braid3": { "rotate": [ - {"angle": -0.33, "curve": 0.36, "c2": 0.64, "c3": 0.695}, {"time": 0.0167, "curve": 0.25, "c3": 0.75}, {"time": 0.2667, "angle": -8.3, "curve": 0.25, "c3": 0.75}, - {"time": 0.4333, "angle": 33.27, "curve": 0.25, "c3": 0.75}, {"time": 0.6, "angle": -8.3, "curve": 0.245, "c3": 0.637, "c4": 0.56}, - {"time": 0.7, "angle": -3.05, "curve": 0.363, "c2": 0.44, "c3": 0.711, "c4": 0.83}, {"time": 0.75, "angle": -0.33} + {"angle": -0.64, "curve": 0.379, "c2": 0.6, "c3": 0.724}, {"time": 0.05, "angle": -8.3, "curve": 0.25, "c3": 0.75}, + {"time": 0.2667, "angle": 33.27, "curve": 0.242, "c3": 0.667, "c4": 0.67}, {"time": 0.4167, "angle": -0.64} ] }, "@body2": { "rotate": [ - {"angle": 3.71, "curve": 0.339, "c2": 0.35, "c3": 0.679, "c4": 0.7}, {"time": 0.0333, "angle": 1.81, "curve": 0.382, "c2": 0.58, "c3": 0.731}, - {"time": 0.0833, "curve": 0.25, "c3": 0.75}, {"time": 0.3333, "angle": 7.45, "curve": 0.25, "c3": 0.75}, {"time": 0.5, "angle": -18.73, "curve": 0.25, "c3": 0.75}, - {"time": 0.6667, "angle": 7.45, "curve": 0.25, "c3": 0.625, "c4": 0.5}, {"time": 0.75, "angle": 3.71} + {"angle": -6.39, "curve": 0.371, "c2": 0.62, "c3": 0.71}, {"time": 0.0333, "angle": 7.45, "curve": 0.25, "c3": 0.75}, + {"time": 0.25, "angle": -28.57, "curve": 0.243, "c3": 0.689, "c4": 0.75}, {"time": 0.4167, "angle": -6.39} ], - "translate": [ - {"x": -0.01, "y": 0.15, "curve": 0.375, "c2": 0.62, "c3": 0.716}, {"time": 0.0333, "curve": 0.25, "c3": 0.75}, {"time": 0.2833, "x": -0.08, "y": 1.15, "curve": 0.25, "c3": 0.75}, - {"time": 0.45, "x": 4.59, "y": -41.28, "curve": 0.25, "c3": 0.75}, {"time": 0.6167, "x": -0.08, "y": 1.15, "curve": 0.243, "c3": 0.68, "c4": 0.71}, {"time": 0.75, "x": -0.01, "y": 0.15} - ] + "translate": [{"x": -13.57, "y": -11.06, "curve": 0.25, "c3": 0.75}, {"time": 0.2167, "x": -14.84, "y": -12.21, "curve": 0.25, "c3": 0.75}, {"time": 0.4167, "x": -13.57, "y": -11.06}] }, "body-braid6": { "rotate": [ - {"angle": -19.32, "curve": 0.289, "c2": 0.17, "c3": 0.755}, {"time": 0.15, "curve": 0.25, "c3": 0.75}, {"time": 0.4, "angle": -20.17, "curve": 0.25, "c3": 0.75}, - {"time": 0.5667, "angle": 18.35, "curve": 0.243, "c3": 0.68, "c4": 0.71}, {"time": 0.7, "angle": -15.16, "curve": 0.375, "c2": 0.62, "c3": 0.716}, - {"time": 0.7333, "angle": -20.17, "curve": 0.305, "c3": 0.64, "c4": 0.36}, {"time": 0.75, "angle": -19.32} + {"angle": 17.23, "curve": 0.283, "c2": 0.14, "c3": 0.754}, {"time": 0.1833, "angle": -20.17, "curve": 0.25, "c3": 0.75}, + {"time": 0.4, "angle": 18.35, "curve": 0.309, "c3": 0.644, "c4": 0.35}, {"time": 0.4167, "angle": 17.23} ] }, "body-braid5": { "rotate": [ - {"angle": -1.77, "curve": 0.382, "c2": 0.58, "c3": 0.731}, {"time": 0.05, "curve": 0.25, "c3": 0.75}, {"time": 0.3, "angle": -7.27, "curve": 0.25, "c3": 0.75}, - {"time": 0.4667, "angle": 36.02, "curve": 0.25, "c3": 0.75}, {"time": 0.6333, "angle": -7.27, "curve": 0.258, "c3": 0.619, "c4": 0.45}, - {"time": 0.7, "angle": -4.6, "curve": 0.333, "c2": 0.33, "c3": 0.68, "c4": 0.71}, {"time": 0.75, "angle": -1.77} + {"angle": 14.38, "curve": 0.375, "c2": 0.5, "c3": 0.75}, {"time": 0.1, "angle": -7.27, "curve": 0.25, "c3": 0.75}, + {"time": 0.3167, "angle": 36.02, "curve": 0.25, "c3": 0.625, "c4": 0.5}, {"time": 0.4167, "angle": 14.38} ] }, "body-braid": { "rotate": [ - {"angle": -0.06, "curve": 0.277, "c2": 0.12, "c3": 0.754}, {"time": 0.2333, "angle": -2.68, "curve": 0.25, "c3": 0.75}, {"time": 0.4, "angle": 22.42, "curve": 0.25, "c3": 0.75}, - {"time": 0.5667, "angle": -2.68, "curve": 0.243, "c3": 0.68, "c4": 0.71}, {"time": 0.7, "angle": -0.35, "curve": 0.375, "c2": 0.62, "c3": 0.716}, - {"time": 0.7333, "curve": 0.313, "c3": 0.648, "c4": 0.35}, {"time": 0.75, "angle": -0.06} + {"angle": -0.26, "curve": 0.371, "c2": 0.62, "c3": 0.71}, {"time": 0.0333, "angle": -2.68, "curve": 0.25, "c3": 0.75}, + {"time": 0.25, "angle": 22.42, "curve": 0.243, "c3": 0.689, "c4": 0.75}, {"time": 0.4167, "angle": -0.26} ] } - }, - "events": [{"time": 0.2167, "name": "start-attack"}, {"time": 0.4167, "name": "hit"}] + } }, - "2815381870": { - "slots": { - "eyes": {"attachment": [{"time": 0.1333, "name": "eyes-angry"}, {"time": 0.6667, "name": "eyes"}]}, - "mouth": {"attachment": [{"time": 0.1333, "name": "mouth-bite"}, {"time": 0.2667, "name": "mouth-open"}, {"time": 0.4167, "name": "mouth-bite"}, {"time": 0.6667, "name": "mouth"}]} - }, + "1257499719": { + "slots": {"eyes": {"attachment": [{"name": "eyes-shut"}]}}, "bones": { "@pivot-back": { - "rotate": [ - {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "angle": -3.92, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "angle": 2.51, "curve": 0, "c2": 0.3, "c3": 0.544}, - {"time": 0.35, "angle": -4.74, "curve": 0.7, "c4": 0.3}, {"time": 0.4167, "angle": 2}, {"time": 0.5833, "angle": 4, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.75} - ], - "translate": [ - {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 71.93, "y": -12.95, "curve": "stepped"}, {"time": 0.25, "x": 71.93, "y": -12.95, "curve": 0, "c2": 0.3, "c3": 0.544}, - {"time": 0.4167, "x": -144.49, "y": -12.95, "curve": "stepped"}, {"time": 0.5833, "x": -144.49, "y": -12.95, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.75} - ] - }, - "leg-back-left-IK": { - "translate": [ - {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.1333, "x": 80.9, "curve": 0.161, "c3": 0.854}, {"time": 0.25, "x": 49.4}, - {"time": 0.3333, "x": -52.84, "y": 44.64, "curve": 0.315, "c4": 0.8}, {"time": 0.4167, "x": -131.67, "curve": "stepped"}, {"time": 0.5833, "x": -131.67}, {"time": 0.75} - ] - }, - "leg-front-right-IK": { "translate": [ - {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 30.89, "y": 11.74, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "x": 42.9, "curve": 0, "c2": 0.3, "c3": 0.544}, - {"time": 0.3667, "x": -61.28, "y": 38.08, "curve": 0.161, "c4": 0.85}, {"time": 0.4167, "x": -153.64, "curve": "stepped"}, {"time": 0.5833, "x": -153.64, "curve": 0.154, "c4": 0.9}, - {"time": 0.7, "x": 13.43, "curve": 0.161, "c3": 0.854}, {"time": 0.75} - ] - }, - "leg-front-left-IK": { - "translate": [ - {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 65.04, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "x": 75.35, "curve": 0, "c2": 0.3, "c3": 0.544}, - {"time": 0.3667, "x": -62.49, "y": 8.75, "curve": 0.161, "c4": 0.85}, {"time": 0.4167, "x": -141.78, "curve": "stepped"}, {"time": 0.5833, "x": -141.78, "curve": 0.159, "c4": 0.9}, - {"time": 0.7, "x": 13.43, "curve": 0.161, "c3": 0.854}, {"time": 0.75} + {"y": 0.06, "curve": 0.387, "c3": 0.314}, {"time": 0.2167, "y": -17.94, "curve": 0.387, "c3": 0.314}, {"time": 0.45, "y": 0.06, "curve": 0.387, "c3": 0.314}, + {"time": 0.6667, "y": -17.94, "curve": 0.387, "c3": 0.314}, {"time": 0.9, "y": 0.06, "curve": 0.387, "c3": 0.314}, {"time": 1.1167, "y": -17.94, "curve": 0.387, "c3": 0.314}, + {"time": 1.3333, "y": 0.06} + ], + "scale": [ + {"curve": 0.387, "c3": 0.314}, {"time": 0.2167, "y": 0.98, "curve": 0.387, "c3": 0.314}, {"time": 0.45, "curve": 0.387, "c3": 0.314}, + {"time": 0.6667, "y": 0.98, "curve": 0.387, "c3": 0.314}, {"time": 0.9, "curve": 0.387, "c3": 0.314}, {"time": 1.1167, "y": 0.98, "curve": 0.387, "c3": 0.314}, {"time": 1.3333} ] }, "@leg-front-left": { - "translate": [ - {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": -0.15, "y": 1.81, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.25, "x": -0.94, "y": -15.09, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.4167, "x": -18.05, "y": -7.89, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.5833, "x": -15.37, "y": -13.49, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.75} + "rotate": [ + {"curve": 0, "c2": 0.1, "c3": 0.843}, {"time": 0.1167, "angle": -12.07, "curve": 0.161, "c3": 0.854}, {"time": 0.2167, "angle": -2.63}, + {"time": 0.3333, "angle": 7.79, "curve": 0.079, "c4": 0.95}, {"time": 0.45, "curve": 0, "c2": 0.1, "c3": 0.843}, {"time": 0.55, "angle": -12.07, "curve": 0.161, "c3": 0.854}, + {"time": 0.6667, "angle": -2.63}, {"time": 0.7667, "angle": 7.79, "curve": 0.079, "c4": 0.95}, {"time": 0.8833, "curve": 0, "c2": 0.1, "c3": 0.843}, + {"time": 1, "angle": -12.07, "curve": 0.161, "c3": 0.854}, {"time": 1.1, "angle": -2.63}, {"time": 1.2167, "angle": 7.79, "curve": 0.079, "c4": 0.95}, {"time": 1.3333} ] }, "@leg-front-right": { - "translate": [ - {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 4.31, "y": 11.86, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.25, "x": -10.19, "y": -4.67, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.4167, "x": -10.43, "y": -17.77, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.5833, "x": -11.41, "y": -27.57, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.75} - ] - }, - "@pivot-main": { - "translate": [ - {"time": 0.25, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "y": 26.43, "curve": 0.315, "c4": 0.8}, {"time": 0.4167, "curve": "stepped"}, - {"time": 0.5833, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.6667, "y": 26.43, "curve": 0.315, "c4": 0.8}, {"time": 0.75} + "rotate": [ + {"curve": 0, "c2": 0.1, "c3": 0.843}, {"time": 0.1167, "angle": -12.07, "curve": 0.161, "c3": 0.854}, {"time": 0.2167, "angle": -2.63}, + {"time": 0.3333, "angle": 7.79, "curve": 0.079, "c4": 0.95}, {"time": 0.45, "curve": 0, "c2": 0.1, "c3": 0.843}, {"time": 0.55, "angle": -12.07, "curve": 0.161, "c3": 0.854}, + {"time": 0.6667, "angle": -2.63}, {"time": 0.7667, "angle": 7.79, "curve": 0.079, "c4": 0.95}, {"time": 0.8833, "curve": 0, "c2": 0.1, "c3": 0.843}, + {"time": 1, "angle": -12.07, "curve": 0.161, "c3": 0.854}, {"time": 1.1, "angle": -2.63}, {"time": 1.2167, "angle": 7.79, "curve": 0.079, "c4": 0.95}, {"time": 1.3333} ] }, "@leg-back-left": { - "translate": [ - {"time": 0.0833, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "x": -0.35, "y": -13.05, "curve": "stepped"}, {"time": 0.3333, "x": -0.35, "y": -13.05}, - {"time": 0.5833, "x": -0.47, "y": -16.1, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.75} + "rotate": [ + {"curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.1167, "angle": 8.89, "curve": 0.161, "c3": 0.854}, {"time": 0.2167, "angle": 0.78}, + {"time": 0.3333, "angle": -7.35, "curve": 0.079, "c4": 0.95}, {"time": 0.45, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.55, "angle": 8.89, "curve": 0.161, "c3": 0.854}, + {"time": 0.6667, "angle": 0.78}, {"time": 0.7667, "angle": -7.35, "curve": 0.079, "c4": 0.95}, {"time": 0.8833, "curve": 0, "c2": 0.1, "c3": 0.85}, + {"time": 1, "angle": 8.89, "curve": 0.161, "c3": 0.854}, {"time": 1.1, "angle": 0.78}, {"time": 1.2167, "angle": -7.35, "curve": 0.079, "c4": 0.95}, {"time": 1.3333} ] }, "tail": { "rotate": [ - {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "angle": 12.92, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "angle": 18.48, "curve": 0, "c2": 0.3, "c3": 0.544}, - {"time": 0.35, "angle": -6.88, "curve": 0.7, "c4": 0.3}, {"time": 0.4167, "angle": 14}, {"time": 0.5833, "angle": 19.37, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.6833, "angle": -8.78, "curve": 0.313, "c3": 0.699}, {"time": 0.75} + {"curve": 0, "c2": 0.05, "c3": 0.658}, {"time": 0.3333, "angle": -10.75, "curve": 0.304, "c3": 0.689}, {"time": 0.7333, "angle": 3.03}, + {"time": 1.05, "angle": 5.39, "curve": 0.234, "c4": 0.9}, {"time": 1.3333} ] }, "@shadow": { - "translate": [ - {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 61.96, "curve": "stepped"}, {"time": 0.25, "x": 61.96, "curve": 0, "c2": 0.3, "c3": 0.544}, - {"time": 0.35, "x": -121.98, "curve": 0.7, "c4": 0.3}, {"time": 0.4167, "x": -154.28, "curve": "stepped"}, {"time": 0.5833, "x": -154.28, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.75} - ], "scale": [ - {"time": 0.0833, "curve": 0, "c2": 0.26, "c3": 0.369, "c4": 0.62}, {"time": 0.25, "x": 1.06, "y": 1.06, "curve": 0.192, "c2": 0.45, "c3": 0.623}, - {"time": 0.35, "x": 0.96, "y": 0.96, "curve": 0.7, "c4": 0.3}, {"time": 0.4167, "x": 1.08, "y": 1.08, "curve": "stepped"}, - {"time": 0.5833, "x": 1.08, "y": 1.08, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.75} + {"curve": 0.387, "c3": 0.314}, {"time": 0.2167, "x": 1.1, "y": 1.1, "curve": 0.387, "c3": 0.314}, {"time": 0.45, "curve": 0.387, "c3": 0.314}, + {"time": 0.6667, "x": 1.1, "y": 1.1, "curve": 0.387, "c3": 0.314}, {"time": 0.9, "curve": 0.387, "c3": 0.314}, {"time": 1.1167, "x": 1.1, "y": 1.1, "curve": 0.387, "c3": 0.314}, + {"time": 1.3333} ] }, "@body3": { "rotate": [ - {"angle": -0.48, "curve": 0.351, "c2": 0.42, "c3": 0.686, "c4": 0.76}, {"time": 0.0167, "angle": -0.16, "curve": 0.36, "c2": 0.64, "c3": 0.695}, - {"time": 0.0333, "curve": 0.25, "c3": 0.75}, {"time": 0.2833, "angle": -3.77, "curve": 0.25, "c3": 0.75}, {"time": 0.45, "angle": -14, "curve": 0.25, "c3": 0.75}, - {"time": 0.6167, "angle": -3.77, "curve": 0.243, "c3": 0.68, "c4": 0.71}, {"time": 0.75, "angle": -0.48} + {"angle": -6.36, "curve": 0.349, "c2": 0.39, "c3": 0.706, "c4": 0.8}, {"time": 0.0833, "angle": -12.79, "curve": 0.369, "c2": 0.63, "c3": 0.707}, + {"time": 0.1167, "angle": -14, "curve": 0.25, "c3": 0.75}, {"time": 0.3333, "curve": 0.25, "c3": 0.75}, {"time": 0.5667, "angle": -14.35, "curve": 0.25, "c3": 0.75}, + {"time": 0.7833, "curve": 0.25, "c3": 0.75}, {"time": 1.0167, "angle": -15.03, "curve": 0.25, "c3": 0.75}, {"time": 1.2333, "curve": 0.253, "c3": 0.622, "c4": 0.48}, + {"time": 1.3333, "angle": -6.36} ], - "translate": [{"time": 0.2667, "curve": 0.25, "c3": 0.75}, {"time": 0.4333, "x": 45.36, "y": -33.56, "curve": 0.25, "c3": 0.75}, {"time": 0.6}] + "translate": [ + {"x": 22.51, "y": -12.59, "curve": 0.382, "c2": 0.55, "c3": 0.741}, {"time": 0.0833, "x": 34.51, "y": -19.31, "curve": 0.25, "c3": 0.75}, {"time": 0.3, "curve": 0.25, "c3": 0.75}, + {"time": 0.5333, "x": 34.51, "y": -19.31, "curve": 0.25, "c3": 0.75}, {"time": 0.75, "curve": 0.25, "c3": 0.75}, {"time": 0.9833, "x": 41.66, "y": -18.14, "curve": 0.25, "c3": 0.75}, + {"time": 1.2, "curve": 0.245, "c3": 0.64, "c4": 0.57}, {"time": 1.3333, "x": 22.51, "y": -12.59} + ] }, "@body4": { "rotate": [ - {"angle": -11.62, "curve": 0.32, "c2": 0.29, "c3": 0.667, "c4": 0.67}, {"time": 0.05, "angle": -5.65, "curve": 0.381, "c2": 0.55, "c3": 0.742}, - {"time": 0.1167, "curve": 0.25, "c3": 0.75}, {"time": 0.3667, "angle": -15.35, "curve": 0.25, "c3": 0.75}, {"time": 0.5333, "angle": 14.26, "curve": 0.25, "c3": 0.75}, - {"time": 0.7, "angle": -15.35, "curve": 0.269, "c3": 0.618, "c4": 0.42}, {"time": 0.75, "angle": -11.62} + {"angle": 4.43, "curve": 0.334, "c2": 0.34, "c3": 0.671, "c4": 0.68}, {"time": 0.0333, "angle": 6.41, "curve": 0.382, "c2": 0.55, "c3": 0.741}, + {"time": 0.1167, "angle": 9.83, "curve": 0.25, "c3": 0.75}, {"time": 0.3333, "curve": 0.25, "c3": 0.75}, {"time": 0.5667, "angle": 7.58, "curve": 0.25, "c3": 0.75}, + {"time": 0.7833, "curve": 0.25, "c3": 0.75}, {"time": 1.0167, "angle": 9.83, "curve": 0.25, "c3": 0.75}, {"time": 1.2333, "curve": 0.253, "c3": 0.622, "c4": 0.48}, + {"time": 1.3333, "angle": 4.43} ], "translate": [ - {"x": -0.38, "y": 5.8, "curve": 0.382, "c2": 0.58, "c3": 0.731}, {"time": 0.05, "curve": 0.25, "c3": 0.75}, {"time": 0.3, "x": -1.59, "y": 23.93, "curve": 0.25, "c3": 0.75}, - {"time": 0.4667, "x": 6.55, "y": -29.78, "curve": 0.25, "c3": 0.75}, {"time": 0.6333, "x": -1.59, "y": 23.93, "curve": 0.243, "c3": 0.655, "c4": 0.63}, - {"time": 0.75, "x": -0.38, "y": 5.8} + {"x": 29.25, "y": -8.29, "curve": 0.369, "c2": 0.63, "c3": 0.707}, {"time": 0.0333, "x": 32.23, "y": -9.74, "curve": 0.25, "c3": 0.75}, {"time": 0.25, "curve": 0.25, "c3": 0.75}, + {"time": 0.4833, "x": 46.53, "y": -7.39, "curve": 0.25, "c3": 0.75}, {"time": 0.7, "x": 2.58, "y": 6.67, "curve": 0.25, "c3": 0.75}, + {"time": 0.9333, "x": 23.08, "y": -13.68, "curve": 0.25, "c3": 0.75}, {"time": 1.15, "x": -2.39, "y": 7.1, "curve": 0.244, "c3": 0.693, "c4": 0.76}, + {"time": 1.3333, "x": 29.25, "y": -8.29} ] }, "@body6": { "rotate": [ - {"angle": -3.96, "curve": 0.321, "c2": 0.3, "c3": 0.679, "c4": 0.7}, {"time": 0.0667, "angle": -1.27, "curve": 0.382, "c2": 0.58, "c3": 0.731}, - {"time": 0.1167, "curve": 0.25, "c3": 0.75}, {"time": 0.3667, "angle": -5.24, "curve": 0.25, "c3": 0.75}, {"time": 0.5333, "angle": 25.77, "curve": 0.25, "c3": 0.75}, - {"time": 0.7, "angle": -5.24, "curve": 0.269, "c3": 0.618, "c4": 0.42}, {"time": 0.75, "angle": -3.96} + {"angle": 8.58, "curve": 0.346, "c2": 0.37, "c3": 0.687, "c4": 0.73}, {"time": 0.05, "angle": 12.94, "curve": 0.378, "c2": 0.61, "c3": 0.721}, + {"time": 0.1, "angle": 15.47, "curve": 0.25, "c3": 0.75}, {"time": 0.3167, "curve": 0.25, "c3": 0.75}, {"time": 0.55, "angle": 15.47, "curve": 0.25, "c3": 0.75}, + {"time": 0.7667, "curve": 0.25, "c3": 0.75}, {"time": 1, "angle": 15.47, "curve": 0.25, "c3": 0.75}, {"time": 1.2167, "curve": 0.248, "c3": 0.629, "c4": 0.52}, + {"time": 1.3333, "angle": 8.58} ], "translate": [ - {"x": 2.14, "y": -1.5, "curve": 0.381, "c2": 0.55, "c3": 0.742}, {"time": 0.0667, "curve": 0.25, "c3": 0.75}, {"time": 0.3167, "x": 5.81, "y": -4.07, "curve": 0.25, "c3": 0.75}, - {"time": 0.4833, "x": -70.52, "y": 35.61, "curve": 0.25, "c3": 0.75}, {"time": 0.65, "x": 5.81, "y": -4.07, "curve": 0.245, "c3": 0.637, "c4": 0.56}, {"time": 0.75, "x": 2.14, "y": -1.5} + {"x": -14.27, "y": -0.95, "curve": 0.378, "c2": 0.61, "c3": 0.721}, {"time": 0.05, "x": -17.06, "y": -1.14, "curve": 0.25, "c3": 0.75}, {"time": 0.2667, "curve": 0.25, "c3": 0.75}, + {"time": 0.5, "x": -17.06, "y": -1.14, "curve": 0.25, "c3": 0.75}, {"time": 0.7167, "curve": 0.25, "c3": 0.75}, {"time": 0.95, "x": -17.06, "y": -1.14, "curve": 0.25, "c3": 0.75}, + {"time": 1.1667, "curve": 0.242, "c3": 0.671, "c4": 0.68}, {"time": 1.3333, "x": -14.27, "y": -0.95} ] }, "body-braid2": { "rotate": [ - {"curve": 0.25, "c3": 0.75}, {"time": 0.25, "angle": -1.43, "curve": 0.25, "c3": 0.75}, {"time": 0.4167, "angle": 20.83, "curve": 0.25, "c3": 0.75}, - {"time": 0.5833, "angle": -1.43, "curve": 0.25, "c3": 0.75}, {"time": 0.75} + {"angle": 9.33, "curve": 0.25, "c3": 0.75}, {"time": 0.2167, "curve": 0.25, "c3": 0.75}, {"time": 0.45, "angle": 11.55, "curve": 0.25, "c3": 0.75}, + {"time": 0.6667, "curve": 0.25, "c3": 0.75}, {"time": 0.9, "angle": 9.33, "curve": 0.25, "c3": 0.75}, {"time": 1.1167, "curve": 0.25, "c3": 0.75}, {"time": 1.3333, "angle": 9.33} ] }, "body-braid4": { "rotate": [ - {"angle": -5.76, "curve": 0.375, "c2": 0.5, "c3": 0.75}, {"time": 0.0833, "curve": 0.25, "c3": 0.75}, {"time": 0.3333, "angle": -11.53, "curve": 0.25, "c3": 0.75}, - {"time": 0.5, "angle": 27.46, "curve": 0.25, "c3": 0.75}, {"time": 0.6667, "angle": -11.53, "curve": 0.25, "c3": 0.625, "c4": 0.5}, {"time": 0.75, "angle": -5.76} + {"angle": 2.83, "curve": 0.346, "c2": 0.38, "c3": 0.757}, {"time": 0.15, "angle": 11.24, "curve": 0.25, "c3": 0.75}, {"time": 0.3667, "curve": 0.25, "c3": 0.75}, + {"time": 0.6, "angle": 35.73, "curve": 0.25, "c3": 0.75}, {"time": 0.8167, "curve": 0.25, "c3": 0.75}, {"time": 1.05, "angle": 26.06, "curve": 0.25, "c3": 0.75}, + {"time": 1.2667, "curve": 0.268, "c3": 0.618, "c4": 0.42}, {"time": 1.3333, "angle": 2.83} ] }, "body-braid3": { "rotate": [ - {"angle": -1.08, "curve": 0.375, "c2": 0.62, "c3": 0.716}, {"time": 0.0333, "curve": 0.25, "c3": 0.75}, {"time": 0.2833, "angle": -8.3, "curve": 0.25, "c3": 0.75}, - {"time": 0.45, "angle": 33.27, "curve": 0.25, "c3": 0.75}, {"time": 0.6167, "angle": -8.3, "curve": 0.243, "c3": 0.68, "c4": 0.71}, {"time": 0.75, "angle": -1.08} + {"angle": 12.76, "curve": 0.382, "c2": 0.58, "c3": 0.732}, {"time": 0.0667, "angle": 17.05, "curve": 0.25, "c3": 0.75}, {"time": 0.2833, "curve": 0.25, "c3": 0.75}, + {"time": 0.5167, "angle": 28.89, "curve": 0.25, "c3": 0.75}, {"time": 0.7333, "curve": 0.25, "c3": 0.75}, {"time": 0.9667, "angle": 27.36, "curve": 0.25, "c3": 0.75}, + {"time": 1.1833, "curve": 0.243, "c3": 0.654, "c4": 0.62}, {"time": 1.3333, "angle": 12.76} ] }, "@body2": { "rotate": [ - {"angle": 2.71, "curve": 0.349, "c2": 0.39, "c3": 0.689, "c4": 0.74}, {"time": 0.0333, "angle": 0.97, "curve": 0.375, "c2": 0.62, "c3": 0.716}, - {"time": 0.0667, "curve": 0.25, "c3": 0.75}, {"time": 0.3167, "angle": 7.45, "curve": 0.25, "c3": 0.75}, {"time": 0.4833, "angle": -18.73, "curve": 0.25, "c3": 0.75}, - {"time": 0.65, "angle": 7.45, "curve": 0.245, "c3": 0.637, "c4": 0.56}, {"time": 0.75, "angle": 2.71} + {"angle": -0.87, "curve": 0.293, "c2": 0.2, "c3": 0.685, "c4": 0.73}, {"time": 0.1333, "angle": -8.39, "curve": 0.378, "c2": 0.61, "c3": 0.721}, + {"time": 0.1833, "angle": -10.03, "curve": 0.25, "c3": 0.75}, {"time": 0.4, "curve": 0.25, "c3": 0.75}, {"time": 0.6333, "angle": -10.03, "curve": 0.25, "c3": 0.75}, + {"time": 0.85, "curve": 0.25, "c3": 0.75}, {"time": 1.0833, "angle": -10.03, "curve": 0.25, "c3": 0.75}, {"time": 1.3, "curve": 0.293, "c3": 0.631, "c4": 0.37}, + {"time": 1.3333, "angle": -0.87} ], "translate": [ - {"x": -0.01, "y": 0.15, "curve": 0.375, "c2": 0.62, "c3": 0.716}, {"time": 0.0333, "curve": 0.25, "c3": 0.75}, {"time": 0.2833, "x": -0.08, "y": 1.15, "curve": 0.25, "c3": 0.75}, - {"time": 0.45, "x": 4.59, "y": -41.28, "curve": 0.25, "c3": 0.75}, {"time": 0.6167, "x": -0.08, "y": 1.15, "curve": 0.243, "c3": 0.68, "c4": 0.71}, {"time": 0.75, "x": -0.01, "y": 0.15} - ] + {"x": 0.98, "y": 2.41, "curve": 0.36, "c2": 0.43, "c3": 0.755}, {"time": 0.1333, "x": 2.83, "y": 6.92, "curve": 0.25, "c3": 0.75}, {"time": 0.35, "curve": 0.25, "c3": 0.75}, + {"time": 0.5833, "x": 2.83, "y": 6.92, "curve": 0.25, "c3": 0.75}, {"time": 0.8, "curve": 0.25, "c3": 0.75}, {"time": 1.0333, "x": 2.83, "y": 6.92, "curve": 0.25, "c3": 0.75}, + {"time": 1.25, "curve": 0.259, "c3": 0.618, "c4": 0.45}, {"time": 1.3333, "x": 0.98, "y": 2.41} + ] }, "body-braid6": { "rotate": [ - {"angle": -20.17, "curve": 0.25, "c3": 0.75}, {"time": 0.1667, "curve": 0.25, "c3": 0.75}, {"time": 0.4167, "angle": -20.17, "curve": 0.25, "c3": 0.75}, - {"time": 0.5833, "angle": 18.35, "curve": 0.25, "c3": 0.75}, {"time": 0.75, "angle": -20.17} + {"angle": -4.61, "curve": 0.25, "c3": 0.75}, {"time": 0.2167, "angle": 2.13, "curve": 0.25, "c3": 0.75}, {"time": 0.4333, "angle": 9.58, "curve": 0.25, "c3": 0.75}, + {"time": 0.6667, "angle": -2.31, "curve": 0.25, "c3": 0.75}, {"time": 0.8833, "angle": -9.15, "curve": 0.25, "c3": 0.75}, {"time": 1.1167, "angle": 21.18, "curve": 0.25, "c3": 0.75}, + {"time": 1.3333, "angle": -4.61} ] }, "body-braid5": { "rotate": [ - {"angle": -2.68, "curve": 0.381, "c2": 0.55, "c3": 0.742}, {"time": 0.0667, "curve": 0.25, "c3": 0.75}, {"time": 0.3167, "angle": -7.27, "curve": 0.25, "c3": 0.75}, - {"time": 0.4833, "angle": 36.02, "curve": 0.25, "c3": 0.75}, {"time": 0.65, "angle": -7.27, "curve": 0.245, "c3": 0.637, "c4": 0.56}, {"time": 0.75, "angle": -2.68} + {"angle": 12.79, "curve": 0.371, "c2": 0.48, "c3": 0.752}, {"time": 0.1167, "angle": 19.81, "curve": 0.25, "c3": 0.75}, {"time": 0.3333, "angle": 7.07, "curve": 0.25, "c3": 0.75}, + {"time": 0.5667, "angle": 33.01, "curve": 0.25, "c3": 0.75}, {"time": 0.7833, "angle": 7.07, "curve": 0.25, "c3": 0.75}, {"time": 1.0167, "angle": 29.58, "curve": 0.25, "c3": 0.75}, + {"time": 1.2333, "angle": 7.07, "curve": 0.253, "c3": 0.622, "c4": 0.48}, {"time": 1.3333, "angle": 12.79} ] }, "body-braid": { "rotate": [ - {"angle": -0.11, "curve": 0.36, "c2": 0.64, "c3": 0.695}, {"time": 0.0167, "curve": 0.25, "c3": 0.75}, {"time": 0.2667, "angle": -2.68, "curve": 0.25, "c3": 0.75}, - {"time": 0.4333, "angle": 22.42, "curve": 0.25, "c3": 0.75}, {"time": 0.6, "angle": -2.68, "curve": 0.245, "c3": 0.711, "c4": 0.83}, {"time": 0.75, "angle": -0.11} + {"angle": 10.41, "curve": 0.369, "c2": 0.63, "c3": 0.707}, {"time": 0.0333, "angle": 10.92, "curve": 0.25, "c3": 0.75}, {"time": 0.25, "curve": 0.25, "c3": 0.75}, + {"time": 0.4833, "angle": 17.85, "curve": 0.25, "c3": 0.75}, {"time": 0.7, "angle": 7.76, "curve": 0.25, "c3": 0.75}, {"time": 0.9333, "angle": 10.92, "curve": 0.25, "c3": 0.75}, + {"time": 1.15, "angle": 5.09, "curve": 0.244, "c3": 0.693, "c4": 0.76}, {"time": 1.3333, "angle": 10.41} ] } - }, - "events": [{"time": 0.25, "name": "start-attack"}, {"time": 0.4167, "name": "hit"}] + } }, - "1919486595": { + "1577594643": { + "slots": { + "eyes": {"attachment": [{"time": 0.05, "name": "eyes-angry"}, {"time": 0.8833, "name": "eyes"}]}, + "mouth": {"attachment": [{"time": 0.05, "name": "mouth-bite"}, {"time": 0.4667, "name": "mouth-open"}, {"time": 0.8333, "name": "mouth-bite"}, {"time": 0.8833, "name": "mouth"}]} + }, "bones": { - "leg-front-left-IK": { - "translate": [ - {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 3.08, "curve": 0.315, "c4": 0.8}, {"time": 0.15, "x": 13.79, "curve": 0, "c2": 0.3, "c3": 0.544}, - {"time": 0.25, "x": -43.09, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.3333, "x": 26.11, "curve": "stepped"}, {"time": 0.5, "x": 26.11, "curve": 0, "c2": 0.3, "c3": 0.544}, - {"time": 0.5833} - ] - }, "@pivot-back": { "rotate": [ - {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "angle": 5.51, "curve": 0.315, "c4": 0.8}, {"time": 0.2, "angle": -4, "curve": 0.62, "c3": 0.536}, - {"time": 0.5, "angle": 5.83, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5833, "angle": -1.41, "curve": 0.154, "c4": 0.9}, {"time": 0.6667} + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "angle": 4, "curve": 0, "c2": 0.6, "c3": 0.237}, {"time": 0.3333, "angle": -8.88, "curve": 0.621, "c3": 0, "c4": 1.6}, + {"time": 0.6667, "angle": 8.17, "curve": 0.701, "c4": 0.5}, {"time": 0.8833, "angle": 5, "curve": 0.461, "c3": 0.543}, {"time": 1} ], "translate": [ - {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.1167, "x": 13.63, "y": 1.37, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5, "y": -4.7, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.6667} - ] - }, - "@leg-front-right": { - "translate": [ - {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": -1.98, "y": -24.83, "curve": 0.263, "c3": 0.629, "c4": 0.42}, - {"time": 0.1667, "x": -2.18, "y": -3.56, "curve": 0.493, "c2": 0.32, "c4": 0.83}, {"time": 0.3333, "x": -2.18, "y": -2.89, "curve": "stepped"}, - {"time": 0.4833, "x": -2.18, "y": -2.89, "curve": 0, "c2": 0.17, "c3": 0.45, "c4": 0.61}, {"time": 0.5, "x": -1.98, "y": -24.83, "curve": 0, "c2": 0.17, "c3": 0.45, "c4": 0.61}, - {"time": 0.5833, "x": -1.28, "y": 8.38, "curve": 0.345, "c2": 0.53, "c3": 0.751}, {"time": 0.6667} - ] - }, - "tail": { - "rotate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1167, "angle": 11.6, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "angle": -18.66, "curve": 0.313, "c3": 0.699}, - {"time": 0.4667, "angle": 16.43, "curve": 0.315, "c4": 0.8}, {"time": 0.5833, "angle": -6.67, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.6667} - ] - }, - "leg-back-left-IK": { - "translate": [ - {"time": 0.15, "curve": 0.464, "c4": 0.7}, {"time": 0.25, "x": -43.09, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.4, "x": 34.02, "curve": "stepped"}, - {"time": 0.45, "x": 34.02, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.5833} - ] - }, - "@leg-back-left": { - "translate": [ - {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.1333, "x": -0.27, "y": -3.45, "curve": "stepped"}, {"time": 0.5, "x": -0.27, "y": -3.45, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.6667} + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": 33.65, "y": -5, "curve": 0, "c2": 0.6, "c3": 0.237}, + {"time": 0.3333, "x": -62.54, "y": 309.16, "curve": 0.621, "c3": 0, "c4": 1.6}, {"time": 0.6667, "x": 12.32, "y": 268.04, "curve": 0.701, "c4": 0.5}, {"time": 0.8833} ] }, "@leg-front-left": { "translate": [ - {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": -1.04, "y": -13.11, "curve": 0.263, "c3": 0.629, "c4": 0.42}, - {"time": 0.1667, "x": -1.14, "y": -2.73, "curve": 0.493, "c2": 0.32, "c4": 0.83}, {"time": 0.3333, "x": -1.16, "y": -1.14, "curve": "stepped"}, - {"time": 0.4833, "x": -1.16, "y": -1.14, "curve": 0, "c2": 0.17, "c3": 0.45, "c4": 0.61}, {"time": 0.5, "x": -1.04, "y": -13.11, "curve": 0, "c2": 0.17, "c3": 0.45, "c4": 0.61}, - {"time": 0.5833, "x": -0.69, "y": 4.65, "curve": 0.345, "c2": 0.53, "c3": 0.751}, {"time": 0.6667} + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": -0.29, "y": -5.47, "curve": 0, "c2": 0.6, "c3": 0.237}, {"time": 0.3333, "curve": "stepped"}, + {"time": 0.6667, "curve": 0.701, "c4": 0.5}, {"time": 0.8833, "x": -0.95, "y": -14.45, "curve": 0.461, "c3": 0.543}, {"time": 1} ] }, - "leg-front-right-IK": { + "@leg-front-right": { "translate": [ - {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 3.08, "curve": 0.315, "c4": 0.8}, {"time": 0.15, "x": 13.79, "curve": 0, "c2": 0.3, "c3": 0.544}, - {"time": 0.25, "x": -43.09, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.3333, "x": 26.11, "curve": "stepped"}, {"time": 0.5, "x": 26.11, "curve": 0, "c2": 0.3, "c3": 0.544}, - {"time": 0.5833} + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": -0.29, "y": -5.47, "curve": 0, "c2": 0.6, "c3": 0.237}, {"time": 0.3333, "curve": "stepped"}, + {"time": 0.6667, "curve": 0.701, "c4": 0.5}, {"time": 0.8833, "x": -1.66, "y": -25.29, "curve": 0.461, "c3": 0.543}, {"time": 1} ] }, "@shadow": { + "translate": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": 24.43, "curve": 0, "c2": 0.6, "c3": 0.237}, {"time": 0.3333, "x": -70.38, "curve": 0.621, "c3": 0, "c4": 1.4}, + {"time": 0.6667, "x": 5.15, "curve": 0.701, "c4": 0.5}, {"time": 0.8833, "x": -8.95, "curve": 0.461, "c3": 0.543}, {"time": 1} + ], "scale": [ - {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 1.1, "y": 1.1, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "x": 0.8, "y": 0.8, "curve": 0.315, "c4": 0.8}, - {"time": 0.5, "x": 1.1, "y": 1.1, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.6667} + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": 1.08, "y": 1.08, "curve": 0, "c2": 0.6, "c3": 0.237}, + {"time": 0.3333, "x": 0.85, "y": 0.85, "curve": 0.621, "c3": 0, "c4": 1.4}, {"time": 0.6667, "x": 0.9, "y": 0.9, "curve": 0.701, "c4": 0.5}, + {"time": 0.8833, "x": 1.1, "y": 1.1, "curve": 0.461, "c3": 0.543}, {"time": 1} ] }, - "@pivot-main": { - "translate": [{"time": 0.1667, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "y": 133.58, "curve": 0.315, "c4": 0.8}, {"time": 0.5}], - "scale": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "y": 0.97, "curve": 0.315, "c4": 0.8}, {"time": 0.1667, "curve": "stepped"}, {"time": 0.4167, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.5, "y": 0.97, "curve": 0.315, "c4": 0.8}, {"time": 0.5833} + "tail": { + "rotate": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "angle": 17.93, "curve": 0, "c2": 0.6, "c3": 0.237}, {"time": 0.3333, "angle": -15.3, "curve": 0.621, "c3": 0, "c4": 1.4}, + {"time": 0.6667, "angle": 24.81, "curve": 0.701, "c4": 0.5}, {"time": 0.8833, "angle": -15.84, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 1} ] }, "@body3": { "rotate": [ - {"angle": -2.85, "curve": 0.32, "c2": 0.29, "c3": 0.667, "c4": 0.67}, {"time": 0.05, "angle": -1.39, "curve": 0.381, "c2": 0.55, "c3": 0.742}, - {"time": 0.1167, "curve": 0.25, "c3": 0.75}, {"time": 0.2, "angle": -3.77, "curve": 0.25, "c3": 0.75}, {"time": 0.4, "angle": -14, "curve": 0.25, "c3": 0.75}, - {"time": 0.6167, "angle": -3.77, "curve": 0.269, "c3": 0.618, "c4": 0.42}, {"time": 0.6667, "angle": -2.85} + {"angle": -0.6, "curve": 0.36, "c2": 0.64, "c3": 0.695}, {"time": 0.0333, "curve": 0.25, "c3": 0.75}, {"time": 0.2, "angle": -3.77, "curve": 0.25, "c3": 0.75}, + {"time": 0.3667, "angle": -14, "curve": 0.25, "c3": 0.75}, {"time": 0.5333, "angle": -3.77, "curve": 0.25, "c3": 0.75}, + {"time": 0.7, "angle": -14, "curve": 0.245, "c3": 0.711, "c4": 0.83}, {"time": 1, "angle": -0.6} ], - "translate": [{"time": 0.1667, "curve": 0.25, "c3": 0.75}, {"time": 0.3667, "x": 45.36, "y": -33.56, "curve": 0.25, "c3": 0.75}, {"time": 0.5833}] + "translate": [ + {"time": 0.1667, "curve": 0.25, "c3": 0.75}, {"time": 0.3333, "x": 45.36, "y": -33.56, "curve": 0.25, "c3": 0.75}, {"time": 0.5, "curve": 0.25, "c3": 0.75}, + {"time": 0.6667, "x": 45.36, "y": -33.56, "curve": 0.25, "c3": 0.75}, {"time": 1} + ] }, "@body4": { "rotate": [ - {"angle": -3.72, "curve": 0.382, "c2": 0.58, "c3": 0.731}, {"time": 0.05, "curve": 0.25, "c3": 0.75}, {"time": 0.1333, "angle": -15.35, "curve": 0.25, "c3": 0.75}, - {"time": 0.3333, "angle": 14.26, "curve": 0.25, "c3": 0.75}, {"time": 0.55, "angle": -15.35, "curve": 0.243, "c3": 0.655, "c4": 0.63}, {"time": 0.6667, "angle": -3.72} + {"angle": 1.85, "curve": 0.375, "c2": 0.62, "c3": 0.716}, {"time": 0.0667, "curve": 0.25, "c3": 0.75}, {"time": 0.2333, "angle": -15.35, "curve": 0.25, "c3": 0.75}, + {"time": 0.4, "angle": 14.26, "curve": 0.25, "c3": 0.75}, {"time": 0.5667, "angle": -15.35, "curve": 0.25, "c3": 0.75}, + {"time": 0.7333, "angle": 14.26, "curve": 0.243, "c3": 0.68, "c4": 0.71}, {"time": 1, "angle": 1.85} ], "translate": [ - {"x": -0.07, "y": 1.02, "curve": 0.36, "c2": 0.64, "c3": 0.695}, {"time": 0.0167, "curve": 0.25, "c3": 0.75}, {"time": 0.1, "x": -1.59, "y": 23.93, "curve": 0.25, "c3": 0.75}, - {"time": 0.3, "x": 6.55, "y": -29.78, "curve": 0.25, "c3": 0.75}, {"time": 0.5167, "x": -1.59, "y": 23.93, "curve": 0.245, "c3": 0.711, "c4": 0.83}, - {"time": 0.6667, "x": -0.07, "y": 1.02} + {"curve": 0.25, "c3": 0.75}, {"time": 0.1667, "x": -1.59, "y": 23.93, "curve": 0.25, "c3": 0.75}, {"time": 0.3333, "x": 6.55, "y": -29.78, "curve": 0.25, "c3": 0.75}, + {"time": 0.5, "x": -1.59, "y": 23.93, "curve": 0.25, "c3": 0.75}, {"time": 0.6667, "x": 6.55, "y": -29.78, "curve": 0.25, "c3": 0.75}, {"time": 1} ] }, "@body6": { "rotate": [ - {"angle": -3.95, "curve": 0.326, "c2": 0.31, "c3": 0.697, "c4": 0.76}, {"time": 0.0833, "angle": -0.68, "curve": 0.375, "c2": 0.62, "c3": 0.716}, - {"time": 0.1167, "curve": 0.25, "c3": 0.75}, {"time": 0.2, "angle": -5.24, "curve": 0.25, "c3": 0.75}, {"time": 0.4, "angle": 25.77, "curve": 0.25, "c3": 0.75}, - {"time": 0.6167, "angle": -5.24, "curve": 0.269, "c3": 0.618, "c4": 0.42}, {"time": 0.6667, "angle": -3.95} + {"angle": 4.68, "curve": 0.348, "c2": 0.39, "c3": 0.683, "c4": 0.73}, {"time": 0.0333, "angle": 2.14, "curve": 0.369, "c2": 0.63, "c3": 0.706}, + {"time": 0.0833, "curve": 0.25, "c3": 0.75}, {"time": 0.25, "angle": -5.24, "curve": 0.25, "c3": 0.75}, {"time": 0.4167, "angle": 25.77, "curve": 0.25, "c3": 0.75}, + {"time": 0.5833, "angle": -5.24, "curve": 0.25, "c3": 0.75}, {"time": 0.75, "angle": 25.77, "curve": 0.242, "c3": 0.667, "c4": 0.67}, {"time": 1, "angle": 4.68} ], "translate": [ - {"x": 5.81, "y": -4.07, "curve": 0.25, "c3": 0.625, "c4": 0.5}, {"time": 0.0833, "x": 2.9, "y": -2.04, "curve": 0.375, "c2": 0.5, "c3": 0.75}, - {"time": 0.1667, "curve": 0.25, "c3": 0.75}, {"time": 0.25, "x": 5.81, "y": -4.07, "curve": 0.25, "c3": 0.75}, {"time": 0.45, "x": -70.52, "y": 35.61, "curve": 0.25, "c3": 0.75}, - {"time": 0.6667, "x": 5.81, "y": -4.07} + {"x": -3, "y": 1.52, "curve": 0.36, "c2": 0.64, "c3": 0.695}, {"time": 0.0333, "curve": 0.25, "c3": 0.75}, {"time": 0.2, "x": 5.81, "y": -4.07, "curve": 0.25, "c3": 0.75}, + {"time": 0.3667, "x": -70.52, "y": 35.61, "curve": 0.25, "c3": 0.75}, {"time": 0.5333, "x": 5.81, "y": -4.07, "curve": 0.25, "c3": 0.75}, + {"time": 0.7, "x": -70.52, "y": 35.61, "curve": 0.245, "c3": 0.711, "c4": 0.83}, {"time": 1, "x": -3, "y": 1.52} ] }, "body-braid2": { "rotate": [ - {"angle": -0.19, "curve": 0.375, "c2": 0.62, "c3": 0.716}, {"time": 0.0333, "curve": 0.25, "c3": 0.75}, {"time": 0.1167, "angle": -1.43, "curve": 0.25, "c3": 0.75}, - {"time": 0.3167, "angle": 20.83, "curve": 0.25, "c3": 0.75}, {"time": 0.5333, "angle": -1.43, "curve": 0.243, "c3": 0.68, "c4": 0.71}, {"time": 0.6667, "angle": -0.19} + {"angle": 0.89, "curve": 0.36, "c2": 0.64, "c3": 0.695}, {"time": 0.0333, "curve": 0.25, "c3": 0.75}, {"time": 0.2, "angle": -1.43, "curve": 0.25, "c3": 0.75}, + {"time": 0.3667, "angle": 20.83, "curve": 0.25, "c3": 0.75}, {"time": 0.5333, "angle": -1.43, "curve": 0.25, "c3": 0.75}, + {"time": 0.7, "angle": 20.83, "curve": 0.245, "c3": 0.711, "c4": 0.83}, {"time": 1, "angle": 0.89} ] }, "body-braid4": { "rotate": [ - {"angle": -10.05, "curve": 0.311, "c2": 0.26, "c3": 0.651, "c4": 0.61}, {"time": 0.0333, "angle": -7.29, "curve": 0.363, "c2": 0.44, "c3": 0.755}, - {"time": 0.1333, "curve": 0.25, "c3": 0.75}, {"time": 0.2833, "angle": -11.53, "curve": 0.25, "c3": 0.75}, {"time": 0.4833, "angle": 27.46, "curve": 0.25, "c3": 0.75}, - {"time": 0.65, "angle": -11.53, "curve": 0.284, "c3": 0.625, "c4": 0.38}, {"time": 0.6667, "angle": -10.05} + {"angle": 11.92, "curve": 0.379, "c2": 0.52, "c3": 0.747}, {"time": 0.15, "curve": 0.25, "c3": 0.75}, {"time": 0.3167, "angle": -11.53, "curve": 0.25, "c3": 0.75}, + {"time": 0.4833, "angle": 27.46, "curve": 0.25, "c3": 0.75}, {"time": 0.65, "angle": -11.53, "curve": 0.25, "c3": 0.75}, + {"time": 0.8167, "angle": 27.46, "curve": 0.247, "c3": 0.63, "c4": 0.53}, {"time": 1, "angle": 11.92} ] }, "body-braid3": { "rotate": [ - {"angle": -3.02, "curve": 0.349, "c2": 0.39, "c3": 0.689, "c4": 0.74}, {"time": 0.0333, "angle": -1.08, "curve": 0.375, "c2": 0.62, "c3": 0.716}, - {"time": 0.0667, "curve": 0.25, "c3": 0.75}, {"time": 0.15, "angle": -8.3, "curve": 0.25, "c3": 0.75}, {"time": 0.35, "angle": 33.27, "curve": 0.25, "c3": 0.75}, - {"time": 0.5667, "angle": -8.3, "curve": 0.245, "c3": 0.637, "c4": 0.56}, {"time": 0.6667, "angle": -3.02} + {"angle": 6.14, "curve": 0.379, "c2": 0.6, "c3": 0.724}, {"time": 0.0833, "curve": 0.25, "c3": 0.75}, {"time": 0.25, "angle": -8.3, "curve": 0.25, "c3": 0.75}, + {"time": 0.4167, "angle": 33.27, "curve": 0.25, "c3": 0.75}, {"time": 0.5833, "angle": -8.3, "curve": 0.25, "c3": 0.75}, + {"time": 0.75, "angle": 33.27, "curve": 0.242, "c3": 0.667, "c4": 0.67}, {"time": 1, "angle": 6.14} ] }, "@body2": { "rotate": [ - {"angle": 6.48, "curve": 0.306, "c2": 0.24, "c3": 0.694, "c4": 0.76}, {"time": 0.1, "angle": 0.97, "curve": 0.375, "c2": 0.62, "c3": 0.716}, {"time": 0.1333, "curve": 0.25, "c3": 0.75}, - {"time": 0.2167, "angle": 7.45, "curve": 0.25, "c3": 0.75}, {"time": 0.4167, "angle": -18.73, "curve": 0.25, "c3": 0.75}, - {"time": 0.6333, "angle": 7.45, "curve": 0.284, "c3": 0.625, "c4": 0.38}, {"time": 0.6667, "angle": 6.48} + {"angle": -8.07, "curve": 0.344, "c2": 0.37, "c3": 0.684, "c4": 0.72}, {"time": 0.0667, "angle": -3.45, "curve": 0.379, "c2": 0.6, "c3": 0.724}, + {"time": 0.15, "curve": 0.25, "c3": 0.75}, {"time": 0.3167, "angle": 7.45, "curve": 0.25, "c3": 0.75}, {"time": 0.4833, "angle": -18.73, "curve": 0.25, "c3": 0.75}, + {"time": 0.65, "angle": 7.45, "curve": 0.25, "c3": 0.75}, {"time": 0.8167, "angle": -18.73, "curve": 0.247, "c3": 0.63, "c4": 0.53}, {"time": 1, "angle": -8.07} ], "translate": [ - {"x": -0.05, "y": 0.73, "curve": 0.363, "c2": 0.44, "c3": 0.755}, {"time": 0.1, "curve": 0.25, "c3": 0.75}, {"time": 0.1833, "x": -0.08, "y": 1.15, "curve": 0.25, "c3": 0.75}, - {"time": 0.3833, "x": 4.59, "y": -41.28, "curve": 0.25, "c3": 0.75}, {"time": 0.6, "x": -0.08, "y": 1.15, "curve": 0.258, "c3": 0.619, "c4": 0.45}, - {"time": 0.6667, "x": -0.05, "y": 0.73} + {"x": 0.6, "y": -5.37, "curve": 0.375, "c2": 0.62, "c3": 0.716}, {"time": 0.0667, "curve": 0.25, "c3": 0.75}, {"time": 0.2333, "x": -0.08, "y": 1.15, "curve": 0.25, "c3": 0.75}, + {"time": 0.4, "x": 4.59, "y": -41.28, "curve": 0.25, "c3": 0.75}, {"time": 0.5667, "x": -0.08, "y": 1.15, "curve": 0.25, "c3": 0.75}, + {"time": 0.7333, "x": 4.59, "y": -41.28, "curve": 0.243, "c3": 0.68, "c4": 0.71}, {"time": 1, "x": 0.6, "y": -5.37} ] }, "body-braid6": { "rotate": [ - {"angle": -13.87, "curve": 0.378, "c2": 0.61, "c3": 0.721}, {"time": 0.05, "angle": -20.17, "curve": 0.284, "c3": 0.625, "c4": 0.38}, - {"time": 0.0833, "angle": -17.55, "curve": 0.32, "c2": 0.29, "c3": 0.757}, {"time": 0.2167, "curve": 0.25, "c3": 0.75}, {"time": 0.3, "angle": -20.17, "curve": 0.25, "c3": 0.75}, - {"time": 0.5, "angle": 18.35, "curve": 0.242, "c3": 0.671, "c4": 0.68}, {"time": 0.6667, "angle": -13.87} + {"angle": 14.96, "curve": 0.333, "c2": 0.33, "c3": 0.758}, {"time": 0.25, "curve": 0.25, "c3": 0.75}, {"time": 0.4167, "angle": -20.17, "curve": 0.25, "c3": 0.75}, + {"time": 0.5833, "angle": 18.35, "curve": 0.25, "c3": 0.75}, {"time": 0.75, "angle": -20.17, "curve": 0.25, "c3": 0.75}, + {"time": 0.9167, "angle": 18.35, "curve": 0.276, "c3": 0.621, "c4": 0.4}, {"time": 1, "angle": 14.96} ] }, "body-braid5": { "rotate": [ - {"angle": -6.32, "curve": 0.303, "c2": 0.24, "c3": 0.674, "c4": 0.69}, {"time": 0.0833, "angle": -1.76, "curve": 0.382, "c2": 0.58, "c3": 0.731}, - {"time": 0.1333, "curve": 0.25, "c3": 0.75}, {"time": 0.2167, "angle": -7.27, "curve": 0.25, "c3": 0.75}, {"time": 0.4167, "angle": 36.02, "curve": 0.25, "c3": 0.75}, - {"time": 0.6333, "angle": -7.27, "curve": 0.284, "c3": 0.625, "c4": 0.38}, {"time": 0.6667, "angle": -6.32} + {"angle": 10.97, "curve": 0.382, "c2": 0.57, "c3": 0.737}, {"time": 0.1167, "curve": 0.25, "c3": 0.75}, {"time": 0.2833, "angle": -7.27, "curve": 0.25, "c3": 0.75}, + {"time": 0.45, "angle": 36.02, "curve": 0.25, "c3": 0.75}, {"time": 0.6167, "angle": -7.27, "curve": 0.25, "c3": 0.75}, + {"time": 0.7833, "angle": 36.02, "curve": 0.244, "c3": 0.646, "c4": 0.59}, {"time": 1, "angle": 10.97} ] }, "body-braid": { "rotate": [ - {"angle": -1.68, "curve": 0.349, "c2": 0.39, "c3": 0.722, "c4": 0.85}, {"time": 0.0833, "angle": -0.11, "curve": 0.36, "c2": 0.64, "c3": 0.695}, {"time": 0.1, "curve": 0.25, "c3": 0.75}, - {"time": 0.1833, "angle": -2.68, "curve": 0.25, "c3": 0.75}, {"time": 0.3833, "angle": 22.42, "curve": 0.25, "c3": 0.75}, - {"time": 0.6, "angle": -2.68, "curve": 0.258, "c3": 0.619, "c4": 0.45}, {"time": 0.6667, "angle": -1.68} + {"angle": 1.86, "curve": 0.369, "c2": 0.63, "c3": 0.706}, {"time": 0.05, "curve": 0.25, "c3": 0.75}, {"time": 0.2167, "angle": -2.68, "curve": 0.25, "c3": 0.75}, + {"time": 0.3833, "angle": 22.42, "curve": 0.25, "c3": 0.75}, {"time": 0.55, "angle": -2.68, "curve": 0.25, "c3": 0.75}, + {"time": 0.7167, "angle": 22.42, "curve": 0.244, "c3": 0.694, "c4": 0.77}, {"time": 1, "angle": 1.86} ] }, - "@body5": {"rotate": [{"time": 0.1333, "curve": 0.25, "c3": 0.75}, {"time": 0.3333, "angle": 0.5, "curve": 0.25, "c3": 0.75}, {"time": 0.55}]} + "@body5": { + "rotate": [ + {"time": 0.1667, "curve": 0.25, "c3": 0.75}, {"time": 0.3333, "angle": 0.5, "curve": 0.25, "c3": 0.75}, {"time": 0.5, "curve": 0.25, "c3": 0.75}, + {"time": 0.6667, "angle": 0.5, "curve": 0.25, "c3": 0.75}, {"time": 1} + ] + } }, - "events": [{"time": 0.1667, "name": "jump"}] + "events": [{"time": 0.5, "name": "start-attack"}] }, - "334169668": { + "3051257523": { + "slots": { + "eyes": {"attachment": [{"time": 0.0833, "name": "eyes-angry"}, {"time": 0.6667, "name": "eyes-shut"}, {"time": 0.75, "name": "eyes"}]}, + "mouth": {"attachment": [{"time": 0.0833, "name": "mouth-bite"}, {"time": 0.35, "name": "mouth-open"}, {"time": 0.55, "name": "mouth-bite"}, {"time": 0.75, "name": "mouth"}]} + }, "bones": { "@pivot-back": { "rotate": [ - {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "angle": 5.51, "curve": 0.315, "c4": 0.8}, {"time": 0.2, "angle": -4, "curve": 0.62, "c3": 0.536}, - {"time": 0.5, "angle": 5.83, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5833, "angle": -1.41, "curve": 0.154, "c4": 0.9}, {"time": 0.6667} + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "angle": 4, "curve": 0, "c2": 0.5, "c3": 0.3}, {"time": 0.3333, "angle": -23.77, "curve": "stepped"}, + {"time": 0.35, "angle": -29.82, "curve": 0.698, "c3": 0.541}, {"time": 0.5833, "angle": 3}, {"time": 0.7167, "angle": 4, "curve": 0, "c2": 0.09, "c3": 0.479, "c4": 0.56}, + {"time": 0.8167, "angle": -5.09, "curve": 0.416, "c2": 0.51, "c3": 0.865}, {"time": 0.9167} ], "translate": [ - {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.1167, "x": 13.63, "y": 1.37, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5, "y": -4.7, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.6667} + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": 33.65, "y": -5, "curve": 0, "c2": 0.5, "c3": 0.3}, {"time": 0.3333, "x": 80.56, "y": 137.85, "curve": "stepped"}, + {"time": 0.35, "x": 147.57, "y": 42.83, "curve": 0, "c2": 0.2, "c3": 0.686}, {"time": 0.5, "x": 206.93, "y": -26.82, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.5833, "x": 226.09}, + {"time": 0.7167, "x": 237.58, "y": 2, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.9167} ] }, - "@leg-front-right": { + "@pivot-main": { "translate": [ - {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": -1.98, "y": -24.83, "curve": 0.263, "c3": 0.629, "c4": 0.42}, - {"time": 0.1667, "x": -2.18, "y": -3.56, "curve": 0.493, "c2": 0.32, "c4": 0.83}, {"time": 0.3333, "x": -2.18, "y": -2.89, "curve": "stepped"}, - {"time": 0.4833, "x": -2.18, "y": -2.89, "curve": 0, "c2": 0.17, "c3": 0.45, "c4": 0.61}, {"time": 0.5, "x": -1.98, "y": -24.83, "curve": 0, "c2": 0.17, "c3": 0.45, "c4": 0.61}, - {"time": 0.5833, "x": -1.28, "y": 8.38, "curve": 0.345, "c2": 0.53, "c3": 0.751}, {"time": 0.6667} + {"time": 0.5833, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.7167, "x": 15, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.8167, "x": 7.5, "y": 59.4, "curve": 0.315, "c4": 0.8}, + {"time": 0.9167} ] }, - "leg-front-right-IK": { + "leg-front-left-IK": { "translate": [ - {"time": 0.15, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.25, "x": 26.77, "curve": 0.315, "c4": 0.8}, {"time": 0.35, "x": -20.02, "curve": "stepped"}, - {"time": 0.5, "x": -20.02, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.5833} + {"time": 0.1667, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.3333, "x": 31.94, "y": 229.47, "curve": "stepped"}, {"time": 0.35, "x": 6.23, "y": 175.34, "curve": 0.384, "c3": 0.537}, + {"time": 0.5833, "x": 202.93}, {"time": 0.7, "x": 190.82, "curve": 0.315, "c4": 0.8}, {"time": 0.7667, "x": 145.27, "curve": 0.237, "c4": 0.8}, {"time": 0.9167} ] }, - "@leg-front-left": { + "leg-front-right-IK": { "translate": [ - {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": -1.04, "y": -13.11, "curve": 0.263, "c3": 0.629, "c4": 0.42}, - {"time": 0.1667, "x": -1.14, "y": -2.73, "curve": 0.493, "c2": 0.32, "c4": 0.83}, {"time": 0.3333, "x": -1.16, "y": -1.14, "curve": "stepped"}, - {"time": 0.4833, "x": -1.16, "y": -1.14, "curve": 0, "c2": 0.17, "c3": 0.45, "c4": 0.61}, {"time": 0.5, "x": -1.04, "y": -13.11, "curve": 0, "c2": 0.17, "c3": 0.45, "c4": 0.61}, - {"time": 0.5833, "x": -0.69, "y": 4.65, "curve": 0.345, "c2": 0.53, "c3": 0.751}, {"time": 0.6667} + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": 9.33, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.3333, "x": 54.35, "y": 345.22, "curve": "stepped"}, + {"time": 0.35, "x": 63.69, "y": 345.57, "curve": 0.384, "c3": 0.537}, {"time": 0.5833, "x": 199.77}, {"time": 0.7, "x": 187.66, "curve": 0.315, "c4": 0.8}, + {"time": 0.7667, "x": 143.69, "curve": 0.237, "c4": 0.8}, {"time": 0.9167} ] }, - "leg-front-left-IK": { + "leg-back-left-IK": { "translate": [ - {"time": 0.15, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.25, "x": 26.77, "curve": 0.315, "c4": 0.8}, {"time": 0.35, "x": -20.02, "curve": "stepped"}, - {"time": 0.5, "x": -20.02, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.5833} + {"time": 0.1667, "curve": 0, "c2": 0.4, "c3": 0.383}, {"time": 0.3333, "x": -8.28, "y": 157.2, "curve": "stepped"}, {"time": 0.35, "x": 22.27, "y": 70.62, "curve": 0.312, "c4": 0.8}, + {"time": 0.5, "x": 185.62, "y": 1.08, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.7167, "x": 244.18, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.8167, "x": 141.99, "y": 26.46, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.9167} ] }, - "@leg-back-left": { + "@leg-front-right": { "translate": [ - {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.1333, "x": -0.27, "y": -3.45, "curve": "stepped"}, {"time": 0.5, "x": -0.27, "y": -3.45, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.6667} + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": 6.95, "y": -25.59, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "curve": "stepped"}, + {"time": 0.5833, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.7167, "x": 8.43, "y": -10.83}, {"time": 0.9167} ] }, - "leg-back-left-IK": { + "@leg-front-left": { "translate": [ - {"time": 0.15, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.25, "x": 26.77, "curve": "stepped"}, {"time": 0.3, "x": 26.77, "curve": 0.315, "c4": 0.8}, - {"time": 0.4167, "x": -20.02, "curve": "stepped"}, {"time": 0.5, "x": -20.02, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.5833} - ] - }, - "@pivot-main": { - "translate": [{"time": 0.1667, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "y": 133.58, "curve": 0.315, "c4": 0.8}, {"time": 0.5}], - "scale": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "y": 0.97, "curve": 0.315, "c4": 0.8}, {"time": 0.1667, "curve": "stepped"}, {"time": 0.4167, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.5, "y": 0.97, "curve": 0.315, "c4": 0.8}, {"time": 0.5833} + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": -0.29, "y": -5.47}, {"time": 0.3333, "curve": "stepped"}, {"time": 0.5833, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.7167, "x": 6.82, "y": 7.35}, {"time": 0.9167} ] }, "tail": { "rotate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1167, "angle": 11.6, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "angle": -18.66, "curve": 0.313, "c3": 0.699}, - {"time": 0.4667, "angle": 16.43, "curve": 0.315, "c4": 0.8}, {"time": 0.5833, "angle": -6.67, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.6667} + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "angle": 19.35, "curve": 0, "c2": 0.4, "c3": 0.383}, {"time": 0.3333, "angle": -0.88, "curve": "stepped"}, + {"time": 0.35, "angle": -13.56, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.5, "angle": 0.52, "curve": 0, "c2": 0.3, "c3": 0.544}, + {"time": 0.7167, "angle": 19.32, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.8, "angle": -9.3, "curve": 0.313, "c3": 0.699}, {"time": 0.9167} ] }, "@shadow": { + "translate": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": 24.43, "curve": 0, "c2": 0.4, "c3": 0.383}, {"time": 0.3333, "x": 86.58, "curve": "stepped"}, + {"time": 0.35, "x": 154.34, "curve": 0.315, "c4": 0.8}, {"time": 0.5, "x": 208.2, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.5833, "x": 216.55}, + {"time": 0.7167, "x": 243.36, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.9167} + ], "scale": [ - {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 1.1, "y": 1.1, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "x": 0.8, "y": 0.8, "curve": 0.315, "c4": 0.8}, - {"time": 0.5, "x": 1.1, "y": 1.1, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.6667} + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": 1.08, "y": 1.08, "curve": 0, "c2": 0.4, "c3": 0.383}, {"time": 0.3333, "x": 0.92, "y": 0.92, "curve": "stepped"}, + {"time": 0.35, "x": 0.9, "y": 0.9, "curve": 0.315, "c4": 0.8}, {"time": 0.5, "x": 1.02, "y": 1.02, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.5833, "x": 1.08, "y": 1.08}, + {"time": 0.7167, "x": 1.1, "y": 1.1, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.9167} ] }, "@body3": { "rotate": [ - {"angle": -0.49, "curve": 0.375, "c2": 0.62, "c3": 0.716}, {"time": 0.0333, "curve": 0.25, "c3": 0.75}, {"time": 0.1167, "angle": -3.77, "curve": 0.25, "c3": 0.75}, - {"time": 0.3167, "angle": -14, "curve": 0.25, "c3": 0.75}, {"time": 0.5333, "angle": -3.77, "curve": 0.243, "c3": 0.68, "c4": 0.71}, {"time": 0.6667, "angle": -0.49} + {"angle": -0.38, "curve": 0.371, "c2": 0.62, "c3": 0.71}, {"time": 0.0333, "curve": 0.25, "c3": 0.75}, {"time": 0.2, "angle": 7.65, "curve": 0.25, "c3": 0.75}, + {"time": 0.3667, "angle": -15.43, "curve": 0.25, "c3": 0.75}, {"time": 0.5333, "angle": 14.64, "curve": 0.25, "c3": 0.75}, + {"time": 0.75, "angle": -3.96, "curve": 0.243, "c3": 0.689, "c4": 0.75}, {"time": 0.9167, "angle": -0.38} ], - "translate": [{"time": 0.0833, "curve": 0.25, "c3": 0.75}, {"time": 0.2833, "x": 45.36, "y": -33.56, "curve": 0.25, "c3": 0.75}, {"time": 0.5}] + "translate": [{"curve": 0.25, "c3": 0.75}, {"time": 0.1667, "x": -11.6, "y": 9.76, "curve": 0.25, "c3": 0.75}, {"time": 0.3333}] }, "@body4": { "rotate": [ - {"angle": -5.65, "curve": 0.363, "c2": 0.44, "c3": 0.755}, {"time": 0.05, "angle": -15.35, "curve": 0.25, "c3": 0.75}, {"time": 0.25, "angle": 14.26, "curve": 0.25, "c3": 0.75}, - {"time": 0.4667, "angle": -15.35, "curve": 0.245, "c3": 0.637, "c4": 0.56}, {"time": 0.5667, "angle": -5.65, "curve": 0.381, "c2": 0.55, "c3": 0.742}, - {"time": 0.6333, "curve": 0.258, "c3": 0.619, "c4": 0.45}, {"time": 0.6667, "angle": -5.65} + {"angle": -3.56, "curve": 0.379, "c2": 0.6, "c3": 0.724}, {"time": 0.05, "curve": 0.25, "c3": 0.75}, {"time": 0.2167, "angle": 9.83, "curve": 0.25, "c3": 0.75}, + {"time": 0.3833, "angle": -18.47, "curve": 0.25, "c3": 0.75}, {"time": 0.55, "angle": 16.63, "curve": 0.25, "c3": 0.75}, + {"time": 0.7667, "angle": -19.31, "curve": 0.242, "c3": 0.667, "c4": 0.67}, {"time": 0.9167, "angle": -3.56} ], "translate": [ - {"x": -1.59, "y": 23.93, "curve": 0.25, "c3": 0.75}, {"time": 0.2, "x": 6.55, "y": -29.78, "curve": 0.25, "c3": 0.75}, - {"time": 0.4167, "x": -1.59, "y": 23.93, "curve": 0.245, "c3": 0.711, "c4": 0.83}, {"time": 0.5667, "x": -0.07, "y": 1.02, "curve": 0.36, "c2": 0.64, "c3": 0.695}, - {"time": 0.5833, "curve": 0.25, "c3": 0.75}, {"time": 0.6667, "x": -1.59, "y": 23.93} + {"x": -2.39, "y": 7.1, "curve": 0.25, "c3": 0.75}, {"time": 0.1667, "x": 9, "y": 2.91, "curve": 0.25, "c3": 0.75}, {"time": 0.3333, "x": -1.59, "y": 23.93, "curve": 0.25, "c3": 0.75}, + {"time": 0.5, "x": 21.48, "y": -4.06, "curve": 0.25, "c3": 0.75}, {"time": 0.7167, "x": -1.59, "y": 23.93, "curve": 0.25, "c3": 0.75}, {"time": 0.9167, "x": -2.39, "y": 7.1} ] }, "@body6": { "rotate": [ - {"angle": -3.96, "curve": 0.321, "c2": 0.3, "c3": 0.679, "c4": 0.7}, {"time": 0.0667, "angle": -1.27, "curve": 0.382, "c2": 0.58, "c3": 0.731}, - {"time": 0.1167, "curve": 0.25, "c3": 0.75}, {"time": 0.2, "angle": -5.24, "curve": 0.25, "c3": 0.75}, {"time": 0.4, "angle": 25.77, "curve": 0.25, "c3": 0.75}, - {"time": 0.6167, "angle": -5.24, "curve": 0.269, "c3": 0.618, "c4": 0.42}, {"time": 0.6667, "angle": -3.96} + {"angle": -3.53, "curve": 0.353, "c2": 0.4, "c3": 0.696, "c4": 0.77}, {"time": 0.05, "angle": -0.89, "curve": 0.371, "c2": 0.62, "c3": 0.71}, {"time": 0.0833, "curve": 0.25, "c3": 0.75}, + {"time": 0.25, "angle": 15.47, "curve": 0.25, "c3": 0.75}, {"time": 0.4167, "angle": -8.36, "curve": 0.25, "c3": 0.75}, {"time": 0.5833, "angle": 26.49, "curve": 0.25, "c3": 0.75}, + {"time": 0.8, "angle": -9.2, "curve": 0.246, "c3": 0.635, "c4": 0.55}, {"time": 0.9167, "angle": -3.53} ], "translate": [ - {"x": 2.14, "y": -1.5, "curve": 0.381, "c2": 0.55, "c3": 0.742}, {"time": 0.0667, "curve": 0.25, "c3": 0.75}, {"time": 0.15, "x": 5.81, "y": -4.07, "curve": 0.25, "c3": 0.75}, - {"time": 0.35, "x": -70.52, "y": 35.61, "curve": 0.25, "c3": 0.75}, {"time": 0.5667, "x": 5.81, "y": -4.07, "curve": 0.245, "c3": 0.637, "c4": 0.56}, - {"time": 0.6667, "x": 2.14, "y": -1.5} + {"x": 1.07, "y": -0.75, "curve": 0.379, "c2": 0.6, "c3": 0.724}, {"time": 0.05, "curve": 0.25, "c3": 0.75}, {"time": 0.2167, "x": -17.06, "y": -1.14, "curve": 0.25, "c3": 0.75}, + {"time": 0.3833, "x": 5.81, "y": -4.07, "curve": 0.25, "c3": 0.75}, {"time": 0.55, "x": -27.26, "y": 10.72, "curve": 0.25, "c3": 0.75}, + {"time": 0.7667, "x": 5.81, "y": -4.07, "curve": 0.242, "c3": 0.667, "c4": 0.67}, {"time": 0.9167, "x": 1.07, "y": -0.75} ] }, "body-braid2": { "rotate": [ - {"curve": 0.25, "c3": 0.75}, {"time": 0.0833, "angle": -1.43, "curve": 0.25, "c3": 0.75}, {"time": 0.2833, "angle": 20.83, "curve": 0.25, "c3": 0.75}, - {"time": 0.5, "angle": -1.43, "curve": 0.25, "c3": 0.75}, {"time": 0.6667} + {"angle": -0.21, "curve": 0.356, "c2": 0.65, "c3": 0.691}, {"time": 0.0167, "curve": 0.25, "c3": 0.75}, {"time": 0.1833, "angle": 9.33, "curve": 0.25, "c3": 0.75}, + {"time": 0.35, "angle": -3.12, "curve": 0.25, "c3": 0.75}, {"time": 0.5167, "angle": 12.46, "curve": 0.25, "c3": 0.75}, + {"time": 0.7333, "angle": -7.14, "curve": 0.246, "c3": 0.717, "c4": 0.86}, {"time": 0.9167, "angle": -0.21} ] }, "body-braid4": { "rotate": [ - {"angle": -2.78, "curve": 0.381, "c2": 0.59, "c3": 0.729}, {"time": 0.0667, "angle": -11.53, "curve": 0.25, "c3": 0.625, "c4": 0.5}, - {"time": 0.1167, "angle": -5.76, "curve": 0.375, "c2": 0.5, "c3": 0.75}, {"time": 0.2, "curve": 0.25, "c3": 0.75}, {"time": 0.2833, "angle": -11.53, "curve": 0.25, "c3": 0.75}, - {"time": 0.5, "angle": 27.46, "curve": 0.243, "c3": 0.658, "c4": 0.64}, {"time": 0.6667, "angle": -2.78} - ] + {"angle": -5.82, "curve": 0.333, "c2": 0.33, "c3": 0.758}, {"time": 0.15, "curve": 0.25, "c3": 0.75}, {"time": 0.3167, "angle": 19.6, "curve": 0.25, "c3": 0.75}, + {"time": 0.4833, "angle": -3.12, "curve": 0.25, "c3": 0.75}, {"time": 0.65, "angle": 25.68, "curve": 0.25, "c3": 0.75}, + {"time": 0.8667, "angle": -7.14, "curve": 0.276, "c3": 0.621, "c4": 0.4}, {"time": 0.9167, "angle": -5.82} + ], + "translate": [{"x": -2.3, "y": -9.73}] }, "body-braid3": { "rotate": [ - {"angle": -4.11, "curve": 0.347, "c2": 0.38, "c3": 0.694, "c4": 0.76}, {"time": 0.05, "angle": -1.08, "curve": 0.375, "c2": 0.62, "c3": 0.716}, - {"time": 0.0833, "curve": 0.25, "c3": 0.75}, {"time": 0.1667, "angle": -8.3, "curve": 0.25, "c3": 0.75}, {"time": 0.3667, "angle": 33.27, "curve": 0.25, "c3": 0.75}, - {"time": 0.5833, "angle": -8.3, "curve": 0.25, "c3": 0.625, "c4": 0.5}, {"time": 0.6667, "angle": -4.11} + {"angle": -2.03, "curve": 0.382, "c2": 0.57, "c3": 0.735}, {"time": 0.0667, "curve": 0.25, "c3": 0.75}, {"time": 0.2333, "angle": 20.19, "curve": 0.25, "c3": 0.75}, + {"time": 0.4, "angle": -3.12, "curve": 0.25, "c3": 0.75}, {"time": 0.5667, "angle": 27.61, "curve": 0.25, "c3": 0.75}, + {"time": 0.7833, "angle": -7.14, "curve": 0.243, "c3": 0.649, "c4": 0.6}, {"time": 0.9167, "angle": -2.03} ] }, "@body2": { "rotate": [ - {"angle": 3.71, "curve": 0.339, "c2": 0.35, "c3": 0.679, "c4": 0.7}, {"time": 0.0333, "angle": 1.81, "curve": 0.382, "c2": 0.58, "c3": 0.731}, - {"time": 0.0833, "curve": 0.25, "c3": 0.75}, {"time": 0.1667, "angle": 7.45, "curve": 0.25, "c3": 0.75}, {"time": 0.3667, "angle": -18.73, "curve": 0.25, "c3": 0.75}, - {"time": 0.5833, "angle": 7.45, "curve": 0.25, "c3": 0.625, "c4": 0.5}, {"time": 0.6667, "angle": 3.71} + {"angle": -2.41, "curve": 0.333, "c2": 0.33, "c3": 0.676, "c4": 0.7}, {"time": 0.05, "angle": -1.12, "curve": 0.382, "c2": 0.57, "c3": 0.735}, + {"time": 0.1167, "curve": 0.25, "c3": 0.75}, {"time": 0.2833, "angle": 12.91, "curve": 0.25, "c3": 0.75}, {"time": 0.45, "angle": -6.19, "curve": 0.25, "c3": 0.75}, + {"time": 0.6167, "angle": 25.88, "curve": 0.25, "c3": 0.75}, {"time": 0.8333, "angle": -3.96, "curve": 0.256, "c3": 0.619, "c4": 0.46}, {"time": 0.9167, "angle": -2.41} ], - "translate": [ - {"x": -0.01, "y": 0.15, "curve": 0.375, "c2": 0.62, "c3": 0.716}, {"time": 0.0333, "curve": 0.25, "c3": 0.75}, {"time": 0.1167, "x": -0.08, "y": 1.15, "curve": 0.25, "c3": 0.75}, - {"time": 0.3167, "x": 4.59, "y": -41.28, "curve": 0.25, "c3": 0.75}, {"time": 0.5333, "x": -0.08, "y": 1.15, "curve": 0.243, "c3": 0.68, "c4": 0.71}, - {"time": 0.6667, "x": -0.01, "y": 0.15} - ] + "translate": [{"time": 0.3833, "curve": 0.25, "c3": 0.75}, {"time": 0.55, "x": -14.09, "y": -2.21, "curve": 0.25, "c3": 0.75}, {"time": 0.7667}] }, "body-braid6": { "rotate": [ - {"angle": -18.82, "curve": 0.358, "c2": 0.65, "c3": 0.693}, {"time": 0.0167, "angle": -20.17, "curve": 0.269, "c3": 0.618, "c4": 0.42}, - {"time": 0.05, "angle": -15.29, "curve": 0.345, "c2": 0.37, "c3": 0.757}, {"time": 0.1667, "curve": 0.25, "c3": 0.75}, {"time": 0.25, "angle": -20.17, "curve": 0.25, "c3": 0.75}, - {"time": 0.5, "angle": 18.35, "curve": 0.245, "c3": 0.714, "c4": 0.85}, {"time": 0.6667, "angle": -18.82} + {"angle": -11.03, "curve": 0.355, "c2": 0.65, "c3": 0.689}, {"time": 0.0167, "angle": -11.74, "curve": 0.25, "c3": 0.75}, {"time": 0.2167, "angle": -4.61, "curve": 0.25, "c3": 0.75}, + {"time": 0.3833, "angle": 13.39, "curve": 0.25, "c3": 0.75}, {"time": 0.55, "angle": -7.73, "curve": 0.25, "c3": 0.75}, + {"time": 0.7167, "angle": 15.52, "curve": 0.246, "c3": 0.719, "c4": 0.87}, {"time": 0.9167, "angle": -11.03} ] }, "body-braid5": { "rotate": [ - {"angle": -5.04, "curve": 0.328, "c2": 0.32, "c3": 0.68, "c4": 0.71}, {"time": 0.05, "angle": -1.76, "curve": 0.382, "c2": 0.58, "c3": 0.731}, {"time": 0.1, "curve": 0.25, "c3": 0.75}, - {"time": 0.1833, "angle": -7.27, "curve": 0.25, "c3": 0.75}, {"time": 0.3833, "angle": 36.02, "curve": 0.25, "c3": 0.75}, - {"time": 0.6167, "angle": -7.27, "curve": 0.263, "c3": 0.618, "c4": 0.43}, {"time": 0.6667, "angle": -5.04} + {"angle": 2.72, "curve": 0.365, "c2": 0.45, "c3": 0.754}, {"time": 0.1167, "angle": 7.07, "curve": 0.25, "c3": 0.75}, {"time": 0.2833, "angle": 31.61, "curve": 0.25, "c3": 0.75}, + {"time": 0.45, "angle": 3.95, "curve": 0.25, "c3": 0.75}, {"time": 0.6167, "angle": 33.27, "curve": 0.25, "c3": 0.75}, + {"time": 0.8333, "angle": -0.06, "curve": 0.256, "c3": 0.619, "c4": 0.46}, {"time": 0.9167, "angle": 2.72} ] }, "body-braid": { "rotate": [ - {"angle": -0.97, "curve": 0.363, "c2": 0.44, "c3": 0.711, "c4": 0.83}, {"time": 0.05, "angle": -0.11, "curve": 0.36, "c2": 0.64, "c3": 0.695}, - {"time": 0.0667, "curve": 0.25, "c3": 0.75}, {"time": 0.15, "angle": -2.68, "curve": 0.25, "c3": 0.75}, {"time": 0.35, "angle": 22.42, "curve": 0.25, "c3": 0.75}, - {"time": 0.5667, "angle": -2.68, "curve": 0.245, "c3": 0.637, "c4": 0.56}, {"time": 0.6667, "angle": -0.97} + {"angle": 3.78, "curve": 0.379, "c2": 0.6, "c3": 0.724}, {"time": 0.05, "angle": 5.09, "curve": 0.25, "c3": 0.75}, {"time": 0.2167, "angle": 10.61, "curve": 0.25, "c3": 0.75}, + {"time": 0.3833, "angle": 0.29, "curve": 0.25, "c3": 0.75}, {"time": 0.55, "angle": 27.5, "curve": 0.25, "c3": 0.75}, + {"time": 0.7667, "angle": -2.04, "curve": 0.242, "c3": 0.667, "c4": 0.67}, {"time": 0.9167, "angle": 3.78} + ] + }, + "@body5": { + "rotate": [ + {"time": 0.1667, "curve": 0.25, "c3": 0.75}, {"time": 0.3333, "angle": -3.12, "curve": 0.271, "c3": 0.619, "c4": 0.41}, + {"time": 0.5, "angle": -0.04, "curve": 0.342, "c2": 0.36, "c3": 0.757}, {"time": 0.9167} ] } }, - "events": [{"time": 0.15, "name": "jump"}] + "events": [{"time": 0.35, "name": "start-attack"}] }, - "160342495": { + "983904028": { "slots": { - "eyes": {"attachment": [{"time": 0.0833, "name": "eyes-shut"}, {"time": 0.1667, "name": "eyes-angry"}, {"time": 0.9833, "name": "eyes-shut"}, {"time": 1.0833, "name": "eyes"}]}, - "leg-front-left": { - "attachment": [ - {"time": 0.5, "name": "sumo-leg-front-left-stretch"}, {"time": 0.6333, "name": "sumo-leg-front-left"}, {"time": 0.7667, "name": "sumo-leg-front-left-stretch"}, - {"time": 0.9, "name": "sumo-leg-front-left"} - ] - }, - "mouth": {"attachment": [{"time": 0.0833, "name": "mouth-bite"}, {"time": 0.3667, "name": "mouth-open"}, {"time": 0.9833, "name": "mouth-bite"}, {"time": 1.0833, "name": "mouth"}]} + "eyes": {"attachment": [{"time": 0.0167, "name": "eyes-angry"}, {"time": 0.5, "name": "eyes-shut"}, {"time": 0.6667, "name": "eyes"}]}, + "mouth": {"attachment": [{"time": 0.0167, "name": "mouth-bite"}, {"time": 0.3, "name": "mouth-open"}, {"time": 0.5, "name": "mouth"}]} }, "bones": { "@pivot-back": { "rotate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.15, "angle": 3.67, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.3333, "angle": -14.29, "curve": 0.779, "c4": 0.3}, - {"time": 0.3667, "angle": 15.82}, {"time": 0.4667, "angle": 16.67, "curve": 0.779, "c4": 0.3}, {"time": 0.5, "angle": -19.96}, {"time": 0.6, "angle": -21.17, "curve": 0.779, "c4": 0.3}, - {"time": 0.6333, "angle": 15.82}, {"time": 0.7333, "angle": 16.67, "curve": 0.779, "c4": 0.3}, {"time": 0.7667, "angle": -19.96}, - {"time": 0.8667, "angle": -21.17, "curve": 0.779, "c4": 0.3}, {"time": 0.9833, "angle": 4.4, "curve": 0, "c2": 0.1, "c3": 0.85}, - {"time": 1.05, "angle": 6.79, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1.25} + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "angle": -3.92, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "angle": 2.51, "curve": 0.697, "c4": 0.3}, + {"time": 0.3, "angle": -2}, {"time": 0.4167, "angle": -3, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5833, "angle": 3, "curve": 0, "c2": 0.17, "c3": 0.45, "c4": 0.61}, + {"time": 0.6667, "angle": -2.47, "curve": 0.345, "c2": 0.53, "c3": 0.751}, {"time": 0.75} ], "translate": [ - {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.2167, "x": 8.02, "curve": 0, "c2": 0.4, "c3": 0.383}, {"time": 0.3333, "x": -54.3, "y": 61.69, "curve": 0.779, "c4": 0.3}, - {"time": 0.3667, "x": -60.41, "y": 130.13}, {"time": 0.4667, "x": -60.41, "y": 130.01, "curve": 0.779, "c4": 0.3}, {"time": 0.5, "x": -58.41, "y": 9.6}, - {"time": 0.6, "x": -58.41, "y": 9.9, "curve": 0.779, "c4": 0.3}, {"time": 0.6333, "x": -60.41, "y": 130.13}, {"time": 0.7333, "x": -60.41, "y": 130.01, "curve": 0.779, "c4": 0.3}, - {"time": 0.7667, "x": -58.41, "y": 9.6}, {"time": 0.8667, "x": -58.41, "y": 9.9, "curve": 0.779, "c4": 0.3}, {"time": 0.9833} + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "x": 71.93, "y": -12.95, "curve": "stepped"}, {"time": 0.25, "x": 71.93, "y": -12.95, "curve": 0.697, "c4": 0.3}, + {"time": 0.3, "x": -65}, {"time": 0.4167, "x": -67, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5833, "x": -74.25, "y": -5.2, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.75} ] }, - "@leg-front-right": { + "leg-back-left-IK": { "translate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.2167, "x": -18.54, "y": -11.57}, {"time": 0.25, "x": -23.07, "y": 10.08, "curve": 0, "c2": 0.4, "c3": 0.383}, - {"time": 0.3333, "x": 47.55, "y": -24.33, "curve": 0.779, "c4": 0.4}, {"time": 0.3667, "x": 22.95, "y": 2.68}, {"time": 0.4667, "x": 29.92, "y": -4.24, "curve": 0.779, "c4": 0.4}, - {"time": 0.5, "x": 30.08, "y": -11.86, "curve": "stepped"}, {"time": 0.6, "x": 30.08, "y": -11.86, "curve": 0.774, "c4": 0.4}, {"time": 0.6333, "x": 22.95, "y": 2.68}, - {"time": 0.7333, "x": 29.92, "y": -4.24, "curve": 0.779, "c4": 0.4}, {"time": 0.7667, "x": 22.95, "y": 2.68, "curve": "stepped"}, - {"time": 0.9167, "x": 22.95, "y": 2.68, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.95, "curve": 0.464, "c4": 0.7}, {"time": 0.9833, "x": -1.45, "y": -24.11}, - {"time": 1.05, "x": 1.91, "y": -42.48, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1.0833} - ], - "scale": [ - {"time": 0.2167}, {"time": 0.25, "x": 1.5}, {"time": 0.3333, "curve": 0.779, "c4": 0.4}, {"time": 0.3667, "x": 1.5}, {"time": 0.4667, "x": 1.51, "curve": 0.157, "c2": 0.33, "c3": 0.727}, - {"time": 0.5, "curve": "stepped"}, {"time": 0.6, "curve": 0.779, "c4": 0.4}, {"time": 0.6333, "x": 1.5}, {"time": 0.7333, "x": 1.51, "curve": 0.157, "c2": 0.33, "c3": 0.727}, - {"time": 0.7667} + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.1333, "x": 80.9, "curve": 0.161, "c3": 0.854}, {"time": 0.25, "x": 49.4, "curve": 0.25, "c4": 0.3}, + {"time": 0.3, "x": -1.03, "y": 44.55}, {"time": 0.4167, "x": -2.69, "y": 48.98, "curve": 0.313, "c3": 0.699}, {"time": 0.5833, "x": -90.91, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.75} ] }, - "@leg-front-left": { + "leg-front-right-IK": { "translate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.2167, "x": -6.84, "y": -9.77, "curve": "stepped"}, {"time": 0.9833, "x": -6.84, "y": -9.77, "curve": 0, "c2": 0.1, "c3": 0.85}, - {"time": 1.05, "x": -6.29, "y": -18.69, "curve": 0, "c2": 0.23, "c3": 0.365, "c4": 0.58}, {"time": 1.0833, "x": -3.64, "y": -2.46, "curve": 0.177, "c2": 0.35, "c3": 0.731}, - {"time": 1.25} - ], - "scale": [ - {"time": 0.4667, "curve": 0.779, "c4": 0.4}, {"time": 0.5, "x": 1.5}, {"time": 0.6, "x": 1.51, "curve": 0.157, "c2": 0.33, "c3": 0.727}, {"time": 0.6333, "curve": "stepped"}, - {"time": 0.7333, "curve": 0.779, "c4": 0.4}, {"time": 0.7667, "x": 1.5}, {"time": 0.8667, "x": 1.51, "curve": 0.157, "c2": 0.33, "c3": 0.727}, {"time": 0.9833} + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 44.25, "y": 4.66, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "x": 42.9, "curve": 0.697, "c4": 0.3}, + {"time": 0.3, "x": 12.5}, {"time": 0.4167, "x": 2.32, "curve": 0.313, "c3": 0.699}, {"time": 0.5833, "x": -87.1, "curve": 0, "c2": 0.17, "c3": 0.45, "c4": 0.61}, + {"time": 0.6667, "x": -39.4, "curve": 0.345, "c2": 0.53, "c3": 0.751}, {"time": 0.75} ] }, - "@leg-back-left": { + "leg-front-left-IK": { "translate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.2167, "x": -0.11, "y": -2.73, "curve": 0, "c2": 0.1, "c3": 0.853}, {"time": 0.3333, "x": 1.43, "y": -8.39, "curve": "stepped"}, - {"time": 0.75, "x": 1.43, "y": -8.39, "curve": 0, "c2": 0.1, "c3": 0.853}, {"time": 0.9833, "x": -0.11, "y": -2.73, "curve": 0, "c2": 0.1, "c3": 0.85}, - {"time": 1.05, "x": -0.46, "y": -6.19, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1.25} + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "x": 8.25, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "x": 42.9, "curve": 0.697, "c4": 0.3}, + {"time": 0.3, "x": -18.24, "y": 8.75}, {"time": 0.4167, "x": -28.22, "y": 30.68, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.5833, "x": -112.56, "curve": 0, "c2": 0.17, "c3": 0.45, "c4": 0.61}, {"time": 0.6667, "x": -55.81, "curve": 0.345, "c2": 0.53, "c3": 0.751}, {"time": 0.75} ] }, - "@pivot-main": { - "translate": [ - {"time": 0.15, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "x": -73.35, "y": 43, "curve": "stepped"}, {"time": 0.8667, "x": -73.35, "y": 43, "curve": 0.315, "c4": 0.8}, - {"time": 0.9833, "x": -146.44, "curve": "stepped"}, {"time": 1.05, "x": -146.44, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1.15, "x": -45.61, "y": 50.15, "curve": 0.315, "c4": 0.8}, - {"time": 1.25} - ], - "scale": [{"time": 0.9833, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1.05, "y": 0.98, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1.15}] - }, - "leg-front-right-IK": { + "@leg-front-left": { "translate": [ - {"time": 0.15, "curve": 0, "c2": 0.18, "c3": 0.416, "c4": 0.58}, {"time": 0.2167, "x": 40.05, "y": 75.1}, {"time": 0.25, "x": 6.78, "y": 74.83, "curve": 0, "c2": 0.4, "c3": 0.383}, - {"time": 0.3333, "x": -193.39, "y": 304.19, "curve": 0.779, "c4": 0.4}, {"time": 0.3667, "x": -21.84, "y": -45.29}, {"time": 0.4667, "x": 11.75, "y": -48.86, "curve": 0.779, "c4": 0.4}, - {"time": 0.5, "x": -180.19, "y": 260.8}, {"time": 0.6, "x": -183.12, "y": 295.33, "curve": 0.774, "c4": 0.4}, {"time": 0.6333, "x": 7.37, "y": -47.08}, - {"time": 0.7333, "x": 28.44, "y": -46.48, "curve": 0.779, "c4": 0.4}, {"time": 0.7667, "x": -165.57, "y": 223.23}, {"time": 0.8667, "x": -174.41, "y": 246.27, "curve": 0.779, "c4": 0.4}, - {"time": 0.9833, "x": 1.3, "y": -4.56}, {"time": 1.05, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 1.0833, "x": -14.68, "y": -19.57, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1.25} + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "x": -4.8, "y": 21.17, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "x": -0.53, "y": 0.11, "curve": 0.697, "c4": 0.3}, + {"time": 0.3} ] }, - "leg-front-left-IK": { + "@leg-front-right": { "translate": [ - {"time": 0.15, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "x": -54.88, "y": 124.95, "curve": 0.779, "c4": 0.4}, {"time": 0.3667, "x": 37.97, "y": 122.64}, - {"time": 0.4667, "x": 48.96, "y": 138.43, "curve": 0.779, "c4": 0.4}, {"time": 0.5, "x": -227.16, "y": 232.48}, {"time": 0.6, "x": -213.15, "y": 265.57, "curve": 0.779, "c4": 0.4}, - {"time": 0.6333, "x": 37.97, "y": 122.64}, {"time": 0.7333, "x": 58.73, "y": 130.92, "curve": 0.779, "c4": 0.4}, {"time": 0.7667, "x": -229.42, "y": 225.72}, - {"time": 0.8667, "x": -218.4, "y": 260.32, "curve": 0.617, "c4": 0.6}, {"time": 0.9833, "curve": "stepped"}, {"time": 1.05, "curve": 0, "c2": 0.1, "c3": 0.85}, - {"time": 1.0833, "x": -7.79, "y": -10.12, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1.25} + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 3.37, "y": 22.83, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "x": 12.06, "y": -24.92, "curve": 0.697, "c4": 0.3}, + {"time": 0.3, "x": -30.7, "y": 11.75, "curve": "stepped"}, {"time": 0.4167, "x": -30.7, "y": 11.75, "curve": 0, "c2": 0.3, "c3": 0.544}, + {"time": 0.5833, "x": -10.19, "y": -4.67, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.75} ] }, - "leg-back-left-IK": { + "@leg-back-left": { "translate": [ - {"time": 0.0833, "curve": 0.332, "c3": 0.682, "c4": 0.41}, {"time": 0.2167, "x": 6.07, "y": 22.48, "curve": 0, "c2": 0.4, "c3": 0.383}, - {"time": 0.3333, "x": -66.23, "y": 98.46, "curve": 0.779, "c4": 0.4}, {"time": 0.3667, "x": 32.46, "y": 177.26}, {"time": 0.4667, "x": 42.56, "y": 194, "curve": 0.779, "c4": 0.4}, - {"time": 0.5, "x": -143.31, "y": 25.48}, {"time": 0.6, "x": -161.53, "y": 28.25, "curve": 0.779, "c4": 0.4}, {"time": 0.6333, "x": 39.84, "y": 189.07}, - {"time": 0.7333, "x": 43.3, "y": 201.38, "curve": 0.779, "c4": 0.4}, {"time": 0.7667, "x": -147, "y": 26.22}, {"time": 0.8667, "x": -162.73, "y": 28.16, "curve": 0.779, "c4": 0.4}, - {"time": 0.9833, "curve": "stepped"}, {"time": 1.05, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 1.1667, "x": 24.35, "y": 13.92, "curve": 0.154, "c4": 0.9}, {"time": 1.25} - ] - }, - "tail": { - "rotate": [ - {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.15, "angle": 14.68, "curve": 0.315, "c4": 0.8}, {"time": 0.2167, "angle": -12.57}, - {"time": 0.3333, "angle": -14.89, "curve": 0.779, "c4": 0.4}, {"time": 0.3667, "angle": 20.64}, {"time": 0.4667, "angle": 25.18, "curve": 0.779, "c4": 0.4}, - {"time": 0.5, "angle": -19.72}, {"time": 0.6, "angle": -22.19, "curve": 0.779, "c4": 0.4}, {"time": 0.6333, "angle": 20.64}, {"time": 0.7333, "angle": 25.18, "curve": 0.779, "c4": 0.4}, - {"time": 0.7667, "angle": -19.72}, {"time": 0.8667, "angle": -22.19, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.9833, "angle": 23.3}, - {"time": 1.05, "angle": 26.39, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1.1333, "angle": -14.8, "curve": 0.154, "c4": 0.9}, {"time": 1.25} + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.1333, "x": 0.67, "y": -7.85, "curve": 0.161, "c3": 0.854}, {"time": 0.25, "x": 0.53, "y": -13.09, "curve": 0.25, "c4": 0.3}, + {"time": 0.3, "x": 0.58, "y": -14.14, "curve": "stepped"}, {"time": 0.4167, "x": 0.58, "y": -14.14, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.5833, "x": -0.28, "y": -7.87, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.75} ] }, "@shadow": { "translate": [ - {"time": 0.15, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.3333, "x": -132.39, "curve": 0.779, "c4": 0.4}, {"time": 0.3667, "x": -111.3, "curve": "stepped"}, - {"time": 0.8667, "x": -111.3, "curve": 0.315, "c4": 0.8}, {"time": 0.9833, "x": -132.39, "curve": "stepped"}, {"time": 1.05, "x": -132.39, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 1.25} + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 61.96, "curve": "stepped"}, {"time": 0.25, "x": 61.96, "curve": 0.697, "c4": 0.3}, {"time": 0.3, "x": -50.16}, + {"time": 0.4167, "x": -53.09, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5833, "x": -83.79, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.75} ], "scale": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.15, "x": 1.05, "y": 1.05, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.3333, "x": 0.93, "y": 0.93, "curve": 0.779, "c4": 0.4}, - {"time": 0.3667, "x": 0.95, "y": 0.95}, {"time": 0.4667, "x": 0.93, "y": 0.93, "curve": 0.779, "c4": 0.4}, {"time": 0.5}, {"time": 0.6, "x": 1.05, "y": 1.05, "curve": 0.779, "c4": 0.4}, - {"time": 0.6333}, {"time": 0.7333, "x": 0.93, "y": 0.93, "curve": 0.779, "c4": 0.4}, {"time": 0.7667}, {"time": 0.8667, "x": 1.05, "y": 1.05, "curve": 0.315, "c4": 0.8}, - {"time": 0.9833, "x": 1.09, "y": 1.09, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 1.05, "x": 1.11, "y": 1.11, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1.25} + {"time": 0.0833, "curve": 0, "c2": 0.26, "c3": 0.369, "c4": 0.62}, {"time": 0.25, "x": 1.06, "y": 1.06, "curve": 0.697, "c4": 0.3}, + {"time": 0.3, "x": 0.96, "y": 0.96, "curve": "stepped"}, {"time": 0.4167, "x": 0.96, "y": 0.96, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.5833, "x": 1.08, "y": 1.08, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.75} + ] + }, + "tail": { + "rotate": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "angle": 15.61, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "angle": 20.44, "curve": 0.697, "c4": 0.3}, + {"time": 0.3, "angle": -9.4}, {"time": 0.4167, "angle": -13.12, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5833, "angle": 15.47, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.75} ] }, "@body3": { "rotate": [ - {"angle": -2.58, "curve": 0.379, "c2": 0.6, "c3": 0.724}, {"time": 0.0333, "curve": 0.25, "c3": 0.75}, {"time": 0.2, "angle": -3.77, "curve": 0.25, "c3": 0.75}, - {"time": 0.3667, "angle": -14, "curve": 0.25, "c3": 0.75}, {"time": 0.5333, "angle": -3.77, "curve": 0.25, "c3": 0.75}, {"time": 0.7, "angle": -14, "curve": 0.25, "c3": 0.75}, - {"time": 0.8667, "angle": -3.77, "curve": 0.25, "c3": 0.75}, {"time": 1.0333, "angle": -14, "curve": "stepped"}, {"time": 1.15, "angle": -14, "curve": 0.242, "c3": 0.667, "c4": 0.67}, - {"time": 1.25, "angle": -2.58} + {"angle": -4.35, "curve": 0.363, "c2": 0.64, "c3": 0.699}, {"time": 0.0333, "angle": -3.77, "curve": 0.25, "c3": 0.75}, {"time": 0.2, "angle": 7.65, "curve": 0.25, "c3": 0.75}, + {"time": 0.3167, "angle": -3.77, "curve": 0.25, "c3": 0.75}, {"time": 0.5, "angle": -14, "curve": 0.245, "c3": 0.705, "c4": 0.81}, {"time": 0.75, "angle": -4.35} ], "translate": [ - {"time": 0.1667, "curve": 0.25, "c3": 0.75}, {"time": 0.3333, "x": 45.36, "y": -33.56, "curve": 0.25, "c3": 0.75}, {"time": 0.5, "curve": 0.25, "c3": 0.75}, - {"time": 0.6667, "x": 45.36, "y": -33.56, "curve": 0.25, "c3": 0.75}, {"time": 0.8333, "curve": 0.25, "c3": 0.75}, {"time": 1, "x": 45.36, "y": -33.56, "curve": "stepped"}, - {"time": 1.1167, "x": 45.36, "y": -33.56, "curve": 0.25, "c3": 0.75}, {"time": 1.25} + {"curve": 0.25, "c3": 0.75}, {"time": 0.1667, "x": -11.6, "y": 9.76, "curve": 0.25, "c3": 0.75}, {"time": 0.2833, "curve": 0.25, "c3": 0.75}, + {"time": 0.4667, "x": 45.36, "y": -33.56, "curve": 0.25, "c3": 0.75}, {"time": 0.75} ] }, "@body4": { "rotate": [ - {"angle": 3.34, "curve": 0.359, "c2": 0.43, "c3": 0.756}, {"time": 0.0833, "curve": 0.25, "c3": 0.75}, {"time": 0.25, "angle": -15.35, "curve": 0.25, "c3": 0.75}, - {"time": 0.4167, "angle": 14.26, "curve": 0.25, "c3": 0.75}, {"time": 0.5833, "angle": -15.35, "curve": 0.25, "c3": 0.75}, {"time": 0.75, "angle": 14.26, "curve": 0.25, "c3": 0.75}, - {"time": 0.9167, "angle": -15.35, "curve": 0.25, "c3": 0.75}, {"time": 1.0833, "angle": 14.26, "curve": 0.25, "c3": 0.75}, - {"time": 1.2, "angle": 5.04, "curve": 0.26, "c3": 0.618, "c4": 0.44}, {"time": 1.25, "angle": 3.34} + {"angle": -12.25, "curve": 0.372, "c2": 0.62, "c3": 0.712}, {"time": 0.05, "angle": -15.35, "curve": 0.25, "c3": 0.75}, {"time": 0.2167, "angle": 9.83, "curve": 0.25, "c3": 0.75}, + {"time": 0.3333, "angle": -15.35, "curve": 0.25, "c3": 0.75}, {"time": 0.5167, "angle": 14.26, "curve": 0.243, "c3": 0.686, "c4": 0.74}, {"time": 0.75, "angle": -12.25} ], "translate": [ - {"curve": 0.25, "c3": 0.75}, {"time": 0.1667, "x": -1.59, "y": 23.93, "curve": 0.25, "c3": 0.75}, {"time": 0.3333, "x": 6.55, "y": -29.78, "curve": 0.25, "c3": 0.75}, - {"time": 0.5, "x": -1.59, "y": 23.93, "curve": 0.25, "c3": 0.75}, {"time": 0.6667, "x": 6.55, "y": -29.78, "curve": 0.25, "c3": 0.75}, - {"time": 0.8333, "x": -1.59, "y": 23.93, "curve": 0.25, "c3": 0.75}, {"time": 1, "x": 6.55, "y": -29.78, "curve": 0.25, "c3": 0.75}, - {"time": 1.1167, "x": 18.66, "y": -28.5, "curve": 0.25, "c3": 0.75}, {"time": 1.25} + {"x": -1.59, "y": 23.93, "curve": 0.25, "c3": 0.75}, {"time": 0.1667, "x": 9, "y": 2.91, "curve": 0.25, "c3": 0.75}, {"time": 0.2833, "x": -1.59, "y": 23.93, "curve": 0.25, "c3": 0.75}, + {"time": 0.4667, "x": 6.55, "y": -29.78, "curve": 0.25, "c3": 0.75}, {"time": 0.75, "x": -1.59, "y": 23.93} ] }, "@body6": { "rotate": [ - {"angle": 19.63, "curve": 0.381, "c2": 0.59, "c3": 0.729}, {"time": 0.0333, "angle": 17.86, "curve": 0.25, "c3": 0.625, "c4": 0.5}, - {"time": 0.1, "angle": 8.93, "curve": 0.375, "c2": 0.5, "c3": 0.75}, {"time": 0.1667, "curve": 0.25, "c3": 0.75}, {"time": 0.3333, "angle": -5.24, "curve": 0.25, "c3": 0.75}, - {"time": 0.5, "angle": 25.77, "curve": 0.25, "c3": 0.75}, {"time": 0.6667, "angle": -5.24, "curve": 0.25, "c3": 0.75}, {"time": 0.8333, "angle": 25.77, "curve": 0.25, "c3": 0.75}, - {"time": 1, "angle": -5.24, "curve": 0.25, "c3": 0.75}, {"time": 1.1667, "angle": 25.77, "curve": 0.243, "c3": 0.658, "c4": 0.64}, {"time": 1.25, "angle": 19.63} + {"angle": 2.05, "curve": 0.382, "c2": 0.59, "c3": 0.73}, {"time": 0.0833, "angle": -5.24, "curve": 0.25, "c3": 0.75}, {"time": 0.25, "angle": 15.47, "curve": 0.25, "c3": 0.75}, + {"time": 0.3667, "angle": -5.24, "curve": 0.25, "c3": 0.75}, {"time": 0.55, "angle": 25.77, "curve": 0.243, "c3": 0.657, "c4": 0.63}, {"time": 0.75, "angle": 2.05} ], "translate": [ - {"x": -36.66, "y": 11.77, "curve": 0.333, "c2": 0.33, "c3": 0.758}, {"time": 0.1, "curve": 0.25, "c3": 0.75}, {"time": 0.2667, "x": 5.81, "y": -4.07, "curve": 0.25, "c3": 0.75}, - {"time": 0.4333, "x": -70.52, "y": 35.61, "curve": 0.25, "c3": 0.75}, {"time": 0.6, "x": 5.81, "y": -4.07, "curve": 0.25, "c3": 0.75}, - {"time": 0.7667, "x": -70.52, "y": 35.61, "curve": 0.25, "c3": 0.75}, {"time": 0.9333, "x": 5.81, "y": -4.07, "curve": 0.25, "c3": 0.75}, - {"time": 1.1, "x": -70.52, "y": 35.61, "curve": 0.25, "c3": 0.75}, {"time": 1.2167, "x": -44.95, "y": 14.44, "curve": 0.276, "c3": 0.621, "c4": 0.4}, - {"time": 1.25, "x": -36.66, "y": 11.77} + {"x": 5.81, "y": -4.07, "curve": 0.25, "c3": 0.75}, {"time": 0.1667, "x": -17.06, "y": -1.14, "curve": 0.25, "c3": 0.75}, + {"time": 0.2833, "x": 5.81, "y": -4.07, "curve": 0.25, "c3": 0.75}, {"time": 0.4667, "x": -70.52, "y": 35.61, "curve": 0.25, "c3": 0.75}, {"time": 0.75, "x": 5.81, "y": -4.07} ] }, "body-braid2": { "rotate": [ - {"curve": 0.25, "c3": 0.75}, {"time": 0.1667, "angle": -1.43, "curve": 0.25, "c3": 0.75}, {"time": 0.3333, "angle": 20.83, "curve": 0.25, "c3": 0.75}, - {"time": 0.5, "angle": -1.43, "curve": 0.25, "c3": 0.75}, {"time": 0.6667, "angle": 20.83, "curve": 0.25, "c3": 0.75}, {"time": 0.8333, "angle": -1.43, "curve": 0.25, "c3": 0.75}, - {"time": 1, "angle": 20.83, "curve": 0.25, "c3": 0.75}, {"time": 1.1167, "angle": 9.83, "curve": 0.25, "c3": 0.75}, {"time": 1.25} + {"angle": -1.43, "curve": 0.25, "c3": 0.75}, {"time": 0.1667, "angle": 9.33, "curve": 0.25, "c3": 0.75}, {"time": 0.2833, "angle": -1.43, "curve": 0.25, "c3": 0.75}, + {"time": 0.4667, "angle": 20.83, "curve": 0.25, "c3": 0.75}, {"time": 0.75, "angle": -1.43} ] }, "body-braid4": { "rotate": [ - {"angle": 20.25, "curve": 0.298, "c2": 0.2, "c3": 0.756}, {"time": 0.1167, "curve": 0.25, "c3": 0.75}, {"time": 0.2833, "angle": -11.53, "curve": 0.25, "c3": 0.75}, - {"time": 0.45, "angle": 27.46, "curve": 0.25, "c3": 0.75}, {"time": 0.6167, "angle": -11.53, "curve": 0.25, "c3": 0.75}, {"time": 0.7833, "angle": 27.46, "curve": 0.25, "c3": 0.75}, - {"time": 0.95, "angle": -11.53, "curve": 0.25, "c3": 0.75}, {"time": 1.1167, "angle": 27.46, "curve": 0.25, "c3": 0.75}, - {"time": 1.2333, "angle": 21.6, "curve": 0.299, "c3": 0.636, "c4": 0.36}, {"time": 1.25, "angle": 20.25} - ] + {"angle": 9.48, "curve": 0.372, "c2": 0.48, "c3": 0.752}, {"time": 0.15, "angle": -11.53, "curve": 0.25, "c3": 0.75}, {"time": 0.3167, "angle": 19.6, "curve": 0.25, "c3": 0.75}, + {"time": 0.4333, "angle": -11.53, "curve": 0.25, "c3": 0.75}, {"time": 0.6167, "angle": 27.46, "curve": 0.252, "c3": 0.622, "c4": 0.49}, {"time": 0.75, "angle": 9.48} + ], + "translate": [{"time": 0.1667, "x": -2.3, "y": -9.73}] }, "body-braid3": { "rotate": [ - {"angle": 9.2, "curve": 0.382, "c2": 0.56, "c3": 0.74}, {"time": 0.05, "curve": 0.25, "c3": 0.75}, {"time": 0.2167, "angle": -8.3, "curve": 0.25, "c3": 0.75}, - {"time": 0.3833, "angle": 33.27, "curve": 0.25, "c3": 0.75}, {"time": 0.55, "angle": -8.3, "curve": 0.25, "c3": 0.75}, {"time": 0.7167, "angle": 33.27, "curve": 0.25, "c3": 0.75}, - {"time": 0.8833, "angle": -8.3, "curve": 0.25, "c3": 0.75}, {"time": 1.05, "angle": 33.27, "curve": 0.25, "c3": 0.75}, - {"time": 1.1667, "angle": 27.41, "curve": 0.244, "c3": 0.641, "c4": 0.57}, {"time": 1.25, "angle": 9.2} + {"angle": -1.3, "curve": 0.378, "c2": 0.6, "c3": 0.722}, {"time": 0.0667, "angle": -8.3, "curve": 0.25, "c3": 0.75}, {"time": 0.2333, "angle": 20.19, "curve": 0.25, "c3": 0.75}, + {"time": 0.35, "angle": -8.3, "curve": 0.25, "c3": 0.75}, {"time": 0.5333, "angle": 33.27, "curve": 0.242, "c3": 0.67, "c4": 0.68}, {"time": 0.75, "angle": -1.3} ] }, "@body2": { "rotate": [ - {"angle": -17.59, "curve": 0.285, "c2": 0.17, "c3": 0.657, "c4": 0.63}, {"time": 0.0667, "angle": -6.29, "curve": 0.382, "c2": 0.56, "c3": 0.74}, - {"time": 0.1167, "curve": 0.25, "c3": 0.75}, {"time": 0.2833, "angle": 7.45, "curve": 0.25, "c3": 0.75}, {"time": 0.45, "angle": -18.73, "curve": 0.25, "c3": 0.75}, - {"time": 0.6167, "angle": 7.45, "curve": 0.25, "c3": 0.75}, {"time": 0.7833, "angle": -18.73, "curve": 0.25, "c3": 0.75}, {"time": 0.95, "angle": 7.45, "curve": 0.25, "c3": 0.75}, - {"time": 1.1167, "angle": -18.73, "curve": "stepped"}, {"time": 1.2333, "angle": -18.73, "curve": 0.299, "c3": 0.636, "c4": 0.36}, {"time": 1.25, "angle": -17.59} + {"angle": 3.04, "curve": 0.378, "c2": 0.6, "c3": 0.722}, {"time": 0.0667, "angle": 7.45, "curve": 0.25, "c3": 0.75}, {"time": 0.2333, "angle": 12.91, "curve": 0.25, "c3": 0.75}, + {"time": 0.35, "angle": 7.45, "curve": 0.25, "c3": 0.75}, {"time": 0.5333, "angle": -18.73, "curve": 0.242, "c3": 0.67, "c4": 0.68}, {"time": 0.75, "angle": 3.04} ], "translate": [ - {"x": 2.29, "y": -20.64, "curve": 0.375, "c2": 0.5, "c3": 0.75}, {"time": 0.0667, "curve": 0.25, "c3": 0.75}, {"time": 0.2333, "x": -0.08, "y": 1.15, "curve": 0.25, "c3": 0.75}, - {"time": 0.4, "x": 4.59, "y": -41.28, "curve": 0.25, "c3": 0.75}, {"time": 0.5667, "x": -0.08, "y": 1.15, "curve": 0.25, "c3": 0.75}, - {"time": 0.7333, "x": 4.59, "y": -41.28, "curve": 0.25, "c3": 0.75}, {"time": 0.9, "x": -0.08, "y": 1.15, "curve": 0.25, "c3": 0.75}, - {"time": 1.0667, "x": 4.59, "y": -41.28, "curve": "stepped"}, {"time": 1.1833, "x": 4.59, "y": -41.28, "curve": 0.25, "c3": 0.625, "c4": 0.5}, {"time": 1.25, "x": 2.29, "y": -20.64} + {"x": -0.08, "y": 1.15, "curve": 0.25, "c3": 0.75}, {"time": 0.1667, "curve": 0.25, "c3": 0.75}, {"time": 0.2833, "x": -0.08, "y": 1.15, "curve": 0.25, "c3": 0.75}, + {"time": 0.4667, "x": 4.59, "y": -41.28, "curve": 0.25, "c3": 0.75}, {"time": 0.75, "x": -0.08, "y": 1.15} ] }, "body-braid6": { "rotate": [ - {"angle": 13.81, "curve": 0.381, "c2": 0.59, "c3": 0.729}, {"time": 0.0333, "angle": 12.49, "curve": 0.25, "c3": 0.75}, {"time": 0.1667, "curve": 0.25, "c3": 0.75}, - {"time": 0.3333, "angle": -20.17, "curve": 0.25, "c3": 0.75}, {"time": 0.5, "angle": 18.35, "curve": 0.25, "c3": 0.75}, {"time": 0.6667, "angle": -20.17, "curve": 0.25, "c3": 0.75}, - {"time": 0.8333, "angle": 18.35, "curve": 0.25, "c3": 0.75}, {"time": 1, "angle": -20.17, "curve": 0.25, "c3": 0.75}, - {"time": 1.1667, "angle": 18.35, "curve": 0.243, "c3": 0.658, "c4": 0.64}, {"time": 1.25, "angle": 13.81} + {"angle": 14.32, "curve": 0.314, "c2": 0.26, "c3": 0.757}, {"time": 0.2333, "angle": -20.17, "curve": 0.25, "c3": 0.75}, {"time": 0.4, "angle": 13.39, "curve": 0.25, "c3": 0.75}, + {"time": 0.5167, "angle": -20.17, "curve": 0.25, "c3": 0.75}, {"time": 0.7, "angle": 18.35, "curve": 0.288, "c3": 0.628, "c4": 0.38}, {"time": 0.75, "angle": 14.32} ] }, "body-braid5": { "rotate": [ - {"angle": 20.04, "curve": 0.359, "c2": 0.43, "c3": 0.756}, {"time": 0.0833, "curve": 0.25, "c3": 0.75}, {"time": 0.25, "angle": -7.27, "curve": 0.25, "c3": 0.75}, - {"time": 0.4167, "angle": 36.02, "curve": 0.25, "c3": 0.75}, {"time": 0.5833, "angle": -7.27, "curve": 0.25, "c3": 0.75}, {"time": 0.75, "angle": 36.02, "curve": 0.25, "c3": 0.75}, - {"time": 0.9167, "angle": -7.27, "curve": 0.25, "c3": 0.75}, {"time": 1.0833, "angle": 36.02, "curve": 0.25, "c3": 0.75}, - {"time": 1.2, "angle": 30.17, "curve": 0.26, "c3": 0.618, "c4": 0.44}, {"time": 1.25, "angle": 20.04} + {"angle": 6.07, "curve": 0.382, "c2": 0.56, "c3": 0.738}, {"time": 0.1, "angle": -7.27, "curve": 0.25, "c3": 0.75}, {"time": 0.2667, "angle": 31.61, "curve": 0.25, "c3": 0.75}, + {"time": 0.3833, "angle": -7.27, "curve": 0.25, "c3": 0.75}, {"time": 0.5667, "angle": 36.02, "curve": 0.244, "c3": 0.645, "c4": 0.59}, {"time": 0.75, "angle": 6.07} ] }, "body-braid": { "rotate": [ - {"angle": 2.11, "curve": 0.379, "c2": 0.6, "c3": 0.724}, {"time": 0.0333, "curve": 0.25, "c3": 0.75}, {"time": 0.2, "angle": -2.68, "curve": 0.25, "c3": 0.75}, - {"time": 0.3667, "angle": 22.42, "curve": 0.25, "c3": 0.75}, {"time": 0.5333, "angle": -2.68, "curve": 0.25, "c3": 0.75}, {"time": 0.7, "angle": 22.42, "curve": 0.25, "c3": 0.75}, - {"time": 0.8667, "angle": -2.68, "curve": 0.25, "c3": 0.75}, {"time": 1.0333, "angle": 22.42, "curve": 0.25, "c3": 0.75}, - {"time": 1.15, "angle": 11.42, "curve": 0.242, "c3": 0.667, "c4": 0.67}, {"time": 1.25, "angle": 2.11} + {"angle": -1.25, "curve": 0.363, "c2": 0.64, "c3": 0.699}, {"time": 0.0333, "angle": -2.68, "curve": 0.25, "c3": 0.75}, {"time": 0.2, "angle": 10.61, "curve": 0.25, "c3": 0.75}, + {"time": 0.3167, "angle": -2.68, "curve": 0.25, "c3": 0.75}, {"time": 0.5, "angle": 22.42, "curve": 0.245, "c3": 0.705, "c4": 0.81}, {"time": 0.75, "angle": -1.25} ] }, - "@body5": { - "rotate": [ - {"time": 0.1667, "curve": 0.25, "c3": 0.75}, {"time": 0.3333, "angle": 0.5, "curve": 0.25, "c3": 0.75}, {"time": 0.5, "curve": 0.25, "c3": 0.75}, - {"time": 0.6667, "angle": 0.5, "curve": 0.25, "c3": 0.75}, {"time": 0.8333, "curve": 0.25, "c3": 0.75}, {"time": 1, "angle": 0.5, "curve": "stepped"}, - {"time": 1.1167, "angle": 0.5, "curve": 0.25, "c3": 0.75}, {"time": 1.25} - ] - } + "@body5": {"rotate": [{"time": 0.2833, "curve": 0.25, "c3": 0.75}, {"time": 0.4667, "angle": 0.5, "curve": 0.25, "c3": 0.75}, {"time": 0.75}]} }, - "events": [ - {"time": 0.3333, "name": "start-attack"}, {"time": 0.3667, "name": "hit"}, {"time": 0.5, "name": "hit"}, {"time": 0.6333, "name": "hit"}, {"time": 0.7667, "name": "hit"}, - {"time": 1.1167, "name": "start-attack"} - ] + "events": [{"time": 0.3, "name": "start-attack"}, {"time": 0.35, "name": "start-attack"}] }, - "928719411": { - "slots": {"eyes": {"attachment": [{"time": 1, "name": "eyes-shut"}, {"time": 1.1, "name": "eyes"}]}}, + "2051614957": { + "slots": { + "eyes": {"attachment": [{"time": 0.05, "name": "eyes-angry"}, {"time": 1.2333, "name": "eyes"}]}, + "mouth": {"attachment": [{"time": 0.05, "name": "mouth-bite"}, {"time": 0.4667, "name": "mouth-open"}, {"time": 1.0833, "name": "mouth-bite"}, {"time": 1.2333, "name": "mouth"}]} + }, "bones": { "@pivot-back": { "rotate": [ - {"curve": 0.313, "c3": 0.699}, {"time": 0.3333, "angle": 2.04, "curve": 0.313, "c3": 0.699}, {"time": 0.6667, "curve": 0.313, "c3": 0.699}, - {"time": 1, "angle": 1.79, "curve": 0.313, "c3": 0.699}, {"time": 1.3333} - ], - "translate": [ - {"curve": 0.313, "c3": 0.699}, {"time": 0.3333, "y": -6.53, "curve": 0.313, "c3": 0.699}, {"time": 0.6667, "curve": 0.313, "c3": 0.699}, - {"time": 1, "y": -8.86, "curve": 0.313, "c3": 0.699}, {"time": 1.3333} + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "angle": 4, "curve": 0, "c2": 0.6, "c3": 0.237}, {"time": 0.4167, "angle": -8.88, "curve": 0, "c2": 0.6, "c3": 0, "c4": 1.4}, + {"time": 1, "angle": 8.17, "curve": 0.701, "c4": 0.5}, {"time": 1.2333, "angle": 5, "curve": 0.461, "c3": 0.543}, {"time": 1.3333} ], - "scale": [{"curve": 0.313, "c3": 0.699}, {"time": 0.6667, "y": 0.99, "curve": 0.313, "c3": 0.699}, {"time": 1.3333}] - }, - "@leg-front-right": { "translate": [ - {"curve": 0.313, "c3": 0.699}, {"time": 0.3333, "x": -0.08, "y": -22.35, "curve": 0.313, "c3": 0.699}, {"time": 0.6667, "x": -0.04, "y": 2.46, "curve": 0.313, "c3": 0.699}, - {"time": 1, "x": -0.08, "y": -22.35, "curve": 0.313, "c3": 0.699}, {"time": 1.3333} + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": 33.65, "y": -5, "curve": 0, "c2": 0.6, "c3": 0.237}, + {"time": 0.4167, "x": -62.54, "y": 309.16, "curve": 0, "c2": 0.6, "c3": 0, "c4": 1.4}, {"time": 1, "x": 12.32, "y": 268.04, "curve": 0.701, "c4": 0.5}, {"time": 1.2333} ] }, - "@leg-front-left": { + "@shadow": { "translate": [ - {"curve": 0.313, "c3": 0.699}, {"time": 0.3333, "x": 5.41, "y": -6.53, "curve": 0.313, "c3": 0.699}, {"time": 0.6667, "x": -0.03, "y": 1.81, "curve": 0.313, "c3": 0.699}, - {"time": 1, "x": 4.51, "y": -7.88, "curve": 0.313, "c3": 0.699}, {"time": 1.3333} + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": 24.43, "curve": 0, "c2": 0.6, "c3": 0.237}, {"time": 0.4167, "x": -70.38, "curve": 0, "c2": 0.6, "c3": 0, "c4": 1.4}, + {"time": 1, "x": 5.15, "curve": 0.701, "c4": 0.5}, {"time": 1.2333, "x": -8.95, "curve": 0.461, "c3": 0.543}, {"time": 1.3333} ], "scale": [ - {"curve": 0.313, "c3": 0.699}, {"time": 0.3333, "x": 0.92, "curve": 0.313, "c3": 0.699}, {"time": 0.6667, "curve": 0.313, "c3": 0.699}, - {"time": 1, "x": 0.92, "curve": 0.313, "c3": 0.699}, {"time": 1.3333} + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": 1.08, "y": 1.08, "curve": 0, "c2": 0.6, "c3": 0.237}, + {"time": 0.4167, "x": 0.85, "y": 0.85, "curve": 0, "c2": 0.6, "c3": 0, "c4": 1.4}, {"time": 1, "x": 0.9, "y": 0.9, "curve": 0.701, "c4": 0.5}, + {"time": 1.2333, "x": 1.1, "y": 1.1, "curve": 0.461, "c3": 0.543}, {"time": 1.3333} ] }, - "@leg-back-left": { + "@leg-front-left": { "translate": [ - {"curve": 0.313, "c3": 0.699}, {"time": 0.3333, "x": 3.28, "y": -4.61, "curve": 0.313, "c3": 0.699}, {"time": 0.6667, "x": -0.03, "y": 1.69, "curve": 0.313, "c3": 0.699}, - {"time": 1, "x": 3.25, "y": -6.37, "curve": 0.313, "c3": 0.699}, {"time": 1.3333} - ], - "scale": [ - {"curve": 0.313, "c3": 0.699}, {"time": 0.3333, "x": 0.952, "curve": 0.313, "c3": 0.699}, {"time": 0.6667, "curve": 0.313, "c3": 0.699}, - {"time": 1, "x": 0.951, "curve": 0.313, "c3": 0.699}, {"time": 1.3333} + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": -0.29, "y": -5.47, "curve": 0, "c2": 0.6, "c3": 0.237}, {"time": 0.4167, "curve": "stepped"}, + {"time": 1, "curve": 0.701, "c4": 0.5}, {"time": 1.2333, "x": -0.95, "y": -14.45, "curve": 0.461, "c3": 0.543}, {"time": 1.3333} ] }, - "@pivot-main": { - "scale": [ - {"curve": 0.313, "c3": 0.699}, {"time": 0.3333, "y": 0.98, "curve": 0.313, "c3": 0.699}, {"time": 0.6667, "curve": 0.313, "c3": 0.699}, - {"time": 1, "y": 0.98, "curve": 0.313, "c3": 0.699}, {"time": 1.3333} + "@leg-front-right": { + "translate": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": -0.29, "y": -5.47, "curve": 0, "c2": 0.6, "c3": 0.237}, {"time": 0.4167, "curve": "stepped"}, + {"time": 1, "curve": 0.701, "c4": 0.5}, {"time": 1.2333, "x": -1.66, "y": -25.29, "curve": 0.461, "c3": 0.543}, {"time": 1.3333} ] }, "tail": { - "rotate": [{"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "angle": 4.98, "curve": 0.313, "c3": 0.699}, {"time": 1, "angle": -9.69, "curve": 0.313, "c3": 0.699}, {"time": 1.3333}] - }, - "back": { - "rotate": [{"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "angle": -4.48, "curve": 0.313, "c3": 0.699}, {"time": 1, "angle": 4.37, "curve": 0.313, "c3": 0.699}, {"time": 1.3333}] - }, - "ear-right": {"rotate": [{"curve": 0.461, "c3": 0.543}, {"time": 0.6667, "angle": -1.95, "curve": 0.461, "c3": 0.543}, {"time": 1.3333}]}, - "ear-left": {"rotate": [{"curve": 0.461, "c3": 0.543}, {"time": 0.6667, "angle": -1.95, "curve": 0.461, "c3": 0.543}, {"time": 1.3333}]}, - "@shadow": { - "scale": [ - {"curve": 0.306, "c3": 0.695}, {"time": 0.3333, "x": 1.05, "y": 1.05, "curve": 0.306, "c3": 0.695}, {"time": 0.6667, "curve": 0.306, "c3": 0.695}, - {"time": 1, "x": 1.05, "y": 1.05, "curve": 0.306, "c3": 0.695}, {"time": 1.3333} - ] - }, - "@body2": { "rotate": [ - {"angle": -8.36, "curve": 0.38, "c2": 0.53, "c3": 0.746}, {"time": 0.15, "angle": -11.67, "curve": 0.25, "c3": 0.75}, {"time": 0.4833, "angle": -0.58, "curve": 0.25, "c3": 0.75}, - {"time": 0.8167, "angle": -7.42, "curve": 0.25, "c3": 0.75}, {"time": 1.15, "angle": -3.79, "curve": 0.251, "c3": 0.623, "c4": 0.49}, - {"time": 1.3167, "angle": -7.52, "curve": 0.334, "c2": 0.33, "c3": 0.668, "c4": 0.67}, {"time": 1.3333, "angle": -8.36} - ], - "translate": [ - {"x": 6.58, "y": -2.34, "curve": 0.379, "c2": 0.6, "c3": 0.723}, {"time": 0.0833, "x": 7.01, "y": -3.66, "curve": 0.25, "c3": 0.75}, - {"time": 0.4167, "x": 4.52, "y": 4.02, "curve": 0.25, "c3": 0.75}, {"time": 0.75, "x": 23.63, "y": -17.11, "curve": 0.25, "c3": 0.75}, - {"time": 1.0833, "x": 4.52, "y": 4.02, "curve": 0.251, "c3": 0.623, "c4": 0.49}, {"time": 1.25, "x": 5.7, "y": 0.38, "curve": 0.343, "c2": 0.36, "c3": 0.688, "c4": 0.73}, - {"time": 1.3333, "x": 6.58, "y": -2.34} + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "angle": 17.93, "curve": 0, "c2": 0.6, "c3": 0.237}, {"time": 0.4167, "angle": -15.3, "curve": 0, "c2": 0.6, "c3": 0, "c4": 1.4}, + {"time": 1, "angle": 24.81, "curve": 0.701, "c4": 0.5}, {"time": 1.2333, "angle": -15.84, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 1.3333} ] }, "@body3": { "rotate": [ - {"angle": -3.14, "curve": 0.324, "c2": 0.3, "c3": 0.661, "c4": 0.65}, {"time": 0.05, "angle": -5.6, "curve": 0.373, "c2": 0.49, "c3": 0.751}, - {"time": 0.2333, "angle": -11.83, "curve": 0.25, "c3": 0.75}, {"time": 0.5667, "curve": 0.25, "c3": 0.75}, {"time": 0.9, "angle": -10.68, "curve": 0.25, "c3": 0.75}, - {"time": 1.2333, "curve": 0.266, "c3": 0.618, "c4": 0.42}, {"time": 1.3333, "angle": -3.14} + {"angle": -0.6, "curve": 0.36, "c2": 0.64, "c3": 0.695}, {"time": 0.05, "curve": 0.25, "c3": 0.75}, {"time": 0.2667, "angle": -3.77, "curve": 0.25, "c3": 0.75}, + {"time": 0.4833, "angle": 11.65, "curve": 0.25, "c3": 0.75}, {"time": 0.7167, "angle": 2.65, "curve": 0.25, "c3": 0.75}, + {"time": 1.0167, "angle": 16.05, "curve": 0.245, "c3": 0.711, "c4": 0.83}, {"time": 1.3333, "angle": -0.6} ], "translate": [ - {"x": 1.24, "y": -7.54, "curve": 0.336, "c2": 0.34, "c3": 0.673, "c4": 0.69}, {"time": 0.05, "x": 1.78, "y": -10.88, "curve": 0.382, "c2": 0.56, "c3": 0.738}, - {"time": 0.1667, "x": 2.61, "y": -15.92, "curve": 0.25, "c3": 0.75}, {"time": 0.5167, "curve": 0.25, "c3": 0.75}, {"time": 0.85, "x": -9.39, "y": -9.55, "curve": 0.25, "c3": 0.75}, - {"time": 1.1833, "curve": 0.251, "c3": 0.623, "c4": 0.49}, {"time": 1.3333, "x": 1.24, "y": -7.54} + {"time": 0.2167, "curve": 0.25, "c3": 0.75}, {"time": 0.45, "x": 45.36, "y": -33.56, "curve": 0.25, "c3": 0.75}, {"time": 0.6667, "curve": 0.25, "c3": 0.75}, + {"time": 0.8833, "x": 45.36, "y": -33.56, "curve": 0.25, "c3": 0.75}, {"time": 1.3333} ] }, "@body4": { "rotate": [ - {"angle": 2.61, "curve": 0.382, "c2": 0.56, "c3": 0.738}, {"time": 0.1167, "curve": 0.25, "c3": 0.75}, {"time": 0.45, "angle": 9.48, "curve": 0.25, "c3": 0.75}, - {"time": 0.7833, "curve": 0.25, "c3": 0.75}, {"time": 1.1333, "angle": 8.25, "curve": 0.249, "c3": 0.627, "c4": 0.51}, - {"time": 1.3, "angle": 3.91, "curve": 0.337, "c2": 0.34, "c3": 0.672, "c4": 0.68}, {"time": 1.3333, "angle": 2.61} + {"angle": 1.85, "curve": 0.375, "c2": 0.62, "c3": 0.716}, {"time": 0.0833, "curve": 0.25, "c3": 0.75}, {"time": 0.3167, "angle": -15.35, "curve": 0.25, "c3": 0.75}, + {"time": 0.5333, "angle": 7.12, "curve": 0.25, "c3": 0.75}, {"time": 0.75, "angle": 2.63, "curve": 0.25, "c3": 0.75}, + {"time": 0.9833, "angle": 14.26, "curve": 0.243, "c3": 0.68, "c4": 0.71}, {"time": 1.3333, "angle": 1.85} ], "translate": [ - {"x": 0.91, "y": 5.06, "curve": 0.368, "c2": 0.47, "c3": 0.753}, {"time": 0.1833, "x": 5.79, "y": 17.08, "curve": 0.25, "c3": 0.75}, - {"time": 0.5167, "x": -7.29, "y": -4.4, "curve": 0.25, "c3": 0.75}, {"time": 0.85, "x": 5.79, "y": 17.08, "curve": 0.25, "c3": 0.75}, - {"time": 1.2, "x": -2.61, "y": -3.63, "curve": 0.266, "c3": 0.618, "c4": 0.42}, {"time": 1.3, "x": -0.37, "y": 1.9, "curve": 0.326, "c2": 0.31, "c3": 0.661, "c4": 0.65}, - {"time": 1.3333, "x": 0.91, "y": 5.06} + {"curve": 0.25, "c3": 0.75}, {"time": 0.2167, "x": -1.59, "y": 23.93, "curve": 0.25, "c3": 0.75}, {"time": 0.45, "x": 32.21, "y": -54.88, "curve": 0.25, "c3": 0.75}, + {"time": 0.6667, "x": 24.69, "y": -10.35, "curve": 0.25, "c3": 0.75}, {"time": 0.8833, "x": 12.84, "y": -10.83, "curve": 0.25, "c3": 0.75}, {"time": 1.3333} ] }, "@body6": { "rotate": [ - {"angle": 11.32, "curve": 0.309, "c2": 0.21, "c3": 0.645, "c4": 0.55}, {"time": 0.0333, "angle": 10.61, "curve": 0.32, "c2": 0.29, "c3": 0.757}, - {"time": 0.3, "angle": 4.64, "curve": 0.25, "c3": 0.75}, {"time": 0.65, "angle": 16.86, "curve": 0.25, "c3": 0.75}, {"time": 0.9833, "angle": 4.64, "curve": 0.25, "c3": 0.75}, - {"time": 1.3167, "angle": 11.5, "curve": 0.31, "c3": 0.645, "c4": 0.35}, {"time": 1.3333, "angle": 11.32} + {"angle": 4.68, "curve": 0.348, "c2": 0.39, "c3": 0.683, "c4": 0.73}, {"time": 0.0667, "angle": 2.14, "curve": 0.369, "c2": 0.63, "c3": 0.706}, + {"time": 0.1333, "curve": 0.25, "c3": 0.75}, {"time": 0.35, "angle": -5.24, "curve": 0.25, "c3": 0.75}, {"time": 0.5667, "angle": 25.77, "curve": 0.25, "c3": 0.75}, + {"time": 0.8, "angle": 8.55, "curve": 0.25, "c3": 0.75}, {"time": 1.0167, "angle": 25.77, "curve": 0.242, "c3": 0.667, "c4": 0.67}, {"time": 1.3333, "angle": 4.68} ], "translate": [ - {"x": 1.53, "y": 2.55, "curve": 0.364, "c2": 0.64, "c3": 0.7}, {"time": 0.0333, "x": 1.62, "y": 2.71, "curve": 0.25, "c3": 0.75}, {"time": 0.3833, "curve": 0.25, "c3": 0.75}, - {"time": 0.7167, "y": 11.45, "curve": 0.25, "c3": 0.75}, {"time": 1.05, "curve": 0.244, "c3": 0.704, "c4": 0.81}, {"time": 1.3333, "x": 1.53, "y": 2.55} + {"x": -3, "y": 1.52, "curve": 0.36, "c2": 0.64, "c3": 0.695}, {"time": 0.0667, "curve": 0.25, "c3": 0.75}, {"time": 0.2833, "x": 5.81, "y": -4.07, "curve": 0.25, "c3": 0.75}, + {"time": 0.5, "x": -70.52, "y": 35.61, "curve": 0.25, "c3": 0.75}, {"time": 0.7333, "x": 5.81, "y": -4.07, "curve": 0.25, "c3": 0.75}, + {"time": 0.95, "x": -70.52, "y": 35.61, "curve": 0.245, "c3": 0.711, "c4": 0.83}, {"time": 1.3333, "x": -3, "y": 1.52} + ] + }, + "body-braid2": { + "rotate": [ + {"angle": 0.89, "curve": 0.36, "c2": 0.64, "c3": 0.695}, {"time": 0.05, "curve": 0.25, "c3": 0.75}, {"time": 0.2667, "angle": -1.43, "curve": 0.25, "c3": 0.75}, + {"time": 0.4833, "angle": 20.83, "curve": 0.25, "c3": 0.75}, {"time": 0.7167, "angle": -1.43, "curve": 0.25, "c3": 0.75}, + {"time": 0.9333, "angle": 20.83, "curve": 0.245, "c3": 0.711, "c4": 0.83}, {"time": 1.3333, "angle": 0.89} ] }, "body-braid4": { "rotate": [ - {"angle": -5.26, "curve": 0.368, "c2": 0.47, "c3": 0.753}, {"time": 0.1833, "angle": 6.8, "curve": 0.25, "c3": 0.75}, {"time": 0.5167, "angle": -13.91, "curve": 0.25, "c3": 0.75}, - {"time": 0.85, "angle": 7.47, "curve": 0.25, "c3": 0.75}, {"time": 1.2, "angle": -13.91, "curve": 0.277, "c3": 0.621, "c4": 0.4}, - {"time": 1.2667, "angle": -10.32, "curve": 0.315, "c2": 0.28, "c3": 0.655, "c4": 0.63}, {"time": 1.3333, "angle": -5.26} + {"angle": 11.92, "curve": 0.379, "c2": 0.52, "c3": 0.747}, {"time": 0.2, "curve": 0.25, "c3": 0.75}, {"time": 0.4167, "angle": -11.53, "curve": 0.25, "c3": 0.75}, + {"time": 0.65, "angle": 27.46, "curve": 0.25, "c3": 0.75}, {"time": 0.8667, "angle": -11.53, "curve": 0.25, "c3": 0.75}, + {"time": 1.0833, "angle": 27.46, "curve": 0.247, "c3": 0.63, "c4": 0.53}, {"time": 1.3333, "angle": 11.92} ] }, "body-braid3": { "rotate": [ - {"angle": 11.86, "curve": 0.37, "c2": 0.63, "c3": 0.708}, {"time": 0.05, "angle": 12.42, "curve": 0.25, "c3": 0.75}, {"time": 0.3833, "angle": 6.08, "curve": 0.25, "c3": 0.75}, - {"time": 0.7167, "angle": 22.13, "curve": 0.25, "c3": 0.75}, {"time": 1.0667, "angle": 6.08, "curve": 0.244, "c3": 0.644, "c4": 0.58}, - {"time": 1.2667, "angle": 10.41, "curve": 0.353, "c2": 0.41, "c3": 0.693, "c4": 0.76}, {"time": 1.3333, "angle": 11.86} + {"angle": 6.14, "curve": 0.379, "c2": 0.6, "c3": 0.724}, {"time": 0.1167, "curve": 0.25, "c3": 0.75}, {"time": 0.3333, "angle": -8.3, "curve": 0.25, "c3": 0.75}, + {"time": 0.55, "angle": 33.27, "curve": 0.25, "c3": 0.75}, {"time": 0.7833, "angle": -8.3, "curve": 0.25, "c3": 0.75}, + {"time": 1, "angle": 33.27, "curve": 0.242, "c3": 0.667, "c4": 0.67}, {"time": 1.3333, "angle": 6.14} ] }, - "body-braid2": { + "@body2": { "rotate": [ - {"angle": 5.39, "curve": 0.267, "c2": 0.07, "c3": 0.752}, {"time": 0.3167, "angle": -2.62, "curve": 0.25, "c3": 0.75}, {"time": 0.65, "angle": 5.5, "curve": 0.25, "c3": 0.75}, - {"time": 0.9833, "angle": -2.62, "curve": 0.243, "c3": 0.691, "c4": 0.76}, {"time": 1.2667, "angle": 4.76, "curve": 0.37, "c2": 0.63, "c3": 0.708}, {"time": 1.3333, "angle": 5.39} + {"angle": -8.07, "curve": 0.344, "c2": 0.37, "c3": 0.684, "c4": 0.72}, {"time": 0.0833, "angle": -3.45, "curve": 0.379, "c2": 0.6, "c3": 0.724}, {"time": 0.2, "curve": 0.25, "c3": 0.75}, + {"time": 0.4167, "angle": 7.45, "curve": 0.25, "c3": 0.75}, {"time": 0.65, "angle": 17.59, "curve": 0.25, "c3": 0.75}, {"time": 0.8667, "angle": 14.17, "curve": 0.25, "c3": 0.75}, + {"time": 1.0833, "angle": -2.86, "curve": 0.247, "c3": 0.63, "c4": 0.53}, {"time": 1.3333, "angle": -8.07} ], "translate": [ - {"x": 1.68, "y": -1.19, "curve": 0.32, "c2": 0.29, "c3": 0.757}, {"time": 0.2667, "x": 12.93, "y": -9.14, "curve": 0.25, "c3": 0.75}, {"time": 0.6, "curve": 0.25, "c3": 0.75}, - {"time": 0.9333, "x": 12.93, "y": -9.14, "curve": 0.25, "c3": 0.75}, {"time": 1.2667, "curve": 0.284, "c3": 0.625, "c4": 0.38}, {"time": 1.3333, "x": 1.68, "y": -1.19} + {"x": 0.6, "y": -5.37, "curve": 0.375, "c2": 0.62, "c3": 0.716}, {"time": 0.0833, "curve": 0.25, "c3": 0.75}, {"time": 0.3167, "x": -0.08, "y": 1.15, "curve": 0.25, "c3": 0.75}, + {"time": 0.5333, "x": 4.59, "y": -41.28, "curve": 0.25, "c3": 0.75}, {"time": 0.75, "x": -0.08, "y": 1.15, "curve": 0.25, "c3": 0.75}, + {"time": 0.9833, "x": 4.59, "y": -41.28, "curve": 0.243, "c3": 0.68, "c4": 0.71}, {"time": 1.3333, "x": 0.6, "y": -5.37} ] }, "body-braid6": { "rotate": [ - {"angle": -18.49, "curve": 0.356, "c2": 0.42, "c3": 0.756}, {"time": 0.2167, "angle": -2.18, "curve": 0.25, "c3": 0.75}, {"time": 0.55, "angle": -26.07, "curve": 0.25, "c3": 0.75}, - {"time": 0.8833, "angle": -1.52, "curve": 0.25, "c3": 0.75}, {"time": 1.2167, "angle": -26.07, "curve": 0.262, "c3": 0.618, "c4": 0.44}, {"time": 1.3333, "angle": -18.49} + {"angle": 14.96, "curve": 0.333, "c2": 0.33, "c3": 0.758}, {"time": 0.3333, "curve": 0.25, "c3": 0.75}, {"time": 0.55, "angle": -20.17, "curve": 0.25, "c3": 0.75}, + {"time": 0.7833, "angle": 18.35, "curve": 0.25, "c3": 0.75}, {"time": 1, "angle": -20.17, "curve": 0.25, "c3": 0.75}, + {"time": 1.2167, "angle": 18.35, "curve": 0.276, "c3": 0.621, "c4": 0.4}, {"time": 1.3333, "angle": 14.96} ] }, "body-braid5": { "rotate": [ - {"angle": 2.96, "curve": 0.382, "c2": 0.58, "c3": 0.734}, {"time": 0.1, "angle": 5.29, "curve": 0.25, "c3": 0.75}, {"time": 0.45, "angle": -3.41, "curve": 0.25, "c3": 0.75}, - {"time": 0.7833, "angle": 17.16, "curve": 0.25, "c3": 0.75}, {"time": 1.1167, "angle": -3.41, "curve": 0.243, "c3": 0.651, "c4": 0.61}, {"time": 1.3333, "angle": 2.96} + {"angle": 10.97, "curve": 0.382, "c2": 0.57, "c3": 0.737}, {"time": 0.15, "curve": 0.25, "c3": 0.75}, {"time": 0.3833, "angle": -7.27, "curve": 0.25, "c3": 0.75}, + {"time": 0.6, "angle": 36.02, "curve": 0.25, "c3": 0.75}, {"time": 0.8167, "angle": -7.27, "curve": 0.25, "c3": 0.75}, + {"time": 1.05, "angle": 36.02, "curve": 0.244, "c3": 0.646, "c4": 0.59}, {"time": 1.3333, "angle": 10.97} ] }, "body-braid": { "rotate": [ - {"angle": 10.09, "curve": 0.355, "c2": 0.65, "c3": 0.69}, {"time": 0.0333, "angle": 10.3, "curve": 0.25, "c3": 0.75}, {"time": 0.3667, "angle": 2.79, "curve": 0.25, "c3": 0.75}, - {"time": 0.7, "angle": 10.3, "curve": 0.25, "c3": 0.75}, {"time": 1.0333, "angle": 2.79, "curve": 0.246, "c3": 0.718, "c4": 0.86}, {"time": 1.3333, "angle": 10.09} - ], - "translate": [ - {"curve": 0.25, "c3": 0.75}, {"time": 0.3333, "x": 12.57, "y": -7.71, "curve": 0.25, "c3": 0.75}, {"time": 0.6667, "curve": 0.25, "c3": 0.75}, - {"time": 1, "x": 12.57, "y": -7.71, "curve": 0.25, "c3": 0.75}, {"time": 1.3333} + {"angle": 1.86, "curve": 0.369, "c2": 0.63, "c3": 0.706}, {"time": 0.0667, "curve": 0.25, "c3": 0.75}, {"time": 0.2833, "angle": -2.68, "curve": 0.25, "c3": 0.75}, + {"time": 0.5167, "angle": 22.42, "curve": 0.25, "c3": 0.75}, {"time": 0.7333, "angle": -2.68, "curve": 0.25, "c3": 0.75}, + {"time": 0.95, "angle": 22.42, "curve": 0.244, "c3": 0.694, "c4": 0.77}, {"time": 1.3333, "angle": 1.86} ] }, "@body5": { "rotate": [ - {"angle": 1.28, "curve": 0.364, "c2": 0.64, "c3": 0.7}, {"time": 0.0333, "angle": 1.36, "curve": 0.25, "c3": 0.75}, {"time": 0.3833, "curve": 0.25, "c3": 0.75}, - {"time": 0.7167, "angle": 1.36, "curve": 0.25, "c3": 0.75}, {"time": 1.05, "curve": 0.244, "c3": 0.704, "c4": 0.81}, {"time": 1.3333, "angle": 1.28} + {"time": 0.2167, "curve": 0.25, "c3": 0.75}, {"time": 0.45, "angle": 0.5, "curve": 0.25, "c3": 0.75}, {"time": 0.6667, "curve": 0.25, "c3": 0.75}, + {"time": 0.8833, "angle": 0.5, "curve": 0.25, "c3": 0.75}, {"time": 1.3333} ] } - } + }, + "events": [{"time": 0.4667, "name": "start-attack"}, {"time": 0.7, "name": "start-attack"}, {"time": 1.0167, "name": "start-attack"}] }, - "2954738379": { + "2283838223": { "slots": { - "eyes": {"attachment": [{"time": 0.0833, "name": "eyes-shut"}, {"time": 0.1667, "name": "eyes-angry"}, {"time": 0.5833, "name": "eyes-shut"}, {"time": 0.6667, "name": "eyes"}]}, - "mouth": {"attachment": [{"time": 0.0833, "name": "mouth-bite"}, {"time": 0.3667, "name": "mouth-open"}, {"time": 0.5833, "name": "mouth"}]} + "eyes": {"attachment": [{"time": 0.0167, "name": "eyes-angry"}, {"time": 0.75, "name": "eyes-shut"}, {"time": 0.8333, "name": "eyes"}]}, + "leg-back-left": {"attachment": [{"time": 0.35, "name": "sumo-leg-back-left-long"}, {"time": 0.5833, "name": "sumo-leg-back-left"}]}, + "mouth": {"attachment": [{"time": 0.0167, "name": "mouth-bite"}, {"time": 0.2667, "name": "mouth-open"}, {"time": 0.5833, "name": "mouth-bite"}, {"time": 0.8333, "name": "mouth"}]} }, "bones": { "@pivot-back": { "rotate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.15, "angle": 3.67, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.3333, "angle": -14.29, "curve": 0.854, "c4": 0.1}, - {"time": 0.3667, "angle": 15.82}, {"time": 0.45, "angle": 16.67, "curve": 0.315, "c4": 0.8}, {"time": 0.5667, "angle": 4.4, "curve": 0, "c2": 0.1, "c3": 0.853}, - {"time": 0.6333, "angle": 6.79, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.8333} + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "angle": -3.92, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "angle": 2.51, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.3333, "angle": -6, "curve": "stepped"}, {"time": 0.35, "angle": -16}, {"time": 0.5667, "angle": -16.5, "curve": "stepped"}, {"time": 0.5833, "curve": 0.313, "c3": 0.699}, + {"time": 0.75, "angle": 6, "curve": 0.313, "c3": 0.699}, {"time": 0.9167} ], "translate": [ - {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.2167, "x": 8.02, "curve": 0, "c2": 0.4, "c3": 0.383}, {"time": 0.3333, "x": -54.3, "y": 61.69, "curve": 0.854, "c4": 0.1}, - {"time": 0.3667, "x": -60.41, "y": 130.13}, {"time": 0.45, "x": -60.41, "y": 130.01, "curve": 0.315, "c4": 0.8}, {"time": 0.5667} - ] + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "x": 71.93, "y": -12.95, "curve": "stepped"}, {"time": 0.25, "x": 71.93, "y": -12.95, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.3333, "x": -135.5, "curve": "stepped"}, {"time": 0.35, "x": -560.54, "y": 85.29}, {"time": 0.5667, "x": -562.89, "y": 81.57, "curve": "stepped"}, + {"time": 0.5833, "x": -151.24, "curve": 0.313, "c3": 0.699}, {"time": 0.75, "x": -151.24, "y": 4.06, "curve": 0.313, "c3": 0.699}, {"time": 0.9167} + ], + "scale": [{"time": 0.3333, "curve": "stepped"}, {"time": 0.35, "x": -1, "curve": "stepped"}, {"time": 0.5667, "x": -1, "curve": "stepped"}, {"time": 0.5833}] }, - "@leg-front-right": { + "@shadow": { "translate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.2167, "x": -18.54, "y": -11.57}, {"time": 0.25, "x": -23.07, "y": 10.08, "curve": 0, "c2": 0.4, "c3": 0.383}, - {"time": 0.3333, "x": 33.2, "y": -16.27, "curve": 0.854, "c4": 0.1}, {"time": 0.3667, "x": 22.95, "y": 2.68, "curve": "stepped"}, - {"time": 0.45, "x": 22.95, "y": 2.68, "curve": 0.157, "c2": 0.33, "c3": 0.727}, {"time": 0.5333, "x": 29.92, "y": -4.24, "curve": 0.779, "c4": 0.4}, - {"time": 0.5667, "x": -1.45, "y": -24.11, "curve": 0, "c2": 0.1, "c3": 0.853}, {"time": 0.6333, "x": -3.73, "y": -46.5, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.6667} + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 61.96, "curve": "stepped"}, {"time": 0.25, "x": 61.96, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.3333, "x": -143.36, "curve": "stepped"}, {"time": 0.35, "x": -143.36}, {"time": 0.5667, "x": -157.56, "curve": "stepped"}, {"time": 0.5833, "x": -161.35, "curve": "stepped"}, + {"time": 0.75, "x": -161.35, "curve": 0.313, "c3": 0.699}, {"time": 0.9167} ], "scale": [ - {"time": 0.2, "curve": 0.315, "c4": 0.8}, {"time": 0.25, "x": 1.5, "curve": 0, "c2": 0.3, "c3": 0.539}, {"time": 0.3333, "curve": 0.854, "c4": 0.1}, {"time": 0.3667, "x": 1.5}, - {"time": 0.45, "x": 1.51, "curve": 0.157, "c2": 0.33, "c3": 0.727}, {"time": 0.4833} + {"time": 0.0833, "curve": 0, "c2": 0.26, "c3": 0.369, "c4": 0.62}, {"time": 0.25, "x": 1.06, "y": 1.06, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "curve": "stepped"}, + {"time": 0.35}, {"time": 0.5667, "x": 1.08, "y": 1.08, "curve": "stepped"}, {"time": 0.5833, "curve": 0.313, "c3": 0.699}, + {"time": 0.75, "x": 1.08, "y": 1.08, "curve": 0.313, "c3": 0.699}, {"time": 0.9167} ] }, - "@leg-front-left": { + "leg-back-left-IK": { "translate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.2167, "x": -6.84, "y": -9.77, "curve": "stepped"}, {"time": 0.5667, "x": -6.84, "y": -9.77, "curve": 0, "c2": 0.1, "c3": 0.85}, - {"time": 0.6333, "x": -6.29, "y": -18.69, "curve": 0, "c2": 0.23, "c3": 0.365, "c4": 0.58}, {"time": 0.6667, "x": -3.64, "y": -2.46, "curve": 0.177, "c2": 0.35, "c3": 0.731}, - {"time": 0.8333} + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.1333, "x": 80.9, "curve": 0.161, "c3": 0.854}, {"time": 0.25, "x": 49.4, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.3333, "x": -113.37, "y": 35.8, "curve": "stepped"}, {"time": 0.35, "x": -685.28, "y": 163.59}, {"time": 0.5667, "x": -686.48, "y": 176.51, "curve": "stepped"}, + {"time": 0.5833, "x": -134.74, "curve": "stepped"}, {"time": 0.75, "x": -134.74, "curve": 0.313, "c3": 0.699}, {"time": 0.9167} ] }, - "@leg-back-left": { + "leg-front-right-IK": { "translate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.2167, "x": -0.11, "y": -2.73, "curve": "stepped"}, {"time": 0.5667, "x": -0.11, "y": -2.73, "curve": 0, "c2": 0.1, "c3": 0.85}, - {"time": 0.6333, "x": -0.46, "y": -6.19, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.8333} + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 30.89, "y": 11.74, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "x": 42.9, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.3333, "x": -172.87, "y": 28.32, "curve": "stepped"}, {"time": 0.35, "x": 425.15, "curve": "stepped"}, {"time": 0.5667, "x": 425.15, "curve": "stepped"}, + {"time": 0.5833, "x": -180.48, "curve": "stepped"}, {"time": 0.75, "x": -180.48, "curve": 0.313, "c3": 0.699}, {"time": 0.9167} ] }, - "@pivot-main": { + "leg-front-left-IK": { "translate": [ - {"time": 0.15, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "x": -73.35, "y": 43, "curve": "stepped"}, {"time": 0.45, "x": -73.35, "y": 43, "curve": 0.315, "c4": 0.8}, - {"time": 0.5667, "x": -146.44, "curve": "stepped"}, {"time": 0.6333, "x": -146.44, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.7333, "x": -45.61, "y": 50.15, "curve": 0.315, "c4": 0.8}, {"time": 0.8333} - ], - "scale": [{"time": 0.5667, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.6333, "y": 0.98, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.7333}] + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "x": 8.25, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "x": 42.9, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.3333, "x": -192.09, "y": 31.17, "curve": "stepped"}, {"time": 0.35, "x": -197.17}, {"time": 0.5667, "x": -192.36, "y": 4.81, "curve": "stepped"}, + {"time": 0.5833, "x": -180.48, "curve": "stepped"}, {"time": 0.75, "x": -180.48, "curve": 0.313, "c3": 0.699}, {"time": 0.9167} + ] }, - "leg-front-right-IK": { + "@leg-front-left": { "translate": [ - {"time": 0.15, "curve": 0, "c2": 0.18, "c3": 0.416, "c4": 0.58}, {"time": 0.2167, "x": 46.14, "y": 69.67}, {"time": 0.25, "x": 16.06, "y": 77.81, "curve": 0, "c2": 0.6, "c3": 0.237}, - {"time": 0.3333, "x": -177.78, "y": 257.33, "curve": 0.854, "c4": 0.1}, {"time": 0.3667, "x": 41.13, "y": -40.33}, {"time": 0.45, "x": 56.91, "y": -45.12, "curve": 0.315, "c4": 0.8}, - {"time": 0.5667, "curve": "stepped"}, {"time": 0.6333, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.6667, "x": -14.68, "y": -19.57, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.8333} + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "x": -4.8, "y": 21.17, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.25, "x": -0.53, "y": 0.11, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "x": -1, "y": -5.53, "curve": "stepped"}, + {"time": 0.35, "x": 2.26, "y": 14.19, "curve": "stepped"}, {"time": 0.5667, "x": 2.26, "y": 14.19, "curve": "stepped"}, + {"time": 0.5833, "x": -1.12, "y": 1.52, "curve": 0.313, "c3": 0.699}, {"time": 0.75, "x": -1, "y": -5.53, "curve": 0.313, "c3": 0.699}, {"time": 0.9167} ] }, - "leg-front-left-IK": { + "@leg-front-right": { "translate": [ - {"time": 0.15, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "x": -54.88, "y": 124.95, "curve": 0.854, "c4": 0.1}, {"time": 0.3667, "x": 40.57, "y": 118.1}, - {"time": 0.45, "x": 58.05, "y": 128.7, "curve": 0.315, "c4": 0.8}, {"time": 0.5667, "curve": "stepped"}, {"time": 0.6333, "curve": 0, "c2": 0.1, "c3": 0.85}, - {"time": 0.6667, "x": -7.79, "y": -10.12, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.8333} + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 4.31, "y": 11.86, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.25, "x": -10.19, "y": -4.67, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "x": -1.86, "y": -9.26, "curve": "stepped"}, + {"time": 0.35, "x": 11.1, "y": -20.22, "curve": "stepped"}, {"time": 0.5667, "x": 11.1, "y": -20.22, "curve": "stepped"}, + {"time": 0.5833, "x": -2.24, "y": 13.67, "curve": 0.313, "c3": 0.699}, {"time": 0.75, "x": -1.86, "y": -9.26, "curve": 0.313, "c3": 0.699}, {"time": 0.9167} ] }, - "leg-back-left-IK": { + "@leg-back-left": { "translate": [ - {"time": 0.0833, "curve": 0.332, "c3": 0.682, "c4": 0.41}, {"time": 0.2167, "x": 7.47, "y": 21.8, "curve": 0, "c2": 0.4, "c3": 0.383}, - {"time": 0.3333, "x": -63.6, "y": 99.05, "curve": 0.854, "c4": 0.1}, {"time": 0.3667, "x": 33.89, "y": 176.06}, {"time": 0.45, "x": 42.14, "y": 193.39, "curve": 0.315, "c4": 0.8}, - {"time": 0.5667, "curve": "stepped"}, {"time": 0.6333, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.75, "x": 24.35, "y": 13.92, "curve": 0.154, "c4": 0.9}, {"time": 0.8333} + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.1333, "x": 0.67, "y": -7.85, "curve": 0.161, "c3": 0.854}, {"time": 0.25, "x": 0.53, "y": -13.09, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.3333, "curve": "stepped"}, {"time": 0.35, "x": 10.26, "y": 0.56, "curve": "stepped"}, {"time": 0.5667, "x": 10.26, "y": 0.56, "curve": "stepped"}, {"time": 0.5833} ] }, "tail": { "rotate": [ - {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.15, "angle": 14.68, "curve": 0.315, "c4": 0.8}, {"time": 0.2167, "angle": -12.57}, - {"time": 0.3333, "angle": -14.89, "curve": 0.854, "c4": 0.1}, {"time": 0.3667, "angle": 25.96}, {"time": 0.45, "angle": 33.77}, - {"time": 0.6167, "angle": 26.39, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.7167, "angle": -14.8, "curve": 0.154, "c4": 0.9}, {"time": 0.8333} + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "angle": 15.61, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "angle": 20.44, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.3333, "angle": -15.58, "curve": "stepped"}, {"time": 0.35, "angle": 30.35}, {"time": 0.5667, "angle": 35.35, "curve": "stepped"}, + {"time": 0.5833, "angle": -11.84, "curve": 0.313, "c3": 0.699}, {"time": 0.75, "angle": 16.95, "curve": 0.313, "c3": 0.699}, {"time": 0.9167} ] }, - "@shadow": { - "translate": [ - {"time": 0.15, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.3333, "x": -132.39, "curve": 0.854, "c4": 0.1}, {"time": 0.3667, "x": -111.3, "curve": "stepped"}, - {"time": 0.45, "x": -111.3, "curve": 0.315, "c4": 0.8}, {"time": 0.5667, "x": -132.39, "curve": "stepped"}, {"time": 0.6333, "x": -132.39, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.8333} - ], - "scale": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.15, "x": 1.05, "y": 1.05, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.3333, "x": 0.93, "y": 0.93, "curve": 0.854, "c4": 0.1}, - {"time": 0.3667, "x": 0.95, "y": 0.95}, {"time": 0.45, "x": 0.97, "y": 0.97, "curve": 0.315, "c4": 0.8}, {"time": 0.5667, "x": 1.05, "y": 1.05, "curve": 0, "c2": 0.1, "c3": 0.85}, - {"time": 0.6333, "x": 1.07, "y": 1.07, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.8333} - ] + "@pivot-main": { + "translate": [{"time": 0.75, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.8333, "y": 31, "curve": 0.315, "c4": 0.8}, {"time": 0.9167}], + "scale": [{"time": 0.5667, "curve": "stepped"}, {"time": 0.75, "y": 0.98, "curve": 0.154, "c4": 0.9}, {"time": 0.9167}] }, "@body3": { "rotate": [ - {"angle": -1.82, "curve": 0.375, "c2": 0.62, "c3": 0.716}, {"time": 0.0333, "curve": 0.25, "c3": 0.75}, {"time": 0.2, "angle": -3.77, "curve": 0.25, "c3": 0.75}, - {"time": 0.3667, "angle": -14, "curve": 0.25, "c3": 0.75}, {"time": 0.5333, "angle": -3.77, "curve": 0.25, "c3": 0.75}, - {"time": 0.7, "angle": -14, "curve": 0.243, "c3": 0.68, "c4": 0.71}, {"time": 0.8333, "angle": -1.82} + {"angle": -1.06, "curve": 0.339, "c2": 0.35, "c3": 0.673, "c4": 0.69}, {"time": 0.0167, "angle": -0.76, "curve": 0.38, "c2": 0.59, "c3": 0.727}, + {"time": 0.0833, "curve": 0.25, "c3": 0.75}, {"time": 0.2, "angle": -3.77, "curve": 0.25, "c3": 0.75}, {"time": 0.4667, "angle": -14, "curve": 0.25, "c3": 0.75}, + {"time": 0.75, "angle": -3.77, "curve": 0.243, "c3": 0.649, "c4": 0.6}, {"time": 0.9167, "angle": -1.06} ], - "translate": [ - {"time": 0.1667, "curve": 0.25, "c3": 0.75}, {"time": 0.3333, "x": 45.36, "y": -33.56, "curve": 0.25, "c3": 0.75}, {"time": 0.5, "curve": 0.25, "c3": 0.75}, - {"time": 0.6667, "x": 45.36, "y": -33.56, "curve": 0.25, "c3": 0.75}, {"time": 0.8333} - ] + "translate": [{"time": 0.1333, "curve": 0.25, "c3": 0.75}, {"time": 0.4, "x": 45.36, "y": -33.56, "curve": 0.25, "c3": 0.75}, {"time": 0.6833}] }, "@body4": { "rotate": [ - {"angle": 9.01, "curve": 0.363, "c2": 0.44, "c3": 0.755}, {"time": 0.1, "curve": 0.25, "c3": 0.75}, {"time": 0.2667, "angle": -15.35, "curve": 0.25, "c3": 0.75}, - {"time": 0.4333, "angle": 14.26, "curve": 0.25, "c3": 0.75}, {"time": 0.6, "angle": -15.35, "curve": 0.25, "c3": 0.75}, - {"time": 0.7667, "angle": 14.26, "curve": 0.258, "c3": 0.619, "c4": 0.45}, {"time": 0.8333, "angle": 9.01} + {"angle": -1.07, "curve": 0.366, "c2": 0.63, "c3": 0.703}, {"time": 0.0333, "curve": 0.25, "c3": 0.75}, {"time": 0.15, "angle": -15.35, "curve": 0.25, "c3": 0.75}, + {"time": 0.4167, "angle": 14.26, "curve": 0.25, "c3": 0.75}, {"time": 0.7, "angle": -15.35, "curve": 0.244, "c3": 0.7, "c4": 0.79}, {"time": 0.9167, "angle": -1.07} ], "translate": [ - {"curve": 0.25, "c3": 0.75}, {"time": 0.1667, "x": -1.59, "y": 23.93, "curve": 0.25, "c3": 0.75}, {"time": 0.3333, "x": 6.55, "y": -29.78, "curve": 0.25, "c3": 0.75}, - {"time": 0.5, "x": -1.59, "y": 23.93, "curve": 0.25, "c3": 0.75}, {"time": 0.6667, "x": 6.55, "y": -29.78, "curve": 0.25, "c3": 0.75}, {"time": 0.8333} + {"curve": 0.25, "c3": 0.75}, {"time": 0.1167, "x": -1.59, "y": 23.93, "curve": 0.25, "c3": 0.75}, {"time": 0.3833, "x": 6.55, "y": -29.78, "curve": 0.25, "c3": 0.75}, + {"time": 0.6667, "x": -1.59, "y": 23.93, "curve": 0.25, "c3": 0.75}, {"time": 0.9167} ] }, "@body6": { "rotate": [ - {"angle": 3.35, "curve": 0.375, "c2": 0.62, "c3": 0.716}, {"time": 0.0333, "curve": 0.25, "c3": 0.75}, {"time": 0.2, "angle": -5.24, "curve": 0.25, "c3": 0.75}, - {"time": 0.3667, "angle": 25.77, "curve": 0.25, "c3": 0.75}, {"time": 0.5333, "angle": -5.24, "curve": 0.25, "c3": 0.75}, - {"time": 0.7, "angle": 25.77, "curve": 0.243, "c3": 0.68, "c4": 0.71}, {"time": 0.8333, "angle": 3.35} + {"angle": -1.91, "curve": 0.349, "c2": 0.39, "c3": 0.689, "c4": 0.74}, {"time": 0.05, "angle": -0.68, "curve": 0.375, "c2": 0.62, "c3": 0.716}, {"time": 0.1, "curve": 0.25, "c3": 0.75}, + {"time": 0.2167, "angle": -5.24, "curve": 0.25, "c3": 0.75}, {"time": 0.4833, "angle": 25.77, "curve": 0.25, "c3": 0.75}, + {"time": 0.7667, "angle": -5.24, "curve": 0.245, "c3": 0.637, "c4": 0.56}, {"time": 0.9167, "angle": -1.91} ], "translate": [ - {"curve": 0.25, "c3": 0.75}, {"time": 0.1667, "x": 5.81, "y": -4.07, "curve": 0.25, "c3": 0.75}, {"time": 0.3333, "x": -70.52, "y": 35.61, "curve": 0.25, "c3": 0.75}, - {"time": 0.5, "x": 5.81, "y": -4.07, "curve": 0.25, "c3": 0.75}, {"time": 0.6667, "x": -70.52, "y": 35.61, "curve": 0.25, "c3": 0.75}, {"time": 0.8333} + {"x": 0.76, "y": -0.53, "curve": 0.375, "c2": 0.62, "c3": 0.716}, {"time": 0.05, "curve": 0.25, "c3": 0.75}, {"time": 0.1667, "x": 5.81, "y": -4.07, "curve": 0.25, "c3": 0.75}, + {"time": 0.4333, "x": -70.52, "y": 35.61, "curve": 0.25, "c3": 0.75}, {"time": 0.7167, "x": 5.81, "y": -4.07, "curve": 0.243, "c3": 0.68, "c4": 0.71}, + {"time": 0.9167, "x": 0.76, "y": -0.53} ] }, "body-braid2": { "rotate": [ - {"angle": 3.31, "curve": 0.382, "c2": 0.58, "c3": 0.731}, {"time": 0.05, "curve": 0.25, "c3": 0.75}, {"time": 0.2167, "angle": -1.43, "curve": 0.25, "c3": 0.75}, - {"time": 0.3833, "angle": 20.83, "curve": 0.25, "c3": 0.75}, {"time": 0.55, "angle": -1.43, "curve": 0.25, "c3": 0.75}, - {"time": 0.7167, "angle": 13.65, "curve": 0.243, "c3": 0.655, "c4": 0.63}, {"time": 0.8333, "angle": 3.31} + {"curve": 0.25, "c3": 0.75}, {"time": 0.1167, "angle": -1.43, "curve": 0.25, "c3": 0.75}, {"time": 0.3833, "angle": 20.83, "curve": 0.25, "c3": 0.75}, + {"time": 0.6667, "angle": -1.43, "curve": 0.25, "c3": 0.75}, {"time": 0.9167} ] }, "body-braid4": { "rotate": [ - {"angle": 0.86, "curve": 0.36, "c2": 0.64, "c3": 0.695}, {"time": 0.0167, "curve": 0.25, "c3": 0.75}, {"time": 0.1833, "angle": -11.53, "curve": 0.25, "c3": 0.75}, - {"time": 0.35, "angle": 27.46, "curve": 0.25, "c3": 0.75}, {"time": 0.5167, "angle": -11.53, "curve": 0.25, "c3": 0.75}, - {"time": 0.6833, "angle": 20.28, "curve": 0.245, "c3": 0.711, "c4": 0.83}, {"time": 0.8333, "angle": 0.86} + {"angle": -5.26, "curve": 0.378, "c2": 0.52, "c3": 0.748}, {"time": 0.1167, "curve": 0.25, "c3": 0.75}, {"time": 0.2333, "angle": -11.53, "curve": 0.25, "c3": 0.75}, + {"time": 0.5, "angle": 27.46, "curve": 0.25, "c3": 0.75}, {"time": 0.7833, "angle": -11.53, "curve": 0.248, "c3": 0.628, "c4": 0.52}, {"time": 0.9167, "angle": -5.26} ] }, "body-braid3": { "rotate": [ - {"angle": 16.49, "curve": 0.363, "c2": 0.44, "c3": 0.755}, {"time": 0.1, "curve": 0.25, "c3": 0.75}, {"time": 0.2667, "angle": -8.3, "curve": 0.25, "c3": 0.75}, - {"time": 0.4333, "angle": 33.27, "curve": 0.25, "c3": 0.75}, {"time": 0.6, "angle": -8.3, "curve": 0.25, "c3": 0.75}, - {"time": 0.7667, "angle": 26.09, "curve": 0.258, "c3": 0.619, "c4": 0.45}, {"time": 0.8333, "angle": 16.49} + {"angle": -1.08, "curve": 0.375, "c2": 0.62, "c3": 0.716}, {"time": 0.05, "curve": 0.25, "c3": 0.75}, {"time": 0.1667, "angle": -8.3, "curve": 0.25, "c3": 0.75}, + {"time": 0.4333, "angle": 33.27, "curve": 0.25, "c3": 0.75}, {"time": 0.7167, "angle": -8.3, "curve": 0.243, "c3": 0.68, "c4": 0.71}, {"time": 0.9167, "angle": -1.08} ] }, "@body2": { "rotate": [ - {"angle": -4.54, "curve": 0.382, "c2": 0.58, "c3": 0.731}, {"time": 0.05, "curve": 0.25, "c3": 0.75}, {"time": 0.2167, "angle": 7.45, "curve": 0.25, "c3": 0.75}, - {"time": 0.3833, "angle": -18.73, "curve": 0.25, "c3": 0.75}, {"time": 0.55, "angle": 7.45, "curve": 0.25, "c3": 0.75}, - {"time": 0.7167, "angle": -18.73, "curve": 0.243, "c3": 0.655, "c4": 0.63}, {"time": 0.8333, "angle": -4.54} + {"angle": 2.08, "curve": 0.356, "c2": 0.42, "c3": 0.696, "c4": 0.78}, {"time": 0.05, "angle": 0.52, "curve": 0.366, "c2": 0.63, "c3": 0.703}, {"time": 0.0833, "curve": 0.25, "c3": 0.75}, + {"time": 0.2, "angle": 7.45, "curve": 0.25, "c3": 0.75}, {"time": 0.4667, "angle": -18.73, "curve": 0.25, "c3": 0.75}, + {"time": 0.75, "angle": 7.45, "curve": 0.243, "c3": 0.649, "c4": 0.6}, {"time": 0.9167, "angle": 2.08} ], "translate": [ - {"curve": 0.25, "c3": 0.75}, {"time": 0.1667, "x": -0.08, "y": 1.15, "curve": 0.25, "c3": 0.75}, {"time": 0.3333, "x": 4.59, "y": -41.28, "curve": 0.25, "c3": 0.75}, - {"time": 0.5, "x": -0.08, "y": 1.15, "curve": 0.25, "c3": 0.75}, {"time": 0.6667, "x": 4.59, "y": -41.28, "curve": 0.25, "c3": 0.75}, {"time": 0.8333} + {"x": -0.01, "y": 0.15, "curve": 0.375, "c2": 0.62, "c3": 0.716}, {"time": 0.05, "curve": 0.25, "c3": 0.75}, {"time": 0.1667, "x": -0.08, "y": 1.15, "curve": 0.25, "c3": 0.75}, + {"time": 0.4333, "x": 4.59, "y": -41.28, "curve": 0.25, "c3": 0.75}, {"time": 0.7167, "x": -0.08, "y": 1.15, "curve": 0.243, "c3": 0.68, "c4": 0.71}, + {"time": 0.9167, "x": -0.01, "y": 0.15} + ] + }, + "body-braid6": { + "rotate": [ + {"angle": -17.55, "curve": 0.32, "c2": 0.29, "c3": 0.757}, {"time": 0.2, "curve": 0.25, "c3": 0.75}, {"time": 0.3167, "angle": -20.17, "curve": 0.25, "c3": 0.75}, + {"time": 0.5833, "angle": 18.35, "curve": 0.25, "c3": 0.75}, {"time": 0.8667, "angle": -20.17, "curve": 0.284, "c3": 0.625, "c4": 0.38}, {"time": 0.9167, "angle": -17.55} ] }, - "body-braid6": {"rotate": [{"curve": 0.25, "c3": 0.75}, {"time": 0.6667, "angle": -7.17}]}, "body-braid5": { "rotate": [ - {"angle": 28.85, "curve": 0.25, "c3": 0.75}, {"time": 0.1667, "curve": 0.25, "c3": 0.75}, {"time": 0.3333, "angle": -7.27, "curve": 0.25, "c3": 0.75}, - {"time": 0.5, "angle": 36.02, "curve": 0.25, "c3": 0.75}, {"time": 0.6667, "angle": -7.27, "curve": 0.25, "c3": 0.75}, {"time": 0.8333, "angle": 28.85} + {"angle": -2.68, "curve": 0.381, "c2": 0.55, "c3": 0.742}, {"time": 0.1, "curve": 0.25, "c3": 0.75}, {"time": 0.2167, "angle": -7.27, "curve": 0.25, "c3": 0.75}, + {"time": 0.4833, "angle": 36.02, "curve": 0.25, "c3": 0.75}, {"time": 0.7667, "angle": -7.27, "curve": 0.245, "c3": 0.637, "c4": 0.56}, {"time": 0.9167, "angle": -2.68} ] }, "body-braid": { "rotate": [ - {"angle": 7.62, "curve": 0.375, "c2": 0.5, "c3": 0.75}, {"time": 0.0833, "curve": 0.25, "c3": 0.75}, {"time": 0.25, "angle": -2.68, "curve": 0.25, "c3": 0.75}, - {"time": 0.4167, "angle": 22.42, "curve": 0.25, "c3": 0.75}, {"time": 0.5833, "angle": -2.68, "curve": 0.25, "c3": 0.75}, - {"time": 0.75, "angle": 15.24, "curve": 0.25, "c3": 0.625, "c4": 0.5}, {"time": 0.8333, "angle": 7.62} + {"angle": -0.19, "curve": 0.366, "c2": 0.63, "c3": 0.703}, {"time": 0.0333, "curve": 0.25, "c3": 0.75}, {"time": 0.15, "angle": -2.68, "curve": 0.25, "c3": 0.75}, + {"time": 0.4167, "angle": 22.42, "curve": 0.25, "c3": 0.75}, {"time": 0.7, "angle": -2.68, "curve": 0.244, "c3": 0.7, "c4": 0.79}, {"time": 0.9167, "angle": -0.19} ] }, - "@body5": { - "rotate": [ - {"time": 0.1667, "curve": 0.25, "c3": 0.75}, {"time": 0.3333, "angle": 0.5, "curve": 0.25, "c3": 0.75}, {"time": 0.5, "curve": 0.25, "c3": 0.75}, - {"time": 0.6667, "angle": 0.5, "curve": 0.25, "c3": 0.75}, {"time": 0.8333} + "@body5": {"rotate": [{"time": 0.1167, "curve": 0.25, "c3": 0.75}, {"time": 0.3833, "angle": 0.5, "curve": 0.25, "c3": 0.75}, {"time": 0.6667}]} + }, + "events": [{"time": 0.35, "name": "start-attack"}] + }, + "1684684533": { + "slots": { + "eyes": {"attachment": [{"time": 0.1333, "name": "eyes-shut"}, {"time": 0.2, "name": "eyes"}, {"time": 0.4667, "name": "eyes-shut"}, {"time": 0.5833, "name": "eyes"}]}, + "mouth": { + "attachment": [ + {"time": 0.0833, "name": "mouth-open"}, {"time": 0.1667, "name": "mouth-bite"}, {"time": 0.3333, "name": "mouth"}, {"time": 0.4167, "name": "mouth-open"}, + {"time": 0.5, "name": "mouth-bite"}, {"time": 0.5833, "name": "mouth"} ] } }, - "events": [{"time": 0.3333, "name": "start-attack"}, {"time": 0.3667, "name": "hit"}] - }, - "3475256849": { - "slots": {"eyes": {"attachment": [{"time": 0.9167, "name": "eyes-shut"}, {"time": 1, "name": "eyes"}]}}, "bones": { - "@pivot-back": {"translate": [{"y": -97.74, "curve": 0.393, "c3": 0.303}, {"time": 0.6667, "y": -82.74, "curve": 0.387, "c3": 0.309}, {"time": 1.3333, "y": -97.74}]}, - "@leg-front-left": { + "@mouth": { + "translate": [ + {"time": 0.1667, "curve": 0, "c2": 0.1, "c3": 0.479, "c4": 0.56}, {"time": 0.3333, "x": -0.56, "y": 3.4, "curve": 0.408, "c2": 0.51, "c3": 0.853}, {"time": 0.5, "x": 0.04, "y": 0.05} + ] + }, + "@pivot-back": { "rotate": [ - {"curve": 0, "c2": 0.1, "c3": 0.856}, {"time": 0.3333, "angle": -17.48, "curve": 0.15, "c3": 0.926}, {"time": 0.7333, "curve": 0, "c2": 0.05, "c3": 0.692}, - {"time": 1.05, "angle": 8.38, "curve": 0.24, "c3": 0.769}, {"time": 1.3333} + {"curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.0667, "angle": -0.59, "curve": 0.075, "c4": 0.95}, {"time": 0.1333, "angle": 1.15, "curve": 0, "c2": 0.1, "c3": 0.85}, + {"time": 0.2167, "curve": "stepped"}, {"time": 0.3333, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.4, "angle": -0.59, "curve": 0.075, "c4": 0.95}, + {"time": 0.4667, "angle": 1.15, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.5833} + ], + "translate": [ + {"y": 0.06, "curve": 0.387, "c3": 0.314}, {"time": 0.1333, "x": -13.8, "y": 0.06, "curve": 0.387, "c3": 0.314}, {"time": 0.2167, "x": 0.02, "y": 0.06, "curve": "stepped"}, + {"time": 0.3333, "x": 0.02, "y": 0.06, "curve": 0.387, "c3": 0.314}, {"time": 0.4667, "x": -13.8, "y": 0.06, "curve": 0.387, "c3": 0.314}, {"time": 0.5833, "x": 0.02, "y": 0.06} ] }, "@leg-front-right": { "rotate": [ - {"curve": 0, "c2": 0.1, "c3": 0.856}, {"time": 0.3333, "angle": 9.43, "curve": 0.15, "c3": 0.926}, {"time": 0.7333, "curve": 0, "c2": 0.05, "c3": 0.692}, - {"time": 1.05, "angle": -11.74, "curve": 0.24, "c3": 0.769}, {"time": 1.3333} + {"curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.0667, "angle": 10.98, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.2167, "angle": -8.78, "curve": 0.161, "c3": 0.854}, + {"time": 0.3333, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.4, "angle": 10.98, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.55, "angle": -8.78, "curve": 0.161, "c3": 0.854}, + {"time": 0.6667, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.8333, "angle": -9.85, "curve": 0.161, "c3": 0.854}, {"time": 0.9833, "angle": -6.21}, + {"time": 1.15, "angle": 2.69, "curve": 0.075, "c4": 0.95}, {"time": 1.3333, "angle": -30.3} ] }, - "@leg-back-left": { + "@leg-front-left": { "rotate": [ - {"curve": 0, "c2": 0.1, "c3": 0.856}, {"time": 0.3333, "angle": -12.53, "curve": 0.15, "c3": 0.926}, {"time": 0.7333, "curve": 0, "c2": 0.05, "c3": 0.692}, - {"time": 1.05, "angle": 9.41, "curve": 0.24, "c3": 0.769}, {"time": 1.3333} + {"curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.0667, "angle": 10.98, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.2167, "angle": -8.78, "curve": 0.161, "c3": 0.854}, + {"time": 0.3333, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.4, "angle": 10.98, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.55, "angle": -8.78, "curve": 0.161, "c3": 0.854}, + {"time": 0.6667, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.8333, "angle": -9.84, "curve": 0.161, "c3": 0.854}, {"time": 0.9833, "angle": -6.21}, + {"time": 1.15, "angle": 2.69, "curve": 0.075, "c4": 0.95}, {"time": 1.3333, "angle": 20.14} ] }, - "tail": { + "@leg-back-left": { "rotate": [ - {"curve": 0, "c2": 0.05, "c3": 0.691}, {"time": 0.3333, "angle": -5.06, "curve": 0.304, "c3": 0.689}, {"time": 0.7333, "angle": -0.77}, - {"time": 1.05, "angle": 2.12, "curve": 0.234, "c4": 0.9}, {"time": 1.3333} + {"curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.0667, "angle": 10.98, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.2167, "angle": -8.78, "curve": 0.161, "c3": 0.854}, + {"time": 0.3333, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.4, "angle": 10.98, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.55, "angle": -8.78, "curve": 0.161, "c3": 0.854}, + {"time": 0.6667, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.8333, "angle": 5.93, "curve": 0.161, "c3": 0.854}, {"time": 0.9833}, + {"time": 1.15, "angle": -4.97, "curve": 0.075, "c4": 0.95}, {"time": 1.3333, "angle": -11.75} ] }, - "@shadow": {"scale": [{"x": 1.3, "y": 1.3, "curve": 0.387, "c3": 0.314}, {"time": 0.6667, "x": 1.25, "y": 1.25, "curve": 0.387, "c3": 0.314}, {"time": 1.3333, "x": 1.3, "y": 1.3}]}, - "@body3": { - "rotate": [ - {"angle": -11.17, "curve": 0.343, "c2": 0.37, "c3": 0.677, "c4": 0.71}, {"time": 0.05, "angle": -12.25, "curve": 0.374, "c2": 0.62, "c3": 0.715}, - {"time": 0.1833, "angle": -14, "curve": 0.25, "c3": 0.75}, {"time": 0.8333, "curve": 0.242, "c3": 0.662, "c4": 0.65}, {"time": 1.3333, "angle": -11.17} - ], + "@pivot-main": {"translate": [{"curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.0667, "y": 7.88, "curve": 0.078, "c4": 0.94}, {"time": 0.1333}]}, + "@pivot-center": {"translate": [{"curve": 0.387, "c3": 0.314}, {"time": 0.6667, "y": 14.05, "curve": 0.387, "c3": 0.314}, {"time": 1.3333}]}, + "@shadow": { "translate": [ - {"x": 33.64, "y": -18.83, "curve": 0.354, "c2": 0.65, "c3": 0.688}, {"time": 0.05, "x": 34.51, "y": -19.31, "curve": 0.25, "c3": 0.75}, - {"time": 0.7, "curve": 0.246, "c3": 0.72, "c4": 0.87}, {"time": 1.3333, "x": 33.64, "y": -18.83} + {"curve": 0.387, "c3": 0.314}, {"time": 0.1333, "x": -23.3, "curve": 0.387, "c3": 0.314}, {"time": 0.2167, "x": -9.6, "curve": "stepped"}, + {"time": 0.3333, "x": -9.6, "curve": 0.387, "c3": 0.314}, {"time": 0.4667, "x": -23.3, "curve": 0.387, "c3": 0.314}, {"time": 0.5833} + ], + "scale": [{"curve": 0.387, "c3": 0.314}, {"time": 0.6667, "x": 0.95, "y": 0.95, "curve": 0.387, "c3": 0.314}, {"time": 1.3333}] + }, + "tail": { + "rotate": [ + {"curve": 0, "c2": 0.12, "c3": 0.348, "c4": 0.47}, {"time": 0.1, "angle": -6.85, "curve": 0.229, "c2": 0.25, "c3": 0.569, "c4": 0.6}, + {"time": 0.2, "angle": 1.43, "curve": 0.188, "c2": 0.31, "c3": 0.695}, {"time": 0.3333, "angle": 3.02, "curve": 0, "c2": 0.12, "c3": 0.347, "c4": 0.48}, + {"time": 0.4333, "angle": -6.85, "curve": 0.229, "c2": 0.25, "c3": 0.569, "c4": 0.6}, {"time": 0.5333, "angle": 1.2, "curve": 0.155, "c3": 0.85}, + {"time": 0.75, "angle": -5.95, "curve": 0.161, "c3": 0.854}, {"time": 0.95, "angle": -0.94}, {"time": 1.15, "angle": 4.91, "curve": 0.234, "c4": 0.9}, {"time": 1.3333} ] }, "@body4": { "rotate": [ - {"angle": 7.57, "curve": 0.352, "c2": 0.41, "c3": 0.689, "c4": 0.75}, {"time": 0.1, "angle": 9.05, "curve": 0.368, "c2": 0.63, "c3": 0.706}, - {"time": 0.2, "angle": 9.83, "curve": 0.25, "c3": 0.75}, {"time": 0.85, "curve": 0.243, "c3": 0.657, "c4": 0.63}, {"time": 1.3333, "angle": 7.57} + {"angle": -0.03, "curve": 0.377, "c2": 0.61, "c3": 0.72}, {"time": 0.0667, "curve": 0.25, "c3": 0.75}, {"time": 0.2333, "angle": 9.83, "curve": 0.25, "c3": 0.75}, + {"time": 0.4, "angle": -15.35, "curve": 0.25, "c3": 0.75}, {"time": 0.5833, "angle": 14.26, "curve": 0.25, "c3": 0.75}, {"time": 0.8167, "angle": -19.31, "curve": 0.25, "c3": 0.75}, + {"time": 1.1, "angle": -0.65, "curve": 0.243, "c3": 0.674, "c4": 0.69}, {"time": 1.3333, "angle": -0.1} ], "translate": [ - {"x": 29.65, "y": -8.96, "curve": 0.368, "c2": 0.63, "c3": 0.706}, {"time": 0.1, "x": 32.23, "y": -9.74, "curve": 0.25, "c3": 0.75}, - {"time": 0.75, "curve": 0.244, "c3": 0.695, "c4": 0.77}, {"time": 1.3333, "x": 29.65, "y": -8.96} + {"x": -2.39, "y": 7.1, "curve": 0.25, "c3": 0.75}, {"time": 0.1667, "x": 9, "y": 2.91, "curve": 0.25, "c3": 0.75}, {"time": 0.3333, "x": -1.59, "y": 23.93, "curve": 0.25, "c3": 0.75}, + {"time": 0.5167, "x": 21.48, "y": -4.06, "curve": 0.25, "c3": 0.75}, {"time": 0.75, "x": -1.59, "y": 23.93, "curve": 0.25, "c3": 0.75}, + {"time": 1.0333, "x": -6.2, "y": 15.14, "curve": 0.25, "c3": 0.75}, {"time": 1.3333, "x": -2.39, "y": 7.1} ] }, "@body6": { "rotate": [ - {"angle": 15.22, "curve": 0.348, "c2": 0.66, "c3": 0.682}, {"time": 0.0333, "angle": 15.47, "curve": 0.25, "c3": 0.75}, {"time": 0.6833, "curve": 0.247, "c3": 0.73, "c4": 0.91}, - {"time": 1.3333, "angle": 15.22} - ], - "translate": [{"x": -17.06, "y": -1.14, "curve": 0.25, "c3": 0.75}, {"time": 0.65, "curve": 0.25, "c3": 0.75}, {"time": 1.3333, "x": -17.06, "y": -1.14}] - }, + {"angle": -0.3, "curve": 0.352, "c2": 0.42, "c3": 0.687, "c4": 0.76}, {"time": 0.0333, "angle": -0.13, "curve": 0.362, "c2": 0.64, "c3": 0.698}, + {"time": 0.0667, "curve": 0.25, "c3": 0.75}, {"time": 0.2333, "angle": 15.47, "curve": 0.25, "c3": 0.75}, {"time": 0.4, "angle": -5.24, "curve": 0.25, "c3": 0.75}, + {"time": 0.5833, "angle": 24.11, "curve": 0.25, "c3": 0.75}, {"time": 0.8167, "angle": -9.2, "curve": 0.25, "c3": 0.75}, + {"time": 1.1, "angle": -2.43, "curve": 0.243, "c3": 0.649, "c4": 0.6}, {"time": 1.3, "angle": -0.68, "curve": 0.344, "c2": 0.37, "c3": 0.679, "c4": 0.71}, + {"time": 1.3333, "angle": -0.36} + ], + "translate": [ + {"x": 0.25, "y": 0.08, "curve": 0.362, "c2": 0.64, "c3": 0.698}, {"time": 0.0333, "curve": 0.25, "c3": 0.75}, {"time": 0.2, "x": -17.06, "y": -1.14, "curve": 0.25, "c3": 0.75}, + {"time": 0.3667, "x": 5.81, "y": -4.07, "curve": 0.25, "c3": 0.75}, {"time": 0.55, "x": -27.26, "y": 10.72, "curve": 0.25, "c3": 0.75}, + {"time": 0.7833, "x": 5.81, "y": -4.07, "curve": 0.25, "c3": 0.75}, {"time": 1.0667, "x": 5.12, "y": 1.61, "curve": 0.243, "c3": 0.674, "c4": 0.69}, + {"time": 1.3, "x": 0.79, "y": 0.25, "curve": 0.352, "c2": 0.42, "c3": 0.687, "c4": 0.76}, {"time": 1.3333, "x": 0.25, "y": 0.08} + ] + }, "body-braid2": { "rotate": [ - {"angle": 8.81, "curve": 0.364, "c2": 0.64, "c3": 0.7}, {"time": 0.0833, "angle": 9.33, "curve": 0.25, "c3": 0.75}, {"time": 0.7333, "curve": 0.242, "c3": 0.662, "c4": 0.65}, - {"time": 1.2333, "angle": 7.42, "curve": 0.354, "c2": 0.42, "c3": 0.691, "c4": 0.77}, {"time": 1.3333, "angle": 8.81} + {"angle": 0.07, "curve": 0.25, "c3": 0.75}, {"time": 0.1667, "angle": 13.44, "curve": 0.25, "c3": 0.75}, {"time": 0.3333, "curve": 0.25, "c3": 0.75}, + {"time": 0.5167, "angle": 19.59, "curve": 0.25, "c3": 0.75}, {"time": 0.75, "angle": -7.14, "curve": 0.25, "c3": 0.75}, {"time": 1.0333, "angle": 4.57, "curve": 0.25, "c3": 0.75}, + {"time": 1.3333, "angle": 0.07} ] }, "body-braid4": { "rotate": [ - {"angle": 0.87, "curve": 0.296, "c2": 0.2, "c3": 0.645, "c4": 0.59}, {"time": 0.5833, "angle": 18.72, "curve": 0.25, "c3": 0.75}, - {"time": 1.2333, "curve": 0.294, "c3": 0.632, "c4": 0.37}, {"time": 1.3333, "angle": 0.87} - ] + {"angle": 1.66, "curve": 0.382, "c2": 0.55, "c3": 0.741}, {"time": 0.1167, "angle": 0.07, "curve": 0.25, "c3": 0.75}, {"time": 0.2833, "angle": 19.6, "curve": 0.25, "c3": 0.75}, + {"time": 0.45, "curve": 0.25, "c3": 0.75}, {"time": 0.6333, "angle": 23.3, "curve": 0.25, "c3": 0.75}, {"time": 0.8667, "angle": -7.14, "curve": 0.25, "c3": 0.75}, + {"time": 1.15, "angle": 4.57, "curve": 0.245, "c3": 0.639, "c4": 0.56}, {"time": 1.3333, "angle": 1.66} + ], + "translate": [{"x": -2.3, "y": -9.73}] }, "body-braid3": { "rotate": [ - {"angle": 14.47, "curve": 0.377, "c2": 0.61, "c3": 0.719}, {"time": 0.15, "angle": 17.05, "curve": 0.25, "c3": 0.75}, {"time": 0.8, "curve": 0.243, "c3": 0.674, "c4": 0.69}, - {"time": 1.3333, "angle": 14.47} - ] - }, - "@body2": { - "rotate": [ - {"angle": -6.84, "curve": 0.363, "c2": 0.45, "c3": 0.708, "c4": 0.83}, {"time": 0.1833, "angle": -9.62, "curve": 0.359, "c2": 0.64, "c3": 0.695}, - {"time": 0.25, "angle": -10.03, "curve": 0.25, "c3": 0.75}, {"time": 0.9, "curve": 0.244, "c3": 0.643, "c4": 0.58}, {"time": 1.3333, "angle": -6.84} - ], - "translate": [ - {"x": 2.25, "y": 5.51, "curve": 0.38, "c2": 0.59, "c3": 0.727}, {"time": 0.1833, "x": 2.83, "y": 6.92, "curve": 0.25, "c3": 0.75}, - {"time": 0.8333, "curve": 0.242, "c3": 0.662, "c4": 0.65}, {"time": 1.3333, "x": 2.25, "y": 5.51} + {"angle": 0.5, "curve": 0.371, "c2": 0.62, "c3": 0.71}, {"time": 0.05, "angle": 0.07, "curve": 0.25, "c3": 0.75}, {"time": 0.2167, "angle": 20.19, "curve": 0.25, "c3": 0.75}, + {"time": 0.3833, "curve": 0.25, "c3": 0.75}, {"time": 0.5667, "angle": 31.19, "curve": 0.25, "c3": 0.75}, {"time": 0.8, "angle": -7.14, "curve": 0.25, "c3": 0.75}, + {"time": 1.0833, "angle": 4.57, "curve": 0.243, "c3": 0.689, "c4": 0.75}, {"time": 1.3333, "angle": 0.5} ] }, "body-braid6": { "rotate": [ - {"angle": 0.44, "curve": 0.338, "c2": 0.35, "c3": 0.758}, {"time": 0.5, "angle": 2.13, "curve": 0.25, "c3": 0.75}, {"time": 1.15, "curve": 0.273, "c3": 0.62, "c4": 0.41}, - {"time": 1.3333, "angle": 0.44} + {"angle": -1.62, "curve": 0.361, "c2": 0.44, "c3": 0.755}, {"time": 0.1833, "angle": -4.54, "curve": 0.25, "c3": 0.75}, {"time": 0.35, "angle": 13.39, "curve": 0.25, "c3": 0.75}, + {"time": 0.5167, "angle": -4.61, "curve": 0.25, "c3": 0.75}, {"time": 0.7, "angle": 13.15, "curve": 0.25, "c3": 0.75}, {"time": 0.9333, "angle": -11.74, "curve": 0.25, "c3": 0.75}, + {"time": 1.2167, "angle": -0.03, "curve": 0.259, "c3": 0.618, "c4": 0.45}, {"time": 1.3333, "angle": -1.62} ] }, "body-braid5": { "rotate": [ - {"angle": 15.29, "curve": 0.382, "c2": 0.55, "c3": 0.741}, {"time": 0.2667, "angle": 19.81, "curve": 0.25, "c3": 0.75}, - {"time": 0.9167, "angle": 7.07, "curve": 0.245, "c3": 0.639, "c4": 0.56}, {"time": 1.3333, "angle": 15.29} + {"angle": 8.42, "curve": 0.382, "c2": 0.57, "c3": 0.735}, {"time": 0.1, "angle": 7.14, "curve": 0.25, "c3": 0.75}, {"time": 0.2667, "angle": 31.61, "curve": 0.25, "c3": 0.75}, + {"time": 0.4333, "angle": 7.07, "curve": 0.25, "c3": 0.75}, {"time": 0.6167, "angle": 41.8, "curve": 0.25, "c3": 0.75}, {"time": 0.85, "angle": -0.06, "curve": 0.25, "c3": 0.75}, + {"time": 1.1333, "angle": 11.65, "curve": 0.243, "c3": 0.649, "c4": 0.6}, {"time": 1.3333, "angle": 8.42} ] }, "body-braid": { "rotate": [ - {"angle": 10.47, "curve": 0.359, "c2": 0.64, "c3": 0.695}, {"time": 0.0667, "angle": 10.92, "curve": 0.25, "c3": 0.75}, {"time": 0.7167, "curve": 0.245, "c3": 0.712, "c4": 0.84}, - {"time": 1.3333, "angle": 10.47} + {"angle": 5.4, "curve": 0.362, "c2": 0.64, "c3": 0.698}, {"time": 0.0333, "angle": 5.16, "curve": 0.25, "c3": 0.75}, {"time": 0.2, "angle": 10.61, "curve": 0.25, "c3": 0.75}, + {"time": 0.3667, "angle": 3.41, "curve": 0.25, "c3": 0.75}, {"time": 0.55, "angle": 30.24, "curve": 0.25, "c3": 0.75}, {"time": 0.7833, "angle": -2.04, "curve": 0.25, "c3": 0.75}, + {"time": 1.0667, "angle": 9.67, "curve": 0.245, "c3": 0.707, "c4": 0.82}, {"time": 1.3333, "angle": 5.4} ] - } - } - }, - "3774510935": { - "slots": { - "ball": { - "color": [ - {"color": "ffffff00", "curve": "stepped"}, {"time": 0.1667, "color": "ffffff00", "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "color": "ffffffff", "curve": "stepped"}, - {"time": 2.9167, "color": "ffffffff", "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 3.0833, "color": "ffffff00"} - ], - "attachment": [{"name": "ball"}] }, - "eyes": {"attachment": [{"time": 0.5, "name": "eyes-shut"}, {"time": 0.5833, "name": "eyes"}, {"time": 3.0833, "name": "eyes-shut"}, {"time": 3.1667, "name": "eyes"}]}, - "mouth": {"attachment": [{"time": 0.1833, "name": "mouth-open"}, {"time": 0.5, "name": "mouth"}, {"time": 2.7667, "name": "mouth-open"}, {"time": 2.9167, "name": "mouth"}]} - }, - "bones": { - "@pivot-back": { + "@body5": {"rotate": [{"angle": 0.07, "curve": 0.25, "c3": 0.75}, {"time": 0.1667}]}, + "@body3": { "rotate": [ - {"curve": 0, "c2": 0.3, "c3": 0.546}, {"time": 0.1667, "angle": 6, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "angle": -6.98, "curve": 0.464, "c4": 0.7}, - {"time": 0.5, "angle": 3, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.6667, "curve": "stepped"}, {"time": 2.5833, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 2.75, "angle": 6, "curve": 0, "c2": 0.3, "c3": 0.546}, {"time": 2.9167, "angle": -6, "curve": 0.464, "c4": 0.7}, - {"time": 3.0833, "angle": 6, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 3.25} + {"angle": 0.42, "curve": 0.362, "c2": 0.64, "c3": 0.698}, {"time": 0.0333, "curve": 0.25, "c3": 0.75}, {"time": 0.2, "angle": 7.65, "curve": 0.25, "c3": 0.75}, + {"time": 0.3667, "angle": -12.3, "curve": 0.25, "c3": 0.75}, {"time": 0.55, "angle": 12.27, "curve": 0.25, "c3": 0.75}, {"time": 0.7833, "angle": -3.96, "curve": 0.25, "c3": 0.75}, + {"time": 1.0667, "angle": 6.88, "curve": 0.245, "c3": 0.707, "c4": 0.82}, {"time": 1.3333, "angle": 0.35} ], "translate": [ - {"curve": 0, "c2": 0.3, "c3": 0.546}, {"time": 0.1667, "y": 1.78, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "y": 353.14, "curve": 0.464, "c4": 0.7}, - {"time": 0.5, "y": 255, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.6667, "y": 267.67, "curve": 0.156, "c3": 0.693}, - {"time": 1.1667, "x": -30, "y": 267.67, "curve": 0.317, "c3": 0.693}, {"time": 2.1667, "x": 50, "y": 267.67, "curve": 0.317, "c3": 0.693}, - {"time": 2.5833, "y": 267.67, "curve": "stepped"}, {"time": 2.75, "y": 267.67, "curve": 0, "c2": 0.3, "c3": 0.546}, {"time": 2.9167, "y": 310, "curve": 0.464, "c4": 0.7}, - {"time": 3.0833} - ] - }, - "@leg-front-right": { - "translate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": -2.8, "y": -31.7, "curve": 0, "c2": 0.3, "c3": 0.546}, {"time": 0.25, "curve": "stepped"}, - {"time": 2.5833, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 2.75, "x": -2.8, "y": -31.7, "curve": 0.315, "c4": 0.8}, {"time": 2.8333, "curve": "stepped"}, - {"time": 3, "curve": 0.315, "c4": 0.8}, {"time": 3.0833, "x": -2.86, "y": -32.44, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 3.25} - ] - }, - "@leg-front-left": { - "translate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": -1.46, "y": -16.59, "curve": 0, "c2": 0.3, "c3": 0.546}, {"time": 0.25, "curve": "stepped"}, - {"time": 2.5833, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 2.75, "x": -1.46, "y": -16.59, "curve": 0.315, "c4": 0.8}, {"time": 2.8333, "curve": "stepped"}, - {"time": 3, "curve": 0.315, "c4": 0.8}, {"time": 3.0833, "x": -1.64, "y": -18.64, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 3.25} + {"curve": 0.25, "c3": 0.75}, {"time": 0.1667, "x": -11.6, "y": 9.76, "curve": 0.25, "c3": 0.75}, {"time": 0.3333, "curve": "stepped"}, {"time": 0.75, "curve": 0.25, "c3": 0.75}, + {"time": 1.0333, "x": -4.22, "y": -0.69, "curve": 0.25, "c3": 0.75}, {"time": 1.3333} ] }, - "leg-front-left-IK": { + "@body2": { + "rotate": [ + {"angle": 0.66, "curve": 0.348, "c2": 0.39, "c3": 0.683, "c4": 0.73}, {"time": 0.0333, "angle": 0.27, "curve": 0.371, "c2": 0.62, "c3": 0.71}, + {"time": 0.0833, "curve": 0.25, "c3": 0.75}, {"time": 0.25, "angle": 12.91, "curve": 0.25, "c3": 0.75}, {"time": 0.4167, "angle": -3.07, "curve": 0.25, "c3": 0.75}, + {"time": 0.6, "angle": 23.5, "curve": 0.25, "c3": 0.75}, {"time": 0.8333, "angle": -3.96, "curve": 0.25, "c3": 0.75}, + {"time": 1.1167, "angle": 2.81, "curve": 0.243, "c3": 0.66, "c4": 0.64}, {"time": 1.3333, "angle": 0.6} + ], "translate": [ - {"time": 0.1667, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "x": -6.9, "y": 380.8, "curve": 0.315, "c4": 0.8}, {"time": 0.5, "x": -5.5, "y": 268.35, "curve": "stepped"}, - {"time": 0.6667, "x": -5.5, "y": 268.35, "curve": 0.317, "c3": 0.693}, {"time": 0.9167, "x": -38.87, "y": 268.35, "curve": 0.317, "c3": 0.693}, - {"time": 1.1667, "x": -10.16, "y": 268.35, "curve": 0.317, "c3": 0.693}, {"time": 1.4167, "x": -39.65, "y": 268.35, "curve": 0.317, "c3": 0.693}, - {"time": 1.6667, "x": 23.98, "y": 268.35, "curve": 0.317, "c3": 0.693}, {"time": 1.9167, "x": 5.36, "y": 268.35, "curve": 0.317, "c3": 0.693}, - {"time": 2.1667, "x": 67.44, "y": 268.35, "curve": 0.317, "c3": 0.693}, {"time": 2.4167, "x": -3.95, "y": 268.35, "curve": 0.317, "c3": 0.693}, - {"time": 2.5833, "x": -5.5, "y": 268.35, "curve": "stepped"}, {"time": 2.9167, "x": -5.5, "y": 268.35, "curve": 0.315, "c4": 0.8}, {"time": 3.0833} + {"x": -0.22, "y": -0.04, "curve": 0.362, "c2": 0.64, "c3": 0.698}, {"time": 0.0333, "curve": "stepped"}, {"time": 0.3667, "curve": 0.25, "c3": 0.75}, + {"time": 0.55, "x": -14.09, "y": -2.21, "curve": 0.25, "c3": 0.75}, {"time": 0.7833, "curve": 0.25, "c3": 0.75}, + {"time": 1.0667, "x": -4.22, "y": -0.69, "curve": 0.245, "c3": 0.707, "c4": 0.82}, {"time": 1.3333, "x": -0.22, "y": -0.04} ] - }, - "leg-front-right-IK": { + } + } + }, + "2711256467": { + "slots": { + "eyes": {"attachment": [{"time": 0.1333, "name": "eyes-shut"}, {"time": 0.2, "name": "eyes"}, {"time": 0.4667, "name": "eyes-shut"}]}, + "mouth": {"attachment": [{"time": 0.0833, "name": "mouth-open"}, {"time": 0.3333, "name": "mouth"}, {"time": 0.4167, "name": "mouth-open"}]} + }, + "bones": { + "@mouth": { "translate": [ - {"time": 0.1667, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "x": -6.9, "y": 397.8, "curve": 0.315, "c4": 0.8}, {"time": 0.5, "x": 15.4, "y": 268.08, "curve": "stepped"}, - {"time": 0.6667, "x": 15.4, "y": 268.08, "curve": 0.317, "c3": 0.693}, {"time": 0.9167, "x": 24.64, "y": 268.08, "curve": 0.317, "c3": 0.693}, - {"time": 1.1667, "x": -41.71, "y": 268.08, "curve": 0.317, "c3": 0.693}, {"time": 1.4167, "x": 22.12, "y": 268.08, "curve": 0.317, "c3": 0.693}, - {"time": 1.6667, "x": -0.56, "y": 268.08, "curve": 0.317, "c3": 0.693}, {"time": 1.9167, "x": 61.6, "y": 268.08, "curve": 0.317, "c3": 0.693}, - {"time": 2.1667, "x": 33.88, "y": 268.08, "curve": 0.317, "c3": 0.693}, {"time": 2.4167, "x": 49, "y": 268.08, "curve": 0.317, "c3": 0.693}, - {"time": 2.5833, "x": 15.4, "y": 268.08, "curve": "stepped"}, {"time": 2.9167, "x": 15.4, "y": 268.08, "curve": 0.315, "c4": 0.8}, {"time": 3.0833} + {"time": 0.1667, "curve": 0, "c2": 0.1, "c3": 0.479, "c4": 0.56}, {"time": 0.3333, "x": -0.56, "y": 3.4, "curve": 0.408, "c2": 0.51, "c3": 0.853}, + {"time": 0.5, "x": 0.04, "y": 0.05, "curve": 0, "c2": 0.27, "c3": 0.314, "c4": 0.8}, {"time": 0.6, "x": 3.03, "y": 2.83, "curve": 0.168, "c2": 0.32, "c3": 0.551, "c4": 0.7}, + {"time": 0.7, "x": -0.51, "y": 3.39, "curve": 0.291, "c2": 0.39, "c3": 0.63, "c4": 0.75}, {"time": 0.8, "x": -3.56, "y": 0.39, "curve": 0.329, "c2": 0.61, "c3": 0.674, "c4": 0.99}, + {"time": 0.9, "x": 0.05, "y": -0.01, "curve": 0, "c2": 0.27, "c3": 0.31, "c4": 0.8}, {"time": 1.0167, "x": 3.05, "y": 2.75, "curve": 0.154, "c2": 0.33, "c3": 0.544, "c4": 0.7}, + {"time": 1.1167, "x": -0.5, "y": 3.35, "curve": 0.298, "c2": 0.38, "c3": 0.643, "c4": 0.74}, {"time": 1.2167, "x": -3.56, "y": 0.37, "curve": 0.326, "c2": 0.61, "c3": 0.671, "c4": 0.99}, + {"time": 1.3333} ] }, - "leg-back-left-IK": { + "@pivot-back": { + "rotate": [ + {"curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.0667, "angle": -0.59, "curve": 0.075, "c4": 0.95}, {"time": 0.1333, "angle": 1.15, "curve": 0, "c2": 0.1, "c3": 0.85}, + {"time": 0.2167, "curve": "stepped"}, {"time": 0.3333, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.4, "angle": -0.59, "curve": 0.075, "c4": 0.95}, + {"time": 0.4667, "angle": 1.15, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.5833} + ], "translate": [ - {"time": 0.1667, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "x": -0.4, "y": 363.25, "curve": 0.315, "c4": 0.8}, {"time": 0.5, "x": -26.16, "y": 267.01}, - {"time": 0.6667, "x": -33.59, "y": 267.01, "curve": 0.317, "c3": 0.693}, {"time": 0.9167, "x": -22.32, "y": 267.01, "curve": 0.317, "c3": 0.693}, - {"time": 1.1667, "x": -63.32, "y": 267.01, "curve": 0.317, "c3": 0.693}, {"time": 1.4167, "x": -28.35, "y": 267.01, "curve": 0.317, "c3": 0.693}, - {"time": 1.6667, "x": -28.02, "y": 267.01, "curve": 0.317, "c3": 0.693}, {"time": 1.9167, "x": 14.36, "y": 267.01, "curve": 0.317, "c3": 0.693}, - {"time": 2.1667, "x": 9.14, "y": 267.01, "curve": 0.317, "c3": 0.693}, {"time": 2.4167, "x": 11.99, "y": 267.01, "curve": 0.317, "c3": 0.693}, - {"time": 2.6667, "x": -33.59, "y": 267.01, "curve": "stepped"}, {"time": 2.9167, "x": -33.59, "y": 267.01, "curve": 0.315, "c4": 0.8}, {"time": 3.0833} + {"y": 0.06, "curve": 0.387, "c3": 0.314}, {"time": 0.1333, "x": -13.8, "y": 0.06, "curve": 0.387, "c3": 0.314}, {"time": 0.2167, "x": 0.02, "y": 0.06, "curve": "stepped"}, + {"time": 0.3333, "x": 0.02, "y": 0.06, "curve": 0.387, "c3": 0.314}, {"time": 0.4667, "x": -13.8, "y": 0.06, "curve": 0.387, "c3": 0.314}, {"time": 0.5833, "x": 0.02, "y": 0.06} ] }, - "@ball": { + "@leg-front-right": { "rotate": [ - {"time": 0.6667, "curve": 0.156, "c3": 0.693}, {"time": 1.1667, "angle": 18, "curve": 0.317, "c3": 0.693}, {"time": 2.1667, "angle": -18, "curve": 0.317, "c3": 0.693}, {"time": 2.75} - ], - "translate": [ - {"time": 0.6667, "curve": 0.156, "c3": 0.693}, {"time": 1.1667, "x": -32, "curve": 0.317, "c3": 0.693}, {"time": 2.1667, "x": 32, "curve": 0.317, "c3": 0.693}, {"time": 2.75} - ], - "scale": [ - {"x": 0, "y": 0, "curve": "stepped"}, {"time": 0.1667, "x": 0, "y": 0, "curve": 0, "c2": 0.6, "c3": 0.237}, {"time": 0.3333, "x": 1.2, "y": 1.2, "curve": 0.315, "c4": 0.8}, - {"time": 0.5, "curve": "stepped"}, {"time": 2.75, "curve": 0, "c2": 0.3, "c3": 0.546}, {"time": 2.9167, "x": 1.2, "y": 1.2, "curve": 0.315, "c4": 0.8}, {"time": 3.0833, "x": 0, "y": 0} + {"curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.0667, "angle": 10.98, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.2167, "angle": -8.78, "curve": 0.161, "c3": 0.854}, + {"time": 0.3333, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.4, "angle": 10.98, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.55, "angle": -8.78, "curve": 0.161, "c3": 0.854}, + {"time": 0.6667, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.8333, "angle": -9.85, "curve": 0.161, "c3": 0.854}, {"time": 0.9833, "angle": -6.21}, + {"time": 1.15, "angle": 2.69, "curve": 0.075, "c4": 0.95}, {"time": 1.3333} ] }, - "ball": { - "scale": [ - {"time": 0.3333, "curve": 0.617, "c4": 0.6}, {"time": 0.5, "x": 1.2, "y": 0.9, "curve": 0, "c2": 0.39, "c3": 0.387}, {"time": 0.6667, "curve": "stepped"}, - {"time": 2.5833, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 2.75, "x": 1.2, "y": 0.9, "curve": 0, "c2": 0.3, "c3": 0.546}, {"time": 2.9167} + "@leg-front-left": { + "rotate": [ + {"curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.0667, "angle": 10.98, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.2167, "angle": -8.78, "curve": 0.161, "c3": 0.854}, + {"time": 0.3333, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.4, "angle": 10.98, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.55, "angle": -8.78, "curve": 0.161, "c3": 0.854}, + {"time": 0.6667, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.8333, "angle": -9.84, "curve": 0.161, "c3": 0.854}, {"time": 0.9833, "angle": -6.21}, + {"time": 1.15, "angle": 2.69, "curve": 0.075, "c4": 0.95}, {"time": 1.3333} ] }, - "@pivot-center": { + "@leg-back-left": { "rotate": [ - {"time": 0.6667, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.9167, "angle": 2, "curve": 0.461, "c3": 0.543}, {"time": 1.4167, "angle": -2, "curve": 0.461, "c3": 0.543}, - {"time": 1.9167, "angle": 2, "curve": 0.461, "c3": 0.543}, {"time": 2.4167, "angle": -2, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 2.75} + {"curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.0667, "angle": 10.98, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.2167, "angle": -8.78, "curve": 0.161, "c3": 0.854}, + {"time": 0.3333, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.4, "angle": 10.98, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.55, "angle": -8.78, "curve": 0.161, "c3": 0.854}, + {"time": 0.6667, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.8333, "angle": 5.93, "curve": 0.161, "c3": 0.854}, {"time": 0.9833}, + {"time": 1.15, "angle": -4.97, "curve": 0.075, "c4": 0.95}, {"time": 1.3333} ] }, + "@pivot-main": {"translate": [{"curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.0667, "y": 7.88, "curve": 0.078, "c4": 0.94}, {"time": 0.1333}]}, + "@pivot-center": {"translate": [{"curve": 0.387, "c3": 0.314}, {"time": 0.6667, "y": 14.05, "curve": 0.387, "c3": 0.314}, {"time": 1.3333}]}, "@shadow": { "translate": [ - {"time": 0.6667, "curve": 0.317, "c3": 0.693}, {"time": 1.1667, "x": -32, "curve": 0.317, "c3": 0.693}, {"time": 2.1667, "x": 32, "curve": 0.317, "c3": 0.693}, {"time": 2.5833} + {"curve": 0.387, "c3": 0.314}, {"time": 0.1333, "x": -23.3, "curve": 0.387, "c3": 0.314}, {"time": 0.2167, "x": -9.6, "curve": "stepped"}, + {"time": 0.3333, "x": -9.6, "curve": 0.387, "c3": 0.314}, {"time": 0.4667, "x": -23.3, "curve": 0.387, "c3": 0.314}, {"time": 0.5833} ], - "scale": [ - {"curve": 0, "c2": 0.3, "c3": 0.546}, {"time": 0.1667, "x": 1.1, "y": 1.1, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "curve": 0.464, "c4": 0.7}, - {"time": 0.5, "x": 1.06, "y": 1.06, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.6667, "curve": "stepped"}, {"time": 2.5833, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 2.75, "x": 1.06, "y": 1.06, "curve": 0, "c2": 0.3, "c3": 0.546}, {"time": 2.9167, "curve": 0.464, "c4": 0.7}, - {"time": 3.0833, "x": 1.1, "y": 1.1, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 3.25} - ] + "scale": [{"curve": 0.387, "c3": 0.314}, {"time": 0.6667, "x": 0.95, "y": 0.95, "curve": 0.387, "c3": 0.314}, {"time": 1.3333}] }, "tail": { "rotate": [ - {"curve": 0, "c2": 0.3, "c3": 0.546}, {"time": 0.1667, "angle": 17.35, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "angle": -14.67, "curve": 0.464, "c4": 0.7}, - {"time": 0.5, "angle": 19.12, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.6667, "angle": -10.65, "curve": 0.317, "c3": 0.693}, - {"time": 0.9167, "angle": -0.65, "curve": 0.317, "c3": 0.693}, {"time": 1.1667, "angle": -10.65, "curve": 0.317, "c3": 0.693}, - {"time": 1.4167, "angle": -0.65, "curve": 0.317, "c3": 0.693}, {"time": 1.6667, "angle": -10.65, "curve": 0.317, "c3": 0.693}, - {"time": 1.9167, "angle": -0.65, "curve": 0.317, "c3": 0.693}, {"time": 2.1667, "angle": -10.65, "curve": 0.317, "c3": 0.693}, - {"time": 2.4167, "angle": -0.65, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 2.5833, "angle": -10.65, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 2.75, "angle": 19.35, "curve": 0, "c2": 0.3, "c3": 0.546}, {"time": 2.9167, "angle": -18.65, "curve": 0, "c2": 0.3, "c3": 0.546}, - {"time": 3.0833, "angle": 17.35, "curve": 0.317, "c3": 0.693}, {"time": 3.25} + {"curve": 0, "c2": 0.12, "c3": 0.348, "c4": 0.47}, {"time": 0.1, "angle": -6.85, "curve": 0.229, "c2": 0.25, "c3": 0.569, "c4": 0.6}, + {"time": 0.2, "angle": 1.43, "curve": 0.188, "c2": 0.31, "c3": 0.695}, {"time": 0.3333, "angle": 3.02, "curve": 0, "c2": 0.12, "c3": 0.347, "c4": 0.48}, + {"time": 0.4333, "angle": -6.85, "curve": 0.229, "c2": 0.25, "c3": 0.569, "c4": 0.6}, {"time": 0.5333, "angle": 1.2, "curve": 0.155, "c3": 0.85}, + {"time": 0.75, "angle": -5.95, "curve": 0.161, "c3": 0.854}, {"time": 0.95, "angle": -0.94}, {"time": 1.15, "angle": 4.91, "curve": 0.234, "c4": 0.9}, {"time": 1.3333} ] }, "@body3": { "rotate": [ - {"angle": 2.63, "curve": 0.347, "c2": 0.38, "c3": 0.694, "c4": 0.76}, {"time": 0.05, "angle": 0.69, "curve": 0.375, "c2": 0.62, "c3": 0.716}, {"time": 0.0833, "curve": 0.25, "c3": 0.75}, - {"time": 0.25, "angle": 5.31, "curve": 0.25, "c3": 0.75}, {"time": 0.4167, "angle": -9.96, "curve": 0.25, "c3": 0.75}, {"time": 0.5833, "angle": 2.37, "curve": 0.25, "c3": 0.75}, - {"time": 0.75, "curve": 0.25, "c3": 0.75}, {"time": 1, "angle": 2.71, "curve": 0.25, "c3": 0.75}, {"time": 1.25, "angle": -8.08, "curve": 0.25, "c3": 0.75}, - {"time": 1.5, "angle": 2.71, "curve": 0.25, "c3": 0.75}, {"time": 1.75, "angle": -9.07, "curve": 0.25, "c3": 0.75}, {"time": 2, "angle": 2.71, "curve": 0.25, "c3": 0.75}, - {"time": 2.25, "angle": -7.59, "curve": 0.25, "c3": 0.75}, {"time": 2.5, "angle": 2.71, "curve": 0.25, "c3": 0.75}, {"time": 2.75, "curve": 0.25, "c3": 0.75}, - {"time": 2.9167, "angle": -9.96, "curve": 0.25, "c3": 0.75}, {"time": 3.1667, "angle": 5.31, "curve": 0.25, "c3": 0.625, "c4": 0.5}, {"time": 3.25, "angle": 2.63} + {"angle": 0.42, "curve": 0.362, "c2": 0.64, "c3": 0.698}, {"time": 0.0333, "curve": 0.25, "c3": 0.75}, {"time": 0.2, "angle": 7.65, "curve": 0.25, "c3": 0.75}, + {"time": 0.3667, "angle": -12.3, "curve": 0.25, "c3": 0.75}, {"time": 0.55, "angle": 12.27, "curve": 0.25, "c3": 0.75}, {"time": 0.7833, "angle": -3.96, "curve": 0.25, "c3": 0.75}, + {"time": 1.0667, "angle": 6.88, "curve": 0.245, "c3": 0.707, "c4": 0.82}, {"time": 1.3333, "angle": 0.35} ], "translate": [ - {"x": -4.98, "y": 3.87, "curve": 0.363, "c2": 0.44, "c3": 0.711, "c4": 0.83}, {"time": 0.05, "x": -0.58, "y": 0.45, "curve": 0.36, "c2": 0.64, "c3": 0.695}, - {"time": 0.0667, "curve": 0.25, "c3": 0.75}, {"time": 0.2333, "x": -13.74, "y": 10.69, "curve": 0.25, "c3": 0.75}, {"time": 0.4, "x": 16.77, "y": -16.52, "curve": 0.25, "c3": 0.75}, - {"time": 0.5667, "x": -2.46, "y": 22.24, "curve": 0.25, "c3": 0.75}, {"time": 0.7333, "curve": 0.25, "c3": 0.75}, {"time": 0.9833, "x": -11.72, "y": -2.34, "curve": 0.25, "c3": 0.75}, - {"time": 1.2333, "x": 23.59, "y": 3.86, "curve": 0.25, "c3": 0.75}, {"time": 1.4833, "x": -11.72, "y": -2.34, "curve": 0.25, "c3": 0.75}, - {"time": 1.7333, "x": 23.59, "y": 3.86, "curve": 0.25, "c3": 0.75}, {"time": 1.9833, "x": -11.72, "y": -2.34, "curve": 0.25, "c3": 0.75}, - {"time": 2.2333, "x": 23.59, "y": 3.86, "curve": 0.25, "c3": 0.75}, {"time": 2.4833, "x": -11.72, "y": -2.34, "curve": 0.25, "c3": 0.75}, {"time": 2.7333, "curve": 0.25, "c3": 0.75}, - {"time": 2.9, "x": 16.77, "y": -16.52, "curve": 0.25, "c3": 0.75}, {"time": 3.15, "x": -13.74, "y": 10.69, "curve": 0.245, "c3": 0.637, "c4": 0.56}, {"time": 3.25, "x": -4.98, "y": 3.87} + {"curve": 0.25, "c3": 0.75}, {"time": 0.1667, "x": -11.6, "y": 9.76, "curve": 0.25, "c3": 0.75}, {"time": 0.3333, "curve": "stepped"}, {"time": 0.75, "curve": 0.25, "c3": 0.75}, + {"time": 1.0333, "x": -4.22, "y": -0.69, "curve": 0.25, "c3": 0.75}, {"time": 1.3333} ] }, - "@body4": { + "body-braid": { "rotate": [ - {"angle": -3.76, "curve": 0.381, "c2": 0.55, "c3": 0.742}, {"time": 0.0667, "curve": 0.25, "c3": 0.75}, {"time": 0.2333, "angle": -10.21, "curve": 0.25, "c3": 0.75}, - {"time": 0.4, "angle": 8.6, "curve": 0.25, "c3": 0.75}, {"time": 0.5667, "angle": -11.06, "curve": 0.25, "c3": 0.75}, {"time": 0.7333, "curve": 0.25, "c3": 0.75}, - {"time": 0.9833, "angle": 2.32, "curve": 0.25, "c3": 0.75}, {"time": 1.2333, "angle": -8.1, "curve": 0.25, "c3": 0.75}, {"time": 1.4833, "angle": 2.32, "curve": 0.25, "c3": 0.75}, - {"time": 1.7333, "angle": -9.1, "curve": 0.25, "c3": 0.75}, {"time": 1.9833, "angle": 2.32, "curve": 0.25, "c3": 0.75}, {"time": 2.2333, "angle": -7.62, "curve": 0.25, "c3": 0.75}, - {"time": 2.4833, "angle": 2.32, "curve": 0.25, "c3": 0.75}, {"time": 2.7333, "curve": 0.25, "c3": 0.75}, {"time": 2.9, "angle": 8.6, "curve": 0.25, "c3": 0.75}, - {"time": 3.15, "angle": -10.21, "curve": 0.245, "c3": 0.637, "c4": 0.56}, {"time": 3.25, "angle": -3.76} - ], - "translate": [ - {"x": 2.68, "y": 1.74, "curve": 0.382, "c2": 0.58, "c3": 0.731}, {"time": 0.05, "curve": 0.25, "c3": 0.75}, {"time": 0.2167, "x": 11.07, "y": 7.2, "curve": 0.25, "c3": 0.75}, - {"time": 0.3833, "x": 7.66, "y": -26.2, "curve": 0.25, "c3": 0.75}, {"time": 0.55, "x": -0.2, "y": 1.85, "curve": 0.25, "c3": 0.75}, {"time": 0.7167, "curve": 0.25, "c3": 0.75}, - {"time": 0.9667, "x": 1.95, "y": -9.77, "curve": 0.25, "c3": 0.75}, {"time": 1.2167, "x": 13.76, "y": 2.25, "curve": 0.25, "c3": 0.75}, - {"time": 1.4667, "x": 1.95, "y": -9.77, "curve": 0.25, "c3": 0.75}, {"time": 1.7167, "x": 13.76, "y": 2.25, "curve": 0.25, "c3": 0.75}, - {"time": 1.9667, "x": 1.95, "y": -9.77, "curve": 0.25, "c3": 0.75}, {"time": 2.2167, "x": 13.76, "y": 2.25, "curve": 0.25, "c3": 0.75}, - {"time": 2.4667, "x": 1.95, "y": -9.77, "curve": 0.25, "c3": 0.75}, {"time": 2.7167, "curve": 0.25, "c3": 0.75}, {"time": 2.8833, "x": 7.66, "y": -26.2, "curve": 0.25, "c3": 0.75}, - {"time": 3.1333, "x": 11.07, "y": 7.2, "curve": 0.243, "c3": 0.655, "c4": 0.63}, {"time": 3.25, "x": 2.68, "y": 1.74} + {"angle": 5.4, "curve": 0.362, "c2": 0.64, "c3": 0.698}, {"time": 0.0333, "angle": 5.16, "curve": 0.25, "c3": 0.75}, {"time": 0.2, "angle": 10.61, "curve": 0.25, "c3": 0.75}, + {"time": 0.3667, "angle": 3.41, "curve": 0.25, "c3": 0.75}, {"time": 0.55, "angle": 30.24, "curve": 0.25, "c3": 0.75}, {"time": 0.7833, "angle": -2.04, "curve": 0.25, "c3": 0.75}, + {"time": 1.0667, "angle": 9.67, "curve": 0.245, "c3": 0.707, "c4": 0.82}, {"time": 1.3333, "angle": 5.4} ] }, - "@body6": { + "@body4": { "rotate": [ - {"angle": -10.43, "curve": 0.282, "c2": 0.15, "c3": 0.718, "c4": 0.85}, {"time": 0.1333, "angle": -0.46, "curve": 0.36, "c2": 0.64, "c3": 0.695}, - {"time": 0.15, "curve": 0.25, "c3": 0.75}, {"time": 0.3167, "angle": -10.91, "curve": 0.25, "c3": 0.75}, {"time": 0.4833, "angle": 22.56, "curve": 0.25, "c3": 0.75}, - {"time": 0.65, "angle": -8.77, "curve": 0.25, "c3": 0.75}, {"time": 0.8167, "curve": 0.25, "c3": 0.75}, {"time": 1.0667, "angle": 11.2, "curve": 0.25, "c3": 0.75}, - {"time": 1.3167, "angle": -0.3, "curve": 0.25, "c3": 0.75}, {"time": 1.5667, "angle": 11.2, "curve": 0.25, "c3": 0.75}, {"time": 1.8167, "angle": -1.3, "curve": 0.25, "c3": 0.75}, - {"time": 2.0667, "angle": 11.2, "curve": 0.25, "c3": 0.75}, {"time": 2.3167, "angle": 0.18, "curve": 0.25, "c3": 0.75}, {"time": 2.5667, "angle": 11.2, "curve": 0.25, "c3": 0.75}, - {"time": 2.8167, "curve": 0.25, "c3": 0.75}, {"time": 2.9833, "angle": 22.56, "curve": 0.25, "c3": 0.75}, {"time": 3.2333, "angle": -10.91, "curve": 0.305, "c3": 0.64, "c4": 0.36}, - {"time": 3.25, "angle": -10.43} + {"angle": -0.03, "curve": 0.377, "c2": 0.61, "c3": 0.72}, {"time": 0.0667, "curve": 0.25, "c3": 0.75}, {"time": 0.2333, "angle": 9.83, "curve": 0.25, "c3": 0.75}, + {"time": 0.4, "angle": -15.35, "curve": 0.25, "c3": 0.75}, {"time": 0.5833, "angle": 14.26, "curve": 0.25, "c3": 0.75}, {"time": 0.8167, "angle": -19.31, "curve": 0.25, "c3": 0.75}, + {"time": 1.1, "angle": -0.65, "curve": 0.243, "c3": 0.674, "c4": 0.69}, {"time": 1.3333, "angle": -0.1} ], "translate": [ - {"x": 16.17, "y": -11.76, "curve": 0.352, "c2": 0.65, "c3": 0.687}, {"time": 0.0167, "x": 17.33, "y": -12.37, "curve": 0.243, "c3": 0.655, "c4": 0.63}, - {"time": 0.1333, "x": 4.2, "y": -3, "curve": 0.382, "c2": 0.58, "c3": 0.731}, {"time": 0.1833, "curve": 0.25, "c3": 0.75}, - {"time": 0.35, "x": 17.33, "y": -12.37, "curve": 0.25, "c3": 0.75}, {"time": 0.5167, "x": -33.58, "y": 14.61, "curve": 0.25, "c3": 0.75}, - {"time": 0.6833, "x": 12.85, "y": -7.58, "curve": 0.25, "c3": 0.75}, {"time": 0.85, "curve": 0.25, "c3": 0.75}, {"time": 1.1, "x": -7.07, "y": 3.68, "curve": 0.25, "c3": 0.75}, - {"time": 1.35, "curve": 0.25, "c3": 0.75}, {"time": 1.6, "x": -7.07, "y": 3.68, "curve": 0.25, "c3": 0.75}, {"time": 1.85, "curve": 0.25, "c3": 0.75}, - {"time": 2.1, "x": -7.07, "y": 3.68, "curve": 0.25, "c3": 0.75}, {"time": 2.35, "curve": 0.25, "c3": 0.75}, {"time": 2.6, "x": -7.07, "y": 3.68, "curve": 0.25, "c3": 0.75}, - {"time": 2.85, "curve": 0.25, "c3": 0.75}, {"time": 3.0167, "x": -33.58, "y": 14.61, "curve": 0.246, "c3": 0.723, "c4": 0.88}, {"time": 3.25, "x": 16.17, "y": -11.76} + {"x": -2.39, "y": 7.1, "curve": 0.25, "c3": 0.75}, {"time": 0.1667, "x": 9, "y": 2.91, "curve": 0.25, "c3": 0.75}, {"time": 0.3333, "x": -1.59, "y": 23.93, "curve": 0.25, "c3": 0.75}, + {"time": 0.5167, "x": 21.48, "y": -4.06, "curve": 0.25, "c3": 0.75}, {"time": 0.75, "x": -1.59, "y": 23.93, "curve": 0.25, "c3": 0.75}, + {"time": 1.0333, "x": -6.2, "y": 15.14, "curve": 0.25, "c3": 0.75}, {"time": 1.3333, "x": -2.39, "y": 7.1} ] }, - "body-braid2": { + "body-braid4": { "rotate": [ - {"angle": -0.25, "curve": 0.375, "c2": 0.62, "c3": 0.716}, {"time": 0.0333, "curve": 0.25, "c3": 0.75}, {"time": 0.2, "angle": -2.29, "curve": 0.25, "c3": 0.75}, - {"time": 0.3667, "angle": 18.64, "curve": 0.25, "c3": 0.75}, {"time": 0.5333, "angle": -1.94, "curve": 0.25, "c3": 0.75}, {"time": 0.7, "curve": 0.25, "c3": 0.75}, - {"time": 0.95, "angle": 5.84, "curve": 0.25, "c3": 0.75}, {"time": 1.2, "curve": 0.25, "c3": 0.75}, {"time": 1.45, "angle": 5.84, "curve": 0.25, "c3": 0.75}, - {"time": 1.7, "curve": 0.25, "c3": 0.75}, {"time": 1.95, "angle": 5.84, "curve": 0.25, "c3": 0.75}, {"time": 2.2, "curve": 0.25, "c3": 0.75}, - {"time": 2.45, "angle": 5.84, "curve": 0.25, "c3": 0.75}, {"time": 2.7, "curve": 0.25, "c3": 0.75}, {"time": 2.8667, "angle": 18.64, "curve": 0.25, "c3": 0.75}, - {"time": 3.1167, "angle": -1.94, "curve": 0.243, "c3": 0.68, "c4": 0.71}, {"time": 3.25, "angle": -0.25} + {"angle": 1.66, "curve": 0.382, "c2": 0.55, "c3": 0.741}, {"time": 0.1167, "angle": 0.07, "curve": 0.25, "c3": 0.75}, {"time": 0.2833, "angle": 19.6, "curve": 0.25, "c3": 0.75}, + {"time": 0.45, "curve": 0.25, "c3": 0.75}, {"time": 0.6333, "angle": 23.3, "curve": 0.25, "c3": 0.75}, {"time": 0.8667, "angle": -7.14, "curve": 0.25, "c3": 0.75}, + {"time": 1.15, "angle": 4.57, "curve": 0.245, "c3": 0.639, "c4": 0.56}, {"time": 1.3333, "angle": 1.66} ], - "translate": [ - {"curve": 0.25, "c3": 0.75}, {"time": 0.1667, "x": 1.68, "y": -1.17, "curve": 0.25, "c3": 0.75}, {"time": 0.3333, "x": -10.52, "y": -2.87, "curve": 0.25, "c3": 0.75}, - {"time": 0.5, "x": 3.54, "y": -2.08, "curve": 0.25, "c3": 0.75}, {"time": 0.6667, "curve": 0.25, "c3": 0.75}, {"time": 0.9167, "x": -10.52, "y": -2.87, "curve": 0.25, "c3": 0.75}, - {"time": 1.1667, "curve": 0.25, "c3": 0.75}, {"time": 1.4167, "x": -10.52, "y": -2.87, "curve": 0.25, "c3": 0.75}, {"time": 1.6667, "curve": 0.25, "c3": 0.75}, - {"time": 1.9167, "x": -10.52, "y": -2.87, "curve": 0.25, "c3": 0.75}, {"time": 2.1667, "curve": 0.25, "c3": 0.75}, {"time": 2.4167, "x": -10.52, "y": -2.87, "curve": 0.25, "c3": 0.75}, - {"time": 2.6667, "curve": 0.25, "c3": 0.75}, {"time": 2.8333, "x": -10.52, "y": -2.87, "curve": 0.25, "c3": 0.75}, {"time": 3.0833, "x": 3.54, "y": -2.08, "curve": 0.25, "c3": 0.75}, - {"time": 3.25} - ] + "translate": [{"x": -2.3, "y": -9.73}] }, - "body-braid4": { + "@body6": { "rotate": [ - {"angle": -22.63, "curve": 0.32, "c2": 0.29, "c3": 0.757}, {"time": 0.1333, "curve": 0.25, "c3": 0.75}, {"time": 0.3, "angle": -14.88, "curve": 0.25, "c3": 0.75}, - {"time": 0.4667, "angle": 33.06, "curve": 0.25, "c3": 0.75}, {"time": 0.6333, "angle": -26.01, "curve": 0.25, "c3": 0.75}, {"time": 0.8, "curve": 0.25, "c3": 0.75}, - {"time": 1.05, "angle": 16.77, "curve": 0.25, "c3": 0.75}, {"time": 1.3, "curve": 0.25, "c3": 0.75}, {"time": 1.55, "angle": 27.32, "curve": 0.25, "c3": 0.75}, - {"time": 1.8, "curve": 0.25, "c3": 0.75}, {"time": 2.05, "angle": 27.32, "curve": 0.25, "c3": 0.75}, {"time": 2.3, "curve": 0.25, "c3": 0.75}, - {"time": 2.55, "angle": 27.32, "curve": 0.25, "c3": 0.75}, {"time": 2.8, "curve": 0.25, "c3": 0.75}, {"time": 2.9667, "angle": 33.06, "curve": 0.25, "c3": 0.75}, - {"time": 3.2167, "angle": -26.01, "curve": 0.284, "c3": 0.625, "c4": 0.38}, {"time": 3.25, "angle": -22.63} + {"angle": -0.3, "curve": 0.352, "c2": 0.42, "c3": 0.687, "c4": 0.76}, {"time": 0.0333, "angle": -0.13, "curve": 0.362, "c2": 0.64, "c3": 0.698}, + {"time": 0.0667, "curve": 0.25, "c3": 0.75}, {"time": 0.2333, "angle": 15.47, "curve": 0.25, "c3": 0.75}, {"time": 0.4, "angle": -5.24, "curve": 0.25, "c3": 0.75}, + {"time": 0.5833, "angle": 24.11, "curve": 0.25, "c3": 0.75}, {"time": 0.8167, "angle": -9.2, "curve": 0.25, "c3": 0.75}, + {"time": 1.1, "angle": -2.43, "curve": 0.243, "c3": 0.649, "c4": 0.6}, {"time": 1.3, "angle": -0.68, "curve": 0.344, "c2": 0.37, "c3": 0.679, "c4": 0.71}, + {"time": 1.3333, "angle": -0.36} + ], + "translate": [ + {"x": 0.25, "y": 0.08, "curve": 0.362, "c2": 0.64, "c3": 0.698}, {"time": 0.0333, "curve": 0.25, "c3": 0.75}, {"time": 0.2, "x": -17.06, "y": -1.14, "curve": 0.25, "c3": 0.75}, + {"time": 0.3667, "x": 5.81, "y": -4.07, "curve": 0.25, "c3": 0.75}, {"time": 0.55, "x": -27.26, "y": 10.72, "curve": 0.25, "c3": 0.75}, + {"time": 0.7833, "x": 5.81, "y": -4.07, "curve": 0.25, "c3": 0.75}, {"time": 1.0667, "x": 5.12, "y": 1.61, "curve": 0.243, "c3": 0.674, "c4": 0.69}, + {"time": 1.3, "x": 0.79, "y": 0.25, "curve": 0.352, "c2": 0.42, "c3": 0.687, "c4": 0.76}, {"time": 1.3333, "x": 0.25, "y": 0.08} ] }, - "body-braid3": { + "body-braid2": { "rotate": [ - {"angle": -2.76, "curve": 0.381, "c2": 0.55, "c3": 0.742}, {"time": 0.0667, "curve": 0.25, "c3": 0.75}, {"time": 0.2333, "angle": -6.47, "curve": 0.25, "c3": 0.75}, - {"time": 0.4, "angle": 32.47, "curve": 0.25, "c3": 0.75}, {"time": 0.5667, "angle": -7.5, "curve": 0.25, "c3": 0.75}, {"time": 0.7333, "curve": 0.25, "c3": 0.75}, - {"time": 0.9833, "angle": 19.72, "curve": 0.25, "c3": 0.75}, {"time": 1.2333, "curve": 0.25, "c3": 0.75}, {"time": 1.4833, "angle": 19.72, "curve": 0.25, "c3": 0.75}, - {"time": 1.7333, "curve": 0.25, "c3": 0.75}, {"time": 1.9833, "angle": 19.72, "curve": 0.25, "c3": 0.75}, {"time": 2.2333, "curve": 0.25, "c3": 0.75}, - {"time": 2.4833, "angle": 19.72, "curve": 0.25, "c3": 0.75}, {"time": 2.7333, "curve": 0.25, "c3": 0.75}, {"time": 2.9, "angle": 32.47, "curve": 0.25, "c3": 0.75}, - {"time": 3.15, "angle": -7.5, "curve": 0.245, "c3": 0.637, "c4": 0.56}, {"time": 3.25, "angle": -2.76} + {"angle": 0.07, "curve": 0.25, "c3": 0.75}, {"time": 0.1667, "angle": 13.44, "curve": 0.25, "c3": 0.75}, {"time": 0.3333, "curve": 0.25, "c3": 0.75}, + {"time": 0.5167, "angle": 19.59, "curve": 0.25, "c3": 0.75}, {"time": 0.75, "angle": -7.14, "curve": 0.25, "c3": 0.75}, {"time": 1.0333, "angle": 4.57, "curve": 0.25, "c3": 0.75}, + {"time": 1.3333, "angle": 0.07} ] }, - "@body2": { + "body-braid5": { "rotate": [ - {"angle": 4.06, "curve": 0.321, "c2": 0.3, "c3": 0.679, "c4": 0.7}, {"time": 0.0667, "angle": 1.3, "curve": 0.382, "c2": 0.58, "c3": 0.731}, {"time": 0.1167, "curve": 0.25, "c3": 0.75}, - {"time": 0.2833, "angle": 5.38, "curve": 0.25, "c3": 0.75}, {"time": 0.45, "angle": -12.18, "curve": 0.25, "c3": 0.75}, {"time": 0.6167, "angle": 15.89, "curve": 0.25, "c3": 0.75}, - {"time": 0.7833, "curve": 0.25, "c3": 0.75}, {"time": 1.0333, "angle": 8.58, "curve": 0.25, "c3": 0.75}, {"time": 1.2833, "angle": -2.06, "curve": 0.25, "c3": 0.75}, - {"time": 1.5333, "angle": 8.58, "curve": 0.25, "c3": 0.75}, {"time": 1.7833, "angle": -3.05, "curve": 0.25, "c3": 0.75}, {"time": 2.0333, "angle": 8.58, "curve": 0.25, "c3": 0.75}, - {"time": 2.2833, "angle": -1.58, "curve": 0.25, "c3": 0.75}, {"time": 2.5333, "angle": 8.58, "curve": 0.25, "c3": 0.75}, {"time": 2.7833, "curve": 0.25, "c3": 0.75}, - {"time": 2.95, "angle": -18.29, "curve": 0.25, "c3": 0.75}, {"time": 3.2, "angle": 5.38, "curve": 0.269, "c3": 0.618, "c4": 0.42}, {"time": 3.25, "angle": 4.06} - ], - "translate": [ - {"x": -1.7, "y": -0.1, "curve": 0.375, "c2": 0.62, "c3": 0.716}, {"time": 0.0333, "curve": 0.25, "c3": 0.75}, {"time": 0.2, "x": -13.08, "y": -0.76, "curve": 0.25, "c3": 0.75}, - {"time": 0.3667, "x": 24.33, "y": 3.17, "curve": 0.25, "c3": 0.75}, {"time": 0.5333, "x": -10.29, "y": 8.24, "curve": 0.25, "c3": 0.75}, {"time": 0.7, "curve": 0.25, "c3": 0.75}, - {"time": 0.95, "x": -7.81, "y": -1.56, "curve": 0.25, "c3": 0.75}, {"time": 1.2, "x": 13.76, "y": 2.25, "curve": 0.25, "c3": 0.75}, - {"time": 1.45, "x": -7.81, "y": -1.56, "curve": 0.25, "c3": 0.75}, {"time": 1.7, "x": 13.76, "y": 2.25, "curve": 0.25, "c3": 0.75}, - {"time": 1.95, "x": -7.81, "y": -1.56, "curve": 0.25, "c3": 0.75}, {"time": 2.2, "x": 13.76, "y": 2.25, "curve": 0.25, "c3": 0.75}, - {"time": 2.45, "x": -7.81, "y": -1.56, "curve": 0.25, "c3": 0.75}, {"time": 2.7, "curve": 0.25, "c3": 0.75}, {"time": 2.8667, "x": 24.33, "y": 3.17, "curve": 0.25, "c3": 0.75}, - {"time": 3.1167, "x": -13.08, "y": -0.76, "curve": 0.243, "c3": 0.68, "c4": 0.71}, {"time": 3.25, "x": -1.7, "y": -0.1} + {"angle": 8.42, "curve": 0.382, "c2": 0.57, "c3": 0.735}, {"time": 0.1, "angle": 7.14, "curve": 0.25, "c3": 0.75}, {"time": 0.2667, "angle": 31.61, "curve": 0.25, "c3": 0.75}, + {"time": 0.4333, "angle": 7.07, "curve": 0.25, "c3": 0.75}, {"time": 0.6167, "angle": 41.8, "curve": 0.25, "c3": 0.75}, {"time": 0.85, "angle": -0.06, "curve": 0.25, "c3": 0.75}, + {"time": 1.1333, "angle": 11.65, "curve": 0.243, "c3": 0.649, "c4": 0.6}, {"time": 1.3333, "angle": 8.42} ] }, "body-braid6": { "rotate": [ - {"angle": -31.49, "curve": 0.345, "c2": 0.39, "c3": 0.679, "c4": 0.72}, {"time": 0.0167, "angle": -34.97, "curve": 0.366, "c2": 0.63, "c3": 0.703}, - {"time": 0.05, "angle": -39.01, "curve": 0.25, "c3": 0.75}, {"time": 0.2167, "curve": 0.25, "c3": 0.75}, {"time": 0.3833, "angle": -32.78, "curve": 0.25, "c3": 0.75}, - {"time": 0.55, "angle": 19.08, "curve": 0.25, "c3": 0.75}, {"time": 0.7167, "angle": -39.01, "curve": 0.25, "c3": 0.75}, {"time": 0.8833, "curve": 0.25, "c3": 0.75}, - {"time": 1.1333, "angle": 2.79, "curve": 0.25, "c3": 0.75}, {"time": 1.3833, "angle": -23.32, "curve": 0.25, "c3": 0.75}, {"time": 1.6333, "angle": 18.54, "curve": 0.25, "c3": 0.75}, - {"time": 1.8833, "angle": -23.32, "curve": 0.25, "c3": 0.75}, {"time": 2.1333, "angle": 18.54, "curve": 0.25, "c3": 0.75}, {"time": 2.3833, "angle": -23.32, "curve": 0.25, "c3": 0.75}, - {"time": 2.6333, "angle": 2.79, "curve": 0.25, "c3": 0.75}, {"time": 2.8833, "curve": 0.25, "c3": 0.75}, {"time": 3.05, "angle": 19.08, "curve": 0.243, "c3": 0.68, "c4": 0.71}, - {"time": 3.25, "angle": -31.49} + {"angle": -1.62, "curve": 0.361, "c2": 0.44, "c3": 0.755}, {"time": 0.1833, "angle": -4.54, "curve": 0.25, "c3": 0.75}, {"time": 0.35, "angle": 13.39, "curve": 0.25, "c3": 0.75}, + {"time": 0.5167, "angle": -4.61, "curve": 0.25, "c3": 0.75}, {"time": 0.7, "angle": 13.15, "curve": 0.25, "c3": 0.75}, {"time": 0.9333, "angle": -11.74, "curve": 0.25, "c3": 0.75}, + {"time": 1.2167, "angle": -0.03, "curve": 0.259, "c3": 0.618, "c4": 0.45}, {"time": 1.3333, "angle": -1.62} ] }, - "body-braid5": { + "@body5": {"rotate": [{"angle": 0.07, "curve": 0.25, "c3": 0.75}, {"time": 0.1667}]}, + "body-braid3": { "rotate": [ - {"angle": -10.19, "curve": 0.32, "c2": 0.29, "c3": 0.655, "c4": 0.63}, {"time": 0.0167, "angle": -8.86, "curve": 0.345, "c2": 0.37, "c3": 0.757}, - {"time": 0.1333, "curve": 0.25, "c3": 0.75}, {"time": 0.3, "angle": -6.97, "curve": 0.25, "c3": 0.75}, {"time": 0.4667, "angle": 17.12, "curve": 0.25, "c3": 0.75}, - {"time": 0.6333, "angle": -11.69, "curve": 0.25, "c3": 0.75}, {"time": 0.8, "curve": 0.25, "c3": 0.75}, {"time": 1.05, "angle": 9.32, "curve": 0.25, "c3": 0.75}, - {"time": 1.3, "angle": 11.19, "curve": 0.25, "c3": 0.75}, {"time": 1.55, "angle": 20.13, "curve": 0.25, "c3": 0.75}, {"time": 1.8, "curve": 0.25, "c3": 0.75}, - {"time": 2.05, "angle": 14.14, "curve": 0.25, "c3": 0.75}, {"time": 2.3, "curve": 0.25, "c3": 0.75}, {"time": 2.55, "angle": 8.99, "curve": 0.25, "c3": 0.75}, - {"time": 2.8, "curve": 0.25, "c3": 0.75}, {"time": 2.9667, "angle": 17.12, "curve": 0.25, "c3": 0.75}, {"time": 3.2167, "angle": -11.69, "curve": 0.284, "c3": 0.625, "c4": 0.38}, - {"time": 3.25, "angle": -10.19} + {"angle": 0.5, "curve": 0.371, "c2": 0.62, "c3": 0.71}, {"time": 0.05, "angle": 0.07, "curve": 0.25, "c3": 0.75}, {"time": 0.2167, "angle": 20.19, "curve": 0.25, "c3": 0.75}, + {"time": 0.3833, "curve": 0.25, "c3": 0.75}, {"time": 0.5667, "angle": 31.19, "curve": 0.25, "c3": 0.75}, {"time": 0.8, "angle": -7.14, "curve": 0.25, "c3": 0.75}, + {"time": 1.0833, "angle": 4.57, "curve": 0.243, "c3": 0.689, "c4": 0.75}, {"time": 1.3333, "angle": 0.5} ] }, - "body-braid": { + "@body2": { "rotate": [ - {"angle": -1.12, "curve": 0.33, "c2": 0.32, "c3": 0.665, "c4": 0.66}, {"time": 0.0167, "angle": -0.89, "curve": 0.375, "c2": 0.5, "c3": 0.75}, {"time": 0.1, "curve": 0.25, "c3": 0.75}, - {"time": 0.2667, "angle": -3.74, "curve": 0.25, "c3": 0.75}, {"time": 0.4333, "angle": 25.24, "curve": 0.25, "c3": 0.75}, {"time": 0.6, "angle": -1.77, "curve": 0.25, "c3": 0.75}, - {"time": 0.7667, "curve": 0.25, "c3": 0.75}, {"time": 1.0167, "angle": 12.44, "curve": 0.25, "c3": 0.75}, {"time": 1.2667, "curve": 0.25, "c3": 0.75}, - {"time": 1.5167, "angle": 12.44, "curve": 0.25, "c3": 0.75}, {"time": 1.7667, "curve": 0.25, "c3": 0.75}, {"time": 2.0167, "angle": 12.44, "curve": 0.25, "c3": 0.75}, - {"time": 2.2667, "curve": 0.25, "c3": 0.75}, {"time": 2.5167, "angle": 12.44, "curve": 0.25, "c3": 0.75}, {"time": 2.7667, "curve": 0.25, "c3": 0.75}, - {"time": 2.9333, "angle": 25.24, "curve": 0.25, "c3": 0.75}, {"time": 3.1833, "angle": -1.77, "curve": 0.258, "c3": 0.619, "c4": 0.45}, {"time": 3.25, "angle": -1.12} + {"angle": 0.66, "curve": 0.348, "c2": 0.39, "c3": 0.683, "c4": 0.73}, {"time": 0.0333, "angle": 0.27, "curve": 0.371, "c2": 0.62, "c3": 0.71}, + {"time": 0.0833, "curve": 0.25, "c3": 0.75}, {"time": 0.25, "angle": 12.91, "curve": 0.25, "c3": 0.75}, {"time": 0.4167, "angle": -3.07, "curve": 0.25, "c3": 0.75}, + {"time": 0.6, "angle": 23.5, "curve": 0.25, "c3": 0.75}, {"time": 0.8333, "angle": -3.96, "curve": 0.25, "c3": 0.75}, + {"time": 1.1167, "angle": 2.81, "curve": 0.243, "c3": 0.66, "c4": 0.64}, {"time": 1.3333, "angle": 0.6} ], "translate": [ - {"x": 1.3, "y": -0.76, "curve": 0.339, "c2": 0.35, "c3": 0.674, "c4": 0.69}, {"time": 0.0167, "x": 0.86, "y": -0.5, "curve": 0.382, "c2": 0.58, "c3": 0.731}, - {"time": 0.0667, "curve": 0.25, "c3": 0.75}, {"time": 0.2333, "x": 1.68, "y": -1.17, "curve": 0.25, "c3": 0.75}, {"time": 0.4, "x": -10.53, "y": -2.86, "curve": 0.25, "c3": 0.75}, - {"time": 0.5667, "x": 3.54, "y": -2.08, "curve": 0.25, "c3": 0.75}, {"time": 0.7333, "curve": 0.25, "c3": 0.75}, {"time": 0.9833, "x": -10.53, "y": -2.86, "curve": 0.25, "c3": 0.75}, - {"time": 1.2333, "curve": 0.25, "c3": 0.75}, {"time": 1.4833, "x": -10.53, "y": -2.86, "curve": 0.25, "c3": 0.75}, {"time": 1.7333, "curve": 0.25, "c3": 0.75}, - {"time": 1.9833, "x": -10.53, "y": -2.86, "curve": 0.25, "c3": 0.75}, {"time": 2.2333, "curve": 0.25, "c3": 0.75}, {"time": 2.4833, "x": -10.53, "y": -2.86, "curve": 0.25, "c3": 0.75}, - {"time": 2.7333, "curve": 0.25, "c3": 0.75}, {"time": 2.9, "x": -10.53, "y": -2.86, "curve": 0.25, "c3": 0.75}, - {"time": 3.15, "x": 3.54, "y": -2.08, "curve": 0.245, "c3": 0.637, "c4": 0.56}, {"time": 3.25, "x": 1.3, "y": -0.76} - ] - }, - "@body5": { - "rotate": [ - {"curve": 0.25, "c3": 0.75}, {"time": 0.1667, "angle": -0.69, "curve": 0.25, "c3": 0.75}, {"time": 0.3333, "angle": 3.41, "curve": 0.25, "c3": 0.75}, - {"time": 0.5, "angle": -2, "curve": 0.25, "c3": 0.75}, {"time": 0.6667, "curve": 0.25, "c3": 0.75}, {"time": 0.9167, "angle": 1.01, "curve": 0.25, "c3": 0.75}, - {"time": 1.1667, "angle": 0.75, "curve": 0.25, "c3": 0.75}, {"time": 1.4167, "angle": 1.01, "curve": 0.25, "c3": 0.75}, {"time": 1.6667, "angle": -0.24, "curve": 0.25, "c3": 0.75}, - {"time": 1.9167, "angle": 1.01, "curve": 0.25, "c3": 0.75}, {"time": 2.1667, "angle": 1.23, "curve": 0.25, "c3": 0.75}, {"time": 2.4167, "angle": 1.01, "curve": 0.25, "c3": 0.75}, - {"time": 2.6667, "curve": 0.25, "c3": 0.75}, {"time": 2.8333, "angle": 3.41, "curve": 0.25, "c3": 0.75}, {"time": 3.0833, "angle": -0.69, "curve": 0.25, "c3": 0.75}, {"time": 3.25} + {"x": -0.22, "y": -0.04, "curve": 0.362, "c2": 0.64, "c3": 0.698}, {"time": 0.0333, "curve": "stepped"}, {"time": 0.3667, "curve": 0.25, "c3": 0.75}, + {"time": 0.55, "x": -14.09, "y": -2.21, "curve": 0.25, "c3": 0.75}, {"time": 0.7833, "curve": 0.25, "c3": 0.75}, + {"time": 1.0667, "x": -4.22, "y": -0.69, "curve": 0.245, "c3": 0.707, "c4": 0.82}, {"time": 1.3333, "x": -0.22, "y": -0.04} ] } } }, - "3087086321": { - "slots": { - "eyes": {"attachment": [{"time": 0.1, "name": "eyes-shut"}, {"time": 1, "name": "eyes"}]}, - "leg-back-left": {"attachment": [{"time": 0.0667, "name": "sumo-leg-back-left-long"}, {"time": 0.9, "name": "sumo-leg-back-left"}]} - }, + "2809240631": { + "slots": {"eyes": {"attachment": [{"time": 0.0167, "name": "eyes-angry"}, {"time": 0.6333, "name": "eyes-shut"}, {"time": 0.7, "name": "eyes-angry"}, {"time": 1.2833, "name": "eyes"}]}}, "bones": { "@pivot-back": { "rotate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "angle": -18, "curve": 0.317, "c3": 0.693}, {"time": 0.3333, "angle": -17, "curve": 0.317, "c3": 0.693}, - {"time": 0.5, "angle": -18, "curve": 0.317, "c3": 0.693}, {"time": 0.6667, "angle": -17, "curve": 0.317, "c3": 0.693}, {"time": 0.8333, "angle": -18, "curve": 0.317, "c3": 0.693}, - {"time": 1.0833} + {"curve": 0.302, "c4": 0.8}, {"time": 0.1667, "angle": -5.15, "curve": 0, "c2": 0.2, "c3": 0.692}, {"time": 0.3333, "angle": 4.71, "curve": 0, "c2": 0.1, "c3": 0.853}, + {"time": 0.5, "angle": -2.3, "curve": 0.308, "c3": 0.692}, {"time": 0.6667, "angle": 2.84, "curve": 0.314, "c3": 0.701}, + {"time": 0.9167, "angle": -3.66, "curve": 0, "c2": 0.1, "c3": 0.845}, {"time": 1.0833, "angle": -0.77, "curve": 0.311, "c4": 0.8}, {"time": 1.25} ], "translate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": 33.94, "y": -52, "curve": "stepped"}, {"time": 0.8333, "x": 33.94, "y": -52, "curve": 0.317, "c3": 0.693}, {"time": 1.0833} - ] - }, - "@leg-front-left": { - "translate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": -27.99, "y": 1.7, "curve": 0.25, "c3": 0.75}, {"time": 0.3333, "x": -26.93, "y": -1.56, "curve": 0.25, "c3": 0.75}, - {"time": 0.5, "x": -27.99, "y": 1.7, "curve": 0.25, "c3": 0.75}, {"time": 0.6667, "x": -26.93, "y": -1.56, "curve": 0.25, "c3": 0.75}, - {"time": 0.8333, "x": -27.99, "y": 1.7, "curve": 0.317, "c3": 0.693}, {"time": 1.0833} + {"curve": 0.308, "c4": 0.79}, {"time": 0.25, "x": -74.35, "y": -25.83, "curve": 0, "c2": 0.3, "c3": 0.537}, {"time": 0.4167, "x": -74.35, "y": 55.38, "curve": 0, "c2": 0.1, "c3": 0.853}, + {"time": 0.5833, "x": 103.85, "y": -14.97, "curve": 0.308, "c3": 0.692}, {"time": 0.75, "x": 103.82, "y": 55.43, "curve": 0.314, "c3": 0.701}, + {"time": 1, "x": -40.96, "y": -15.97, "curve": 0.314, "c3": 0.701}, {"time": 1.1667, "x": -40.96, "y": 0.03, "curve": 0, "c2": 0.05, "c3": 0.933}, {"time": 1.3333} ] }, "@leg-front-right": { - "translate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": -84.32, "y": 39.72, "curve": 0.317, "c3": 0.693}, {"time": 0.3333, "x": -82.71, "y": 34.75, "curve": 0.317, "c3": 0.693}, - {"time": 0.5, "x": -84.32, "y": 39.72, "curve": 0.317, "c3": 0.693}, {"time": 0.6667, "x": -82.71, "y": 34.75, "curve": 0.317, "c3": 0.693}, - {"time": 0.8333, "x": -84.32, "y": 39.72, "curve": 0.317, "c3": 0.693}, {"time": 1.0833} + "rotate": [ + {"curve": 0.307, "c4": 0.8}, {"time": 0.1667, "angle": 13.08, "curve": 0.302, "c3": 0.695}, {"time": 0.4167, "angle": -24.68, "curve": "stepped"}, + {"time": 0.5833, "angle": -24.68, "curve": 0, "c2": 0.2, "c3": 0.689}, {"time": 0.75, "angle": 8.39, "curve": "stepped"}, {"time": 0.9167, "angle": 8.39, "curve": 0.308, "c4": 0.8}, + {"time": 1.1667, "angle": -16.49, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 1.3333, "angle": -30.3} ] }, - "leg-front-right-IK": { - "translate": [{"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": 40.32, "curve": "stepped"}, {"time": 0.8333, "x": 40.32, "curve": 0.317, "c3": 0.693}, {"time": 1.0833}] - }, - "leg-front-left-IK": { - "translate": [{"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": 26.51, "curve": "stepped"}, {"time": 0.8333, "x": 26.51, "curve": 0.317, "c3": 0.693}, {"time": 1.0833}] + "@leg-front-left": { + "rotate": [ + {"curve": 0.307, "c4": 0.8}, {"time": 0.1667, "angle": 13.08, "curve": 0.302, "c3": 0.695}, {"time": 0.4167, "angle": -24.68, "curve": "stepped"}, + {"time": 0.5833, "angle": -24.68, "curve": 0, "c2": 0.2, "c3": 0.689}, {"time": 0.75, "angle": 8.39, "curve": "stepped"}, {"time": 0.9167, "angle": 8.39, "curve": 0.308, "c4": 0.8}, + {"time": 1.1667, "angle": -16.49, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 1.3333, "angle": 20.14} + ] }, - "leg-back-left-IK": { - "translate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": -21.75, "y": 117.39, "curve": 0.617, "c4": 0.6}, - {"time": 0.2667, "x": -93.41, "y": 108.34, "curve": 0, "c2": 0.4, "c3": 0.383}, {"time": 0.35, "x": -22.69, "y": 117.03, "curve": 0.617, "c4": 0.6}, - {"time": 0.45, "x": -78.11, "y": 117.52, "curve": 0, "c2": 0.4, "c3": 0.383}, {"time": 0.55, "x": -20.24, "y": 116.41, "curve": 0.617, "c4": 0.6}, - {"time": 0.6333, "x": -82.4, "y": 114.46, "curve": 0, "c2": 0.4, "c3": 0.383}, {"time": 0.7333, "x": -22.08, "y": 116.41, "curve": 0.434, "c3": 0.739, "c4": 0.4}, - {"time": 0.8333, "x": -68.55, "y": 121.38, "curve": 0.223, "c2": 0.33, "c3": 0.336}, {"time": 1.0833} + "@leg-back-left": { + "rotate": [ + {"curve": 0.307, "c4": 0.8}, {"time": 0.1667, "angle": 13.08}, {"time": 0.3333, "angle": -13.36}, {"time": 0.75, "angle": 11.05, "curve": "stepped"}, + {"time": 0.9167, "angle": 11.05, "curve": 0.308, "c4": 0.8}, {"time": 1.1667, "angle": -13.83, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 1.3333, "angle": -11.75} ] }, "tail": { "rotate": [ - {"curve": 0, "c2": 0.3, "c3": 0.546}, {"time": 0.1667, "angle": 25.35, "curve": 0.317, "c3": 0.693}, {"time": 0.3333, "angle": 33.35, "curve": 0.317, "c3": 0.693}, - {"time": 0.5, "angle": 25.35, "curve": 0.317, "c3": 0.693}, {"time": 0.6667, "angle": 33.35, "curve": 0.317, "c3": 0.693}, - {"time": 0.9167, "angle": 25.35, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 1.0833} + {"curve": 0, "c2": 0.2, "c3": 0.698}, {"time": 0.1667, "angle": -6, "curve": 0.305, "c3": 0.698}, {"time": 0.25, "angle": 1.14, "curve": 0.301, "c3": 0.698}, + {"time": 0.4167, "angle": -8.39, "curve": 0, "c2": 0.2, "c3": 0.698}, {"time": 0.5833, "angle": 0.59, "curve": 0.305, "c3": 0.698}, + {"time": 0.75, "angle": -10.53, "curve": 0, "c2": 0.2, "c3": 0.692}, {"time": 1, "angle": -2.29, "curve": 0.302, "c3": 0.692}, + {"time": 1.1667, "angle": -9.12, "curve": 0, "c2": 0.1, "c3": 0.844}, {"time": 1.3333} + ] + }, + "back": { + "rotate": [ + {"curve": 0, "c2": 0.2, "c3": 0.698}, {"time": 0.1667, "angle": -1.84, "curve": 0.305, "c3": 0.698}, {"time": 0.25, "angle": 3, "curve": 0.301, "c3": 0.698}, + {"time": 0.4167, "angle": 0.04, "curve": 0, "c2": 0.2, "c3": 0.698}, {"time": 0.5833, "angle": 4.01, "curve": 0.305, "c3": 0.698}, + {"time": 0.75, "angle": 0.76, "curve": 0, "c2": 0.2, "c3": 0.692}, {"time": 1, "angle": 4.04, "curve": 0.302, "c3": 0.692}, + {"time": 1.1667, "angle": 1.6, "curve": 0, "c2": 0.1, "c3": 0.844}, {"time": 1.3333} ] }, "@shadow": { - "translate": [{"curve": 0, "c2": 0.3, "c3": 0.546}, {"time": 0.1667, "x": 32.73, "curve": "stepped"}, {"time": 0.8333, "x": 32.73, "curve": 0.317, "c3": 0.693}, {"time": 1.0833}], + "translate": [ + {"curve": 0.315, "c4": 0.8}, {"time": 0.25, "x": -83.7, "curve": 0, "c2": 0.3, "c3": 0.535}, {"time": 0.4167, "x": -83.9, "curve": 0, "c2": 0.1, "c3": 0.85}, + {"time": 0.5833, "x": 94.25, "curve": 0.309, "c3": 0.691}, {"time": 0.75, "x": 94.33, "curve": 0.309, "c3": 0.691}, {"time": 1, "x": -50.6, "curve": "stepped"}, + {"time": 1.1667, "x": -50.6, "curve": 0.082, "c3": 0.928}, {"time": 1.3333} + ], "scale": [ - {"time": 0.1667, "curve": 0.317, "c3": 0.693}, {"time": 0.25, "x": 1.02, "y": 1.02, "curve": 0.317, "c3": 0.693}, {"time": 0.3333, "curve": 0.317, "c3": 0.693}, - {"time": 0.4167, "x": 1.02, "y": 1.02, "curve": 0.317, "c3": 0.693}, {"time": 0.5, "curve": 0.317, "c3": 0.693}, {"time": 0.5833, "x": 1.02, "y": 1.02, "curve": 0.317, "c3": 0.693}, - {"time": 0.6667, "curve": 0.317, "c3": 0.693}, {"time": 0.8333, "x": 1.02, "y": 1.02, "curve": 0.317, "c3": 0.693}, {"time": 1.0833} + {"curve": 0.315, "c4": 0.8}, {"time": 0.25, "x": 1.04, "y": 1.04, "curve": 0, "c2": 0.3, "c3": 0.535}, {"time": 0.4167, "x": 0.95, "y": 0.95, "curve": 0, "c2": 0.1, "c3": 0.85}, + {"time": 0.5833, "x": 1.08, "y": 1.08, "curve": 0.309, "c3": 0.691}, {"time": 0.75, "x": 0.96, "y": 0.96, "curve": 0.309, "c3": 0.691}, + {"time": 1, "x": 1.08, "y": 1.08, "curve": 0.309, "c3": 0.691}, {"time": 1.1667, "x": 1.04, "y": 1.04, "curve": 0.082, "c3": 0.928}, {"time": 1.3333} ] }, "@body3": { "rotate": [ - {"angle": 0.98, "curve": 0.349, "c2": 0.39, "c3": 0.689, "c4": 0.74}, {"time": 0.05, "angle": 0.35, "curve": 0.375, "c2": 0.62, "c3": 0.716}, {"time": 0.1, "curve": 0.25, "c3": 0.75}, - {"time": 0.2667, "angle": 2.71, "curve": 0.25, "c3": 0.75}, {"time": 0.4333, "angle": -9.07, "curve": 0.25, "c3": 0.75}, {"time": 0.6, "angle": 2.71, "curve": 0.25, "c3": 0.75}, - {"time": 0.7667, "angle": -9.07, "curve": 0.25, "c3": 0.75}, {"time": 0.9333, "angle": 2.71, "curve": 0.245, "c3": 0.637, "c4": 0.56}, {"time": 1.0833, "angle": 0.98} + {"angle": -3.55, "curve": 0.352, "c2": 0.4, "c3": 0.689, "c4": 0.75}, {"time": 0.0333, "angle": -1.23, "curve": 0.369, "c2": 0.63, "c3": 0.707}, + {"time": 0.0667, "curve": 0.25, "c3": 0.75}, {"time": 0.3, "angle": -14.35, "curve": 0.25, "c3": 0.75}, {"time": 0.5167, "curve": 0.25, "c3": 0.75}, + {"time": 0.7333, "angle": -14.35, "curve": 0.25, "c3": 0.75}, {"time": 0.95, "curve": 0.25, "c3": 0.75}, {"time": 1.1833, "angle": -14.35, "curve": 0.243, "c3": 0.654, "c4": 0.62}, + {"time": 1.3333, "angle": -3.55} ], "translate": [ - {"x": -1.52, "y": -0.3, "curve": 0.375, "c2": 0.62, "c3": 0.716}, {"time": 0.05, "curve": 0.25, "c3": 0.75}, {"time": 0.2167, "x": -11.72, "y": -2.34, "curve": 0.25, "c3": 0.75}, - {"time": 0.3833, "x": 23.59, "y": 3.86, "curve": 0.25, "c3": 0.75}, {"time": 0.55, "x": -11.72, "y": -2.34, "curve": 0.25, "c3": 0.75}, - {"time": 0.7167, "x": 23.59, "y": 3.86, "curve": 0.25, "c3": 0.75}, {"time": 0.8833, "x": -11.72, "y": -2.34, "curve": 0.243, "c3": 0.68, "c4": 0.71}, - {"time": 1.0833, "x": -1.52, "y": -0.3} + {"x": 2.97, "y": -1.66, "curve": 0.369, "c2": 0.63, "c3": 0.707}, {"time": 0.0333, "curve": 0.25, "c3": 0.75}, {"time": 0.2667, "x": 34.51, "y": -19.31, "curve": 0.25, "c3": 0.75}, + {"time": 0.4833, "curve": 0.25, "c3": 0.75}, {"time": 0.7, "x": 34.51, "y": -19.31, "curve": 0.25, "c3": 0.75}, {"time": 0.9167, "curve": 0.25, "c3": 0.75}, + {"time": 1.15, "x": 34.51, "y": -19.31, "curve": 0.244, "c3": 0.693, "c4": 0.76}, {"time": 1.3333, "x": 2.97, "y": -1.66} ] }, "@body4": { "rotate": [ - {"angle": 0.15, "curve": 0.366, "c2": 0.63, "c3": 0.703}, {"time": 0.0333, "curve": 0.25, "c3": 0.75}, {"time": 0.2, "angle": 2.32, "curve": 0.25, "c3": 0.75}, - {"time": 0.3667, "angle": -9.1, "curve": 0.25, "c3": 0.75}, {"time": 0.5333, "angle": 2.32, "curve": 0.25, "c3": 0.75}, {"time": 0.7, "angle": -9.1, "curve": 0.25, "c3": 0.75}, - {"time": 0.8667, "angle": 2.32, "curve": 0.248, "c3": 0.628, "c4": 0.52}, {"time": 1, "angle": 1.06, "curve": 0.356, "c2": 0.41, "c3": 0.707, "c4": 0.81}, {"time": 1.0833, "angle": 0.15} + {"angle": 4.15, "curve": 0.342, "c2": 0.36, "c3": 0.69, "c4": 0.74}, {"time": 0.0667, "angle": 1.24, "curve": 0.378, "c2": 0.61, "c3": 0.721}, + {"time": 0.1167, "curve": 0.25, "c3": 0.75}, {"time": 0.35, "angle": 7.58, "curve": 0.25, "c3": 0.75}, {"time": 0.5667, "curve": 0.25, "c3": 0.75}, + {"time": 0.7833, "angle": 7.58, "curve": 0.25, "c3": 0.75}, {"time": 1, "curve": 0.25, "c3": 0.75}, {"time": 1.2333, "angle": 7.58, "curve": 0.253, "c3": 0.622, "c4": 0.48}, + {"time": 1.3333, "angle": 4.15} ], "translate": [ - {"x": 0.47, "y": -2.37, "curve": 0.345, "c2": 0.37, "c3": 0.757}, {"time": 0.1167, "x": 1.95, "y": -9.77, "curve": 0.25, "c3": 0.75}, - {"time": 0.2833, "x": 13.76, "y": 2.25, "curve": 0.25, "c3": 0.75}, {"time": 0.45, "x": 1.95, "y": -9.77, "curve": 0.25, "c3": 0.75}, - {"time": 0.6167, "x": 13.76, "y": 2.25, "curve": 0.25, "c3": 0.75}, {"time": 0.7833, "x": 1.95, "y": -9.77, "curve": 0.244, "c3": 0.7, "c4": 0.79}, - {"time": 1, "x": 0.14, "y": -0.68, "curve": 0.366, "c2": 0.63, "c3": 0.703}, {"time": 1.0333, "curve": 0.269, "c3": 0.618, "c4": 0.42}, {"time": 1.0833, "x": 0.47, "y": -2.37} + {"x": 11.72, "y": -1.86, "curve": 0.382, "c2": 0.58, "c3": 0.732}, {"time": 0.0667, "curve": 0.25, "c3": 0.75}, {"time": 0.3, "x": 46.53, "y": -7.39, "curve": 0.25, "c3": 0.75}, + {"time": 0.5167, "curve": 0.25, "c3": 0.75}, {"time": 0.7333, "x": 46.53, "y": -7.39, "curve": 0.25, "c3": 0.75}, {"time": 0.95, "curve": 0.25, "c3": 0.75}, + {"time": 1.1833, "x": 46.53, "y": -7.39, "curve": 0.243, "c3": 0.654, "c4": 0.62}, {"time": 1.3333, "x": 11.72, "y": -1.86} ] }, "@body6": { "rotate": [ - {"angle": 3.18, "curve": 0.382, "c2": 0.57, "c3": 0.735}, {"time": 0.0833, "curve": 0.25, "c3": 0.75}, {"time": 0.25, "angle": 11.2, "curve": 0.25, "c3": 0.75}, - {"time": 0.4167, "angle": -1.3, "curve": 0.25, "c3": 0.75}, {"time": 0.5833, "angle": 11.2, "curve": 0.25, "c3": 0.75}, {"time": 0.75, "angle": -1.3, "curve": 0.25, "c3": 0.75}, - {"time": 0.9167, "angle": 11.2, "curve": 0.243, "c3": 0.649, "c4": 0.6}, {"time": 1.0833, "angle": 3.18} - ], - "translate": [ - {"x": -0.92, "y": 0.48, "curve": 0.375, "c2": 0.62, "c3": 0.716}, {"time": 0.05, "curve": 0.25, "c3": 0.75}, {"time": 0.2167, "x": -7.07, "y": 3.68, "curve": 0.25, "c3": 0.75}, - {"time": 0.3833, "curve": 0.25, "c3": 0.75}, {"time": 0.55, "x": -7.07, "y": 3.68, "curve": 0.25, "c3": 0.75}, {"time": 0.7167, "curve": 0.25, "c3": 0.75}, - {"time": 0.8833, "x": -7.07, "y": 3.68, "curve": 0.243, "c3": 0.68, "c4": 0.71}, {"time": 1.0833, "x": -0.92, "y": 0.48} + {"angle": 10.03, "curve": 0.336, "c2": 0.34, "c3": 0.691, "c4": 0.74}, {"time": 0.0833, "angle": 2.53, "curve": 0.378, "c2": 0.61, "c3": 0.721}, + {"time": 0.1333, "curve": 0.25, "c3": 0.75}, {"time": 0.3667, "angle": 15.47, "curve": 0.25, "c3": 0.75}, {"time": 0.5833, "curve": 0.25, "c3": 0.75}, + {"time": 0.8, "angle": 15.47, "curve": 0.25, "c3": 0.75}, {"time": 1.0167, "curve": 0.25, "c3": 0.75}, {"time": 1.25, "angle": 15.47, "curve": 0.259, "c3": 0.618, "c4": 0.45}, + {"time": 1.3333, "angle": 10.03} + ], + "translate": [ + {"x": -5.93, "y": -0.4, "curve": 0.382, "c2": 0.55, "c3": 0.741}, {"time": 0.0833, "curve": 0.25, "c3": 0.75}, {"time": 0.3167, "x": -17.06, "y": -1.14, "curve": 0.25, "c3": 0.75}, + {"time": 0.5333, "curve": 0.25, "c3": 0.75}, {"time": 0.75, "x": -17.06, "y": -1.14, "curve": 0.25, "c3": 0.75}, {"time": 0.9667, "curve": 0.25, "c3": 0.75}, + {"time": 1.2, "x": -17.06, "y": -1.14, "curve": 0.245, "c3": 0.64, "c4": 0.57}, {"time": 1.3333, "x": -5.93, "y": -0.4} ] }, - "body-braid2": { + "@body2": { "rotate": [ - {"angle": 0.61, "curve": 0.366, "c2": 0.63, "c3": 0.703}, {"time": 0.0333, "curve": 0.25, "c3": 0.75}, {"time": 0.2, "angle": 8.77, "curve": 0.25, "c3": 0.75}, - {"time": 0.3667, "curve": 0.25, "c3": 0.75}, {"time": 0.5333, "angle": 8.77, "curve": 0.25, "c3": 0.75}, {"time": 0.7, "curve": 0.25, "c3": 0.75}, - {"time": 0.8667, "angle": 8.77, "curve": 0.244, "c3": 0.7, "c4": 0.79}, {"time": 1.0833, "angle": 0.61} + {"angle": -4.48, "curve": 0.34, "c2": 0.35, "c3": 0.677, "c4": 0.7}, {"time": 0.0333, "angle": -2.52, "curve": 0.382, "c2": 0.58, "c3": 0.732}, {"time": 0.1, "curve": 0.25, "c3": 0.75}, + {"time": 0.3333, "angle": -10.03, "curve": 0.25, "c3": 0.75}, {"time": 0.55, "curve": 0.25, "c3": 0.75}, {"time": 0.7667, "angle": -10.03, "curve": 0.25, "c3": 0.75}, + {"time": 0.9833, "curve": 0.25, "c3": 0.75}, {"time": 1.2167, "angle": -10.03, "curve": 0.248, "c3": 0.629, "c4": 0.52}, {"time": 1.3333, "angle": -4.48} ], "translate": [ - {"curve": 0.25, "c3": 0.75}, {"time": 0.1667, "x": -10.52, "y": -2.87, "curve": 0.25, "c3": 0.75}, {"time": 0.3333, "curve": 0.25, "c3": 0.75}, - {"time": 0.5, "x": -10.52, "y": -2.87, "curve": 0.25, "c3": 0.75}, {"time": 0.6667, "curve": 0.25, "c3": 0.75}, {"time": 0.8333, "x": -10.52, "y": -2.87, "curve": 0.25, "c3": 0.75}, - {"time": 1.0833} + {"x": 0.24, "y": 0.6, "curve": 0.369, "c2": 0.63, "c3": 0.707}, {"time": 0.0333, "curve": 0.25, "c3": 0.75}, {"time": 0.2667, "x": 2.83, "y": 6.92, "curve": 0.25, "c3": 0.75}, + {"time": 0.4833, "curve": 0.25, "c3": 0.75}, {"time": 0.7, "x": 2.83, "y": 6.92, "curve": 0.25, "c3": 0.75}, {"time": 0.9167, "curve": 0.25, "c3": 0.75}, + {"time": 1.15, "x": 2.83, "y": 6.92, "curve": 0.244, "c3": 0.693, "c4": 0.76}, {"time": 1.3333, "x": 0.24, "y": 0.6} ] }, - "body-braid4": { + "body-braid2": { "rotate": [ - {"angle": 10.6, "curve": 0.363, "c2": 0.44, "c3": 0.755}, {"time": 0.15, "curve": 0.25, "c3": 0.75}, {"time": 0.3167, "angle": 27.77, "curve": 0.25, "c3": 0.75}, - {"time": 0.4833, "angle": 0.5, "curve": 0.25, "c3": 0.75}, {"time": 0.65, "angle": 29.08, "curve": 0.25, "c3": 0.75}, {"time": 0.8167, "curve": 0.25, "c3": 0.75}, - {"time": 0.9833, "angle": 16.77, "curve": 0.258, "c3": 0.619, "c4": 0.45}, {"time": 1.0833, "angle": 10.6} + {"angle": 0.07, "curve": 0.25, "c3": 0.75}, {"time": 0.1667, "angle": 13.44, "curve": 0.25, "c3": 0.75}, {"time": 0.3333, "curve": 0.25, "c3": 0.75}, + {"time": 0.5167, "angle": 19.59, "curve": 0.25, "c3": 0.75}, {"time": 0.75, "angle": -7.14, "curve": 0.25, "c3": 0.75}, {"time": 1.0333, "angle": 4.57, "curve": 0.25, "c3": 0.75}, + {"time": 1.3333, "angle": 0.07} ] }, "body-braid3": { "rotate": [ - {"angle": 5.6, "curve": 0.382, "c2": 0.57, "c3": 0.735}, {"time": 0.0833, "curve": 0.25, "c3": 0.75}, {"time": 0.25, "angle": 29.56, "curve": 0.25, "c3": 0.75}, - {"time": 0.4167, "angle": 3.6, "curve": 0.25, "c3": 0.75}, {"time": 0.5833, "angle": 32.55, "curve": 0.25, "c3": 0.75}, {"time": 0.75, "curve": 0.25, "c3": 0.75}, - {"time": 0.9167, "angle": 19.72, "curve": 0.243, "c3": 0.649, "c4": 0.6}, {"time": 1.0833, "angle": 5.6} + {"angle": 0.5, "curve": 0.371, "c2": 0.62, "c3": 0.71}, {"time": 0.05, "angle": 0.07, "curve": 0.25, "c3": 0.75}, {"time": 0.2167, "angle": 20.19, "curve": 0.25, "c3": 0.75}, + {"time": 0.3833, "curve": 0.25, "c3": 0.75}, {"time": 0.5667, "angle": 31.19, "curve": 0.25, "c3": 0.75}, {"time": 0.8, "angle": -7.14, "curve": 0.25, "c3": 0.75}, + {"time": 1.0833, "angle": 4.57, "curve": 0.243, "c3": 0.689, "c4": 0.75}, {"time": 1.3333, "angle": 0.5} ] }, - "@body2": { + "body-braid": { "rotate": [ - {"angle": 1.74, "curve": 0.38, "c2": 0.59, "c3": 0.727}, {"time": 0.0667, "curve": 0.25, "c3": 0.75}, {"time": 0.2333, "angle": 8.58, "curve": 0.25, "c3": 0.75}, - {"time": 0.4, "angle": -3.05, "curve": 0.25, "c3": 0.75}, {"time": 0.5667, "angle": 8.58, "curve": 0.25, "c3": 0.75}, {"time": 0.7333, "angle": -3.05, "curve": 0.25, "c3": 0.75}, - {"time": 0.9, "angle": 8.58, "curve": 0.242, "c3": 0.663, "c4": 0.65}, {"time": 1.0833, "angle": 1.74} - ], - "translate": [ - {"curve": 0.25, "c3": 0.75}, {"time": 0.1667, "x": -7.81, "y": -1.56, "curve": 0.25, "c3": 0.75}, {"time": 0.3333, "x": 13.76, "y": 2.25, "curve": 0.25, "c3": 0.75}, - {"time": 0.5, "x": -7.81, "y": -1.56, "curve": 0.25, "c3": 0.75}, {"time": 0.6667, "x": 13.76, "y": 2.25, "curve": 0.25, "c3": 0.75}, - {"time": 0.8333, "x": -7.81, "y": -1.56, "curve": 0.25, "c3": 0.75}, {"time": 1.0833} + {"angle": 5.4, "curve": 0.362, "c2": 0.64, "c3": 0.698}, {"time": 0.0333, "angle": 5.16, "curve": 0.25, "c3": 0.75}, {"time": 0.2, "angle": 10.61, "curve": 0.25, "c3": 0.75}, + {"time": 0.3667, "angle": 3.41, "curve": 0.25, "c3": 0.75}, {"time": 0.55, "angle": 30.24, "curve": 0.25, "c3": 0.75}, {"time": 0.7833, "angle": -2.04, "curve": 0.25, "c3": 0.75}, + {"time": 1.0667, "angle": 9.67, "curve": 0.245, "c3": 0.707, "c4": 0.82}, {"time": 1.3333, "angle": 5.4} ] }, - "body-braid6": { + "body-braid4": { "rotate": [ - {"angle": 2.45, "curve": 0.382, "c2": 0.58, "c3": 0.731}, {"time": 0.05, "angle": 3.23, "curve": 0.25, "c3": 0.75}, {"time": 0.3, "angle": 30.91, "curve": 0.25, "c3": 0.75}, - {"time": 0.4667, "angle": -5.33, "curve": 0.25, "c3": 0.75}, {"time": 0.6333, "angle": 13.66, "curve": 0.25, "c3": 0.75}, {"time": 0.8, "angle": 3.23, "curve": 0.25, "c3": 0.75}, - {"time": 0.9667, "curve": 0.243, "c3": 0.655, "c4": 0.63}, {"time": 1.0833, "angle": 2.45} - ] + {"angle": 1.66, "curve": 0.382, "c2": 0.55, "c3": 0.741}, {"time": 0.1167, "angle": 0.07, "curve": 0.25, "c3": 0.75}, {"time": 0.2833, "angle": 19.6, "curve": 0.25, "c3": 0.75}, + {"time": 0.45, "curve": 0.25, "c3": 0.75}, {"time": 0.6333, "angle": 23.3, "curve": 0.25, "c3": 0.75}, {"time": 0.8667, "angle": -7.14, "curve": 0.25, "c3": 0.75}, + {"time": 1.15, "angle": 4.57, "curve": 0.245, "c3": 0.639, "c4": 0.56}, {"time": 1.3333, "angle": 1.66} + ], + "translate": [{"x": -2.3, "y": -9.73}] }, "body-braid5": { "rotate": [ - {"angle": 7.44, "curve": 0.351, "c2": 0.4, "c3": 0.757}, {"time": 0.1667, "curve": 0.25, "c3": 0.75}, {"time": 0.3333, "angle": 38.8, "curve": 0.25, "c3": 0.75}, - {"time": 0.5, "curve": 0.25, "c3": 0.75}, {"time": 0.6667, "angle": 25.82, "curve": 0.25, "c3": 0.75}, {"time": 0.8333, "curve": 0.25, "c3": 0.75}, - {"time": 1, "angle": 10.38, "curve": 0.265, "c3": 0.618, "c4": 0.43}, {"time": 1.0833, "angle": 7.44} - ] - }, - "body-braid": { - "rotate": [ - {"angle": 5.07, "curve": 0.382, "c2": 0.57, "c3": 0.735}, {"time": 0.0833, "curve": 0.25, "c3": 0.75}, {"time": 0.25, "angle": 17.88, "curve": 0.25, "c3": 0.75}, - {"time": 0.4167, "curve": 0.25, "c3": 0.75}, {"time": 0.5833, "angle": 17.88, "curve": 0.25, "c3": 0.75}, {"time": 0.75, "curve": 0.25, "c3": 0.75}, - {"time": 0.9167, "angle": 17.88, "curve": 0.243, "c3": 0.649, "c4": 0.6}, {"time": 1.0833, "angle": 5.07} - ], - "translate": [ - {"x": -1.37, "y": -0.37, "curve": 0.375, "c2": 0.62, "c3": 0.716}, {"time": 0.05, "curve": 0.25, "c3": 0.75}, {"time": 0.2167, "x": -10.53, "y": -2.86, "curve": 0.25, "c3": 0.75}, - {"time": 0.3833, "curve": 0.25, "c3": 0.75}, {"time": 0.55, "x": -10.53, "y": -2.86, "curve": 0.25, "c3": 0.75}, {"time": 0.7167, "curve": 0.25, "c3": 0.75}, - {"time": 0.8833, "x": -10.53, "y": -2.86, "curve": 0.243, "c3": 0.68, "c4": 0.71}, {"time": 1.0833, "x": -1.37, "y": -0.37} + {"angle": 8.42, "curve": 0.382, "c2": 0.57, "c3": 0.735}, {"time": 0.1, "angle": 7.14, "curve": 0.25, "c3": 0.75}, {"time": 0.2667, "angle": 31.61, "curve": 0.25, "c3": 0.75}, + {"time": 0.4333, "angle": 7.07, "curve": 0.25, "c3": 0.75}, {"time": 0.6167, "angle": 41.8, "curve": 0.25, "c3": 0.75}, {"time": 0.85, "angle": -0.06, "curve": 0.25, "c3": 0.75}, + {"time": 1.1333, "angle": 11.65, "curve": 0.243, "c3": 0.649, "c4": 0.6}, {"time": 1.3333, "angle": 8.42} ] }, - "@body5": { + "body-braid6": { "rotate": [ - {"angle": 0.02, "curve": 0.352, "c2": 0.65, "c3": 0.687}, {"time": 0.0167, "curve": 0.25, "c3": 0.75}, {"time": 0.1833, "angle": 1.01, "curve": 0.25, "c3": 0.75}, - {"time": 0.35, "angle": -0.24, "curve": 0.25, "c3": 0.75}, {"time": 0.5167, "angle": 1.01, "curve": 0.25, "c3": 0.75}, {"time": 0.6833, "angle": -0.24, "curve": 0.25, "c3": 0.75}, - {"time": 0.85, "angle": 1.01, "curve": 0.246, "c3": 0.723, "c4": 0.88}, {"time": 1.0833, "angle": 0.02} + {"angle": -1.62, "curve": 0.361, "c2": 0.44, "c3": 0.755}, {"time": 0.1833, "angle": -4.54, "curve": 0.25, "c3": 0.75}, {"time": 0.35, "angle": 13.39, "curve": 0.25, "c3": 0.75}, + {"time": 0.5167, "angle": -4.61, "curve": 0.25, "c3": 0.75}, {"time": 0.7, "angle": 13.15, "curve": 0.25, "c3": 0.75}, {"time": 0.9333, "angle": -11.74, "curve": 0.25, "c3": 0.75}, + {"time": 1.2167, "angle": -0.03, "curve": 0.259, "c3": 0.618, "c4": 0.45}, {"time": 1.3333, "angle": -1.62} ] } } }, - "1540593521": { - "slots": {"eyes": {"attachment": [{"time": 0.05, "name": "eyes-shut"}, {"time": 2.0833, "name": "eyes"}]}}, + "180682469": { + "slots": { + "eyes": { + "attachment": [ + {"time": 0.05, "name": "eyes-angry"}, {"time": 0.55, "name": "eyes-shut"}, {"time": 0.65, "name": "eyes-angry"}, {"time": 0.9, "name": "eyes-shut"}, {"time": 0.9667, "name": "eyes"} + ] + }, + "mouth": { + "attachment": [ + {"time": 0.1167, "name": "mouth-open"}, {"time": 0.3833, "name": "mouth-bite"}, {"time": 0.65, "name": "mouth-open"}, {"time": 0.9, "name": "mouth-bite"}, + {"time": 0.9667, "name": "mouth"} + ] + } + }, "bones": { "@pivot-back": { "rotate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "angle": 6, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.4833, "angle": 7, "curve": 0.317, "c3": 0.693}, - {"time": 0.55, "angle": 6.5, "curve": 0.317, "c3": 0.693}, {"time": 0.6167, "angle": 7, "curve": 0.317, "c3": 0.693}, {"time": 0.6833, "angle": 6.5, "curve": 0, "c2": 0.1, "c3": 0.85}, - {"time": 0.9167, "angle": 8, "curve": 0.317, "c3": 0.693}, {"time": 1.3333, "angle": -7, "curve": 0.461, "c3": 0.543}, {"time": 1.9167, "angle": -9, "curve": 0.154, "c4": 0.9}, - {"time": 2.1667, "angle": 3, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 2.3333} + {"curve": 0, "c2": 0.2, "c3": 0.695}, {"time": 0.1, "angle": 6, "curve": 0, "c2": 0.2, "c3": 0.695}, {"time": 0.25, "angle": -10.31, "curve": 0.317, "c4": 0.8}, + {"time": 0.3833, "angle": 5}, {"time": 0.6333, "angle": 6, "curve": 0, "c2": 0.2, "c3": 0.695}, {"time": 0.7667, "angle": -5.94, "curve": 0.317, "c4": 0.8}, + {"time": 0.9, "angle": 6.92, "curve": 0, "c2": 0.2, "c3": 0.695}, {"time": 1} ], "translate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "x": 7, "y": 6, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.9167, "x": 11, "y": 10, "curve": 0.317, "c3": 0.693}, - {"time": 1.3333, "x": -45, "y": -14, "curve": 0.461, "c3": 0.543}, {"time": 1.9167, "x": -45, "y": -18, "curve": 0.154, "c4": 0.9}, - {"time": 2.1667, "y": 4.23, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 2.3333} + {"time": 0.1, "curve": 0, "c2": 0.2, "c3": 0.695}, {"time": 0.25, "y": 82.86, "curve": 0.317, "c4": 0.8}, {"time": 0.3833, "curve": "stepped"}, + {"time": 0.6333, "curve": 0, "c2": 0.2, "c3": 0.695}, {"time": 0.7667, "y": 70.12, "curve": 0.317, "c4": 0.8}, {"time": 0.9} ] }, - "@leg-front-right": { + "@pivot-main": { + "translate": [{"time": 0.1, "curve": 0, "c2": 0.15, "c3": 0.703}, {"time": 0.3833, "x": 542.6}, {"time": 0.6333, "x": 603.73, "curve": 0, "c2": 0.1, "c3": 0.852}, {"time": 0.9}] + }, + "@leg-front-left": { "translate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "x": -2.08, "y": -23.58, "curve": "stepped"}, {"time": 0.9167, "x": -2.08, "y": -23.58, "curve": 0.317, "c3": 0.693}, - {"time": 1.3333, "x": -56.51, "y": 25.21, "curve": 0.461, "c3": 0.543}, {"time": 1.9167, "x": -57.58, "y": 31.33, "curve": 0.154, "c4": 0.9}, - {"time": 2.1667, "x": -1.95, "y": -12.95, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 2.3333} + {"curve": 0, "c2": 0.2, "c3": 0.695}, {"time": 0.1, "x": -1.93, "y": -18.15, "curve": 0, "c2": 0.3, "c3": 0.62}, {"time": 0.25, "curve": 0.313, "c4": 0.8}, + {"time": 0.3833, "x": -1.93, "y": -18.15}, {"time": 0.6333, "x": -1.68, "y": -15.27, "curve": 0, "c2": 0.2, "c3": 0.691}, {"time": 0.7667, "curve": 0.309, "c4": 0.8}, + {"time": 0.9, "x": -1.93, "y": -18.15, "curve": 0, "c2": 0.19, "c3": 0.695}, {"time": 1} ] }, - "@leg-front-left": { + "@leg-front-right": { "translate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "x": -0.92, "y": -10.48, "curve": "stepped"}, {"time": 0.9167, "x": -0.92, "y": -10.48, "curve": 0.317, "c3": 0.693}, - {"time": 1.3333, "x": -48.7, "y": 5.49, "curve": 0.461, "c3": 0.543}, {"time": 1.9167, "x": -49.1, "y": 7.78, "curve": 0.154, "c4": 0.9}, - {"time": 2.1667, "x": -0.87, "y": -4.98, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 2.3333} + {"curve": 0, "c2": 0.2, "c3": 0.695}, {"time": 0.1, "x": -3.41, "y": -31.95, "curve": 0, "c2": 0.3, "c3": 0.62}, {"time": 0.25, "curve": 0.313, "c4": 0.8}, + {"time": 0.3833, "x": -3.41, "y": -31.95}, {"time": 0.6333, "x": -3.16, "y": -29.07, "curve": 0, "c2": 0.2, "c3": 0.691}, {"time": 0.7667, "curve": 0.309, "c4": 0.8}, + {"time": 0.9, "x": -3.41, "y": -31.95, "curve": 0, "c2": 0.19, "c3": 0.695}, {"time": 1} ] }, "@leg-back-left": { "translate": [ - {"time": 0.25}, {"time": 0.9167, "x": 0.52, "y": 4.2, "curve": 0.317, "c3": 0.693}, {"time": 1.3333, "x": -2.48, "y": -1.61, "curve": "stepped"}, - {"time": 1.9167, "x": -2.48, "y": -1.61, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 2.1667} + {"curve": 0, "c2": 0.2, "c3": 0.695}, {"time": 0.1, "x": -0.42, "y": -4.72, "curve": 0, "c2": 0.3, "c3": 0.62}, {"time": 0.25, "curve": 0.313, "c4": 0.8}, + {"time": 0.3833, "x": -0.42, "y": -4.72, "curve": "stepped"}, {"time": 0.6333, "x": -0.42, "y": -4.72, "curve": 0, "c2": 0.2, "c3": 0.691}, {"time": 0.7667, "curve": 0.309, "c4": 0.8}, + {"time": 0.9, "x": -0.42, "y": -4.72, "curve": 0, "c2": 0.19, "c3": 0.695}, {"time": 1} ] }, - "leg-front-left-IK": { + "leg-front-right-IK": { "translate": [ - {"time": 0.9167, "curve": 0.317, "c3": 0.693}, {"time": 1.3333, "x": -11.56, "curve": "stepped"}, {"time": 1.9167, "x": -11.56, "curve": 0.154, "c4": 0.9}, {"time": 2.1667} + {"time": 0.1, "curve": 0, "c2": 0.3, "c3": 0.62}, {"time": 0.2167, "x": -58.81, "y": 174.08, "curve": 0.257, "c3": 0.637, "c4": 0.43}, + {"time": 0.2833, "x": 10.68, "y": 136.08, "curve": 0.518, "c2": 0.35, "c4": 0.83}, {"time": 0.3833, "x": 11}, {"time": 0.6333, "x": -14.37, "curve": 0, "c2": 0.2, "c3": 0.691}, + {"time": 0.7333, "x": 26.13, "y": 111.42, "curve": 0.257, "c3": 0.63, "c4": 0.42}, {"time": 0.8, "x": -44.87, "y": 129.12, "curve": 0.503, "c2": 0.34, "c4": 0.83}, {"time": 0.9} ] }, - "leg-front-right-IK": { - "translate": [{"time": 0.9167, "curve": 0.317, "c3": 0.693}, {"time": 1.3333, "x": -5.65, "curve": "stepped"}, {"time": 1.9167, "x": -5.65, "curve": 0.154, "c4": 0.9}, {"time": 2.1667}] + "leg-front-left-IK": { + "translate": [ + {"time": 0.1, "curve": 0, "c2": 0.3, "c3": 0.62}, {"time": 0.2167, "x": -73.46, "y": 138.38, "curve": 0.257, "c3": 0.637, "c4": 0.43}, + {"time": 0.2833, "x": -0.77, "y": 108.17, "curve": 0.518, "c2": 0.35, "c4": 0.83}, {"time": 0.3833, "x": 11}, {"time": 0.6333, "x": -14.37, "curve": 0, "c2": 0.2, "c3": 0.691}, + {"time": 0.7333, "x": 11.48, "y": 75.71, "curve": 0.257, "c3": 0.63, "c4": 0.42}, {"time": 0.8, "x": -56.77, "y": 100.13, "curve": 0.503, "c2": 0.34, "c4": 0.83}, {"time": 0.9} + ] }, "leg-back-left-IK": { "translate": [ - {"time": 0.9167, "curve": 0.317, "c3": 0.693}, {"time": 1.3333, "x": -33.62, "curve": "stepped"}, {"time": 1.9167, "x": -33.62, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 2.1667} + {"time": 0.1, "curve": 0, "c2": 0.3, "c3": 0.62}, {"time": 0.2, "x": -56.56, "y": 95.34, "curve": 0.257, "c3": 0.637, "c4": 0.43}, + {"time": 0.2667, "x": 21.01, "y": 67.87, "curve": 0.518, "c2": 0.35, "c4": 0.83}, {"time": 0.3833, "x": 0.85}, {"time": 0.6333, "x": -16.87, "curve": 0, "c2": 0.2, "c3": 0.691}, + {"time": 0.7167, "x": 21.01, "y": 67.87, "curve": 0.257, "c3": 0.63, "c4": 0.42}, {"time": 0.7833, "x": -41.39, "y": 75.95, "curve": 0.503, "c2": 0.34, "c4": 0.83}, {"time": 0.9} ] }, "tail": { "rotate": [ - {"curve": 0, "c2": 0.3, "c3": 0.546}, {"time": 0.25, "angle": 20.35, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.4167, "angle": 15.85, "curve": 0.317, "c3": 0.693}, - {"time": 0.4833, "angle": 17.35, "curve": 0.317, "c3": 0.693}, {"time": 0.55, "angle": 15.85, "curve": 0.317, "c3": 0.693}, {"time": 0.6167, "angle": 18.35, "curve": 0.317, "c3": 0.693}, - {"time": 0.6833, "angle": 16.85, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.9167, "angle": 18.35, "curve": 0.317, "c3": 0.693}, - {"time": 1.3333, "angle": -9.65, "curve": 0.461, "c3": 0.543}, {"time": 1.9167, "angle": -13.65, "curve": 0.154, "c4": 0.9}, - {"time": 2.1667, "angle": 10.35, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 2.3333} + {"curve": 0, "c2": 0.2, "c3": 0.695}, {"time": 0.1, "angle": 21.16, "curve": 0, "c2": 0.2, "c3": 0.695}, {"time": 0.25, "angle": -27.62, "curve": 0.317, "c4": 0.8}, + {"time": 0.3833, "angle": 17.89}, {"time": 0.6333, "angle": 23.46, "curve": 0, "c2": 0.2, "c3": 0.695}, {"time": 0.7667, "angle": -27.7, "curve": 0.317, "c4": 0.8}, + {"time": 0.9, "angle": 21.16, "curve": 0, "c2": 0.2, "c3": 0.695}, {"time": 1} + ] + }, + "@shadow": { + "translate": [{"time": 0.1}, {"time": 0.3833, "x": 542.6}, {"time": 0.6333, "x": 603.73, "curve": 0, "c2": 0.1, "c3": 0.852}, {"time": 0.9}], + "scale": [ + {}, {"time": 0.1, "x": 1.08, "y": 1.08}, {"time": 0.25, "x": 0.9, "y": 0.9}, {"time": 0.3833, "x": 1.08, "y": 1.08}, {"time": 0.6333, "x": 1.1, "y": 1.1}, + {"time": 0.7833, "x": 0.9, "y": 0.9}, {"time": 0.9, "x": 1.08, "y": 1.08}, {"time": 1} ] }, "@body3": { "rotate": [ - {"angle": 0.99, "curve": 0.378, "c2": 0.61, "c3": 0.721}, {"time": 0.05, "curve": 0.25, "c3": 0.75}, {"time": 0.2333, "angle": 0.15, "curve": 0.25, "c3": 0.75}, - {"time": 0.4333, "angle": -6.92, "curve": 0.25, "c3": 0.75}, {"time": 0.6, "angle": 1.47, "curve": 0.25, "c3": 0.75}, {"time": 0.7333, "angle": -7.5, "curve": 0.25, "c3": 0.75}, - {"time": 0.8667, "angle": 1.76, "curve": 0.25, "c3": 0.75}, {"time": 1.0333, "angle": -7.9, "curve": 0.25, "c3": 0.292}, {"time": 1.3167, "angle": -19.85, "curve": 0.25, "c3": 0.75}, - {"time": 1.6333, "angle": -8.41, "curve": 0.25, "c3": 0.75}, {"time": 1.8833, "angle": -14.81, "curve": 0.25, "c3": 0.75}, - {"time": 2.1667, "angle": 0.94, "curve": 0.242, "c3": 0.671, "c4": 0.68}, {"time": 2.3333, "angle": 0.99} + {"angle": -6.19, "curve": 0.404, "c2": 0.56, "c3": 0.741}, {"time": 0.0667, "curve": 0.25, "c3": 0.75}, {"time": 0.1667, "angle": -3.77, "curve": 0.144, "c3": 0.557}, + {"time": 0.4167, "angle": -14, "curve": 0.455, "c3": 0.807}, {"time": 0.7, "angle": -3.77, "curve": 0.144, "c3": 0.557}, + {"time": 0.8833, "angle": -14, "curve": 0.397, "c3": 0.737, "c4": 0.58}, {"time": 1, "angle": -6.19} ], "translate": [ - {"curve": 0.25, "c3": 0.75}, {"time": 0.1833, "x": -11.72, "y": -2.34, "curve": 0.25, "c3": 0.75}, {"time": 0.3833, "x": 23.59, "y": 3.86, "curve": 0.25, "c3": 0.75}, - {"time": 0.55, "x": -11.72, "y": -2.34, "curve": 0.25, "c3": 0.75}, {"time": 0.6833, "x": 23.59, "y": 3.86, "curve": 0.25, "c3": 0.75}, - {"time": 0.8167, "x": -11.72, "y": -2.34, "curve": 0.25, "c3": 0.75}, {"time": 0.9833, "x": 23.59, "y": 3.86, "curve": 0.25, "c3": 0.75}, - {"time": 1.05, "x": -11.72, "y": -2.34, "curve": 0.25, "c3": 0.292}, {"time": 1.2667, "x": 23.59, "y": 3.86, "curve": 0.25, "c3": 0.75}, {"time": 1.5833, "curve": 0.25, "c3": 0.75}, - {"time": 1.8333, "x": 19.59, "y": 15.95, "curve": 0.25, "c3": 0.75}, {"time": 2.1167, "x": -1.4, "y": 12.66, "curve": 0.25, "c3": 0.75}, {"time": 2.3333} + {"time": 0.1, "curve": 0.144, "c3": 0.557}, {"time": 0.35, "x": 45.36, "y": -33.56, "curve": 0.455, "c3": 0.807}, {"time": 0.6333, "curve": 0.144, "c3": 0.557}, + {"time": 0.8167, "x": 45.36, "y": -33.56, "curve": 0.455, "c3": 0.807}, {"time": 1} ] }, "@body4": { "rotate": [ - {"angle": -0.84, "curve": 0.36, "c2": 0.43, "c3": 0.755}, {"time": 0.1333, "curve": 0.25, "c3": 0.75}, {"time": 0.3167, "angle": -0.23, "curve": 0.25, "c3": 0.75}, - {"time": 0.5167, "angle": -6.95, "curve": 0.25, "c3": 0.75}, {"time": 0.6833, "angle": 1.08, "curve": 0.25, "c3": 0.75}, {"time": 0.8167, "angle": -7.52, "curve": 0.25, "c3": 0.75}, - {"time": 1, "angle": 1.38, "curve": "stepped"}, {"time": 1.1333, "angle": 1.38, "curve": 0.389, "c3": 0.684, "c4": 0.41}, - {"time": 1.2167, "angle": 4.16, "curve": 0.177, "c2": 0.37, "c3": 0.384}, {"time": 1.3167, "angle": 7.84, "curve": 0.25, "c3": 0.75}, - {"time": 1.4667, "angle": -0.77, "curve": 0.25, "c3": 0.75}, {"time": 1.6333, "angle": 11.84, "curve": 0.25, "c3": 0.75}, {"time": 1.8167, "angle": 7.84, "curve": 0.25, "c3": 0.75}, - {"time": 1.95, "angle": -0.77, "curve": 0.25, "c3": 0.75}, {"time": 2.1333, "angle": 11.84, "curve": 0.25, "c3": 0.75}, {"time": 2.3333, "angle": -0.84} + {"angle": 4.33, "curve": 0.391, "c2": 0.59, "c3": 0.726}, {"time": 0.05, "curve": 0.25, "c3": 0.75}, {"time": 0.15, "angle": -15.35, "curve": 0.144, "c3": 0.557}, + {"time": 0.4, "angle": 14.26, "curve": 0.455, "c3": 0.807}, {"time": 0.6833, "angle": -15.35, "curve": 0.144, "c3": 0.557}, + {"time": 0.8667, "angle": 14.26, "curve": 0.409, "c3": 0.752, "c4": 0.65}, {"time": 1, "angle": 4.33} ], "translate": [ - {"x": 6.51, "y": 0.72, "curve": 0.378, "c2": 0.52, "c3": 0.747}, {"time": 0.1, "curve": 0.25, "c3": 0.75}, {"time": 0.2833, "x": 1.95, "y": -9.77, "curve": 0.25, "c3": 0.75}, - {"time": 0.4833, "x": 13.76, "y": 2.25, "curve": 0.25, "c3": 0.75}, {"time": 0.65, "x": 1.95, "y": -9.77, "curve": 0.25, "c3": 0.75}, - {"time": 0.7833, "x": 13.76, "y": 2.25, "curve": 0.25, "c3": 0.75}, {"time": 0.9667, "x": 1.95, "y": -9.77, "curve": "stepped"}, - {"time": 1.0333, "x": 1.95, "y": -9.77, "curve": 0.296, "c3": 0.633, "c4": 0.37}, {"time": 1.2167, "x": 2.47, "y": -9.66, "curve": 0.318, "c2": 0.27, "c3": 0.653, "c4": 0.61}, - {"time": 1.2833, "x": 3.11, "y": -9.52, "curve": 0.309, "c2": 0.26, "c3": 0.676, "c4": 0.7}, {"time": 1.6, "x": 7.2, "y": -8.07, "curve": 0.382, "c2": 0.58, "c3": 0.731}, - {"time": 1.7667, "x": 3.11, "y": -9.52, "curve": 0.309, "c2": 0.26, "c3": 0.676, "c4": 0.7}, {"time": 2.0667, "x": 7.2, "y": -8.07, "curve": 0.382, "c2": 0.58, "c3": 0.731}, - {"time": 2.3333, "x": 6.51, "y": 0.72} + {"curve": 0.25, "c3": 0.75}, {"time": 0.1, "x": -1.59, "y": 23.93, "curve": 0.144, "c3": 0.557}, {"time": 0.35, "x": 6.55, "y": -29.78, "curve": 0.455, "c3": 0.807}, + {"time": 0.6333, "x": -1.59, "y": 23.93, "curve": 0.144, "c3": 0.557}, {"time": 0.8167, "x": 6.55, "y": -29.78, "curve": 0.455, "c3": 0.807}, {"time": 1} ] }, "@body6": { "rotate": [ - {"angle": -1.53, "curve": 0.346, "c2": 0.38, "c3": 0.757}, {"time": 0.15, "curve": 0.25, "c3": 0.75}, {"time": 0.3333, "angle": 8.64, "curve": 0.25, "c3": 0.75}, - {"time": 0.5333, "angle": 0.85, "curve": 0.25, "c3": 0.75}, {"time": 0.7, "angle": 9.96, "curve": 0.25, "c3": 0.75}, {"time": 0.8333, "angle": 0.28, "curve": 0.25, "c3": 0.75}, - {"time": 1.0167, "angle": 10.25, "curve": 0.25, "c3": 0.292}, {"time": 1.2167, "angle": 2.8, "curve": 0.25, "c3": 0.292}, {"time": 1.3667, "angle": 5.4, "curve": 0.25, "c3": 0.75}, - {"time": 1.5333, "angle": -4.59, "curve": 0.25, "c3": 0.75}, {"time": 1.7, "angle": 9.56, "curve": 0.25, "c3": 0.75}, {"time": 1.8667, "angle": 5.4, "curve": 0.25, "c3": 0.75}, - {"time": 2.0167, "angle": -4.59, "curve": 0.25, "c3": 0.75}, {"time": 2.2167, "angle": 9.56, "curve": 0.25, "c3": 0.75}, {"time": 2.3333, "angle": -1.53} + {"angle": 17.65, "curve": 0.372, "c2": 0.35, "c3": 0.707, "c4": 0.72}, {"time": 0.05, "angle": 7.83, "curve": 0.391, "c2": 0.59, "c3": 0.726}, {"time": 0.1, "curve": 0.25, "c3": 0.75}, + {"time": 0.2, "angle": -5.24, "curve": 0.144, "c3": 0.557}, {"time": 0.45, "angle": 25.77, "curve": 0.455, "c3": 0.807}, {"time": 0.7333, "angle": -5.24, "curve": 0.144, "c3": 0.557}, + {"time": 0.9167, "angle": 25.77, "curve": 0.375, "c3": 0.711, "c4": 0.48}, {"time": 1, "angle": 17.65} ], "translate": [ - {"x": 1.25, "y": -0.8, "curve": 0.378, "c2": 0.61, "c3": 0.721}, {"time": 0.05, "curve": 0.25, "c3": 0.75}, {"time": 0.2333, "x": -7.07, "y": 3.68, "curve": 0.25, "c3": 0.75}, - {"time": 0.4333, "curve": 0.25, "c3": 0.75}, {"time": 0.6, "x": -7.07, "y": 3.68, "curve": 0.25, "c3": 0.75}, {"time": 0.7333, "curve": 0.25, "c3": 0.75}, - {"time": 0.8667, "x": -7.07, "y": 3.68, "curve": 0.25, "c3": 0.75}, {"time": 1.0333, "curve": "stepped"}, {"time": 1.0667, "curve": 0.357, "c3": 0.687, "c4": 0.35}, - {"time": 1.2167, "x": -11.04, "y": 5.26, "curve": 0.353, "c2": 0.21, "c3": 0.678, "c4": 0.56}, - {"time": 1.3333, "x": -1.03, "y": 0.34, "curve": 0.256, "c2": 0.26, "c3": 0.506, "c4": 0.7}, {"time": 1.6333, "x": -4.56, "y": 1.66, "curve": 0.241, "c2": 0.58, "c3": 0.558}, - {"time": 1.8333, "x": -1.03, "y": 0.34, "curve": 0.256, "c2": 0.26, "c3": 0.506, "c4": 0.7}, {"time": 2.0667, "x": -4.56, "y": 1.66, "curve": 0.241, "c2": 0.58, "c3": 0.558}, - {"time": 2.3333, "x": 1.25, "y": -0.8} + {"x": -21.44, "y": 10.83, "curve": 0.391, "c2": 0.59, "c3": 0.726}, {"time": 0.05, "curve": 0.25, "c3": 0.75}, {"time": 0.15, "x": 5.81, "y": -4.07, "curve": 0.144, "c3": 0.557}, + {"time": 0.4, "x": -70.52, "y": 35.61, "curve": 0.455, "c3": 0.807}, {"time": 0.6833, "x": 5.81, "y": -4.07, "curve": 0.144, "c3": 0.557}, + {"time": 0.8667, "x": -70.52, "y": 35.61, "curve": 0.409, "c3": 0.752, "c4": 0.65}, {"time": 1, "x": -21.44, "y": 10.83} ] }, "body-braid2": { "rotate": [ - {"angle": 2.61, "curve": 0.382, "c2": 0.58, "c3": 0.731}, {"time": 0.05, "curve": 0.25, "c3": 0.75}, {"time": 0.2833, "angle": 6.21, "curve": 0.25, "c3": 0.75}, - {"time": 0.4833, "angle": 2.15, "curve": 0.25, "c3": 0.75}, {"time": 0.65, "angle": 7.53, "curve": 0.25, "c3": 0.75}, {"time": 0.7833, "angle": 1.57, "curve": 0.25, "c3": 0.75}, - {"time": 0.9167, "angle": 7.82, "curve": 0.25, "c3": 0.75}, {"time": 1.0333, "angle": 1.18, "curve": 0.25, "c3": 0.75}, {"time": 1.45, "angle": 15.91, "curve": 0.25, "c3": 0.75}, - {"time": 1.6833, "angle": 17.34, "curve": 0.25, "c3": 0.75}, {"time": 1.9333, "angle": -1.39, "curve": 0.25, "c3": 0.75}, - {"time": 2.2167, "angle": 10.79, "curve": 0.243, "c3": 0.655, "c4": 0.63}, {"time": 2.3333, "angle": 2.61} + {"curve": 0.25, "c3": 0.75}, {"time": 0.1, "angle": -1.43, "curve": 0.144, "c3": 0.557}, {"time": 0.35, "angle": 20.83, "curve": 0.455, "c3": 0.807}, + {"time": 0.6333, "angle": -1.43, "curve": 0.144, "c3": 0.557}, {"time": 0.8167, "angle": 13.65, "curve": 0.455, "c3": 0.807}, {"time": 1} ] }, "body-braid4": { "rotate": [ - {"angle": 9.57, "curve": 0.363, "c2": 0.64, "c3": 0.699}, {"time": 0.0333, "angle": 10.23, "curve": 0.25, "c3": 0.75}, {"time": 0.2, "curve": 0.25, "c3": 0.75}, - {"time": 0.4333, "angle": 14.22, "curve": 0.25, "c3": 0.75}, {"time": 0.6333, "angle": 2.15, "curve": 0.25, "c3": 0.75}, {"time": 0.8, "angle": 15.53, "curve": 0.25, "c3": 0.75}, - {"time": 0.9333, "angle": 1.57, "curve": 0.25, "c3": 0.75}, {"time": 1.0667, "angle": 15.82, "curve": 0.25, "c3": 0.75}, {"time": 1.4333, "angle": 23.68, "curve": 0.25, "c3": 0.75}, - {"time": 1.6, "angle": -1.13, "curve": 0.25, "c3": 0.75}, {"time": 1.8333, "angle": 16.77, "curve": 0.25, "c3": 0.75}, - {"time": 2.0833, "angle": -1.39, "curve": 0.245, "c3": 0.705, "c4": 0.81}, {"time": 2.3333, "angle": 9.57} + {"angle": 8.96, "curve": 0.404, "c2": 0.56, "c3": 0.741}, {"time": 0.0667, "curve": 0.25, "c3": 0.75}, {"time": 0.1667, "angle": -11.53, "curve": 0.144, "c3": 0.557}, + {"time": 0.4167, "angle": 27.46, "curve": 0.455, "c3": 0.807}, {"time": 0.7, "angle": -11.53, "curve": 0.144, "c3": 0.557}, + {"time": 0.8833, "angle": 20.28, "curve": 0.397, "c3": 0.737, "c4": 0.58}, {"time": 1, "angle": 8.96} ] }, "body-braid3": { "rotate": [ - {"angle": 9.98, "curve": 0.345, "c2": 0.37, "c3": 0.757}, {"time": 0.1167, "curve": 0.25, "c3": 0.75}, {"time": 0.35, "angle": 17.16, "curve": 0.25, "c3": 0.75}, - {"time": 0.55, "angle": 2.15, "curve": 0.25, "c3": 0.75}, {"time": 0.7167, "angle": 18.48, "curve": 0.25, "c3": 0.75}, {"time": 0.85, "angle": 1.57, "curve": 0.25, "c3": 0.75}, - {"time": 0.9833, "angle": 18.77, "curve": 0.25, "c3": 0.75}, {"time": 1.35, "angle": 22.56, "curve": 0.25, "c3": 0.75}, {"time": 1.5167, "angle": -1.13, "curve": 0.25, "c3": 0.75}, - {"time": 1.75, "angle": 19.72, "curve": 0.25, "c3": 0.75}, {"time": 2, "angle": -1.39, "curve": 0.25, "c3": 0.75}, - {"time": 2.2833, "angle": 13.17, "curve": 0.269, "c3": 0.618, "c4": 0.42}, {"time": 2.3333, "angle": 9.98} + {"angle": 4.44, "curve": 0.375, "c2": 0.62, "c3": 0.709, "c4": 0.99}, {"time": 0.0333, "curve": 0.25, "c3": 0.75}, {"time": 0.1333, "angle": -8.3, "curve": 0.144, "c3": 0.557}, + {"time": 0.3833, "angle": 33.27, "curve": 0.455, "c3": 0.807}, {"time": 0.6667, "angle": -8.3, "curve": 0.144, "c3": 0.557}, + {"time": 0.85, "angle": 26.09, "curve": 0.423, "c3": 0.768, "c4": 0.73}, {"time": 1, "angle": 4.44} ] }, "@body2": { "rotate": [ - {"angle": 2.1, "curve": 0.382, "c2": 0.55, "c3": 0.741}, {"time": 0.0833, "curve": 0.25, "c3": 0.75}, {"time": 0.2667, "angle": 6.03, "curve": 0.25, "c3": 0.75}, - {"time": 0.4667, "angle": -0.9, "curve": 0.25, "c3": 0.75}, {"time": 0.6333, "angle": 7.34, "curve": 0.25, "c3": 0.75}, {"time": 0.7667, "angle": -1.48, "curve": 0.25, "c3": 0.75}, - {"time": 0.95, "angle": 7.64, "curve": 0.25, "c3": 0.75}, {"time": 1.0667, "angle": -1.88, "curve": 0.25, "c3": 0.292}, {"time": 1.35, "angle": -6.65, "curve": 0.25, "c3": 0.75}, - {"time": 1.6667, "curve": 0.25, "c3": 0.75}, {"time": 1.9167, "angle": -10.19, "curve": 0.25, "c3": 0.75}, {"time": 2.2, "angle": 6.05, "curve": 0.245, "c3": 0.64, "c4": 0.57}, - {"time": 2.3333, "angle": 2.1} + {"angle": -12.8, "curve": 0.388, "c2": 0.37, "c3": 0.724, "c4": 0.77}, {"time": 0.0667, "angle": -3.19, "curve": 0.375, "c2": 0.62, "c3": 0.709, "c4": 0.99}, + {"time": 0.1, "curve": 0.25, "c3": 0.75}, {"time": 0.2, "angle": 7.45, "curve": 0.144, "c3": 0.557}, {"time": 0.45, "angle": -18.73, "curve": 0.455, "c3": 0.807}, + {"time": 0.7333, "angle": 7.45, "curve": 0.144, "c3": 0.557}, {"time": 0.9167, "angle": -18.73, "curve": 0.375, "c3": 0.711, "c4": 0.48}, {"time": 1, "angle": -12.8} ], "translate": [ - {"time": 0.0333, "curve": 0.25, "c3": 0.75}, {"time": 0.2167, "x": -7.81, "y": -1.56, "curve": 0.25, "c3": 0.75}, {"time": 0.4167, "x": 13.76, "y": 2.25, "curve": 0.25, "c3": 0.75}, - {"time": 0.5833, "x": -7.81, "y": -1.56, "curve": 0.25, "c3": 0.75}, {"time": 0.7167, "x": 13.76, "y": 2.25, "curve": 0.25, "c3": 0.75}, - {"time": 0.85, "x": -7.81, "y": -1.56, "curve": 0.25, "c3": 0.75}, {"time": 1.0167, "x": 13.76, "y": 2.25, "curve": 0.25, "c3": 0.292}, - {"time": 1.3, "x": -9.88, "y": 23.87, "curve": 0.25, "c3": 0.75}, {"time": 1.6167, "x": -10.31, "y": 32.99, "curve": 0.25, "c3": 0.75}, - {"time": 1.8667, "x": -13.77, "y": 33.39, "curve": 0.25, "c3": 0.75}, {"time": 2.15} + {"x": 2.03, "y": -18.24, "curve": 0.404, "c2": 0.56, "c3": 0.741}, {"time": 0.0667, "curve": 0.25, "c3": 0.75}, {"time": 0.1667, "x": -0.08, "y": 1.15, "curve": 0.144, "c3": 0.557}, + {"time": 0.4167, "x": 4.59, "y": -41.28, "curve": 0.455, "c3": 0.807}, {"time": 0.7, "x": -0.08, "y": 1.15, "curve": 0.144, "c3": 0.557}, + {"time": 0.8833, "x": 4.59, "y": -41.28, "curve": 0.397, "c3": 0.737, "c4": 0.58}, {"time": 1, "x": 2.03, "y": -18.24} ] }, - "body-braid6": { + "body-braid5": { "rotate": [ - {"angle": -2.86, "curve": 0.382, "c2": 0.59, "c3": 0.73}, {"time": 0.0833, "angle": -3.32, "curve": 0.25, "c3": 0.75}, {"time": 0.25, "curve": 0.25, "c3": 0.75}, - {"time": 0.4833, "angle": 0.67, "curve": 0.25, "c3": 0.75}, {"time": 0.6833, "angle": 2.15, "curve": 0.25, "c3": 0.75}, {"time": 0.85, "angle": 1.99, "curve": 0.25, "c3": 0.75}, - {"time": 0.9833, "angle": 1.57, "curve": 0.25, "c3": 0.75}, {"time": 1.3667, "angle": 1.18, "curve": 0.25, "c3": 0.75}, {"time": 1.4833, "angle": 3.23, "curve": 0.25, "c3": 0.75}, - {"time": 1.65, "angle": -1.13, "curve": 0.25, "c3": 0.75}, {"time": 1.8833, "angle": 3.23, "curve": 0.25, "c3": 0.75}, - {"time": 2.1333, "angle": -1.39, "curve": 0.243, "c3": 0.657, "c4": 0.63}, {"time": 2.3333, "angle": -2.86} + {"angle": 20.01, "curve": 0.425, "c2": 0.48, "c3": 0.765}, {"time": 0.1, "curve": 0.25, "c3": 0.75}, {"time": 0.2, "angle": -7.27, "curve": 0.144, "c3": 0.557}, + {"time": 0.45, "angle": 36.02, "curve": 0.455, "c3": 0.807}, {"time": 0.7333, "angle": -7.27, "curve": 0.144, "c3": 0.557}, + {"time": 0.9167, "angle": 28.85, "curve": 0.375, "c3": 0.711, "c4": 0.48}, {"time": 1, "angle": 20.01} ] }, - "body-braid5": { + "body-braid": { "rotate": [ - {"angle": 9.34, "curve": 0.25, "c3": 0.75}, {"time": 0.1667, "curve": 0.25, "c3": 0.75}, {"time": 0.4, "angle": 7.83, "curve": 0.25, "c3": 0.75}, - {"time": 0.6, "angle": 2.15, "curve": 0.25, "c3": 0.75}, {"time": 0.7667, "angle": 14.56, "curve": 0.25, "c3": 0.75}, {"time": 0.9, "angle": 1.57, "curve": 0.25, "c3": 0.75}, - {"time": 1.0333, "angle": 20.86, "curve": 0.25, "c3": 0.75}, {"time": 1.4, "angle": 27.56, "curve": 0.25, "c3": 0.75}, {"time": 1.5667, "angle": -1.13, "curve": 0.25, "c3": 0.75}, - {"time": 1.8, "angle": 24.05, "curve": 0.25, "c3": 0.75}, {"time": 2.05, "angle": -1.39, "curve": 0.25, "c3": 0.75}, {"time": 2.3333, "angle": 9.34} + {"angle": 4.63, "curve": 0.391, "c2": 0.59, "c3": 0.726}, {"time": 0.05, "curve": 0.25, "c3": 0.75}, {"time": 0.15, "angle": -2.68, "curve": 0.144, "c3": 0.557}, + {"time": 0.4, "angle": 22.42, "curve": 0.455, "c3": 0.807}, {"time": 0.6833, "angle": -2.68, "curve": 0.144, "c3": 0.557}, + {"time": 0.8667, "angle": 15.24, "curve": 0.409, "c3": 0.752, "c4": 0.65}, {"time": 1, "angle": 4.63} ] }, - "body-braid": { + "@body5": { "rotate": [ - {"angle": 14.95, "curve": 0.363, "c2": 0.44, "c3": 0.755}, {"time": 0.1, "angle": 8.22, "curve": 0.25, "c3": 0.75}, {"time": 0.3333, "angle": 8.74, "curve": 0.25, "c3": 0.75}, - {"time": 0.5333, "angle": 2.15, "curve": 0.25, "c3": 0.75}, {"time": 0.7, "angle": 10.31, "curve": 0.25, "c3": 0.75}, {"time": 0.8333, "angle": 7.31, "curve": 0.25, "c3": 0.75}, - {"time": 0.9667, "angle": 16.93, "curve": 0.25, "c3": 0.75}, {"time": 1.3333, "angle": 26.94, "curve": 0.25, "c3": 0.75}, {"time": 1.5, "angle": 18.83, "curve": 0.25, "c3": 0.75}, - {"time": 1.7333, "angle": 30.2, "curve": 0.25, "c3": 0.75}, {"time": 1.9833, "angle": -1.39, "curve": 0.25, "c3": 0.75}, - {"time": 2.2667, "angle": 23.66, "curve": 0.258, "c3": 0.619, "c4": 0.45}, {"time": 2.3333, "angle": 14.95} + {"time": 0.1, "curve": 0.144, "c3": 0.557}, {"time": 0.35, "angle": 0.5, "curve": 0.455, "c3": 0.807}, {"time": 0.6333, "curve": 0.144, "c3": 0.557}, + {"time": 0.8167, "angle": 0.5, "curve": 0.455, "c3": 0.807}, {"time": 1} ] } } }, - "1912966198": { + "3760369471": { "slots": { - "eyes": {"attachment": [{"time": 0.3, "name": "eyes-angry"}, {"time": 1.2333, "name": "eyes"}]}, - "mouth": {"attachment": [{"time": 0.3, "name": "mouth-bite"}, {"time": 1.2333, "name": "mouth"}]} + "eyes": { + "attachment": [ + {"time": 0.1333, "name": "eyes-shut"}, {"time": 0.2, "name": "eyes"}, {"time": 0.55, "name": "eyes-shut"}, {"time": 0.6167, "name": "eyes"}, {"time": 0.9667, "name": "eyes-shut"} + ] + }, + "mouth": { + "attachment": [ + {"time": 0.1833, "name": "mouth-open"}, {"time": 0.5, "name": "mouth"}, {"time": 0.6, "name": "mouth-open"}, {"time": 0.9, "name": "mouth"}, {"time": 0.9667, "name": "mouth-bite"} + ] + } }, "bones": { "@pivot-back": { "rotate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1, "angle": 6, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.2, "angle": -6, "curve": 0.315, "c4": 0.8}, - {"time": 0.3, "angle": 5.5, "curve": 0.317, "c3": 0.693}, {"time": 0.3833, "angle": 4.5, "curve": 0.317, "c3": 0.693}, {"time": 0.4667, "angle": 5.5, "curve": 0.317, "c3": 0.693}, - {"time": 0.55, "angle": 4.5, "curve": 0.317, "c3": 0.693}, {"time": 0.6333, "angle": 5.5, "curve": 0.317, "c3": 0.693}, {"time": 0.7167, "angle": 4.5, "curve": 0.317, "c3": 0.693}, - {"time": 0.8, "angle": 5.5, "curve": 0.317, "c3": 0.693}, {"time": 0.8833, "angle": 4.5, "curve": 0.317, "c3": 0.693}, {"time": 0.9667, "angle": 5.5, "curve": 0.317, "c3": 0.693}, - {"time": 1.05, "angle": 4.5, "curve": 0.317, "c3": 0.693}, {"time": 1.1333, "angle": 5.5, "curve": 0.317, "c3": 0.693}, {"time": 1.2167, "angle": 6, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 1.3167, "angle": -3, "curve": 0.315, "c4": 0.8}, {"time": 1.4167} + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "angle": 3.53, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "angle": -10.14, "curve": 0.315, "c4": 0.8}, + {"time": 0.5, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5833, "angle": 3.53, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.75, "angle": -10.14, "curve": 0.315, "c4": 0.8}, + {"time": 0.9167, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1.0833, "angle": 5.43}, {"time": 1.15, "angle": 3.94}, {"time": 1.2, "angle": 5.43}, {"time": 1.2333, "angle": 3.94}, + {"time": 1.2667, "angle": 5.43}, {"time": 1.3, "angle": 3.94}, {"time": 1.3333, "angle": 5.43}, {"time": 1.3667, "angle": 3.94}, {"time": 1.4, "angle": 5.43}, + {"time": 1.4333, "angle": 3.94}, {"time": 1.4667, "angle": 5.43}, {"time": 1.5, "angle": 3.94} ], "translate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1, "y": 4.69, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.2, "y": 43.73, "curve": 0.315, "c4": 0.8}, - {"time": 0.3, "y": 3.84, "curve": "stepped"}, {"time": 1.2167, "y": 3.84, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1.3167, "y": 43.73, "curve": 0.315, "c4": 0.8}, {"time": 1.4167} + {"y": 44.46, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "y": 12.46, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "y": 209.26, "curve": 0.315, "c4": 0.8}, + {"time": 0.5, "y": 44.46, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5833, "y": 12.46, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.75, "y": 209.26, "curve": 0.315, "c4": 0.8}, + {"time": 0.9167, "y": 44.46} ] }, - "@leg-front-left": { - "translate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1, "x": -1.28, "y": -14.48, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.2, "curve": 0.315, "c4": 0.8}, - {"time": 0.3, "x": -0.86, "y": -9.28, "curve": 0.317, "c3": 0.693}, {"time": 0.3833, "x": -4.55, "y": -7.13, "curve": 0.317, "c3": 0.693}, - {"time": 0.4667, "x": -0.86, "y": -9.28, "curve": 0.317, "c3": 0.693}, {"time": 0.55, "x": -4.55, "y": -7.13, "curve": 0.317, "c3": 0.693}, - {"time": 0.6333, "x": -0.86, "y": -9.28, "curve": 0.317, "c3": 0.693}, {"time": 0.7167, "x": -4.55, "y": -7.13, "curve": 0.317, "c3": 0.693}, - {"time": 0.8, "x": -0.86, "y": -9.28, "curve": 0.317, "c3": 0.693}, {"time": 0.8833, "x": -4.55, "y": -7.13, "curve": 0.317, "c3": 0.693}, - {"time": 0.9667, "x": -0.86, "y": -9.28, "curve": 0.317, "c3": 0.693}, {"time": 1.05, "x": -4.55, "y": -7.13, "curve": 0.317, "c3": 0.693}, - {"time": 1.1333, "x": -0.86, "y": -9.28, "curve": 0.317, "c3": 0.693}, {"time": 1.2167, "x": -4.55, "y": -7.13, "curve": 0.317, "c3": 0.693}, {"time": 1.3167} + "@leg-front-right": { + "rotate": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "angle": -14.05, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "angle": 13.89, "curve": 0.315, "c4": 0.8}, + {"time": 0.5, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5833, "angle": -12.58, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.75, "angle": 13.89, "curve": 0.315, "c4": 0.8}, + {"time": 0.9167, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1.0833, "angle": -12.58} ] }, - "@leg-front-right": { - "translate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1, "x": -2.46, "y": -27.93, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.2, "curve": 0.315, "c4": 0.8}, - {"time": 0.3, "x": -2.46, "y": -27.93, "curve": 0.317, "c3": 0.693}, {"time": 0.3833, "x": -2.06, "y": -21.45, "curve": 0.317, "c3": 0.693}, - {"time": 0.4667, "x": -2.44, "y": -26.54, "curve": 0.317, "c3": 0.693}, {"time": 0.55, "x": -2.06, "y": -21.45, "curve": 0.317, "c3": 0.693}, - {"time": 0.6333, "x": -2.44, "y": -26.54, "curve": 0.317, "c3": 0.693}, {"time": 0.7167, "x": -2.06, "y": -21.45, "curve": 0.317, "c3": 0.693}, - {"time": 0.8, "x": -2.44, "y": -26.54, "curve": 0.317, "c3": 0.693}, {"time": 0.8833, "x": -2.06, "y": -21.45, "curve": 0.317, "c3": 0.693}, - {"time": 0.9667, "x": -2.44, "y": -26.54, "curve": 0.317, "c3": 0.693}, {"time": 1.05, "x": -2.06, "y": -21.45, "curve": 0.317, "c3": 0.693}, - {"time": 1.1333, "x": -2.44, "y": -26.54, "curve": 0.317, "c3": 0.693}, {"time": 1.2167, "x": -2.46, "y": -27.93, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1.3167} + "@leg-front-left": { + "rotate": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "angle": -14.05, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "angle": 13.89, "curve": 0.315, "c4": 0.8}, + {"time": 0.5, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5833, "angle": -12.58, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.75, "angle": 13.89, "curve": 0.315, "c4": 0.8}, + {"time": 0.9167, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1.0833, "angle": -12.58} ] }, - "@pivot-main": { - "translate": [ - {"time": 0.1, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.3, "x": -154.22, "curve": "stepped"}, {"time": 1.2167, "x": -154.22, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 1.4167} + "@leg-back-left": { + "rotate": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "angle": -14.05, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "angle": 13.89, "curve": 0.315, "c4": 0.8}, + {"time": 0.5, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5833, "angle": -12.58, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.75, "angle": 13.89, "curve": 0.315, "c4": 0.8}, + {"time": 0.9167, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1.0833, "angle": -12.58} ] }, - "leg-front-left-IK": { - "translate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3, "x": 27.41, "curve": "stepped"}, {"time": 1.2167, "x": 27.41, "curve": 0.306, "c4": 0.8}, - {"time": 1.3167, "x": -61.13, "curve": 0.315, "c4": 0.8}, {"time": 1.4167} + "tail": { + "rotate": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "angle": 14.79, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "angle": -27.83, "curve": "stepped"}, + {"time": 0.3333, "angle": -27.83, "curve": 0.313, "c3": 0.691}, {"time": 0.5, "angle": 14.79, "curve": "stepped"}, {"time": 0.5833, "angle": 14.79, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.6667, "angle": -27.83, "curve": "stepped"}, {"time": 0.75, "angle": -27.83, "curve": 0.313, "c3": 0.691}, {"time": 0.9167, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 1.0833, "angle": 12.48, "curve": 0.313, "c3": 0.691}, {"time": 1.15, "angle": 9.69, "curve": 0.313, "c3": 0.691}, {"time": 1.2, "angle": 12.48, "curve": 0.161, "c3": 0.854}, + {"time": 1.2333, "angle": 9.69, "curve": 0.161, "c3": 0.854}, {"time": 1.2667, "angle": 12.48, "curve": 0.161, "c3": 0.854}, {"time": 1.3, "angle": 9.69, "curve": 0.161, "c3": 0.854}, + {"time": 1.3333, "angle": 12.48, "curve": 0.161, "c3": 0.854}, {"time": 1.3667, "angle": 9.69, "curve": 0.161, "c3": 0.854}, {"time": 1.4, "angle": 12.48, "curve": 0.161, "c3": 0.854}, + {"time": 1.4333, "angle": 9.69, "curve": 0.161, "c3": 0.854}, {"time": 1.4667, "angle": 12.48, "curve": 0.161, "c3": 0.854}, {"time": 1.5, "angle": 9.69} ] }, - "leg-front-right-IK": {"translate": [{"time": 1.2167, "curve": 0.315, "c4": 0.8}, {"time": 1.3167, "x": -61.13, "curve": 0.315, "c4": 0.8}, {"time": 1.4167}]}, "@shadow": { - "translate": [ - {"time": 0.1, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.3, "x": -162.84, "curve": "stepped"}, {"time": 1.2167, "x": -162.84, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 1.4167} - ], "scale": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1, "x": 1.1, "y": 1.1, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.2, "x": 0.92, "y": 0.92, "curve": 0.315, "c4": 0.8}, - {"time": 0.3, "x": 1.1, "y": 1.1, "curve": 0.317, "c3": 0.693}, {"time": 0.3833, "x": 1.06, "y": 1.06, "curve": 0.317, "c3": 0.693}, - {"time": 0.4667, "x": 1.1, "y": 1.1, "curve": 0.317, "c3": 0.693}, {"time": 0.55, "x": 1.06, "y": 1.06, "curve": 0.317, "c3": 0.693}, - {"time": 0.6333, "x": 1.1, "y": 1.1, "curve": 0.317, "c3": 0.693}, {"time": 0.7167, "x": 1.06, "y": 1.06, "curve": 0.317, "c3": 0.693}, - {"time": 0.8, "x": 1.1, "y": 1.1, "curve": 0.317, "c3": 0.693}, {"time": 0.8833, "x": 1.06, "y": 1.06, "curve": 0.317, "c3": 0.693}, - {"time": 0.9667, "x": 1.1, "y": 1.1, "curve": 0.317, "c3": 0.693}, {"time": 1.05, "x": 1.06, "y": 1.06, "curve": 0.317, "c3": 0.693}, - {"time": 1.1333, "x": 1.1, "y": 1.1, "curve": "stepped"}, {"time": 1.2167, "x": 1.1, "y": 1.1, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 1.3167, "x": 0.92, "y": 0.92, "curve": 0.315, "c4": 0.8}, {"time": 1.4167} - ] - }, - "tail": { - "rotate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1, "angle": 16.7, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.2, "angle": -16.65, "curve": 0.315, "c4": 0.8}, - {"time": 0.3, "angle": 17.85, "curve": 0.317, "c3": 0.693}, {"time": 0.4333, "angle": 15.5, "curve": 0.317, "c3": 0.693}, {"time": 0.5667, "angle": 17.85, "curve": 0.317, "c3": 0.693}, - {"time": 0.7, "angle": 15.5, "curve": 0.317, "c3": 0.693}, {"time": 0.8333, "angle": 17.85, "curve": 0.317, "c3": 0.693}, {"time": 0.95, "angle": 15.5, "curve": 0.317, "c3": 0.693}, - {"time": 1.0833, "angle": 17.85, "curve": 0.317, "c3": 0.693}, {"time": 1.2167, "angle": 15.5, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 1.3167, "angle": -14.65, "curve": 0.315, "c4": 0.8}, {"time": 1.4167} + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": 1.1, "y": 1.1, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "x": 0.9, "y": 0.9, "curve": 0.315, "c4": 0.8}, + {"time": 0.5833, "x": 1.1, "y": 1.1, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.75, "x": 0.9, "y": 0.9, "curve": 0.315, "c4": 0.8}, + {"time": 0.9167, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1.0833, "x": 1.05, "y": 1.05}, {"time": 1.15}, {"time": 1.2, "x": 1.05, "y": 1.05}, {"time": 1.25}, + {"time": 1.3, "x": 1.05, "y": 1.05}, {"time": 1.35}, {"time": 1.4, "x": 1.05, "y": 1.05}, {"time": 1.45}, {"time": 1.5, "x": 1.05, "y": 1.05} ] }, "@body3": { "rotate": [ - {"angle": -9, "curve": 0.311, "c2": 0.25, "c3": 0.757}, {"time": 0.0833, "curve": 0.25, "c3": 0.75}, {"time": 0.1833, "angle": 5.31, "curve": 0.25, "c3": 0.75}, - {"time": 0.2833, "angle": -9.96, "curve": 0.25, "c3": 0.75}, {"time": 0.3833, "angle": 2.37, "curve": 0.25, "c3": 0.75}, {"time": 0.4667, "angle": 2.71, "curve": 0.25, "c3": 0.75}, - {"time": 0.55, "angle": -8.08, "curve": 0.25, "c3": 0.75}, {"time": 0.6333, "angle": 2.71, "curve": 0.25, "c3": 0.75}, {"time": 0.7167, "angle": -8.08, "curve": 0.25, "c3": 0.75}, - {"time": 0.8, "angle": 2.71, "curve": 0.25, "c3": 0.75}, {"time": 0.8833, "angle": -8.08, "curve": 0.25, "c3": 0.75}, {"time": 0.9667, "angle": 2.71, "curve": 0.25, "c3": 0.75}, - {"time": 1.05, "angle": -8.08, "curve": 0.25, "c3": 0.75}, {"time": 1.1333, "angle": 2.71, "curve": 0.25, "c3": 0.75}, {"time": 1.2167, "angle": -8.08, "curve": 0.25, "c3": 0.75}, - {"time": 1.3, "angle": 5.31, "curve": 0.25, "c3": 0.75}, {"time": 1.4, "angle": -9.96, "curve": 0.29, "c3": 0.629, "c4": 0.38}, {"time": 1.4167, "angle": -9} + {"angle": -0.48, "curve": 0.358, "c2": 0.47, "c3": 0.695, "c4": 0.82}, {"time": 0.0667, "angle": -0.09, "curve": 0.352, "c2": 0.65, "c3": 0.687}, + {"time": 0.1, "curve": 0.25, "c3": 0.75}, {"time": 0.2667, "angle": -3.77, "curve": 0.25, "c3": 0.75}, {"time": 0.4667, "angle": -14, "curve": 0.25, "c3": 0.75}, + {"time": 0.6833, "angle": -3.77, "curve": 0.25, "c3": 0.75}, {"time": 0.8833, "angle": -14, "curve": 0.25, "c3": 0.75}, + {"time": 1.1, "angle": -3.77, "curve": 0.243, "c3": 0.68, "c4": 0.71}, {"time": 1.5, "angle": -0.48} ], - "translate": [{"time": 0.0333, "curve": 0.25, "c3": 0.75}, {"time": 0.1333, "x": -13.74, "y": 10.69, "curve": 0.25, "c3": 0.75}, {"time": 0.2333}] + "translate": [ + {"time": 0.2333, "curve": 0.25, "c3": 0.75}, {"time": 0.4333, "x": 45.36, "y": -33.56, "curve": 0.25, "c3": 0.75}, {"time": 0.65, "curve": 0.25, "c3": 0.75}, + {"time": 0.85, "x": 45.36, "y": -33.56, "curve": 0.25, "c3": 0.75}, {"time": 1.0667} + ] }, "@body4": { "rotate": [ - {"angle": 4.3, "curve": 0.375, "c2": 0.5, "c3": 0.75}, {"time": 0.05, "curve": 0.25, "c3": 0.75}, {"time": 0.15, "angle": -10.21, "curve": 0.25, "c3": 0.75}, - {"time": 0.25, "angle": 8.6, "curve": 0.25, "c3": 0.75}, {"time": 0.35, "angle": -11.06, "curve": 0.25, "c3": 0.75}, {"time": 0.4333, "angle": 2.32, "curve": 0.25, "c3": 0.75}, - {"time": 0.5167, "angle": -4.34, "curve": 0.25, "c3": 0.75}, {"time": 0.6, "angle": 2.32, "curve": 0.25, "c3": 0.75}, {"time": 0.6833, "angle": -8.1, "curve": 0.25, "c3": 0.75}, - {"time": 0.7667, "angle": 2.32, "curve": 0.25, "c3": 0.75}, {"time": 0.85, "angle": -8.1, "curve": 0.25, "c3": 0.75}, {"time": 0.9333, "angle": 2.32, "curve": 0.25, "c3": 0.75}, - {"time": 1.0167, "angle": -8.1, "curve": 0.25, "c3": 0.75}, {"time": 1.1, "angle": 2.32, "curve": 0.25, "c3": 0.75}, {"time": 1.1833, "angle": -8.1, "curve": 0.25, "c3": 0.75}, - {"time": 1.2667, "angle": -10.21, "curve": 0.25, "c3": 0.75}, {"time": 1.3667, "angle": 8.6, "curve": 0.25, "c3": 0.625, "c4": 0.5}, {"time": 1.4167, "angle": 4.3} + {"angle": -1.47, "curve": 0.346, "c2": 0.4, "c3": 0.68, "c4": 0.74}, {"time": 0.0333, "angle": -0.65, "curve": 0.36, "c2": 0.64, "c3": 0.695}, + {"time": 0.0833, "curve": 0.25, "c3": 0.75}, {"time": 0.25, "angle": -15.35, "curve": 0.25, "c3": 0.75}, {"time": 0.45, "angle": 14.26, "curve": 0.25, "c3": 0.75}, + {"time": 0.6667, "angle": -15.35, "curve": 0.25, "c3": 0.75}, {"time": 0.8667, "angle": 14.26, "curve": 0.25, "c3": 0.75}, + {"time": 1.0833, "angle": -15.35, "curve": 0.243, "c3": 0.689, "c4": 0.75}, {"time": 1.5, "angle": -1.47} ], "translate": [ - {"curve": 0.25, "c3": 0.75}, {"time": 0.1, "x": 11.07, "y": 7.2, "curve": 0.25, "c3": 0.75}, {"time": 0.2, "curve": "stepped"}, {"time": 0.3833, "curve": 0.25, "c3": 0.75}, - {"time": 0.4667, "x": -10.89, "y": -0.73, "curve": 0.25, "c3": 0.75}, {"time": 0.55} + {"x": -0.04, "y": 0.54, "curve": 0.352, "c2": 0.65, "c3": 0.687}, {"time": 0.0333, "curve": 0.25, "c3": 0.75}, {"time": 0.2, "x": -1.59, "y": 23.93, "curve": 0.25, "c3": 0.75}, + {"time": 0.4, "x": 6.55, "y": -29.78, "curve": 0.25, "c3": 0.75}, {"time": 0.6167, "x": -1.59, "y": 23.93, "curve": 0.25, "c3": 0.75}, + {"time": 0.8167, "x": 6.55, "y": -29.78, "curve": 0.25, "c3": 0.75}, {"time": 1.0333, "x": -1.59, "y": 23.93, "curve": 0.246, "c3": 0.723, "c4": 0.88}, + {"time": 1.5, "x": -0.04, "y": 0.54} ] }, "@body6": { "rotate": [ - {"angle": 22.56, "curve": 0.25, "c3": 0.625, "c4": 0.5}, {"time": 0.05, "angle": 11.28, "curve": 0.375, "c2": 0.5, "c3": 0.75}, {"time": 0.1, "curve": 0.25, "c3": 0.75}, - {"time": 0.2, "angle": -10.91, "curve": 0.25, "c3": 0.75}, {"time": 0.3, "angle": 22.56, "curve": 0.25, "c3": 0.75}, {"time": 0.4, "angle": -8.77, "curve": 0.25, "c3": 0.75}, - {"time": 0.4833, "angle": 11.2, "curve": 0.25, "c3": 0.75}, {"time": 0.5667, "angle": 4.65, "curve": 0.25, "c3": 0.75}, {"time": 0.65, "angle": 11.2, "curve": 0.25, "c3": 0.75}, - {"time": 0.7333, "angle": 0.45, "curve": 0.25, "c3": 0.75}, {"time": 0.8167, "angle": 11.2, "curve": 0.25, "c3": 0.75}, {"time": 0.9, "angle": 5.43, "curve": 0.25, "c3": 0.75}, - {"time": 0.9833, "angle": 11.2, "curve": 0.25, "c3": 0.75}, {"time": 1.0667, "angle": 5.23, "curve": 0.25, "c3": 0.75}, {"time": 1.15, "angle": 11.2, "curve": 0.25, "c3": 0.75}, - {"time": 1.2333, "angle": 8.16, "curve": 0.25, "c3": 0.75}, {"time": 1.3167, "angle": -10.91, "curve": 0.25, "c3": 0.75}, {"time": 1.4167, "angle": 22.56} + {"angle": -1.68, "curve": 0.357, "c2": 0.42, "c3": 0.7, "c4": 0.79}, {"time": 0.1167, "angle": -0.36, "curve": 0.366, "c2": 0.63, "c3": 0.703}, + {"time": 0.1833, "curve": 0.25, "c3": 0.75}, {"time": 0.35, "angle": -5.24, "curve": 0.25, "c3": 0.75}, {"time": 0.55, "angle": 25.77, "curve": 0.25, "c3": 0.75}, + {"time": 0.7667, "angle": -5.24, "curve": 0.25, "c3": 0.75}, {"time": 0.9667, "angle": 25.77, "curve": 0.25, "c3": 0.75}, + {"time": 1.1833, "angle": -5.24, "curve": 0.244, "c3": 0.643, "c4": 0.58}, {"time": 1.5, "angle": -1.68} ], "translate": [ - {"time": 0.05, "curve": 0.25, "c3": 0.75}, {"time": 0.15, "x": 17.33, "y": -12.37, "curve": 0.25, "c3": 0.75}, {"time": 0.25, "curve": "stepped"}, - {"time": 0.6, "curve": 0.25, "c3": 0.75}, {"time": 0.6833, "x": 4.79, "y": 6.64, "curve": 0.25, "c3": 0.75}, {"time": 0.7667, "curve": 0.25, "c3": 0.75}, - {"time": 0.85, "x": 6.38, "y": 8.86, "curve": 0.25, "c3": 0.75}, {"time": 0.9333, "curve": "stepped"}, {"time": 1.1, "curve": 0.25, "c3": 0.75}, - {"time": 1.1833, "x": 13.28, "y": -9.57, "curve": 0.25, "c3": 0.75}, {"time": 1.2667} + {"x": 0.97, "y": -0.68, "curve": 0.378, "c2": 0.61, "c3": 0.722}, {"time": 0.1167, "curve": 0.25, "c3": 0.75}, {"time": 0.2833, "x": 5.81, "y": -4.07, "curve": 0.25, "c3": 0.75}, + {"time": 0.4833, "x": -70.52, "y": 35.61, "curve": 0.25, "c3": 0.75}, {"time": 0.7, "x": 5.81, "y": -4.07, "curve": 0.25, "c3": 0.75}, + {"time": 0.9, "x": -70.52, "y": 35.61, "curve": 0.25, "c3": 0.75}, {"time": 1.1167, "x": 5.81, "y": -4.07, "curve": 0.242, "c3": 0.671, "c4": 0.68}, {"time": 1.5, "x": 0.97, "y": -0.68} ] }, "body-braid2": { "rotate": [ - {"angle": 5.29, "curve": 0.382, "c2": 0.57, "c3": 0.735}, {"time": 0.0333, "curve": 0.25, "c3": 0.75}, {"time": 0.1333, "angle": -2.29, "curve": 0.25, "c3": 0.75}, - {"time": 0.2333, "angle": 18.64, "curve": 0.25, "c3": 0.75}, {"time": 0.3333, "angle": -1.94, "curve": 0.25, "c3": 0.75}, {"time": 0.4167, "angle": 5.84, "curve": 0.25, "c3": 0.75}, - {"time": 0.5, "curve": 0.25, "c3": 0.75}, {"time": 0.5833, "angle": 5.84, "curve": 0.25, "c3": 0.75}, {"time": 0.6667, "curve": 0.25, "c3": 0.75}, - {"time": 0.75, "angle": 5.84, "curve": 0.25, "c3": 0.75}, {"time": 0.8333, "curve": 0.25, "c3": 0.75}, {"time": 0.9167, "angle": 5.84, "curve": 0.25, "c3": 0.75}, - {"time": 1, "curve": 0.25, "c3": 0.75}, {"time": 1.0833, "angle": 5.84, "curve": 0.25, "c3": 0.75}, {"time": 1.1667, "curve": 0.25, "c3": 0.75}, - {"time": 1.25, "angle": -2.29, "curve": 0.25, "c3": 0.75}, {"time": 1.35, "angle": 18.64, "curve": 0.243, "c3": 0.649, "c4": 0.6}, {"time": 1.4167, "angle": 5.29} - ], - "translate": [{"curve": 0.25, "c3": 0.75}, {"time": 0.1, "x": 1.68, "y": -1.17, "curve": 0.25, "c3": 0.75}, {"time": 0.2}] + {"angle": -0.03, "curve": 0.352, "c2": 0.65, "c3": 0.687}, {"time": 0.0333, "curve": 0.25, "c3": 0.75}, {"time": 0.2, "angle": -1.43, "curve": 0.25, "c3": 0.75}, + {"time": 0.4, "angle": 20.83, "curve": 0.25, "c3": 0.75}, {"time": 0.6167, "angle": -1.43, "curve": 0.25, "c3": 0.75}, {"time": 0.8167, "angle": 20.83, "curve": 0.25, "c3": 0.75}, + {"time": 1.0333, "angle": -1.43, "curve": 0.246, "c3": 0.723, "c4": 0.88}, {"time": 1.5, "angle": -0.03} + ] }, "body-braid4": { "rotate": [ - {"angle": 28.44, "curve": 0.371, "c2": 0.62, "c3": 0.71}, {"time": 0.0167, "angle": 33.06, "curve": 0.25, "c3": 0.75}, {"time": 0.1167, "curve": 0.25, "c3": 0.75}, - {"time": 0.2167, "angle": -14.88, "curve": 0.25, "c3": 0.75}, {"time": 0.3167, "angle": 33.06, "curve": 0.25, "c3": 0.75}, {"time": 0.4167, "angle": -26.01, "curve": 0.25, "c3": 0.75}, - {"time": 0.5, "angle": 16.77, "curve": 0.25, "c3": 0.75}, {"time": 0.5833, "curve": 0.25, "c3": 0.75}, {"time": 0.6667, "angle": 30.81, "curve": 0.25, "c3": 0.75}, - {"time": 0.75, "curve": 0.25, "c3": 0.75}, {"time": 0.8333, "angle": 30.81, "curve": 0.25, "c3": 0.75}, {"time": 0.9167, "curve": 0.25, "c3": 0.75}, - {"time": 1, "angle": 30.81, "curve": 0.25, "c3": 0.75}, {"time": 1.0833, "curve": 0.25, "c3": 0.75}, {"time": 1.1667, "angle": 30.81, "curve": 0.25, "c3": 0.75}, - {"time": 1.25, "curve": 0.25, "c3": 0.75}, {"time": 1.3333, "angle": -14.88, "curve": 0.243, "c3": 0.689, "c4": 0.75}, {"time": 1.4167, "angle": 28.44} + {"angle": -2.79, "curve": 0.382, "c2": 0.58, "c3": 0.731}, {"time": 0.15, "curve": 0.25, "c3": 0.75}, {"time": 0.3167, "angle": -11.53, "curve": 0.25, "c3": 0.75}, + {"time": 0.5167, "angle": 27.46, "curve": 0.25, "c3": 0.75}, {"time": 0.7333, "angle": -11.53, "curve": 0.25, "c3": 0.75}, {"time": 0.9333, "angle": 27.46, "curve": 0.25, "c3": 0.75}, + {"time": 1.15, "angle": -11.53, "curve": 0.243, "c3": 0.655, "c4": 0.63}, {"time": 1.5, "angle": -2.79} ] }, "body-braid3": { "rotate": [ - {"angle": 23.25, "curve": 0.351, "c2": 0.4, "c3": 0.757}, {"time": 0.0667, "curve": 0.25, "c3": 0.75}, {"time": 0.1667, "angle": -6.47, "curve": 0.25, "c3": 0.75}, - {"time": 0.2667, "angle": 32.47, "curve": 0.25, "c3": 0.75}, {"time": 0.3667, "angle": -7.5, "curve": 0.25, "c3": 0.75}, {"time": 0.45, "angle": 19.72, "curve": 0.25, "c3": 0.75}, - {"time": 0.5333, "curve": 0.25, "c3": 0.75}, {"time": 0.6167, "angle": 29.33, "curve": 0.25, "c3": 0.75}, {"time": 0.7, "curve": 0.25, "c3": 0.75}, - {"time": 0.7833, "angle": 29.33, "curve": 0.25, "c3": 0.75}, {"time": 0.8667, "curve": 0.25, "c3": 0.75}, {"time": 0.95, "angle": 29.33, "curve": 0.25, "c3": 0.75}, - {"time": 1.0333, "curve": 0.25, "c3": 0.75}, {"time": 1.1167, "angle": 19.72, "curve": 0.25, "c3": 0.75}, {"time": 1.2, "curve": 0.25, "c3": 0.75}, - {"time": 1.2833, "angle": -6.47, "curve": 0.25, "c3": 0.75}, {"time": 1.3833, "angle": 32.47, "curve": 0.265, "c3": 0.618, "c4": 0.43}, {"time": 1.4167, "angle": 23.25} + {"angle": -0.8, "curve": 0.371, "c2": 0.62, "c3": 0.71}, {"time": 0.0833, "curve": 0.25, "c3": 0.75}, {"time": 0.25, "angle": -8.3, "curve": 0.25, "c3": 0.75}, + {"time": 0.45, "angle": 33.27, "curve": 0.25, "c3": 0.75}, {"time": 0.6667, "angle": -8.3, "curve": 0.25, "c3": 0.75}, {"time": 0.8667, "angle": 33.27, "curve": 0.25, "c3": 0.75}, + {"time": 1.0833, "angle": -8.3, "curve": 0.243, "c3": 0.689, "c4": 0.75}, {"time": 1.5, "angle": -0.8} ] }, "@body2": { "rotate": [ - {"angle": -4.21, "curve": 0.351, "c2": 0.4, "c3": 0.757}, {"time": 0.0667, "angle": 15.89, "curve": 0.25, "c3": 0.75}, {"time": 0.15, "angle": 8.58, "curve": 0.25, "c3": 0.75}, - {"time": 0.2333, "angle": -8.34, "curve": 0.25, "c3": 0.75}, {"time": 0.3167, "angle": 8.58, "curve": 0.25, "c3": 0.75}, {"time": 0.4, "angle": -2.06, "curve": 0.25, "c3": 0.75}, - {"time": 0.4833, "angle": 8.58, "curve": 0.25, "c3": 0.75}, {"time": 0.5667, "angle": -7.29, "curve": 0.25, "c3": 0.75}, {"time": 0.65, "angle": 8.58, "curve": 0.25, "c3": 0.75}, - {"time": 0.7333, "angle": -9.24, "curve": 0.25, "c3": 0.75}, {"time": 0.8167, "angle": 8.58, "curve": 0.25, "c3": 0.75}, {"time": 0.9, "angle": -4.57, "curve": 0.25, "c3": 0.75}, - {"time": 0.9833, "angle": 5.38, "curve": 0.25, "c3": 0.75}, {"time": 1.0833, "angle": -12.18, "curve": 0.243, "c3": 0.649, "c4": 0.6}, - {"time": 1.15, "angle": -3.46, "curve": 0.382, "c2": 0.57, "c3": 0.735}, {"time": 1.1833, "curve": 0.25, "c3": 0.75}, {"time": 1.2833, "angle": 5.38, "curve": 0.25, "c3": 0.75}, - {"time": 1.3833, "angle": -12.18, "curve": 0.265, "c3": 0.618, "c4": 0.43}, {"time": 1.4167, "angle": -4.21} + {"angle": 1.78, "curve": 0.355, "c2": 0.42, "c3": 0.693, "c4": 0.77}, {"time": 0.0833, "angle": 0.52, "curve": 0.366, "c2": 0.63, "c3": 0.703}, {"time": 0.15, "curve": 0.25, "c3": 0.75}, + {"time": 0.3167, "angle": 17.29, "curve": 0.25, "c3": 0.75}, {"time": 0.5167, "angle": -18.73, "curve": 0.25, "c3": 0.75}, {"time": 0.7333, "angle": 19.34, "curve": 0.25, "c3": 0.75}, + {"time": 0.9333, "angle": -24.45, "curve": 0.25, "c3": 0.75}, {"time": 1.15, "angle": 15.04, "curve": 0.244, "c3": 0.643, "c4": 0.58}, + {"time": 1.4667, "angle": 2.39, "curve": 0.338, "c2": 0.35, "c3": 0.672, "c4": 0.68}, {"time": 1.5, "angle": 1.78} ], "translate": [ - {"time": 0.1167, "curve": 0.25, "c3": 0.75}, {"time": 0.2, "x": 13.61, "y": 0.91, "curve": 0.25, "c3": 0.75}, {"time": 0.2833, "curve": "stepped"}, - {"time": 0.45, "curve": 0.25, "c3": 0.75}, {"time": 0.5333, "x": 11.98, "y": -15.61, "curve": 0.25, "c3": 0.75}, {"time": 0.6167, "curve": "stepped"}, - {"time": 1.15, "curve": 0.25, "c3": 0.75}, {"time": 1.25, "x": -13.08, "y": -0.76, "curve": 0.25, "c3": 0.75}, {"time": 1.35} + {"x": -0.01, "y": 0.19, "curve": 0.378, "c2": 0.61, "c3": 0.722}, {"time": 0.1167, "curve": 0.25, "c3": 0.75}, {"time": 0.2833, "x": -0.08, "y": 1.15, "curve": 0.25, "c3": 0.75}, + {"time": 0.4833, "x": 4.59, "y": -41.28, "curve": 0.25, "c3": 0.75}, {"time": 0.7, "x": -0.08, "y": 1.15, "curve": 0.25, "c3": 0.75}, + {"time": 0.9, "x": 4.59, "y": -41.28, "curve": 0.25, "c3": 0.75}, {"time": 1.1167, "x": -0.08, "y": 1.15, "curve": 0.242, "c3": 0.671, "c4": 0.68}, {"time": 1.5, "x": -0.01, "y": 0.19} ] }, "body-braid6": { "rotate": [ - {"curve": 0.25, "c3": 0.75}, {"time": 0.0833, "angle": -32.78, "curve": 0.29, "c3": 0.629, "c4": 0.38}, {"time": 0.1, "angle": -27.78, "curve": 0.311, "c2": 0.25, "c3": 0.757}, - {"time": 0.1833, "angle": 19.08, "curve": 0.25, "c3": 0.75}, {"time": 0.2833, "curve": 0.25, "c3": 0.75}, {"time": 0.3833, "angle": -32.78, "curve": 0.25, "c3": 0.75}, - {"time": 0.4833, "angle": 19.08, "curve": 0.25, "c3": 0.75}, {"time": 0.5833, "angle": -39.01, "curve": 0.25, "c3": 0.75}, {"time": 0.6667, "angle": 2.79, "curve": 0.25, "c3": 0.75}, - {"time": 0.75, "curve": 0.25, "c3": 0.75}, {"time": 0.8333, "angle": 2.79, "curve": 0.25, "c3": 0.75}, {"time": 0.9167, "curve": 0.25, "c3": 0.75}, - {"time": 1, "angle": 2.79, "curve": 0.25, "c3": 0.75}, {"time": 1.0833, "curve": 0.25, "c3": 0.75}, {"time": 1.1667, "angle": 2.79, "curve": 0.25, "c3": 0.75}, - {"time": 1.25, "curve": 0.25, "c3": 0.75}, {"time": 1.3333, "angle": 2.79, "curve": 0.25, "c3": 0.75}, {"time": 1.4167} + {"angle": -9.2, "curve": 0.378, "c2": 0.52, "c3": 0.748}, {"time": 0.2333, "curve": 0.25, "c3": 0.75}, {"time": 0.4, "angle": -20.17, "curve": 0.25, "c3": 0.75}, + {"time": 0.6, "angle": 18.35, "curve": 0.25, "c3": 0.75}, {"time": 0.8167, "angle": -20.17, "curve": 0.25, "c3": 0.75}, {"time": 1.0167, "angle": 18.35, "curve": 0.25, "c3": 0.75}, + {"time": 1.2333, "angle": -20.17, "curve": 0.248, "c3": 0.628, "c4": 0.52}, {"time": 1.5, "angle": -9.2} ] }, "body-braid5": { "rotate": [ - {"angle": 17.12, "curve": 0.25, "c3": 0.75}, {"time": 0.1, "curve": 0.25, "c3": 0.75}, {"time": 0.2, "angle": -6.97, "curve": 0.25, "c3": 0.75}, - {"time": 0.3, "angle": 17.12, "curve": 0.25, "c3": 0.75}, {"time": 0.4, "angle": -11.69, "curve": 0.25, "c3": 0.75}, {"time": 0.4833, "angle": 19.47, "curve": 0.25, "c3": 0.75}, - {"time": 0.5667, "curve": 0.25, "c3": 0.75}, {"time": 0.65, "angle": 19.47, "curve": 0.25, "c3": 0.75}, {"time": 0.7333, "curve": 0.25, "c3": 0.75}, - {"time": 0.8167, "angle": 19.47, "curve": 0.25, "c3": 0.75}, {"time": 0.9, "curve": 0.25, "c3": 0.75}, {"time": 0.9833, "angle": 19.47, "curve": 0.25, "c3": 0.75}, - {"time": 1.0667, "curve": 0.25, "c3": 0.75}, {"time": 1.15, "angle": 9.32, "curve": 0.25, "c3": 0.75}, {"time": 1.2333, "curve": 0.25, "c3": 0.75}, - {"time": 1.3167, "angle": -6.97, "curve": 0.25, "c3": 0.75}, {"time": 1.4167, "angle": 17.12} + {"angle": -1.21, "curve": 0.378, "c2": 0.61, "c3": 0.722}, {"time": 0.1167, "curve": 0.25, "c3": 0.75}, {"time": 0.2833, "angle": -7.27, "curve": 0.25, "c3": 0.75}, + {"time": 0.4833, "angle": 36.02, "curve": 0.25, "c3": 0.75}, {"time": 0.7, "angle": -7.27, "curve": 0.25, "c3": 0.75}, {"time": 0.9, "angle": 36.02, "curve": 0.25, "c3": 0.75}, + {"time": 1.1167, "angle": -7.27, "curve": 0.242, "c3": 0.671, "c4": 0.68}, {"time": 1.5, "angle": -1.21} ] }, "body-braid": { "rotate": [ - {"angle": 18.08, "curve": 0.351, "c2": 0.4, "c3": 0.757}, {"time": 0.0667, "curve": 0.25, "c3": 0.75}, {"time": 0.1667, "angle": -3.74, "curve": 0.25, "c3": 0.75}, - {"time": 0.2667, "angle": 25.24, "curve": 0.25, "c3": 0.75}, {"time": 0.3667, "angle": -1.77, "curve": 0.25, "c3": 0.75}, {"time": 0.45, "angle": 12.44, "curve": 0.25, "c3": 0.75}, - {"time": 0.5333, "curve": 0.25, "c3": 0.75}, {"time": 0.6167, "angle": 12.44, "curve": 0.25, "c3": 0.75}, {"time": 0.7, "curve": 0.25, "c3": 0.75}, - {"time": 0.7833, "angle": 12.44, "curve": 0.25, "c3": 0.75}, {"time": 0.8667, "curve": 0.25, "c3": 0.75}, {"time": 0.95, "angle": 12.44, "curve": 0.25, "c3": 0.75}, - {"time": 1.0333, "curve": 0.25, "c3": 0.75}, {"time": 1.1167, "angle": 12.44, "curve": 0.25, "c3": 0.75}, {"time": 1.2, "curve": 0.25, "c3": 0.75}, - {"time": 1.2833, "angle": -3.74, "curve": 0.25, "c3": 0.75}, {"time": 1.3833, "angle": 25.24, "curve": 0.265, "c3": 0.618, "c4": 0.43}, {"time": 1.4167, "angle": 18.08} - ], - "translate": [{"curve": 0.25, "c3": 0.75}, {"time": 0.1, "x": 1.68, "y": -1.17, "curve": "stepped"}, {"time": 1.3167, "x": 1.68, "y": -1.17, "curve": 0.25, "c3": 0.75}, {"time": 1.4167}] - }, - "@body5": { - "rotate": [ - {"curve": 0.25, "c3": 0.75}, {"time": 0.1, "angle": -0.69, "curve": 0.25, "c3": 0.75}, {"time": 0.2, "angle": 3.41, "curve": 0.25, "c3": 0.75}, - {"time": 0.3, "angle": -2, "curve": 0.25, "c3": 0.75}, {"time": 0.3833, "angle": 1.01, "curve": 0.25, "c3": 0.75}, {"time": 0.4667, "angle": 0.75, "curve": 0.25, "c3": 0.75}, - {"time": 0.55, "angle": 1.01, "curve": 0.25, "c3": 0.75}, {"time": 0.6333, "angle": 0.75, "curve": 0.25, "c3": 0.75}, {"time": 0.7167, "angle": 1.01, "curve": 0.25, "c3": 0.75}, - {"time": 0.8, "angle": 0.75, "curve": 0.25, "c3": 0.75}, {"time": 0.8833, "angle": 1.01, "curve": 0.25, "c3": 0.75}, {"time": 0.9667, "angle": 0.75, "curve": 0.25, "c3": 0.75}, - {"time": 1.05, "angle": 1.01, "curve": 0.25, "c3": 0.75}, {"time": 1.1333, "angle": 0.75, "curve": 0.25, "c3": 0.75}, {"time": 1.2167, "angle": -0.69, "curve": 0.25, "c3": 0.75}, - {"time": 1.3167, "angle": 3.41, "curve": 0.25, "c3": 0.75}, {"time": 1.4167} + {"angle": -0.11, "curve": 0.36, "c2": 0.64, "c3": 0.695}, {"time": 0.05, "curve": 0.25, "c3": 0.75}, {"time": 0.2167, "angle": -2.68, "curve": 0.25, "c3": 0.75}, + {"time": 0.4167, "angle": 22.42, "curve": 0.25, "c3": 0.75}, {"time": 0.6333, "angle": -2.68, "curve": 0.25, "c3": 0.75}, {"time": 0.8333, "angle": 22.42, "curve": 0.25, "c3": 0.75}, + {"time": 1.05, "angle": -2.68, "curve": 0.245, "c3": 0.711, "c4": 0.83}, {"time": 1.5, "angle": -0.11} ] } } }, - "980943882": { - "slots": { - "eyes": {"attachment": [{"name": "eyes-happy"}]}, - "leg-back-left": {"attachment": [{"time": 0.2833, "name": "sumo-leg-back-left-stretch"}, {"time": 0.7167, "name": "sumo-leg-back-left"}]}, - "leg-front-left": {"attachment": [{"time": 0.2, "name": "sumo-leg-front-left-stretch"}, {"time": 0.6, "name": "sumo-leg-front-left"}]} - }, + "2742360208": { + "slots": {"eyes": {"attachment": [{"time": 0.05, "name": "eyes-happy"}, {"time": 0.7667, "name": "eyes"}]}}, "bones": { - "@leg-front-left": { - "translate": [ - {"x": -14.55, "y": -2.39, "curve": 0.374, "c2": 0.33, "c3": 0.72, "c4": 0.68}, {"time": 0.0333, "x": -24.69, "y": -4.71, "curve": 0.37, "c2": 0.57, "c3": 0.746}, - {"time": 0.1667, "x": -24.61, "y": -1.31, "curve": 0.37, "c2": 0.57, "c3": 0.746}, {"time": 0.3333, "x": 13.45, "y": -27.72, "curve": 0.345, "c2": 0.53, "c3": 0.751}, - {"time": 0.4833, "x": 40.66, "y": -4.9, "curve": 0.262, "c3": 0.63, "c4": 0.42}, {"time": 0.5667, "x": 49.25, "y": 8.32, "curve": 0.343, "c2": 0.3, "c3": 0.688, "c4": 0.65}, - {"time": 0.7, "x": 9.23, "y": 17.43, "curve": 0.255, "c3": 0.659, "c4": 0.47}, {"time": 0.75, "x": -14.55, "y": -2.39} + "@pivot-back": { + "rotate": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "angle": -5.76, "curve": 0.306, "c3": 0.695}, {"time": 0.6667, "angle": -6.67, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.8333, "angle": 2.85, "curve": 0.306, "c3": 0.695}, {"time": 1} ], - "scale": [ - {"curve": 0.459, "c2": 0.59, "c3": 0.838}, {"time": 0.0333, "x": 0.935, "curve": 0.331, "c3": 0.677, "c4": 0.4}, {"time": 0.0667, "x": 0.87, "curve": 0.464, "c4": 0.7}, {"time": 0.1667} - ] - }, - "leg-front-left-IK": { "translate": [ - {"x": 0.33, "y": 2.27, "curve": 0.154, "c4": 0.9}, {"time": 0.0833, "x": 32.98, "y": -4.28, "curve": 0.269, "c2": 0.57, "c3": 0.577}, - {"time": 0.1667, "x": 53.3, "y": 2.35, "curve": 0.461, "c3": 0.543}, {"time": 0.4167, "x": -85.44, "y": 106.83, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.5167, "x": -85.78, "y": 86.09, "curve": 0.143, "c3": 0.57, "c4": 0.46}, {"time": 0.7, "x": -26.89, "y": 8.67, "curve": 0, "c2": 0.09, "c3": 0.479, "c4": 0.56}, - {"time": 0.75, "x": 0.33, "y": 2.27} + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": -11.96, "y": -12.91, "curve": 0.306, "c3": 0.695}, + {"time": 0.6667, "x": -17.52, "y": -16.38, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.8333} ] }, - "leg-back-left-IK": { + "@leg-front-left": { "translate": [ - {"x": 17.64, "y": 16.11, "curve": 0.455, "c2": 0.58, "c3": 0.847}, {"time": 0.0333, "curve": 0, "c2": 0.1, "c3": 0.85}, - {"time": 0.2333, "x": -50.37, "curve": 0, "c2": 0.09, "c3": 0.466, "c4": 0.7}, {"time": 0.3, "x": 11.38, "y": 18.2, "curve": 0.177, "c2": 0.44, "c3": 0.617}, - {"time": 0.5333, "x": 56.74, "y": 103.8, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.6667, "x": 71.93, "y": 112.16, "curve": 0.315, "c4": 0.8}, {"time": 0.75, "x": 17.64, "y": 16.11} - ] - }, - "@shadow": { - "scale": [ - {"curve": 0.313, "c3": 0.699}, {"time": 0.25, "x": 0.94, "y": 0.94, "curve": 0.313, "c3": 0.699}, {"time": 0.4333, "x": 0.8, "y": 0.8, "curve": 0.315, "c4": 0.8}, {"time": 0.75} + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": -22.08, "y": 3.82, "curve": 0.306, "c3": 0.695}, {"time": 0.6667, "x": -27.67, "y": 3.91, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.8333, "x": -16.19, "y": -6.62, "curve": 0.306, "c3": 0.695}, {"time": 1} ] }, - "tail": { - "rotate": [{"curve": 0.161, "c3": 0.854}, {"time": 0.25, "angle": -15.26, "curve": 0, "c2": 0.3, "c3": 0.546}, {"time": 0.5, "angle": 3.48, "curve": 0.154, "c4": 0.9}, {"time": 0.75}] - }, "@leg-front-right": { "translate": [ - {"x": 7.78, "y": -11.23, "curve": 0.649, "c2": 0.4, "c4": 0.74}, {"time": 0.0167, "x": -0.64, "y": -13.16, "curve": 0.313, "c3": 0.699}, - {"time": 0.1333, "x": -9.39, "y": -16.39, "curve": 0.346, "c2": 0.44, "c3": 0.699}, {"time": 0.3167, "x": -26.29, "y": 12.52, "curve": 0, "c2": 0.18, "c3": 0.424, "c4": 0.59}, - {"time": 0.4333, "x": 7.42, "y": -10.53, "curve": 0.316, "c2": 0.49, "c3": 0.751}, {"time": 0.6, "x": 51.65, "y": -22.8, "curve": 0.289, "c3": 0.884, "c4": 0.7}, - {"time": 0.75, "x": 7.78, "y": -11.23} - ] - }, - "leg-front-right-IK": { - "translate": [ - {"x": -13.57, "y": 17.19, "curve": 0.645, "c2": 0.47, "c4": 0.81}, {"time": 0.0167, "curve": 0.313, "c3": 0.699}, {"time": 0.2667, "x": 62.62, "curve": 0, "c2": 0.3, "c3": 0.544}, - {"time": 0.5, "x": -85.89, "y": 125.19}, {"time": 0.6, "x": -101.73, "y": 111.9, "curve": 0.142, "c3": 0.858, "c4": 0.77}, {"time": 0.75, "x": -13.57, "y": 17.19} + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": -32.02, "y": 30.99, "curve": 0.306, "c3": 0.695}, + {"time": 0.6667, "x": -43.95, "y": 33.64, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.8333, "x": 1.17, "y": -19.99, "curve": 0.306, "c3": 0.695}, {"time": 1} ] }, "@leg-back-left": { "translate": [ - {"x": -4.73, "y": 6.6, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.15, "x": 1.29, "y": -4.22, "curve": 0.44, "c2": 0.55, "c3": 0.858}, - {"time": 0.25, "x": 2.16, "y": 6.49, "curve": 0, "c2": 0.09, "c3": 0.466, "c4": 0.7}, {"time": 0.3, "x": -5.17, "y": 15.67, "curve": 0.218, "c2": 0.39, "c3": 0.738}, - {"time": 0.5333, "x": -14.09, "y": -7.98, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.6667, "x": -12.69, "y": -11.31, "curve": 0.315, "c4": 0.8}, {"time": 0.75, "x": -4.73, "y": 6.6} - ], - "scale": [{"curve": 0, "c2": 0.1, "c3": 0.457, "c4": 0.54}, {"time": 0.0667, "x": 0.837, "curve": 0.395, "c2": 0.49, "c3": 0.868}, {"time": 0.15}] + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": -18.26, "y": -5.66, "curve": 0.306, "c3": 0.695}, + {"time": 0.6667, "x": -24.49, "y": -9.09, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.8333, "x": -0.1, "y": -3.16, "curve": 0.306, "c3": 0.695}, {"time": 1} + ] }, - "@pivot-back": { + "tail": { "rotate": [ - {"angle": 3.74, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "angle": 1.5, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.25, "angle": -2, "curve": 0, "c2": 0.1, "c3": 0.85}, - {"time": 0.35, "angle": -5, "curve": 0.154, "c4": 0.9}, {"time": 0.6667, "angle": 5, "curve": 0.154, "c4": 0.9}, {"time": 0.75, "angle": 3.74} - ], - "translate": [ - {"y": 8, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "y": -10, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.25, "curve": 0, "c2": 0.1, "c3": 0.85}, - {"time": 0.5667, "y": 80.61, "curve": 0.154, "c4": 0.9}, {"time": 0.75, "y": 8} + {"curve": 0, "c2": 0.3, "c3": 0.54}, {"time": 0.1667, "angle": -11.59, "curve": 0.306, "c3": 0.695}, {"time": 0.4167, "angle": 2.75, "curve": 0.306, "c3": 0.695}, + {"time": 0.6667, "angle": -13.32, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.8333, "angle": 15.71, "curve": 0.306, "c3": 0.695}, {"time": 1} + ] + }, + "@shadow": { + "scale": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": 0.96, "y": 0.96}, {"time": 0.6667, "x": 0.94, "y": 0.94, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.8333, "x": 1.06, "y": 1.06, "curve": 0.306, "c3": 0.695}, {"time": 1} ] }, - "@pivot-main": {"scale": [{"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1333, "y": 0.85, "curve": 0.306, "c4": 0.8}, {"time": 0.25}]}, "@body3": { "rotate": [ - {"angle": -13.86, "curve": 0.263, "c2": 0.07, "c3": 0.719, "c4": 0.86}, {"time": 0.3333, "angle": -4.09, "curve": 0.357, "c2": 0.65, "c3": 0.692}, - {"time": 0.3667, "angle": -3.77, "curve": 0.25, "c3": 0.75}, {"time": 0.7333, "angle": -14, "curve": 0.32, "c3": 0.654, "c4": 0.34}, {"time": 0.75, "angle": -13.86} + {"angle": -11.21, "curve": 0.364, "c2": 0.47, "c3": 0.704, "c4": 0.84}, {"time": 0.05, "angle": -13.65, "curve": 0.354, "c2": 0.65, "c3": 0.688}, + {"time": 0.0667, "angle": -14, "curve": 0.25, "c3": 0.75}, {"time": 0.3167, "curve": 0.242, "c3": 0.662, "c4": 0.65}, + {"time": 0.5, "angle": -11.21, "curve": 0.364, "c2": 0.47, "c3": 0.704, "c4": 0.84}, {"time": 0.55, "angle": -13.65, "curve": 0.354, "c2": 0.65, "c3": 0.688}, + {"time": 0.5667, "angle": -14, "curve": 0.25, "c3": 0.75}, {"time": 0.8167, "curve": 0.242, "c3": 0.662, "c4": 0.65}, {"time": 1, "angle": -11.21} ], "translate": [ - {"x": 32.19, "y": -18.01, "curve": 0.299, "c2": 0.21, "c3": 0.756}, {"time": 0.3333, "curve": 0.25, "c3": 0.75}, - {"time": 0.7, "x": 34.51, "y": -19.31, "curve": 0.298, "c3": 0.635, "c4": 0.37}, {"time": 0.75, "x": 32.19, "y": -18.01} + {"x": 30.45, "y": -18.4, "curve": 0.374, "c2": 0.62, "c3": 0.715}, {"time": 0.05, "x": 34.51, "y": -19.31, "curve": 0.25, "c3": 0.75}, + {"time": 0.3, "x": 1.97, "y": -12.02, "curve": 0.243, "c3": 0.681, "c4": 0.72}, {"time": 0.5, "x": 30.45, "y": -18.4, "curve": 0.374, "c2": 0.62, "c3": 0.715}, + {"time": 0.55, "x": 34.51, "y": -19.31, "curve": 0.25, "c3": 0.75}, {"time": 0.8, "x": 1.97, "y": -12.02, "curve": 0.243, "c3": 0.681, "c4": 0.72}, {"time": 1, "x": 30.45, "y": -18.4} ] }, "@body4": { "rotate": [ - {"angle": -1.5, "curve": 0.343, "c2": 0.36, "c3": 0.683, "c4": 0.72}, {"time": 0.0833, "angle": -9.54, "curve": 0.38, "c2": 0.6, "c3": 0.726}, - {"time": 0.1833, "angle": -15.35, "curve": 0.25, "c3": 0.75}, {"time": 0.55, "angle": 14.26, "curve": 0.249, "c3": 0.627, "c4": 0.51}, {"time": 0.75, "angle": -1.5} + {"angle": 4.21, "curve": 0.339, "c2": 0.35, "c3": 0.676, "c4": 0.69}, {"time": 0.05, "angle": 6.54, "curve": 0.382, "c2": 0.58, "c3": 0.733}, + {"time": 0.1167, "angle": 9.83, "curve": 0.25, "c3": 0.75}, {"time": 0.3667, "angle": -2.66, "curve": 0.248, "c3": 0.629, "c4": 0.52}, + {"time": 0.5, "angle": 4.21, "curve": 0.339, "c2": 0.35, "c3": 0.676, "c4": 0.69}, {"time": 0.55, "angle": 6.54, "curve": 0.382, "c2": 0.58, "c3": 0.733}, + {"time": 0.6167, "angle": 9.83, "curve": 0.25, "c3": 0.75}, {"time": 0.8667, "angle": -2.66, "curve": 0.248, "c3": 0.629, "c4": 0.52}, {"time": 1, "angle": 4.21} ], "translate": [ - {"x": 2.34, "y": 16.61, "curve": 0.377, "c2": 0.61, "c3": 0.719}, {"time": 0.0833, "x": -1.59, "y": 23.93, "curve": 0.25, "c3": 0.75}, - {"time": 0.45, "x": 24.8, "y": -25.19, "curve": 0.243, "c3": 0.675, "c4": 0.7}, {"time": 0.75, "x": 2.34, "y": 16.61} + {"x": 23.06, "y": -10.33, "curve": 0.368, "c2": 0.63, "c3": 0.706}, {"time": 0.05, "x": 25.02, "y": -10.92, "curve": 0.25, "c3": 0.75}, + {"time": 0.2833, "x": 0.59, "y": -3.61, "curve": 0.244, "c3": 0.695, "c4": 0.77}, {"time": 0.5, "x": 23.06, "y": -10.33, "curve": 0.368, "c2": 0.63, "c3": 0.706}, + {"time": 0.55, "x": 25.02, "y": -10.92, "curve": 0.25, "c3": 0.75}, {"time": 0.7833, "x": 0.59, "y": -3.61, "curve": 0.244, "c3": 0.695, "c4": 0.77}, {"time": 1, "x": 23.06, "y": -10.33} ] }, "@body6": { "rotate": [ - {"angle": 19.85, "curve": 0.303, "c2": 0.23, "c3": 0.712, "c4": 0.82}, {"time": 0.2667, "angle": -3.35, "curve": 0.365, "c2": 0.63, "c3": 0.702}, - {"time": 0.3167, "angle": -5.24, "curve": 0.25, "c3": 0.75}, {"time": 0.6833, "angle": 22.83, "curve": 0.289, "c3": 0.628, "c4": 0.38}, {"time": 0.75, "angle": 19.85} + {"angle": 4.59, "curve": 0.331, "c2": 0.33, "c3": 0.694, "c4": 0.75}, {"time": 0.1167, "angle": 13.13, "curve": 0.377, "c2": 0.61, "c3": 0.719}, + {"time": 0.1667, "angle": 15.47, "curve": 0.25, "c3": 0.75}, {"time": 0.4167, "curve": 0.264, "c3": 0.618, "c4": 0.43}, + {"time": 0.5, "angle": 4.59, "curve": 0.331, "c2": 0.33, "c3": 0.694, "c4": 0.75}, {"time": 0.6167, "angle": 13.13, "curve": 0.377, "c2": 0.61, "c3": 0.719}, + {"time": 0.6667, "angle": 15.47, "curve": 0.25, "c3": 0.75}, {"time": 0.9167, "curve": 0.264, "c3": 0.618, "c4": 0.43}, {"time": 1, "angle": 4.59} ], "translate": [ - {"x": -51.62, "y": 25.78, "curve": 0.346, "c2": 0.38, "c3": 0.757}, {"time": 0.2667, "x": 5.81, "y": -4.07, "curve": 0.25, "c3": 0.75}, - {"time": 0.6333, "x": -70.52, "y": 35.61, "curve": 0.268, "c3": 0.618, "c4": 0.42}, {"time": 0.75, "x": -51.62, "y": 25.78} + {"x": -15.68, "y": 2.61, "curve": 0.38, "c2": 0.53, "c3": 0.746}, {"time": 0.1167, "x": -17.06, "y": -1.14, "curve": 0.25, "c3": 0.75}, + {"time": 0.3667, "x": -13.78, "y": 7.8, "curve": 0.247, "c3": 0.632, "c4": 0.53}, {"time": 0.5, "x": -15.68, "y": 2.61, "curve": 0.38, "c2": 0.53, "c3": 0.746}, + {"time": 0.6167, "x": -17.06, "y": -1.14, "curve": 0.25, "c3": 0.75}, {"time": 0.8667, "x": -13.78, "y": 7.8, "curve": 0.247, "c3": 0.632, "c4": 0.53}, + {"time": 1, "x": -15.68, "y": 2.61} + ] + }, + "body-braid2": { + "rotate": [ + {"angle": 9.33, "curve": 0.25, "c3": 0.75}, {"time": 0.25, "curve": 0.25, "c3": 0.75}, {"time": 0.5, "angle": 9.33, "curve": 0.25, "c3": 0.75}, {"time": 0.75, "curve": 0.25, "c3": 0.75}, + {"time": 1, "angle": 9.33} ] }, - "body-braid2": {"rotate": [{"angle": -1.43, "curve": 0.25, "c3": 0.75}, {"time": 0.3667, "angle": 20.83, "curve": 0.25, "c3": 0.75}, {"time": 0.75, "angle": -1.43}]}, "body-braid4": { "rotate": [ - {"angle": 9.08, "curve": 0.373, "c2": 0.49, "c3": 0.751}, {"time": 0.2, "angle": -11.53, "curve": 0.25, "c3": 0.75}, - {"time": 0.5667, "angle": 27.46, "curve": 0.251, "c3": 0.623, "c4": 0.49}, {"time": 0.75, "angle": 9.08} + {"angle": 5.44, "curve": 0.374, "c2": 0.49, "c3": 0.751}, {"time": 0.1333, "angle": 11.24, "curve": 0.25, "c3": 0.75}, {"time": 0.3833, "curve": 0.251, "c3": 0.624, "c4": 0.49}, + {"time": 0.5, "angle": 5.44, "curve": 0.374, "c2": 0.49, "c3": 0.751}, {"time": 0.6333, "angle": 11.24, "curve": 0.25, "c3": 0.75}, + {"time": 0.8833, "curve": 0.251, "c3": 0.624, "c4": 0.49}, {"time": 1, "angle": 5.44} ] }, "body-braid3": { "rotate": [ - {"angle": -4.05, "curve": 0.372, "c2": 0.62, "c3": 0.711}, {"time": 0.0667, "angle": -8.3, "curve": 0.25, "c3": 0.75}, - {"time": 0.4333, "angle": 33.27, "curve": 0.243, "c3": 0.687, "c4": 0.74}, {"time": 0.75, "angle": -4.05} + {"angle": 14.47, "curve": 0.377, "c2": 0.61, "c3": 0.719}, {"time": 0.0667, "angle": 17.05, "curve": 0.25, "c3": 0.75}, {"time": 0.3, "curve": 0.243, "c3": 0.674, "c4": 0.69}, + {"time": 0.5, "angle": 14.47, "curve": 0.377, "c2": 0.61, "c3": 0.719}, {"time": 0.5667, "angle": 17.05, "curve": 0.25, "c3": 0.75}, + {"time": 0.8, "curve": 0.243, "c3": 0.674, "c4": 0.69}, {"time": 1, "angle": 14.47} ] }, "@body2": { "rotate": [ - {"angle": -2.16, "curve": 0.349, "c2": 0.38, "c3": 0.701, "c4": 0.78}, {"time": 0.1333, "angle": 5.57, "curve": 0.372, "c2": 0.62, "c3": 0.711}, - {"time": 0.2, "angle": 7.45, "curve": 0.25, "c3": 0.75}, {"time": 0.5667, "angle": -10.94, "curve": 0.251, "c3": 0.623, "c4": 0.49}, {"time": 0.75, "angle": -2.16} + {"angle": -3.3, "curve": 0.338, "c2": 0.35, "c3": 0.704, "c4": 0.79}, {"time": 0.1167, "angle": -9.03, "curve": 0.372, "c2": 0.62, "c3": 0.71}, + {"time": 0.1667, "angle": -10.03, "curve": 0.25, "c3": 0.75}, {"time": 0.4167, "curve": 0.261, "c3": 0.618, "c4": 0.44}, + {"time": 0.5, "angle": -3.3, "curve": 0.338, "c2": 0.35, "c3": 0.704, "c4": 0.79}, {"time": 0.6167, "angle": -9.03, "curve": 0.372, "c2": 0.62, "c3": 0.71}, + {"time": 0.6667, "angle": -10.03, "curve": 0.25, "c3": 0.75}, {"time": 0.9167, "curve": 0.261, "c3": 0.618, "c4": 0.44}, {"time": 1, "angle": -3.3} ], "translate": [ - {"x": -4.53, "y": -2.88, "curve": 0.382, "c2": 0.57, "c3": 0.737}, {"time": 0.1333, "x": -0.08, "y": 1.15, "curve": 0.25, "c3": 0.75}, - {"time": 0.5, "x": -14.84, "y": -12.21, "curve": 0.244, "c3": 0.646, "c4": 0.59}, {"time": 0.75, "x": -4.53, "y": -2.88} + {"x": 2.89, "y": -4.35, "curve": 0.378, "c2": 0.52, "c3": 0.748}, {"time": 0.1167, "x": 2.83, "y": 6.92, "curve": 0.25, "c3": 0.75}, + {"time": 0.3667, "x": 2.96, "y": -18.03, "curve": 0.248, "c3": 0.629, "c4": 0.52}, {"time": 0.5, "x": 2.89, "y": -4.35, "curve": 0.378, "c2": 0.52, "c3": 0.748}, + {"time": 0.6167, "x": 2.83, "y": 6.92, "curve": 0.25, "c3": 0.75}, {"time": 0.8667, "x": 2.96, "y": -18.03, "curve": 0.248, "c3": 0.629, "c4": 0.52}, {"time": 1, "x": 2.89, "y": -4.35} ] }, "body-braid6": { "rotate": [ - {"angle": 12.61, "curve": 0.325, "c2": 0.3, "c3": 0.757}, {"time": 0.3, "angle": -20.17, "curve": 0.25, "c3": 0.75}, - {"time": 0.6667, "angle": 18.35, "curve": 0.281, "c3": 0.623, "c4": 0.39}, {"time": 0.75, "angle": 12.61} + {"angle": 0.21, "curve": 0.312, "c2": 0.25, "c3": 0.757}, {"time": 0.2167, "angle": 2.13, "curve": 0.25, "c3": 0.75}, {"time": 0.4667, "curve": 0.29, "c3": 0.628, "c4": 0.38}, + {"time": 0.5, "angle": 0.21, "curve": 0.312, "c2": 0.25, "c3": 0.757}, {"time": 0.7167, "angle": 2.13, "curve": 0.25, "c3": 0.75}, + {"time": 0.9667, "curve": 0.29, "c3": 0.628, "c4": 0.38}, {"time": 1, "angle": 0.21} ] }, "body-braid5": { "rotate": [ - {"angle": 5.8, "curve": 0.382, "c2": 0.57, "c3": 0.737}, {"time": 0.1333, "angle": -7.27, "curve": 0.25, "c3": 0.75}, - {"time": 0.5, "angle": 36.02, "curve": 0.244, "c3": 0.646, "c4": 0.59}, {"time": 0.75, "angle": 5.8} + {"angle": 14.47, "curve": 0.38, "c2": 0.53, "c3": 0.746}, {"time": 0.1167, "angle": 19.81, "curve": 0.25, "c3": 0.75}, + {"time": 0.3667, "angle": 7.07, "curve": 0.247, "c3": 0.632, "c4": 0.53}, {"time": 0.5, "angle": 14.47, "curve": 0.38, "c2": 0.53, "c3": 0.746}, + {"time": 0.6167, "angle": 19.81, "curve": 0.25, "c3": 0.75}, {"time": 0.8667, "angle": 7.07, "curve": 0.247, "c3": 0.632, "c4": 0.53}, {"time": 1, "angle": 14.47} ] }, "body-braid": { "rotate": [ - {"angle": -1.87, "curve": 0.357, "c2": 0.65, "c3": 0.692}, {"time": 0.0333, "angle": -2.68, "curve": 0.25, "c3": 0.75}, - {"time": 0.4, "angle": 22.42, "curve": 0.246, "c3": 0.715, "c4": 0.85}, {"time": 0.75, "angle": -1.87} + {"angle": 10.04, "curve": 0.368, "c2": 0.63, "c3": 0.706}, {"time": 0.05, "angle": 10.92, "curve": 0.25, "c3": 0.75}, {"time": 0.2833, "curve": 0.244, "c3": 0.695, "c4": 0.77}, + {"time": 0.5, "angle": 10.04, "curve": 0.368, "c2": 0.63, "c3": 0.706}, {"time": 0.55, "angle": 10.92, "curve": 0.25, "c3": 0.75}, + {"time": 0.7833, "curve": 0.244, "c3": 0.695, "c4": 0.77}, {"time": 1, "angle": 10.04} ] } }, - "drawOrder": [{"time": 0.6333, "offsets": [{"slot": "leg-front-right", "offset": 5}]}] - }, - "1255318387": { - "slots": {"leg-front-left": {"attachment": [{"time": 0.2, "name": "sumo-leg-front-left-stretch"}, {"time": 0.6667, "name": "sumo-leg-front-left"}]}}, - "bones": { - "@pivot-back": { - "translate": [ - {"y": 8, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "y": -10, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.25, "curve": 0, "c2": 0.1, "c3": 0.85}, - {"time": 0.5833, "y": 80.61, "curve": 0.154, "c4": 0.9}, {"time": 0.75, "y": 8} - ] - }, - "@leg-front-left": { - "translate": [ - {"x": -14.55, "y": -2.39, "curve": 0.374, "c2": 0.33, "c3": 0.72, "c4": 0.68}, {"time": 0.0333, "x": -24.61, "y": -1.31, "curve": "stepped"}, - {"time": 0.1667, "x": -24.61, "y": -1.31, "curve": 0.37, "c2": 0.57, "c3": 0.746}, {"time": 0.3333, "x": 13.45, "y": -27.72, "curve": 0.345, "c2": 0.53, "c3": 0.751}, - {"time": 0.4833, "x": 40.66, "y": -4.9, "curve": 0.255, "c3": 0.673, "c4": 0.49}, {"time": 0.5833, "x": 39.16, "y": 14.5, "curve": 0.565, "c2": 0.41, "c4": 0.82}, - {"time": 0.6667, "x": 1.05, "y": 16.15, "curve": 0.255, "c3": 0.659, "c4": 0.47}, {"time": 0.75, "x": -14.55, "y": -2.39} - ], - "scale": [ - {"x": 0.969, "curve": 0.459, "c2": 0.59, "c3": 0.838}, {"time": 0.0333, "x": 0.961, "curve": 0.154, "c4": 0.9}, {"time": 0.1667, "x": 1.075, "curve": 0, "c2": 0.1, "c3": 0.85}, - {"time": 0.3333, "curve": "stepped"}, {"time": 0.6667, "curve": 0, "c2": 0.09, "c3": 0.589, "c4": 0.67}, {"time": 0.75, "x": 0.969} - ] - }, - "leg-front-left-IK": { - "translate": [ - {"x": 4.88, "y": 20.49, "curve": 0.416, "c2": 0.51, "c3": 0.865}, {"time": 0.0833, "x": 28.75, "y": 34.52, "curve": 0.269, "c2": 0.57, "c3": 0.577}, - {"time": 0.1667, "x": 31.44, "y": 44.28, "curve": 0.461, "c3": 0.543}, {"time": 0.4167, "x": -85.44, "y": 106.83}, - {"time": 0.5167, "x": -87.18, "y": 81.5, "curve": 0.143, "c3": 0.57, "c4": 0.46}, {"time": 0.6667, "x": -21.75, "y": 25.36, "curve": 0, "c2": 0.09, "c3": 0.479, "c4": 0.56}, - {"time": 0.75, "x": 4.88, "y": 20.49} - ] - }, - "leg-back-left-IK": { - "translate": [ - {"x": 17.64, "y": 16.11, "curve": 0.455, "c2": 0.58, "c3": 0.847}, {"time": 0.0333, "curve": 0, "c2": 0.1, "c3": 0.85}, - {"time": 0.2333, "x": -50.37, "curve": 0, "c2": 0.09, "c3": 0.466, "c4": 0.7}, {"time": 0.3, "x": 11.38, "y": 18.2, "curve": 0.177, "c2": 0.44, "c3": 0.617}, - {"time": 0.5333, "x": 56.74, "y": 103.8, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.6667, "x": 71.93, "y": 112.16, "curve": 0.139, "c3": 0.671, "c4": 0.58}, - {"time": 0.75, "x": 17.64, "y": 16.11} - ] - }, - "@shadow": { - "scale": [ - {"curve": 0.313, "c3": 0.699}, {"time": 0.25, "x": 0.94, "y": 0.94, "curve": 0.313, "c3": 0.699}, {"time": 0.4333, "x": 0.8, "y": 0.8, "curve": 0.315, "c4": 0.8}, {"time": 0.75} - ] - }, - "@pivot-main": {"scale": [{"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "y": 0.98, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.25}]}, - "@leg-front-right": { - "translate": [ - {"x": -0.64, "y": -13.16, "curve": 0.313, "c3": 0.654, "c4": 0.45}, {"time": 0.1167, "x": -9.39, "y": -16.39, "curve": 0.346, "c2": 0.44, "c3": 0.699}, - {"time": 0.3, "x": -26.29, "y": 12.52, "curve": 0, "c2": 0.18, "c3": 0.424, "c4": 0.59}, {"time": 0.4167, "x": 7.42, "y": -10.53, "curve": 0.316, "c2": 0.49, "c3": 0.751}, - {"time": 0.5833, "x": 37.87, "y": -4.31, "curve": 0.315, "c4": 0.8}, {"time": 0.75, "x": -0.64, "y": -13.16} - ] - }, - "@leg-back-left": { - "translate": [ - {"x": -4.73, "y": 6.6, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.15, "x": 1.29, "y": -4.22, "curve": 0.44, "c2": 0.55, "c3": 0.858}, - {"time": 0.25, "x": 2.16, "y": 6.49, "curve": 0, "c2": 0.09, "c3": 0.466, "c4": 0.7}, {"time": 0.3, "x": -5.17, "y": 15.67, "curve": 0.218, "c2": 0.39, "c3": 0.738}, - {"time": 0.5333, "x": -14.09, "y": -7.98, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.6667, "x": -12.69, "y": -11.31, "curve": 0.139, "c3": 0.671, "c4": 0.58}, - {"time": 0.75, "x": -4.73, "y": 6.6} - ], - "scale": [{"curve": 0, "c2": 0.1, "c3": 0.457, "c4": 0.54}, {"time": 0.0667, "x": 0.837, "curve": 0.395, "c2": 0.49, "c3": 0.868}, {"time": 0.15}] - }, - "leg-front-right-IK": { - "translate": [ - {"curve": 0.313, "c3": 0.699}, {"time": 0.25, "x": 52.85, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.4833, "x": -85.89, "y": 125.19}, - {"time": 0.5833, "x": -87.57, "y": 110.89, "curve": 0.154, "c4": 0.9}, {"time": 0.75} - ] - }, - "@body3": { - "rotate": [{"angle": -14, "curve": 0.25, "c3": 0.75}, {"time": 0.3667, "curve": 0.25, "c3": 0.75}, {"time": 0.75, "angle": -14}], - "translate": [{"x": 34.51, "y": -19.31, "curve": 0.25, "c3": 0.75}, {"time": 0.3667, "x": 1.97, "y": -12.02, "curve": 0.25, "c3": 0.75}, {"time": 0.75, "x": 34.51, "y": -19.31}] - }, - "@body4": { - "rotate": [{"angle": 9.83, "curve": 0.25, "c3": 0.75}, {"time": 0.3667, "angle": -2.66, "curve": 0.25, "c3": 0.75}, {"time": 0.75, "angle": 9.83}], - "translate": [{"x": 25.02, "y": -10.92, "curve": 0.25, "c3": 0.75}, {"time": 0.3667, "x": 0.59, "y": -3.61, "curve": 0.25, "c3": 0.75}, {"time": 0.75, "x": 25.02, "y": -10.92}] - }, - "@body6": { - "rotate": [{"angle": 15.47, "curve": 0.25, "c3": 0.75}, {"time": 0.3667, "curve": 0.25, "c3": 0.75}, {"time": 0.75, "angle": 15.47}], - "translate": [{"x": -17.06, "y": -1.14, "curve": 0.25, "c3": 0.75}, {"time": 0.3667, "x": -13.78, "y": 7.8, "curve": 0.25, "c3": 0.75}, {"time": 0.75, "x": -17.06, "y": -1.14}] - }, - "body-braid2": {"rotate": [{"angle": 9.33, "curve": 0.25, "c3": 0.75}, {"time": 0.3667, "curve": 0.25, "c3": 0.75}, {"time": 0.75, "angle": 9.33}]}, - "body-braid4": {"rotate": [{"angle": 11.24, "curve": 0.25, "c3": 0.75}, {"time": 0.3667, "curve": 0.25, "c3": 0.75}, {"time": 0.75, "angle": 11.24}]}, - "body-braid3": {"rotate": [{"angle": 17.05, "curve": 0.25, "c3": 0.75}, {"time": 0.3667, "curve": 0.25, "c3": 0.75}, {"time": 0.75, "angle": 17.05}]}, - "@body2": { - "rotate": [{"angle": -10.03, "curve": 0.25, "c3": 0.75}, {"time": 0.3667, "curve": 0.25, "c3": 0.75}, {"time": 0.75, "angle": -10.03}], - "translate": [{"x": 2.83, "y": 6.92, "curve": 0.25, "c3": 0.75}, {"time": 0.3667, "x": 2.96, "y": -18.03, "curve": 0.25, "c3": 0.75}, {"time": 0.75, "x": 2.83, "y": 6.92}] - }, - "body-braid6": {"rotate": [{"angle": 2.13, "curve": 0.25, "c3": 0.75}, {"time": 0.3667, "curve": 0.25, "c3": 0.75}, {"time": 0.75, "angle": 2.13}]}, - "body-braid5": {"rotate": [{"angle": 19.81, "curve": 0.25, "c3": 0.75}, {"time": 0.3667, "angle": 7.07, "curve": 0.25, "c3": 0.75}, {"time": 0.75, "angle": 19.81}]}, - "body-braid": {"rotate": [{"angle": 10.92, "curve": 0.25, "c3": 0.75}, {"time": 0.3667, "curve": 0.25, "c3": 0.75}, {"time": 0.75, "angle": 10.92}]} - } + "events": [{"time": 0.1667, "name": "hit-buff"}] }, - "4163974862": { + "2375931044": { "slots": { - "eyes": { - "attachment": [ - {"time": 0.05, "name": "eyes-angry"}, {"time": 0.3333, "name": "eyes-shut"}, {"time": 0.4333, "name": "eyes-angry"}, {"time": 1.0833, "name": "eyes-shut"}, - {"time": 1.1667, "name": "eyes-angry"}, {"time": 1.2833, "name": "eyes"} - ] - }, - "mouth": {"attachment": [{"time": 0.05, "name": "mouth-bite"}, {"time": 0.4333, "name": "mouth-open"}, {"time": 0.9167, "name": "mouth-bite"}, {"time": 1.2833, "name": "mouth"}]} + "eyes": {"attachment": [{"time": 0.05, "name": "eyes-shut"}, {"time": 0.7667, "name": "eyes"}]}, + "mouth": {"attachment": [{"time": 0.05, "name": "mouth-bite"}, {"time": 0.7667, "name": "mouth"}]} }, "bones": { "@pivot-back": { - "rotate": [{"curve": 0, "c2": 0.3, "c3": 0.546}, {"time": 0.0833, "angle": 6, "curve": 0, "c2": 0.2, "c3": 0.828}, {"time": 0.1667}], - "translate": [ - {"curve": 0, "c2": 0.3, "c3": 0.546}, {"time": 0.0833, "y": 5, "curve": 0.313, "c3": 0.699}, {"time": 0.1667, "y": 220, "curve": 0.617, "c4": 0.6}, {"time": 0.3333, "y": 10}, - {"time": 0.4167, "y": 5, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5833, "y": 420, "curve": 0.852, "c4": 0.1}, {"time": 0.9167}, - {"time": 1.0833, "y": -5, "curve": 0, "c2": 0.17, "c3": 0.461, "c4": 0.62}, {"time": 1.2167, "y": 130, "curve": 0.353, "c2": 0.54, "c3": 0.751}, {"time": 1.3333} - ] - }, - "@leg-front-right": {"translate": [{"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "x": -2.46, "y": -27.89, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.1167}]}, - "@leg-front-left": {"translate": [{"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "x": -1.21, "y": -13.68, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.1167}]}, - "@pivot-center": { "rotate": [ - {"time": 0.1167, "curve": 0.313, "c3": 0.817}, {"time": 0.3333, "angle": 180, "curve": "stepped"}, {"time": 0.4167, "angle": 180, "curve": 0.313, "c3": 0.699}, - {"time": 0.6667, "angle": -1, "curve": 0.837, "c4": 0.2}, {"time": 0.9167, "angle": 178}, {"time": 1.0833, "angle": 180, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1.3333} - ] - }, - "leg-front-left-IK": { + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "angle": 3.5}, {"time": 0.6667, "angle": 4, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.8333, "angle": -1.98, "curve": 0.306, "c3": 0.695}, {"time": 1} + ], "translate": [ - {"time": 0.0833, "curve": 0.344, "c3": 0.715, "c4": 0.45}, {"time": 0.1167, "x": 22.19, "y": 83.99, "curve": 0.589, "c2": 0.35, "c4": 0.75}, - {"time": 0.1667, "x": -165.12, "y": 255.89, "curve": 0.313, "c3": 0.699}, {"time": 0.25, "x": -364.32, "y": 423.37, "curve": 0.474, "c3": 0.714, "c4": 0.56}, - {"time": 0.3, "x": -274.03, "y": 604.29, "curve": 0.306, "c2": 0.39, "c3": 0.628, "c4": 0.74}, {"time": 0.3167, "x": -203.26, "y": 613.41, "curve": 0.287, "c2": 0.62, "c3": 0.612}, - {"time": 0.3333, "x": -115.04, "y": 530.7}, {"time": 0.4167, "x": -102.69, "y": 520.45, "curve": 0, "c2": 0.17, "c3": 0.45, "c4": 0.61}, - {"time": 0.5, "x": -305.1, "y": 703.14, "curve": 0.323, "c2": 0.4, "c3": 0.681, "c4": 0.77}, {"time": 0.55, "x": -336.85, "y": 585.78, "curve": 0.377, "c2": 0.62, "c3": 0.724}, - {"time": 0.5833, "x": -216.34, "y": 437.28}, {"time": 0.6667, "x": 11.35, "y": 419.36}, {"time": 0.75, "x": 26.13, "y": 414.75, "curve": 0.255, "c3": 0.659, "c4": 0.47}, - {"time": 0.8333, "x": 100.23, "y": 427.06, "curve": 0.41, "c2": 0.34, "c3": 0.774, "c4": 0.71}, - {"time": 0.8833, "x": 125.45, "y": 421.05, "curve": 0.427, "c2": 0.37, "c3": 0.767, "c4": 0.71}, {"time": 0.9, "x": 143.46, "y": 449.77, "curve": 0.649, "c2": 0.4, "c4": 0.74}, - {"time": 0.9167, "x": -129.39, "y": 531.23}, {"time": 1.0833, "x": -166.91, "y": 529.28, "curve": 0, "c2": 0.17, "c3": 0.45, "c4": 0.61}, - {"time": 1.15, "x": 157.54, "y": 410.06, "curve": 0.345, "c2": 0.53, "c3": 0.751}, {"time": 1.2167, "x": 137.64, "y": 261.68, "curve": 0, "c2": 0.1, "c3": 0.769}, {"time": 1.3333} + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "y": 2.9}, {"time": 0.6667, "y": 3.91, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.8333, "y": -2.14, "curve": 0.306, "c3": 0.695}, {"time": 1} ] }, - "leg-front-right-IK": { + "@leg-front-right": { "translate": [ - {"time": 0.0833, "curve": 0.344, "c3": 0.715, "c4": 0.45}, {"time": 0.1167, "x": 45.96, "y": 58.25, "curve": 0.589, "c2": 0.35, "c4": 0.75}, - {"time": 0.1667, "x": -111.07, "y": 374.1, "curve": 0.313, "c3": 0.699}, {"time": 0.25, "x": 60.97, "y": 722.95, "curve": 0.474, "c3": 0.714, "c4": 0.56}, - {"time": 0.3, "x": 367.83, "y": 715.56, "curve": 0.306, "c2": 0.39, "c3": 0.628, "c4": 0.74}, {"time": 0.3167, "x": 468.42, "y": 646.75, "curve": 0.287, "c2": 0.62, "c3": 0.612}, - {"time": 0.3333, "x": 542.05, "y": 517.52}, {"time": 0.4167, "x": 553.82, "y": 507.31, "curve": 0, "c2": 0.17, "c3": 0.45, "c4": 0.61}, - {"time": 0.5, "x": 285.49, "y": 934.13, "curve": 0.323, "c2": 0.4, "c3": 0.681, "c4": 0.77}, {"time": 0.55, "x": -20.04, "y": 918.42, "curve": 0.377, "c2": 0.62, "c3": 0.724}, - {"time": 0.5833, "x": -78.72, "y": 674.67, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.6667, "x": 25.22, "y": 422.18}, - {"time": 0.75, "x": 10.31, "y": 400.68, "curve": 0.255, "c3": 0.659, "c4": 0.47}, {"time": 0.8333, "x": 73, "y": 312.24, "curve": 0.41, "c2": 0.34, "c3": 0.774, "c4": 0.71}, - {"time": 0.8833, "x": 225.18, "y": 186.58, "curve": 0.427, "c2": 0.37, "c3": 0.767, "c4": 0.71}, {"time": 0.9, "x": 378.84, "y": 152.84, "curve": 0.649, "c2": 0.4, "c4": 0.74}, - {"time": 0.9167, "x": 502.23, "y": 516.62}, {"time": 1.0833, "x": 469.43, "y": 521.94, "curve": 0, "c2": 0.17, "c3": 0.45, "c4": 0.61}, - {"time": 1.15, "x": 550, "y": 107.14, "curve": 0.345, "c2": 0.53, "c3": 0.751}, {"time": 1.2167, "x": 250.59, "y": 12.79, "curve": 0.313, "c3": 0.699}, {"time": 1.3333} + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": -0.75, "y": -16.02}, {"time": 0.6667, "x": -1.01, "y": -19.02, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.8333, "x": -0.43, "y": 9.97, "curve": 0.306, "c3": 0.695}, {"time": 1} ] }, - "leg-back-left-IK": { + "@leg-front-left": { "translate": [ - {"time": 0.0833, "curve": 0.344, "c3": 0.715, "c4": 0.45}, {"time": 0.1167, "x": 23.75, "y": 96.58, "curve": 0.589, "c2": 0.35, "c4": 0.75}, - {"time": 0.1667, "x": -126.55, "y": 141.22, "curve": 0.313, "c3": 0.699}, {"time": 0.25, "x": -571.89, "y": 258.37, "curve": 0.474, "c3": 0.714, "c4": 0.56}, - {"time": 0.3, "x": -602.89, "y": 515.39, "curve": 0.306, "c2": 0.39, "c3": 0.628, "c4": 0.74}, {"time": 0.3167, "x": -538.79, "y": 573.94, "curve": 0.287, "c2": 0.62, "c3": 0.612}, - {"time": 0.3333, "x": -474.1, "y": 527.44}, {"time": 0.4167, "x": -458.69, "y": 526.95, "curve": 0, "c2": 0.6, "c3": 0.237}, - {"time": 0.5, "x": -624.02, "y": 521.86, "curve": 0.323, "c2": 0.4, "c3": 0.681, "c4": 0.77}, {"time": 0.55, "x": -470.84, "y": 346.72, "curve": 0.377, "c2": 0.62, "c3": 0.724}, - {"time": 0.5833, "x": -254.14, "y": 306.12}, {"time": 0.6667, "x": 17.58, "y": 427.51}, {"time": 0.75, "x": 20.37, "y": 430.65, "curve": 0.255, "c3": 0.659, "c4": 0.47}, - {"time": 0.8333, "x": 84.18, "y": 482.77, "curve": 0.41, "c2": 0.34, "c3": 0.774, "c4": 0.71}, - {"time": 0.8833, "x": 65.79, "y": 538.52, "curve": 0.427, "c2": 0.37, "c3": 0.767, "c4": 0.71}, {"time": 0.9, "x": 34.2, "y": 602.88, "curve": 0.649, "c2": 0.4, "c4": 0.74}, - {"time": 0.9167, "x": -511.21, "y": 519.18}, {"time": 1.0833, "x": -529.98, "y": 503.54, "curve": 0, "c2": 0.17, "c3": 0.45, "c4": 0.61}, - {"time": 1.15, "x": -49.15, "y": 566.82, "curve": 0.345, "c2": 0.53, "c3": 0.751}, {"time": 1.2167, "x": 72.06, "y": 381.52, "curve": 0, "c2": 0.1, "c3": 0.769}, {"time": 1.3333} + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": -0.36, "y": -7.76}, {"time": 0.6667, "x": -0.47, "y": -8.85, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.8333, "x": -0.23, "y": 5.14, "curve": 0.306, "c3": 0.695}, {"time": 1} ] }, "tail": { "rotate": [ - {"curve": 0, "c2": 0.3, "c3": 0.546}, {"time": 0.0833, "angle": 19.35, "curve": 0.313, "c3": 0.699}, {"time": 0.1667, "angle": -22.95, "curve": 0.617, "c4": 0.6}, - {"time": 0.3333, "angle": 22.22}, {"time": 0.4167, "angle": 24.08, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5833, "angle": -30.94, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.6667, "angle": 18.1, "curve": 0.313, "c3": 0.699}, {"time": 0.8333, "angle": -20.52, "curve": 0.464, "c4": 0.7}, {"time": 0.9167, "angle": 16.35}, - {"time": 1.0833, "angle": 20.35, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1.2167, "angle": -9.93, "curve": 0.161, "c3": 0.854}, {"time": 1.3333} - ] - }, - "@shadow": { - "scale": [ - {"curve": 0, "c2": 0.3, "c3": 0.546}, {"time": 0.0833, "x": 1.1, "y": 1.1, "curve": 0.313, "c3": 0.699}, {"time": 0.1667, "x": 0.92, "y": 0.92, "curve": 0.617, "c4": 0.6}, - {"time": 0.3333, "x": 1.12, "y": 1.12}, {"time": 0.4167, "x": 1.16, "y": 1.16, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5833, "x": 0.86, "y": 0.86, "curve": 0.752, "c4": 0.2}, - {"time": 0.9167, "x": 1.12, "y": 1.12}, {"time": 1.0833, "x": 1.16, "y": 1.16, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1.3333} + {"curve": 0, "c2": 0.3, "c3": 0.54}, {"time": 0.1667, "angle": -17.97, "curve": 0.306, "c3": 0.695}, {"time": 0.4167, "angle": -9.96, "curve": 0.306, "c3": 0.695}, + {"time": 0.6667, "angle": -19.79, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.8333, "angle": 6.14, "curve": 0.306, "c3": 0.695}, {"time": 1} ] }, - "@pivot-main": {"scale": [{"time": 0.3333, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.4167, "y": 0.9, "curve": 0, "c2": 0.3, "c3": 0.546}, {"time": 0.5}]}, "@body3": { "rotate": [ - {"angle": -1.2, "curve": 0.369, "c2": 0.63, "c3": 0.707}, {"time": 0.0333, "curve": 0.25, "c3": 0.75}, {"time": 0.1833, "angle": -3.77, "curve": 0.25, "c3": 0.75}, - {"time": 0.55, "angle": -14, "curve": 0.25, "c3": 0.75}, {"time": 0.9333, "angle": -3.77, "curve": 0.25, "c3": 0.75}, - {"time": 1.15, "angle": -14, "curve": 0.244, "c3": 0.693, "c4": 0.76}, {"time": 1.3333, "angle": -1.2} + {"angle": -11.21, "curve": 0.364, "c2": 0.47, "c3": 0.704, "c4": 0.84}, {"time": 0.05, "angle": -13.65, "curve": 0.354, "c2": 0.65, "c3": 0.688}, + {"time": 0.0667, "angle": -14, "curve": 0.25, "c3": 0.75}, {"time": 0.3167, "curve": 0.242, "c3": 0.662, "c4": 0.65}, + {"time": 0.5, "angle": -11.21, "curve": 0.364, "c2": 0.47, "c3": 0.704, "c4": 0.84}, {"time": 0.55, "angle": -13.65, "curve": 0.354, "c2": 0.65, "c3": 0.688}, + {"time": 0.5667, "angle": -14, "curve": 0.25, "c3": 0.75}, {"time": 0.8167, "curve": 0.242, "c3": 0.662, "c4": 0.65}, {"time": 1, "angle": -11.21} ], "translate": [ - {"time": 0.15, "curve": 0.25, "c3": 0.75}, {"time": 0.5167, "x": 45.36, "y": -33.56, "curve": 0.25, "c3": 0.75}, {"time": 0.9, "curve": 0.25, "c3": 0.75}, - {"time": 1.1167, "x": 55.89, "y": -22.18, "curve": 0.25, "c3": 0.75}, {"time": 1.3333} + {"x": 30.45, "y": -18.4, "curve": 0.374, "c2": 0.62, "c3": 0.715}, {"time": 0.05, "x": 34.51, "y": -19.31, "curve": 0.25, "c3": 0.75}, + {"time": 0.3, "x": 1.97, "y": -12.02, "curve": 0.243, "c3": 0.681, "c4": 0.72}, {"time": 0.5, "x": 30.45, "y": -18.4, "curve": 0.374, "c2": 0.62, "c3": 0.715}, + {"time": 0.55, "x": 34.51, "y": -19.31, "curve": 0.25, "c3": 0.75}, {"time": 0.8, "x": 1.97, "y": -12.02, "curve": 0.243, "c3": 0.681, "c4": 0.72}, {"time": 1, "x": 30.45, "y": -18.4} ] }, "@body4": { "rotate": [ - {"angle": 1.11, "curve": 0.378, "c2": 0.61, "c3": 0.721}, {"time": 0.05, "curve": 0.25, "c3": 0.75}, {"time": 0.2, "angle": -15.35, "curve": 0.25, "c3": 0.75}, - {"time": 0.5667, "angle": 14.26, "curve": 0.25, "c3": 0.75}, {"time": 0.95, "angle": -15.35, "curve": 0.25, "c3": 0.75}, - {"time": 1.1667, "angle": 6.8, "curve": 0.242, "c3": 0.671, "c4": 0.68}, {"time": 1.3333, "angle": 1.11} + {"angle": 4.21, "curve": 0.339, "c2": 0.35, "c3": 0.676, "c4": 0.69}, {"time": 0.05, "angle": 6.54, "curve": 0.382, "c2": 0.58, "c3": 0.733}, + {"time": 0.1167, "angle": 9.83, "curve": 0.25, "c3": 0.75}, {"time": 0.3667, "angle": -2.66, "curve": 0.248, "c3": 0.629, "c4": 0.52}, + {"time": 0.5, "angle": 4.21, "curve": 0.339, "c2": 0.35, "c3": 0.676, "c4": 0.69}, {"time": 0.55, "angle": 6.54, "curve": 0.382, "c2": 0.58, "c3": 0.733}, + {"time": 0.6167, "angle": 9.83, "curve": 0.25, "c3": 0.75}, {"time": 0.8667, "angle": -2.66, "curve": 0.248, "c3": 0.629, "c4": 0.52}, {"time": 1, "angle": 4.21} ], "translate": [ - {"curve": 0.25, "c3": 0.75}, {"time": 0.15, "x": -1.59, "y": 23.93, "curve": 0.25, "c3": 0.75}, {"time": 0.5167, "x": 6.55, "y": -29.78, "curve": 0.25, "c3": 0.75}, - {"time": 0.9, "x": -1.59, "y": 23.93, "curve": 0.25, "c3": 0.75}, {"time": 1.1167, "x": 33.54, "y": -3.13, "curve": 0.25, "c3": 0.75}, {"time": 1.3333} + {"x": 23.06, "y": -10.33, "curve": 0.368, "c2": 0.63, "c3": 0.706}, {"time": 0.05, "x": 25.02, "y": -10.92, "curve": 0.25, "c3": 0.75}, + {"time": 0.2833, "x": 0.59, "y": -3.61, "curve": 0.244, "c3": 0.695, "c4": 0.77}, {"time": 0.5, "x": 23.06, "y": -10.33, "curve": 0.368, "c2": 0.63, "c3": 0.706}, + {"time": 0.55, "x": 25.02, "y": -10.92, "curve": 0.25, "c3": 0.75}, {"time": 0.7833, "x": 0.59, "y": -3.61, "curve": 0.244, "c3": 0.695, "c4": 0.77}, {"time": 1, "x": 23.06, "y": -10.33} ] }, "@body6": { "rotate": [ - {"angle": 13.7, "curve": 0.354, "c2": 0.4, "c3": 0.702, "c4": 0.79}, {"time": 0.0667, "angle": 2.66, "curve": 0.369, "c2": 0.63, "c3": 0.707}, {"time": 0.1, "curve": 0.25, "c3": 0.75}, - {"time": 0.25, "angle": -5.24, "curve": 0.25, "c3": 0.75}, {"time": 0.6167, "angle": 25.77, "curve": 0.25, "c3": 0.75}, {"time": 1, "angle": -5.24, "curve": 0.25, "c3": 0.75}, - {"time": 1.2167, "angle": 30.87, "curve": 0.248, "c3": 0.629, "c4": 0.52}, {"time": 1.3333, "angle": 13.7} + {"angle": 4.59, "curve": 0.331, "c2": 0.33, "c3": 0.694, "c4": 0.75}, {"time": 0.1167, "angle": 13.13, "curve": 0.377, "c2": 0.61, "c3": 0.719}, + {"time": 0.1667, "angle": 15.47, "curve": 0.25, "c3": 0.75}, {"time": 0.4167, "curve": 0.264, "c3": 0.618, "c4": 0.43}, + {"time": 0.5, "angle": 4.59, "curve": 0.331, "c2": 0.33, "c3": 0.694, "c4": 0.75}, {"time": 0.6167, "angle": 13.13, "curve": 0.377, "c2": 0.61, "c3": 0.719}, + {"time": 0.6667, "angle": 15.47, "curve": 0.25, "c3": 0.75}, {"time": 0.9167, "curve": 0.264, "c3": 0.618, "c4": 0.43}, {"time": 1, "angle": 4.59} ], "translate": [ - {"x": -12.16, "y": -6.65, "curve": 0.382, "c2": 0.58, "c3": 0.732}, {"time": 0.0667, "curve": 0.25, "c3": 0.75}, {"time": 0.2167, "x": 5.81, "y": -4.07, "curve": 0.25, "c3": 0.75}, - {"time": 0.5833, "x": -70.52, "y": 35.61, "curve": 0.25, "c3": 0.75}, {"time": 0.9667, "x": 5.81, "y": -4.07, "curve": 0.25, "c3": 0.75}, - {"time": 1.1833, "x": -48.3, "y": -26.4, "curve": 0.243, "c3": 0.654, "c4": 0.62}, {"time": 1.3333, "x": -12.16, "y": -6.65} + {"x": -15.68, "y": 2.61, "curve": 0.38, "c2": 0.53, "c3": 0.746}, {"time": 0.1167, "x": -17.06, "y": -1.14, "curve": 0.25, "c3": 0.75}, + {"time": 0.3667, "x": -13.78, "y": 7.8, "curve": 0.247, "c3": 0.632, "c4": 0.53}, {"time": 0.5, "x": -15.68, "y": 2.61, "curve": 0.38, "c2": 0.53, "c3": 0.746}, + {"time": 0.6167, "x": -17.06, "y": -1.14, "curve": 0.25, "c3": 0.75}, {"time": 0.8667, "x": -13.78, "y": 7.8, "curve": 0.247, "c3": 0.632, "c4": 0.53}, + {"time": 1, "x": -15.68, "y": 2.61} ] }, "body-braid2": { "rotate": [ - {"curve": 0.25, "c3": 0.75}, {"time": 0.15, "angle": -1.43, "curve": 0.25, "c3": 0.75}, {"time": 0.5167, "angle": 20.83, "curve": 0.25, "c3": 0.75}, - {"time": 0.9, "angle": -1.43, "curve": 0.25, "c3": 0.75}, {"time": 1.1167, "angle": 20.83, "curve": 0.25, "c3": 0.75}, {"time": 1.3333} + {"angle": 9.33, "curve": 0.25, "c3": 0.75}, {"time": 0.25, "curve": 0.25, "c3": 0.75}, {"time": 0.5, "angle": 9.33, "curve": 0.25, "c3": 0.75}, {"time": 0.75, "curve": 0.25, "c3": 0.75}, + {"time": 1, "angle": 9.33} ] }, "body-braid4": { "rotate": [ - {"angle": 12.33, "curve": 0.378, "c2": 0.52, "c3": 0.747}, {"time": 0.1, "curve": 0.25, "c3": 0.75}, {"time": 0.25, "angle": -11.53, "curve": 0.25, "c3": 0.75}, - {"time": 0.6167, "angle": 27.46, "curve": 0.25, "c3": 0.75}, {"time": 1, "angle": -11.53, "curve": 0.25, "c3": 0.75}, - {"time": 1.2167, "angle": 27.46, "curve": 0.248, "c3": 0.629, "c4": 0.52}, {"time": 1.3333, "angle": 12.33} + {"angle": 5.44, "curve": 0.374, "c2": 0.49, "c3": 0.751}, {"time": 0.1333, "angle": 11.24, "curve": 0.25, "c3": 0.75}, {"time": 0.3833, "curve": 0.251, "c3": 0.624, "c4": 0.49}, + {"time": 0.5, "angle": 5.44, "curve": 0.374, "c2": 0.49, "c3": 0.751}, {"time": 0.6333, "angle": 11.24, "curve": 0.25, "c3": 0.75}, + {"time": 0.8833, "curve": 0.251, "c3": 0.624, "c4": 0.49}, {"time": 1, "angle": 5.44} ] }, "body-braid3": { "rotate": [ - {"angle": 2.86, "curve": 0.369, "c2": 0.63, "c3": 0.707}, {"time": 0.0333, "curve": 0.25, "c3": 0.75}, {"time": 0.1833, "angle": -8.3, "curve": 0.25, "c3": 0.75}, - {"time": 0.55, "angle": 33.27, "curve": 0.25, "c3": 0.75}, {"time": 0.9333, "angle": -8.3, "curve": 0.25, "c3": 0.75}, - {"time": 1.15, "angle": 33.27, "curve": 0.244, "c3": 0.693, "c4": 0.76}, {"time": 1.3333, "angle": 2.86} + {"angle": 14.47, "curve": 0.377, "c2": 0.61, "c3": 0.719}, {"time": 0.0667, "angle": 17.05, "curve": 0.25, "c3": 0.75}, {"time": 0.3, "curve": 0.243, "c3": 0.674, "c4": 0.69}, + {"time": 0.5, "angle": 14.47, "curve": 0.377, "c2": 0.61, "c3": 0.719}, {"time": 0.5667, "angle": 17.05, "curve": 0.25, "c3": 0.75}, + {"time": 0.8, "curve": 0.243, "c3": 0.674, "c4": 0.69}, {"time": 1, "angle": 14.47} ] }, "@body2": { "rotate": [ - {"angle": -4.72, "curve": 0.382, "c2": 0.58, "c3": 0.732}, {"time": 0.0667, "curve": 0.25, "c3": 0.75}, {"time": 0.2167, "angle": 7.45, "curve": 0.25, "c3": 0.75}, - {"time": 0.5833, "angle": -18.73, "curve": 0.25, "c3": 0.75}, {"time": 0.9667, "angle": 7.45, "curve": 0.25, "c3": 0.75}, - {"time": 1.1833, "angle": -18.73, "curve": 0.243, "c3": 0.654, "c4": 0.62}, {"time": 1.3333, "angle": -4.72} + {"angle": -3.3, "curve": 0.338, "c2": 0.35, "c3": 0.704, "c4": 0.79}, {"time": 0.1167, "angle": -9.03, "curve": 0.372, "c2": 0.62, "c3": 0.71}, + {"time": 0.1667, "angle": -10.03, "curve": 0.25, "c3": 0.75}, {"time": 0.4167, "curve": 0.261, "c3": 0.618, "c4": 0.44}, + {"time": 0.5, "angle": -3.3, "curve": 0.338, "c2": 0.35, "c3": 0.704, "c4": 0.79}, {"time": 0.6167, "angle": -9.03, "curve": 0.372, "c2": 0.62, "c3": 0.71}, + {"time": 0.6667, "angle": -10.03, "curve": 0.25, "c3": 0.75}, {"time": 0.9167, "curve": 0.261, "c3": 0.618, "c4": 0.44}, {"time": 1, "angle": -3.3} ], "translate": [ - {"curve": 0.25, "c3": 0.75}, {"time": 0.15, "x": -0.08, "y": 1.15, "curve": 0.25, "c3": 0.75}, {"time": 0.5167, "x": 4.59, "y": -41.28, "curve": 0.25, "c3": 0.75}, - {"time": 0.9, "x": -0.08, "y": 1.15, "curve": 0.25, "c3": 0.75}, {"time": 1.1167, "x": 15.54, "y": -40.86, "curve": 0.25, "c3": 0.75}, {"time": 1.3333} + {"x": 2.89, "y": -4.35, "curve": 0.378, "c2": 0.52, "c3": 0.748}, {"time": 0.1167, "x": 2.83, "y": 6.92, "curve": 0.25, "c3": 0.75}, + {"time": 0.3667, "x": 2.96, "y": -18.03, "curve": 0.248, "c3": 0.629, "c4": 0.52}, {"time": 0.5, "x": 2.89, "y": -4.35, "curve": 0.378, "c2": 0.52, "c3": 0.748}, + {"time": 0.6167, "x": 2.83, "y": 6.92, "curve": 0.25, "c3": 0.75}, {"time": 0.8667, "x": 2.96, "y": -18.03, "curve": 0.248, "c3": 0.629, "c4": 0.52}, {"time": 1, "x": 2.89, "y": -4.35} ] }, "body-braid6": { "rotate": [ - {"angle": 13.73, "curve": 0.346, "c2": 0.38, "c3": 0.757}, {"time": 0.15, "curve": 0.25, "c3": 0.75}, {"time": 0.3, "angle": -20.17, "curve": 0.25, "c3": 0.75}, - {"time": 0.6667, "angle": 18.35, "curve": 0.25, "c3": 0.75}, {"time": 1.05, "angle": -20.17, "curve": 0.25, "c3": 0.75}, - {"time": 1.2667, "angle": 18.35, "curve": 0.268, "c3": 0.618, "c4": 0.42}, {"time": 1.3333, "angle": 13.73} + {"angle": 0.21, "curve": 0.312, "c2": 0.25, "c3": 0.757}, {"time": 0.2167, "angle": 2.13, "curve": 0.25, "c3": 0.75}, {"time": 0.4667, "curve": 0.29, "c3": 0.628, "c4": 0.38}, + {"time": 0.5, "angle": 0.21, "curve": 0.312, "c2": 0.25, "c3": 0.757}, {"time": 0.7167, "angle": 2.13, "curve": 0.25, "c3": 0.75}, + {"time": 0.9667, "curve": 0.29, "c3": 0.628, "c4": 0.38}, {"time": 1, "angle": 0.21} ] }, "body-braid5": { "rotate": [ - {"angle": 9.07, "curve": 0.382, "c2": 0.58, "c3": 0.732}, {"time": 0.0667, "curve": 0.25, "c3": 0.75}, {"time": 0.2167, "angle": -7.27, "curve": 0.25, "c3": 0.75}, - {"time": 0.5833, "angle": 36.02, "curve": 0.25, "c3": 0.75}, {"time": 0.9667, "angle": -7.27, "curve": 0.25, "c3": 0.75}, - {"time": 1.1833, "angle": 36.02, "curve": 0.243, "c3": 0.654, "c4": 0.62}, {"time": 1.3333, "angle": 9.07} + {"angle": 14.47, "curve": 0.38, "c2": 0.53, "c3": 0.746}, {"time": 0.1167, "angle": 19.81, "curve": 0.25, "c3": 0.75}, + {"time": 0.3667, "angle": 7.07, "curve": 0.247, "c3": 0.632, "c4": 0.53}, {"time": 0.5, "angle": 14.47, "curve": 0.38, "c2": 0.53, "c3": 0.746}, + {"time": 0.6167, "angle": 19.81, "curve": 0.25, "c3": 0.75}, {"time": 0.8667, "angle": 7.07, "curve": 0.247, "c3": 0.632, "c4": 0.53}, {"time": 1, "angle": 14.47} ] }, "body-braid": { "rotate": [ - {"angle": 0.59, "curve": 0.355, "c2": 0.65, "c3": 0.689}, {"time": 0.0167, "curve": 0.25, "c3": 0.75}, {"time": 0.1667, "angle": -2.68, "curve": 0.25, "c3": 0.75}, - {"time": 0.5333, "angle": 22.42, "curve": 0.25, "c3": 0.75}, {"time": 0.9167, "angle": -2.68, "curve": 0.25, "c3": 0.75}, - {"time": 1.1333, "angle": 22.42, "curve": 0.246, "c3": 0.719, "c4": 0.87}, {"time": 1.3333, "angle": 0.59} + {"angle": 10.04, "curve": 0.368, "c2": 0.63, "c3": 0.706}, {"time": 0.05, "angle": 10.92, "curve": 0.25, "c3": 0.75}, {"time": 0.2833, "curve": 0.244, "c3": 0.695, "c4": 0.77}, + {"time": 0.5, "angle": 10.04, "curve": 0.368, "c2": 0.63, "c3": 0.706}, {"time": 0.55, "angle": 10.92, "curve": 0.25, "c3": 0.75}, + {"time": 0.7833, "curve": 0.244, "c3": 0.695, "c4": 0.77}, {"time": 1, "angle": 10.04} ] } }, - "events": [{"time": 0.4333, "name": "jump"}, {"time": 0.8333, "name": "start-attack"}, {"time": 0.9167, "name": "hit"}] + "events": [{"time": 0.1667, "name": "hit-buff"}] }, - "2481023416": { - "slots": {"eyes": {"attachment": [{"name": "eyes-shut"}]}}, + "576133560": { + "slots": { + "eyes": {"attachment": [{"time": 0.0167, "name": "eyes-shut"}, {"time": 0.1833, "name": "eyes-angry"}, {"time": 0.4, "name": "eyes"}]}, + "mouth": {"attachment": [{"time": 0.0167, "name": "mouth-bite"}, {"time": 0.4, "name": "mouth"}]} + }, "bones": { - "@pivot-back": {"translate": [{"curve": 0.384, "c3": 0.312}, {"time": 0.6667, "y": 22.76, "curve": 0.384, "c3": 0.306}, {"time": 1.3333}]}, - "tail": { - "rotate": [ - {"curve": 0, "c2": 0.05, "c3": 0.658}, {"time": 0.3333, "angle": -5.21, "curve": 0.304, "c3": 0.689}, {"time": 0.7333, "angle": -0.27}, - {"time": 1.05, "angle": 1.75, "curve": 0.234, "c4": 0.9}, {"time": 1.3333} - ] - }, - "@shadow": {"scale": [{"curve": 0.387, "c3": 0.314}, {"time": 0.6667, "x": 0.9, "y": 0.9, "curve": 0.387, "c3": 0.314}, {"time": 1.3333}]}, - "@body3": { + "@pivot-back": { "rotate": [ - {"angle": -11.21, "curve": 0.364, "c2": 0.47, "c3": 0.704, "c4": 0.84}, {"time": 0.1333, "angle": -13.65, "curve": 0.354, "c2": 0.65, "c3": 0.688}, - {"time": 0.1833, "angle": -14, "curve": 0.25, "c3": 0.75}, {"time": 0.8333, "curve": 0.242, "c3": 0.662, "c4": 0.65}, {"time": 1.3333, "angle": -11.21} + {"curve": "stepped"}, {"time": 0.0167, "angle": -20}, {"time": 0.1667, "angle": -22, "curve": 0.464, "c4": 0.7}, {"time": 0.3167, "angle": 5.2, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.4167} ], + "translate": [{"curve": "stepped"}, {"time": 0.0167, "x": 75, "y": -4.42}, {"time": 0.1667, "x": 80, "y": -7.47, "curve": 0.464, "c4": 0.7}, {"time": 0.3167}] + }, + "@leg-front-left": {"translate": [{"time": 0.1667, "curve": 0.62, "c4": 0.3}, {"time": 0.3167, "x": -1.1, "y": -14.87, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.4167}]}, + "@shadow": { "translate": [ - {"x": 30.45, "y": -18.4, "curve": 0.374, "c2": 0.62, "c3": 0.715}, {"time": 0.1333, "x": 34.51, "y": -19.31, "curve": 0.25, "c3": 0.75}, - {"time": 0.7833, "x": 1.97, "y": -12.02, "curve": 0.243, "c3": 0.681, "c4": 0.72}, {"time": 1.3333, "x": 30.45, "y": -18.4} + {"curve": "stepped"}, {"time": 0.0167, "x": 70.3, "curve": "stepped"}, {"time": 0.1667, "x": 70.3, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.3167, "x": 12.49, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.4167} + ], + "scale": [ + {"curve": "stepped"}, {"time": 0.0167, "x": 0.98, "y": 0.98}, {"time": 0.1667, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.3167, "x": 1.08, "y": 1.08, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.4167} ] }, - "@body4": { - "rotate": [ - {"angle": 4.21, "curve": 0.339, "c2": 0.35, "c3": 0.676, "c4": 0.69}, {"time": 0.1, "angle": 6.54, "curve": 0.382, "c2": 0.58, "c3": 0.733}, - {"time": 0.3167, "angle": 9.83, "curve": 0.25, "c3": 0.75}, {"time": 0.9667, "angle": -2.66, "curve": 0.248, "c3": 0.629, "c4": 0.52}, {"time": 1.3333, "angle": 4.21} - ], + "leg-back-left-IK": { "translate": [ - {"x": 23.06, "y": -10.33, "curve": 0.368, "c2": 0.63, "c3": 0.706}, {"time": 0.1, "x": 25.02, "y": -10.92, "curve": 0.25, "c3": 0.75}, - {"time": 0.75, "x": 0.59, "y": -3.61, "curve": 0.244, "c3": 0.695, "c4": 0.77}, {"time": 1.3333, "x": 23.06, "y": -10.33} + {"curve": "stepped"}, {"time": 0.0167, "x": -5.88, "y": 0.9, "curve": "stepped"}, {"time": 0.1667, "x": -5.88, "y": 0.9, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.3167, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.3695, "x": -5.88, "y": 0.9} ] }, - "@body6": { + "@leg-back-left": {"translate": [{"curve": "stepped"}, {"time": 0.0167, "x": -2.22, "y": 7.86}, {"time": 0.1667, "x": -2.63, "y": 8.92, "curve": 0.306, "c4": 0.8}, {"time": 0.3167}]}, + "@pivot-main": {"translate": [{"curve": "stepped"}, {"time": 0.0167, "x": 20, "curve": "stepped"}, {"time": 0.3167, "x": 20, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.4167}]}, + "@leg-front-right": {"translate": [{"time": 0.1667, "curve": 0.62, "c4": 0.3}, {"time": 0.3167, "x": -2.11, "y": -28.46, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.4167}]}, + "tail": { "rotate": [ - {"angle": 4.59, "curve": 0.331, "c2": 0.33, "c3": 0.694, "c4": 0.75}, {"time": 0.3, "angle": 13.13, "curve": 0.377, "c2": 0.61, "c3": 0.719}, - {"time": 0.45, "angle": 15.47, "curve": 0.25, "c3": 0.75}, {"time": 1.1, "curve": 0.264, "c3": 0.618, "c4": 0.43}, {"time": 1.3333, "angle": 4.59} - ], - "translate": [ - {"x": -15.68, "y": 2.61, "curve": 0.38, "c2": 0.53, "c3": 0.746}, {"time": 0.3, "x": -17.06, "y": -1.14, "curve": 0.25, "c3": 0.75}, - {"time": 0.95, "x": -13.78, "y": 7.8, "curve": 0.247, "c3": 0.632, "c4": 0.53}, {"time": 1.3333, "x": -15.68, "y": 2.61} + {"curve": "stepped"}, {"time": 0.0167, "angle": 19}, {"time": 0.1667, "angle": 23.91, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.3167, "angle": -21.75, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.4167} ] }, - "body-braid2": {"rotate": [{"angle": 9.33, "curve": 0.25, "c3": 0.75}, {"time": 0.65, "curve": 0.25, "c3": 0.75}, {"time": 1.3333, "angle": 9.33}]}, - "body-braid4": { - "rotate": [ - {"angle": 5.44, "curve": 0.374, "c2": 0.49, "c3": 0.751}, {"time": 0.35, "angle": 11.24, "curve": 0.25, "c3": 0.75}, {"time": 1, "curve": 0.251, "c3": 0.624, "c4": 0.49}, - {"time": 1.3333, "angle": 5.44} + "leg-front-right-IK": { + "translate": [ + {"curve": "stepped"}, {"time": 0.0167, "x": 49.22, "y": 169.28}, {"time": 0.0833, "x": -4.05, "y": 205.79}, {"time": 0.1667, "x": 52, "y": 184.62, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.3167} ] }, - "body-braid3": { - "rotate": [ - {"angle": 14.47, "curve": 0.377, "c2": 0.61, "c3": 0.719}, {"time": 0.15, "angle": 17.05, "curve": 0.25, "c3": 0.75}, {"time": 0.8, "curve": 0.243, "c3": 0.674, "c4": 0.69}, - {"time": 1.3333, "angle": 14.47} + "leg-front-left-IK": { + "translate": [ + {"curve": "stepped"}, {"time": 0.0167, "x": -29.76, "y": 76.11}, {"time": 0.0833, "x": 8.1, "y": 65.84}, {"time": 0.1667, "x": -35.9, "y": 81.82, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.3167} ] }, - "@body2": { + "@body3": { "rotate": [ - {"angle": -3.3, "curve": 0.338, "c2": 0.35, "c3": 0.704, "c4": 0.79}, {"time": 0.3167, "angle": -9.03, "curve": 0.372, "c2": 0.62, "c3": 0.71}, - {"time": 0.4333, "angle": -10.03, "curve": 0.25, "c3": 0.75}, {"time": 1.0833, "curve": 0.261, "c3": 0.618, "c4": 0.44}, {"time": 1.3333, "angle": -3.3} + {"angle": -6.22, "curve": 0.384, "c2": 0.6, "c3": 0.719}, {"time": 0.05, "angle": -3.77, "curve": 0.144, "c3": 0.557}, + {"time": 0.25, "angle": -14, "curve": 0.415, "c3": 0.759, "c4": 0.68}, {"time": 0.4167, "angle": -6.22} + ], + "translate": [{"curve": 0.144, "c3": 0.557}, {"time": 0.2, "x": 45.36, "y": -33.56, "curve": 0.455, "c3": 0.807}, {"time": 0.4167}] + }, + "@body4": { + "rotate": [ + {"angle": -8.24, "curve": 0.384, "c2": 0.6, "c3": 0.719}, {"time": 0.05, "angle": -15.35, "curve": 0.144, "c3": 0.557}, + {"time": 0.25, "angle": 14.26, "curve": 0.415, "c3": 0.759, "c4": 0.68}, {"time": 0.4167, "angle": -8.24} + ], + "translate": [{"x": -1.59, "y": 23.93, "curve": 0.144, "c3": 0.557}, {"time": 0.2, "x": 6.55, "y": -29.78, "curve": 0.455, "c3": 0.807}, {"time": 0.4167, "x": -1.59, "y": 23.93}] + }, + "@body6": { + "rotate": [ + {"angle": 15.78, "curve": 0.366, "c2": 0.35, "c3": 0.7, "c4": 0.7}, {"time": 0.05, "angle": 5.84, "curve": 0.396, "c2": 0.58, "c3": 0.732}, + {"time": 0.1167, "angle": -5.24, "curve": 0.144, "c3": 0.557}, {"time": 0.3167, "angle": 25.77, "curve": 0.376, "c3": 0.712, "c4": 0.48}, {"time": 0.4167, "angle": 15.78} ], "translate": [ - {"x": 2.89, "y": -4.35, "curve": 0.378, "c2": 0.52, "c3": 0.748}, {"time": 0.3167, "x": 2.83, "y": 6.92, "curve": 0.25, "c3": 0.75}, - {"time": 0.9667, "x": 2.96, "y": -18.03, "curve": 0.248, "c3": 0.629, "c4": 0.52}, {"time": 1.3333, "x": 2.89, "y": -4.35} + {"x": -12.53, "y": 5.46, "curve": 0.384, "c2": 0.6, "c3": 0.719}, {"time": 0.05, "x": 5.81, "y": -4.07, "curve": 0.144, "c3": 0.557}, + {"time": 0.25, "x": -70.52, "y": 35.61, "curve": 0.415, "c3": 0.759, "c4": 0.68}, {"time": 0.4167, "x": -12.53, "y": 5.46} ] }, - "body-braid6": { + "body-braid2": {"rotate": [{"angle": -1.43, "curve": 0.144, "c3": 0.557}, {"time": 0.2, "angle": 20.83, "curve": 0.455, "c3": 0.807}, {"time": 0.4167, "angle": -1.43}]}, + "body-braid4": { "rotate": [ - {"angle": 0.21, "curve": 0.312, "c2": 0.25, "c3": 0.757}, {"time": 0.5667, "angle": 2.13, "curve": 0.25, "c3": 0.75}, {"time": 1.2167, "curve": 0.29, "c3": 0.628, "c4": 0.38}, - {"time": 1.3333, "angle": 0.21} + {"angle": 18.79, "curve": 0.431, "c2": 0.43, "c3": 0.773}, {"time": 0.1333, "angle": -11.53, "curve": 0.144, "c3": 0.557}, + {"time": 0.3333, "angle": 27.46, "curve": 0.367, "c3": 0.703, "c4": 0.45}, {"time": 0.4167, "angle": 18.79} + ] + }, + "body-braid3": { + "rotate": [ + {"angle": 1.68, "curve": 0.384, "c2": 0.6, "c3": 0.719}, {"time": 0.05, "angle": -8.3, "curve": 0.144, "c3": 0.557}, + {"time": 0.25, "angle": 33.27, "curve": 0.415, "c3": 0.759, "c4": 0.68}, {"time": 0.4167, "angle": 1.68} + ] + }, + "@body2": { + "rotate": [ + {"angle": -4.6, "curve": 0.358, "c2": 0.37, "c3": 0.692, "c4": 0.72}, {"time": 0.0333, "angle": 1.16, "curve": 0.384, "c2": 0.6, "c3": 0.719}, + {"time": 0.0833, "angle": 7.45, "curve": 0.144, "c3": 0.557}, {"time": 0.2833, "angle": -18.73, "curve": 0.394, "c3": 0.734, "c4": 0.57}, {"time": 0.4167, "angle": -4.6} + ], + "translate": [ + {"x": 0.54, "y": -4.43, "curve": 0.37, "c2": 0.62, "c3": 0.704, "c4": 0.99}, {"time": 0.0333, "x": -0.08, "y": 1.15, "curve": 0.144, "c3": 0.557}, + {"time": 0.2333, "x": 4.59, "y": -41.28, "curve": 0.427, "c3": 0.774, "c4": 0.76}, {"time": 0.4167, "x": 0.54, "y": -4.43} ] }, "body-braid5": { "rotate": [ - {"angle": 14.47, "curve": 0.38, "c2": 0.53, "c3": 0.746}, {"time": 0.3, "angle": 19.81, "curve": 0.25, "c3": 0.75}, - {"time": 0.95, "angle": 7.07, "curve": 0.247, "c3": 0.632, "c4": 0.53}, {"time": 1.3333, "angle": 14.47} + {"angle": 17.99, "curve": 0.416, "c2": 0.52, "c3": 0.755}, {"time": 0.1, "angle": -7.27, "curve": 0.144, "c3": 0.557}, + {"time": 0.3, "angle": 36.02, "curve": 0.385, "c3": 0.723, "c4": 0.52}, {"time": 0.4167, "angle": 17.99} ] }, "body-braid": { "rotate": [ - {"angle": 10.04, "curve": 0.368, "c2": 0.63, "c3": 0.706}, {"time": 0.1, "angle": 10.92, "curve": 0.25, "c3": 0.75}, {"time": 0.75, "curve": 0.244, "c3": 0.695, "c4": 0.77}, - {"time": 1.3333, "angle": 10.04} + {"angle": -1.58, "curve": 0.353, "c2": 0.64, "c3": 0.686, "c4": 0.99}, {"time": 0.0167, "angle": -2.68, "curve": 0.144, "c3": 0.557}, + {"time": 0.2167, "angle": 22.42, "curve": 0.44, "c3": 0.789, "c4": 0.87}, {"time": 0.4167, "angle": -1.58} ] - } + }, + "@body5": {"rotate": [{"curve": 0.144, "c3": 0.557}, {"time": 0.2, "angle": 0.5, "curve": 0.455, "c3": 0.807}, {"time": 0.4167}]} } }, - "1930192816": { + "2310646130": { "slots": { - "eyes": {"attachment": [{"time": 0.05, "name": "eyes-angry"}, {"time": 0.8333, "name": "eyes-shut"}, {"time": 0.9167, "name": "eyes"}]}, - "mouth": {"attachment": [{"time": 0.05, "name": "mouth-bite"}, {"time": 0.3333, "name": "mouth-open"}, {"time": 0.75, "name": "mouth-bite"}, {"time": 0.9167, "name": "mouth"}]} + "eyes": {"attachment": [{"time": 0.0167, "name": "eyes-shut"}, {"time": 0.1833, "name": "eyes-angry"}, {"time": 0.4, "name": "eyes"}]}, + "mouth": {"attachment": [{"time": 0.0167, "name": "mouth-bite"}, {"time": 0.4, "name": "mouth"}]} }, "bones": { "tail": { "rotate": [ - {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.25, "angle": 21.98, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3167, "angle": -15.58, "curve": "stepped"}, - {"time": 0.3333, "angle": -19.65, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.4, "angle": 20.35, "curve": "stepped"}, {"time": 0.4333, "angle": -19.65, "curve": "stepped"}, - {"time": 0.4667, "angle": -19.65, "curve": 0.461, "c3": 0.543}, {"time": 0.5333, "angle": 20.35, "curve": "stepped"}, {"time": 0.5667, "angle": -19.65, "curve": "stepped"}, - {"time": 0.6, "angle": -19.65, "curve": 0.461, "c3": 0.543}, {"time": 0.6667, "angle": 20.35, "curve": "stepped"}, {"time": 0.7, "angle": -19.65, "curve": "stepped"}, - {"time": 0.75, "angle": -11.84, "curve": 0.313, "c3": 0.699}, {"time": 0.8333, "angle": 16.95, "curve": 0.313, "c3": 0.699}, {"time": 1} + {"curve": "stepped"}, {"time": 0.0167, "angle": 35.35}, {"time": 0.1667, "angle": 50.35, "curve": 0.315, "c4": 0.8}, {"time": 0.3167, "angle": -21.75, "curve": 0, "c2": 0.1, "c3": 0.85}, + {"time": 0.4167} ] }, + "leg-front-right-IK": { + "translate": [{"curve": "stepped"}, {"time": 0.0167, "x": 48.52, "y": 414.3}, {"time": 0.1667, "x": 69.52, "y": 458.5, "curve": 0.306, "c4": 0.8}, {"time": 0.3167}] + }, "@pivot-back": { "rotate": [ - {"curve": 0, "c2": 0.4, "c3": 0.383}, {"time": 0.15, "angle": 4, "curve": "stepped"}, {"time": 0.25, "angle": 4, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.3167, "curve": "stepped"}, {"time": 0.3333, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.4, "angle": -2.45, "curve": "stepped"}, {"time": 0.4333, "curve": "stepped"}, - {"time": 0.4667, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.5333, "angle": -2.45, "curve": "stepped"}, {"time": 0.5667, "curve": "stepped"}, - {"time": 0.6, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.6667, "angle": -2.45, "curve": "stepped"}, {"time": 0.7, "curve": "stepped"}, {"time": 0.75, "curve": 0.313, "c3": 0.699}, - {"time": 0.8333, "angle": 6, "curve": 0.313, "c3": 0.699}, {"time": 1} + {"curve": "stepped"}, {"time": 0.0167, "angle": -45}, {"time": 0.1667, "angle": -50, "curve": 0.464, "c4": 0.7}, {"time": 0.3167, "angle": 5.2, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.4167} ], + "translate": [{"curve": "stepped"}, {"time": 0.0167, "x": 94.99, "y": -21}, {"time": 0.1667, "x": 107, "y": -60, "curve": 0.464, "c4": 0.7}, {"time": 0.3167}] + }, + "@shadow": { "translate": [ - {"curve": 0, "c2": 0.4, "c3": 0.383}, {"time": 0.25, "x": 25, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3167, "x": -135.5, "curve": "stepped"}, - {"time": 0.3333, "x": -560.54, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.4, "x": -560.54, "y": 9.3, "curve": "stepped"}, {"time": 0.4333, "x": -560.54, "curve": "stepped"}, - {"time": 0.4667, "x": -560.54, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.5333, "x": -560.54, "y": 9.3, "curve": "stepped"}, {"time": 0.5667, "x": -560.54, "curve": "stepped"}, - {"time": 0.6, "x": -560.54, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.6667, "x": -560.54, "y": 9.3, "curve": "stepped"}, {"time": 0.7, "x": -560.54, "curve": "stepped"}, - {"time": 0.75, "x": -151.24, "curve": 0.313, "c3": 0.699}, {"time": 0.8333, "x": -151.24, "y": 4.06, "curve": 0.313, "c3": 0.699}, {"time": 1} + {"curve": "stepped"}, {"time": 0.0167, "x": 70.3, "curve": "stepped"}, {"time": 0.1667, "x": 70.3, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.3167, "x": 12.49, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.4167} ], - "scale": [{"time": 0.3167, "curve": "stepped"}, {"time": 0.3333, "x": -1, "curve": "stepped"}, {"time": 0.7, "x": -1, "curve": "stepped"}, {"time": 0.75}] + "scale": [ + {"curve": "stepped"}, {"time": 0.0167, "x": 0.98, "y": 0.98}, {"time": 0.1667, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.3167, "x": 1.08, "y": 1.08, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.4167} + ] }, - "@leg-front-right": { + "leg-back-left-IK": { + "translate": [{"curve": "stepped"}, {"time": 0.0167, "x": -126.78, "y": 61.47}, {"time": 0.1667, "x": -117.91, "y": 26.67, "curve": 0.306, "c3": 0.695}, {"time": 0.3333}] + }, + "@leg-back-left": { "translate": [ - {"curve": 0, "c2": 0.4, "c3": 0.383}, {"time": 0.25, "x": -1.86, "y": -9.26, "curve": "stepped"}, {"time": 0.3167, "x": -1.86, "y": -9.26, "curve": "stepped"}, - {"time": 0.3333, "x": 2.96, "y": 9.49, "curve": "stepped"}, {"time": 0.75, "x": 2.96, "y": 9.49, "curve": 0.306, "c3": 0.695}, - {"time": 0.8333, "x": -1.86, "y": -9.26, "curve": 0.313, "c3": 0.699}, {"time": 1} + {"curve": "stepped"}, {"time": 0.0167, "x": -2.63, "y": 8.92, "curve": "stepped"}, {"time": 0.1667, "x": -2.63, "y": 8.92, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3167} ] }, - "@leg-front-left": { + "@pivot-main": {"translate": [{"curve": "stepped"}, {"time": 0.0167, "x": 20, "curve": "stepped"}, {"time": 0.3167, "x": 20, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.4167}]}, + "leg-front-left-IK": { + "translate": [{"curve": "stepped"}, {"time": 0.0167, "x": -81.6, "y": 219.75}, {"time": 0.1667, "x": -70.97, "y": 228.81, "curve": 0.306, "c4": 0.8}, {"time": 0.3167}] + }, + "@leg-front-left": {"translate": [{"time": 0.1667, "curve": 0.62, "c4": 0.3}, {"time": 0.3167, "x": -1.1, "y": -14.87, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.4167}]}, + "@leg-front-right": {"translate": [{"time": 0.1667, "curve": 0.62, "c4": 0.3}, {"time": 0.3167, "x": -2.11, "y": -28.46, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.4167}]}, + "@body5": {"rotate": [{"curve": 0.144, "c3": 0.557}, {"time": 0.2, "angle": 0.5, "curve": 0.455, "c3": 0.807}, {"time": 0.4167}]}, + "@body4": { + "rotate": [ + {"angle": -8.24, "curve": 0.384, "c2": 0.6, "c3": 0.719}, {"time": 0.05, "angle": -15.35, "curve": 0.144, "c3": 0.557}, + {"time": 0.25, "angle": 14.26, "curve": 0.415, "c3": 0.759, "c4": 0.68}, {"time": 0.4167, "angle": -8.24} + ], + "translate": [{"x": -1.59, "y": 23.93, "curve": 0.144, "c3": 0.557}, {"time": 0.2, "x": 6.55, "y": -29.78, "curve": 0.455, "c3": 0.807}, {"time": 0.4167, "x": -1.59, "y": 23.93}] + }, + "@body2": { + "rotate": [ + {"angle": -4.6, "curve": 0.358, "c2": 0.37, "c3": 0.692, "c4": 0.72}, {"time": 0.0333, "angle": 1.16, "curve": 0.384, "c2": 0.6, "c3": 0.719}, + {"time": 0.0833, "angle": 7.45, "curve": 0.144, "c3": 0.557}, {"time": 0.2833, "angle": -18.73, "curve": 0.394, "c3": 0.734, "c4": 0.57}, {"time": 0.4167, "angle": -4.6} + ], "translate": [ - {"curve": 0, "c2": 0.4, "c3": 0.383}, {"time": 0.25, "x": -1, "y": -5.53, "curve": "stepped"}, {"time": 0.3167, "x": -1, "y": -5.53, "curve": "stepped"}, - {"time": 0.3333, "x": 14.28, "y": 14.98, "curve": "stepped"}, {"time": 0.4, "x": 14.28, "y": 14.98, "curve": "stepped"}, {"time": 0.4333, "x": 14.36, "y": 10.6, "curve": "stepped"}, - {"time": 0.4667, "x": 14.36, "y": 10.6, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.5333, "x": 14.28, "y": 14.98, "curve": "stepped"}, - {"time": 0.5667, "x": 14.36, "y": 10.6, "curve": "stepped"}, {"time": 0.6, "x": 14.36, "y": 10.6, "curve": 0, "c2": 0.3, "c3": 0.544}, - {"time": 0.6667, "x": 14.28, "y": 14.98, "curve": "stepped"}, {"time": 0.7, "x": 14.36, "y": 10.6, "curve": "stepped"}, - {"time": 0.75, "x": -1.12, "y": 1.52, "curve": 0.313, "c3": 0.699}, {"time": 0.8333, "x": -1, "y": -5.53, "curve": 0.313, "c3": 0.699}, {"time": 1} + {"x": 0.54, "y": -4.43, "curve": 0.37, "c2": 0.62, "c3": 0.704, "c4": 0.99}, {"time": 0.0333, "x": -0.08, "y": 1.15, "curve": 0.144, "c3": 0.557}, + {"time": 0.2333, "x": 4.59, "y": -41.28, "curve": 0.427, "c3": 0.774, "c4": 0.76}, {"time": 0.4167, "x": 0.54, "y": -4.43} ] }, - "@shadow": { + "@body3": { + "rotate": [ + {"angle": -6.22, "curve": 0.384, "c2": 0.6, "c3": 0.719}, {"time": 0.05, "angle": -3.77, "curve": 0.144, "c3": 0.557}, + {"time": 0.25, "angle": -14, "curve": 0.415, "c3": 0.759, "c4": 0.68}, {"time": 0.4167, "angle": -6.22} + ], + "translate": [{"curve": 0.144, "c3": 0.557}, {"time": 0.2, "x": 45.36, "y": -33.56, "curve": 0.455, "c3": 0.807}, {"time": 0.4167}] + }, + "body-braid2": {"rotate": [{"angle": -1.43, "curve": 0.144, "c3": 0.557}, {"time": 0.2, "angle": 20.83, "curve": 0.455, "c3": 0.807}, {"time": 0.4167, "angle": -1.43}]}, + "body-braid": { + "rotate": [ + {"angle": -1.58, "curve": 0.353, "c2": 0.64, "c3": 0.686, "c4": 0.99}, {"time": 0.0167, "angle": -2.68, "curve": 0.144, "c3": 0.557}, + {"time": 0.2167, "angle": 22.42, "curve": 0.44, "c3": 0.789, "c4": 0.87}, {"time": 0.4167, "angle": -1.58} + ] + }, + "body-braid5": { + "rotate": [ + {"angle": 17.99, "curve": 0.416, "c2": 0.52, "c3": 0.755}, {"time": 0.1, "angle": -7.27, "curve": 0.144, "c3": 0.557}, + {"time": 0.3, "angle": 36.02, "curve": 0.385, "c3": 0.723, "c4": 0.52}, {"time": 0.4167, "angle": 17.99} + ] + }, + "body-braid4": { + "rotate": [ + {"angle": 18.79, "curve": 0.431, "c2": 0.43, "c3": 0.773}, {"time": 0.1333, "angle": -11.53, "curve": 0.144, "c3": 0.557}, + {"time": 0.3333, "angle": 27.46, "curve": 0.367, "c3": 0.703, "c4": 0.45}, {"time": 0.4167, "angle": 18.79} + ] + }, + "body-braid3": { + "rotate": [ + {"angle": 1.68, "curve": 0.384, "c2": 0.6, "c3": 0.719}, {"time": 0.05, "angle": -8.3, "curve": 0.144, "c3": 0.557}, + {"time": 0.25, "angle": 33.27, "curve": 0.415, "c3": 0.759, "c4": 0.68}, {"time": 0.4167, "angle": 1.68} + ] + }, + "@body6": { + "rotate": [ + {"angle": 15.78, "curve": 0.366, "c2": 0.35, "c3": 0.7, "c4": 0.7}, {"time": 0.05, "angle": 5.84, "curve": 0.396, "c2": 0.58, "c3": 0.732}, + {"time": 0.1167, "angle": -5.24, "curve": 0.144, "c3": 0.557}, {"time": 0.3167, "angle": 25.77, "curve": 0.376, "c3": 0.712, "c4": 0.48}, {"time": 0.4167, "angle": 15.78} + ], "translate": [ - {"time": 0.25, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3167, "x": -143.36, "curve": "stepped"}, {"time": 0.7, "x": -143.36, "curve": "stepped"}, - {"time": 0.75, "x": -161.35, "curve": "stepped"}, {"time": 0.8333, "x": -161.35, "curve": 0.313, "c3": 0.699}, {"time": 1} + {"x": -12.53, "y": 5.46, "curve": 0.384, "c2": 0.6, "c3": 0.719}, {"time": 0.05, "x": 5.81, "y": -4.07, "curve": 0.144, "c3": 0.557}, + {"time": 0.25, "x": -70.52, "y": 35.61, "curve": 0.415, "c3": 0.759, "c4": 0.68}, {"time": 0.4167, "x": -12.53, "y": 5.46} + ] + } + } + }, + "2525036827": { + "slots": { + "eyes": {"attachment": [{"time": 0.0167, "name": "eyes-shut"}, {"time": 0.5833, "name": "eyes-angry"}, {"time": 0.8333, "name": "eyes-shut"}, {"time": 0.9167, "name": "eyes"}]}, + "mouth": {"attachment": [{"time": 0.0167, "name": "mouth-bite"}, {"time": 0.6667, "name": "mouth-open"}, {"time": 0.8333, "name": "mouth"}]} + }, + "bones": { + "@pivot-back": { + "rotate": [ + {"curve": "stepped"}, {"time": 0.0167, "angle": -45}, {"time": 0.1, "angle": -85, "curve": "stepped"}, {"time": 0.6667, "angle": -85, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.8333, "angle": 6, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1} ], - "scale": [ - {"curve": 0, "c2": 0.4, "c3": 0.383}, {"time": 0.25, "x": 1.08, "y": 1.08, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3167, "curve": "stepped"}, - {"time": 0.3333, "x": 1.02, "y": 1.02, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.4, "x": 0.96, "y": 0.96, "curve": "stepped"}, - {"time": 0.4333, "x": 1.02, "y": 1.02, "curve": "stepped"}, {"time": 0.4667, "x": 1.02, "y": 1.02, "curve": 0, "c2": 0.3, "c3": 0.544}, - {"time": 0.5333, "x": 0.96, "y": 0.96, "curve": "stepped"}, {"time": 0.5667, "x": 1.02, "y": 1.02, "curve": "stepped"}, - {"time": 0.6, "x": 1.02, "y": 1.02, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.6667, "x": 0.96, "y": 0.96, "curve": "stepped"}, - {"time": 0.7, "x": 1.02, "y": 1.02, "curve": "stepped"}, {"time": 0.75, "curve": 0.313, "c3": 0.699}, {"time": 0.8333, "x": 1.08, "y": 1.08, "curve": 0.313, "c3": 0.699}, {"time": 1} + "translate": [ + {"curve": "stepped"}, {"time": 0.0167, "x": 94.99, "y": -21}, {"time": 0.05, "x": 256.42, "y": -60}, {"time": 0.1, "x": 408.25, "y": -188, "curve": "stepped"}, + {"time": 0.6667, "x": 408.25, "y": -188, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.8333, "y": 12.75, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1} ] }, - "leg-front-left-IK": { + "@shadow": { "translate": [ - {"time": 0.25, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3167, "x": -192.09, "y": 31.17, "curve": "stepped"}, {"time": 0.3333, "x": -186.04, "curve": "stepped"}, - {"time": 0.7, "x": -186.04, "curve": 0.31, "c4": 0.8}, {"time": 0.75, "x": -180.48, "curve": "stepped"}, {"time": 0.8333, "x": -180.48, "curve": 0.313, "c3": 0.699}, {"time": 1} + {"curve": "stepped"}, {"time": 0.0167, "x": 144.17}, {"time": 0.1, "x": 589.27, "curve": 0.313, "c3": 0.699}, {"time": 0.25, "x": 627.48, "curve": 0.313, "c3": 0.699}, + {"time": 0.4167, "x": 576.87, "curve": 0.313, "c3": 0.699}, {"time": 0.55, "x": 602.83, "curve": 0.313, "c3": 0.699}, {"time": 0.6667, "x": 576.87, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.8333} + ], + "scale": [ + {"curve": "stepped"}, {"time": 0.0167, "x": 0.92, "y": 0.92}, {"time": 0.1, "curve": 0, "c2": 0.22, "c3": 0.373, "c4": 0.57}, {"time": 0.25, "x": 1.04, "y": 1.04, "curve": "stepped"}, + {"time": 0.6667, "x": 1.04, "y": 1.04, "curve": 0.206, "c2": 0.38, "c3": 0.736}, {"time": 0.8333, "x": 1.1, "y": 1.1, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1} ] }, + "@leg-back-left": {"translate": [{"curve": "stepped"}, {"time": 0.0167, "x": 6.4, "y": 0.19}, {"time": 0.1667}]}, "leg-front-right-IK": { "translate": [ - {"time": 0.25, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3167, "x": -172.87, "y": 28.32, "curve": "stepped"}, {"time": 0.3333, "x": 456.08, "y": -1.32, "curve": "stepped"}, - {"time": 0.7, "x": 456.08, "y": -1.32, "curve": "stepped"}, {"time": 0.75, "x": -180.48, "curve": "stepped"}, {"time": 0.8333, "x": -180.48, "curve": 0.313, "c3": 0.699}, {"time": 1} + {"curve": "stepped"}, {"time": 0.0167, "x": 85.72, "y": 376.6}, {"time": 0.05, "x": 470.49, "y": 757.6}, {"time": 0.1, "x": 1081.69, "y": 580.29, "curve": 0.313, "c3": 0.699}, + {"time": 0.25, "x": 1237.6, "y": 518.07, "curve": 0.313, "c3": 0.699}, {"time": 0.4167, "x": 1055.02, "y": 601.3, "curve": 0.313, "c3": 0.699}, + {"time": 0.5833, "x": 1168.88, "y": 568.7}, {"time": 0.6667, "x": 1116.08, "y": 602.91}, {"time": 0.7, "x": 479.71, "y": 713.72}, {"time": 0.75, "x": 20.63, "y": 378.32}, + {"time": 0.7833, "x": 1.29, "y": 116.66}, {"time": 0.8333} + ] + }, + "tail": { + "rotate": [ + {"curve": "stepped"}, {"time": 0.0167, "angle": 35.35}, {"time": 0.1, "angle": -18.03, "curve": 0.313, "c3": 0.699}, {"time": 0.25, "angle": 12.69, "curve": 0.313, "c3": 0.699}, + {"time": 0.4167, "angle": -15.12, "curve": 0.313, "c3": 0.699}, {"time": 0.6667, "angle": 1.29, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.8333, "angle": 19.35, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1} ] }, "leg-back-left-IK": { "translate": [ - {"time": 0.25, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3167, "x": -96.78, "y": 27.51, "curve": "stepped"}, {"time": 0.3333, "x": -593.07, "curve": "stepped"}, - {"time": 0.7, "x": -593.07, "curve": "stepped"}, {"time": 0.75, "x": -134.74, "curve": "stepped"}, {"time": 0.8333, "x": -134.74, "curve": 0.313, "c3": 0.699}, {"time": 1} + {"curve": "stepped"}, {"time": 0.0167, "x": -93.26, "y": 48.74}, {"time": 0.05, "x": -202.5, "y": 254.02}, {"time": 0.1, "x": 91.88, "y": 560.34, "curve": 0.313, "c3": 0.699}, + {"time": 0.25, "x": 236.84, "y": 611.48, "curve": 0.313, "c3": 0.699}, {"time": 0.4167, "x": 87.84, "y": 555.49, "curve": 0.313, "c3": 0.699}, {"time": 0.5833, "x": 186.18, "y": 586.78}, + {"time": 0.6667, "x": 77.94, "y": 549.13}, {"time": 0.7, "x": -231.86, "y": 221.08}, {"time": 0.75, "x": -168.84, "y": -46.99}, {"time": 0.7833, "x": -16.48, "y": -52.12}, + {"time": 0.8333} ] }, - "@leg-back-left": { + "leg-front-left-IK": { "translate": [ - {"time": 0.3167, "curve": "stepped"}, {"time": 0.3333, "x": -0.06, "y": 3.33, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.4, "x": 0.15, "y": 11.38, "curve": "stepped"}, - {"time": 0.4333, "x": -0.06, "y": 3.33, "curve": "stepped"}, {"time": 0.4667, "x": -0.06, "y": 3.33, "curve": 0, "c2": 0.3, "c3": 0.544}, - {"time": 0.5333, "x": 0.15, "y": 11.38, "curve": "stepped"}, {"time": 0.5667, "x": 0.28, "y": 3.86, "curve": "stepped"}, - {"time": 0.6, "x": -0.06, "y": 3.33, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.6667, "x": 0.15, "y": 11.38, "curve": "stepped"}, - {"time": 0.7, "x": -0.06, "y": 3.33, "curve": "stepped"}, {"time": 0.75} + {"curve": "stepped"}, {"time": 0.0167, "x": -74.92, "y": 201.25}, {"time": 0.05, "x": 21.38, "y": 446.05}, {"time": 0.1, "x": 511.28, "y": 580.46, "curve": 0.313, "c3": 0.699}, + {"time": 0.25, "x": 517.43, "y": 602.17, "curve": 0.313, "c3": 0.699}, {"time": 0.4167, "x": 470.08, "y": 581.27, "curve": 0.313, "c3": 0.699}, + {"time": 0.5833, "x": 451.59, "y": 595.4, "curve": 0.375, "c2": 0.58, "c3": 0.742}, {"time": 0.6667, "x": 445.33, "y": 594.73}, {"time": 0.7, "x": 8.58, "y": 408.19}, + {"time": 0.75, "x": -93.16, "y": 70.64}, {"time": 0.7833, "x": -81.13, "y": 23.88}, {"time": 0.8333} ] }, - "@pivot-main": {"translate": [{"time": 0.8333, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.9167, "y": 31, "curve": 0.315, "c4": 0.8}, {"time": 1}]}, + "@pivot-center": { + "rotate": [ + {"time": 0.0167, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.1, "angle": -95, "curve": 0.313, "c3": 0.699}, {"time": 0.25, "angle": -105, "curve": 0.313, "c3": 0.699}, + {"time": 0.4167, "angle": -90, "curve": 0.313, "c3": 0.699}, {"time": 0.55, "angle": -100, "curve": 0.313, "c3": 0.699}, + {"time": 0.6667, "angle": -90, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.8333} + ], + "translate": [ + {"time": 0.1, "curve": 0.313, "c3": 0.699}, {"time": 0.25, "x": 1.68, "y": 38.2, "curve": 0.313, "c3": 0.699}, {"time": 0.4167, "x": -2.73, "y": -12.21, "curve": 0.313, "c3": 0.699}, + {"time": 0.55, "x": -0.47, "y": 13.65, "curve": 0.313, "c3": 0.699}, {"time": 0.6667, "x": -2.73, "y": -12.21, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.8333} + ] + }, + "@pivot-main": { + "translate": [{"time": 0.6667, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.75, "y": 150, "curve": 0.315, "c4": 0.8}, {"time": 0.8333}], + "scale": [ + {"time": 0.1, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "y": 0.93, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "curve": "stepped"}, + {"time": 0.5667, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.65, "y": 0.7, "curve": 0.464, "c4": 0.7}, {"time": 0.7333, "curve": "stepped"}, + {"time": 0.8333, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.9167, "y": 0.98, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1} + ] + }, + "@leg-front-right": {"translate": [{"time": 0.75}, {"time": 0.8333, "x": -2.35, "y": -26.66, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1}]}, "@body3": { "rotate": [ - {"angle": -0.69, "curve": 0.379, "c2": 0.6, "c3": 0.724}, {"time": 0.0667, "curve": 0.25, "c3": 0.75}, {"time": 0.3167, "angle": -3.77, "curve": 0.25, "c3": 0.75}, - {"time": 0.55, "angle": -14, "curve": 0.25, "c3": 0.75}, {"time": 0.8, "angle": -3.77, "curve": 0.242, "c3": 0.667, "c4": 0.67}, {"time": 1, "angle": -0.69} + {"angle": -7.53, "curve": 0.381, "c2": 0.55, "c3": 0.742}, {"time": 0.0667, "angle": -3.77, "curve": 0.25, "c3": 0.485}, {"time": 0.3167, "angle": -14, "curve": 0.542, "c3": 0.75}, + {"time": 0.7333, "angle": -3.77, "curve": 0.25, "c3": 0.75}, {"time": 0.9, "angle": -14, "curve": 0.245, "c3": 0.637, "c4": 0.56}, {"time": 1, "angle": -7.53} ], - "translate": [{"time": 0.25, "curve": 0.25, "c3": 0.75}, {"time": 0.4833, "x": 45.36, "y": -33.56, "curve": 0.25, "c3": 0.75}, {"time": 0.7333}] + "translate": [ + {"curve": 0.25, "c3": 0.485}, {"time": 0.25, "x": 45.36, "y": -33.56, "curve": 0.542, "c3": 0.75}, {"time": 0.6667, "curve": 0.25, "c3": 0.75}, + {"time": 0.8333, "x": 55.89, "y": -22.18, "curve": 0.25, "c3": 0.75}, {"time": 1} + ] }, "@body4": { "rotate": [ - {"angle": -1.79, "curve": 0.374, "c2": 0.62, "c3": 0.714}, {"time": 0.05, "curve": 0.25, "c3": 0.75}, {"time": 0.3, "angle": -15.35, "curve": 0.25, "c3": 0.75}, - {"time": 0.5333, "angle": 14.26, "curve": 0.25, "c3": 0.75}, {"time": 0.7833, "angle": -15.35, "curve": 0.243, "c3": 0.683, "c4": 0.73}, {"time": 1, "angle": -1.79} + {"angle": -12.47, "curve": 0.375, "c2": 0.62, "c3": 0.716}, {"time": 0.0333, "angle": -15.35, "curve": 0.25, "c3": 0.485}, {"time": 0.2833, "angle": 14.26, "curve": 0.542, "c3": 0.75}, + {"time": 0.7, "angle": -15.35, "curve": 0.25, "c3": 0.75}, {"time": 0.8667, "angle": 6.8, "curve": 0.243, "c3": 0.68, "c4": 0.71}, {"time": 1, "angle": -12.47} ], "translate": [ - {"curve": 0.25, "c3": 0.75}, {"time": 0.25, "x": -1.59, "y": 23.93, "curve": 0.25, "c3": 0.75}, {"time": 0.4833, "x": 6.55, "y": -29.78, "curve": 0.25, "c3": 0.75}, - {"time": 0.7333, "x": -1.59, "y": 23.93, "curve": 0.25, "c3": 0.75}, {"time": 1} + {"x": -1.59, "y": 23.93, "curve": 0.25, "c3": 0.485}, {"time": 0.25, "x": 6.55, "y": -29.78, "curve": 0.542, "c3": 0.75}, + {"time": 0.6667, "x": -1.59, "y": 23.93, "curve": 0.25, "c3": 0.75}, {"time": 0.8333, "x": 33.54, "y": -3.13, "curve": 0.25, "c3": 0.75}, {"time": 1, "x": -1.59, "y": 23.93} ] }, "@body6": { "rotate": [ - {"angle": -1.33, "curve": 0.368, "c2": 0.49, "c3": 0.712, "c4": 0.87}, {"time": 0.0667, "angle": -0.11, "curve": 0.351, "c2": 0.65, "c3": 0.686}, - {"time": 0.0833, "curve": 0.25, "c3": 0.75}, {"time": 0.3333, "angle": -5.24, "curve": 0.25, "c3": 0.75}, {"time": 0.5667, "angle": 25.77, "curve": 0.25, "c3": 0.75}, - {"time": 0.8167, "angle": -5.24, "curve": 0.243, "c3": 0.653, "c4": 0.62}, {"time": 1, "angle": -1.33} + {"angle": 30.87, "curve": 0.25, "c3": 0.625, "c4": 0.5}, {"time": 0.0833, "angle": 12.82, "curve": 0.375, "c2": 0.5, "c3": 0.75}, + {"time": 0.1667, "angle": -5.24, "curve": 0.25, "c3": 0.485}, {"time": 0.4167, "angle": 25.77, "curve": 0.542, "c3": 0.75}, {"time": 0.8333, "angle": -5.24, "curve": 0.25, "c3": 0.75}, + {"time": 1, "angle": 30.87} ], "translate": [ - {"x": 1.07, "y": -0.75, "curve": 0.379, "c2": 0.6, "c3": 0.724}, {"time": 0.0667, "curve": 0.25, "c3": 0.75}, {"time": 0.3167, "x": 5.81, "y": -4.07, "curve": 0.25, "c3": 0.75}, - {"time": 0.55, "x": -70.52, "y": 35.61, "curve": 0.25, "c3": 0.75}, {"time": 0.8, "x": 5.81, "y": -4.07, "curve": 0.242, "c3": 0.667, "c4": 0.67}, {"time": 1, "x": 1.07, "y": -0.75} + {"x": -21.25, "y": -15.24, "curve": 0.375, "c2": 0.5, "c3": 0.75}, {"time": 0.0833, "x": 5.81, "y": -4.07, "curve": 0.25, "c3": 0.485}, + {"time": 0.3333, "x": -70.52, "y": 35.61, "curve": 0.542, "c3": 0.75}, {"time": 0.75, "x": 5.81, "y": -4.07, "curve": 0.25, "c3": 0.75}, + {"time": 0.9167, "x": -48.3, "y": -26.4, "curve": 0.25, "c3": 0.625, "c4": 0.5}, {"time": 1, "x": -21.25, "y": -15.24} ] }, "body-braid2": { "rotate": [ - {"curve": 0.25, "c3": 0.75}, {"time": 0.25, "angle": -1.43, "curve": 0.25, "c3": 0.75}, {"time": 0.4833, "angle": 20.83, "curve": 0.25, "c3": 0.75}, - {"time": 0.7333, "angle": -1.43, "curve": 0.25, "c3": 0.75}, {"time": 1} + {"angle": -1.43, "curve": 0.25, "c3": 0.485}, {"time": 0.25, "angle": 20.83, "curve": 0.542, "c3": 0.75}, {"time": 0.6667, "angle": -1.43, "curve": 0.25, "c3": 0.75}, + {"time": 0.8333, "angle": 20.83, "curve": 0.25, "c3": 0.75}, {"time": 1, "angle": -1.43} ] }, "body-braid4": { "rotate": [ - {"angle": -8.56, "curve": 0.347, "c2": 0.38, "c3": 0.757}, {"time": 0.1833, "curve": 0.25, "c3": 0.75}, {"time": 0.4333, "angle": -11.53, "curve": 0.25, "c3": 0.75}, - {"time": 0.6667, "angle": 27.46, "curve": 0.25, "c3": 0.75}, {"time": 0.9167, "angle": -11.53, "curve": 0.267, "c3": 0.618, "c4": 0.42}, {"time": 1, "angle": -8.56} + {"angle": 18.02, "curve": 0.345, "c2": 0.37, "c3": 0.757}, {"time": 0.1167, "angle": -11.53, "curve": 0.25, "c3": 0.485}, {"time": 0.3667, "angle": 27.46, "curve": 0.542, "c3": 0.75}, + {"time": 0.7833, "angle": -11.53, "curve": 0.25, "c3": 0.75}, {"time": 0.95, "angle": 27.46, "curve": 0.269, "c3": 0.618, "c4": 0.42}, {"time": 1, "angle": 18.02} ] }, "body-braid3": { "rotate": [ - {"angle": -1.53, "curve": 0.379, "c2": 0.6, "c3": 0.724}, {"time": 0.0667, "curve": 0.25, "c3": 0.75}, {"time": 0.3167, "angle": -8.3, "curve": 0.25, "c3": 0.75}, - {"time": 0.55, "angle": 33.27, "curve": 0.25, "c3": 0.75}, {"time": 0.8, "angle": -8.3, "curve": 0.242, "c3": 0.667, "c4": 0.67}, {"time": 1, "angle": -1.53} + {"angle": 1.76, "curve": 0.382, "c2": 0.58, "c3": 0.731}, {"time": 0.05, "angle": -8.3, "curve": 0.25, "c3": 0.485}, {"time": 0.3, "angle": 33.27, "curve": 0.542, "c3": 0.75}, + {"time": 0.7167, "angle": -8.3, "curve": 0.25, "c3": 0.75}, {"time": 0.8833, "angle": 33.27, "curve": 0.243, "c3": 0.655, "c4": 0.63}, {"time": 1, "angle": 1.76} ] }, "@body2": { "rotate": [ - {"angle": 2.47, "curve": 0.359, "c2": 0.43, "c3": 0.702, "c4": 0.8}, {"time": 0.0667, "angle": 0.47, "curve": 0.364, "c2": 0.64, "c3": 0.701}, {"time": 0.1, "curve": 0.25, "c3": 0.75}, - {"time": 0.35, "angle": 7.45, "curve": 0.25, "c3": 0.75}, {"time": 0.5833, "angle": -18.73, "curve": 0.25, "c3": 0.75}, - {"time": 0.8333, "angle": 7.45, "curve": 0.244, "c3": 0.641, "c4": 0.57}, {"time": 1, "angle": 2.47} + {"angle": -17.59, "curve": 0.278, "c2": 0.15, "c3": 0.689, "c4": 0.74}, {"time": 0.1167, "angle": 4.05, "curve": 0.375, "c2": 0.62, "c3": 0.716}, + {"time": 0.15, "angle": 7.45, "curve": 0.25, "c3": 0.485}, {"time": 0.4, "angle": -18.73, "curve": 0.542, "c3": 0.75}, {"time": 0.8167, "angle": 7.45, "curve": 0.25, "c3": 0.75}, + {"time": 0.9833, "angle": -18.73, "curve": 0.305, "c3": 0.64, "c4": 0.36}, {"time": 1, "angle": -17.59} ], "translate": [ - {"x": -0.01, "y": 0.21, "curve": 0.379, "c2": 0.6, "c3": 0.724}, {"time": 0.0667, "curve": 0.25, "c3": 0.75}, {"time": 0.3167, "x": -0.08, "y": 1.15, "curve": 0.25, "c3": 0.75}, - {"time": 0.55, "x": 4.59, "y": -41.28, "curve": 0.25, "c3": 0.75}, {"time": 0.8, "x": -0.08, "y": 1.15, "curve": 0.242, "c3": 0.667, "c4": 0.67}, {"time": 1, "x": -0.01, "y": 0.21} + {"x": 11.76, "y": -30.68, "curve": 0.345, "c2": 0.37, "c3": 0.757}, {"time": 0.1167, "x": -0.08, "y": 1.15, "curve": 0.25, "c3": 0.485}, + {"time": 0.3667, "x": 4.59, "y": -41.28, "curve": 0.542, "c3": 0.75}, {"time": 0.7833, "x": -0.08, "y": 1.15, "curve": 0.25, "c3": 0.75}, + {"time": 0.95, "x": 15.54, "y": -40.86, "curve": 0.269, "c3": 0.618, "c4": 0.42}, {"time": 1, "x": 11.76, "y": -30.68} ] }, "body-braid6": { "rotate": [ - {"angle": -17.82, "curve": 0.317, "c2": 0.27, "c3": 0.757}, {"time": 0.2167, "curve": 0.25, "c3": 0.75}, {"time": 0.4667, "angle": -20.17, "curve": 0.25, "c3": 0.75}, - {"time": 0.7, "angle": 18.35, "curve": 0.25, "c3": 0.75}, {"time": 0.95, "angle": -20.17, "curve": 0.286, "c3": 0.626, "c4": 0.38}, {"time": 1, "angle": -17.82} + {"angle": 18.35, "curve": 0.25, "c3": 0.75}, {"time": 0.1667, "angle": -20.17, "curve": 0.25, "c3": 0.485}, {"time": 0.4167, "angle": 18.35, "curve": 0.542, "c3": 0.75}, + {"time": 0.8333, "angle": -20.17, "curve": 0.25, "c3": 0.75}, {"time": 1, "angle": 18.35} ] }, "body-braid5": { "rotate": [ - {"angle": -2.44, "curve": 0.382, "c2": 0.56, "c3": 0.74}, {"time": 0.1, "curve": 0.25, "c3": 0.75}, {"time": 0.35, "angle": -7.27, "curve": 0.25, "c3": 0.75}, - {"time": 0.5833, "angle": 36.02, "curve": 0.25, "c3": 0.75}, {"time": 0.8333, "angle": -7.27, "curve": 0.244, "c3": 0.641, "c4": 0.57}, {"time": 1, "angle": -2.44} + {"angle": 14.38, "curve": 0.375, "c2": 0.5, "c3": 0.75}, {"time": 0.0833, "angle": -7.27, "curve": 0.25, "c3": 0.485}, {"time": 0.3333, "angle": 36.02, "curve": 0.542, "c3": 0.75}, + {"time": 0.75, "angle": -7.27, "curve": 0.25, "c3": 0.75}, {"time": 0.9167, "angle": 36.02, "curve": 0.25, "c3": 0.625, "c4": 0.5}, {"time": 1, "angle": 14.38} ] }, "body-braid": { "rotate": [ - {"angle": -0.17, "curve": 0.364, "c2": 0.64, "c3": 0.701}, {"time": 0.0333, "curve": 0.25, "c3": 0.75}, {"time": 0.2833, "angle": -2.68, "curve": 0.25, "c3": 0.75}, - {"time": 0.5167, "angle": 22.42, "curve": 0.25, "c3": 0.75}, {"time": 0.7667, "angle": -2.68, "curve": 0.244, "c3": 0.702, "c4": 0.8}, {"time": 1, "angle": -0.17} + {"angle": 0.59, "curve": 0.375, "c2": 0.62, "c3": 0.716}, {"time": 0.0333, "angle": -2.68, "curve": 0.25, "c3": 0.485}, {"time": 0.2833, "angle": 22.42, "curve": 0.542, "c3": 0.75}, + {"time": 0.7, "angle": -2.68, "curve": 0.25, "c3": 0.75}, {"time": 0.8667, "angle": 22.42, "curve": 0.243, "c3": 0.68, "c4": 0.71}, {"time": 1, "angle": 0.59} ] - }, - "@body5": {"rotate": [{"time": 0.25, "curve": 0.25, "c3": 0.75}, {"time": 0.4833, "angle": 0.5, "curve": 0.25, "c3": 0.75}, {"time": 0.7333}]} - }, - "events": [{"time": 0.3167, "name": "start-attack"}, {"time": 0.4333, "name": "hit"}, {"time": 0.5667, "name": "hit"}, {"time": 0.7, "name": "hit"}] + } + } }, - "1797279783": { + "3095766500": { "slots": { - "eyes": {"attachment": [{"time": 0.0167, "name": "eyes-angry"}, {"time": 0.85, "name": "eyes-shut"}, {"time": 0.9333, "name": "eyes"}]}, - "mouth": {"attachment": [{"time": 0.0167, "name": "mouth-bite"}, {"time": 0.1833, "name": "mouth-open"}, {"time": 0.5, "name": "mouth-bite"}, {"time": 0.9333, "name": "mouth"}]} + "eyes": {"attachment": [{"time": 0.0167, "name": "eyes-shut"}, {"time": 0.3, "name": "eyes-angry"}, {"time": 0.4833, "name": "eyes"}]}, + "mouth": {"attachment": [{"time": 0.0167, "name": "mouth-bite"}, {"time": 0.4833, "name": "mouth"}]} }, "bones": { "@pivot-back": { "rotate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "angle": -3.92, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "angle": 2.51, "curve": 0, "c2": 0.2, "c3": 0.858}, - {"time": 0.25, "angle": -6, "curve": "stepped"}, {"time": 0.7167, "angle": -6, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.8333, "angle": 6, "curve": 0.313, "c3": 0.699}, {"time": 1} + {"curve": "stepped"}, {"time": 0.0167, "angle": 8}, {"time": 0.2333, "angle": 10, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "angle": -5, "curve": 0.315, "c4": 0.8}, + {"time": 0.4833, "angle": 5, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5833} ], "translate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "x": 71.93, "y": -12.95, "curve": "stepped"}, {"time": 0.1667, "x": 71.93, "y": -12.95, "curve": 0, "c2": 0.2, "c3": 0.858}, - {"time": 0.25, "x": -145.48, "y": 99.8, "curve": 0, "c2": 0.3, "c3": 0.698}, {"time": 0.4167, "x": -145, "y": 149.7, "curve": 1, "c4": 0}, {"time": 0.5, "x": -145}, - {"time": 0.6667, "x": -145, "y": 2.5, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.7167, "y": 48.98, "curve": 0.315, "c4": 0.8}, - {"time": 0.8333, "y": -3.33, "curve": 0.313, "c3": 0.699}, {"time": 1} - ] - }, - "@leg-front-left": { - "translate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "x": -4.8, "y": 21.17, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.1667, "x": -0.53, "y": 0.11, "curve": 0, "c2": 0.2, "c3": 0.858}, {"time": 0.25, "x": -1, "y": -5.53, "curve": "stepped"}, - {"time": 0.7167, "x": -1, "y": -5.53, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.8333, "x": -2.17, "y": -17.49, "curve": 0.313, "c3": 0.699}, {"time": 1} + {"curve": "stepped"}, {"time": 0.0167, "x": 29.16, "y": 6.28}, {"time": 0.2667, "x": 18.48, "y": 18.85, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.3833, "x": -1.17, "y": 18.85, "curve": 0.315, "c4": 0.8}, {"time": 0.4833} ] }, - "@leg-back-left": { + "leg-front-right-IK": { "translate": [ - {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 0.67, "y": -7.85, "curve": 0.161, "c3": 0.854}, {"time": 0.1667, "x": 0.53, "y": -13.09, "curve": 0, "c2": 0.2, "c3": 0.858}, - {"time": 0.25, "curve": "stepped"}, {"time": 0.7167, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.8333, "x": -0.5, "y": -5.23, "curve": 0.313, "c3": 0.699}, {"time": 1} + {"time": 0.0167}, {"time": 0.2333, "x": -21.51, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "x": 6.83, "y": 84.78}, + {"time": 0.3833, "x": -2.72, "y": 58.18, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.45} ] }, "@shadow": { "translate": [ - {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 61.96, "curve": "stepped"}, {"time": 0.1667, "x": 61.96, "curve": 0, "c2": 0.2, "c3": 0.858}, - {"time": 0.25, "x": -143.36, "curve": 0, "c2": 0.3, "c3": 0.698}, {"time": 0.4167, "x": -154.48, "curve": "stepped"}, {"time": 0.6667, "x": -154.48, "curve": 0, "c2": 0.3, "c3": 0.544}, - {"time": 0.7167, "x": -9.48, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.8333} + {"curve": "stepped"}, {"time": 0.0167, "x": 33.22}, {"time": 0.2667, "x": 61.08, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3833, "x": 9.02, "curve": 0.315, "c4": 0.8}, + {"time": 0.4833} ], "scale": [ - {"time": 0.0833, "curve": 0, "c2": 0.26, "c3": 0.369, "c4": 0.62}, {"time": 0.1667, "x": 1.06, "y": 1.06, "curve": 0, "c2": 0.2, "c3": 0.858}, - {"time": 0.25, "curve": 0, "c2": 0.3, "c3": 0.698}, {"time": 0.4167, "x": 0.86, "y": 0.86}, {"time": 0.5, "x": 1.16, "y": 1.16}, - {"time": 0.6667, "x": 1.18, "y": 1.18, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.7167, "x": 1.02, "y": 1.02, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.8333, "x": 1.1, "y": 1.1, "curve": 0.313, "c3": 0.699}, {"time": 1} + {"curve": "stepped"}, {"time": 0.0167, "x": 1.1, "y": 1.1, "curve": "stepped"}, {"time": 0.2667, "x": 1.1, "y": 1.1, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.3833, "x": 0.98, "y": 0.98, "curve": 0.315, "c4": 0.8}, {"time": 0.4833, "x": 1.1, "y": 1.1, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5833} ] }, - "leg-front-right-IK": { + "@leg-front-left": { "translate": [ - {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 30.89, "y": 11.74, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": 42.9, "curve": 0, "c2": 0.2, "c3": 0.858}, - {"time": 0.25, "x": -123.77, "y": 159.27, "curve": 0, "c2": 0.3, "c3": 0.54}, {"time": 0.3667, "x": 318.15, "y": 124.76}, - {"time": 0.4667, "x": 422.01, "y": 262.03, "curve": 1, "c4": 0.1}, {"time": 0.5, "x": 241.75, "y": 631.12}, {"time": 0.6667, "x": 249.18, "y": 631.34, "curve": "stepped"}, - {"time": 0.6833, "x": -136.29, "y": 410.95, "curve": "stepped"}, {"time": 0.7, "x": -72.54, "y": 181.91, "curve": "stepped"}, - {"time": 0.7167, "x": 16.74, "y": 109.99, "curve": 0, "c2": 0.18, "c3": 0.424, "c4": 0.59}, {"time": 0.8333} + {"curve": "stepped"}, {"time": 0.0167, "x": 0.77, "y": 3.87}, {"time": 0.3667, "x": 1.05, "y": 9.15, "curve": 0.617, "c4": 0.6}, + {"time": 0.4833, "x": -1.09, "y": -14.69, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5833} ] }, - "leg-back-left-IK": { + "@leg-front-right": { "translate": [ - {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 80.9, "curve": 0.161, "c3": 0.854}, {"time": 0.1667, "x": 49.4, "curve": 0, "c2": 0.2, "c3": 0.858}, - {"time": 0.25, "x": -145.54, "y": 113.45, "curve": 0, "c2": 0.1, "c3": 0.853}, {"time": 0.3667, "x": -120.72, "y": 618.84}, - {"time": 0.4667, "x": -238.23, "y": 753.99, "curve": 1, "c4": 0.1}, {"time": 0.5, "x": -721.75, "y": 409.86}, - {"time": 0.6667, "x": -738.87, "y": 398.15, "curve": 0.49, "c3": 0.806, "c4": 0.36}, {"time": 0.6833, "x": -445.21, "y": 13.62, "curve": 0.73, "c2": 0.24, "c4": 0.59}, - {"time": 0.7, "x": -82.16, "y": 7.42, "curve": "stepped"}, {"time": 0.7167} + {"curve": "stepped"}, {"time": 0.0167, "x": 27.88, "y": -51.35}, {"time": 0.2333, "x": 31.13, "y": -45.76}, {"time": 0.45, "x": 0.18, "y": 4.24}, + {"time": 0.4833, "x": -2.72, "y": -33.58, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5833} ] }, - "@leg-front-right": { + "@pivot-main": { "translate": [ - {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 4.31, "y": 11.86, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.1667, "x": -1.88, "y": -12.2, "curve": 0, "c2": 0.2, "c3": 0.858}, {"time": 0.25, "x": -1.86, "y": -9.26, "curve": "stepped"}, - {"time": 0.7167, "x": -1.86, "y": -9.26, "curve": 0.306, "c4": 0.8}, {"time": 0.8333, "x": -4.61, "y": -38.35, "curve": 0.313, "c3": 0.699}, {"time": 1} + {"curve": "stepped"}, {"time": 0.0167, "x": 33.18}, {"time": 0.2667, "x": 61.52, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3833, "x": 20.27, "y": 27.91, "curve": 0.315, "c4": 0.8}, + {"time": 0.4833} + ] + }, + "tail": { + "rotate": [ + {"curve": "stepped"}, {"time": 0.0167, "angle": -18.65}, {"time": 0.2333, "angle": -21.65, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.3333, "angle": -13.3, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.45, "angle": 12.04, "curve": 0.154, "c4": 0.9}, + {"time": 0.5167, "angle": -9.14, "curve": 0.161, "c3": 0.854}, {"time": 0.5833} ] }, "leg-front-left-IK": { "translate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "x": 8.25, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": 42.9, "curve": 0, "c2": 0.2, "c3": 0.858}, - {"time": 0.25, "x": -179, "y": 123.81, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3667, "x": 40.26, "y": 484.21}, {"time": 0.4667, "x": -9.53, "y": 607.64, "curve": 1, "c4": 0.1}, - {"time": 0.5, "x": -392.96, "y": 497.2}, {"time": 0.6667, "x": -405.58, "y": 496.3, "curve": "stepped"}, {"time": 0.6833, "x": -344.4, "y": 182.63, "curve": "stepped"}, - {"time": 0.7, "x": -108.47, "y": 46.07, "curve": "stepped"}, {"time": 0.7167} + {"time": 0.2333, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "x": 12.33, "y": 29.93}, {"time": 0.3833, "x": 13.61, "y": 28.01, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.45} ] }, - "tail": { - "rotate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "angle": 15.61, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "angle": 20.44, "curve": 0, "c2": 0.2, "c3": 0.858}, - {"time": 0.25, "angle": -14.65, "curve": 0.313, "c3": 0.699}, {"time": 0.4667, "angle": -49.65, "curve": 1, "c4": 0.1}, {"time": 0.5, "angle": -2.15}, - {"time": 0.6667, "angle": -1.85, "curve": 0, "c2": 0.4, "c3": 0.383}, {"time": 0.8333, "angle": 21.05, "curve": 0.313, "c3": 0.699}, {"time": 1} + "leg-back-left-IK": { + "translate": [ + {"curve": "stepped"}, {"time": 0.0167, "x": 50.74, "y": 0.9, "curve": "stepped"}, {"time": 0.2, "x": 50.74, "y": 0.9, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.25, "x": 12.5, "y": 6.45, "curve": 0, "c2": 0.8, "c3": 0.15}, {"time": 0.3667, "x": 5.47, "y": 26.12, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.4833} ] }, - "@pivot-center": { - "rotate": [ - {"time": 0.25, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.4667, "angle": 112.05, "curve": 1, "c4": 0.1}, {"time": 0.5, "angle": -146.9}, - {"time": 0.6667, "angle": -145.45, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.7167} + "@leg-back-left": { + "translate": [ + {"curve": "stepped"}, {"time": 0.0167, "x": 18.74, "y": 14.65, "curve": "stepped"}, {"time": 0.1667, "x": 18.74, "y": 14.65, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.4833} ] }, "@body3": { "rotate": [ - {"angle": -1.82, "curve": 0.375, "c2": 0.62, "c3": 0.716}, {"time": 0.0333, "curve": 0.25, "c3": 0.75}, {"time": 0.15, "angle": -3.77, "curve": 0.25, "c3": 0.75}, - {"time": 0.4167, "angle": -14, "curve": 0.25, "c3": 0.75}, {"time": 0.7167, "angle": -3.77, "curve": 0.25, "c3": 0.75}, - {"time": 0.8667, "angle": -14, "curve": 0.243, "c3": 0.68, "c4": 0.71}, {"time": 1, "angle": -1.82} + {"angle": -7.3, "curve": 0.395, "c2": 0.58, "c3": 0.731}, {"time": 0.05, "angle": -3.77, "curve": 0.144, "c3": 0.557}, {"time": 0.1667, "angle": -14, "curve": 0.455, "c3": 0.807}, + {"time": 0.2833, "angle": -3.77, "curve": 0.144, "c3": 0.557}, {"time": 0.4667, "angle": -14, "curve": 0.405, "c3": 0.747, "c4": 0.63}, {"time": 0.5833, "angle": -7.3} ], "translate": [ - {"time": 0.1167, "curve": 0.25, "c3": 0.75}, {"time": 0.3833, "x": 45.36, "y": -33.56, "curve": 0.25, "c3": 0.75}, {"time": 0.6833, "curve": 0.25, "c3": 0.75}, - {"time": 0.8333, "x": 55.89, "y": -22.18, "curve": 0.25, "c3": 0.75}, {"time": 1} + {"curve": 0.144, "c3": 0.557}, {"time": 0.1167, "x": 45.36, "y": -33.56, "curve": 0.455, "c3": 0.807}, {"time": 0.2333, "curve": 0.144, "c3": 0.557}, + {"time": 0.4167, "x": 45.36, "y": -33.56, "curve": 0.455, "c3": 0.807}, {"time": 0.5833} ] }, "@body4": { "rotate": [ - {"angle": 1.65, "curve": 0.382, "c2": 0.58, "c3": 0.731}, {"time": 0.05, "curve": 0.25, "c3": 0.75}, {"time": 0.1667, "angle": -15.35, "curve": 0.25, "c3": 0.75}, - {"time": 0.4333, "angle": 14.26, "curve": 0.25, "c3": 0.75}, {"time": 0.7333, "angle": -15.35, "curve": 0.25, "c3": 0.75}, - {"time": 0.8833, "angle": 6.8, "curve": 0.243, "c3": 0.655, "c4": 0.63}, {"time": 1, "angle": 1.65} + {"angle": -11.27, "curve": 0.378, "c2": 0.61, "c3": 0.713, "c4": 0.99}, {"time": 0.0333, "angle": -15.35, "curve": 0.144, "c3": 0.557}, + {"time": 0.15, "angle": 6.2, "curve": 0.455, "c3": 0.807}, {"time": 0.2667, "angle": -15.35, "curve": 0.144, "c3": 0.557}, + {"time": 0.45, "angle": 5.52, "curve": 0.42, "c3": 0.765, "c4": 0.71}, {"time": 0.5833, "angle": -11.27} ], "translate": [ - {"curve": 0.25, "c3": 0.75}, {"time": 0.1167, "x": -1.59, "y": 23.93, "curve": 0.25, "c3": 0.75}, {"time": 0.3833, "x": 6.55, "y": -29.78, "curve": 0.25, "c3": 0.75}, - {"time": 0.6833, "x": -1.59, "y": 23.93, "curve": 0.25, "c3": 0.75}, {"time": 0.8333, "x": 33.54, "y": -3.13, "curve": 0.25, "c3": 0.75}, {"time": 1} + {"x": -1.59, "y": 23.93, "curve": 0.144, "c3": 0.557}, {"time": 0.1167, "x": 6.55, "y": -29.78, "curve": 0.455, "c3": 0.807}, + {"time": 0.2333, "x": -1.59, "y": 23.93, "curve": 0.144, "c3": 0.557}, {"time": 0.4167, "x": 23.9, "y": -28.27, "curve": 0.455, "c3": 0.807}, {"time": 0.5833, "x": -1.59, "y": 23.93} ] }, "@body6": { "rotate": [ - {"angle": 23.32, "curve": 0.321, "c2": 0.3, "c3": 0.679, "c4": 0.7}, {"time": 0.0667, "angle": 7.48, "curve": 0.382, "c2": 0.58, "c3": 0.731}, - {"time": 0.1167, "curve": 0.25, "c3": 0.75}, {"time": 0.2333, "angle": -5.24, "curve": 0.25, "c3": 0.75}, {"time": 0.5, "angle": 25.77, "curve": 0.25, "c3": 0.75}, - {"time": 0.8, "angle": -5.24, "curve": 0.25, "c3": 0.75}, {"time": 0.95, "angle": 30.87, "curve": 0.269, "c3": 0.618, "c4": 0.42}, {"time": 1, "angle": 23.32} + {"angle": 10.94, "curve": 0.359, "c2": 0.32, "c3": 0.693, "c4": 0.68}, {"time": 0.0333, "angle": 5.41, "curve": 0.409, "c2": 0.54, "c3": 0.746}, + {"time": 0.1, "angle": -5.24, "curve": 0.144, "c3": 0.557}, {"time": 0.2167, "angle": 17.35, "curve": 0.455, "c3": 0.807}, {"time": 0.3333, "angle": -5.24, "curve": 0.144, "c3": 0.557}, + {"time": 0.5167, "angle": 16.19, "curve": 0.369, "c3": 0.705, "c4": 0.46}, {"time": 0.5833, "angle": 10.94} ], "translate": [ - {"x": -17.77, "y": -9.71, "curve": 0.381, "c2": 0.55, "c3": 0.742}, {"time": 0.0667, "curve": 0.25, "c3": 0.75}, {"time": 0.1833, "x": 5.81, "y": -4.07, "curve": 0.25, "c3": 0.75}, - {"time": 0.45, "x": -70.52, "y": 35.61, "curve": 0.25, "c3": 0.75}, {"time": 0.75, "x": 5.81, "y": -4.07, "curve": 0.25, "c3": 0.75}, - {"time": 0.9, "x": -48.3, "y": -26.4, "curve": 0.245, "c3": 0.637, "c4": 0.56}, {"time": 1, "x": -17.77, "y": -9.71} + {"x": -3.76, "y": 0.76, "curve": 0.378, "c2": 0.61, "c3": 0.713, "c4": 0.99}, {"time": 0.0333, "x": 5.81, "y": -4.07, "curve": 0.144, "c3": 0.557}, + {"time": 0.15, "x": -32, "y": -2.2, "curve": 0.455, "c3": 0.807}, {"time": 0.2667, "x": 5.81, "y": -4.07, "curve": 0.144, "c3": 0.557}, + {"time": 0.45, "x": -43.15, "y": 20.65, "curve": 0.42, "c3": 0.765, "c4": 0.71}, {"time": 0.5833, "x": -3.76, "y": 0.76} ] }, "body-braid2": { "rotate": [ - {"curve": 0.25, "c3": 0.75}, {"time": 0.1167, "angle": -1.43, "curve": 0.25, "c3": 0.75}, {"time": 0.3833, "angle": 20.83, "curve": 0.25, "c3": 0.75}, - {"time": 0.6833, "angle": -1.43, "curve": 0.25, "c3": 0.75}, {"time": 0.8333, "angle": 20.83, "curve": 0.25, "c3": 0.75}, {"time": 1} + {"angle": -1.43, "curve": 0.144, "c3": 0.557}, {"time": 0.1167, "angle": 11.3, "curve": 0.455, "c3": 0.807}, {"time": 0.2333, "angle": -1.43, "curve": 0.144, "c3": 0.557}, + {"time": 0.4167, "angle": 17.43, "curve": 0.455, "c3": 0.807}, {"time": 0.5833, "angle": -1.43} ] }, "body-braid4": { "rotate": [ - {"angle": 20.81, "curve": 0.345, "c2": 0.37, "c3": 0.757}, {"time": 0.1167, "curve": 0.25, "c3": 0.75}, {"time": 0.2333, "angle": -11.53, "curve": 0.25, "c3": 0.75}, - {"time": 0.5, "angle": 27.46, "curve": 0.25, "c3": 0.75}, {"time": 0.8, "angle": -11.53, "curve": 0.25, "c3": 0.75}, - {"time": 0.95, "angle": 27.46, "curve": 0.269, "c3": 0.618, "c4": 0.42}, {"time": 1, "angle": 20.81} + {"angle": 4.91, "curve": 0.42, "c2": 0.5, "c3": 0.76}, {"time": 0.0833, "angle": -11.53, "curve": 0.144, "c3": 0.557}, {"time": 0.2, "angle": 17.93, "curve": 0.455, "c3": 0.807}, + {"time": 0.3167, "angle": -11.53, "curve": 0.144, "c3": 0.557}, {"time": 0.5, "angle": 14.26, "curve": 0.38, "c3": 0.717, "c4": 0.5}, {"time": 0.5833, "angle": 4.91} ] }, "body-braid3": { "rotate": [ - {"angle": 12.24, "curve": 0.381, "c2": 0.55, "c3": 0.742}, {"time": 0.0667, "curve": 0.25, "c3": 0.75}, {"time": 0.1833, "angle": -8.3, "curve": 0.25, "c3": 0.75}, - {"time": 0.45, "angle": 33.27, "curve": 0.25, "c3": 0.75}, {"time": 0.75, "angle": -8.3, "curve": 0.25, "c3": 0.75}, - {"time": 0.9, "angle": 33.27, "curve": 0.245, "c3": 0.637, "c4": 0.56}, {"time": 1, "angle": 12.24} + {"angle": -2.76, "curve": 0.378, "c2": 0.61, "c3": 0.713, "c4": 0.99}, {"time": 0.0333, "angle": -8.3, "curve": 0.144, "c3": 0.557}, + {"time": 0.15, "angle": 23.74, "curve": 0.455, "c3": 0.807}, {"time": 0.2667, "angle": -8.3, "curve": 0.144, "c3": 0.557}, + {"time": 0.45, "angle": 20.07, "curve": 0.42, "c3": 0.765, "c4": 0.71}, {"time": 0.5833, "angle": -2.76} ] }, "@body2": { "rotate": [ - {"angle": -11.82, "curve": 0.33, "c2": 0.32, "c3": 0.67, "c4": 0.68}, {"time": 0.0333, "angle": -6.89, "curve": 0.381, "c2": 0.55, "c3": 0.742}, {"time": 0.1, "curve": 0.25, "c3": 0.75}, - {"time": 0.2167, "angle": 7.45, "curve": 0.25, "c3": 0.75}, {"time": 0.4833, "angle": -18.73, "curve": 0.25, "c3": 0.75}, {"time": 0.7833, "angle": 7.45, "curve": 0.25, "c3": 0.75}, - {"time": 0.9333, "angle": -18.73, "curve": 0.258, "c3": 0.619, "c4": 0.45}, {"time": 1, "angle": -11.82} + {"angle": -8.86, "curve": 0.379, "c2": 0.38, "c3": 0.714, "c4": 0.76}, {"time": 0.05, "angle": 2.34, "curve": 0.378, "c2": 0.61, "c3": 0.713, "c4": 0.99}, + {"time": 0.0833, "angle": 7.45, "curve": 0.144, "c3": 0.557}, {"time": 0.2, "angle": -18.73, "curve": 0.455, "c3": 0.807}, {"time": 0.3167, "angle": 7.45, "curve": 0.144, "c3": 0.557}, + {"time": 0.5, "angle": -18.73, "curve": 0.38, "c3": 0.717, "c4": 0.5}, {"time": 0.5833, "angle": -8.86} ], "translate": [ - {"x": 2.02, "y": -5.32, "curve": 0.375, "c2": 0.62, "c3": 0.716}, {"time": 0.0333, "curve": 0.25, "c3": 0.75}, {"time": 0.15, "x": -0.08, "y": 1.15, "curve": 0.25, "c3": 0.75}, - {"time": 0.4167, "x": 4.59, "y": -41.28, "curve": 0.25, "c3": 0.75}, {"time": 0.7167, "x": -0.08, "y": 1.15, "curve": 0.25, "c3": 0.75}, - {"time": 0.8667, "x": 15.54, "y": -40.86, "curve": 0.243, "c3": 0.68, "c4": 0.71}, {"time": 1, "x": 2.02, "y": -5.32} + {"x": 1.53, "y": -13.51, "curve": 0.395, "c2": 0.58, "c3": 0.731}, {"time": 0.05, "x": -0.08, "y": 1.15, "curve": 0.144, "c3": 0.557}, + {"time": 0.1667, "x": 4.59, "y": -41.28, "curve": 0.455, "c3": 0.807}, {"time": 0.2833, "x": -0.08, "y": 1.15, "curve": 0.144, "c3": 0.557}, + {"time": 0.4667, "x": 4.59, "y": -41.28, "curve": 0.405, "c3": 0.747, "c4": 0.63}, {"time": 0.5833, "x": 1.53, "y": -13.51} ] }, "body-braid6": { "rotate": [ - {"angle": 18.35, "curve": 0.25, "c3": 0.75}, {"time": 0.1667, "curve": 0.25, "c3": 0.75}, {"time": 0.2833, "angle": -20.17, "curve": 0.25, "c3": 0.75}, - {"time": 0.55, "angle": 18.35, "curve": 0.25, "c3": 0.75}, {"time": 0.85, "angle": -20.17, "curve": 0.25, "c3": 0.75}, {"time": 1, "angle": 18.35} + {"angle": -8.34, "curve": 0.363, "c2": 0.44, "c3": 0.755}, {"time": 0.1, "curve": 0.25, "c3": 0.625, "c4": 0.5}, {"time": 0.2167, "angle": -9.53, "curve": 0.375, "c2": 0.5, "c3": 0.75}, + {"time": 0.3333, "curve": 0.25, "c3": 0.75}, {"time": 0.5167, "angle": -13.2, "curve": 0.258, "c3": 0.619, "c4": 0.45}, {"time": 0.5833, "angle": -8.34} ] }, "body-braid5": { "rotate": [ - {"angle": 18.01, "curve": 0.375, "c2": 0.5, "c3": 0.75}, {"time": 0.0833, "curve": 0.25, "c3": 0.75}, {"time": 0.2, "angle": -7.27, "curve": 0.25, "c3": 0.75}, - {"time": 0.4667, "angle": 36.02, "curve": 0.25, "c3": 0.75}, {"time": 0.7667, "angle": -7.27, "curve": 0.25, "c3": 0.75}, - {"time": 0.9167, "angle": 36.02, "curve": 0.25, "c3": 0.625, "c4": 0.5}, {"time": 1, "angle": 18.01} + {"angle": 3.13, "curve": 0.395, "c2": 0.58, "c3": 0.731}, {"time": 0.05, "angle": -7.27, "curve": 0.144, "c3": 0.557}, {"time": 0.1667, "angle": 26.49, "curve": 0.455, "c3": 0.807}, + {"time": 0.2833, "angle": -7.27, "curve": 0.144, "c3": 0.557}, {"time": 0.4667, "angle": 22.82, "curve": 0.405, "c3": 0.747, "c4": 0.63}, {"time": 0.5833, "angle": 3.13} ] }, "body-braid": { "rotate": [ - {"angle": 2.92, "curve": 0.375, "c2": 0.62, "c3": 0.716}, {"time": 0.0333, "curve": 0.25, "c3": 0.75}, {"time": 0.15, "angle": -2.68, "curve": 0.25, "c3": 0.75}, - {"time": 0.4167, "angle": 22.42, "curve": 0.25, "c3": 0.75}, {"time": 0.7167, "angle": -2.68, "curve": 0.25, "c3": 0.75}, - {"time": 0.8667, "angle": 22.42, "curve": 0.243, "c3": 0.68, "c4": 0.71}, {"time": 1, "angle": 2.92} + {"angle": -1.2, "curve": 0.358, "c2": 0.63, "c3": 0.692, "c4": 0.99}, {"time": 0.0167, "angle": -2.68, "curve": 0.144, "c3": 0.557}, + {"time": 0.1333, "angle": 12.89, "curve": 0.455, "c3": 0.807}, {"time": 0.25, "angle": -2.68, "curve": 0.144, "c3": 0.557}, + {"time": 0.4333, "angle": 19.02, "curve": 0.436, "c3": 0.785, "c4": 0.83}, {"time": 0.5833, "angle": -1.2} + ] + }, + "@body5": { + "rotate": [ + {"curve": 0.144, "c3": 0.557}, {"time": 0.1167, "angle": 0.5, "curve": 0.455, "c3": 0.807}, {"time": 0.2333, "curve": 0.144, "c3": 0.557}, + {"time": 0.4167, "angle": 0.5, "curve": 0.455, "c3": 0.807}, {"time": 0.5833} ] } - }, - "events": [{"time": 0.4167, "name": "start-attack"}, {"time": 0.5, "name": "hit"}, {"time": 0.6667, "name": "hit"}] + } }, - "2686448266": { + "3945863285": { "slots": { - "eyes": {"attachment": [{"time": 0.0167, "name": "eyes-angry"}, {"time": 0.9167, "name": "eyes"}]}, - "mouth": {"attachment": [{"time": 0.0167, "name": "mouth-bite"}, {"time": 0.1833, "name": "mouth-open"}, {"time": 0.5, "name": "mouth-bite"}, {"time": 0.9167, "name": "mouth"}]} + "eyes": {"attachment": [{"time": 0.0167, "name": "eyes-angry"}, {"time": 0.25, "name": "eyes-shut"}, {"time": 0.3, "name": "eyes-angry"}, {"time": 0.4333, "name": "eyes"}]}, + "mouth": {"attachment": [{"time": 0.0167, "name": "mouth-bite"}, {"time": 0.3, "name": "mouth-open"}, {"time": 0.4333, "name": "mouth"}]} }, "bones": { "@pivot-back": { "rotate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "angle": -3.92, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "angle": 2.51, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.25, "angle": -6, "curve": "stepped"}, {"time": 0.2667, "angle": -20, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.4833, "angle": -22, "curve": "stepped"}, - {"time": 0.5, "angle": 10}, {"time": 0.6667, "angle": 12, "curve": "stepped"}, {"time": 0.7, "angle": 4, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.8333, "angle": 6, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1} + {"curve": "stepped"}, {"time": 0.0167, "angle": 7.5}, {"time": 0.2333, "angle": 10, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "angle": -5, "curve": 0.315, "c4": 0.8}, + {"time": 0.4833, "angle": 5, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5833} ], "translate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "x": 71.93, "y": -12.95, "curve": "stepped"}, {"time": 0.1667, "x": 71.93, "y": -12.95, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.25, "x": -135.5, "curve": "stepped"}, {"time": 0.2667, "x": -551.77, "y": 110, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.4833, "x": -551.77, "y": 120.52, "curve": "stepped"}, {"time": 0.5, "x": -565, "y": -35}, {"time": 0.6667, "x": -565, "y": -40, "curve": "stepped"}, - {"time": 0.7, "x": -135.5, "y": 5, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.8333, "x": -135.5, "y": 10, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1} - ], - "scale": [{"time": 0.25, "curve": "stepped"}, {"time": 0.2667, "x": -1, "curve": "stepped"}, {"time": 0.6667, "x": -1, "curve": "stepped"}, {"time": 0.7}] + {"curve": "stepped"}, {"time": 0.0167, "x": 29.16, "y": 18.85, "curve": "stepped"}, {"time": 0.2667, "x": 29.16, "y": 18.85, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.3833, "x": -1.17, "y": 18.85, "curve": 0.315, "c4": 0.8}, {"time": 0.4833} + ] }, - "leg-front-right-IK": { + "leg-back-left-IK": { "translate": [ - {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 30.89, "y": 11.74, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": 42.9, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.25, "x": -172.87, "y": 28.32, "curve": "stepped"}, {"time": 0.2667, "x": 355.74, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.4833, "x": 374.5, "curve": "stepped"}, - {"time": 0.5, "x": 488.71, "y": 62.54, "curve": 0.306, "c3": 0.695}, {"time": 0.6667, "x": 490.35, "y": 93.63, "curve": "stepped"}, {"time": 0.7, "x": -152.3, "curve": "stepped"}, - {"time": 0.8333, "x": -152.3, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1} + {"curve": "stepped"}, {"time": 0.0167, "x": 50.74, "y": 0.9, "curve": "stepped"}, {"time": 0.2, "x": 50.74, "y": 0.9, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.25, "x": 12.5, "y": 6.45, "curve": 0, "c2": 0.8, "c3": 0.15}, {"time": 0.3667, "x": 5.47, "y": 26.12, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.4833} ] }, - "leg-front-left-IK": { + "@leg-back-left": { "translate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "x": 8.25, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": 42.9, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.25, "x": -192.09, "y": 31.17, "curve": "stepped"}, {"time": 0.2667, "x": -280.98, "y": 58.99, "curve": 0.306, "c3": 0.695}, - {"time": 0.4833, "x": -315.94, "y": 61.17, "curve": "stepped"}, {"time": 0.5, "x": -170.67, "curve": "stepped"}, {"time": 0.6667, "x": -170.67, "curve": "stepped"}, - {"time": 0.7, "x": -151.12, "curve": "stepped"}, {"time": 0.8333, "x": -151.12, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1} + {"curve": "stepped"}, {"time": 0.0167, "x": 18.74, "y": 14.65, "curve": "stepped"}, {"time": 0.1667, "x": 18.74, "y": 14.65, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.4833} ] }, - "@leg-front-left": { + "@pivot-main": { "translate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "x": -4.8, "y": 21.17, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.1667, "x": -0.53, "y": 0.11, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "x": -1, "y": -5.53, "curve": "stepped"}, - {"time": 0.2667, "x": 2.26, "y": 14.19, "curve": "stepped"}, {"time": 0.4833, "x": 2.26, "y": 14.19, "curve": "stepped"}, {"time": 0.5, "x": 3.58, "y": 7.39, "curve": "stepped"}, - {"time": 0.6667, "x": 3.58, "y": 7.39, "curve": "stepped"}, {"time": 0.7, "x": -1, "y": -5.53, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.8333, "x": -0.91, "y": -4.54, "curve": 0.315, "c4": 0.8}, {"time": 1} + {"curve": "stepped"}, {"time": 0.0167, "x": 33.18}, {"time": 0.2667, "x": 61.52, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3833, "x": 20.27, "y": 27.91, "curve": 0.315, "c4": 0.8}, + {"time": 0.4833} ] }, - "@leg-back-left": { + "@shadow": { "translate": [ - {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 0.67, "y": -7.85, "curve": 0.161, "c3": 0.854}, {"time": 0.1667, "x": 0.53, "y": -13.09, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.25, "curve": "stepped"}, {"time": 0.2667, "x": -16.19, "y": -13.84, "curve": "stepped"}, {"time": 0.4833, "x": -16.19, "y": -13.84, "curve": "stepped"}, - {"time": 0.5, "x": -2.2, "y": -22.7}, {"time": 0.6667, "x": -0.28, "y": -26.94, "curve": "stepped"}, {"time": 0.7} + {"curve": "stepped"}, {"time": 0.0167, "x": 33.22}, {"time": 0.2667, "x": 61.08, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3833, "x": 9.02, "curve": 0.315, "c4": 0.8}, + {"time": 0.4833} + ], + "scale": [ + {"curve": "stepped"}, {"time": 0.0167, "x": 1.1, "y": 1.1, "curve": "stepped"}, {"time": 0.2667, "x": 1.1, "y": 1.1, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.3833, "x": 0.98, "y": 0.98, "curve": 0.315, "c4": 0.8}, {"time": 0.4833, "x": 1.1, "y": 1.1, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5833} ] }, - "leg-back-left-IK": { - "translate": [ - {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 80.9, "curve": 0.161, "c3": 0.854}, {"time": 0.1667, "x": 49.4, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.25, "x": -96.78, "y": 27.51, "curve": "stepped"}, {"time": 0.2667, "x": -635.14, "y": 132.21, "curve": 0.306, "c3": 0.695}, - {"time": 0.4833, "x": -660.78, "y": 143.78, "curve": "stepped"}, {"time": 0.5, "x": -556.99, "y": -8.43, "curve": 0, "c2": 0.3, "c3": 0.544}, - {"time": 0.6667, "x": -552.72, "y": -5.12, "curve": "stepped"}, {"time": 0.7, "x": -130.76, "curve": "stepped"}, {"time": 0.8333, "x": -130.76, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 1} + "tail": { + "rotate": [ + {"curve": "stepped"}, {"time": 0.0167, "angle": -17.67}, {"time": 0.2333, "angle": -21.07, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.3167, "angle": -20.71, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.45, "angle": 25.83, "curve": 0.154, "c4": 0.9}, + {"time": 0.5167, "angle": -14.3, "curve": 0.161, "c3": 0.854}, {"time": 0.5833} ] }, "@leg-front-right": { "translate": [ - {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 4.31, "y": 11.86, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.1667, "x": -10.19, "y": -4.67, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "x": -1.86, "y": -9.26, "curve": "stepped"}, - {"time": 0.2667, "x": -18.56, "y": -34.96, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.4833, "x": -13.51, "y": -17.45, "curve": "stepped"}, {"time": 0.5, "x": -4.07, "y": 8.84}, - {"time": 0.6667, "x": -1.39, "y": 0.5, "curve": "stepped"}, {"time": 0.7, "x": -1.86, "y": -9.26, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.8333, "x": -2.25, "y": -13.72, "curve": 0.315, "c4": 0.8}, {"time": 1} + {"curve": "stepped"}, {"time": 0.0167, "x": 27.88, "y": -51.35}, {"time": 0.2333, "x": 31.13, "y": -45.76}, {"time": 0.45, "x": 0.18, "y": 4.24}, + {"time": 0.4833, "x": -2.72, "y": -33.58, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5833} ] }, - "@shadow": { + "@leg-front-left": { "translate": [ - {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 61.96, "curve": "stepped"}, {"time": 0.1667, "x": 61.96, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.25, "x": -143.36, "curve": "stepped"}, {"time": 0.2667, "x": -150.21, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.4833, "x": -152.15, "curve": "stepped"}, - {"time": 0.5, "x": -142.78}, {"time": 0.6667, "x": -144.04, "curve": "stepped"}, {"time": 0.7, "x": -144.72, "curve": "stepped"}, - {"time": 0.8333, "x": -144.72, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1} - ], - "scale": [ - {"time": 0.0833, "curve": 0, "c2": 0.26, "c3": 0.369, "c4": 0.62}, {"time": 0.1667, "x": 1.06, "y": 1.06, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "curve": "stepped"}, - {"time": 0.2667, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.4833, "x": 0.9, "y": 0.9, "curve": "stepped"}, {"time": 0.5, "x": 1.06, "y": 1.06}, - {"time": 0.6667, "x": 1.1, "y": 1.1, "curve": "stepped"}, {"time": 0.7, "x": 1.06, "y": 1.06, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.8333, "x": 1.1, "y": 1.1, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1} + {"curve": "stepped"}, {"time": 0.0167, "x": 0.77, "y": 3.87}, {"time": 0.3667, "x": 1.05, "y": 9.15, "curve": 0.617, "c4": 0.6}, + {"time": 0.4833, "x": -1.09, "y": -14.69, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5833} ] }, - "tail": { - "rotate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "angle": 15.61, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "angle": 20.44, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.25, "angle": -15.58, "curve": "stepped"}, {"time": 0.2667, "angle": 40.35, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.4833, "angle": 41.35, "curve": "stepped"}, - {"time": 0.5, "angle": -14.65}, {"time": 0.6667, "angle": -15.65, "curve": "stepped"}, {"time": 0.7, "angle": -15.58, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.8333, "angle": 19.38, "curve": 0.313, "c3": 0.699}, {"time": 1} + "leg-front-right-IK": { + "translate": [ + {"time": 0.0167}, {"time": 0.2333, "x": -21.51, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "x": 6.83, "y": 84.78}, + {"time": 0.3833, "x": -2.72, "y": 58.18, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.45} + ] + }, + "leg-front-left-IK": { + "translate": [ + {"time": 0.2333, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "x": 12.33, "y": 29.93}, {"time": 0.3833, "x": 13.61, "y": 28.01, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.45} ] }, - "@pivot-main": {"translate": [{"time": 0.8333, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.9167, "y": 31, "curve": 0.315, "c4": 0.8}, {"time": 1}]}, "@body3": { "rotate": [ - {"angle": -0.24, "curve": 0.364, "c2": 0.64, "c3": 0.701}, {"time": 0.0333, "curve": 0.25, "c3": 0.75}, {"time": 0.15, "angle": -3.77, "curve": 0.25, "c3": 0.75}, - {"time": 0.45, "angle": -14, "curve": 0.25, "c3": 0.75}, {"time": 0.7667, "angle": -3.77, "curve": 0.244, "c3": 0.702, "c4": 0.8}, {"time": 1, "angle": -0.24} + {"angle": -8.78, "curve": 0.362, "c2": 0.35, "c3": 0.696, "c4": 0.7}, {"time": 0.0333, "angle": -4.84, "curve": 0.395, "c2": 0.58, "c3": 0.731}, + {"time": 0.0833, "curve": 0.25, "c3": 0.75}, {"time": 0.25, "angle": -18.31, "curve": 0.25, "c3": 0.75}, {"time": 0.3333, "angle": -3.77, "curve": 0.144, "c3": 0.557}, + {"time": 0.5, "angle": -14, "curve": 0.38, "c3": 0.717, "c4": 0.5}, {"time": 0.5833, "angle": -8.78} ], - "translate": [{"time": 0.1167, "curve": 0.25, "c3": 0.75}, {"time": 0.4167, "x": 45.36, "y": -33.56, "curve": 0.25, "c3": 0.75}, {"time": 0.7333}] + "translate": [ + {"x": 8.87, "y": -6.56, "curve": 0.378, "c2": 0.61, "c3": 0.713, "c4": 0.99}, {"time": 0.0333, "curve": "stepped"}, {"time": 0.2833, "curve": 0.144, "c3": 0.557}, + {"time": 0.45, "x": 45.36, "y": -33.56, "curve": 0.42, "c3": 0.765, "c4": 0.71}, {"time": 0.5833, "x": 8.87, "y": -6.56} + ] }, "@body4": { "rotate": [ - {"angle": -1.79, "curve": 0.374, "c2": 0.62, "c3": 0.714}, {"time": 0.05, "curve": 0.25, "c3": 0.75}, {"time": 0.1667, "angle": -15.35, "curve": 0.25, "c3": 0.75}, - {"time": 0.4667, "angle": 14.26, "curve": 0.25, "c3": 0.75}, {"time": 0.7833, "angle": -15.35, "curve": 0.243, "c3": 0.683, "c4": 0.73}, {"time": 1, "angle": -1.79} + {"angle": 4.92, "curve": 0.395, "c2": 0.58, "c3": 0.731}, {"time": 0.05, "curve": 0.25, "c3": 0.75}, {"time": 0.2167, "angle": -18.31, "curve": 0.25, "c3": 0.75}, + {"time": 0.3, "angle": -15.35, "curve": 0.144, "c3": 0.557}, {"time": 0.4667, "angle": 14.26, "curve": 0.405, "c3": 0.747, "c4": 0.63}, {"time": 0.5833, "angle": 4.92} ], "translate": [ - {"curve": 0.25, "c3": 0.75}, {"time": 0.1167, "x": -1.59, "y": 23.93, "curve": 0.25, "c3": 0.75}, {"time": 0.4167, "x": 6.55, "y": -29.78, "curve": 0.25, "c3": 0.75}, - {"time": 0.7333, "x": -1.59, "y": 23.93, "curve": 0.25, "c3": 0.75}, {"time": 1} + {"curve": 0.25, "c3": 0.75}, {"time": 0.25, "x": -1.59, "y": 23.93, "curve": 0.144, "c3": 0.557}, {"time": 0.4167, "x": 6.55, "y": -29.78, "curve": 0.455, "c3": 0.807}, {"time": 0.5833} ] }, "@body6": { "rotate": [ - {"angle": -0.95, "curve": 0.352, "c2": 0.41, "c3": 0.688, "c4": 0.76}, {"time": 0.0333, "angle": -0.33, "curve": 0.364, "c2": 0.64, "c3": 0.701}, - {"time": 0.0667, "curve": 0.25, "c3": 0.75}, {"time": 0.1833, "angle": -5.24, "curve": 0.25, "c3": 0.75}, {"time": 0.4833, "angle": 25.77, "curve": 0.25, "c3": 0.75}, - {"time": 0.8, "angle": -5.24, "curve": 0.242, "c3": 0.667, "c4": 0.67}, {"time": 1, "angle": -0.95} + {"angle": 24.05, "curve": 0.408, "c2": 0.24, "c3": 0.748, "c4": 0.76}, {"time": 0.1, "angle": 5.04, "curve": 0.378, "c2": 0.61, "c3": 0.713, "c4": 0.99}, + {"time": 0.1333, "curve": 0.25, "c3": 0.75}, {"time": 0.3, "angle": -18.31, "curve": 0.25, "c3": 0.75}, {"time": 0.3833, "angle": -5.24, "curve": 0.144, "c3": 0.557}, + {"time": 0.55, "angle": 25.77, "curve": 0.35, "c2": 0.01, "c3": 0.684, "c4": 0.39}, {"time": 0.5833, "angle": 24.05} ], "translate": [ - {"x": 0.36, "y": -0.26, "curve": 0.364, "c2": 0.64, "c3": 0.701}, {"time": 0.0333, "curve": 0.25, "c3": 0.75}, {"time": 0.15, "x": 5.81, "y": -4.07, "curve": 0.25, "c3": 0.75}, - {"time": 0.45, "x": -70.52, "y": 35.61, "curve": 0.25, "c3": 0.75}, {"time": 0.7667, "x": 5.81, "y": -4.07, "curve": 0.244, "c3": 0.702, "c4": 0.8}, {"time": 1, "x": 0.36, "y": -0.26} + {"x": -53.54, "y": 27.04, "curve": 0.43, "c2": 0.44, "c3": 0.772}, {"time": 0.1, "curve": 0.25, "c3": 0.75}, {"time": 0.35, "x": 5.81, "y": -4.07, "curve": 0.144, "c3": 0.557}, + {"time": 0.5167, "x": -70.52, "y": 35.61, "curve": 0.369, "c3": 0.705, "c4": 0.46}, {"time": 0.5833, "x": -53.54, "y": 27.04} ] }, "body-braid2": { "rotate": [ - {"curve": 0.25, "c3": 0.75}, {"time": 0.1167, "angle": -1.43, "curve": 0.25, "c3": 0.75}, {"time": 0.4167, "angle": 20.83, "curve": 0.25, "c3": 0.75}, - {"time": 0.7333, "angle": -1.43, "curve": 0.25, "c3": 0.75}, {"time": 1} + {"curve": 0.289, "c2": 0.15, "c3": 0.609, "c4": 0.52}, {"time": 0.1667, "angle": -13.49, "curve": 0.303, "c2": 0.3, "c3": 0.633, "c4": 0.64}, + {"time": 0.25, "angle": 11.59, "curve": 0.144, "c3": 0.254}, {"time": 0.4167, "angle": 20.83, "curve": 0.455, "c3": 0.807}, {"time": 0.5833} ] }, "body-braid4": { "rotate": [ - {"angle": -3.87, "curve": 0.382, "c2": 0.56, "c3": 0.74}, {"time": 0.1, "curve": 0.25, "c3": 0.75}, {"time": 0.2167, "angle": -11.53, "curve": 0.25, "c3": 0.75}, - {"time": 0.5167, "angle": 27.46, "curve": 0.25, "c3": 0.75}, {"time": 0.8333, "angle": -11.53, "curve": 0.244, "c3": 0.641, "c4": 0.57}, {"time": 1, "angle": -3.87} + {"angle": 17.5, "curve": 0.42, "c2": 0.5, "c3": 0.76}, {"time": 0.0833, "curve": 0.25, "c3": 0.75}, {"time": 0.25, "angle": -19.78, "curve": 0.303, "c2": 0.3, "c3": 0.633, "c4": 0.64}, + {"time": 0.3333, "angle": 1.48, "curve": 0.144, "c3": 0.254}, {"time": 0.5, "angle": 27.46, "curve": 0.38, "c3": 0.717, "c4": 0.5}, {"time": 0.5833, "angle": 17.5} ] }, "body-braid3": { "rotate": [ - {"angle": -0.97, "curve": 0.374, "c2": 0.62, "c3": 0.714}, {"time": 0.05, "curve": 0.25, "c3": 0.75}, {"time": 0.1667, "angle": -8.3, "curve": 0.25, "c3": 0.75}, - {"time": 0.4667, "angle": 33.27, "curve": 0.25, "c3": 0.75}, {"time": 0.7833, "angle": -8.3, "curve": 0.243, "c3": 0.683, "c4": 0.73}, {"time": 1, "angle": -0.97} + {"angle": 6.5, "curve": 0.378, "c2": 0.61, "c3": 0.713, "c4": 0.99}, {"time": 0.0333, "curve": 0.25, "c3": 0.75}, + {"time": 0.2, "angle": -17.77, "curve": 0.303, "c2": 0.3, "c3": 0.633, "c4": 0.64}, {"time": 0.2833, "angle": 4.71, "curve": 0.144, "c3": 0.254}, + {"time": 0.45, "angle": 33.27, "curve": 0.42, "c3": 0.765, "c4": 0.71}, {"time": 0.5833, "angle": 6.5} ] }, "@body2": { "rotate": [ - {"angle": 3.09, "curve": 0.344, "c2": 0.37, "c3": 0.683, "c4": 0.72}, {"time": 0.05, "angle": 1.38, "curve": 0.379, "c2": 0.6, "c3": 0.724}, {"time": 0.1167, "curve": 0.25, "c3": 0.75}, - {"time": 0.2333, "angle": 7.45, "curve": 0.25, "c3": 0.75}, {"time": 0.5333, "angle": -18.73, "curve": 0.25, "c3": 0.75}, - {"time": 0.85, "angle": 7.45, "curve": 0.247, "c3": 0.632, "c4": 0.53}, {"time": 1, "angle": 3.09} + {"angle": -3.66, "curve": 0.378, "c2": 0.61, "c3": 0.713, "c4": 0.99}, {"time": 0.0333, "curve": 0.25, "c3": 0.75}, {"time": 0.2, "angle": -18.31, "curve": 0.25, "c3": 0.75}, + {"time": 0.2833, "angle": 7.45, "curve": 0.144, "c3": 0.557}, {"time": 0.45, "angle": -18.73, "curve": 0.42, "c3": 0.765, "c4": 0.71}, {"time": 0.5833, "angle": -3.66} ], "translate": [ - {"x": -0.01, "y": 0.13, "curve": 0.374, "c2": 0.62, "c3": 0.714}, {"time": 0.05, "curve": 0.25, "c3": 0.75}, {"time": 0.1667, "x": -0.08, "y": 1.15, "curve": 0.25, "c3": 0.75}, - {"time": 0.4667, "x": 4.59, "y": -41.28, "curve": 0.25, "c3": 0.75}, {"time": 0.7833, "x": -0.08, "y": 1.15, "curve": 0.243, "c3": 0.683, "c4": 0.73}, {"time": 1, "x": -0.01, "y": 0.13} + {"curve": 0.25, "c3": 0.75}, {"time": 0.25, "x": -0.08, "y": 1.15, "curve": 0.144, "c3": 0.557}, {"time": 0.4167, "x": 4.59, "y": -41.28, "curve": 0.455, "c3": 0.807}, {"time": 0.5833} ] }, "body-braid6": { "rotate": [ - {"angle": -13.4, "curve": 0.359, "c2": 0.43, "c3": 0.756}, {"time": 0.1667, "curve": 0.25, "c3": 0.75}, {"time": 0.2833, "angle": -20.17, "curve": 0.25, "c3": 0.75}, - {"time": 0.5833, "angle": 18.35, "curve": 0.25, "c3": 0.75}, {"time": 0.9, "angle": -20.17, "curve": 0.26, "c3": 0.618, "c4": 0.44}, {"time": 1, "angle": -13.4} + {"angle": 1.2, "curve": 0.232, "c2": 0.57, "c3": 0.548}, {"time": 0.1167, "curve": 0.25, "c3": 0.75}, + {"time": 0.2833, "angle": -12.6, "curve": 0.303, "c2": 0.3, "c3": 0.633, "c4": 0.64}, {"time": 0.3667, "angle": 13.01, "curve": 0.222, "c3": 0.41, "c4": 0.59}, + {"time": 0.5833, "angle": 1.2} ] }, "body-braid5": { "rotate": [ - {"angle": -1.87, "curve": 0.382, "c2": 0.58, "c3": 0.733}, {"time": 0.0833, "curve": 0.25, "c3": 0.75}, {"time": 0.2, "angle": -7.27, "curve": 0.25, "c3": 0.75}, - {"time": 0.5, "angle": 36.02, "curve": 0.25, "c3": 0.75}, {"time": 0.8167, "angle": -7.27, "curve": 0.243, "c3": 0.653, "c4": 0.62}, {"time": 1, "angle": -1.87} + {"angle": 12.44, "curve": 0.395, "c2": 0.58, "c3": 0.731}, {"time": 0.05, "curve": 0.25, "c3": 0.75}, + {"time": 0.2167, "angle": -17.13, "curve": 0.303, "c2": 0.3, "c3": 0.633, "c4": 0.64}, {"time": 0.3, "angle": 5.74, "curve": 0.144, "c3": 0.254}, + {"time": 0.4667, "angle": 36.02, "curve": 0.405, "c3": 0.747, "c4": 0.63}, {"time": 0.5833, "angle": 12.44} ] }, "body-braid": { "rotate": [ - {"angle": -0.17, "curve": 0.364, "c2": 0.64, "c3": 0.701}, {"time": 0.0333, "curve": 0.25, "c3": 0.75}, {"time": 0.15, "angle": -2.68, "curve": 0.25, "c3": 0.75}, - {"time": 0.45, "angle": 22.42, "curve": 0.25, "c3": 0.75}, {"time": 0.7667, "angle": -2.68, "curve": 0.244, "c3": 0.702, "c4": 0.8}, {"time": 1, "angle": -0.17} + {"angle": 1.53, "curve": 0.358, "c2": 0.63, "c3": 0.692, "c4": 0.99}, {"time": 0.0167, "curve": 0.25, "c3": 0.75}, + {"time": 0.1833, "angle": -14.27, "curve": 0.303, "c2": 0.3, "c3": 0.633, "c4": 0.64}, {"time": 0.2667, "angle": 10.34, "curve": 0.144, "c3": 0.254}, + {"time": 0.4333, "angle": 22.42, "curve": 0.436, "c3": 0.785, "c4": 0.83}, {"time": 0.5833, "angle": 1.53} ] - }, - "@body5": {"rotate": [{"time": 0.1167, "curve": 0.25, "c3": 0.75}, {"time": 0.4167, "angle": 0.5, "curve": 0.25, "c3": 0.75}, {"time": 0.7333}]} - }, - "events": [{"time": 0.3333, "name": "start-attack"}, {"time": 0.5, "name": "hit"}] + } + } }, - "3253321365": { + "2469511866": { "slots": { - "eyes": {"attachment": [{"time": 0.05, "name": "eyes-angry"}, {"time": 0.6667, "name": "eyes-shut"}, {"time": 0.75, "name": "eyes"}]}, - "mouth": {"attachment": [{"time": 0.05, "name": "mouth-bite"}, {"time": 0.2667, "name": "mouth-open"}, {"time": 0.55, "name": "mouth-bite"}, {"time": 0.75, "name": "mouth"}]} + "eyes": {"attachment": [{"time": 0.05, "name": "eyes-angry"}, {"time": 0.7, "name": "eyes"}]}, + "mouth": {"attachment": [{"time": 0.05, "name": "mouth-bite"}, {"time": 0.2833, "name": "mouth-open"}, {"time": 0.4667, "name": "mouth-bite"}, {"time": 0.7, "name": "mouth"}]} }, "bones": { - "@leg-front-right": { - "translate": [ - {"curve": 0, "c2": 0.4, "c3": 0.383}, {"time": 0.25, "x": -1.86, "y": -9.26, "curve": "stepped"}, {"time": 0.3167, "x": -1.86, "y": -9.26, "curve": "stepped"}, - {"time": 0.3333, "x": -1.99, "y": -1.73}, {"time": 0.5, "x": -2.65, "y": -7.47, "curve": "stepped"}, {"time": 0.55, "x": -2.13, "y": 6.97, "curve": 0.306, "c3": 0.695}, - {"time": 0.6667, "x": 13.75, "y": -28.79, "curve": 0, "c2": 0.3, "c3": 0.54}, {"time": 0.8333} - ] - }, - "tail": { - "rotate": [ - {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.25, "angle": 21.98, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3167, "angle": -15.58, "curve": "stepped"}, - {"time": 0.3333, "angle": 6.35}, {"time": 0.5, "angle": 10.35, "curve": "stepped"}, {"time": 0.55, "angle": -11.84, "curve": 0.313, "c3": 0.699}, - {"time": 0.6667, "angle": 16.95, "curve": 0.313, "c3": 0.699}, {"time": 0.8333} - ] - }, "@pivot-back": { "rotate": [ - {"curve": 0, "c2": 0.4, "c3": 0.383}, {"time": 0.15, "angle": 4, "curve": "stepped"}, {"time": 0.25, "angle": 4, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.3167, "curve": "stepped"}, {"time": 0.3333}, {"time": 0.5, "angle": -3, "curve": "stepped"}, {"time": 0.55, "curve": 0.313, "c3": 0.699}, - {"time": 0.6667, "angle": 6, "curve": 0.313, "c3": 0.699}, {"time": 0.8333} + {"curve": 0, "c2": 0.4, "c3": 0.383}, {"time": 0.15, "angle": 4, "curve": 0, "c2": 0.2, "c3": 0.851}, {"time": 0.2833, "angle": 7}, + {"time": 0.4167, "angle": 7.5, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5, "angle": 4, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.5833, "angle": 6, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.75} ], "translate": [ - {"curve": 0, "c2": 0.4, "c3": 0.383}, {"time": 0.25, "x": 25, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3167, "x": -135.5, "curve": "stepped"}, {"time": 0.3333, "x": -560.54}, - {"time": 0.5, "x": -577.1, "curve": "stepped"}, {"time": 0.55, "x": -151.24, "curve": 0.313, "c3": 0.699}, {"time": 0.6667, "x": -151.24, "y": 4.06, "curve": 0.313, "c3": 0.699}, - {"time": 0.8333} - ], - "scale": [{"time": 0.3167, "curve": "stepped"}, {"time": 0.3333, "x": -1, "curve": "stepped"}, {"time": 0.5, "x": -1, "curve": "stepped"}, {"time": 0.55}] + {"curve": 0, "c2": 0.4, "c3": 0.383}, {"time": 0.25, "x": 25, "curve": 1, "c2": -0.1, "c4": 0}, {"time": 0.2833, "x": -136, "y": 25.56}, + {"time": 0.4167, "x": -153.19, "y": 25.56, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5, "x": -176.94, "curve": "stepped"}, + {"time": 0.5833, "x": -176.94, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.75} + ] }, + "@pivot-main": {"translate": [{"time": 0.5833, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.6667, "y": 45.22, "curve": 0.315, "c4": 0.8}, {"time": 0.75}]}, "@leg-front-left": { "translate": [ - {"curve": 0, "c2": 0.4, "c3": 0.383}, {"time": 0.25, "x": -1, "y": -5.53, "curve": "stepped"}, {"time": 0.3167, "x": -1, "y": -5.53, "curve": "stepped"}, - {"time": 0.3333, "x": -1.12, "y": 1.52, "curve": "stepped"}, {"time": 0.55, "x": -1.12, "y": 1.52, "curve": 0.313, "c3": 0.699}, - {"time": 0.6667, "x": -1, "y": -5.53, "curve": 0, "c2": 0.3, "c3": 0.54}, {"time": 0.8333} + {"curve": 0, "c2": 0.4, "c3": 0.383}, {"time": 0.25, "x": -0.37, "y": -3.19, "curve": "stepped"}, + {"time": 0.5833, "x": -0.37, "y": -3.19, "curve": 0, "c2": 0.17, "c3": 0.45, "c4": 0.61}, {"time": 0.65, "x": -0.39, "y": 5.91, "curve": 0.345, "c2": 0.53, "c3": 0.751}, {"time": 0.75} ] }, - "@shadow": { + "@leg-front-right": { "translate": [ - {"time": 0.25, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3167, "x": -143.36, "curve": "stepped"}, {"time": 0.3333, "x": -143.36}, {"time": 0.5, "x": -157.56, "curve": "stepped"}, - {"time": 0.55, "x": -161.35, "curve": "stepped"}, {"time": 0.6667, "x": -161.35, "curve": 0.313, "c3": 0.699}, {"time": 0.8333} - ], - "scale": [ - {"curve": 0, "c2": 0.4, "c3": 0.383}, {"time": 0.25, "x": 1.08, "y": 1.08, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3167, "curve": "stepped"}, {"time": 0.3333}, - {"time": 0.5, "x": 1.08, "y": 1.08, "curve": "stepped"}, {"time": 0.55, "curve": 0.313, "c3": 0.699}, {"time": 0.6667, "x": 1.08, "y": 1.08, "curve": 0.313, "c3": 0.699}, - {"time": 0.8333} + {"curve": 0.617, "c4": 0.6}, {"time": 0.25, "x": -5.35, "y": -53.74}, {"time": 0.5833, "x": -2.3, "y": -22.53, "curve": 0, "c2": 0.17, "c3": 0.45, "c4": 0.61}, + {"time": 0.65, "x": -0.83, "y": 1.57, "curve": 0.345, "c2": 0.53, "c3": 0.751}, {"time": 0.75} ] }, "leg-front-left-IK": { "translate": [ - {"time": 0.25, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3167, "x": -192.09, "y": 31.17, "curve": "stepped"}, {"time": 0.3333, "x": -176.58, "y": 9.99, "curve": 0.31, "c4": 0.8}, - {"time": 0.5, "x": -211.11, "y": 5.88, "curve": "stepped"}, {"time": 0.55, "x": -180.48, "curve": "stepped"}, {"time": 0.6667, "x": -180.48, "curve": 0.313, "c3": 0.699}, - {"time": 0.8333} + {"curve": 0.462, "c3": 0.543}, {"time": 0.25, "x": 61.73, "curve": 0.702, "c4": 0.2}, {"time": 0.2833, "x": -43.29, "y": 59.07}, + {"time": 0.4167, "x": -61.19, "y": 52.81, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5, "x": -191.61, "curve": "stepped"}, + {"time": 0.5833, "x": -191.61, "curve": 0, "c2": 0.17, "c3": 0.45, "c4": 0.61}, {"time": 0.65, "x": -105.91, "y": -2.82, "curve": 0.345, "c2": 0.53, "c3": 0.751}, {"time": 0.75} ] }, "leg-front-right-IK": { "translate": [ - {"time": 0.25, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3167, "x": -59.07, "y": 28.32, "curve": "stepped"}, {"time": 0.3333, "x": 476, "y": 29.47, "curve": 0.31, "c4": 0.8}, - {"time": 0.5, "x": 448.23, "y": 9.95, "curve": "stepped"}, {"time": 0.55, "x": -180.48, "curve": "stepped"}, {"time": 0.6667, "x": -180.48, "curve": 0.313, "c3": 0.699}, {"time": 0.8333} + {"curve": 0.617, "c4": 0.6}, {"time": 0.25, "x": 73.82, "curve": 0.702, "c4": 0.2}, {"time": 0.2833, "x": -27.95, "y": 28.32}, + {"time": 0.4167, "x": -40.48, "y": 34.59, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5, "x": -191.61, "curve": "stepped"}, + {"time": 0.5833, "x": -191.61, "curve": 0, "c2": 0.17, "c3": 0.45, "c4": 0.61}, {"time": 0.65, "x": -103, "y": 4.15, "curve": 0.345, "c2": 0.53, "c3": 0.751}, {"time": 0.75} ] }, "leg-back-left-IK": { "translate": [ - {"time": 0.25, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3167, "x": -96.78, "y": 27.51, "curve": "stepped"}, {"time": 0.3333, "x": -531.4, "y": 29.98, "curve": 0.31, "c4": 0.8}, - {"time": 0.5, "x": -566.3, "y": 31.56, "curve": "stepped"}, {"time": 0.55, "x": -134.74, "curve": "stepped"}, {"time": 0.6667, "x": -134.74, "curve": 0.313, "c3": 0.699}, - {"time": 0.8333} + {"curve": 0.306, "c3": 0.695}, {"time": 0.25, "x": 44.44, "curve": 0.25, "c4": 0.2}, {"time": 0.2833, "x": -70.51, "y": 98.54}, + {"time": 0.4167, "x": -70.51, "y": 101.95, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5, "x": -197.17, "curve": "stepped"}, + {"time": 0.5833, "x": -197.17, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.75} ] }, - "@pivot-main": {"translate": [{"time": 0.6667, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.75, "y": 31, "curve": 0.315, "c4": 0.8}, {"time": 0.8333}]}, - "@leg-back-left": { - "translate": [{"time": 0.3167, "curve": "stepped"}, {"time": 0.3333, "x": -9.88, "y": -22.87}, {"time": 0.5, "x": -15.32, "y": -26.13, "curve": "stepped"}, {"time": 0.55}] + "@pivot-center": { + "rotate": [ + {"time": 0.25, "curve": 0.779, "c4": 0.3}, {"time": 0.2833, "angle": 10.18, "curve": "stepped"}, {"time": 0.4167, "angle": 10.18, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5} + ] + }, + "tail": { + "rotate": [ + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.25, "angle": 21.98, "curve": 0.851, "c4": 0.1}, {"time": 0.2833, "angle": -15.58}, + {"time": 0.4167, "angle": -20.71, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5, "angle": 19.93, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.5833, "angle": 23.12, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.6667, "angle": -14.25, "curve": 0.313, "c3": 0.699}, {"time": 0.75} + ] + }, + "@shadow": { + "translate": [ + {"time": 0.25, "curve": 0.851, "c4": 0.1}, {"time": 0.2833, "x": -143.36}, {"time": 0.4167, "x": -160.77, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.5, "x": -186.16, "curve": "stepped"}, {"time": 0.5833, "x": -186.16, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.75} + ], + "scale": [ + {"curve": 0, "c2": 0.4, "c3": 0.383}, {"time": 0.25, "x": 1.08, "y": 1.08, "curve": "stepped"}, {"time": 0.5, "x": 1.08, "y": 1.08, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.5833, "x": 1.12, "y": 1.12, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.6667, "x": 0.94, "y": 0.94, "curve": 0.315, "c4": 0.8}, {"time": 0.75} + ] }, "@body3": { "rotate": [ - {"angle": -0.32, "curve": 0.369, "c2": 0.63, "c3": 0.707}, {"time": 0.0333, "curve": 0.25, "c3": 0.75}, {"time": 0.1333, "angle": -3.77, "curve": 0.25, "c3": 0.75}, - {"time": 0.3833, "angle": -14, "curve": 0.25, "c3": 0.75}, {"time": 0.65, "angle": -3.77, "curve": 0.244, "c3": 0.693, "c4": 0.76}, {"time": 0.8333, "angle": -0.32} + {"angle": -0.16, "curve": 0.36, "c2": 0.64, "c3": 0.695}, {"time": 0.0167, "curve": 0.25, "c3": 0.75}, {"time": 0.2667, "angle": -3.77, "curve": 0.25, "c3": 0.75}, + {"time": 0.4333, "angle": -14, "curve": 0.25, "c3": 0.75}, {"time": 0.6, "angle": -3.77, "curve": 0.245, "c3": 0.711, "c4": 0.83}, {"time": 0.75, "angle": -0.16} ], - "translate": [{"time": 0.1, "curve": 0.25, "c3": 0.75}, {"time": 0.35, "x": 45.36, "y": -33.56, "curve": 0.25, "c3": 0.75}, {"time": 0.6167}] + "translate": [{"time": 0.25, "curve": 0.25, "c3": 0.75}, {"time": 0.4167, "x": 45.36, "y": -33.56, "curve": 0.25, "c3": 0.75}, {"time": 0.5833}] }, "@body4": { "rotate": [ - {"angle": -1.32, "curve": 0.369, "c2": 0.63, "c3": 0.707}, {"time": 0.0333, "curve": 0.25, "c3": 0.75}, {"time": 0.1333, "angle": -15.35, "curve": 0.25, "c3": 0.75}, - {"time": 0.3833, "angle": 14.26, "curve": 0.25, "c3": 0.75}, {"time": 0.65, "angle": -15.35, "curve": 0.244, "c3": 0.693, "c4": 0.76}, {"time": 0.8333, "angle": -1.32} + {"angle": -9.7, "curve": 0.33, "c2": 0.32, "c3": 0.665, "c4": 0.66}, {"time": 0.0167, "angle": -7.67, "curve": 0.375, "c2": 0.5, "c3": 0.75}, {"time": 0.1, "curve": 0.25, "c3": 0.75}, + {"time": 0.35, "angle": -15.35, "curve": 0.25, "c3": 0.75}, {"time": 0.5167, "angle": 14.26, "curve": 0.25, "c3": 0.75}, + {"time": 0.6833, "angle": -15.35, "curve": 0.258, "c3": 0.619, "c4": 0.45}, {"time": 0.75, "angle": -9.7} ], "translate": [ - {"curve": 0.25, "c3": 0.75}, {"time": 0.1, "x": -1.59, "y": 23.93, "curve": 0.25, "c3": 0.75}, {"time": 0.35, "x": 6.55, "y": -29.78, "curve": 0.25, "c3": 0.75}, - {"time": 0.6167, "x": -1.59, "y": 23.93, "curve": 0.25, "c3": 0.75}, {"time": 0.8333} + {"x": -0.07, "y": 1.02, "curve": 0.36, "c2": 0.64, "c3": 0.695}, {"time": 0.0167, "curve": 0.25, "c3": 0.75}, {"time": 0.2667, "x": -1.59, "y": 23.93, "curve": 0.25, "c3": 0.75}, + {"time": 0.4333, "x": 6.55, "y": -29.78, "curve": 0.25, "c3": 0.75}, {"time": 0.6, "x": -1.59, "y": 23.93, "curve": 0.245, "c3": 0.711, "c4": 0.83}, {"time": 0.75, "x": -0.07, "y": 1.02} ] }, "@body6": { "rotate": [ - {"angle": -1.81, "curve": 0.345, "c2": 0.37, "c3": 0.682, "c4": 0.72}, {"time": 0.0333, "angle": -0.86, "curve": 0.378, "c2": 0.61, "c3": 0.721}, - {"time": 0.0833, "curve": 0.25, "c3": 0.75}, {"time": 0.1833, "angle": -5.24, "curve": 0.25, "c3": 0.75}, {"time": 0.4333, "angle": 25.77, "curve": 0.25, "c3": 0.75}, - {"time": 0.7, "angle": -5.24, "curve": 0.245, "c3": 0.64, "c4": 0.57}, {"time": 0.8333, "angle": -1.81} + {"angle": -2.59, "curve": 0.347, "c2": 0.38, "c3": 0.694, "c4": 0.76}, {"time": 0.05, "angle": -0.68, "curve": 0.375, "c2": 0.62, "c3": 0.716}, + {"time": 0.0833, "curve": 0.25, "c3": 0.75}, {"time": 0.3333, "angle": -5.24, "curve": 0.25, "c3": 0.75}, {"time": 0.5, "angle": 25.77, "curve": 0.25, "c3": 0.75}, + {"time": 0.6667, "angle": -5.24, "curve": 0.25, "c3": 0.625, "c4": 0.5}, {"time": 0.75, "angle": -2.59} ], "translate": [ - {"x": 0.5, "y": -0.35, "curve": 0.369, "c2": 0.63, "c3": 0.707}, {"time": 0.0333, "curve": 0.25, "c3": 0.75}, {"time": 0.1333, "x": 5.81, "y": -4.07, "curve": 0.25, "c3": 0.75}, - {"time": 0.3833, "x": -70.52, "y": 35.61, "curve": 0.25, "c3": 0.75}, {"time": 0.65, "x": 5.81, "y": -4.07, "curve": 0.244, "c3": 0.693, "c4": 0.76}, - {"time": 0.8333, "x": 0.5, "y": -0.35} + {"x": 1.41, "y": -0.99, "curve": 0.382, "c2": 0.58, "c3": 0.731}, {"time": 0.05, "curve": 0.25, "c3": 0.75}, {"time": 0.3, "x": 5.81, "y": -4.07, "curve": 0.25, "c3": 0.75}, + {"time": 0.4667, "x": -70.52, "y": 35.61, "curve": 0.25, "c3": 0.75}, {"time": 0.6333, "x": 5.81, "y": -4.07, "curve": 0.243, "c3": 0.655, "c4": 0.63}, + {"time": 0.75, "x": 1.41, "y": -0.99} ] }, "body-braid2": { "rotate": [ - {"curve": 0.25, "c3": 0.75}, {"time": 0.1, "angle": -1.43, "curve": 0.25, "c3": 0.75}, {"time": 0.35, "angle": 20.83, "curve": 0.25, "c3": 0.75}, - {"time": 0.6167, "angle": -1.43, "curve": 0.25, "c3": 0.75}, {"time": 0.8333} + {"angle": -0.19, "curve": 0.32, "c2": 0.29, "c3": 0.757}, {"time": 0.2, "angle": -1.43, "curve": 0.25, "c3": 0.75}, {"time": 0.3667, "angle": 20.83, "curve": 0.25, "c3": 0.75}, + {"time": 0.5333, "angle": -1.43, "curve": 0.25, "c3": 0.75}, {"time": 0.7, "curve": 0.284, "c3": 0.625, "c4": 0.38}, {"time": 0.75, "angle": -0.19} ] }, "body-braid4": { "rotate": [ - {"angle": -6.35, "curve": 0.371, "c2": 0.48, "c3": 0.752}, {"time": 0.1167, "curve": 0.25, "c3": 0.75}, {"time": 0.2167, "angle": -11.53, "curve": 0.25, "c3": 0.75}, - {"time": 0.4667, "angle": 27.46, "curve": 0.25, "c3": 0.75}, {"time": 0.7333, "angle": -11.53, "curve": 0.253, "c3": 0.622, "c4": 0.48}, {"time": 0.8333, "angle": -6.35} + {"angle": -7.35, "curve": 0.363, "c2": 0.44, "c3": 0.755}, {"time": 0.1, "curve": 0.25, "c3": 0.75}, {"time": 0.35, "angle": -11.53, "curve": 0.25, "c3": 0.75}, + {"time": 0.5167, "angle": 27.46, "curve": 0.25, "c3": 0.75}, {"time": 0.6833, "angle": -11.53, "curve": 0.305, "c3": 0.64, "c4": 0.36}, + {"time": 0.7, "angle": -11.04, "curve": 0.289, "c2": 0.17, "c3": 0.637, "c4": 0.56}, {"time": 0.75, "angle": -7.35} ] }, "body-braid3": { "rotate": [ - {"angle": -1.36, "curve": 0.378, "c2": 0.61, "c3": 0.721}, {"time": 0.05, "curve": 0.25, "c3": 0.75}, {"time": 0.15, "angle": -8.3, "curve": 0.25, "c3": 0.75}, - {"time": 0.4, "angle": 33.27, "curve": 0.25, "c3": 0.75}, {"time": 0.6667, "angle": -8.3, "curve": 0.242, "c3": 0.671, "c4": 0.68}, {"time": 0.8333, "angle": -1.36} + {"angle": -0.33, "curve": 0.36, "c2": 0.64, "c3": 0.695}, {"time": 0.0167, "curve": 0.25, "c3": 0.75}, {"time": 0.2667, "angle": -8.3, "curve": 0.25, "c3": 0.75}, + {"time": 0.4333, "angle": 33.27, "curve": 0.25, "c3": 0.75}, {"time": 0.6, "angle": -8.3, "curve": 0.245, "c3": 0.637, "c4": 0.56}, + {"time": 0.7, "angle": -3.05, "curve": 0.363, "c2": 0.44, "c3": 0.711, "c4": 0.83}, {"time": 0.75, "angle": -0.33} ] }, "@body2": { "rotate": [ - {"angle": 4.08, "curve": 0.342, "c2": 0.36, "c3": 0.69, "c4": 0.74}, {"time": 0.0667, "angle": 1.22, "curve": 0.378, "c2": 0.61, "c3": 0.721}, - {"time": 0.1167, "curve": 0.25, "c3": 0.75}, {"time": 0.2167, "angle": 7.45, "curve": 0.25, "c3": 0.75}, {"time": 0.4667, "angle": -18.73, "curve": 0.25, "c3": 0.75}, - {"time": 0.7333, "angle": 7.45, "curve": 0.253, "c3": 0.622, "c4": 0.48}, {"time": 0.8333, "angle": 4.08} + {"angle": 3.71, "curve": 0.339, "c2": 0.35, "c3": 0.679, "c4": 0.7}, {"time": 0.0333, "angle": 1.81, "curve": 0.382, "c2": 0.58, "c3": 0.731}, + {"time": 0.0833, "curve": 0.25, "c3": 0.75}, {"time": 0.3333, "angle": 7.45, "curve": 0.25, "c3": 0.75}, {"time": 0.5, "angle": -18.73, "curve": 0.25, "c3": 0.75}, + {"time": 0.6667, "angle": 7.45, "curve": 0.25, "c3": 0.625, "c4": 0.5}, {"time": 0.75, "angle": 3.71} ], "translate": [ - {"x": -0.02, "y": 0.29, "curve": 0.382, "c2": 0.58, "c3": 0.732}, {"time": 0.0667, "curve": 0.25, "c3": 0.75}, {"time": 0.1667, "x": -0.08, "y": 1.15, "curve": 0.25, "c3": 0.75}, - {"time": 0.4167, "x": 4.59, "y": -41.28, "curve": 0.25, "c3": 0.75}, {"time": 0.6833, "x": -0.08, "y": 1.15, "curve": 0.243, "c3": 0.654, "c4": 0.62}, - {"time": 0.8333, "x": -0.02, "y": 0.29} + {"x": -0.01, "y": 0.15, "curve": 0.375, "c2": 0.62, "c3": 0.716}, {"time": 0.0333, "curve": 0.25, "c3": 0.75}, {"time": 0.2833, "x": -0.08, "y": 1.15, "curve": 0.25, "c3": 0.75}, + {"time": 0.45, "x": 4.59, "y": -41.28, "curve": 0.25, "c3": 0.75}, {"time": 0.6167, "x": -0.08, "y": 1.15, "curve": 0.243, "c3": 0.68, "c4": 0.71}, {"time": 0.75, "x": -0.01, "y": 0.15} ] }, "body-braid6": { "rotate": [ - {"angle": -16.88, "curve": 0.329, "c2": 0.32, "c3": 0.758}, {"time": 0.1667, "curve": 0.25, "c3": 0.75}, {"time": 0.2667, "angle": -20.17, "curve": 0.25, "c3": 0.75}, - {"time": 0.5167, "angle": 18.35, "curve": 0.25, "c3": 0.75}, {"time": 0.7833, "angle": -20.17, "curve": 0.279, "c3": 0.622, "c4": 0.39}, {"time": 0.8333, "angle": -16.88} + {"angle": -19.32, "curve": 0.289, "c2": 0.17, "c3": 0.755}, {"time": 0.15, "curve": 0.25, "c3": 0.75}, {"time": 0.4, "angle": -20.17, "curve": 0.25, "c3": 0.75}, + {"time": 0.5667, "angle": 18.35, "curve": 0.243, "c3": 0.68, "c4": 0.71}, {"time": 0.7, "angle": -15.16, "curve": 0.375, "c2": 0.62, "c3": 0.716}, + {"time": 0.7333, "angle": -20.17, "curve": 0.305, "c3": 0.64, "c4": 0.36}, {"time": 0.75, "angle": -19.32} ] }, "body-braid5": { "rotate": [ - {"angle": -2.53, "curve": 0.382, "c2": 0.55, "c3": 0.741}, {"time": 0.0833, "curve": 0.25, "c3": 0.75}, {"time": 0.1833, "angle": -7.27, "curve": 0.25, "c3": 0.75}, - {"time": 0.4333, "angle": 36.02, "curve": 0.25, "c3": 0.75}, {"time": 0.7, "angle": -7.27, "curve": 0.245, "c3": 0.64, "c4": 0.57}, {"time": 0.8333, "angle": -2.53} + {"angle": -1.77, "curve": 0.382, "c2": 0.58, "c3": 0.731}, {"time": 0.05, "curve": 0.25, "c3": 0.75}, {"time": 0.3, "angle": -7.27, "curve": 0.25, "c3": 0.75}, + {"time": 0.4667, "angle": 36.02, "curve": 0.25, "c3": 0.75}, {"time": 0.6333, "angle": -7.27, "curve": 0.258, "c3": 0.619, "c4": 0.45}, + {"time": 0.7, "angle": -4.6, "curve": 0.333, "c2": 0.33, "c3": 0.68, "c4": 0.71}, {"time": 0.75, "angle": -1.77} ] }, "body-braid": { "rotate": [ - {"angle": -0.23, "curve": 0.369, "c2": 0.63, "c3": 0.707}, {"time": 0.0333, "curve": 0.25, "c3": 0.75}, {"time": 0.1333, "angle": -2.68, "curve": 0.25, "c3": 0.75}, - {"time": 0.3833, "angle": 22.42, "curve": 0.25, "c3": 0.75}, {"time": 0.65, "angle": -2.68, "curve": 0.244, "c3": 0.693, "c4": 0.76}, {"time": 0.8333, "angle": -0.23} + {"angle": -0.06, "curve": 0.277, "c2": 0.12, "c3": 0.754}, {"time": 0.2333, "angle": -2.68, "curve": 0.25, "c3": 0.75}, {"time": 0.4, "angle": 22.42, "curve": 0.25, "c3": 0.75}, + {"time": 0.5667, "angle": -2.68, "curve": 0.243, "c3": 0.68, "c4": 0.71}, {"time": 0.7, "angle": -0.35, "curve": 0.375, "c2": 0.62, "c3": 0.716}, + {"time": 0.7333, "curve": 0.313, "c3": 0.648, "c4": 0.35}, {"time": 0.75, "angle": -0.06} ] - }, - "@body5": {"rotate": [{"time": 0.1, "curve": 0.25, "c3": 0.75}, {"time": 0.35, "angle": 0.5, "curve": 0.25, "c3": 0.75}, {"time": 0.6167}]} + } }, - "events": [{"time": 0.25, "name": "start-attack"}, {"time": 0.3333, "name": "hit"}] + "events": [{"time": 0.2167, "name": "start-attack"}, {"time": 0.4167, "name": "hit"}] }, - "4217013558": { + "2815381870": { + "slots": { + "eyes": {"attachment": [{"time": 0.1333, "name": "eyes-angry"}, {"time": 0.6667, "name": "eyes"}]}, + "mouth": {"attachment": [{"time": 0.1333, "name": "mouth-bite"}, {"time": 0.2667, "name": "mouth-open"}, {"time": 0.4167, "name": "mouth-bite"}, {"time": 0.6667, "name": "mouth"}]} + }, "bones": { "@pivot-back": { "rotate": [ - {"curve": 0, "c2": 0.34, "c3": 0.465}, {"time": 0.1667, "angle": 8.43, "curve": 0.614, "c4": 0.29}, {"time": 0.4167, "angle": -69.48, "curve": 0, "c2": 0.1, "c4": 0.9}, - {"time": 0.5833, "angle": 151.42, "curve": 0, "c2": 0.3, "c3": 0.535}, {"time": 0.8333, "angle": -5.75, "curve": 0, "c2": 0.15, "c4": 0.85}, - {"time": 1, "angle": -7.09, "curve": 0, "c2": 0.3, "c3": 0.542}, {"time": 1.25, "angle": 7.21, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1.5} + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "angle": -3.92, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "angle": 2.51, "curve": 0, "c2": 0.3, "c3": 0.544}, + {"time": 0.35, "angle": -4.74, "curve": 0.7, "c4": 0.3}, {"time": 0.4167, "angle": 2}, {"time": 0.5833, "angle": 4, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.75} ], "translate": [ - {"x": 0.02, "y": 44.43, "curve": 0, "c2": 0.34, "c3": 0.465}, {"time": 0.1667, "x": 25.79, "y": 23.82, "curve": 0.614, "c4": 0.29}, - {"time": 0.4167, "x": -156.83, "y": 231.34, "curve": 0, "c2": 0.1, "c4": 0.9}, {"time": 0.5833, "x": -1.88, "y": 372.46, "curve": 0, "c2": 0.19, "c3": 0.403, "c4": 0.57}, - {"time": 0.6667, "x": 196.15, "y": 317.74, "curve": 0.282, "c2": 0.45, "c3": 0.748}, {"time": 0.8333, "x": 558.6, "y": 68.09, "curve": 0, "c2": 0.15, "c4": 0.85}, - {"time": 1, "x": 586.58, "y": 68.09, "curve": 0, "c2": 0.3, "c3": 0.542}, {"time": 1.25, "x": 594.57, "y": 68.09, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 1.5, "x": 0.02, "y": 44.43} + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 71.93, "y": -12.95, "curve": "stepped"}, {"time": 0.25, "x": 71.93, "y": -12.95, "curve": 0, "c2": 0.3, "c3": 0.544}, + {"time": 0.4167, "x": -144.49, "y": -12.95, "curve": "stepped"}, {"time": 0.5833, "x": -144.49, "y": -12.95, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.75} ] }, - "tail": { - "rotate": [ - {"curve": 0, "c2": 0.34, "c3": 0.465}, {"time": 0.1667, "angle": 16.63, "curve": 0.622, "c4": 0.3}, {"time": 0.4167, "angle": -38.13, "curve": 0, "c2": 0.1, "c4": 0.9}, - {"time": 0.6667, "angle": 21.47, "curve": 0, "c2": 0.2, "c3": 0.698}, {"time": 1, "angle": -14.5, "curve": 0, "c2": 0.3, "c3": 0.549}, - {"time": 1.25, "angle": 17, "curve": 0, "c2": 0.2, "c3": 0.7}, {"time": 1.5} + "leg-back-left-IK": { + "translate": [ + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.1333, "x": 80.9, "curve": 0.161, "c3": 0.854}, {"time": 0.25, "x": 49.4}, + {"time": 0.3333, "x": -52.84, "y": 44.64, "curve": 0.315, "c4": 0.8}, {"time": 0.4167, "x": -131.67, "curve": "stepped"}, {"time": 0.5833, "x": -131.67}, {"time": 0.75} ] }, - "@leg-back-left": { - "rotate": [ - {"curve": 0, "c2": 0.34, "c3": 0.465}, {"time": 0.1667, "angle": -14.34, "curve": 0.619, "c4": 0.3}, {"time": 0.4167, "angle": 14.4, "curve": 0, "c2": 0.1, "c4": 0.9}, - {"time": 0.6667, "angle": -14.29, "curve": "stepped"}, {"time": 1, "angle": -14.29, "curve": 0, "c2": 0.3, "c3": 0.542}, - {"time": 1.25, "angle": 14.99, "curve": 0, "c2": 0.2, "c3": 0.693}, {"time": 1.5} + "leg-front-right-IK": { + "translate": [ + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 30.89, "y": 11.74, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "x": 42.9, "curve": 0, "c2": 0.3, "c3": 0.544}, + {"time": 0.3667, "x": -61.28, "y": 38.08, "curve": 0.161, "c4": 0.85}, {"time": 0.4167, "x": -153.64, "curve": "stepped"}, {"time": 0.5833, "x": -153.64, "curve": 0.154, "c4": 0.9}, + {"time": 0.7, "x": 13.43, "curve": 0.161, "c3": 0.854}, {"time": 0.75} + ] + }, + "leg-front-left-IK": { + "translate": [ + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 65.04, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "x": 75.35, "curve": 0, "c2": 0.3, "c3": 0.544}, + {"time": 0.3667, "x": -62.49, "y": 8.75, "curve": 0.161, "c4": 0.85}, {"time": 0.4167, "x": -141.78, "curve": "stepped"}, {"time": 0.5833, "x": -141.78, "curve": 0.159, "c4": 0.9}, + {"time": 0.7, "x": 13.43, "curve": 0.161, "c3": 0.854}, {"time": 0.75} ] }, "@leg-front-left": { - "rotate": [ - {"curve": 0, "c2": 0.34, "c3": 0.465}, {"time": 0.1667, "angle": -18.49, "curve": 0.619, "c4": 0.3}, {"time": 0.4167, "angle": 10.25, "curve": 0, "c2": 0.1, "c4": 0.9}, - {"time": 0.6667, "angle": -18.44}, {"time": 1, "angle": -22.13, "curve": 0, "c2": 0.3, "c3": 0.542}, {"time": 1.25, "angle": 7.14, "curve": 0, "c2": 0.2, "c3": 0.693}, {"time": 1.5} + "translate": [ + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": -0.15, "y": 1.81, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.25, "x": -0.94, "y": -15.09, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.4167, "x": -18.05, "y": -7.89, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.5833, "x": -15.37, "y": -13.49, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.75} ] }, "@leg-front-right": { - "rotate": [ - {"curve": 0, "c2": 0.34, "c3": 0.465}, {"time": 0.1667, "angle": -18.49, "curve": 0.619, "c4": 0.3}, {"time": 0.4167, "angle": 10.25, "curve": 0, "c2": 0.1, "c4": 0.9}, - {"time": 0.6667, "angle": -18.44}, {"time": 1, "angle": -22.13, "curve": 0, "c2": 0.3, "c3": 0.542}, {"time": 1.25, "angle": 7.14, "curve": 0, "c2": 0.2, "c3": 0.693}, {"time": 1.5} + "translate": [ + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 4.31, "y": 11.86, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.25, "x": -10.19, "y": -4.67, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.4167, "x": -10.43, "y": -17.77, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.5833, "x": -11.41, "y": -27.57, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.75} ] }, - "@shadow": { + "@pivot-main": { "translate": [ - {"curve": 0, "c2": 0.34, "c3": 0.465}, {"time": 0.1667, "x": 19.25, "curve": 0.622, "c4": 0.3}, {"time": 0.4167, "x": -31.7, "curve": 0, "c2": 0.1, "c4": 0.9}, - {"time": 0.5833, "x": 395, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.8333, "x": 549.5, "curve": 0, "c2": 0.15, "c4": 0.85}, - {"time": 1, "x": 577.9, "curve": 0, "c2": 0.3, "c3": 0.549}, {"time": 1.25, "x": 587.3, "curve": 0, "c2": 0.2, "c3": 0.7}, {"time": 1.5} - ], - "scale": [ - {"curve": 0, "c2": 0.34, "c3": 0.465}, {"time": 0.1667, "x": 1.12, "y": 1.12, "curve": 0.622, "c4": 0.3}, {"time": 0.4167, "x": 0.84, "y": 0.84, "curve": 0, "c2": 0.1, "c4": 0.9}, - {"time": 0.5833, "x": 0.9, "y": 0.9, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.8333, "x": 0.98, "y": 0.98, "curve": 0, "c2": 0.15, "c4": 0.85}, - {"time": 1, "x": 0.94, "y": 0.94, "curve": 0, "c2": 0.3, "c3": 0.549}, {"time": 1.25, "x": 1.02, "y": 1.02, "curve": 0, "c2": 0.2, "c3": 0.7}, {"time": 1.5} + {"time": 0.25, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "y": 26.43, "curve": 0.315, "c4": 0.8}, {"time": 0.4167, "curve": "stepped"}, + {"time": 0.5833, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.6667, "y": 26.43, "curve": 0.315, "c4": 0.8}, {"time": 0.75} ] }, - "@body2": { + "@leg-back-left": { + "translate": [ + {"time": 0.0833, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "x": -0.35, "y": -13.05, "curve": "stepped"}, {"time": 0.3333, "x": -0.35, "y": -13.05}, + {"time": 0.5833, "x": -0.47, "y": -16.1, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.75} + ] + }, + "tail": { "rotate": [ - {"angle": -8.45, "curve": 0.349, "c2": 0.38, "c3": 0.693, "c4": 0.75}, {"time": 0.0667, "angle": -2.44, "curve": 0.375, "c2": 0.62, "c3": 0.716}, - {"time": 0.1167, "curve": 0.25, "c3": 0.75}, {"time": 0.2833, "angle": 7.45, "curve": 0.25, "c3": 0.75}, {"time": 0.7, "angle": -18.73, "curve": 0.25, "c3": 0.75}, - {"time": 1.1167, "angle": 7.45, "curve": 0.25, "c3": 0.75}, {"time": 1.3667, "angle": -18.73, "curve": 0.248, "c3": 0.628, "c4": 0.52}, {"time": 1.5, "angle": -8.45} - ], + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "angle": 12.92, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "angle": 18.48, "curve": 0, "c2": 0.3, "c3": 0.544}, + {"time": 0.35, "angle": -6.88, "curve": 0.7, "c4": 0.3}, {"time": 0.4167, "angle": 14}, {"time": 0.5833, "angle": 19.37, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.6833, "angle": -8.78, "curve": 0.313, "c3": 0.699}, {"time": 0.75} + ] + }, + "@shadow": { "translate": [ - {"x": 3.15, "y": -8.28, "curve": 0.38, "c2": 0.59, "c3": 0.727}, {"time": 0.0667, "curve": 0.25, "c3": 0.75}, {"time": 0.2333, "x": -0.08, "y": 1.15, "curve": 0.25, "c3": 0.75}, - {"time": 0.65, "x": 4.59, "y": -41.28, "curve": 0.25, "c3": 0.75}, {"time": 1.0667, "x": -0.08, "y": 1.15, "curve": 0.25, "c3": 0.75}, - {"time": 1.3167, "x": 15.54, "y": -40.86, "curve": 0.242, "c3": 0.663, "c4": 0.65}, {"time": 1.5, "x": 3.15, "y": -8.28} + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 61.96, "curve": "stepped"}, {"time": 0.25, "x": 61.96, "curve": 0, "c2": 0.3, "c3": 0.544}, + {"time": 0.35, "x": -121.98, "curve": 0.7, "c4": 0.3}, {"time": 0.4167, "x": -154.28, "curve": "stepped"}, {"time": 0.5833, "x": -154.28, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.75} + ], + "scale": [ + {"time": 0.0833, "curve": 0, "c2": 0.26, "c3": 0.369, "c4": 0.62}, {"time": 0.25, "x": 1.06, "y": 1.06, "curve": 0.192, "c2": 0.45, "c3": 0.623}, + {"time": 0.35, "x": 0.96, "y": 0.96, "curve": 0.7, "c4": 0.3}, {"time": 0.4167, "x": 1.08, "y": 1.08, "curve": "stepped"}, + {"time": 0.5833, "x": 1.08, "y": 1.08, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.75} ] }, "@body3": { "rotate": [ - {"angle": -5.15, "curve": 0.381, "c2": 0.55, "c3": 0.742}, {"time": 0.1, "curve": 0.25, "c3": 0.75}, {"time": 0.2667, "angle": -3.77, "curve": 0.25, "c3": 0.75}, - {"time": 0.6833, "angle": -14, "curve": 0.25, "c3": 0.75}, {"time": 1.1, "angle": -3.77, "curve": 0.25, "c3": 0.75}, - {"time": 1.35, "angle": -14, "curve": 0.245, "c3": 0.637, "c4": 0.56}, {"time": 1.5, "angle": -5.15} + {"angle": -0.48, "curve": 0.351, "c2": 0.42, "c3": 0.686, "c4": 0.76}, {"time": 0.0167, "angle": -0.16, "curve": 0.36, "c2": 0.64, "c3": 0.695}, + {"time": 0.0333, "curve": 0.25, "c3": 0.75}, {"time": 0.2833, "angle": -3.77, "curve": 0.25, "c3": 0.75}, {"time": 0.45, "angle": -14, "curve": 0.25, "c3": 0.75}, + {"time": 0.6167, "angle": -3.77, "curve": 0.243, "c3": 0.68, "c4": 0.71}, {"time": 0.75, "angle": -0.48} ], - "translate": [ - {"time": 0.1667, "curve": 0.25, "c3": 0.75}, {"time": 0.5833, "x": 45.36, "y": -33.56, "curve": 0.25, "c3": 0.75}, {"time": 1, "curve": 0.25, "c3": 0.75}, - {"time": 1.25, "x": 55.89, "y": -22.18, "curve": 0.25, "c3": 0.75}, {"time": 1.5} - ] + "translate": [{"time": 0.2667, "curve": 0.25, "c3": 0.75}, {"time": 0.4333, "x": 45.36, "y": -33.56, "curve": 0.25, "c3": 0.75}, {"time": 0.6}] }, "@body4": { "rotate": [ - {"angle": 0.47, "curve": 0.366, "c2": 0.63, "c3": 0.703}, {"time": 0.0333, "curve": 0.25, "c3": 0.75}, {"time": 0.2, "angle": -15.35, "curve": 0.25, "c3": 0.75}, - {"time": 0.6167, "angle": 14.26, "curve": 0.25, "c3": 0.75}, {"time": 1.0333, "angle": -15.35, "curve": 0.25, "c3": 0.75}, - {"time": 1.2833, "angle": 6.8, "curve": 0.244, "c3": 0.7, "c4": 0.79}, {"time": 1.5, "angle": 0.47} + {"angle": -11.62, "curve": 0.32, "c2": 0.29, "c3": 0.667, "c4": 0.67}, {"time": 0.05, "angle": -5.65, "curve": 0.381, "c2": 0.55, "c3": 0.742}, + {"time": 0.1167, "curve": 0.25, "c3": 0.75}, {"time": 0.3667, "angle": -15.35, "curve": 0.25, "c3": 0.75}, {"time": 0.5333, "angle": 14.26, "curve": 0.25, "c3": 0.75}, + {"time": 0.7, "angle": -15.35, "curve": 0.269, "c3": 0.618, "c4": 0.42}, {"time": 0.75, "angle": -11.62} ], "translate": [ - {"curve": 0.25, "c3": 0.75}, {"time": 0.1667, "x": -1.59, "y": 23.93, "curve": 0.25, "c3": 0.75}, {"time": 0.5833, "x": 6.55, "y": -29.78, "curve": 0.25, "c3": 0.75}, - {"time": 1, "x": -1.59, "y": 23.93, "curve": 0.25, "c3": 0.75}, {"time": 1.25, "x": 33.54, "y": -3.13, "curve": 0.25, "c3": 0.75}, {"time": 1.5} + {"x": -0.38, "y": 5.8, "curve": 0.382, "c2": 0.58, "c3": 0.731}, {"time": 0.05, "curve": 0.25, "c3": 0.75}, {"time": 0.3, "x": -1.59, "y": 23.93, "curve": 0.25, "c3": 0.75}, + {"time": 0.4667, "x": 6.55, "y": -29.78, "curve": 0.25, "c3": 0.75}, {"time": 0.6333, "x": -1.59, "y": 23.93, "curve": 0.243, "c3": 0.655, "c4": 0.63}, + {"time": 0.75, "x": -0.38, "y": 5.8} ] }, "@body6": { "rotate": [ - {"angle": 24.56, "curve": 0.317, "c2": 0.28, "c3": 0.683, "c4": 0.72}, {"time": 0.1167, "angle": 6.25, "curve": 0.38, "c2": 0.59, "c3": 0.727}, - {"time": 0.1833, "curve": 0.25, "c3": 0.75}, {"time": 0.35, "angle": -5.24, "curve": 0.25, "c3": 0.75}, {"time": 0.7667, "angle": 25.77, "curve": 0.25, "c3": 0.75}, - {"time": 1.1833, "angle": -5.24, "curve": 0.25, "c3": 0.75}, {"time": 1.4333, "angle": 30.87, "curve": 0.273, "c3": 0.62, "c4": 0.41}, {"time": 1.5, "angle": 24.56} + {"angle": -3.96, "curve": 0.321, "c2": 0.3, "c3": 0.679, "c4": 0.7}, {"time": 0.0667, "angle": -1.27, "curve": 0.382, "c2": 0.58, "c3": 0.731}, + {"time": 0.1167, "curve": 0.25, "c3": 0.75}, {"time": 0.3667, "angle": -5.24, "curve": 0.25, "c3": 0.75}, {"time": 0.5333, "angle": 25.77, "curve": 0.25, "c3": 0.75}, + {"time": 0.7, "angle": -5.24, "curve": 0.269, "c3": 0.618, "c4": 0.42}, {"time": 0.75, "angle": -3.96} ], "translate": [ - {"x": -22.02, "y": -12.04, "curve": 0.378, "c2": 0.52, "c3": 0.748}, {"time": 0.1167, "curve": 0.25, "c3": 0.75}, {"time": 0.2833, "x": 5.81, "y": -4.07, "curve": 0.25, "c3": 0.75}, - {"time": 0.7, "x": -70.52, "y": 35.61, "curve": 0.25, "c3": 0.75}, {"time": 1.1167, "x": 5.81, "y": -4.07, "curve": 0.25, "c3": 0.75}, - {"time": 1.3667, "x": -48.3, "y": -26.4, "curve": 0.248, "c3": 0.628, "c4": 0.52}, {"time": 1.5, "x": -22.02, "y": -12.04} + {"x": 2.14, "y": -1.5, "curve": 0.381, "c2": 0.55, "c3": 0.742}, {"time": 0.0667, "curve": 0.25, "c3": 0.75}, {"time": 0.3167, "x": 5.81, "y": -4.07, "curve": 0.25, "c3": 0.75}, + {"time": 0.4833, "x": -70.52, "y": 35.61, "curve": 0.25, "c3": 0.75}, {"time": 0.65, "x": 5.81, "y": -4.07, "curve": 0.245, "c3": 0.637, "c4": 0.56}, {"time": 0.75, "x": 2.14, "y": -1.5} ] }, "body-braid2": { "rotate": [ - {"angle": 16.54, "curve": 0.324, "c2": 0.3, "c3": 0.713, "c4": 0.82}, {"time": 0.15, "angle": 1.45, "curve": 0.366, "c2": 0.63, "c3": 0.703}, {"time": 0.1833, "curve": 0.25, "c3": 0.75}, - {"time": 0.35, "angle": -1.43, "curve": 0.25, "c3": 0.75}, {"time": 0.7667, "angle": 20.83, "curve": 0.25, "c3": 0.75}, {"time": 1.1833, "angle": -1.43, "curve": 0.25, "c3": 0.75}, - {"time": 1.4333, "angle": 20.83, "curve": 0.273, "c3": 0.62, "c4": 0.41}, {"time": 1.5, "angle": 16.54} + {"curve": 0.25, "c3": 0.75}, {"time": 0.25, "angle": -1.43, "curve": 0.25, "c3": 0.75}, {"time": 0.4167, "angle": 20.83, "curve": 0.25, "c3": 0.75}, + {"time": 0.5833, "angle": -1.43, "curve": 0.25, "c3": 0.75}, {"time": 0.75} + ] + }, + "body-braid4": { + "rotate": [ + {"angle": -5.76, "curve": 0.375, "c2": 0.5, "c3": 0.75}, {"time": 0.0833, "curve": 0.25, "c3": 0.75}, {"time": 0.3333, "angle": -11.53, "curve": 0.25, "c3": 0.75}, + {"time": 0.5, "angle": 27.46, "curve": 0.25, "c3": 0.75}, {"time": 0.6667, "angle": -11.53, "curve": 0.25, "c3": 0.625, "c4": 0.5}, {"time": 0.75, "angle": -5.76} ] }, "body-braid3": { "rotate": [ - {"angle": 32.56, "curve": 0.267, "c2": 0.1, "c3": 0.657, "c4": 0.63}, {"time": 0.15, "angle": 9.44, "curve": 0.382, "c2": 0.57, "c3": 0.735}, {"time": 0.2333, "curve": 0.25, "c3": 0.75}, - {"time": 0.4, "angle": -8.3, "curve": 0.25, "c3": 0.75}, {"time": 0.8167, "angle": 33.27, "curve": 0.25, "c3": 0.75}, {"time": 1.2333, "angle": -8.3, "curve": 0.25, "c3": 0.75}, - {"time": 1.4833, "angle": 33.27, "curve": 0.313, "c3": 0.648, "c4": 0.35}, {"time": 1.5, "angle": 32.56} + {"angle": -1.08, "curve": 0.375, "c2": 0.62, "c3": 0.716}, {"time": 0.0333, "curve": 0.25, "c3": 0.75}, {"time": 0.2833, "angle": -8.3, "curve": 0.25, "c3": 0.75}, + {"time": 0.45, "angle": 33.27, "curve": 0.25, "c3": 0.75}, {"time": 0.6167, "angle": -8.3, "curve": 0.243, "c3": 0.68, "c4": 0.71}, {"time": 0.75, "angle": -1.08} ] }, - "body-braid4": { + "@body2": { "rotate": [ - {"angle": 16.39, "curve": 0.382, "c2": 0.57, "c3": 0.735}, {"time": 0.0833, "angle": 27.46, "curve": 0.273, "c3": 0.62, "c4": 0.41}, - {"time": 0.15, "angle": 21.9, "curve": 0.337, "c2": 0.35, "c3": 0.758}, {"time": 0.3333, "curve": 0.25, "c3": 0.75}, {"time": 0.5, "angle": -11.53, "curve": 0.25, "c3": 0.75}, - {"time": 0.9167, "angle": 27.46, "curve": 0.25, "c3": 0.75}, {"time": 1.3333, "angle": -11.53, "curve": 0.243, "c3": 0.649, "c4": 0.6}, {"time": 1.5, "angle": 16.39} + {"angle": 2.71, "curve": 0.349, "c2": 0.39, "c3": 0.689, "c4": 0.74}, {"time": 0.0333, "angle": 0.97, "curve": 0.375, "c2": 0.62, "c3": 0.716}, + {"time": 0.0667, "curve": 0.25, "c3": 0.75}, {"time": 0.3167, "angle": 7.45, "curve": 0.25, "c3": 0.75}, {"time": 0.4833, "angle": -18.73, "curve": 0.25, "c3": 0.75}, + {"time": 0.65, "angle": 7.45, "curve": 0.245, "c3": 0.637, "c4": 0.56}, {"time": 0.75, "angle": 2.71} + ], + "translate": [ + {"x": -0.01, "y": 0.15, "curve": 0.375, "c2": 0.62, "c3": 0.716}, {"time": 0.0333, "curve": 0.25, "c3": 0.75}, {"time": 0.2833, "x": -0.08, "y": 1.15, "curve": 0.25, "c3": 0.75}, + {"time": 0.45, "x": 4.59, "y": -41.28, "curve": 0.25, "c3": 0.75}, {"time": 0.6167, "x": -0.08, "y": 1.15, "curve": 0.243, "c3": 0.68, "c4": 0.71}, {"time": 0.75, "x": -0.01, "y": 0.15} ] }, - "body-braid": { + "body-braid6": { "rotate": [ - {"angle": 19.48, "curve": 0.306, "c2": 0.24, "c3": 0.694, "c4": 0.76}, {"time": 0.15, "angle": 2.92, "curve": 0.375, "c2": 0.62, "c3": 0.716}, {"time": 0.2, "curve": 0.25, "c3": 0.75}, - {"time": 0.3667, "angle": -2.68, "curve": 0.25, "c3": 0.75}, {"time": 0.7833, "angle": 22.42, "curve": 0.25, "c3": 0.75}, {"time": 1.2, "angle": -2.68, "curve": 0.25, "c3": 0.75}, - {"time": 1.45, "angle": 22.42, "curve": 0.284, "c3": 0.625, "c4": 0.38}, {"time": 1.5, "angle": 19.48} + {"angle": -20.17, "curve": 0.25, "c3": 0.75}, {"time": 0.1667, "curve": 0.25, "c3": 0.75}, {"time": 0.4167, "angle": -20.17, "curve": 0.25, "c3": 0.75}, + {"time": 0.5833, "angle": 18.35, "curve": 0.25, "c3": 0.75}, {"time": 0.75, "angle": -20.17} ] }, "body-braid5": { "rotate": [ - {"angle": 33.01, "curve": 0.366, "c2": 0.63, "c3": 0.703}, {"time": 0.0333, "angle": 36.02, "curve": 0.252, "c3": 0.622, "c4": 0.48}, - {"time": 0.15, "angle": 19.6, "curve": 0.372, "c2": 0.48, "c3": 0.752}, {"time": 0.2833, "curve": 0.25, "c3": 0.75}, {"time": 0.45, "angle": -7.27, "curve": 0.25, "c3": 0.75}, - {"time": 0.8667, "angle": 36.02, "curve": 0.25, "c3": 0.75}, {"time": 1.2833, "angle": -7.27, "curve": 0.244, "c3": 0.7, "c4": 0.79}, {"time": 1.5, "angle": 33.01} + {"angle": -2.68, "curve": 0.381, "c2": 0.55, "c3": 0.742}, {"time": 0.0667, "curve": 0.25, "c3": 0.75}, {"time": 0.3167, "angle": -7.27, "curve": 0.25, "c3": 0.75}, + {"time": 0.4833, "angle": 36.02, "curve": 0.25, "c3": 0.75}, {"time": 0.65, "angle": -7.27, "curve": 0.245, "c3": 0.637, "c4": 0.56}, {"time": 0.75, "angle": -2.68} ] }, - "body-braid6": { + "body-braid": { "rotate": [ - {"angle": -9.15, "curve": 0.343, "c2": 0.37, "c3": 0.733, "c4": 0.9}, {"time": 0.15, "angle": 17.47, "curve": 0.352, "c2": 0.65, "c3": 0.687}, - {"time": 0.1667, "angle": 18.35, "curve": 0.25, "c3": 0.75}, {"time": 0.4167, "curve": 0.25, "c3": 0.75}, {"time": 0.5833, "angle": -20.17, "curve": 0.25, "c3": 0.75}, - {"time": 1, "angle": 18.35, "curve": 0.25, "c3": 0.75}, {"time": 1.4167, "angle": -20.17, "curve": 0.265, "c3": 0.618, "c4": 0.43}, {"time": 1.5, "angle": -9.15} + {"angle": -0.11, "curve": 0.36, "c2": 0.64, "c3": 0.695}, {"time": 0.0167, "curve": 0.25, "c3": 0.75}, {"time": 0.2667, "angle": -2.68, "curve": 0.25, "c3": 0.75}, + {"time": 0.4333, "angle": 22.42, "curve": 0.25, "c3": 0.75}, {"time": 0.6, "angle": -2.68, "curve": 0.245, "c3": 0.711, "c4": 0.83}, {"time": 0.75, "angle": -0.11} ] } - } - }, - "645705789": { - "slots": { - "eyes": {"attachment": [{"time": 0.0167, "name": "eyes-angry"}, {"time": 0.75, "name": "eyes-shut"}, {"time": 0.8333, "name": "eyes"}]}, - "leg-back-left": {"attachment": [{"time": 0.35, "name": "mystic-leg-back-left-long"}, {"time": 0.5833, "name": "mystic-leg-back-left"}]}, - "mouth": {"attachment": [{"time": 0.0167, "name": "mouth-bite"}, {"time": 0.2667, "name": "mouth-open"}, {"time": 0.5833, "name": "mouth-bite"}, {"time": 0.8333, "name": "mouth"}]} }, + "events": [{"time": 0.25, "name": "start-attack"}, {"time": 0.4167, "name": "hit"}] + }, + "1919486595": { "bones": { + "leg-front-left-IK": { + "translate": [ + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 3.08, "curve": 0.315, "c4": 0.8}, {"time": 0.15, "x": 13.79, "curve": 0, "c2": 0.3, "c3": 0.544}, + {"time": 0.25, "x": -43.09, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.3333, "x": 26.11, "curve": "stepped"}, {"time": 0.5, "x": 26.11, "curve": 0, "c2": 0.3, "c3": 0.544}, + {"time": 0.5833} + ] + }, "@pivot-back": { "rotate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "angle": -3.92, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "angle": 2.51, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.3333, "angle": -6, "curve": "stepped"}, {"time": 0.35, "angle": -16}, {"time": 0.5667, "angle": -16.5, "curve": "stepped"}, {"time": 0.5833, "curve": 0.313, "c3": 0.699}, - {"time": 0.75, "angle": 6, "curve": 0.313, "c3": 0.699}, {"time": 0.9167} - ], - "translate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "x": 71.93, "y": -12.95, "curve": "stepped"}, {"time": 0.25, "x": 71.93, "y": -12.95, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.3333, "x": -135.5, "curve": "stepped"}, {"time": 0.35, "x": -560.54, "y": 85.29}, {"time": 0.5667, "x": -562.89, "y": 81.57, "curve": "stepped"}, - {"time": 0.5833, "x": -151.24, "curve": 0.313, "c3": 0.699}, {"time": 0.75, "x": -151.24, "y": 4.06, "curve": 0.313, "c3": 0.699}, {"time": 0.9167} + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "angle": 5.51, "curve": 0.315, "c4": 0.8}, {"time": 0.2, "angle": -4, "curve": 0.62, "c3": 0.536}, + {"time": 0.5, "angle": 5.83, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5833, "angle": -1.41, "curve": 0.154, "c4": 0.9}, {"time": 0.6667} ], - "scale": [{"time": 0.3333, "curve": "stepped"}, {"time": 0.35, "x": -1, "curve": "stepped"}, {"time": 0.5667, "x": -1, "curve": "stepped"}, {"time": 0.5833}] - }, - "@shadow": { "translate": [ - {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 61.96, "curve": "stepped"}, {"time": 0.25, "x": 61.96, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.3333, "x": -143.36, "curve": "stepped"}, {"time": 0.35, "x": -143.36}, {"time": 0.5667, "x": -157.56, "curve": "stepped"}, {"time": 0.5833, "x": -161.35, "curve": "stepped"}, - {"time": 0.75, "x": -161.35, "curve": 0.313, "c3": 0.699}, {"time": 0.9167} - ], - "scale": [ - {"time": 0.0833, "curve": 0, "c2": 0.26, "c3": 0.369, "c4": 0.62}, {"time": 0.25, "x": 1.06, "y": 1.06, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "curve": "stepped"}, - {"time": 0.35}, {"time": 0.5667, "x": 1.08, "y": 1.08, "curve": "stepped"}, {"time": 0.5833, "curve": 0.313, "c3": 0.699}, - {"time": 0.75, "x": 1.08, "y": 1.08, "curve": 0.313, "c3": 0.699}, {"time": 0.9167} + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.1167, "x": 13.63, "y": 1.37, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5, "y": -4.7, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.6667} ] }, - "leg-back-left-IK": { + "@leg-front-right": { "translate": [ - {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.1333, "x": 80.9, "curve": 0.161, "c3": 0.854}, {"time": 0.25, "x": 62.82, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.3333, "x": -99.34, "y": 18.56, "curve": "stepped"}, {"time": 0.35, "x": -653.9, "y": 153.81}, {"time": 0.5667, "x": -653.9, "y": 167.85, "curve": "stepped"}, - {"time": 0.5833, "x": -134.74, "curve": "stepped"}, {"time": 0.75, "x": -134.74, "curve": 0.313, "c3": 0.699}, {"time": 0.9167} + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": -1.98, "y": -24.83, "curve": 0.263, "c3": 0.629, "c4": 0.42}, + {"time": 0.1667, "x": -2.18, "y": -3.56, "curve": 0.493, "c2": 0.32, "c4": 0.83}, {"time": 0.3333, "x": -2.18, "y": -2.89, "curve": "stepped"}, + {"time": 0.4833, "x": -2.18, "y": -2.89, "curve": 0, "c2": 0.17, "c3": 0.45, "c4": 0.61}, {"time": 0.5, "x": -1.98, "y": -24.83, "curve": 0, "c2": 0.17, "c3": 0.45, "c4": 0.61}, + {"time": 0.5833, "x": -1.28, "y": 8.38, "curve": 0.345, "c2": 0.53, "c3": 0.751}, {"time": 0.6667} ] }, - "leg-front-right-IK": { - "translate": [ - {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 22.35, "curve": 0.306, "c3": 0.695}, {"time": 0.25, "x": 42.9, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.3333, "x": -131.73, "y": 44.58, "curve": "stepped"}, {"time": 0.35, "x": 244.36, "y": -4.92, "curve": 0.31, "c4": 0.8}, - {"time": 0.5667, "x": 247.43, "y": -1.85, "curve": "stepped"}, {"time": 0.5833, "x": -180.48, "curve": "stepped"}, {"time": 0.75, "x": -180.48, "curve": 0.313, "c3": 0.699}, - {"time": 0.9167} + "tail": { + "rotate": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1167, "angle": 11.6, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "angle": -18.66, "curve": 0.313, "c3": 0.699}, + {"time": 0.4667, "angle": 16.43, "curve": 0.315, "c4": 0.8}, {"time": 0.5833, "angle": -6.67, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.6667} ] }, - "leg-front-left-IK": { + "leg-back-left-IK": { "translate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "x": 40.76, "y": 5.08, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "x": 49, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.3333, "x": -180.92, "y": 40.32, "curve": "stepped"}, {"time": 0.35, "x": -197.17}, {"time": 0.5667, "x": -230.7, "y": 4.81, "curve": "stepped"}, - {"time": 0.5833, "x": -180.48, "curve": "stepped"}, {"time": 0.75, "x": -180.48, "curve": 0.313, "c3": 0.699}, {"time": 0.9167} + {"time": 0.15, "curve": 0.464, "c4": 0.7}, {"time": 0.25, "x": -43.09, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.4, "x": 34.02, "curve": "stepped"}, + {"time": 0.45, "x": 34.02, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.5833} ] }, - "@leg-front-left": { + "@leg-back-left": { "translate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "x": -2.9, "y": -1.1, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.25, "x": -0.62, "y": -3.44, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "x": -1, "y": -5.53, "curve": "stepped"}, {"time": 0.35, "x": 4.4, "y": -4.91}, - {"time": 0.5667, "x": 7.49, "y": -5.17, "curve": "stepped"}, {"time": 0.5833, "x": 18.69, "y": 1.85, "curve": "stepped"}, - {"time": 0.75, "x": 18.69, "y": 1.85, "curve": 0.306, "c3": 0.695}, {"time": 0.9167} + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.1333, "x": -0.27, "y": -3.45, "curve": "stepped"}, {"time": 0.5, "x": -0.27, "y": -3.45, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.6667} ] }, - "@leg-front-right": { + "@leg-front-left": { "translate": [ - {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 4.31, "y": 11.86, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.25, "x": -10.48, "y": -15.33, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "x": -3.15, "y": 1.33, "curve": "stepped"}, {"time": 0.35, "x": -3.84, "y": 7.68}, - {"time": 0.5667, "x": -3.53, "y": 9.04, "curve": "stepped"}, {"time": 0.5833, "x": -2.24, "y": 13.67, "curve": 0.313, "c3": 0.699}, - {"time": 0.75, "x": -2.69, "y": -18.63, "curve": 0.313, "c3": 0.699}, {"time": 0.9167} + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": -1.04, "y": -13.11, "curve": 0.263, "c3": 0.629, "c4": 0.42}, + {"time": 0.1667, "x": -1.14, "y": -2.73, "curve": 0.493, "c2": 0.32, "c4": 0.83}, {"time": 0.3333, "x": -1.16, "y": -1.14, "curve": "stepped"}, + {"time": 0.4833, "x": -1.16, "y": -1.14, "curve": 0, "c2": 0.17, "c3": 0.45, "c4": 0.61}, {"time": 0.5, "x": -1.04, "y": -13.11, "curve": 0, "c2": 0.17, "c3": 0.45, "c4": 0.61}, + {"time": 0.5833, "x": -0.69, "y": 4.65, "curve": 0.345, "c2": 0.53, "c3": 0.751}, {"time": 0.6667} ] }, - "@leg-back-left": { + "leg-front-right-IK": { "translate": [ - {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.1333, "x": 0.67, "y": -7.85, "curve": 0.161, "c3": 0.854}, {"time": 0.25, "x": 0.74, "y": -5.43, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.3333, "x": -0.54, "y": 4.44, "curve": "stepped"}, {"time": 0.35, "x": 10.26, "y": 0.56, "curve": "stepped"}, {"time": 0.5667, "x": 10.26, "y": 0.56, "curve": "stepped"}, + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 3.08, "curve": 0.315, "c4": 0.8}, {"time": 0.15, "x": 13.79, "curve": 0, "c2": 0.3, "c3": 0.544}, + {"time": 0.25, "x": -43.09, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.3333, "x": 26.11, "curve": "stepped"}, {"time": 0.5, "x": 26.11, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.5833} ] }, - "tail": { - "rotate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "angle": 15.61, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "angle": 20.44, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.3333, "angle": -15.58, "curve": "stepped"}, {"time": 0.35, "angle": 30.35}, {"time": 0.5667, "angle": 35.35, "curve": "stepped"}, - {"time": 0.5833, "angle": -11.84, "curve": 0.313, "c3": 0.699}, {"time": 0.75, "angle": 16.95, "curve": 0.313, "c3": 0.699}, {"time": 0.9167} + "@shadow": { + "scale": [ + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 1.1, "y": 1.1, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "x": 0.8, "y": 0.8, "curve": 0.315, "c4": 0.8}, + {"time": 0.5, "x": 1.1, "y": 1.1, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.6667} ] }, "@pivot-main": { - "translate": [{"time": 0.75, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.8333, "y": 31, "curve": 0.315, "c4": 0.8}, {"time": 0.9167}], - "scale": [{"time": 0.5667, "curve": "stepped"}, {"time": 0.75, "y": 0.98, "curve": 0.154, "c4": 0.9}, {"time": 0.9167}] - } - }, - "drawOrder": [{"time": 0.35, "offsets": [{"slot": "leg-back-left", "offset": 10}]}, {"time": 0.5833}], - "events": [{"time": 0.35, "name": "start-attack"}, {"time": 0.5667, "name": "start-attack"}] - }, - "3979179032": { - "slots": { - "body-light-breath": {"color": [{"color": "ffffff00", "curve": 0.25, "c3": 0.75}, {"time": 1.5, "color": "ffffffff", "curve": 0.25, "c3": 0.75}, {"time": 3, "color": "ffffff00"}]}, - "body-light-pulse": { - "color": [ - {"color": "ffffff59"}, {"time": 0.1, "color": "ffffff00", "curve": "stepped"}, {"time": 0.4, "color": "ffffff00"}, {"time": 0.4333, "color": "ffffffff", "curve": "stepped"}, - {"time": 0.5667, "color": "ffffffff"}, {"time": 0.85, "color": "ffffff00", "curve": "stepped"}, {"time": 1.15, "color": "ffffff00"}, - {"time": 1.1833, "color": "ffffffff", "curve": "stepped"}, {"time": 1.3167, "color": "ffffffff"}, {"time": 1.6, "color": "ffffff00", "curve": "stepped"}, - {"time": 1.9, "color": "ffffff00"}, {"time": 1.9333, "color": "ffffffff", "curve": "stepped"}, {"time": 2.0667, "color": "ffffffff"}, - {"time": 2.35, "color": "ffffff00", "curve": "stepped"}, {"time": 2.65, "color": "ffffff00"}, {"time": 2.6833, "color": "ffffffff", "curve": "stepped"}, - {"time": 2.8167, "color": "ffffffff"}, {"time": 3, "color": "ffffff59"} - ] - } - }, - "bones": { - "body-light-life": { - "rotate": [ - {}, {"time": 0.4833, "angle": -157.17, "curve": "stepped"}, {"time": 0.5, "curve": "stepped"}, {"time": 0.75}, {"time": 1.2333, "angle": -157.17, "curve": "stepped"}, - {"time": 1.25, "curve": "stepped"}, {"time": 1.5}, {"time": 1.9833, "angle": -157.17, "curve": "stepped"}, {"time": 2, "curve": "stepped"}, {"time": 2.25}, - {"time": 2.7333, "angle": -157.17, "curve": "stepped"}, {"time": 2.75} - ] - } - } - }, - "1566344788": { - "slots": { - "body-light-breath": {"color": [{"color": "ffffff00", "curve": 0.25, "c3": 0.75}, {"time": 2, "color": "ffffffff", "curve": 0.25, "c3": 0.75}, {"time": 4, "color": "ffffff00"}]}, - "body-light-pulse": { - "color": [ - {"color": "ffffff00", "curve": "stepped"}, {"time": 0.55, "color": "ffffff00"}, {"time": 0.5833, "color": "ffffffff", "curve": "stepped"}, {"time": 0.7167, "color": "ffffffff"}, - {"time": 1, "color": "ffffff00", "curve": "stepped"}, {"time": 1.55, "color": "ffffff00"}, {"time": 1.5833, "color": "ffffffff", "curve": "stepped"}, - {"time": 1.7167, "color": "ffffffff"}, {"time": 2, "color": "ffffff00", "curve": "stepped"}, {"time": 2.55, "color": "ffffff00"}, - {"time": 2.5833, "color": "ffffffff", "curve": "stepped"}, {"time": 2.7167, "color": "ffffffff"}, {"time": 3, "color": "ffffff00", "curve": "stepped"}, - {"time": 3.55, "color": "ffffff00"}, {"time": 3.5833, "color": "ffffffff", "curve": "stepped"}, {"time": 3.7167, "color": "ffffffff"}, {"time": 4, "color": "ffffff00"} + "translate": [{"time": 0.1667, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "y": 133.58, "curve": 0.315, "c4": 0.8}, {"time": 0.5}], + "scale": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "y": 0.97, "curve": 0.315, "c4": 0.8}, {"time": 0.1667, "curve": "stepped"}, {"time": 0.4167, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.5, "y": 0.97, "curve": 0.315, "c4": 0.8}, {"time": 0.5833} ] - } - }, - "bones": { - "body-light-life": { + }, + "@body3": { "rotate": [ - {}, {"time": 0.65, "angle": -157.17, "curve": "stepped"}, {"time": 0.6667, "curve": "stepped"}, {"time": 1}, {"time": 1.65, "angle": -157.17, "curve": "stepped"}, - {"time": 1.6667, "curve": "stepped"}, {"time": 2}, {"time": 2.65, "angle": -157.17, "curve": "stepped"}, {"time": 2.6667, "curve": "stepped"}, {"time": 3}, - {"time": 3.65, "angle": -157.17, "curve": "stepped"}, {"time": 3.6667} - ] - } - } - }, - "25318063": { - "slots": { - "eyes": {"attachment": [{"time": 1, "name": "eyes-shut"}, {"time": 1.0833, "name": "eyes"}]}, - "mouth-accessory": { - "color": [ - {"time": 0.5833, "color": "ffffff00", "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.6667, "color": "ffffffff", "curve": "stepped"}, - {"time": 0.9167, "color": "ffffffff", "curve": 0.306, "c4": 0.8}, {"time": 1, "color": "ffffff00"} + {"angle": -2.85, "curve": 0.32, "c2": 0.29, "c3": 0.667, "c4": 0.67}, {"time": 0.05, "angle": -1.39, "curve": 0.381, "c2": 0.55, "c3": 0.742}, + {"time": 0.1167, "curve": 0.25, "c3": 0.75}, {"time": 0.2, "angle": -3.77, "curve": 0.25, "c3": 0.75}, {"time": 0.4, "angle": -14, "curve": 0.25, "c3": 0.75}, + {"time": 0.6167, "angle": -3.77, "curve": 0.269, "c3": 0.618, "c4": 0.42}, {"time": 0.6667, "angle": -2.85} ], - "attachment": [{"time": 0.5833, "name": "mouth-accessory"}, {"time": 1, "name": null}] - } - }, - "bones": { - "@pivot-back": { + "translate": [{"time": 0.1667, "curve": 0.25, "c3": 0.75}, {"time": 0.3667, "x": 45.36, "y": -33.56, "curve": 0.25, "c3": 0.75}, {"time": 0.5833}] + }, + "@body4": { "rotate": [ - {"curve": 0.313, "c3": 0.699}, {"time": 0.3333, "angle": 2.04, "curve": 0.313, "c3": 0.699}, {"time": 0.6667, "curve": 0.313, "c3": 0.699}, - {"time": 1, "angle": 1.79, "curve": 0.313, "c3": 0.699}, {"time": 1.3333} + {"angle": -3.72, "curve": 0.382, "c2": 0.58, "c3": 0.731}, {"time": 0.05, "curve": 0.25, "c3": 0.75}, {"time": 0.1333, "angle": -15.35, "curve": 0.25, "c3": 0.75}, + {"time": 0.3333, "angle": 14.26, "curve": 0.25, "c3": 0.75}, {"time": 0.55, "angle": -15.35, "curve": 0.243, "c3": 0.655, "c4": 0.63}, {"time": 0.6667, "angle": -3.72} ], "translate": [ - {"curve": 0.313, "c3": 0.699}, {"time": 0.3333, "y": -6.53, "curve": 0.313, "c3": 0.699}, {"time": 0.6667, "curve": 0.313, "c3": 0.699}, - {"time": 1, "y": -8.86, "curve": 0.313, "c3": 0.699}, {"time": 1.3333} - ], - "scale": [{"curve": 0.313, "c3": 0.699}, {"time": 0.6667, "y": 0.99, "curve": 0.313, "c3": 0.699}, {"time": 1.3333}] + {"x": -0.07, "y": 1.02, "curve": 0.36, "c2": 0.64, "c3": 0.695}, {"time": 0.0167, "curve": 0.25, "c3": 0.75}, {"time": 0.1, "x": -1.59, "y": 23.93, "curve": 0.25, "c3": 0.75}, + {"time": 0.3, "x": 6.55, "y": -29.78, "curve": 0.25, "c3": 0.75}, {"time": 0.5167, "x": -1.59, "y": 23.93, "curve": 0.245, "c3": 0.711, "c4": 0.83}, + {"time": 0.6667, "x": -0.07, "y": 1.02} + ] }, - "@leg-front-right": { + "@body6": { + "rotate": [ + {"angle": -3.95, "curve": 0.326, "c2": 0.31, "c3": 0.697, "c4": 0.76}, {"time": 0.0833, "angle": -0.68, "curve": 0.375, "c2": 0.62, "c3": 0.716}, + {"time": 0.1167, "curve": 0.25, "c3": 0.75}, {"time": 0.2, "angle": -5.24, "curve": 0.25, "c3": 0.75}, {"time": 0.4, "angle": 25.77, "curve": 0.25, "c3": 0.75}, + {"time": 0.6167, "angle": -5.24, "curve": 0.269, "c3": 0.618, "c4": 0.42}, {"time": 0.6667, "angle": -3.95} + ], "translate": [ - {"curve": 0.313, "c3": 0.699}, {"time": 0.3333, "x": 0.02, "y": -16.89, "curve": 0.313, "c3": 0.699}, {"time": 0.6667, "x": -0.04, "y": 2.46, "curve": 0.313, "c3": 0.699}, - {"time": 1, "x": -0.02, "y": -18.9, "curve": 0.313, "c3": 0.699}, {"time": 1.3333} + {"x": 5.81, "y": -4.07, "curve": 0.25, "c3": 0.625, "c4": 0.5}, {"time": 0.0833, "x": 2.9, "y": -2.04, "curve": 0.375, "c2": 0.5, "c3": 0.75}, + {"time": 0.1667, "curve": 0.25, "c3": 0.75}, {"time": 0.25, "x": 5.81, "y": -4.07, "curve": 0.25, "c3": 0.75}, {"time": 0.45, "x": -70.52, "y": 35.61, "curve": 0.25, "c3": 0.75}, + {"time": 0.6667, "x": 5.81, "y": -4.07} ] }, - "@leg-front-left": { - "translate": [ - {"curve": 0.313, "c3": 0.699}, {"time": 0.3333, "x": 0.22, "y": -5.13, "curve": 0.313, "c3": 0.699}, {"time": 0.6667, "x": -0.03, "y": 1.81, "curve": 0.313, "c3": 0.699}, - {"time": 1, "x": 0.2, "y": -7.06, "curve": 0.313, "c3": 0.699}, {"time": 1.3333} - ], - "scale": [ - {"curve": 0.313, "c3": 0.699}, {"time": 0.3333, "x": 0.905, "curve": 0.313, "c3": 0.699}, {"time": 0.6667, "curve": 0.313, "c3": 0.699}, - {"time": 1, "x": 0.905, "curve": 0.313, "c3": 0.699}, {"time": 1.3333} + "body-braid2": { + "rotate": [ + {"angle": -0.19, "curve": 0.375, "c2": 0.62, "c3": 0.716}, {"time": 0.0333, "curve": 0.25, "c3": 0.75}, {"time": 0.1167, "angle": -1.43, "curve": 0.25, "c3": 0.75}, + {"time": 0.3167, "angle": 20.83, "curve": 0.25, "c3": 0.75}, {"time": 0.5333, "angle": -1.43, "curve": 0.243, "c3": 0.68, "c4": 0.71}, {"time": 0.6667, "angle": -0.19} ] }, - "@leg-back-left": { - "translate": [ - {"curve": 0.313, "c3": 0.699}, {"time": 0.3333, "x": 0.22, "y": -4.11, "curve": 0.313, "c3": 0.699}, {"time": 0.6667, "x": -0.03, "y": 1.69, "curve": 0.313, "c3": 0.699}, - {"time": 1, "x": 0.2, "y": -5.68, "curve": 0.313, "c3": 0.699}, {"time": 1.3333} - ], - "scale": [ - {"curve": 0.313, "c3": 0.699}, {"time": 0.3333, "x": 0.943, "curve": 0.313, "c3": 0.699}, {"time": 0.6667, "curve": 0.313, "c3": 0.699}, - {"time": 1, "x": 0.943, "curve": 0.313, "c3": 0.699}, {"time": 1.3333} + "body-braid4": { + "rotate": [ + {"angle": -10.05, "curve": 0.311, "c2": 0.26, "c3": 0.651, "c4": 0.61}, {"time": 0.0333, "angle": -7.29, "curve": 0.363, "c2": 0.44, "c3": 0.755}, + {"time": 0.1333, "curve": 0.25, "c3": 0.75}, {"time": 0.2833, "angle": -11.53, "curve": 0.25, "c3": 0.75}, {"time": 0.4833, "angle": 27.46, "curve": 0.25, "c3": 0.75}, + {"time": 0.65, "angle": -11.53, "curve": 0.284, "c3": 0.625, "c4": 0.38}, {"time": 0.6667, "angle": -10.05} ] }, - "@pivot-main": { - "scale": [ - {"curve": 0.313, "c3": 0.699}, {"time": 0.3333, "y": 0.98, "curve": 0.313, "c3": 0.699}, {"time": 0.6667, "curve": 0.313, "c3": 0.699}, - {"time": 1, "y": 0.98, "curve": 0.313, "c3": 0.699}, {"time": 1.3333} + "body-braid3": { + "rotate": [ + {"angle": -3.02, "curve": 0.349, "c2": 0.39, "c3": 0.689, "c4": 0.74}, {"time": 0.0333, "angle": -1.08, "curve": 0.375, "c2": 0.62, "c3": 0.716}, + {"time": 0.0667, "curve": 0.25, "c3": 0.75}, {"time": 0.15, "angle": -8.3, "curve": 0.25, "c3": 0.75}, {"time": 0.35, "angle": 33.27, "curve": 0.25, "c3": 0.75}, + {"time": 0.5667, "angle": -8.3, "curve": 0.245, "c3": 0.637, "c4": 0.56}, {"time": 0.6667, "angle": -3.02} ] }, - "tail": { - "rotate": [{"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "angle": 4.54, "curve": 0.313, "c3": 0.699}, {"time": 1, "angle": -9.06, "curve": 0.313, "c3": 0.699}, {"time": 1.3333}] + "@body2": { + "rotate": [ + {"angle": 6.48, "curve": 0.306, "c2": 0.24, "c3": 0.694, "c4": 0.76}, {"time": 0.1, "angle": 0.97, "curve": 0.375, "c2": 0.62, "c3": 0.716}, {"time": 0.1333, "curve": 0.25, "c3": 0.75}, + {"time": 0.2167, "angle": 7.45, "curve": 0.25, "c3": 0.75}, {"time": 0.4167, "angle": -18.73, "curve": 0.25, "c3": 0.75}, + {"time": 0.6333, "angle": 7.45, "curve": 0.284, "c3": 0.625, "c4": 0.38}, {"time": 0.6667, "angle": 6.48} + ], + "translate": [ + {"x": -0.05, "y": 0.73, "curve": 0.363, "c2": 0.44, "c3": 0.755}, {"time": 0.1, "curve": 0.25, "c3": 0.75}, {"time": 0.1833, "x": -0.08, "y": 1.15, "curve": 0.25, "c3": 0.75}, + {"time": 0.3833, "x": 4.59, "y": -41.28, "curve": 0.25, "c3": 0.75}, {"time": 0.6, "x": -0.08, "y": 1.15, "curve": 0.258, "c3": 0.619, "c4": 0.45}, + {"time": 0.6667, "x": -0.05, "y": 0.73} + ] }, - "back": { - "rotate": [{"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "angle": -4.27, "curve": 0.313, "c3": 0.699}, {"time": 1, "angle": 2.83, "curve": 0.313, "c3": 0.699}, {"time": 1.3333}] + "body-braid6": { + "rotate": [ + {"angle": -13.87, "curve": 0.378, "c2": 0.61, "c3": 0.721}, {"time": 0.05, "angle": -20.17, "curve": 0.284, "c3": 0.625, "c4": 0.38}, + {"time": 0.0833, "angle": -17.55, "curve": 0.32, "c2": 0.29, "c3": 0.757}, {"time": 0.2167, "curve": 0.25, "c3": 0.75}, {"time": 0.3, "angle": -20.17, "curve": 0.25, "c3": 0.75}, + {"time": 0.5, "angle": 18.35, "curve": 0.242, "c3": 0.671, "c4": 0.68}, {"time": 0.6667, "angle": -13.87} + ] }, - "ear-right": {"rotate": [{"curve": 0.461, "c3": 0.543}, {"time": 0.6667, "angle": -3.91, "curve": 0.461, "c3": 0.543}, {"time": 1.3333}]}, - "ear-left": {"rotate": [{"curve": 0.461, "c3": 0.543}, {"time": 0.6667, "angle": -3.92, "curve": 0.461, "c3": 0.543}, {"time": 1.3333}]}, - "@shadow": { - "scale": [ - {"curve": 0.306, "c3": 0.695}, {"time": 0.3333, "x": 1.05, "y": 1.05, "curve": 0.306, "c3": 0.695}, {"time": 0.6667, "curve": 0.306, "c3": 0.695}, - {"time": 1, "x": 1.05, "y": 1.05, "curve": 0.306, "c3": 0.695}, {"time": 1.3333} + "body-braid5": { + "rotate": [ + {"angle": -6.32, "curve": 0.303, "c2": 0.24, "c3": 0.674, "c4": 0.69}, {"time": 0.0833, "angle": -1.76, "curve": 0.382, "c2": 0.58, "c3": 0.731}, + {"time": 0.1333, "curve": 0.25, "c3": 0.75}, {"time": 0.2167, "angle": -7.27, "curve": 0.25, "c3": 0.75}, {"time": 0.4167, "angle": 36.02, "curve": 0.25, "c3": 0.75}, + {"time": 0.6333, "angle": -7.27, "curve": 0.284, "c3": 0.625, "c4": 0.38}, {"time": 0.6667, "angle": -6.32} ] }, - "mouth-accessory": { - "rotate": [{"time": 0.5833}, {"time": 1, "angle": -120}], - "scale": [{"time": 0.5667}, {"time": 0.5833, "x": 0.6, "y": 0.6}, {"time": 0.8}, {"time": 1, "x": 0.6, "y": 0.6}, {"time": 1.0167}] - } - } - }, - "2880388010": { - "slots": { - "ball": { - "color": [ - {"color": "ffffff00", "curve": "stepped"}, {"time": 0.1667, "color": "ffffff00", "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "color": "ffffffff", "curve": "stepped"}, - {"time": 2.9167, "color": "ffffffff", "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 3.0833, "color": "ffffff00"} - ], - "attachment": [{"name": "ball"}] + "body-braid": { + "rotate": [ + {"angle": -1.68, "curve": 0.349, "c2": 0.39, "c3": 0.722, "c4": 0.85}, {"time": 0.0833, "angle": -0.11, "curve": 0.36, "c2": 0.64, "c3": 0.695}, {"time": 0.1, "curve": 0.25, "c3": 0.75}, + {"time": 0.1833, "angle": -2.68, "curve": 0.25, "c3": 0.75}, {"time": 0.3833, "angle": 22.42, "curve": 0.25, "c3": 0.75}, + {"time": 0.6, "angle": -2.68, "curve": 0.258, "c3": 0.619, "c4": 0.45}, {"time": 0.6667, "angle": -1.68} + ] }, - "eyes": {"attachment": [{"time": 0.5, "name": "eyes-shut"}, {"time": 0.5833, "name": "eyes"}, {"time": 3.0833, "name": "eyes-shut"}, {"time": 3.1667, "name": "eyes"}]}, - "mouth": {"attachment": [{"time": 0.1833, "name": "mouth-open"}, {"time": 0.5, "name": "mouth"}, {"time": 2.7667, "name": "mouth-open"}, {"time": 2.9167, "name": "mouth"}]} + "@body5": {"rotate": [{"time": 0.1333, "curve": 0.25, "c3": 0.75}, {"time": 0.3333, "angle": 0.5, "curve": 0.25, "c3": 0.75}, {"time": 0.55}]} }, + "events": [{"time": 0.1667, "name": "jump"}] + }, + "334169668": { "bones": { "@pivot-back": { "rotate": [ - {"curve": 0, "c2": 0.3, "c3": 0.546}, {"time": 0.1667, "angle": 6, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "angle": -6.98, "curve": 0.464, "c4": 0.7}, - {"time": 0.5, "angle": 3, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.6667, "curve": "stepped"}, {"time": 2.5833, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 2.75, "angle": 6, "curve": 0, "c2": 0.3, "c3": 0.546}, {"time": 2.9167, "angle": -6, "curve": 0.464, "c4": 0.7}, - {"time": 3.0833, "angle": 6, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 3.25} + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "angle": 5.51, "curve": 0.315, "c4": 0.8}, {"time": 0.2, "angle": -4, "curve": 0.62, "c3": 0.536}, + {"time": 0.5, "angle": 5.83, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5833, "angle": -1.41, "curve": 0.154, "c4": 0.9}, {"time": 0.6667} ], "translate": [ - {"curve": 0, "c2": 0.3, "c3": 0.546}, {"time": 0.1667, "y": 1.78, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "y": 353.14, "curve": 0.464, "c4": 0.7}, - {"time": 0.5, "y": 255, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.6667, "y": 267.67, "curve": 0.156, "c3": 0.693}, - {"time": 1.1667, "x": -30, "y": 267.67, "curve": 0.317, "c3": 0.693}, {"time": 2.1667, "x": 50, "y": 267.67, "curve": 0.317, "c3": 0.693}, - {"time": 2.5833, "y": 267.67, "curve": "stepped"}, {"time": 2.75, "y": 267.67, "curve": 0, "c2": 0.3, "c3": 0.546}, {"time": 2.9167, "y": 310, "curve": 0.464, "c4": 0.7}, - {"time": 3.0833} + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.1167, "x": 13.63, "y": 1.37, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5, "y": -4.7, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.6667} ] }, "@leg-front-right": { "translate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": -2.8, "y": -31.7, "curve": 0, "c2": 0.3, "c3": 0.546}, {"time": 0.25, "curve": "stepped"}, - {"time": 2.5833, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 2.75, "x": -2.8, "y": -31.7, "curve": 0.315, "c4": 0.8}, {"time": 2.8333, "curve": "stepped"}, - {"time": 3, "curve": 0.315, "c4": 0.8}, {"time": 3.0833, "x": -2.86, "y": -32.44, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 3.25} + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": -1.98, "y": -24.83, "curve": 0.263, "c3": 0.629, "c4": 0.42}, + {"time": 0.1667, "x": -2.18, "y": -3.56, "curve": 0.493, "c2": 0.32, "c4": 0.83}, {"time": 0.3333, "x": -2.18, "y": -2.89, "curve": "stepped"}, + {"time": 0.4833, "x": -2.18, "y": -2.89, "curve": 0, "c2": 0.17, "c3": 0.45, "c4": 0.61}, {"time": 0.5, "x": -1.98, "y": -24.83, "curve": 0, "c2": 0.17, "c3": 0.45, "c4": 0.61}, + {"time": 0.5833, "x": -1.28, "y": 8.38, "curve": 0.345, "c2": 0.53, "c3": 0.751}, {"time": 0.6667} ] }, - "@leg-front-left": { + "leg-front-right-IK": { "translate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": -1.46, "y": -16.59, "curve": 0, "c2": 0.3, "c3": 0.546}, {"time": 0.25, "curve": "stepped"}, - {"time": 2.5833, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 2.75, "x": -1.46, "y": -16.59, "curve": 0.315, "c4": 0.8}, {"time": 2.8333, "curve": "stepped"}, - {"time": 3, "curve": 0.315, "c4": 0.8}, {"time": 3.0833, "x": -1.64, "y": -18.64, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 3.25} + {"time": 0.15, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.25, "x": 26.77, "curve": 0.315, "c4": 0.8}, {"time": 0.35, "x": -20.02, "curve": "stepped"}, + {"time": 0.5, "x": -20.02, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.5833} ] }, - "leg-front-left-IK": { + "@leg-front-left": { "translate": [ - {"time": 0.1667, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "x": -6.9, "y": 380.8, "curve": 0.315, "c4": 0.8}, {"time": 0.5, "x": -5.5, "y": 268.35, "curve": "stepped"}, - {"time": 0.6667, "x": -5.5, "y": 268.35, "curve": 0.317, "c3": 0.693}, {"time": 0.9167, "x": -38.87, "y": 268.35, "curve": 0.317, "c3": 0.693}, - {"time": 1.1667, "x": -10.16, "y": 268.35, "curve": 0.317, "c3": 0.693}, {"time": 1.4167, "x": -39.65, "y": 268.35, "curve": 0.317, "c3": 0.693}, - {"time": 1.6667, "x": 23.98, "y": 268.35, "curve": 0.317, "c3": 0.693}, {"time": 1.9167, "x": 5.36, "y": 268.35, "curve": 0.317, "c3": 0.693}, - {"time": 2.1667, "x": 67.44, "y": 268.35, "curve": 0.317, "c3": 0.693}, {"time": 2.4167, "x": -3.95, "y": 268.35, "curve": 0.317, "c3": 0.693}, - {"time": 2.5833, "x": -5.5, "y": 268.35, "curve": "stepped"}, {"time": 2.9167, "x": -5.5, "y": 268.35, "curve": 0.315, "c4": 0.8}, {"time": 3.0833} + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": -1.04, "y": -13.11, "curve": 0.263, "c3": 0.629, "c4": 0.42}, + {"time": 0.1667, "x": -1.14, "y": -2.73, "curve": 0.493, "c2": 0.32, "c4": 0.83}, {"time": 0.3333, "x": -1.16, "y": -1.14, "curve": "stepped"}, + {"time": 0.4833, "x": -1.16, "y": -1.14, "curve": 0, "c2": 0.17, "c3": 0.45, "c4": 0.61}, {"time": 0.5, "x": -1.04, "y": -13.11, "curve": 0, "c2": 0.17, "c3": 0.45, "c4": 0.61}, + {"time": 0.5833, "x": -0.69, "y": 4.65, "curve": 0.345, "c2": 0.53, "c3": 0.751}, {"time": 0.6667} ] }, - "leg-front-right-IK": { + "leg-front-left-IK": { "translate": [ - {"time": 0.1667, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "x": -6.9, "y": 397.8, "curve": 0.315, "c4": 0.8}, {"time": 0.5, "x": 15.4, "y": 268.08, "curve": "stepped"}, - {"time": 0.6667, "x": 15.4, "y": 268.08, "curve": 0.317, "c3": 0.693}, {"time": 0.9167, "x": 24.64, "y": 268.08, "curve": 0.317, "c3": 0.693}, - {"time": 1.1667, "x": -41.71, "y": 268.08, "curve": 0.317, "c3": 0.693}, {"time": 1.4167, "x": 22.12, "y": 268.08, "curve": 0.317, "c3": 0.693}, - {"time": 1.6667, "x": -0.56, "y": 268.08, "curve": 0.317, "c3": 0.693}, {"time": 1.9167, "x": 61.6, "y": 268.08, "curve": 0.317, "c3": 0.693}, - {"time": 2.1667, "x": 33.88, "y": 268.08, "curve": 0.317, "c3": 0.693}, {"time": 2.4167, "x": 49, "y": 268.08, "curve": 0.317, "c3": 0.693}, - {"time": 2.5833, "x": 15.4, "y": 268.08, "curve": "stepped"}, {"time": 2.9167, "x": 15.4, "y": 268.08, "curve": 0.315, "c4": 0.8}, {"time": 3.0833} + {"time": 0.15, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.25, "x": 26.77, "curve": 0.315, "c4": 0.8}, {"time": 0.35, "x": -20.02, "curve": "stepped"}, + {"time": 0.5, "x": -20.02, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.5833} ] }, - "leg-back-left-IK": { + "@leg-back-left": { "translate": [ - {"time": 0.1667, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "x": -0.4, "y": 363.25, "curve": 0.315, "c4": 0.8}, {"time": 0.5, "x": -26.16, "y": 267.01}, - {"time": 0.6667, "x": -33.59, "y": 267.01, "curve": 0.317, "c3": 0.693}, {"time": 0.9167, "x": -22.32, "y": 267.01, "curve": 0.317, "c3": 0.693}, - {"time": 1.1667, "x": -63.32, "y": 267.01, "curve": 0.317, "c3": 0.693}, {"time": 1.4167, "x": -28.35, "y": 267.01, "curve": 0.317, "c3": 0.693}, - {"time": 1.6667, "x": -28.02, "y": 267.01, "curve": 0.317, "c3": 0.693}, {"time": 1.9167, "x": 14.36, "y": 267.01, "curve": 0.317, "c3": 0.693}, - {"time": 2.1667, "x": 9.14, "y": 267.01, "curve": 0.317, "c3": 0.693}, {"time": 2.4167, "x": 11.99, "y": 267.01, "curve": 0.317, "c3": 0.693}, - {"time": 2.6667, "x": -33.59, "y": 267.01, "curve": "stepped"}, {"time": 2.9167, "x": -33.59, "y": 267.01, "curve": 0.315, "c4": 0.8}, {"time": 3.0833} + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.1333, "x": -0.27, "y": -3.45, "curve": "stepped"}, {"time": 0.5, "x": -0.27, "y": -3.45, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.6667} ] }, - "@ball": { - "rotate": [ - {"time": 0.6667, "curve": 0.156, "c3": 0.693}, {"time": 1.1667, "angle": 18, "curve": 0.317, "c3": 0.693}, {"time": 2.1667, "angle": -18, "curve": 0.317, "c3": 0.693}, {"time": 2.75} - ], + "leg-back-left-IK": { "translate": [ - {"time": 0.6667, "curve": 0.156, "c3": 0.693}, {"time": 1.1667, "x": -32, "curve": 0.317, "c3": 0.693}, {"time": 2.1667, "x": 32, "curve": 0.317, "c3": 0.693}, {"time": 2.75} - ], - "scale": [ - {"x": 0, "y": 0, "curve": "stepped"}, {"time": 0.1667, "x": 0, "y": 0, "curve": 0, "c2": 0.6, "c3": 0.237}, {"time": 0.3333, "x": 1.2, "y": 1.2, "curve": 0.315, "c4": 0.8}, - {"time": 0.5, "curve": "stepped"}, {"time": 2.75, "curve": 0, "c2": 0.3, "c3": 0.546}, {"time": 2.9167, "x": 1.2, "y": 1.2, "curve": 0.315, "c4": 0.8}, {"time": 3.0833, "x": 0, "y": 0} + {"time": 0.15, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.25, "x": 26.77, "curve": "stepped"}, {"time": 0.3, "x": 26.77, "curve": 0.315, "c4": 0.8}, + {"time": 0.4167, "x": -20.02, "curve": "stepped"}, {"time": 0.5, "x": -20.02, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.5833} ] }, - "ball": { + "@pivot-main": { + "translate": [{"time": 0.1667, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "y": 133.58, "curve": 0.315, "c4": 0.8}, {"time": 0.5}], "scale": [ - {"time": 0.3333, "curve": 0.617, "c4": 0.6}, {"time": 0.5, "x": 1.2, "y": 0.802, "curve": 0, "c2": 0.39, "c3": 0.387}, {"time": 0.6667, "curve": "stepped"}, - {"time": 2.5833, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 2.75, "x": 1.2, "y": 0.9, "curve": 0, "c2": 0.3, "c3": 0.546}, {"time": 2.9167} + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "y": 0.97, "curve": 0.315, "c4": 0.8}, {"time": 0.1667, "curve": "stepped"}, {"time": 0.4167, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.5, "y": 0.97, "curve": 0.315, "c4": 0.8}, {"time": 0.5833} ] }, - "@pivot-center": { + "tail": { "rotate": [ - {"time": 0.6667, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.9167, "angle": 2, "curve": 0.461, "c3": 0.543}, {"time": 1.4167, "angle": -2, "curve": 0.461, "c3": 0.543}, - {"time": 1.9167, "angle": 2, "curve": 0.461, "c3": 0.543}, {"time": 2.4167, "angle": -2, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 2.75} + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1167, "angle": 11.6, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "angle": -18.66, "curve": 0.313, "c3": 0.699}, + {"time": 0.4667, "angle": 16.43, "curve": 0.315, "c4": 0.8}, {"time": 0.5833, "angle": -6.67, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.6667} ] }, "@shadow": { - "translate": [ - {"time": 0.6667, "curve": 0.317, "c3": 0.693}, {"time": 1.1667, "x": -32, "curve": 0.317, "c3": 0.693}, {"time": 2.1667, "x": 32, "curve": 0.317, "c3": 0.693}, {"time": 2.5833} - ], "scale": [ - {"curve": 0, "c2": 0.3, "c3": 0.546}, {"time": 0.1667, "x": 1.1, "y": 1.1, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "curve": 0.464, "c4": 0.7}, - {"time": 0.5, "x": 1.06, "y": 1.06, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.6667, "curve": "stepped"}, {"time": 2.5833, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 2.75, "x": 1.06, "y": 1.06, "curve": 0, "c2": 0.3, "c3": 0.546}, {"time": 2.9167, "curve": 0.464, "c4": 0.7}, - {"time": 3.0833, "x": 1.1, "y": 1.1, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 3.25} + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 1.1, "y": 1.1, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "x": 0.8, "y": 0.8, "curve": 0.315, "c4": 0.8}, + {"time": 0.5, "x": 1.1, "y": 1.1, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.6667} ] }, - "tail": { + "@body3": { "rotate": [ - {"curve": 0, "c2": 0.3, "c3": 0.546}, {"time": 0.1667, "angle": 17.35, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "angle": -14.67, "curve": 0.464, "c4": 0.7}, - {"time": 0.5, "angle": 19.12, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.6667, "angle": -10.65, "curve": 0.317, "c3": 0.693}, - {"time": 0.9167, "angle": -0.65, "curve": 0.317, "c3": 0.693}, {"time": 1.1667, "angle": -10.65, "curve": 0.317, "c3": 0.693}, - {"time": 1.4167, "angle": -0.65, "curve": 0.317, "c3": 0.693}, {"time": 1.6667, "angle": -10.65, "curve": 0.317, "c3": 0.693}, - {"time": 1.9167, "angle": -0.65, "curve": 0.317, "c3": 0.693}, {"time": 2.1667, "angle": -10.65, "curve": 0.317, "c3": 0.693}, - {"time": 2.4167, "angle": -0.65, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 2.5833, "angle": -10.65, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 2.75, "angle": 19.35, "curve": 0, "c2": 0.3, "c3": 0.546}, {"time": 2.9167, "angle": -18.65, "curve": 0, "c2": 0.3, "c3": 0.546}, - {"time": 3.0833, "angle": 17.35, "curve": 0.317, "c3": 0.693}, {"time": 3.25} - ] + {"angle": -0.49, "curve": 0.375, "c2": 0.62, "c3": 0.716}, {"time": 0.0333, "curve": 0.25, "c3": 0.75}, {"time": 0.1167, "angle": -3.77, "curve": 0.25, "c3": 0.75}, + {"time": 0.3167, "angle": -14, "curve": 0.25, "c3": 0.75}, {"time": 0.5333, "angle": -3.77, "curve": 0.243, "c3": 0.68, "c4": 0.71}, {"time": 0.6667, "angle": -0.49} + ], + "translate": [{"time": 0.0833, "curve": 0.25, "c3": 0.75}, {"time": 0.2833, "x": 45.36, "y": -33.56, "curve": 0.25, "c3": 0.75}, {"time": 0.5}] }, - "body-light-life": {"rotate": [{}, {"time": 1.65, "angle": -151.16, "curve": "stepped"}, {"time": 1.6667}, {"time": 3.25, "angle": -151.16}]} - } - }, - "3902657344": { - "slots": { - "eyes": {"attachment": [{"time": 0.0833, "name": "eyes-happy"}, {"time": 1, "name": "eyes"}]}, - "leg-back-left": {"attachment": [{"time": 0.0667, "name": "mystic-leg-back-left-long"}, {"time": 0.9, "name": "mystic-leg-back-left"}]}, - "mouth": {"attachment": [{"time": 0.0833, "name": "mouth-smile"}, {"time": 1, "name": "mouth"}]} - }, - "bones": { - "@pivot-back": { + "@body4": { "rotate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "angle": -18, "curve": 0.317, "c3": 0.693}, {"time": 0.3333, "angle": -17, "curve": 0.317, "c3": 0.693}, - {"time": 0.5, "angle": -18, "curve": 0.317, "c3": 0.693}, {"time": 0.6667, "angle": -17, "curve": 0.317, "c3": 0.693}, {"time": 0.8333, "angle": -18, "curve": 0.317, "c3": 0.693}, - {"time": 1.0833} + {"angle": -5.65, "curve": 0.363, "c2": 0.44, "c3": 0.755}, {"time": 0.05, "angle": -15.35, "curve": 0.25, "c3": 0.75}, {"time": 0.25, "angle": 14.26, "curve": 0.25, "c3": 0.75}, + {"time": 0.4667, "angle": -15.35, "curve": 0.245, "c3": 0.637, "c4": 0.56}, {"time": 0.5667, "angle": -5.65, "curve": 0.381, "c2": 0.55, "c3": 0.742}, + {"time": 0.6333, "curve": 0.258, "c3": 0.619, "c4": 0.45}, {"time": 0.6667, "angle": -5.65} ], "translate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": 33.94, "y": -52, "curve": "stepped"}, {"time": 0.8333, "x": 33.94, "y": -52, "curve": 0.317, "c3": 0.693}, {"time": 1.0833} + {"x": -1.59, "y": 23.93, "curve": 0.25, "c3": 0.75}, {"time": 0.2, "x": 6.55, "y": -29.78, "curve": 0.25, "c3": 0.75}, + {"time": 0.4167, "x": -1.59, "y": 23.93, "curve": 0.245, "c3": 0.711, "c4": 0.83}, {"time": 0.5667, "x": -0.07, "y": 1.02, "curve": 0.36, "c2": 0.64, "c3": 0.695}, + {"time": 0.5833, "curve": 0.25, "c3": 0.75}, {"time": 0.6667, "x": -1.59, "y": 23.93} ] }, - "@leg-front-left": { + "@body6": { + "rotate": [ + {"angle": -3.96, "curve": 0.321, "c2": 0.3, "c3": 0.679, "c4": 0.7}, {"time": 0.0667, "angle": -1.27, "curve": 0.382, "c2": 0.58, "c3": 0.731}, + {"time": 0.1167, "curve": 0.25, "c3": 0.75}, {"time": 0.2, "angle": -5.24, "curve": 0.25, "c3": 0.75}, {"time": 0.4, "angle": 25.77, "curve": 0.25, "c3": 0.75}, + {"time": 0.6167, "angle": -5.24, "curve": 0.269, "c3": 0.618, "c4": 0.42}, {"time": 0.6667, "angle": -3.96} + ], "translate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": -27.99, "y": 1.7, "curve": 0.25, "c3": 0.75}, {"time": 0.3333, "x": -26.93, "y": -1.56, "curve": 0.25, "c3": 0.75}, - {"time": 0.5, "x": -27.99, "y": 1.7, "curve": 0.25, "c3": 0.75}, {"time": 0.6667, "x": -26.93, "y": -1.56, "curve": 0.25, "c3": 0.75}, - {"time": 0.8333, "x": -27.99, "y": 1.7, "curve": 0.317, "c3": 0.693}, {"time": 1.0833} + {"x": 2.14, "y": -1.5, "curve": 0.381, "c2": 0.55, "c3": 0.742}, {"time": 0.0667, "curve": 0.25, "c3": 0.75}, {"time": 0.15, "x": 5.81, "y": -4.07, "curve": 0.25, "c3": 0.75}, + {"time": 0.35, "x": -70.52, "y": 35.61, "curve": 0.25, "c3": 0.75}, {"time": 0.5667, "x": 5.81, "y": -4.07, "curve": 0.245, "c3": 0.637, "c4": 0.56}, + {"time": 0.6667, "x": 2.14, "y": -1.5} ] }, - "@leg-front-right": { - "translate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": -84.32, "y": 39.72, "curve": 0.317, "c3": 0.693}, {"time": 0.3333, "x": -82.71, "y": 34.75, "curve": 0.317, "c3": 0.693}, - {"time": 0.5, "x": -84.32, "y": 39.72, "curve": 0.317, "c3": 0.693}, {"time": 0.6667, "x": -82.71, "y": 34.75, "curve": 0.317, "c3": 0.693}, - {"time": 0.8333, "x": -84.32, "y": 39.72, "curve": 0.317, "c3": 0.693}, {"time": 1.0833} + "body-braid2": { + "rotate": [ + {"curve": 0.25, "c3": 0.75}, {"time": 0.0833, "angle": -1.43, "curve": 0.25, "c3": 0.75}, {"time": 0.2833, "angle": 20.83, "curve": 0.25, "c3": 0.75}, + {"time": 0.5, "angle": -1.43, "curve": 0.25, "c3": 0.75}, {"time": 0.6667} ] }, - "leg-front-right-IK": { - "translate": [{"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": 40.32, "curve": "stepped"}, {"time": 0.8333, "x": 40.32, "curve": 0.317, "c3": 0.693}, {"time": 1.0833}] + "body-braid4": { + "rotate": [ + {"angle": -2.78, "curve": 0.381, "c2": 0.59, "c3": 0.729}, {"time": 0.0667, "angle": -11.53, "curve": 0.25, "c3": 0.625, "c4": 0.5}, + {"time": 0.1167, "angle": -5.76, "curve": 0.375, "c2": 0.5, "c3": 0.75}, {"time": 0.2, "curve": 0.25, "c3": 0.75}, {"time": 0.2833, "angle": -11.53, "curve": 0.25, "c3": 0.75}, + {"time": 0.5, "angle": 27.46, "curve": 0.243, "c3": 0.658, "c4": 0.64}, {"time": 0.6667, "angle": -2.78} + ] }, - "leg-front-left-IK": { - "translate": [{"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": 26.51, "curve": "stepped"}, {"time": 0.8333, "x": 26.51, "curve": 0.317, "c3": 0.693}, {"time": 1.0833}] + "body-braid3": { + "rotate": [ + {"angle": -4.11, "curve": 0.347, "c2": 0.38, "c3": 0.694, "c4": 0.76}, {"time": 0.05, "angle": -1.08, "curve": 0.375, "c2": 0.62, "c3": 0.716}, + {"time": 0.0833, "curve": 0.25, "c3": 0.75}, {"time": 0.1667, "angle": -8.3, "curve": 0.25, "c3": 0.75}, {"time": 0.3667, "angle": 33.27, "curve": 0.25, "c3": 0.75}, + {"time": 0.5833, "angle": -8.3, "curve": 0.25, "c3": 0.625, "c4": 0.5}, {"time": 0.6667, "angle": -4.11} + ] }, - "leg-back-left-IK": { + "@body2": { + "rotate": [ + {"angle": 3.71, "curve": 0.339, "c2": 0.35, "c3": 0.679, "c4": 0.7}, {"time": 0.0333, "angle": 1.81, "curve": 0.382, "c2": 0.58, "c3": 0.731}, + {"time": 0.0833, "curve": 0.25, "c3": 0.75}, {"time": 0.1667, "angle": 7.45, "curve": 0.25, "c3": 0.75}, {"time": 0.3667, "angle": -18.73, "curve": 0.25, "c3": 0.75}, + {"time": 0.5833, "angle": 7.45, "curve": 0.25, "c3": 0.625, "c4": 0.5}, {"time": 0.6667, "angle": 3.71} + ], "translate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": -30.93, "y": 88.63, "curve": 0.617, "c4": 0.6}, {"time": 0.2667, "x": -62.81, "y": 72.23, "curve": 0, "c2": 0.4, "c3": 0.383}, - {"time": 0.35, "x": -28.19, "y": 96.83, "curve": 0.617, "c4": 0.6}, {"time": 0.45, "x": -62.81, "y": 72.23, "curve": 0, "c2": 0.4, "c3": 0.383}, - {"time": 0.55, "x": -28.19, "y": 96.83, "curve": 0.617, "c4": 0.6}, {"time": 0.6333, "x": -62.81, "y": 72.23, "curve": 0, "c2": 0.4, "c3": 0.383}, - {"time": 0.7333, "x": -28.19, "y": 96.83, "curve": 0.434, "c3": 0.739, "c4": 0.4}, {"time": 0.8333, "x": -56.92, "y": 76.7, "curve": 0.223, "c2": 0.33, "c3": 0.336}, {"time": 1.0833} + {"x": -0.01, "y": 0.15, "curve": 0.375, "c2": 0.62, "c3": 0.716}, {"time": 0.0333, "curve": 0.25, "c3": 0.75}, {"time": 0.1167, "x": -0.08, "y": 1.15, "curve": 0.25, "c3": 0.75}, + {"time": 0.3167, "x": 4.59, "y": -41.28, "curve": 0.25, "c3": 0.75}, {"time": 0.5333, "x": -0.08, "y": 1.15, "curve": 0.243, "c3": 0.68, "c4": 0.71}, + {"time": 0.6667, "x": -0.01, "y": 0.15} ] }, - "tail": { + "body-braid6": { "rotate": [ - {"curve": 0, "c2": 0.3, "c3": 0.546}, {"time": 0.1667, "angle": 25.35, "curve": 0.317, "c3": 0.693}, {"time": 0.3333, "angle": 33.35, "curve": 0.317, "c3": 0.693}, - {"time": 0.5, "angle": 25.35, "curve": 0.317, "c3": 0.693}, {"time": 0.6667, "angle": 33.35, "curve": 0.317, "c3": 0.693}, - {"time": 0.9167, "angle": 25.35, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 1.0833} + {"angle": -18.82, "curve": 0.358, "c2": 0.65, "c3": 0.693}, {"time": 0.0167, "angle": -20.17, "curve": 0.269, "c3": 0.618, "c4": 0.42}, + {"time": 0.05, "angle": -15.29, "curve": 0.345, "c2": 0.37, "c3": 0.757}, {"time": 0.1667, "curve": 0.25, "c3": 0.75}, {"time": 0.25, "angle": -20.17, "curve": 0.25, "c3": 0.75}, + {"time": 0.5, "angle": 18.35, "curve": 0.245, "c3": 0.714, "c4": 0.85}, {"time": 0.6667, "angle": -18.82} ] }, - "@shadow": { - "translate": [{"curve": 0, "c2": 0.3, "c3": 0.546}, {"time": 0.1667, "x": 32.73, "curve": "stepped"}, {"time": 0.8333, "x": 32.73, "curve": 0.317, "c3": 0.693}, {"time": 1.0833}], - "scale": [ - {"time": 0.1667, "curve": 0.317, "c3": 0.693}, {"time": 0.25, "x": 1.02, "y": 1.02, "curve": 0.317, "c3": 0.693}, {"time": 0.3333, "curve": 0.317, "c3": 0.693}, - {"time": 0.4167, "x": 1.02, "y": 1.02, "curve": 0.317, "c3": 0.693}, {"time": 0.5, "curve": 0.317, "c3": 0.693}, {"time": 0.5833, "x": 1.02, "y": 1.02, "curve": 0.317, "c3": 0.693}, - {"time": 0.6667, "curve": 0.317, "c3": 0.693}, {"time": 0.8333, "x": 1.02, "y": 1.02, "curve": 0.317, "c3": 0.693}, {"time": 1.0833} + "body-braid5": { + "rotate": [ + {"angle": -5.04, "curve": 0.328, "c2": 0.32, "c3": 0.68, "c4": 0.71}, {"time": 0.05, "angle": -1.76, "curve": 0.382, "c2": 0.58, "c3": 0.731}, {"time": 0.1, "curve": 0.25, "c3": 0.75}, + {"time": 0.1833, "angle": -7.27, "curve": 0.25, "c3": 0.75}, {"time": 0.3833, "angle": 36.02, "curve": 0.25, "c3": 0.75}, + {"time": 0.6167, "angle": -7.27, "curve": 0.263, "c3": 0.618, "c4": 0.43}, {"time": 0.6667, "angle": -5.04} + ] + }, + "body-braid": { + "rotate": [ + {"angle": -0.97, "curve": 0.363, "c2": 0.44, "c3": 0.711, "c4": 0.83}, {"time": 0.05, "angle": -0.11, "curve": 0.36, "c2": 0.64, "c3": 0.695}, + {"time": 0.0667, "curve": 0.25, "c3": 0.75}, {"time": 0.15, "angle": -2.68, "curve": 0.25, "c3": 0.75}, {"time": 0.35, "angle": 22.42, "curve": 0.25, "c3": 0.75}, + {"time": 0.5667, "angle": -2.68, "curve": 0.245, "c3": 0.637, "c4": 0.56}, {"time": 0.6667, "angle": -0.97} ] } }, - "drawOrder": [{"time": 0.0667, "offsets": [{"slot": "leg-back-left", "offset": 10}]}, {"time": 0.9}] + "events": [{"time": 0.15, "name": "jump"}] }, - "1639814451": { + "160342495": { "slots": { - "eyes": {"attachment": [{"name": "eyes-shut"}, {"time": 0.2, "name": "eyes"}]}, "mouth": {"attachment": [{"time": 0.0333, "name": "mouth-open"}, {"time": 0.2167, "name": "mouth"}]} + "eyes": {"attachment": [{"time": 0.0833, "name": "eyes-shut"}, {"time": 0.1667, "name": "eyes-angry"}, {"time": 0.9833, "name": "eyes-shut"}, {"time": 1.0833, "name": "eyes"}]}, + "leg-front-left": { + "attachment": [ + {"time": 0.5, "name": "sumo-leg-front-left-stretch"}, {"time": 0.6333, "name": "sumo-leg-front-left"}, {"time": 0.7667, "name": "sumo-leg-front-left-stretch"}, + {"time": 0.9, "name": "sumo-leg-front-left"} + ] + }, + "mouth": {"attachment": [{"time": 0.0833, "name": "mouth-bite"}, {"time": 0.3667, "name": "mouth-open"}, {"time": 0.9833, "name": "mouth-bite"}, {"time": 1.0833, "name": "mouth"}]} }, "bones": { "@pivot-back": { "rotate": [ - {"angle": -8.23, "curve": "stepped"}, {"time": 0.1667, "angle": -8.23, "curve": 0.306, "c4": 0.8}, {"time": 0.3333, "angle": 5.43, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5} + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.15, "angle": 3.67, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.3333, "angle": -14.29, "curve": 0.779, "c4": 0.3}, + {"time": 0.3667, "angle": 15.82}, {"time": 0.4667, "angle": 16.67, "curve": 0.779, "c4": 0.3}, {"time": 0.5, "angle": -19.96}, {"time": 0.6, "angle": -21.17, "curve": 0.779, "c4": 0.3}, + {"time": 0.6333, "angle": 15.82}, {"time": 0.7333, "angle": 16.67, "curve": 0.779, "c4": 0.3}, {"time": 0.7667, "angle": -19.96}, + {"time": 0.8667, "angle": -21.17, "curve": 0.779, "c4": 0.3}, {"time": 0.9833, "angle": 4.4, "curve": 0, "c2": 0.1, "c3": 0.85}, + {"time": 1.05, "angle": 6.79, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1.25} ], - "translate": [{"y": -0.04, "curve": 0, "c2": 0.3, "c3": 0.534}, {"time": 0.1667, "x": 17.97, "y": 94.25, "curve": 0.315, "c4": 0.8}, {"time": 0.3333, "y": -0.04}] - }, - "@leg-back-left": {"rotate": [{"angle": 14.26, "curve": "stepped"}, {"time": 0.2167, "angle": 14.26, "curve": 0, "c2": 0.1, "c3": 0.847}, {"time": 0.3333, "angle": -11.75}]}, - "@leg-front-left": {"rotate": [{"angle": 14.58, "curve": "stepped"}, {"time": 0.2167, "angle": 14.58, "curve": 0, "c2": 0.1, "c3": 0.847}, {"time": 0.3333, "angle": 20.14}]}, - "@leg-front-right": {"rotate": [{"angle": 12.31, "curve": "stepped"}, {"time": 0.2167, "angle": 12.31, "curve": 0, "c2": 0.1, "c3": 0.847}, {"time": 0.3333, "angle": -30.3}]}, - "tail": { - "rotate": [ - {"curve": 0, "c2": 0.6, "c3": 0.237}, {"time": 0.1667, "angle": -18.5, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "angle": 4.16, "curve": 0, "c2": 0.3, "c3": 0.54}, - {"time": 0.5} + "translate": [ + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.2167, "x": 8.02, "curve": 0, "c2": 0.4, "c3": 0.383}, {"time": 0.3333, "x": -54.3, "y": 61.69, "curve": 0.779, "c4": 0.3}, + {"time": 0.3667, "x": -60.41, "y": 130.13}, {"time": 0.4667, "x": -60.41, "y": 130.01, "curve": 0.779, "c4": 0.3}, {"time": 0.5, "x": -58.41, "y": 9.6}, + {"time": 0.6, "x": -58.41, "y": 9.9, "curve": 0.779, "c4": 0.3}, {"time": 0.6333, "x": -60.41, "y": 130.13}, {"time": 0.7333, "x": -60.41, "y": 130.01, "curve": 0.779, "c4": 0.3}, + {"time": 0.7667, "x": -58.41, "y": 9.6}, {"time": 0.8667, "x": -58.41, "y": 9.9, "curve": 0.779, "c4": 0.3}, {"time": 0.9833} ] }, - "@shadow": {"scale": [{"x": 1.3, "y": 1.3, "curve": 0, "c2": 0.4, "c3": 0.533}, {"time": 0.1667, "x": 0.9, "y": 0.9, "curve": 0.315, "c4": 0.8}, {"time": 0.3333}]}, - "body-fur-8": { - "rotate": [ - {"angle": 3.76, "curve": 0.379, "c2": 0.6, "c3": 0.724}, {"time": 0.0333}, {"time": 0.2, "angle": -36.41, "curve": 0.25, "c3": 0.75}, - {"time": 0.4, "angle": 20.41, "curve": 0.242, "c3": 0.667, "c4": 0.67}, {"time": 0.5, "angle": -0.91} + "@leg-front-right": { + "translate": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.2167, "x": -18.54, "y": -11.57}, {"time": 0.25, "x": -23.07, "y": 10.08, "curve": 0, "c2": 0.4, "c3": 0.383}, + {"time": 0.3333, "x": 47.55, "y": -24.33, "curve": 0.779, "c4": 0.4}, {"time": 0.3667, "x": 22.95, "y": 2.68}, {"time": 0.4667, "x": 29.92, "y": -4.24, "curve": 0.779, "c4": 0.4}, + {"time": 0.5, "x": 30.08, "y": -11.86, "curve": "stepped"}, {"time": 0.6, "x": 30.08, "y": -11.86, "curve": 0.774, "c4": 0.4}, {"time": 0.6333, "x": 22.95, "y": 2.68}, + {"time": 0.7333, "x": 29.92, "y": -4.24, "curve": 0.779, "c4": 0.4}, {"time": 0.7667, "x": 22.95, "y": 2.68, "curve": "stepped"}, + {"time": 0.9167, "x": 22.95, "y": 2.68, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.95, "curve": 0.464, "c4": 0.7}, {"time": 0.9833, "x": -1.45, "y": -24.11}, + {"time": 1.05, "x": 1.91, "y": -42.48, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1.0833} + ], + "scale": [ + {"time": 0.2167}, {"time": 0.25, "x": 1.5}, {"time": 0.3333, "curve": 0.779, "c4": 0.4}, {"time": 0.3667, "x": 1.5}, {"time": 0.4667, "x": 1.51, "curve": 0.157, "c2": 0.33, "c3": 0.727}, + {"time": 0.5, "curve": "stepped"}, {"time": 0.6, "curve": 0.779, "c4": 0.4}, {"time": 0.6333, "x": 1.5}, {"time": 0.7333, "x": 1.51, "curve": 0.157, "c2": 0.33, "c3": 0.727}, + {"time": 0.7667} ] }, - "body-fur-1": { - "rotate": [ - {"angle": 13.56, "curve": 0.359, "c2": 0.43, "c3": 0.756}, {"time": 0.0833}, {"time": 0.25, "angle": -36.41, "curve": 0.25, "c3": 0.75}, - {"time": 0.45, "angle": 20.41, "curve": 0.26, "c3": 0.618, "c4": 0.44}, {"time": 0.5, "angle": 10.51} + "@leg-front-left": { + "translate": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.2167, "x": -6.84, "y": -9.77, "curve": "stepped"}, {"time": 0.9833, "x": -6.84, "y": -9.77, "curve": 0, "c2": 0.1, "c3": 0.85}, + {"time": 1.05, "x": -6.29, "y": -18.69, "curve": 0, "c2": 0.23, "c3": 0.365, "c4": 0.58}, {"time": 1.0833, "x": -3.64, "y": -2.46, "curve": 0.177, "c2": 0.35, "c3": 0.731}, + {"time": 1.25} + ], + "scale": [ + {"time": 0.4667, "curve": 0.779, "c4": 0.4}, {"time": 0.5, "x": 1.5}, {"time": 0.6, "x": 1.51, "curve": 0.157, "c2": 0.33, "c3": 0.727}, {"time": 0.6333, "curve": "stepped"}, + {"time": 0.7333, "curve": 0.779, "c4": 0.4}, {"time": 0.7667, "x": 1.5}, {"time": 0.8667, "x": 1.51, "curve": 0.157, "c2": 0.33, "c3": 0.727}, {"time": 0.9833} ] }, - "body-fur-2": { - "rotate": [ - {"angle": 18.76, "curve": 0.356, "c2": 0.65, "c3": 0.691}, {"time": 0.0167, "angle": 20.41, "curve": 0.25, "c3": 0.625, "c4": 0.5}, - {"time": 0.0833, "angle": 10.2, "curve": 0.375, "c2": 0.5, "c3": 0.75}, {"time": 0.15}, {"time": 0.3167, "angle": -36.41, "curve": 0.246, "c3": 0.717, "c4": 0.86}, - {"time": 0.5, "angle": 13.84} + "@leg-back-left": { + "translate": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.2167, "x": -0.11, "y": -2.73, "curve": 0, "c2": 0.1, "c3": 0.853}, {"time": 0.3333, "x": 1.43, "y": -8.39, "curve": "stepped"}, + {"time": 0.75, "x": 1.43, "y": -8.39, "curve": 0, "c2": 0.1, "c3": 0.853}, {"time": 0.9833, "x": -0.11, "y": -2.73, "curve": 0, "c2": 0.1, "c3": 0.85}, + {"time": 1.05, "x": -0.46, "y": -6.19, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1.25} ] }, - "body-fur-3": {"rotate": [{"angle": 20.41, "curve": 0.25, "c3": 0.75}, {"time": 0.1333}, {"time": 0.3, "angle": -36.41, "curve": 0.25, "c3": 0.75}, {"time": 0.5, "angle": 5.54}]}, - "body-fur-4": { - "rotate": [ - {"angle": 4.28, "curve": 0.382, "c2": 0.57, "c3": 0.735}, {"time": 0.0667, "angle": 20.41, "curve": 0.25, "c3": 0.625, "c4": 0.5}, - {"time": 0.1333, "angle": 10.2, "curve": 0.375, "c2": 0.5, "c3": 0.75}, {"time": 0.2}, {"time": 0.3667, "angle": -36.41, "curve": 0.243, "c3": 0.649, "c4": 0.6}, - {"time": 0.5, "angle": 12.53} - ] + "@pivot-main": { + "translate": [ + {"time": 0.15, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "x": -73.35, "y": 43, "curve": "stepped"}, {"time": 0.8667, "x": -73.35, "y": 43, "curve": 0.315, "c4": 0.8}, + {"time": 0.9833, "x": -146.44, "curve": "stepped"}, {"time": 1.05, "x": -146.44, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1.15, "x": -45.61, "y": 50.15, "curve": 0.315, "c4": 0.8}, + {"time": 1.25} + ], + "scale": [{"time": 0.9833, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1.05, "y": 0.98, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1.15}] }, - "body-fur-5": { - "rotate": [ - {"angle": 16.64, "curve": 0.333, "c2": 0.33, "c3": 0.758}, {"time": 0.1}, {"time": 0.2667, "angle": -36.41, "curve": 0.25, "c3": 0.75}, - {"time": 0.4667, "angle": 20.41, "curve": 0.276, "c3": 0.621, "c4": 0.4}, {"time": 0.5, "angle": 6.86} + "leg-front-right-IK": { + "translate": [ + {"time": 0.15, "curve": 0, "c2": 0.18, "c3": 0.416, "c4": 0.58}, {"time": 0.2167, "x": 40.05, "y": 75.1}, {"time": 0.25, "x": 6.78, "y": 74.83, "curve": 0, "c2": 0.4, "c3": 0.383}, + {"time": 0.3333, "x": -193.39, "y": 304.19, "curve": 0.779, "c4": 0.4}, {"time": 0.3667, "x": -21.84, "y": -45.29}, {"time": 0.4667, "x": 11.75, "y": -48.86, "curve": 0.779, "c4": 0.4}, + {"time": 0.5, "x": -180.19, "y": 260.8}, {"time": 0.6, "x": -183.12, "y": 295.33, "curve": 0.774, "c4": 0.4}, {"time": 0.6333, "x": 7.37, "y": -47.08}, + {"time": 0.7333, "x": 28.44, "y": -46.48, "curve": 0.779, "c4": 0.4}, {"time": 0.7667, "x": -165.57, "y": 223.23}, {"time": 0.8667, "x": -174.41, "y": 246.27, "curve": 0.779, "c4": 0.4}, + {"time": 0.9833, "x": 1.3, "y": -4.56}, {"time": 1.05, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 1.0833, "x": -14.68, "y": -19.57, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1.25} ] }, - "body-fur-6": { - "rotate": [ - {"angle": 14.93, "curve": 0.371, "c2": 0.62, "c3": 0.71}, {"time": 0.0333, "angle": 20.41, "curve": 0.25, "c3": 0.625, "c4": 0.5}, - {"time": 0.1, "angle": 10.2, "curve": 0.375, "c2": 0.5, "c3": 0.75}, {"time": 0.1667}, {"time": 0.3333, "angle": -36.41, "curve": 0.243, "c3": 0.689, "c4": 0.75}, - {"time": 0.5, "angle": 13.33} + "leg-front-left-IK": { + "translate": [ + {"time": 0.15, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "x": -54.88, "y": 124.95, "curve": 0.779, "c4": 0.4}, {"time": 0.3667, "x": 37.97, "y": 122.64}, + {"time": 0.4667, "x": 48.96, "y": 138.43, "curve": 0.779, "c4": 0.4}, {"time": 0.5, "x": -227.16, "y": 232.48}, {"time": 0.6, "x": -213.15, "y": 265.57, "curve": 0.779, "c4": 0.4}, + {"time": 0.6333, "x": 37.97, "y": 122.64}, {"time": 0.7333, "x": 58.73, "y": 130.92, "curve": 0.779, "c4": 0.4}, {"time": 0.7667, "x": -229.42, "y": 225.72}, + {"time": 0.8667, "x": -218.4, "y": 260.32, "curve": 0.617, "c4": 0.6}, {"time": 0.9833, "curve": "stepped"}, {"time": 1.05, "curve": 0, "c2": 0.1, "c3": 0.85}, + {"time": 1.0833, "x": -7.79, "y": -10.12, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1.25} ] }, - "body-fur-7": { - "rotate": [ - {"angle": 10.2, "curve": 0.375, "c2": 0.5, "c3": 0.75}, {"time": 0.0667, "curve": 0.25, "c3": 0.75}, {"time": 0.2333, "angle": -36.41, "curve": 0.25, "c3": 0.75}, - {"time": 0.4333, "angle": 20.41, "curve": 0.25, "c3": 0.625, "c4": 0.5}, {"time": 0.5, "angle": 2.91} + "leg-back-left-IK": { + "translate": [ + {"time": 0.0833, "curve": 0.332, "c3": 0.682, "c4": 0.41}, {"time": 0.2167, "x": 6.07, "y": 22.48, "curve": 0, "c2": 0.4, "c3": 0.383}, + {"time": 0.3333, "x": -66.23, "y": 98.46, "curve": 0.779, "c4": 0.4}, {"time": 0.3667, "x": 32.46, "y": 177.26}, {"time": 0.4667, "x": 42.56, "y": 194, "curve": 0.779, "c4": 0.4}, + {"time": 0.5, "x": -143.31, "y": 25.48}, {"time": 0.6, "x": -161.53, "y": 28.25, "curve": 0.779, "c4": 0.4}, {"time": 0.6333, "x": 39.84, "y": 189.07}, + {"time": 0.7333, "x": 43.3, "y": 201.38, "curve": 0.779, "c4": 0.4}, {"time": 0.7667, "x": -147, "y": 26.22}, {"time": 0.8667, "x": -162.73, "y": 28.16, "curve": 0.779, "c4": 0.4}, + {"time": 0.9833, "curve": "stepped"}, {"time": 1.05, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 1.1667, "x": 24.35, "y": 13.92, "curve": 0.154, "c4": 0.9}, {"time": 1.25} ] }, - "body-fur-9": { + "tail": { "rotate": [ - {"angle": 16.68, "curve": 0.314, "c2": 0.27, "c3": 0.657, "c4": 0.64}, {"time": 0.0333, "angle": 10.2, "curve": 0.375, "c2": 0.5, "c3": 0.75}, {"time": 0.1}, - {"time": 0.2667, "angle": -36.41, "curve": 0.25, "c3": 0.75}, {"time": 0.4667, "angle": 20.41, "curve": 0.276, "c3": 0.621, "c4": 0.4}, {"time": 0.5, "angle": 6.86} + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.15, "angle": 14.68, "curve": 0.315, "c4": 0.8}, {"time": 0.2167, "angle": -12.57}, + {"time": 0.3333, "angle": -14.89, "curve": 0.779, "c4": 0.4}, {"time": 0.3667, "angle": 20.64}, {"time": 0.4667, "angle": 25.18, "curve": 0.779, "c4": 0.4}, + {"time": 0.5, "angle": -19.72}, {"time": 0.6, "angle": -22.19, "curve": 0.779, "c4": 0.4}, {"time": 0.6333, "angle": 20.64}, {"time": 0.7333, "angle": 25.18, "curve": 0.779, "c4": 0.4}, + {"time": 0.7667, "angle": -19.72}, {"time": 0.8667, "angle": -22.19, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.9833, "angle": 23.3}, + {"time": 1.05, "angle": 26.39, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1.1333, "angle": -14.8, "curve": 0.154, "c4": 0.9}, {"time": 1.25} ] - } - } - }, - "886720603": { - "slots": {"eyes": {"attachment": [{"name": "eyes-shut"}]}}, - "bones": { - "@pivot-back": { + }, + "@shadow": { "translate": [ - {"y": 0.06, "curve": 0.387, "c3": 0.314}, {"time": 0.2167, "y": -17.94, "curve": 0.387, "c3": 0.314}, {"time": 0.45, "y": 0.06, "curve": 0.387, "c3": 0.314}, - {"time": 0.6667, "y": -17.94, "curve": 0.387, "c3": 0.314}, {"time": 0.9, "y": 0.06, "curve": 0.387, "c3": 0.314}, {"time": 1.1167, "y": -17.94, "curve": 0.387, "c3": 0.314}, - {"time": 1.3333, "y": 0.06} + {"time": 0.15, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.3333, "x": -132.39, "curve": 0.779, "c4": 0.4}, {"time": 0.3667, "x": -111.3, "curve": "stepped"}, + {"time": 0.8667, "x": -111.3, "curve": 0.315, "c4": 0.8}, {"time": 0.9833, "x": -132.39, "curve": "stepped"}, {"time": 1.05, "x": -132.39, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 1.25} ], "scale": [ - {"curve": 0.387, "c3": 0.314}, {"time": 0.2167, "y": 0.98, "curve": 0.387, "c3": 0.314}, {"time": 0.45, "curve": 0.387, "c3": 0.314}, - {"time": 0.6667, "y": 0.98, "curve": 0.387, "c3": 0.314}, {"time": 0.9, "curve": 0.387, "c3": 0.314}, {"time": 1.1167, "y": 0.98, "curve": 0.387, "c3": 0.314}, {"time": 1.3333} - ] - }, - "@leg-front-left": { - "rotate": [ - {"curve": 0, "c2": 0.1, "c3": 0.843}, {"time": 0.1167, "angle": -12.07, "curve": 0.161, "c3": 0.854}, {"time": 0.2167, "angle": -2.63}, - {"time": 0.3333, "angle": 7.79, "curve": 0.079, "c4": 0.95}, {"time": 0.45, "curve": 0, "c2": 0.1, "c3": 0.843}, {"time": 0.55, "angle": -12.07, "curve": 0.161, "c3": 0.854}, - {"time": 0.6667, "angle": -2.63}, {"time": 0.7667, "angle": 7.79, "curve": 0.079, "c4": 0.95}, {"time": 0.8833, "curve": 0, "c2": 0.1, "c3": 0.843}, - {"time": 1, "angle": -12.07, "curve": 0.161, "c3": 0.854}, {"time": 1.1, "angle": -2.63}, {"time": 1.2167, "angle": 7.79, "curve": 0.079, "c4": 0.95}, {"time": 1.3333} - ] - }, - "@leg-front-right": { - "rotate": [ - {"curve": 0, "c2": 0.1, "c3": 0.843}, {"time": 0.1167, "angle": -12.07, "curve": 0.161, "c3": 0.854}, {"time": 0.2167, "angle": -2.63}, - {"time": 0.3333, "angle": 7.79, "curve": 0.079, "c4": 0.95}, {"time": 0.45, "curve": 0, "c2": 0.1, "c3": 0.843}, {"time": 0.55, "angle": -12.07, "curve": 0.161, "c3": 0.854}, - {"time": 0.6667, "angle": -2.63}, {"time": 0.7667, "angle": 7.79, "curve": 0.079, "c4": 0.95}, {"time": 0.8833, "curve": 0, "c2": 0.1, "c3": 0.843}, - {"time": 1, "angle": -12.07, "curve": 0.161, "c3": 0.854}, {"time": 1.1, "angle": -2.63}, {"time": 1.2167, "angle": 7.79, "curve": 0.079, "c4": 0.95}, {"time": 1.3333} + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.15, "x": 1.05, "y": 1.05, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.3333, "x": 0.93, "y": 0.93, "curve": 0.779, "c4": 0.4}, + {"time": 0.3667, "x": 0.95, "y": 0.95}, {"time": 0.4667, "x": 0.93, "y": 0.93, "curve": 0.779, "c4": 0.4}, {"time": 0.5}, {"time": 0.6, "x": 1.05, "y": 1.05, "curve": 0.779, "c4": 0.4}, + {"time": 0.6333}, {"time": 0.7333, "x": 0.93, "y": 0.93, "curve": 0.779, "c4": 0.4}, {"time": 0.7667}, {"time": 0.8667, "x": 1.05, "y": 1.05, "curve": 0.315, "c4": 0.8}, + {"time": 0.9833, "x": 1.09, "y": 1.09, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 1.05, "x": 1.11, "y": 1.11, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1.25} ] }, - "@leg-back-left": { + "@body3": { "rotate": [ - {"curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.1167, "angle": 8.89, "curve": 0.161, "c3": 0.854}, {"time": 0.2167, "angle": 0.78}, - {"time": 0.3333, "angle": -7.35, "curve": 0.079, "c4": 0.95}, {"time": 0.45, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.55, "angle": 8.89, "curve": 0.161, "c3": 0.854}, - {"time": 0.6667, "angle": 0.78}, {"time": 0.7667, "angle": -7.35, "curve": 0.079, "c4": 0.95}, {"time": 0.8833, "curve": 0, "c2": 0.1, "c3": 0.85}, - {"time": 1, "angle": 8.89, "curve": 0.161, "c3": 0.854}, {"time": 1.1, "angle": 0.78}, {"time": 1.2167, "angle": -7.35, "curve": 0.079, "c4": 0.95}, {"time": 1.3333} + {"angle": -2.58, "curve": 0.379, "c2": 0.6, "c3": 0.724}, {"time": 0.0333, "curve": 0.25, "c3": 0.75}, {"time": 0.2, "angle": -3.77, "curve": 0.25, "c3": 0.75}, + {"time": 0.3667, "angle": -14, "curve": 0.25, "c3": 0.75}, {"time": 0.5333, "angle": -3.77, "curve": 0.25, "c3": 0.75}, {"time": 0.7, "angle": -14, "curve": 0.25, "c3": 0.75}, + {"time": 0.8667, "angle": -3.77, "curve": 0.25, "c3": 0.75}, {"time": 1.0333, "angle": -14, "curve": "stepped"}, {"time": 1.15, "angle": -14, "curve": 0.242, "c3": 0.667, "c4": 0.67}, + {"time": 1.25, "angle": -2.58} + ], + "translate": [ + {"time": 0.1667, "curve": 0.25, "c3": 0.75}, {"time": 0.3333, "x": 45.36, "y": -33.56, "curve": 0.25, "c3": 0.75}, {"time": 0.5, "curve": 0.25, "c3": 0.75}, + {"time": 0.6667, "x": 45.36, "y": -33.56, "curve": 0.25, "c3": 0.75}, {"time": 0.8333, "curve": 0.25, "c3": 0.75}, {"time": 1, "x": 45.36, "y": -33.56, "curve": "stepped"}, + {"time": 1.1167, "x": 45.36, "y": -33.56, "curve": 0.25, "c3": 0.75}, {"time": 1.25} ] }, - "tail": { + "@body4": { "rotate": [ - {"curve": 0, "c2": 0.05, "c3": 0.658}, {"time": 0.3333, "angle": -10.75, "curve": 0.304, "c3": 0.689}, {"time": 0.7333, "angle": 3.03}, - {"time": 1.05, "angle": 5.39, "curve": 0.234, "c4": 0.9}, {"time": 1.3333} - ] - }, - "@shadow": { - "scale": [ - {"curve": 0.387, "c3": 0.314}, {"time": 0.2167, "x": 1.1, "y": 1.1, "curve": 0.387, "c3": 0.314}, {"time": 0.45, "curve": 0.387, "c3": 0.314}, - {"time": 0.6667, "x": 1.1, "y": 1.1, "curve": 0.387, "c3": 0.314}, {"time": 0.9, "curve": 0.387, "c3": 0.314}, {"time": 1.1167, "x": 1.1, "y": 1.1, "curve": 0.387, "c3": 0.314}, - {"time": 1.3333} + {"angle": 3.34, "curve": 0.359, "c2": 0.43, "c3": 0.756}, {"time": 0.0833, "curve": 0.25, "c3": 0.75}, {"time": 0.25, "angle": -15.35, "curve": 0.25, "c3": 0.75}, + {"time": 0.4167, "angle": 14.26, "curve": 0.25, "c3": 0.75}, {"time": 0.5833, "angle": -15.35, "curve": 0.25, "c3": 0.75}, {"time": 0.75, "angle": 14.26, "curve": 0.25, "c3": 0.75}, + {"time": 0.9167, "angle": -15.35, "curve": 0.25, "c3": 0.75}, {"time": 1.0833, "angle": 14.26, "curve": 0.25, "c3": 0.75}, + {"time": 1.2, "angle": 5.04, "curve": 0.26, "c3": 0.618, "c4": 0.44}, {"time": 1.25, "angle": 3.34} + ], + "translate": [ + {"curve": 0.25, "c3": 0.75}, {"time": 0.1667, "x": -1.59, "y": 23.93, "curve": 0.25, "c3": 0.75}, {"time": 0.3333, "x": 6.55, "y": -29.78, "curve": 0.25, "c3": 0.75}, + {"time": 0.5, "x": -1.59, "y": 23.93, "curve": 0.25, "c3": 0.75}, {"time": 0.6667, "x": 6.55, "y": -29.78, "curve": 0.25, "c3": 0.75}, + {"time": 0.8333, "x": -1.59, "y": 23.93, "curve": 0.25, "c3": 0.75}, {"time": 1, "x": 6.55, "y": -29.78, "curve": 0.25, "c3": 0.75}, + {"time": 1.1167, "x": 18.66, "y": -28.5, "curve": 0.25, "c3": 0.75}, {"time": 1.25} ] }, - "body-fur-2": { + "@body6": { "rotate": [ - {"angle": -11.79, "curve": 0.376, "c2": 0.61, "c3": 0.718}, {"time": 0.05, "angle": -15.12, "curve": 0.245, "c3": 0.64, "c4": 0.57}, - {"time": 0.1833, "angle": -0.2, "curve": 0.382, "c2": 0.55, "c3": 0.741}, {"time": 0.2667, "angle": 7.75, "curve": 0.25, "c3": 0.75}, - {"time": 0.4833, "angle": -14.99, "curve": 0.25, "c3": 0.75}, {"time": 0.7167, "angle": 7.75, "curve": 0.25, "c3": 0.75}, {"time": 0.9333, "angle": -14.48, "curve": 0.25, "c3": 0.75}, - {"time": 1.15, "angle": 7.75, "curve": 0.243, "c3": 0.676, "c4": 0.7}, {"time": 1.3333, "angle": -11.79} + {"angle": 19.63, "curve": 0.381, "c2": 0.59, "c3": 0.729}, {"time": 0.0333, "angle": 17.86, "curve": 0.25, "c3": 0.625, "c4": 0.5}, + {"time": 0.1, "angle": 8.93, "curve": 0.375, "c2": 0.5, "c3": 0.75}, {"time": 0.1667, "curve": 0.25, "c3": 0.75}, {"time": 0.3333, "angle": -5.24, "curve": 0.25, "c3": 0.75}, + {"time": 0.5, "angle": 25.77, "curve": 0.25, "c3": 0.75}, {"time": 0.6667, "angle": -5.24, "curve": 0.25, "c3": 0.75}, {"time": 0.8333, "angle": 25.77, "curve": 0.25, "c3": 0.75}, + {"time": 1, "angle": -5.24, "curve": 0.25, "c3": 0.75}, {"time": 1.1667, "angle": 25.77, "curve": 0.243, "c3": 0.658, "c4": 0.64}, {"time": 1.25, "angle": 19.63} + ], + "translate": [ + {"x": -36.66, "y": 11.77, "curve": 0.333, "c2": 0.33, "c3": 0.758}, {"time": 0.1, "curve": 0.25, "c3": 0.75}, {"time": 0.2667, "x": 5.81, "y": -4.07, "curve": 0.25, "c3": 0.75}, + {"time": 0.4333, "x": -70.52, "y": 35.61, "curve": 0.25, "c3": 0.75}, {"time": 0.6, "x": 5.81, "y": -4.07, "curve": 0.25, "c3": 0.75}, + {"time": 0.7667, "x": -70.52, "y": 35.61, "curve": 0.25, "c3": 0.75}, {"time": 0.9333, "x": 5.81, "y": -4.07, "curve": 0.25, "c3": 0.75}, + {"time": 1.1, "x": -70.52, "y": 35.61, "curve": 0.25, "c3": 0.75}, {"time": 1.2167, "x": -44.95, "y": 14.44, "curve": 0.276, "c3": 0.621, "c4": 0.4}, + {"time": 1.25, "x": -36.66, "y": 11.77} ] }, - "body-fur-9": { + "body-braid2": { "rotate": [ - {"angle": -7.12, "curve": 0.329, "c2": 0.32, "c3": 0.671, "c4": 0.68}, {"time": 0.05, "angle": -0.2, "curve": 0.382, "c2": 0.55, "c3": 0.741}, - {"time": 0.1333, "angle": 7.75, "curve": 0.25, "c3": 0.75}, {"time": 0.35, "angle": -14.99, "curve": 0.25, "c3": 0.75}, {"time": 0.5833, "angle": 7.75, "curve": 0.25, "c3": 0.75}, - {"time": 0.8, "angle": -14.48, "curve": 0.25, "c3": 0.75}, {"time": 1.0167, "angle": 7.75, "curve": 0.25, "c3": 0.75}, - {"time": 1.25, "angle": -15.12, "curve": 0.259, "c3": 0.618, "c4": 0.45}, {"time": 1.3333, "angle": -7.12} + {"curve": 0.25, "c3": 0.75}, {"time": 0.1667, "angle": -1.43, "curve": 0.25, "c3": 0.75}, {"time": 0.3333, "angle": 20.83, "curve": 0.25, "c3": 0.75}, + {"time": 0.5, "angle": -1.43, "curve": 0.25, "c3": 0.75}, {"time": 0.6667, "angle": 20.83, "curve": 0.25, "c3": 0.75}, {"time": 0.8333, "angle": -1.43, "curve": 0.25, "c3": 0.75}, + {"time": 1, "angle": 20.83, "curve": 0.25, "c3": 0.75}, {"time": 1.1167, "angle": 9.83, "curve": 0.25, "c3": 0.75}, {"time": 1.25} ] }, - "body-fur-8": { + "body-braid4": { "rotate": [ - {"angle": 4.01, "curve": 0.378, "c2": 0.61, "c3": 0.721}, {"time": 0.05, "angle": 7.75, "curve": 0.25, "c3": 0.75}, {"time": 0.2667, "angle": -14.99, "curve": 0.25, "c3": 0.75}, - {"time": 0.5, "angle": 7.75, "curve": 0.25, "c3": 0.75}, {"time": 0.7167, "angle": -14.48, "curve": 0.25, "c3": 0.75}, {"time": 0.9333, "angle": 7.75, "curve": 0.25, "c3": 0.75}, - {"time": 1.1667, "angle": -15.12, "curve": 0.242, "c3": 0.671, "c4": 0.68}, {"time": 1.3333, "angle": 4.01} + {"angle": 20.25, "curve": 0.298, "c2": 0.2, "c3": 0.756}, {"time": 0.1167, "curve": 0.25, "c3": 0.75}, {"time": 0.2833, "angle": -11.53, "curve": 0.25, "c3": 0.75}, + {"time": 0.45, "angle": 27.46, "curve": 0.25, "c3": 0.75}, {"time": 0.6167, "angle": -11.53, "curve": 0.25, "c3": 0.75}, {"time": 0.7833, "angle": 27.46, "curve": 0.25, "c3": 0.75}, + {"time": 0.95, "angle": -11.53, "curve": 0.25, "c3": 0.75}, {"time": 1.1167, "angle": 27.46, "curve": 0.25, "c3": 0.75}, + {"time": 1.2333, "angle": 21.6, "curve": 0.299, "c3": 0.636, "c4": 0.36}, {"time": 1.25, "angle": 20.25} ] }, - "body-fur-7": { + "body-braid3": { "rotate": [ - {"angle": -0.2, "curve": 0.382, "c2": 0.55, "c3": 0.741}, {"time": 0.0833, "angle": 7.75, "curve": 0.25, "c3": 0.75}, {"time": 0.3, "angle": -14.99, "curve": 0.25, "c3": 0.75}, - {"time": 0.5333, "angle": 7.75, "curve": 0.25, "c3": 0.75}, {"time": 0.75, "angle": -14.48, "curve": 0.25, "c3": 0.75}, {"time": 0.9667, "angle": 7.75, "curve": 0.25, "c3": 0.75}, - {"time": 1.2, "angle": -15.12, "curve": 0.245, "c3": 0.64, "c4": 0.57}, {"time": 1.3333, "angle": -0.2} + {"angle": 9.2, "curve": 0.382, "c2": 0.56, "c3": 0.74}, {"time": 0.05, "curve": 0.25, "c3": 0.75}, {"time": 0.2167, "angle": -8.3, "curve": 0.25, "c3": 0.75}, + {"time": 0.3833, "angle": 33.27, "curve": 0.25, "c3": 0.75}, {"time": 0.55, "angle": -8.3, "curve": 0.25, "c3": 0.75}, {"time": 0.7167, "angle": 33.27, "curve": 0.25, "c3": 0.75}, + {"time": 0.8833, "angle": -8.3, "curve": 0.25, "c3": 0.75}, {"time": 1.05, "angle": 33.27, "curve": 0.25, "c3": 0.75}, + {"time": 1.1667, "angle": 27.41, "curve": 0.244, "c3": 0.641, "c4": 0.57}, {"time": 1.25, "angle": 9.2} ] }, - "body-fur-6": { + "@body2": { "rotate": [ - {"angle": -14.49, "curve": 0.271, "c2": 0.12, "c3": 0.65, "c4": 0.61}, {"time": 0.1167, "angle": -0.2, "curve": 0.382, "c2": 0.55, "c3": 0.741}, - {"time": 0.2, "angle": 7.75, "curve": 0.25, "c3": 0.75}, {"time": 0.4167, "angle": -14.99, "curve": 0.25, "c3": 0.75}, {"time": 0.65, "angle": 7.75, "curve": 0.25, "c3": 0.75}, - {"time": 0.8667, "angle": -14.48, "curve": 0.25, "c3": 0.75}, {"time": 1.0833, "angle": 7.75, "curve": 0.25, "c3": 0.75}, - {"time": 1.3167, "angle": -15.12, "curve": 0.311, "c3": 0.645, "c4": 0.35}, {"time": 1.3333, "angle": -14.49} + {"angle": -17.59, "curve": 0.285, "c2": 0.17, "c3": 0.657, "c4": 0.63}, {"time": 0.0667, "angle": -6.29, "curve": 0.382, "c2": 0.56, "c3": 0.74}, + {"time": 0.1167, "curve": 0.25, "c3": 0.75}, {"time": 0.2833, "angle": 7.45, "curve": 0.25, "c3": 0.75}, {"time": 0.45, "angle": -18.73, "curve": 0.25, "c3": 0.75}, + {"time": 0.6167, "angle": 7.45, "curve": 0.25, "c3": 0.75}, {"time": 0.7833, "angle": -18.73, "curve": 0.25, "c3": 0.75}, {"time": 0.95, "angle": 7.45, "curve": 0.25, "c3": 0.75}, + {"time": 1.1167, "angle": -18.73, "curve": "stepped"}, {"time": 1.2333, "angle": -18.73, "curve": 0.299, "c3": 0.636, "c4": 0.36}, {"time": 1.25, "angle": -17.59} + ], + "translate": [ + {"x": 2.29, "y": -20.64, "curve": 0.375, "c2": 0.5, "c3": 0.75}, {"time": 0.0667, "curve": 0.25, "c3": 0.75}, {"time": 0.2333, "x": -0.08, "y": 1.15, "curve": 0.25, "c3": 0.75}, + {"time": 0.4, "x": 4.59, "y": -41.28, "curve": 0.25, "c3": 0.75}, {"time": 0.5667, "x": -0.08, "y": 1.15, "curve": 0.25, "c3": 0.75}, + {"time": 0.7333, "x": 4.59, "y": -41.28, "curve": 0.25, "c3": 0.75}, {"time": 0.9, "x": -0.08, "y": 1.15, "curve": 0.25, "c3": 0.75}, + {"time": 1.0667, "x": 4.59, "y": -41.28, "curve": "stepped"}, {"time": 1.1833, "x": 4.59, "y": -41.28, "curve": 0.25, "c3": 0.625, "c4": 0.5}, {"time": 1.25, "x": 2.29, "y": -20.64} ] }, - "body-fur-5": { + "body-braid6": { "rotate": [ - {"angle": -4.84, "curve": 0.371, "c2": 0.48, "c3": 0.752}, {"time": 0.1167, "angle": 7.75, "curve": 0.25, "c3": 0.75}, {"time": 0.3333, "angle": -14.99, "curve": 0.25, "c3": 0.75}, - {"time": 0.5667, "angle": 7.75, "curve": 0.25, "c3": 0.75}, {"time": 0.7833, "angle": -14.48, "curve": 0.25, "c3": 0.75}, {"time": 1, "angle": 7.75, "curve": 0.25, "c3": 0.75}, - {"time": 1.2333, "angle": -15.12, "curve": 0.253, "c3": 0.622, "c4": 0.48}, {"time": 1.3333, "angle": -4.84} + {"angle": 13.81, "curve": 0.381, "c2": 0.59, "c3": 0.729}, {"time": 0.0333, "angle": 12.49, "curve": 0.25, "c3": 0.75}, {"time": 0.1667, "curve": 0.25, "c3": 0.75}, + {"time": 0.3333, "angle": -20.17, "curve": 0.25, "c3": 0.75}, {"time": 0.5, "angle": 18.35, "curve": 0.25, "c3": 0.75}, {"time": 0.6667, "angle": -20.17, "curve": 0.25, "c3": 0.75}, + {"time": 0.8333, "angle": 18.35, "curve": 0.25, "c3": 0.75}, {"time": 1, "angle": -20.17, "curve": 0.25, "c3": 0.75}, + {"time": 1.1667, "angle": 18.35, "curve": 0.243, "c3": 0.658, "c4": 0.64}, {"time": 1.25, "angle": 13.81} ] }, - "body-fur-4": { + "body-braid5": { "rotate": [ - {"angle": -14.56, "curve": 0.354, "c2": 0.65, "c3": 0.688}, {"time": 0.0167, "angle": -15.12, "curve": 0.245, "c3": 0.64, "c4": 0.57}, - {"time": 0.15, "angle": -0.2, "curve": 0.382, "c2": 0.55, "c3": 0.741}, {"time": 0.2333, "angle": 7.75, "curve": 0.25, "c3": 0.75}, - {"time": 0.45, "angle": -14.99, "curve": 0.25, "c3": 0.75}, {"time": 0.6833, "angle": 7.75, "curve": 0.25, "c3": 0.75}, {"time": 0.9, "angle": -14.48, "curve": 0.25, "c3": 0.75}, - {"time": 1.1167, "angle": 7.75, "curve": 0.246, "c3": 0.721, "c4": 0.87}, {"time": 1.3333, "angle": -14.56} + {"angle": 20.04, "curve": 0.359, "c2": 0.43, "c3": 0.756}, {"time": 0.0833, "curve": 0.25, "c3": 0.75}, {"time": 0.25, "angle": -7.27, "curve": 0.25, "c3": 0.75}, + {"time": 0.4167, "angle": 36.02, "curve": 0.25, "c3": 0.75}, {"time": 0.5833, "angle": -7.27, "curve": 0.25, "c3": 0.75}, {"time": 0.75, "angle": 36.02, "curve": 0.25, "c3": 0.75}, + {"time": 0.9167, "angle": -7.27, "curve": 0.25, "c3": 0.75}, {"time": 1.0833, "angle": 36.02, "curve": 0.25, "c3": 0.75}, + {"time": 1.2, "angle": 30.17, "curve": 0.26, "c3": 0.618, "c4": 0.44}, {"time": 1.25, "angle": 20.04} ] }, - "body-fur-3": { + "body-braid": { "rotate": [ - {"angle": -9.36, "curve": 0.346, "c2": 0.38, "c3": 0.757}, {"time": 0.15, "angle": 7.75, "curve": 0.25, "c3": 0.75}, {"time": 0.3667, "angle": -14.99, "curve": 0.25, "c3": 0.75}, - {"time": 0.6, "angle": 7.75, "curve": 0.25, "c3": 0.75}, {"time": 0.8167, "angle": -14.48, "curve": 0.25, "c3": 0.75}, {"time": 1.0333, "angle": 7.75, "curve": 0.25, "c3": 0.75}, - {"time": 1.2667, "angle": -15.12, "curve": 0.268, "c3": 0.618, "c4": 0.42}, {"time": 1.3333, "angle": -9.36} + {"angle": 2.11, "curve": 0.379, "c2": 0.6, "c3": 0.724}, {"time": 0.0333, "curve": 0.25, "c3": 0.75}, {"time": 0.2, "angle": -2.68, "curve": 0.25, "c3": 0.75}, + {"time": 0.3667, "angle": 22.42, "curve": 0.25, "c3": 0.75}, {"time": 0.5333, "angle": -2.68, "curve": 0.25, "c3": 0.75}, {"time": 0.7, "angle": 22.42, "curve": 0.25, "c3": 0.75}, + {"time": 0.8667, "angle": -2.68, "curve": 0.25, "c3": 0.75}, {"time": 1.0333, "angle": 22.42, "curve": 0.25, "c3": 0.75}, + {"time": 1.15, "angle": 11.42, "curve": 0.242, "c3": 0.667, "c4": 0.67}, {"time": 1.25, "angle": 2.11} ] }, - "body-fur-1": { + "@body5": { "rotate": [ - {"angle": -13.15, "curve": 0.307, "c2": 0.24, "c3": 0.756}, {"time": 0.1833, "angle": 7.75, "curve": 0.25, "c3": 0.75}, {"time": 0.4, "angle": -14.99, "curve": 0.25, "c3": 0.75}, - {"time": 0.6333, "angle": 7.75, "curve": 0.25, "c3": 0.75}, {"time": 0.85, "angle": -14.48, "curve": 0.25, "c3": 0.75}, {"time": 1.0667, "angle": 7.75, "curve": 0.25, "c3": 0.75}, - {"time": 1.3, "angle": -15.12, "curve": 0.293, "c3": 0.631, "c4": 0.37}, {"time": 1.3333, "angle": -13.15} + {"time": 0.1667, "curve": 0.25, "c3": 0.75}, {"time": 0.3333, "angle": 0.5, "curve": 0.25, "c3": 0.75}, {"time": 0.5, "curve": 0.25, "c3": 0.75}, + {"time": 0.6667, "angle": 0.5, "curve": 0.25, "c3": 0.75}, {"time": 0.8333, "curve": 0.25, "c3": 0.75}, {"time": 1, "angle": 0.5, "curve": "stepped"}, + {"time": 1.1167, "angle": 0.5, "curve": 0.25, "c3": 0.75}, {"time": 1.25} ] } - } - }, - "3043664647": { - "slots": { - "eyes": {"attachment": [{"time": 0.05, "name": "eyes-angry"}, {"time": 0.8833, "name": "eyes"}]}, - "mouth": {"attachment": [{"time": 0.05, "name": "mouth-bite"}, {"time": 0.4667, "name": "mouth-open"}, {"time": 0.75, "name": "mouth-bite"}, {"time": 0.8833, "name": "mouth"}]} }, + "events": [ + {"time": 0.3333, "name": "start-attack"}, {"time": 0.3667, "name": "hit"}, {"time": 0.5, "name": "hit"}, {"time": 0.6333, "name": "hit"}, {"time": 0.7667, "name": "hit"}, + {"time": 1.1167, "name": "start-attack"} + ] + }, + "928719411": { + "slots": {"eyes": {"attachment": [{"time": 1, "name": "eyes-shut"}, {"time": 1.1, "name": "eyes"}]}}, "bones": { "@pivot-back": { "rotate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "angle": 4, "curve": 0, "c2": 0.6, "c3": 0.237}, {"time": 0.3333, "angle": -8.88, "curve": 0.621, "c3": 0, "c4": 1.6}, - {"time": 0.6667, "angle": 8.17, "curve": 0.701, "c4": 0.5}, {"time": 0.8833, "angle": 5, "curve": 0.461, "c3": 0.543}, {"time": 1} + {"curve": 0.313, "c3": 0.699}, {"time": 0.3333, "angle": 2.04, "curve": 0.313, "c3": 0.699}, {"time": 0.6667, "curve": 0.313, "c3": 0.699}, + {"time": 1, "angle": 1.79, "curve": 0.313, "c3": 0.699}, {"time": 1.3333} ], "translate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": 33.65, "y": -5, "curve": 0, "c2": 0.6, "c3": 0.237}, - {"time": 0.3333, "x": -62.54, "y": 309.16, "curve": 0.621, "c3": 0, "c4": 1.6}, {"time": 0.6667, "x": 12.32, "y": 268.04, "curve": 0.701, "c4": 0.5}, {"time": 0.8833} - ] + {"curve": 0.313, "c3": 0.699}, {"time": 0.3333, "y": -6.53, "curve": 0.313, "c3": 0.699}, {"time": 0.6667, "curve": 0.313, "c3": 0.699}, + {"time": 1, "y": -8.86, "curve": 0.313, "c3": 0.699}, {"time": 1.3333} + ], + "scale": [{"curve": 0.313, "c3": 0.699}, {"time": 0.6667, "y": 0.99, "curve": 0.313, "c3": 0.699}, {"time": 1.3333}] }, - "@leg-front-left": { + "@leg-front-right": { "translate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": -0.29, "y": -5.47, "curve": 0, "c2": 0.6, "c3": 0.237}, {"time": 0.3333, "curve": "stepped"}, - {"time": 0.6667, "curve": 0.701, "c4": 0.5}, {"time": 0.8833, "x": -0.95, "y": -14.45, "curve": 0.461, "c3": 0.543}, {"time": 1} + {"curve": 0.313, "c3": 0.699}, {"time": 0.3333, "x": -0.08, "y": -22.35, "curve": 0.313, "c3": 0.699}, {"time": 0.6667, "x": -0.04, "y": 2.46, "curve": 0.313, "c3": 0.699}, + {"time": 1, "x": -0.08, "y": -22.35, "curve": 0.313, "c3": 0.699}, {"time": 1.3333} ] }, - "@leg-front-right": { + "@leg-front-left": { "translate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": -1.07, "y": -20.09, "curve": 0, "c2": 0.6, "c3": 0.237}, {"time": 0.3333, "curve": "stepped"}, - {"time": 0.6667, "curve": 0.701, "c4": 0.5}, {"time": 0.8833, "x": -1.66, "y": -25.29, "curve": 0.461, "c3": 0.543}, {"time": 1} + {"curve": 0.313, "c3": 0.699}, {"time": 0.3333, "x": 5.41, "y": -6.53, "curve": 0.313, "c3": 0.699}, {"time": 0.6667, "x": -0.03, "y": 1.81, "curve": 0.313, "c3": 0.699}, + {"time": 1, "x": 4.51, "y": -7.88, "curve": 0.313, "c3": 0.699}, {"time": 1.3333} + ], + "scale": [ + {"curve": 0.313, "c3": 0.699}, {"time": 0.3333, "x": 0.92, "curve": 0.313, "c3": 0.699}, {"time": 0.6667, "curve": 0.313, "c3": 0.699}, + {"time": 1, "x": 0.92, "curve": 0.313, "c3": 0.699}, {"time": 1.3333} ] }, - "@shadow": { + "@leg-back-left": { "translate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": 24.43, "curve": 0, "c2": 0.6, "c3": 0.237}, {"time": 0.3333, "x": -70.38, "curve": 0.621, "c3": 0, "c4": 1.4}, - {"time": 0.6667, "x": 5.15, "curve": 0.701, "c4": 0.5}, {"time": 0.8833, "x": -8.95, "curve": 0.461, "c3": 0.543}, {"time": 1} + {"curve": 0.313, "c3": 0.699}, {"time": 0.3333, "x": 3.28, "y": -4.61, "curve": 0.313, "c3": 0.699}, {"time": 0.6667, "x": -0.03, "y": 1.69, "curve": 0.313, "c3": 0.699}, + {"time": 1, "x": 3.25, "y": -6.37, "curve": 0.313, "c3": 0.699}, {"time": 1.3333} ], "scale": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": 1.08, "y": 1.08, "curve": 0, "c2": 0.6, "c3": 0.237}, - {"time": 0.3333, "x": 0.85, "y": 0.85, "curve": 0.621, "c3": 0, "c4": 1.4}, {"time": 0.6667, "x": 0.9, "y": 0.9, "curve": 0.701, "c4": 0.5}, - {"time": 0.8833, "x": 1.1, "y": 1.1, "curve": 0.461, "c3": 0.543}, {"time": 1} + {"curve": 0.313, "c3": 0.699}, {"time": 0.3333, "x": 0.952, "curve": 0.313, "c3": 0.699}, {"time": 0.6667, "curve": 0.313, "c3": 0.699}, + {"time": 1, "x": 0.951, "curve": 0.313, "c3": 0.699}, {"time": 1.3333} + ] + }, + "@pivot-main": { + "scale": [ + {"curve": 0.313, "c3": 0.699}, {"time": 0.3333, "y": 0.98, "curve": 0.313, "c3": 0.699}, {"time": 0.6667, "curve": 0.313, "c3": 0.699}, + {"time": 1, "y": 0.98, "curve": 0.313, "c3": 0.699}, {"time": 1.3333} ] }, "tail": { + "rotate": [{"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "angle": 4.98, "curve": 0.313, "c3": 0.699}, {"time": 1, "angle": -9.69, "curve": 0.313, "c3": 0.699}, {"time": 1.3333}] + }, + "back": { + "rotate": [{"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "angle": -4.48, "curve": 0.313, "c3": 0.699}, {"time": 1, "angle": 4.37, "curve": 0.313, "c3": 0.699}, {"time": 1.3333}] + }, + "ear-right": {"rotate": [{"curve": 0.461, "c3": 0.543}, {"time": 0.6667, "angle": -1.95, "curve": 0.461, "c3": 0.543}, {"time": 1.3333}]}, + "ear-left": {"rotate": [{"curve": 0.461, "c3": 0.543}, {"time": 0.6667, "angle": -1.95, "curve": 0.461, "c3": 0.543}, {"time": 1.3333}]}, + "@shadow": { + "scale": [ + {"curve": 0.306, "c3": 0.695}, {"time": 0.3333, "x": 1.05, "y": 1.05, "curve": 0.306, "c3": 0.695}, {"time": 0.6667, "curve": 0.306, "c3": 0.695}, + {"time": 1, "x": 1.05, "y": 1.05, "curve": 0.306, "c3": 0.695}, {"time": 1.3333} + ] + }, + "@body2": { "rotate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "angle": 17.93, "curve": 0, "c2": 0.6, "c3": 0.237}, {"time": 0.3333, "angle": -15.3, "curve": 0.621, "c3": 0, "c4": 1.4}, - {"time": 0.6667, "angle": 24.81, "curve": 0.701, "c4": 0.5}, {"time": 0.8833, "angle": -15.84, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 1} + {"angle": -8.36, "curve": 0.38, "c2": 0.53, "c3": 0.746}, {"time": 0.15, "angle": -11.67, "curve": 0.25, "c3": 0.75}, {"time": 0.4833, "angle": -0.58, "curve": 0.25, "c3": 0.75}, + {"time": 0.8167, "angle": -7.42, "curve": 0.25, "c3": 0.75}, {"time": 1.15, "angle": -3.79, "curve": 0.251, "c3": 0.623, "c4": 0.49}, + {"time": 1.3167, "angle": -7.52, "curve": 0.334, "c2": 0.33, "c3": 0.668, "c4": 0.67}, {"time": 1.3333, "angle": -8.36} + ], + "translate": [ + {"x": 6.58, "y": -2.34, "curve": 0.379, "c2": 0.6, "c3": 0.723}, {"time": 0.0833, "x": 7.01, "y": -3.66, "curve": 0.25, "c3": 0.75}, + {"time": 0.4167, "x": 4.52, "y": 4.02, "curve": 0.25, "c3": 0.75}, {"time": 0.75, "x": 23.63, "y": -17.11, "curve": 0.25, "c3": 0.75}, + {"time": 1.0833, "x": 4.52, "y": 4.02, "curve": 0.251, "c3": 0.623, "c4": 0.49}, {"time": 1.25, "x": 5.7, "y": 0.38, "curve": 0.343, "c2": 0.36, "c3": 0.688, "c4": 0.73}, + {"time": 1.3333, "x": 6.58, "y": -2.34} ] }, - "body-fur-2": { + "@body3": { "rotate": [ - {"angle": -26.19, "curve": 0.243, "c3": 0.649, "c4": 0.6}, {"time": 0.0667, "angle": -7.43, "curve": 0.382, "c2": 0.57, "c3": 0.735}, {"time": 0.1}, - {"time": 0.2667, "angle": 24.86, "curve": 0.25, "c3": 0.75}, {"time": 0.5333, "angle": -36.65, "curve": 0.25, "c3": 0.75}, {"time": 0.6667, "angle": 38.65, "curve": 0.25, "c3": 0.75}, - {"time": 0.8667, "curve": 0.25, "c3": 0.75}, {"time": 1, "angle": 13.84} + {"angle": -3.14, "curve": 0.324, "c2": 0.3, "c3": 0.661, "c4": 0.65}, {"time": 0.05, "angle": -5.6, "curve": 0.373, "c2": 0.49, "c3": 0.751}, + {"time": 0.2333, "angle": -11.83, "curve": 0.25, "c3": 0.75}, {"time": 0.5667, "curve": 0.25, "c3": 0.75}, {"time": 0.9, "angle": -10.68, "curve": 0.25, "c3": 0.75}, + {"time": 1.2333, "curve": 0.266, "c3": 0.618, "c4": 0.42}, {"time": 1.3333, "angle": -3.14} + ], + "translate": [ + {"x": 1.24, "y": -7.54, "curve": 0.336, "c2": 0.34, "c3": 0.673, "c4": 0.69}, {"time": 0.05, "x": 1.78, "y": -10.88, "curve": 0.382, "c2": 0.56, "c3": 0.738}, + {"time": 0.1667, "x": 2.61, "y": -15.92, "curve": 0.25, "c3": 0.75}, {"time": 0.5167, "curve": 0.25, "c3": 0.75}, {"time": 0.85, "x": -9.39, "y": -9.55, "curve": 0.25, "c3": 0.75}, + {"time": 1.1833, "curve": 0.251, "c3": 0.623, "c4": 0.49}, {"time": 1.3333, "x": 1.24, "y": -7.54} ] }, - "body-fur-9": { + "@body4": { "rotate": [ - {"angle": -23.66, "curve": 0.295, "c2": 0.21, "c3": 0.667, "c4": 0.67}, {"time": 0.05, "angle": -7.43, "curve": 0.382, "c2": 0.57, "c3": 0.735}, {"time": 0.0833}, - {"time": 0.25, "angle": 24.86, "curve": 0.25, "c3": 0.75}, {"time": 0.5167, "angle": -36.65, "curve": 0.25, "c3": 0.75}, {"time": 0.65, "angle": 38.65, "curve": 0.25, "c3": 0.75}, - {"time": 0.85, "curve": 0.25, "c3": 0.75}, {"time": 0.9833, "angle": -26.19, "curve": 0.29, "c3": 0.629, "c4": 0.37}, {"time": 1, "angle": 6.86} + {"angle": 2.61, "curve": 0.382, "c2": 0.56, "c3": 0.738}, {"time": 0.1167, "curve": 0.25, "c3": 0.75}, {"time": 0.45, "angle": 9.48, "curve": 0.25, "c3": 0.75}, + {"time": 0.7833, "curve": 0.25, "c3": 0.75}, {"time": 1.1333, "angle": 8.25, "curve": 0.249, "c3": 0.627, "c4": 0.51}, + {"time": 1.3, "angle": 3.91, "curve": 0.337, "c2": 0.34, "c3": 0.672, "c4": 0.68}, {"time": 1.3333, "angle": 2.61} + ], + "translate": [ + {"x": 0.91, "y": 5.06, "curve": 0.368, "c2": 0.47, "c3": 0.753}, {"time": 0.1833, "x": 5.79, "y": 17.08, "curve": 0.25, "c3": 0.75}, + {"time": 0.5167, "x": -7.29, "y": -4.4, "curve": 0.25, "c3": 0.75}, {"time": 0.85, "x": 5.79, "y": 17.08, "curve": 0.25, "c3": 0.75}, + {"time": 1.2, "x": -2.61, "y": -3.63, "curve": 0.266, "c3": 0.618, "c4": 0.42}, {"time": 1.3, "x": -0.37, "y": 1.9, "curve": 0.326, "c2": 0.31, "c3": 0.661, "c4": 0.65}, + {"time": 1.3333, "x": 0.91, "y": 5.06} ] }, - "body-fur-8": { + "@body6": { "rotate": [ - {"angle": -13.1, "curve": 0.375, "c2": 0.5, "c3": 0.75}, {"time": 0.05}, {"time": 0.2167, "angle": 24.86, "curve": 0.25, "c3": 0.75}, - {"time": 0.4833, "angle": -36.65, "curve": 0.25, "c3": 0.75}, {"time": 0.6167, "angle": 38.65, "curve": 0.25, "c3": 0.75}, {"time": 0.8167, "curve": 0.25, "c3": 0.75}, - {"time": 0.95, "angle": -26.19, "curve": 0.25, "c3": 0.625, "c4": 0.5}, {"time": 1, "angle": -0.91} + {"angle": 11.32, "curve": 0.309, "c2": 0.21, "c3": 0.645, "c4": 0.55}, {"time": 0.0333, "angle": 10.61, "curve": 0.32, "c2": 0.29, "c3": 0.757}, + {"time": 0.3, "angle": 4.64, "curve": 0.25, "c3": 0.75}, {"time": 0.65, "angle": 16.86, "curve": 0.25, "c3": 0.75}, {"time": 0.9833, "angle": 4.64, "curve": 0.25, "c3": 0.75}, + {"time": 1.3167, "angle": 11.5, "curve": 0.31, "c3": 0.645, "c4": 0.35}, {"time": 1.3333, "angle": 11.32} + ], + "translate": [ + {"x": 1.53, "y": 2.55, "curve": 0.364, "c2": 0.64, "c3": 0.7}, {"time": 0.0333, "x": 1.62, "y": 2.71, "curve": 0.25, "c3": 0.75}, {"time": 0.3833, "curve": 0.25, "c3": 0.75}, + {"time": 0.7167, "y": 11.45, "curve": 0.25, "c3": 0.75}, {"time": 1.05, "curve": 0.244, "c3": 0.704, "c4": 0.81}, {"time": 1.3333, "x": 1.53, "y": 2.55} ] }, - "body-fur-7": { + "body-braid4": { "rotate": [ - {"angle": -2.53, "curve": 0.371, "c2": 0.62, "c3": 0.71}, {"time": 0.0167, "curve": 0.25, "c3": 0.75}, {"time": 0.1833, "angle": 24.86, "curve": 0.25, "c3": 0.75}, - {"time": 0.45, "angle": -36.65, "curve": 0.25, "c3": 0.75}, {"time": 0.5833, "angle": 38.65, "curve": 0.25, "c3": 0.75}, {"time": 0.7833, "curve": 0.25, "c3": 0.75}, - {"time": 0.9167, "angle": -26.19, "curve": 0.243, "c3": 0.689, "c4": 0.75}, {"time": 1, "angle": 2.91} + {"angle": -5.26, "curve": 0.368, "c2": 0.47, "c3": 0.753}, {"time": 0.1833, "angle": 6.8, "curve": 0.25, "c3": 0.75}, {"time": 0.5167, "angle": -13.91, "curve": 0.25, "c3": 0.75}, + {"time": 0.85, "angle": 7.47, "curve": 0.25, "c3": 0.75}, {"time": 1.2, "angle": -13.91, "curve": 0.277, "c3": 0.621, "c4": 0.4}, + {"time": 1.2667, "angle": -10.32, "curve": 0.315, "c2": 0.28, "c3": 0.655, "c4": 0.63}, {"time": 1.3333, "angle": -5.26} ] }, - "body-fur-6": { + "body-braid3": { "rotate": [ - {"angle": -18.74, "curve": 0.325, "c2": 0.31, "c3": 0.675, "c4": 0.69}, {"time": 0.0333, "angle": -7.43, "curve": 0.382, "c2": 0.57, "c3": 0.735}, {"time": 0.0667}, - {"time": 0.2333, "angle": 24.86, "curve": 0.25, "c3": 0.75}, {"time": 0.5, "angle": -36.65, "curve": 0.25, "c3": 0.75}, {"time": 0.6333, "angle": 38.65, "curve": 0.25, "c3": 0.75}, - {"time": 0.8333, "curve": 0.25, "c3": 0.75}, {"time": 0.9667, "angle": -26.19, "curve": 0.265, "c3": 0.618, "c4": 0.43}, {"time": 1, "angle": 13.33} + {"angle": 11.86, "curve": 0.37, "c2": 0.63, "c3": 0.708}, {"time": 0.05, "angle": 12.42, "curve": 0.25, "c3": 0.75}, {"time": 0.3833, "angle": 6.08, "curve": 0.25, "c3": 0.75}, + {"time": 0.7167, "angle": 22.13, "curve": 0.25, "c3": 0.75}, {"time": 1.0667, "angle": 6.08, "curve": 0.244, "c3": 0.644, "c4": 0.58}, + {"time": 1.2667, "angle": 10.41, "curve": 0.353, "c2": 0.41, "c3": 0.693, "c4": 0.76}, {"time": 1.3333, "angle": 11.86} ] }, - "body-fur-5": { + "body-braid2": { "rotate": [ - {"angle": -7.43, "curve": 0.382, "c2": 0.57, "c3": 0.735}, {"time": 0.0333}, {"time": 0.2, "angle": 24.86, "curve": 0.25, "c3": 0.75}, - {"time": 0.4667, "angle": -36.65, "curve": 0.25, "c3": 0.75}, {"time": 0.6, "angle": 38.65, "curve": 0.25, "c3": 0.75}, {"time": 0.8, "curve": 0.25, "c3": 0.75}, - {"time": 0.9333, "angle": -26.19, "curve": 0.243, "c3": 0.649, "c4": 0.6}, {"time": 1, "angle": 6.86} + {"angle": 5.39, "curve": 0.267, "c2": 0.07, "c3": 0.752}, {"time": 0.3167, "angle": -2.62, "curve": 0.25, "c3": 0.75}, {"time": 0.65, "angle": 5.5, "curve": 0.25, "c3": 0.75}, + {"time": 0.9833, "angle": -2.62, "curve": 0.243, "c3": 0.691, "c4": 0.76}, {"time": 1.2667, "angle": 4.76, "curve": 0.37, "c2": 0.63, "c3": 0.708}, {"time": 1.3333, "angle": 5.39} + ], + "translate": [ + {"x": 1.68, "y": -1.19, "curve": 0.32, "c2": 0.29, "c3": 0.757}, {"time": 0.2667, "x": 12.93, "y": -9.14, "curve": 0.25, "c3": 0.75}, {"time": 0.6, "curve": 0.25, "c3": 0.75}, + {"time": 0.9333, "x": 12.93, "y": -9.14, "curve": 0.25, "c3": 0.75}, {"time": 1.2667, "curve": 0.284, "c3": 0.625, "c4": 0.38}, {"time": 1.3333, "x": 1.68, "y": -1.19} ] }, - "body-fur-4": { + "body-braid6": { "rotate": [ - {"angle": -23.66, "curve": 0.295, "c2": 0.21, "c3": 0.667, "c4": 0.67}, {"time": 0.05, "angle": -7.43, "curve": 0.382, "c2": 0.57, "c3": 0.735}, {"time": 0.0833}, - {"time": 0.25, "angle": 24.86, "curve": 0.25, "c3": 0.75}, {"time": 0.5167, "angle": -36.65, "curve": 0.25, "c3": 0.75}, {"time": 0.65, "angle": 38.65, "curve": 0.25, "c3": 0.75}, - {"time": 0.85, "curve": 0.25, "c3": 0.75}, {"time": 0.9833, "angle": -26.19, "curve": 0.29, "c3": 0.629, "c4": 0.37}, {"time": 1, "angle": 12.53} + {"angle": -18.49, "curve": 0.356, "c2": 0.42, "c3": 0.756}, {"time": 0.2167, "angle": -2.18, "curve": 0.25, "c3": 0.75}, {"time": 0.55, "angle": -26.07, "curve": 0.25, "c3": 0.75}, + {"time": 0.8833, "angle": -1.52, "curve": 0.25, "c3": 0.75}, {"time": 1.2167, "angle": -26.07, "curve": 0.262, "c3": 0.618, "c4": 0.44}, {"time": 1.3333, "angle": -18.49} ] }, - "body-fur-3": { + "body-braid5": { "rotate": [ - {"angle": -13.1, "curve": 0.375, "c2": 0.5, "c3": 0.75}, {"time": 0.05}, {"time": 0.2167, "angle": 24.86, "curve": 0.25, "c3": 0.75}, - {"time": 0.4833, "angle": -36.65, "curve": 0.25, "c3": 0.75}, {"time": 0.6167, "angle": 38.65, "curve": 0.25, "c3": 0.75}, {"time": 0.8167, "curve": 0.25, "c3": 0.75}, - {"time": 0.95, "angle": -26.19, "curve": 0.25, "c3": 0.625, "c4": 0.5}, {"time": 1, "angle": 5.54} + {"angle": 2.96, "curve": 0.382, "c2": 0.58, "c3": 0.734}, {"time": 0.1, "angle": 5.29, "curve": 0.25, "c3": 0.75}, {"time": 0.45, "angle": -3.41, "curve": 0.25, "c3": 0.75}, + {"time": 0.7833, "angle": 17.16, "curve": 0.25, "c3": 0.75}, {"time": 1.1167, "angle": -3.41, "curve": 0.243, "c3": 0.651, "c4": 0.61}, {"time": 1.3333, "angle": 2.96} ] }, - "body-fur-1": { + "body-braid": { "rotate": [ - {"angle": -18.76, "curve": 0.351, "c2": 0.4, "c3": 0.757}, {"time": 0.0667}, {"time": 0.2333, "angle": 24.86, "curve": 0.25, "c3": 0.75}, - {"time": 0.5, "angle": -36.65, "curve": 0.25, "c3": 0.75}, {"time": 0.6333, "angle": 38.65, "curve": 0.25, "c3": 0.75}, {"time": 0.8333, "curve": 0.25, "c3": 0.75}, - {"time": 0.9667, "angle": -26.19, "curve": 0.265, "c3": 0.618, "c4": 0.43}, {"time": 1, "angle": 10.51} + {"angle": 10.09, "curve": 0.355, "c2": 0.65, "c3": 0.69}, {"time": 0.0333, "angle": 10.3, "curve": 0.25, "c3": 0.75}, {"time": 0.3667, "angle": 2.79, "curve": 0.25, "c3": 0.75}, + {"time": 0.7, "angle": 10.3, "curve": 0.25, "c3": 0.75}, {"time": 1.0333, "angle": 2.79, "curve": 0.246, "c3": 0.718, "c4": 0.86}, {"time": 1.3333, "angle": 10.09} + ], + "translate": [ + {"curve": 0.25, "c3": 0.75}, {"time": 0.3333, "x": 12.57, "y": -7.71, "curve": 0.25, "c3": 0.75}, {"time": 0.6667, "curve": 0.25, "c3": 0.75}, + {"time": 1, "x": 12.57, "y": -7.71, "curve": 0.25, "c3": 0.75}, {"time": 1.3333} + ] + }, + "@body5": { + "rotate": [ + {"angle": 1.28, "curve": 0.364, "c2": 0.64, "c3": 0.7}, {"time": 0.0333, "angle": 1.36, "curve": 0.25, "c3": 0.75}, {"time": 0.3833, "curve": 0.25, "c3": 0.75}, + {"time": 0.7167, "angle": 1.36, "curve": 0.25, "c3": 0.75}, {"time": 1.05, "curve": 0.244, "c3": 0.704, "c4": 0.81}, {"time": 1.3333, "angle": 1.28} ] } - }, - "events": [{"time": 0.4667, "name": "start-attack"}] + } }, - "117147712": { + "2954738379": { "slots": { - "eyes": {"attachment": [{"time": 0.0833, "name": "eyes-angry"}, {"time": 0.6667, "name": "eyes-shut"}, {"time": 0.75, "name": "eyes"}]}, - "mouth": {"attachment": [{"time": 0.0833, "name": "mouth-bite"}, {"time": 0.35, "name": "mouth-open"}, {"time": 0.55, "name": "mouth-bite"}, {"time": 0.75, "name": "mouth"}]} + "eyes": {"attachment": [{"time": 0.0833, "name": "eyes-shut"}, {"time": 0.1667, "name": "eyes-angry"}, {"time": 0.5833, "name": "eyes-shut"}, {"time": 0.6667, "name": "eyes"}]}, + "mouth": {"attachment": [{"time": 0.0833, "name": "mouth-bite"}, {"time": 0.3667, "name": "mouth-open"}, {"time": 0.5833, "name": "mouth"}]} }, "bones": { "@pivot-back": { "rotate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "angle": 4, "curve": 0, "c2": 0.5, "c3": 0.3}, {"time": 0.3333, "angle": -23.77, "curve": "stepped"}, - {"time": 0.35, "angle": -29.82, "curve": 0.698, "c3": 0.541}, {"time": 0.5833, "angle": 3}, {"time": 0.7167, "angle": 4, "curve": 0, "c2": 0.09, "c3": 0.479, "c4": 0.56}, - {"time": 0.8167, "angle": -5.09, "curve": 0.416, "c2": 0.51, "c3": 0.865}, {"time": 0.9167} + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.15, "angle": 3.67, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.3333, "angle": -14.29, "curve": 0.854, "c4": 0.1}, + {"time": 0.3667, "angle": 15.82}, {"time": 0.45, "angle": 16.67, "curve": 0.315, "c4": 0.8}, {"time": 0.5667, "angle": 4.4, "curve": 0, "c2": 0.1, "c3": 0.853}, + {"time": 0.6333, "angle": 6.79, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.8333} ], "translate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": 33.65, "y": -5, "curve": 0, "c2": 0.5, "c3": 0.3}, {"time": 0.3333, "x": 80.56, "y": 137.85, "curve": "stepped"}, - {"time": 0.35, "x": 147.57, "y": 42.83, "curve": 0, "c2": 0.2, "c3": 0.686}, {"time": 0.5, "x": 206.93, "y": -26.82, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.5833, "x": 226.09}, - {"time": 0.7167, "x": 237.58, "y": 2, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.9167} + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.2167, "x": 8.02, "curve": 0, "c2": 0.4, "c3": 0.383}, {"time": 0.3333, "x": -54.3, "y": 61.69, "curve": 0.854, "c4": 0.1}, + {"time": 0.3667, "x": -60.41, "y": 130.13}, {"time": 0.45, "x": -60.41, "y": 130.01, "curve": 0.315, "c4": 0.8}, {"time": 0.5667} ] }, - "@pivot-main": { + "@leg-front-right": { "translate": [ - {"time": 0.5833, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.7167, "x": 15, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.8167, "x": 7.5, "y": 59.4, "curve": 0.315, "c4": 0.8}, - {"time": 0.9167} + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.2167, "x": -18.54, "y": -11.57}, {"time": 0.25, "x": -23.07, "y": 10.08, "curve": 0, "c2": 0.4, "c3": 0.383}, + {"time": 0.3333, "x": 33.2, "y": -16.27, "curve": 0.854, "c4": 0.1}, {"time": 0.3667, "x": 22.95, "y": 2.68, "curve": "stepped"}, + {"time": 0.45, "x": 22.95, "y": 2.68, "curve": 0.157, "c2": 0.33, "c3": 0.727}, {"time": 0.5333, "x": 29.92, "y": -4.24, "curve": 0.779, "c4": 0.4}, + {"time": 0.5667, "x": -1.45, "y": -24.11, "curve": 0, "c2": 0.1, "c3": 0.853}, {"time": 0.6333, "x": -3.73, "y": -46.5, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.6667} + ], + "scale": [ + {"time": 0.2, "curve": 0.315, "c4": 0.8}, {"time": 0.25, "x": 1.5, "curve": 0, "c2": 0.3, "c3": 0.539}, {"time": 0.3333, "curve": 0.854, "c4": 0.1}, {"time": 0.3667, "x": 1.5}, + {"time": 0.45, "x": 1.51, "curve": 0.157, "c2": 0.33, "c3": 0.727}, {"time": 0.4833} ] }, - "leg-front-left-IK": { + "@leg-front-left": { "translate": [ - {"time": 0.1667, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.3333, "x": 27.04, "y": 216.41, "curve": "stepped"}, {"time": 0.35, "x": 51.7, "y": 178.19, "curve": 0.384, "c3": 0.537}, - {"time": 0.5833, "x": 202.93}, {"time": 0.7, "x": 218.86, "y": 2.61, "curve": 0.315, "c4": 0.8}, {"time": 0.7667, "x": 145.27, "curve": 0.237, "c4": 0.8}, {"time": 0.9167} + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.2167, "x": -6.84, "y": -9.77, "curve": "stepped"}, {"time": 0.5667, "x": -6.84, "y": -9.77, "curve": 0, "c2": 0.1, "c3": 0.85}, + {"time": 0.6333, "x": -6.29, "y": -18.69, "curve": 0, "c2": 0.23, "c3": 0.365, "c4": 0.58}, {"time": 0.6667, "x": -3.64, "y": -2.46, "curve": 0.177, "c2": 0.35, "c3": 0.731}, + {"time": 0.8333} ] }, - "leg-front-right-IK": { + "@leg-back-left": { "translate": [ - {"time": 0.1667, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.3333, "x": 54.35, "y": 310.88, "curve": "stepped"}, {"time": 0.35, "x": 67.2, "y": 319.96, "curve": 0.384, "c3": 0.537}, - {"time": 0.5833, "x": 199.77}, {"time": 0.7, "x": 187.66, "curve": 0.315, "c4": 0.8}, {"time": 0.7667, "x": 143.69, "curve": 0.237, "c4": 0.8}, {"time": 0.9167} + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.2167, "x": -0.11, "y": -2.73, "curve": "stepped"}, {"time": 0.5667, "x": -0.11, "y": -2.73, "curve": 0, "c2": 0.1, "c3": 0.85}, + {"time": 0.6333, "x": -0.46, "y": -6.19, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.8333} ] }, - "leg-back-left-IK": { + "@pivot-main": { "translate": [ - {"time": 0.1667, "curve": 0, "c2": 0.4, "c3": 0.383}, {"time": 0.3333, "x": 50.37, "y": 150.84, "curve": "stepped"}, {"time": 0.35, "x": 34.64, "y": 81.96, "curve": 0.306, "c4": 0.8}, - {"time": 0.5, "x": 185.62, "y": 1.08, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.7167, "x": 244.18, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.8167, "x": 108.59, "y": 18.82, "curve": 0.306, "c4": 0.8}, {"time": 0.9167} + {"time": 0.15, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "x": -73.35, "y": 43, "curve": "stepped"}, {"time": 0.45, "x": -73.35, "y": 43, "curve": 0.315, "c4": 0.8}, + {"time": 0.5667, "x": -146.44, "curve": "stepped"}, {"time": 0.6333, "x": -146.44, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.7333, "x": -45.61, "y": 50.15, "curve": 0.315, "c4": 0.8}, {"time": 0.8333} + ], + "scale": [{"time": 0.5667, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.6333, "y": 0.98, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.7333}] + }, + "leg-front-right-IK": { + "translate": [ + {"time": 0.15, "curve": 0, "c2": 0.18, "c3": 0.416, "c4": 0.58}, {"time": 0.2167, "x": 46.14, "y": 69.67}, {"time": 0.25, "x": 16.06, "y": 77.81, "curve": 0, "c2": 0.6, "c3": 0.237}, + {"time": 0.3333, "x": -177.78, "y": 257.33, "curve": 0.854, "c4": 0.1}, {"time": 0.3667, "x": 41.13, "y": -40.33}, {"time": 0.45, "x": 56.91, "y": -45.12, "curve": 0.315, "c4": 0.8}, + {"time": 0.5667, "curve": "stepped"}, {"time": 0.6333, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.6667, "x": -14.68, "y": -19.57, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.8333} ] }, - "@leg-front-right": { + "leg-front-left-IK": { "translate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": -1.03, "y": -19.32}, {"time": 0.3333, "curve": "stepped"}, {"time": 0.5833, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.7167, "x": 9.38, "y": 7.22}, {"time": 0.9167} + {"time": 0.15, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "x": -54.88, "y": 124.95, "curve": 0.854, "c4": 0.1}, {"time": 0.3667, "x": 40.57, "y": 118.1}, + {"time": 0.45, "x": 58.05, "y": 128.7, "curve": 0.315, "c4": 0.8}, {"time": 0.5667, "curve": "stepped"}, {"time": 0.6333, "curve": 0, "c2": 0.1, "c3": 0.85}, + {"time": 0.6667, "x": -7.79, "y": -10.12, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.8333} ] }, - "@leg-front-left": { + "leg-back-left-IK": { "translate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": -0.29, "y": -5.47}, {"time": 0.3333, "curve": "stepped"}, {"time": 0.5833, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.7167, "x": 6.3, "y": -2.41}, {"time": 0.9167} + {"time": 0.0833, "curve": 0.332, "c3": 0.682, "c4": 0.41}, {"time": 0.2167, "x": 7.47, "y": 21.8, "curve": 0, "c2": 0.4, "c3": 0.383}, + {"time": 0.3333, "x": -63.6, "y": 99.05, "curve": 0.854, "c4": 0.1}, {"time": 0.3667, "x": 33.89, "y": 176.06}, {"time": 0.45, "x": 42.14, "y": 193.39, "curve": 0.315, "c4": 0.8}, + {"time": 0.5667, "curve": "stepped"}, {"time": 0.6333, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.75, "x": 24.35, "y": 13.92, "curve": 0.154, "c4": 0.9}, {"time": 0.8333} ] }, "tail": { "rotate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "angle": 19.35, "curve": 0, "c2": 0.4, "c3": 0.383}, {"time": 0.3333, "angle": -0.88, "curve": "stepped"}, - {"time": 0.35, "angle": -13.56, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.5, "angle": 0.52, "curve": 0, "c2": 0.3, "c3": 0.544}, - {"time": 0.7167, "angle": 19.32, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.8, "angle": -9.3, "curve": 0.313, "c3": 0.699}, {"time": 0.9167} + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.15, "angle": 14.68, "curve": 0.315, "c4": 0.8}, {"time": 0.2167, "angle": -12.57}, + {"time": 0.3333, "angle": -14.89, "curve": 0.854, "c4": 0.1}, {"time": 0.3667, "angle": 25.96}, {"time": 0.45, "angle": 33.77}, + {"time": 0.6167, "angle": 26.39, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.7167, "angle": -14.8, "curve": 0.154, "c4": 0.9}, {"time": 0.8333} ] }, "@shadow": { "translate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": 24.43, "curve": 0, "c2": 0.4, "c3": 0.383}, {"time": 0.3333, "x": 86.58, "curve": "stepped"}, - {"time": 0.35, "x": 154.34, "curve": 0.315, "c4": 0.8}, {"time": 0.5, "x": 208.2, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.5833, "x": 216.55}, - {"time": 0.7167, "x": 243.36, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.9167} + {"time": 0.15, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.3333, "x": -132.39, "curve": 0.854, "c4": 0.1}, {"time": 0.3667, "x": -111.3, "curve": "stepped"}, + {"time": 0.45, "x": -111.3, "curve": 0.315, "c4": 0.8}, {"time": 0.5667, "x": -132.39, "curve": "stepped"}, {"time": 0.6333, "x": -132.39, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.8333} ], "scale": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": 1.08, "y": 1.08, "curve": 0, "c2": 0.4, "c3": 0.383}, {"time": 0.3333, "x": 0.92, "y": 0.92, "curve": "stepped"}, - {"time": 0.35, "x": 0.9, "y": 0.9, "curve": 0.315, "c4": 0.8}, {"time": 0.5, "x": 1.02, "y": 1.02, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.5833, "x": 1.08, "y": 1.08}, - {"time": 0.7167, "x": 1.1, "y": 1.1, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.9167} + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.15, "x": 1.05, "y": 1.05, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.3333, "x": 0.93, "y": 0.93, "curve": 0.854, "c4": 0.1}, + {"time": 0.3667, "x": 0.95, "y": 0.95}, {"time": 0.45, "x": 0.97, "y": 0.97, "curve": 0.315, "c4": 0.8}, {"time": 0.5667, "x": 1.05, "y": 1.05, "curve": 0, "c2": 0.1, "c3": 0.85}, + {"time": 0.6333, "x": 1.07, "y": 1.07, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.8333} ] }, - "body-fur-8": { + "@body3": { "rotate": [ - {"angle": -4.79, "curve": 0.382, "c2": 0.56, "c3": 0.74}, {"time": 0.05}, {"time": 0.2167, "angle": 21.78, "curve": 0.25, "c3": 0.75}, - {"time": 0.35, "angle": -6.87, "curve": 0.25, "c3": 0.75}, {"time": 0.45, "angle": 28.66, "curve": 0.25, "c3": 0.75}, {"time": 0.55, "angle": -32.59, "curve": 0.25, "c3": 0.75}, - {"time": 0.7167, "angle": 24.66, "curve": 0.25, "c3": 0.75}, {"time": 0.8333, "angle": -14.25, "curve": 0.244, "c3": 0.641, "c4": 0.57}, {"time": 0.9167, "angle": -0.91} + {"angle": -1.82, "curve": 0.375, "c2": 0.62, "c3": 0.716}, {"time": 0.0333, "curve": 0.25, "c3": 0.75}, {"time": 0.2, "angle": -3.77, "curve": 0.25, "c3": 0.75}, + {"time": 0.3667, "angle": -14, "curve": 0.25, "c3": 0.75}, {"time": 0.5333, "angle": -3.77, "curve": 0.25, "c3": 0.75}, + {"time": 0.7, "angle": -14, "curve": 0.243, "c3": 0.68, "c4": 0.71}, {"time": 0.8333, "angle": -1.82} + ], + "translate": [ + {"time": 0.1667, "curve": 0.25, "c3": 0.75}, {"time": 0.3333, "x": 45.36, "y": -33.56, "curve": 0.25, "c3": 0.75}, {"time": 0.5, "curve": 0.25, "c3": 0.75}, + {"time": 0.6667, "x": 45.36, "y": -33.56, "curve": 0.25, "c3": 0.75}, {"time": 0.8333} ] }, - "body-fur-1": { + "@body4": { "rotate": [ - {"angle": -7.13, "curve": 0.375, "c2": 0.5, "c3": 0.75}, {"time": 0.0667}, {"time": 0.2333, "angle": 21.78, "curve": 0.25, "c3": 0.75}, - {"time": 0.3667, "angle": -6.87, "curve": 0.25, "c3": 0.75}, {"time": 0.4667, "angle": 28.66, "curve": 0.25, "c3": 0.75}, {"time": 0.5667, "angle": -32.59, "curve": 0.25, "c3": 0.75}, - {"time": 0.7333, "angle": 24.66, "curve": 0.25, "c3": 0.75}, {"time": 0.85, "angle": -14.25, "curve": 0.25, "c3": 0.625, "c4": 0.5}, {"time": 0.9167, "angle": 10.51} + {"angle": 9.01, "curve": 0.363, "c2": 0.44, "c3": 0.755}, {"time": 0.1, "curve": 0.25, "c3": 0.75}, {"time": 0.2667, "angle": -15.35, "curve": 0.25, "c3": 0.75}, + {"time": 0.4333, "angle": 14.26, "curve": 0.25, "c3": 0.75}, {"time": 0.6, "angle": -15.35, "curve": 0.25, "c3": 0.75}, + {"time": 0.7667, "angle": 14.26, "curve": 0.258, "c3": 0.619, "c4": 0.45}, {"time": 0.8333, "angle": 9.01} + ], + "translate": [ + {"curve": 0.25, "c3": 0.75}, {"time": 0.1667, "x": -1.59, "y": 23.93, "curve": 0.25, "c3": 0.75}, {"time": 0.3333, "x": 6.55, "y": -29.78, "curve": 0.25, "c3": 0.75}, + {"time": 0.5, "x": -1.59, "y": 23.93, "curve": 0.25, "c3": 0.75}, {"time": 0.6667, "x": 6.55, "y": -29.78, "curve": 0.25, "c3": 0.75}, {"time": 0.8333} ] }, - "body-fur-2": { + "@body6": { "rotate": [ - {"angle": -11.6, "curve": 0.314, "c2": 0.27, "c3": 0.686, "c4": 0.73}, {"time": 0.0667, "angle": -2.63, "curve": 0.379, "c2": 0.6, "c3": 0.724}, {"time": 0.1}, - {"time": 0.2667, "angle": 21.78, "curve": 0.25, "c3": 0.75}, {"time": 0.4, "angle": -6.87, "curve": 0.25, "c3": 0.75}, {"time": 0.5, "angle": 28.66, "curve": 0.25, "c3": 0.75}, - {"time": 0.6, "angle": -32.59, "curve": 0.25, "c3": 0.75}, {"time": 0.7667, "angle": 24.66, "curve": 0.25, "c3": 0.75}, - {"time": 0.8833, "angle": -14.25, "curve": 0.276, "c3": 0.621, "c4": 0.4}, {"time": 0.9167, "angle": 13.84} + {"angle": 3.35, "curve": 0.375, "c2": 0.62, "c3": 0.716}, {"time": 0.0333, "curve": 0.25, "c3": 0.75}, {"time": 0.2, "angle": -5.24, "curve": 0.25, "c3": 0.75}, + {"time": 0.3667, "angle": 25.77, "curve": 0.25, "c3": 0.75}, {"time": 0.5333, "angle": -5.24, "curve": 0.25, "c3": 0.75}, + {"time": 0.7, "angle": 25.77, "curve": 0.243, "c3": 0.68, "c4": 0.71}, {"time": 0.8333, "angle": 3.35} + ], + "translate": [ + {"curve": 0.25, "c3": 0.75}, {"time": 0.1667, "x": 5.81, "y": -4.07, "curve": 0.25, "c3": 0.75}, {"time": 0.3333, "x": -70.52, "y": 35.61, "curve": 0.25, "c3": 0.75}, + {"time": 0.5, "x": 5.81, "y": -4.07, "curve": 0.25, "c3": 0.75}, {"time": 0.6667, "x": -70.52, "y": 35.61, "curve": 0.25, "c3": 0.75}, {"time": 0.8333} ] }, - "body-fur-3": { + "body-braid2": { "rotate": [ - {"angle": -4.79, "curve": 0.382, "c2": 0.56, "c3": 0.74}, {"time": 0.05}, {"time": 0.2167, "angle": 21.78, "curve": 0.25, "c3": 0.75}, - {"time": 0.35, "angle": -6.87, "curve": 0.25, "c3": 0.75}, {"time": 0.45, "angle": 28.66, "curve": 0.25, "c3": 0.75}, {"time": 0.55, "angle": -32.59, "curve": 0.25, "c3": 0.75}, - {"time": 0.7167, "angle": 24.66, "curve": 0.25, "c3": 0.75}, {"time": 0.8333, "angle": -14.25, "curve": 0.244, "c3": 0.641, "c4": 0.57}, {"time": 0.9167, "angle": 5.54} + {"angle": 3.31, "curve": 0.382, "c2": 0.58, "c3": 0.731}, {"time": 0.05, "curve": 0.25, "c3": 0.75}, {"time": 0.2167, "angle": -1.43, "curve": 0.25, "c3": 0.75}, + {"time": 0.3833, "angle": 20.83, "curve": 0.25, "c3": 0.75}, {"time": 0.55, "angle": -1.43, "curve": 0.25, "c3": 0.75}, + {"time": 0.7167, "angle": 13.65, "curve": 0.243, "c3": 0.655, "c4": 0.63}, {"time": 0.8333, "angle": 3.31} ] }, - "body-fur-4": { + "body-braid4": { "rotate": [ - {"angle": -9.42, "curve": 0.333, "c2": 0.33, "c3": 0.688, "c4": 0.73}, {"time": 0.05, "angle": -2.63, "curve": 0.379, "c2": 0.6, "c3": 0.724}, {"time": 0.0833}, - {"time": 0.25, "angle": 21.78, "curve": 0.25, "c3": 0.75}, {"time": 0.3833, "angle": -6.87, "curve": 0.25, "c3": 0.75}, {"time": 0.4833, "angle": 28.66, "curve": 0.25, "c3": 0.75}, - {"time": 0.5833, "angle": -32.59, "curve": 0.25, "c3": 0.75}, {"time": 0.75, "angle": 24.66, "curve": 0.25, "c3": 0.75}, - {"time": 0.8667, "angle": -14.25, "curve": 0.26, "c3": 0.618, "c4": 0.44}, {"time": 0.9167, "angle": 12.53} + {"angle": 0.86, "curve": 0.36, "c2": 0.64, "c3": 0.695}, {"time": 0.0167, "curve": 0.25, "c3": 0.75}, {"time": 0.1833, "angle": -11.53, "curve": 0.25, "c3": 0.75}, + {"time": 0.35, "angle": 27.46, "curve": 0.25, "c3": 0.75}, {"time": 0.5167, "angle": -11.53, "curve": 0.25, "c3": 0.75}, + {"time": 0.6833, "angle": 20.28, "curve": 0.245, "c3": 0.711, "c4": 0.83}, {"time": 0.8333, "angle": 0.86} ] }, - "body-fur-5": { + "body-braid3": { "rotate": [ - {"angle": -2.63, "curve": 0.379, "c2": 0.6, "c3": 0.724}, {"time": 0.0333, "curve": 0.25, "c3": 0.75}, {"time": 0.2, "angle": 21.78, "curve": 0.25, "c3": 0.75}, - {"time": 0.3333, "angle": -6.87, "curve": 0.25, "c3": 0.75}, {"time": 0.4333, "angle": 28.66, "curve": 0.25, "c3": 0.75}, {"time": 0.5333, "angle": -32.59, "curve": 0.25, "c3": 0.75}, - {"time": 0.7, "angle": 24.66, "curve": 0.25, "c3": 0.75}, {"time": 0.8167, "angle": -14.25, "curve": 0.242, "c3": 0.667, "c4": 0.67}, {"time": 0.9167, "angle": 6.86} + {"angle": 16.49, "curve": 0.363, "c2": 0.44, "c3": 0.755}, {"time": 0.1, "curve": 0.25, "c3": 0.75}, {"time": 0.2667, "angle": -8.3, "curve": 0.25, "c3": 0.75}, + {"time": 0.4333, "angle": 33.27, "curve": 0.25, "c3": 0.75}, {"time": 0.6, "angle": -8.3, "curve": 0.25, "c3": 0.75}, + {"time": 0.7667, "angle": 26.09, "curve": 0.258, "c3": 0.619, "c4": 0.45}, {"time": 0.8333, "angle": 16.49} ] }, - "body-fur-6": { + "@body2": { "rotate": [ - {"angle": -7.08, "curve": 0.343, "c2": 0.36, "c3": 0.686, "c4": 0.73}, {"time": 0.0333, "angle": -2.63, "curve": 0.379, "c2": 0.6, "c3": 0.724}, - {"time": 0.0667, "curve": 0.25, "c3": 0.75}, {"time": 0.2333, "angle": 21.78, "curve": 0.25, "c3": 0.75}, {"time": 0.3667, "angle": -6.87, "curve": 0.25, "c3": 0.75}, - {"time": 0.4667, "angle": 28.66, "curve": 0.25, "c3": 0.75}, {"time": 0.5667, "angle": -32.59, "curve": 0.25, "c3": 0.75}, {"time": 0.7333, "angle": 24.66, "curve": 0.25, "c3": 0.75}, - {"time": 0.85, "angle": -14.25, "curve": 0.25, "c3": 0.625, "c4": 0.5}, {"time": 0.9167, "angle": 13.33} + {"angle": -4.54, "curve": 0.382, "c2": 0.58, "c3": 0.731}, {"time": 0.05, "curve": 0.25, "c3": 0.75}, {"time": 0.2167, "angle": 7.45, "curve": 0.25, "c3": 0.75}, + {"time": 0.3833, "angle": -18.73, "curve": 0.25, "c3": 0.75}, {"time": 0.55, "angle": 7.45, "curve": 0.25, "c3": 0.75}, + {"time": 0.7167, "angle": -18.73, "curve": 0.243, "c3": 0.655, "c4": 0.63}, {"time": 0.8333, "angle": -4.54} + ], + "translate": [ + {"curve": 0.25, "c3": 0.75}, {"time": 0.1667, "x": -0.08, "y": 1.15, "curve": 0.25, "c3": 0.75}, {"time": 0.3333, "x": 4.59, "y": -41.28, "curve": 0.25, "c3": 0.75}, + {"time": 0.5, "x": -0.08, "y": 1.15, "curve": 0.25, "c3": 0.75}, {"time": 0.6667, "x": 4.59, "y": -41.28, "curve": 0.25, "c3": 0.75}, {"time": 0.8333} ] }, - "body-fur-7": { + "body-braid6": {"rotate": [{"curve": 0.25, "c3": 0.75}, {"time": 0.6667, "angle": -7.17}]}, + "body-braid5": { "rotate": [ - {"angle": -0.89, "curve": 0.364, "c2": 0.64, "c3": 0.701}, {"time": 0.0167, "curve": 0.25, "c3": 0.75}, {"time": 0.1833, "angle": 21.78, "curve": 0.25, "c3": 0.75}, - {"time": 0.3167, "angle": -6.87, "curve": 0.25, "c3": 0.75}, {"time": 0.4167, "angle": 28.66, "curve": 0.25, "c3": 0.75}, {"time": 0.5167, "angle": -32.59, "curve": 0.25, "c3": 0.75}, - {"time": 0.6833, "angle": 24.66, "curve": 0.25, "c3": 0.75}, {"time": 0.8, "angle": -14.25, "curve": 0.244, "c3": 0.702, "c4": 0.8}, {"time": 0.9167, "angle": 2.91} + {"angle": 28.85, "curve": 0.25, "c3": 0.75}, {"time": 0.1667, "curve": 0.25, "c3": 0.75}, {"time": 0.3333, "angle": -7.27, "curve": 0.25, "c3": 0.75}, + {"time": 0.5, "angle": 36.02, "curve": 0.25, "c3": 0.75}, {"time": 0.6667, "angle": -7.27, "curve": 0.25, "c3": 0.75}, {"time": 0.8333, "angle": 28.85} ] }, - "body-fur-9": { + "body-braid": { "rotate": [ - {"angle": -9.42, "curve": 0.333, "c2": 0.33, "c3": 0.688, "c4": 0.73}, {"time": 0.05, "angle": -2.63, "curve": 0.379, "c2": 0.6, "c3": 0.724}, {"time": 0.0833}, - {"time": 0.25, "angle": 21.78, "curve": 0.25, "c3": 0.75}, {"time": 0.3833, "angle": -6.87, "curve": 0.25, "c3": 0.75}, {"time": 0.4833, "angle": 28.66, "curve": 0.25, "c3": 0.75}, - {"time": 0.5833, "angle": -32.59, "curve": 0.25, "c3": 0.75}, {"time": 0.75, "angle": 24.66, "curve": 0.25, "c3": 0.75}, - {"time": 0.8667, "angle": -14.25, "curve": 0.26, "c3": 0.618, "c4": 0.44}, {"time": 0.9167, "angle": 6.86} + {"angle": 7.62, "curve": 0.375, "c2": 0.5, "c3": 0.75}, {"time": 0.0833, "curve": 0.25, "c3": 0.75}, {"time": 0.25, "angle": -2.68, "curve": 0.25, "c3": 0.75}, + {"time": 0.4167, "angle": 22.42, "curve": 0.25, "c3": 0.75}, {"time": 0.5833, "angle": -2.68, "curve": 0.25, "c3": 0.75}, + {"time": 0.75, "angle": 15.24, "curve": 0.25, "c3": 0.625, "c4": 0.5}, {"time": 0.8333, "angle": 7.62} + ] + }, + "@body5": { + "rotate": [ + {"time": 0.1667, "curve": 0.25, "c3": 0.75}, {"time": 0.3333, "angle": 0.5, "curve": 0.25, "c3": 0.75}, {"time": 0.5, "curve": 0.25, "c3": 0.75}, + {"time": 0.6667, "angle": 0.5, "curve": 0.25, "c3": 0.75}, {"time": 0.8333} ] } }, - "events": [{"time": 0.35, "name": "start-attack"}] + "events": [{"time": 0.3333, "name": "start-attack"}, {"time": 0.3667, "name": "hit"}] }, - "66525173": { - "slots": { - "eyes": {"attachment": [{"time": 0.0167, "name": "eyes-angry"}, {"time": 0.5, "name": "eyes-shut"}, {"time": 0.6667, "name": "eyes"}]}, - "mouth": {"attachment": [{"time": 0.0167, "name": "mouth-bite"}, {"time": 0.3, "name": "mouth-open"}, {"time": 0.5, "name": "mouth"}]} - }, + "3475256849": { + "slots": {"eyes": {"attachment": [{"time": 0.9167, "name": "eyes-shut"}, {"time": 1, "name": "eyes"}]}}, "bones": { - "@pivot-back": { - "rotate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "angle": -3.92, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "angle": 2.51, "curve": 0.697, "c4": 0.3}, - {"time": 0.3, "angle": -2}, {"time": 0.4167, "angle": -3, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5833, "angle": 3, "curve": 0, "c2": 0.17, "c3": 0.45, "c4": 0.61}, - {"time": 0.6667, "angle": -2.47, "curve": 0.345, "c2": 0.53, "c3": 0.751}, {"time": 0.75} - ], - "translate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "x": 71.93, "y": -12.95, "curve": "stepped"}, {"time": 0.25, "x": 71.93, "y": -12.95, "curve": 0.697, "c4": 0.3}, - {"time": 0.3, "x": -65}, {"time": 0.4167, "x": -67, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5833, "x": -74.25, "y": -5.2, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.75} - ] - }, - "leg-back-left-IK": { - "translate": [ - {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.1333, "x": 80.9, "curve": 0.161, "c3": 0.854}, {"time": 0.25, "x": 72.25, "curve": 0.25, "c4": 0.3}, - {"time": 0.3, "x": -24.7, "y": 18.44, "curve": "stepped"}, {"time": 0.4167, "x": -24.7, "y": 18.44, "curve": 0.306, "c3": 0.695}, - {"time": 0.5833, "x": -90.91, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.75} - ] - }, - "leg-front-right-IK": { - "translate": [ - {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 30.89, "y": 11.74, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "x": 42.9, "curve": 0.697, "c4": 0.3}, - {"time": 0.3, "x": 11.08, "y": 2.13, "curve": "stepped"}, {"time": 0.4167, "x": 11.08, "y": 2.13, "curve": 0.306, "c3": 0.695}, - {"time": 0.5833, "x": -87.1, "curve": 0, "c2": 0.17, "c3": 0.45, "c4": 0.61}, {"time": 0.6667, "x": -39.4, "curve": 0.345, "c2": 0.53, "c3": 0.751}, {"time": 0.75} - ] - }, - "leg-front-left-IK": { - "translate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "x": 52.52, "y": 6.57, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "x": 44.73, "y": 1.83, "curve": 0.697, "c4": 0.3}, - {"time": 0.3, "x": -28.02, "y": 20.97}, {"time": 0.4167, "x": -31.01, "y": 31.21, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.5833, "x": -82.62, "curve": 0, "c2": 0.17, "c3": 0.45, "c4": 0.61}, {"time": 0.6667, "x": -55.81, "curve": 0.345, "c2": 0.53, "c3": 0.751}, {"time": 0.75} - ] - }, + "@pivot-back": {"translate": [{"y": -97.74, "curve": 0.393, "c3": 0.303}, {"time": 0.6667, "y": -82.74, "curve": 0.387, "c3": 0.309}, {"time": 1.3333, "y": -97.74}]}, "@leg-front-left": { - "translate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "x": -2.59, "y": -4.65, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "x": -0.61, "y": -2.94, "curve": 0.697, "c4": 0.3}, - {"time": 0.3, "x": 0.47, "y": -9.15, "curve": "stepped"}, {"time": 0.4167, "x": 0.47, "y": -9.15, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5833} + "rotate": [ + {"curve": 0, "c2": 0.1, "c3": 0.856}, {"time": 0.3333, "angle": -17.48, "curve": 0.15, "c3": 0.926}, {"time": 0.7333, "curve": 0, "c2": 0.05, "c3": 0.692}, + {"time": 1.05, "angle": 8.38, "curve": 0.24, "c3": 0.769}, {"time": 1.3333} ] }, "@leg-front-right": { - "translate": [ - {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 4.31, "y": 11.86, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "x": -10.4, "y": -12.15, "curve": 0.697, "c4": 0.3}, - {"time": 0.3, "x": -48.45, "y": 18.12, "curve": "stepped"}, {"time": 0.4167, "x": -48.45, "y": 18.12, "curve": 0, "c2": 0.3, "c3": 0.54}, - {"time": 0.5833, "x": -10.7, "y": -18.88, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.75} + "rotate": [ + {"curve": 0, "c2": 0.1, "c3": 0.856}, {"time": 0.3333, "angle": 9.43, "curve": 0.15, "c3": 0.926}, {"time": 0.7333, "curve": 0, "c2": 0.05, "c3": 0.692}, + {"time": 1.05, "angle": -11.74, "curve": 0.24, "c3": 0.769}, {"time": 1.3333} ] }, "@leg-back-left": { - "translate": [ - {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.1333, "x": 0.67, "y": -7.85, "curve": 0.161, "c3": 0.854}, {"time": 0.25, "x": 0.53, "y": -13.09, "curve": 0.25, "c4": 0.3}, - {"time": 0.3, "x": -0.22, "y": 1.34, "curve": "stepped"}, {"time": 0.4167, "x": -0.22, "y": 1.34, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.5833, "x": -0.28, "y": -7.87, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.75} - ] - }, - "@shadow": { - "translate": [ - {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 61.96, "curve": "stepped"}, {"time": 0.25, "x": 61.96, "curve": 0.697, "c4": 0.3}, {"time": 0.3, "x": -50.16}, - {"time": 0.4167, "x": -53.09, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5833, "x": -83.79, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.75} - ], - "scale": [ - {"time": 0.0833, "curve": 0, "c2": 0.26, "c3": 0.369, "c4": 0.62}, {"time": 0.25, "x": 1.06, "y": 1.06, "curve": 0.697, "c4": 0.3}, - {"time": 0.3, "x": 0.96, "y": 0.96, "curve": "stepped"}, {"time": 0.4167, "x": 0.96, "y": 0.96, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.5833, "x": 1.08, "y": 1.08, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.75} + "rotate": [ + {"curve": 0, "c2": 0.1, "c3": 0.856}, {"time": 0.3333, "angle": -12.53, "curve": 0.15, "c3": 0.926}, {"time": 0.7333, "curve": 0, "c2": 0.05, "c3": 0.692}, + {"time": 1.05, "angle": 9.41, "curve": 0.24, "c3": 0.769}, {"time": 1.3333} ] }, "tail": { "rotate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "angle": 15.61, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "angle": 20.44, "curve": 0.697, "c4": 0.3}, - {"time": 0.3, "angle": -9.4}, {"time": 0.4167, "angle": -13.12, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5833, "angle": 15.47, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.75} + {"curve": 0, "c2": 0.05, "c3": 0.691}, {"time": 0.3333, "angle": -5.06, "curve": 0.304, "c3": 0.689}, {"time": 0.7333, "angle": -0.77}, + {"time": 1.05, "angle": 2.12, "curve": 0.234, "c4": 0.9}, {"time": 1.3333} ] }, - "body-fur-2": { + "@shadow": {"scale": [{"x": 1.3, "y": 1.3, "curve": 0.387, "c3": 0.314}, {"time": 0.6667, "x": 1.25, "y": 1.25, "curve": 0.387, "c3": 0.314}, {"time": 1.3333, "x": 1.3, "y": 1.3}]}, + "@body3": { "rotate": [ - {"angle": -13.05, "curve": 0.354, "c2": 0.4, "c3": 0.702, "c4": 0.79}, {"time": 0.0667, "angle": -2.53, "curve": 0.369, "c2": 0.63, "c3": 0.707}, {"time": 0.1}, - {"time": 0.2333, "angle": -35.36, "curve": 0.25, "c3": 0.75}, {"time": 0.3667, "angle": -1.38, "curve": 0.25, "c3": 0.75}, {"time": 0.4, "angle": -24.8, "curve": 0.25, "c3": 0.75}, - {"time": 0.4667, "angle": 38.05, "curve": 0.25, "c3": 0.75}, {"time": 0.6333, "angle": -29.41, "curve": 0.248, "c3": 0.629, "c4": 0.52}, {"time": 0.75, "angle": 13.84} + {"angle": -11.17, "curve": 0.343, "c2": 0.37, "c3": 0.677, "c4": 0.71}, {"time": 0.05, "angle": -12.25, "curve": 0.374, "c2": 0.62, "c3": 0.715}, + {"time": 0.1833, "angle": -14, "curve": 0.25, "c3": 0.75}, {"time": 0.8333, "curve": 0.242, "c3": 0.662, "c4": 0.65}, {"time": 1.3333, "angle": -11.17} + ], + "translate": [ + {"x": 33.64, "y": -18.83, "curve": 0.354, "c2": 0.65, "c3": 0.688}, {"time": 0.05, "x": 34.51, "y": -19.31, "curve": 0.25, "c3": 0.75}, + {"time": 0.7, "curve": 0.246, "c3": 0.72, "c4": 0.87}, {"time": 1.3333, "x": 33.64, "y": -18.83} ] }, - "body-fur-9": { + "@body4": { "rotate": [ - {"angle": -2.53, "curve": 0.369, "c2": 0.63, "c3": 0.707}, {"time": 0.0333}, {"time": 0.1667, "angle": -35.36, "curve": 0.25, "c3": 0.75}, - {"time": 0.3, "angle": -1.38, "curve": 0.25, "c3": 0.75}, {"time": 0.3333, "angle": -24.8, "curve": 0.25, "c3": 0.75}, {"time": 0.4, "angle": 38.05, "curve": 0.25, "c3": 0.75}, - {"time": 0.5667, "angle": -29.41, "curve": 0.244, "c3": 0.693, "c4": 0.76}, {"time": 0.75, "angle": 6.86} + {"angle": 7.57, "curve": 0.352, "c2": 0.41, "c3": 0.689, "c4": 0.75}, {"time": 0.1, "angle": 9.05, "curve": 0.368, "c2": 0.63, "c3": 0.706}, + {"time": 0.2, "angle": 9.83, "curve": 0.25, "c3": 0.75}, {"time": 0.85, "curve": 0.243, "c3": 0.657, "c4": 0.63}, {"time": 1.3333, "angle": 7.57} + ], + "translate": [ + {"x": 29.65, "y": -8.96, "curve": 0.368, "c2": 0.63, "c3": 0.706}, {"time": 0.1, "x": 32.23, "y": -9.74, "curve": 0.25, "c3": 0.75}, + {"time": 0.75, "curve": 0.244, "c3": 0.695, "c4": 0.77}, {"time": 1.3333, "x": 29.65, "y": -8.96} ] }, - "body-fur-8": { + "@body6": { "rotate": [ - {"curve": 0.25, "c3": 0.75}, {"time": 0.1333, "angle": -35.36, "curve": 0.25, "c3": 0.75}, {"time": 0.2667, "angle": -1.38, "curve": 0.25, "c3": 0.75}, - {"time": 0.3, "angle": -24.8, "curve": 0.25, "c3": 0.75}, {"time": 0.3667, "angle": 38.05, "curve": 0.25, "c3": 0.75}, {"time": 0.5333, "angle": -29.41, "curve": 0.25, "c3": 0.75}, - {"time": 0.75, "angle": -0.91} + {"angle": 15.22, "curve": 0.348, "c2": 0.66, "c3": 0.682}, {"time": 0.0333, "angle": 15.47, "curve": 0.25, "c3": 0.75}, {"time": 0.6833, "curve": 0.247, "c3": 0.73, "c4": 0.91}, + {"time": 1.3333, "angle": 15.22} + ], + "translate": [{"x": -17.06, "y": -1.14, "curve": 0.25, "c3": 0.75}, {"time": 0.65, "curve": 0.25, "c3": 0.75}, {"time": 1.3333, "x": -17.06, "y": -1.14}] + }, + "body-braid2": { + "rotate": [ + {"angle": 8.81, "curve": 0.364, "c2": 0.64, "c3": 0.7}, {"time": 0.0833, "angle": 9.33, "curve": 0.25, "c3": 0.75}, {"time": 0.7333, "curve": 0.242, "c3": 0.662, "c4": 0.65}, + {"time": 1.2333, "angle": 7.42, "curve": 0.354, "c2": 0.42, "c3": 0.691, "c4": 0.77}, {"time": 1.3333, "angle": 8.81} ] }, - "body-fur-7": { + "body-braid4": { "rotate": [ - {"angle": -0.77, "curve": 0.355, "c2": 0.65, "c3": 0.689}, {"time": 0.0167, "curve": 0.25, "c3": 0.75}, {"time": 0.15, "angle": -35.36, "curve": 0.25, "c3": 0.75}, - {"time": 0.2833, "angle": -1.38, "curve": 0.25, "c3": 0.75}, {"time": 0.3167, "angle": -24.8, "curve": 0.25, "c3": 0.75}, {"time": 0.3833, "angle": 38.05, "curve": 0.25, "c3": 0.75}, - {"time": 0.55, "angle": -29.41, "curve": 0.246, "c3": 0.719, "c4": 0.87}, {"time": 0.75, "angle": 2.91} + {"angle": 0.87, "curve": 0.296, "c2": 0.2, "c3": 0.645, "c4": 0.59}, {"time": 0.5833, "angle": 18.72, "curve": 0.25, "c3": 0.75}, + {"time": 1.2333, "curve": 0.294, "c3": 0.632, "c4": 0.37}, {"time": 1.3333, "angle": 0.87} ] }, - "body-fur-6": { + "body-braid3": { "rotate": [ - {"angle": -7.28, "curve": 0.352, "c2": 0.4, "c3": 0.689, "c4": 0.75}, {"time": 0.0333, "angle": -2.53, "curve": 0.369, "c2": 0.63, "c3": 0.707}, {"time": 0.0667}, - {"time": 0.2, "angle": -35.36, "curve": 0.25, "c3": 0.75}, {"time": 0.3333, "angle": -1.38, "curve": 0.25, "c3": 0.75}, {"time": 0.3667, "angle": -24.8, "curve": 0.25, "c3": 0.75}, - {"time": 0.4333, "angle": 38.05, "curve": 0.25, "c3": 0.75}, {"time": 0.6, "angle": -29.41, "curve": 0.243, "c3": 0.654, "c4": 0.62}, {"time": 0.75, "angle": 13.33} + {"angle": 14.47, "curve": 0.377, "c2": 0.61, "c3": 0.719}, {"time": 0.15, "angle": 17.05, "curve": 0.25, "c3": 0.75}, {"time": 0.8, "curve": 0.243, "c3": 0.674, "c4": 0.69}, + {"time": 1.3333, "angle": 14.47} ] }, - "body-fur-5": { + "@body2": { "rotate": [ - {"angle": -2.53, "curve": 0.369, "c2": 0.63, "c3": 0.707}, {"time": 0.0333}, {"time": 0.1667, "angle": -35.36, "curve": 0.25, "c3": 0.75}, - {"time": 0.3, "angle": -1.38, "curve": 0.25, "c3": 0.75}, {"time": 0.3333, "angle": -24.8, "curve": 0.25, "c3": 0.75}, {"time": 0.4, "angle": 38.05, "curve": 0.25, "c3": 0.75}, - {"time": 0.5667, "angle": -29.41, "curve": 0.244, "c3": 0.693, "c4": 0.76}, {"time": 0.75, "angle": 6.86} + {"angle": -6.84, "curve": 0.363, "c2": 0.45, "c3": 0.708, "c4": 0.83}, {"time": 0.1833, "angle": -9.62, "curve": 0.359, "c2": 0.64, "c3": 0.695}, + {"time": 0.25, "angle": -10.03, "curve": 0.25, "c3": 0.75}, {"time": 0.9, "curve": 0.244, "c3": 0.643, "c4": 0.58}, {"time": 1.3333, "angle": -6.84} + ], + "translate": [ + {"x": 2.25, "y": 5.51, "curve": 0.38, "c2": 0.59, "c3": 0.727}, {"time": 0.1833, "x": 2.83, "y": 6.92, "curve": 0.25, "c3": 0.75}, + {"time": 0.8333, "curve": 0.242, "c3": 0.662, "c4": 0.65}, {"time": 1.3333, "x": 2.25, "y": 5.51} ] }, - "body-fur-4": { + "body-braid6": { "rotate": [ - {"angle": -10.1, "curve": 0.355, "c2": 0.41, "c3": 0.697, "c4": 0.77}, {"time": 0.05, "angle": -2.53, "curve": 0.369, "c2": 0.63, "c3": 0.707}, - {"time": 0.0833, "curve": 0.25, "c3": 0.75}, {"time": 0.2167, "angle": -35.36, "curve": 0.25, "c3": 0.75}, {"time": 0.35, "angle": -1.38, "curve": 0.25, "c3": 0.75}, - {"time": 0.3833, "angle": -24.8, "curve": 0.25, "c3": 0.75}, {"time": 0.45, "angle": 38.05, "curve": 0.25, "c3": 0.75}, - {"time": 0.6167, "angle": -29.41, "curve": 0.245, "c3": 0.64, "c4": 0.57}, {"time": 0.75, "angle": 12.53} + {"angle": 0.44, "curve": 0.338, "c2": 0.35, "c3": 0.758}, {"time": 0.5, "angle": 2.13, "curve": 0.25, "c3": 0.75}, {"time": 1.15, "curve": 0.273, "c3": 0.62, "c4": 0.41}, + {"time": 1.3333, "angle": 0.44} ] }, - "body-fur-3": { + "body-braid5": { "rotate": [ - {"angle": -4.81, "curve": 0.378, "c2": 0.61, "c3": 0.721}, {"time": 0.05}, {"time": 0.1833, "angle": -35.36, "curve": 0.25, "c3": 0.75}, - {"time": 0.3167, "angle": -1.38, "curve": 0.25, "c3": 0.75}, {"time": 0.35, "angle": -24.8, "curve": 0.25, "c3": 0.75}, {"time": 0.4167, "angle": 38.05, "curve": 0.25, "c3": 0.75}, - {"time": 0.5833, "angle": -29.41, "curve": 0.242, "c3": 0.671, "c4": 0.68}, {"time": 0.75, "angle": 5.54} + {"angle": 15.29, "curve": 0.382, "c2": 0.55, "c3": 0.741}, {"time": 0.2667, "angle": 19.81, "curve": 0.25, "c3": 0.75}, + {"time": 0.9167, "angle": 7.07, "curve": 0.245, "c3": 0.639, "c4": 0.56}, {"time": 1.3333, "angle": 15.29} ] }, - "body-fur-1": { + "body-braid": { "rotate": [ - {"angle": -7.41, "curve": 0.382, "c2": 0.58, "c3": 0.732}, {"time": 0.0667}, {"time": 0.2, "angle": -35.36, "curve": 0.25, "c3": 0.75}, - {"time": 0.3333, "angle": -1.38, "curve": 0.25, "c3": 0.75}, {"time": 0.3667, "angle": -24.8, "curve": 0.25, "c3": 0.75}, {"time": 0.4333, "angle": 38.05, "curve": 0.25, "c3": 0.75}, - {"time": 0.6, "angle": -29.41, "curve": 0.243, "c3": 0.654, "c4": 0.62}, {"time": 0.75, "angle": 10.51} + {"angle": 10.47, "curve": 0.359, "c2": 0.64, "c3": 0.695}, {"time": 0.0667, "angle": 10.92, "curve": 0.25, "c3": 0.75}, {"time": 0.7167, "curve": 0.245, "c3": 0.712, "c4": 0.84}, + {"time": 1.3333, "angle": 10.47} ] } - }, - "events": [{"time": 0.3, "name": "start-attack"}] + } }, - "229216978": { + "3774510935": { "slots": { - "eyes": {"attachment": [{"time": 0.05, "name": "eyes-angry"}, {"time": 1.2333, "name": "eyes"}]}, - "mouth": {"attachment": [{"time": 0.05, "name": "mouth-bite"}, {"time": 0.4667, "name": "mouth-open"}, {"time": 1.0833, "name": "mouth-bite"}, {"time": 1.2333, "name": "mouth"}]} + "ball": { + "color": [ + {"color": "ffffff00", "curve": "stepped"}, {"time": 0.1667, "color": "ffffff00", "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "color": "ffffffff", "curve": "stepped"}, + {"time": 2.9167, "color": "ffffffff", "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 3.0833, "color": "ffffff00"} + ], + "attachment": [{"name": "ball"}] + }, + "eyes": {"attachment": [{"time": 0.5, "name": "eyes-shut"}, {"time": 0.5833, "name": "eyes"}, {"time": 3.0833, "name": "eyes-shut"}, {"time": 3.1667, "name": "eyes"}]}, + "mouth": {"attachment": [{"time": 0.1833, "name": "mouth-open"}, {"time": 0.5, "name": "mouth"}, {"time": 2.7667, "name": "mouth-open"}, {"time": 2.9167, "name": "mouth"}]} }, "bones": { "@pivot-back": { "rotate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "angle": 4, "curve": 0, "c2": 0.6, "c3": 0.237}, {"time": 0.4167, "angle": -8.88, "curve": 0, "c2": 0.6, "c3": 0, "c4": 1.4}, - {"time": 1, "angle": 8.17, "curve": 0.701, "c4": 0.5}, {"time": 1.2333, "angle": 5, "curve": 0.461, "c3": 0.543}, {"time": 1.3333} + {"curve": 0, "c2": 0.3, "c3": 0.546}, {"time": 0.1667, "angle": 6, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "angle": -6.98, "curve": 0.464, "c4": 0.7}, + {"time": 0.5, "angle": 3, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.6667, "curve": "stepped"}, {"time": 2.5833, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 2.75, "angle": 6, "curve": 0, "c2": 0.3, "c3": 0.546}, {"time": 2.9167, "angle": -6, "curve": 0.464, "c4": 0.7}, + {"time": 3.0833, "angle": 6, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 3.25} ], "translate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": 33.65, "y": -5, "curve": 0, "c2": 0.6, "c3": 0.237}, - {"time": 0.4167, "x": -62.54, "y": 309.16, "curve": 0, "c2": 0.6, "c3": 0, "c4": 1.4}, {"time": 1, "x": 12.32, "y": 268.04, "curve": 0.701, "c4": 0.5}, {"time": 1.2333} + {"curve": 0, "c2": 0.3, "c3": 0.546}, {"time": 0.1667, "y": 1.78, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "y": 353.14, "curve": 0.464, "c4": 0.7}, + {"time": 0.5, "y": 255, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.6667, "y": 267.67, "curve": 0.156, "c3": 0.693}, + {"time": 1.1667, "x": -30, "y": 267.67, "curve": 0.317, "c3": 0.693}, {"time": 2.1667, "x": 50, "y": 267.67, "curve": 0.317, "c3": 0.693}, + {"time": 2.5833, "y": 267.67, "curve": "stepped"}, {"time": 2.75, "y": 267.67, "curve": 0, "c2": 0.3, "c3": 0.546}, {"time": 2.9167, "y": 310, "curve": 0.464, "c4": 0.7}, + {"time": 3.0833} ] }, - "@shadow": { + "@leg-front-right": { "translate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": 24.43, "curve": 0, "c2": 0.6, "c3": 0.237}, {"time": 0.4167, "x": -70.38, "curve": 0, "c2": 0.6, "c3": 0, "c4": 1.4}, - {"time": 1, "x": 5.15, "curve": 0.701, "c4": 0.5}, {"time": 1.2333, "x": -8.95, "curve": 0.461, "c3": 0.543}, {"time": 1.3333} - ], - "scale": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": 1.08, "y": 1.08, "curve": 0, "c2": 0.6, "c3": 0.237}, - {"time": 0.4167, "x": 0.85, "y": 0.85, "curve": 0, "c2": 0.6, "c3": 0, "c4": 1.4}, {"time": 1, "x": 0.9, "y": 0.9, "curve": 0.701, "c4": 0.5}, - {"time": 1.2333, "x": 1.1, "y": 1.1, "curve": 0.461, "c3": 0.543}, {"time": 1.3333} + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": -2.8, "y": -31.7, "curve": 0, "c2": 0.3, "c3": 0.546}, {"time": 0.25, "curve": "stepped"}, + {"time": 2.5833, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 2.75, "x": -2.8, "y": -31.7, "curve": 0.315, "c4": 0.8}, {"time": 2.8333, "curve": "stepped"}, + {"time": 3, "curve": 0.315, "c4": 0.8}, {"time": 3.0833, "x": -2.86, "y": -32.44, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 3.25} ] }, "@leg-front-left": { "translate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": -0.29, "y": -5.47, "curve": 0, "c2": 0.6, "c3": 0.237}, {"time": 0.4167, "curve": "stepped"}, - {"time": 1, "curve": 0.701, "c4": 0.5}, {"time": 1.2333, "x": -0.95, "y": -14.45, "curve": 0.461, "c3": 0.543}, {"time": 1.3333} + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": -1.46, "y": -16.59, "curve": 0, "c2": 0.3, "c3": 0.546}, {"time": 0.25, "curve": "stepped"}, + {"time": 2.5833, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 2.75, "x": -1.46, "y": -16.59, "curve": 0.315, "c4": 0.8}, {"time": 2.8333, "curve": "stepped"}, + {"time": 3, "curve": 0.315, "c4": 0.8}, {"time": 3.0833, "x": -1.64, "y": -18.64, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 3.25} ] }, - "@leg-front-right": { + "leg-front-left-IK": { "translate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": -0.29, "y": -5.47, "curve": 0, "c2": 0.6, "c3": 0.237}, {"time": 0.4167, "curve": "stepped"}, - {"time": 1, "curve": 0.701, "c4": 0.5}, {"time": 1.2333, "x": -1.66, "y": -25.29, "curve": 0.461, "c3": 0.543}, {"time": 1.3333} + {"time": 0.1667, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "x": -6.9, "y": 380.8, "curve": 0.315, "c4": 0.8}, {"time": 0.5, "x": -5.5, "y": 268.35, "curve": "stepped"}, + {"time": 0.6667, "x": -5.5, "y": 268.35, "curve": 0.317, "c3": 0.693}, {"time": 0.9167, "x": -38.87, "y": 268.35, "curve": 0.317, "c3": 0.693}, + {"time": 1.1667, "x": -10.16, "y": 268.35, "curve": 0.317, "c3": 0.693}, {"time": 1.4167, "x": -39.65, "y": 268.35, "curve": 0.317, "c3": 0.693}, + {"time": 1.6667, "x": 23.98, "y": 268.35, "curve": 0.317, "c3": 0.693}, {"time": 1.9167, "x": 5.36, "y": 268.35, "curve": 0.317, "c3": 0.693}, + {"time": 2.1667, "x": 67.44, "y": 268.35, "curve": 0.317, "c3": 0.693}, {"time": 2.4167, "x": -3.95, "y": 268.35, "curve": 0.317, "c3": 0.693}, + {"time": 2.5833, "x": -5.5, "y": 268.35, "curve": "stepped"}, {"time": 2.9167, "x": -5.5, "y": 268.35, "curve": 0.315, "c4": 0.8}, {"time": 3.0833} ] }, - "tail": { - "rotate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "angle": 17.93, "curve": 0, "c2": 0.6, "c3": 0.237}, {"time": 0.4167, "angle": -15.3, "curve": 0, "c2": 0.6, "c3": 0, "c4": 1.4}, - {"time": 1, "angle": 24.81, "curve": 0.701, "c4": 0.5}, {"time": 1.2333, "angle": -15.84, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 1.3333} + "leg-front-right-IK": { + "translate": [ + {"time": 0.1667, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "x": -6.9, "y": 397.8, "curve": 0.315, "c4": 0.8}, {"time": 0.5, "x": 15.4, "y": 268.08, "curve": "stepped"}, + {"time": 0.6667, "x": 15.4, "y": 268.08, "curve": 0.317, "c3": 0.693}, {"time": 0.9167, "x": 24.64, "y": 268.08, "curve": 0.317, "c3": 0.693}, + {"time": 1.1667, "x": -41.71, "y": 268.08, "curve": 0.317, "c3": 0.693}, {"time": 1.4167, "x": 22.12, "y": 268.08, "curve": 0.317, "c3": 0.693}, + {"time": 1.6667, "x": -0.56, "y": 268.08, "curve": 0.317, "c3": 0.693}, {"time": 1.9167, "x": 61.6, "y": 268.08, "curve": 0.317, "c3": 0.693}, + {"time": 2.1667, "x": 33.88, "y": 268.08, "curve": 0.317, "c3": 0.693}, {"time": 2.4167, "x": 49, "y": 268.08, "curve": 0.317, "c3": 0.693}, + {"time": 2.5833, "x": 15.4, "y": 268.08, "curve": "stepped"}, {"time": 2.9167, "x": 15.4, "y": 268.08, "curve": 0.315, "c4": 0.8}, {"time": 3.0833} ] }, - "body-fur-8": { - "rotate": [ - {"angle": -7.18, "curve": 0.375, "c2": 0.5, "c3": 0.75}, {"time": 0.05, "angle": -20.3, "curve": 0.25, "c3": 0.75}, {"time": 0.2167, "angle": 16.54, "curve": 0.25, "c3": 0.75}, - {"time": 0.3833, "angle": -24.71, "curve": 0.25, "c3": 0.75}, {"time": 0.55, "angle": 30.8, "curve": 0.25, "c3": 0.75}, {"time": 0.6833, "angle": -27.37, "curve": 0.25, "c3": 0.75}, - {"time": 0.8167, "angle": 14.31, "curve": 0.25, "c3": 0.75}, {"time": 0.95, "angle": -30.25, "curve": 0.25, "c3": 0.75}, {"time": 1.0667, "angle": 11.28, "curve": 0.25, "c3": 0.75}, - {"time": 1.1833, "angle": -25.35, "curve": 0.25, "c3": 0.75}, {"time": 1.2833, "angle": 5.94, "curve": 0.25, "c3": 0.625, "c4": 0.5}, {"time": 1.3333, "angle": -0.91} + "leg-back-left-IK": { + "translate": [ + {"time": 0.1667, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "x": -0.4, "y": 363.25, "curve": 0.315, "c4": 0.8}, {"time": 0.5, "x": -26.16, "y": 267.01}, + {"time": 0.6667, "x": -33.59, "y": 267.01, "curve": 0.317, "c3": 0.693}, {"time": 0.9167, "x": -22.32, "y": 267.01, "curve": 0.317, "c3": 0.693}, + {"time": 1.1667, "x": -63.32, "y": 267.01, "curve": 0.317, "c3": 0.693}, {"time": 1.4167, "x": -28.35, "y": 267.01, "curve": 0.317, "c3": 0.693}, + {"time": 1.6667, "x": -28.02, "y": 267.01, "curve": 0.317, "c3": 0.693}, {"time": 1.9167, "x": 14.36, "y": 267.01, "curve": 0.317, "c3": 0.693}, + {"time": 2.1667, "x": 9.14, "y": 267.01, "curve": 0.317, "c3": 0.693}, {"time": 2.4167, "x": 11.99, "y": 267.01, "curve": 0.317, "c3": 0.693}, + {"time": 2.6667, "x": -33.59, "y": 267.01, "curve": "stepped"}, {"time": 2.9167, "x": -33.59, "y": 267.01, "curve": 0.315, "c4": 0.8}, {"time": 3.0833} ] }, - "body-fur-7": { + "@ball": { "rotate": [ - {"angle": -41.06, "curve": 0.371, "c2": 0.62, "c3": 0.71}, {"time": 0.0167, "angle": -43.59, "curve": 0.25, "c3": 0.75}, {"time": 0.1833, "angle": -6.75, "curve": 0.25, "c3": 0.75}, - {"time": 0.35, "angle": -48.01, "curve": 0.25, "c3": 0.75}, {"time": 0.5167, "angle": 7.51, "curve": 0.25, "c3": 0.75}, {"time": 0.65, "angle": -50.66, "curve": 0.25, "c3": 0.75}, - {"time": 0.7833, "angle": -8.99, "curve": 0.25, "c3": 0.75}, {"time": 0.9167, "angle": -53.55, "curve": 0.25, "c3": 0.75}, {"time": 1.0333, "angle": -12.01, "curve": 0.25, "c3": 0.75}, - {"time": 1.15, "angle": -48.65, "curve": 0.25, "c3": 0.75}, {"time": 1.25, "angle": -17.36, "curve": 0.243, "c3": 0.689, "c4": 0.75}, {"time": 1.3333, "angle": 2.91} + {"time": 0.6667, "curve": 0.156, "c3": 0.693}, {"time": 1.1667, "angle": 18, "curve": 0.317, "c3": 0.693}, {"time": 2.1667, "angle": -18, "curve": 0.317, "c3": 0.693}, {"time": 2.75} + ], + "translate": [ + {"time": 0.6667, "curve": 0.156, "c3": 0.693}, {"time": 1.1667, "x": -32, "curve": 0.317, "c3": 0.693}, {"time": 2.1667, "x": 32, "curve": 0.317, "c3": 0.693}, {"time": 2.75} + ], + "scale": [ + {"x": 0, "y": 0, "curve": "stepped"}, {"time": 0.1667, "x": 0, "y": 0, "curve": 0, "c2": 0.6, "c3": 0.237}, {"time": 0.3333, "x": 1.2, "y": 1.2, "curve": 0.315, "c4": 0.8}, + {"time": 0.5, "curve": "stepped"}, {"time": 2.75, "curve": 0, "c2": 0.3, "c3": 0.546}, {"time": 2.9167, "x": 1.2, "y": 1.2, "curve": 0.315, "c4": 0.8}, {"time": 3.0833, "x": 0, "y": 0} ] }, - "body-fur-1": { - "rotate": [ - {"angle": -1.51, "curve": 0.351, "c2": 0.4, "c3": 0.757}, {"time": 0.0667, "angle": -20.3, "curve": 0.25, "c3": 0.75}, {"time": 0.2333, "angle": 16.54, "curve": 0.25, "c3": 0.75}, - {"time": 0.4, "angle": -24.71, "curve": 0.25, "c3": 0.75}, {"time": 0.5667, "angle": 30.8, "curve": 0.25, "c3": 0.75}, {"time": 0.7, "angle": -27.37, "curve": 0.25, "c3": 0.75}, - {"time": 0.8333, "angle": 14.31, "curve": 0.25, "c3": 0.75}, {"time": 0.9667, "angle": -30.25, "curve": 0.25, "c3": 0.75}, {"time": 1.0833, "angle": 11.28, "curve": 0.25, "c3": 0.75}, - {"time": 1.2, "angle": -25.35, "curve": 0.25, "c3": 0.75}, {"time": 1.3, "angle": 5.94, "curve": 0.265, "c3": 0.618, "c4": 0.43}, {"time": 1.3333, "angle": 10.51} + "ball": { + "scale": [ + {"time": 0.3333, "curve": 0.617, "c4": 0.6}, {"time": 0.5, "x": 1.2, "y": 0.9, "curve": 0, "c2": 0.39, "c3": 0.387}, {"time": 0.6667, "curve": "stepped"}, + {"time": 2.5833, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 2.75, "x": 1.2, "y": 0.9, "curve": 0, "c2": 0.3, "c3": 0.546}, {"time": 2.9167} ] }, - "body-fur-2": { + "@pivot-center": { "rotate": [ - {"angle": 5.94, "curve": 0.243, "c3": 0.649, "c4": 0.6}, {"time": 0.0667, "angle": -12.85, "curve": 0.382, "c2": 0.57, "c3": 0.735}, {"time": 0.1, "angle": -20.3}, - {"time": 0.2667, "angle": 16.54, "curve": 0.25, "c3": 0.75}, {"time": 0.4333, "angle": -24.71, "curve": 0.25, "c3": 0.75}, {"time": 0.6, "angle": 30.8, "curve": 0.25, "c3": 0.75}, - {"time": 0.7333, "angle": -27.37, "curve": 0.25, "c3": 0.75}, {"time": 0.8667, "angle": 14.31, "curve": 0.25, "c3": 0.75}, {"time": 1, "angle": -30.25, "curve": 0.25, "c3": 0.75}, - {"time": 1.1167, "angle": 11.28, "curve": 0.25, "c3": 0.75}, {"time": 1.2333, "angle": -25.35, "curve": 0.25, "c3": 0.75}, {"time": 1.3333, "angle": 13.84} + {"time": 0.6667, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.9167, "angle": 2, "curve": 0.461, "c3": 0.543}, {"time": 1.4167, "angle": -2, "curve": 0.461, "c3": 0.543}, + {"time": 1.9167, "angle": 2, "curve": 0.461, "c3": 0.543}, {"time": 2.4167, "angle": -2, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 2.75} ] }, - "body-fur-3": { - "rotate": [ - {"angle": -7.18, "curve": 0.375, "c2": 0.5, "c3": 0.75}, {"time": 0.05, "angle": -20.3}, {"time": 0.2167, "angle": 16.54, "curve": 0.25, "c3": 0.75}, - {"time": 0.3833, "angle": -24.71, "curve": 0.25, "c3": 0.75}, {"time": 0.55, "angle": 30.8, "curve": 0.25, "c3": 0.75}, {"time": 0.6833, "angle": -27.37, "curve": 0.25, "c3": 0.75}, - {"time": 0.8167, "angle": 14.31, "curve": 0.25, "c3": 0.75}, {"time": 0.95, "angle": -30.25, "curve": 0.25, "c3": 0.75}, {"time": 1.0667, "angle": 11.28, "curve": 0.25, "c3": 0.75}, - {"time": 1.1833, "angle": -25.35, "curve": 0.25, "c3": 0.75}, {"time": 1.2833, "angle": 5.94, "curve": 0.25, "c3": 0.625, "c4": 0.5}, {"time": 1.3333, "angle": 5.54} + "@shadow": { + "translate": [ + {"time": 0.6667, "curve": 0.317, "c3": 0.693}, {"time": 1.1667, "x": -32, "curve": 0.317, "c3": 0.693}, {"time": 2.1667, "x": 32, "curve": 0.317, "c3": 0.693}, {"time": 2.5833} + ], + "scale": [ + {"curve": 0, "c2": 0.3, "c3": 0.546}, {"time": 0.1667, "x": 1.1, "y": 1.1, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "curve": 0.464, "c4": 0.7}, + {"time": 0.5, "x": 1.06, "y": 1.06, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.6667, "curve": "stepped"}, {"time": 2.5833, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 2.75, "x": 1.06, "y": 1.06, "curve": 0, "c2": 0.3, "c3": 0.546}, {"time": 2.9167, "curve": 0.464, "c4": 0.7}, + {"time": 3.0833, "x": 1.1, "y": 1.1, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 3.25} ] }, - "body-fur-4": { + "tail": { "rotate": [ - {"angle": 3.4, "curve": 0.295, "c2": 0.21, "c3": 0.667, "c4": 0.67}, {"time": 0.05, "angle": -12.85, "curve": 0.382, "c2": 0.57, "c3": 0.735}, - {"time": 0.0833, "angle": -20.3, "curve": 0.25, "c3": 0.75}, {"time": 0.25, "angle": 16.54, "curve": 0.25, "c3": 0.75}, {"time": 0.4167, "angle": -24.71, "curve": 0.25, "c3": 0.75}, - {"time": 0.5833, "angle": 30.8, "curve": 0.25, "c3": 0.75}, {"time": 0.7167, "angle": -27.37, "curve": 0.25, "c3": 0.75}, {"time": 0.85, "angle": 14.31, "curve": 0.25, "c3": 0.75}, - {"time": 0.9833, "angle": -30.25, "curve": 0.25, "c3": 0.75}, {"time": 1.1, "angle": 11.28, "curve": 0.25, "c3": 0.75}, {"time": 1.2167, "angle": -25.35, "curve": 0.25, "c3": 0.75}, - {"time": 1.3167, "angle": 5.94, "curve": 0.29, "c3": 0.629, "c4": 0.37}, {"time": 1.3333, "angle": 12.53} + {"curve": 0, "c2": 0.3, "c3": 0.546}, {"time": 0.1667, "angle": 17.35, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "angle": -14.67, "curve": 0.464, "c4": 0.7}, + {"time": 0.5, "angle": 19.12, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.6667, "angle": -10.65, "curve": 0.317, "c3": 0.693}, + {"time": 0.9167, "angle": -0.65, "curve": 0.317, "c3": 0.693}, {"time": 1.1667, "angle": -10.65, "curve": 0.317, "c3": 0.693}, + {"time": 1.4167, "angle": -0.65, "curve": 0.317, "c3": 0.693}, {"time": 1.6667, "angle": -10.65, "curve": 0.317, "c3": 0.693}, + {"time": 1.9167, "angle": -0.65, "curve": 0.317, "c3": 0.693}, {"time": 2.1667, "angle": -10.65, "curve": 0.317, "c3": 0.693}, + {"time": 2.4167, "angle": -0.65, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 2.5833, "angle": -10.65, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 2.75, "angle": 19.35, "curve": 0, "c2": 0.3, "c3": 0.546}, {"time": 2.9167, "angle": -18.65, "curve": 0, "c2": 0.3, "c3": 0.546}, + {"time": 3.0833, "angle": 17.35, "curve": 0.317, "c3": 0.693}, {"time": 3.25} ] }, - "body-fur-5": { + "@body3": { "rotate": [ - {"angle": -12.85, "curve": 0.382, "c2": 0.57, "c3": 0.735}, {"time": 0.0333, "angle": -20.3}, {"time": 0.2, "angle": 16.54, "curve": 0.25, "c3": 0.75}, - {"time": 0.3667, "angle": -24.71, "curve": 0.25, "c3": 0.75}, {"time": 0.5333, "angle": 30.8, "curve": 0.25, "c3": 0.75}, {"time": 0.6667, "angle": -27.37, "curve": 0.25, "c3": 0.75}, - {"time": 0.8, "angle": 14.31, "curve": 0.25, "c3": 0.75}, {"time": 0.9333, "angle": -30.25, "curve": 0.25, "c3": 0.75}, {"time": 1.05, "angle": 11.28, "curve": 0.25, "c3": 0.75}, - {"time": 1.1667, "angle": -25.35, "curve": 0.25, "c3": 0.75}, {"time": 1.2667, "angle": 5.94, "curve": 0.243, "c3": 0.649, "c4": 0.6}, {"time": 1.3333, "angle": 6.86} + {"angle": 2.63, "curve": 0.347, "c2": 0.38, "c3": 0.694, "c4": 0.76}, {"time": 0.05, "angle": 0.69, "curve": 0.375, "c2": 0.62, "c3": 0.716}, {"time": 0.0833, "curve": 0.25, "c3": 0.75}, + {"time": 0.25, "angle": 5.31, "curve": 0.25, "c3": 0.75}, {"time": 0.4167, "angle": -9.96, "curve": 0.25, "c3": 0.75}, {"time": 0.5833, "angle": 2.37, "curve": 0.25, "c3": 0.75}, + {"time": 0.75, "curve": 0.25, "c3": 0.75}, {"time": 1, "angle": 2.71, "curve": 0.25, "c3": 0.75}, {"time": 1.25, "angle": -8.08, "curve": 0.25, "c3": 0.75}, + {"time": 1.5, "angle": 2.71, "curve": 0.25, "c3": 0.75}, {"time": 1.75, "angle": -9.07, "curve": 0.25, "c3": 0.75}, {"time": 2, "angle": 2.71, "curve": 0.25, "c3": 0.75}, + {"time": 2.25, "angle": -7.59, "curve": 0.25, "c3": 0.75}, {"time": 2.5, "angle": 2.71, "curve": 0.25, "c3": 0.75}, {"time": 2.75, "curve": 0.25, "c3": 0.75}, + {"time": 2.9167, "angle": -9.96, "curve": 0.25, "c3": 0.75}, {"time": 3.1667, "angle": 5.31, "curve": 0.25, "c3": 0.625, "c4": 0.5}, {"time": 3.25, "angle": 2.63} + ], + "translate": [ + {"x": -4.98, "y": 3.87, "curve": 0.363, "c2": 0.44, "c3": 0.711, "c4": 0.83}, {"time": 0.05, "x": -0.58, "y": 0.45, "curve": 0.36, "c2": 0.64, "c3": 0.695}, + {"time": 0.0667, "curve": 0.25, "c3": 0.75}, {"time": 0.2333, "x": -13.74, "y": 10.69, "curve": 0.25, "c3": 0.75}, {"time": 0.4, "x": 16.77, "y": -16.52, "curve": 0.25, "c3": 0.75}, + {"time": 0.5667, "x": -2.46, "y": 22.24, "curve": 0.25, "c3": 0.75}, {"time": 0.7333, "curve": 0.25, "c3": 0.75}, {"time": 0.9833, "x": -11.72, "y": -2.34, "curve": 0.25, "c3": 0.75}, + {"time": 1.2333, "x": 23.59, "y": 3.86, "curve": 0.25, "c3": 0.75}, {"time": 1.4833, "x": -11.72, "y": -2.34, "curve": 0.25, "c3": 0.75}, + {"time": 1.7333, "x": 23.59, "y": 3.86, "curve": 0.25, "c3": 0.75}, {"time": 1.9833, "x": -11.72, "y": -2.34, "curve": 0.25, "c3": 0.75}, + {"time": 2.2333, "x": 23.59, "y": 3.86, "curve": 0.25, "c3": 0.75}, {"time": 2.4833, "x": -11.72, "y": -2.34, "curve": 0.25, "c3": 0.75}, {"time": 2.7333, "curve": 0.25, "c3": 0.75}, + {"time": 2.9, "x": 16.77, "y": -16.52, "curve": 0.25, "c3": 0.75}, {"time": 3.15, "x": -13.74, "y": 10.69, "curve": 0.245, "c3": 0.637, "c4": 0.56}, {"time": 3.25, "x": -4.98, "y": 3.87} ] }, - "body-fur-6": { + "@body4": { "rotate": [ - {"angle": -1.53, "curve": 0.325, "c2": 0.31, "c3": 0.675, "c4": 0.69}, {"time": 0.0333, "angle": -12.85, "curve": 0.382, "c2": 0.57, "c3": 0.735}, {"time": 0.0667, "angle": -20.3}, - {"time": 0.2333, "angle": 16.54, "curve": 0.25, "c3": 0.75}, {"time": 0.4, "angle": -24.71, "curve": 0.25, "c3": 0.75}, {"time": 0.5667, "angle": 30.8, "curve": 0.25, "c3": 0.75}, - {"time": 0.7, "angle": -27.37, "curve": 0.25, "c3": 0.75}, {"time": 0.8333, "angle": 14.31, "curve": 0.25, "c3": 0.75}, {"time": 0.9667, "angle": -30.25, "curve": 0.25, "c3": 0.75}, - {"time": 1.0833, "angle": 11.28, "curve": 0.25, "c3": 0.75}, {"time": 1.2, "angle": -25.35, "curve": 0.25, "c3": 0.75}, - {"time": 1.3, "angle": 5.94, "curve": 0.265, "c3": 0.618, "c4": 0.43}, {"time": 1.3333, "angle": 13.33} + {"angle": -3.76, "curve": 0.381, "c2": 0.55, "c3": 0.742}, {"time": 0.0667, "curve": 0.25, "c3": 0.75}, {"time": 0.2333, "angle": -10.21, "curve": 0.25, "c3": 0.75}, + {"time": 0.4, "angle": 8.6, "curve": 0.25, "c3": 0.75}, {"time": 0.5667, "angle": -11.06, "curve": 0.25, "c3": 0.75}, {"time": 0.7333, "curve": 0.25, "c3": 0.75}, + {"time": 0.9833, "angle": 2.32, "curve": 0.25, "c3": 0.75}, {"time": 1.2333, "angle": -8.1, "curve": 0.25, "c3": 0.75}, {"time": 1.4833, "angle": 2.32, "curve": 0.25, "c3": 0.75}, + {"time": 1.7333, "angle": -9.1, "curve": 0.25, "c3": 0.75}, {"time": 1.9833, "angle": 2.32, "curve": 0.25, "c3": 0.75}, {"time": 2.2333, "angle": -7.62, "curve": 0.25, "c3": 0.75}, + {"time": 2.4833, "angle": 2.32, "curve": 0.25, "c3": 0.75}, {"time": 2.7333, "curve": 0.25, "c3": 0.75}, {"time": 2.9, "angle": 8.6, "curve": 0.25, "c3": 0.75}, + {"time": 3.15, "angle": -10.21, "curve": 0.245, "c3": 0.637, "c4": 0.56}, {"time": 3.25, "angle": -3.76} + ], + "translate": [ + {"x": 2.68, "y": 1.74, "curve": 0.382, "c2": 0.58, "c3": 0.731}, {"time": 0.05, "curve": 0.25, "c3": 0.75}, {"time": 0.2167, "x": 11.07, "y": 7.2, "curve": 0.25, "c3": 0.75}, + {"time": 0.3833, "x": 7.66, "y": -26.2, "curve": 0.25, "c3": 0.75}, {"time": 0.55, "x": -0.2, "y": 1.85, "curve": 0.25, "c3": 0.75}, {"time": 0.7167, "curve": 0.25, "c3": 0.75}, + {"time": 0.9667, "x": 1.95, "y": -9.77, "curve": 0.25, "c3": 0.75}, {"time": 1.2167, "x": 13.76, "y": 2.25, "curve": 0.25, "c3": 0.75}, + {"time": 1.4667, "x": 1.95, "y": -9.77, "curve": 0.25, "c3": 0.75}, {"time": 1.7167, "x": 13.76, "y": 2.25, "curve": 0.25, "c3": 0.75}, + {"time": 1.9667, "x": 1.95, "y": -9.77, "curve": 0.25, "c3": 0.75}, {"time": 2.2167, "x": 13.76, "y": 2.25, "curve": 0.25, "c3": 0.75}, + {"time": 2.4667, "x": 1.95, "y": -9.77, "curve": 0.25, "c3": 0.75}, {"time": 2.7167, "curve": 0.25, "c3": 0.75}, {"time": 2.8833, "x": 7.66, "y": -26.2, "curve": 0.25, "c3": 0.75}, + {"time": 3.1333, "x": 11.07, "y": 7.2, "curve": 0.243, "c3": 0.655, "c4": 0.63}, {"time": 3.25, "x": 2.68, "y": 1.74} ] }, - "body-fur-9": { + "@body6": { "rotate": [ - {"angle": 3.4, "curve": 0.295, "c2": 0.21, "c3": 0.667, "c4": 0.67}, {"time": 0.05, "angle": -12.85, "curve": 0.382, "c2": 0.57, "c3": 0.735}, {"time": 0.0833, "angle": -20.3}, - {"time": 0.25, "angle": 16.54, "curve": 0.25, "c3": 0.75}, {"time": 0.4167, "angle": -24.71, "curve": 0.25, "c3": 0.75}, {"time": 0.5833, "angle": 30.8, "curve": 0.25, "c3": 0.75}, - {"time": 0.7167, "angle": -27.37, "curve": 0.25, "c3": 0.75}, {"time": 0.85, "angle": 14.31, "curve": 0.25, "c3": 0.75}, {"time": 0.9833, "angle": -30.25, "curve": 0.25, "c3": 0.75}, - {"time": 1.1, "angle": 11.28, "curve": 0.25, "c3": 0.75}, {"time": 1.2167, "angle": -25.35, "curve": 0.25, "c3": 0.75}, - {"time": 1.3167, "angle": 5.94, "curve": 0.29, "c3": 0.629, "c4": 0.37}, {"time": 1.3333, "angle": 6.86} - ] - } - }, - "events": [{"time": 0.4667, "name": "start-attack"}, {"time": 0.7, "name": "start-attack"}, {"time": 0.9333, "name": "start-attack"}] - }, - "3667073362": { - "slots": { - "eyes": {"attachment": [{"time": 0.0167, "name": "eyes-angry"}, {"time": 0.75, "name": "eyes-shut"}, {"time": 0.8333, "name": "eyes"}]}, - "leg-back-left": {"attachment": [{"time": 0.35, "name": "mystic-leg-back-left-long"}, {"time": 0.5833, "name": "mystic-leg-back-left"}]}, - "mouth": {"attachment": [{"time": 0.0167, "name": "mouth-bite"}, {"time": 0.2667, "name": "mouth-open"}, {"time": 0.5833, "name": "mouth-bite"}, {"time": 0.8333, "name": "mouth"}]} - }, - "bones": { - "@pivot-back": { - "rotate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "angle": -3.92, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "angle": 2.51, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.3333, "angle": -6, "curve": "stepped"}, {"time": 0.35, "angle": -16}, {"time": 0.5667, "angle": -16.5, "curve": "stepped"}, {"time": 0.5833, "curve": 0.313, "c3": 0.699}, - {"time": 0.75, "angle": 6, "curve": 0.313, "c3": 0.699}, {"time": 0.9167} - ], - "translate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "x": 71.93, "y": -12.95, "curve": "stepped"}, {"time": 0.25, "x": 71.93, "y": -12.95, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.3333, "x": -135.5, "curve": "stepped"}, {"time": 0.35, "x": -560.54, "y": 85.29}, {"time": 0.5667, "x": -562.89, "y": 81.57, "curve": "stepped"}, - {"time": 0.5833, "x": -151.24, "curve": 0.313, "c3": 0.699}, {"time": 0.75, "x": -151.24, "y": 4.06, "curve": 0.313, "c3": 0.699}, {"time": 0.9167} - ], - "scale": [{"time": 0.3333, "curve": "stepped"}, {"time": 0.35, "x": -1, "curve": "stepped"}, {"time": 0.5667, "x": -1, "curve": "stepped"}, {"time": 0.5833}] - }, - "@shadow": { - "translate": [ - {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 61.96, "curve": "stepped"}, {"time": 0.25, "x": 61.96, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.3333, "x": -143.36, "curve": "stepped"}, {"time": 0.35, "x": -143.36}, {"time": 0.5667, "x": -157.56, "curve": "stepped"}, {"time": 0.5833, "x": -161.35, "curve": "stepped"}, - {"time": 0.75, "x": -161.35, "curve": 0.313, "c3": 0.699}, {"time": 0.9167} + {"angle": -10.43, "curve": 0.282, "c2": 0.15, "c3": 0.718, "c4": 0.85}, {"time": 0.1333, "angle": -0.46, "curve": 0.36, "c2": 0.64, "c3": 0.695}, + {"time": 0.15, "curve": 0.25, "c3": 0.75}, {"time": 0.3167, "angle": -10.91, "curve": 0.25, "c3": 0.75}, {"time": 0.4833, "angle": 22.56, "curve": 0.25, "c3": 0.75}, + {"time": 0.65, "angle": -8.77, "curve": 0.25, "c3": 0.75}, {"time": 0.8167, "curve": 0.25, "c3": 0.75}, {"time": 1.0667, "angle": 11.2, "curve": 0.25, "c3": 0.75}, + {"time": 1.3167, "angle": -0.3, "curve": 0.25, "c3": 0.75}, {"time": 1.5667, "angle": 11.2, "curve": 0.25, "c3": 0.75}, {"time": 1.8167, "angle": -1.3, "curve": 0.25, "c3": 0.75}, + {"time": 2.0667, "angle": 11.2, "curve": 0.25, "c3": 0.75}, {"time": 2.3167, "angle": 0.18, "curve": 0.25, "c3": 0.75}, {"time": 2.5667, "angle": 11.2, "curve": 0.25, "c3": 0.75}, + {"time": 2.8167, "curve": 0.25, "c3": 0.75}, {"time": 2.9833, "angle": 22.56, "curve": 0.25, "c3": 0.75}, {"time": 3.2333, "angle": -10.91, "curve": 0.305, "c3": 0.64, "c4": 0.36}, + {"time": 3.25, "angle": -10.43} ], - "scale": [ - {"time": 0.0833, "curve": 0, "c2": 0.26, "c3": 0.369, "c4": 0.62}, {"time": 0.25, "x": 1.06, "y": 1.06, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "curve": "stepped"}, - {"time": 0.35}, {"time": 0.5667, "x": 1.08, "y": 1.08, "curve": "stepped"}, {"time": 0.5833, "curve": 0.313, "c3": 0.699}, - {"time": 0.75, "x": 1.08, "y": 1.08, "curve": 0.313, "c3": 0.699}, {"time": 0.9167} - ] - }, - "leg-back-left-IK": { - "translate": [ - {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.1333, "x": 80.9, "curve": 0.161, "c3": 0.854}, {"time": 0.25, "x": 62.82, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.3333, "x": -99.34, "y": 18.56, "curve": "stepped"}, {"time": 0.35, "x": -653.9, "y": 153.81}, {"time": 0.5667, "x": -653.9, "y": 167.85, "curve": "stepped"}, - {"time": 0.5833, "x": -134.74, "curve": "stepped"}, {"time": 0.75, "x": -134.74, "curve": 0.313, "c3": 0.699}, {"time": 0.9167} - ] - }, - "leg-front-right-IK": { - "translate": [ - {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 22.35, "curve": 0.306, "c3": 0.695}, {"time": 0.25, "x": 42.9, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.3333, "x": -131.73, "y": 44.58, "curve": "stepped"}, {"time": 0.35, "x": 244.36, "y": -4.92, "curve": 0.31, "c4": 0.8}, - {"time": 0.5667, "x": 247.43, "y": -1.85, "curve": "stepped"}, {"time": 0.5833, "x": -180.48, "curve": "stepped"}, {"time": 0.75, "x": -180.48, "curve": 0.313, "c3": 0.699}, - {"time": 0.9167} - ] - }, - "leg-front-left-IK": { - "translate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "x": 40.76, "y": 5.08, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "x": 49, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.3333, "x": -180.92, "y": 40.32, "curve": "stepped"}, {"time": 0.35, "x": -197.17}, {"time": 0.5667, "x": -230.7, "y": 4.81, "curve": "stepped"}, - {"time": 0.5833, "x": -180.48, "curve": "stepped"}, {"time": 0.75, "x": -180.48, "curve": 0.313, "c3": 0.699}, {"time": 0.9167} - ] - }, - "@leg-front-left": { - "translate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "x": -2.9, "y": -1.1, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.25, "x": -0.62, "y": -3.44, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "x": -1, "y": -5.53, "curve": "stepped"}, {"time": 0.35, "x": 4.4, "y": -4.91}, - {"time": 0.5667, "x": 7.49, "y": -5.17, "curve": "stepped"}, {"time": 0.5833, "x": 18.69, "y": 1.85, "curve": "stepped"}, - {"time": 0.75, "x": 18.69, "y": 1.85, "curve": 0.306, "c3": 0.695}, {"time": 0.9167} - ] - }, - "@leg-front-right": { - "translate": [ - {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 4.31, "y": 11.86, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.25, "x": -10.48, "y": -15.33, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "x": -3.15, "y": 1.33, "curve": "stepped"}, {"time": 0.35, "x": -3.84, "y": 7.68}, - {"time": 0.5667, "x": -3.53, "y": 9.04, "curve": "stepped"}, {"time": 0.5833, "x": -2.24, "y": 13.67, "curve": 0.313, "c3": 0.699}, - {"time": 0.75, "x": -2.69, "y": -18.63, "curve": 0.313, "c3": 0.699}, {"time": 0.9167} - ] - }, - "@leg-back-left": { "translate": [ - {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.1333, "x": 0.67, "y": -7.85, "curve": 0.161, "c3": 0.854}, {"time": 0.25, "x": 0.74, "y": -5.43, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.3333, "x": -0.54, "y": 4.44, "curve": "stepped"}, {"time": 0.35, "x": 10.26, "y": 0.56, "curve": "stepped"}, {"time": 0.5667, "x": 10.26, "y": 0.56, "curve": "stepped"}, - {"time": 0.5833} - ] - }, - "tail": { - "rotate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "angle": 15.61, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "angle": 20.44, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.3333, "angle": -15.58, "curve": "stepped"}, {"time": 0.35, "angle": 30.35}, {"time": 0.5667, "angle": 35.35, "curve": "stepped"}, - {"time": 0.5833, "angle": -11.84, "curve": 0.313, "c3": 0.699}, {"time": 0.75, "angle": 16.95, "curve": 0.313, "c3": 0.699}, {"time": 0.9167} - ] - }, - "@pivot-main": { - "translate": [{"time": 0.75, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.8333, "y": 31, "curve": 0.315, "c4": 0.8}, {"time": 0.9167}], - "scale": [{"time": 0.5667, "curve": "stepped"}, {"time": 0.75, "y": 0.98, "curve": 0.154, "c4": 0.9}, {"time": 0.9167}] - }, - "body-fur-2": { - "rotate": [ - {"angle": 8.73, "curve": 0.33, "c2": 0.32, "c3": 0.693, "c4": 0.75}, {"time": 0.0667, "angle": 1.89, "curve": 0.377, "c2": 0.61, "c3": 0.72}, {"time": 0.1}, - {"time": 0.2333, "angle": -31.26, "curve": 0.25, "c3": 0.75}, {"time": 0.35, "angle": -18.78, "curve": 0.25, "c3": 0.75}, {"time": 0.4, "angle": -38.17, "curve": 0.25, "c3": 0.75}, - {"time": 0.4833, "angle": 22.48, "curve": 0.25, "c3": 0.75}, {"time": 0.7, "angle": -25.91, "curve": 0.25, "c3": 0.75}, - {"time": 0.8667, "angle": 12.23, "curve": 0.265, "c3": 0.618, "c4": 0.43}, {"time": 0.9167, "angle": 13.84} + {"x": 16.17, "y": -11.76, "curve": 0.352, "c2": 0.65, "c3": 0.687}, {"time": 0.0167, "x": 17.33, "y": -12.37, "curve": 0.243, "c3": 0.655, "c4": 0.63}, + {"time": 0.1333, "x": 4.2, "y": -3, "curve": 0.382, "c2": 0.58, "c3": 0.731}, {"time": 0.1833, "curve": 0.25, "c3": 0.75}, + {"time": 0.35, "x": 17.33, "y": -12.37, "curve": 0.25, "c3": 0.75}, {"time": 0.5167, "x": -33.58, "y": 14.61, "curve": 0.25, "c3": 0.75}, + {"time": 0.6833, "x": 12.85, "y": -7.58, "curve": 0.25, "c3": 0.75}, {"time": 0.85, "curve": 0.25, "c3": 0.75}, {"time": 1.1, "x": -7.07, "y": 3.68, "curve": 0.25, "c3": 0.75}, + {"time": 1.35, "curve": 0.25, "c3": 0.75}, {"time": 1.6, "x": -7.07, "y": 3.68, "curve": 0.25, "c3": 0.75}, {"time": 1.85, "curve": 0.25, "c3": 0.75}, + {"time": 2.1, "x": -7.07, "y": 3.68, "curve": 0.25, "c3": 0.75}, {"time": 2.35, "curve": 0.25, "c3": 0.75}, {"time": 2.6, "x": -7.07, "y": 3.68, "curve": 0.25, "c3": 0.75}, + {"time": 2.85, "curve": 0.25, "c3": 0.75}, {"time": 3.0167, "x": -33.58, "y": 14.61, "curve": 0.246, "c3": 0.723, "c4": 0.88}, {"time": 3.25, "x": 16.17, "y": -11.76} ] }, - "body-fur-9": { + "body-braid2": { "rotate": [ - {"angle": 6.97, "curve": 0.342, "c2": 0.36, "c3": 0.692, "c4": 0.75}, {"time": 0.05, "angle": 1.89, "curve": 0.377, "c2": 0.61, "c3": 0.72}, {"time": 0.0833, "curve": 0.25, "c3": 0.75}, - {"time": 0.2167, "angle": -31.26, "curve": 0.25, "c3": 0.75}, {"time": 0.3333, "angle": -18.78, "curve": 0.25, "c3": 0.75}, {"time": 0.3833, "angle": -38.17, "curve": 0.25, "c3": 0.75}, - {"time": 0.4667, "angle": 22.48, "curve": 0.25, "c3": 0.75}, {"time": 0.6833, "angle": -25.91, "curve": 0.25, "c3": 0.75}, - {"time": 0.85, "angle": 12.23, "curve": 0.254, "c3": 0.621, "c4": 0.47}, {"time": 0.9167, "angle": 6.86} + {"angle": -0.25, "curve": 0.375, "c2": 0.62, "c3": 0.716}, {"time": 0.0333, "curve": 0.25, "c3": 0.75}, {"time": 0.2, "angle": -2.29, "curve": 0.25, "c3": 0.75}, + {"time": 0.3667, "angle": 18.64, "curve": 0.25, "c3": 0.75}, {"time": 0.5333, "angle": -1.94, "curve": 0.25, "c3": 0.75}, {"time": 0.7, "curve": 0.25, "c3": 0.75}, + {"time": 0.95, "angle": 5.84, "curve": 0.25, "c3": 0.75}, {"time": 1.2, "curve": 0.25, "c3": 0.75}, {"time": 1.45, "angle": 5.84, "curve": 0.25, "c3": 0.75}, + {"time": 1.7, "curve": 0.25, "c3": 0.75}, {"time": 1.95, "angle": 5.84, "curve": 0.25, "c3": 0.75}, {"time": 2.2, "curve": 0.25, "c3": 0.75}, + {"time": 2.45, "angle": 5.84, "curve": 0.25, "c3": 0.75}, {"time": 2.7, "curve": 0.25, "c3": 0.75}, {"time": 2.8667, "angle": 18.64, "curve": 0.25, "c3": 0.75}, + {"time": 3.1167, "angle": -1.94, "curve": 0.243, "c3": 0.68, "c4": 0.71}, {"time": 3.25, "angle": -0.25} + ], + "translate": [ + {"curve": 0.25, "c3": 0.75}, {"time": 0.1667, "x": 1.68, "y": -1.17, "curve": 0.25, "c3": 0.75}, {"time": 0.3333, "x": -10.52, "y": -2.87, "curve": 0.25, "c3": 0.75}, + {"time": 0.5, "x": 3.54, "y": -2.08, "curve": 0.25, "c3": 0.75}, {"time": 0.6667, "curve": 0.25, "c3": 0.75}, {"time": 0.9167, "x": -10.52, "y": -2.87, "curve": 0.25, "c3": 0.75}, + {"time": 1.1667, "curve": 0.25, "c3": 0.75}, {"time": 1.4167, "x": -10.52, "y": -2.87, "curve": 0.25, "c3": 0.75}, {"time": 1.6667, "curve": 0.25, "c3": 0.75}, + {"time": 1.9167, "x": -10.52, "y": -2.87, "curve": 0.25, "c3": 0.75}, {"time": 2.1667, "curve": 0.25, "c3": 0.75}, {"time": 2.4167, "x": -10.52, "y": -2.87, "curve": 0.25, "c3": 0.75}, + {"time": 2.6667, "curve": 0.25, "c3": 0.75}, {"time": 2.8333, "x": -10.52, "y": -2.87, "curve": 0.25, "c3": 0.75}, {"time": 3.0833, "x": 3.54, "y": -2.08, "curve": 0.25, "c3": 0.75}, + {"time": 3.25} ] }, - "body-fur-8": { + "body-braid4": { "rotate": [ - {"angle": 3.47, "curve": 0.382, "c2": 0.57, "c3": 0.735}, {"time": 0.05}, {"time": 0.1833, "angle": -31.26, "curve": 0.25, "c3": 0.75}, - {"time": 0.3, "angle": -18.78, "curve": 0.25, "c3": 0.75}, {"time": 0.35, "angle": -38.17, "curve": 0.25, "c3": 0.75}, {"time": 0.4333, "angle": 22.48, "curve": 0.25, "c3": 0.75}, - {"time": 0.65, "angle": -25.91, "curve": 0.25, "c3": 0.75}, {"time": 0.8167, "angle": 12.23, "curve": 0.243, "c3": 0.649, "c4": 0.6}, {"time": 0.9167, "angle": -0.91} + {"angle": -22.63, "curve": 0.32, "c2": 0.29, "c3": 0.757}, {"time": 0.1333, "curve": 0.25, "c3": 0.75}, {"time": 0.3, "angle": -14.88, "curve": 0.25, "c3": 0.75}, + {"time": 0.4667, "angle": 33.06, "curve": 0.25, "c3": 0.75}, {"time": 0.6333, "angle": -26.01, "curve": 0.25, "c3": 0.75}, {"time": 0.8, "curve": 0.25, "c3": 0.75}, + {"time": 1.05, "angle": 16.77, "curve": 0.25, "c3": 0.75}, {"time": 1.3, "curve": 0.25, "c3": 0.75}, {"time": 1.55, "angle": 27.32, "curve": 0.25, "c3": 0.75}, + {"time": 1.8, "curve": 0.25, "c3": 0.75}, {"time": 2.05, "angle": 27.32, "curve": 0.25, "c3": 0.75}, {"time": 2.3, "curve": 0.25, "c3": 0.75}, + {"time": 2.55, "angle": 27.32, "curve": 0.25, "c3": 0.75}, {"time": 2.8, "curve": 0.25, "c3": 0.75}, {"time": 2.9667, "angle": 33.06, "curve": 0.25, "c3": 0.75}, + {"time": 3.2167, "angle": -26.01, "curve": 0.284, "c3": 0.625, "c4": 0.38}, {"time": 3.25, "angle": -22.63} ] }, - "body-fur-7": { + "body-braid3": { "rotate": [ - {"angle": 0.63, "curve": 0.362, "c2": 0.64, "c3": 0.698}, {"time": 0.0167, "curve": 0.25, "c3": 0.75}, {"time": 0.15, "angle": -31.26, "curve": 0.25, "c3": 0.75}, - {"time": 0.2667, "angle": -18.78, "curve": 0.25, "c3": 0.75}, {"time": 0.3167, "angle": -38.17, "curve": 0.25, "c3": 0.75}, {"time": 0.4, "angle": 22.48, "curve": 0.25, "c3": 0.75}, - {"time": 0.6167, "angle": -25.91, "curve": 0.25, "c3": 0.75}, {"time": 0.7833, "angle": 12.23, "curve": 0.245, "c3": 0.707, "c4": 0.82}, {"time": 0.9167, "angle": 2.91} + {"angle": -2.76, "curve": 0.381, "c2": 0.55, "c3": 0.742}, {"time": 0.0667, "curve": 0.25, "c3": 0.75}, {"time": 0.2333, "angle": -6.47, "curve": 0.25, "c3": 0.75}, + {"time": 0.4, "angle": 32.47, "curve": 0.25, "c3": 0.75}, {"time": 0.5667, "angle": -7.5, "curve": 0.25, "c3": 0.75}, {"time": 0.7333, "curve": 0.25, "c3": 0.75}, + {"time": 0.9833, "angle": 19.72, "curve": 0.25, "c3": 0.75}, {"time": 1.2333, "curve": 0.25, "c3": 0.75}, {"time": 1.4833, "angle": 19.72, "curve": 0.25, "c3": 0.75}, + {"time": 1.7333, "curve": 0.25, "c3": 0.75}, {"time": 1.9833, "angle": 19.72, "curve": 0.25, "c3": 0.75}, {"time": 2.2333, "curve": 0.25, "c3": 0.75}, + {"time": 2.4833, "angle": 19.72, "curve": 0.25, "c3": 0.75}, {"time": 2.7333, "curve": 0.25, "c3": 0.75}, {"time": 2.9, "angle": 32.47, "curve": 0.25, "c3": 0.75}, + {"time": 3.15, "angle": -7.5, "curve": 0.245, "c3": 0.637, "c4": 0.56}, {"time": 3.25, "angle": -2.76} ] }, - "body-fur-6": { + "@body2": { "rotate": [ - {"angle": 5.17, "curve": 0.347, "c2": 0.38, "c3": 0.688, "c4": 0.74}, {"time": 0.0333, "angle": 1.89, "curve": 0.377, "c2": 0.61, "c3": 0.72}, {"time": 0.0667}, - {"time": 0.2, "angle": -31.26, "curve": 0.25, "c3": 0.75}, {"time": 0.3167, "angle": -18.78, "curve": 0.25, "c3": 0.75}, {"time": 0.3667, "angle": -38.17, "curve": 0.25, "c3": 0.75}, - {"time": 0.45, "angle": 22.48, "curve": 0.25, "c3": 0.75}, {"time": 0.6667, "angle": -25.91, "curve": 0.25, "c3": 0.75}, - {"time": 0.8333, "angle": 12.23, "curve": 0.247, "c3": 0.631, "c4": 0.53}, {"time": 0.9167, "angle": 13.33} + {"angle": 4.06, "curve": 0.321, "c2": 0.3, "c3": 0.679, "c4": 0.7}, {"time": 0.0667, "angle": 1.3, "curve": 0.382, "c2": 0.58, "c3": 0.731}, {"time": 0.1167, "curve": 0.25, "c3": 0.75}, + {"time": 0.2833, "angle": 5.38, "curve": 0.25, "c3": 0.75}, {"time": 0.45, "angle": -12.18, "curve": 0.25, "c3": 0.75}, {"time": 0.6167, "angle": 15.89, "curve": 0.25, "c3": 0.75}, + {"time": 0.7833, "curve": 0.25, "c3": 0.75}, {"time": 1.0333, "angle": 8.58, "curve": 0.25, "c3": 0.75}, {"time": 1.2833, "angle": -2.06, "curve": 0.25, "c3": 0.75}, + {"time": 1.5333, "angle": 8.58, "curve": 0.25, "c3": 0.75}, {"time": 1.7833, "angle": -3.05, "curve": 0.25, "c3": 0.75}, {"time": 2.0333, "angle": 8.58, "curve": 0.25, "c3": 0.75}, + {"time": 2.2833, "angle": -1.58, "curve": 0.25, "c3": 0.75}, {"time": 2.5333, "angle": 8.58, "curve": 0.25, "c3": 0.75}, {"time": 2.7833, "curve": 0.25, "c3": 0.75}, + {"time": 2.95, "angle": -18.29, "curve": 0.25, "c3": 0.75}, {"time": 3.2, "angle": 5.38, "curve": 0.269, "c3": 0.618, "c4": 0.42}, {"time": 3.25, "angle": 4.06} + ], + "translate": [ + {"x": -1.7, "y": -0.1, "curve": 0.375, "c2": 0.62, "c3": 0.716}, {"time": 0.0333, "curve": 0.25, "c3": 0.75}, {"time": 0.2, "x": -13.08, "y": -0.76, "curve": 0.25, "c3": 0.75}, + {"time": 0.3667, "x": 24.33, "y": 3.17, "curve": 0.25, "c3": 0.75}, {"time": 0.5333, "x": -10.29, "y": 8.24, "curve": 0.25, "c3": 0.75}, {"time": 0.7, "curve": 0.25, "c3": 0.75}, + {"time": 0.95, "x": -7.81, "y": -1.56, "curve": 0.25, "c3": 0.75}, {"time": 1.2, "x": 13.76, "y": 2.25, "curve": 0.25, "c3": 0.75}, + {"time": 1.45, "x": -7.81, "y": -1.56, "curve": 0.25, "c3": 0.75}, {"time": 1.7, "x": 13.76, "y": 2.25, "curve": 0.25, "c3": 0.75}, + {"time": 1.95, "x": -7.81, "y": -1.56, "curve": 0.25, "c3": 0.75}, {"time": 2.2, "x": 13.76, "y": 2.25, "curve": 0.25, "c3": 0.75}, + {"time": 2.45, "x": -7.81, "y": -1.56, "curve": 0.25, "c3": 0.75}, {"time": 2.7, "curve": 0.25, "c3": 0.75}, {"time": 2.8667, "x": 24.33, "y": 3.17, "curve": 0.25, "c3": 0.75}, + {"time": 3.1167, "x": -13.08, "y": -0.76, "curve": 0.243, "c3": 0.68, "c4": 0.71}, {"time": 3.25, "x": -1.7, "y": -0.1} ] }, - "body-fur-5": { + "body-braid6": { "rotate": [ - {"angle": 1.89, "curve": 0.377, "c2": 0.61, "c3": 0.72}, {"time": 0.0333}, {"time": 0.1667, "angle": -31.26, "curve": 0.25, "c3": 0.75}, - {"time": 0.2833, "angle": -18.78, "curve": 0.25, "c3": 0.75}, {"time": 0.3333, "angle": -38.17, "curve": 0.25, "c3": 0.75}, {"time": 0.4167, "angle": 22.48, "curve": 0.25, "c3": 0.75}, - {"time": 0.6333, "angle": -25.91, "curve": 0.25, "c3": 0.75}, {"time": 0.8, "angle": 12.23, "curve": 0.243, "c3": 0.674, "c4": 0.69}, {"time": 0.9167, "angle": 6.86} + {"angle": -31.49, "curve": 0.345, "c2": 0.39, "c3": 0.679, "c4": 0.72}, {"time": 0.0167, "angle": -34.97, "curve": 0.366, "c2": 0.63, "c3": 0.703}, + {"time": 0.05, "angle": -39.01, "curve": 0.25, "c3": 0.75}, {"time": 0.2167, "curve": 0.25, "c3": 0.75}, {"time": 0.3833, "angle": -32.78, "curve": 0.25, "c3": 0.75}, + {"time": 0.55, "angle": 19.08, "curve": 0.25, "c3": 0.75}, {"time": 0.7167, "angle": -39.01, "curve": 0.25, "c3": 0.75}, {"time": 0.8833, "curve": 0.25, "c3": 0.75}, + {"time": 1.1333, "angle": 2.79, "curve": 0.25, "c3": 0.75}, {"time": 1.3833, "angle": -23.32, "curve": 0.25, "c3": 0.75}, {"time": 1.6333, "angle": 18.54, "curve": 0.25, "c3": 0.75}, + {"time": 1.8833, "angle": -23.32, "curve": 0.25, "c3": 0.75}, {"time": 2.1333, "angle": 18.54, "curve": 0.25, "c3": 0.75}, {"time": 2.3833, "angle": -23.32, "curve": 0.25, "c3": 0.75}, + {"time": 2.6333, "angle": 2.79, "curve": 0.25, "c3": 0.75}, {"time": 2.8833, "curve": 0.25, "c3": 0.75}, {"time": 3.05, "angle": 19.08, "curve": 0.243, "c3": 0.68, "c4": 0.71}, + {"time": 3.25, "angle": -31.49} ] }, - "body-fur-4": { + "body-braid5": { "rotate": [ - {"angle": 6.97, "curve": 0.342, "c2": 0.36, "c3": 0.692, "c4": 0.75}, {"time": 0.05, "angle": 1.89, "curve": 0.377, "c2": 0.61, "c3": 0.72}, {"time": 0.0833}, - {"time": 0.2167, "angle": -31.26, "curve": 0.25, "c3": 0.75}, {"time": 0.3333, "angle": -18.78, "curve": 0.25, "c3": 0.75}, {"time": 0.3833, "angle": -38.17, "curve": 0.25, "c3": 0.75}, - {"time": 0.4667, "angle": 22.48, "curve": 0.25, "c3": 0.75}, {"time": 0.6833, "angle": -25.91, "curve": 0.25, "c3": 0.75}, - {"time": 0.85, "angle": 12.23, "curve": 0.254, "c3": 0.621, "c4": 0.47}, {"time": 0.9167, "angle": 12.53} + {"angle": -10.19, "curve": 0.32, "c2": 0.29, "c3": 0.655, "c4": 0.63}, {"time": 0.0167, "angle": -8.86, "curve": 0.345, "c2": 0.37, "c3": 0.757}, + {"time": 0.1333, "curve": 0.25, "c3": 0.75}, {"time": 0.3, "angle": -6.97, "curve": 0.25, "c3": 0.75}, {"time": 0.4667, "angle": 17.12, "curve": 0.25, "c3": 0.75}, + {"time": 0.6333, "angle": -11.69, "curve": 0.25, "c3": 0.75}, {"time": 0.8, "curve": 0.25, "c3": 0.75}, {"time": 1.05, "angle": 9.32, "curve": 0.25, "c3": 0.75}, + {"time": 1.3, "angle": 11.19, "curve": 0.25, "c3": 0.75}, {"time": 1.55, "angle": 20.13, "curve": 0.25, "c3": 0.75}, {"time": 1.8, "curve": 0.25, "c3": 0.75}, + {"time": 2.05, "angle": 14.14, "curve": 0.25, "c3": 0.75}, {"time": 2.3, "curve": 0.25, "c3": 0.75}, {"time": 2.55, "angle": 8.99, "curve": 0.25, "c3": 0.75}, + {"time": 2.8, "curve": 0.25, "c3": 0.75}, {"time": 2.9667, "angle": 17.12, "curve": 0.25, "c3": 0.75}, {"time": 3.2167, "angle": -11.69, "curve": 0.284, "c3": 0.625, "c4": 0.38}, + {"time": 3.25, "angle": -10.19} ] }, - "body-fur-3": { + "body-braid": { "rotate": [ - {"angle": 3.47, "curve": 0.382, "c2": 0.57, "c3": 0.735}, {"time": 0.05}, {"time": 0.1833, "angle": -31.26, "curve": 0.25, "c3": 0.75}, - {"time": 0.3, "angle": -18.78, "curve": 0.25, "c3": 0.75}, {"time": 0.35, "angle": -38.17, "curve": 0.25, "c3": 0.75}, {"time": 0.4333, "angle": 22.48, "curve": 0.25, "c3": 0.75}, - {"time": 0.65, "angle": -25.91, "curve": 0.25, "c3": 0.75}, {"time": 0.8167, "angle": 12.23, "curve": 0.243, "c3": 0.649, "c4": 0.6}, {"time": 0.9167, "angle": 5.54} + {"angle": -1.12, "curve": 0.33, "c2": 0.32, "c3": 0.665, "c4": 0.66}, {"time": 0.0167, "angle": -0.89, "curve": 0.375, "c2": 0.5, "c3": 0.75}, {"time": 0.1, "curve": 0.25, "c3": 0.75}, + {"time": 0.2667, "angle": -3.74, "curve": 0.25, "c3": 0.75}, {"time": 0.4333, "angle": 25.24, "curve": 0.25, "c3": 0.75}, {"time": 0.6, "angle": -1.77, "curve": 0.25, "c3": 0.75}, + {"time": 0.7667, "curve": 0.25, "c3": 0.75}, {"time": 1.0167, "angle": 12.44, "curve": 0.25, "c3": 0.75}, {"time": 1.2667, "curve": 0.25, "c3": 0.75}, + {"time": 1.5167, "angle": 12.44, "curve": 0.25, "c3": 0.75}, {"time": 1.7667, "curve": 0.25, "c3": 0.75}, {"time": 2.0167, "angle": 12.44, "curve": 0.25, "c3": 0.75}, + {"time": 2.2667, "curve": 0.25, "c3": 0.75}, {"time": 2.5167, "angle": 12.44, "curve": 0.25, "c3": 0.75}, {"time": 2.7667, "curve": 0.25, "c3": 0.75}, + {"time": 2.9333, "angle": 25.24, "curve": 0.25, "c3": 0.75}, {"time": 3.1833, "angle": -1.77, "curve": 0.258, "c3": 0.619, "c4": 0.45}, {"time": 3.25, "angle": -1.12} + ], + "translate": [ + {"x": 1.3, "y": -0.76, "curve": 0.339, "c2": 0.35, "c3": 0.674, "c4": 0.69}, {"time": 0.0167, "x": 0.86, "y": -0.5, "curve": 0.382, "c2": 0.58, "c3": 0.731}, + {"time": 0.0667, "curve": 0.25, "c3": 0.75}, {"time": 0.2333, "x": 1.68, "y": -1.17, "curve": 0.25, "c3": 0.75}, {"time": 0.4, "x": -10.53, "y": -2.86, "curve": 0.25, "c3": 0.75}, + {"time": 0.5667, "x": 3.54, "y": -2.08, "curve": 0.25, "c3": 0.75}, {"time": 0.7333, "curve": 0.25, "c3": 0.75}, {"time": 0.9833, "x": -10.53, "y": -2.86, "curve": 0.25, "c3": 0.75}, + {"time": 1.2333, "curve": 0.25, "c3": 0.75}, {"time": 1.4833, "x": -10.53, "y": -2.86, "curve": 0.25, "c3": 0.75}, {"time": 1.7333, "curve": 0.25, "c3": 0.75}, + {"time": 1.9833, "x": -10.53, "y": -2.86, "curve": 0.25, "c3": 0.75}, {"time": 2.2333, "curve": 0.25, "c3": 0.75}, {"time": 2.4833, "x": -10.53, "y": -2.86, "curve": 0.25, "c3": 0.75}, + {"time": 2.7333, "curve": 0.25, "c3": 0.75}, {"time": 2.9, "x": -10.53, "y": -2.86, "curve": 0.25, "c3": 0.75}, + {"time": 3.15, "x": 3.54, "y": -2.08, "curve": 0.245, "c3": 0.637, "c4": 0.56}, {"time": 3.25, "x": 1.3, "y": -0.76} ] }, - "body-fur-1": { + "@body5": { "rotate": [ - {"angle": 5.22, "curve": 0.379, "c2": 0.53, "c3": 0.746}, {"time": 0.0667}, {"time": 0.2, "angle": -31.26, "curve": 0.25, "c3": 0.75}, - {"time": 0.3167, "angle": -18.78, "curve": 0.25, "c3": 0.75}, {"time": 0.3667, "angle": -38.17, "curve": 0.25, "c3": 0.75}, {"time": 0.45, "angle": 22.48, "curve": 0.25, "c3": 0.75}, - {"time": 0.6667, "angle": -25.91, "curve": 0.25, "c3": 0.75}, {"time": 0.8333, "angle": 12.23, "curve": 0.247, "c3": 0.631, "c4": 0.53}, {"time": 0.9167, "angle": 10.51} + {"curve": 0.25, "c3": 0.75}, {"time": 0.1667, "angle": -0.69, "curve": 0.25, "c3": 0.75}, {"time": 0.3333, "angle": 3.41, "curve": 0.25, "c3": 0.75}, + {"time": 0.5, "angle": -2, "curve": 0.25, "c3": 0.75}, {"time": 0.6667, "curve": 0.25, "c3": 0.75}, {"time": 0.9167, "angle": 1.01, "curve": 0.25, "c3": 0.75}, + {"time": 1.1667, "angle": 0.75, "curve": 0.25, "c3": 0.75}, {"time": 1.4167, "angle": 1.01, "curve": 0.25, "c3": 0.75}, {"time": 1.6667, "angle": -0.24, "curve": 0.25, "c3": 0.75}, + {"time": 1.9167, "angle": 1.01, "curve": 0.25, "c3": 0.75}, {"time": 2.1667, "angle": 1.23, "curve": 0.25, "c3": 0.75}, {"time": 2.4167, "angle": 1.01, "curve": 0.25, "c3": 0.75}, + {"time": 2.6667, "curve": 0.25, "c3": 0.75}, {"time": 2.8333, "angle": 3.41, "curve": 0.25, "c3": 0.75}, {"time": 3.0833, "angle": -0.69, "curve": 0.25, "c3": 0.75}, {"time": 3.25} ] } - }, - "drawOrder": [{"time": 0.35, "offsets": [{"slot": "leg-back-left", "offset": 11}]}, {"time": 0.5833}], - "events": [{"time": 0.35, "name": "start-attack"}, {"time": 0.5667, "name": "start-attack"}] + } }, - "3200295228": { + "3087086321": { "slots": { - "eyes": {"attachment": [{"time": 0.1333, "name": "eyes-shut"}, {"time": 0.2, "name": "eyes"}, {"time": 0.4667, "name": "eyes-shut"}, {"time": 0.5833, "name": "eyes"}]}, - "mouth": { - "attachment": [ - {"time": 0.0833, "name": "mouth-open"}, {"time": 0.1667, "name": "mouth-bite"}, {"time": 0.3333, "name": "mouth"}, {"time": 0.4167, "name": "mouth-open"}, - {"time": 0.5, "name": "mouth-bite"}, {"time": 0.5833, "name": "mouth"} - ] - } + "eyes": {"attachment": [{"time": 0.1, "name": "eyes-shut"}, {"time": 1, "name": "eyes"}]}, + "leg-back-left": {"attachment": [{"time": 0.0667, "name": "sumo-leg-back-left-long"}, {"time": 0.9, "name": "sumo-leg-back-left"}]} }, "bones": { - "@mouth": { - "translate": [ - {"time": 0.1667, "curve": 0, "c2": 0.1, "c3": 0.479, "c4": 0.56}, {"time": 0.3333, "x": -0.56, "y": 3.4, "curve": 0.408, "c2": 0.51, "c3": 0.853}, {"time": 0.5, "x": 0.04, "y": 0.05} - ] - }, "@pivot-back": { "rotate": [ - {"curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.0667, "angle": -0.59, "curve": 0.075, "c4": 0.95}, {"time": 0.1333, "angle": 1.15, "curve": 0, "c2": 0.1, "c3": 0.85}, - {"time": 0.2167, "curve": "stepped"}, {"time": 0.3333, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.4, "angle": -0.59, "curve": 0.075, "c4": 0.95}, - {"time": 0.4667, "angle": 1.15, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.5833} + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "angle": -18, "curve": 0.317, "c3": 0.693}, {"time": 0.3333, "angle": -17, "curve": 0.317, "c3": 0.693}, + {"time": 0.5, "angle": -18, "curve": 0.317, "c3": 0.693}, {"time": 0.6667, "angle": -17, "curve": 0.317, "c3": 0.693}, {"time": 0.8333, "angle": -18, "curve": 0.317, "c3": 0.693}, + {"time": 1.0833} ], "translate": [ - {"y": 0.06, "curve": 0.387, "c3": 0.314}, {"time": 0.1333, "x": -13.8, "y": 0.06, "curve": 0.387, "c3": 0.314}, {"time": 0.2167, "x": 0.02, "y": 0.06, "curve": "stepped"}, - {"time": 0.3333, "x": 0.02, "y": 0.06, "curve": 0.387, "c3": 0.314}, {"time": 0.4667, "x": -13.8, "y": 0.06, "curve": 0.387, "c3": 0.314}, {"time": 0.5833, "x": 0.02, "y": 0.06} + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": 33.94, "y": -52, "curve": "stepped"}, {"time": 0.8333, "x": 33.94, "y": -52, "curve": 0.317, "c3": 0.693}, {"time": 1.0833} + ] + }, + "@leg-front-left": { + "translate": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": -27.99, "y": 1.7, "curve": 0.25, "c3": 0.75}, {"time": 0.3333, "x": -26.93, "y": -1.56, "curve": 0.25, "c3": 0.75}, + {"time": 0.5, "x": -27.99, "y": 1.7, "curve": 0.25, "c3": 0.75}, {"time": 0.6667, "x": -26.93, "y": -1.56, "curve": 0.25, "c3": 0.75}, + {"time": 0.8333, "x": -27.99, "y": 1.7, "curve": 0.317, "c3": 0.693}, {"time": 1.0833} ] }, "@leg-front-right": { - "rotate": [ - {"curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.0667, "angle": 10.98, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.2167, "angle": -8.78, "curve": 0.161, "c3": 0.854}, - {"time": 0.3333, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.4, "angle": 10.98, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.55, "angle": -8.78, "curve": 0.161, "c3": 0.854}, - {"time": 0.6667, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.8333, "angle": -9.85, "curve": 0.161, "c3": 0.854}, {"time": 0.9833, "angle": -6.21}, - {"time": 1.15, "angle": 2.69, "curve": 0.075, "c4": 0.95}, {"time": 1.3333, "angle": -30.3} + "translate": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": -84.32, "y": 39.72, "curve": 0.317, "c3": 0.693}, {"time": 0.3333, "x": -82.71, "y": 34.75, "curve": 0.317, "c3": 0.693}, + {"time": 0.5, "x": -84.32, "y": 39.72, "curve": 0.317, "c3": 0.693}, {"time": 0.6667, "x": -82.71, "y": 34.75, "curve": 0.317, "c3": 0.693}, + {"time": 0.8333, "x": -84.32, "y": 39.72, "curve": 0.317, "c3": 0.693}, {"time": 1.0833} ] }, - "@leg-front-left": { - "rotate": [ - {"curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.0667, "angle": 10.98, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.2167, "angle": -8.78, "curve": 0.161, "c3": 0.854}, - {"time": 0.3333, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.4, "angle": 10.98, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.55, "angle": -8.78, "curve": 0.161, "c3": 0.854}, - {"time": 0.6667, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.8333, "angle": -9.84, "curve": 0.161, "c3": 0.854}, {"time": 0.9833, "angle": -6.21}, - {"time": 1.15, "angle": 2.69, "curve": 0.075, "c4": 0.95}, {"time": 1.3333, "angle": 20.14} + "leg-front-right-IK": { + "translate": [{"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": 40.32, "curve": "stepped"}, {"time": 0.8333, "x": 40.32, "curve": 0.317, "c3": 0.693}, {"time": 1.0833}] + }, + "leg-front-left-IK": { + "translate": [{"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": 26.51, "curve": "stepped"}, {"time": 0.8333, "x": 26.51, "curve": 0.317, "c3": 0.693}, {"time": 1.0833}] + }, + "leg-back-left-IK": { + "translate": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": -21.75, "y": 117.39, "curve": 0.617, "c4": 0.6}, + {"time": 0.2667, "x": -93.41, "y": 108.34, "curve": 0, "c2": 0.4, "c3": 0.383}, {"time": 0.35, "x": -22.69, "y": 117.03, "curve": 0.617, "c4": 0.6}, + {"time": 0.45, "x": -78.11, "y": 117.52, "curve": 0, "c2": 0.4, "c3": 0.383}, {"time": 0.55, "x": -20.24, "y": 116.41, "curve": 0.617, "c4": 0.6}, + {"time": 0.6333, "x": -82.4, "y": 114.46, "curve": 0, "c2": 0.4, "c3": 0.383}, {"time": 0.7333, "x": -22.08, "y": 116.41, "curve": 0.434, "c3": 0.739, "c4": 0.4}, + {"time": 0.8333, "x": -68.55, "y": 121.38, "curve": 0.223, "c2": 0.33, "c3": 0.336}, {"time": 1.0833} ] }, - "@leg-back-left": { + "tail": { "rotate": [ - {"curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.0667, "angle": 10.98, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.2167, "angle": -8.78, "curve": 0.161, "c3": 0.854}, - {"time": 0.3333, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.4, "angle": 10.98, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.55, "angle": -8.78, "curve": 0.161, "c3": 0.854}, - {"time": 0.6667, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.8333, "angle": 5.93, "curve": 0.161, "c3": 0.854}, {"time": 0.9833}, - {"time": 1.15, "angle": -4.97, "curve": 0.075, "c4": 0.95}, {"time": 1.3333, "angle": -11.75} + {"curve": 0, "c2": 0.3, "c3": 0.546}, {"time": 0.1667, "angle": 25.35, "curve": 0.317, "c3": 0.693}, {"time": 0.3333, "angle": 33.35, "curve": 0.317, "c3": 0.693}, + {"time": 0.5, "angle": 25.35, "curve": 0.317, "c3": 0.693}, {"time": 0.6667, "angle": 33.35, "curve": 0.317, "c3": 0.693}, + {"time": 0.9167, "angle": 25.35, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 1.0833} ] }, - "@pivot-main": {"translate": [{"curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.0667, "y": 7.88, "curve": 0.078, "c4": 0.94}, {"time": 0.1333}]}, - "@pivot-center": {"translate": [{"curve": 0.387, "c3": 0.314}, {"time": 0.6667, "y": 14.05, "curve": 0.387, "c3": 0.314}, {"time": 1.3333}]}, "@shadow": { - "translate": [ - {"curve": 0.387, "c3": 0.314}, {"time": 0.1333, "x": -23.3, "curve": 0.387, "c3": 0.314}, {"time": 0.2167, "x": -9.6, "curve": "stepped"}, - {"time": 0.3333, "x": -9.6, "curve": 0.387, "c3": 0.314}, {"time": 0.4667, "x": -23.3, "curve": 0.387, "c3": 0.314}, {"time": 0.5833} + "translate": [{"curve": 0, "c2": 0.3, "c3": 0.546}, {"time": 0.1667, "x": 32.73, "curve": "stepped"}, {"time": 0.8333, "x": 32.73, "curve": 0.317, "c3": 0.693}, {"time": 1.0833}], + "scale": [ + {"time": 0.1667, "curve": 0.317, "c3": 0.693}, {"time": 0.25, "x": 1.02, "y": 1.02, "curve": 0.317, "c3": 0.693}, {"time": 0.3333, "curve": 0.317, "c3": 0.693}, + {"time": 0.4167, "x": 1.02, "y": 1.02, "curve": 0.317, "c3": 0.693}, {"time": 0.5, "curve": 0.317, "c3": 0.693}, {"time": 0.5833, "x": 1.02, "y": 1.02, "curve": 0.317, "c3": 0.693}, + {"time": 0.6667, "curve": 0.317, "c3": 0.693}, {"time": 0.8333, "x": 1.02, "y": 1.02, "curve": 0.317, "c3": 0.693}, {"time": 1.0833} + ] + }, + "@body3": { + "rotate": [ + {"angle": 0.98, "curve": 0.349, "c2": 0.39, "c3": 0.689, "c4": 0.74}, {"time": 0.05, "angle": 0.35, "curve": 0.375, "c2": 0.62, "c3": 0.716}, {"time": 0.1, "curve": 0.25, "c3": 0.75}, + {"time": 0.2667, "angle": 2.71, "curve": 0.25, "c3": 0.75}, {"time": 0.4333, "angle": -9.07, "curve": 0.25, "c3": 0.75}, {"time": 0.6, "angle": 2.71, "curve": 0.25, "c3": 0.75}, + {"time": 0.7667, "angle": -9.07, "curve": 0.25, "c3": 0.75}, {"time": 0.9333, "angle": 2.71, "curve": 0.245, "c3": 0.637, "c4": 0.56}, {"time": 1.0833, "angle": 0.98} ], - "scale": [{"curve": 0.387, "c3": 0.314}, {"time": 0.6667, "x": 0.95, "y": 0.95, "curve": 0.387, "c3": 0.314}, {"time": 1.3333}] + "translate": [ + {"x": -1.52, "y": -0.3, "curve": 0.375, "c2": 0.62, "c3": 0.716}, {"time": 0.05, "curve": 0.25, "c3": 0.75}, {"time": 0.2167, "x": -11.72, "y": -2.34, "curve": 0.25, "c3": 0.75}, + {"time": 0.3833, "x": 23.59, "y": 3.86, "curve": 0.25, "c3": 0.75}, {"time": 0.55, "x": -11.72, "y": -2.34, "curve": 0.25, "c3": 0.75}, + {"time": 0.7167, "x": 23.59, "y": 3.86, "curve": 0.25, "c3": 0.75}, {"time": 0.8833, "x": -11.72, "y": -2.34, "curve": 0.243, "c3": 0.68, "c4": 0.71}, + {"time": 1.0833, "x": -1.52, "y": -0.3} + ] }, - "tail": { + "@body4": { "rotate": [ - {"curve": 0, "c2": 0.12, "c3": 0.348, "c4": 0.47}, {"time": 0.1, "angle": -6.85, "curve": 0.229, "c2": 0.25, "c3": 0.569, "c4": 0.6}, - {"time": 0.2, "angle": 1.43, "curve": 0.188, "c2": 0.31, "c3": 0.695}, {"time": 0.3333, "angle": 3.02, "curve": 0, "c2": 0.12, "c3": 0.347, "c4": 0.48}, - {"time": 0.4333, "angle": -6.85, "curve": 0.229, "c2": 0.25, "c3": 0.569, "c4": 0.6}, {"time": 0.5333, "angle": 1.2, "curve": 0.155, "c3": 0.85}, - {"time": 0.75, "angle": -5.95, "curve": 0.161, "c3": 0.854}, {"time": 0.95, "angle": -0.94}, {"time": 1.15, "angle": 4.91, "curve": 0.234, "c4": 0.9}, {"time": 1.3333} + {"angle": 0.15, "curve": 0.366, "c2": 0.63, "c3": 0.703}, {"time": 0.0333, "curve": 0.25, "c3": 0.75}, {"time": 0.2, "angle": 2.32, "curve": 0.25, "c3": 0.75}, + {"time": 0.3667, "angle": -9.1, "curve": 0.25, "c3": 0.75}, {"time": 0.5333, "angle": 2.32, "curve": 0.25, "c3": 0.75}, {"time": 0.7, "angle": -9.1, "curve": 0.25, "c3": 0.75}, + {"time": 0.8667, "angle": 2.32, "curve": 0.248, "c3": 0.628, "c4": 0.52}, {"time": 1, "angle": 1.06, "curve": 0.356, "c2": 0.41, "c3": 0.707, "c4": 0.81}, {"time": 1.0833, "angle": 0.15} + ], + "translate": [ + {"x": 0.47, "y": -2.37, "curve": 0.345, "c2": 0.37, "c3": 0.757}, {"time": 0.1167, "x": 1.95, "y": -9.77, "curve": 0.25, "c3": 0.75}, + {"time": 0.2833, "x": 13.76, "y": 2.25, "curve": 0.25, "c3": 0.75}, {"time": 0.45, "x": 1.95, "y": -9.77, "curve": 0.25, "c3": 0.75}, + {"time": 0.6167, "x": 13.76, "y": 2.25, "curve": 0.25, "c3": 0.75}, {"time": 0.7833, "x": 1.95, "y": -9.77, "curve": 0.244, "c3": 0.7, "c4": 0.79}, + {"time": 1, "x": 0.14, "y": -0.68, "curve": 0.366, "c2": 0.63, "c3": 0.703}, {"time": 1.0333, "curve": 0.269, "c3": 0.618, "c4": 0.42}, {"time": 1.0833, "x": 0.47, "y": -2.37} ] }, - "body-fur-8": { + "@body6": { "rotate": [ - {"angle": -0.62, "curve": 0.369, "c2": 0.63, "c3": 0.707}, {"time": 0.0333}, {"time": 0.15, "angle": 21.4, "curve": 0.25, "c3": 0.75}, - {"time": 0.3, "angle": -20.96, "curve": 0.25, "c3": 0.75}, {"time": 0.5, "angle": 22.02, "curve": 0.25, "c3": 0.75}, {"time": 0.7, "angle": -20.96, "curve": 0.25, "c3": 0.75}, - {"time": 0.9333, "angle": 1.24, "curve": 0.25, "c3": 0.75}, {"time": 1.15, "angle": -7.25, "curve": 0.244, "c3": 0.693, "c4": 0.76}, {"time": 1.3333, "angle": -0.62} + {"angle": 3.18, "curve": 0.382, "c2": 0.57, "c3": 0.735}, {"time": 0.0833, "curve": 0.25, "c3": 0.75}, {"time": 0.25, "angle": 11.2, "curve": 0.25, "c3": 0.75}, + {"time": 0.4167, "angle": -1.3, "curve": 0.25, "c3": 0.75}, {"time": 0.5833, "angle": 11.2, "curve": 0.25, "c3": 0.75}, {"time": 0.75, "angle": -1.3, "curve": 0.25, "c3": 0.75}, + {"time": 0.9167, "angle": 11.2, "curve": 0.243, "c3": 0.649, "c4": 0.6}, {"time": 1.0833, "angle": 3.18} + ], + "translate": [ + {"x": -0.92, "y": 0.48, "curve": 0.375, "c2": 0.62, "c3": 0.716}, {"time": 0.05, "curve": 0.25, "c3": 0.75}, {"time": 0.2167, "x": -7.07, "y": 3.68, "curve": 0.25, "c3": 0.75}, + {"time": 0.3833, "curve": 0.25, "c3": 0.75}, {"time": 0.55, "x": -7.07, "y": 3.68, "curve": 0.25, "c3": 0.75}, {"time": 0.7167, "curve": 0.25, "c3": 0.75}, + {"time": 0.8833, "x": -7.07, "y": 3.68, "curve": 0.243, "c3": 0.68, "c4": 0.71}, {"time": 1.0833, "x": -0.92, "y": 0.48} ] }, - "body-fur-1": { + "body-braid2": { "rotate": [ - {"angle": -2.52, "curve": 0.382, "c2": 0.55, "c3": 0.741}, {"time": 0.0833}, {"time": 0.2, "angle": 21.4, "curve": 0.25, "c3": 0.75}, - {"time": 0.35, "angle": -20.96, "curve": 0.25, "c3": 0.75}, {"time": 0.55, "angle": 22.02, "curve": 0.25, "c3": 0.75}, {"time": 0.75, "angle": -20.96, "curve": 0.25, "c3": 0.75}, - {"time": 0.9833, "angle": 1.24, "curve": 0.25, "c3": 0.75}, {"time": 1.2, "angle": -7.25, "curve": 0.245, "c3": 0.64, "c4": 0.57}, {"time": 1.3333, "angle": -2.52} + {"angle": 0.61, "curve": 0.366, "c2": 0.63, "c3": 0.703}, {"time": 0.0333, "curve": 0.25, "c3": 0.75}, {"time": 0.2, "angle": 8.77, "curve": 0.25, "c3": 0.75}, + {"time": 0.3667, "curve": 0.25, "c3": 0.75}, {"time": 0.5333, "angle": 8.77, "curve": 0.25, "c3": 0.75}, {"time": 0.7, "curve": 0.25, "c3": 0.75}, + {"time": 0.8667, "angle": 8.77, "curve": 0.244, "c3": 0.7, "c4": 0.79}, {"time": 1.0833, "angle": 0.61} + ], + "translate": [ + {"curve": 0.25, "c3": 0.75}, {"time": 0.1667, "x": -10.52, "y": -2.87, "curve": 0.25, "c3": 0.75}, {"time": 0.3333, "curve": 0.25, "c3": 0.75}, + {"time": 0.5, "x": -10.52, "y": -2.87, "curve": 0.25, "c3": 0.75}, {"time": 0.6667, "curve": 0.25, "c3": 0.75}, {"time": 0.8333, "x": -10.52, "y": -2.87, "curve": 0.25, "c3": 0.75}, + {"time": 1.0833} ] }, - "body-fur-2": { + "body-braid4": { "rotate": [ - {"angle": -4.7, "curve": 0.336, "c2": 0.34, "c3": 0.691, "c4": 0.74}, {"time": 0.0833, "angle": -1.19, "curve": 0.378, "c2": 0.61, "c3": 0.721}, {"time": 0.1333}, - {"time": 0.25, "angle": 21.4, "curve": 0.25, "c3": 0.75}, {"time": 0.4, "angle": -20.96, "curve": 0.25, "c3": 0.75}, {"time": 0.6, "angle": 22.02, "curve": 0.25, "c3": 0.75}, - {"time": 0.8, "angle": -20.96, "curve": 0.25, "c3": 0.75}, {"time": 1.0333, "angle": 1.24, "curve": 0.25, "c3": 0.75}, - {"time": 1.25, "angle": -7.25, "curve": 0.259, "c3": 0.618, "c4": 0.45}, {"time": 1.3333, "angle": -4.7} + {"angle": 10.6, "curve": 0.363, "c2": 0.44, "c3": 0.755}, {"time": 0.15, "curve": 0.25, "c3": 0.75}, {"time": 0.3167, "angle": 27.77, "curve": 0.25, "c3": 0.75}, + {"time": 0.4833, "angle": 0.5, "curve": 0.25, "c3": 0.75}, {"time": 0.65, "angle": 29.08, "curve": 0.25, "c3": 0.75}, {"time": 0.8167, "curve": 0.25, "c3": 0.75}, + {"time": 0.9833, "angle": 16.77, "curve": 0.258, "c3": 0.619, "c4": 0.45}, {"time": 1.0833, "angle": 10.6} ] }, - "body-fur-3": { + "body-braid3": { "rotate": [ - {"angle": -4.73, "curve": 0.36, "c2": 0.43, "c3": 0.755}, {"time": 0.1333}, {"time": 0.25, "angle": 21.4, "curve": 0.25, "c3": 0.75}, - {"time": 0.4, "angle": -20.96, "curve": 0.25, "c3": 0.75}, {"time": 0.6, "angle": 22.02, "curve": 0.25, "c3": 0.75}, {"time": 0.8, "angle": -20.96, "curve": 0.25, "c3": 0.75}, - {"time": 1.0333, "angle": 1.24, "curve": 0.25, "c3": 0.75}, {"time": 1.25, "angle": -7.25, "curve": 0.259, "c3": 0.618, "c4": 0.45}, {"time": 1.3333, "angle": -4.73} + {"angle": 5.6, "curve": 0.382, "c2": 0.57, "c3": 0.735}, {"time": 0.0833, "curve": 0.25, "c3": 0.75}, {"time": 0.25, "angle": 29.56, "curve": 0.25, "c3": 0.75}, + {"time": 0.4167, "angle": 3.6, "curve": 0.25, "c3": 0.75}, {"time": 0.5833, "angle": 32.55, "curve": 0.25, "c3": 0.75}, {"time": 0.75, "curve": 0.25, "c3": 0.75}, + {"time": 0.9167, "angle": 19.72, "curve": 0.243, "c3": 0.649, "c4": 0.6}, {"time": 1.0833, "angle": 5.6} ] }, - "body-fur-4": { + "@body2": { "rotate": [ - {"angle": -6.62, "curve": 0.293, "c2": 0.2, "c3": 0.685, "c4": 0.73}, {"time": 0.1333, "angle": -1.19, "curve": 0.378, "c2": 0.61, "c3": 0.721}, {"time": 0.1833}, - {"time": 0.3, "angle": 21.4, "curve": 0.25, "c3": 0.75}, {"time": 0.45, "angle": -20.96, "curve": 0.25, "c3": 0.75}, {"time": 0.65, "angle": 22.02, "curve": 0.25, "c3": 0.75}, - {"time": 0.85, "angle": -20.96, "curve": 0.25, "c3": 0.75}, {"time": 1.0833, "angle": 1.24, "curve": 0.25, "c3": 0.75}, - {"time": 1.3, "angle": -7.25, "curve": 0.293, "c3": 0.631, "c4": 0.37}, {"time": 1.3333, "angle": -6.62} + {"angle": 1.74, "curve": 0.38, "c2": 0.59, "c3": 0.727}, {"time": 0.0667, "curve": 0.25, "c3": 0.75}, {"time": 0.2333, "angle": 8.58, "curve": 0.25, "c3": 0.75}, + {"time": 0.4, "angle": -3.05, "curve": 0.25, "c3": 0.75}, {"time": 0.5667, "angle": 8.58, "curve": 0.25, "c3": 0.75}, {"time": 0.7333, "angle": -3.05, "curve": 0.25, "c3": 0.75}, + {"time": 0.9, "angle": 8.58, "curve": 0.242, "c3": 0.663, "c4": 0.65}, {"time": 1.0833, "angle": 1.74} + ], + "translate": [ + {"curve": 0.25, "c3": 0.75}, {"time": 0.1667, "x": -7.81, "y": -1.56, "curve": 0.25, "c3": 0.75}, {"time": 0.3333, "x": 13.76, "y": 2.25, "curve": 0.25, "c3": 0.75}, + {"time": 0.5, "x": -7.81, "y": -1.56, "curve": 0.25, "c3": 0.75}, {"time": 0.6667, "x": 13.76, "y": 2.25, "curve": 0.25, "c3": 0.75}, + {"time": 0.8333, "x": -7.81, "y": -1.56, "curve": 0.25, "c3": 0.75}, {"time": 1.0833} ] }, - "body-fur-5": { + "body-braid6": { "rotate": [ - {"angle": -3.26, "curve": 0.378, "c2": 0.52, "c3": 0.747}, {"time": 0.1}, {"time": 0.2167, "angle": 21.4, "curve": 0.25, "c3": 0.75}, - {"time": 0.3667, "angle": -20.96, "curve": 0.25, "c3": 0.75}, {"time": 0.5667, "angle": 22.02, "curve": 0.25, "c3": 0.75}, {"time": 0.7667, "angle": -20.96, "curve": 0.25, "c3": 0.75}, - {"time": 1, "angle": 1.24, "curve": 0.25, "c3": 0.75}, {"time": 1.2167, "angle": -7.25, "curve": 0.248, "c3": 0.629, "c4": 0.52}, {"time": 1.3333, "angle": -3.26} + {"angle": 2.45, "curve": 0.382, "c2": 0.58, "c3": 0.731}, {"time": 0.05, "angle": 3.23, "curve": 0.25, "c3": 0.75}, {"time": 0.3, "angle": 30.91, "curve": 0.25, "c3": 0.75}, + {"time": 0.4667, "angle": -5.33, "curve": 0.25, "c3": 0.75}, {"time": 0.6333, "angle": 13.66, "curve": 0.25, "c3": 0.75}, {"time": 0.8, "angle": 3.23, "curve": 0.25, "c3": 0.75}, + {"time": 0.9667, "curve": 0.243, "c3": 0.655, "c4": 0.63}, {"time": 1.0833, "angle": 2.45} ] }, - "body-fur-6": { + "body-braid5": { "rotate": [ - {"angle": -5.41, "curve": 0.325, "c2": 0.31, "c3": 0.691, "c4": 0.74}, {"time": 0.1, "angle": -1.19, "curve": 0.378, "c2": 0.61, "c3": 0.721}, {"time": 0.15}, - {"time": 0.2667, "angle": 21.4, "curve": 0.25, "c3": 0.75}, {"time": 0.4167, "angle": -20.96, "curve": 0.25, "c3": 0.75}, {"time": 0.6167, "angle": 22.02, "curve": 0.25, "c3": 0.75}, - {"time": 0.8167, "angle": -20.96, "curve": 0.25, "c3": 0.75}, {"time": 1.05, "angle": 1.24, "curve": 0.25, "c3": 0.75}, - {"time": 1.2667, "angle": -7.25, "curve": 0.268, "c3": 0.618, "c4": 0.42}, {"time": 1.3333, "angle": -5.41} + {"angle": 7.44, "curve": 0.351, "c2": 0.4, "c3": 0.757}, {"time": 0.1667, "curve": 0.25, "c3": 0.75}, {"time": 0.3333, "angle": 38.8, "curve": 0.25, "c3": 0.75}, + {"time": 0.5, "curve": 0.25, "c3": 0.75}, {"time": 0.6667, "angle": 25.82, "curve": 0.25, "c3": 0.75}, {"time": 0.8333, "curve": 0.25, "c3": 0.75}, + {"time": 1, "angle": 10.38, "curve": 0.265, "c3": 0.618, "c4": 0.43}, {"time": 1.0833, "angle": 7.44} ] }, - "body-fur-7": { + "body-braid": { "rotate": [ - {"angle": -1.83, "curve": 0.382, "c2": 0.58, "c3": 0.732}, {"time": 0.0667, "curve": 0.25, "c3": 0.75}, {"time": 0.1833, "angle": 21.4, "curve": 0.25, "c3": 0.75}, - {"time": 0.3333, "angle": -20.96, "curve": 0.25, "c3": 0.75}, {"time": 0.5333, "angle": 22.02, "curve": 0.25, "c3": 0.75}, {"time": 0.7333, "angle": -20.96, "curve": 0.25, "c3": 0.75}, - {"time": 0.9667, "angle": 1.24, "curve": 0.25, "c3": 0.75}, {"time": 1.1833, "angle": -7.25, "curve": 0.243, "c3": 0.654, "c4": 0.62}, {"time": 1.3333, "angle": -1.83} + {"angle": 5.07, "curve": 0.382, "c2": 0.57, "c3": 0.735}, {"time": 0.0833, "curve": 0.25, "c3": 0.75}, {"time": 0.25, "angle": 17.88, "curve": 0.25, "c3": 0.75}, + {"time": 0.4167, "curve": 0.25, "c3": 0.75}, {"time": 0.5833, "angle": 17.88, "curve": 0.25, "c3": 0.75}, {"time": 0.75, "curve": 0.25, "c3": 0.75}, + {"time": 0.9167, "angle": 17.88, "curve": 0.243, "c3": 0.649, "c4": 0.6}, {"time": 1.0833, "angle": 5.07} + ], + "translate": [ + {"x": -1.37, "y": -0.37, "curve": 0.375, "c2": 0.62, "c3": 0.716}, {"time": 0.05, "curve": 0.25, "c3": 0.75}, {"time": 0.2167, "x": -10.53, "y": -2.86, "curve": 0.25, "c3": 0.75}, + {"time": 0.3833, "curve": 0.25, "c3": 0.75}, {"time": 0.55, "x": -10.53, "y": -2.86, "curve": 0.25, "c3": 0.75}, {"time": 0.7167, "curve": 0.25, "c3": 0.75}, + {"time": 0.8833, "x": -10.53, "y": -2.86, "curve": 0.243, "c3": 0.68, "c4": 0.71}, {"time": 1.0833, "x": -1.37, "y": -0.37} ] }, - "body-fur-9": { + "@body5": { "rotate": [ - {"angle": -2.51, "curve": 0.345, "c2": 0.37, "c3": 0.682, "c4": 0.72}, {"time": 0.0333, "angle": -1.19, "curve": 0.378, "c2": 0.61, "c3": 0.721}, {"time": 0.0833}, - {"time": 0.2, "angle": 21.4, "curve": 0.25, "c3": 0.75}, {"time": 0.35, "angle": -20.96, "curve": 0.25, "c3": 0.75}, {"time": 0.55, "angle": 22.02, "curve": 0.25, "c3": 0.75}, - {"time": 0.75, "angle": -20.96, "curve": 0.25, "c3": 0.75}, {"time": 0.9833, "angle": 1.24, "curve": 0.25, "c3": 0.75}, - {"time": 1.2, "angle": -7.25, "curve": 0.245, "c3": 0.64, "c4": 0.57}, {"time": 1.3333, "angle": -2.51} + {"angle": 0.02, "curve": 0.352, "c2": 0.65, "c3": 0.687}, {"time": 0.0167, "curve": 0.25, "c3": 0.75}, {"time": 0.1833, "angle": 1.01, "curve": 0.25, "c3": 0.75}, + {"time": 0.35, "angle": -0.24, "curve": 0.25, "c3": 0.75}, {"time": 0.5167, "angle": 1.01, "curve": 0.25, "c3": 0.75}, {"time": 0.6833, "angle": -0.24, "curve": 0.25, "c3": 0.75}, + {"time": 0.85, "angle": 1.01, "curve": 0.246, "c3": 0.723, "c4": 0.88}, {"time": 1.0833, "angle": 0.02} ] } } }, - "447085734": { - "slots": { - "eyes": {"attachment": [{"time": 0.1333, "name": "eyes-shut"}, {"time": 0.2, "name": "eyes"}, {"time": 0.4667, "name": "eyes-shut"}]}, - "mouth": {"attachment": [{"time": 0.0833, "name": "mouth-open"}, {"time": 0.3333, "name": "mouth"}, {"time": 0.4167, "name": "mouth-open"}]} - }, + "1540593521": { + "slots": {"eyes": {"attachment": [{"time": 0.05, "name": "eyes-shut"}, {"time": 2.0833, "name": "eyes"}]}}, "bones": { - "@mouth": { - "translate": [ - {"time": 0.1667, "curve": 0, "c2": 0.1, "c3": 0.479, "c4": 0.56}, {"time": 0.3333, "x": -0.56, "y": 3.4, "curve": 0.408, "c2": 0.51, "c3": 0.853}, - {"time": 0.5, "x": 0.04, "y": 0.05, "curve": 0, "c2": 0.27, "c3": 0.314, "c4": 0.8}, {"time": 0.6, "x": 3.03, "y": 2.83, "curve": 0.168, "c2": 0.32, "c3": 0.551, "c4": 0.7}, - {"time": 0.7, "x": -0.51, "y": 3.39, "curve": 0.291, "c2": 0.39, "c3": 0.63, "c4": 0.75}, {"time": 0.8, "x": -3.56, "y": 0.39, "curve": 0.329, "c2": 0.61, "c3": 0.674, "c4": 0.99}, - {"time": 0.9, "x": 0.05, "y": -0.01, "curve": 0, "c2": 0.27, "c3": 0.31, "c4": 0.8}, {"time": 1.0167, "x": 3.05, "y": 2.75, "curve": 0.154, "c2": 0.33, "c3": 0.544, "c4": 0.7}, - {"time": 1.1167, "x": -0.5, "y": 3.35, "curve": 0.298, "c2": 0.38, "c3": 0.643, "c4": 0.74}, {"time": 1.2167, "x": -3.56, "y": 0.37, "curve": 0.326, "c2": 0.61, "c3": 0.671, "c4": 0.99}, - {"time": 1.3333} - ] - }, "@pivot-back": { "rotate": [ - {"curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.0667, "angle": -0.59, "curve": 0.075, "c4": 0.95}, {"time": 0.1333, "angle": 1.15, "curve": 0, "c2": 0.1, "c3": 0.85}, - {"time": 0.2167, "curve": "stepped"}, {"time": 0.3333, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.4, "angle": -0.59, "curve": 0.075, "c4": 0.95}, - {"time": 0.4667, "angle": 1.15, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.5833} + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "angle": 6, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.4833, "angle": 7, "curve": 0.317, "c3": 0.693}, + {"time": 0.55, "angle": 6.5, "curve": 0.317, "c3": 0.693}, {"time": 0.6167, "angle": 7, "curve": 0.317, "c3": 0.693}, {"time": 0.6833, "angle": 6.5, "curve": 0, "c2": 0.1, "c3": 0.85}, + {"time": 0.9167, "angle": 8, "curve": 0.317, "c3": 0.693}, {"time": 1.3333, "angle": -7, "curve": 0.461, "c3": 0.543}, {"time": 1.9167, "angle": -9, "curve": 0.154, "c4": 0.9}, + {"time": 2.1667, "angle": 3, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 2.3333} ], "translate": [ - {"y": 0.06, "curve": 0.387, "c3": 0.314}, {"time": 0.1333, "x": -13.8, "y": 0.06, "curve": 0.387, "c3": 0.314}, {"time": 0.2167, "x": 0.02, "y": 0.06, "curve": "stepped"}, - {"time": 0.3333, "x": 0.02, "y": 0.06, "curve": 0.387, "c3": 0.314}, {"time": 0.4667, "x": -13.8, "y": 0.06, "curve": 0.387, "c3": 0.314}, {"time": 0.5833, "x": 0.02, "y": 0.06} + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "x": 7, "y": 6, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.9167, "x": 11, "y": 10, "curve": 0.317, "c3": 0.693}, + {"time": 1.3333, "x": -45, "y": -14, "curve": 0.461, "c3": 0.543}, {"time": 1.9167, "x": -45, "y": -18, "curve": 0.154, "c4": 0.9}, + {"time": 2.1667, "y": 4.23, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 2.3333} ] }, "@leg-front-right": { - "rotate": [ - {"curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.0667, "angle": 10.98, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.2167, "angle": -8.78, "curve": 0.161, "c3": 0.854}, - {"time": 0.3333, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.4, "angle": 10.98, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.55, "angle": -8.78, "curve": 0.161, "c3": 0.854}, - {"time": 0.6667, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.8333, "angle": -9.85, "curve": 0.161, "c3": 0.854}, {"time": 0.9833, "angle": -6.21}, - {"time": 1.15, "angle": 2.69, "curve": 0.075, "c4": 0.95}, {"time": 1.3333} + "translate": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "x": -2.08, "y": -23.58, "curve": "stepped"}, {"time": 0.9167, "x": -2.08, "y": -23.58, "curve": 0.317, "c3": 0.693}, + {"time": 1.3333, "x": -56.51, "y": 25.21, "curve": 0.461, "c3": 0.543}, {"time": 1.9167, "x": -57.58, "y": 31.33, "curve": 0.154, "c4": 0.9}, + {"time": 2.1667, "x": -1.95, "y": -12.95, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 2.3333} ] }, "@leg-front-left": { - "rotate": [ - {"curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.0667, "angle": 10.98, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.2167, "angle": -8.78, "curve": 0.161, "c3": 0.854}, - {"time": 0.3333, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.4, "angle": 10.98, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.55, "angle": -8.78, "curve": 0.161, "c3": 0.854}, - {"time": 0.6667, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.8333, "angle": -9.84, "curve": 0.161, "c3": 0.854}, {"time": 0.9833, "angle": -6.21}, - {"time": 1.15, "angle": 2.69, "curve": 0.075, "c4": 0.95}, {"time": 1.3333} + "translate": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "x": -0.92, "y": -10.48, "curve": "stepped"}, {"time": 0.9167, "x": -0.92, "y": -10.48, "curve": 0.317, "c3": 0.693}, + {"time": 1.3333, "x": -48.7, "y": 5.49, "curve": 0.461, "c3": 0.543}, {"time": 1.9167, "x": -49.1, "y": 7.78, "curve": 0.154, "c4": 0.9}, + {"time": 2.1667, "x": -0.87, "y": -4.98, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 2.3333} ] }, "@leg-back-left": { - "rotate": [ - {"curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.0667, "angle": 10.98, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.2167, "angle": -8.78, "curve": 0.161, "c3": 0.854}, - {"time": 0.3333, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.4, "angle": 10.98, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.55, "angle": -8.78, "curve": 0.161, "c3": 0.854}, - {"time": 0.6667, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.8333, "angle": 5.93, "curve": 0.161, "c3": 0.854}, {"time": 0.9833}, - {"time": 1.15, "angle": -4.97, "curve": 0.075, "c4": 0.95}, {"time": 1.3333} + "translate": [ + {"time": 0.25}, {"time": 0.9167, "x": 0.52, "y": 4.2, "curve": 0.317, "c3": 0.693}, {"time": 1.3333, "x": -2.48, "y": -1.61, "curve": "stepped"}, + {"time": 1.9167, "x": -2.48, "y": -1.61, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 2.1667} ] }, - "@pivot-main": {"translate": [{"curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.0667, "y": 7.88, "curve": 0.078, "c4": 0.94}, {"time": 0.1333}]}, - "@pivot-center": {"translate": [{"curve": 0.387, "c3": 0.314}, {"time": 0.6667, "y": 14.05, "curve": 0.387, "c3": 0.314}, {"time": 1.3333}]}, - "@shadow": { + "leg-front-left-IK": { "translate": [ - {"curve": 0.387, "c3": 0.314}, {"time": 0.1333, "x": -23.3, "curve": 0.387, "c3": 0.314}, {"time": 0.2167, "x": -9.6, "curve": "stepped"}, - {"time": 0.3333, "x": -9.6, "curve": 0.387, "c3": 0.314}, {"time": 0.4667, "x": -23.3, "curve": 0.387, "c3": 0.314}, {"time": 0.5833} - ], - "scale": [{"curve": 0.387, "c3": 0.314}, {"time": 0.6667, "x": 0.95, "y": 0.95, "curve": 0.387, "c3": 0.314}, {"time": 1.3333}] + {"time": 0.9167, "curve": 0.317, "c3": 0.693}, {"time": 1.3333, "x": -11.56, "curve": "stepped"}, {"time": 1.9167, "x": -11.56, "curve": 0.154, "c4": 0.9}, {"time": 2.1667} + ] }, - "tail": { - "rotate": [ - {"curve": 0, "c2": 0.12, "c3": 0.348, "c4": 0.47}, {"time": 0.1, "angle": -6.85, "curve": 0.229, "c2": 0.25, "c3": 0.569, "c4": 0.6}, - {"time": 0.2, "angle": 1.43, "curve": 0.188, "c2": 0.31, "c3": 0.695}, {"time": 0.3333, "angle": 3.02, "curve": 0, "c2": 0.12, "c3": 0.347, "c4": 0.48}, - {"time": 0.4333, "angle": -6.85, "curve": 0.229, "c2": 0.25, "c3": 0.569, "c4": 0.6}, {"time": 0.5333, "angle": 1.2, "curve": 0.155, "c3": 0.85}, - {"time": 0.75, "angle": -5.95, "curve": 0.161, "c3": 0.854}, {"time": 0.95, "angle": -0.94}, {"time": 1.15, "angle": 4.91, "curve": 0.234, "c4": 0.9}, {"time": 1.3333} + "leg-front-right-IK": { + "translate": [{"time": 0.9167, "curve": 0.317, "c3": 0.693}, {"time": 1.3333, "x": -5.65, "curve": "stepped"}, {"time": 1.9167, "x": -5.65, "curve": 0.154, "c4": 0.9}, {"time": 2.1667}] + }, + "leg-back-left-IK": { + "translate": [ + {"time": 0.9167, "curve": 0.317, "c3": 0.693}, {"time": 1.3333, "x": -33.62, "curve": "stepped"}, {"time": 1.9167, "x": -33.62, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 2.1667} ] }, - "body-fur-3": { + "tail": { "rotate": [ - {"angle": -4.73, "curve": 0.36, "c2": 0.43, "c3": 0.755}, {"time": 0.1333}, {"time": 0.25, "angle": 21.4, "curve": 0.25, "c3": 0.75}, - {"time": 0.4, "angle": -20.96, "curve": 0.25, "c3": 0.75}, {"time": 0.6, "angle": 22.02, "curve": 0.25, "c3": 0.75}, {"time": 0.8, "angle": -20.96, "curve": 0.25, "c3": 0.75}, - {"time": 1.0333, "angle": 1.24, "curve": 0.25, "c3": 0.75}, {"time": 1.25, "angle": -7.25, "curve": 0.259, "c3": 0.618, "c4": 0.45}, {"time": 1.3333, "angle": -4.73} + {"curve": 0, "c2": 0.3, "c3": 0.546}, {"time": 0.25, "angle": 20.35, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.4167, "angle": 15.85, "curve": 0.317, "c3": 0.693}, + {"time": 0.4833, "angle": 17.35, "curve": 0.317, "c3": 0.693}, {"time": 0.55, "angle": 15.85, "curve": 0.317, "c3": 0.693}, {"time": 0.6167, "angle": 18.35, "curve": 0.317, "c3": 0.693}, + {"time": 0.6833, "angle": 16.85, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.9167, "angle": 18.35, "curve": 0.317, "c3": 0.693}, + {"time": 1.3333, "angle": -9.65, "curve": 0.461, "c3": 0.543}, {"time": 1.9167, "angle": -13.65, "curve": 0.154, "c4": 0.9}, + {"time": 2.1667, "angle": 10.35, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 2.3333} ] }, - "body-fur-4": { + "@body3": { "rotate": [ - {"angle": -6.62, "curve": 0.293, "c2": 0.2, "c3": 0.685, "c4": 0.73}, {"time": 0.1333, "angle": -1.19, "curve": 0.378, "c2": 0.61, "c3": 0.721}, {"time": 0.1833}, - {"time": 0.3, "angle": 21.4, "curve": 0.25, "c3": 0.75}, {"time": 0.45, "angle": -20.96, "curve": 0.25, "c3": 0.75}, {"time": 0.65, "angle": 22.02, "curve": 0.25, "c3": 0.75}, - {"time": 0.85, "angle": -20.96, "curve": 0.25, "c3": 0.75}, {"time": 1.0833, "angle": 1.24, "curve": 0.25, "c3": 0.75}, - {"time": 1.3, "angle": -7.25, "curve": 0.293, "c3": 0.631, "c4": 0.37}, {"time": 1.3333, "angle": -6.62} + {"angle": 0.99, "curve": 0.378, "c2": 0.61, "c3": 0.721}, {"time": 0.05, "curve": 0.25, "c3": 0.75}, {"time": 0.2333, "angle": 0.15, "curve": 0.25, "c3": 0.75}, + {"time": 0.4333, "angle": -6.92, "curve": 0.25, "c3": 0.75}, {"time": 0.6, "angle": 1.47, "curve": 0.25, "c3": 0.75}, {"time": 0.7333, "angle": -7.5, "curve": 0.25, "c3": 0.75}, + {"time": 0.8667, "angle": 1.76, "curve": 0.25, "c3": 0.75}, {"time": 1.0333, "angle": -7.9, "curve": 0.25, "c3": 0.292}, {"time": 1.3167, "angle": -19.85, "curve": 0.25, "c3": 0.75}, + {"time": 1.6333, "angle": -8.41, "curve": 0.25, "c3": 0.75}, {"time": 1.8833, "angle": -14.81, "curve": 0.25, "c3": 0.75}, + {"time": 2.1667, "angle": 0.94, "curve": 0.242, "c3": 0.671, "c4": 0.68}, {"time": 2.3333, "angle": 0.99} + ], + "translate": [ + {"curve": 0.25, "c3": 0.75}, {"time": 0.1833, "x": -11.72, "y": -2.34, "curve": 0.25, "c3": 0.75}, {"time": 0.3833, "x": 23.59, "y": 3.86, "curve": 0.25, "c3": 0.75}, + {"time": 0.55, "x": -11.72, "y": -2.34, "curve": 0.25, "c3": 0.75}, {"time": 0.6833, "x": 23.59, "y": 3.86, "curve": 0.25, "c3": 0.75}, + {"time": 0.8167, "x": -11.72, "y": -2.34, "curve": 0.25, "c3": 0.75}, {"time": 0.9833, "x": 23.59, "y": 3.86, "curve": 0.25, "c3": 0.75}, + {"time": 1.05, "x": -11.72, "y": -2.34, "curve": 0.25, "c3": 0.292}, {"time": 1.2667, "x": 23.59, "y": 3.86, "curve": 0.25, "c3": 0.75}, {"time": 1.5833, "curve": 0.25, "c3": 0.75}, + {"time": 1.8333, "x": 19.59, "y": 15.95, "curve": 0.25, "c3": 0.75}, {"time": 2.1167, "x": -1.4, "y": 12.66, "curve": 0.25, "c3": 0.75}, {"time": 2.3333} ] }, - "body-fur-2": { + "@body4": { "rotate": [ - {"angle": -4.7, "curve": 0.336, "c2": 0.34, "c3": 0.691, "c4": 0.74}, {"time": 0.0833, "angle": -1.19, "curve": 0.378, "c2": 0.61, "c3": 0.721}, {"time": 0.1333}, - {"time": 0.25, "angle": 21.4, "curve": 0.25, "c3": 0.75}, {"time": 0.4, "angle": -20.96, "curve": 0.25, "c3": 0.75}, {"time": 0.6, "angle": 22.02, "curve": 0.25, "c3": 0.75}, - {"time": 0.8, "angle": -20.96, "curve": 0.25, "c3": 0.75}, {"time": 1.0333, "angle": 1.24, "curve": 0.25, "c3": 0.75}, - {"time": 1.25, "angle": -7.25, "curve": 0.259, "c3": 0.618, "c4": 0.45}, {"time": 1.3333, "angle": -4.7} + {"angle": -0.84, "curve": 0.36, "c2": 0.43, "c3": 0.755}, {"time": 0.1333, "curve": 0.25, "c3": 0.75}, {"time": 0.3167, "angle": -0.23, "curve": 0.25, "c3": 0.75}, + {"time": 0.5167, "angle": -6.95, "curve": 0.25, "c3": 0.75}, {"time": 0.6833, "angle": 1.08, "curve": 0.25, "c3": 0.75}, {"time": 0.8167, "angle": -7.52, "curve": 0.25, "c3": 0.75}, + {"time": 1, "angle": 1.38, "curve": "stepped"}, {"time": 1.1333, "angle": 1.38, "curve": 0.389, "c3": 0.684, "c4": 0.41}, + {"time": 1.2167, "angle": 4.16, "curve": 0.177, "c2": 0.37, "c3": 0.384}, {"time": 1.3167, "angle": 7.84, "curve": 0.25, "c3": 0.75}, + {"time": 1.4667, "angle": -0.77, "curve": 0.25, "c3": 0.75}, {"time": 1.6333, "angle": 11.84, "curve": 0.25, "c3": 0.75}, {"time": 1.8167, "angle": 7.84, "curve": 0.25, "c3": 0.75}, + {"time": 1.95, "angle": -0.77, "curve": 0.25, "c3": 0.75}, {"time": 2.1333, "angle": 11.84, "curve": 0.25, "c3": 0.75}, {"time": 2.3333, "angle": -0.84} + ], + "translate": [ + {"x": 6.51, "y": 0.72, "curve": 0.378, "c2": 0.52, "c3": 0.747}, {"time": 0.1, "curve": 0.25, "c3": 0.75}, {"time": 0.2833, "x": 1.95, "y": -9.77, "curve": 0.25, "c3": 0.75}, + {"time": 0.4833, "x": 13.76, "y": 2.25, "curve": 0.25, "c3": 0.75}, {"time": 0.65, "x": 1.95, "y": -9.77, "curve": 0.25, "c3": 0.75}, + {"time": 0.7833, "x": 13.76, "y": 2.25, "curve": 0.25, "c3": 0.75}, {"time": 0.9667, "x": 1.95, "y": -9.77, "curve": "stepped"}, + {"time": 1.0333, "x": 1.95, "y": -9.77, "curve": 0.296, "c3": 0.633, "c4": 0.37}, {"time": 1.2167, "x": 2.47, "y": -9.66, "curve": 0.318, "c2": 0.27, "c3": 0.653, "c4": 0.61}, + {"time": 1.2833, "x": 3.11, "y": -9.52, "curve": 0.309, "c2": 0.26, "c3": 0.676, "c4": 0.7}, {"time": 1.6, "x": 7.2, "y": -8.07, "curve": 0.382, "c2": 0.58, "c3": 0.731}, + {"time": 1.7667, "x": 3.11, "y": -9.52, "curve": 0.309, "c2": 0.26, "c3": 0.676, "c4": 0.7}, {"time": 2.0667, "x": 7.2, "y": -8.07, "curve": 0.382, "c2": 0.58, "c3": 0.731}, + {"time": 2.3333, "x": 6.51, "y": 0.72} ] }, - "body-fur-5": { + "@body6": { "rotate": [ - {"angle": -3.26, "curve": 0.378, "c2": 0.52, "c3": 0.747}, {"time": 0.1}, {"time": 0.2167, "angle": 21.4, "curve": 0.25, "c3": 0.75}, - {"time": 0.3667, "angle": -20.96, "curve": 0.25, "c3": 0.75}, {"time": 0.5667, "angle": 22.02, "curve": 0.25, "c3": 0.75}, {"time": 0.7667, "angle": -20.96, "curve": 0.25, "c3": 0.75}, - {"time": 1, "angle": 1.24, "curve": 0.25, "c3": 0.75}, {"time": 1.2167, "angle": -7.25, "curve": 0.248, "c3": 0.629, "c4": 0.52}, {"time": 1.3333, "angle": -3.26} + {"angle": -1.53, "curve": 0.346, "c2": 0.38, "c3": 0.757}, {"time": 0.15, "curve": 0.25, "c3": 0.75}, {"time": 0.3333, "angle": 8.64, "curve": 0.25, "c3": 0.75}, + {"time": 0.5333, "angle": 0.85, "curve": 0.25, "c3": 0.75}, {"time": 0.7, "angle": 9.96, "curve": 0.25, "c3": 0.75}, {"time": 0.8333, "angle": 0.28, "curve": 0.25, "c3": 0.75}, + {"time": 1.0167, "angle": 10.25, "curve": 0.25, "c3": 0.292}, {"time": 1.2167, "angle": 2.8, "curve": 0.25, "c3": 0.292}, {"time": 1.3667, "angle": 5.4, "curve": 0.25, "c3": 0.75}, + {"time": 1.5333, "angle": -4.59, "curve": 0.25, "c3": 0.75}, {"time": 1.7, "angle": 9.56, "curve": 0.25, "c3": 0.75}, {"time": 1.8667, "angle": 5.4, "curve": 0.25, "c3": 0.75}, + {"time": 2.0167, "angle": -4.59, "curve": 0.25, "c3": 0.75}, {"time": 2.2167, "angle": 9.56, "curve": 0.25, "c3": 0.75}, {"time": 2.3333, "angle": -1.53} + ], + "translate": [ + {"x": 1.25, "y": -0.8, "curve": 0.378, "c2": 0.61, "c3": 0.721}, {"time": 0.05, "curve": 0.25, "c3": 0.75}, {"time": 0.2333, "x": -7.07, "y": 3.68, "curve": 0.25, "c3": 0.75}, + {"time": 0.4333, "curve": 0.25, "c3": 0.75}, {"time": 0.6, "x": -7.07, "y": 3.68, "curve": 0.25, "c3": 0.75}, {"time": 0.7333, "curve": 0.25, "c3": 0.75}, + {"time": 0.8667, "x": -7.07, "y": 3.68, "curve": 0.25, "c3": 0.75}, {"time": 1.0333, "curve": "stepped"}, {"time": 1.0667, "curve": 0.357, "c3": 0.687, "c4": 0.35}, + {"time": 1.2167, "x": -11.04, "y": 5.26, "curve": 0.353, "c2": 0.21, "c3": 0.678, "c4": 0.56}, + {"time": 1.3333, "x": -1.03, "y": 0.34, "curve": 0.256, "c2": 0.26, "c3": 0.506, "c4": 0.7}, {"time": 1.6333, "x": -4.56, "y": 1.66, "curve": 0.241, "c2": 0.58, "c3": 0.558}, + {"time": 1.8333, "x": -1.03, "y": 0.34, "curve": 0.256, "c2": 0.26, "c3": 0.506, "c4": 0.7}, {"time": 2.0667, "x": -4.56, "y": 1.66, "curve": 0.241, "c2": 0.58, "c3": 0.558}, + {"time": 2.3333, "x": 1.25, "y": -0.8} ] }, - "body-fur-7": { + "body-braid2": { "rotate": [ - {"angle": -1.83, "curve": 0.382, "c2": 0.58, "c3": 0.732}, {"time": 0.0667, "curve": 0.25, "c3": 0.75}, {"time": 0.1833, "angle": 21.4, "curve": 0.25, "c3": 0.75}, - {"time": 0.3333, "angle": -20.96, "curve": 0.25, "c3": 0.75}, {"time": 0.5333, "angle": 22.02, "curve": 0.25, "c3": 0.75}, {"time": 0.7333, "angle": -20.96, "curve": 0.25, "c3": 0.75}, - {"time": 0.9667, "angle": 1.24, "curve": 0.25, "c3": 0.75}, {"time": 1.1833, "angle": -7.25, "curve": 0.243, "c3": 0.654, "c4": 0.62}, {"time": 1.3333, "angle": -1.83} + {"angle": 2.61, "curve": 0.382, "c2": 0.58, "c3": 0.731}, {"time": 0.05, "curve": 0.25, "c3": 0.75}, {"time": 0.2833, "angle": 6.21, "curve": 0.25, "c3": 0.75}, + {"time": 0.4833, "angle": 2.15, "curve": 0.25, "c3": 0.75}, {"time": 0.65, "angle": 7.53, "curve": 0.25, "c3": 0.75}, {"time": 0.7833, "angle": 1.57, "curve": 0.25, "c3": 0.75}, + {"time": 0.9167, "angle": 7.82, "curve": 0.25, "c3": 0.75}, {"time": 1.0333, "angle": 1.18, "curve": 0.25, "c3": 0.75}, {"time": 1.45, "angle": 15.91, "curve": 0.25, "c3": 0.75}, + {"time": 1.6833, "angle": 17.34, "curve": 0.25, "c3": 0.75}, {"time": 1.9333, "angle": -1.39, "curve": 0.25, "c3": 0.75}, + {"time": 2.2167, "angle": 10.79, "curve": 0.243, "c3": 0.655, "c4": 0.63}, {"time": 2.3333, "angle": 2.61} ] }, - "body-fur-8": { + "body-braid4": { "rotate": [ - {"angle": -0.62, "curve": 0.369, "c2": 0.63, "c3": 0.707}, {"time": 0.0333}, {"time": 0.15, "angle": 21.4, "curve": 0.25, "c3": 0.75}, - {"time": 0.3, "angle": -20.96, "curve": 0.25, "c3": 0.75}, {"time": 0.5, "angle": 22.02, "curve": 0.25, "c3": 0.75}, {"time": 0.7, "angle": -20.96, "curve": 0.25, "c3": 0.75}, - {"time": 0.9333, "angle": 1.24, "curve": 0.25, "c3": 0.75}, {"time": 1.15, "angle": -7.25, "curve": 0.244, "c3": 0.693, "c4": 0.76}, {"time": 1.3333, "angle": -0.62} + {"angle": 9.57, "curve": 0.363, "c2": 0.64, "c3": 0.699}, {"time": 0.0333, "angle": 10.23, "curve": 0.25, "c3": 0.75}, {"time": 0.2, "curve": 0.25, "c3": 0.75}, + {"time": 0.4333, "angle": 14.22, "curve": 0.25, "c3": 0.75}, {"time": 0.6333, "angle": 2.15, "curve": 0.25, "c3": 0.75}, {"time": 0.8, "angle": 15.53, "curve": 0.25, "c3": 0.75}, + {"time": 0.9333, "angle": 1.57, "curve": 0.25, "c3": 0.75}, {"time": 1.0667, "angle": 15.82, "curve": 0.25, "c3": 0.75}, {"time": 1.4333, "angle": 23.68, "curve": 0.25, "c3": 0.75}, + {"time": 1.6, "angle": -1.13, "curve": 0.25, "c3": 0.75}, {"time": 1.8333, "angle": 16.77, "curve": 0.25, "c3": 0.75}, + {"time": 2.0833, "angle": -1.39, "curve": 0.245, "c3": 0.705, "c4": 0.81}, {"time": 2.3333, "angle": 9.57} ] }, - "body-fur-9": { + "body-braid3": { "rotate": [ - {"angle": -2.51, "curve": 0.345, "c2": 0.37, "c3": 0.682, "c4": 0.72}, {"time": 0.0333, "angle": -1.19, "curve": 0.378, "c2": 0.61, "c3": 0.721}, {"time": 0.0833}, - {"time": 0.2, "angle": 21.4, "curve": 0.25, "c3": 0.75}, {"time": 0.35, "angle": -20.96, "curve": 0.25, "c3": 0.75}, {"time": 0.55, "angle": 22.02, "curve": 0.25, "c3": 0.75}, - {"time": 0.75, "angle": -20.96, "curve": 0.25, "c3": 0.75}, {"time": 0.9833, "angle": 1.24, "curve": 0.25, "c3": 0.75}, - {"time": 1.2, "angle": -7.25, "curve": 0.245, "c3": 0.64, "c4": 0.57}, {"time": 1.3333, "angle": -2.51} + {"angle": 9.98, "curve": 0.345, "c2": 0.37, "c3": 0.757}, {"time": 0.1167, "curve": 0.25, "c3": 0.75}, {"time": 0.35, "angle": 17.16, "curve": 0.25, "c3": 0.75}, + {"time": 0.55, "angle": 2.15, "curve": 0.25, "c3": 0.75}, {"time": 0.7167, "angle": 18.48, "curve": 0.25, "c3": 0.75}, {"time": 0.85, "angle": 1.57, "curve": 0.25, "c3": 0.75}, + {"time": 0.9833, "angle": 18.77, "curve": 0.25, "c3": 0.75}, {"time": 1.35, "angle": 22.56, "curve": 0.25, "c3": 0.75}, {"time": 1.5167, "angle": -1.13, "curve": 0.25, "c3": 0.75}, + {"time": 1.75, "angle": 19.72, "curve": 0.25, "c3": 0.75}, {"time": 2, "angle": -1.39, "curve": 0.25, "c3": 0.75}, + {"time": 2.2833, "angle": 13.17, "curve": 0.269, "c3": 0.618, "c4": 0.42}, {"time": 2.3333, "angle": 9.98} ] }, - "body-fur-1": { + "@body2": { "rotate": [ - {"angle": -2.52, "curve": 0.382, "c2": 0.55, "c3": 0.741}, {"time": 0.0833}, {"time": 0.2, "angle": 21.4, "curve": 0.25, "c3": 0.75}, - {"time": 0.35, "angle": -20.96, "curve": 0.25, "c3": 0.75}, {"time": 0.55, "angle": 22.02, "curve": 0.25, "c3": 0.75}, {"time": 0.75, "angle": -20.96, "curve": 0.25, "c3": 0.75}, - {"time": 0.9833, "angle": 1.24, "curve": 0.25, "c3": 0.75}, {"time": 1.2, "angle": -7.25, "curve": 0.245, "c3": 0.64, "c4": 0.57}, {"time": 1.3333, "angle": -2.52} + {"angle": 2.1, "curve": 0.382, "c2": 0.55, "c3": 0.741}, {"time": 0.0833, "curve": 0.25, "c3": 0.75}, {"time": 0.2667, "angle": 6.03, "curve": 0.25, "c3": 0.75}, + {"time": 0.4667, "angle": -0.9, "curve": 0.25, "c3": 0.75}, {"time": 0.6333, "angle": 7.34, "curve": 0.25, "c3": 0.75}, {"time": 0.7667, "angle": -1.48, "curve": 0.25, "c3": 0.75}, + {"time": 0.95, "angle": 7.64, "curve": 0.25, "c3": 0.75}, {"time": 1.0667, "angle": -1.88, "curve": 0.25, "c3": 0.292}, {"time": 1.35, "angle": -6.65, "curve": 0.25, "c3": 0.75}, + {"time": 1.6667, "curve": 0.25, "c3": 0.75}, {"time": 1.9167, "angle": -10.19, "curve": 0.25, "c3": 0.75}, {"time": 2.2, "angle": 6.05, "curve": 0.245, "c3": 0.64, "c4": 0.57}, + {"time": 2.3333, "angle": 2.1} + ], + "translate": [ + {"time": 0.0333, "curve": 0.25, "c3": 0.75}, {"time": 0.2167, "x": -7.81, "y": -1.56, "curve": 0.25, "c3": 0.75}, {"time": 0.4167, "x": 13.76, "y": 2.25, "curve": 0.25, "c3": 0.75}, + {"time": 0.5833, "x": -7.81, "y": -1.56, "curve": 0.25, "c3": 0.75}, {"time": 0.7167, "x": 13.76, "y": 2.25, "curve": 0.25, "c3": 0.75}, + {"time": 0.85, "x": -7.81, "y": -1.56, "curve": 0.25, "c3": 0.75}, {"time": 1.0167, "x": 13.76, "y": 2.25, "curve": 0.25, "c3": 0.292}, + {"time": 1.3, "x": -9.88, "y": 23.87, "curve": 0.25, "c3": 0.75}, {"time": 1.6167, "x": -10.31, "y": 32.99, "curve": 0.25, "c3": 0.75}, + {"time": 1.8667, "x": -13.77, "y": 33.39, "curve": 0.25, "c3": 0.75}, {"time": 2.15} ] }, - "body-fur-6": { + "body-braid6": { "rotate": [ - {"angle": -5.41, "curve": 0.325, "c2": 0.31, "c3": 0.691, "c4": 0.74}, {"time": 0.1, "angle": -1.19, "curve": 0.378, "c2": 0.61, "c3": 0.721}, {"time": 0.15}, - {"time": 0.2667, "angle": 21.4, "curve": 0.25, "c3": 0.75}, {"time": 0.4167, "angle": -20.96, "curve": 0.25, "c3": 0.75}, {"time": 0.6167, "angle": 22.02, "curve": 0.25, "c3": 0.75}, - {"time": 0.8167, "angle": -20.96, "curve": 0.25, "c3": 0.75}, {"time": 1.05, "angle": 1.24, "curve": 0.25, "c3": 0.75}, - {"time": 1.2667, "angle": -7.25, "curve": 0.268, "c3": 0.618, "c4": 0.42}, {"time": 1.3333, "angle": -5.41} + {"angle": -2.86, "curve": 0.382, "c2": 0.59, "c3": 0.73}, {"time": 0.0833, "angle": -3.32, "curve": 0.25, "c3": 0.75}, {"time": 0.25, "curve": 0.25, "c3": 0.75}, + {"time": 0.4833, "angle": 0.67, "curve": 0.25, "c3": 0.75}, {"time": 0.6833, "angle": 2.15, "curve": 0.25, "c3": 0.75}, {"time": 0.85, "angle": 1.99, "curve": 0.25, "c3": 0.75}, + {"time": 0.9833, "angle": 1.57, "curve": 0.25, "c3": 0.75}, {"time": 1.3667, "angle": 1.18, "curve": 0.25, "c3": 0.75}, {"time": 1.4833, "angle": 3.23, "curve": 0.25, "c3": 0.75}, + {"time": 1.65, "angle": -1.13, "curve": 0.25, "c3": 0.75}, {"time": 1.8833, "angle": 3.23, "curve": 0.25, "c3": 0.75}, + {"time": 2.1333, "angle": -1.39, "curve": 0.243, "c3": 0.657, "c4": 0.63}, {"time": 2.3333, "angle": -2.86} + ] + }, + "body-braid5": { + "rotate": [ + {"angle": 9.34, "curve": 0.25, "c3": 0.75}, {"time": 0.1667, "curve": 0.25, "c3": 0.75}, {"time": 0.4, "angle": 7.83, "curve": 0.25, "c3": 0.75}, + {"time": 0.6, "angle": 2.15, "curve": 0.25, "c3": 0.75}, {"time": 0.7667, "angle": 14.56, "curve": 0.25, "c3": 0.75}, {"time": 0.9, "angle": 1.57, "curve": 0.25, "c3": 0.75}, + {"time": 1.0333, "angle": 20.86, "curve": 0.25, "c3": 0.75}, {"time": 1.4, "angle": 27.56, "curve": 0.25, "c3": 0.75}, {"time": 1.5667, "angle": -1.13, "curve": 0.25, "c3": 0.75}, + {"time": 1.8, "angle": 24.05, "curve": 0.25, "c3": 0.75}, {"time": 2.05, "angle": -1.39, "curve": 0.25, "c3": 0.75}, {"time": 2.3333, "angle": 9.34} + ] + }, + "body-braid": { + "rotate": [ + {"angle": 14.95, "curve": 0.363, "c2": 0.44, "c3": 0.755}, {"time": 0.1, "angle": 8.22, "curve": 0.25, "c3": 0.75}, {"time": 0.3333, "angle": 8.74, "curve": 0.25, "c3": 0.75}, + {"time": 0.5333, "angle": 2.15, "curve": 0.25, "c3": 0.75}, {"time": 0.7, "angle": 10.31, "curve": 0.25, "c3": 0.75}, {"time": 0.8333, "angle": 7.31, "curve": 0.25, "c3": 0.75}, + {"time": 0.9667, "angle": 16.93, "curve": 0.25, "c3": 0.75}, {"time": 1.3333, "angle": 26.94, "curve": 0.25, "c3": 0.75}, {"time": 1.5, "angle": 18.83, "curve": 0.25, "c3": 0.75}, + {"time": 1.7333, "angle": 30.2, "curve": 0.25, "c3": 0.75}, {"time": 1.9833, "angle": -1.39, "curve": 0.25, "c3": 0.75}, + {"time": 2.2667, "angle": 23.66, "curve": 0.258, "c3": 0.619, "c4": 0.45}, {"time": 2.3333, "angle": 14.95} ] } } }, - "629069415": { - "slots": {"eyes": {"attachment": [{"time": 0.0167, "name": "eyes-angry"}, {"time": 0.6333, "name": "eyes-shut"}, {"time": 0.7, "name": "eyes-angry"}, {"time": 1.2833, "name": "eyes"}]}}, + "1912966198": { + "slots": { + "eyes": {"attachment": [{"time": 0.3, "name": "eyes-angry"}, {"time": 1.2333, "name": "eyes"}]}, + "mouth": {"attachment": [{"time": 0.3, "name": "mouth-bite"}, {"time": 1.2333, "name": "mouth"}]} + }, "bones": { "@pivot-back": { "rotate": [ - {"curve": 0.302, "c4": 0.8}, {"time": 0.1667, "angle": -5.15, "curve": 0, "c2": 0.2, "c3": 0.692}, {"time": 0.3333, "angle": 4.71, "curve": 0, "c2": 0.1, "c3": 0.853}, - {"time": 0.5, "angle": -2.3, "curve": 0.308, "c3": 0.692}, {"time": 0.6667, "angle": 2.84, "curve": 0.314, "c3": 0.701}, - {"time": 0.9167, "angle": -3.66, "curve": 0, "c2": 0.1, "c3": 0.845}, {"time": 1.0833, "angle": -0.77, "curve": 0.311, "c4": 0.8}, {"time": 1.25} + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1, "angle": 6, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.2, "angle": -6, "curve": 0.315, "c4": 0.8}, + {"time": 0.3, "angle": 5.5, "curve": 0.317, "c3": 0.693}, {"time": 0.3833, "angle": 4.5, "curve": 0.317, "c3": 0.693}, {"time": 0.4667, "angle": 5.5, "curve": 0.317, "c3": 0.693}, + {"time": 0.55, "angle": 4.5, "curve": 0.317, "c3": 0.693}, {"time": 0.6333, "angle": 5.5, "curve": 0.317, "c3": 0.693}, {"time": 0.7167, "angle": 4.5, "curve": 0.317, "c3": 0.693}, + {"time": 0.8, "angle": 5.5, "curve": 0.317, "c3": 0.693}, {"time": 0.8833, "angle": 4.5, "curve": 0.317, "c3": 0.693}, {"time": 0.9667, "angle": 5.5, "curve": 0.317, "c3": 0.693}, + {"time": 1.05, "angle": 4.5, "curve": 0.317, "c3": 0.693}, {"time": 1.1333, "angle": 5.5, "curve": 0.317, "c3": 0.693}, {"time": 1.2167, "angle": 6, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 1.3167, "angle": -3, "curve": 0.315, "c4": 0.8}, {"time": 1.4167} ], "translate": [ - {"curve": 0.308, "c4": 0.79}, {"time": 0.25, "x": -74.35, "y": -25.83, "curve": 0, "c2": 0.3, "c3": 0.537}, {"time": 0.4167, "x": -74.35, "y": 55.38, "curve": 0, "c2": 0.1, "c3": 0.853}, - {"time": 0.5833, "x": 103.85, "y": -14.97, "curve": 0.308, "c3": 0.692}, {"time": 0.75, "x": 103.82, "y": 55.43, "curve": 0.314, "c3": 0.701}, - {"time": 1, "x": -40.96, "y": -15.97, "curve": 0.314, "c3": 0.701}, {"time": 1.1667, "x": -40.96, "y": 0.03, "curve": 0, "c2": 0.05, "c3": 0.933}, {"time": 1.3333} - ] - }, - "@leg-front-right": { - "rotate": [ - {"curve": 0.307, "c4": 0.8}, {"time": 0.1667, "angle": 13.08, "curve": 0.302, "c3": 0.695}, {"time": 0.4167, "angle": -24.68, "curve": "stepped"}, - {"time": 0.5833, "angle": -24.68, "curve": 0, "c2": 0.2, "c3": 0.689}, {"time": 0.75, "angle": 8.39, "curve": "stepped"}, {"time": 0.9167, "angle": 8.39, "curve": 0.308, "c4": 0.8}, - {"time": 1.1667, "angle": -16.49, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 1.3333, "angle": -30.3} + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1, "y": 4.69, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.2, "y": 43.73, "curve": 0.315, "c4": 0.8}, + {"time": 0.3, "y": 3.84, "curve": "stepped"}, {"time": 1.2167, "y": 3.84, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1.3167, "y": 43.73, "curve": 0.315, "c4": 0.8}, {"time": 1.4167} ] }, "@leg-front-left": { - "rotate": [ - {"curve": 0.307, "c4": 0.8}, {"time": 0.1667, "angle": 13.08, "curve": 0.302, "c3": 0.695}, {"time": 0.4167, "angle": -24.68, "curve": "stepped"}, - {"time": 0.5833, "angle": -24.68, "curve": 0, "c2": 0.2, "c3": 0.689}, {"time": 0.75, "angle": 8.39, "curve": "stepped"}, {"time": 0.9167, "angle": 8.39, "curve": 0.308, "c4": 0.8}, - {"time": 1.1667, "angle": -16.49, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 1.3333, "angle": 20.14} + "translate": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1, "x": -1.28, "y": -14.48, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.2, "curve": 0.315, "c4": 0.8}, + {"time": 0.3, "x": -0.86, "y": -9.28, "curve": 0.317, "c3": 0.693}, {"time": 0.3833, "x": -4.55, "y": -7.13, "curve": 0.317, "c3": 0.693}, + {"time": 0.4667, "x": -0.86, "y": -9.28, "curve": 0.317, "c3": 0.693}, {"time": 0.55, "x": -4.55, "y": -7.13, "curve": 0.317, "c3": 0.693}, + {"time": 0.6333, "x": -0.86, "y": -9.28, "curve": 0.317, "c3": 0.693}, {"time": 0.7167, "x": -4.55, "y": -7.13, "curve": 0.317, "c3": 0.693}, + {"time": 0.8, "x": -0.86, "y": -9.28, "curve": 0.317, "c3": 0.693}, {"time": 0.8833, "x": -4.55, "y": -7.13, "curve": 0.317, "c3": 0.693}, + {"time": 0.9667, "x": -0.86, "y": -9.28, "curve": 0.317, "c3": 0.693}, {"time": 1.05, "x": -4.55, "y": -7.13, "curve": 0.317, "c3": 0.693}, + {"time": 1.1333, "x": -0.86, "y": -9.28, "curve": 0.317, "c3": 0.693}, {"time": 1.2167, "x": -4.55, "y": -7.13, "curve": 0.317, "c3": 0.693}, {"time": 1.3167} ] }, - "@leg-back-left": { - "rotate": [ - {"curve": 0.307, "c4": 0.8}, {"time": 0.1667, "angle": 13.08}, {"time": 0.3333, "angle": -13.36}, {"time": 0.75, "angle": 11.05, "curve": "stepped"}, - {"time": 0.9167, "angle": 11.05, "curve": 0.308, "c4": 0.8}, {"time": 1.1667, "angle": -13.83, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 1.3333, "angle": -11.75} + "@leg-front-right": { + "translate": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1, "x": -2.46, "y": -27.93, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.2, "curve": 0.315, "c4": 0.8}, + {"time": 0.3, "x": -2.46, "y": -27.93, "curve": 0.317, "c3": 0.693}, {"time": 0.3833, "x": -2.06, "y": -21.45, "curve": 0.317, "c3": 0.693}, + {"time": 0.4667, "x": -2.44, "y": -26.54, "curve": 0.317, "c3": 0.693}, {"time": 0.55, "x": -2.06, "y": -21.45, "curve": 0.317, "c3": 0.693}, + {"time": 0.6333, "x": -2.44, "y": -26.54, "curve": 0.317, "c3": 0.693}, {"time": 0.7167, "x": -2.06, "y": -21.45, "curve": 0.317, "c3": 0.693}, + {"time": 0.8, "x": -2.44, "y": -26.54, "curve": 0.317, "c3": 0.693}, {"time": 0.8833, "x": -2.06, "y": -21.45, "curve": 0.317, "c3": 0.693}, + {"time": 0.9667, "x": -2.44, "y": -26.54, "curve": 0.317, "c3": 0.693}, {"time": 1.05, "x": -2.06, "y": -21.45, "curve": 0.317, "c3": 0.693}, + {"time": 1.1333, "x": -2.44, "y": -26.54, "curve": 0.317, "c3": 0.693}, {"time": 1.2167, "x": -2.46, "y": -27.93, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1.3167} ] }, - "tail": { - "rotate": [ - {"curve": 0, "c2": 0.2, "c3": 0.698}, {"time": 0.1667, "angle": -6, "curve": 0.305, "c3": 0.698}, {"time": 0.25, "angle": 1.14, "curve": 0.301, "c3": 0.698}, - {"time": 0.4167, "angle": -8.39, "curve": 0, "c2": 0.2, "c3": 0.698}, {"time": 0.5833, "angle": 0.59, "curve": 0.305, "c3": 0.698}, - {"time": 0.75, "angle": -10.53, "curve": 0, "c2": 0.2, "c3": 0.692}, {"time": 1, "angle": -2.29, "curve": 0.302, "c3": 0.692}, - {"time": 1.1667, "angle": -9.12, "curve": 0, "c2": 0.1, "c3": 0.844}, {"time": 1.3333} + "@pivot-main": { + "translate": [ + {"time": 0.1, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.3, "x": -154.22, "curve": "stepped"}, {"time": 1.2167, "x": -154.22, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 1.4167} ] }, - "back": { - "rotate": [ - {"curve": 0, "c2": 0.2, "c3": 0.698}, {"time": 0.1667, "angle": -1.84, "curve": 0.305, "c3": 0.698}, {"time": 0.25, "angle": 3, "curve": 0.301, "c3": 0.698}, - {"time": 0.4167, "angle": 0.04, "curve": 0, "c2": 0.2, "c3": 0.698}, {"time": 0.5833, "angle": 4.01, "curve": 0.305, "c3": 0.698}, - {"time": 0.75, "angle": 0.76, "curve": 0, "c2": 0.2, "c3": 0.692}, {"time": 1, "angle": 4.04, "curve": 0.302, "c3": 0.692}, - {"time": 1.1667, "angle": 1.6, "curve": 0, "c2": 0.1, "c3": 0.844}, {"time": 1.3333} + "leg-front-left-IK": { + "translate": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3, "x": 27.41, "curve": "stepped"}, {"time": 1.2167, "x": 27.41, "curve": 0.306, "c4": 0.8}, + {"time": 1.3167, "x": -61.13, "curve": 0.315, "c4": 0.8}, {"time": 1.4167} ] }, + "leg-front-right-IK": {"translate": [{"time": 1.2167, "curve": 0.315, "c4": 0.8}, {"time": 1.3167, "x": -61.13, "curve": 0.315, "c4": 0.8}, {"time": 1.4167}]}, "@shadow": { "translate": [ - {"curve": 0.315, "c4": 0.8}, {"time": 0.25, "x": -83.7, "curve": 0, "c2": 0.3, "c3": 0.535}, {"time": 0.4167, "x": -83.9, "curve": 0, "c2": 0.1, "c3": 0.85}, - {"time": 0.5833, "x": 94.25, "curve": 0.309, "c3": 0.691}, {"time": 0.75, "x": 94.33, "curve": 0.309, "c3": 0.691}, {"time": 1, "x": -50.6, "curve": "stepped"}, - {"time": 1.1667, "x": -50.6, "curve": 0.082, "c3": 0.928}, {"time": 1.3333} + {"time": 0.1, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.3, "x": -162.84, "curve": "stepped"}, {"time": 1.2167, "x": -162.84, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 1.4167} ], "scale": [ - {"curve": 0.315, "c4": 0.8}, {"time": 0.25, "x": 1.04, "y": 1.04, "curve": 0, "c2": 0.3, "c3": 0.535}, {"time": 0.4167, "x": 0.95, "y": 0.95, "curve": 0, "c2": 0.1, "c3": 0.85}, - {"time": 0.5833, "x": 1.08, "y": 1.08, "curve": 0.309, "c3": 0.691}, {"time": 0.75, "x": 0.96, "y": 0.96, "curve": 0.309, "c3": 0.691}, - {"time": 1, "x": 1.08, "y": 1.08, "curve": 0.309, "c3": 0.691}, {"time": 1.1667, "x": 1.04, "y": 1.04, "curve": 0.082, "c3": 0.928}, {"time": 1.3333} + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1, "x": 1.1, "y": 1.1, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.2, "x": 0.92, "y": 0.92, "curve": 0.315, "c4": 0.8}, + {"time": 0.3, "x": 1.1, "y": 1.1, "curve": 0.317, "c3": 0.693}, {"time": 0.3833, "x": 1.06, "y": 1.06, "curve": 0.317, "c3": 0.693}, + {"time": 0.4667, "x": 1.1, "y": 1.1, "curve": 0.317, "c3": 0.693}, {"time": 0.55, "x": 1.06, "y": 1.06, "curve": 0.317, "c3": 0.693}, + {"time": 0.6333, "x": 1.1, "y": 1.1, "curve": 0.317, "c3": 0.693}, {"time": 0.7167, "x": 1.06, "y": 1.06, "curve": 0.317, "c3": 0.693}, + {"time": 0.8, "x": 1.1, "y": 1.1, "curve": 0.317, "c3": 0.693}, {"time": 0.8833, "x": 1.06, "y": 1.06, "curve": 0.317, "c3": 0.693}, + {"time": 0.9667, "x": 1.1, "y": 1.1, "curve": 0.317, "c3": 0.693}, {"time": 1.05, "x": 1.06, "y": 1.06, "curve": 0.317, "c3": 0.693}, + {"time": 1.1333, "x": 1.1, "y": 1.1, "curve": "stepped"}, {"time": 1.2167, "x": 1.1, "y": 1.1, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 1.3167, "x": 0.92, "y": 0.92, "curve": 0.315, "c4": 0.8}, {"time": 1.4167} ] }, - "body-fur-8": { + "tail": { "rotate": [ - {"angle": 4.01, "curve": 0.351, "c2": 0.42, "c3": 0.686, "c4": 0.76}, {"time": 0.0333, "angle": 1.35, "curve": 0.36, "c2": 0.64, "c3": 0.695}, {"time": 0.0667}, - {"time": 0.2333, "angle": -21.01, "curve": 0.25, "c3": 0.75}, {"time": 0.4, "angle": 24.41, "curve": 0.25, "c3": 0.75}, {"time": 0.6833, "angle": -33.25, "curve": 0.25, "c3": 0.75}, - {"time": 1.0667, "angle": 31.64, "curve": 0.243, "c3": 0.68, "c4": 0.71}, {"time": 1.3333, "angle": 4.01} + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1, "angle": 16.7, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.2, "angle": -16.65, "curve": 0.315, "c4": 0.8}, + {"time": 0.3, "angle": 17.85, "curve": 0.317, "c3": 0.693}, {"time": 0.4333, "angle": 15.5, "curve": 0.317, "c3": 0.693}, {"time": 0.5667, "angle": 17.85, "curve": 0.317, "c3": 0.693}, + {"time": 0.7, "angle": 15.5, "curve": 0.317, "c3": 0.693}, {"time": 0.8333, "angle": 17.85, "curve": 0.317, "c3": 0.693}, {"time": 0.95, "angle": 15.5, "curve": 0.317, "c3": 0.693}, + {"time": 1.0833, "angle": 17.85, "curve": 0.317, "c3": 0.693}, {"time": 1.2167, "angle": 15.5, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 1.3167, "angle": -14.65, "curve": 0.315, "c4": 0.8}, {"time": 1.4167} ] }, - "body-fur-1": { + "@body3": { "rotate": [ - {"angle": 5.84, "curve": 0.379, "c2": 0.6, "c3": 0.724}, {"time": 0.0833}, {"time": 0.25, "angle": -21.01, "curve": 0.25, "c3": 0.75}, - {"time": 0.4167, "angle": 24.41, "curve": 0.25, "c3": 0.75}, {"time": 0.7, "angle": -33.25, "curve": 0.25, "c3": 0.75}, - {"time": 1.0833, "angle": 31.64, "curve": 0.242, "c3": 0.667, "c4": 0.67}, {"time": 1.3333, "angle": 5.84} + {"angle": -9, "curve": 0.311, "c2": 0.25, "c3": 0.757}, {"time": 0.0833, "curve": 0.25, "c3": 0.75}, {"time": 0.1833, "angle": 5.31, "curve": 0.25, "c3": 0.75}, + {"time": 0.2833, "angle": -9.96, "curve": 0.25, "c3": 0.75}, {"time": 0.3833, "angle": 2.37, "curve": 0.25, "c3": 0.75}, {"time": 0.4667, "angle": 2.71, "curve": 0.25, "c3": 0.75}, + {"time": 0.55, "angle": -8.08, "curve": 0.25, "c3": 0.75}, {"time": 0.6333, "angle": 2.71, "curve": 0.25, "c3": 0.75}, {"time": 0.7167, "angle": -8.08, "curve": 0.25, "c3": 0.75}, + {"time": 0.8, "angle": 2.71, "curve": 0.25, "c3": 0.75}, {"time": 0.8833, "angle": -8.08, "curve": 0.25, "c3": 0.75}, {"time": 0.9667, "angle": 2.71, "curve": 0.25, "c3": 0.75}, + {"time": 1.05, "angle": -8.08, "curve": 0.25, "c3": 0.75}, {"time": 1.1333, "angle": 2.71, "curve": 0.25, "c3": 0.75}, {"time": 1.2167, "angle": -8.08, "curve": 0.25, "c3": 0.75}, + {"time": 1.3, "angle": 5.31, "curve": 0.25, "c3": 0.75}, {"time": 1.4, "angle": -9.96, "curve": 0.29, "c3": 0.629, "c4": 0.38}, {"time": 1.4167, "angle": -9} + ], + "translate": [{"time": 0.0333, "curve": 0.25, "c3": 0.75}, {"time": 0.1333, "x": -13.74, "y": 10.69, "curve": 0.25, "c3": 0.75}, {"time": 0.2333}] + }, + "@body4": { + "rotate": [ + {"angle": 4.3, "curve": 0.375, "c2": 0.5, "c3": 0.75}, {"time": 0.05, "curve": 0.25, "c3": 0.75}, {"time": 0.15, "angle": -10.21, "curve": 0.25, "c3": 0.75}, + {"time": 0.25, "angle": 8.6, "curve": 0.25, "c3": 0.75}, {"time": 0.35, "angle": -11.06, "curve": 0.25, "c3": 0.75}, {"time": 0.4333, "angle": 2.32, "curve": 0.25, "c3": 0.75}, + {"time": 0.5167, "angle": -4.34, "curve": 0.25, "c3": 0.75}, {"time": 0.6, "angle": 2.32, "curve": 0.25, "c3": 0.75}, {"time": 0.6833, "angle": -8.1, "curve": 0.25, "c3": 0.75}, + {"time": 0.7667, "angle": 2.32, "curve": 0.25, "c3": 0.75}, {"time": 0.85, "angle": -8.1, "curve": 0.25, "c3": 0.75}, {"time": 0.9333, "angle": 2.32, "curve": 0.25, "c3": 0.75}, + {"time": 1.0167, "angle": -8.1, "curve": 0.25, "c3": 0.75}, {"time": 1.1, "angle": 2.32, "curve": 0.25, "c3": 0.75}, {"time": 1.1833, "angle": -8.1, "curve": 0.25, "c3": 0.75}, + {"time": 1.2667, "angle": -10.21, "curve": 0.25, "c3": 0.75}, {"time": 1.3667, "angle": 8.6, "curve": 0.25, "c3": 0.625, "c4": 0.5}, {"time": 1.4167, "angle": 4.3} + ], + "translate": [ + {"curve": 0.25, "c3": 0.75}, {"time": 0.1, "x": 11.07, "y": 7.2, "curve": 0.25, "c3": 0.75}, {"time": 0.2, "curve": "stepped"}, {"time": 0.3833, "curve": 0.25, "c3": 0.75}, + {"time": 0.4667, "x": -10.89, "y": -0.73, "curve": 0.25, "c3": 0.75}, {"time": 0.55} ] }, - "body-fur-2": { + "@body6": { "rotate": [ - {"angle": 11.48, "curve": 0.355, "c2": 0.41, "c3": 0.699, "c4": 0.78}, {"time": 0.0833, "angle": 2.63, "curve": 0.369, "c2": 0.63, "c3": 0.706}, {"time": 0.1333}, - {"time": 0.3, "angle": -21.01, "curve": 0.25, "c3": 0.75}, {"time": 0.4667, "angle": 24.41, "curve": 0.25, "c3": 0.75}, {"time": 0.75, "angle": -33.25, "curve": 0.25, "c3": 0.75}, - {"time": 1.1333, "angle": 31.64, "curve": 0.245, "c3": 0.637, "c4": 0.56}, {"time": 1.3333, "angle": 11.48} + {"angle": 22.56, "curve": 0.25, "c3": 0.625, "c4": 0.5}, {"time": 0.05, "angle": 11.28, "curve": 0.375, "c2": 0.5, "c3": 0.75}, {"time": 0.1, "curve": 0.25, "c3": 0.75}, + {"time": 0.2, "angle": -10.91, "curve": 0.25, "c3": 0.75}, {"time": 0.3, "angle": 22.56, "curve": 0.25, "c3": 0.75}, {"time": 0.4, "angle": -8.77, "curve": 0.25, "c3": 0.75}, + {"time": 0.4833, "angle": 11.2, "curve": 0.25, "c3": 0.75}, {"time": 0.5667, "angle": 4.65, "curve": 0.25, "c3": 0.75}, {"time": 0.65, "angle": 11.2, "curve": 0.25, "c3": 0.75}, + {"time": 0.7333, "angle": 0.45, "curve": 0.25, "c3": 0.75}, {"time": 0.8167, "angle": 11.2, "curve": 0.25, "c3": 0.75}, {"time": 0.9, "angle": 5.43, "curve": 0.25, "c3": 0.75}, + {"time": 0.9833, "angle": 11.2, "curve": 0.25, "c3": 0.75}, {"time": 1.0667, "angle": 5.23, "curve": 0.25, "c3": 0.75}, {"time": 1.15, "angle": 11.2, "curve": 0.25, "c3": 0.75}, + {"time": 1.2333, "angle": 8.16, "curve": 0.25, "c3": 0.75}, {"time": 1.3167, "angle": -10.91, "curve": 0.25, "c3": 0.75}, {"time": 1.4167, "angle": 22.56} + ], + "translate": [ + {"time": 0.05, "curve": 0.25, "c3": 0.75}, {"time": 0.15, "x": 17.33, "y": -12.37, "curve": 0.25, "c3": 0.75}, {"time": 0.25, "curve": "stepped"}, + {"time": 0.6, "curve": 0.25, "c3": 0.75}, {"time": 0.6833, "x": 4.79, "y": 6.64, "curve": 0.25, "c3": 0.75}, {"time": 0.7667, "curve": 0.25, "c3": 0.75}, + {"time": 0.85, "x": 6.38, "y": 8.86, "curve": 0.25, "c3": 0.75}, {"time": 0.9333, "curve": "stepped"}, {"time": 1.1, "curve": 0.25, "c3": 0.75}, + {"time": 1.1833, "x": 13.28, "y": -9.57, "curve": 0.25, "c3": 0.75}, {"time": 1.2667} ] }, - "body-fur-3": { + "body-braid2": { "rotate": [ - {"angle": 11.64, "curve": 0.381, "c2": 0.55, "c3": 0.742}, {"time": 0.1333, "curve": 0.25, "c3": 0.75}, {"time": 0.3, "angle": -21.01, "curve": 0.25, "c3": 0.75}, - {"time": 0.4667, "angle": 24.41, "curve": 0.25, "c3": 0.75}, {"time": 0.75, "angle": -33.25, "curve": 0.25, "c3": 0.75}, - {"time": 1.1333, "angle": 31.64, "curve": 0.245, "c3": 0.637, "c4": 0.56}, {"time": 1.3333, "angle": 11.64} + {"angle": 5.29, "curve": 0.382, "c2": 0.57, "c3": 0.735}, {"time": 0.0333, "curve": 0.25, "c3": 0.75}, {"time": 0.1333, "angle": -2.29, "curve": 0.25, "c3": 0.75}, + {"time": 0.2333, "angle": 18.64, "curve": 0.25, "c3": 0.75}, {"time": 0.3333, "angle": -1.94, "curve": 0.25, "c3": 0.75}, {"time": 0.4167, "angle": 5.84, "curve": 0.25, "c3": 0.75}, + {"time": 0.5, "curve": 0.25, "c3": 0.75}, {"time": 0.5833, "angle": 5.84, "curve": 0.25, "c3": 0.75}, {"time": 0.6667, "curve": 0.25, "c3": 0.75}, + {"time": 0.75, "angle": 5.84, "curve": 0.25, "c3": 0.75}, {"time": 0.8333, "curve": 0.25, "c3": 0.75}, {"time": 0.9167, "angle": 5.84, "curve": 0.25, "c3": 0.75}, + {"time": 1, "curve": 0.25, "c3": 0.75}, {"time": 1.0833, "angle": 5.84, "curve": 0.25, "c3": 0.75}, {"time": 1.1667, "curve": 0.25, "c3": 0.75}, + {"time": 1.25, "angle": -2.29, "curve": 0.25, "c3": 0.75}, {"time": 1.35, "angle": 18.64, "curve": 0.243, "c3": 0.649, "c4": 0.6}, {"time": 1.4167, "angle": 5.29} + ], + "translate": [{"curve": 0.25, "c3": 0.75}, {"time": 0.1, "x": 1.68, "y": -1.17, "curve": 0.25, "c3": 0.75}, {"time": 0.2}] + }, + "body-braid4": { + "rotate": [ + {"angle": 28.44, "curve": 0.371, "c2": 0.62, "c3": 0.71}, {"time": 0.0167, "angle": 33.06, "curve": 0.25, "c3": 0.75}, {"time": 0.1167, "curve": 0.25, "c3": 0.75}, + {"time": 0.2167, "angle": -14.88, "curve": 0.25, "c3": 0.75}, {"time": 0.3167, "angle": 33.06, "curve": 0.25, "c3": 0.75}, {"time": 0.4167, "angle": -26.01, "curve": 0.25, "c3": 0.75}, + {"time": 0.5, "angle": 16.77, "curve": 0.25, "c3": 0.75}, {"time": 0.5833, "curve": 0.25, "c3": 0.75}, {"time": 0.6667, "angle": 30.81, "curve": 0.25, "c3": 0.75}, + {"time": 0.75, "curve": 0.25, "c3": 0.75}, {"time": 0.8333, "angle": 30.81, "curve": 0.25, "c3": 0.75}, {"time": 0.9167, "curve": 0.25, "c3": 0.75}, + {"time": 1, "angle": 30.81, "curve": 0.25, "c3": 0.75}, {"time": 1.0833, "curve": 0.25, "c3": 0.75}, {"time": 1.1667, "angle": 30.81, "curve": 0.25, "c3": 0.75}, + {"time": 1.25, "curve": 0.25, "c3": 0.75}, {"time": 1.3333, "angle": -14.88, "curve": 0.243, "c3": 0.689, "c4": 0.75}, {"time": 1.4167, "angle": 28.44} ] }, - "body-fur-4": { + "body-braid3": { "rotate": [ - {"angle": 17.76, "curve": 0.349, "c2": 0.39, "c3": 0.707, "c4": 0.8}, {"time": 0.1333, "angle": 2.63, "curve": 0.369, "c2": 0.63, "c3": 0.706}, {"time": 0.1833}, - {"time": 0.35, "angle": -21.01, "curve": 0.25, "c3": 0.75}, {"time": 0.5167, "angle": 24.41, "curve": 0.25, "c3": 0.75}, {"time": 0.8, "angle": -33.25, "curve": 0.25, "c3": 0.75}, - {"time": 1.1833, "angle": 31.64, "curve": 0.253, "c3": 0.621, "c4": 0.48}, {"time": 1.3333, "angle": 17.76} + {"angle": 23.25, "curve": 0.351, "c2": 0.4, "c3": 0.757}, {"time": 0.0667, "curve": 0.25, "c3": 0.75}, {"time": 0.1667, "angle": -6.47, "curve": 0.25, "c3": 0.75}, + {"time": 0.2667, "angle": 32.47, "curve": 0.25, "c3": 0.75}, {"time": 0.3667, "angle": -7.5, "curve": 0.25, "c3": 0.75}, {"time": 0.45, "angle": 19.72, "curve": 0.25, "c3": 0.75}, + {"time": 0.5333, "curve": 0.25, "c3": 0.75}, {"time": 0.6167, "angle": 29.33, "curve": 0.25, "c3": 0.75}, {"time": 0.7, "curve": 0.25, "c3": 0.75}, + {"time": 0.7833, "angle": 29.33, "curve": 0.25, "c3": 0.75}, {"time": 0.8667, "curve": 0.25, "c3": 0.75}, {"time": 0.95, "angle": 29.33, "curve": 0.25, "c3": 0.75}, + {"time": 1.0333, "curve": 0.25, "c3": 0.75}, {"time": 1.1167, "angle": 19.72, "curve": 0.25, "c3": 0.75}, {"time": 1.2, "curve": 0.25, "c3": 0.75}, + {"time": 1.2833, "angle": -6.47, "curve": 0.25, "c3": 0.75}, {"time": 1.3833, "angle": 32.47, "curve": 0.265, "c3": 0.618, "c4": 0.43}, {"time": 1.4167, "angle": 23.25} ] }, - "body-fur-5": { + "@body2": { "rotate": [ - {"angle": 7.66, "curve": 0.382, "c2": 0.58, "c3": 0.731}, {"time": 0.1, "curve": 0.25, "c3": 0.75}, {"time": 0.2667, "angle": -21.01, "curve": 0.25, "c3": 0.75}, - {"time": 0.4333, "angle": 24.41, "curve": 0.25, "c3": 0.75}, {"time": 0.7167, "angle": -33.25, "curve": 0.25, "c3": 0.75}, - {"time": 1.1, "angle": 31.64, "curve": 0.243, "c3": 0.655, "c4": 0.63}, {"time": 1.3333, "angle": 7.66} + {"angle": -4.21, "curve": 0.351, "c2": 0.4, "c3": 0.757}, {"time": 0.0667, "angle": 15.89, "curve": 0.25, "c3": 0.75}, {"time": 0.15, "angle": 8.58, "curve": 0.25, "c3": 0.75}, + {"time": 0.2333, "angle": -8.34, "curve": 0.25, "c3": 0.75}, {"time": 0.3167, "angle": 8.58, "curve": 0.25, "c3": 0.75}, {"time": 0.4, "angle": -2.06, "curve": 0.25, "c3": 0.75}, + {"time": 0.4833, "angle": 8.58, "curve": 0.25, "c3": 0.75}, {"time": 0.5667, "angle": -7.29, "curve": 0.25, "c3": 0.75}, {"time": 0.65, "angle": 8.58, "curve": 0.25, "c3": 0.75}, + {"time": 0.7333, "angle": -9.24, "curve": 0.25, "c3": 0.75}, {"time": 0.8167, "angle": 8.58, "curve": 0.25, "c3": 0.75}, {"time": 0.9, "angle": -4.57, "curve": 0.25, "c3": 0.75}, + {"time": 0.9833, "angle": 5.38, "curve": 0.25, "c3": 0.75}, {"time": 1.0833, "angle": -12.18, "curve": 0.243, "c3": 0.649, "c4": 0.6}, + {"time": 1.15, "angle": -3.46, "curve": 0.382, "c2": 0.57, "c3": 0.735}, {"time": 1.1833, "curve": 0.25, "c3": 0.75}, {"time": 1.2833, "angle": 5.38, "curve": 0.25, "c3": 0.75}, + {"time": 1.3833, "angle": -12.18, "curve": 0.265, "c3": 0.618, "c4": 0.43}, {"time": 1.4167, "angle": -4.21} + ], + "translate": [ + {"time": 0.1167, "curve": 0.25, "c3": 0.75}, {"time": 0.2, "x": 13.61, "y": 0.91, "curve": 0.25, "c3": 0.75}, {"time": 0.2833, "curve": "stepped"}, + {"time": 0.45, "curve": 0.25, "c3": 0.75}, {"time": 0.5333, "x": 11.98, "y": -15.61, "curve": 0.25, "c3": 0.75}, {"time": 0.6167, "curve": "stepped"}, + {"time": 1.15, "curve": 0.25, "c3": 0.75}, {"time": 1.25, "x": -13.08, "y": -0.76, "curve": 0.25, "c3": 0.75}, {"time": 1.35} ] }, - "body-fur-6": { + "body-braid6": { "rotate": [ - {"angle": 13.56, "curve": 0.355, "c2": 0.41, "c3": 0.702, "c4": 0.79}, {"time": 0.1, "angle": 2.63, "curve": 0.369, "c2": 0.63, "c3": 0.706}, {"time": 0.15}, - {"time": 0.3167, "angle": -21.01, "curve": 0.25, "c3": 0.75}, {"time": 0.4833, "angle": 24.41, "curve": 0.25, "c3": 0.75}, {"time": 0.7667, "angle": -33.25, "curve": 0.25, "c3": 0.75}, - {"time": 1.15, "angle": 31.64, "curve": 0.247, "c3": 0.63, "c4": 0.53}, {"time": 1.3333, "angle": 13.56} + {"curve": 0.25, "c3": 0.75}, {"time": 0.0833, "angle": -32.78, "curve": 0.29, "c3": 0.629, "c4": 0.38}, {"time": 0.1, "angle": -27.78, "curve": 0.311, "c2": 0.25, "c3": 0.757}, + {"time": 0.1833, "angle": 19.08, "curve": 0.25, "c3": 0.75}, {"time": 0.2833, "curve": 0.25, "c3": 0.75}, {"time": 0.3833, "angle": -32.78, "curve": 0.25, "c3": 0.75}, + {"time": 0.4833, "angle": 19.08, "curve": 0.25, "c3": 0.75}, {"time": 0.5833, "angle": -39.01, "curve": 0.25, "c3": 0.75}, {"time": 0.6667, "angle": 2.79, "curve": 0.25, "c3": 0.75}, + {"time": 0.75, "curve": 0.25, "c3": 0.75}, {"time": 0.8333, "angle": 2.79, "curve": 0.25, "c3": 0.75}, {"time": 0.9167, "curve": 0.25, "c3": 0.75}, + {"time": 1, "angle": 2.79, "curve": 0.25, "c3": 0.75}, {"time": 1.0833, "curve": 0.25, "c3": 0.75}, {"time": 1.1667, "angle": 2.79, "curve": 0.25, "c3": 0.75}, + {"time": 1.25, "curve": 0.25, "c3": 0.75}, {"time": 1.3333, "angle": 2.79, "curve": 0.25, "c3": 0.75}, {"time": 1.4167} ] }, - "body-fur-7": { + "body-braid5": { "rotate": [ - {"angle": 4.12, "curve": 0.375, "c2": 0.62, "c3": 0.716}, {"time": 0.0667, "curve": 0.25, "c3": 0.75}, {"time": 0.2333, "angle": -21.01, "curve": 0.25, "c3": 0.75}, - {"time": 0.4, "angle": 24.41, "curve": 0.25, "c3": 0.75}, {"time": 0.6833, "angle": -33.25, "curve": 0.25, "c3": 0.75}, - {"time": 1.0667, "angle": 31.64, "curve": 0.243, "c3": 0.68, "c4": 0.71}, {"time": 1.3333, "angle": 4.12} + {"angle": 17.12, "curve": 0.25, "c3": 0.75}, {"time": 0.1, "curve": 0.25, "c3": 0.75}, {"time": 0.2, "angle": -6.97, "curve": 0.25, "c3": 0.75}, + {"time": 0.3, "angle": 17.12, "curve": 0.25, "c3": 0.75}, {"time": 0.4, "angle": -11.69, "curve": 0.25, "c3": 0.75}, {"time": 0.4833, "angle": 19.47, "curve": 0.25, "c3": 0.75}, + {"time": 0.5667, "curve": 0.25, "c3": 0.75}, {"time": 0.65, "angle": 19.47, "curve": 0.25, "c3": 0.75}, {"time": 0.7333, "curve": 0.25, "c3": 0.75}, + {"time": 0.8167, "angle": 19.47, "curve": 0.25, "c3": 0.75}, {"time": 0.9, "curve": 0.25, "c3": 0.75}, {"time": 0.9833, "angle": 19.47, "curve": 0.25, "c3": 0.75}, + {"time": 1.0667, "curve": 0.25, "c3": 0.75}, {"time": 1.15, "angle": 9.32, "curve": 0.25, "c3": 0.75}, {"time": 1.2333, "curve": 0.25, "c3": 0.75}, + {"time": 1.3167, "angle": -6.97, "curve": 0.25, "c3": 0.75}, {"time": 1.4167, "angle": 17.12} ] }, - "body-fur-9": { + "body-braid": { "rotate": [ - {"angle": 9.49, "curve": 0.342, "c2": 0.36, "c3": 0.677, "c4": 0.7}, {"time": 0.0333, "angle": 5.74, "curve": 0.348, "c2": 0.39, "c3": 0.683, "c4": 0.73}, - {"time": 0.0667, "angle": 2.63, "curve": 0.369, "c2": 0.63, "c3": 0.706}, {"time": 0.1167, "curve": 0.25, "c3": 0.75}, {"time": 0.2833, "angle": -21.01, "curve": 0.25, "c3": 0.75}, - {"time": 0.45, "angle": 24.41, "curve": 0.25, "c3": 0.75}, {"time": 0.7333, "angle": -33.25, "curve": 0.25, "c3": 0.75}, - {"time": 1.1167, "angle": 31.64, "curve": 0.244, "c3": 0.646, "c4": 0.59}, {"time": 1.3333, "angle": 9.49} + {"angle": 18.08, "curve": 0.351, "c2": 0.4, "c3": 0.757}, {"time": 0.0667, "curve": 0.25, "c3": 0.75}, {"time": 0.1667, "angle": -3.74, "curve": 0.25, "c3": 0.75}, + {"time": 0.2667, "angle": 25.24, "curve": 0.25, "c3": 0.75}, {"time": 0.3667, "angle": -1.77, "curve": 0.25, "c3": 0.75}, {"time": 0.45, "angle": 12.44, "curve": 0.25, "c3": 0.75}, + {"time": 0.5333, "curve": 0.25, "c3": 0.75}, {"time": 0.6167, "angle": 12.44, "curve": 0.25, "c3": 0.75}, {"time": 0.7, "curve": 0.25, "c3": 0.75}, + {"time": 0.7833, "angle": 12.44, "curve": 0.25, "c3": 0.75}, {"time": 0.8667, "curve": 0.25, "c3": 0.75}, {"time": 0.95, "angle": 12.44, "curve": 0.25, "c3": 0.75}, + {"time": 1.0333, "curve": 0.25, "c3": 0.75}, {"time": 1.1167, "angle": 12.44, "curve": 0.25, "c3": 0.75}, {"time": 1.2, "curve": 0.25, "c3": 0.75}, + {"time": 1.2833, "angle": -3.74, "curve": 0.25, "c3": 0.75}, {"time": 1.3833, "angle": 25.24, "curve": 0.265, "c3": 0.618, "c4": 0.43}, {"time": 1.4167, "angle": 18.08} + ], + "translate": [{"curve": 0.25, "c3": 0.75}, {"time": 0.1, "x": 1.68, "y": -1.17, "curve": "stepped"}, {"time": 1.3167, "x": 1.68, "y": -1.17, "curve": 0.25, "c3": 0.75}, {"time": 1.4167}] + }, + "@body5": { + "rotate": [ + {"curve": 0.25, "c3": 0.75}, {"time": 0.1, "angle": -0.69, "curve": 0.25, "c3": 0.75}, {"time": 0.2, "angle": 3.41, "curve": 0.25, "c3": 0.75}, + {"time": 0.3, "angle": -2, "curve": 0.25, "c3": 0.75}, {"time": 0.3833, "angle": 1.01, "curve": 0.25, "c3": 0.75}, {"time": 0.4667, "angle": 0.75, "curve": 0.25, "c3": 0.75}, + {"time": 0.55, "angle": 1.01, "curve": 0.25, "c3": 0.75}, {"time": 0.6333, "angle": 0.75, "curve": 0.25, "c3": 0.75}, {"time": 0.7167, "angle": 1.01, "curve": 0.25, "c3": 0.75}, + {"time": 0.8, "angle": 0.75, "curve": 0.25, "c3": 0.75}, {"time": 0.8833, "angle": 1.01, "curve": 0.25, "c3": 0.75}, {"time": 0.9667, "angle": 0.75, "curve": 0.25, "c3": 0.75}, + {"time": 1.05, "angle": 1.01, "curve": 0.25, "c3": 0.75}, {"time": 1.1333, "angle": 0.75, "curve": 0.25, "c3": 0.75}, {"time": 1.2167, "angle": -0.69, "curve": 0.25, "c3": 0.75}, + {"time": 1.3167, "angle": 3.41, "curve": 0.25, "c3": 0.75}, {"time": 1.4167} ] } } }, - "2561112030": { + "980943882": { "slots": { - "eyes": { - "attachment": [ - {"time": 0.05, "name": "eyes-angry"}, {"time": 0.55, "name": "eyes-shut"}, {"time": 0.65, "name": "eyes-angry"}, {"time": 0.9, "name": "eyes-shut"}, {"time": 0.9667, "name": "eyes"} - ] - }, - "mouth": { - "attachment": [ - {"time": 0.1167, "name": "mouth-open"}, {"time": 0.3833, "name": "mouth-bite"}, {"time": 0.65, "name": "mouth-open"}, {"time": 0.9, "name": "mouth-bite"}, - {"time": 0.9667, "name": "mouth"} - ] - } + "eyes": {"attachment": [{"name": "eyes-happy"}]}, + "leg-back-left": {"attachment": [{"time": 0.2833, "name": "sumo-leg-back-left-stretch"}, {"time": 0.7167, "name": "sumo-leg-back-left"}]}, + "leg-front-left": {"attachment": [{"time": 0.2, "name": "sumo-leg-front-left-stretch"}, {"time": 0.6, "name": "sumo-leg-front-left"}]} }, "bones": { - "@pivot-back": { - "rotate": [ - {"curve": 0, "c2": 0.2, "c3": 0.695}, {"time": 0.1, "angle": 6, "curve": 0, "c2": 0.2, "c3": 0.695}, {"time": 0.25, "angle": -10.31, "curve": 0.317, "c4": 0.8}, - {"time": 0.3833, "angle": 5}, {"time": 0.6333, "angle": 6, "curve": 0, "c2": 0.2, "c3": 0.695}, {"time": 0.7667, "angle": -5.94, "curve": 0.317, "c4": 0.8}, - {"time": 0.9, "angle": 6.92, "curve": 0, "c2": 0.2, "c3": 0.695}, {"time": 1} - ], + "@leg-front-left": { "translate": [ - {"time": 0.1, "curve": 0, "c2": 0.2, "c3": 0.695}, {"time": 0.25, "y": 82.86, "curve": 0.317, "c4": 0.8}, {"time": 0.3833, "curve": "stepped"}, - {"time": 0.6333, "curve": 0, "c2": 0.2, "c3": 0.695}, {"time": 0.7667, "y": 70.12, "curve": 0.317, "c4": 0.8}, {"time": 0.9} + {"x": -14.55, "y": -2.39, "curve": 0.374, "c2": 0.33, "c3": 0.72, "c4": 0.68}, {"time": 0.0333, "x": -24.69, "y": -4.71, "curve": 0.37, "c2": 0.57, "c3": 0.746}, + {"time": 0.1667, "x": -24.61, "y": -1.31, "curve": 0.37, "c2": 0.57, "c3": 0.746}, {"time": 0.3333, "x": 13.45, "y": -27.72, "curve": 0.345, "c2": 0.53, "c3": 0.751}, + {"time": 0.4833, "x": 40.66, "y": -4.9, "curve": 0.262, "c3": 0.63, "c4": 0.42}, {"time": 0.5667, "x": 49.25, "y": 8.32, "curve": 0.343, "c2": 0.3, "c3": 0.688, "c4": 0.65}, + {"time": 0.7, "x": 9.23, "y": 17.43, "curve": 0.255, "c3": 0.659, "c4": 0.47}, {"time": 0.75, "x": -14.55, "y": -2.39} + ], + "scale": [ + {"curve": 0.459, "c2": 0.59, "c3": 0.838}, {"time": 0.0333, "x": 0.935, "curve": 0.331, "c3": 0.677, "c4": 0.4}, {"time": 0.0667, "x": 0.87, "curve": 0.464, "c4": 0.7}, {"time": 0.1667} ] }, - "@pivot-main": { - "translate": [{"time": 0.1, "curve": 0, "c2": 0.15, "c3": 0.703}, {"time": 0.3833, "x": 542.6}, {"time": 0.6333, "x": 603.73, "curve": 0, "c2": 0.1, "c3": 0.852}, {"time": 0.9}] - }, - "@leg-front-left": { + "leg-front-left-IK": { "translate": [ - {"curve": 0, "c2": 0.2, "c3": 0.695}, {"time": 0.1, "x": -1.93, "y": -18.15, "curve": 0, "c2": 0.3, "c3": 0.62}, {"time": 0.25, "curve": 0.313, "c4": 0.8}, - {"time": 0.3833, "x": -1.93, "y": -18.15}, {"time": 0.6333, "x": -1.68, "y": -15.27, "curve": 0, "c2": 0.2, "c3": 0.691}, {"time": 0.7667, "curve": 0.309, "c4": 0.8}, - {"time": 0.9, "x": -1.93, "y": -18.15, "curve": 0, "c2": 0.19, "c3": 0.695}, {"time": 1} + {"x": 0.33, "y": 2.27, "curve": 0.154, "c4": 0.9}, {"time": 0.0833, "x": 32.98, "y": -4.28, "curve": 0.269, "c2": 0.57, "c3": 0.577}, + {"time": 0.1667, "x": 53.3, "y": 2.35, "curve": 0.461, "c3": 0.543}, {"time": 0.4167, "x": -85.44, "y": 106.83, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.5167, "x": -85.78, "y": 86.09, "curve": 0.143, "c3": 0.57, "c4": 0.46}, {"time": 0.7, "x": -26.89, "y": 8.67, "curve": 0, "c2": 0.09, "c3": 0.479, "c4": 0.56}, + {"time": 0.75, "x": 0.33, "y": 2.27} ] }, - "@leg-front-right": { + "leg-back-left-IK": { "translate": [ - {"curve": 0, "c2": 0.2, "c3": 0.695}, {"time": 0.1, "x": -3.41, "y": -31.95, "curve": 0, "c2": 0.3, "c3": 0.62}, {"time": 0.25, "curve": 0.313, "c4": 0.8}, - {"time": 0.3833, "x": -3.41, "y": -31.95}, {"time": 0.6333, "x": -3.16, "y": -29.07, "curve": 0, "c2": 0.2, "c3": 0.691}, {"time": 0.7667, "curve": 0.309, "c4": 0.8}, - {"time": 0.9, "x": -3.41, "y": -31.95, "curve": 0, "c2": 0.19, "c3": 0.695}, {"time": 1} + {"x": 17.64, "y": 16.11, "curve": 0.455, "c2": 0.58, "c3": 0.847}, {"time": 0.0333, "curve": 0, "c2": 0.1, "c3": 0.85}, + {"time": 0.2333, "x": -50.37, "curve": 0, "c2": 0.09, "c3": 0.466, "c4": 0.7}, {"time": 0.3, "x": 11.38, "y": 18.2, "curve": 0.177, "c2": 0.44, "c3": 0.617}, + {"time": 0.5333, "x": 56.74, "y": 103.8, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.6667, "x": 71.93, "y": 112.16, "curve": 0.315, "c4": 0.8}, {"time": 0.75, "x": 17.64, "y": 16.11} ] }, - "@leg-back-left": { + "@shadow": { + "scale": [ + {"curve": 0.313, "c3": 0.699}, {"time": 0.25, "x": 0.94, "y": 0.94, "curve": 0.313, "c3": 0.699}, {"time": 0.4333, "x": 0.8, "y": 0.8, "curve": 0.315, "c4": 0.8}, {"time": 0.75} + ] + }, + "tail": { + "rotate": [{"curve": 0.161, "c3": 0.854}, {"time": 0.25, "angle": -15.26, "curve": 0, "c2": 0.3, "c3": 0.546}, {"time": 0.5, "angle": 3.48, "curve": 0.154, "c4": 0.9}, {"time": 0.75}] + }, + "@leg-front-right": { "translate": [ - {"curve": 0, "c2": 0.2, "c3": 0.695}, {"time": 0.1, "x": -0.42, "y": -4.72, "curve": 0, "c2": 0.3, "c3": 0.62}, {"time": 0.25, "curve": 0.313, "c4": 0.8}, - {"time": 0.3833, "x": -0.42, "y": -4.72, "curve": "stepped"}, {"time": 0.6333, "x": -0.42, "y": -4.72, "curve": 0, "c2": 0.2, "c3": 0.691}, {"time": 0.7667, "curve": 0.309, "c4": 0.8}, - {"time": 0.9, "x": -0.42, "y": -4.72, "curve": 0, "c2": 0.19, "c3": 0.695}, {"time": 1} + {"x": 7.78, "y": -11.23, "curve": 0.649, "c2": 0.4, "c4": 0.74}, {"time": 0.0167, "x": -0.64, "y": -13.16, "curve": 0.313, "c3": 0.699}, + {"time": 0.1333, "x": -9.39, "y": -16.39, "curve": 0.346, "c2": 0.44, "c3": 0.699}, {"time": 0.3167, "x": -26.29, "y": 12.52, "curve": 0, "c2": 0.18, "c3": 0.424, "c4": 0.59}, + {"time": 0.4333, "x": 7.42, "y": -10.53, "curve": 0.316, "c2": 0.49, "c3": 0.751}, {"time": 0.6, "x": 51.65, "y": -22.8, "curve": 0.289, "c3": 0.884, "c4": 0.7}, + {"time": 0.75, "x": 7.78, "y": -11.23} ] }, "leg-front-right-IK": { "translate": [ - {"time": 0.1, "curve": 0, "c2": 0.3, "c3": 0.62}, {"time": 0.2167, "x": -58.81, "y": 174.08, "curve": 0.257, "c3": 0.637, "c4": 0.43}, - {"time": 0.2833, "x": 10.68, "y": 136.08, "curve": 0.518, "c2": 0.35, "c4": 0.83}, {"time": 0.3833, "x": 11}, {"time": 0.6333, "x": -14.37, "curve": 0, "c2": 0.2, "c3": 0.691}, - {"time": 0.7333, "x": 26.13, "y": 111.42, "curve": 0.257, "c3": 0.63, "c4": 0.42}, {"time": 0.8, "x": -44.87, "y": 129.12, "curve": 0.503, "c2": 0.34, "c4": 0.83}, {"time": 0.9} + {"x": -13.57, "y": 17.19, "curve": 0.645, "c2": 0.47, "c4": 0.81}, {"time": 0.0167, "curve": 0.313, "c3": 0.699}, {"time": 0.2667, "x": 62.62, "curve": 0, "c2": 0.3, "c3": 0.544}, + {"time": 0.5, "x": -85.89, "y": 125.19}, {"time": 0.6, "x": -101.73, "y": 111.9, "curve": 0.142, "c3": 0.858, "c4": 0.77}, {"time": 0.75, "x": -13.57, "y": 17.19} ] }, - "leg-front-left-IK": { + "@leg-back-left": { "translate": [ - {"time": 0.1, "curve": 0, "c2": 0.3, "c3": 0.62}, {"time": 0.2167, "x": -73.46, "y": 138.38, "curve": 0.257, "c3": 0.637, "c4": 0.43}, - {"time": 0.2833, "x": -0.77, "y": 108.17, "curve": 0.518, "c2": 0.35, "c4": 0.83}, {"time": 0.3833, "x": 11}, {"time": 0.6333, "x": -14.37, "curve": 0, "c2": 0.2, "c3": 0.691}, - {"time": 0.7333, "x": 11.48, "y": 75.71, "curve": 0.257, "c3": 0.63, "c4": 0.42}, {"time": 0.8, "x": -56.77, "y": 100.13, "curve": 0.503, "c2": 0.34, "c4": 0.83}, {"time": 0.9} - ] + {"x": -4.73, "y": 6.6, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.15, "x": 1.29, "y": -4.22, "curve": 0.44, "c2": 0.55, "c3": 0.858}, + {"time": 0.25, "x": 2.16, "y": 6.49, "curve": 0, "c2": 0.09, "c3": 0.466, "c4": 0.7}, {"time": 0.3, "x": -5.17, "y": 15.67, "curve": 0.218, "c2": 0.39, "c3": 0.738}, + {"time": 0.5333, "x": -14.09, "y": -7.98, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.6667, "x": -12.69, "y": -11.31, "curve": 0.315, "c4": 0.8}, {"time": 0.75, "x": -4.73, "y": 6.6} + ], + "scale": [{"curve": 0, "c2": 0.1, "c3": 0.457, "c4": 0.54}, {"time": 0.0667, "x": 0.837, "curve": 0.395, "c2": 0.49, "c3": 0.868}, {"time": 0.15}] }, - "leg-back-left-IK": { + "@pivot-back": { + "rotate": [ + {"angle": 3.74, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "angle": 1.5, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.25, "angle": -2, "curve": 0, "c2": 0.1, "c3": 0.85}, + {"time": 0.35, "angle": -5, "curve": 0.154, "c4": 0.9}, {"time": 0.6667, "angle": 5, "curve": 0.154, "c4": 0.9}, {"time": 0.75, "angle": 3.74} + ], "translate": [ - {"time": 0.1, "curve": 0, "c2": 0.3, "c3": 0.62}, {"time": 0.2, "x": -56.56, "y": 95.34, "curve": 0.257, "c3": 0.637, "c4": 0.43}, - {"time": 0.2667, "x": 21.01, "y": 67.87, "curve": 0.518, "c2": 0.35, "c4": 0.83}, {"time": 0.3833, "x": 0.85}, {"time": 0.6333, "x": -16.87, "curve": 0, "c2": 0.2, "c3": 0.691}, - {"time": 0.7167, "x": 21.01, "y": 67.87, "curve": 0.257, "c3": 0.63, "c4": 0.42}, {"time": 0.7833, "x": -41.39, "y": 75.95, "curve": 0.503, "c2": 0.34, "c4": 0.83}, {"time": 0.9} + {"y": 8, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "y": -10, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.25, "curve": 0, "c2": 0.1, "c3": 0.85}, + {"time": 0.5667, "y": 80.61, "curve": 0.154, "c4": 0.9}, {"time": 0.75, "y": 8} ] }, - "tail": { + "@pivot-main": {"scale": [{"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1333, "y": 0.85, "curve": 0.306, "c4": 0.8}, {"time": 0.25}]}, + "@body3": { "rotate": [ - {"curve": 0, "c2": 0.2, "c3": 0.695}, {"time": 0.1, "angle": 21.16, "curve": 0, "c2": 0.2, "c3": 0.695}, {"time": 0.25, "angle": -27.62, "curve": 0.317, "c4": 0.8}, - {"time": 0.3833, "angle": 17.89}, {"time": 0.6333, "angle": 23.46, "curve": 0, "c2": 0.2, "c3": 0.695}, {"time": 0.7667, "angle": -27.7, "curve": 0.317, "c4": 0.8}, - {"time": 0.9, "angle": 21.16, "curve": 0, "c2": 0.2, "c3": 0.695}, {"time": 1} + {"angle": -13.86, "curve": 0.263, "c2": 0.07, "c3": 0.719, "c4": 0.86}, {"time": 0.3333, "angle": -4.09, "curve": 0.357, "c2": 0.65, "c3": 0.692}, + {"time": 0.3667, "angle": -3.77, "curve": 0.25, "c3": 0.75}, {"time": 0.7333, "angle": -14, "curve": 0.32, "c3": 0.654, "c4": 0.34}, {"time": 0.75, "angle": -13.86} + ], + "translate": [ + {"x": 32.19, "y": -18.01, "curve": 0.299, "c2": 0.21, "c3": 0.756}, {"time": 0.3333, "curve": 0.25, "c3": 0.75}, + {"time": 0.7, "x": 34.51, "y": -19.31, "curve": 0.298, "c3": 0.635, "c4": 0.37}, {"time": 0.75, "x": 32.19, "y": -18.01} ] }, - "@shadow": { - "translate": [{"time": 0.1}, {"time": 0.3833, "x": 542.6}, {"time": 0.6333, "x": 603.73, "curve": 0, "c2": 0.1, "c3": 0.852}, {"time": 0.9}], - "scale": [ - {}, {"time": 0.1, "x": 1.08, "y": 1.08}, {"time": 0.25, "x": 0.9, "y": 0.9}, {"time": 0.3833, "x": 1.08, "y": 1.08}, {"time": 0.6333, "x": 1.1, "y": 1.1}, - {"time": 0.7833, "x": 0.9, "y": 0.9}, {"time": 0.9, "x": 1.08, "y": 1.08}, {"time": 1} + "@body4": { + "rotate": [ + {"angle": -1.5, "curve": 0.343, "c2": 0.36, "c3": 0.683, "c4": 0.72}, {"time": 0.0833, "angle": -9.54, "curve": 0.38, "c2": 0.6, "c3": 0.726}, + {"time": 0.1833, "angle": -15.35, "curve": 0.25, "c3": 0.75}, {"time": 0.55, "angle": 14.26, "curve": 0.249, "c3": 0.627, "c4": 0.51}, {"time": 0.75, "angle": -1.5} + ], + "translate": [ + {"x": 2.34, "y": 16.61, "curve": 0.377, "c2": 0.61, "c3": 0.719}, {"time": 0.0833, "x": -1.59, "y": 23.93, "curve": 0.25, "c3": 0.75}, + {"time": 0.45, "x": 24.8, "y": -25.19, "curve": 0.243, "c3": 0.675, "c4": 0.7}, {"time": 0.75, "x": 2.34, "y": 16.61} ] }, - "body-fur-2": { + "@body6": { "rotate": [ - {"angle": 34.91, "curve": 0.36, "c2": 0.64, "c3": 0.695}, {"time": 0.0167, "angle": 37.78, "curve": 0.245, "c3": 0.637, "c4": 0.56}, - {"time": 0.0667, "angle": 13.9, "curve": 0.381, "c2": 0.55, "c3": 0.742}, {"time": 0.1}, {"time": 0.1833, "angle": -24.62, "curve": 0.25, "c3": 0.75}, - {"time": 0.3167, "angle": 43.2, "curve": 0.25, "c3": 0.75}, {"time": 0.4833, "angle": -45.45, "curve": 0.25, "c3": 0.75}, {"time": 0.7333, "angle": 40.81, "curve": 0.25, "c3": 0.75}, - {"time": 0.85, "angle": -29.59, "curve": 0.245, "c3": 0.711, "c4": 0.83}, {"time": 1, "angle": 13.84} + {"angle": 19.85, "curve": 0.303, "c2": 0.23, "c3": 0.712, "c4": 0.82}, {"time": 0.2667, "angle": -3.35, "curve": 0.365, "c2": 0.63, "c3": 0.702}, + {"time": 0.3167, "angle": -5.24, "curve": 0.25, "c3": 0.75}, {"time": 0.6833, "angle": 22.83, "curve": 0.289, "c3": 0.628, "c4": 0.38}, {"time": 0.75, "angle": 19.85} + ], + "translate": [ + {"x": -51.62, "y": 25.78, "curve": 0.346, "c2": 0.38, "c3": 0.757}, {"time": 0.2667, "x": 5.81, "y": -4.07, "curve": 0.25, "c3": 0.75}, + {"time": 0.6333, "x": -70.52, "y": 35.61, "curve": 0.268, "c3": 0.618, "c4": 0.42}, {"time": 0.75, "x": -51.62, "y": 25.78} ] }, - "body-fur-9": { + "body-braid2": {"rotate": [{"angle": -1.43, "curve": 0.25, "c3": 0.75}, {"time": 0.3667, "angle": 20.83, "curve": 0.25, "c3": 0.75}, {"time": 0.75, "angle": -1.43}]}, + "body-braid4": { "rotate": [ - {"angle": 32.88, "curve": 0.303, "c2": 0.24, "c3": 0.661, "c4": 0.65}, {"time": 0.0333, "angle": 13.9, "curve": 0.381, "c2": 0.55, "c3": 0.742}, {"time": 0.0667}, - {"time": 0.15, "angle": -24.62, "curve": 0.25, "c3": 0.75}, {"time": 0.2833, "angle": 43.2, "curve": 0.25, "c3": 0.75}, {"time": 0.45, "angle": -45.45, "curve": 0.25, "c3": 0.75}, - {"time": 0.7, "angle": 40.81, "curve": 0.25, "c3": 0.75}, {"time": 0.8167, "angle": -29.59, "curve": 0.25, "c3": 0.75}, - {"time": 0.9833, "angle": 37.78, "curve": 0.284, "c3": 0.625, "c4": 0.38}, {"time": 1, "angle": 6.86} + {"angle": 9.08, "curve": 0.373, "c2": 0.49, "c3": 0.751}, {"time": 0.2, "angle": -11.53, "curve": 0.25, "c3": 0.75}, + {"time": 0.5667, "angle": 27.46, "curve": 0.251, "c3": 0.623, "c4": 0.49}, {"time": 0.75, "angle": 9.08} ] }, - "body-fur-8": { - "rotate": [ - {"angle": 13.9, "curve": 0.381, "c2": 0.55, "c3": 0.742}, {"time": 0.0333}, {"time": 0.1167, "angle": -24.62, "curve": 0.25, "c3": 0.75}, - {"time": 0.25, "angle": 43.2, "curve": 0.25, "c3": 0.75}, {"time": 0.4167, "angle": -45.45, "curve": 0.25, "c3": 0.75}, {"time": 0.6667, "angle": 40.81, "curve": 0.25, "c3": 0.75}, - {"time": 0.7833, "angle": -29.59, "curve": 0.25, "c3": 0.75}, {"time": 0.95, "angle": 37.78, "curve": 0.245, "c3": 0.637, "c4": 0.56}, {"time": 1, "angle": -0.91} - ] - }, - "body-fur-7": { - "rotate": [ - {"angle": 4.91, "curve": 0.375, "c2": 0.62, "c3": 0.716}, {"time": 0.0167, "curve": 0.25, "c3": 0.75}, {"time": 0.1, "angle": -24.62, "curve": 0.25, "c3": 0.75}, - {"time": 0.2333, "angle": 43.2, "curve": 0.25, "c3": 0.75}, {"time": 0.4, "angle": -45.45, "curve": 0.25, "c3": 0.75}, {"time": 0.65, "angle": 40.81, "curve": 0.25, "c3": 0.75}, - {"time": 0.7667, "angle": -29.59, "curve": 0.25, "c3": 0.75}, {"time": 0.9333, "angle": 37.78, "curve": 0.243, "c3": 0.68, "c4": 0.71}, {"time": 1, "angle": 2.91} - ] - }, - "body-fur-6": { + "body-braid3": { "rotate": [ - {"angle": 32.88, "curve": 0.303, "c2": 0.24, "c3": 0.661, "c4": 0.65}, {"time": 0.0333, "angle": 13.9, "curve": 0.381, "c2": 0.55, "c3": 0.742}, - {"time": 0.0667, "curve": 0.25, "c3": 0.75}, {"time": 0.15, "angle": -24.62, "curve": 0.25, "c3": 0.75}, {"time": 0.2833, "angle": 43.2, "curve": 0.25, "c3": 0.75}, - {"time": 0.45, "angle": -45.45, "curve": 0.25, "c3": 0.75}, {"time": 0.7, "angle": 40.81, "curve": 0.25, "c3": 0.75}, {"time": 0.8167, "angle": -29.59, "curve": 0.25, "c3": 0.75}, - {"time": 0.9833, "angle": 37.78, "curve": 0.284, "c3": 0.625, "c4": 0.38}, {"time": 1, "angle": 13.33} + {"angle": -4.05, "curve": 0.372, "c2": 0.62, "c3": 0.711}, {"time": 0.0667, "angle": -8.3, "curve": 0.25, "c3": 0.75}, + {"time": 0.4333, "angle": 33.27, "curve": 0.243, "c3": 0.687, "c4": 0.74}, {"time": 0.75, "angle": -4.05} ] }, - "body-fur-5": { + "@body2": { "rotate": [ - {"angle": 13.9, "curve": 0.381, "c2": 0.55, "c3": 0.742}, {"time": 0.0333}, {"time": 0.1167, "angle": -24.62, "curve": 0.25, "c3": 0.75}, - {"time": 0.25, "angle": 43.2, "curve": 0.25, "c3": 0.75}, {"time": 0.4167, "angle": -45.45, "curve": 0.25, "c3": 0.75}, {"time": 0.6667, "angle": 40.81, "curve": 0.25, "c3": 0.75}, - {"time": 0.7833, "angle": -29.59, "curve": 0.25, "c3": 0.75}, {"time": 0.95, "angle": 37.78, "curve": 0.245, "c3": 0.637, "c4": 0.56}, {"time": 1, "angle": 6.86} + {"angle": -2.16, "curve": 0.349, "c2": 0.38, "c3": 0.701, "c4": 0.78}, {"time": 0.1333, "angle": 5.57, "curve": 0.372, "c2": 0.62, "c3": 0.711}, + {"time": 0.2, "angle": 7.45, "curve": 0.25, "c3": 0.75}, {"time": 0.5667, "angle": -10.94, "curve": 0.251, "c3": 0.623, "c4": 0.49}, {"time": 0.75, "angle": -2.16} + ], + "translate": [ + {"x": -4.53, "y": -2.88, "curve": 0.382, "c2": 0.57, "c3": 0.737}, {"time": 0.1333, "x": -0.08, "y": 1.15, "curve": 0.25, "c3": 0.75}, + {"time": 0.5, "x": -14.84, "y": -12.21, "curve": 0.244, "c3": 0.646, "c4": 0.59}, {"time": 0.75, "x": -4.53, "y": -2.88} ] }, - "body-fur-4": { + "body-braid6": { "rotate": [ - {"angle": 37.78, "curve": 0.245, "c3": 0.637, "c4": 0.56}, {"time": 0.05, "angle": 13.9, "curve": 0.381, "c2": 0.55, "c3": 0.742}, {"time": 0.0833}, - {"time": 0.1667, "angle": -24.62, "curve": 0.25, "c3": 0.75}, {"time": 0.3, "angle": 43.2, "curve": 0.25, "c3": 0.75}, {"time": 0.4667, "angle": -45.45, "curve": 0.25, "c3": 0.75}, - {"time": 0.7167, "angle": 40.81, "curve": 0.25, "c3": 0.75}, {"time": 0.8333, "angle": -29.59, "curve": 0.25, "c3": 0.75}, {"time": 1, "angle": 12.53} + {"angle": 12.61, "curve": 0.325, "c2": 0.3, "c3": 0.757}, {"time": 0.3, "angle": -20.17, "curve": 0.25, "c3": 0.75}, + {"time": 0.6667, "angle": 18.35, "curve": 0.281, "c3": 0.623, "c4": 0.39}, {"time": 0.75, "angle": 12.61} ] }, - "body-fur-3": { + "body-braid5": { "rotate": [ - {"angle": 23.88, "curve": 0.363, "c2": 0.44, "c3": 0.755}, {"time": 0.05}, {"time": 0.1333, "angle": -24.62, "curve": 0.25, "c3": 0.75}, - {"time": 0.2667, "angle": 43.2, "curve": 0.25, "c3": 0.75}, {"time": 0.4333, "angle": -45.45, "curve": 0.25, "c3": 0.75}, {"time": 0.6833, "angle": 40.81, "curve": 0.25, "c3": 0.75}, - {"time": 0.8, "angle": -29.59, "curve": 0.25, "c3": 0.75}, {"time": 0.9667, "angle": 37.78, "curve": 0.258, "c3": 0.619, "c4": 0.45}, {"time": 1, "angle": 5.54} + {"angle": 5.8, "curve": 0.382, "c2": 0.57, "c3": 0.737}, {"time": 0.1333, "angle": -7.27, "curve": 0.25, "c3": 0.75}, + {"time": 0.5, "angle": 36.02, "curve": 0.244, "c3": 0.646, "c4": 0.59}, {"time": 0.75, "angle": 5.8} ] }, - "body-fur-1": { + "body-braid": { "rotate": [ - {"angle": 32.86, "curve": 0.32, "c2": 0.29, "c3": 0.757}, {"time": 0.0667}, {"time": 0.15, "angle": -24.62, "curve": 0.25, "c3": 0.75}, - {"time": 0.2833, "angle": 43.2, "curve": 0.25, "c3": 0.75}, {"time": 0.45, "angle": -45.45, "curve": 0.25, "c3": 0.75}, {"time": 0.7, "angle": 40.81, "curve": 0.25, "c3": 0.75}, - {"time": 0.8167, "angle": -29.59, "curve": 0.25, "c3": 0.75}, {"time": 0.9833, "angle": 37.78, "curve": 0.284, "c3": 0.625, "c4": 0.38}, {"time": 1, "angle": 10.51} - ] - } - } - }, - "3241199930": { - "slots": { - "eyes": { - "attachment": [ - {"time": 0.1333, "name": "eyes-shut"}, {"time": 0.2, "name": "eyes"}, {"time": 0.55, "name": "eyes-shut"}, {"time": 0.6167, "name": "eyes"}, {"time": 0.9667, "name": "eyes-shut"} - ] - }, - "mouth": { - "attachment": [ - {"time": 0.1833, "name": "mouth-open"}, {"time": 0.5, "name": "mouth"}, {"time": 0.6, "name": "mouth-open"}, {"time": 0.9, "name": "mouth"}, {"time": 0.9667, "name": "mouth-bite"} + {"angle": -1.87, "curve": 0.357, "c2": 0.65, "c3": 0.692}, {"time": 0.0333, "angle": -2.68, "curve": 0.25, "c3": 0.75}, + {"time": 0.4, "angle": 22.42, "curve": 0.246, "c3": 0.715, "c4": 0.85}, {"time": 0.75, "angle": -1.87} ] } }, + "drawOrder": [{"time": 0.6333, "offsets": [{"slot": "leg-front-right", "offset": 5}]}] + }, + "1255318387": { + "slots": {"leg-front-left": {"attachment": [{"time": 0.2, "name": "sumo-leg-front-left-stretch"}, {"time": 0.6667, "name": "sumo-leg-front-left"}]}}, "bones": { "@pivot-back": { - "rotate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "angle": 3.53, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "angle": -10.14, "curve": 0.315, "c4": 0.8}, - {"time": 0.5, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5833, "angle": 3.53, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.75, "angle": -10.14, "curve": 0.315, "c4": 0.8}, - {"time": 0.9167, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1.0833, "angle": 5.43}, {"time": 1.15, "angle": 3.94}, {"time": 1.2, "angle": 5.43}, {"time": 1.2333, "angle": 3.94}, - {"time": 1.2667, "angle": 5.43}, {"time": 1.3, "angle": 3.94}, {"time": 1.3333, "angle": 5.43}, {"time": 1.3667, "angle": 3.94}, {"time": 1.4, "angle": 5.43}, - {"time": 1.4333, "angle": 3.94}, {"time": 1.4667, "angle": 5.43}, {"time": 1.5, "angle": 3.94} - ], "translate": [ - {"y": 44.46, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "y": 12.46, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "y": 209.26, "curve": 0.315, "c4": 0.8}, - {"time": 0.5, "y": 44.46, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5833, "y": 12.46, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.75, "y": 209.26, "curve": 0.315, "c4": 0.8}, - {"time": 0.9167, "y": 44.46} - ] - }, - "@leg-front-right": { - "rotate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "angle": -14.05, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "angle": 13.89, "curve": 0.315, "c4": 0.8}, - {"time": 0.5, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5833, "angle": -12.58, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.75, "angle": 13.89, "curve": 0.315, "c4": 0.8}, - {"time": 0.9167, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1.0833, "angle": -12.58} + {"y": 8, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "y": -10, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.25, "curve": 0, "c2": 0.1, "c3": 0.85}, + {"time": 0.5833, "y": 80.61, "curve": 0.154, "c4": 0.9}, {"time": 0.75, "y": 8} ] }, "@leg-front-left": { - "rotate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "angle": -14.05, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "angle": 13.89, "curve": 0.315, "c4": 0.8}, - {"time": 0.5, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5833, "angle": -12.58, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.75, "angle": 13.89, "curve": 0.315, "c4": 0.8}, - {"time": 0.9167, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1.0833, "angle": -12.58} + "translate": [ + {"x": -14.55, "y": -2.39, "curve": 0.374, "c2": 0.33, "c3": 0.72, "c4": 0.68}, {"time": 0.0333, "x": -24.61, "y": -1.31, "curve": "stepped"}, + {"time": 0.1667, "x": -24.61, "y": -1.31, "curve": 0.37, "c2": 0.57, "c3": 0.746}, {"time": 0.3333, "x": 13.45, "y": -27.72, "curve": 0.345, "c2": 0.53, "c3": 0.751}, + {"time": 0.4833, "x": 40.66, "y": -4.9, "curve": 0.255, "c3": 0.673, "c4": 0.49}, {"time": 0.5833, "x": 39.16, "y": 14.5, "curve": 0.565, "c2": 0.41, "c4": 0.82}, + {"time": 0.6667, "x": 1.05, "y": 16.15, "curve": 0.255, "c3": 0.659, "c4": 0.47}, {"time": 0.75, "x": -14.55, "y": -2.39} + ], + "scale": [ + {"x": 0.969, "curve": 0.459, "c2": 0.59, "c3": 0.838}, {"time": 0.0333, "x": 0.961, "curve": 0.154, "c4": 0.9}, {"time": 0.1667, "x": 1.075, "curve": 0, "c2": 0.1, "c3": 0.85}, + {"time": 0.3333, "curve": "stepped"}, {"time": 0.6667, "curve": 0, "c2": 0.09, "c3": 0.589, "c4": 0.67}, {"time": 0.75, "x": 0.969} ] }, - "@leg-back-left": { - "rotate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "angle": -14.05, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "angle": 13.89, "curve": 0.315, "c4": 0.8}, - {"time": 0.5, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5833, "angle": -12.58, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.75, "angle": 13.89, "curve": 0.315, "c4": 0.8}, - {"time": 0.9167, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1.0833, "angle": -12.58} + "leg-front-left-IK": { + "translate": [ + {"x": 4.88, "y": 20.49, "curve": 0.416, "c2": 0.51, "c3": 0.865}, {"time": 0.0833, "x": 28.75, "y": 34.52, "curve": 0.269, "c2": 0.57, "c3": 0.577}, + {"time": 0.1667, "x": 31.44, "y": 44.28, "curve": 0.461, "c3": 0.543}, {"time": 0.4167, "x": -85.44, "y": 106.83}, + {"time": 0.5167, "x": -87.18, "y": 81.5, "curve": 0.143, "c3": 0.57, "c4": 0.46}, {"time": 0.6667, "x": -21.75, "y": 25.36, "curve": 0, "c2": 0.09, "c3": 0.479, "c4": 0.56}, + {"time": 0.75, "x": 4.88, "y": 20.49} ] }, - "tail": { - "rotate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "angle": 14.79, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "angle": -27.83, "curve": "stepped"}, - {"time": 0.3333, "angle": -27.83, "curve": 0.313, "c3": 0.691}, {"time": 0.5, "angle": 14.79, "curve": "stepped"}, {"time": 0.5833, "angle": 14.79, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.6667, "angle": -27.83, "curve": "stepped"}, {"time": 0.75, "angle": -27.83, "curve": 0.313, "c3": 0.691}, {"time": 0.9167, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 1.0833, "angle": 12.48, "curve": 0.313, "c3": 0.691}, {"time": 1.15, "angle": 9.69, "curve": 0.313, "c3": 0.691}, {"time": 1.2, "angle": 12.48, "curve": 0.161, "c3": 0.854}, - {"time": 1.2333, "angle": 9.69, "curve": 0.161, "c3": 0.854}, {"time": 1.2667, "angle": 12.48, "curve": 0.161, "c3": 0.854}, {"time": 1.3, "angle": 9.69, "curve": 0.161, "c3": 0.854}, - {"time": 1.3333, "angle": 12.48, "curve": 0.161, "c3": 0.854}, {"time": 1.3667, "angle": 9.69, "curve": 0.161, "c3": 0.854}, {"time": 1.4, "angle": 12.48, "curve": 0.161, "c3": 0.854}, - {"time": 1.4333, "angle": 9.69, "curve": 0.161, "c3": 0.854}, {"time": 1.4667, "angle": 12.48, "curve": 0.161, "c3": 0.854}, {"time": 1.5, "angle": 9.69} + "leg-back-left-IK": { + "translate": [ + {"x": 17.64, "y": 16.11, "curve": 0.455, "c2": 0.58, "c3": 0.847}, {"time": 0.0333, "curve": 0, "c2": 0.1, "c3": 0.85}, + {"time": 0.2333, "x": -50.37, "curve": 0, "c2": 0.09, "c3": 0.466, "c4": 0.7}, {"time": 0.3, "x": 11.38, "y": 18.2, "curve": 0.177, "c2": 0.44, "c3": 0.617}, + {"time": 0.5333, "x": 56.74, "y": 103.8, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.6667, "x": 71.93, "y": 112.16, "curve": 0.139, "c3": 0.671, "c4": 0.58}, + {"time": 0.75, "x": 17.64, "y": 16.11} ] }, "@shadow": { "scale": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": 1.1, "y": 1.1, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "x": 0.9, "y": 0.9, "curve": 0.315, "c4": 0.8}, - {"time": 0.5833, "x": 1.1, "y": 1.1, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.75, "x": 0.9, "y": 0.9, "curve": 0.315, "c4": 0.8}, - {"time": 0.9167, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1.0833, "x": 1.05, "y": 1.05}, {"time": 1.15}, {"time": 1.2, "x": 1.05, "y": 1.05}, {"time": 1.25}, - {"time": 1.3, "x": 1.05, "y": 1.05}, {"time": 1.35}, {"time": 1.4, "x": 1.05, "y": 1.05}, {"time": 1.45}, {"time": 1.5, "x": 1.05, "y": 1.05} - ] - }, - "body-fur-8": { - "rotate": [ - {"angle": 5.95, "curve": 0.375, "c2": 0.5, "c3": 0.75}, {"time": 0.0833}, {"time": 0.25, "angle": 30.26, "curve": 0.25, "c3": 0.75}, - {"time": 0.45, "angle": -24.2, "curve": 0.25, "c3": 0.75}, {"time": 0.6167, "angle": 21.17, "curve": 0.25, "c3": 0.75}, {"time": 0.8167, "angle": -32.4, "curve": 0.25, "c3": 0.75}, - {"time": 1.0833, "angle": 24.01, "curve": 0.25, "c3": 0.75}, {"time": 1.25, "angle": -15.47, "curve": 0.25, "c3": 0.75}, - {"time": 1.4167, "angle": 11.9, "curve": 0.25, "c3": 0.625, "c4": 0.5}, {"time": 1.5, "angle": 5.95} + {"curve": 0.313, "c3": 0.699}, {"time": 0.25, "x": 0.94, "y": 0.94, "curve": 0.313, "c3": 0.699}, {"time": 0.4333, "x": 0.8, "y": 0.8, "curve": 0.315, "c4": 0.8}, {"time": 0.75} ] }, - "body-fur-1": { - "rotate": [ - {"angle": 5.95, "curve": 0.375, "c2": 0.5, "c3": 0.75}, {"time": 0.0833}, {"time": 0.25, "angle": 30.26, "curve": 0.25, "c3": 0.75}, - {"time": 0.45, "angle": -24.2, "curve": 0.25, "c3": 0.75}, {"time": 0.6167, "angle": 21.17, "curve": 0.25, "c3": 0.75}, {"time": 0.8167, "angle": -32.4, "curve": 0.25, "c3": 0.75}, - {"time": 1.0833, "angle": 24.01, "curve": 0.25, "c3": 0.75}, {"time": 1.25, "angle": -15.47, "curve": 0.25, "c3": 0.75}, - {"time": 1.4167, "angle": 11.9, "curve": 0.25, "c3": 0.625, "c4": 0.5}, {"time": 1.5, "angle": 5.95} + "@pivot-main": {"scale": [{"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "y": 0.98, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.25}]}, + "@leg-front-right": { + "translate": [ + {"x": -0.64, "y": -13.16, "curve": 0.313, "c3": 0.654, "c4": 0.45}, {"time": 0.1167, "x": -9.39, "y": -16.39, "curve": 0.346, "c2": 0.44, "c3": 0.699}, + {"time": 0.3, "x": -26.29, "y": 12.52, "curve": 0, "c2": 0.18, "c3": 0.424, "c4": 0.59}, {"time": 0.4167, "x": 7.42, "y": -10.53, "curve": 0.316, "c2": 0.49, "c3": 0.751}, + {"time": 0.5833, "x": 37.87, "y": -4.31, "curve": 0.315, "c4": 0.8}, {"time": 0.75, "x": -0.64, "y": -13.16} ] }, - "body-fur-2": { - "rotate": [ - {"angle": 10.34, "curve": 0.303, "c2": 0.24, "c3": 0.674, "c4": 0.69}, {"time": 0.0833, "angle": 2.88, "curve": 0.382, "c2": 0.58, "c3": 0.731}, {"time": 0.1333}, - {"time": 0.3, "angle": 30.26, "curve": 0.25, "c3": 0.75}, {"time": 0.5, "angle": -24.2, "curve": 0.25, "c3": 0.75}, {"time": 0.6667, "angle": 21.17, "curve": 0.25, "c3": 0.75}, - {"time": 0.8667, "angle": -32.4, "curve": 0.25, "c3": 0.75}, {"time": 1.1333, "angle": 24.01, "curve": 0.25, "c3": 0.75}, {"time": 1.3, "angle": -15.47, "curve": 0.25, "c3": 0.75}, - {"time": 1.4667, "angle": 11.9, "curve": 0.284, "c3": 0.625, "c4": 0.38}, {"time": 1.5, "angle": 10.34} - ] + "@leg-back-left": { + "translate": [ + {"x": -4.73, "y": 6.6, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.15, "x": 1.29, "y": -4.22, "curve": 0.44, "c2": 0.55, "c3": 0.858}, + {"time": 0.25, "x": 2.16, "y": 6.49, "curve": 0, "c2": 0.09, "c3": 0.466, "c4": 0.7}, {"time": 0.3, "x": -5.17, "y": 15.67, "curve": 0.218, "c2": 0.39, "c3": 0.738}, + {"time": 0.5333, "x": -14.09, "y": -7.98, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.6667, "x": -12.69, "y": -11.31, "curve": 0.139, "c3": 0.671, "c4": 0.58}, + {"time": 0.75, "x": -4.73, "y": 6.6} + ], + "scale": [{"curve": 0, "c2": 0.1, "c3": 0.457, "c4": 0.54}, {"time": 0.0667, "x": 0.837, "curve": 0.395, "c2": 0.49, "c3": 0.868}, {"time": 0.15}] }, - "body-fur-3": { - "rotate": [ - {"angle": 10.35, "curve": 0.32, "c2": 0.29, "c3": 0.757}, {"time": 0.1333}, {"time": 0.3, "angle": 30.26, "curve": 0.25, "c3": 0.75}, - {"time": 0.5, "angle": -24.2, "curve": 0.25, "c3": 0.75}, {"time": 0.6667, "angle": 21.17, "curve": 0.25, "c3": 0.75}, {"time": 0.8667, "angle": -32.4, "curve": 0.25, "c3": 0.75}, - {"time": 1.1333, "angle": 24.01, "curve": 0.25, "c3": 0.75}, {"time": 1.3, "angle": -15.47, "curve": 0.25, "c3": 0.75}, - {"time": 1.4667, "angle": 11.9, "curve": 0.284, "c3": 0.625, "c4": 0.38}, {"time": 1.5, "angle": 10.35} + "leg-front-right-IK": { + "translate": [ + {"curve": 0.313, "c3": 0.699}, {"time": 0.25, "x": 52.85, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.4833, "x": -85.89, "y": 125.19}, + {"time": 0.5833, "x": -87.57, "y": 110.89, "curve": 0.154, "c4": 0.9}, {"time": 0.75} ] }, - "body-fur-4": { - "rotate": [ - {"angle": 10.73, "curve": 0.36, "c2": 0.64, "c3": 0.695}, {"time": 0.0167, "angle": 11.9, "curve": 0.243, "c3": 0.655, "c4": 0.63}, - {"time": 0.1333, "angle": 2.88, "curve": 0.382, "c2": 0.58, "c3": 0.731}, {"time": 0.1833}, {"time": 0.35, "angle": 30.26, "curve": 0.25, "c3": 0.75}, - {"time": 0.55, "angle": -24.2, "curve": 0.25, "c3": 0.75}, {"time": 0.7167, "angle": 21.17, "curve": 0.25, "c3": 0.75}, {"time": 0.9167, "angle": -32.4, "curve": 0.25, "c3": 0.75}, - {"time": 1.1833, "angle": 24.01, "curve": 0.25, "c3": 0.75}, {"time": 1.35, "angle": -15.47, "curve": 0.245, "c3": 0.711, "c4": 0.83}, {"time": 1.5, "angle": 10.73} - ] + "@body3": { + "rotate": [{"angle": -14, "curve": 0.25, "c3": 0.75}, {"time": 0.3667, "curve": 0.25, "c3": 0.75}, {"time": 0.75, "angle": -14}], + "translate": [{"x": 34.51, "y": -19.31, "curve": 0.25, "c3": 0.75}, {"time": 0.3667, "x": 1.97, "y": -12.02, "curve": 0.25, "c3": 0.75}, {"time": 0.75, "x": 34.51, "y": -19.31}] }, - "body-fur-5": { - "rotate": [ - {"angle": 7.52, "curve": 0.363, "c2": 0.44, "c3": 0.755}, {"time": 0.1, "curve": 0.25, "c3": 0.75}, {"time": 0.2667, "angle": 30.26, "curve": 0.25, "c3": 0.75}, - {"time": 0.4667, "angle": -24.2, "curve": 0.25, "c3": 0.75}, {"time": 0.6333, "angle": 21.17, "curve": 0.25, "c3": 0.75}, {"time": 0.8333, "angle": -32.4, "curve": 0.25, "c3": 0.75}, - {"time": 1.1, "angle": 24.01, "curve": 0.25, "c3": 0.75}, {"time": 1.2667, "angle": -15.47, "curve": 0.25, "c3": 0.75}, - {"time": 1.4333, "angle": 11.9, "curve": 0.258, "c3": 0.619, "c4": 0.45}, {"time": 1.5, "angle": 7.52} - ] + "@body4": { + "rotate": [{"angle": 9.83, "curve": 0.25, "c3": 0.75}, {"time": 0.3667, "angle": -2.66, "curve": 0.25, "c3": 0.75}, {"time": 0.75, "angle": 9.83}], + "translate": [{"x": 25.02, "y": -10.92, "curve": 0.25, "c3": 0.75}, {"time": 0.3667, "x": 0.59, "y": -3.61, "curve": 0.25, "c3": 0.75}, {"time": 0.75, "x": 25.02, "y": -10.92}] }, - "body-fur-6": { - "rotate": [ - {"angle": 11.4, "curve": 0.277, "c2": 0.14, "c3": 0.667, "c4": 0.67}, {"time": 0.1, "angle": 2.88, "curve": 0.382, "c2": 0.58, "c3": 0.731}, {"time": 0.15, "curve": 0.25, "c3": 0.75}, - {"time": 0.3167, "angle": 30.26, "curve": 0.25, "c3": 0.75}, {"time": 0.5167, "angle": -24.2, "curve": 0.25, "c3": 0.75}, {"time": 0.6833, "angle": 21.17, "curve": 0.25, "c3": 0.75}, - {"time": 0.8833, "angle": -32.4, "curve": 0.25, "c3": 0.75}, {"time": 1.15, "angle": 24.01, "curve": 0.25, "c3": 0.75}, {"time": 1.3167, "angle": -15.47, "curve": 0.25, "c3": 0.75}, - {"time": 1.4833, "angle": 11.9, "curve": 0.305, "c3": 0.64, "c4": 0.36}, {"time": 1.5, "angle": 11.4} - ] + "@body6": { + "rotate": [{"angle": 15.47, "curve": 0.25, "c3": 0.75}, {"time": 0.3667, "curve": 0.25, "c3": 0.75}, {"time": 0.75, "angle": 15.47}], + "translate": [{"x": -17.06, "y": -1.14, "curve": 0.25, "c3": 0.75}, {"time": 0.3667, "x": -13.78, "y": 7.8, "curve": 0.25, "c3": 0.75}, {"time": 0.75, "x": -17.06, "y": -1.14}] }, - "body-fur-7": { - "rotate": [ - {"angle": 4.38, "curve": 0.381, "c2": 0.55, "c3": 0.742}, {"time": 0.0667, "curve": 0.25, "c3": 0.75}, {"time": 0.2333, "angle": 30.26, "curve": 0.25, "c3": 0.75}, - {"time": 0.4333, "angle": -24.2, "curve": 0.25, "c3": 0.75}, {"time": 0.6, "angle": 21.17, "curve": 0.25, "c3": 0.75}, {"time": 0.8, "angle": -32.4, "curve": 0.25, "c3": 0.75}, - {"time": 1.0667, "angle": 24.01, "curve": 0.25, "c3": 0.75}, {"time": 1.2333, "angle": -15.47, "curve": 0.25, "c3": 0.75}, - {"time": 1.4, "angle": 11.9, "curve": 0.245, "c3": 0.637, "c4": 0.56}, {"time": 1.5, "angle": 4.38} - ] + "body-braid2": {"rotate": [{"angle": 9.33, "curve": 0.25, "c3": 0.75}, {"time": 0.3667, "curve": 0.25, "c3": 0.75}, {"time": 0.75, "angle": 9.33}]}, + "body-braid4": {"rotate": [{"angle": 11.24, "curve": 0.25, "c3": 0.75}, {"time": 0.3667, "curve": 0.25, "c3": 0.75}, {"time": 0.75, "angle": 11.24}]}, + "body-braid3": {"rotate": [{"angle": 17.05, "curve": 0.25, "c3": 0.75}, {"time": 0.3667, "curve": 0.25, "c3": 0.75}, {"time": 0.75, "angle": 17.05}]}, + "@body2": { + "rotate": [{"angle": -10.03, "curve": 0.25, "c3": 0.75}, {"time": 0.3667, "curve": 0.25, "c3": 0.75}, {"time": 0.75, "angle": -10.03}], + "translate": [{"x": 2.83, "y": 6.92, "curve": 0.25, "c3": 0.75}, {"time": 0.3667, "x": 2.96, "y": -18.03, "curve": 0.25, "c3": 0.75}, {"time": 0.75, "x": 2.83, "y": 6.92}] }, - "body-fur-9": { - "rotate": [ - {"angle": 10.34, "curve": 0.303, "c2": 0.24, "c3": 0.674, "c4": 0.69}, {"time": 0.0833, "angle": 2.88, "curve": 0.382, "c2": 0.58, "c3": 0.731}, {"time": 0.1333}, - {"time": 0.3, "angle": 30.26, "curve": 0.25, "c3": 0.75}, {"time": 0.5, "angle": -24.2, "curve": 0.25, "c3": 0.75}, {"time": 0.6667, "angle": 21.17, "curve": 0.25, "c3": 0.75}, - {"time": 0.8667, "angle": -32.4, "curve": 0.25, "c3": 0.75}, {"time": 1.1333, "angle": 24.01, "curve": 0.25, "c3": 0.75}, {"time": 1.3, "angle": -15.47, "curve": 0.25, "c3": 0.75}, - {"time": 1.4667, "angle": 11.9, "curve": 0.284, "c3": 0.625, "c4": 0.38}, {"time": 1.5, "angle": 10.34} - ] - } + "body-braid6": {"rotate": [{"angle": 2.13, "curve": 0.25, "c3": 0.75}, {"time": 0.3667, "curve": 0.25, "c3": 0.75}, {"time": 0.75, "angle": 2.13}]}, + "body-braid5": {"rotate": [{"angle": 19.81, "curve": 0.25, "c3": 0.75}, {"time": 0.3667, "angle": 7.07, "curve": 0.25, "c3": 0.75}, {"time": 0.75, "angle": 19.81}]}, + "body-braid": {"rotate": [{"angle": 10.92, "curve": 0.25, "c3": 0.75}, {"time": 0.3667, "curve": 0.25, "c3": 0.75}, {"time": 0.75, "angle": 10.92}]} } }, - "922484181": { - "slots": {"eyes": {"attachment": [{"time": 0.05, "name": "eyes-happy"}, {"time": 0.7667, "name": "eyes"}]}}, + "4163974862": { + "slots": { + "eyes": { + "attachment": [ + {"time": 0.05, "name": "eyes-angry"}, {"time": 0.3333, "name": "eyes-shut"}, {"time": 0.4333, "name": "eyes-angry"}, {"time": 1.0833, "name": "eyes-shut"}, + {"time": 1.1667, "name": "eyes-angry"}, {"time": 1.2833, "name": "eyes"} + ] + }, + "mouth": {"attachment": [{"time": 0.05, "name": "mouth-bite"}, {"time": 0.4333, "name": "mouth-open"}, {"time": 0.9167, "name": "mouth-bite"}, {"time": 1.2833, "name": "mouth"}]} + }, "bones": { "@pivot-back": { - "rotate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "angle": -5.76, "curve": 0.306, "c3": 0.695}, {"time": 0.6667, "angle": -6.67, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.8333, "angle": 2.85, "curve": 0.306, "c3": 0.695}, {"time": 1} - ], + "rotate": [{"curve": 0, "c2": 0.3, "c3": 0.546}, {"time": 0.0833, "angle": 6, "curve": 0, "c2": 0.2, "c3": 0.828}, {"time": 0.1667}], "translate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": -11.96, "y": -12.91, "curve": 0.306, "c3": 0.695}, - {"time": 0.6667, "x": -17.52, "y": -16.38, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.8333} + {"curve": 0, "c2": 0.3, "c3": 0.546}, {"time": 0.0833, "y": 5, "curve": 0.313, "c3": 0.699}, {"time": 0.1667, "y": 220, "curve": 0.617, "c4": 0.6}, {"time": 0.3333, "y": 10}, + {"time": 0.4167, "y": 5, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5833, "y": 420, "curve": 0.852, "c4": 0.1}, {"time": 0.9167}, + {"time": 1.0833, "y": -5, "curve": 0, "c2": 0.17, "c3": 0.461, "c4": 0.62}, {"time": 1.2167, "y": 130, "curve": 0.353, "c2": 0.54, "c3": 0.751}, {"time": 1.3333} ] }, - "@leg-front-left": { + "@leg-front-right": {"translate": [{"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "x": -2.46, "y": -27.89, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.1167}]}, + "@leg-front-left": {"translate": [{"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "x": -1.21, "y": -13.68, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.1167}]}, + "@pivot-center": { + "rotate": [ + {"time": 0.1167, "curve": 0.313, "c3": 0.817}, {"time": 0.3333, "angle": 180, "curve": "stepped"}, {"time": 0.4167, "angle": 180, "curve": 0.313, "c3": 0.699}, + {"time": 0.6667, "angle": -1, "curve": 0.837, "c4": 0.2}, {"time": 0.9167, "angle": 178}, {"time": 1.0833, "angle": 180, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1.3333} + ] + }, + "leg-front-left-IK": { "translate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": -20.02, "y": -2.36, "curve": "stepped"}, {"time": 0.6667, "x": -20.02, "y": -2.36, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.8333, "x": 5.31, "y": -7.32, "curve": 0.306, "c3": 0.695}, {"time": 1} + {"time": 0.0833, "curve": 0.344, "c3": 0.715, "c4": 0.45}, {"time": 0.1167, "x": 22.19, "y": 83.99, "curve": 0.589, "c2": 0.35, "c4": 0.75}, + {"time": 0.1667, "x": -165.12, "y": 255.89, "curve": 0.313, "c3": 0.699}, {"time": 0.25, "x": -364.32, "y": 423.37, "curve": 0.474, "c3": 0.714, "c4": 0.56}, + {"time": 0.3, "x": -274.03, "y": 604.29, "curve": 0.306, "c2": 0.39, "c3": 0.628, "c4": 0.74}, {"time": 0.3167, "x": -203.26, "y": 613.41, "curve": 0.287, "c2": 0.62, "c3": 0.612}, + {"time": 0.3333, "x": -115.04, "y": 530.7}, {"time": 0.4167, "x": -102.69, "y": 520.45, "curve": 0, "c2": 0.17, "c3": 0.45, "c4": 0.61}, + {"time": 0.5, "x": -305.1, "y": 703.14, "curve": 0.323, "c2": 0.4, "c3": 0.681, "c4": 0.77}, {"time": 0.55, "x": -336.85, "y": 585.78, "curve": 0.377, "c2": 0.62, "c3": 0.724}, + {"time": 0.5833, "x": -216.34, "y": 437.28}, {"time": 0.6667, "x": 11.35, "y": 419.36}, {"time": 0.75, "x": 26.13, "y": 414.75, "curve": 0.255, "c3": 0.659, "c4": 0.47}, + {"time": 0.8333, "x": 100.23, "y": 427.06, "curve": 0.41, "c2": 0.34, "c3": 0.774, "c4": 0.71}, + {"time": 0.8833, "x": 125.45, "y": 421.05, "curve": 0.427, "c2": 0.37, "c3": 0.767, "c4": 0.71}, {"time": 0.9, "x": 143.46, "y": 449.77, "curve": 0.649, "c2": 0.4, "c4": 0.74}, + {"time": 0.9167, "x": -129.39, "y": 531.23}, {"time": 1.0833, "x": -166.91, "y": 529.28, "curve": 0, "c2": 0.17, "c3": 0.45, "c4": 0.61}, + {"time": 1.15, "x": 157.54, "y": 410.06, "curve": 0.345, "c2": 0.53, "c3": 0.751}, {"time": 1.2167, "x": 137.64, "y": 261.68, "curve": 0, "c2": 0.1, "c3": 0.769}, {"time": 1.3333} ] }, - "@leg-front-right": { + "leg-front-right-IK": { "translate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": -36.67, "y": 20.01, "curve": 0.306, "c3": 0.695}, - {"time": 0.6667, "x": -44.17, "y": 20.3, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.8333, "x": -12.71, "y": -17.14, "curve": 0.306, "c3": 0.695}, {"time": 1} + {"time": 0.0833, "curve": 0.344, "c3": 0.715, "c4": 0.45}, {"time": 0.1167, "x": 45.96, "y": 58.25, "curve": 0.589, "c2": 0.35, "c4": 0.75}, + {"time": 0.1667, "x": -111.07, "y": 374.1, "curve": 0.313, "c3": 0.699}, {"time": 0.25, "x": 60.97, "y": 722.95, "curve": 0.474, "c3": 0.714, "c4": 0.56}, + {"time": 0.3, "x": 367.83, "y": 715.56, "curve": 0.306, "c2": 0.39, "c3": 0.628, "c4": 0.74}, {"time": 0.3167, "x": 468.42, "y": 646.75, "curve": 0.287, "c2": 0.62, "c3": 0.612}, + {"time": 0.3333, "x": 542.05, "y": 517.52}, {"time": 0.4167, "x": 553.82, "y": 507.31, "curve": 0, "c2": 0.17, "c3": 0.45, "c4": 0.61}, + {"time": 0.5, "x": 285.49, "y": 934.13, "curve": 0.323, "c2": 0.4, "c3": 0.681, "c4": 0.77}, {"time": 0.55, "x": -20.04, "y": 918.42, "curve": 0.377, "c2": 0.62, "c3": 0.724}, + {"time": 0.5833, "x": -78.72, "y": 674.67, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.6667, "x": 25.22, "y": 422.18}, + {"time": 0.75, "x": 10.31, "y": 400.68, "curve": 0.255, "c3": 0.659, "c4": 0.47}, {"time": 0.8333, "x": 73, "y": 312.24, "curve": 0.41, "c2": 0.34, "c3": 0.774, "c4": 0.71}, + {"time": 0.8833, "x": 225.18, "y": 186.58, "curve": 0.427, "c2": 0.37, "c3": 0.767, "c4": 0.71}, {"time": 0.9, "x": 378.84, "y": 152.84, "curve": 0.649, "c2": 0.4, "c4": 0.74}, + {"time": 0.9167, "x": 502.23, "y": 516.62}, {"time": 1.0833, "x": 469.43, "y": 521.94, "curve": 0, "c2": 0.17, "c3": 0.45, "c4": 0.61}, + {"time": 1.15, "x": 550, "y": 107.14, "curve": 0.345, "c2": 0.53, "c3": 0.751}, {"time": 1.2167, "x": 250.59, "y": 12.79, "curve": 0.313, "c3": 0.699}, {"time": 1.3333} ] }, - "@leg-back-left": { + "leg-back-left-IK": { "translate": [ - {"time": 0.1667, "curve": 0.306, "c3": 0.695}, {"time": 0.6667, "x": -4.62, "y": -2.21, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.8333, "x": -0.1, "y": -3.16, "curve": 0.306, "c3": 0.695}, {"time": 1} + {"time": 0.0833, "curve": 0.344, "c3": 0.715, "c4": 0.45}, {"time": 0.1167, "x": 23.75, "y": 96.58, "curve": 0.589, "c2": 0.35, "c4": 0.75}, + {"time": 0.1667, "x": -126.55, "y": 141.22, "curve": 0.313, "c3": 0.699}, {"time": 0.25, "x": -571.89, "y": 258.37, "curve": 0.474, "c3": 0.714, "c4": 0.56}, + {"time": 0.3, "x": -602.89, "y": 515.39, "curve": 0.306, "c2": 0.39, "c3": 0.628, "c4": 0.74}, {"time": 0.3167, "x": -538.79, "y": 573.94, "curve": 0.287, "c2": 0.62, "c3": 0.612}, + {"time": 0.3333, "x": -474.1, "y": 527.44}, {"time": 0.4167, "x": -458.69, "y": 526.95, "curve": 0, "c2": 0.6, "c3": 0.237}, + {"time": 0.5, "x": -624.02, "y": 521.86, "curve": 0.323, "c2": 0.4, "c3": 0.681, "c4": 0.77}, {"time": 0.55, "x": -470.84, "y": 346.72, "curve": 0.377, "c2": 0.62, "c3": 0.724}, + {"time": 0.5833, "x": -254.14, "y": 306.12}, {"time": 0.6667, "x": 17.58, "y": 427.51}, {"time": 0.75, "x": 20.37, "y": 430.65, "curve": 0.255, "c3": 0.659, "c4": 0.47}, + {"time": 0.8333, "x": 84.18, "y": 482.77, "curve": 0.41, "c2": 0.34, "c3": 0.774, "c4": 0.71}, + {"time": 0.8833, "x": 65.79, "y": 538.52, "curve": 0.427, "c2": 0.37, "c3": 0.767, "c4": 0.71}, {"time": 0.9, "x": 34.2, "y": 602.88, "curve": 0.649, "c2": 0.4, "c4": 0.74}, + {"time": 0.9167, "x": -511.21, "y": 519.18}, {"time": 1.0833, "x": -529.98, "y": 503.54, "curve": 0, "c2": 0.17, "c3": 0.45, "c4": 0.61}, + {"time": 1.15, "x": -49.15, "y": 566.82, "curve": 0.345, "c2": 0.53, "c3": 0.751}, {"time": 1.2167, "x": 72.06, "y": 381.52, "curve": 0, "c2": 0.1, "c3": 0.769}, {"time": 1.3333} ] }, "tail": { "rotate": [ - {"curve": 0, "c2": 0.3, "c3": 0.54}, {"time": 0.1667, "angle": -11.59, "curve": 0.306, "c3": 0.695}, {"time": 0.4167, "angle": 2.75, "curve": 0.306, "c3": 0.695}, - {"time": 0.6667, "angle": -13.32, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.8333, "angle": 15.71, "curve": 0.306, "c3": 0.695}, {"time": 1} + {"curve": 0, "c2": 0.3, "c3": 0.546}, {"time": 0.0833, "angle": 19.35, "curve": 0.313, "c3": 0.699}, {"time": 0.1667, "angle": -22.95, "curve": 0.617, "c4": 0.6}, + {"time": 0.3333, "angle": 22.22}, {"time": 0.4167, "angle": 24.08, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5833, "angle": -30.94, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.6667, "angle": 18.1, "curve": 0.313, "c3": 0.699}, {"time": 0.8333, "angle": -20.52, "curve": 0.464, "c4": 0.7}, {"time": 0.9167, "angle": 16.35}, + {"time": 1.0833, "angle": 20.35, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1.2167, "angle": -9.93, "curve": 0.161, "c3": 0.854}, {"time": 1.3333} ] }, "@shadow": { "scale": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": 0.96, "y": 0.96}, {"time": 0.6667, "x": 0.94, "y": 0.94, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.8333, "x": 1.06, "y": 1.06, "curve": 0.306, "c3": 0.695}, {"time": 1} + {"curve": 0, "c2": 0.3, "c3": 0.546}, {"time": 0.0833, "x": 1.1, "y": 1.1, "curve": 0.313, "c3": 0.699}, {"time": 0.1667, "x": 0.92, "y": 0.92, "curve": 0.617, "c4": 0.6}, + {"time": 0.3333, "x": 1.12, "y": 1.12}, {"time": 0.4167, "x": 1.16, "y": 1.16, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5833, "x": 0.86, "y": 0.86, "curve": 0.752, "c4": 0.2}, + {"time": 0.9167, "x": 1.12, "y": 1.12}, {"time": 1.0833, "x": 1.16, "y": 1.16, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1.3333} ] }, - "body-fur-2": { + "@pivot-main": {"scale": [{"time": 0.3333, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.4167, "y": 0.9, "curve": 0, "c2": 0.3, "c3": 0.546}, {"time": 0.5}]}, + "@body3": { "rotate": [ - {"angle": -17.34, "curve": 0.36, "c2": 0.64, "c3": 0.695}, {"time": 0.0167, "angle": -18.47, "curve": 0.243, "c3": 0.655, "c4": 0.63}, - {"time": 0.1333, "angle": -4.47, "curve": 0.382, "c2": 0.58, "c3": 0.731}, {"time": 0.1833}, {"time": 0.35, "angle": -21.07, "curve": 0.25, "c3": 0.75}, - {"time": 0.5167, "angle": 10.1, "curve": 0.25, "c3": 0.75}, {"time": 0.6833, "angle": -22.23, "curve": 0.25, "c3": 0.75}, - {"time": 0.85, "angle": 8, "curve": 0.245, "c3": 0.711, "c4": 0.83}, {"time": 1, "angle": 13.84} + {"angle": -1.2, "curve": 0.369, "c2": 0.63, "c3": 0.707}, {"time": 0.0333, "curve": 0.25, "c3": 0.75}, {"time": 0.1833, "angle": -3.77, "curve": 0.25, "c3": 0.75}, + {"time": 0.55, "angle": -14, "curve": 0.25, "c3": 0.75}, {"time": 0.9333, "angle": -3.77, "curve": 0.25, "c3": 0.75}, + {"time": 1.15, "angle": -14, "curve": 0.244, "c3": 0.693, "c4": 0.76}, {"time": 1.3333, "angle": -1.2} + ], + "translate": [ + {"time": 0.15, "curve": 0.25, "c3": 0.75}, {"time": 0.5167, "x": 45.36, "y": -33.56, "curve": 0.25, "c3": 0.75}, {"time": 0.9, "curve": 0.25, "c3": 0.75}, + {"time": 1.1167, "x": 55.89, "y": -22.18, "curve": 0.25, "c3": 0.75}, {"time": 1.3333} ] }, - "body-fur-9": { + "@body4": { "rotate": [ - {"angle": -16.05, "curve": 0.303, "c2": 0.24, "c3": 0.674, "c4": 0.69}, {"time": 0.0833, "angle": -4.47, "curve": 0.382, "c2": 0.58, "c3": 0.731}, - {"time": 0.1333, "curve": 0.25, "c3": 0.75}, {"time": 0.3, "angle": -21.07, "curve": 0.25, "c3": 0.75}, {"time": 0.4667, "angle": 10.1, "curve": 0.25, "c3": 0.75}, - {"time": 0.6333, "angle": -22.23, "curve": 0.25, "c3": 0.75}, {"time": 0.8, "angle": 8, "curve": 0.25, "c3": 0.75}, - {"time": 0.9667, "angle": -18.47, "curve": 0.284, "c3": 0.625, "c4": 0.38}, {"time": 1, "angle": 6.86} + {"angle": 1.11, "curve": 0.378, "c2": 0.61, "c3": 0.721}, {"time": 0.05, "curve": 0.25, "c3": 0.75}, {"time": 0.2, "angle": -15.35, "curve": 0.25, "c3": 0.75}, + {"time": 0.5667, "angle": 14.26, "curve": 0.25, "c3": 0.75}, {"time": 0.95, "angle": -15.35, "curve": 0.25, "c3": 0.75}, + {"time": 1.1667, "angle": 6.8, "curve": 0.242, "c3": 0.671, "c4": 0.68}, {"time": 1.3333, "angle": 1.11} + ], + "translate": [ + {"curve": 0.25, "c3": 0.75}, {"time": 0.15, "x": -1.59, "y": 23.93, "curve": 0.25, "c3": 0.75}, {"time": 0.5167, "x": 6.55, "y": -29.78, "curve": 0.25, "c3": 0.75}, + {"time": 0.9, "x": -1.59, "y": 23.93, "curve": 0.25, "c3": 0.75}, {"time": 1.1167, "x": 33.54, "y": -3.13, "curve": 0.25, "c3": 0.75}, {"time": 1.3333} ] }, - "body-fur-8": { + "@body6": { "rotate": [ - {"angle": -9.23, "curve": 0.375, "c2": 0.5, "c3": 0.75}, {"time": 0.0833}, {"time": 0.25, "angle": -21.07, "curve": 0.25, "c3": 0.75}, - {"time": 0.4167, "angle": 10.1, "curve": 0.25, "c3": 0.75}, {"time": 0.5833, "angle": -22.23, "curve": 0.25, "c3": 0.75}, {"time": 0.75, "angle": 8, "curve": 0.25, "c3": 0.75}, - {"time": 0.9167, "angle": -18.47, "curve": 0.25, "c3": 0.625, "c4": 0.5}, {"time": 1, "angle": -0.91} + {"angle": 13.7, "curve": 0.354, "c2": 0.4, "c3": 0.702, "c4": 0.79}, {"time": 0.0667, "angle": 2.66, "curve": 0.369, "c2": 0.63, "c3": 0.707}, {"time": 0.1, "curve": 0.25, "c3": 0.75}, + {"time": 0.25, "angle": -5.24, "curve": 0.25, "c3": 0.75}, {"time": 0.6167, "angle": 25.77, "curve": 0.25, "c3": 0.75}, {"time": 1, "angle": -5.24, "curve": 0.25, "c3": 0.75}, + {"time": 1.2167, "angle": 30.87, "curve": 0.248, "c3": 0.629, "c4": 0.52}, {"time": 1.3333, "angle": 13.7} + ], + "translate": [ + {"x": -12.16, "y": -6.65, "curve": 0.382, "c2": 0.58, "c3": 0.732}, {"time": 0.0667, "curve": 0.25, "c3": 0.75}, {"time": 0.2167, "x": 5.81, "y": -4.07, "curve": 0.25, "c3": 0.75}, + {"time": 0.5833, "x": -70.52, "y": 35.61, "curve": 0.25, "c3": 0.75}, {"time": 0.9667, "x": 5.81, "y": -4.07, "curve": 0.25, "c3": 0.75}, + {"time": 1.1833, "x": -48.3, "y": -26.4, "curve": 0.243, "c3": 0.654, "c4": 0.62}, {"time": 1.3333, "x": -12.16, "y": -6.65} ] }, - "body-fur-7": { + "body-braid2": { "rotate": [ - {"angle": -2.4, "curve": 0.375, "c2": 0.62, "c3": 0.716}, {"time": 0.0333, "curve": 0.25, "c3": 0.75}, {"time": 0.2, "angle": -21.07, "curve": 0.25, "c3": 0.75}, - {"time": 0.3667, "angle": 10.1, "curve": 0.25, "c3": 0.75}, {"time": 0.5333, "angle": -22.23, "curve": 0.25, "c3": 0.75}, {"time": 0.7, "angle": 8, "curve": 0.25, "c3": 0.75}, - {"time": 0.8667, "angle": -18.47, "curve": 0.243, "c3": 0.68, "c4": 0.71}, {"time": 1, "angle": 2.91} + {"curve": 0.25, "c3": 0.75}, {"time": 0.15, "angle": -1.43, "curve": 0.25, "c3": 0.75}, {"time": 0.5167, "angle": 20.83, "curve": 0.25, "c3": 0.75}, + {"time": 0.9, "angle": -1.43, "curve": 0.25, "c3": 0.75}, {"time": 1.1167, "angle": 20.83, "curve": 0.25, "c3": 0.75}, {"time": 1.3333} ] }, - "body-fur-6": { + "body-braid4": { "rotate": [ - {"angle": -13.95, "curve": 0.321, "c2": 0.3, "c3": 0.679, "c4": 0.7}, {"time": 0.0667, "angle": -4.47, "curve": 0.382, "c2": 0.58, "c3": 0.731}, {"time": 0.1167}, - {"time": 0.2833, "angle": -21.07, "curve": 0.25, "c3": 0.75}, {"time": 0.45, "angle": 10.1, "curve": 0.25, "c3": 0.75}, {"time": 0.6167, "angle": -22.23, "curve": 0.25, "c3": 0.75}, - {"time": 0.7833, "angle": 8, "curve": 0.25, "c3": 0.75}, {"time": 0.95, "angle": -18.47, "curve": 0.269, "c3": 0.618, "c4": 0.42}, {"time": 1, "angle": 13.33} + {"angle": 12.33, "curve": 0.378, "c2": 0.52, "c3": 0.747}, {"time": 0.1, "curve": 0.25, "c3": 0.75}, {"time": 0.25, "angle": -11.53, "curve": 0.25, "c3": 0.75}, + {"time": 0.6167, "angle": 27.46, "curve": 0.25, "c3": 0.75}, {"time": 1, "angle": -11.53, "curve": 0.25, "c3": 0.75}, + {"time": 1.2167, "angle": 27.46, "curve": 0.248, "c3": 0.629, "c4": 0.52}, {"time": 1.3333, "angle": 12.33} ] }, - "body-fur-5": { + "body-braid3": { "rotate": [ - {"angle": -6.79, "curve": 0.381, "c2": 0.55, "c3": 0.742}, {"time": 0.0667}, {"time": 0.2333, "angle": -21.07, "curve": 0.25, "c3": 0.75}, - {"time": 0.4, "angle": 10.1, "curve": 0.25, "c3": 0.75}, {"time": 0.5667, "angle": -22.23, "curve": 0.25, "c3": 0.75}, {"time": 0.7333, "angle": 8, "curve": 0.25, "c3": 0.75}, - {"time": 0.9, "angle": -18.47, "curve": 0.245, "c3": 0.637, "c4": 0.56}, {"time": 1, "angle": 6.86} + {"angle": 2.86, "curve": 0.369, "c2": 0.63, "c3": 0.707}, {"time": 0.0333, "curve": 0.25, "c3": 0.75}, {"time": 0.1833, "angle": -8.3, "curve": 0.25, "c3": 0.75}, + {"time": 0.55, "angle": 33.27, "curve": 0.25, "c3": 0.75}, {"time": 0.9333, "angle": -8.3, "curve": 0.25, "c3": 0.75}, + {"time": 1.15, "angle": 33.27, "curve": 0.244, "c3": 0.693, "c4": 0.76}, {"time": 1.3333, "angle": 2.86} ] }, - "body-fur-4": { + "@body2": { "rotate": [ - {"angle": -17.69, "curve": 0.277, "c2": 0.14, "c3": 0.667, "c4": 0.67}, {"time": 0.1, "angle": -4.47, "curve": 0.382, "c2": 0.58, "c3": 0.731}, {"time": 0.15}, - {"time": 0.3167, "angle": -21.07, "curve": 0.25, "c3": 0.75}, {"time": 0.4833, "angle": 10.1, "curve": 0.25, "c3": 0.75}, {"time": 0.65, "angle": -22.23, "curve": 0.25, "c3": 0.75}, - {"time": 0.8167, "angle": 8, "curve": 0.25, "c3": 0.75}, {"time": 0.9833, "angle": -18.47, "curve": 0.305, "c3": 0.64, "c4": 0.36}, {"time": 1, "angle": 12.53} + {"angle": -4.72, "curve": 0.382, "c2": 0.58, "c3": 0.732}, {"time": 0.0667, "curve": 0.25, "c3": 0.75}, {"time": 0.2167, "angle": 7.45, "curve": 0.25, "c3": 0.75}, + {"time": 0.5833, "angle": -18.73, "curve": 0.25, "c3": 0.75}, {"time": 0.9667, "angle": 7.45, "curve": 0.25, "c3": 0.75}, + {"time": 1.1833, "angle": -18.73, "curve": 0.243, "c3": 0.654, "c4": 0.62}, {"time": 1.3333, "angle": -4.72} + ], + "translate": [ + {"curve": 0.25, "c3": 0.75}, {"time": 0.15, "x": -0.08, "y": 1.15, "curve": 0.25, "c3": 0.75}, {"time": 0.5167, "x": 4.59, "y": -41.28, "curve": 0.25, "c3": 0.75}, + {"time": 0.9, "x": -0.08, "y": 1.15, "curve": 0.25, "c3": 0.75}, {"time": 1.1167, "x": 15.54, "y": -40.86, "curve": 0.25, "c3": 0.75}, {"time": 1.3333} ] }, - "body-fur-3": { + "body-braid6": { "rotate": [ - {"angle": -11.67, "curve": 0.363, "c2": 0.44, "c3": 0.755}, {"time": 0.1}, {"time": 0.2667, "angle": -21.07, "curve": 0.25, "c3": 0.75}, - {"time": 0.4333, "angle": 10.1, "curve": 0.25, "c3": 0.75}, {"time": 0.6, "angle": -22.23, "curve": 0.25, "c3": 0.75}, {"time": 0.7667, "angle": 8, "curve": 0.25, "c3": 0.75}, - {"time": 0.9333, "angle": -18.47, "curve": 0.258, "c3": 0.619, "c4": 0.45}, {"time": 1, "angle": 5.54} + {"angle": 13.73, "curve": 0.346, "c2": 0.38, "c3": 0.757}, {"time": 0.15, "curve": 0.25, "c3": 0.75}, {"time": 0.3, "angle": -20.17, "curve": 0.25, "c3": 0.75}, + {"time": 0.6667, "angle": 18.35, "curve": 0.25, "c3": 0.75}, {"time": 1.05, "angle": -20.17, "curve": 0.25, "c3": 0.75}, + {"time": 1.2667, "angle": 18.35, "curve": 0.268, "c3": 0.618, "c4": 0.42}, {"time": 1.3333, "angle": 13.73} ] }, - "body-fur-1": { + "body-braid5": { "rotate": [ - {"angle": -16.07, "curve": 0.32, "c2": 0.29, "c3": 0.757}, {"time": 0.1333, "curve": 0.25, "c3": 0.75}, {"time": 0.3, "angle": -21.07, "curve": 0.25, "c3": 0.75}, - {"time": 0.4667, "angle": 10.1, "curve": 0.25, "c3": 0.75}, {"time": 0.6333, "angle": -22.23, "curve": 0.25, "c3": 0.75}, {"time": 0.8, "angle": 8, "curve": 0.25, "c3": 0.75}, - {"time": 0.9667, "angle": -18.47, "curve": 0.284, "c3": 0.625, "c4": 0.38}, {"time": 1, "angle": 10.51} + {"angle": 9.07, "curve": 0.382, "c2": 0.58, "c3": 0.732}, {"time": 0.0667, "curve": 0.25, "c3": 0.75}, {"time": 0.2167, "angle": -7.27, "curve": 0.25, "c3": 0.75}, + {"time": 0.5833, "angle": 36.02, "curve": 0.25, "c3": 0.75}, {"time": 0.9667, "angle": -7.27, "curve": 0.25, "c3": 0.75}, + {"time": 1.1833, "angle": 36.02, "curve": 0.243, "c3": 0.654, "c4": 0.62}, {"time": 1.3333, "angle": 9.07} + ] + }, + "body-braid": { + "rotate": [ + {"angle": 0.59, "curve": 0.355, "c2": 0.65, "c3": 0.689}, {"time": 0.0167, "curve": 0.25, "c3": 0.75}, {"time": 0.1667, "angle": -2.68, "curve": 0.25, "c3": 0.75}, + {"time": 0.5333, "angle": 22.42, "curve": 0.25, "c3": 0.75}, {"time": 0.9167, "angle": -2.68, "curve": 0.25, "c3": 0.75}, + {"time": 1.1333, "angle": 22.42, "curve": 0.246, "c3": 0.719, "c4": 0.87}, {"time": 1.3333, "angle": 0.59} ] } }, - "events": [{"time": 0.1667, "name": "hit-buff"}] + "events": [{"time": 0.4333, "name": "jump"}, {"time": 0.8333, "name": "start-attack"}, {"time": 0.9167, "name": "hit"}] }, - "2134002589": { - "slots": { - "eyes": {"attachment": [{"time": 0.05, "name": "eyes-shut"}, {"time": 0.7667, "name": "eyes"}]}, - "mouth": {"attachment": [{"time": 0.05, "name": "mouth-bite"}, {"time": 0.7667, "name": "mouth"}]} - }, + "2481023416": { + "slots": {"eyes": {"attachment": [{"name": "eyes-shut"}]}}, "bones": { - "@pivot-back": { + "@pivot-back": {"translate": [{"curve": 0.384, "c3": 0.312}, {"time": 0.6667, "y": 22.76, "curve": 0.384, "c3": 0.306}, {"time": 1.3333}]}, + "tail": { "rotate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "angle": 3.5}, {"time": 0.6667, "angle": 4, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.8333, "angle": -1.98, "curve": 0.306, "c3": 0.695}, {"time": 1} - ], - "translate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "y": 2.9}, {"time": 0.6667, "y": 3.91, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.8333, "y": -2.14, "curve": 0.306, "c3": 0.695}, {"time": 1} + {"curve": 0, "c2": 0.05, "c3": 0.658}, {"time": 0.3333, "angle": -5.21, "curve": 0.304, "c3": 0.689}, {"time": 0.7333, "angle": -0.27}, + {"time": 1.05, "angle": 1.75, "curve": 0.234, "c4": 0.9}, {"time": 1.3333} ] }, - "@leg-front-right": { + "@shadow": {"scale": [{"curve": 0.387, "c3": 0.314}, {"time": 0.6667, "x": 0.9, "y": 0.9, "curve": 0.387, "c3": 0.314}, {"time": 1.3333}]}, + "@body3": { + "rotate": [ + {"angle": -11.21, "curve": 0.364, "c2": 0.47, "c3": 0.704, "c4": 0.84}, {"time": 0.1333, "angle": -13.65, "curve": 0.354, "c2": 0.65, "c3": 0.688}, + {"time": 0.1833, "angle": -14, "curve": 0.25, "c3": 0.75}, {"time": 0.8333, "curve": 0.242, "c3": 0.662, "c4": 0.65}, {"time": 1.3333, "angle": -11.21} + ], "translate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": -0.92, "y": -19.87}, {"time": 0.6667, "x": -1.14, "y": -21.42, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.8333, "x": -0.43, "y": 9.97, "curve": 0.306, "c3": 0.695}, {"time": 1} + {"x": 30.45, "y": -18.4, "curve": 0.374, "c2": 0.62, "c3": 0.715}, {"time": 0.1333, "x": 34.51, "y": -19.31, "curve": 0.25, "c3": 0.75}, + {"time": 0.7833, "x": 1.97, "y": -12.02, "curve": 0.243, "c3": 0.681, "c4": 0.72}, {"time": 1.3333, "x": 30.45, "y": -18.4} ] }, - "@leg-front-left": { + "@body4": { + "rotate": [ + {"angle": 4.21, "curve": 0.339, "c2": 0.35, "c3": 0.676, "c4": 0.69}, {"time": 0.1, "angle": 6.54, "curve": 0.382, "c2": 0.58, "c3": 0.733}, + {"time": 0.3167, "angle": 9.83, "curve": 0.25, "c3": 0.75}, {"time": 0.9667, "angle": -2.66, "curve": 0.248, "c3": 0.629, "c4": 0.52}, {"time": 1.3333, "angle": 4.21} + ], "translate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": 7.87, "y": -5.37}, {"time": 0.6667, "x": 9.12, "y": -5.44, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.8333, "x": -0.16, "y": 3.89, "curve": 0.306, "c3": 0.695}, {"time": 1} + {"x": 23.06, "y": -10.33, "curve": 0.368, "c2": 0.63, "c3": 0.706}, {"time": 0.1, "x": 25.02, "y": -10.92, "curve": 0.25, "c3": 0.75}, + {"time": 0.75, "x": 0.59, "y": -3.61, "curve": 0.244, "c3": 0.695, "c4": 0.77}, {"time": 1.3333, "x": 23.06, "y": -10.33} ] }, - "tail": { + "@body6": { "rotate": [ - {"curve": 0, "c2": 0.3, "c3": 0.54}, {"time": 0.1667, "angle": -17.97, "curve": 0.306, "c3": 0.695}, {"time": 0.4167, "angle": -9.96, "curve": 0.306, "c3": 0.695}, - {"time": 0.6667, "angle": -19.79, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.8333, "angle": 6.14, "curve": 0.306, "c3": 0.695}, {"time": 1} + {"angle": 4.59, "curve": 0.331, "c2": 0.33, "c3": 0.694, "c4": 0.75}, {"time": 0.3, "angle": 13.13, "curve": 0.377, "c2": 0.61, "c3": 0.719}, + {"time": 0.45, "angle": 15.47, "curve": 0.25, "c3": 0.75}, {"time": 1.1, "curve": 0.264, "c3": 0.618, "c4": 0.43}, {"time": 1.3333, "angle": 4.59} + ], + "translate": [ + {"x": -15.68, "y": 2.61, "curve": 0.38, "c2": 0.53, "c3": 0.746}, {"time": 0.3, "x": -17.06, "y": -1.14, "curve": 0.25, "c3": 0.75}, + {"time": 0.95, "x": -13.78, "y": 7.8, "curve": 0.247, "c3": 0.632, "c4": 0.53}, {"time": 1.3333, "x": -15.68, "y": 2.61} ] }, - "body-fur-2": { + "body-braid2": {"rotate": [{"angle": 9.33, "curve": 0.25, "c3": 0.75}, {"time": 0.65, "curve": 0.25, "c3": 0.75}, {"time": 1.3333, "angle": 9.33}]}, + "body-braid4": { "rotate": [ - {"angle": 10.93, "curve": 0.366, "c2": 0.63, "c3": 0.703}, {"time": 0.0333, "angle": 12.5, "curve": 0.243, "c3": 0.649, "c4": 0.6}, - {"time": 0.2, "angle": 3.55, "curve": 0.382, "c2": 0.57, "c3": 0.735}, {"time": 0.2833, "curve": 0.25, "c3": 0.75}, {"time": 0.5333, "angle": 13.81, "curve": 0.25, "c3": 0.75}, - {"time": 0.7833, "angle": -10.1, "curve": 0.244, "c3": 0.7, "c4": 0.79}, {"time": 1, "angle": 13.84} + {"angle": 5.44, "curve": 0.374, "c2": 0.49, "c3": 0.751}, {"time": 0.35, "angle": 11.24, "curve": 0.25, "c3": 0.75}, {"time": 1, "curve": 0.251, "c3": 0.624, "c4": 0.49}, + {"time": 1.3333, "angle": 5.44} ] }, - "body-fur-9": { + "body-braid3": { "rotate": [ - {"angle": 9.95, "curve": 0.315, "c2": 0.28, "c3": 0.673, "c4": 0.69}, {"time": 0.1, "angle": 3.55, "curve": 0.382, "c2": 0.57, "c3": 0.735}, {"time": 0.1833, "curve": 0.25, "c3": 0.75}, - {"time": 0.4333, "angle": 13.81, "curve": 0.25, "c3": 0.75}, {"time": 0.6833, "angle": -10.1, "curve": 0.25, "c3": 0.75}, - {"time": 0.9333, "angle": 12.5, "curve": 0.273, "c3": 0.62, "c4": 0.41}, {"time": 1, "angle": 6.86} + {"angle": 14.47, "curve": 0.377, "c2": 0.61, "c3": 0.719}, {"time": 0.15, "angle": 17.05, "curve": 0.25, "c3": 0.75}, {"time": 0.8, "curve": 0.243, "c3": 0.674, "c4": 0.69}, + {"time": 1.3333, "angle": 14.47} ] }, - "body-fur-8": { + "@body2": { "rotate": [ - {"angle": 4.6, "curve": 0.381, "c2": 0.55, "c3": 0.742}, {"time": 0.1, "curve": 0.25, "c3": 0.75}, {"time": 0.35, "angle": 13.81, "curve": 0.25, "c3": 0.75}, - {"time": 0.6, "angle": -10.1, "curve": 0.25, "c3": 0.75}, {"time": 0.85, "angle": 12.5, "curve": 0.245, "c3": 0.637, "c4": 0.56}, {"time": 1, "angle": -0.91} + {"angle": -3.3, "curve": 0.338, "c2": 0.35, "c3": 0.704, "c4": 0.79}, {"time": 0.3167, "angle": -9.03, "curve": 0.372, "c2": 0.62, "c3": 0.71}, + {"time": 0.4333, "angle": -10.03, "curve": 0.25, "c3": 0.75}, {"time": 1.0833, "curve": 0.261, "c3": 0.618, "c4": 0.44}, {"time": 1.3333, "angle": -3.3} + ], + "translate": [ + {"x": 2.89, "y": -4.35, "curve": 0.378, "c2": 0.52, "c3": 0.748}, {"time": 0.3167, "x": 2.83, "y": 6.92, "curve": 0.25, "c3": 0.75}, + {"time": 0.9667, "x": 2.96, "y": -18.03, "curve": 0.248, "c3": 0.629, "c4": 0.52}, {"time": 1.3333, "x": 2.89, "y": -4.35} ] }, - "body-fur-7": { + "body-braid6": { "rotate": [ - {"angle": 1.63, "curve": 0.375, "c2": 0.62, "c3": 0.716}, {"time": 0.05, "curve": 0.25, "c3": 0.75}, {"time": 0.3, "angle": 13.81, "curve": 0.25, "c3": 0.75}, - {"time": 0.55, "angle": -10.1, "curve": 0.25, "c3": 0.75}, {"time": 0.8, "angle": 12.5, "curve": 0.243, "c3": 0.68, "c4": 0.71}, {"time": 1, "angle": 2.91} + {"angle": 0.21, "curve": 0.312, "c2": 0.25, "c3": 0.757}, {"time": 0.5667, "angle": 2.13, "curve": 0.25, "c3": 0.75}, {"time": 1.2167, "curve": 0.29, "c3": 0.628, "c4": 0.38}, + {"time": 1.3333, "angle": 0.21} ] }, - "body-fur-6": { + "body-braid5": { "rotate": [ - {"angle": 9.95, "curve": 0.315, "c2": 0.28, "c3": 0.673, "c4": 0.69}, {"time": 0.1, "angle": 3.55, "curve": 0.382, "c2": 0.57, "c3": 0.735}, {"time": 0.1833, "curve": 0.25, "c3": 0.75}, - {"time": 0.4333, "angle": 13.81, "curve": 0.25, "c3": 0.75}, {"time": 0.6833, "angle": -10.1, "curve": 0.25, "c3": 0.75}, - {"time": 0.9333, "angle": 12.5, "curve": 0.273, "c3": 0.62, "c4": 0.41}, {"time": 1, "angle": 13.33} + {"angle": 14.47, "curve": 0.38, "c2": 0.53, "c3": 0.746}, {"time": 0.3, "angle": 19.81, "curve": 0.25, "c3": 0.75}, + {"time": 0.95, "angle": 7.07, "curve": 0.247, "c3": 0.632, "c4": 0.53}, {"time": 1.3333, "angle": 14.47} ] }, - "body-fur-5": { + "body-braid": { "rotate": [ - {"angle": 4.6, "curve": 0.381, "c2": 0.55, "c3": 0.742}, {"time": 0.1, "curve": 0.25, "c3": 0.75}, {"time": 0.35, "angle": 13.81, "curve": 0.25, "c3": 0.75}, - {"time": 0.6, "angle": -10.1, "curve": 0.25, "c3": 0.75}, {"time": 0.85, "angle": 12.5, "curve": 0.245, "c3": 0.637, "c4": 0.56}, {"time": 1, "angle": 6.86} - ] - }, - "body-fur-4": { - "rotate": [ - {"angle": 12.24, "curve": 0.267, "c2": 0.1, "c3": 0.657, "c4": 0.63}, {"time": 0.15, "angle": 3.55, "curve": 0.382, "c2": 0.57, "c3": 0.735}, {"time": 0.2333, "curve": 0.25, "c3": 0.75}, - {"time": 0.4833, "angle": 13.81, "curve": 0.25, "c3": 0.75}, {"time": 0.7333, "angle": -10.1, "curve": 0.25, "c3": 0.75}, - {"time": 0.9833, "angle": 12.5, "curve": 0.313, "c3": 0.648, "c4": 0.35}, {"time": 1, "angle": 12.53} - ] - }, - "body-fur-3": { - "rotate": [ - {"angle": 7.9, "curve": 0.363, "c2": 0.44, "c3": 0.755}, {"time": 0.15, "curve": 0.25, "c3": 0.75}, {"time": 0.4, "angle": 13.81, "curve": 0.25, "c3": 0.75}, - {"time": 0.65, "angle": -10.1, "curve": 0.25, "c3": 0.75}, {"time": 0.9, "angle": 12.5, "curve": 0.258, "c3": 0.619, "c4": 0.45}, {"time": 1, "angle": 5.54} - ] - }, - "body-fur-1": { - "rotate": [ - {"angle": 10.88, "curve": 0.32, "c2": 0.29, "c3": 0.757}, {"time": 0.2, "curve": 0.25, "c3": 0.75}, {"time": 0.45, "angle": 13.81, "curve": 0.25, "c3": 0.75}, - {"time": 0.7, "angle": -10.1, "curve": 0.25, "c3": 0.75}, {"time": 0.95, "angle": 12.5, "curve": 0.284, "c3": 0.625, "c4": 0.38}, {"time": 1, "angle": 10.51} + {"angle": 10.04, "curve": 0.368, "c2": 0.63, "c3": 0.706}, {"time": 0.1, "angle": 10.92, "curve": 0.25, "c3": 0.75}, {"time": 0.75, "curve": 0.244, "c3": 0.695, "c4": 0.77}, + {"time": 1.3333, "angle": 10.04} ] } - }, - "events": [{"time": 0.1667, "name": "hit-buff"}] + } }, - "3772948066": { + "1930192816": { "slots": { - "eyes": {"attachment": [{"time": 0.0167, "name": "eyes-shut"}, {"time": 0.1833, "name": "eyes-angry"}, {"time": 0.4, "name": "eyes"}]}, - "mouth": {"attachment": [{"time": 0.0167, "name": "mouth-bite"}, {"time": 0.4, "name": "mouth"}]} + "eyes": {"attachment": [{"time": 0.05, "name": "eyes-angry"}, {"time": 0.8333, "name": "eyes-shut"}, {"time": 0.9167, "name": "eyes"}]}, + "mouth": {"attachment": [{"time": 0.05, "name": "mouth-bite"}, {"time": 0.3333, "name": "mouth-open"}, {"time": 0.75, "name": "mouth-bite"}, {"time": 0.9167, "name": "mouth"}]} }, "bones": { + "tail": { + "rotate": [ + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.25, "angle": 21.98, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3167, "angle": -15.58, "curve": "stepped"}, + {"time": 0.3333, "angle": -19.65, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.4, "angle": 20.35, "curve": "stepped"}, {"time": 0.4333, "angle": -19.65, "curve": "stepped"}, + {"time": 0.4667, "angle": -19.65, "curve": 0.461, "c3": 0.543}, {"time": 0.5333, "angle": 20.35, "curve": "stepped"}, {"time": 0.5667, "angle": -19.65, "curve": "stepped"}, + {"time": 0.6, "angle": -19.65, "curve": 0.461, "c3": 0.543}, {"time": 0.6667, "angle": 20.35, "curve": "stepped"}, {"time": 0.7, "angle": -19.65, "curve": "stepped"}, + {"time": 0.75, "angle": -11.84, "curve": 0.313, "c3": 0.699}, {"time": 0.8333, "angle": 16.95, "curve": 0.313, "c3": 0.699}, {"time": 1} + ] + }, "@pivot-back": { "rotate": [ - {"curve": "stepped"}, {"time": 0.0167, "angle": -20}, {"time": 0.1667, "angle": -22, "curve": 0.464, "c4": 0.7}, {"time": 0.3167, "angle": 5.2, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.4167} + {"curve": 0, "c2": 0.4, "c3": 0.383}, {"time": 0.15, "angle": 4, "curve": "stepped"}, {"time": 0.25, "angle": 4, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.3167, "curve": "stepped"}, {"time": 0.3333, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.4, "angle": -2.45, "curve": "stepped"}, {"time": 0.4333, "curve": "stepped"}, + {"time": 0.4667, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.5333, "angle": -2.45, "curve": "stepped"}, {"time": 0.5667, "curve": "stepped"}, + {"time": 0.6, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.6667, "angle": -2.45, "curve": "stepped"}, {"time": 0.7, "curve": "stepped"}, {"time": 0.75, "curve": 0.313, "c3": 0.699}, + {"time": 0.8333, "angle": 6, "curve": 0.313, "c3": 0.699}, {"time": 1} ], - "translate": [{"curve": "stepped"}, {"time": 0.0167, "x": 75, "y": -4.42}, {"time": 0.1667, "x": 80, "y": -7.47, "curve": 0.464, "c4": 0.7}, {"time": 0.3167}] - }, - "@leg-front-left": {"translate": [{"time": 0.1667, "curve": 0.62, "c4": 0.3}, {"time": 0.3167, "x": -1.1, "y": -14.87, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.4167}]}, - "@shadow": { "translate": [ - {"curve": "stepped"}, {"time": 0.0167, "x": 70.3, "curve": "stepped"}, {"time": 0.1667, "x": 70.3, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.3167, "x": 12.49, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.4167} + {"curve": 0, "c2": 0.4, "c3": 0.383}, {"time": 0.25, "x": 25, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3167, "x": -135.5, "curve": "stepped"}, + {"time": 0.3333, "x": -560.54, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.4, "x": -560.54, "y": 9.3, "curve": "stepped"}, {"time": 0.4333, "x": -560.54, "curve": "stepped"}, + {"time": 0.4667, "x": -560.54, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.5333, "x": -560.54, "y": 9.3, "curve": "stepped"}, {"time": 0.5667, "x": -560.54, "curve": "stepped"}, + {"time": 0.6, "x": -560.54, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.6667, "x": -560.54, "y": 9.3, "curve": "stepped"}, {"time": 0.7, "x": -560.54, "curve": "stepped"}, + {"time": 0.75, "x": -151.24, "curve": 0.313, "c3": 0.699}, {"time": 0.8333, "x": -151.24, "y": 4.06, "curve": 0.313, "c3": 0.699}, {"time": 1} ], - "scale": [ - {"curve": "stepped"}, {"time": 0.0167, "x": 0.98, "y": 0.98}, {"time": 0.1667, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.3167, "x": 1.08, "y": 1.08, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.4167} + "scale": [{"time": 0.3167, "curve": "stepped"}, {"time": 0.3333, "x": -1, "curve": "stepped"}, {"time": 0.7, "x": -1, "curve": "stepped"}, {"time": 0.75}] + }, + "@leg-front-right": { + "translate": [ + {"curve": 0, "c2": 0.4, "c3": 0.383}, {"time": 0.25, "x": -1.86, "y": -9.26, "curve": "stepped"}, {"time": 0.3167, "x": -1.86, "y": -9.26, "curve": "stepped"}, + {"time": 0.3333, "x": 2.96, "y": 9.49, "curve": "stepped"}, {"time": 0.75, "x": 2.96, "y": 9.49, "curve": 0.306, "c3": 0.695}, + {"time": 0.8333, "x": -1.86, "y": -9.26, "curve": 0.313, "c3": 0.699}, {"time": 1} ] }, - "leg-back-left-IK": { + "@leg-front-left": { "translate": [ - {"curve": "stepped"}, {"time": 0.0167, "x": 20.18, "y": 0.9, "curve": "stepped"}, {"time": 0.1667, "x": 20.18, "y": 0.9, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333} + {"curve": 0, "c2": 0.4, "c3": 0.383}, {"time": 0.25, "x": -1, "y": -5.53, "curve": "stepped"}, {"time": 0.3167, "x": -1, "y": -5.53, "curve": "stepped"}, + {"time": 0.3333, "x": 14.28, "y": 14.98, "curve": "stepped"}, {"time": 0.4, "x": 14.28, "y": 14.98, "curve": "stepped"}, {"time": 0.4333, "x": 14.36, "y": 10.6, "curve": "stepped"}, + {"time": 0.4667, "x": 14.36, "y": 10.6, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.5333, "x": 14.28, "y": 14.98, "curve": "stepped"}, + {"time": 0.5667, "x": 14.36, "y": 10.6, "curve": "stepped"}, {"time": 0.6, "x": 14.36, "y": 10.6, "curve": 0, "c2": 0.3, "c3": 0.544}, + {"time": 0.6667, "x": 14.28, "y": 14.98, "curve": "stepped"}, {"time": 0.7, "x": 14.36, "y": 10.6, "curve": "stepped"}, + {"time": 0.75, "x": -1.12, "y": 1.52, "curve": 0.313, "c3": 0.699}, {"time": 0.8333, "x": -1, "y": -5.53, "curve": 0.313, "c3": 0.699}, {"time": 1} ] }, - "@leg-back-left": { + "@shadow": { "translate": [ - {"curve": "stepped"}, {"time": 0.0167, "x": -0.94, "y": 4.51, "curve": "stepped"}, {"time": 0.1667, "x": -0.94, "y": 4.51, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3167} + {"time": 0.25, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3167, "x": -143.36, "curve": "stepped"}, {"time": 0.7, "x": -143.36, "curve": "stepped"}, + {"time": 0.75, "x": -161.35, "curve": "stepped"}, {"time": 0.8333, "x": -161.35, "curve": 0.313, "c3": 0.699}, {"time": 1} + ], + "scale": [ + {"curve": 0, "c2": 0.4, "c3": 0.383}, {"time": 0.25, "x": 1.08, "y": 1.08, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3167, "curve": "stepped"}, + {"time": 0.3333, "x": 1.02, "y": 1.02, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.4, "x": 0.96, "y": 0.96, "curve": "stepped"}, + {"time": 0.4333, "x": 1.02, "y": 1.02, "curve": "stepped"}, {"time": 0.4667, "x": 1.02, "y": 1.02, "curve": 0, "c2": 0.3, "c3": 0.544}, + {"time": 0.5333, "x": 0.96, "y": 0.96, "curve": "stepped"}, {"time": 0.5667, "x": 1.02, "y": 1.02, "curve": "stepped"}, + {"time": 0.6, "x": 1.02, "y": 1.02, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.6667, "x": 0.96, "y": 0.96, "curve": "stepped"}, + {"time": 0.7, "x": 1.02, "y": 1.02, "curve": "stepped"}, {"time": 0.75, "curve": 0.313, "c3": 0.699}, {"time": 0.8333, "x": 1.08, "y": 1.08, "curve": 0.313, "c3": 0.699}, {"time": 1} ] }, - "@pivot-main": {"translate": [{"curve": "stepped"}, {"time": 0.0167, "x": 20, "curve": "stepped"}, {"time": 0.3167, "x": 20, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.4167}]}, - "@leg-front-right": {"translate": [{"time": 0.1667, "curve": 0.62, "c4": 0.3}, {"time": 0.3167, "x": -2.11, "y": -28.46, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.4167}]}, - "tail": { - "rotate": [ - {"curve": "stepped"}, {"time": 0.0167, "angle": 19}, {"time": 0.1667, "angle": 23.91, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.3167, "angle": -21.75, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.4167} + "leg-front-left-IK": { + "translate": [ + {"time": 0.25, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3167, "x": -192.09, "y": 31.17, "curve": "stepped"}, {"time": 0.3333, "x": -186.04, "curve": "stepped"}, + {"time": 0.7, "x": -186.04, "curve": 0.31, "c4": 0.8}, {"time": 0.75, "x": -180.48, "curve": "stepped"}, {"time": 0.8333, "x": -180.48, "curve": 0.313, "c3": 0.699}, {"time": 1} ] }, "leg-front-right-IK": { "translate": [ - {"curve": "stepped"}, {"time": 0.0167, "x": 44.88, "y": 143.25}, {"time": 0.0833, "x": -0.81, "y": 175.84}, {"time": 0.1667, "x": 46.95, "y": 154.35, "curve": 0.306, "c4": 0.8}, - {"time": 0.3167} + {"time": 0.25, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3167, "x": -172.87, "y": 28.32, "curve": "stepped"}, {"time": 0.3333, "x": 456.08, "y": -1.32, "curve": "stepped"}, + {"time": 0.7, "x": 456.08, "y": -1.32, "curve": "stepped"}, {"time": 0.75, "x": -180.48, "curve": "stepped"}, {"time": 0.8333, "x": -180.48, "curve": 0.313, "c3": 0.699}, {"time": 1} ] }, - "leg-front-left-IK": { + "leg-back-left-IK": { "translate": [ - {"curve": "stepped"}, {"time": 0.0167, "x": -4.98, "y": 86.81}, {"time": 0.0833, "x": 23.52, "y": 63.22}, {"time": 0.1667, "x": -2.69, "y": 90.83, "curve": 0.306, "c4": 0.8}, - {"time": 0.3167} + {"time": 0.25, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3167, "x": -96.78, "y": 27.51, "curve": "stepped"}, {"time": 0.3333, "x": -593.07, "curve": "stepped"}, + {"time": 0.7, "x": -593.07, "curve": "stepped"}, {"time": 0.75, "x": -134.74, "curve": "stepped"}, {"time": 0.8333, "x": -134.74, "curve": 0.313, "c3": 0.699}, {"time": 1} ] }, - "body-fur-1": { + "@leg-back-left": { + "translate": [ + {"time": 0.3167, "curve": "stepped"}, {"time": 0.3333, "x": -0.06, "y": 3.33, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.4, "x": 0.15, "y": 11.38, "curve": "stepped"}, + {"time": 0.4333, "x": -0.06, "y": 3.33, "curve": "stepped"}, {"time": 0.4667, "x": -0.06, "y": 3.33, "curve": 0, "c2": 0.3, "c3": 0.544}, + {"time": 0.5333, "x": 0.15, "y": 11.38, "curve": "stepped"}, {"time": 0.5667, "x": 0.28, "y": 3.86, "curve": "stepped"}, + {"time": 0.6, "x": -0.06, "y": 3.33, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.6667, "x": 0.15, "y": 11.38, "curve": "stepped"}, + {"time": 0.7, "x": -0.06, "y": 3.33, "curve": "stepped"}, {"time": 0.75} + ] + }, + "@pivot-main": {"translate": [{"time": 0.8333, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.9167, "y": 31, "curve": 0.315, "c4": 0.8}, {"time": 1}]}, + "@body3": { "rotate": [ - {"angle": -7.37, "curve": 0.379, "c2": 0.53, "c3": 0.746}, {"time": 0.0667}, {"time": 0.15, "angle": 47.21, "curve": 0.384, "c3": 0.75}, - {"time": 0.3333, "angle": -17.29, "curve": 0.247, "c3": 0.631, "c4": 0.53}, {"time": 0.4167, "angle": 10.51} + {"angle": -0.69, "curve": 0.379, "c2": 0.6, "c3": 0.724}, {"time": 0.0667, "curve": 0.25, "c3": 0.75}, {"time": 0.3167, "angle": -3.77, "curve": 0.25, "c3": 0.75}, + {"time": 0.55, "angle": -14, "curve": 0.25, "c3": 0.75}, {"time": 0.8, "angle": -3.77, "curve": 0.242, "c3": 0.667, "c4": 0.67}, {"time": 1, "angle": -0.69} + ], + "translate": [{"time": 0.25, "curve": 0.25, "c3": 0.75}, {"time": 0.4833, "x": 45.36, "y": -33.56, "curve": 0.25, "c3": 0.75}, {"time": 0.7333}] + }, + "@body4": { + "rotate": [ + {"angle": -1.79, "curve": 0.374, "c2": 0.62, "c3": 0.714}, {"time": 0.05, "curve": 0.25, "c3": 0.75}, {"time": 0.3, "angle": -15.35, "curve": 0.25, "c3": 0.75}, + {"time": 0.5333, "angle": 14.26, "curve": 0.25, "c3": 0.75}, {"time": 0.7833, "angle": -15.35, "curve": 0.243, "c3": 0.683, "c4": 0.73}, {"time": 1, "angle": -1.79} + ], + "translate": [ + {"curve": 0.25, "c3": 0.75}, {"time": 0.25, "x": -1.59, "y": 23.93, "curve": 0.25, "c3": 0.75}, {"time": 0.4833, "x": 6.55, "y": -29.78, "curve": 0.25, "c3": 0.75}, + {"time": 0.7333, "x": -1.59, "y": 23.93, "curve": 0.25, "c3": 0.75}, {"time": 1} ] }, - "body-fur-4": { + "@body6": { "rotate": [ - {"angle": -9.85, "curve": 0.342, "c2": 0.36, "c3": 0.692, "c4": 0.75}, {"time": 0.05, "angle": -2.67, "curve": 0.377, "c2": 0.61, "c3": 0.72}, {"time": 0.0833}, - {"time": 0.1667, "angle": 47.21, "curve": 0.384, "c3": 0.75}, {"time": 0.35, "angle": -17.29, "curve": 0.254, "c3": 0.621, "c4": 0.47}, {"time": 0.4167, "angle": 12.53} + {"angle": -1.33, "curve": 0.368, "c2": 0.49, "c3": 0.712, "c4": 0.87}, {"time": 0.0667, "angle": -0.11, "curve": 0.351, "c2": 0.65, "c3": 0.686}, + {"time": 0.0833, "curve": 0.25, "c3": 0.75}, {"time": 0.3333, "angle": -5.24, "curve": 0.25, "c3": 0.75}, {"time": 0.5667, "angle": 25.77, "curve": 0.25, "c3": 0.75}, + {"time": 0.8167, "angle": -5.24, "curve": 0.243, "c3": 0.653, "c4": 0.62}, {"time": 1, "angle": -1.33} + ], + "translate": [ + {"x": 1.07, "y": -0.75, "curve": 0.379, "c2": 0.6, "c3": 0.724}, {"time": 0.0667, "curve": 0.25, "c3": 0.75}, {"time": 0.3167, "x": 5.81, "y": -4.07, "curve": 0.25, "c3": 0.75}, + {"time": 0.55, "x": -70.52, "y": 35.61, "curve": 0.25, "c3": 0.75}, {"time": 0.8, "x": 5.81, "y": -4.07, "curve": 0.242, "c3": 0.667, "c4": 0.67}, {"time": 1, "x": 1.07, "y": -0.75} ] }, - "body-fur-2": { + "body-braid2": { "rotate": [ - {"angle": -12.33, "curve": 0.33, "c2": 0.32, "c3": 0.693, "c4": 0.75}, {"time": 0.0667, "angle": -2.67, "curve": 0.377, "c2": 0.61, "c3": 0.72}, {"time": 0.1}, - {"time": 0.1833, "angle": 47.21, "curve": 0.384, "c3": 0.75}, {"time": 0.3667, "angle": -17.29, "curve": 0.265, "c3": 0.618, "c4": 0.43}, {"time": 0.4167, "angle": 13.84} + {"curve": 0.25, "c3": 0.75}, {"time": 0.25, "angle": -1.43, "curve": 0.25, "c3": 0.75}, {"time": 0.4833, "angle": 20.83, "curve": 0.25, "c3": 0.75}, + {"time": 0.7333, "angle": -1.43, "curve": 0.25, "c3": 0.75}, {"time": 1} ] }, - "body-fur-6": { + "body-braid4": { "rotate": [ - {"angle": -7.31, "curve": 0.347, "c2": 0.38, "c3": 0.688, "c4": 0.74}, {"time": 0.0333, "angle": -2.67, "curve": 0.377, "c2": 0.61, "c3": 0.72}, {"time": 0.0667}, - {"time": 0.15, "angle": 47.21, "curve": 0.384, "c3": 0.75}, {"time": 0.3333, "angle": -17.29, "curve": 0.247, "c3": 0.631, "c4": 0.53}, {"time": 0.4167, "angle": 13.33} + {"angle": -8.56, "curve": 0.347, "c2": 0.38, "c3": 0.757}, {"time": 0.1833, "curve": 0.25, "c3": 0.75}, {"time": 0.4333, "angle": -11.53, "curve": 0.25, "c3": 0.75}, + {"time": 0.6667, "angle": 27.46, "curve": 0.25, "c3": 0.75}, {"time": 0.9167, "angle": -11.53, "curve": 0.267, "c3": 0.618, "c4": 0.42}, {"time": 1, "angle": -8.56} ] }, - "body-fur-7": { + "body-braid3": { "rotate": [ - {"angle": -0.89, "curve": 0.362, "c2": 0.64, "c3": 0.698}, {"time": 0.0167, "curve": 0.25, "c3": 0.75}, {"time": 0.1, "angle": 47.21, "curve": 0.384, "c3": 0.75}, - {"time": 0.2833, "angle": -17.29, "curve": 0.245, "c3": 0.707, "c4": 0.82}, {"time": 0.4167, "angle": 2.91} + {"angle": -1.53, "curve": 0.379, "c2": 0.6, "c3": 0.724}, {"time": 0.0667, "curve": 0.25, "c3": 0.75}, {"time": 0.3167, "angle": -8.3, "curve": 0.25, "c3": 0.75}, + {"time": 0.55, "angle": 33.27, "curve": 0.25, "c3": 0.75}, {"time": 0.8, "angle": -8.3, "curve": 0.242, "c3": 0.667, "c4": 0.67}, {"time": 1, "angle": -1.53} ] }, - "body-fur-9": { + "@body2": { "rotate": [ - {"angle": -9.85, "curve": 0.342, "c2": 0.36, "c3": 0.692, "c4": 0.75}, {"time": 0.05, "angle": -2.67, "curve": 0.377, "c2": 0.61, "c3": 0.72}, - {"time": 0.0833, "curve": 0.25, "c3": 0.75}, {"time": 0.1667, "angle": 47.21, "curve": 0.384, "c3": 0.75}, {"time": 0.35, "angle": -17.29, "curve": 0.254, "c3": 0.621, "c4": 0.47}, - {"time": 0.4167, "angle": 6.86} + {"angle": 2.47, "curve": 0.359, "c2": 0.43, "c3": 0.702, "c4": 0.8}, {"time": 0.0667, "angle": 0.47, "curve": 0.364, "c2": 0.64, "c3": 0.701}, {"time": 0.1, "curve": 0.25, "c3": 0.75}, + {"time": 0.35, "angle": 7.45, "curve": 0.25, "c3": 0.75}, {"time": 0.5833, "angle": -18.73, "curve": 0.25, "c3": 0.75}, + {"time": 0.8333, "angle": 7.45, "curve": 0.244, "c3": 0.641, "c4": 0.57}, {"time": 1, "angle": 2.47} + ], + "translate": [ + {"x": -0.01, "y": 0.21, "curve": 0.379, "c2": 0.6, "c3": 0.724}, {"time": 0.0667, "curve": 0.25, "c3": 0.75}, {"time": 0.3167, "x": -0.08, "y": 1.15, "curve": 0.25, "c3": 0.75}, + {"time": 0.55, "x": 4.59, "y": -41.28, "curve": 0.25, "c3": 0.75}, {"time": 0.8, "x": -0.08, "y": 1.15, "curve": 0.242, "c3": 0.667, "c4": 0.67}, {"time": 1, "x": -0.01, "y": 0.21} ] }, - "body-fur-3": { + "body-braid6": { "rotate": [ - {"angle": -4.91, "curve": 0.382, "c2": 0.57, "c3": 0.735}, {"time": 0.05}, {"time": 0.1333, "angle": 47.21, "curve": 0.384, "c3": 0.75}, - {"time": 0.3167, "angle": -17.29, "curve": 0.243, "c3": 0.649, "c4": 0.6}, {"time": 0.4167, "angle": 5.54} + {"angle": -17.82, "curve": 0.317, "c2": 0.27, "c3": 0.757}, {"time": 0.2167, "curve": 0.25, "c3": 0.75}, {"time": 0.4667, "angle": -20.17, "curve": 0.25, "c3": 0.75}, + {"time": 0.7, "angle": 18.35, "curve": 0.25, "c3": 0.75}, {"time": 0.95, "angle": -20.17, "curve": 0.286, "c3": 0.626, "c4": 0.38}, {"time": 1, "angle": -17.82} ] }, - "body-fur-5": { + "body-braid5": { "rotate": [ - {"angle": -2.67, "curve": 0.377, "c2": 0.61, "c3": 0.72}, {"time": 0.0333}, {"time": 0.1167, "angle": 47.21, "curve": 0.384, "c3": 0.75}, - {"time": 0.3, "angle": -17.29, "curve": 0.243, "c3": 0.674, "c4": 0.69}, {"time": 0.4167, "angle": 6.86} + {"angle": -2.44, "curve": 0.382, "c2": 0.56, "c3": 0.74}, {"time": 0.1, "curve": 0.25, "c3": 0.75}, {"time": 0.35, "angle": -7.27, "curve": 0.25, "c3": 0.75}, + {"time": 0.5833, "angle": 36.02, "curve": 0.25, "c3": 0.75}, {"time": 0.8333, "angle": -7.27, "curve": 0.244, "c3": 0.641, "c4": 0.57}, {"time": 1, "angle": -2.44} ] }, - "body-fur-8": { + "body-braid": { "rotate": [ - {"angle": -4.91, "curve": 0.382, "c2": 0.57, "c3": 0.735}, {"time": 0.05, "curve": 0.25, "c3": 0.75}, {"time": 0.1333, "angle": 47.21, "curve": 0.384, "c3": 0.75}, - {"time": 0.3167, "angle": -17.29, "curve": 0.243, "c3": 0.649, "c4": 0.6}, {"time": 0.4167, "angle": -0.91} + {"angle": -0.17, "curve": 0.364, "c2": 0.64, "c3": 0.701}, {"time": 0.0333, "curve": 0.25, "c3": 0.75}, {"time": 0.2833, "angle": -2.68, "curve": 0.25, "c3": 0.75}, + {"time": 0.5167, "angle": 22.42, "curve": 0.25, "c3": 0.75}, {"time": 0.7667, "angle": -2.68, "curve": 0.244, "c3": 0.702, "c4": 0.8}, {"time": 1, "angle": -0.17} ] - } - } + }, + "@body5": {"rotate": [{"time": 0.25, "curve": 0.25, "c3": 0.75}, {"time": 0.4833, "angle": 0.5, "curve": 0.25, "c3": 0.75}, {"time": 0.7333}]} + }, + "events": [{"time": 0.3167, "name": "start-attack"}, {"time": 0.4333, "name": "hit"}, {"time": 0.5667, "name": "hit"}, {"time": 0.7, "name": "hit"}] }, - "3973892445": { + "1797279783": { "slots": { - "eyes": {"attachment": [{"time": 0.0167, "name": "eyes-shut"}, {"time": 0.1833, "name": "eyes-angry"}, {"time": 0.4, "name": "eyes"}]}, - "mouth": {"attachment": [{"time": 0.0167, "name": "mouth-bite"}, {"time": 0.4, "name": "mouth"}]} + "eyes": {"attachment": [{"time": 0.0167, "name": "eyes-angry"}, {"time": 0.85, "name": "eyes-shut"}, {"time": 0.9333, "name": "eyes"}]}, + "mouth": {"attachment": [{"time": 0.0167, "name": "mouth-bite"}, {"time": 0.1833, "name": "mouth-open"}, {"time": 0.5, "name": "mouth-bite"}, {"time": 0.9333, "name": "mouth"}]} }, "bones": { - "tail": { + "@pivot-back": { "rotate": [ - {"curve": "stepped"}, {"time": 0.0167, "angle": 35.35}, {"time": 0.1667, "angle": 50.35, "curve": 0.315, "c4": 0.8}, {"time": 0.3167, "angle": -21.75, "curve": 0, "c2": 0.1, "c3": 0.85}, - {"time": 0.4167} + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "angle": -3.92, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "angle": 2.51, "curve": 0, "c2": 0.2, "c3": 0.858}, + {"time": 0.25, "angle": -6, "curve": "stepped"}, {"time": 0.7167, "angle": -6, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.8333, "angle": 6, "curve": 0.313, "c3": 0.699}, {"time": 1} + ], + "translate": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "x": 71.93, "y": -12.95, "curve": "stepped"}, {"time": 0.1667, "x": 71.93, "y": -12.95, "curve": 0, "c2": 0.2, "c3": 0.858}, + {"time": 0.25, "x": -145.48, "y": 99.8, "curve": 0, "c2": 0.3, "c3": 0.698}, {"time": 0.4167, "x": -145, "y": 149.7, "curve": 1, "c4": 0}, {"time": 0.5, "x": -145}, + {"time": 0.6667, "x": -145, "y": 2.5, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.7167, "y": 48.98, "curve": 0.315, "c4": 0.8}, + {"time": 0.8333, "y": -3.33, "curve": 0.313, "c3": 0.699}, {"time": 1} ] }, - "leg-front-right-IK": { - "translate": [{"curve": "stepped"}, {"time": 0.0167, "x": 74.76, "y": 322.04}, {"time": 0.1667, "x": 85.96, "y": 349.35, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3167}] + "@leg-front-left": { + "translate": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "x": -4.8, "y": 21.17, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.1667, "x": -0.53, "y": 0.11, "curve": 0, "c2": 0.2, "c3": 0.858}, {"time": 0.25, "x": -1, "y": -5.53, "curve": "stepped"}, + {"time": 0.7167, "x": -1, "y": -5.53, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.8333, "x": -2.17, "y": -17.49, "curve": 0.313, "c3": 0.699}, {"time": 1} + ] }, - "@pivot-back": { - "rotate": [ - {"curve": "stepped"}, {"time": 0.0167, "angle": -45}, {"time": 0.1667, "angle": -50, "curve": 0.464, "c4": 0.7}, {"time": 0.3167, "angle": 5.2, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.4167} - ], - "translate": [{"curve": "stepped"}, {"time": 0.0167, "x": 94.99, "y": -21}, {"time": 0.1667, "x": 107, "y": -60, "curve": 0.464, "c4": 0.7}, {"time": 0.3167}] + "@leg-back-left": { + "translate": [ + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 0.67, "y": -7.85, "curve": 0.161, "c3": 0.854}, {"time": 0.1667, "x": 0.53, "y": -13.09, "curve": 0, "c2": 0.2, "c3": 0.858}, + {"time": 0.25, "curve": "stepped"}, {"time": 0.7167, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.8333, "x": -0.5, "y": -5.23, "curve": 0.313, "c3": 0.699}, {"time": 1} + ] }, "@shadow": { "translate": [ - {"curve": "stepped"}, {"time": 0.0167, "x": 70.3, "curve": "stepped"}, {"time": 0.1667, "x": 70.3, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.3167, "x": 12.49, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.4167} + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 61.96, "curve": "stepped"}, {"time": 0.1667, "x": 61.96, "curve": 0, "c2": 0.2, "c3": 0.858}, + {"time": 0.25, "x": -143.36, "curve": 0, "c2": 0.3, "c3": 0.698}, {"time": 0.4167, "x": -154.48, "curve": "stepped"}, {"time": 0.6667, "x": -154.48, "curve": 0, "c2": 0.3, "c3": 0.544}, + {"time": 0.7167, "x": -9.48, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.8333} ], "scale": [ - {"curve": "stepped"}, {"time": 0.0167, "x": 0.98, "y": 0.98}, {"time": 0.1667, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.3167, "x": 1.08, "y": 1.08, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.4167} + {"time": 0.0833, "curve": 0, "c2": 0.26, "c3": 0.369, "c4": 0.62}, {"time": 0.1667, "x": 1.06, "y": 1.06, "curve": 0, "c2": 0.2, "c3": 0.858}, + {"time": 0.25, "curve": 0, "c2": 0.3, "c3": 0.698}, {"time": 0.4167, "x": 0.86, "y": 0.86}, {"time": 0.5, "x": 1.16, "y": 1.16}, + {"time": 0.6667, "x": 1.18, "y": 1.18, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.7167, "x": 1.02, "y": 1.02, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.8333, "x": 1.1, "y": 1.1, "curve": 0.313, "c3": 0.699}, {"time": 1} + ] + }, + "leg-front-right-IK": { + "translate": [ + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 30.89, "y": 11.74, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": 42.9, "curve": 0, "c2": 0.2, "c3": 0.858}, + {"time": 0.25, "x": -123.77, "y": 159.27, "curve": 0, "c2": 0.3, "c3": 0.54}, {"time": 0.3667, "x": 318.15, "y": 124.76}, + {"time": 0.4667, "x": 422.01, "y": 262.03, "curve": 1, "c4": 0.1}, {"time": 0.5, "x": 241.75, "y": 631.12}, {"time": 0.6667, "x": 249.18, "y": 631.34, "curve": "stepped"}, + {"time": 0.6833, "x": -136.29, "y": 410.95, "curve": "stepped"}, {"time": 0.7, "x": -72.54, "y": 181.91, "curve": "stepped"}, + {"time": 0.7167, "x": 16.74, "y": 109.99, "curve": 0, "c2": 0.18, "c3": 0.424, "c4": 0.59}, {"time": 0.8333} ] }, "leg-back-left-IK": { "translate": [ - {"curve": "stepped"}, {"time": 0.0167, "x": 11.67, "y": 0.9, "curve": "stepped"}, {"time": 0.1667, "x": 11.67, "y": 0.9, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333} + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 80.9, "curve": 0.161, "c3": 0.854}, {"time": 0.1667, "x": 49.4, "curve": 0, "c2": 0.2, "c3": 0.858}, + {"time": 0.25, "x": -145.54, "y": 113.45, "curve": 0, "c2": 0.1, "c3": 0.853}, {"time": 0.3667, "x": -120.72, "y": 618.84}, + {"time": 0.4667, "x": -238.23, "y": 753.99, "curve": 1, "c4": 0.1}, {"time": 0.5, "x": -721.75, "y": 409.86}, + {"time": 0.6667, "x": -738.87, "y": 398.15, "curve": 0.49, "c3": 0.806, "c4": 0.36}, {"time": 0.6833, "x": -445.21, "y": 13.62, "curve": 0.73, "c2": 0.24, "c4": 0.59}, + {"time": 0.7, "x": -82.16, "y": 7.42, "curve": "stepped"}, {"time": 0.7167} + ] + }, + "@leg-front-right": { + "translate": [ + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 4.31, "y": 11.86, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.1667, "x": -1.88, "y": -12.2, "curve": 0, "c2": 0.2, "c3": 0.858}, {"time": 0.25, "x": -1.86, "y": -9.26, "curve": "stepped"}, + {"time": 0.7167, "x": -1.86, "y": -9.26, "curve": 0.306, "c4": 0.8}, {"time": 0.8333, "x": -4.61, "y": -38.35, "curve": 0.313, "c3": 0.699}, {"time": 1} ] }, - "@leg-back-left": {"translate": [{"curve": "stepped"}, {"time": 0.0167, "x": -2.63, "y": 8.92}, {"time": 0.1667, "x": 18.61, "y": -8.3, "curve": 0.464, "c4": 0.7}, {"time": 0.3167}]}, - "@pivot-main": {"translate": [{"curve": "stepped"}, {"time": 0.0167, "x": 20, "curve": "stepped"}, {"time": 0.3167, "x": 20, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.4167}]}, "leg-front-left-IK": { - "translate": [{"curve": "stepped"}, {"time": 0.0167, "x": -4.7, "y": 168.09}, {"time": 0.1667, "x": 6.72, "y": 174.87, "curve": 0.306, "c3": 0.695}, {"time": 0.3167}] + "translate": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "x": 8.25, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": 42.9, "curve": 0, "c2": 0.2, "c3": 0.858}, + {"time": 0.25, "x": -179, "y": 123.81, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3667, "x": 40.26, "y": 484.21}, {"time": 0.4667, "x": -9.53, "y": 607.64, "curve": 1, "c4": 0.1}, + {"time": 0.5, "x": -392.96, "y": 497.2}, {"time": 0.6667, "x": -405.58, "y": 496.3, "curve": "stepped"}, {"time": 0.6833, "x": -344.4, "y": 182.63, "curve": "stepped"}, + {"time": 0.7, "x": -108.47, "y": 46.07, "curve": "stepped"}, {"time": 0.7167} + ] }, - "@leg-front-left": {"translate": [{"time": 0.1667, "curve": 0.62, "c4": 0.3}, {"time": 0.3167, "x": -1.1, "y": -14.87, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.4167}]}, - "@leg-front-right": {"translate": [{"time": 0.1667, "curve": 0.62, "c4": 0.3}, {"time": 0.3167, "x": -2.11, "y": -28.46, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.4167}]}, - "body-fur-8": { + "tail": { "rotate": [ - {"angle": -3.8, "curve": 0.377, "c2": 0.61, "c3": 0.72}, {"time": 0.0333}, {"time": 0.1167, "angle": 55.85, "curve": 0.409, "c2": 0.01, "c3": 0.75}, - {"time": 0.3, "angle": -24.65, "curve": 0.243, "c3": 0.674, "c4": 0.69}, {"time": 0.4167, "angle": -0.91} + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "angle": 15.61, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "angle": 20.44, "curve": 0, "c2": 0.2, "c3": 0.858}, + {"time": 0.25, "angle": -14.65, "curve": 0.313, "c3": 0.699}, {"time": 0.4667, "angle": -49.65, "curve": 1, "c4": 0.1}, {"time": 0.5, "angle": -2.15}, + {"time": 0.6667, "angle": -1.85, "curve": 0, "c2": 0.4, "c3": 0.383}, {"time": 0.8333, "angle": 21.05, "curve": 0.313, "c3": 0.699}, {"time": 1} ] }, - "body-fur-1": { + "@pivot-center": { "rotate": [ - {"angle": -10.51, "curve": 0.379, "c2": 0.53, "c3": 0.746}, {"time": 0.0667}, {"time": 0.15, "angle": 55.85, "curve": 0.409, "c2": 0.01, "c3": 0.75}, - {"time": 0.3333, "angle": -24.65, "curve": 0.247, "c3": 0.631, "c4": 0.53}, {"time": 0.4167, "angle": 10.51} + {"time": 0.25, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.4667, "angle": 112.05, "curve": 1, "c4": 0.1}, {"time": 0.5, "angle": -146.9}, + {"time": 0.6667, "angle": -145.45, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.7167} ] }, - "body-fur-2": { + "@body3": { "rotate": [ - {"angle": -17.58, "curve": 0.33, "c2": 0.32, "c3": 0.693, "c4": 0.75}, {"time": 0.0667, "angle": -3.8, "curve": 0.377, "c2": 0.61, "c3": 0.72}, {"time": 0.1}, - {"time": 0.1833, "angle": 55.85, "curve": 0.409, "c2": 0.01, "c3": 0.75}, {"time": 0.3667, "angle": -24.65, "curve": 0.265, "c3": 0.618, "c4": 0.43}, {"time": 0.4167, "angle": 13.84} + {"angle": -1.82, "curve": 0.375, "c2": 0.62, "c3": 0.716}, {"time": 0.0333, "curve": 0.25, "c3": 0.75}, {"time": 0.15, "angle": -3.77, "curve": 0.25, "c3": 0.75}, + {"time": 0.4167, "angle": -14, "curve": 0.25, "c3": 0.75}, {"time": 0.7167, "angle": -3.77, "curve": 0.25, "c3": 0.75}, + {"time": 0.8667, "angle": -14, "curve": 0.243, "c3": 0.68, "c4": 0.71}, {"time": 1, "angle": -1.82} + ], + "translate": [ + {"time": 0.1167, "curve": 0.25, "c3": 0.75}, {"time": 0.3833, "x": 45.36, "y": -33.56, "curve": 0.25, "c3": 0.75}, {"time": 0.6833, "curve": 0.25, "c3": 0.75}, + {"time": 0.8333, "x": 55.89, "y": -22.18, "curve": 0.25, "c3": 0.75}, {"time": 1} ] }, - "body-fur-3": { + "@body4": { "rotate": [ - {"angle": -6.99, "curve": 0.382, "c2": 0.57, "c3": 0.735}, {"time": 0.05, "curve": 0.25, "c3": 0.75}, {"time": 0.1333, "angle": 55.85, "curve": 0.409, "c2": 0.01, "c3": 0.75}, - {"time": 0.3167, "angle": -24.65, "curve": 0.243, "c3": 0.649, "c4": 0.6}, {"time": 0.4167, "angle": 5.54} + {"angle": 1.65, "curve": 0.382, "c2": 0.58, "c3": 0.731}, {"time": 0.05, "curve": 0.25, "c3": 0.75}, {"time": 0.1667, "angle": -15.35, "curve": 0.25, "c3": 0.75}, + {"time": 0.4333, "angle": 14.26, "curve": 0.25, "c3": 0.75}, {"time": 0.7333, "angle": -15.35, "curve": 0.25, "c3": 0.75}, + {"time": 0.8833, "angle": 6.8, "curve": 0.243, "c3": 0.655, "c4": 0.63}, {"time": 1, "angle": 1.65} + ], + "translate": [ + {"curve": 0.25, "c3": 0.75}, {"time": 0.1167, "x": -1.59, "y": 23.93, "curve": 0.25, "c3": 0.75}, {"time": 0.3833, "x": 6.55, "y": -29.78, "curve": 0.25, "c3": 0.75}, + {"time": 0.6833, "x": -1.59, "y": 23.93, "curve": 0.25, "c3": 0.75}, {"time": 0.8333, "x": 33.54, "y": -3.13, "curve": 0.25, "c3": 0.75}, {"time": 1} ] }, - "body-fur-4": { + "@body6": { "rotate": [ - {"angle": -14.05, "curve": 0.342, "c2": 0.36, "c3": 0.692, "c4": 0.75}, {"time": 0.05, "angle": -3.8, "curve": 0.377, "c2": 0.61, "c3": 0.72}, {"time": 0.0833}, - {"time": 0.1667, "angle": 55.85, "curve": 0.409, "c2": 0.01, "c3": 0.75}, {"time": 0.35, "angle": -24.65, "curve": 0.254, "c3": 0.621, "c4": 0.47}, {"time": 0.4167, "angle": 12.53} + {"angle": 23.32, "curve": 0.321, "c2": 0.3, "c3": 0.679, "c4": 0.7}, {"time": 0.0667, "angle": 7.48, "curve": 0.382, "c2": 0.58, "c3": 0.731}, + {"time": 0.1167, "curve": 0.25, "c3": 0.75}, {"time": 0.2333, "angle": -5.24, "curve": 0.25, "c3": 0.75}, {"time": 0.5, "angle": 25.77, "curve": 0.25, "c3": 0.75}, + {"time": 0.8, "angle": -5.24, "curve": 0.25, "c3": 0.75}, {"time": 0.95, "angle": 30.87, "curve": 0.269, "c3": 0.618, "c4": 0.42}, {"time": 1, "angle": 23.32} + ], + "translate": [ + {"x": -17.77, "y": -9.71, "curve": 0.381, "c2": 0.55, "c3": 0.742}, {"time": 0.0667, "curve": 0.25, "c3": 0.75}, {"time": 0.1833, "x": 5.81, "y": -4.07, "curve": 0.25, "c3": 0.75}, + {"time": 0.45, "x": -70.52, "y": 35.61, "curve": 0.25, "c3": 0.75}, {"time": 0.75, "x": 5.81, "y": -4.07, "curve": 0.25, "c3": 0.75}, + {"time": 0.9, "x": -48.3, "y": -26.4, "curve": 0.245, "c3": 0.637, "c4": 0.56}, {"time": 1, "x": -17.77, "y": -9.71} ] }, - "body-fur-5": { + "body-braid2": { "rotate": [ - {"angle": -3.8, "curve": 0.377, "c2": 0.61, "c3": 0.72}, {"time": 0.0333, "curve": 0.25, "c3": 0.75}, {"time": 0.1167, "angle": 55.85, "curve": 0.409, "c2": 0.01, "c3": 0.75}, - {"time": 0.3, "angle": -24.65, "curve": 0.243, "c3": 0.674, "c4": 0.69}, {"time": 0.4167, "angle": 6.86} + {"curve": 0.25, "c3": 0.75}, {"time": 0.1167, "angle": -1.43, "curve": 0.25, "c3": 0.75}, {"time": 0.3833, "angle": 20.83, "curve": 0.25, "c3": 0.75}, + {"time": 0.6833, "angle": -1.43, "curve": 0.25, "c3": 0.75}, {"time": 0.8333, "angle": 20.83, "curve": 0.25, "c3": 0.75}, {"time": 1} ] }, - "body-fur-6": { + "body-braid4": { "rotate": [ - {"angle": -10.42, "curve": 0.347, "c2": 0.38, "c3": 0.688, "c4": 0.74}, {"time": 0.0333, "angle": -3.8, "curve": 0.377, "c2": 0.61, "c3": 0.72}, {"time": 0.0667}, - {"time": 0.15, "angle": 55.85, "curve": 0.409, "c2": 0.01, "c3": 0.75}, {"time": 0.3333, "angle": -24.65, "curve": 0.247, "c3": 0.631, "c4": 0.53}, {"time": 0.4167, "angle": 13.33} + {"angle": 20.81, "curve": 0.345, "c2": 0.37, "c3": 0.757}, {"time": 0.1167, "curve": 0.25, "c3": 0.75}, {"time": 0.2333, "angle": -11.53, "curve": 0.25, "c3": 0.75}, + {"time": 0.5, "angle": 27.46, "curve": 0.25, "c3": 0.75}, {"time": 0.8, "angle": -11.53, "curve": 0.25, "c3": 0.75}, + {"time": 0.95, "angle": 27.46, "curve": 0.269, "c3": 0.618, "c4": 0.42}, {"time": 1, "angle": 20.81} ] }, - "body-fur-7": { + "body-braid3": { "rotate": [ - {"angle": -1.27, "curve": 0.362, "c2": 0.64, "c3": 0.698}, {"time": 0.0167, "curve": 0.25, "c3": 0.75}, {"time": 0.1, "angle": 55.85, "curve": 0.409, "c2": 0.01, "c3": 0.75}, - {"time": 0.2833, "angle": -24.65, "curve": 0.245, "c3": 0.707, "c4": 0.82}, {"time": 0.4167, "angle": 2.91} + {"angle": 12.24, "curve": 0.381, "c2": 0.55, "c3": 0.742}, {"time": 0.0667, "curve": 0.25, "c3": 0.75}, {"time": 0.1833, "angle": -8.3, "curve": 0.25, "c3": 0.75}, + {"time": 0.45, "angle": 33.27, "curve": 0.25, "c3": 0.75}, {"time": 0.75, "angle": -8.3, "curve": 0.25, "c3": 0.75}, + {"time": 0.9, "angle": 33.27, "curve": 0.245, "c3": 0.637, "c4": 0.56}, {"time": 1, "angle": 12.24} ] }, - "body-fur-9": { + "@body2": { "rotate": [ - {"angle": -10.42, "curve": 0.347, "c2": 0.38, "c3": 0.688, "c4": 0.74}, {"time": 0.0333, "angle": -3.8, "curve": 0.377, "c2": 0.61, "c3": 0.72}, - {"time": 0.0667, "curve": 0.25, "c3": 0.75}, {"time": 0.15, "angle": 55.85, "curve": 0.409, "c2": 0.01, "c3": 0.75}, - {"time": 0.3333, "angle": -24.65, "curve": 0.247, "c3": 0.631, "c4": 0.53}, {"time": 0.4167, "angle": 6.86} + {"angle": -11.82, "curve": 0.33, "c2": 0.32, "c3": 0.67, "c4": 0.68}, {"time": 0.0333, "angle": -6.89, "curve": 0.381, "c2": 0.55, "c3": 0.742}, {"time": 0.1, "curve": 0.25, "c3": 0.75}, + {"time": 0.2167, "angle": 7.45, "curve": 0.25, "c3": 0.75}, {"time": 0.4833, "angle": -18.73, "curve": 0.25, "c3": 0.75}, {"time": 0.7833, "angle": 7.45, "curve": 0.25, "c3": 0.75}, + {"time": 0.9333, "angle": -18.73, "curve": 0.258, "c3": 0.619, "c4": 0.45}, {"time": 1, "angle": -11.82} + ], + "translate": [ + {"x": 2.02, "y": -5.32, "curve": 0.375, "c2": 0.62, "c3": 0.716}, {"time": 0.0333, "curve": 0.25, "c3": 0.75}, {"time": 0.15, "x": -0.08, "y": 1.15, "curve": 0.25, "c3": 0.75}, + {"time": 0.4167, "x": 4.59, "y": -41.28, "curve": 0.25, "c3": 0.75}, {"time": 0.7167, "x": -0.08, "y": 1.15, "curve": 0.25, "c3": 0.75}, + {"time": 0.8667, "x": 15.54, "y": -40.86, "curve": 0.243, "c3": 0.68, "c4": 0.71}, {"time": 1, "x": 2.02, "y": -5.32} + ] + }, + "body-braid6": { + "rotate": [ + {"angle": 18.35, "curve": 0.25, "c3": 0.75}, {"time": 0.1667, "curve": 0.25, "c3": 0.75}, {"time": 0.2833, "angle": -20.17, "curve": 0.25, "c3": 0.75}, + {"time": 0.55, "angle": 18.35, "curve": 0.25, "c3": 0.75}, {"time": 0.85, "angle": -20.17, "curve": 0.25, "c3": 0.75}, {"time": 1, "angle": 18.35} + ] + }, + "body-braid5": { + "rotate": [ + {"angle": 18.01, "curve": 0.375, "c2": 0.5, "c3": 0.75}, {"time": 0.0833, "curve": 0.25, "c3": 0.75}, {"time": 0.2, "angle": -7.27, "curve": 0.25, "c3": 0.75}, + {"time": 0.4667, "angle": 36.02, "curve": 0.25, "c3": 0.75}, {"time": 0.7667, "angle": -7.27, "curve": 0.25, "c3": 0.75}, + {"time": 0.9167, "angle": 36.02, "curve": 0.25, "c3": 0.625, "c4": 0.5}, {"time": 1, "angle": 18.01} + ] + }, + "body-braid": { + "rotate": [ + {"angle": 2.92, "curve": 0.375, "c2": 0.62, "c3": 0.716}, {"time": 0.0333, "curve": 0.25, "c3": 0.75}, {"time": 0.15, "angle": -2.68, "curve": 0.25, "c3": 0.75}, + {"time": 0.4167, "angle": 22.42, "curve": 0.25, "c3": 0.75}, {"time": 0.7167, "angle": -2.68, "curve": 0.25, "c3": 0.75}, + {"time": 0.8667, "angle": 22.42, "curve": 0.243, "c3": 0.68, "c4": 0.71}, {"time": 1, "angle": 2.92} ] } - } + }, + "events": [{"time": 0.4167, "name": "start-attack"}, {"time": 0.5, "name": "hit"}, {"time": 0.6667, "name": "hit"}] }, - "3475359579": { + "2686448266": { "slots": { - "eyes": {"attachment": [{"time": 0.0167, "name": "eyes-shut"}, {"time": 0.5833, "name": "eyes-angry"}, {"time": 0.8333, "name": "eyes-shut"}, {"time": 0.9167, "name": "eyes"}]}, - "mouth": {"attachment": [{"time": 0.0167, "name": "mouth-bite"}, {"time": 0.6667, "name": "mouth-open"}, {"time": 0.8333, "name": "mouth"}]} + "eyes": {"attachment": [{"time": 0.0167, "name": "eyes-angry"}, {"time": 0.9167, "name": "eyes"}]}, + "mouth": {"attachment": [{"time": 0.0167, "name": "mouth-bite"}, {"time": 0.1833, "name": "mouth-open"}, {"time": 0.5, "name": "mouth-bite"}, {"time": 0.9167, "name": "mouth"}]} }, "bones": { "@pivot-back": { "rotate": [ - {"curve": "stepped"}, {"time": 0.0167, "angle": -45}, {"time": 0.1, "angle": -85, "curve": "stepped"}, {"time": 0.6667, "angle": -85, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "angle": -3.92, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "angle": 2.51, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.25, "angle": -6, "curve": "stepped"}, {"time": 0.2667, "angle": -20, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.4833, "angle": -22, "curve": "stepped"}, + {"time": 0.5, "angle": 10}, {"time": 0.6667, "angle": 12, "curve": "stepped"}, {"time": 0.7, "angle": 4, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.8333, "angle": 6, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1} ], "translate": [ - {"curve": "stepped"}, {"time": 0.0167, "x": 94.99, "y": -21}, {"time": 0.05, "x": 256.42, "y": -60}, {"time": 0.1, "x": 408.25, "y": -188, "curve": "stepped"}, - {"time": 0.6667, "x": 408.25, "y": -188, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.8333, "y": 12.75, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1} - ] + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "x": 71.93, "y": -12.95, "curve": "stepped"}, {"time": 0.1667, "x": 71.93, "y": -12.95, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.25, "x": -135.5, "curve": "stepped"}, {"time": 0.2667, "x": -551.77, "y": 110, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.4833, "x": -551.77, "y": 120.52, "curve": "stepped"}, {"time": 0.5, "x": -565, "y": -35}, {"time": 0.6667, "x": -565, "y": -40, "curve": "stepped"}, + {"time": 0.7, "x": -135.5, "y": 5, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.8333, "x": -135.5, "y": 10, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1} + ], + "scale": [{"time": 0.25, "curve": "stepped"}, {"time": 0.2667, "x": -1, "curve": "stepped"}, {"time": 0.6667, "x": -1, "curve": "stepped"}, {"time": 0.7}] }, - "@shadow": { + "leg-front-right-IK": { "translate": [ - {"curve": "stepped"}, {"time": 0.0167, "x": 144.17}, {"time": 0.1, "x": 589.27, "curve": 0.313, "c3": 0.699}, {"time": 0.25, "x": 627.48, "curve": 0.313, "c3": 0.699}, - {"time": 0.4167, "x": 576.87, "curve": 0.313, "c3": 0.699}, {"time": 0.55, "x": 602.83, "curve": 0.313, "c3": 0.699}, {"time": 0.6667, "x": 576.87, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.8333} - ], - "scale": [ - {"curve": "stepped"}, {"time": 0.0167, "x": 0.92, "y": 0.92}, {"time": 0.1, "curve": 0, "c2": 0.22, "c3": 0.373, "c4": 0.57}, {"time": 0.25, "x": 1.04, "y": 1.04, "curve": "stepped"}, - {"time": 0.6667, "x": 1.04, "y": 1.04, "curve": 0.206, "c2": 0.38, "c3": 0.736}, {"time": 0.8333, "x": 1.1, "y": 1.1, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1} + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 30.89, "y": 11.74, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": 42.9, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.25, "x": -172.87, "y": 28.32, "curve": "stepped"}, {"time": 0.2667, "x": 355.74, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.4833, "x": 374.5, "curve": "stepped"}, + {"time": 0.5, "x": 488.71, "y": 62.54, "curve": 0.306, "c3": 0.695}, {"time": 0.6667, "x": 490.35, "y": 93.63, "curve": "stepped"}, {"time": 0.7, "x": -152.3, "curve": "stepped"}, + {"time": 0.8333, "x": -152.3, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1} ] }, - "@leg-back-left": {"translate": [{"curve": "stepped"}, {"time": 0.0167, "x": 6.4, "y": 0.19}, {"time": 0.1667}]}, - "leg-front-right-IK": { + "leg-front-left-IK": { "translate": [ - {"curve": "stepped"}, {"time": 0.0167, "x": 69.67, "y": 327.04}, {"time": 0.05, "x": 451.04, "y": 582.91}, {"time": 0.0833, "x": 787.85, "y": 470.29}, - {"time": 0.1, "x": 945.09, "y": 394.99, "curve": 0.313, "c3": 0.699}, {"time": 0.25, "x": 1086.85, "y": 338.86, "curve": 0.313, "c3": 0.699}, - {"time": 0.4167, "x": 921.41, "y": 410.91, "curve": 0.313, "c3": 0.699}, {"time": 0.5833, "x": 1028.37, "y": 385.44}, {"time": 0.6667, "x": 914.82, "y": 422.49}, - {"time": 0.7, "x": 413.58, "y": 458.44}, {"time": 0.75, "x": 45.46, "y": 287.09}, {"time": 0.7833, "x": -34.18, "y": 117.59}, {"time": 0.8333} + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "x": 8.25, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": 42.9, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.25, "x": -192.09, "y": 31.17, "curve": "stepped"}, {"time": 0.2667, "x": -280.98, "y": 58.99, "curve": 0.306, "c3": 0.695}, + {"time": 0.4833, "x": -315.94, "y": 61.17, "curve": "stepped"}, {"time": 0.5, "x": -170.67, "curve": "stepped"}, {"time": 0.6667, "x": -170.67, "curve": "stepped"}, + {"time": 0.7, "x": -151.12, "curve": "stepped"}, {"time": 0.8333, "x": -151.12, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1} ] }, - "tail": { - "rotate": [ - {"curve": "stepped"}, {"time": 0.0167, "angle": 35.35}, {"time": 0.1, "angle": -18.03, "curve": 0.313, "c3": 0.699}, {"time": 0.25, "angle": 12.69, "curve": 0.313, "c3": 0.699}, - {"time": 0.4167, "angle": -15.12, "curve": 0.313, "c3": 0.699}, {"time": 0.6667, "angle": 1.29, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.8333, "angle": 19.35, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1} + "@leg-front-left": { + "translate": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "x": -4.8, "y": 21.17, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.1667, "x": -0.53, "y": 0.11, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "x": -1, "y": -5.53, "curve": "stepped"}, + {"time": 0.2667, "x": 2.26, "y": 14.19, "curve": "stepped"}, {"time": 0.4833, "x": 2.26, "y": 14.19, "curve": "stepped"}, {"time": 0.5, "x": 3.58, "y": 7.39, "curve": "stepped"}, + {"time": 0.6667, "x": 3.58, "y": 7.39, "curve": "stepped"}, {"time": 0.7, "x": -1, "y": -5.53, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.8333, "x": -0.91, "y": -4.54, "curve": 0.315, "c4": 0.8}, {"time": 1} ] }, - "leg-back-left-IK": { + "@leg-back-left": { "translate": [ - {"curve": "stepped"}, {"time": 0.0167, "x": -3.7, "y": 19.91}, {"time": 0.05, "x": -86.78, "y": 121.52}, {"time": 0.1, "x": 129.15, "y": 364.61, "curve": 0.313, "c3": 0.699}, - {"time": 0.25, "x": 262.18, "y": 406.7, "curve": 0.313, "c3": 0.699}, {"time": 0.4167, "x": 109.91, "y": 347.96, "curve": 0.313, "c3": 0.699}, {"time": 0.5833, "x": 216.28, "y": 393.95}, - {"time": 0.6667, "x": 118.81, "y": 360.02}, {"time": 0.7, "x": -121.03, "y": 41.31}, {"time": 0.75, "x": -95.31, "y": -47.01}, {"time": 0.7833, "x": 22.31, "y": -53.8}, {"time": 0.8333} + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 0.67, "y": -7.85, "curve": 0.161, "c3": 0.854}, {"time": 0.1667, "x": 0.53, "y": -13.09, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.25, "curve": "stepped"}, {"time": 0.2667, "x": -16.19, "y": -13.84, "curve": "stepped"}, {"time": 0.4833, "x": -16.19, "y": -13.84, "curve": "stepped"}, + {"time": 0.5, "x": -2.2, "y": -22.7}, {"time": 0.6667, "x": -0.28, "y": -26.94, "curve": "stepped"}, {"time": 0.7} ] }, - "leg-front-left-IK": { + "leg-back-left-IK": { "translate": [ - {"curve": "stepped"}, {"time": 0.0167, "x": -5.8, "y": 177.99}, {"time": 0.05, "x": 106.35, "y": 306.87}, {"time": 0.0833, "x": 355.94, "y": 424.69}, - {"time": 0.1, "x": 515.46, "y": 408.14, "curve": 0.313, "c3": 0.699}, {"time": 0.25, "x": 536.35, "y": 423.87, "curve": 0.313, "c3": 0.699}, - {"time": 0.4167, "x": 492.39, "y": 405.73, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.6667, "x": 482.36, "y": 419.06}, {"time": 0.7, "x": 97.67, "y": 283.45}, - {"time": 0.75, "x": -12.16, "y": 45.82}, {"time": 0.7833, "x": -31.56, "y": 29.02}, {"time": 0.8333} + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 80.9, "curve": 0.161, "c3": 0.854}, {"time": 0.1667, "x": 49.4, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.25, "x": -96.78, "y": 27.51, "curve": "stepped"}, {"time": 0.2667, "x": -635.14, "y": 132.21, "curve": 0.306, "c3": 0.695}, + {"time": 0.4833, "x": -660.78, "y": 143.78, "curve": "stepped"}, {"time": 0.5, "x": -556.99, "y": -8.43, "curve": 0, "c2": 0.3, "c3": 0.544}, + {"time": 0.6667, "x": -552.72, "y": -5.12, "curve": "stepped"}, {"time": 0.7, "x": -130.76, "curve": "stepped"}, {"time": 0.8333, "x": -130.76, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 1} ] }, - "@pivot-center": { - "rotate": [ - {"time": 0.0167, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.1, "angle": -95, "curve": 0.313, "c3": 0.699}, {"time": 0.25, "angle": -105, "curve": 0.313, "c3": 0.699}, - {"time": 0.4167, "angle": -90, "curve": 0.313, "c3": 0.699}, {"time": 0.55, "angle": -100, "curve": 0.313, "c3": 0.699}, - {"time": 0.6667, "angle": -90, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.8333} - ], + "@leg-front-right": { "translate": [ - {"time": 0.1, "curve": 0.313, "c3": 0.699}, {"time": 0.25, "x": 1.68, "y": 38.2, "curve": 0.313, "c3": 0.699}, {"time": 0.4167, "x": -2.73, "y": -12.21, "curve": 0.313, "c3": 0.699}, - {"time": 0.55, "x": -0.47, "y": 13.65, "curve": 0.313, "c3": 0.699}, {"time": 0.6667, "x": -2.73, "y": -12.21, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.8333} + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 4.31, "y": 11.86, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.1667, "x": -10.19, "y": -4.67, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "x": -1.86, "y": -9.26, "curve": "stepped"}, + {"time": 0.2667, "x": -18.56, "y": -34.96, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.4833, "x": -13.51, "y": -17.45, "curve": "stepped"}, {"time": 0.5, "x": -4.07, "y": 8.84}, + {"time": 0.6667, "x": -1.39, "y": 0.5, "curve": "stepped"}, {"time": 0.7, "x": -1.86, "y": -9.26, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.8333, "x": -2.25, "y": -13.72, "curve": 0.315, "c4": 0.8}, {"time": 1} ] }, - "@pivot-main": { - "translate": [{"time": 0.6667, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.75, "y": 150, "curve": 0.315, "c4": 0.8}, {"time": 0.8333}], + "@shadow": { + "translate": [ + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 61.96, "curve": "stepped"}, {"time": 0.1667, "x": 61.96, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.25, "x": -143.36, "curve": "stepped"}, {"time": 0.2667, "x": -150.21, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.4833, "x": -152.15, "curve": "stepped"}, + {"time": 0.5, "x": -142.78}, {"time": 0.6667, "x": -144.04, "curve": "stepped"}, {"time": 0.7, "x": -144.72, "curve": "stepped"}, + {"time": 0.8333, "x": -144.72, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1} + ], "scale": [ - {"time": 0.1, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "y": 0.93, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "curve": "stepped"}, - {"time": 0.5667, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.65, "y": 0.7, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.7333, "curve": "stepped"}, - {"time": 0.8333, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.9167, "y": 0.98, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1} + {"time": 0.0833, "curve": 0, "c2": 0.26, "c3": 0.369, "c4": 0.62}, {"time": 0.1667, "x": 1.06, "y": 1.06, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "curve": "stepped"}, + {"time": 0.2667, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.4833, "x": 0.9, "y": 0.9, "curve": "stepped"}, {"time": 0.5, "x": 1.06, "y": 1.06}, + {"time": 0.6667, "x": 1.1, "y": 1.1, "curve": "stepped"}, {"time": 0.7, "x": 1.06, "y": 1.06, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.8333, "x": 1.1, "y": 1.1, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1} ] }, - "@leg-front-right": {"translate": [{"time": 0.75, "curve": 0.306, "c4": 0.8}, {"time": 0.8333, "x": -2.23, "y": -25.27, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1}]}, - "body-fur-2": { + "tail": { "rotate": [ - {"angle": -12.43, "curve": 0.308, "c2": 0.39, "c3": 0.641, "c4": 0.78}, {"time": 0.0667, "angle": 7.42, "curve": 0.322, "c2": 0.62, "c3": 0.655}, - {"time": 0.1, "angle": 10.43, "curve": 0.25, "c3": 0.75}, {"time": 0.2, "angle": 34.88, "curve": 0.25, "c3": 0.579}, {"time": 0.3167, "angle": -33.9, "curve": 0.25, "c3": 0.75}, - {"time": 0.4833, "angle": 4.81, "curve": 0.25, "c3": 0.75}, {"time": 0.6667, "angle": -37.99, "curve": 0.25, "c3": 0.75}, {"time": 0.7667, "angle": 8.02, "curve": 0.25, "c3": 0.75}, - {"time": 0.9, "angle": -42.9, "curve": 0.286, "c3": 0.619, "c4": 0.5}, {"time": 1, "angle": 13.84} + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "angle": 15.61, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "angle": 20.44, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.25, "angle": -15.58, "curve": "stepped"}, {"time": 0.2667, "angle": 40.35, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.4833, "angle": 41.35, "curve": "stepped"}, + {"time": 0.5, "angle": -14.65}, {"time": 0.6667, "angle": -15.65, "curve": "stepped"}, {"time": 0.7, "angle": -15.58, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.8333, "angle": 19.38, "curve": 0.313, "c3": 0.699}, {"time": 1} ] }, - "body-fur-9": { + "@pivot-main": {"translate": [{"time": 0.8333, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.9167, "y": 31, "curve": 0.315, "c4": 0.8}, {"time": 1}]}, + "@body3": { "rotate": [ - {"angle": -6.38, "curve": 0.314, "c2": 0.4, "c3": 0.648, "c4": 0.77}, {"time": 0.05, "angle": 7.42, "curve": 0.322, "c2": 0.62, "c3": 0.655}, {"time": 0.0833, "angle": 10.43}, - {"time": 0.1833, "angle": 34.88, "curve": 0.25, "c3": 0.579}, {"time": 0.3, "angle": -33.9, "curve": 0.25, "c3": 0.75}, {"time": 0.4667, "angle": 4.81, "curve": 0.25, "c3": 0.75}, - {"time": 0.65, "angle": -37.99, "curve": 0.25, "c3": 0.75}, {"time": 0.75, "angle": 8.02, "curve": 0.25, "c3": 0.75}, - {"time": 0.8833, "angle": -42.9, "curve": 0.279, "c3": 0.612, "c4": 0.55}, {"time": 1, "angle": 6.86} - ] + {"angle": -0.24, "curve": 0.364, "c2": 0.64, "c3": 0.701}, {"time": 0.0333, "curve": 0.25, "c3": 0.75}, {"time": 0.15, "angle": -3.77, "curve": 0.25, "c3": 0.75}, + {"time": 0.45, "angle": -14, "curve": 0.25, "c3": 0.75}, {"time": 0.7667, "angle": -3.77, "curve": 0.244, "c3": 0.702, "c4": 0.8}, {"time": 1, "angle": -0.24} + ], + "translate": [{"time": 0.1167, "curve": 0.25, "c3": 0.75}, {"time": 0.4167, "x": 45.36, "y": -33.56, "curve": 0.25, "c3": 0.75}, {"time": 0.7333}] }, - "body-fur-8": { + "@body4": { "rotate": [ - {"angle": 4.36, "curve": 0.316, "c2": 0.6, "c3": 0.649}, {"time": 0.05, "angle": 10.43}, {"time": 0.15, "angle": 34.88, "curve": 0.25, "c3": 0.579}, - {"time": 0.2667, "angle": -33.9, "curve": 0.25, "c3": 0.75}, {"time": 0.4333, "angle": 4.81, "curve": 0.25, "c3": 0.75}, {"time": 0.6167, "angle": -37.99, "curve": 0.25, "c3": 0.75}, - {"time": 0.7167, "angle": 8.02, "curve": 0.25, "c3": 0.75}, {"time": 0.85, "angle": -42.9, "curve": 0.267, "c3": 0.6, "c4": 0.67}, {"time": 1, "angle": -0.91} + {"angle": -1.79, "curve": 0.374, "c2": 0.62, "c3": 0.714}, {"time": 0.05, "curve": 0.25, "c3": 0.75}, {"time": 0.1667, "angle": -15.35, "curve": 0.25, "c3": 0.75}, + {"time": 0.4667, "angle": 14.26, "curve": 0.25, "c3": 0.75}, {"time": 0.7833, "angle": -15.35, "curve": 0.243, "c3": 0.683, "c4": 0.73}, {"time": 1, "angle": -1.79} + ], + "translate": [ + {"curve": 0.25, "c3": 0.75}, {"time": 0.1167, "x": -1.59, "y": 23.93, "curve": 0.25, "c3": 0.75}, {"time": 0.4167, "x": 6.55, "y": -29.78, "curve": 0.25, "c3": 0.75}, + {"time": 0.7333, "x": -1.59, "y": 23.93, "curve": 0.25, "c3": 0.75}, {"time": 1} ] }, - "body-fur-7": { + "@body6": { "rotate": [ - {"angle": 9.41, "curve": 0.328, "c2": 0.65, "c3": 0.661}, {"time": 0.0167, "angle": 10.43, "curve": 0.25, "c3": 0.75}, {"time": 0.1167, "angle": 34.88, "curve": 0.25, "c3": 0.579}, - {"time": 0.2333, "angle": -33.9, "curve": 0.25, "c3": 0.75}, {"time": 0.4, "angle": 4.81, "curve": 0.25, "c3": 0.75}, {"time": 0.5833, "angle": -37.99, "curve": 0.25, "c3": 0.75}, - {"time": 0.6833, "angle": 8.02, "curve": 0.25, "c3": 0.75}, {"time": 0.8167, "angle": -42.9, "curve": 0.255, "c3": 0.588, "c4": 0.86}, {"time": 1, "angle": 2.91} + {"angle": -0.95, "curve": 0.352, "c2": 0.41, "c3": 0.688, "c4": 0.76}, {"time": 0.0333, "angle": -0.33, "curve": 0.364, "c2": 0.64, "c3": 0.701}, + {"time": 0.0667, "curve": 0.25, "c3": 0.75}, {"time": 0.1833, "angle": -5.24, "curve": 0.25, "c3": 0.75}, {"time": 0.4833, "angle": 25.77, "curve": 0.25, "c3": 0.75}, + {"time": 0.8, "angle": -5.24, "curve": 0.242, "c3": 0.667, "c4": 0.67}, {"time": 1, "angle": -0.95} + ], + "translate": [ + {"x": 0.36, "y": -0.26, "curve": 0.364, "c2": 0.64, "c3": 0.701}, {"time": 0.0333, "curve": 0.25, "c3": 0.75}, {"time": 0.15, "x": 5.81, "y": -4.07, "curve": 0.25, "c3": 0.75}, + {"time": 0.45, "x": -70.52, "y": 35.61, "curve": 0.25, "c3": 0.75}, {"time": 0.7667, "x": 5.81, "y": -4.07, "curve": 0.244, "c3": 0.702, "c4": 0.8}, {"time": 1, "x": 0.36, "y": -0.26} ] }, - "body-fur-6": { + "body-braid2": { "rotate": [ - {"angle": -0.95, "curve": 0.321, "c2": 0.4, "c3": 0.654, "c4": 0.75}, {"time": 0.0333, "angle": 7.42, "curve": 0.322, "c2": 0.62, "c3": 0.655}, {"time": 0.0667, "angle": 10.43}, - {"time": 0.1667, "angle": 34.88, "curve": 0.25, "c3": 0.579}, {"time": 0.2833, "angle": -33.9, "curve": 0.25, "c3": 0.75}, {"time": 0.45, "angle": 4.81, "curve": 0.25, "c3": 0.75}, - {"time": 0.6333, "angle": -37.99, "curve": 0.25, "c3": 0.75}, {"time": 0.7333, "angle": 8.02, "curve": 0.25, "c3": 0.75}, - {"time": 0.8667, "angle": -42.9, "curve": 0.273, "c3": 0.606, "c4": 0.6}, {"time": 1, "angle": 13.33} + {"curve": 0.25, "c3": 0.75}, {"time": 0.1167, "angle": -1.43, "curve": 0.25, "c3": 0.75}, {"time": 0.4167, "angle": 20.83, "curve": 0.25, "c3": 0.75}, + {"time": 0.7333, "angle": -1.43, "curve": 0.25, "c3": 0.75}, {"time": 1} ] }, - "body-fur-5": { + "body-braid4": { "rotate": [ - {"angle": 7.42, "curve": 0.322, "c2": 0.62, "c3": 0.655}, {"time": 0.0333, "angle": 10.43}, {"time": 0.1333, "angle": 34.88, "curve": 0.25, "c3": 0.579}, - {"time": 0.25, "angle": -33.9, "curve": 0.25, "c3": 0.75}, {"time": 0.4167, "angle": 4.81, "curve": 0.25, "c3": 0.75}, {"time": 0.6, "angle": -37.99, "curve": 0.25, "c3": 0.75}, - {"time": 0.7, "angle": 8.02, "curve": 0.25, "c3": 0.75}, {"time": 0.8333, "angle": -42.9, "curve": 0.261, "c3": 0.594, "c4": 0.75}, {"time": 1, "angle": 6.86} + {"angle": -3.87, "curve": 0.382, "c2": 0.56, "c3": 0.74}, {"time": 0.1, "curve": 0.25, "c3": 0.75}, {"time": 0.2167, "angle": -11.53, "curve": 0.25, "c3": 0.75}, + {"time": 0.5167, "angle": 27.46, "curve": 0.25, "c3": 0.75}, {"time": 0.8333, "angle": -11.53, "curve": 0.244, "c3": 0.641, "c4": 0.57}, {"time": 1, "angle": -3.87} ] }, - "body-fur-4": { + "body-braid3": { "rotate": [ - {"angle": -6.38, "curve": 0.314, "c2": 0.4, "c3": 0.648, "c4": 0.77}, {"time": 0.05, "angle": 7.42, "curve": 0.322, "c2": 0.62, "c3": 0.655}, {"time": 0.0833, "angle": 10.43}, - {"time": 0.1833, "angle": 34.88, "curve": 0.25, "c3": 0.579}, {"time": 0.3, "angle": -33.9, "curve": 0.25, "c3": 0.75}, {"time": 0.4667, "angle": 4.81, "curve": 0.25, "c3": 0.75}, - {"time": 0.65, "angle": -37.99, "curve": 0.25, "c3": 0.75}, {"time": 0.75, "angle": 8.02, "curve": 0.25, "c3": 0.75}, - {"time": 0.8833, "angle": -42.9, "curve": 0.279, "c3": 0.612, "c4": 0.55}, {"time": 1, "angle": 12.53} + {"angle": -0.97, "curve": 0.374, "c2": 0.62, "c3": 0.714}, {"time": 0.05, "curve": 0.25, "c3": 0.75}, {"time": 0.1667, "angle": -8.3, "curve": 0.25, "c3": 0.75}, + {"time": 0.4667, "angle": 33.27, "curve": 0.25, "c3": 0.75}, {"time": 0.7833, "angle": -8.3, "curve": 0.243, "c3": 0.683, "c4": 0.73}, {"time": 1, "angle": -0.97} ] }, - "body-fur-3": { + "@body2": { "rotate": [ - {"angle": 4.36, "curve": 0.316, "c2": 0.6, "c3": 0.649}, {"time": 0.05, "angle": 10.43}, {"time": 0.15, "angle": 34.88, "curve": 0.25, "c3": 0.579}, - {"time": 0.2667, "angle": -33.9, "curve": 0.25, "c3": 0.75}, {"time": 0.4333, "angle": 4.81, "curve": 0.25, "c3": 0.75}, {"time": 0.6167, "angle": -37.99, "curve": 0.25, "c3": 0.75}, - {"time": 0.7167, "angle": 8.02, "curve": 0.25, "c3": 0.75}, {"time": 0.85, "angle": -42.9, "curve": 0.267, "c3": 0.6, "c4": 0.67}, {"time": 1, "angle": 5.54} + {"angle": 3.09, "curve": 0.344, "c2": 0.37, "c3": 0.683, "c4": 0.72}, {"time": 0.05, "angle": 1.38, "curve": 0.379, "c2": 0.6, "c3": 0.724}, {"time": 0.1167, "curve": 0.25, "c3": 0.75}, + {"time": 0.2333, "angle": 7.45, "curve": 0.25, "c3": 0.75}, {"time": 0.5333, "angle": -18.73, "curve": 0.25, "c3": 0.75}, + {"time": 0.85, "angle": 7.45, "curve": 0.247, "c3": 0.632, "c4": 0.53}, {"time": 1, "angle": 3.09} + ], + "translate": [ + {"x": -0.01, "y": 0.13, "curve": 0.374, "c2": 0.62, "c3": 0.714}, {"time": 0.05, "curve": 0.25, "c3": 0.75}, {"time": 0.1667, "x": -0.08, "y": 1.15, "curve": 0.25, "c3": 0.75}, + {"time": 0.4667, "x": 4.59, "y": -41.28, "curve": 0.25, "c3": 0.75}, {"time": 0.7833, "x": -0.08, "y": 1.15, "curve": 0.243, "c3": 0.683, "c4": 0.73}, {"time": 1, "x": -0.01, "y": 0.13} ] }, - "body-fur-1": { + "body-braid6": { "rotate": [ - {"angle": -0.06, "curve": 0.309, "c2": 0.57, "c3": 0.643}, {"time": 0.0667, "angle": 10.43}, {"time": 0.1667, "angle": 34.88, "curve": 0.25, "c3": 0.579}, - {"time": 0.2833, "angle": -33.9, "curve": 0.25, "c3": 0.75}, {"time": 0.45, "angle": 4.81, "curve": 0.25, "c3": 0.75}, {"time": 0.6333, "angle": -37.99, "curve": 0.25, "c3": 0.75}, - {"time": 0.7333, "angle": 8.02, "curve": 0.25, "c3": 0.75}, {"time": 0.8667, "angle": -42.9, "curve": 0.273, "c3": 0.606, "c4": 0.6}, {"time": 1, "angle": 10.51} + {"angle": -13.4, "curve": 0.359, "c2": 0.43, "c3": 0.756}, {"time": 0.1667, "curve": 0.25, "c3": 0.75}, {"time": 0.2833, "angle": -20.17, "curve": 0.25, "c3": 0.75}, + {"time": 0.5833, "angle": 18.35, "curve": 0.25, "c3": 0.75}, {"time": 0.9, "angle": -20.17, "curve": 0.26, "c3": 0.618, "c4": 0.44}, {"time": 1, "angle": -13.4} ] - } - } - }, - "710052842": { - "slots": { - "eyes": {"attachment": [{"time": 0.0167, "name": "eyes-shut"}, {"time": 0.3, "name": "eyes-angry"}, {"time": 0.4833, "name": "eyes"}]}, - "mouth": {"attachment": [{"time": 0.0167, "name": "mouth-bite"}, {"time": 0.4833, "name": "mouth"}]} - }, - "bones": { - "@pivot-back": { + }, + "body-braid5": { "rotate": [ - {"curve": "stepped"}, {"time": 0.0167, "angle": 8}, {"time": 0.2333, "angle": 10, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "angle": -5, "curve": 0.315, "c4": 0.8}, - {"time": 0.4833, "angle": 5, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5833} - ], - "translate": [ - {"curve": "stepped"}, {"time": 0.0167, "x": 29.16, "y": 6.28}, {"time": 0.2667, "x": 18.48, "y": 18.85, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.3833, "x": -1.17, "y": 18.85, "curve": 0.315, "c4": 0.8}, {"time": 0.4833} + {"angle": -1.87, "curve": 0.382, "c2": 0.58, "c3": 0.733}, {"time": 0.0833, "curve": 0.25, "c3": 0.75}, {"time": 0.2, "angle": -7.27, "curve": 0.25, "c3": 0.75}, + {"time": 0.5, "angle": 36.02, "curve": 0.25, "c3": 0.75}, {"time": 0.8167, "angle": -7.27, "curve": 0.243, "c3": 0.653, "c4": 0.62}, {"time": 1, "angle": -1.87} ] }, - "@shadow": { - "translate": [ - {"curve": "stepped"}, {"time": 0.0167, "x": 33.22}, {"time": 0.2667, "x": 61.08, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3833, "x": 9.02, "curve": 0.315, "c4": 0.8}, - {"time": 0.4833} - ], - "scale": [ - {"curve": "stepped"}, {"time": 0.0167, "x": 1.1, "y": 1.1, "curve": "stepped"}, {"time": 0.2667, "x": 1.1, "y": 1.1, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.3833, "x": 0.98, "y": 0.98, "curve": 0.315, "c4": 0.8}, {"time": 0.4833, "x": 1.1, "y": 1.1, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5833} + "body-braid": { + "rotate": [ + {"angle": -0.17, "curve": 0.364, "c2": 0.64, "c3": 0.701}, {"time": 0.0333, "curve": 0.25, "c3": 0.75}, {"time": 0.15, "angle": -2.68, "curve": 0.25, "c3": 0.75}, + {"time": 0.45, "angle": 22.42, "curve": 0.25, "c3": 0.75}, {"time": 0.7667, "angle": -2.68, "curve": 0.244, "c3": 0.702, "c4": 0.8}, {"time": 1, "angle": -0.17} ] }, - "@pivot-main": { + "@body5": {"rotate": [{"time": 0.1167, "curve": 0.25, "c3": 0.75}, {"time": 0.4167, "angle": 0.5, "curve": 0.25, "c3": 0.75}, {"time": 0.7333}]} + }, + "events": [{"time": 0.3333, "name": "start-attack"}, {"time": 0.5, "name": "hit"}] + }, + "3253321365": { + "slots": { + "eyes": {"attachment": [{"time": 0.05, "name": "eyes-angry"}, {"time": 0.6667, "name": "eyes-shut"}, {"time": 0.75, "name": "eyes"}]}, + "mouth": {"attachment": [{"time": 0.05, "name": "mouth-bite"}, {"time": 0.2667, "name": "mouth-open"}, {"time": 0.55, "name": "mouth-bite"}, {"time": 0.75, "name": "mouth"}]} + }, + "bones": { + "@leg-front-right": { "translate": [ - {"curve": "stepped"}, {"time": 0.0167, "x": 33.18}, {"time": 0.2667, "x": 61.52, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3833, "x": 20.27, "y": 27.91, "curve": 0.315, "c4": 0.8}, - {"time": 0.4833} + {"curve": 0, "c2": 0.4, "c3": 0.383}, {"time": 0.25, "x": -1.86, "y": -9.26, "curve": "stepped"}, {"time": 0.3167, "x": -1.86, "y": -9.26, "curve": "stepped"}, + {"time": 0.3333, "x": -1.99, "y": -1.73}, {"time": 0.5, "x": -2.65, "y": -7.47, "curve": "stepped"}, {"time": 0.55, "x": -2.13, "y": 6.97, "curve": 0.306, "c3": 0.695}, + {"time": 0.6667, "x": 13.75, "y": -28.79, "curve": 0, "c2": 0.3, "c3": 0.54}, {"time": 0.8333} ] }, "tail": { "rotate": [ - {"curve": "stepped"}, {"time": 0.0167, "angle": -18.65}, {"time": 0.2333, "angle": -21.65, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.3333, "angle": -13.3, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.45, "angle": 12.04, "curve": 0.154, "c4": 0.9}, - {"time": 0.5167, "angle": -9.14, "curve": 0.161, "c3": 0.854}, {"time": 0.5833} + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.25, "angle": 21.98, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3167, "angle": -15.58, "curve": "stepped"}, + {"time": 0.3333, "angle": 6.35}, {"time": 0.5, "angle": 10.35, "curve": "stepped"}, {"time": 0.55, "angle": -11.84, "curve": 0.313, "c3": 0.699}, + {"time": 0.6667, "angle": 16.95, "curve": 0.313, "c3": 0.699}, {"time": 0.8333} ] }, - "leg-front-right-IK": { + "@pivot-back": { + "rotate": [ + {"curve": 0, "c2": 0.4, "c3": 0.383}, {"time": 0.15, "angle": 4, "curve": "stepped"}, {"time": 0.25, "angle": 4, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.3167, "curve": "stepped"}, {"time": 0.3333}, {"time": 0.5, "angle": -3, "curve": "stepped"}, {"time": 0.55, "curve": 0.313, "c3": 0.699}, + {"time": 0.6667, "angle": 6, "curve": 0.313, "c3": 0.699}, {"time": 0.8333} + ], "translate": [ - {"time": 0.2333, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "x": 22.26, "y": 54.13}, {"time": 0.3833, "x": 28.04, "y": 49.32, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.45} - ] + {"curve": 0, "c2": 0.4, "c3": 0.383}, {"time": 0.25, "x": 25, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3167, "x": -135.5, "curve": "stepped"}, {"time": 0.3333, "x": -560.54}, + {"time": 0.5, "x": -577.1, "curve": "stepped"}, {"time": 0.55, "x": -151.24, "curve": 0.313, "c3": 0.699}, {"time": 0.6667, "x": -151.24, "y": 4.06, "curve": 0.313, "c3": 0.699}, + {"time": 0.8333} + ], + "scale": [{"time": 0.3167, "curve": "stepped"}, {"time": 0.3333, "x": -1, "curve": "stepped"}, {"time": 0.5, "x": -1, "curve": "stepped"}, {"time": 0.55}] }, "@leg-front-left": { "translate": [ - {"curve": "stepped"}, {"time": 0.0167, "x": -0.45, "y": -3.93}, {"time": 0.2333, "x": -0.82, "y": -2.61}, {"time": 0.3333, "x": -5.6, "y": -0.89, "curve": 0.617, "c4": 0.6}, - {"time": 0.45, "x": -1.09, "y": -14.69, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5833} + {"curve": 0, "c2": 0.4, "c3": 0.383}, {"time": 0.25, "x": -1, "y": -5.53, "curve": "stepped"}, {"time": 0.3167, "x": -1, "y": -5.53, "curve": "stepped"}, + {"time": 0.3333, "x": -1.12, "y": 1.52, "curve": "stepped"}, {"time": 0.55, "x": -1.12, "y": 1.52, "curve": 0.313, "c3": 0.699}, + {"time": 0.6667, "x": -1, "y": -5.53, "curve": 0, "c2": 0.3, "c3": 0.54}, {"time": 0.8333} ] }, - "leg-back-left-IK": { + "@shadow": { "translate": [ - {"curve": "stepped"}, {"time": 0.0167, "x": 50.74, "y": 0.9, "curve": "stepped"}, {"time": 0.2, "x": 50.74, "y": 0.9, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.25, "x": 12.5, "y": 6.45, "curve": 0, "c2": 0.8, "c3": 0.15}, {"time": 0.3667, "x": 5.47, "y": 26.12, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.4833} + {"time": 0.25, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3167, "x": -143.36, "curve": "stepped"}, {"time": 0.3333, "x": -143.36}, {"time": 0.5, "x": -157.56, "curve": "stepped"}, + {"time": 0.55, "x": -161.35, "curve": "stepped"}, {"time": 0.6667, "x": -161.35, "curve": 0.313, "c3": 0.699}, {"time": 0.8333} + ], + "scale": [ + {"curve": 0, "c2": 0.4, "c3": 0.383}, {"time": 0.25, "x": 1.08, "y": 1.08, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3167, "curve": "stepped"}, {"time": 0.3333}, + {"time": 0.5, "x": 1.08, "y": 1.08, "curve": "stepped"}, {"time": 0.55, "curve": 0.313, "c3": 0.699}, {"time": 0.6667, "x": 1.08, "y": 1.08, "curve": 0.313, "c3": 0.699}, + {"time": 0.8333} ] }, - "@leg-front-right": { + "leg-front-left-IK": { "translate": [ - {"time": 0.0167}, {"time": 0.3333, "x": -7.53, "y": 2.3, "curve": 0, "c2": 0.1, "c3": 0.853}, {"time": 0.45, "x": 0.15, "y": -4.26, "curve": 0.159, "c3": 0.853}, - {"time": 0.4833, "x": -2.34, "y": -28.14, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5833} + {"time": 0.25, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3167, "x": -192.09, "y": 31.17, "curve": "stepped"}, {"time": 0.3333, "x": -176.58, "y": 9.99, "curve": 0.31, "c4": 0.8}, + {"time": 0.5, "x": -211.11, "y": 5.88, "curve": "stepped"}, {"time": 0.55, "x": -180.48, "curve": "stepped"}, {"time": 0.6667, "x": -180.48, "curve": 0.313, "c3": 0.699}, + {"time": 0.8333} ] }, - "@leg-back-left": { + "leg-front-right-IK": { "translate": [ - {"curve": "stepped"}, {"time": 0.0167, "x": 18.74, "y": 14.65, "curve": "stepped"}, {"time": 0.1667, "x": 18.74, "y": 14.65, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.4833} + {"time": 0.25, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3167, "x": -59.07, "y": 28.32, "curve": "stepped"}, {"time": 0.3333, "x": 476, "y": 29.47, "curve": 0.31, "c4": 0.8}, + {"time": 0.5, "x": 448.23, "y": 9.95, "curve": "stepped"}, {"time": 0.55, "x": -180.48, "curve": "stepped"}, {"time": 0.6667, "x": -180.48, "curve": 0.313, "c3": 0.699}, {"time": 0.8333} ] }, - "leg-front-left-IK": { + "leg-back-left-IK": { "translate": [ - {"curve": "stepped"}, {"time": 0.0167, "x": 38.52}, {"time": 0.2333, "x": 38.87, "curve": 0, "c2": 0.3, "c3": 0.54}, {"time": 0.3333, "x": 26.12, "y": 38.71}, - {"time": 0.3833, "x": 12.33, "y": 29.93, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.45} + {"time": 0.25, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3167, "x": -96.78, "y": 27.51, "curve": "stepped"}, {"time": 0.3333, "x": -531.4, "y": 29.98, "curve": 0.31, "c4": 0.8}, + {"time": 0.5, "x": -566.3, "y": 31.56, "curve": "stepped"}, {"time": 0.55, "x": -134.74, "curve": "stepped"}, {"time": 0.6667, "x": -134.74, "curve": 0.313, "c3": 0.699}, + {"time": 0.8333} ] }, - "body-fur-2": { + "@pivot-main": {"translate": [{"time": 0.6667, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.75, "y": 31, "curve": 0.315, "c4": 0.8}, {"time": 0.8333}]}, + "@leg-back-left": { + "translate": [{"time": 0.3167, "curve": "stepped"}, {"time": 0.3333, "x": -9.88, "y": -22.87}, {"time": 0.5, "x": -15.32, "y": -26.13, "curve": "stepped"}, {"time": 0.55}] + }, + "@body3": { "rotate": [ - {"angle": -11.97, "curve": 0.358, "c2": 0.42, "c3": 0.702, "c4": 0.8}, {"time": 0.0667, "angle": -2.29, "curve": 0.366, "c2": 0.63, "c3": 0.703}, {"time": 0.1}, - {"time": 0.2, "angle": 37.82, "curve": 0.325, "c3": 0.75}, {"time": 0.4333, "angle": -32.98, "curve": 0.245, "c3": 0.637, "c4": 0.56}, {"time": 0.5833, "angle": 13.84} + {"angle": -0.32, "curve": 0.369, "c2": 0.63, "c3": 0.707}, {"time": 0.0333, "curve": 0.25, "c3": 0.75}, {"time": 0.1333, "angle": -3.77, "curve": 0.25, "c3": 0.75}, + {"time": 0.3833, "angle": -14, "curve": 0.25, "c3": 0.75}, {"time": 0.65, "angle": -3.77, "curve": 0.244, "c3": 0.693, "c4": 0.76}, {"time": 0.8333, "angle": -0.32} + ], + "translate": [{"time": 0.1, "curve": 0.25, "c3": 0.75}, {"time": 0.35, "x": 45.36, "y": -33.56, "curve": 0.25, "c3": 0.75}, {"time": 0.6167}] + }, + "@body4": { + "rotate": [ + {"angle": -1.32, "curve": 0.369, "c2": 0.63, "c3": 0.707}, {"time": 0.0333, "curve": 0.25, "c3": 0.75}, {"time": 0.1333, "angle": -15.35, "curve": 0.25, "c3": 0.75}, + {"time": 0.3833, "angle": 14.26, "curve": 0.25, "c3": 0.75}, {"time": 0.65, "angle": -15.35, "curve": 0.244, "c3": 0.693, "c4": 0.76}, {"time": 0.8333, "angle": -1.32} + ], + "translate": [ + {"curve": 0.25, "c3": 0.75}, {"time": 0.1, "x": -1.59, "y": 23.93, "curve": 0.25, "c3": 0.75}, {"time": 0.35, "x": 6.55, "y": -29.78, "curve": 0.25, "c3": 0.75}, + {"time": 0.6167, "x": -1.59, "y": 23.93, "curve": 0.25, "c3": 0.75}, {"time": 0.8333} ] }, - "body-fur-9": { + "@body6": { "rotate": [ - {"angle": -9.21, "curve": 0.356, "c2": 0.42, "c3": 0.696, "c4": 0.78}, {"time": 0.05, "angle": -2.29, "curve": 0.366, "c2": 0.63, "c3": 0.703}, {"time": 0.0833}, - {"time": 0.1833, "angle": 37.82, "curve": 0.325, "c3": 0.75}, {"time": 0.4167, "angle": -32.98, "curve": 0.243, "c3": 0.649, "c4": 0.6}, {"time": 0.5833, "angle": 6.86} + {"angle": -1.81, "curve": 0.345, "c2": 0.37, "c3": 0.682, "c4": 0.72}, {"time": 0.0333, "angle": -0.86, "curve": 0.378, "c2": 0.61, "c3": 0.721}, + {"time": 0.0833, "curve": 0.25, "c3": 0.75}, {"time": 0.1833, "angle": -5.24, "curve": 0.25, "c3": 0.75}, {"time": 0.4333, "angle": 25.77, "curve": 0.25, "c3": 0.75}, + {"time": 0.7, "angle": -5.24, "curve": 0.245, "c3": 0.64, "c4": 0.57}, {"time": 0.8333, "angle": -1.81} + ], + "translate": [ + {"x": 0.5, "y": -0.35, "curve": 0.369, "c2": 0.63, "c3": 0.707}, {"time": 0.0333, "curve": 0.25, "c3": 0.75}, {"time": 0.1333, "x": 5.81, "y": -4.07, "curve": 0.25, "c3": 0.75}, + {"time": 0.3833, "x": -70.52, "y": 35.61, "curve": 0.25, "c3": 0.75}, {"time": 0.65, "x": 5.81, "y": -4.07, "curve": 0.244, "c3": 0.693, "c4": 0.76}, + {"time": 0.8333, "x": 0.5, "y": -0.35} ] }, - "body-fur-8": { + "body-braid2": { "rotate": [ - {"angle": -4.29, "curve": 0.375, "c2": 0.62, "c3": 0.716}, {"time": 0.05}, {"time": 0.15, "angle": 37.82, "curve": 0.325, "c3": 0.75}, - {"time": 0.3833, "angle": -32.98, "curve": 0.243, "c3": 0.68, "c4": 0.71}, {"time": 0.5833, "angle": -0.91} + {"curve": 0.25, "c3": 0.75}, {"time": 0.1, "angle": -1.43, "curve": 0.25, "c3": 0.75}, {"time": 0.35, "angle": 20.83, "curve": 0.25, "c3": 0.75}, + {"time": 0.6167, "angle": -1.43, "curve": 0.25, "c3": 0.75}, {"time": 0.8333} ] }, - "body-fur-7": { + "body-braid4": { "rotate": [ - {"angle": -0.75, "curve": 0.352, "c2": 0.65, "c3": 0.687}, {"time": 0.0167, "curve": 0.25, "c3": 0.75}, {"time": 0.1167, "angle": 37.82, "curve": 0.325, "c3": 0.75}, - {"time": 0.35, "angle": -32.98, "curve": 0.246, "c3": 0.723, "c4": 0.88}, {"time": 0.5833, "angle": 2.91} + {"angle": -6.35, "curve": 0.371, "c2": 0.48, "c3": 0.752}, {"time": 0.1167, "curve": 0.25, "c3": 0.75}, {"time": 0.2167, "angle": -11.53, "curve": 0.25, "c3": 0.75}, + {"time": 0.4667, "angle": 27.46, "curve": 0.25, "c3": 0.75}, {"time": 0.7333, "angle": -11.53, "curve": 0.253, "c3": 0.622, "c4": 0.48}, {"time": 0.8333, "angle": -6.35} ] }, - "body-fur-6": { + "body-braid3": { "rotate": [ - {"angle": -6.62, "curve": 0.352, "c2": 0.41, "c3": 0.688, "c4": 0.76}, {"time": 0.0333, "angle": -2.29, "curve": 0.366, "c2": 0.63, "c3": 0.703}, {"time": 0.0667}, - {"time": 0.1667, "angle": 37.82, "curve": 0.325, "c3": 0.75}, {"time": 0.4, "angle": -32.98, "curve": 0.242, "c3": 0.663, "c4": 0.65}, {"time": 0.5833, "angle": 13.33} + {"angle": -1.36, "curve": 0.378, "c2": 0.61, "c3": 0.721}, {"time": 0.05, "curve": 0.25, "c3": 0.75}, {"time": 0.15, "angle": -8.3, "curve": 0.25, "c3": 0.75}, + {"time": 0.4, "angle": 33.27, "curve": 0.25, "c3": 0.75}, {"time": 0.6667, "angle": -8.3, "curve": 0.242, "c3": 0.671, "c4": 0.68}, {"time": 0.8333, "angle": -1.36} ] }, - "body-fur-5": { + "@body2": { "rotate": [ - {"angle": -2.29, "curve": 0.366, "c2": 0.63, "c3": 0.703}, {"time": 0.0333}, {"time": 0.1333, "angle": 37.82, "curve": 0.325, "c3": 0.75}, - {"time": 0.3667, "angle": -32.98, "curve": 0.244, "c3": 0.7, "c4": 0.79}, {"time": 0.5833, "angle": 6.86} + {"angle": 4.08, "curve": 0.342, "c2": 0.36, "c3": 0.69, "c4": 0.74}, {"time": 0.0667, "angle": 1.22, "curve": 0.378, "c2": 0.61, "c3": 0.721}, + {"time": 0.1167, "curve": 0.25, "c3": 0.75}, {"time": 0.2167, "angle": 7.45, "curve": 0.25, "c3": 0.75}, {"time": 0.4667, "angle": -18.73, "curve": 0.25, "c3": 0.75}, + {"time": 0.7333, "angle": 7.45, "curve": 0.253, "c3": 0.622, "c4": 0.48}, {"time": 0.8333, "angle": 4.08} + ], + "translate": [ + {"x": -0.02, "y": 0.29, "curve": 0.382, "c2": 0.58, "c3": 0.732}, {"time": 0.0667, "curve": 0.25, "c3": 0.75}, {"time": 0.1667, "x": -0.08, "y": 1.15, "curve": 0.25, "c3": 0.75}, + {"time": 0.4167, "x": 4.59, "y": -41.28, "curve": 0.25, "c3": 0.75}, {"time": 0.6833, "x": -0.08, "y": 1.15, "curve": 0.243, "c3": 0.654, "c4": 0.62}, + {"time": 0.8333, "x": -0.02, "y": 0.29} ] }, - "body-fur-4": { + "body-braid6": { "rotate": [ - {"angle": -9.21, "curve": 0.356, "c2": 0.42, "c3": 0.696, "c4": 0.78}, {"time": 0.05, "angle": -2.29, "curve": 0.366, "c2": 0.63, "c3": 0.703}, {"time": 0.0833}, - {"time": 0.1833, "angle": 37.82, "curve": 0.325, "c3": 0.75}, {"time": 0.4167, "angle": -32.98, "curve": 0.243, "c3": 0.649, "c4": 0.6}, {"time": 0.5833, "angle": 12.53} + {"angle": -16.88, "curve": 0.329, "c2": 0.32, "c3": 0.758}, {"time": 0.1667, "curve": 0.25, "c3": 0.75}, {"time": 0.2667, "angle": -20.17, "curve": 0.25, "c3": 0.75}, + {"time": 0.5167, "angle": 18.35, "curve": 0.25, "c3": 0.75}, {"time": 0.7833, "angle": -20.17, "curve": 0.279, "c3": 0.622, "c4": 0.39}, {"time": 0.8333, "angle": -16.88} ] }, - "body-fur-3": { + "body-braid5": { "rotate": [ - {"angle": -4.29, "curve": 0.375, "c2": 0.62, "c3": 0.716}, {"time": 0.05}, {"time": 0.15, "angle": 37.82, "curve": 0.325, "c3": 0.75}, - {"time": 0.3833, "angle": -32.98, "curve": 0.243, "c3": 0.68, "c4": 0.71}, {"time": 0.5833, "angle": 5.54} + {"angle": -2.53, "curve": 0.382, "c2": 0.55, "c3": 0.741}, {"time": 0.0833, "curve": 0.25, "c3": 0.75}, {"time": 0.1833, "angle": -7.27, "curve": 0.25, "c3": 0.75}, + {"time": 0.4333, "angle": 36.02, "curve": 0.25, "c3": 0.75}, {"time": 0.7, "angle": -7.27, "curve": 0.245, "c3": 0.64, "c4": 0.57}, {"time": 0.8333, "angle": -2.53} ] }, - "body-fur-1": { + "body-braid": { "rotate": [ - {"angle": -6.68, "curve": 0.38, "c2": 0.59, "c3": 0.727}, {"time": 0.0667}, {"time": 0.1667, "angle": 37.82, "curve": 0.325, "c3": 0.75}, - {"time": 0.4, "angle": -32.98, "curve": 0.242, "c3": 0.663, "c4": 0.65}, {"time": 0.5833, "angle": 10.51} + {"angle": -0.23, "curve": 0.369, "c2": 0.63, "c3": 0.707}, {"time": 0.0333, "curve": 0.25, "c3": 0.75}, {"time": 0.1333, "angle": -2.68, "curve": 0.25, "c3": 0.75}, + {"time": 0.3833, "angle": 22.42, "curve": 0.25, "c3": 0.75}, {"time": 0.65, "angle": -2.68, "curve": 0.244, "c3": 0.693, "c4": 0.76}, {"time": 0.8333, "angle": -0.23} ] - } - } - }, - "1910291818": { - "slots": { - "eyes": {"attachment": [{"time": 0.0167, "name": "eyes-angry"}, {"time": 0.25, "name": "eyes-shut"}, {"time": 0.3, "name": "eyes-angry"}, {"time": 0.4333, "name": "eyes"}]}, - "mouth": {"attachment": [{"time": 0.0167, "name": "mouth-bite"}, {"time": 0.3, "name": "mouth-open"}, {"time": 0.4333, "name": "mouth"}]} + }, + "@body5": {"rotate": [{"time": 0.1, "curve": 0.25, "c3": 0.75}, {"time": 0.35, "angle": 0.5, "curve": 0.25, "c3": 0.75}, {"time": 0.6167}]} }, + "events": [{"time": 0.25, "name": "start-attack"}, {"time": 0.3333, "name": "hit"}] + }, + "4217013558": { "bones": { "@pivot-back": { "rotate": [ - {"curve": "stepped"}, {"time": 0.0167, "angle": 7.5}, {"time": 0.2333, "angle": 10, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "angle": -5, "curve": 0.315, "c4": 0.8}, - {"time": 0.4833, "angle": 5, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5833} + {"curve": 0, "c2": 0.34, "c3": 0.465}, {"time": 0.1667, "angle": 8.43, "curve": 0.614, "c4": 0.29}, {"time": 0.4167, "angle": -69.48, "curve": 0, "c2": 0.1, "c4": 0.9}, + {"time": 0.5833, "angle": 151.42, "curve": 0, "c2": 0.3, "c3": 0.535}, {"time": 0.8333, "angle": -5.75, "curve": 0, "c2": 0.15, "c4": 0.85}, + {"time": 1, "angle": -7.09, "curve": 0, "c2": 0.3, "c3": 0.542}, {"time": 1.25, "angle": 7.21, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1.5} ], "translate": [ - {"curve": "stepped"}, {"time": 0.0167, "x": 29.16, "y": 18.85, "curve": "stepped"}, {"time": 0.2667, "x": 29.16, "y": 18.85, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.3833, "x": -1.17, "y": 18.85, "curve": 0.315, "c4": 0.8}, {"time": 0.4833} + {"x": 0.02, "y": 44.43, "curve": 0, "c2": 0.34, "c3": 0.465}, {"time": 0.1667, "x": 25.79, "y": 23.82, "curve": 0.614, "c4": 0.29}, + {"time": 0.4167, "x": -156.83, "y": 231.34, "curve": 0, "c2": 0.1, "c4": 0.9}, {"time": 0.5833, "x": -1.88, "y": 372.46, "curve": 0, "c2": 0.19, "c3": 0.403, "c4": 0.57}, + {"time": 0.6667, "x": 196.15, "y": 317.74, "curve": 0.282, "c2": 0.45, "c3": 0.748}, {"time": 0.8333, "x": 558.6, "y": 68.09, "curve": 0, "c2": 0.15, "c4": 0.85}, + {"time": 1, "x": 586.58, "y": 68.09, "curve": 0, "c2": 0.3, "c3": 0.542}, {"time": 1.25, "x": 594.57, "y": 68.09, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 1.5, "x": 0.02, "y": 44.43} ] }, - "leg-back-left-IK": { - "translate": [ - {"curve": "stepped"}, {"time": 0.0167, "x": 50.74, "y": 0.9, "curve": "stepped"}, {"time": 0.2, "x": 50.74, "y": 0.9, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.25, "x": 12.5, "y": 6.45, "curve": 0, "c2": 0.8, "c3": 0.15}, {"time": 0.3667, "x": 5.47, "y": 26.12, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.4833} + "tail": { + "rotate": [ + {"curve": 0, "c2": 0.34, "c3": 0.465}, {"time": 0.1667, "angle": 16.63, "curve": 0.622, "c4": 0.3}, {"time": 0.4167, "angle": -38.13, "curve": 0, "c2": 0.1, "c4": 0.9}, + {"time": 0.6667, "angle": 21.47, "curve": 0, "c2": 0.2, "c3": 0.698}, {"time": 1, "angle": -14.5, "curve": 0, "c2": 0.3, "c3": 0.549}, + {"time": 1.25, "angle": 17, "curve": 0, "c2": 0.2, "c3": 0.7}, {"time": 1.5} ] }, "@leg-back-left": { - "translate": [ - {"curve": "stepped"}, {"time": 0.0167, "x": 18.74, "y": 14.65, "curve": "stepped"}, {"time": 0.1667, "x": 18.74, "y": 14.65, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.4833} + "rotate": [ + {"curve": 0, "c2": 0.34, "c3": 0.465}, {"time": 0.1667, "angle": -14.34, "curve": 0.619, "c4": 0.3}, {"time": 0.4167, "angle": 14.4, "curve": 0, "c2": 0.1, "c4": 0.9}, + {"time": 0.6667, "angle": -14.29, "curve": "stepped"}, {"time": 1, "angle": -14.29, "curve": 0, "c2": 0.3, "c3": 0.542}, + {"time": 1.25, "angle": 14.99, "curve": 0, "c2": 0.2, "c3": 0.693}, {"time": 1.5} ] }, "@leg-front-left": { - "translate": [ - {"curve": "stepped"}, {"time": 0.0167, "x": -0.45, "y": -3.93}, {"time": 0.2333, "x": -0.82, "y": -2.61}, {"time": 0.3333, "x": -5.6, "y": -0.89, "curve": 0.617, "c4": 0.6}, - {"time": 0.45, "x": -1.09, "y": -14.69, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5833} + "rotate": [ + {"curve": 0, "c2": 0.34, "c3": 0.465}, {"time": 0.1667, "angle": -18.49, "curve": 0.619, "c4": 0.3}, {"time": 0.4167, "angle": 10.25, "curve": 0, "c2": 0.1, "c4": 0.9}, + {"time": 0.6667, "angle": -18.44}, {"time": 1, "angle": -22.13, "curve": 0, "c2": 0.3, "c3": 0.542}, {"time": 1.25, "angle": 7.14, "curve": 0, "c2": 0.2, "c3": 0.693}, {"time": 1.5} ] }, "@leg-front-right": { - "translate": [ - {"time": 0.0167}, {"time": 0.3333, "x": -7.53, "y": 2.3, "curve": 0, "c2": 0.1, "c3": 0.853}, {"time": 0.45, "x": 0.15, "y": -4.26, "curve": 0.159, "c3": 0.853}, - {"time": 0.4833, "x": -2.34, "y": -28.14, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5833} - ] - }, - "@pivot-main": { - "translate": [ - {"curve": "stepped"}, {"time": 0.0167, "x": 33.18}, {"time": 0.2667, "x": 61.52, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3833, "x": 20.27, "y": 27.91, "curve": 0.315, "c4": 0.8}, - {"time": 0.4833} - ] - }, - "leg-front-right-IK": { - "translate": [ - {"time": 0.2333, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "x": 22.26, "y": 54.13}, {"time": 0.3833, "x": 28.04, "y": 49.32, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.45} - ] - }, - "leg-front-left-IK": { - "translate": [ - {"curve": "stepped"}, {"time": 0.0167, "x": 38.52}, {"time": 0.2333, "x": 38.87, "curve": 0, "c2": 0.3, "c3": 0.54}, {"time": 0.3333, "x": 26.12, "y": 38.71}, - {"time": 0.3833, "x": 12.33, "y": 29.93, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.45} + "rotate": [ + {"curve": 0, "c2": 0.34, "c3": 0.465}, {"time": 0.1667, "angle": -18.49, "curve": 0.619, "c4": 0.3}, {"time": 0.4167, "angle": 10.25, "curve": 0, "c2": 0.1, "c4": 0.9}, + {"time": 0.6667, "angle": -18.44}, {"time": 1, "angle": -22.13, "curve": 0, "c2": 0.3, "c3": 0.542}, {"time": 1.25, "angle": 7.14, "curve": 0, "c2": 0.2, "c3": 0.693}, {"time": 1.5} ] }, "@shadow": { "translate": [ - {"curve": "stepped"}, {"time": 0.0167, "x": 33.22}, {"time": 0.2667, "x": 61.08, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3833, "x": 9.02, "curve": 0.315, "c4": 0.8}, - {"time": 0.4833} + {"curve": 0, "c2": 0.34, "c3": 0.465}, {"time": 0.1667, "x": 19.25, "curve": 0.622, "c4": 0.3}, {"time": 0.4167, "x": -31.7, "curve": 0, "c2": 0.1, "c4": 0.9}, + {"time": 0.5833, "x": 395, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.8333, "x": 549.5, "curve": 0, "c2": 0.15, "c4": 0.85}, + {"time": 1, "x": 577.9, "curve": 0, "c2": 0.3, "c3": 0.549}, {"time": 1.25, "x": 587.3, "curve": 0, "c2": 0.2, "c3": 0.7}, {"time": 1.5} ], "scale": [ - {"curve": "stepped"}, {"time": 0.0167, "x": 1.1, "y": 1.1, "curve": "stepped"}, {"time": 0.2667, "x": 1.1, "y": 1.1, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.3833, "x": 0.98, "y": 0.98, "curve": 0.315, "c4": 0.8}, {"time": 0.4833, "x": 1.1, "y": 1.1, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5833} + {"curve": 0, "c2": 0.34, "c3": 0.465}, {"time": 0.1667, "x": 1.12, "y": 1.12, "curve": 0.622, "c4": 0.3}, {"time": 0.4167, "x": 0.84, "y": 0.84, "curve": 0, "c2": 0.1, "c4": 0.9}, + {"time": 0.5833, "x": 0.9, "y": 0.9, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.8333, "x": 0.98, "y": 0.98, "curve": 0, "c2": 0.15, "c4": 0.85}, + {"time": 1, "x": 0.94, "y": 0.94, "curve": 0, "c2": 0.3, "c3": 0.549}, {"time": 1.25, "x": 1.02, "y": 1.02, "curve": 0, "c2": 0.2, "c3": 0.7}, {"time": 1.5} ] }, - "tail": { + "@body2": { "rotate": [ - {"curve": "stepped"}, {"time": 0.0167, "angle": -17.67}, {"time": 0.2333, "angle": -21.07, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.3167, "angle": -20.71, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.45, "angle": 25.83, "curve": 0.154, "c4": 0.9}, - {"time": 0.5167, "angle": -14.3, "curve": 0.161, "c3": 0.854}, {"time": 0.5833} + {"angle": -8.45, "curve": 0.349, "c2": 0.38, "c3": 0.693, "c4": 0.75}, {"time": 0.0667, "angle": -2.44, "curve": 0.375, "c2": 0.62, "c3": 0.716}, + {"time": 0.1167, "curve": 0.25, "c3": 0.75}, {"time": 0.2833, "angle": 7.45, "curve": 0.25, "c3": 0.75}, {"time": 0.7, "angle": -18.73, "curve": 0.25, "c3": 0.75}, + {"time": 1.1167, "angle": 7.45, "curve": 0.25, "c3": 0.75}, {"time": 1.3667, "angle": -18.73, "curve": 0.248, "c3": 0.628, "c4": 0.52}, {"time": 1.5, "angle": -8.45} + ], + "translate": [ + {"x": 3.15, "y": -8.28, "curve": 0.38, "c2": 0.59, "c3": 0.727}, {"time": 0.0667, "curve": 0.25, "c3": 0.75}, {"time": 0.2333, "x": -0.08, "y": 1.15, "curve": 0.25, "c3": 0.75}, + {"time": 0.65, "x": 4.59, "y": -41.28, "curve": 0.25, "c3": 0.75}, {"time": 1.0667, "x": -0.08, "y": 1.15, "curve": 0.25, "c3": 0.75}, + {"time": 1.3167, "x": 15.54, "y": -40.86, "curve": 0.242, "c3": 0.663, "c4": 0.65}, {"time": 1.5, "x": 3.15, "y": -8.28} ] }, - "body-fur-2": { + "@body3": { "rotate": [ - {"angle": -17.14, "curve": 0.346, "c2": 0.38, "c3": 0.7, "c4": 0.78}, {"time": 0.0667, "angle": -3.41, "curve": 0.373, "c2": 0.62, "c3": 0.713}, {"time": 0.1, "curve": 0.25, "c3": 0.75}, - {"time": 0.1833, "angle": 31.69, "curve": 0.326, "c2": 0.01, "c3": 0.75}, {"time": 0.35, "angle": 13.72, "curve": 0.25, "c3": 0.75}, - {"time": 0.5, "angle": -30.92, "curve": 0.253, "c3": 0.621, "c4": 0.48}, {"time": 0.5833, "angle": 13.84} + {"angle": -5.15, "curve": 0.381, "c2": 0.55, "c3": 0.742}, {"time": 0.1, "curve": 0.25, "c3": 0.75}, {"time": 0.2667, "angle": -3.77, "curve": 0.25, "c3": 0.75}, + {"time": 0.6833, "angle": -14, "curve": 0.25, "c3": 0.75}, {"time": 1.1, "angle": -3.77, "curve": 0.25, "c3": 0.75}, + {"time": 1.35, "angle": -14, "curve": 0.245, "c3": 0.637, "c4": 0.56}, {"time": 1.5, "angle": -5.15} + ], + "translate": [ + {"time": 0.1667, "curve": 0.25, "c3": 0.75}, {"time": 0.5833, "x": 45.36, "y": -33.56, "curve": 0.25, "c3": 0.75}, {"time": 1, "curve": 0.25, "c3": 0.75}, + {"time": 1.25, "x": 55.89, "y": -22.18, "curve": 0.25, "c3": 0.75}, {"time": 1.5} ] }, - "body-fur-9": { + "@body4": { "rotate": [ - {"angle": -9.76, "curve": 0.35, "c2": 0.39, "c3": 0.689, "c4": 0.75}, {"time": 0.0333, "angle": -3.41, "curve": 0.373, "c2": 0.62, "c3": 0.713}, {"time": 0.0667}, - {"time": 0.15, "angle": 31.69, "curve": 0.326, "c2": 0.01, "c3": 0.75}, {"time": 0.3167, "angle": 13.72, "curve": 0.25, "c3": 0.75}, - {"time": 0.4667, "angle": -30.92, "curve": 0.244, "c3": 0.643, "c4": 0.58}, {"time": 0.5833, "angle": 6.86} + {"angle": 0.47, "curve": 0.366, "c2": 0.63, "c3": 0.703}, {"time": 0.0333, "curve": 0.25, "c3": 0.75}, {"time": 0.2, "angle": -15.35, "curve": 0.25, "c3": 0.75}, + {"time": 0.6167, "angle": 14.26, "curve": 0.25, "c3": 0.75}, {"time": 1.0333, "angle": -15.35, "curve": 0.25, "c3": 0.75}, + {"time": 1.2833, "angle": 6.8, "curve": 0.244, "c3": 0.7, "c4": 0.79}, {"time": 1.5, "angle": 0.47} + ], + "translate": [ + {"curve": 0.25, "c3": 0.75}, {"time": 0.1667, "x": -1.59, "y": 23.93, "curve": 0.25, "c3": 0.75}, {"time": 0.5833, "x": 6.55, "y": -29.78, "curve": 0.25, "c3": 0.75}, + {"time": 1, "x": -1.59, "y": 23.93, "curve": 0.25, "c3": 0.75}, {"time": 1.25, "x": 33.54, "y": -3.13, "curve": 0.25, "c3": 0.75}, {"time": 1.5} ] }, - "body-fur-8": { + "@body6": { "rotate": [ - {"angle": -3.41, "curve": 0.373, "c2": 0.62, "c3": 0.713}, {"time": 0.0333}, {"time": 0.1167, "angle": 31.69, "curve": 0.326, "c2": 0.01, "c3": 0.75}, - {"time": 0.2833, "angle": 13.72, "curve": 0.25, "c3": 0.75}, {"time": 0.4333, "angle": -30.92, "curve": 0.243, "c3": 0.685, "c4": 0.73}, {"time": 0.5833, "angle": -0.91} + {"angle": 24.56, "curve": 0.317, "c2": 0.28, "c3": 0.683, "c4": 0.72}, {"time": 0.1167, "angle": 6.25, "curve": 0.38, "c2": 0.59, "c3": 0.727}, + {"time": 0.1833, "curve": 0.25, "c3": 0.75}, {"time": 0.35, "angle": -5.24, "curve": 0.25, "c3": 0.75}, {"time": 0.7667, "angle": 25.77, "curve": 0.25, "c3": 0.75}, + {"time": 1.1833, "angle": -5.24, "curve": 0.25, "c3": 0.75}, {"time": 1.4333, "angle": 30.87, "curve": 0.273, "c3": 0.62, "c4": 0.41}, {"time": 1.5, "angle": 24.56} + ], + "translate": [ + {"x": -22.02, "y": -12.04, "curve": 0.378, "c2": 0.52, "c3": 0.748}, {"time": 0.1167, "curve": 0.25, "c3": 0.75}, {"time": 0.2833, "x": 5.81, "y": -4.07, "curve": 0.25, "c3": 0.75}, + {"time": 0.7, "x": -70.52, "y": 35.61, "curve": 0.25, "c3": 0.75}, {"time": 1.1167, "x": 5.81, "y": -4.07, "curve": 0.25, "c3": 0.75}, + {"time": 1.3667, "x": -48.3, "y": -26.4, "curve": 0.248, "c3": 0.628, "c4": 0.52}, {"time": 1.5, "x": -22.02, "y": -12.04} ] }, - "body-fur-7": { + "body-braid2": { "rotate": [ - {"angle": -1.09, "curve": 0.358, "c2": 0.65, "c3": 0.693}, {"time": 0.0167, "curve": 0.25, "c3": 0.75}, {"time": 0.1, "angle": 31.69, "curve": 0.326, "c2": 0.01, "c3": 0.75}, - {"time": 0.2667, "angle": 13.72, "curve": 0.25, "c3": 0.75}, {"time": 0.4167, "angle": -30.92, "curve": 0.245, "c3": 0.714, "c4": 0.85}, {"time": 0.5833, "angle": 2.91} + {"angle": 16.54, "curve": 0.324, "c2": 0.3, "c3": 0.713, "c4": 0.82}, {"time": 0.15, "angle": 1.45, "curve": 0.366, "c2": 0.63, "c3": 0.703}, {"time": 0.1833, "curve": 0.25, "c3": 0.75}, + {"time": 0.35, "angle": -1.43, "curve": 0.25, "c3": 0.75}, {"time": 0.7667, "angle": 20.83, "curve": 0.25, "c3": 0.75}, {"time": 1.1833, "angle": -1.43, "curve": 0.25, "c3": 0.75}, + {"time": 1.4333, "angle": 20.83, "curve": 0.273, "c3": 0.62, "c4": 0.41}, {"time": 1.5, "angle": 16.54} ] }, - "body-fur-6": { + "body-braid3": { "rotate": [ - {"angle": -9.76, "curve": 0.35, "c2": 0.39, "c3": 0.689, "c4": 0.75}, {"time": 0.0333, "angle": -3.41, "curve": 0.373, "c2": 0.62, "c3": 0.713}, {"time": 0.0667}, - {"time": 0.15, "angle": 31.69, "curve": 0.326, "c2": 0.01, "c3": 0.75}, {"time": 0.3167, "angle": 13.72, "curve": 0.25, "c3": 0.75}, - {"time": 0.4667, "angle": -30.92, "curve": 0.244, "c3": 0.643, "c4": 0.58}, {"time": 0.5833, "angle": 13.33} + {"angle": 32.56, "curve": 0.267, "c2": 0.1, "c3": 0.657, "c4": 0.63}, {"time": 0.15, "angle": 9.44, "curve": 0.382, "c2": 0.57, "c3": 0.735}, {"time": 0.2333, "curve": 0.25, "c3": 0.75}, + {"time": 0.4, "angle": -8.3, "curve": 0.25, "c3": 0.75}, {"time": 0.8167, "angle": 33.27, "curve": 0.25, "c3": 0.75}, {"time": 1.2333, "angle": -8.3, "curve": 0.25, "c3": 0.75}, + {"time": 1.4833, "angle": 33.27, "curve": 0.313, "c3": 0.648, "c4": 0.35}, {"time": 1.5, "angle": 32.56} ] }, - "body-fur-5": { + "body-braid4": { "rotate": [ - {"angle": -3.41, "curve": 0.373, "c2": 0.62, "c3": 0.713}, {"time": 0.0333}, {"time": 0.1167, "angle": 31.69, "curve": 0.326, "c2": 0.01, "c3": 0.75}, - {"time": 0.2833, "angle": 13.72, "curve": 0.25, "c3": 0.75}, {"time": 0.4333, "angle": -30.92, "curve": 0.243, "c3": 0.685, "c4": 0.73}, {"time": 0.5833, "angle": 6.86} + {"angle": 16.39, "curve": 0.382, "c2": 0.57, "c3": 0.735}, {"time": 0.0833, "angle": 27.46, "curve": 0.273, "c3": 0.62, "c4": 0.41}, + {"time": 0.15, "angle": 21.9, "curve": 0.337, "c2": 0.35, "c3": 0.758}, {"time": 0.3333, "curve": 0.25, "c3": 0.75}, {"time": 0.5, "angle": -11.53, "curve": 0.25, "c3": 0.75}, + {"time": 0.9167, "angle": 27.46, "curve": 0.25, "c3": 0.75}, {"time": 1.3333, "angle": -11.53, "curve": 0.243, "c3": 0.649, "c4": 0.6}, {"time": 1.5, "angle": 16.39} ] }, - "body-fur-4": { + "body-braid": { "rotate": [ - {"angle": -13.41, "curve": 0.351, "c2": 0.39, "c3": 0.696, "c4": 0.76}, {"time": 0.05, "angle": -3.41, "curve": 0.373, "c2": 0.62, "c3": 0.713}, {"time": 0.0833}, - {"time": 0.1667, "angle": 31.69, "curve": 0.326, "c2": 0.01, "c3": 0.75}, {"time": 0.3333, "angle": 13.72, "curve": 0.25, "c3": 0.75}, - {"time": 0.4833, "angle": -30.92, "curve": 0.247, "c3": 0.63, "c4": 0.52}, {"time": 0.5833, "angle": 12.53} + {"angle": 19.48, "curve": 0.306, "c2": 0.24, "c3": 0.694, "c4": 0.76}, {"time": 0.15, "angle": 2.92, "curve": 0.375, "c2": 0.62, "c3": 0.716}, {"time": 0.2, "curve": 0.25, "c3": 0.75}, + {"time": 0.3667, "angle": -2.68, "curve": 0.25, "c3": 0.75}, {"time": 0.7833, "angle": 22.42, "curve": 0.25, "c3": 0.75}, {"time": 1.2, "angle": -2.68, "curve": 0.25, "c3": 0.75}, + {"time": 1.45, "angle": 22.42, "curve": 0.284, "c3": 0.625, "c4": 0.38}, {"time": 1.5, "angle": 19.48} ] }, - "body-fur-3": { + "body-braid5": { "rotate": [ - {"angle": -6.47, "curve": 0.381, "c2": 0.59, "c3": 0.727}, {"time": 0.05}, {"time": 0.1333, "angle": 31.69, "curve": 0.326, "c2": 0.01, "c3": 0.75}, - {"time": 0.3, "angle": 13.72, "curve": 0.25, "c3": 0.75}, {"time": 0.45, "angle": -30.92, "curve": 0.242, "c3": 0.661, "c4": 0.65}, {"time": 0.5833, "angle": 5.54} + {"angle": 33.01, "curve": 0.366, "c2": 0.63, "c3": 0.703}, {"time": 0.0333, "angle": 36.02, "curve": 0.252, "c3": 0.622, "c4": 0.48}, + {"time": 0.15, "angle": 19.6, "curve": 0.372, "c2": 0.48, "c3": 0.752}, {"time": 0.2833, "curve": 0.25, "c3": 0.75}, {"time": 0.45, "angle": -7.27, "curve": 0.25, "c3": 0.75}, + {"time": 0.8667, "angle": 36.02, "curve": 0.25, "c3": 0.75}, {"time": 1.2833, "angle": -7.27, "curve": 0.244, "c3": 0.7, "c4": 0.79}, {"time": 1.5, "angle": 33.01} ] }, - "body-fur-1": { + "body-braid6": { "rotate": [ - {"angle": -9.94, "curve": 0.382, "c2": 0.56, "c3": 0.739}, {"time": 0.0667}, {"time": 0.15, "angle": 31.69, "curve": 0.326, "c2": 0.01, "c3": 0.75}, - {"time": 0.3167, "angle": 13.72, "curve": 0.25, "c3": 0.75}, {"time": 0.4667, "angle": -30.92, "curve": 0.244, "c3": 0.643, "c4": 0.58}, {"time": 0.5833, "angle": 10.51} + {"angle": -9.15, "curve": 0.343, "c2": 0.37, "c3": 0.733, "c4": 0.9}, {"time": 0.15, "angle": 17.47, "curve": 0.352, "c2": 0.65, "c3": 0.687}, + {"time": 0.1667, "angle": 18.35, "curve": 0.25, "c3": 0.75}, {"time": 0.4167, "curve": 0.25, "c3": 0.75}, {"time": 0.5833, "angle": -20.17, "curve": 0.25, "c3": 0.75}, + {"time": 1, "angle": 18.35, "curve": 0.25, "c3": 0.75}, {"time": 1.4167, "angle": -20.17, "curve": 0.265, "c3": 0.618, "c4": 0.43}, {"time": 1.5, "angle": -9.15} ] } } }, - "431191473": { + "1639814451": { "slots": { - "eyes": {"attachment": [{"time": 0.05, "name": "eyes-angry"}, {"time": 0.7, "name": "eyes"}]}, - "mouth": {"attachment": [{"time": 0.05, "name": "mouth-bite"}, {"time": 0.2833, "name": "mouth-open"}, {"time": 0.4667, "name": "mouth-bite"}, {"time": 0.7, "name": "mouth"}]} + "eyes": {"attachment": [{"name": "eyes-shut"}, {"time": 0.2, "name": "eyes"}]}, "mouth": {"attachment": [{"time": 0.0333, "name": "mouth-open"}, {"time": 0.2167, "name": "mouth"}]} }, "bones": { "@pivot-back": { "rotate": [ - {"curve": 0, "c2": 0.4, "c3": 0.383}, {"time": 0.15, "angle": 4, "curve": 0, "c2": 0.2, "c3": 0.851}, {"time": 0.2833, "angle": 7}, - {"time": 0.4167, "angle": 7.5, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5, "angle": 4, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.5833, "angle": 6, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.75} + {"angle": -8.23, "curve": "stepped"}, {"time": 0.1667, "angle": -8.23, "curve": 0.306, "c4": 0.8}, {"time": 0.3333, "angle": 5.43, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5} ], - "translate": [ - {"curve": 0, "c2": 0.4, "c3": 0.383}, {"time": 0.25, "x": 25, "curve": 1, "c2": -0.1, "c4": 0}, {"time": 0.2833, "x": -136, "y": 25.56}, - {"time": 0.4167, "x": -153.19, "y": 25.56, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5, "x": -176.94, "curve": "stepped"}, - {"time": 0.5833, "x": -176.94, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.75} - ] + "translate": [{"y": -0.04, "curve": 0, "c2": 0.3, "c3": 0.534}, {"time": 0.1667, "x": 17.97, "y": 94.25, "curve": 0.315, "c4": 0.8}, {"time": 0.3333, "y": -0.04}] }, - "@pivot-main": {"translate": [{"time": 0.5833, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.6667, "y": 45.22, "curve": 0.315, "c4": 0.8}, {"time": 0.75}]}, - "@leg-front-left": { - "translate": [ - {"curve": 0, "c2": 0.4, "c3": 0.383}, {"time": 0.25, "x": -0.72, "y": -6.78}, {"time": 0.5833, "x": -1.48, "y": -14.61, "curve": 0, "c2": 0.17, "c3": 0.45, "c4": 0.61}, - {"time": 0.65, "x": -0.39, "y": 5.91, "curve": 0.345, "c2": 0.53, "c3": 0.751}, {"time": 0.75} + "@leg-back-left": {"rotate": [{"angle": 14.26, "curve": "stepped"}, {"time": 0.2167, "angle": 14.26, "curve": 0, "c2": 0.1, "c3": 0.847}, {"time": 0.3333, "angle": -11.75}]}, + "@leg-front-left": {"rotate": [{"angle": 14.58, "curve": "stepped"}, {"time": 0.2167, "angle": 14.58, "curve": 0, "c2": 0.1, "c3": 0.847}, {"time": 0.3333, "angle": 20.14}]}, + "@leg-front-right": {"rotate": [{"angle": 12.31, "curve": "stepped"}, {"time": 0.2167, "angle": 12.31, "curve": 0, "c2": 0.1, "c3": 0.847}, {"time": 0.3333, "angle": -30.3}]}, + "tail": { + "rotate": [ + {"curve": 0, "c2": 0.6, "c3": 0.237}, {"time": 0.1667, "angle": -18.5, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "angle": 4.16, "curve": 0, "c2": 0.3, "c3": 0.54}, + {"time": 0.5} ] }, - "@leg-front-right": { - "translate": [ - {"curve": 0, "c2": 0.39, "c3": 0.387}, {"time": 0.25, "x": -2.88, "y": -28.54, "curve": "stepped"}, - {"time": 0.5833, "x": -2.88, "y": -28.54, "curve": 0, "c2": 0.17, "c3": 0.45, "c4": 0.61}, {"time": 0.65, "x": -0.83, "y": 1.57, "curve": 0.345, "c2": 0.53, "c3": 0.751}, {"time": 0.75} + "@shadow": {"scale": [{"x": 1.3, "y": 1.3, "curve": 0, "c2": 0.4, "c3": 0.533}, {"time": 0.1667, "x": 0.9, "y": 0.9, "curve": 0.315, "c4": 0.8}, {"time": 0.3333}]}, + "body-fur-8": { + "rotate": [ + {"angle": 3.76, "curve": 0.379, "c2": 0.6, "c3": 0.724}, {"time": 0.0333}, {"time": 0.2, "angle": -36.41, "curve": 0.25, "c3": 0.75}, + {"time": 0.4, "angle": 20.41, "curve": 0.242, "c3": 0.667, "c4": 0.67}, {"time": 0.5, "angle": -0.91} ] }, - "leg-front-left-IK": { - "translate": [ - {"curve": 0, "c2": 0.39, "c3": 0.387}, {"time": 0.25, "x": 19.12, "curve": 0.702, "c4": 0.2}, {"time": 0.2833, "x": -43.29, "y": 59.07}, - {"time": 0.4167, "x": -61.19, "y": 52.81, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5, "x": -184.33, "y": 7.89, "curve": "stepped"}, - {"time": 0.5833, "x": -184.33, "y": 7.89, "curve": 0, "c2": 0.17, "c3": 0.45, "c4": 0.61}, {"time": 0.65, "x": -105.91, "y": -2.82, "curve": 0.345, "c2": 0.53, "c3": 0.751}, - {"time": 0.75} + "body-fur-1": { + "rotate": [ + {"angle": 13.56, "curve": 0.359, "c2": 0.43, "c3": 0.756}, {"time": 0.0833}, {"time": 0.25, "angle": -36.41, "curve": 0.25, "c3": 0.75}, + {"time": 0.45, "angle": 20.41, "curve": 0.26, "c3": 0.618, "c4": 0.44}, {"time": 0.5, "angle": 10.51} ] }, - "leg-front-right-IK": { - "translate": [ - {"time": 0.25, "curve": 0.702, "c4": 0.2}, {"time": 0.2833, "x": -27.95, "y": 28.32}, {"time": 0.4167, "x": -40.48, "y": 34.59, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.5, "x": -191.61, "curve": "stepped"}, {"time": 0.5833, "x": -191.61, "curve": 0, "c2": 0.17, "c3": 0.45, "c4": 0.61}, - {"time": 0.65, "x": -103, "y": 4.15, "curve": 0.345, "c2": 0.53, "c3": 0.751}, {"time": 0.75} + "body-fur-2": { + "rotate": [ + {"angle": 18.76, "curve": 0.356, "c2": 0.65, "c3": 0.691}, {"time": 0.0167, "angle": 20.41, "curve": 0.25, "c3": 0.625, "c4": 0.5}, + {"time": 0.0833, "angle": 10.2, "curve": 0.375, "c2": 0.5, "c3": 0.75}, {"time": 0.15}, {"time": 0.3167, "angle": -36.41, "curve": 0.246, "c3": 0.717, "c4": 0.86}, + {"time": 0.5, "angle": 13.84} ] }, - "leg-back-left-IK": { - "translate": [ - {"time": 0.2667, "curve": 0.461, "c4": 0.4}, {"time": 0.2833, "x": -70.51, "y": 98.54}, {"time": 0.4167, "x": -70.51, "y": 101.95, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.5, "x": -189.32, "curve": "stepped"}, {"time": 0.5833, "x": -189.32, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.75} + "body-fur-3": {"rotate": [{"angle": 20.41, "curve": 0.25, "c3": 0.75}, {"time": 0.1333}, {"time": 0.3, "angle": -36.41, "curve": 0.25, "c3": 0.75}, {"time": 0.5, "angle": 5.54}]}, + "body-fur-4": { + "rotate": [ + {"angle": 4.28, "curve": 0.382, "c2": 0.57, "c3": 0.735}, {"time": 0.0667, "angle": 20.41, "curve": 0.25, "c3": 0.625, "c4": 0.5}, + {"time": 0.1333, "angle": 10.2, "curve": 0.375, "c2": 0.5, "c3": 0.75}, {"time": 0.2}, {"time": 0.3667, "angle": -36.41, "curve": 0.243, "c3": 0.649, "c4": 0.6}, + {"time": 0.5, "angle": 12.53} ] }, - "@pivot-center": { + "body-fur-5": { "rotate": [ - {"time": 0.25, "curve": 0.779, "c4": 0.3}, {"time": 0.2833, "angle": 10.18, "curve": "stepped"}, {"time": 0.4167, "angle": 10.18, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5} + {"angle": 16.64, "curve": 0.333, "c2": 0.33, "c3": 0.758}, {"time": 0.1}, {"time": 0.2667, "angle": -36.41, "curve": 0.25, "c3": 0.75}, + {"time": 0.4667, "angle": 20.41, "curve": 0.276, "c3": 0.621, "c4": 0.4}, {"time": 0.5, "angle": 6.86} ] }, - "tail": { + "body-fur-6": { "rotate": [ - {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.25, "angle": 21.98, "curve": 0.851, "c4": 0.1}, {"time": 0.2833, "angle": -15.58}, - {"time": 0.4167, "angle": -20.71, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5, "angle": 19.93, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.5833, "angle": 23.12, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.6667, "angle": -14.25, "curve": 0.313, "c3": 0.699}, {"time": 0.75} + {"angle": 14.93, "curve": 0.371, "c2": 0.62, "c3": 0.71}, {"time": 0.0333, "angle": 20.41, "curve": 0.25, "c3": 0.625, "c4": 0.5}, + {"time": 0.1, "angle": 10.2, "curve": 0.375, "c2": 0.5, "c3": 0.75}, {"time": 0.1667}, {"time": 0.3333, "angle": -36.41, "curve": 0.243, "c3": 0.689, "c4": 0.75}, + {"time": 0.5, "angle": 13.33} ] }, - "@shadow": { - "translate": [ - {"time": 0.25, "curve": 0.851, "c4": 0.1}, {"time": 0.2833, "x": -143.36}, {"time": 0.4167, "x": -160.77, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.5, "x": -186.16, "curve": "stepped"}, {"time": 0.5833, "x": -186.16, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.75} - ], - "scale": [ - {"curve": 0, "c2": 0.4, "c3": 0.383}, {"time": 0.25, "x": 1.08, "y": 1.08, "curve": "stepped"}, {"time": 0.5, "x": 1.08, "y": 1.08, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.5833, "x": 1.12, "y": 1.12, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.6667, "x": 0.94, "y": 0.94, "curve": 0.315, "c4": 0.8}, {"time": 0.75} - ] - }, - "@leg-back-left": {"translate": [{"curve": 0, "c2": 0.39, "c3": 0.387}, {"time": 0.25, "x": -7.28, "y": 3.82}]}, - "body-fur-1": { - "rotate": [ - {"angle": -7.99, "curve": 0.382, "c2": 0.57, "c3": 0.735}, {"time": 0.0667}, {"time": 0.3333, "angle": -23.85, "curve": 0.25, "c3": 0.75}, - {"time": 0.4, "angle": 26.05, "curve": 0.25, "c3": 0.75}, {"time": 0.6167, "angle": -28.16, "curve": 0.243, "c3": 0.649, "c4": 0.6}, {"time": 0.75, "angle": 10.51} - ] - }, - "body-fur-2": { - "rotate": [ - {"angle": -13.91, "curve": 0.351, "c2": 0.39, "c3": 0.701, "c4": 0.78}, {"time": 0.0667, "angle": -2.72, "curve": 0.371, "c2": 0.62, "c3": 0.71}, {"time": 0.1}, - {"time": 0.3667, "angle": -23.85, "curve": 0.25, "c3": 0.75}, {"time": 0.4333, "angle": 26.05, "curve": 0.25, "c3": 0.75}, - {"time": 0.65, "angle": -28.16, "curve": 0.25, "c3": 0.625, "c4": 0.5}, {"time": 0.75, "angle": 13.84} - ] - }, - "body-fur-3": { - "rotate": [ - {"angle": -5.19, "curve": 0.379, "c2": 0.6, "c3": 0.724}, {"time": 0.05, "curve": 0.25, "c3": 0.75}, {"time": 0.3167, "angle": -23.85, "curve": 0.25, "c3": 0.75}, - {"time": 0.3833, "angle": 26.05, "curve": 0.25, "c3": 0.75}, {"time": 0.6, "angle": -28.16, "curve": 0.242, "c3": 0.667, "c4": 0.67}, {"time": 0.75, "angle": 5.54} - ] - }, - "body-fur-4": { - "rotate": [ - {"angle": -10.8, "curve": 0.353, "c2": 0.4, "c3": 0.696, "c4": 0.77}, {"time": 0.05, "angle": -2.72, "curve": 0.371, "c2": 0.62, "c3": 0.71}, {"time": 0.0833, "curve": 0.25, "c3": 0.75}, - {"time": 0.35, "angle": -23.85, "curve": 0.25, "c3": 0.75}, {"time": 0.4167, "angle": 26.05, "curve": 0.25, "c3": 0.75}, - {"time": 0.6333, "angle": -28.16, "curve": 0.246, "c3": 0.635, "c4": 0.55}, {"time": 0.75, "angle": 12.53} - ] - }, - "body-fur-5": { - "rotate": [ - {"angle": -2.72, "curve": 0.371, "c2": 0.62, "c3": 0.71}, {"time": 0.0333}, {"time": 0.3, "angle": -23.85, "curve": 0.25, "c3": 0.75}, - {"time": 0.3667, "angle": 26.05, "curve": 0.25, "c3": 0.75}, {"time": 0.5833, "angle": -28.16, "curve": 0.243, "c3": 0.689, "c4": 0.75}, {"time": 0.75, "angle": 6.86} - ] - }, - "body-fur-6": { - "rotate": [ - {"angle": -7.8, "curve": 0.351, "c2": 0.4, "c3": 0.689, "c4": 0.75}, {"time": 0.0333, "angle": -2.72, "curve": 0.371, "c2": 0.62, "c3": 0.71}, {"time": 0.0667}, - {"time": 0.3333, "angle": -23.85, "curve": 0.25, "c3": 0.75}, {"time": 0.4, "angle": 26.05, "curve": 0.25, "c3": 0.75}, - {"time": 0.6167, "angle": -28.16, "curve": 0.243, "c3": 0.649, "c4": 0.6}, {"time": 0.75, "angle": 13.33} - ] - }, - "body-fur-7": { - "rotate": [ - {"angle": -0.82, "curve": 0.356, "c2": 0.65, "c3": 0.691}, {"time": 0.0167, "curve": 0.25, "c3": 0.75}, {"time": 0.2833, "angle": -23.85, "curve": 0.25, "c3": 0.75}, - {"time": 0.35, "angle": 26.05, "curve": 0.25, "c3": 0.75}, {"time": 0.5667, "angle": -28.16, "curve": 0.246, "c3": 0.717, "c4": 0.86}, {"time": 0.75, "angle": 2.91} - ] - }, - "body-fur-8": { - "rotate": [ - {"angle": -2.72, "curve": 0.371, "c2": 0.62, "c3": 0.71}, {"time": 0.0333}, {"time": 0.3, "angle": -23.85, "curve": 0.25, "c3": 0.75}, - {"time": 0.3667, "angle": 26.05, "curve": 0.25, "c3": 0.75}, {"time": 0.5833, "angle": -28.16, "curve": 0.243, "c3": 0.689, "c4": 0.75}, {"time": 0.75, "angle": -0.91} + "body-fur-7": { + "rotate": [ + {"angle": 10.2, "curve": 0.375, "c2": 0.5, "c3": 0.75}, {"time": 0.0667, "curve": 0.25, "c3": 0.75}, {"time": 0.2333, "angle": -36.41, "curve": 0.25, "c3": 0.75}, + {"time": 0.4333, "angle": 20.41, "curve": 0.25, "c3": 0.625, "c4": 0.5}, {"time": 0.5, "angle": 2.91} ] }, "body-fur-9": { "rotate": [ - {"angle": -7.8, "curve": 0.351, "c2": 0.4, "c3": 0.689, "c4": 0.75}, {"time": 0.0333, "angle": -2.72, "curve": 0.371, "c2": 0.62, "c3": 0.71}, {"time": 0.0667}, - {"time": 0.3333, "angle": -23.85, "curve": 0.25, "c3": 0.75}, {"time": 0.4, "angle": 26.05, "curve": 0.25, "c3": 0.75}, - {"time": 0.6167, "angle": -28.16, "curve": 0.243, "c3": 0.649, "c4": 0.6}, {"time": 0.75, "angle": 6.86} + {"angle": 16.68, "curve": 0.314, "c2": 0.27, "c3": 0.657, "c4": 0.64}, {"time": 0.0333, "angle": 10.2, "curve": 0.375, "c2": 0.5, "c3": 0.75}, {"time": 0.1}, + {"time": 0.2667, "angle": -36.41, "curve": 0.25, "c3": 0.75}, {"time": 0.4667, "angle": 20.41, "curve": 0.276, "c3": 0.621, "c4": 0.4}, {"time": 0.5, "angle": 6.86} ] } - }, - "events": [{"time": 0.2167, "name": "start-attack"}, {"time": 0.2833, "name": "hit"}] + } }, - "2133555169": { - "slots": { - "eyes": {"attachment": [{"time": 0.1333, "name": "eyes-angry"}, {"time": 0.6667, "name": "eyes"}]}, - "mouth": {"attachment": [{"time": 0.1333, "name": "mouth-bite"}, {"time": 0.2667, "name": "mouth-open"}, {"time": 0.4167, "name": "mouth-bite"}, {"time": 0.6667, "name": "mouth"}]} - }, + "886720603": { + "slots": {"eyes": {"attachment": [{"name": "eyes-shut"}]}}, "bones": { "@pivot-back": { - "rotate": [ - {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "angle": -3.92, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "angle": 2.51, "curve": 0, "c2": 0.3, "c3": 0.544}, - {"time": 0.35, "angle": -4.74, "curve": 0.7, "c4": 0.3}, {"time": 0.4167, "angle": 2}, {"time": 0.5833, "angle": 4, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.75} - ], - "translate": [ - {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 71.93, "y": -12.95, "curve": "stepped"}, {"time": 0.25, "x": 71.93, "y": -12.95, "curve": 0, "c2": 0.3, "c3": 0.544}, - {"time": 0.4167, "x": -144.49, "y": -12.95, "curve": "stepped"}, {"time": 0.5833, "x": -144.49, "y": -12.95, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.75} - ] - }, - "leg-back-left-IK": { - "translate": [ - {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.1167, "x": 93.98, "curve": 0.161, "c3": 0.854}, {"time": 0.25, "x": 67.02, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.3333, "x": -65.1, "y": -1.32, "curve": 0.315, "c4": 0.8}, {"time": 0.4167, "x": -131.67, "curve": "stepped"}, {"time": 0.5833, "x": -131.67, "curve": 0.159, "c4": 0.9}, - {"time": 0.75} - ] - }, - "leg-front-right-IK": { - "translate": [ - {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 21.56, "y": 4.31, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.25, "x": 42.9, "curve": 0, "c2": 0.3, "c3": 0.544}, - {"time": 0.3667, "x": -104.26, "y": 42.61, "curve": 0.161, "c4": 0.85}, {"time": 0.4167, "x": -153.64, "curve": "stepped"}, {"time": 0.5833, "x": -153.64, "curve": 0.154, "c4": 0.9}, - {"time": 0.7, "x": 13.43, "curve": 0.161, "c3": 0.854}, {"time": 0.75} - ] - }, - "leg-front-left-IK": { "translate": [ - {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 43.11, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "x": 48.71, "y": -1.66, "curve": 0, "c2": 0.3, "c3": 0.544}, - {"time": 0.3667, "x": -87.39, "y": 18.71, "curve": 0.161, "c4": 0.85}, {"time": 0.4167, "x": -150.32, "y": 0.83}, {"time": 0.5833, "x": -142.85, "curve": 0.154, "c4": 0.9}, - {"time": 0.7, "x": 13.43, "curve": 0.161, "c3": 0.854}, {"time": 0.75} + {"y": 0.06, "curve": 0.387, "c3": 0.314}, {"time": 0.2167, "y": -17.94, "curve": 0.387, "c3": 0.314}, {"time": 0.45, "y": 0.06, "curve": 0.387, "c3": 0.314}, + {"time": 0.6667, "y": -17.94, "curve": 0.387, "c3": 0.314}, {"time": 0.9, "y": 0.06, "curve": 0.387, "c3": 0.314}, {"time": 1.1167, "y": -17.94, "curve": 0.387, "c3": 0.314}, + {"time": 1.3333, "y": 0.06} + ], + "scale": [ + {"curve": 0.387, "c3": 0.314}, {"time": 0.2167, "y": 0.98, "curve": 0.387, "c3": 0.314}, {"time": 0.45, "curve": 0.387, "c3": 0.314}, + {"time": 0.6667, "y": 0.98, "curve": 0.387, "c3": 0.314}, {"time": 0.9, "curve": 0.387, "c3": 0.314}, {"time": 1.1167, "y": 0.98, "curve": 0.387, "c3": 0.314}, {"time": 1.3333} ] }, "@leg-front-left": { - "translate": [ - {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": -0.28, "y": 3.31, "curve": 0, "c2": 0.3, "c3": 0.544}, - {"time": 0.25, "x": -0.62, "y": -3.21, "curve": 0, "c2": 0.25, "c3": 0.457, "c4": 0.73}, {"time": 0.3667, "x": -15.24, "y": -11.32, "curve": 0.325, "c2": 0.6, "c3": 0.672}, - {"time": 0.4167, "x": -17.97, "y": -3.57, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5833, "x": -18.47, "y": -10.19, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.75} + "rotate": [ + {"curve": 0, "c2": 0.1, "c3": 0.843}, {"time": 0.1167, "angle": -12.07, "curve": 0.161, "c3": 0.854}, {"time": 0.2167, "angle": -2.63}, + {"time": 0.3333, "angle": 7.79, "curve": 0.079, "c4": 0.95}, {"time": 0.45, "curve": 0, "c2": 0.1, "c3": 0.843}, {"time": 0.55, "angle": -12.07, "curve": 0.161, "c3": 0.854}, + {"time": 0.6667, "angle": -2.63}, {"time": 0.7667, "angle": 7.79, "curve": 0.079, "c4": 0.95}, {"time": 0.8833, "curve": 0, "c2": 0.1, "c3": 0.843}, + {"time": 1, "angle": -12.07, "curve": 0.161, "c3": 0.854}, {"time": 1.1, "angle": -2.63}, {"time": 1.2167, "angle": 7.79, "curve": 0.079, "c4": 0.95}, {"time": 1.3333} ] }, "@leg-front-right": { - "translate": [ - {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 3.63, "y": 19.84, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.25, "x": -10.53, "y": -16.98, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.4167, "x": -10.44, "y": -18.31, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.5833, "x": -10.92, "y": -30.23, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.75} - ] - }, - "@pivot-main": { - "translate": [ - {"time": 0.25, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "y": 26.43, "curve": 0.315, "c4": 0.8}, {"time": 0.4167, "curve": "stepped"}, - {"time": 0.5833, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.6667, "y": 26.43, "curve": 0.315, "c4": 0.8}, {"time": 0.75} + "rotate": [ + {"curve": 0, "c2": 0.1, "c3": 0.843}, {"time": 0.1167, "angle": -12.07, "curve": 0.161, "c3": 0.854}, {"time": 0.2167, "angle": -2.63}, + {"time": 0.3333, "angle": 7.79, "curve": 0.079, "c4": 0.95}, {"time": 0.45, "curve": 0, "c2": 0.1, "c3": 0.843}, {"time": 0.55, "angle": -12.07, "curve": 0.161, "c3": 0.854}, + {"time": 0.6667, "angle": -2.63}, {"time": 0.7667, "angle": 7.79, "curve": 0.079, "c4": 0.95}, {"time": 0.8833, "curve": 0, "c2": 0.1, "c3": 0.843}, + {"time": 1, "angle": -12.07, "curve": 0.161, "c3": 0.854}, {"time": 1.1, "angle": -2.63}, {"time": 1.2167, "angle": 7.79, "curve": 0.079, "c4": 0.95}, {"time": 1.3333} ] }, "@leg-back-left": { - "translate": [ - {"time": 0.1167, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "x": -0.25, "y": -9.22, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.3333, "x": -0.44, "y": 4.57, "curve": 0.306, "c4": 0.8}, {"time": 0.4167, "x": -0.58, "y": -9.21}, - {"time": 0.5833, "x": -0.15, "y": -9.98, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.75} + "rotate": [ + {"curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.1167, "angle": 8.89, "curve": 0.161, "c3": 0.854}, {"time": 0.2167, "angle": 0.78}, + {"time": 0.3333, "angle": -7.35, "curve": 0.079, "c4": 0.95}, {"time": 0.45, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.55, "angle": 8.89, "curve": 0.161, "c3": 0.854}, + {"time": 0.6667, "angle": 0.78}, {"time": 0.7667, "angle": -7.35, "curve": 0.079, "c4": 0.95}, {"time": 0.8833, "curve": 0, "c2": 0.1, "c3": 0.85}, + {"time": 1, "angle": 8.89, "curve": 0.161, "c3": 0.854}, {"time": 1.1, "angle": 0.78}, {"time": 1.2167, "angle": -7.35, "curve": 0.079, "c4": 0.95}, {"time": 1.3333} ] }, "tail": { "rotate": [ - {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "angle": 12.92, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "angle": 18.48, "curve": 0, "c2": 0.3, "c3": 0.544}, - {"time": 0.35, "angle": -6.88, "curve": 0.7, "c4": 0.3}, {"time": 0.4167, "angle": 14}, {"time": 0.5833, "angle": 19.37, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.6833, "angle": -8.78, "curve": 0.313, "c3": 0.699}, {"time": 0.75} + {"curve": 0, "c2": 0.05, "c3": 0.658}, {"time": 0.3333, "angle": -10.75, "curve": 0.304, "c3": 0.689}, {"time": 0.7333, "angle": 3.03}, + {"time": 1.05, "angle": 5.39, "curve": 0.234, "c4": 0.9}, {"time": 1.3333} ] }, "@shadow": { - "translate": [ - {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 61.96, "curve": "stepped"}, {"time": 0.25, "x": 61.96, "curve": 0, "c2": 0.3, "c3": 0.544}, - {"time": 0.35, "x": -121.98, "curve": 0.7, "c4": 0.3}, {"time": 0.4167, "x": -154.28, "curve": "stepped"}, {"time": 0.5833, "x": -154.28, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.75} - ], "scale": [ - {"time": 0.0833, "curve": 0, "c2": 0.26, "c3": 0.369, "c4": 0.62}, {"time": 0.25, "x": 1.06, "y": 1.06, "curve": 0.192, "c2": 0.45, "c3": 0.623}, - {"time": 0.35, "x": 0.96, "y": 0.96, "curve": 0.7, "c4": 0.3}, {"time": 0.4167, "x": 1.08, "y": 1.08, "curve": "stepped"}, - {"time": 0.5833, "x": 1.08, "y": 1.08, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.75} - ] - }, - "body-fur-5": { - "rotate": [ - {"angle": -2.72, "curve": 0.371, "c2": 0.62, "c3": 0.71}, {"time": 0.0333}, {"time": 0.3, "angle": -23.85, "curve": 0.25, "c3": 0.75}, - {"time": 0.3667, "angle": 26.05, "curve": 0.25, "c3": 0.75}, {"time": 0.5833, "angle": -28.16, "curve": 0.243, "c3": 0.689, "c4": 0.75}, {"time": 0.75, "angle": 6.86} + {"curve": 0.387, "c3": 0.314}, {"time": 0.2167, "x": 1.1, "y": 1.1, "curve": 0.387, "c3": 0.314}, {"time": 0.45, "curve": 0.387, "c3": 0.314}, + {"time": 0.6667, "x": 1.1, "y": 1.1, "curve": 0.387, "c3": 0.314}, {"time": 0.9, "curve": 0.387, "c3": 0.314}, {"time": 1.1167, "x": 1.1, "y": 1.1, "curve": 0.387, "c3": 0.314}, + {"time": 1.3333} ] }, - "body-fur-4": { + "body-fur-2": { "rotate": [ - {"angle": -10.8, "curve": 0.353, "c2": 0.4, "c3": 0.696, "c4": 0.77}, {"time": 0.05, "angle": -2.72, "curve": 0.371, "c2": 0.62, "c3": 0.71}, {"time": 0.0833, "curve": 0.25, "c3": 0.75}, - {"time": 0.35, "angle": -23.85, "curve": 0.25, "c3": 0.75}, {"time": 0.4167, "angle": 26.05, "curve": 0.25, "c3": 0.75}, - {"time": 0.6333, "angle": -28.16, "curve": 0.246, "c3": 0.635, "c4": 0.55}, {"time": 0.75, "angle": 12.53} + {"angle": -11.79, "curve": 0.376, "c2": 0.61, "c3": 0.718}, {"time": 0.05, "angle": -15.12, "curve": 0.245, "c3": 0.64, "c4": 0.57}, + {"time": 0.1833, "angle": -0.2, "curve": 0.382, "c2": 0.55, "c3": 0.741}, {"time": 0.2667, "angle": 7.75, "curve": 0.25, "c3": 0.75}, + {"time": 0.4833, "angle": -14.99, "curve": 0.25, "c3": 0.75}, {"time": 0.7167, "angle": 7.75, "curve": 0.25, "c3": 0.75}, {"time": 0.9333, "angle": -14.48, "curve": 0.25, "c3": 0.75}, + {"time": 1.15, "angle": 7.75, "curve": 0.243, "c3": 0.676, "c4": 0.7}, {"time": 1.3333, "angle": -11.79} ] }, - "body-fur-7": { + "body-fur-9": { "rotate": [ - {"angle": -0.82, "curve": 0.356, "c2": 0.65, "c3": 0.691}, {"time": 0.0167, "curve": 0.25, "c3": 0.75}, {"time": 0.2833, "angle": -23.85, "curve": 0.25, "c3": 0.75}, - {"time": 0.35, "angle": 26.05, "curve": 0.25, "c3": 0.75}, {"time": 0.5667, "angle": -28.16, "curve": 0.246, "c3": 0.717, "c4": 0.86}, {"time": 0.75, "angle": 2.91} + {"angle": -7.12, "curve": 0.329, "c2": 0.32, "c3": 0.671, "c4": 0.68}, {"time": 0.05, "angle": -0.2, "curve": 0.382, "c2": 0.55, "c3": 0.741}, + {"time": 0.1333, "angle": 7.75, "curve": 0.25, "c3": 0.75}, {"time": 0.35, "angle": -14.99, "curve": 0.25, "c3": 0.75}, {"time": 0.5833, "angle": 7.75, "curve": 0.25, "c3": 0.75}, + {"time": 0.8, "angle": -14.48, "curve": 0.25, "c3": 0.75}, {"time": 1.0167, "angle": 7.75, "curve": 0.25, "c3": 0.75}, + {"time": 1.25, "angle": -15.12, "curve": 0.259, "c3": 0.618, "c4": 0.45}, {"time": 1.3333, "angle": -7.12} ] }, "body-fur-8": { "rotate": [ - {"angle": -2.72, "curve": 0.371, "c2": 0.62, "c3": 0.71}, {"time": 0.0333}, {"time": 0.3, "angle": -23.85, "curve": 0.25, "c3": 0.75}, - {"time": 0.3667, "angle": 26.05, "curve": 0.25, "c3": 0.75}, {"time": 0.5833, "angle": -28.16, "curve": 0.243, "c3": 0.689, "c4": 0.75}, {"time": 0.75, "angle": -0.91} + {"angle": 4.01, "curve": 0.378, "c2": 0.61, "c3": 0.721}, {"time": 0.05, "angle": 7.75, "curve": 0.25, "c3": 0.75}, {"time": 0.2667, "angle": -14.99, "curve": 0.25, "c3": 0.75}, + {"time": 0.5, "angle": 7.75, "curve": 0.25, "c3": 0.75}, {"time": 0.7167, "angle": -14.48, "curve": 0.25, "c3": 0.75}, {"time": 0.9333, "angle": 7.75, "curve": 0.25, "c3": 0.75}, + {"time": 1.1667, "angle": -15.12, "curve": 0.242, "c3": 0.671, "c4": 0.68}, {"time": 1.3333, "angle": 4.01} ] }, - "body-fur-9": { + "body-fur-7": { "rotate": [ - {"angle": -7.8, "curve": 0.351, "c2": 0.4, "c3": 0.689, "c4": 0.75}, {"time": 0.0333, "angle": -2.72, "curve": 0.371, "c2": 0.62, "c3": 0.71}, {"time": 0.0667}, - {"time": 0.3333, "angle": -23.85, "curve": 0.25, "c3": 0.75}, {"time": 0.4, "angle": 26.05, "curve": 0.25, "c3": 0.75}, - {"time": 0.6167, "angle": -28.16, "curve": 0.243, "c3": 0.649, "c4": 0.6}, {"time": 0.75, "angle": 6.86} + {"angle": -0.2, "curve": 0.382, "c2": 0.55, "c3": 0.741}, {"time": 0.0833, "angle": 7.75, "curve": 0.25, "c3": 0.75}, {"time": 0.3, "angle": -14.99, "curve": 0.25, "c3": 0.75}, + {"time": 0.5333, "angle": 7.75, "curve": 0.25, "c3": 0.75}, {"time": 0.75, "angle": -14.48, "curve": 0.25, "c3": 0.75}, {"time": 0.9667, "angle": 7.75, "curve": 0.25, "c3": 0.75}, + {"time": 1.2, "angle": -15.12, "curve": 0.245, "c3": 0.64, "c4": 0.57}, {"time": 1.3333, "angle": -0.2} ] }, "body-fur-6": { "rotate": [ - {"angle": -7.8, "curve": 0.351, "c2": 0.4, "c3": 0.689, "c4": 0.75}, {"time": 0.0333, "angle": -2.72, "curve": 0.371, "c2": 0.62, "c3": 0.71}, {"time": 0.0667}, - {"time": 0.3333, "angle": -23.85, "curve": 0.25, "c3": 0.75}, {"time": 0.4, "angle": 26.05, "curve": 0.25, "c3": 0.75}, - {"time": 0.6167, "angle": -28.16, "curve": 0.243, "c3": 0.649, "c4": 0.6}, {"time": 0.75, "angle": 13.33} + {"angle": -14.49, "curve": 0.271, "c2": 0.12, "c3": 0.65, "c4": 0.61}, {"time": 0.1167, "angle": -0.2, "curve": 0.382, "c2": 0.55, "c3": 0.741}, + {"time": 0.2, "angle": 7.75, "curve": 0.25, "c3": 0.75}, {"time": 0.4167, "angle": -14.99, "curve": 0.25, "c3": 0.75}, {"time": 0.65, "angle": 7.75, "curve": 0.25, "c3": 0.75}, + {"time": 0.8667, "angle": -14.48, "curve": 0.25, "c3": 0.75}, {"time": 1.0833, "angle": 7.75, "curve": 0.25, "c3": 0.75}, + {"time": 1.3167, "angle": -15.12, "curve": 0.311, "c3": 0.645, "c4": 0.35}, {"time": 1.3333, "angle": -14.49} ] }, - "body-fur-1": { + "body-fur-5": { "rotate": [ - {"angle": -7.99, "curve": 0.382, "c2": 0.57, "c3": 0.735}, {"time": 0.0667}, {"time": 0.3333, "angle": -23.85, "curve": 0.25, "c3": 0.75}, - {"time": 0.4, "angle": 26.05, "curve": 0.25, "c3": 0.75}, {"time": 0.6167, "angle": -28.16, "curve": 0.243, "c3": 0.649, "c4": 0.6}, {"time": 0.75, "angle": 10.51} + {"angle": -4.84, "curve": 0.371, "c2": 0.48, "c3": 0.752}, {"time": 0.1167, "angle": 7.75, "curve": 0.25, "c3": 0.75}, {"time": 0.3333, "angle": -14.99, "curve": 0.25, "c3": 0.75}, + {"time": 0.5667, "angle": 7.75, "curve": 0.25, "c3": 0.75}, {"time": 0.7833, "angle": -14.48, "curve": 0.25, "c3": 0.75}, {"time": 1, "angle": 7.75, "curve": 0.25, "c3": 0.75}, + {"time": 1.2333, "angle": -15.12, "curve": 0.253, "c3": 0.622, "c4": 0.48}, {"time": 1.3333, "angle": -4.84} ] }, - "body-fur-2": { + "body-fur-4": { "rotate": [ - {"angle": -13.91, "curve": 0.351, "c2": 0.39, "c3": 0.701, "c4": 0.78}, {"time": 0.0667, "angle": -2.72, "curve": 0.371, "c2": 0.62, "c3": 0.71}, {"time": 0.1}, - {"time": 0.3667, "angle": -23.85, "curve": 0.25, "c3": 0.75}, {"time": 0.4333, "angle": 26.05, "curve": 0.25, "c3": 0.75}, - {"time": 0.65, "angle": -28.16, "curve": 0.25, "c3": 0.625, "c4": 0.5}, {"time": 0.75, "angle": 13.84} + {"angle": -14.56, "curve": 0.354, "c2": 0.65, "c3": 0.688}, {"time": 0.0167, "angle": -15.12, "curve": 0.245, "c3": 0.64, "c4": 0.57}, + {"time": 0.15, "angle": -0.2, "curve": 0.382, "c2": 0.55, "c3": 0.741}, {"time": 0.2333, "angle": 7.75, "curve": 0.25, "c3": 0.75}, + {"time": 0.45, "angle": -14.99, "curve": 0.25, "c3": 0.75}, {"time": 0.6833, "angle": 7.75, "curve": 0.25, "c3": 0.75}, {"time": 0.9, "angle": -14.48, "curve": 0.25, "c3": 0.75}, + {"time": 1.1167, "angle": 7.75, "curve": 0.246, "c3": 0.721, "c4": 0.87}, {"time": 1.3333, "angle": -14.56} ] }, "body-fur-3": { "rotate": [ - {"angle": -5.19, "curve": 0.379, "c2": 0.6, "c3": 0.724}, {"time": 0.05, "curve": 0.25, "c3": 0.75}, {"time": 0.3167, "angle": -23.85, "curve": 0.25, "c3": 0.75}, - {"time": 0.3833, "angle": 26.05, "curve": 0.25, "c3": 0.75}, {"time": 0.6, "angle": -28.16, "curve": 0.242, "c3": 0.667, "c4": 0.67}, {"time": 0.75, "angle": 5.54} + {"angle": -9.36, "curve": 0.346, "c2": 0.38, "c3": 0.757}, {"time": 0.15, "angle": 7.75, "curve": 0.25, "c3": 0.75}, {"time": 0.3667, "angle": -14.99, "curve": 0.25, "c3": 0.75}, + {"time": 0.6, "angle": 7.75, "curve": 0.25, "c3": 0.75}, {"time": 0.8167, "angle": -14.48, "curve": 0.25, "c3": 0.75}, {"time": 1.0333, "angle": 7.75, "curve": 0.25, "c3": 0.75}, + {"time": 1.2667, "angle": -15.12, "curve": 0.268, "c3": 0.618, "c4": 0.42}, {"time": 1.3333, "angle": -9.36} + ] + }, + "body-fur-1": { + "rotate": [ + {"angle": -13.15, "curve": 0.307, "c2": 0.24, "c3": 0.756}, {"time": 0.1833, "angle": 7.75, "curve": 0.25, "c3": 0.75}, {"time": 0.4, "angle": -14.99, "curve": 0.25, "c3": 0.75}, + {"time": 0.6333, "angle": 7.75, "curve": 0.25, "c3": 0.75}, {"time": 0.85, "angle": -14.48, "curve": 0.25, "c3": 0.75}, {"time": 1.0667, "angle": 7.75, "curve": 0.25, "c3": 0.75}, + {"time": 1.3, "angle": -15.12, "curve": 0.293, "c3": 0.631, "c4": 0.37}, {"time": 1.3333, "angle": -13.15} ] } - }, - "events": [{"time": 0.25, "name": "start-attack"}, {"time": 0.4167, "name": "hit"}] + } }, - "1829044875": { + "3043664647": { + "slots": { + "eyes": {"attachment": [{"time": 0.05, "name": "eyes-angry"}, {"time": 0.8833, "name": "eyes"}]}, + "mouth": {"attachment": [{"time": 0.05, "name": "mouth-bite"}, {"time": 0.4667, "name": "mouth-open"}, {"time": 0.75, "name": "mouth-bite"}, {"time": 0.8833, "name": "mouth"}]} + }, "bones": { - "leg-front-left-IK": { - "translate": [ - {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 3.08, "curve": 0.315, "c4": 0.8}, {"time": 0.15, "x": 13.79, "curve": 0, "c2": 0.3, "c3": 0.544}, - {"time": 0.25, "x": -43.09, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.3333, "x": 26.11, "curve": "stepped"}, {"time": 0.5, "x": 26.11, "curve": 0, "c2": 0.3, "c3": 0.544}, - {"time": 0.5833} - ] - }, "@pivot-back": { "rotate": [ - {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "angle": 5.51, "curve": 0.315, "c4": 0.8}, {"time": 0.2, "angle": -4, "curve": 0.62, "c3": 0.536}, - {"time": 0.5, "angle": 5.83, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5833, "angle": -1.41, "curve": 0.154, "c4": 0.9}, {"time": 0.6667} + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "angle": 4, "curve": 0, "c2": 0.6, "c3": 0.237}, {"time": 0.3333, "angle": -8.88, "curve": 0.621, "c3": 0, "c4": 1.6}, + {"time": 0.6667, "angle": 8.17, "curve": 0.701, "c4": 0.5}, {"time": 0.8833, "angle": 5, "curve": 0.461, "c3": 0.543}, {"time": 1} ], "translate": [ - {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.1167, "x": 13.63, "y": 1.37, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5, "y": -4.7, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.6667} - ] - }, - "@leg-front-right": { - "translate": [ - {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": -1.98, "y": -24.83, "curve": 0.263, "c3": 0.629, "c4": 0.42}, - {"time": 0.1667, "x": -2.18, "y": -3.56, "curve": 0.493, "c2": 0.32, "c4": 0.83}, {"time": 0.3333, "x": -2.18, "y": -2.89, "curve": "stepped"}, - {"time": 0.4833, "x": -2.18, "y": -2.89, "curve": 0, "c2": 0.17, "c3": 0.45, "c4": 0.61}, {"time": 0.5, "x": -1.98, "y": -24.83, "curve": 0, "c2": 0.17, "c3": 0.45, "c4": 0.61}, - {"time": 0.5833, "x": -1.28, "y": 8.38, "curve": 0.345, "c2": 0.53, "c3": 0.751}, {"time": 0.6667} - ] - }, - "tail": { - "rotate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1167, "angle": 11.6, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "angle": -18.66, "curve": 0.313, "c3": 0.699}, - {"time": 0.4667, "angle": 16.43, "curve": 0.315, "c4": 0.8}, {"time": 0.5833, "angle": -6.67, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.6667} - ] - }, - "leg-back-left-IK": { - "translate": [ - {"time": 0.15, "curve": 0.464, "c4": 0.7}, {"time": 0.25, "x": -43.09, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.4, "x": 34.02, "curve": "stepped"}, - {"time": 0.45, "x": 34.02, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.5833} - ] - }, - "@leg-back-left": { - "translate": [ - {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.1333, "x": -0.27, "y": -3.45, "curve": "stepped"}, {"time": 0.5, "x": -0.27, "y": -3.45, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.6667} + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": 33.65, "y": -5, "curve": 0, "c2": 0.6, "c3": 0.237}, + {"time": 0.3333, "x": -62.54, "y": 309.16, "curve": 0.621, "c3": 0, "c4": 1.6}, {"time": 0.6667, "x": 12.32, "y": 268.04, "curve": 0.701, "c4": 0.5}, {"time": 0.8833} ] }, "@leg-front-left": { "translate": [ - {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": -1.04, "y": -13.11, "curve": 0.263, "c3": 0.629, "c4": 0.42}, - {"time": 0.1667, "x": -1.14, "y": -2.73, "curve": 0.493, "c2": 0.32, "c4": 0.83}, {"time": 0.3333, "x": -1.16, "y": -1.14, "curve": "stepped"}, - {"time": 0.4833, "x": -1.16, "y": -1.14, "curve": 0, "c2": 0.17, "c3": 0.45, "c4": 0.61}, {"time": 0.5, "x": -1.04, "y": -13.11, "curve": 0, "c2": 0.17, "c3": 0.45, "c4": 0.61}, - {"time": 0.5833, "x": -0.69, "y": 4.65, "curve": 0.345, "c2": 0.53, "c3": 0.751}, {"time": 0.6667} + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": -0.29, "y": -5.47, "curve": 0, "c2": 0.6, "c3": 0.237}, {"time": 0.3333, "curve": "stepped"}, + {"time": 0.6667, "curve": 0.701, "c4": 0.5}, {"time": 0.8833, "x": -0.95, "y": -14.45, "curve": 0.461, "c3": 0.543}, {"time": 1} ] }, - "leg-front-right-IK": { + "@leg-front-right": { "translate": [ - {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 3.08, "curve": 0.315, "c4": 0.8}, {"time": 0.15, "x": 13.79, "curve": 0, "c2": 0.3, "c3": 0.544}, - {"time": 0.25, "x": -43.09, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.3333, "x": 26.11, "curve": "stepped"}, {"time": 0.5, "x": 26.11, "curve": 0, "c2": 0.3, "c3": 0.544}, - {"time": 0.5833} + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": -1.07, "y": -20.09, "curve": 0, "c2": 0.6, "c3": 0.237}, {"time": 0.3333, "curve": "stepped"}, + {"time": 0.6667, "curve": 0.701, "c4": 0.5}, {"time": 0.8833, "x": -1.66, "y": -25.29, "curve": 0.461, "c3": 0.543}, {"time": 1} ] }, "@shadow": { + "translate": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": 24.43, "curve": 0, "c2": 0.6, "c3": 0.237}, {"time": 0.3333, "x": -70.38, "curve": 0.621, "c3": 0, "c4": 1.4}, + {"time": 0.6667, "x": 5.15, "curve": 0.701, "c4": 0.5}, {"time": 0.8833, "x": -8.95, "curve": 0.461, "c3": 0.543}, {"time": 1} + ], "scale": [ - {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 1.1, "y": 1.1, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "x": 0.8, "y": 0.8, "curve": 0.315, "c4": 0.8}, - {"time": 0.5, "x": 1.1, "y": 1.1, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.6667} + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": 1.08, "y": 1.08, "curve": 0, "c2": 0.6, "c3": 0.237}, + {"time": 0.3333, "x": 0.85, "y": 0.85, "curve": 0.621, "c3": 0, "c4": 1.4}, {"time": 0.6667, "x": 0.9, "y": 0.9, "curve": 0.701, "c4": 0.5}, + {"time": 0.8833, "x": 1.1, "y": 1.1, "curve": 0.461, "c3": 0.543}, {"time": 1} ] }, - "@pivot-main": { - "translate": [{"time": 0.1667, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "y": 133.58, "curve": 0.315, "c4": 0.8}, {"time": 0.5}], - "scale": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "y": 0.97, "curve": 0.315, "c4": 0.8}, {"time": 0.1667, "curve": "stepped"}, {"time": 0.4167, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.5, "y": 0.97, "curve": 0.315, "c4": 0.8}, {"time": 0.5833} + "tail": { + "rotate": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "angle": 17.93, "curve": 0, "c2": 0.6, "c3": 0.237}, {"time": 0.3333, "angle": -15.3, "curve": 0.621, "c3": 0, "c4": 1.4}, + {"time": 0.6667, "angle": 24.81, "curve": 0.701, "c4": 0.5}, {"time": 0.8833, "angle": -15.84, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 1} ] }, "body-fur-2": { "rotate": [ - {"angle": -25.95, "curve": 0.303, "c2": 0.24, "c3": 0.674, "c4": 0.69}, {"time": 0.0833, "angle": 0.25, "curve": 0.382, "c2": 0.58, "c3": 0.731}, - {"time": 0.1333, "angle": 10.37, "curve": 0.25, "c3": 0.75}, {"time": 0.2167, "angle": -19.33, "curve": 0.25, "c3": 0.75}, {"time": 0.3833, "angle": 26.76, "curve": 0.25, "c3": 0.75}, - {"time": 0.6333, "angle": -31.42, "curve": 0.284, "c3": 0.625, "c4": 0.38}, {"time": 0.6667, "angle": 13.84} + {"angle": -26.19, "curve": 0.243, "c3": 0.649, "c4": 0.6}, {"time": 0.0667, "angle": -7.43, "curve": 0.382, "c2": 0.57, "c3": 0.735}, {"time": 0.1}, + {"time": 0.2667, "angle": 24.86, "curve": 0.25, "c3": 0.75}, {"time": 0.5333, "angle": -36.65, "curve": 0.25, "c3": 0.75}, {"time": 0.6667, "angle": 38.65, "curve": 0.25, "c3": 0.75}, + {"time": 0.8667, "curve": 0.25, "c3": 0.75}, {"time": 1, "angle": 13.84} ] }, "body-fur-9": { "rotate": [ - {"angle": -10.42, "curve": 0.339, "c2": 0.35, "c3": 0.679, "c4": 0.7}, {"time": 0.0333, "angle": 0.25, "curve": 0.382, "c2": 0.58, "c3": 0.731}, {"time": 0.0833, "angle": 10.37}, - {"time": 0.1667, "angle": -19.33, "curve": 0.25, "c3": 0.75}, {"time": 0.3333, "angle": 26.76, "curve": 0.25, "c3": 0.75}, - {"time": 0.5833, "angle": -31.42, "curve": 0.25, "c3": 0.625, "c4": 0.5}, {"time": 0.6667, "angle": 6.86} + {"angle": -23.66, "curve": 0.295, "c2": 0.21, "c3": 0.667, "c4": 0.67}, {"time": 0.05, "angle": -7.43, "curve": 0.382, "c2": 0.57, "c3": 0.735}, {"time": 0.0833}, + {"time": 0.25, "angle": 24.86, "curve": 0.25, "c3": 0.75}, {"time": 0.5167, "angle": -36.65, "curve": 0.25, "c3": 0.75}, {"time": 0.65, "angle": 38.65, "curve": 0.25, "c3": 0.75}, + {"time": 0.85, "curve": 0.25, "c3": 0.75}, {"time": 0.9833, "angle": -26.19, "curve": 0.29, "c3": 0.629, "c4": 0.37}, {"time": 1, "angle": 6.86} ] }, "body-fur-8": { "rotate": [ - {"angle": 4.93, "curve": 0.375, "c2": 0.62, "c3": 0.716}, {"time": 0.0333, "angle": 10.37}, {"time": 0.1167, "angle": -19.33, "curve": 0.25, "c3": 0.75}, - {"time": 0.2833, "angle": 26.76, "curve": 0.25, "c3": 0.75}, {"time": 0.5333, "angle": -31.42, "curve": 0.243, "c3": 0.68, "c4": 0.71}, {"time": 0.6667, "angle": -0.91} + {"angle": -13.1, "curve": 0.375, "c2": 0.5, "c3": 0.75}, {"time": 0.05}, {"time": 0.2167, "angle": 24.86, "curve": 0.25, "c3": 0.75}, + {"time": 0.4833, "angle": -36.65, "curve": 0.25, "c3": 0.75}, {"time": 0.6167, "angle": 38.65, "curve": 0.25, "c3": 0.75}, {"time": 0.8167, "curve": 0.25, "c3": 0.75}, + {"time": 0.95, "angle": -26.19, "curve": 0.25, "c3": 0.625, "c4": 0.5}, {"time": 1, "angle": -0.91} ] }, "body-fur-7": { "rotate": [ - {"angle": -5, "curve": 0.381, "c2": 0.55, "c3": 0.742}, {"time": 0.0667, "angle": 10.37, "curve": 0.25, "c3": 0.75}, {"time": 0.15, "angle": -19.33, "curve": 0.25, "c3": 0.75}, - {"time": 0.3167, "angle": 26.76, "curve": 0.25, "c3": 0.75}, {"time": 0.5667, "angle": -31.42, "curve": 0.245, "c3": 0.637, "c4": 0.56}, {"time": 0.6667, "angle": 2.91} + {"angle": -2.53, "curve": 0.371, "c2": 0.62, "c3": 0.71}, {"time": 0.0167, "curve": 0.25, "c3": 0.75}, {"time": 0.1833, "angle": 24.86, "curve": 0.25, "c3": 0.75}, + {"time": 0.45, "angle": -36.65, "curve": 0.25, "c3": 0.75}, {"time": 0.5833, "angle": 38.65, "curve": 0.25, "c3": 0.75}, {"time": 0.7833, "curve": 0.25, "c3": 0.75}, + {"time": 0.9167, "angle": -26.19, "curve": 0.243, "c3": 0.689, "c4": 0.75}, {"time": 1, "angle": 2.91} ] }, "body-fur-6": { "rotate": [ - {"angle": -29.66, "curve": 0.277, "c2": 0.14, "c3": 0.667, "c4": 0.67}, {"time": 0.1, "angle": 0.25, "curve": 0.382, "c2": 0.58, "c3": 0.731}, {"time": 0.15, "angle": 10.37}, - {"time": 0.2333, "angle": -19.33, "curve": 0.25, "c3": 0.75}, {"time": 0.4, "angle": 26.76, "curve": 0.25, "c3": 0.75}, - {"time": 0.65, "angle": -31.42, "curve": 0.305, "c3": 0.64, "c4": 0.36}, {"time": 0.6667, "angle": 13.33} + {"angle": -18.74, "curve": 0.325, "c2": 0.31, "c3": 0.675, "c4": 0.69}, {"time": 0.0333, "angle": -7.43, "curve": 0.382, "c2": 0.57, "c3": 0.735}, {"time": 0.0667}, + {"time": 0.2333, "angle": 24.86, "curve": 0.25, "c3": 0.75}, {"time": 0.5, "angle": -36.65, "curve": 0.25, "c3": 0.75}, {"time": 0.6333, "angle": 38.65, "curve": 0.25, "c3": 0.75}, + {"time": 0.8333, "curve": 0.25, "c3": 0.75}, {"time": 0.9667, "angle": -26.19, "curve": 0.265, "c3": 0.618, "c4": 0.43}, {"time": 1, "angle": 13.33} ] }, "body-fur-5": { "rotate": [ - {"angle": -16.05, "curve": 0.363, "c2": 0.44, "c3": 0.755}, {"time": 0.1, "angle": 10.37}, {"time": 0.1833, "angle": -19.33, "curve": 0.25, "c3": 0.75}, - {"time": 0.35, "angle": 26.76, "curve": 0.25, "c3": 0.75}, {"time": 0.6, "angle": -31.42, "curve": 0.258, "c3": 0.619, "c4": 0.45}, {"time": 0.6667, "angle": 6.86} + {"angle": -7.43, "curve": 0.382, "c2": 0.57, "c3": 0.735}, {"time": 0.0333}, {"time": 0.2, "angle": 24.86, "curve": 0.25, "c3": 0.75}, + {"time": 0.4667, "angle": -36.65, "curve": 0.25, "c3": 0.75}, {"time": 0.6, "angle": 38.65, "curve": 0.25, "c3": 0.75}, {"time": 0.8, "curve": 0.25, "c3": 0.75}, + {"time": 0.9333, "angle": -26.19, "curve": 0.243, "c3": 0.649, "c4": 0.6}, {"time": 1, "angle": 6.86} ] }, "body-fur-4": { "rotate": [ - {"angle": -30.09, "curve": 0.352, "c2": 0.65, "c3": 0.687}, {"time": 0.0167, "angle": -31.42, "curve": 0.243, "c3": 0.655, "c4": 0.63}, - {"time": 0.1333, "angle": 0.25, "curve": 0.382, "c2": 0.58, "c3": 0.731}, {"time": 0.1833, "angle": 10.37}, {"time": 0.2667, "angle": -19.33, "curve": 0.25, "c3": 0.75}, - {"time": 0.4333, "angle": 26.76, "curve": 0.246, "c3": 0.723, "c4": 0.88}, {"time": 0.6667, "angle": 12.53} + {"angle": -23.66, "curve": 0.295, "c2": 0.21, "c3": 0.667, "c4": 0.67}, {"time": 0.05, "angle": -7.43, "curve": 0.382, "c2": 0.57, "c3": 0.735}, {"time": 0.0833}, + {"time": 0.25, "angle": 24.86, "curve": 0.25, "c3": 0.75}, {"time": 0.5167, "angle": -36.65, "curve": 0.25, "c3": 0.75}, {"time": 0.65, "angle": 38.65, "curve": 0.25, "c3": 0.75}, + {"time": 0.85, "curve": 0.25, "c3": 0.75}, {"time": 0.9833, "angle": -26.19, "curve": 0.29, "c3": 0.629, "c4": 0.37}, {"time": 1, "angle": 12.53} ] }, "body-fur-3": { "rotate": [ - {"angle": -25.98, "curve": 0.32, "c2": 0.29, "c3": 0.757}, {"time": 0.1333, "angle": 10.37, "curve": 0.25, "c3": 0.75}, {"time": 0.2167, "angle": -19.33, "curve": 0.25, "c3": 0.75}, - {"time": 0.3833, "angle": 26.76, "curve": 0.25, "c3": 0.75}, {"time": 0.6333, "angle": -31.42, "curve": 0.284, "c3": 0.625, "c4": 0.38}, {"time": 0.6667, "angle": 5.54} + {"angle": -13.1, "curve": 0.375, "c2": 0.5, "c3": 0.75}, {"time": 0.05}, {"time": 0.2167, "angle": 24.86, "curve": 0.25, "c3": 0.75}, + {"time": 0.4833, "angle": -36.65, "curve": 0.25, "c3": 0.75}, {"time": 0.6167, "angle": 38.65, "curve": 0.25, "c3": 0.75}, {"time": 0.8167, "curve": 0.25, "c3": 0.75}, + {"time": 0.95, "angle": -26.19, "curve": 0.25, "c3": 0.625, "c4": 0.5}, {"time": 1, "angle": 5.54} ] }, "body-fur-1": { "rotate": [ - {"angle": -10.53, "curve": 0.375, "c2": 0.5, "c3": 0.75}, {"time": 0.0833, "angle": 10.37}, {"time": 0.1667, "angle": -19.33, "curve": 0.25, "c3": 0.75}, - {"time": 0.3333, "angle": 26.76, "curve": 0.25, "c3": 0.75}, {"time": 0.5833, "angle": -31.42, "curve": 0.25, "c3": 0.625, "c4": 0.5}, {"time": 0.6667, "angle": 10.51} + {"angle": -18.76, "curve": 0.351, "c2": 0.4, "c3": 0.757}, {"time": 0.0667}, {"time": 0.2333, "angle": 24.86, "curve": 0.25, "c3": 0.75}, + {"time": 0.5, "angle": -36.65, "curve": 0.25, "c3": 0.75}, {"time": 0.6333, "angle": 38.65, "curve": 0.25, "c3": 0.75}, {"time": 0.8333, "curve": 0.25, "c3": 0.75}, + {"time": 0.9667, "angle": -26.19, "curve": 0.265, "c3": 0.618, "c4": 0.43}, {"time": 1, "angle": 10.51} ] } }, - "events": [{"time": 0.15, "name": "jump"}] + "events": [{"time": 0.4667, "name": "start-attack"}] }, - "2128743770": { + "117147712": { + "slots": { + "eyes": {"attachment": [{"time": 0.0833, "name": "eyes-angry"}, {"time": 0.6667, "name": "eyes-shut"}, {"time": 0.75, "name": "eyes"}]}, + "mouth": {"attachment": [{"time": 0.0833, "name": "mouth-bite"}, {"time": 0.35, "name": "mouth-open"}, {"time": 0.55, "name": "mouth-bite"}, {"time": 0.75, "name": "mouth"}]} + }, "bones": { "@pivot-back": { "rotate": [ - {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "angle": 5.51, "curve": 0.315, "c4": 0.8}, {"time": 0.2, "angle": -4, "curve": 0.62, "c3": 0.536}, - {"time": 0.5, "angle": 5.83, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5833, "angle": -1.41, "curve": 0.154, "c4": 0.9}, {"time": 0.6667} + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "angle": 4, "curve": 0, "c2": 0.5, "c3": 0.3}, {"time": 0.3333, "angle": -23.77, "curve": "stepped"}, + {"time": 0.35, "angle": -29.82, "curve": 0.698, "c3": 0.541}, {"time": 0.5833, "angle": 3}, {"time": 0.7167, "angle": 4, "curve": 0, "c2": 0.09, "c3": 0.479, "c4": 0.56}, + {"time": 0.8167, "angle": -5.09, "curve": 0.416, "c2": 0.51, "c3": 0.865}, {"time": 0.9167} ], "translate": [ - {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.1167, "x": 13.63, "y": 1.37, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5, "y": -4.7, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.6667} + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": 33.65, "y": -5, "curve": 0, "c2": 0.5, "c3": 0.3}, {"time": 0.3333, "x": 80.56, "y": 137.85, "curve": "stepped"}, + {"time": 0.35, "x": 147.57, "y": 42.83, "curve": 0, "c2": 0.2, "c3": 0.686}, {"time": 0.5, "x": 206.93, "y": -26.82, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.5833, "x": 226.09}, + {"time": 0.7167, "x": 237.58, "y": 2, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.9167} ] }, - "@leg-front-right": { + "@pivot-main": { "translate": [ - {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": -1.98, "y": -24.83, "curve": 0.263, "c3": 0.629, "c4": 0.42}, - {"time": 0.1667, "x": -2.18, "y": -3.56, "curve": 0.493, "c2": 0.32, "c4": 0.83}, {"time": 0.3333, "x": -2.18, "y": -2.89, "curve": "stepped"}, - {"time": 0.4833, "x": -2.18, "y": -2.89, "curve": 0, "c2": 0.17, "c3": 0.45, "c4": 0.61}, {"time": 0.5, "x": -1.98, "y": -24.83, "curve": 0, "c2": 0.17, "c3": 0.45, "c4": 0.61}, - {"time": 0.5833, "x": -1.28, "y": 8.38, "curve": 0.345, "c2": 0.53, "c3": 0.751}, {"time": 0.6667} + {"time": 0.5833, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.7167, "x": 15, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.8167, "x": 7.5, "y": 59.4, "curve": 0.315, "c4": 0.8}, + {"time": 0.9167} ] }, - "leg-front-right-IK": { + "leg-front-left-IK": { "translate": [ - {"time": 0.15, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.25, "x": 26.77, "curve": 0.315, "c4": 0.8}, {"time": 0.35, "x": -20.02, "curve": "stepped"}, - {"time": 0.5, "x": -20.02, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.5833} + {"time": 0.1667, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.3333, "x": 27.04, "y": 216.41, "curve": "stepped"}, {"time": 0.35, "x": 51.7, "y": 178.19, "curve": 0.384, "c3": 0.537}, + {"time": 0.5833, "x": 202.93}, {"time": 0.7, "x": 218.86, "y": 2.61, "curve": 0.315, "c4": 0.8}, {"time": 0.7667, "x": 145.27, "curve": 0.237, "c4": 0.8}, {"time": 0.9167} ] }, - "@leg-front-left": { + "leg-front-right-IK": { "translate": [ - {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": -1.04, "y": -13.11, "curve": 0.263, "c3": 0.629, "c4": 0.42}, - {"time": 0.1667, "x": -1.14, "y": -2.73, "curve": 0.493, "c2": 0.32, "c4": 0.83}, {"time": 0.3333, "x": -1.16, "y": -1.14, "curve": "stepped"}, - {"time": 0.4833, "x": -1.16, "y": -1.14, "curve": 0, "c2": 0.17, "c3": 0.45, "c4": 0.61}, {"time": 0.5, "x": -1.04, "y": -13.11, "curve": 0, "c2": 0.17, "c3": 0.45, "c4": 0.61}, - {"time": 0.5833, "x": -0.69, "y": 4.65, "curve": 0.345, "c2": 0.53, "c3": 0.751}, {"time": 0.6667} + {"time": 0.1667, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.3333, "x": 54.35, "y": 310.88, "curve": "stepped"}, {"time": 0.35, "x": 67.2, "y": 319.96, "curve": 0.384, "c3": 0.537}, + {"time": 0.5833, "x": 199.77}, {"time": 0.7, "x": 187.66, "curve": 0.315, "c4": 0.8}, {"time": 0.7667, "x": 143.69, "curve": 0.237, "c4": 0.8}, {"time": 0.9167} ] }, - "leg-front-left-IK": { + "leg-back-left-IK": { "translate": [ - {"time": 0.15, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.25, "x": 26.77, "curve": 0.315, "c4": 0.8}, {"time": 0.35, "x": -20.02, "curve": "stepped"}, - {"time": 0.5, "x": -20.02, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.5833} + {"time": 0.1667, "curve": 0, "c2": 0.4, "c3": 0.383}, {"time": 0.3333, "x": 50.37, "y": 150.84, "curve": "stepped"}, {"time": 0.35, "x": 34.64, "y": 81.96, "curve": 0.306, "c4": 0.8}, + {"time": 0.5, "x": 185.62, "y": 1.08, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.7167, "x": 244.18, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.8167, "x": 108.59, "y": 18.82, "curve": 0.306, "c4": 0.8}, {"time": 0.9167} ] }, - "@leg-back-left": { + "@leg-front-right": { "translate": [ - {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.1333, "x": -0.27, "y": -3.45, "curve": "stepped"}, {"time": 0.5, "x": -0.27, "y": -3.45, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.6667} + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": -1.03, "y": -19.32}, {"time": 0.3333, "curve": "stepped"}, {"time": 0.5833, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.7167, "x": 9.38, "y": 7.22}, {"time": 0.9167} ] }, - "leg-back-left-IK": { + "@leg-front-left": { "translate": [ - {"time": 0.15, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.25, "x": 26.77, "curve": "stepped"}, {"time": 0.3, "x": 26.77, "curve": 0.315, "c4": 0.8}, - {"time": 0.4167, "x": -20.02, "curve": "stepped"}, {"time": 0.5, "x": -20.02, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.5833} - ] - }, - "@pivot-main": { - "translate": [{"time": 0.1667, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "y": 133.58, "curve": 0.315, "c4": 0.8}, {"time": 0.5}], - "scale": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "y": 0.97, "curve": 0.315, "c4": 0.8}, {"time": 0.1667, "curve": "stepped"}, {"time": 0.4167, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.5, "y": 0.97, "curve": 0.315, "c4": 0.8}, {"time": 0.5833} + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": -0.29, "y": -5.47}, {"time": 0.3333, "curve": "stepped"}, {"time": 0.5833, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.7167, "x": 6.3, "y": -2.41}, {"time": 0.9167} ] }, "tail": { "rotate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1167, "angle": 11.6, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "angle": -18.66, "curve": 0.313, "c3": 0.699}, - {"time": 0.4667, "angle": 16.43, "curve": 0.315, "c4": 0.8}, {"time": 0.5833, "angle": -6.67, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.6667} + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "angle": 19.35, "curve": 0, "c2": 0.4, "c3": 0.383}, {"time": 0.3333, "angle": -0.88, "curve": "stepped"}, + {"time": 0.35, "angle": -13.56, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.5, "angle": 0.52, "curve": 0, "c2": 0.3, "c3": 0.544}, + {"time": 0.7167, "angle": 19.32, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.8, "angle": -9.3, "curve": 0.313, "c3": 0.699}, {"time": 0.9167} ] }, "@shadow": { + "translate": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": 24.43, "curve": 0, "c2": 0.4, "c3": 0.383}, {"time": 0.3333, "x": 86.58, "curve": "stepped"}, + {"time": 0.35, "x": 154.34, "curve": 0.315, "c4": 0.8}, {"time": 0.5, "x": 208.2, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.5833, "x": 216.55}, + {"time": 0.7167, "x": 243.36, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.9167} + ], "scale": [ - {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 1.1, "y": 1.1, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "x": 0.8, "y": 0.8, "curve": 0.315, "c4": 0.8}, - {"time": 0.5, "x": 1.1, "y": 1.1, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.6667} + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": 1.08, "y": 1.08, "curve": 0, "c2": 0.4, "c3": 0.383}, {"time": 0.3333, "x": 0.92, "y": 0.92, "curve": "stepped"}, + {"time": 0.35, "x": 0.9, "y": 0.9, "curve": 0.315, "c4": 0.8}, {"time": 0.5, "x": 1.02, "y": 1.02, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.5833, "x": 1.08, "y": 1.08}, + {"time": 0.7167, "x": 1.1, "y": 1.1, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.9167} ] }, - "body-fur-2": { + "body-fur-8": { "rotate": [ - {"angle": 14.28, "curve": 0.303, "c2": 0.24, "c3": 0.674, "c4": 0.69}, {"time": 0.0833, "angle": -8.1, "curve": 0.382, "c2": 0.58, "c3": 0.731}, {"time": 0.1333, "angle": -16.75}, - {"time": 0.2167, "angle": 6.13, "curve": 0.25, "c3": 0.75}, {"time": 0.3833, "angle": -32.74, "curve": 0.25, "c3": 0.75}, - {"time": 0.6333, "angle": 18.96, "curve": 0.284, "c3": 0.625, "c4": 0.38}, {"time": 0.6667, "angle": 13.84} + {"angle": -4.79, "curve": 0.382, "c2": 0.56, "c3": 0.74}, {"time": 0.05}, {"time": 0.2167, "angle": 21.78, "curve": 0.25, "c3": 0.75}, + {"time": 0.35, "angle": -6.87, "curve": 0.25, "c3": 0.75}, {"time": 0.45, "angle": 28.66, "curve": 0.25, "c3": 0.75}, {"time": 0.55, "angle": -32.59, "curve": 0.25, "c3": 0.75}, + {"time": 0.7167, "angle": 24.66, "curve": 0.25, "c3": 0.75}, {"time": 0.8333, "angle": -14.25, "curve": 0.244, "c3": 0.641, "c4": 0.57}, {"time": 0.9167, "angle": -0.91} ] }, - "body-fur-9": { + "body-fur-1": { "rotate": [ - {"angle": 1.01, "curve": 0.339, "c2": 0.35, "c3": 0.679, "c4": 0.7}, {"time": 0.0333, "angle": -8.1, "curve": 0.382, "c2": 0.58, "c3": 0.731}, {"time": 0.0833, "angle": -16.75}, - {"time": 0.1667, "angle": 6.13, "curve": 0.25, "c3": 0.75}, {"time": 0.3333, "angle": -32.74, "curve": 0.25, "c3": 0.75}, - {"time": 0.5833, "angle": 18.96, "curve": 0.25, "c3": 0.625, "c4": 0.5}, {"time": 0.6667, "angle": 6.86} + {"angle": -7.13, "curve": 0.375, "c2": 0.5, "c3": 0.75}, {"time": 0.0667}, {"time": 0.2333, "angle": 21.78, "curve": 0.25, "c3": 0.75}, + {"time": 0.3667, "angle": -6.87, "curve": 0.25, "c3": 0.75}, {"time": 0.4667, "angle": 28.66, "curve": 0.25, "c3": 0.75}, {"time": 0.5667, "angle": -32.59, "curve": 0.25, "c3": 0.75}, + {"time": 0.7333, "angle": 24.66, "curve": 0.25, "c3": 0.75}, {"time": 0.85, "angle": -14.25, "curve": 0.25, "c3": 0.625, "c4": 0.5}, {"time": 0.9167, "angle": 10.51} ] }, - "body-fur-8": { + "body-fur-2": { "rotate": [ - {"angle": -12.1, "curve": 0.375, "c2": 0.62, "c3": 0.716}, {"time": 0.0333, "angle": -16.75}, {"time": 0.1167, "angle": 6.13, "curve": 0.25, "c3": 0.75}, - {"time": 0.2833, "angle": -32.74, "curve": 0.25, "c3": 0.75}, {"time": 0.5333, "angle": 18.96, "curve": 0.243, "c3": 0.68, "c4": 0.71}, {"time": 0.6667, "angle": -0.91} + {"angle": -11.6, "curve": 0.314, "c2": 0.27, "c3": 0.686, "c4": 0.73}, {"time": 0.0667, "angle": -2.63, "curve": 0.379, "c2": 0.6, "c3": 0.724}, {"time": 0.1}, + {"time": 0.2667, "angle": 21.78, "curve": 0.25, "c3": 0.75}, {"time": 0.4, "angle": -6.87, "curve": 0.25, "c3": 0.75}, {"time": 0.5, "angle": 28.66, "curve": 0.25, "c3": 0.75}, + {"time": 0.6, "angle": -32.59, "curve": 0.25, "c3": 0.75}, {"time": 0.7667, "angle": 24.66, "curve": 0.25, "c3": 0.75}, + {"time": 0.8833, "angle": -14.25, "curve": 0.276, "c3": 0.621, "c4": 0.4}, {"time": 0.9167, "angle": 13.84} ] }, - "body-fur-7": { + "body-fur-3": { "rotate": [ - {"angle": -3.61, "curve": 0.381, "c2": 0.55, "c3": 0.742}, {"time": 0.0667, "angle": -16.75, "curve": 0.25, "c3": 0.75}, {"time": 0.15, "angle": 6.13, "curve": 0.25, "c3": 0.75}, - {"time": 0.3167, "angle": -32.74, "curve": 0.25, "c3": 0.75}, {"time": 0.5667, "angle": 18.96, "curve": 0.245, "c3": 0.637, "c4": 0.56}, {"time": 0.6667, "angle": 2.91} + {"angle": -4.79, "curve": 0.382, "c2": 0.56, "c3": 0.74}, {"time": 0.05}, {"time": 0.2167, "angle": 21.78, "curve": 0.25, "c3": 0.75}, + {"time": 0.35, "angle": -6.87, "curve": 0.25, "c3": 0.75}, {"time": 0.45, "angle": 28.66, "curve": 0.25, "c3": 0.75}, {"time": 0.55, "angle": -32.59, "curve": 0.25, "c3": 0.75}, + {"time": 0.7167, "angle": 24.66, "curve": 0.25, "c3": 0.75}, {"time": 0.8333, "angle": -14.25, "curve": 0.244, "c3": 0.641, "c4": 0.57}, {"time": 0.9167, "angle": 5.54} ] }, - "body-fur-6": { + "body-fur-4": { "rotate": [ - {"angle": 17.45, "curve": 0.277, "c2": 0.14, "c3": 0.667, "c4": 0.67}, {"time": 0.1, "angle": -8.1, "curve": 0.382, "c2": 0.58, "c3": 0.731}, - {"time": 0.15, "angle": -16.75, "curve": 0.25, "c3": 0.75}, {"time": 0.2333, "angle": 6.13, "curve": 0.25, "c3": 0.75}, {"time": 0.4, "angle": -32.74, "curve": 0.25, "c3": 0.75}, - {"time": 0.65, "angle": 18.96, "curve": 0.305, "c3": 0.64, "c4": 0.36}, {"time": 0.6667, "angle": 13.33} + {"angle": -9.42, "curve": 0.333, "c2": 0.33, "c3": 0.688, "c4": 0.73}, {"time": 0.05, "angle": -2.63, "curve": 0.379, "c2": 0.6, "c3": 0.724}, {"time": 0.0833}, + {"time": 0.25, "angle": 21.78, "curve": 0.25, "c3": 0.75}, {"time": 0.3833, "angle": -6.87, "curve": 0.25, "c3": 0.75}, {"time": 0.4833, "angle": 28.66, "curve": 0.25, "c3": 0.75}, + {"time": 0.5833, "angle": -32.59, "curve": 0.25, "c3": 0.75}, {"time": 0.75, "angle": 24.66, "curve": 0.25, "c3": 0.75}, + {"time": 0.8667, "angle": -14.25, "curve": 0.26, "c3": 0.618, "c4": 0.44}, {"time": 0.9167, "angle": 12.53} ] }, "body-fur-5": { "rotate": [ - {"angle": 5.82, "curve": 0.363, "c2": 0.44, "c3": 0.755}, {"time": 0.1, "angle": -16.75, "curve": 0.25, "c3": 0.75}, {"time": 0.1833, "angle": 6.13, "curve": 0.25, "c3": 0.75}, - {"time": 0.35, "angle": -32.74, "curve": 0.25, "c3": 0.75}, {"time": 0.6, "angle": 18.96, "curve": 0.258, "c3": 0.619, "c4": 0.45}, {"time": 0.6667, "angle": 6.86} + {"angle": -2.63, "curve": 0.379, "c2": 0.6, "c3": 0.724}, {"time": 0.0333, "curve": 0.25, "c3": 0.75}, {"time": 0.2, "angle": 21.78, "curve": 0.25, "c3": 0.75}, + {"time": 0.3333, "angle": -6.87, "curve": 0.25, "c3": 0.75}, {"time": 0.4333, "angle": 28.66, "curve": 0.25, "c3": 0.75}, {"time": 0.5333, "angle": -32.59, "curve": 0.25, "c3": 0.75}, + {"time": 0.7, "angle": 24.66, "curve": 0.25, "c3": 0.75}, {"time": 0.8167, "angle": -14.25, "curve": 0.242, "c3": 0.667, "c4": 0.67}, {"time": 0.9167, "angle": 6.86} ] }, - "body-fur-4": { + "body-fur-6": { "rotate": [ - {"angle": 17.78, "curve": 0.352, "c2": 0.65, "c3": 0.687}, {"time": 0.0167, "angle": 18.96, "curve": 0.243, "c3": 0.655, "c4": 0.63}, - {"time": 0.1333, "angle": -8.1, "curve": 0.382, "c2": 0.58, "c3": 0.731}, {"time": 0.1833, "angle": -16.75}, {"time": 0.2667, "angle": 6.13, "curve": 0.25, "c3": 0.75}, - {"time": 0.4333, "angle": -32.74, "curve": 0.246, "c3": 0.723, "c4": 0.88}, {"time": 0.6667, "angle": 12.53} + {"angle": -7.08, "curve": 0.343, "c2": 0.36, "c3": 0.686, "c4": 0.73}, {"time": 0.0333, "angle": -2.63, "curve": 0.379, "c2": 0.6, "c3": 0.724}, + {"time": 0.0667, "curve": 0.25, "c3": 0.75}, {"time": 0.2333, "angle": 21.78, "curve": 0.25, "c3": 0.75}, {"time": 0.3667, "angle": -6.87, "curve": 0.25, "c3": 0.75}, + {"time": 0.4667, "angle": 28.66, "curve": 0.25, "c3": 0.75}, {"time": 0.5667, "angle": -32.59, "curve": 0.25, "c3": 0.75}, {"time": 0.7333, "angle": 24.66, "curve": 0.25, "c3": 0.75}, + {"time": 0.85, "angle": -14.25, "curve": 0.25, "c3": 0.625, "c4": 0.5}, {"time": 0.9167, "angle": 13.33} ] }, - "body-fur-3": { + "body-fur-7": { "rotate": [ - {"angle": 14.31, "curve": 0.32, "c2": 0.29, "c3": 0.757}, {"time": 0.1333, "angle": -16.75}, {"time": 0.2167, "angle": 6.13, "curve": 0.25, "c3": 0.75}, - {"time": 0.3833, "angle": -32.74, "curve": 0.25, "c3": 0.75}, {"time": 0.6333, "angle": 18.96, "curve": 0.284, "c3": 0.625, "c4": 0.38}, {"time": 0.6667, "angle": 5.54} + {"angle": -0.89, "curve": 0.364, "c2": 0.64, "c3": 0.701}, {"time": 0.0167, "curve": 0.25, "c3": 0.75}, {"time": 0.1833, "angle": 21.78, "curve": 0.25, "c3": 0.75}, + {"time": 0.3167, "angle": -6.87, "curve": 0.25, "c3": 0.75}, {"time": 0.4167, "angle": 28.66, "curve": 0.25, "c3": 0.75}, {"time": 0.5167, "angle": -32.59, "curve": 0.25, "c3": 0.75}, + {"time": 0.6833, "angle": 24.66, "curve": 0.25, "c3": 0.75}, {"time": 0.8, "angle": -14.25, "curve": 0.244, "c3": 0.702, "c4": 0.8}, {"time": 0.9167, "angle": 2.91} ] }, - "body-fur-1": { + "body-fur-9": { "rotate": [ - {"angle": 1.1, "curve": 0.375, "c2": 0.5, "c3": 0.75}, {"time": 0.0833, "angle": -16.75}, {"time": 0.1667, "angle": 6.13, "curve": 0.25, "c3": 0.75}, - {"time": 0.3333, "angle": -32.74, "curve": 0.25, "c3": 0.75}, {"time": 0.5833, "angle": 18.96, "curve": 0.25, "c3": 0.625, "c4": 0.5}, {"time": 0.6667, "angle": 10.51} + {"angle": -9.42, "curve": 0.333, "c2": 0.33, "c3": 0.688, "c4": 0.73}, {"time": 0.05, "angle": -2.63, "curve": 0.379, "c2": 0.6, "c3": 0.724}, {"time": 0.0833}, + {"time": 0.25, "angle": 21.78, "curve": 0.25, "c3": 0.75}, {"time": 0.3833, "angle": -6.87, "curve": 0.25, "c3": 0.75}, {"time": 0.4833, "angle": 28.66, "curve": 0.25, "c3": 0.75}, + {"time": 0.5833, "angle": -32.59, "curve": 0.25, "c3": 0.75}, {"time": 0.75, "angle": 24.66, "curve": 0.25, "c3": 0.75}, + {"time": 0.8667, "angle": -14.25, "curve": 0.26, "c3": 0.618, "c4": 0.44}, {"time": 0.9167, "angle": 6.86} ] } }, - "events": [{"time": 0.15, "name": "jump"}] + "events": [{"time": 0.35, "name": "start-attack"}] }, - "2770379418": { + "66525173": { "slots": { - "eyes": {"attachment": [{"time": 0.0833, "name": "eyes-shut"}, {"time": 0.1667, "name": "eyes-angry"}, {"time": 0.9833, "name": "eyes-shut"}, {"time": 1.0833, "name": "eyes"}]}, - "leg-front-left": { - "attachment": [ - {"time": 0.5, "name": "mystic-leg-front-left-stretch"}, {"time": 0.6333, "name": "mystic-leg-front-left"}, {"time": 0.7667, "name": "mystic-leg-front-left-stretch"}, - {"time": 0.9, "name": "mystic-leg-front-left"} - ] - }, - "mouth": {"attachment": [{"time": 0.0833, "name": "mouth-bite"}, {"time": 0.3667, "name": "mouth-open"}, {"time": 0.9833, "name": "mouth-bite"}, {"time": 1.0833, "name": "mouth"}]} - }, + "eyes": {"attachment": [{"time": 0.0167, "name": "eyes-angry"}, {"time": 0.5, "name": "eyes-shut"}, {"time": 0.6667, "name": "eyes"}]}, + "mouth": {"attachment": [{"time": 0.0167, "name": "mouth-bite"}, {"time": 0.3, "name": "mouth-open"}, {"time": 0.5, "name": "mouth"}]} + }, "bones": { "@pivot-back": { "rotate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.15, "angle": 3.67, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.3333, "angle": -14.29, "curve": 0.779, "c4": 0.3}, - {"time": 0.3667, "angle": 15.82}, {"time": 0.4667, "angle": 16.67, "curve": 0.779, "c4": 0.3}, {"time": 0.5, "angle": -19.96}, {"time": 0.6, "angle": -21.17, "curve": 0.779, "c4": 0.3}, - {"time": 0.6333, "angle": 15.82}, {"time": 0.7333, "angle": 16.67, "curve": 0.779, "c4": 0.3}, {"time": 0.7667, "angle": -19.96}, - {"time": 0.8667, "angle": -21.17, "curve": 0.779, "c4": 0.3}, {"time": 0.9833, "angle": 4.4, "curve": 0, "c2": 0.1, "c3": 0.85}, - {"time": 1.05, "angle": 6.79, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1.25} + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "angle": -3.92, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "angle": 2.51, "curve": 0.697, "c4": 0.3}, + {"time": 0.3, "angle": -2}, {"time": 0.4167, "angle": -3, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5833, "angle": 3, "curve": 0, "c2": 0.17, "c3": 0.45, "c4": 0.61}, + {"time": 0.6667, "angle": -2.47, "curve": 0.345, "c2": 0.53, "c3": 0.751}, {"time": 0.75} ], "translate": [ - {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.2167, "x": 8.02, "curve": 0, "c2": 0.4, "c3": 0.383}, {"time": 0.3333, "x": -54.3, "y": 61.69, "curve": 0.779, "c4": 0.3}, - {"time": 0.3667, "x": -60.41, "y": 130.13}, {"time": 0.4667, "x": -60.41, "y": 130.01, "curve": 0.779, "c4": 0.3}, {"time": 0.5, "x": -58.41, "y": 9.6}, - {"time": 0.6, "x": -58.41, "y": 9.9, "curve": 0.779, "c4": 0.3}, {"time": 0.6333, "x": -60.41, "y": 130.13}, {"time": 0.7333, "x": -60.41, "y": 130.01, "curve": 0.779, "c4": 0.3}, - {"time": 0.7667, "x": -58.41, "y": 9.6}, {"time": 0.8667, "x": -58.41, "y": 9.9, "curve": 0.779, "c4": 0.3}, {"time": 0.9833} + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "x": 71.93, "y": -12.95, "curve": "stepped"}, {"time": 0.25, "x": 71.93, "y": -12.95, "curve": 0.697, "c4": 0.3}, + {"time": 0.3, "x": -65}, {"time": 0.4167, "x": -67, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5833, "x": -74.25, "y": -5.2, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.75} ] }, - "@leg-front-right": { + "leg-back-left-IK": { "translate": [ - {"curve": 0, "c2": 0.17, "c3": 0.521, "c4": 0.69}, {"time": 0.15, "x": -16.23, "y": -19.18, "curve": 0.377, "c2": 0.59, "c3": 0.739}, {"time": 0.2167, "x": -18.54, "y": -11.57}, - {"time": 0.25, "x": -22.65, "y": 8.05, "curve": 0, "c2": 0.4, "c3": 0.383}, {"time": 0.3333, "x": 29.92, "y": -4.24, "curve": 0.779, "c4": 0.4}, {"time": 0.3667, "x": 22.95, "y": 2.68}, - {"time": 0.4667, "x": 29.92, "y": -4.24, "curve": 0.779, "c4": 0.4}, {"time": 0.5, "x": 22.95, "y": 2.68}, {"time": 0.6, "x": 29.92, "y": -4.24, "curve": 0.779, "c4": 0.4}, - {"time": 0.6333, "x": 22.95, "y": 2.68}, {"time": 0.7333, "x": 29.92, "y": -4.24, "curve": 0.779, "c4": 0.4}, {"time": 0.7667, "x": 22.95, "y": 2.68, "curve": "stepped"}, - {"time": 0.9167, "x": 22.95, "y": 2.68, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.95, "curve": 0.464, "c4": 0.7}, {"time": 0.9833, "x": -1.45, "y": -24.11}, - {"time": 1.05, "x": -3.72, "y": -46.34, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1.0833} - ], - "scale": [ - {"time": 0.2167}, {"time": 0.25, "x": 1.5}, {"time": 0.3333, "curve": 0.779, "c4": 0.4}, {"time": 0.3667, "x": 1.5}, {"time": 0.4667, "x": 1.51, "curve": 0.157, "c2": 0.33, "c3": 0.727}, - {"time": 0.5, "curve": "stepped"}, {"time": 0.6, "curve": 0.779, "c4": 0.4}, {"time": 0.6333, "x": 1.5}, {"time": 0.7333, "x": 1.51, "curve": 0.157, "c2": 0.33, "c3": 0.727}, - {"time": 0.7667} + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.1333, "x": 80.9, "curve": 0.161, "c3": 0.854}, {"time": 0.25, "x": 72.25, "curve": 0.25, "c4": 0.3}, + {"time": 0.3, "x": -24.7, "y": 18.44, "curve": "stepped"}, {"time": 0.4167, "x": -24.7, "y": 18.44, "curve": 0.306, "c3": 0.695}, + {"time": 0.5833, "x": -90.91, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.75} ] }, - "@leg-front-left": { + "leg-front-right-IK": { "translate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.2167, "x": -6.84, "y": -9.77, "curve": "stepped"}, {"time": 0.9833, "x": -6.84, "y": -9.77, "curve": 0, "c2": 0.1, "c3": 0.85}, - {"time": 1.05, "x": -6.29, "y": -18.69, "curve": 0, "c2": 0.23, "c3": 0.365, "c4": 0.58}, {"time": 1.0833, "x": -3.64, "y": -2.46, "curve": 0.177, "c2": 0.35, "c3": 0.731}, - {"time": 1.25} - ], - "scale": [ - {"time": 0.4667, "curve": 0.779, "c4": 0.4}, {"time": 0.5, "x": 1.5}, {"time": 0.6, "x": 1.51, "curve": 0.157, "c2": 0.33, "c3": 0.727}, {"time": 0.6333, "curve": "stepped"}, - {"time": 0.7333, "curve": 0.779, "c4": 0.4}, {"time": 0.7667, "x": 1.5}, {"time": 0.8667, "x": 1.51, "curve": 0.157, "c2": 0.33, "c3": 0.727}, {"time": 0.9833} + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 30.89, "y": 11.74, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "x": 42.9, "curve": 0.697, "c4": 0.3}, + {"time": 0.3, "x": 11.08, "y": 2.13, "curve": "stepped"}, {"time": 0.4167, "x": 11.08, "y": 2.13, "curve": 0.306, "c3": 0.695}, + {"time": 0.5833, "x": -87.1, "curve": 0, "c2": 0.17, "c3": 0.45, "c4": 0.61}, {"time": 0.6667, "x": -39.4, "curve": 0.345, "c2": 0.53, "c3": 0.751}, {"time": 0.75} ] }, - "@leg-back-left": { + "leg-front-left-IK": { "translate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.2167, "x": -0.11, "y": -2.73, "curve": "stepped"}, {"time": 0.9833, "x": -0.11, "y": -2.73, "curve": 0, "c2": 0.1, "c3": 0.85}, - {"time": 1.05, "x": -0.46, "y": -6.19, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1.25} + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "x": 52.52, "y": 6.57, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "x": 44.73, "y": 1.83, "curve": 0.697, "c4": 0.3}, + {"time": 0.3, "x": -28.02, "y": 20.97}, {"time": 0.4167, "x": -31.01, "y": 31.21, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.5833, "x": -82.62, "curve": 0, "c2": 0.17, "c3": 0.45, "c4": 0.61}, {"time": 0.6667, "x": -55.81, "curve": 0.345, "c2": 0.53, "c3": 0.751}, {"time": 0.75} ] }, - "@pivot-main": { - "translate": [ - {"time": 0.15, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "x": -73.35, "y": 43, "curve": "stepped"}, {"time": 0.8667, "x": -73.35, "y": 43, "curve": 0.315, "c4": 0.8}, - {"time": 0.9833, "x": -146.44, "curve": "stepped"}, {"time": 1.05, "x": -146.44, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1.15, "x": -45.61, "y": 50.15, "curve": 0.315, "c4": 0.8}, - {"time": 1.25} - ], - "scale": [{"time": 0.9833, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1.05, "y": 0.98, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1.15}] - }, - "leg-front-right-IK": { + "@leg-front-left": { "translate": [ - {"time": 0.15, "curve": 0, "c2": 0.18, "c3": 0.416, "c4": 0.58}, {"time": 0.2167, "x": 19.11, "y": 67.51}, {"time": 0.25, "x": 9.04, "y": 75.61, "curve": 0, "c2": 0.4, "c3": 0.383}, - {"time": 0.3333, "x": -160.66, "y": 272.78, "curve": 0.779, "c4": 0.4}, {"time": 0.3667, "x": -57.38, "y": -16.06}, {"time": 0.4667, "x": -10.1, "y": -16.06, "curve": 0.779, "c4": 0.4}, - {"time": 0.5, "x": -151.82, "y": 190.82}, {"time": 0.6, "x": -168.95, "y": 277.96, "curve": 0.779, "c4": 0.4}, {"time": 0.6333, "x": -54.28, "y": -17.1}, - {"time": 0.7333, "x": -12.17, "y": -17.1, "curve": 0.779, "c4": 0.4}, {"time": 0.7667, "x": -151.82, "y": 190.82}, {"time": 0.8667, "x": -165.84, "y": 271.75, "curve": 0.779, "c4": 0.4}, - {"time": 0.9833, "curve": "stepped"}, {"time": 1.05, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 1.0833, "x": -14.68, "y": -19.57, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1.25} + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "x": -2.59, "y": -4.65, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "x": -0.61, "y": -2.94, "curve": 0.697, "c4": 0.3}, + {"time": 0.3, "x": 0.47, "y": -9.15, "curve": "stepped"}, {"time": 0.4167, "x": 0.47, "y": -9.15, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5833} ] }, - "leg-front-left-IK": { + "@leg-front-right": { "translate": [ - {"time": 0.15, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "x": -54.88, "y": 124.95, "curve": 0.779, "c4": 0.4}, {"time": 0.3667, "x": 37.97, "y": 122.64}, - {"time": 0.4667, "x": 48.96, "y": 138.43, "curve": 0.779, "c4": 0.4}, {"time": 0.5, "x": -142.3, "y": 180.66}, {"time": 0.6, "x": -134.29, "y": 191.98, "curve": 0.779, "c4": 0.4}, - {"time": 0.6333, "x": 37.97, "y": 122.64}, {"time": 0.7333, "x": 48.96, "y": 138.43, "curve": 0.779, "c4": 0.4}, {"time": 0.7667, "x": -142.3, "y": 180.66}, - {"time": 0.8667, "x": -134.29, "y": 191.98, "curve": 0.617, "c4": 0.6}, {"time": 0.9833, "curve": "stepped"}, {"time": 1.05, "curve": 0, "c2": 0.1, "c3": 0.85}, - {"time": 1.0833, "x": -7.79, "y": -10.12, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1.25} + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 4.31, "y": 11.86, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "x": -10.4, "y": -12.15, "curve": 0.697, "c4": 0.3}, + {"time": 0.3, "x": -48.45, "y": 18.12, "curve": "stepped"}, {"time": 0.4167, "x": -48.45, "y": 18.12, "curve": 0, "c2": 0.3, "c3": 0.54}, + {"time": 0.5833, "x": -10.7, "y": -18.88, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.75} ] }, - "leg-back-left-IK": { + "@leg-back-left": { "translate": [ - {"time": 0.0833, "curve": 0.332, "c3": 0.682, "c4": 0.41}, {"time": 0.2167, "x": 21.57, "y": 4.03, "curve": 0, "c2": 0.4, "c3": 0.383}, - {"time": 0.3333, "x": -50.73, "y": 91.08, "curve": 0.779, "c4": 0.4}, {"time": 0.3667, "x": 19.18, "y": 184.64}, {"time": 0.4667, "x": 25.59, "y": 197.69, "curve": 0.779, "c4": 0.4}, - {"time": 0.5, "x": -145.53, "y": 47.62}, {"time": 0.6, "x": -152.68, "y": 53.34, "curve": 0.779, "c4": 0.4}, {"time": 0.6333, "x": 19.18, "y": 184.64}, - {"time": 0.7333, "x": 25.59, "y": 197.69, "curve": 0.779, "c4": 0.4}, {"time": 0.7667, "x": -145.53, "y": 47.62}, {"time": 0.8667, "x": -153.88, "y": 53.26, "curve": 0.779, "c4": 0.4}, - {"time": 0.9833, "curve": "stepped"}, {"time": 1.05, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 1.1667, "x": 24.35, "y": 13.92, "curve": 0.154, "c4": 0.9}, {"time": 1.25} - ] - }, - "tail": { - "rotate": [ - {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.15, "angle": 14.68, "curve": 0.315, "c4": 0.8}, {"time": 0.2167, "angle": -12.57}, - {"time": 0.3333, "angle": -14.89, "curve": 0.779, "c4": 0.4}, {"time": 0.3667, "angle": 20.64}, {"time": 0.4667, "angle": 25.18, "curve": 0.779, "c4": 0.4}, - {"time": 0.5, "angle": -19.72}, {"time": 0.6, "angle": -22.19, "curve": 0.779, "c4": 0.4}, {"time": 0.6333, "angle": 20.64}, {"time": 0.7333, "angle": 25.18, "curve": 0.779, "c4": 0.4}, - {"time": 0.7667, "angle": -19.72}, {"time": 0.8667, "angle": -22.19, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.9833, "angle": 23.3}, - {"time": 1.05, "angle": 26.39, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1.1333, "angle": -14.8, "curve": 0.154, "c4": 0.9}, {"time": 1.25} + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.1333, "x": 0.67, "y": -7.85, "curve": 0.161, "c3": 0.854}, {"time": 0.25, "x": 0.53, "y": -13.09, "curve": 0.25, "c4": 0.3}, + {"time": 0.3, "x": -0.22, "y": 1.34, "curve": "stepped"}, {"time": 0.4167, "x": -0.22, "y": 1.34, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.5833, "x": -0.28, "y": -7.87, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.75} ] }, "@shadow": { "translate": [ - {"time": 0.15, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.3333, "x": -132.39, "curve": 0.779, "c4": 0.4}, {"time": 0.3667, "x": -111.3, "curve": "stepped"}, - {"time": 0.8667, "x": -111.3, "curve": 0.315, "c4": 0.8}, {"time": 0.9833, "x": -132.39, "curve": "stepped"}, {"time": 1.05, "x": -132.39, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 1.25} + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 61.96, "curve": "stepped"}, {"time": 0.25, "x": 61.96, "curve": 0.697, "c4": 0.3}, {"time": 0.3, "x": -50.16}, + {"time": 0.4167, "x": -53.09, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5833, "x": -83.79, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.75} ], "scale": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.15, "x": 1.05, "y": 1.05, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.3333, "x": 0.93, "y": 0.93, "curve": 0.779, "c4": 0.4}, - {"time": 0.3667, "x": 0.95, "y": 0.95}, {"time": 0.4667, "x": 0.93, "y": 0.93, "curve": 0.779, "c4": 0.4}, {"time": 0.5}, {"time": 0.6, "x": 1.05, "y": 1.05, "curve": 0.779, "c4": 0.4}, - {"time": 0.6333}, {"time": 0.7333, "x": 0.93, "y": 0.93, "curve": 0.779, "c4": 0.4}, {"time": 0.7667}, {"time": 0.8667, "x": 1.05, "y": 1.05, "curve": 0.315, "c4": 0.8}, - {"time": 0.9833, "x": 1.09, "y": 1.09, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 1.05, "x": 1.11, "y": 1.11, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1.25} + {"time": 0.0833, "curve": 0, "c2": 0.26, "c3": 0.369, "c4": 0.62}, {"time": 0.25, "x": 1.06, "y": 1.06, "curve": 0.697, "c4": 0.3}, + {"time": 0.3, "x": 0.96, "y": 0.96, "curve": "stepped"}, {"time": 0.4167, "x": 0.96, "y": 0.96, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.5833, "x": 1.08, "y": 1.08, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.75} ] }, - "body-fur-8": { + "tail": { "rotate": [ - {"angle": 5.84, "curve": 0.381, "c2": 0.59, "c3": 0.727}, {"time": 0.05}, {"time": 0.2, "angle": 22.69, "curve": 0.25, "c3": 0.75}, - {"time": 0.4, "angle": -25.47, "curve": 0.25, "c3": 0.75}, {"time": 0.5, "angle": 30.13, "curve": 0.25, "c3": 0.75}, {"time": 0.6667, "angle": -32.6, "curve": 0.25, "c3": 0.75}, - {"time": 0.7667, "angle": 29.93, "curve": 0.25, "c3": 0.75}, {"time": 0.95, "angle": -31.51, "curve": 0.25, "c3": 0.75}, - {"time": 1.1167, "angle": 27.92, "curve": 0.242, "c3": 0.661, "c4": 0.65}, {"time": 1.25, "angle": -0.91} + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "angle": 15.61, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "angle": 20.44, "curve": 0.697, "c4": 0.3}, + {"time": 0.3, "angle": -9.4}, {"time": 0.4167, "angle": -13.12, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5833, "angle": 15.47, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.75} ] }, - "body-fur-1": { + "body-fur-2": { "rotate": [ - {"angle": 8.98, "curve": 0.382, "c2": 0.56, "c3": 0.739}, {"time": 0.0667}, {"time": 0.2167, "angle": 22.69, "curve": 0.25, "c3": 0.75}, - {"time": 0.4167, "angle": -25.47, "curve": 0.25, "c3": 0.75}, {"time": 0.5167, "angle": 30.13, "curve": 0.25, "c3": 0.75}, {"time": 0.6833, "angle": -32.6, "curve": 0.25, "c3": 0.75}, - {"time": 0.7833, "angle": 29.93, "curve": 0.25, "c3": 0.75}, {"time": 0.9667, "angle": -31.51, "curve": 0.25, "c3": 0.75}, - {"time": 1.1333, "angle": 27.92, "curve": 0.244, "c3": 0.643, "c4": 0.58}, {"time": 1.25, "angle": 10.51} + {"angle": -13.05, "curve": 0.354, "c2": 0.4, "c3": 0.702, "c4": 0.79}, {"time": 0.0667, "angle": -2.53, "curve": 0.369, "c2": 0.63, "c3": 0.707}, {"time": 0.1}, + {"time": 0.2333, "angle": -35.36, "curve": 0.25, "c3": 0.75}, {"time": 0.3667, "angle": -1.38, "curve": 0.25, "c3": 0.75}, {"time": 0.4, "angle": -24.8, "curve": 0.25, "c3": 0.75}, + {"time": 0.4667, "angle": 38.05, "curve": 0.25, "c3": 0.75}, {"time": 0.6333, "angle": -29.41, "curve": 0.248, "c3": 0.629, "c4": 0.52}, {"time": 0.75, "angle": 13.84} ] }, - "body-fur-2": { + "body-fur-9": { "rotate": [ - {"angle": 15.48, "curve": 0.346, "c2": 0.38, "c3": 0.7, "c4": 0.78}, {"time": 0.0667, "angle": 3.08, "curve": 0.373, "c2": 0.62, "c3": 0.713}, {"time": 0.1, "curve": 0.25, "c3": 0.75}, - {"time": 0.25, "angle": 22.69, "curve": 0.25, "c3": 0.75}, {"time": 0.45, "angle": -25.47, "curve": 0.25, "c3": 0.75}, {"time": 0.55, "angle": 30.13, "curve": 0.25, "c3": 0.75}, - {"time": 0.7167, "angle": -32.6, "curve": 0.25, "c3": 0.75}, {"time": 0.8167, "angle": 29.93, "curve": 0.25, "c3": 0.75}, {"time": 1, "angle": -31.51, "curve": 0.25, "c3": 0.75}, - {"time": 1.1667, "angle": 27.92, "curve": 0.253, "c3": 0.621, "c4": 0.48}, {"time": 1.25, "angle": 13.84} + {"angle": -2.53, "curve": 0.369, "c2": 0.63, "c3": 0.707}, {"time": 0.0333}, {"time": 0.1667, "angle": -35.36, "curve": 0.25, "c3": 0.75}, + {"time": 0.3, "angle": -1.38, "curve": 0.25, "c3": 0.75}, {"time": 0.3333, "angle": -24.8, "curve": 0.25, "c3": 0.75}, {"time": 0.4, "angle": 38.05, "curve": 0.25, "c3": 0.75}, + {"time": 0.5667, "angle": -29.41, "curve": 0.244, "c3": 0.693, "c4": 0.76}, {"time": 0.75, "angle": 6.86} ] }, - "body-fur-3": { + "body-fur-8": { "rotate": [ - {"angle": 5.84, "curve": 0.381, "c2": 0.59, "c3": 0.727}, {"time": 0.05}, {"time": 0.2, "angle": 22.69, "curve": 0.25, "c3": 0.75}, - {"time": 0.4, "angle": -25.47, "curve": 0.25, "c3": 0.75}, {"time": 0.5, "angle": 30.13, "curve": 0.25, "c3": 0.75}, {"time": 0.6667, "angle": -32.6, "curve": 0.25, "c3": 0.75}, - {"time": 0.7667, "angle": 29.93, "curve": 0.25, "c3": 0.75}, {"time": 0.95, "angle": -31.51, "curve": 0.25, "c3": 0.75}, - {"time": 1.1167, "angle": 27.92, "curve": 0.242, "c3": 0.661, "c4": 0.65}, {"time": 1.25, "angle": 5.54} + {"curve": 0.25, "c3": 0.75}, {"time": 0.1333, "angle": -35.36, "curve": 0.25, "c3": 0.75}, {"time": 0.2667, "angle": -1.38, "curve": 0.25, "c3": 0.75}, + {"time": 0.3, "angle": -24.8, "curve": 0.25, "c3": 0.75}, {"time": 0.3667, "angle": 38.05, "curve": 0.25, "c3": 0.75}, {"time": 0.5333, "angle": -29.41, "curve": 0.25, "c3": 0.75}, + {"time": 0.75, "angle": -0.91} ] }, - "body-fur-4": { + "body-fur-7": { "rotate": [ - {"angle": 12.1, "curve": 0.351, "c2": 0.39, "c3": 0.696, "c4": 0.76}, {"time": 0.05, "angle": 3.08, "curve": 0.373, "c2": 0.62, "c3": 0.713}, {"time": 0.0833}, - {"time": 0.2333, "angle": 22.69, "curve": 0.25, "c3": 0.75}, {"time": 0.4333, "angle": -25.47, "curve": 0.25, "c3": 0.75}, {"time": 0.5333, "angle": 30.13, "curve": 0.25, "c3": 0.75}, - {"time": 0.7, "angle": -32.6, "curve": 0.25, "c3": 0.75}, {"time": 0.8, "angle": 29.93, "curve": 0.25, "c3": 0.75}, {"time": 0.9833, "angle": -31.51, "curve": 0.25, "c3": 0.75}, - {"time": 1.15, "angle": 27.92, "curve": 0.247, "c3": 0.63, "c4": 0.52}, {"time": 1.25, "angle": 12.53} + {"angle": -0.77, "curve": 0.355, "c2": 0.65, "c3": 0.689}, {"time": 0.0167, "curve": 0.25, "c3": 0.75}, {"time": 0.15, "angle": -35.36, "curve": 0.25, "c3": 0.75}, + {"time": 0.2833, "angle": -1.38, "curve": 0.25, "c3": 0.75}, {"time": 0.3167, "angle": -24.8, "curve": 0.25, "c3": 0.75}, {"time": 0.3833, "angle": 38.05, "curve": 0.25, "c3": 0.75}, + {"time": 0.55, "angle": -29.41, "curve": 0.246, "c3": 0.719, "c4": 0.87}, {"time": 0.75, "angle": 2.91} + ] + }, + "body-fur-6": { + "rotate": [ + {"angle": -7.28, "curve": 0.352, "c2": 0.4, "c3": 0.689, "c4": 0.75}, {"time": 0.0333, "angle": -2.53, "curve": 0.369, "c2": 0.63, "c3": 0.707}, {"time": 0.0667}, + {"time": 0.2, "angle": -35.36, "curve": 0.25, "c3": 0.75}, {"time": 0.3333, "angle": -1.38, "curve": 0.25, "c3": 0.75}, {"time": 0.3667, "angle": -24.8, "curve": 0.25, "c3": 0.75}, + {"time": 0.4333, "angle": 38.05, "curve": 0.25, "c3": 0.75}, {"time": 0.6, "angle": -29.41, "curve": 0.243, "c3": 0.654, "c4": 0.62}, {"time": 0.75, "angle": 13.33} ] }, "body-fur-5": { "rotate": [ - {"angle": 3.08, "curve": 0.373, "c2": 0.62, "c3": 0.713}, {"time": 0.0333}, {"time": 0.1833, "angle": 22.69, "curve": 0.25, "c3": 0.75}, - {"time": 0.3833, "angle": -25.47, "curve": 0.25, "c3": 0.75}, {"time": 0.4833, "angle": 30.13, "curve": 0.25, "c3": 0.75}, {"time": 0.65, "angle": -32.6, "curve": 0.25, "c3": 0.75}, - {"time": 0.75, "angle": 29.93, "curve": 0.25, "c3": 0.75}, {"time": 0.9333, "angle": -31.51, "curve": 0.25, "c3": 0.75}, - {"time": 1.1, "angle": 27.92, "curve": 0.243, "c3": 0.685, "c4": 0.73}, {"time": 1.25, "angle": 6.86} + {"angle": -2.53, "curve": 0.369, "c2": 0.63, "c3": 0.707}, {"time": 0.0333}, {"time": 0.1667, "angle": -35.36, "curve": 0.25, "c3": 0.75}, + {"time": 0.3, "angle": -1.38, "curve": 0.25, "c3": 0.75}, {"time": 0.3333, "angle": -24.8, "curve": 0.25, "c3": 0.75}, {"time": 0.4, "angle": 38.05, "curve": 0.25, "c3": 0.75}, + {"time": 0.5667, "angle": -29.41, "curve": 0.244, "c3": 0.693, "c4": 0.76}, {"time": 0.75, "angle": 6.86} ] }, - "body-fur-6": { + "body-fur-4": { "rotate": [ - {"angle": 8.81, "curve": 0.35, "c2": 0.39, "c3": 0.689, "c4": 0.75}, {"time": 0.0333, "angle": 3.08, "curve": 0.373, "c2": 0.62, "c3": 0.713}, {"time": 0.0667}, - {"time": 0.2167, "angle": 22.69, "curve": 0.25, "c3": 0.75}, {"time": 0.4167, "angle": -25.47, "curve": 0.25, "c3": 0.75}, {"time": 0.5167, "angle": 30.13, "curve": 0.25, "c3": 0.75}, - {"time": 0.6833, "angle": -32.6, "curve": 0.25, "c3": 0.75}, {"time": 0.7833, "angle": 29.93, "curve": 0.25, "c3": 0.75}, {"time": 0.9667, "angle": -31.51, "curve": 0.25, "c3": 0.75}, - {"time": 1.1333, "angle": 27.92, "curve": 0.244, "c3": 0.643, "c4": 0.58}, {"time": 1.25, "angle": 13.33} + {"angle": -10.1, "curve": 0.355, "c2": 0.41, "c3": 0.697, "c4": 0.77}, {"time": 0.05, "angle": -2.53, "curve": 0.369, "c2": 0.63, "c3": 0.707}, + {"time": 0.0833, "curve": 0.25, "c3": 0.75}, {"time": 0.2167, "angle": -35.36, "curve": 0.25, "c3": 0.75}, {"time": 0.35, "angle": -1.38, "curve": 0.25, "c3": 0.75}, + {"time": 0.3833, "angle": -24.8, "curve": 0.25, "c3": 0.75}, {"time": 0.45, "angle": 38.05, "curve": 0.25, "c3": 0.75}, + {"time": 0.6167, "angle": -29.41, "curve": 0.245, "c3": 0.64, "c4": 0.57}, {"time": 0.75, "angle": 12.53} ] }, - "body-fur-7": { + "body-fur-3": { "rotate": [ - {"angle": 0.98, "curve": 0.358, "c2": 0.65, "c3": 0.693}, {"time": 0.0167, "curve": 0.25, "c3": 0.75}, {"time": 0.1667, "angle": 22.69, "curve": 0.25, "c3": 0.75}, - {"time": 0.3667, "angle": -25.47, "curve": 0.25, "c3": 0.75}, {"time": 0.4667, "angle": 30.13, "curve": 0.25, "c3": 0.75}, {"time": 0.6333, "angle": -32.6, "curve": 0.25, "c3": 0.75}, - {"time": 0.7333, "angle": 29.93, "curve": 0.25, "c3": 0.75}, {"time": 0.9167, "angle": -31.51, "curve": 0.25, "c3": 0.75}, - {"time": 1.0833, "angle": 27.92, "curve": 0.245, "c3": 0.714, "c4": 0.85}, {"time": 1.25, "angle": 2.91} + {"angle": -4.81, "curve": 0.378, "c2": 0.61, "c3": 0.721}, {"time": 0.05}, {"time": 0.1833, "angle": -35.36, "curve": 0.25, "c3": 0.75}, + {"time": 0.3167, "angle": -1.38, "curve": 0.25, "c3": 0.75}, {"time": 0.35, "angle": -24.8, "curve": 0.25, "c3": 0.75}, {"time": 0.4167, "angle": 38.05, "curve": 0.25, "c3": 0.75}, + {"time": 0.5833, "angle": -29.41, "curve": 0.242, "c3": 0.671, "c4": 0.68}, {"time": 0.75, "angle": 5.54} ] }, - "body-fur-9": { + "body-fur-1": { "rotate": [ - {"angle": 12.1, "curve": 0.351, "c2": 0.39, "c3": 0.696, "c4": 0.76}, {"time": 0.05, "angle": 3.08, "curve": 0.373, "c2": 0.62, "c3": 0.713}, {"time": 0.0833}, - {"time": 0.2333, "angle": 22.69, "curve": 0.25, "c3": 0.75}, {"time": 0.4333, "angle": -25.47, "curve": 0.25, "c3": 0.75}, {"time": 0.5333, "angle": 30.13, "curve": 0.25, "c3": 0.75}, - {"time": 0.7, "angle": -32.6, "curve": 0.25, "c3": 0.75}, {"time": 0.8, "angle": 29.93, "curve": 0.25, "c3": 0.75}, {"time": 0.9833, "angle": -31.51, "curve": 0.25, "c3": 0.75}, - {"time": 1.15, "angle": 27.92, "curve": 0.247, "c3": 0.63, "c4": 0.52}, {"time": 1.25, "angle": 6.86} + {"angle": -7.41, "curve": 0.382, "c2": 0.58, "c3": 0.732}, {"time": 0.0667}, {"time": 0.2, "angle": -35.36, "curve": 0.25, "c3": 0.75}, + {"time": 0.3333, "angle": -1.38, "curve": 0.25, "c3": 0.75}, {"time": 0.3667, "angle": -24.8, "curve": 0.25, "c3": 0.75}, {"time": 0.4333, "angle": 38.05, "curve": 0.25, "c3": 0.75}, + {"time": 0.6, "angle": -29.41, "curve": 0.243, "c3": 0.654, "c4": 0.62}, {"time": 0.75, "angle": 10.51} ] } }, - "events": [{"time": 0.3333, "name": "start-attack"}, {"time": 0.3667, "name": "hit"}, {"time": 0.5, "name": "hit"}, {"time": 0.6333, "name": "hit"}, {"time": 0.7667, "name": "hit"}] + "events": [{"time": 0.3, "name": "start-attack"}] }, - "520076436": { + "229216978": { "slots": { - "eyes": {"attachment": [{"time": 1, "name": "eyes-shut"}, {"time": 1.0833, "name": "eyes"}]}, - "mouth-accessory": { - "color": [ - {"time": 0.5833, "color": "ffffff00", "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.6667, "color": "ffffffff", "curve": "stepped"}, - {"time": 0.9167, "color": "ffffffff", "curve": 0.306, "c4": 0.8}, {"time": 1, "color": "ffffff00"} - ], - "attachment": [{"time": 0.5833, "name": "mouth-accessory"}, {"time": 1, "name": null}] - } + "eyes": {"attachment": [{"time": 0.05, "name": "eyes-angry"}, {"time": 1.2333, "name": "eyes"}]}, + "mouth": {"attachment": [{"time": 0.05, "name": "mouth-bite"}, {"time": 0.4667, "name": "mouth-open"}, {"time": 1.0833, "name": "mouth-bite"}, {"time": 1.2333, "name": "mouth"}]} }, "bones": { "@pivot-back": { "rotate": [ - {"curve": 0.313, "c3": 0.699}, {"time": 0.3333, "angle": 2.04, "curve": 0.313, "c3": 0.699}, {"time": 0.6667, "curve": 0.313, "c3": 0.699}, - {"time": 1, "angle": 1.79, "curve": 0.313, "c3": 0.699}, {"time": 1.3333} - ], - "translate": [ - {"curve": 0.313, "c3": 0.699}, {"time": 0.3333, "y": -6.53, "curve": 0.313, "c3": 0.699}, {"time": 0.6667, "curve": 0.313, "c3": 0.699}, - {"time": 1, "y": -8.86, "curve": 0.313, "c3": 0.699}, {"time": 1.3333} + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "angle": 4, "curve": 0, "c2": 0.6, "c3": 0.237}, {"time": 0.4167, "angle": -8.88, "curve": 0, "c2": 0.6, "c3": 0, "c4": 1.4}, + {"time": 1, "angle": 8.17, "curve": 0.701, "c4": 0.5}, {"time": 1.2333, "angle": 5, "curve": 0.461, "c3": 0.543}, {"time": 1.3333} ], - "scale": [{"curve": 0.313, "c3": 0.699}, {"time": 0.6667, "y": 0.99, "curve": 0.313, "c3": 0.699}, {"time": 1.3333}] - }, - "@leg-front-right": { "translate": [ - {"curve": 0.313, "c3": 0.699}, {"time": 0.3333, "x": 0.02, "y": -16.89, "curve": 0.313, "c3": 0.699}, {"time": 0.6667, "x": -0.04, "y": 2.46, "curve": 0.313, "c3": 0.699}, - {"time": 1, "x": -0.02, "y": -18.9, "curve": 0.313, "c3": 0.699}, {"time": 1.3333} + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": 33.65, "y": -5, "curve": 0, "c2": 0.6, "c3": 0.237}, + {"time": 0.4167, "x": -62.54, "y": 309.16, "curve": 0, "c2": 0.6, "c3": 0, "c4": 1.4}, {"time": 1, "x": 12.32, "y": 268.04, "curve": 0.701, "c4": 0.5}, {"time": 1.2333} ] }, - "@leg-front-left": { + "@shadow": { "translate": [ - {"curve": 0.313, "c3": 0.699}, {"time": 0.3333, "x": 0.22, "y": -5.13, "curve": 0.313, "c3": 0.699}, {"time": 0.6667, "x": -0.03, "y": 1.81, "curve": 0.313, "c3": 0.699}, - {"time": 1, "x": 0.2, "y": -7.06, "curve": 0.313, "c3": 0.699}, {"time": 1.3333} + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": 24.43, "curve": 0, "c2": 0.6, "c3": 0.237}, {"time": 0.4167, "x": -70.38, "curve": 0, "c2": 0.6, "c3": 0, "c4": 1.4}, + {"time": 1, "x": 5.15, "curve": 0.701, "c4": 0.5}, {"time": 1.2333, "x": -8.95, "curve": 0.461, "c3": 0.543}, {"time": 1.3333} ], "scale": [ - {"curve": 0.313, "c3": 0.699}, {"time": 0.3333, "x": 0.905, "curve": 0.313, "c3": 0.699}, {"time": 0.6667, "curve": 0.313, "c3": 0.699}, - {"time": 1, "x": 0.905, "curve": 0.313, "c3": 0.699}, {"time": 1.3333} + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": 1.08, "y": 1.08, "curve": 0, "c2": 0.6, "c3": 0.237}, + {"time": 0.4167, "x": 0.85, "y": 0.85, "curve": 0, "c2": 0.6, "c3": 0, "c4": 1.4}, {"time": 1, "x": 0.9, "y": 0.9, "curve": 0.701, "c4": 0.5}, + {"time": 1.2333, "x": 1.1, "y": 1.1, "curve": 0.461, "c3": 0.543}, {"time": 1.3333} ] }, - "@leg-back-left": { + "@leg-front-left": { "translate": [ - {"curve": 0.313, "c3": 0.699}, {"time": 0.3333, "x": 0.22, "y": -4.11, "curve": 0.313, "c3": 0.699}, {"time": 0.6667, "x": -0.03, "y": 1.69, "curve": 0.313, "c3": 0.699}, - {"time": 1, "x": 0.2, "y": -5.68, "curve": 0.313, "c3": 0.699}, {"time": 1.3333} - ], - "scale": [ - {"curve": 0.313, "c3": 0.699}, {"time": 0.3333, "x": 0.943, "curve": 0.313, "c3": 0.699}, {"time": 0.6667, "curve": 0.313, "c3": 0.699}, - {"time": 1, "x": 0.943, "curve": 0.313, "c3": 0.699}, {"time": 1.3333} + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": -0.29, "y": -5.47, "curve": 0, "c2": 0.6, "c3": 0.237}, {"time": 0.4167, "curve": "stepped"}, + {"time": 1, "curve": 0.701, "c4": 0.5}, {"time": 1.2333, "x": -0.95, "y": -14.45, "curve": 0.461, "c3": 0.543}, {"time": 1.3333} ] }, - "@pivot-main": { - "scale": [ - {"curve": 0.313, "c3": 0.699}, {"time": 0.3333, "y": 0.98, "curve": 0.313, "c3": 0.699}, {"time": 0.6667, "curve": 0.313, "c3": 0.699}, - {"time": 1, "y": 0.98, "curve": 0.313, "c3": 0.699}, {"time": 1.3333} + "@leg-front-right": { + "translate": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": -0.29, "y": -5.47, "curve": 0, "c2": 0.6, "c3": 0.237}, {"time": 0.4167, "curve": "stepped"}, + {"time": 1, "curve": 0.701, "c4": 0.5}, {"time": 1.2333, "x": -1.66, "y": -25.29, "curve": 0.461, "c3": 0.543}, {"time": 1.3333} ] }, "tail": { - "rotate": [{"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "angle": 4.54, "curve": 0.313, "c3": 0.699}, {"time": 1, "angle": -9.06, "curve": 0.313, "c3": 0.699}, {"time": 1.3333}] - }, - "back": { - "rotate": [{"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "angle": -4.27, "curve": 0.313, "c3": 0.699}, {"time": 1, "angle": 2.83, "curve": 0.313, "c3": 0.699}, {"time": 1.3333}] + "rotate": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "angle": 17.93, "curve": 0, "c2": 0.6, "c3": 0.237}, {"time": 0.4167, "angle": -15.3, "curve": 0, "c2": 0.6, "c3": 0, "c4": 1.4}, + {"time": 1, "angle": 24.81, "curve": 0.701, "c4": 0.5}, {"time": 1.2333, "angle": -15.84, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 1.3333} + ] }, - "ear-right": {"rotate": [{"curve": 0.461, "c3": 0.543}, {"time": 0.6667, "angle": -3.91, "curve": 0.461, "c3": 0.543}, {"time": 1.3333}]}, - "ear-left": {"rotate": [{"curve": 0.461, "c3": 0.543}, {"time": 0.6667, "angle": -3.92, "curve": 0.461, "c3": 0.543}, {"time": 1.3333}]}, - "@shadow": { - "scale": [ - {"curve": 0.306, "c3": 0.695}, {"time": 0.3333, "x": 1.05, "y": 1.05, "curve": 0.306, "c3": 0.695}, {"time": 0.6667, "curve": 0.306, "c3": 0.695}, - {"time": 1, "x": 1.05, "y": 1.05, "curve": 0.306, "c3": 0.695}, {"time": 1.3333} + "body-fur-8": { + "rotate": [ + {"angle": -7.18, "curve": 0.375, "c2": 0.5, "c3": 0.75}, {"time": 0.05, "angle": -20.3, "curve": 0.25, "c3": 0.75}, {"time": 0.2167, "angle": 16.54, "curve": 0.25, "c3": 0.75}, + {"time": 0.3833, "angle": -24.71, "curve": 0.25, "c3": 0.75}, {"time": 0.55, "angle": 30.8, "curve": 0.25, "c3": 0.75}, {"time": 0.6833, "angle": -27.37, "curve": 0.25, "c3": 0.75}, + {"time": 0.8167, "angle": 14.31, "curve": 0.25, "c3": 0.75}, {"time": 0.95, "angle": -30.25, "curve": 0.25, "c3": 0.75}, {"time": 1.0667, "angle": 11.28, "curve": 0.25, "c3": 0.75}, + {"time": 1.1833, "angle": -25.35, "curve": 0.25, "c3": 0.75}, {"time": 1.2833, "angle": 5.94, "curve": 0.25, "c3": 0.625, "c4": 0.5}, {"time": 1.3333, "angle": -0.91} ] }, - "mouth-accessory": { - "rotate": [{"time": 0.5833}, {"time": 1, "angle": -120}], - "scale": [{"time": 0.5667}, {"time": 0.5833, "x": 0.6, "y": 0.6}, {"time": 0.8}, {"time": 1, "x": 0.6, "y": 0.6}, {"time": 1.0167}] + "body-fur-7": { + "rotate": [ + {"angle": -41.06, "curve": 0.371, "c2": 0.62, "c3": 0.71}, {"time": 0.0167, "angle": -43.59, "curve": 0.25, "c3": 0.75}, {"time": 0.1833, "angle": -6.75, "curve": 0.25, "c3": 0.75}, + {"time": 0.35, "angle": -48.01, "curve": 0.25, "c3": 0.75}, {"time": 0.5167, "angle": 7.51, "curve": 0.25, "c3": 0.75}, {"time": 0.65, "angle": -50.66, "curve": 0.25, "c3": 0.75}, + {"time": 0.7833, "angle": -8.99, "curve": 0.25, "c3": 0.75}, {"time": 0.9167, "angle": -53.55, "curve": 0.25, "c3": 0.75}, {"time": 1.0333, "angle": -12.01, "curve": 0.25, "c3": 0.75}, + {"time": 1.15, "angle": -48.65, "curve": 0.25, "c3": 0.75}, {"time": 1.25, "angle": -17.36, "curve": 0.243, "c3": 0.689, "c4": 0.75}, {"time": 1.3333, "angle": 2.91} + ] }, "body-fur-1": { "rotate": [ - {"angle": 10.51, "curve": 0.333, "c2": 0.33, "c3": 0.758}, {"time": 0.25, "angle": -5.73, "curve": 0.25, "c3": 0.75}, - {"time": 0.5833, "angle": 14.18, "curve": 0.276, "c3": 0.621, "c4": 0.4}, {"time": 0.6667, "angle": 10.51, "curve": 0.333, "c2": 0.33, "c3": 0.758}, - {"time": 0.9167, "angle": -5.73, "curve": 0.25, "c3": 0.75}, {"time": 1.25, "angle": 14.18, "curve": 0.276, "c3": 0.621, "c4": 0.4}, {"time": 1.3333, "angle": 10.51} + {"angle": -1.51, "curve": 0.351, "c2": 0.4, "c3": 0.757}, {"time": 0.0667, "angle": -20.3, "curve": 0.25, "c3": 0.75}, {"time": 0.2333, "angle": 16.54, "curve": 0.25, "c3": 0.75}, + {"time": 0.4, "angle": -24.71, "curve": 0.25, "c3": 0.75}, {"time": 0.5667, "angle": 30.8, "curve": 0.25, "c3": 0.75}, {"time": 0.7, "angle": -27.37, "curve": 0.25, "c3": 0.75}, + {"time": 0.8333, "angle": 14.31, "curve": 0.25, "c3": 0.75}, {"time": 0.9667, "angle": -30.25, "curve": 0.25, "c3": 0.75}, {"time": 1.0833, "angle": 11.28, "curve": 0.25, "c3": 0.75}, + {"time": 1.2, "angle": -25.35, "curve": 0.25, "c3": 0.75}, {"time": 1.3, "angle": 5.94, "curve": 0.265, "c3": 0.618, "c4": 0.43}, {"time": 1.3333, "angle": 10.51} ] }, "body-fur-2": { "rotate": [ - {"angle": 13.84, "curve": 0.348, "c2": 0.66, "c3": 0.682}, {"time": 0.0167, "angle": 14.18, "curve": 0.25, "c3": 0.75}, - {"time": 0.35, "angle": -5.73, "curve": 0.247, "c3": 0.729, "c4": 0.91}, {"time": 0.6667, "angle": 13.84, "curve": 0.348, "c2": 0.66, "c3": 0.682}, - {"time": 0.6833, "angle": 14.18, "curve": 0.243, "c3": 0.655, "c4": 0.63}, {"time": 0.9167, "angle": -0.91, "curve": 0.382, "c2": 0.58, "c3": 0.731}, - {"time": 1.0167, "angle": -5.73, "curve": 0.247, "c3": 0.729, "c4": 0.91}, {"time": 1.3333, "angle": 13.84} + {"angle": 5.94, "curve": 0.243, "c3": 0.649, "c4": 0.6}, {"time": 0.0667, "angle": -12.85, "curve": 0.382, "c2": 0.57, "c3": 0.735}, {"time": 0.1, "angle": -20.3}, + {"time": 0.2667, "angle": 16.54, "curve": 0.25, "c3": 0.75}, {"time": 0.4333, "angle": -24.71, "curve": 0.25, "c3": 0.75}, {"time": 0.6, "angle": 30.8, "curve": 0.25, "c3": 0.75}, + {"time": 0.7333, "angle": -27.37, "curve": 0.25, "c3": 0.75}, {"time": 0.8667, "angle": 14.31, "curve": 0.25, "c3": 0.75}, {"time": 1, "angle": -30.25, "curve": 0.25, "c3": 0.75}, + {"time": 1.1167, "angle": 11.28, "curve": 0.25, "c3": 0.75}, {"time": 1.2333, "angle": -25.35, "curve": 0.25, "c3": 0.75}, {"time": 1.3333, "angle": 13.84} ] }, "body-fur-3": { "rotate": [ - {"angle": 5.54, "curve": 0.37, "c2": 0.47, "c3": 0.753}, {"time": 0.1833, "angle": -5.73, "curve": 0.25, "c3": 0.75}, - {"time": 0.5167, "angle": 14.18, "curve": 0.253, "c3": 0.621, "c4": 0.48}, {"time": 0.6667, "angle": 5.54, "curve": 0.37, "c2": 0.47, "c3": 0.753}, - {"time": 0.85, "angle": -5.73, "curve": 0.25, "c3": 0.75}, {"time": 1.1833, "angle": 14.18, "curve": 0.253, "c3": 0.621, "c4": 0.48}, {"time": 1.3333, "angle": 5.54} + {"angle": -7.18, "curve": 0.375, "c2": 0.5, "c3": 0.75}, {"time": 0.05, "angle": -20.3}, {"time": 0.2167, "angle": 16.54, "curve": 0.25, "c3": 0.75}, + {"time": 0.3833, "angle": -24.71, "curve": 0.25, "c3": 0.75}, {"time": 0.55, "angle": 30.8, "curve": 0.25, "c3": 0.75}, {"time": 0.6833, "angle": -27.37, "curve": 0.25, "c3": 0.75}, + {"time": 0.8167, "angle": 14.31, "curve": 0.25, "c3": 0.75}, {"time": 0.95, "angle": -30.25, "curve": 0.25, "c3": 0.75}, {"time": 1.0667, "angle": 11.28, "curve": 0.25, "c3": 0.75}, + {"time": 1.1833, "angle": -25.35, "curve": 0.25, "c3": 0.75}, {"time": 1.2833, "angle": 5.94, "curve": 0.25, "c3": 0.625, "c4": 0.5}, {"time": 1.3333, "angle": 5.54} ] }, "body-fur-4": { "rotate": [ - {"angle": 12.53, "curve": 0.306, "c2": 0.23, "c3": 0.756}, {"time": 0.2833, "angle": -5.73, "curve": 0.25, "c3": 0.75}, - {"time": 0.6167, "angle": 14.18, "curve": 0.294, "c3": 0.631, "c4": 0.37}, {"time": 0.6667, "angle": 12.53, "curve": 0.291, "c2": 0.19, "c3": 0.671, "c4": 0.68}, - {"time": 0.85, "angle": -0.91, "curve": 0.382, "c2": 0.58, "c3": 0.731}, {"time": 0.95, "angle": -5.73, "curve": 0.25, "c3": 0.75}, - {"time": 1.2833, "angle": 14.18, "curve": 0.294, "c3": 0.631, "c4": 0.37}, {"time": 1.3333, "angle": 12.53} + {"angle": 3.4, "curve": 0.295, "c2": 0.21, "c3": 0.667, "c4": 0.67}, {"time": 0.05, "angle": -12.85, "curve": 0.382, "c2": 0.57, "c3": 0.735}, + {"time": 0.0833, "angle": -20.3, "curve": 0.25, "c3": 0.75}, {"time": 0.25, "angle": 16.54, "curve": 0.25, "c3": 0.75}, {"time": 0.4167, "angle": -24.71, "curve": 0.25, "c3": 0.75}, + {"time": 0.5833, "angle": 30.8, "curve": 0.25, "c3": 0.75}, {"time": 0.7167, "angle": -27.37, "curve": 0.25, "c3": 0.75}, {"time": 0.85, "angle": 14.31, "curve": 0.25, "c3": 0.75}, + {"time": 0.9833, "angle": -30.25, "curve": 0.25, "c3": 0.75}, {"time": 1.1, "angle": 11.28, "curve": 0.25, "c3": 0.75}, {"time": 1.2167, "angle": -25.35, "curve": 0.25, "c3": 0.75}, + {"time": 1.3167, "angle": 5.94, "curve": 0.29, "c3": 0.629, "c4": 0.37}, {"time": 1.3333, "angle": 12.53} ] }, "body-fur-5": { "rotate": [ - {"angle": 6.86, "curve": 0.363, "c2": 0.44, "c3": 0.755}, {"time": 0.2, "angle": -5.73, "curve": 0.25, "c3": 0.75}, - {"time": 0.5333, "angle": 14.18, "curve": 0.258, "c3": 0.619, "c4": 0.45}, {"time": 0.6667, "angle": 6.86, "curve": 0.363, "c2": 0.44, "c3": 0.755}, - {"time": 0.8667, "angle": -5.73, "curve": 0.25, "c3": 0.75}, {"time": 1.2, "angle": 14.18, "curve": 0.258, "c3": 0.619, "c4": 0.45}, {"time": 1.3333, "angle": 6.86} + {"angle": -12.85, "curve": 0.382, "c2": 0.57, "c3": 0.735}, {"time": 0.0333, "angle": -20.3}, {"time": 0.2, "angle": 16.54, "curve": 0.25, "c3": 0.75}, + {"time": 0.3667, "angle": -24.71, "curve": 0.25, "c3": 0.75}, {"time": 0.5333, "angle": 30.8, "curve": 0.25, "c3": 0.75}, {"time": 0.6667, "angle": -27.37, "curve": 0.25, "c3": 0.75}, + {"time": 0.8, "angle": 14.31, "curve": 0.25, "c3": 0.75}, {"time": 0.9333, "angle": -30.25, "curve": 0.25, "c3": 0.75}, {"time": 1.05, "angle": 11.28, "curve": 0.25, "c3": 0.75}, + {"time": 1.1667, "angle": -25.35, "curve": 0.25, "c3": 0.75}, {"time": 1.2667, "angle": 5.94, "curve": 0.243, "c3": 0.649, "c4": 0.6}, {"time": 1.3333, "angle": 6.86} ] }, "body-fur-6": { "rotate": [ - {"angle": 13.33, "curve": 0.289, "c2": 0.17, "c3": 0.755}, {"time": 0.3, "angle": -5.73, "curve": 0.25, "c3": 0.75}, - {"time": 0.6333, "angle": 14.18, "curve": 0.305, "c3": 0.64, "c4": 0.36}, {"time": 0.6667, "angle": 13.34, "curve": 0.277, "c2": 0.14, "c3": 0.667, "c4": 0.67}, - {"time": 0.8667, "angle": -0.91, "curve": 0.382, "c2": 0.58, "c3": 0.731}, {"time": 0.9667, "angle": -5.73, "curve": 0.25, "c3": 0.75}, - {"time": 1.3, "angle": 14.18, "curve": 0.305, "c3": 0.64, "c4": 0.36}, {"time": 1.3333, "angle": 13.33} - ] - }, - "body-fur-7": { - "rotate": [ - {"angle": 2.91, "curve": 0.379, "c2": 0.52, "c3": 0.747}, {"time": 0.15, "angle": -5.73, "curve": 0.25, "c3": 0.75}, - {"time": 0.4833, "angle": 14.18, "curve": 0.247, "c3": 0.63, "c4": 0.53}, {"time": 0.6667, "angle": 2.91, "curve": 0.379, "c2": 0.52, "c3": 0.747}, - {"time": 0.8167, "angle": -5.73, "curve": 0.25, "c3": 0.75}, {"time": 1.15, "angle": 14.18, "curve": 0.247, "c3": 0.63, "c4": 0.53}, {"time": 1.3333, "angle": 2.91} - ] - }, - "body-fur-8": { - "rotate": [ - {"angle": -0.91, "curve": 0.382, "c2": 0.58, "c3": 0.731}, {"time": 0.1, "angle": -5.73, "curve": 0.25, "c3": 0.75}, - {"time": 0.4333, "angle": 14.18, "curve": 0.243, "c3": 0.655, "c4": 0.63}, {"time": 0.6667, "angle": -0.91, "curve": 0.382, "c2": 0.58, "c3": 0.731}, - {"time": 0.7667, "angle": -5.73, "curve": 0.25, "c3": 0.75}, {"time": 1.1, "angle": 14.18, "curve": 0.243, "c3": 0.655, "c4": 0.63}, {"time": 1.3333, "angle": -0.91} + {"angle": -1.53, "curve": 0.325, "c2": 0.31, "c3": 0.675, "c4": 0.69}, {"time": 0.0333, "angle": -12.85, "curve": 0.382, "c2": 0.57, "c3": 0.735}, {"time": 0.0667, "angle": -20.3}, + {"time": 0.2333, "angle": 16.54, "curve": 0.25, "c3": 0.75}, {"time": 0.4, "angle": -24.71, "curve": 0.25, "c3": 0.75}, {"time": 0.5667, "angle": 30.8, "curve": 0.25, "c3": 0.75}, + {"time": 0.7, "angle": -27.37, "curve": 0.25, "c3": 0.75}, {"time": 0.8333, "angle": 14.31, "curve": 0.25, "c3": 0.75}, {"time": 0.9667, "angle": -30.25, "curve": 0.25, "c3": 0.75}, + {"time": 1.0833, "angle": 11.28, "curve": 0.25, "c3": 0.75}, {"time": 1.2, "angle": -25.35, "curve": 0.25, "c3": 0.75}, + {"time": 1.3, "angle": 5.94, "curve": 0.265, "c3": 0.618, "c4": 0.43}, {"time": 1.3333, "angle": 13.33} ] }, "body-fur-9": { "rotate": [ - {"angle": 6.86, "curve": 0.363, "c2": 0.44, "c3": 0.755}, {"time": 0.2, "angle": -5.73, "curve": 0.25, "c3": 0.75}, - {"time": 0.5333, "angle": 14.18, "curve": 0.258, "c3": 0.619, "c4": 0.45}, {"time": 0.6667, "angle": 6.8, "curve": 0.333, "c2": 0.33, "c3": 0.68, "c4": 0.71}, - {"time": 0.7667, "angle": -0.91, "curve": 0.382, "c2": 0.58, "c3": 0.731}, {"time": 0.8667, "angle": -5.73, "curve": 0.25, "c3": 0.75}, - {"time": 1.2, "angle": 14.18, "curve": 0.258, "c3": 0.619, "c4": 0.45}, {"time": 1.3333, "angle": 6.86} + {"angle": 3.4, "curve": 0.295, "c2": 0.21, "c3": 0.667, "c4": 0.67}, {"time": 0.05, "angle": -12.85, "curve": 0.382, "c2": 0.57, "c3": 0.735}, {"time": 0.0833, "angle": -20.3}, + {"time": 0.25, "angle": 16.54, "curve": 0.25, "c3": 0.75}, {"time": 0.4167, "angle": -24.71, "curve": 0.25, "c3": 0.75}, {"time": 0.5833, "angle": 30.8, "curve": 0.25, "c3": 0.75}, + {"time": 0.7167, "angle": -27.37, "curve": 0.25, "c3": 0.75}, {"time": 0.85, "angle": 14.31, "curve": 0.25, "c3": 0.75}, {"time": 0.9833, "angle": -30.25, "curve": 0.25, "c3": 0.75}, + {"time": 1.1, "angle": 11.28, "curve": 0.25, "c3": 0.75}, {"time": 1.2167, "angle": -25.35, "curve": 0.25, "c3": 0.75}, + {"time": 1.3167, "angle": 5.94, "curve": 0.29, "c3": 0.629, "c4": 0.37}, {"time": 1.3333, "angle": 6.86} ] } - } + }, + "events": [{"time": 0.4667, "name": "start-attack"}, {"time": 0.7, "name": "start-attack"}, {"time": 0.9333, "name": "start-attack"}] }, - "1326541922": { + "3667073362": { "slots": { - "eyes": {"attachment": [{"time": 0.0833, "name": "eyes-shut"}, {"time": 0.1667, "name": "eyes-angry"}, {"time": 0.5833, "name": "eyes-shut"}, {"time": 0.6667, "name": "eyes"}]}, - "mouth": {"attachment": [{"time": 0.0833, "name": "mouth-bite"}, {"time": 0.3667, "name": "mouth-open"}, {"time": 0.5833, "name": "mouth"}]} + "eyes": {"attachment": [{"time": 0.0167, "name": "eyes-angry"}, {"time": 0.75, "name": "eyes-shut"}, {"time": 0.8333, "name": "eyes"}]}, + "leg-back-left": {"attachment": [{"time": 0.35, "name": "mystic-leg-back-left-long"}, {"time": 0.5833, "name": "mystic-leg-back-left"}]}, + "mouth": {"attachment": [{"time": 0.0167, "name": "mouth-bite"}, {"time": 0.2667, "name": "mouth-open"}, {"time": 0.5833, "name": "mouth-bite"}, {"time": 0.8333, "name": "mouth"}]} }, "bones": { "@pivot-back": { "rotate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.15, "angle": 3.67, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.3333, "angle": -14.29, "curve": 0.854, "c4": 0.1}, - {"time": 0.3667, "angle": 15.82}, {"time": 0.45, "angle": 16.67, "curve": 0.315, "c4": 0.8}, {"time": 0.5667, "angle": 4.4, "curve": 0, "c2": 0.1, "c3": 0.85}, - {"time": 0.6333, "angle": 6.79, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.8333} + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "angle": -3.92, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "angle": 2.51, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.3333, "angle": -6, "curve": "stepped"}, {"time": 0.35, "angle": -16}, {"time": 0.5667, "angle": -16.5, "curve": "stepped"}, {"time": 0.5833, "curve": 0.313, "c3": 0.699}, + {"time": 0.75, "angle": 6, "curve": 0.313, "c3": 0.699}, {"time": 0.9167} ], "translate": [ - {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.2167, "x": 8.02, "curve": 0, "c2": 0.4, "c3": 0.383}, {"time": 0.3333, "x": -54.3, "y": 61.69, "curve": 0.854, "c4": 0.1}, - {"time": 0.3667, "x": -60.41, "y": 130.13}, {"time": 0.45, "x": -60.41, "y": 130.01, "curve": 0.315, "c4": 0.8}, {"time": 0.5667} - ] + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "x": 71.93, "y": -12.95, "curve": "stepped"}, {"time": 0.25, "x": 71.93, "y": -12.95, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.3333, "x": -135.5, "curve": "stepped"}, {"time": 0.35, "x": -560.54, "y": 85.29}, {"time": 0.5667, "x": -562.89, "y": 81.57, "curve": "stepped"}, + {"time": 0.5833, "x": -151.24, "curve": 0.313, "c3": 0.699}, {"time": 0.75, "x": -151.24, "y": 4.06, "curve": 0.313, "c3": 0.699}, {"time": 0.9167} + ], + "scale": [{"time": 0.3333, "curve": "stepped"}, {"time": 0.35, "x": -1, "curve": "stepped"}, {"time": 0.5667, "x": -1, "curve": "stepped"}, {"time": 0.5833}] }, - "@leg-front-right": { + "@shadow": { "translate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.2167, "x": -18.54, "y": -11.57}, {"time": 0.25, "x": -23.07, "y": 10.08, "curve": 0, "c2": 0.4, "c3": 0.383}, - {"time": 0.3333, "x": 29.92, "y": -4.24, "curve": 0.854, "c4": 0.1}, {"time": 0.3667, "x": 22.95, "y": 2.68, "curve": "stepped"}, - {"time": 0.45, "x": 22.95, "y": 2.68, "curve": 0.157, "c2": 0.33, "c3": 0.727}, {"time": 0.5333, "x": 29.92, "y": -4.24, "curve": 0.779, "c4": 0.4}, - {"time": 0.5667, "x": -1.45, "y": -24.11, "curve": "stepped"}, {"time": 0.6333, "x": -1.45, "y": -24.11, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.6667} + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 61.96, "curve": "stepped"}, {"time": 0.25, "x": 61.96, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.3333, "x": -143.36, "curve": "stepped"}, {"time": 0.35, "x": -143.36}, {"time": 0.5667, "x": -157.56, "curve": "stepped"}, {"time": 0.5833, "x": -161.35, "curve": "stepped"}, + {"time": 0.75, "x": -161.35, "curve": 0.313, "c3": 0.699}, {"time": 0.9167} ], "scale": [ - {"time": 0.2, "curve": 0.315, "c4": 0.8}, {"time": 0.25, "x": 1.5, "curve": 0, "c2": 0.3, "c3": 0.539}, {"time": 0.3333, "curve": 0.854, "c4": 0.1}, {"time": 0.3667, "x": 1.5}, - {"time": 0.45, "x": 1.51, "curve": 0.157, "c2": 0.33, "c3": 0.727}, {"time": 0.4833} + {"time": 0.0833, "curve": 0, "c2": 0.26, "c3": 0.369, "c4": 0.62}, {"time": 0.25, "x": 1.06, "y": 1.06, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "curve": "stepped"}, + {"time": 0.35}, {"time": 0.5667, "x": 1.08, "y": 1.08, "curve": "stepped"}, {"time": 0.5833, "curve": 0.313, "c3": 0.699}, + {"time": 0.75, "x": 1.08, "y": 1.08, "curve": 0.313, "c3": 0.699}, {"time": 0.9167} ] }, - "@leg-front-left": { + "leg-back-left-IK": { "translate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.2167, "x": -6.84, "y": -9.77, "curve": "stepped"}, {"time": 0.5667, "x": -6.84, "y": -9.77, "curve": 0, "c2": 0.1, "c3": 0.85}, - {"time": 0.6333, "x": -6.29, "y": -18.69, "curve": 0, "c2": 0.23, "c3": 0.365, "c4": 0.58}, {"time": 0.6667, "x": -3.64, "y": -2.46, "curve": 0.177, "c2": 0.35, "c3": 0.731}, - {"time": 0.8333} + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.1333, "x": 80.9, "curve": 0.161, "c3": 0.854}, {"time": 0.25, "x": 62.82, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.3333, "x": -99.34, "y": 18.56, "curve": "stepped"}, {"time": 0.35, "x": -653.9, "y": 153.81}, {"time": 0.5667, "x": -653.9, "y": 167.85, "curve": "stepped"}, + {"time": 0.5833, "x": -134.74, "curve": "stepped"}, {"time": 0.75, "x": -134.74, "curve": 0.313, "c3": 0.699}, {"time": 0.9167} ] }, - "@leg-back-left": { + "leg-front-right-IK": { "translate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.2167, "x": -0.11, "y": -2.73, "curve": "stepped"}, {"time": 0.5667, "x": -0.11, "y": -2.73, "curve": 0, "c2": 0.1, "c3": 0.85}, - {"time": 0.6333, "x": -0.46, "y": -6.19, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.8333} + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 22.35, "curve": 0.306, "c3": 0.695}, {"time": 0.25, "x": 42.9, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.3333, "x": -131.73, "y": 44.58, "curve": "stepped"}, {"time": 0.35, "x": 244.36, "y": -4.92, "curve": 0.31, "c4": 0.8}, + {"time": 0.5667, "x": 247.43, "y": -1.85, "curve": "stepped"}, {"time": 0.5833, "x": -180.48, "curve": "stepped"}, {"time": 0.75, "x": -180.48, "curve": 0.313, "c3": 0.699}, + {"time": 0.9167} ] }, - "@pivot-main": { + "leg-front-left-IK": { "translate": [ - {"time": 0.15, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "x": -73.35, "y": 43, "curve": "stepped"}, {"time": 0.45, "x": -73.35, "y": 43, "curve": 0.315, "c4": 0.8}, - {"time": 0.5667, "x": -146.44, "curve": "stepped"}, {"time": 0.6333, "x": -146.44, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.7333, "x": -45.61, "y": 50.15, "curve": 0.315, "c4": 0.8}, {"time": 0.8333} - ], - "scale": [{"time": 0.5667, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.6333, "y": 0.98, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.7333}] + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "x": 40.76, "y": 5.08, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "x": 49, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.3333, "x": -180.92, "y": 40.32, "curve": "stepped"}, {"time": 0.35, "x": -197.17}, {"time": 0.5667, "x": -230.7, "y": 4.81, "curve": "stepped"}, + {"time": 0.5833, "x": -180.48, "curve": "stepped"}, {"time": 0.75, "x": -180.48, "curve": 0.313, "c3": 0.699}, {"time": 0.9167} + ] }, - "leg-front-right-IK": { + "@leg-front-left": { "translate": [ - {"time": 0.15, "curve": 0, "c2": 0.18, "c3": 0.416, "c4": 0.58}, {"time": 0.2167, "x": 49.59, "y": 35.17}, {"time": 0.25, "x": -2.16, "y": 99.87, "curve": 0, "c2": 0.6, "c3": 0.237}, - {"time": 0.3333, "x": -158.6, "y": 254.45, "curve": 0.854, "c4": 0.1}, {"time": 0.3667, "x": -48.06, "y": 31.6}, {"time": 0.45, "x": -24.61, "y": 31.6, "curve": 0.315, "c4": 0.8}, - {"time": 0.5667, "curve": "stepped"}, {"time": 0.6333, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.6667, "x": -14.68, "y": -19.57, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.8333} + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "x": -2.9, "y": -1.1, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.25, "x": -0.62, "y": -3.44, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "x": -1, "y": -5.53, "curve": "stepped"}, {"time": 0.35, "x": 4.4, "y": -4.91}, + {"time": 0.5667, "x": 7.49, "y": -5.17, "curve": "stepped"}, {"time": 0.5833, "x": 18.69, "y": 1.85, "curve": "stepped"}, + {"time": 0.75, "x": 18.69, "y": 1.85, "curve": 0.306, "c3": 0.695}, {"time": 0.9167} ] }, - "leg-front-left-IK": { + "@leg-front-right": { "translate": [ - {"time": 0.15, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "x": -54.88, "y": 124.95, "curve": 0.854, "c4": 0.1}, {"time": 0.3667, "x": 37.97, "y": 122.64}, - {"time": 0.45, "x": 48.96, "y": 138.43, "curve": 0.315, "c4": 0.8}, {"time": 0.5667, "curve": "stepped"}, {"time": 0.6333, "curve": 0, "c2": 0.1, "c3": 0.85}, - {"time": 0.6667, "x": -7.79, "y": -10.12, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.8333} + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 4.31, "y": 11.86, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.25, "x": -10.48, "y": -15.33, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "x": -3.15, "y": 1.33, "curve": "stepped"}, {"time": 0.35, "x": -3.84, "y": 7.68}, + {"time": 0.5667, "x": -3.53, "y": 9.04, "curve": "stepped"}, {"time": 0.5833, "x": -2.24, "y": 13.67, "curve": 0.313, "c3": 0.699}, + {"time": 0.75, "x": -2.69, "y": -18.63, "curve": 0.313, "c3": 0.699}, {"time": 0.9167} ] }, - "leg-back-left-IK": { + "@leg-back-left": { "translate": [ - {"time": 0.0833, "curve": 0.332, "c3": 0.682, "c4": 0.41}, {"time": 0.2167, "x": 21.57, "y": 4.03, "curve": 0, "c2": 0.4, "c3": 0.383}, - {"time": 0.3333, "x": -50.73, "y": 91.08, "curve": 0.854, "c4": 0.1}, {"time": 0.3667, "x": 19.18, "y": 184.64}, {"time": 0.45, "x": 25.59, "y": 197.69, "curve": 0.315, "c4": 0.8}, - {"time": 0.5667, "curve": "stepped"}, {"time": 0.6333, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.75, "x": 24.35, "y": 13.92, "curve": 0.154, "c4": 0.9}, {"time": 0.8333} + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.1333, "x": 0.67, "y": -7.85, "curve": 0.161, "c3": 0.854}, {"time": 0.25, "x": 0.74, "y": -5.43, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.3333, "x": -0.54, "y": 4.44, "curve": "stepped"}, {"time": 0.35, "x": 10.26, "y": 0.56, "curve": "stepped"}, {"time": 0.5667, "x": 10.26, "y": 0.56, "curve": "stepped"}, + {"time": 0.5833} ] }, "tail": { "rotate": [ - {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.15, "angle": 14.68, "curve": 0.315, "c4": 0.8}, {"time": 0.2167, "angle": -12.57}, - {"time": 0.3333, "angle": -14.89, "curve": 0.854, "c4": 0.1}, {"time": 0.3667, "angle": 25.96}, {"time": 0.45, "angle": 33.77}, - {"time": 0.6167, "angle": 26.39, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.7167, "angle": -14.8, "curve": 0.154, "c4": 0.9}, {"time": 0.8333} + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "angle": 15.61, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "angle": 20.44, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.3333, "angle": -15.58, "curve": "stepped"}, {"time": 0.35, "angle": 30.35}, {"time": 0.5667, "angle": 35.35, "curve": "stepped"}, + {"time": 0.5833, "angle": -11.84, "curve": 0.313, "c3": 0.699}, {"time": 0.75, "angle": 16.95, "curve": 0.313, "c3": 0.699}, {"time": 0.9167} ] }, - "@shadow": { - "translate": [ - {"time": 0.15, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.3333, "x": -132.39, "curve": 0.854, "c4": 0.1}, {"time": 0.3667, "x": -111.3, "curve": "stepped"}, - {"time": 0.45, "x": -111.3, "curve": 0.315, "c4": 0.8}, {"time": 0.5667, "x": -132.39, "curve": "stepped"}, {"time": 0.6333, "x": -132.39, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.8333} - ], - "scale": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.15, "x": 1.05, "y": 1.05, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.3333, "x": 0.93, "y": 0.93, "curve": 0.854, "c4": 0.1}, - {"time": 0.3667, "x": 0.95, "y": 0.95}, {"time": 0.45, "x": 0.97, "y": 0.97, "curve": 0.315, "c4": 0.8}, {"time": 0.5667, "x": 1.05, "y": 1.05, "curve": 0, "c2": 0.1, "c3": 0.85}, - {"time": 0.6333, "x": 1.07, "y": 1.07, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.8333} - ] + "@pivot-main": { + "translate": [{"time": 0.75, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.8333, "y": 31, "curve": 0.315, "c4": 0.8}, {"time": 0.9167}], + "scale": [{"time": 0.5667, "curve": "stepped"}, {"time": 0.75, "y": 0.98, "curve": 0.154, "c4": 0.9}, {"time": 0.9167}] }, - "body-fur-8": { + "body-fur-2": { "rotate": [ - {"angle": 5.73, "curve": 0.382, "c2": 0.56, "c3": 0.74}, {"time": 0.05, "curve": 0.25, "c3": 0.75}, {"time": 0.2, "angle": 18.8, "curve": 0.25, "c3": 0.75}, - {"time": 0.4, "angle": -26.83, "curve": 0.25, "c3": 0.75}, {"time": 0.4833, "angle": 37.79, "curve": 0.25, "c3": 0.75}, {"time": 0.65, "angle": -23.11, "curve": 0.25, "c3": 0.75}, - {"time": 0.75, "angle": 17.07, "curve": 0.244, "c3": 0.641, "c4": 0.57}, {"time": 0.8333, "angle": -0.91} + {"angle": 8.73, "curve": 0.33, "c2": 0.32, "c3": 0.693, "c4": 0.75}, {"time": 0.0667, "angle": 1.89, "curve": 0.377, "c2": 0.61, "c3": 0.72}, {"time": 0.1}, + {"time": 0.2333, "angle": -31.26, "curve": 0.25, "c3": 0.75}, {"time": 0.35, "angle": -18.78, "curve": 0.25, "c3": 0.75}, {"time": 0.4, "angle": -38.17, "curve": 0.25, "c3": 0.75}, + {"time": 0.4833, "angle": 22.48, "curve": 0.25, "c3": 0.75}, {"time": 0.7, "angle": -25.91, "curve": 0.25, "c3": 0.75}, + {"time": 0.8667, "angle": 12.23, "curve": 0.265, "c3": 0.618, "c4": 0.43}, {"time": 0.9167, "angle": 13.84} ] }, - "body-fur-1": { + "body-fur-9": { "rotate": [ - {"angle": 8.53, "curve": 0.375, "c2": 0.5, "c3": 0.75}, {"time": 0.0667, "curve": 0.25, "c3": 0.75}, {"time": 0.2167, "angle": 18.8, "curve": 0.25, "c3": 0.75}, - {"time": 0.4167, "angle": -26.83, "curve": 0.25, "c3": 0.75}, {"time": 0.5, "angle": 37.79, "curve": 0.25, "c3": 0.75}, {"time": 0.6667, "angle": -23.11, "curve": 0.25, "c3": 0.75}, - {"time": 0.7667, "angle": 17.07, "curve": 0.25, "c3": 0.625, "c4": 0.5}, {"time": 0.8333, "angle": 10.51} + {"angle": 6.97, "curve": 0.342, "c2": 0.36, "c3": 0.692, "c4": 0.75}, {"time": 0.05, "angle": 1.89, "curve": 0.377, "c2": 0.61, "c3": 0.72}, {"time": 0.0833, "curve": 0.25, "c3": 0.75}, + {"time": 0.2167, "angle": -31.26, "curve": 0.25, "c3": 0.75}, {"time": 0.3333, "angle": -18.78, "curve": 0.25, "c3": 0.75}, {"time": 0.3833, "angle": -38.17, "curve": 0.25, "c3": 0.75}, + {"time": 0.4667, "angle": 22.48, "curve": 0.25, "c3": 0.75}, {"time": 0.6833, "angle": -25.91, "curve": 0.25, "c3": 0.75}, + {"time": 0.85, "angle": 12.23, "curve": 0.254, "c3": 0.621, "c4": 0.47}, {"time": 0.9167, "angle": 6.86} ] }, - "body-fur-2": { + "body-fur-8": { "rotate": [ - {"angle": 13.89, "curve": 0.314, "c2": 0.27, "c3": 0.686, "c4": 0.73}, {"time": 0.0667, "angle": 3.15, "curve": 0.379, "c2": 0.6, "c3": 0.724}, {"time": 0.1, "curve": 0.25, "c3": 0.75}, - {"time": 0.25, "angle": 18.8, "curve": 0.25, "c3": 0.75}, {"time": 0.45, "angle": -26.83, "curve": 0.25, "c3": 0.75}, {"time": 0.5333, "angle": 37.79, "curve": 0.25, "c3": 0.75}, - {"time": 0.7, "angle": -23.11, "curve": 0.25, "c3": 0.75}, {"time": 0.8, "angle": 17.07, "curve": 0.276, "c3": 0.621, "c4": 0.4}, {"time": 0.8333, "angle": 13.84} + {"angle": 3.47, "curve": 0.382, "c2": 0.57, "c3": 0.735}, {"time": 0.05}, {"time": 0.1833, "angle": -31.26, "curve": 0.25, "c3": 0.75}, + {"time": 0.3, "angle": -18.78, "curve": 0.25, "c3": 0.75}, {"time": 0.35, "angle": -38.17, "curve": 0.25, "c3": 0.75}, {"time": 0.4333, "angle": 22.48, "curve": 0.25, "c3": 0.75}, + {"time": 0.65, "angle": -25.91, "curve": 0.25, "c3": 0.75}, {"time": 0.8167, "angle": 12.23, "curve": 0.243, "c3": 0.649, "c4": 0.6}, {"time": 0.9167, "angle": -0.91} ] }, - "body-fur-3": { + "body-fur-7": { "rotate": [ - {"angle": 5.73, "curve": 0.382, "c2": 0.56, "c3": 0.74}, {"time": 0.05, "curve": 0.25, "c3": 0.75}, {"time": 0.2, "angle": 18.8, "curve": 0.25, "c3": 0.75}, - {"time": 0.4, "angle": -26.83, "curve": 0.25, "c3": 0.75}, {"time": 0.4833, "angle": 37.79, "curve": 0.25, "c3": 0.75}, {"time": 0.65, "angle": -23.11, "curve": 0.25, "c3": 0.75}, - {"time": 0.75, "angle": 17.07, "curve": 0.244, "c3": 0.641, "c4": 0.57}, {"time": 0.8333, "angle": 5.54} + {"angle": 0.63, "curve": 0.362, "c2": 0.64, "c3": 0.698}, {"time": 0.0167, "curve": 0.25, "c3": 0.75}, {"time": 0.15, "angle": -31.26, "curve": 0.25, "c3": 0.75}, + {"time": 0.2667, "angle": -18.78, "curve": 0.25, "c3": 0.75}, {"time": 0.3167, "angle": -38.17, "curve": 0.25, "c3": 0.75}, {"time": 0.4, "angle": 22.48, "curve": 0.25, "c3": 0.75}, + {"time": 0.6167, "angle": -25.91, "curve": 0.25, "c3": 0.75}, {"time": 0.7833, "angle": 12.23, "curve": 0.245, "c3": 0.707, "c4": 0.82}, {"time": 0.9167, "angle": 2.91} ] }, - "body-fur-4": { + "body-fur-6": { "rotate": [ - {"angle": 11.28, "curve": 0.333, "c2": 0.33, "c3": 0.688, "c4": 0.73}, {"time": 0.05, "angle": 3.15, "curve": 0.379, "c2": 0.6, "c3": 0.724}, {"time": 0.0833, "curve": 0.25, "c3": 0.75}, - {"time": 0.2333, "angle": 18.8, "curve": 0.25, "c3": 0.75}, {"time": 0.4333, "angle": -26.83, "curve": 0.25, "c3": 0.75}, {"time": 0.5167, "angle": 37.79, "curve": 0.25, "c3": 0.75}, - {"time": 0.6833, "angle": -23.11, "curve": 0.25, "c3": 0.75}, {"time": 0.7833, "angle": 17.07, "curve": 0.26, "c3": 0.618, "c4": 0.44}, {"time": 0.8333, "angle": 12.53} + {"angle": 5.17, "curve": 0.347, "c2": 0.38, "c3": 0.688, "c4": 0.74}, {"time": 0.0333, "angle": 1.89, "curve": 0.377, "c2": 0.61, "c3": 0.72}, {"time": 0.0667}, + {"time": 0.2, "angle": -31.26, "curve": 0.25, "c3": 0.75}, {"time": 0.3167, "angle": -18.78, "curve": 0.25, "c3": 0.75}, {"time": 0.3667, "angle": -38.17, "curve": 0.25, "c3": 0.75}, + {"time": 0.45, "angle": 22.48, "curve": 0.25, "c3": 0.75}, {"time": 0.6667, "angle": -25.91, "curve": 0.25, "c3": 0.75}, + {"time": 0.8333, "angle": 12.23, "curve": 0.247, "c3": 0.631, "c4": 0.53}, {"time": 0.9167, "angle": 13.33} ] }, "body-fur-5": { "rotate": [ - {"angle": 3.15, "curve": 0.379, "c2": 0.6, "c3": 0.724}, {"time": 0.0333, "curve": 0.25, "c3": 0.75}, {"time": 0.1833, "angle": 18.8, "curve": 0.25, "c3": 0.75}, - {"time": 0.3833, "angle": -26.83, "curve": 0.25, "c3": 0.75}, {"time": 0.4667, "angle": 37.79, "curve": 0.25, "c3": 0.75}, {"time": 0.6333, "angle": -23.11, "curve": 0.25, "c3": 0.75}, - {"time": 0.7333, "angle": 17.07, "curve": 0.242, "c3": 0.667, "c4": 0.67}, {"time": 0.8333, "angle": 6.86} + {"angle": 1.89, "curve": 0.377, "c2": 0.61, "c3": 0.72}, {"time": 0.0333}, {"time": 0.1667, "angle": -31.26, "curve": 0.25, "c3": 0.75}, + {"time": 0.2833, "angle": -18.78, "curve": 0.25, "c3": 0.75}, {"time": 0.3333, "angle": -38.17, "curve": 0.25, "c3": 0.75}, {"time": 0.4167, "angle": 22.48, "curve": 0.25, "c3": 0.75}, + {"time": 0.6333, "angle": -25.91, "curve": 0.25, "c3": 0.75}, {"time": 0.8, "angle": 12.23, "curve": 0.243, "c3": 0.674, "c4": 0.69}, {"time": 0.9167, "angle": 6.86} ] }, - "body-fur-6": { + "body-fur-4": { "rotate": [ - {"angle": 8.47, "curve": 0.343, "c2": 0.36, "c3": 0.686, "c4": 0.73}, {"time": 0.0333, "angle": 3.15, "curve": 0.379, "c2": 0.6, "c3": 0.724}, - {"time": 0.0667, "curve": 0.25, "c3": 0.75}, {"time": 0.2167, "angle": 18.8, "curve": 0.25, "c3": 0.75}, {"time": 0.4167, "angle": -26.83, "curve": 0.25, "c3": 0.75}, - {"time": 0.5, "angle": 37.79, "curve": 0.25, "c3": 0.75}, {"time": 0.6667, "angle": -23.11, "curve": 0.25, "c3": 0.75}, - {"time": 0.7667, "angle": 17.07, "curve": 0.25, "c3": 0.625, "c4": 0.5}, {"time": 0.8333, "angle": 13.33} + {"angle": 6.97, "curve": 0.342, "c2": 0.36, "c3": 0.692, "c4": 0.75}, {"time": 0.05, "angle": 1.89, "curve": 0.377, "c2": 0.61, "c3": 0.72}, {"time": 0.0833}, + {"time": 0.2167, "angle": -31.26, "curve": 0.25, "c3": 0.75}, {"time": 0.3333, "angle": -18.78, "curve": 0.25, "c3": 0.75}, {"time": 0.3833, "angle": -38.17, "curve": 0.25, "c3": 0.75}, + {"time": 0.4667, "angle": 22.48, "curve": 0.25, "c3": 0.75}, {"time": 0.6833, "angle": -25.91, "curve": 0.25, "c3": 0.75}, + {"time": 0.85, "angle": 12.23, "curve": 0.254, "c3": 0.621, "c4": 0.47}, {"time": 0.9167, "angle": 12.53} ] }, - "body-fur-7": { + "body-fur-3": { "rotate": [ - {"angle": 1.07, "curve": 0.364, "c2": 0.64, "c3": 0.701}, {"time": 0.0167, "curve": 0.25, "c3": 0.75}, {"time": 0.1667, "angle": 18.8, "curve": 0.25, "c3": 0.75}, - {"time": 0.3667, "angle": -26.83, "curve": 0.25, "c3": 0.75}, {"time": 0.45, "angle": 37.79, "curve": 0.25, "c3": 0.75}, {"time": 0.6167, "angle": -23.11, "curve": 0.25, "c3": 0.75}, - {"time": 0.7167, "angle": 17.07, "curve": 0.244, "c3": 0.702, "c4": 0.8}, {"time": 0.8333, "angle": 2.91} + {"angle": 3.47, "curve": 0.382, "c2": 0.57, "c3": 0.735}, {"time": 0.05}, {"time": 0.1833, "angle": -31.26, "curve": 0.25, "c3": 0.75}, + {"time": 0.3, "angle": -18.78, "curve": 0.25, "c3": 0.75}, {"time": 0.35, "angle": -38.17, "curve": 0.25, "c3": 0.75}, {"time": 0.4333, "angle": 22.48, "curve": 0.25, "c3": 0.75}, + {"time": 0.65, "angle": -25.91, "curve": 0.25, "c3": 0.75}, {"time": 0.8167, "angle": 12.23, "curve": 0.243, "c3": 0.649, "c4": 0.6}, {"time": 0.9167, "angle": 5.54} ] }, - "body-fur-9": { + "body-fur-1": { "rotate": [ - {"angle": 11.28, "curve": 0.333, "c2": 0.33, "c3": 0.688, "c4": 0.73}, {"time": 0.05, "angle": 3.15, "curve": 0.379, "c2": 0.6, "c3": 0.724}, {"time": 0.0833, "curve": 0.25, "c3": 0.75}, - {"time": 0.2333, "angle": 18.8, "curve": 0.25, "c3": 0.75}, {"time": 0.4333, "angle": -26.83, "curve": 0.25, "c3": 0.75}, {"time": 0.5167, "angle": 37.79, "curve": 0.25, "c3": 0.75}, - {"time": 0.6833, "angle": -23.11, "curve": 0.25, "c3": 0.75}, {"time": 0.7833, "angle": 17.07, "curve": 0.26, "c3": 0.618, "c4": 0.44}, {"time": 0.8333, "angle": 6.86} + {"angle": 5.22, "curve": 0.379, "c2": 0.53, "c3": 0.746}, {"time": 0.0667}, {"time": 0.2, "angle": -31.26, "curve": 0.25, "c3": 0.75}, + {"time": 0.3167, "angle": -18.78, "curve": 0.25, "c3": 0.75}, {"time": 0.3667, "angle": -38.17, "curve": 0.25, "c3": 0.75}, {"time": 0.45, "angle": 22.48, "curve": 0.25, "c3": 0.75}, + {"time": 0.6667, "angle": -25.91, "curve": 0.25, "c3": 0.75}, {"time": 0.8333, "angle": 12.23, "curve": 0.247, "c3": 0.631, "c4": 0.53}, {"time": 0.9167, "angle": 10.51} ] } }, - "events": [{"time": 0.3333, "name": "start-attack"}, {"time": 0.3667, "name": "hit"}] + "drawOrder": [{"time": 0.35, "offsets": [{"slot": "leg-back-left", "offset": 11}]}, {"time": 0.5833}], + "events": [{"time": 0.35, "name": "start-attack"}, {"time": 0.5667, "name": "start-attack"}] }, - "3156742502": { - "slots": {"eyes": {"attachment": [{"time": 0.9167, "name": "eyes-shut"}, {"time": 1, "name": "eyes"}]}}, + "3200295228": { + "slots": { + "eyes": {"attachment": [{"time": 0.1333, "name": "eyes-shut"}, {"time": 0.2, "name": "eyes"}, {"time": 0.4667, "name": "eyes-shut"}, {"time": 0.5833, "name": "eyes"}]}, + "mouth": { + "attachment": [ + {"time": 0.0833, "name": "mouth-open"}, {"time": 0.1667, "name": "mouth-bite"}, {"time": 0.3333, "name": "mouth"}, {"time": 0.4167, "name": "mouth-open"}, + {"time": 0.5, "name": "mouth-bite"}, {"time": 0.5833, "name": "mouth"} + ] + } + }, "bones": { - "@pivot-back": {"translate": [{"y": -97.74, "curve": 0.393, "c3": 0.303}, {"time": 0.6667, "y": -82.74, "curve": 0.387, "c3": 0.309}, {"time": 1.3333, "y": -97.74}]}, - "@leg-front-left": { + "@mouth": { + "translate": [ + {"time": 0.1667, "curve": 0, "c2": 0.1, "c3": 0.479, "c4": 0.56}, {"time": 0.3333, "x": -0.56, "y": 3.4, "curve": 0.408, "c2": 0.51, "c3": 0.853}, {"time": 0.5, "x": 0.04, "y": 0.05} + ] + }, + "@pivot-back": { "rotate": [ - {"curve": 0, "c2": 0.1, "c3": 0.856}, {"time": 0.3333, "angle": -17.48, "curve": 0.15, "c3": 0.926}, {"time": 0.7333, "curve": 0, "c2": 0.05, "c3": 0.692}, - {"time": 1.05, "angle": 8.38, "curve": 0.24, "c3": 0.769}, {"time": 1.3333} + {"curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.0667, "angle": -0.59, "curve": 0.075, "c4": 0.95}, {"time": 0.1333, "angle": 1.15, "curve": 0, "c2": 0.1, "c3": 0.85}, + {"time": 0.2167, "curve": "stepped"}, {"time": 0.3333, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.4, "angle": -0.59, "curve": 0.075, "c4": 0.95}, + {"time": 0.4667, "angle": 1.15, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.5833} + ], + "translate": [ + {"y": 0.06, "curve": 0.387, "c3": 0.314}, {"time": 0.1333, "x": -13.8, "y": 0.06, "curve": 0.387, "c3": 0.314}, {"time": 0.2167, "x": 0.02, "y": 0.06, "curve": "stepped"}, + {"time": 0.3333, "x": 0.02, "y": 0.06, "curve": 0.387, "c3": 0.314}, {"time": 0.4667, "x": -13.8, "y": 0.06, "curve": 0.387, "c3": 0.314}, {"time": 0.5833, "x": 0.02, "y": 0.06} ] }, "@leg-front-right": { "rotate": [ - {"curve": 0, "c2": 0.1, "c3": 0.856}, {"time": 0.3333, "angle": 9.43, "curve": 0.15, "c3": 0.926}, {"time": 0.7333, "curve": 0, "c2": 0.05, "c3": 0.692}, - {"time": 1.05, "angle": -11.74, "curve": 0.24, "c3": 0.769}, {"time": 1.3333} + {"curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.0667, "angle": 10.98, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.2167, "angle": -8.78, "curve": 0.161, "c3": 0.854}, + {"time": 0.3333, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.4, "angle": 10.98, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.55, "angle": -8.78, "curve": 0.161, "c3": 0.854}, + {"time": 0.6667, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.8333, "angle": -9.85, "curve": 0.161, "c3": 0.854}, {"time": 0.9833, "angle": -6.21}, + {"time": 1.15, "angle": 2.69, "curve": 0.075, "c4": 0.95}, {"time": 1.3333, "angle": -30.3} + ] + }, + "@leg-front-left": { + "rotate": [ + {"curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.0667, "angle": 10.98, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.2167, "angle": -8.78, "curve": 0.161, "c3": 0.854}, + {"time": 0.3333, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.4, "angle": 10.98, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.55, "angle": -8.78, "curve": 0.161, "c3": 0.854}, + {"time": 0.6667, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.8333, "angle": -9.84, "curve": 0.161, "c3": 0.854}, {"time": 0.9833, "angle": -6.21}, + {"time": 1.15, "angle": 2.69, "curve": 0.075, "c4": 0.95}, {"time": 1.3333, "angle": 20.14} ] }, "@leg-back-left": { "rotate": [ - {"curve": 0, "c2": 0.1, "c3": 0.856}, {"time": 0.3333, "angle": -12.53, "curve": 0.15, "c3": 0.926}, {"time": 0.7333, "curve": 0, "c2": 0.05, "c3": 0.692}, - {"time": 1.05, "angle": 9.41, "curve": 0.24, "c3": 0.769}, {"time": 1.3333} + {"curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.0667, "angle": 10.98, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.2167, "angle": -8.78, "curve": 0.161, "c3": 0.854}, + {"time": 0.3333, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.4, "angle": 10.98, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.55, "angle": -8.78, "curve": 0.161, "c3": 0.854}, + {"time": 0.6667, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.8333, "angle": 5.93, "curve": 0.161, "c3": 0.854}, {"time": 0.9833}, + {"time": 1.15, "angle": -4.97, "curve": 0.075, "c4": 0.95}, {"time": 1.3333, "angle": -11.75} ] }, + "@pivot-main": {"translate": [{"curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.0667, "y": 7.88, "curve": 0.078, "c4": 0.94}, {"time": 0.1333}]}, + "@pivot-center": {"translate": [{"curve": 0.387, "c3": 0.314}, {"time": 0.6667, "y": 14.05, "curve": 0.387, "c3": 0.314}, {"time": 1.3333}]}, + "@shadow": { + "translate": [ + {"curve": 0.387, "c3": 0.314}, {"time": 0.1333, "x": -23.3, "curve": 0.387, "c3": 0.314}, {"time": 0.2167, "x": -9.6, "curve": "stepped"}, + {"time": 0.3333, "x": -9.6, "curve": 0.387, "c3": 0.314}, {"time": 0.4667, "x": -23.3, "curve": 0.387, "c3": 0.314}, {"time": 0.5833} + ], + "scale": [{"curve": 0.387, "c3": 0.314}, {"time": 0.6667, "x": 0.95, "y": 0.95, "curve": 0.387, "c3": 0.314}, {"time": 1.3333}] + }, "tail": { "rotate": [ - {"curve": 0, "c2": 0.05, "c3": 0.691}, {"time": 0.3333, "angle": -5.06, "curve": 0.304, "c3": 0.689}, {"time": 0.7333, "angle": -0.77}, - {"time": 1.05, "angle": 2.12, "curve": 0.234, "c4": 0.9}, {"time": 1.3333} + {"curve": 0, "c2": 0.12, "c3": 0.348, "c4": 0.47}, {"time": 0.1, "angle": -6.85, "curve": 0.229, "c2": 0.25, "c3": 0.569, "c4": 0.6}, + {"time": 0.2, "angle": 1.43, "curve": 0.188, "c2": 0.31, "c3": 0.695}, {"time": 0.3333, "angle": 3.02, "curve": 0, "c2": 0.12, "c3": 0.347, "c4": 0.48}, + {"time": 0.4333, "angle": -6.85, "curve": 0.229, "c2": 0.25, "c3": 0.569, "c4": 0.6}, {"time": 0.5333, "angle": 1.2, "curve": 0.155, "c3": 0.85}, + {"time": 0.75, "angle": -5.95, "curve": 0.161, "c3": 0.854}, {"time": 0.95, "angle": -0.94}, {"time": 1.15, "angle": 4.91, "curve": 0.234, "c4": 0.9}, {"time": 1.3333} ] }, - "@shadow": {"scale": [{"x": 1.3, "y": 1.3, "curve": 0.387, "c3": 0.314}, {"time": 0.6667, "x": 1.25, "y": 1.25, "curve": 0.387, "c3": 0.314}, {"time": 1.3333, "x": 1.3, "y": 1.3}]}, "body-fur-8": { "rotate": [ - {"angle": -12.61, "curve": 0.364, "c2": 0.64, "c3": 0.701}, {"time": 0.0833, "angle": -14.41, "curve": 0.25, "c3": 0.75}, - {"time": 0.75, "angle": 14.27, "curve": 0.244, "c3": 0.702, "c4": 0.8}, {"time": 1.3333, "angle": -12.61} + {"angle": -0.62, "curve": 0.369, "c2": 0.63, "c3": 0.707}, {"time": 0.0333}, {"time": 0.15, "angle": 21.4, "curve": 0.25, "c3": 0.75}, + {"time": 0.3, "angle": -20.96, "curve": 0.25, "c3": 0.75}, {"time": 0.5, "angle": 22.02, "curve": 0.25, "c3": 0.75}, {"time": 0.7, "angle": -20.96, "curve": 0.25, "c3": 0.75}, + {"time": 0.9333, "angle": 1.24, "curve": 0.25, "c3": 0.75}, {"time": 1.15, "angle": -7.25, "curve": 0.244, "c3": 0.693, "c4": 0.76}, {"time": 1.3333, "angle": -0.62} ] }, "body-fur-1": { "rotate": [ - {"angle": -3.86, "curve": 0.381, "c2": 0.55, "c3": 0.742}, {"time": 0.2667, "angle": -14.41, "curve": 0.25, "c3": 0.75}, - {"time": 0.9333, "angle": 14.27, "curve": 0.245, "c3": 0.637, "c4": 0.56}, {"time": 1.3333, "angle": -3.86} + {"angle": -2.52, "curve": 0.382, "c2": 0.55, "c3": 0.741}, {"time": 0.0833}, {"time": 0.2, "angle": 21.4, "curve": 0.25, "c3": 0.75}, + {"time": 0.35, "angle": -20.96, "curve": 0.25, "c3": 0.75}, {"time": 0.55, "angle": 22.02, "curve": 0.25, "c3": 0.75}, {"time": 0.75, "angle": -20.96, "curve": 0.25, "c3": 0.75}, + {"time": 0.9833, "angle": 1.24, "curve": 0.25, "c3": 0.75}, {"time": 1.2, "angle": -7.25, "curve": 0.245, "c3": 0.64, "c4": 0.57}, {"time": 1.3333, "angle": -2.52} ] }, "body-fur-2": { "rotate": [ - {"angle": 1.69, "curve": 0.349, "c2": 0.39, "c3": 0.707, "c4": 0.8}, {"time": 0.2667, "angle": -12.03, "curve": 0.369, "c2": 0.63, "c3": 0.706}, - {"time": 0.3667, "angle": -14.41, "curve": 0.25, "c3": 0.75}, {"time": 1.0333, "angle": 14.27, "curve": 0.253, "c3": 0.621, "c4": 0.48}, {"time": 1.3333, "angle": 1.69} + {"angle": -4.7, "curve": 0.336, "c2": 0.34, "c3": 0.691, "c4": 0.74}, {"time": 0.0833, "angle": -1.19, "curve": 0.378, "c2": 0.61, "c3": 0.721}, {"time": 0.1333}, + {"time": 0.25, "angle": 21.4, "curve": 0.25, "c3": 0.75}, {"time": 0.4, "angle": -20.96, "curve": 0.25, "c3": 0.75}, {"time": 0.6, "angle": 22.02, "curve": 0.25, "c3": 0.75}, + {"time": 0.8, "angle": -20.96, "curve": 0.25, "c3": 0.75}, {"time": 1.0333, "angle": 1.24, "curve": 0.25, "c3": 0.75}, + {"time": 1.25, "angle": -7.25, "curve": 0.259, "c3": 0.618, "c4": 0.45}, {"time": 1.3333, "angle": -4.7} ] }, "body-fur-3": { "rotate": [ - {"angle": -7.46, "curve": 0.382, "c2": 0.58, "c3": 0.731}, {"time": 0.2, "angle": -14.41, "curve": 0.25, "c3": 0.75}, - {"time": 0.8667, "angle": 14.27, "curve": 0.243, "c3": 0.655, "c4": 0.63}, {"time": 1.3333, "angle": -7.46} + {"angle": -4.73, "curve": 0.36, "c2": 0.43, "c3": 0.755}, {"time": 0.1333}, {"time": 0.25, "angle": 21.4, "curve": 0.25, "c3": 0.75}, + {"time": 0.4, "angle": -20.96, "curve": 0.25, "c3": 0.75}, {"time": 0.6, "angle": 22.02, "curve": 0.25, "c3": 0.75}, {"time": 0.8, "angle": -20.96, "curve": 0.25, "c3": 0.75}, + {"time": 1.0333, "angle": 1.24, "curve": 0.25, "c3": 0.75}, {"time": 1.25, "angle": -7.25, "curve": 0.259, "c3": 0.618, "c4": 0.45}, {"time": 1.3333, "angle": -4.73} ] }, "body-fur-4": { "rotate": [ - {"angle": -2.12, "curve": 0.355, "c2": 0.41, "c3": 0.702, "c4": 0.79}, {"time": 0.2, "angle": -12.03, "curve": 0.369, "c2": 0.63, "c3": 0.706}, - {"time": 0.3, "angle": -14.41, "curve": 0.25, "c3": 0.75}, {"time": 0.9667, "angle": 14.27, "curve": 0.247, "c3": 0.63, "c4": 0.53}, {"time": 1.3333, "angle": -2.12} + {"angle": -6.62, "curve": 0.293, "c2": 0.2, "c3": 0.685, "c4": 0.73}, {"time": 0.1333, "angle": -1.19, "curve": 0.378, "c2": 0.61, "c3": 0.721}, {"time": 0.1833}, + {"time": 0.3, "angle": 21.4, "curve": 0.25, "c3": 0.75}, {"time": 0.45, "angle": -20.96, "curve": 0.25, "c3": 0.75}, {"time": 0.65, "angle": 22.02, "curve": 0.25, "c3": 0.75}, + {"time": 0.85, "angle": -20.96, "curve": 0.25, "c3": 0.75}, {"time": 1.0833, "angle": 1.24, "curve": 0.25, "c3": 0.75}, + {"time": 1.3, "angle": -7.25, "curve": 0.293, "c3": 0.631, "c4": 0.37}, {"time": 1.3333, "angle": -6.62} ] }, "body-fur-5": { "rotate": [ - {"angle": -10.68, "curve": 0.375, "c2": 0.62, "c3": 0.716}, {"time": 0.1333, "angle": -14.41, "curve": 0.25, "c3": 0.75}, - {"time": 0.8, "angle": 14.27, "curve": 0.243, "c3": 0.68, "c4": 0.71}, {"time": 1.3333, "angle": -10.68} + {"angle": -3.26, "curve": 0.378, "c2": 0.52, "c3": 0.747}, {"time": 0.1}, {"time": 0.2167, "angle": 21.4, "curve": 0.25, "c3": 0.75}, + {"time": 0.3667, "angle": -20.96, "curve": 0.25, "c3": 0.75}, {"time": 0.5667, "angle": 22.02, "curve": 0.25, "c3": 0.75}, {"time": 0.7667, "angle": -20.96, "curve": 0.25, "c3": 0.75}, + {"time": 1, "angle": 1.24, "curve": 0.25, "c3": 0.75}, {"time": 1.2167, "angle": -7.25, "curve": 0.248, "c3": 0.629, "c4": 0.52}, {"time": 1.3333, "angle": -3.26} ] }, "body-fur-6": { "rotate": [ - {"angle": -5.81, "curve": 0.354, "c2": 0.41, "c3": 0.694, "c4": 0.77}, {"time": 0.1333, "angle": -12.03, "curve": 0.369, "c2": 0.63, "c3": 0.706}, - {"time": 0.2333, "angle": -14.41, "curve": 0.25, "c3": 0.75}, {"time": 0.9, "angle": 14.27, "curve": 0.244, "c3": 0.646, "c4": 0.59}, {"time": 1.3333, "angle": -5.81} + {"angle": -5.41, "curve": 0.325, "c2": 0.31, "c3": 0.691, "c4": 0.74}, {"time": 0.1, "angle": -1.19, "curve": 0.378, "c2": 0.61, "c3": 0.721}, {"time": 0.15}, + {"time": 0.2667, "angle": 21.4, "curve": 0.25, "c3": 0.75}, {"time": 0.4167, "angle": -20.96, "curve": 0.25, "c3": 0.75}, {"time": 0.6167, "angle": 22.02, "curve": 0.25, "c3": 0.75}, + {"time": 0.8167, "angle": -20.96, "curve": 0.25, "c3": 0.75}, {"time": 1.05, "angle": 1.24, "curve": 0.25, "c3": 0.75}, + {"time": 1.2667, "angle": -7.25, "curve": 0.268, "c3": 0.618, "c4": 0.42}, {"time": 1.3333, "angle": -5.41} ] }, "body-fur-7": { "rotate": [ - {"angle": -13.19, "curve": 0.36, "c2": 0.64, "c3": 0.695}, {"time": 0.0667, "angle": -14.41, "curve": 0.25, "c3": 0.75}, - {"time": 0.7333, "angle": 14.27, "curve": 0.245, "c3": 0.711, "c4": 0.83}, {"time": 1.3333, "angle": -13.19} + {"angle": -1.83, "curve": 0.382, "c2": 0.58, "c3": 0.732}, {"time": 0.0667, "curve": 0.25, "c3": 0.75}, {"time": 0.1833, "angle": 21.4, "curve": 0.25, "c3": 0.75}, + {"time": 0.3333, "angle": -20.96, "curve": 0.25, "c3": 0.75}, {"time": 0.5333, "angle": 22.02, "curve": 0.25, "c3": 0.75}, {"time": 0.7333, "angle": -20.96, "curve": 0.25, "c3": 0.75}, + {"time": 0.9667, "angle": 1.24, "curve": 0.25, "c3": 0.75}, {"time": 1.1833, "angle": -7.25, "curve": 0.243, "c3": 0.654, "c4": 0.62}, {"time": 1.3333, "angle": -1.83} ] }, "body-fur-9": { "rotate": [ - {"angle": -8.38, "curve": 0.35, "c2": 0.4, "c3": 0.686, "c4": 0.74}, {"time": 0.0833, "angle": -12.03, "curve": 0.369, "c2": 0.63, "c3": 0.706}, - {"time": 0.1833, "angle": -14.41, "curve": 0.25, "c3": 0.75}, {"time": 0.85, "angle": 14.27, "curve": 0.242, "c3": 0.661, "c4": 0.65}, {"time": 1.3333, "angle": -8.38} + {"angle": -2.51, "curve": 0.345, "c2": 0.37, "c3": 0.682, "c4": 0.72}, {"time": 0.0333, "angle": -1.19, "curve": 0.378, "c2": 0.61, "c3": 0.721}, {"time": 0.0833}, + {"time": 0.2, "angle": 21.4, "curve": 0.25, "c3": 0.75}, {"time": 0.35, "angle": -20.96, "curve": 0.25, "c3": 0.75}, {"time": 0.55, "angle": 22.02, "curve": 0.25, "c3": 0.75}, + {"time": 0.75, "angle": -20.96, "curve": 0.25, "c3": 0.75}, {"time": 0.9833, "angle": 1.24, "curve": 0.25, "c3": 0.75}, + {"time": 1.2, "angle": -7.25, "curve": 0.245, "c3": 0.64, "c4": 0.57}, {"time": 1.3333, "angle": -2.51} ] } } }, - "2112863967": { + "447085734": { "slots": { - "ball": { - "color": [ - {"color": "ffffff00", "curve": "stepped"}, {"time": 0.1667, "color": "ffffff00", "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "color": "ffffffff", "curve": "stepped"}, - {"time": 2.9167, "color": "ffffffff", "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 3.0833, "color": "ffffff00"} - ], - "attachment": [{"name": "ball"}] - }, - "eyes": {"attachment": [{"time": 0.5, "name": "eyes-shut"}, {"time": 0.5833, "name": "eyes"}, {"time": 3.0833, "name": "eyes-shut"}, {"time": 3.1667, "name": "eyes"}]}, - "mouth": {"attachment": [{"time": 0.1833, "name": "mouth-open"}, {"time": 0.5, "name": "mouth"}, {"time": 2.7667, "name": "mouth-open"}, {"time": 2.9167, "name": "mouth"}]} + "eyes": {"attachment": [{"time": 0.1333, "name": "eyes-shut"}, {"time": 0.2, "name": "eyes"}, {"time": 0.4667, "name": "eyes-shut"}]}, + "mouth": {"attachment": [{"time": 0.0833, "name": "mouth-open"}, {"time": 0.3333, "name": "mouth"}, {"time": 0.4167, "name": "mouth-open"}]} }, "bones": { + "@mouth": { + "translate": [ + {"time": 0.1667, "curve": 0, "c2": 0.1, "c3": 0.479, "c4": 0.56}, {"time": 0.3333, "x": -0.56, "y": 3.4, "curve": 0.408, "c2": 0.51, "c3": 0.853}, + {"time": 0.5, "x": 0.04, "y": 0.05, "curve": 0, "c2": 0.27, "c3": 0.314, "c4": 0.8}, {"time": 0.6, "x": 3.03, "y": 2.83, "curve": 0.168, "c2": 0.32, "c3": 0.551, "c4": 0.7}, + {"time": 0.7, "x": -0.51, "y": 3.39, "curve": 0.291, "c2": 0.39, "c3": 0.63, "c4": 0.75}, {"time": 0.8, "x": -3.56, "y": 0.39, "curve": 0.329, "c2": 0.61, "c3": 0.674, "c4": 0.99}, + {"time": 0.9, "x": 0.05, "y": -0.01, "curve": 0, "c2": 0.27, "c3": 0.31, "c4": 0.8}, {"time": 1.0167, "x": 3.05, "y": 2.75, "curve": 0.154, "c2": 0.33, "c3": 0.544, "c4": 0.7}, + {"time": 1.1167, "x": -0.5, "y": 3.35, "curve": 0.298, "c2": 0.38, "c3": 0.643, "c4": 0.74}, {"time": 1.2167, "x": -3.56, "y": 0.37, "curve": 0.326, "c2": 0.61, "c3": 0.671, "c4": 0.99}, + {"time": 1.3333} + ] + }, "@pivot-back": { "rotate": [ - {"curve": 0, "c2": 0.3, "c3": 0.546}, {"time": 0.1667, "angle": 6, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "angle": -6.98, "curve": 0.464, "c4": 0.7}, - {"time": 0.5, "angle": 3, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.6667, "curve": "stepped"}, {"time": 2.5833, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 2.75, "angle": 6, "curve": 0, "c2": 0.3, "c3": 0.546}, {"time": 2.9167, "angle": -6, "curve": 0.464, "c4": 0.7}, - {"time": 3.0833, "angle": 6, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 3.25} + {"curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.0667, "angle": -0.59, "curve": 0.075, "c4": 0.95}, {"time": 0.1333, "angle": 1.15, "curve": 0, "c2": 0.1, "c3": 0.85}, + {"time": 0.2167, "curve": "stepped"}, {"time": 0.3333, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.4, "angle": -0.59, "curve": 0.075, "c4": 0.95}, + {"time": 0.4667, "angle": 1.15, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.5833} ], "translate": [ - {"curve": 0, "c2": 0.3, "c3": 0.546}, {"time": 0.1667, "y": 1.78, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "y": 353.14, "curve": 0.464, "c4": 0.7}, - {"time": 0.5, "y": 255, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.6667, "y": 267.67, "curve": 0.156, "c3": 0.693}, - {"time": 1.1667, "x": -30, "y": 267.67, "curve": 0.317, "c3": 0.693}, {"time": 2.1667, "x": 50, "y": 267.67, "curve": 0.317, "c3": 0.693}, - {"time": 2.5833, "y": 267.67, "curve": "stepped"}, {"time": 2.75, "y": 267.67, "curve": 0, "c2": 0.3, "c3": 0.546}, {"time": 2.9167, "y": 310, "curve": 0.464, "c4": 0.7}, - {"time": 3.0833} + {"y": 0.06, "curve": 0.387, "c3": 0.314}, {"time": 0.1333, "x": -13.8, "y": 0.06, "curve": 0.387, "c3": 0.314}, {"time": 0.2167, "x": 0.02, "y": 0.06, "curve": "stepped"}, + {"time": 0.3333, "x": 0.02, "y": 0.06, "curve": 0.387, "c3": 0.314}, {"time": 0.4667, "x": -13.8, "y": 0.06, "curve": 0.387, "c3": 0.314}, {"time": 0.5833, "x": 0.02, "y": 0.06} ] }, "@leg-front-right": { - "translate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": -2.8, "y": -31.7, "curve": 0, "c2": 0.3, "c3": 0.546}, {"time": 0.25, "curve": "stepped"}, - {"time": 2.5833, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 2.75, "x": -2.8, "y": -31.7, "curve": 0.315, "c4": 0.8}, {"time": 2.8333, "curve": "stepped"}, - {"time": 3, "curve": 0.315, "c4": 0.8}, {"time": 3.0833, "x": -2.86, "y": -32.44, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 3.25} + "rotate": [ + {"curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.0667, "angle": 10.98, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.2167, "angle": -8.78, "curve": 0.161, "c3": 0.854}, + {"time": 0.3333, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.4, "angle": 10.98, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.55, "angle": -8.78, "curve": 0.161, "c3": 0.854}, + {"time": 0.6667, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.8333, "angle": -9.85, "curve": 0.161, "c3": 0.854}, {"time": 0.9833, "angle": -6.21}, + {"time": 1.15, "angle": 2.69, "curve": 0.075, "c4": 0.95}, {"time": 1.3333} ] }, "@leg-front-left": { - "translate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": -1.46, "y": -16.59, "curve": 0, "c2": 0.3, "c3": 0.546}, {"time": 0.25, "curve": "stepped"}, - {"time": 2.5833, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 2.75, "x": -1.46, "y": -16.59, "curve": 0.315, "c4": 0.8}, {"time": 2.8333, "curve": "stepped"}, - {"time": 3, "curve": 0.315, "c4": 0.8}, {"time": 3.0833, "x": -1.64, "y": -18.64, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 3.25} - ] - }, - "leg-front-left-IK": { - "translate": [ - {"time": 0.1667, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "x": -6.9, "y": 380.8, "curve": 0.315, "c4": 0.8}, {"time": 0.5, "x": -5.5, "y": 268.35, "curve": "stepped"}, - {"time": 0.6667, "x": -5.5, "y": 268.35, "curve": 0.317, "c3": 0.693}, {"time": 0.9167, "x": -38.87, "y": 268.35, "curve": 0.317, "c3": 0.693}, - {"time": 1.1667, "x": -10.16, "y": 268.35, "curve": 0.317, "c3": 0.693}, {"time": 1.4167, "x": -39.65, "y": 268.35, "curve": 0.317, "c3": 0.693}, - {"time": 1.6667, "x": 23.98, "y": 268.35, "curve": 0.317, "c3": 0.693}, {"time": 1.9167, "x": 5.36, "y": 268.35, "curve": 0.317, "c3": 0.693}, - {"time": 2.1667, "x": 67.44, "y": 268.35, "curve": 0.317, "c3": 0.693}, {"time": 2.4167, "x": -3.95, "y": 268.35, "curve": 0.317, "c3": 0.693}, - {"time": 2.5833, "x": -5.5, "y": 268.35, "curve": "stepped"}, {"time": 2.9167, "x": -5.5, "y": 268.35, "curve": 0.315, "c4": 0.8}, {"time": 3.0833} - ] - }, - "leg-front-right-IK": { - "translate": [ - {"time": 0.1667, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "x": -6.9, "y": 397.8, "curve": 0.315, "c4": 0.8}, {"time": 0.5, "x": 15.4, "y": 268.08, "curve": "stepped"}, - {"time": 0.6667, "x": 15.4, "y": 268.08, "curve": 0.317, "c3": 0.693}, {"time": 0.9167, "x": 24.64, "y": 268.08, "curve": 0.317, "c3": 0.693}, - {"time": 1.1667, "x": -41.71, "y": 268.08, "curve": 0.317, "c3": 0.693}, {"time": 1.4167, "x": 22.12, "y": 268.08, "curve": 0.317, "c3": 0.693}, - {"time": 1.6667, "x": -0.56, "y": 268.08, "curve": 0.317, "c3": 0.693}, {"time": 1.9167, "x": 61.6, "y": 268.08, "curve": 0.317, "c3": 0.693}, - {"time": 2.1667, "x": 33.88, "y": 268.08, "curve": 0.317, "c3": 0.693}, {"time": 2.4167, "x": 49, "y": 268.08, "curve": 0.317, "c3": 0.693}, - {"time": 2.5833, "x": 15.4, "y": 268.08, "curve": "stepped"}, {"time": 2.9167, "x": 15.4, "y": 268.08, "curve": 0.315, "c4": 0.8}, {"time": 3.0833} - ] - }, - "leg-back-left-IK": { - "translate": [ - {"time": 0.1667, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "x": -0.4, "y": 363.25, "curve": 0.315, "c4": 0.8}, {"time": 0.5, "x": -26.16, "y": 267.01}, - {"time": 0.6667, "x": -33.59, "y": 267.01, "curve": 0.317, "c3": 0.693}, {"time": 0.9167, "x": -22.32, "y": 267.01, "curve": 0.317, "c3": 0.693}, - {"time": 1.1667, "x": -63.32, "y": 267.01, "curve": 0.317, "c3": 0.693}, {"time": 1.4167, "x": -28.35, "y": 267.01, "curve": 0.317, "c3": 0.693}, - {"time": 1.6667, "x": -28.02, "y": 267.01, "curve": 0.317, "c3": 0.693}, {"time": 1.9167, "x": 14.36, "y": 267.01, "curve": 0.317, "c3": 0.693}, - {"time": 2.1667, "x": 9.14, "y": 267.01, "curve": 0.317, "c3": 0.693}, {"time": 2.4167, "x": 11.99, "y": 267.01, "curve": 0.317, "c3": 0.693}, - {"time": 2.6667, "x": -33.59, "y": 267.01, "curve": "stepped"}, {"time": 2.9167, "x": -33.59, "y": 267.01, "curve": 0.315, "c4": 0.8}, {"time": 3.0833} - ] - }, - "@ball": { "rotate": [ - {"time": 0.6667, "curve": 0.156, "c3": 0.693}, {"time": 1.1667, "angle": 18, "curve": 0.317, "c3": 0.693}, {"time": 2.1667, "angle": -18, "curve": 0.317, "c3": 0.693}, {"time": 2.75} - ], - "translate": [ - {"time": 0.6667, "curve": 0.156, "c3": 0.693}, {"time": 1.1667, "x": -32, "curve": 0.317, "c3": 0.693}, {"time": 2.1667, "x": 32, "curve": 0.317, "c3": 0.693}, {"time": 2.75} - ], - "scale": [ - {"x": 0, "y": 0, "curve": "stepped"}, {"time": 0.1667, "x": 0, "y": 0, "curve": 0, "c2": 0.6, "c3": 0.237}, {"time": 0.3333, "x": 1.2, "y": 1.2, "curve": 0.315, "c4": 0.8}, - {"time": 0.5, "curve": "stepped"}, {"time": 2.75, "curve": 0, "c2": 0.3, "c3": 0.546}, {"time": 2.9167, "x": 1.2, "y": 1.2, "curve": 0.315, "c4": 0.8}, {"time": 3.0833, "x": 0, "y": 0} - ] - }, - "ball": { - "scale": [ - {"time": 0.3333, "curve": 0.617, "c4": 0.6}, {"time": 0.5, "x": 1.2, "y": 0.802, "curve": 0, "c2": 0.39, "c3": 0.387}, {"time": 0.6667, "curve": "stepped"}, - {"time": 2.5833, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 2.75, "x": 1.2, "y": 0.9, "curve": 0, "c2": 0.3, "c3": 0.546}, {"time": 2.9167} + {"curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.0667, "angle": 10.98, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.2167, "angle": -8.78, "curve": 0.161, "c3": 0.854}, + {"time": 0.3333, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.4, "angle": 10.98, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.55, "angle": -8.78, "curve": 0.161, "c3": 0.854}, + {"time": 0.6667, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.8333, "angle": -9.84, "curve": 0.161, "c3": 0.854}, {"time": 0.9833, "angle": -6.21}, + {"time": 1.15, "angle": 2.69, "curve": 0.075, "c4": 0.95}, {"time": 1.3333} ] }, - "@pivot-center": { + "@leg-back-left": { "rotate": [ - {"time": 0.6667, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.9167, "angle": 2, "curve": 0.461, "c3": 0.543}, {"time": 1.4167, "angle": -2, "curve": 0.461, "c3": 0.543}, - {"time": 1.9167, "angle": 2, "curve": 0.461, "c3": 0.543}, {"time": 2.4167, "angle": -2, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 2.75} + {"curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.0667, "angle": 10.98, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.2167, "angle": -8.78, "curve": 0.161, "c3": 0.854}, + {"time": 0.3333, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.4, "angle": 10.98, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.55, "angle": -8.78, "curve": 0.161, "c3": 0.854}, + {"time": 0.6667, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.8333, "angle": 5.93, "curve": 0.161, "c3": 0.854}, {"time": 0.9833}, + {"time": 1.15, "angle": -4.97, "curve": 0.075, "c4": 0.95}, {"time": 1.3333} ] }, + "@pivot-main": {"translate": [{"curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.0667, "y": 7.88, "curve": 0.078, "c4": 0.94}, {"time": 0.1333}]}, + "@pivot-center": {"translate": [{"curve": 0.387, "c3": 0.314}, {"time": 0.6667, "y": 14.05, "curve": 0.387, "c3": 0.314}, {"time": 1.3333}]}, "@shadow": { "translate": [ - {"time": 0.6667, "curve": 0.317, "c3": 0.693}, {"time": 1.1667, "x": -32, "curve": 0.317, "c3": 0.693}, {"time": 2.1667, "x": 32, "curve": 0.317, "c3": 0.693}, {"time": 2.5833} + {"curve": 0.387, "c3": 0.314}, {"time": 0.1333, "x": -23.3, "curve": 0.387, "c3": 0.314}, {"time": 0.2167, "x": -9.6, "curve": "stepped"}, + {"time": 0.3333, "x": -9.6, "curve": 0.387, "c3": 0.314}, {"time": 0.4667, "x": -23.3, "curve": 0.387, "c3": 0.314}, {"time": 0.5833} ], - "scale": [ - {"curve": 0, "c2": 0.3, "c3": 0.546}, {"time": 0.1667, "x": 1.1, "y": 1.1, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "curve": 0.464, "c4": 0.7}, - {"time": 0.5, "x": 1.06, "y": 1.06, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.6667, "curve": "stepped"}, {"time": 2.5833, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 2.75, "x": 1.06, "y": 1.06, "curve": 0, "c2": 0.3, "c3": 0.546}, {"time": 2.9167, "curve": 0.464, "c4": 0.7}, - {"time": 3.0833, "x": 1.1, "y": 1.1, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 3.25} - ] + "scale": [{"curve": 0.387, "c3": 0.314}, {"time": 0.6667, "x": 0.95, "y": 0.95, "curve": 0.387, "c3": 0.314}, {"time": 1.3333}] }, "tail": { "rotate": [ - {"curve": 0, "c2": 0.3, "c3": 0.546}, {"time": 0.1667, "angle": 17.35, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "angle": -14.67, "curve": 0.464, "c4": 0.7}, - {"time": 0.5, "angle": 19.12, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.6667, "angle": -10.65, "curve": 0.317, "c3": 0.693}, - {"time": 0.9167, "angle": -0.65, "curve": 0.317, "c3": 0.693}, {"time": 1.1667, "angle": -10.65, "curve": 0.317, "c3": 0.693}, - {"time": 1.4167, "angle": -0.65, "curve": 0.317, "c3": 0.693}, {"time": 1.6667, "angle": -10.65, "curve": 0.317, "c3": 0.693}, - {"time": 1.9167, "angle": -0.65, "curve": 0.317, "c3": 0.693}, {"time": 2.1667, "angle": -10.65, "curve": 0.317, "c3": 0.693}, - {"time": 2.4167, "angle": -0.65, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 2.5833, "angle": -10.65, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 2.75, "angle": 19.35, "curve": 0, "c2": 0.3, "c3": 0.546}, {"time": 2.9167, "angle": -18.65, "curve": 0, "c2": 0.3, "c3": 0.546}, - {"time": 3.0833, "angle": 17.35, "curve": 0.317, "c3": 0.693}, {"time": 3.25} + {"curve": 0, "c2": 0.12, "c3": 0.348, "c4": 0.47}, {"time": 0.1, "angle": -6.85, "curve": 0.229, "c2": 0.25, "c3": 0.569, "c4": 0.6}, + {"time": 0.2, "angle": 1.43, "curve": 0.188, "c2": 0.31, "c3": 0.695}, {"time": 0.3333, "angle": 3.02, "curve": 0, "c2": 0.12, "c3": 0.347, "c4": 0.48}, + {"time": 0.4333, "angle": -6.85, "curve": 0.229, "c2": 0.25, "c3": 0.569, "c4": 0.6}, {"time": 0.5333, "angle": 1.2, "curve": 0.155, "c3": 0.85}, + {"time": 0.75, "angle": -5.95, "curve": 0.161, "c3": 0.854}, {"time": 0.95, "angle": -0.94}, {"time": 1.15, "angle": 4.91, "curve": 0.234, "c4": 0.9}, {"time": 1.3333} ] }, - "body-light-life": {"rotate": [{}, {"time": 1.65, "angle": -151.16, "curve": "stepped"}, {"time": 1.6667}, {"time": 3.25, "angle": -151.16}]}, "body-fur-3": { "rotate": [ - {"angle": 17.95, "curve": 0.363, "c2": 0.44, "c3": 0.755}, {"time": 0.1}, {"time": 0.2667, "angle": 15.51, "curve": 0.25, "c3": 0.75}, - {"time": 0.4333, "angle": -26.6, "curve": 0.25, "c3": 0.75}, {"time": 0.6, "angle": 14.77, "curve": 0.25, "c3": 0.75}, {"time": 0.7667, "angle": -12.34, "curve": 0.25, "c3": 0.75}, - {"time": 1.0667, "curve": 0.25, "c3": 0.75}, {"time": 1.4333, "angle": -19.09, "curve": 0.25, "c3": 0.75}, {"time": 2.1, "angle": 15.18, "curve": 0.25, "c3": 0.75}, - {"time": 2.6833, "curve": 0.25, "c3": 0.75}, {"time": 2.85, "angle": 24.34, "curve": 0.25, "c3": 0.75}, {"time": 3.0167, "angle": -25.03, "curve": 0.25, "c3": 0.75}, - {"time": 3.1833, "angle": 28.39, "curve": 0.258, "c3": 0.619, "c4": 0.45}, {"time": 3.25, "angle": 5.54} + {"angle": -4.73, "curve": 0.36, "c2": 0.43, "c3": 0.755}, {"time": 0.1333}, {"time": 0.25, "angle": 21.4, "curve": 0.25, "c3": 0.75}, + {"time": 0.4, "angle": -20.96, "curve": 0.25, "c3": 0.75}, {"time": 0.6, "angle": 22.02, "curve": 0.25, "c3": 0.75}, {"time": 0.8, "angle": -20.96, "curve": 0.25, "c3": 0.75}, + {"time": 1.0333, "angle": 1.24, "curve": 0.25, "c3": 0.75}, {"time": 1.25, "angle": -7.25, "curve": 0.259, "c3": 0.618, "c4": 0.45}, {"time": 1.3333, "angle": -4.73} ] }, - "body-fur-2": { + "body-fur-4": { "rotate": [ - {"angle": 15.45, "curve": 0.382, "c2": 0.58, "c3": 0.731}, {"time": 0.05, "angle": 28.39, "curve": 0.25, "c3": 0.625, "c4": 0.5}, - {"time": 0.1333, "angle": 14.2, "curve": 0.375, "c2": 0.5, "c3": 0.75}, {"time": 0.2167}, {"time": 0.3833, "angle": 15.51, "curve": 0.25, "c3": 0.75}, - {"time": 0.55, "angle": -26.6, "curve": 0.25, "c3": 0.75}, {"time": 0.7167, "angle": 14.77, "curve": 0.25, "c3": 0.75}, {"time": 0.8833, "angle": -12.34, "curve": 0.25, "c3": 0.75}, - {"time": 1.1833, "curve": 0.25, "c3": 0.75}, {"time": 1.55, "angle": -19.09, "curve": 0.25, "c3": 0.75}, {"time": 2.2167, "angle": 15.18, "curve": 0.25, "c3": 0.75}, - {"time": 2.8, "curve": 0.25, "c3": 0.75}, {"time": 2.9667, "angle": 24.34, "curve": 0.25, "c3": 0.75}, {"time": 3.1333, "angle": -25.03, "curve": 0.243, "c3": 0.655, "c4": 0.63}, - {"time": 3.25, "angle": 13.84} + {"angle": -6.62, "curve": 0.293, "c2": 0.2, "c3": 0.685, "c4": 0.73}, {"time": 0.1333, "angle": -1.19, "curve": 0.378, "c2": 0.61, "c3": 0.721}, {"time": 0.1833}, + {"time": 0.3, "angle": 21.4, "curve": 0.25, "c3": 0.75}, {"time": 0.45, "angle": -20.96, "curve": 0.25, "c3": 0.75}, {"time": 0.65, "angle": 22.02, "curve": 0.25, "c3": 0.75}, + {"time": 0.85, "angle": -20.96, "curve": 0.25, "c3": 0.75}, {"time": 1.0833, "angle": 1.24, "curve": 0.25, "c3": 0.75}, + {"time": 1.3, "angle": -7.25, "curve": 0.293, "c3": 0.631, "c4": 0.37}, {"time": 1.3333, "angle": -6.62} ] }, - "body-fur-9": { + "body-fur-2": { "rotate": [ - {"angle": 21.53, "curve": 0.321, "c2": 0.3, "c3": 0.661, "c4": 0.65}, {"time": 0.0333, "angle": 14.2, "curve": 0.375, "c2": 0.5, "c3": 0.75}, {"time": 0.1167}, - {"time": 0.2833, "angle": 15.51, "curve": 0.25, "c3": 0.75}, {"time": 0.45, "angle": -26.6, "curve": 0.25, "c3": 0.75}, {"time": 0.6167, "angle": 14.77, "curve": 0.25, "c3": 0.75}, - {"time": 0.7833, "angle": -12.34, "curve": 0.25, "c3": 0.75}, {"time": 1.0833, "curve": 0.25, "c3": 0.75}, {"time": 1.45, "angle": -19.09, "curve": 0.25, "c3": 0.75}, - {"time": 2.1167, "angle": 15.18, "curve": 0.25, "c3": 0.75}, {"time": 2.7, "curve": 0.25, "c3": 0.75}, {"time": 2.8667, "angle": 24.34, "curve": 0.25, "c3": 0.75}, - {"time": 3.0333, "angle": -25.03, "curve": 0.25, "c3": 0.75}, {"time": 3.2, "angle": 28.39, "curve": 0.269, "c3": 0.618, "c4": 0.42}, {"time": 3.25, "angle": 6.86} + {"angle": -4.7, "curve": 0.336, "c2": 0.34, "c3": 0.691, "c4": 0.74}, {"time": 0.0833, "angle": -1.19, "curve": 0.378, "c2": 0.61, "c3": 0.721}, {"time": 0.1333}, + {"time": 0.25, "angle": 21.4, "curve": 0.25, "c3": 0.75}, {"time": 0.4, "angle": -20.96, "curve": 0.25, "c3": 0.75}, {"time": 0.6, "angle": 22.02, "curve": 0.25, "c3": 0.75}, + {"time": 0.8, "angle": -20.96, "curve": 0.25, "c3": 0.75}, {"time": 1.0333, "angle": 1.24, "curve": 0.25, "c3": 0.75}, + {"time": 1.25, "angle": -7.25, "curve": 0.259, "c3": 0.618, "c4": 0.45}, {"time": 1.3333, "angle": -4.7} ] }, - "body-fur-8": { + "body-fur-5": { "rotate": [ - {"angle": 3.69, "curve": 0.375, "c2": 0.62, "c3": 0.716}, {"time": 0.0333}, {"time": 0.2, "angle": 15.51, "curve": 0.25, "c3": 0.75}, - {"time": 0.3667, "angle": -26.6, "curve": 0.25, "c3": 0.75}, {"time": 0.5333, "angle": 14.77, "curve": 0.25, "c3": 0.75}, {"time": 0.7, "angle": -12.34, "curve": 0.25, "c3": 0.75}, - {"time": 1, "curve": 0.25, "c3": 0.75}, {"time": 1.3667, "angle": -19.09, "curve": 0.25, "c3": 0.75}, {"time": 2.0333, "angle": 15.18, "curve": 0.25, "c3": 0.75}, - {"time": 2.6167, "curve": 0.25, "c3": 0.75}, {"time": 2.7833, "angle": 24.34, "curve": 0.25, "c3": 0.75}, {"time": 2.95, "angle": -25.03, "curve": 0.25, "c3": 0.75}, - {"time": 3.1167, "angle": 28.39, "curve": 0.243, "c3": 0.68, "c4": 0.71}, {"time": 3.25, "angle": -0.91} + {"angle": -3.26, "curve": 0.378, "c2": 0.52, "c3": 0.747}, {"time": 0.1}, {"time": 0.2167, "angle": 21.4, "curve": 0.25, "c3": 0.75}, + {"time": 0.3667, "angle": -20.96, "curve": 0.25, "c3": 0.75}, {"time": 0.5667, "angle": 22.02, "curve": 0.25, "c3": 0.75}, {"time": 0.7667, "angle": -20.96, "curve": 0.25, "c3": 0.75}, + {"time": 1, "angle": 1.24, "curve": 0.25, "c3": 0.75}, {"time": 1.2167, "angle": -7.25, "curve": 0.248, "c3": 0.629, "c4": 0.52}, {"time": 1.3333, "angle": -3.26} ] }, "body-fur-7": { "rotate": [ - {"angle": 6.88, "curve": 0.382, "c2": 0.58, "c3": 0.731}, {"time": 0.05, "curve": 0.25, "c3": 0.75}, {"time": 0.2167, "angle": 15.51, "curve": 0.25, "c3": 0.75}, - {"time": 0.3833, "angle": -26.6, "curve": 0.25, "c3": 0.75}, {"time": 0.55, "angle": 14.77, "curve": 0.25, "c3": 0.75}, {"time": 0.7167, "angle": -12.34, "curve": 0.25, "c3": 0.75}, - {"time": 1.0167, "curve": 0.25, "c3": 0.75}, {"time": 1.3833, "angle": -19.09, "curve": 0.25, "c3": 0.75}, {"time": 2.05, "angle": 15.18, "curve": 0.25, "c3": 0.75}, - {"time": 2.6333, "curve": 0.25, "c3": 0.75}, {"time": 2.8, "angle": 24.34, "curve": 0.25, "c3": 0.75}, {"time": 2.9667, "angle": -25.03, "curve": 0.25, "c3": 0.75}, - {"time": 3.1333, "angle": 28.39, "curve": 0.243, "c3": 0.655, "c4": 0.63}, {"time": 3.25, "angle": 2.91} + {"angle": -1.83, "curve": 0.382, "c2": 0.58, "c3": 0.732}, {"time": 0.0667, "curve": 0.25, "c3": 0.75}, {"time": 0.1833, "angle": 21.4, "curve": 0.25, "c3": 0.75}, + {"time": 0.3333, "angle": -20.96, "curve": 0.25, "c3": 0.75}, {"time": 0.5333, "angle": 22.02, "curve": 0.25, "c3": 0.75}, {"time": 0.7333, "angle": -20.96, "curve": 0.25, "c3": 0.75}, + {"time": 0.9667, "angle": 1.24, "curve": 0.25, "c3": 0.75}, {"time": 1.1833, "angle": -7.25, "curve": 0.243, "c3": 0.654, "c4": 0.62}, {"time": 1.3333, "angle": -1.83} ] }, - "body-fur-6": { + "body-fur-8": { "rotate": [ - {"angle": 27.23, "curve": 0.282, "c2": 0.15, "c3": 0.641, "c4": 0.58}, {"time": 0.0667, "angle": 14.2, "curve": 0.375, "c2": 0.5, "c3": 0.75}, {"time": 0.15}, - {"time": 0.3167, "angle": 15.51, "curve": 0.25, "c3": 0.75}, {"time": 0.4833, "angle": -26.6, "curve": 0.25, "c3": 0.75}, {"time": 0.65, "angle": 14.77, "curve": 0.25, "c3": 0.75}, - {"time": 0.8167, "angle": -12.34, "curve": 0.25, "c3": 0.75}, {"time": 1.1167, "curve": 0.25, "c3": 0.75}, {"time": 1.4833, "angle": -19.09, "curve": 0.25, "c3": 0.75}, - {"time": 2.15, "angle": 15.18, "curve": 0.25, "c3": 0.75}, {"time": 2.7333, "curve": 0.25, "c3": 0.75}, {"time": 2.9, "angle": 24.34, "curve": 0.25, "c3": 0.75}, - {"time": 3.0667, "angle": -25.03, "curve": 0.25, "c3": 0.75}, {"time": 3.2333, "angle": 28.39, "curve": 0.305, "c3": 0.64, "c4": 0.36}, {"time": 3.25, "angle": 13.33} + {"angle": -0.62, "curve": 0.369, "c2": 0.63, "c3": 0.707}, {"time": 0.0333}, {"time": 0.15, "angle": 21.4, "curve": 0.25, "c3": 0.75}, + {"time": 0.3, "angle": -20.96, "curve": 0.25, "c3": 0.75}, {"time": 0.5, "angle": 22.02, "curve": 0.25, "c3": 0.75}, {"time": 0.7, "angle": -20.96, "curve": 0.25, "c3": 0.75}, + {"time": 0.9333, "angle": 1.24, "curve": 0.25, "c3": 0.75}, {"time": 1.15, "angle": -7.25, "curve": 0.244, "c3": 0.693, "c4": 0.76}, {"time": 1.3333, "angle": -0.62} ] }, - "body-fur-5": { + "body-fur-9": { "rotate": [ - {"angle": 10.44, "curve": 0.381, "c2": 0.55, "c3": 0.742}, {"time": 0.0667}, {"time": 0.2333, "angle": 15.51, "curve": 0.25, "c3": 0.75}, - {"time": 0.4, "angle": -26.6, "curve": 0.25, "c3": 0.75}, {"time": 0.5667, "angle": 14.77, "curve": 0.25, "c3": 0.75}, {"time": 0.7333, "angle": -12.34, "curve": 0.25, "c3": 0.75}, - {"time": 1.0333, "curve": 0.25, "c3": 0.75}, {"time": 1.4, "angle": -19.09, "curve": 0.25, "c3": 0.75}, {"time": 2.0667, "angle": 15.18, "curve": 0.25, "c3": 0.75}, - {"time": 2.65, "curve": 0.25, "c3": 0.75}, {"time": 2.8167, "angle": 24.34, "curve": 0.25, "c3": 0.75}, {"time": 2.9833, "angle": -25.03, "curve": 0.25, "c3": 0.75}, - {"time": 3.15, "angle": 28.39, "curve": 0.245, "c3": 0.637, "c4": 0.56}, {"time": 3.25, "angle": 6.86} + {"angle": -2.51, "curve": 0.345, "c2": 0.37, "c3": 0.682, "c4": 0.72}, {"time": 0.0333, "angle": -1.19, "curve": 0.378, "c2": 0.61, "c3": 0.721}, {"time": 0.0833}, + {"time": 0.2, "angle": 21.4, "curve": 0.25, "c3": 0.75}, {"time": 0.35, "angle": -20.96, "curve": 0.25, "c3": 0.75}, {"time": 0.55, "angle": 22.02, "curve": 0.25, "c3": 0.75}, + {"time": 0.75, "angle": -20.96, "curve": 0.25, "c3": 0.75}, {"time": 0.9833, "angle": 1.24, "curve": 0.25, "c3": 0.75}, + {"time": 1.2, "angle": -7.25, "curve": 0.245, "c3": 0.64, "c4": 0.57}, {"time": 1.3333, "angle": -2.51} ] }, - "body-fur-4": { + "body-fur-1": { "rotate": [ - {"angle": 26.12, "curve": 0.36, "c2": 0.64, "c3": 0.695}, {"time": 0.0167, "angle": 28.39, "curve": 0.25, "c3": 0.625, "c4": 0.5}, - {"time": 0.1, "angle": 14.2, "curve": 0.375, "c2": 0.5, "c3": 0.75}, {"time": 0.1833}, {"time": 0.35, "angle": 15.51, "curve": 0.25, "c3": 0.75}, - {"time": 0.5167, "angle": -26.6, "curve": 0.25, "c3": 0.75}, {"time": 0.6833, "angle": 14.77, "curve": 0.25, "c3": 0.75}, {"time": 0.85, "angle": -12.34, "curve": 0.25, "c3": 0.75}, - {"time": 1.15, "curve": 0.25, "c3": 0.75}, {"time": 1.5167, "angle": -19.09, "curve": 0.25, "c3": 0.75}, {"time": 2.1833, "angle": 15.18, "curve": 0.25, "c3": 0.75}, - {"time": 2.7667, "curve": 0.25, "c3": 0.75}, {"time": 2.9333, "angle": 24.34, "curve": 0.25, "c3": 0.75}, {"time": 3.1, "angle": -25.03, "curve": 0.245, "c3": 0.711, "c4": 0.83}, - {"time": 3.25, "angle": 12.53} + {"angle": -2.52, "curve": 0.382, "c2": 0.55, "c3": 0.741}, {"time": 0.0833}, {"time": 0.2, "angle": 21.4, "curve": 0.25, "c3": 0.75}, + {"time": 0.35, "angle": -20.96, "curve": 0.25, "c3": 0.75}, {"time": 0.55, "angle": 22.02, "curve": 0.25, "c3": 0.75}, {"time": 0.75, "angle": -20.96, "curve": 0.25, "c3": 0.75}, + {"time": 0.9833, "angle": 1.24, "curve": 0.25, "c3": 0.75}, {"time": 1.2, "angle": -7.25, "curve": 0.245, "c3": 0.64, "c4": 0.57}, {"time": 1.3333, "angle": -2.52} ] }, - "body-fur-1": { + "body-fur-6": { "rotate": [ - {"angle": 24.7, "curve": 0.32, "c2": 0.29, "c3": 0.757}, {"time": 0.1333}, {"time": 0.3, "angle": 15.51, "curve": 0.25, "c3": 0.75}, - {"time": 0.4667, "angle": -26.6, "curve": 0.25, "c3": 0.75}, {"time": 0.6333, "angle": 14.77, "curve": 0.25, "c3": 0.75}, {"time": 0.8, "angle": -12.34, "curve": 0.25, "c3": 0.75}, - {"time": 1.1, "curve": 0.25, "c3": 0.75}, {"time": 1.4667, "angle": -19.09, "curve": 0.25, "c3": 0.75}, {"time": 2.1333, "angle": 15.18, "curve": 0.25, "c3": 0.75}, - {"time": 2.7167, "curve": 0.25, "c3": 0.75}, {"time": 2.8833, "angle": 24.34, "curve": 0.25, "c3": 0.75}, {"time": 3.05, "angle": -25.03, "curve": 0.25, "c3": 0.75}, - {"time": 3.2167, "angle": 28.39, "curve": 0.284, "c3": 0.625, "c4": 0.38}, {"time": 3.25, "angle": 10.51} + {"angle": -5.41, "curve": 0.325, "c2": 0.31, "c3": 0.691, "c4": 0.74}, {"time": 0.1, "angle": -1.19, "curve": 0.378, "c2": 0.61, "c3": 0.721}, {"time": 0.15}, + {"time": 0.2667, "angle": 21.4, "curve": 0.25, "c3": 0.75}, {"time": 0.4167, "angle": -20.96, "curve": 0.25, "c3": 0.75}, {"time": 0.6167, "angle": 22.02, "curve": 0.25, "c3": 0.75}, + {"time": 0.8167, "angle": -20.96, "curve": 0.25, "c3": 0.75}, {"time": 1.05, "angle": 1.24, "curve": 0.25, "c3": 0.75}, + {"time": 1.2667, "angle": -7.25, "curve": 0.268, "c3": 0.618, "c4": 0.42}, {"time": 1.3333, "angle": -5.41} ] } } }, - "2668998474": { - "slots": { - "eyes": {"attachment": [{"time": 0.0833, "name": "eyes-happy"}, {"time": 1, "name": "eyes"}]}, - "leg-back-left": {"attachment": [{"time": 0.0667, "name": "mystic-leg-back-left-long"}, {"time": 0.9, "name": "mystic-leg-back-left"}]}, - "mouth": {"attachment": [{"time": 0.0833, "name": "mouth-smile"}, {"time": 1, "name": "mouth"}]} - }, + "629069415": { + "slots": {"eyes": {"attachment": [{"time": 0.0167, "name": "eyes-angry"}, {"time": 0.6333, "name": "eyes-shut"}, {"time": 0.7, "name": "eyes-angry"}, {"time": 1.2833, "name": "eyes"}]}}, "bones": { "@pivot-back": { "rotate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "angle": -18, "curve": 0.317, "c3": 0.693}, {"time": 0.3333, "angle": -17, "curve": 0.317, "c3": 0.693}, - {"time": 0.5, "angle": -18, "curve": 0.317, "c3": 0.693}, {"time": 0.6667, "angle": -17, "curve": 0.317, "c3": 0.693}, {"time": 0.8333, "angle": -18, "curve": 0.317, "c3": 0.693}, - {"time": 1.0833} + {"curve": 0.302, "c4": 0.8}, {"time": 0.1667, "angle": -5.15, "curve": 0, "c2": 0.2, "c3": 0.692}, {"time": 0.3333, "angle": 4.71, "curve": 0, "c2": 0.1, "c3": 0.853}, + {"time": 0.5, "angle": -2.3, "curve": 0.308, "c3": 0.692}, {"time": 0.6667, "angle": 2.84, "curve": 0.314, "c3": 0.701}, + {"time": 0.9167, "angle": -3.66, "curve": 0, "c2": 0.1, "c3": 0.845}, {"time": 1.0833, "angle": -0.77, "curve": 0.311, "c4": 0.8}, {"time": 1.25} ], "translate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": 33.94, "y": -52, "curve": "stepped"}, {"time": 0.8333, "x": 33.94, "y": -52, "curve": 0.317, "c3": 0.693}, {"time": 1.0833} - ] - }, - "@leg-front-left": { - "translate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": -27.99, "y": 1.7, "curve": 0.25, "c3": 0.75}, {"time": 0.3333, "x": -26.93, "y": -1.56, "curve": 0.25, "c3": 0.75}, - {"time": 0.5, "x": -27.99, "y": 1.7, "curve": 0.25, "c3": 0.75}, {"time": 0.6667, "x": -26.93, "y": -1.56, "curve": 0.25, "c3": 0.75}, - {"time": 0.8333, "x": -27.99, "y": 1.7, "curve": 0.317, "c3": 0.693}, {"time": 1.0833} + {"curve": 0.308, "c4": 0.79}, {"time": 0.25, "x": -74.35, "y": -25.83, "curve": 0, "c2": 0.3, "c3": 0.537}, {"time": 0.4167, "x": -74.35, "y": 55.38, "curve": 0, "c2": 0.1, "c3": 0.853}, + {"time": 0.5833, "x": 103.85, "y": -14.97, "curve": 0.308, "c3": 0.692}, {"time": 0.75, "x": 103.82, "y": 55.43, "curve": 0.314, "c3": 0.701}, + {"time": 1, "x": -40.96, "y": -15.97, "curve": 0.314, "c3": 0.701}, {"time": 1.1667, "x": -40.96, "y": 0.03, "curve": 0, "c2": 0.05, "c3": 0.933}, {"time": 1.3333} ] }, "@leg-front-right": { - "translate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": -84.32, "y": 39.72, "curve": 0.317, "c3": 0.693}, {"time": 0.3333, "x": -82.71, "y": 34.75, "curve": 0.317, "c3": 0.693}, - {"time": 0.5, "x": -84.32, "y": 39.72, "curve": 0.317, "c3": 0.693}, {"time": 0.6667, "x": -82.71, "y": 34.75, "curve": 0.317, "c3": 0.693}, - {"time": 0.8333, "x": -84.32, "y": 39.72, "curve": 0.317, "c3": 0.693}, {"time": 1.0833} + "rotate": [ + {"curve": 0.307, "c4": 0.8}, {"time": 0.1667, "angle": 13.08, "curve": 0.302, "c3": 0.695}, {"time": 0.4167, "angle": -24.68, "curve": "stepped"}, + {"time": 0.5833, "angle": -24.68, "curve": 0, "c2": 0.2, "c3": 0.689}, {"time": 0.75, "angle": 8.39, "curve": "stepped"}, {"time": 0.9167, "angle": 8.39, "curve": 0.308, "c4": 0.8}, + {"time": 1.1667, "angle": -16.49, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 1.3333, "angle": -30.3} ] }, - "leg-front-right-IK": { - "translate": [{"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": 40.32, "curve": "stepped"}, {"time": 0.8333, "x": 40.32, "curve": 0.317, "c3": 0.693}, {"time": 1.0833}] - }, - "leg-front-left-IK": { - "translate": [{"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": 26.51, "curve": "stepped"}, {"time": 0.8333, "x": 26.51, "curve": 0.317, "c3": 0.693}, {"time": 1.0833}] + "@leg-front-left": { + "rotate": [ + {"curve": 0.307, "c4": 0.8}, {"time": 0.1667, "angle": 13.08, "curve": 0.302, "c3": 0.695}, {"time": 0.4167, "angle": -24.68, "curve": "stepped"}, + {"time": 0.5833, "angle": -24.68, "curve": 0, "c2": 0.2, "c3": 0.689}, {"time": 0.75, "angle": 8.39, "curve": "stepped"}, {"time": 0.9167, "angle": 8.39, "curve": 0.308, "c4": 0.8}, + {"time": 1.1667, "angle": -16.49, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 1.3333, "angle": 20.14} + ] }, - "leg-back-left-IK": { - "translate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": -30.93, "y": 88.63, "curve": 0.617, "c4": 0.6}, {"time": 0.2667, "x": -62.81, "y": 72.23, "curve": 0, "c2": 0.4, "c3": 0.383}, - {"time": 0.35, "x": -28.19, "y": 96.83, "curve": 0.617, "c4": 0.6}, {"time": 0.45, "x": -62.81, "y": 72.23, "curve": 0, "c2": 0.4, "c3": 0.383}, - {"time": 0.55, "x": -28.19, "y": 96.83, "curve": 0.617, "c4": 0.6}, {"time": 0.6333, "x": -62.81, "y": 72.23, "curve": 0, "c2": 0.4, "c3": 0.383}, - {"time": 0.7333, "x": -28.19, "y": 96.83, "curve": 0.434, "c3": 0.739, "c4": 0.4}, {"time": 0.8333, "x": -56.92, "y": 76.7, "curve": 0.223, "c2": 0.33, "c3": 0.336}, {"time": 1.0833} + "@leg-back-left": { + "rotate": [ + {"curve": 0.307, "c4": 0.8}, {"time": 0.1667, "angle": 13.08}, {"time": 0.3333, "angle": -13.36}, {"time": 0.75, "angle": 11.05, "curve": "stepped"}, + {"time": 0.9167, "angle": 11.05, "curve": 0.308, "c4": 0.8}, {"time": 1.1667, "angle": -13.83, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 1.3333, "angle": -11.75} ] }, "tail": { "rotate": [ - {"curve": 0, "c2": 0.3, "c3": 0.546}, {"time": 0.1667, "angle": 25.35, "curve": 0.317, "c3": 0.693}, {"time": 0.3333, "angle": 33.35, "curve": 0.317, "c3": 0.693}, - {"time": 0.5, "angle": 25.35, "curve": 0.317, "c3": 0.693}, {"time": 0.6667, "angle": 33.35, "curve": 0.317, "c3": 0.693}, - {"time": 0.9167, "angle": 25.35, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 1.0833} + {"curve": 0, "c2": 0.2, "c3": 0.698}, {"time": 0.1667, "angle": -6, "curve": 0.305, "c3": 0.698}, {"time": 0.25, "angle": 1.14, "curve": 0.301, "c3": 0.698}, + {"time": 0.4167, "angle": -8.39, "curve": 0, "c2": 0.2, "c3": 0.698}, {"time": 0.5833, "angle": 0.59, "curve": 0.305, "c3": 0.698}, + {"time": 0.75, "angle": -10.53, "curve": 0, "c2": 0.2, "c3": 0.692}, {"time": 1, "angle": -2.29, "curve": 0.302, "c3": 0.692}, + {"time": 1.1667, "angle": -9.12, "curve": 0, "c2": 0.1, "c3": 0.844}, {"time": 1.3333} ] }, - "@shadow": { - "translate": [{"curve": 0, "c2": 0.3, "c3": 0.546}, {"time": 0.1667, "x": 32.73, "curve": "stepped"}, {"time": 0.8333, "x": 32.73, "curve": 0.317, "c3": 0.693}, {"time": 1.0833}], - "scale": [ - {"time": 0.1667, "curve": 0.317, "c3": 0.693}, {"time": 0.25, "x": 1.02, "y": 1.02, "curve": 0.317, "c3": 0.693}, {"time": 0.3333, "curve": 0.317, "c3": 0.693}, - {"time": 0.4167, "x": 1.02, "y": 1.02, "curve": 0.317, "c3": 0.693}, {"time": 0.5, "curve": 0.317, "c3": 0.693}, {"time": 0.5833, "x": 1.02, "y": 1.02, "curve": 0.317, "c3": 0.693}, - {"time": 0.6667, "curve": 0.317, "c3": 0.693}, {"time": 0.8333, "x": 1.02, "y": 1.02, "curve": 0.317, "c3": 0.693}, {"time": 1.0833} + "back": { + "rotate": [ + {"curve": 0, "c2": 0.2, "c3": 0.698}, {"time": 0.1667, "angle": -1.84, "curve": 0.305, "c3": 0.698}, {"time": 0.25, "angle": 3, "curve": 0.301, "c3": 0.698}, + {"time": 0.4167, "angle": 0.04, "curve": 0, "c2": 0.2, "c3": 0.698}, {"time": 0.5833, "angle": 4.01, "curve": 0.305, "c3": 0.698}, + {"time": 0.75, "angle": 0.76, "curve": 0, "c2": 0.2, "c3": 0.692}, {"time": 1, "angle": 4.04, "curve": 0.302, "c3": 0.692}, + {"time": 1.1667, "angle": 1.6, "curve": 0, "c2": 0.1, "c3": 0.844}, {"time": 1.3333} ] }, - "body-fur-7": { - "rotate": [ - {"angle": 5.09, "curve": 0.366, "c2": 0.63, "c3": 0.703}, {"time": 0.0333, "angle": 6.14, "curve": 0.25, "c3": 0.75}, {"time": 0.2, "angle": -20.35, "curve": 0.25, "c3": 0.75}, - {"time": 0.5333, "angle": 10.82, "curve": 0.25, "c3": 0.75}, {"time": 0.8667, "angle": -8.98, "curve": 0.244, "c3": 0.7, "c4": 0.79}, {"time": 1.0833, "angle": 2.91} + "@shadow": { + "translate": [ + {"curve": 0.315, "c4": 0.8}, {"time": 0.25, "x": -83.7, "curve": 0, "c2": 0.3, "c3": 0.535}, {"time": 0.4167, "x": -83.9, "curve": 0, "c2": 0.1, "c3": 0.85}, + {"time": 0.5833, "x": 94.25, "curve": 0.309, "c3": 0.691}, {"time": 0.75, "x": 94.33, "curve": 0.309, "c3": 0.691}, {"time": 1, "x": -50.6, "curve": "stepped"}, + {"time": 1.1667, "x": -50.6, "curve": 0.082, "c3": 0.928}, {"time": 1.3333} + ], + "scale": [ + {"curve": 0.315, "c4": 0.8}, {"time": 0.25, "x": 1.04, "y": 1.04, "curve": 0, "c2": 0.3, "c3": 0.535}, {"time": 0.4167, "x": 0.95, "y": 0.95, "curve": 0, "c2": 0.1, "c3": 0.85}, + {"time": 0.5833, "x": 1.08, "y": 1.08, "curve": 0.309, "c3": 0.691}, {"time": 0.75, "x": 0.96, "y": 0.96, "curve": 0.309, "c3": 0.691}, + {"time": 1, "x": 1.08, "y": 1.08, "curve": 0.309, "c3": 0.691}, {"time": 1.1667, "x": 1.04, "y": 1.04, "curve": 0.082, "c3": 0.928}, {"time": 1.3333} ] }, "body-fur-8": { "rotate": [ - {"angle": 1.85, "curve": 0.382, "c2": 0.57, "c3": 0.735}, {"time": 0.0833, "angle": 6.14, "curve": 0.25, "c3": 0.75}, {"time": 0.25, "angle": -20.35, "curve": 0.25, "c3": 0.75}, - {"time": 0.5833, "angle": 10.82, "curve": 0.25, "c3": 0.75}, {"time": 0.9167, "angle": -8.98, "curve": 0.243, "c3": 0.649, "c4": 0.6}, {"time": 1.0833, "angle": -0.91} + {"angle": 4.01, "curve": 0.351, "c2": 0.42, "c3": 0.686, "c4": 0.76}, {"time": 0.0333, "angle": 1.35, "curve": 0.36, "c2": 0.64, "c3": 0.695}, {"time": 0.0667}, + {"time": 0.2333, "angle": -21.01, "curve": 0.25, "c3": 0.75}, {"time": 0.4, "angle": 24.41, "curve": 0.25, "c3": 0.75}, {"time": 0.6833, "angle": -33.25, "curve": 0.25, "c3": 0.75}, + {"time": 1.0667, "angle": 31.64, "curve": 0.243, "c3": 0.68, "c4": 0.71}, {"time": 1.3333, "angle": 4.01} ] }, "body-fur-1": { "rotate": [ - {"angle": -2.09, "curve": 0.372, "c2": 0.48, "c3": 0.752}, {"time": 0.1333, "angle": 6.14, "curve": 0.25, "c3": 0.75}, {"time": 0.3, "angle": -20.35, "curve": 0.25, "c3": 0.75}, - {"time": 0.6333, "angle": 10.82, "curve": 0.25, "c3": 0.75}, {"time": 0.9667, "angle": -8.98, "curve": 0.252, "c3": 0.622, "c4": 0.48}, {"time": 1.0833, "angle": 10.51} + {"angle": 5.84, "curve": 0.379, "c2": 0.6, "c3": 0.724}, {"time": 0.0833}, {"time": 0.25, "angle": -21.01, "curve": 0.25, "c3": 0.75}, + {"time": 0.4167, "angle": 24.41, "curve": 0.25, "c3": 0.75}, {"time": 0.7, "angle": -33.25, "curve": 0.25, "c3": 0.75}, + {"time": 1.0833, "angle": 31.64, "curve": 0.242, "c3": 0.667, "c4": 0.67}, {"time": 1.3333, "angle": 5.84} ] }, "body-fur-2": { "rotate": [ - {"angle": -7, "curve": 0.303, "c2": 0.24, "c3": 0.68, "c4": 0.71}, {"time": 0.1333, "angle": 3.08, "curve": 0.38, "c2": 0.59, "c3": 0.727}, {"time": 0.2, "angle": 6.14}, - {"time": 0.3667, "angle": -20.35, "curve": 0.25, "c3": 0.75}, {"time": 0.7, "angle": 10.82, "curve": 0.25, "c3": 0.75}, - {"time": 1.0333, "angle": -8.98, "curve": 0.284, "c3": 0.625, "c4": 0.38}, {"time": 1.0833, "angle": 13.84} + {"angle": 11.48, "curve": 0.355, "c2": 0.41, "c3": 0.699, "c4": 0.78}, {"time": 0.0833, "angle": 2.63, "curve": 0.369, "c2": 0.63, "c3": 0.706}, {"time": 0.1333}, + {"time": 0.3, "angle": -21.01, "curve": 0.25, "c3": 0.75}, {"time": 0.4667, "angle": 24.41, "curve": 0.25, "c3": 0.75}, {"time": 0.75, "angle": -33.25, "curve": 0.25, "c3": 0.75}, + {"time": 1.1333, "angle": 31.64, "curve": 0.245, "c3": 0.637, "c4": 0.56}, {"time": 1.3333, "angle": 11.48} ] }, "body-fur-3": { "rotate": [ - {"angle": 0.58, "curve": 0.381, "c2": 0.55, "c3": 0.742}, {"time": 0.1, "angle": 6.14, "curve": 0.25, "c3": 0.75}, {"time": 0.2667, "angle": -20.35, "curve": 0.25, "c3": 0.75}, - {"time": 0.6, "angle": 10.82, "curve": 0.25, "c3": 0.75}, {"time": 0.9333, "angle": -8.98, "curve": 0.245, "c3": 0.637, "c4": 0.56}, {"time": 1.0833, "angle": 5.54} + {"angle": 11.64, "curve": 0.381, "c2": 0.55, "c3": 0.742}, {"time": 0.1333, "curve": 0.25, "c3": 0.75}, {"time": 0.3, "angle": -21.01, "curve": 0.25, "c3": 0.75}, + {"time": 0.4667, "angle": 24.41, "curve": 0.25, "c3": 0.75}, {"time": 0.75, "angle": -33.25, "curve": 0.25, "c3": 0.75}, + {"time": 1.1333, "angle": 31.64, "curve": 0.245, "c3": 0.637, "c4": 0.56}, {"time": 1.3333, "angle": 11.64} ] }, "body-fur-4": { "rotate": [ - {"angle": -4.66, "curve": 0.327, "c2": 0.31, "c3": 0.685, "c4": 0.72}, {"time": 0.1, "angle": 3.08, "curve": 0.38, "c2": 0.59, "c3": 0.727}, - {"time": 0.1667, "angle": 6.14, "curve": 0.25, "c3": 0.75}, {"time": 0.3333, "angle": -20.35, "curve": 0.25, "c3": 0.75}, {"time": 0.6667, "angle": 10.82, "curve": 0.25, "c3": 0.75}, - {"time": 1, "angle": -8.98, "curve": 0.265, "c3": 0.618, "c4": 0.43}, {"time": 1.0833, "angle": 12.53} + {"angle": 17.76, "curve": 0.349, "c2": 0.39, "c3": 0.707, "c4": 0.8}, {"time": 0.1333, "angle": 2.63, "curve": 0.369, "c2": 0.63, "c3": 0.706}, {"time": 0.1833}, + {"time": 0.35, "angle": -21.01, "curve": 0.25, "c3": 0.75}, {"time": 0.5167, "angle": 24.41, "curve": 0.25, "c3": 0.75}, {"time": 0.8, "angle": -33.25, "curve": 0.25, "c3": 0.75}, + {"time": 1.1833, "angle": 31.64, "curve": 0.253, "c3": 0.621, "c4": 0.48}, {"time": 1.3333, "angle": 17.76} ] }, "body-fur-5": { "rotate": [ - {"angle": 3.08, "curve": 0.38, "c2": 0.59, "c3": 0.727}, {"time": 0.0667, "angle": 6.14, "curve": 0.25, "c3": 0.75}, {"time": 0.2333, "angle": -20.35, "curve": 0.25, "c3": 0.75}, - {"time": 0.5667, "angle": 10.82, "curve": 0.25, "c3": 0.75}, {"time": 0.9, "angle": -8.98, "curve": 0.242, "c3": 0.663, "c4": 0.65}, {"time": 1.0833, "angle": 6.86} + {"angle": 7.66, "curve": 0.382, "c2": 0.58, "c3": 0.731}, {"time": 0.1, "curve": 0.25, "c3": 0.75}, {"time": 0.2667, "angle": -21.01, "curve": 0.25, "c3": 0.75}, + {"time": 0.4333, "angle": 24.41, "curve": 0.25, "c3": 0.75}, {"time": 0.7167, "angle": -33.25, "curve": 0.25, "c3": 0.75}, + {"time": 1.1, "angle": 31.64, "curve": 0.243, "c3": 0.655, "c4": 0.63}, {"time": 1.3333, "angle": 7.66} ] }, "body-fur-6": { "rotate": [ - {"angle": -2.03, "curve": 0.34, "c2": 0.35, "c3": 0.684, "c4": 0.72}, {"time": 0.0667, "angle": 3.08, "curve": 0.38, "c2": 0.59, "c3": 0.727}, {"time": 0.1333, "angle": 6.14}, - {"time": 0.3, "angle": -20.35, "curve": 0.25, "c3": 0.75}, {"time": 0.6333, "angle": 10.82, "curve": 0.25, "c3": 0.75}, - {"time": 0.9667, "angle": -8.98, "curve": 0.252, "c3": 0.622, "c4": 0.48}, {"time": 1.0833, "angle": 13.33} + {"angle": 13.56, "curve": 0.355, "c2": 0.41, "c3": 0.702, "c4": 0.79}, {"time": 0.1, "angle": 2.63, "curve": 0.369, "c2": 0.63, "c3": 0.706}, {"time": 0.15}, + {"time": 0.3167, "angle": -21.01, "curve": 0.25, "c3": 0.75}, {"time": 0.4833, "angle": 24.41, "curve": 0.25, "c3": 0.75}, {"time": 0.7667, "angle": -33.25, "curve": 0.25, "c3": 0.75}, + {"time": 1.15, "angle": 31.64, "curve": 0.247, "c3": 0.63, "c4": 0.53}, {"time": 1.3333, "angle": 13.56} + ] + }, + "body-fur-7": { + "rotate": [ + {"angle": 4.12, "curve": 0.375, "c2": 0.62, "c3": 0.716}, {"time": 0.0667, "curve": 0.25, "c3": 0.75}, {"time": 0.2333, "angle": -21.01, "curve": 0.25, "c3": 0.75}, + {"time": 0.4, "angle": 24.41, "curve": 0.25, "c3": 0.75}, {"time": 0.6833, "angle": -33.25, "curve": 0.25, "c3": 0.75}, + {"time": 1.0667, "angle": 31.64, "curve": 0.243, "c3": 0.68, "c4": 0.71}, {"time": 1.3333, "angle": 4.12} ] }, "body-fur-9": { "rotate": [ - {"angle": -3.36, "curve": 0.335, "c2": 0.34, "c3": 0.685, "c4": 0.72}, {"time": 0.0833, "angle": 3.08, "curve": 0.38, "c2": 0.59, "c3": 0.727}, {"time": 0.15, "angle": 6.14}, - {"time": 0.3167, "angle": -20.35, "curve": 0.25, "c3": 0.75}, {"time": 0.65, "angle": 10.82, "curve": 0.25, "c3": 0.75}, - {"time": 0.9833, "angle": -8.98, "curve": 0.258, "c3": 0.619, "c4": 0.45}, {"time": 1.0833, "angle": 6.86} + {"angle": 9.49, "curve": 0.342, "c2": 0.36, "c3": 0.677, "c4": 0.7}, {"time": 0.0333, "angle": 5.74, "curve": 0.348, "c2": 0.39, "c3": 0.683, "c4": 0.73}, + {"time": 0.0667, "angle": 2.63, "curve": 0.369, "c2": 0.63, "c3": 0.706}, {"time": 0.1167, "curve": 0.25, "c3": 0.75}, {"time": 0.2833, "angle": -21.01, "curve": 0.25, "c3": 0.75}, + {"time": 0.45, "angle": 24.41, "curve": 0.25, "c3": 0.75}, {"time": 0.7333, "angle": -33.25, "curve": 0.25, "c3": 0.75}, + {"time": 1.1167, "angle": 31.64, "curve": 0.244, "c3": 0.646, "c4": 0.59}, {"time": 1.3333, "angle": 9.49} ] } - }, - "drawOrder": [{"time": 0.0667, "offsets": [{"slot": "leg-back-left", "offset": 11}]}, {"time": 0.9}] + } }, - "863131580": { + "2561112030": { "slots": { - "eyes": {"attachment": [{"time": 0.05, "name": "eyes-happy"}, {"time": 2.0833, "name": "eyes"}]}, - "mouth": {"attachment": [{"time": 0.05, "name": "mouth-bite"}, {"time": 2.0833, "name": "mouth"}]} + "eyes": { + "attachment": [ + {"time": 0.05, "name": "eyes-angry"}, {"time": 0.55, "name": "eyes-shut"}, {"time": 0.65, "name": "eyes-angry"}, {"time": 0.9, "name": "eyes-shut"}, {"time": 0.9667, "name": "eyes"} + ] + }, + "mouth": { + "attachment": [ + {"time": 0.1167, "name": "mouth-open"}, {"time": 0.3833, "name": "mouth-bite"}, {"time": 0.65, "name": "mouth-open"}, {"time": 0.9, "name": "mouth-bite"}, + {"time": 0.9667, "name": "mouth"} + ] + } }, "bones": { "@pivot-back": { "rotate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "angle": 6, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.4833, "angle": 7, "curve": 0.317, "c3": 0.693}, - {"time": 0.55, "angle": 6.5, "curve": 0.317, "c3": 0.693}, {"time": 0.6167, "angle": 7, "curve": 0.317, "c3": 0.693}, {"time": 0.6833, "angle": 6.5, "curve": 0, "c2": 0.1, "c3": 0.85}, - {"time": 0.9167, "angle": 8, "curve": 0.317, "c3": 0.693}, {"time": 1.3333, "angle": -7, "curve": 0.461, "c3": 0.543}, {"time": 1.9167, "angle": -9, "curve": 0.154, "c4": 0.9}, - {"time": 2.1667, "angle": 3, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 2.3333} + {"curve": 0, "c2": 0.2, "c3": 0.695}, {"time": 0.1, "angle": 6, "curve": 0, "c2": 0.2, "c3": 0.695}, {"time": 0.25, "angle": -10.31, "curve": 0.317, "c4": 0.8}, + {"time": 0.3833, "angle": 5}, {"time": 0.6333, "angle": 6, "curve": 0, "c2": 0.2, "c3": 0.695}, {"time": 0.7667, "angle": -5.94, "curve": 0.317, "c4": 0.8}, + {"time": 0.9, "angle": 6.92, "curve": 0, "c2": 0.2, "c3": 0.695}, {"time": 1} ], "translate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "x": 7, "y": 6, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.9167, "x": 11, "y": 10, "curve": 0.317, "c3": 0.693}, - {"time": 1.3333, "x": -45, "y": -14, "curve": 0.461, "c3": 0.543}, {"time": 1.9167, "x": -45, "y": -18, "curve": 0.154, "c4": 0.9}, - {"time": 2.1667, "y": 4.23, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 2.3333} + {"time": 0.1, "curve": 0, "c2": 0.2, "c3": 0.695}, {"time": 0.25, "y": 82.86, "curve": 0.317, "c4": 0.8}, {"time": 0.3833, "curve": "stepped"}, + {"time": 0.6333, "curve": 0, "c2": 0.2, "c3": 0.695}, {"time": 0.7667, "y": 70.12, "curve": 0.317, "c4": 0.8}, {"time": 0.9} ] }, - "@leg-front-right": { + "@pivot-main": { + "translate": [{"time": 0.1, "curve": 0, "c2": 0.15, "c3": 0.703}, {"time": 0.3833, "x": 542.6}, {"time": 0.6333, "x": 603.73, "curve": 0, "c2": 0.1, "c3": 0.852}, {"time": 0.9}] + }, + "@leg-front-left": { "translate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "x": -2.08, "y": -23.58, "curve": "stepped"}, {"time": 0.9167, "x": -2.08, "y": -23.58, "curve": 0.317, "c3": 0.693}, - {"time": 1.3333, "x": -56.51, "y": 25.21, "curve": 0.461, "c3": 0.543}, {"time": 1.9167, "x": -57.58, "y": 31.33, "curve": 0.154, "c4": 0.9}, - {"time": 2.1667, "x": -1.95, "y": -12.95, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 2.3333} + {"curve": 0, "c2": 0.2, "c3": 0.695}, {"time": 0.1, "x": -1.93, "y": -18.15, "curve": 0, "c2": 0.3, "c3": 0.62}, {"time": 0.25, "curve": 0.313, "c4": 0.8}, + {"time": 0.3833, "x": -1.93, "y": -18.15}, {"time": 0.6333, "x": -1.68, "y": -15.27, "curve": 0, "c2": 0.2, "c3": 0.691}, {"time": 0.7667, "curve": 0.309, "c4": 0.8}, + {"time": 0.9, "x": -1.93, "y": -18.15, "curve": 0, "c2": 0.19, "c3": 0.695}, {"time": 1} ] }, - "@leg-front-left": { + "@leg-front-right": { "translate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "x": -0.92, "y": -10.48, "curve": "stepped"}, {"time": 0.9167, "x": -0.92, "y": -10.48, "curve": 0.317, "c3": 0.693}, - {"time": 1.3333, "x": -48.7, "y": 5.49, "curve": 0.461, "c3": 0.543}, {"time": 1.9167, "x": -49.1, "y": 7.78, "curve": 0.154, "c4": 0.9}, - {"time": 2.1667, "x": -0.87, "y": -4.98, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 2.3333} + {"curve": 0, "c2": 0.2, "c3": 0.695}, {"time": 0.1, "x": -3.41, "y": -31.95, "curve": 0, "c2": 0.3, "c3": 0.62}, {"time": 0.25, "curve": 0.313, "c4": 0.8}, + {"time": 0.3833, "x": -3.41, "y": -31.95}, {"time": 0.6333, "x": -3.16, "y": -29.07, "curve": 0, "c2": 0.2, "c3": 0.691}, {"time": 0.7667, "curve": 0.309, "c4": 0.8}, + {"time": 0.9, "x": -3.41, "y": -31.95, "curve": 0, "c2": 0.19, "c3": 0.695}, {"time": 1} ] }, "@leg-back-left": { "translate": [ - {"time": 0.25}, {"time": 0.9167, "x": 0.52, "y": 4.2, "curve": 0.317, "c3": 0.693}, {"time": 1.3333, "x": -2.48, "y": -1.61, "curve": "stepped"}, - {"time": 1.9167, "x": -2.48, "y": -1.61, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 2.1667} + {"curve": 0, "c2": 0.2, "c3": 0.695}, {"time": 0.1, "x": -0.42, "y": -4.72, "curve": 0, "c2": 0.3, "c3": 0.62}, {"time": 0.25, "curve": 0.313, "c4": 0.8}, + {"time": 0.3833, "x": -0.42, "y": -4.72, "curve": "stepped"}, {"time": 0.6333, "x": -0.42, "y": -4.72, "curve": 0, "c2": 0.2, "c3": 0.691}, {"time": 0.7667, "curve": 0.309, "c4": 0.8}, + {"time": 0.9, "x": -0.42, "y": -4.72, "curve": 0, "c2": 0.19, "c3": 0.695}, {"time": 1} ] }, - "leg-front-left-IK": { + "leg-front-right-IK": { "translate": [ - {"time": 0.9167, "curve": 0.317, "c3": 0.693}, {"time": 1.3333, "x": -11.56, "curve": "stepped"}, {"time": 1.9167, "x": -11.56, "curve": 0.154, "c4": 0.9}, {"time": 2.1667} + {"time": 0.1, "curve": 0, "c2": 0.3, "c3": 0.62}, {"time": 0.2167, "x": -58.81, "y": 174.08, "curve": 0.257, "c3": 0.637, "c4": 0.43}, + {"time": 0.2833, "x": 10.68, "y": 136.08, "curve": 0.518, "c2": 0.35, "c4": 0.83}, {"time": 0.3833, "x": 11}, {"time": 0.6333, "x": -14.37, "curve": 0, "c2": 0.2, "c3": 0.691}, + {"time": 0.7333, "x": 26.13, "y": 111.42, "curve": 0.257, "c3": 0.63, "c4": 0.42}, {"time": 0.8, "x": -44.87, "y": 129.12, "curve": 0.503, "c2": 0.34, "c4": 0.83}, {"time": 0.9} ] }, - "leg-front-right-IK": { - "translate": [{"time": 0.9167, "curve": 0.317, "c3": 0.693}, {"time": 1.3333, "x": -5.65, "curve": "stepped"}, {"time": 1.9167, "x": -5.65, "curve": 0.154, "c4": 0.9}, {"time": 2.1667}] + "leg-front-left-IK": { + "translate": [ + {"time": 0.1, "curve": 0, "c2": 0.3, "c3": 0.62}, {"time": 0.2167, "x": -73.46, "y": 138.38, "curve": 0.257, "c3": 0.637, "c4": 0.43}, + {"time": 0.2833, "x": -0.77, "y": 108.17, "curve": 0.518, "c2": 0.35, "c4": 0.83}, {"time": 0.3833, "x": 11}, {"time": 0.6333, "x": -14.37, "curve": 0, "c2": 0.2, "c3": 0.691}, + {"time": 0.7333, "x": 11.48, "y": 75.71, "curve": 0.257, "c3": 0.63, "c4": 0.42}, {"time": 0.8, "x": -56.77, "y": 100.13, "curve": 0.503, "c2": 0.34, "c4": 0.83}, {"time": 0.9} + ] }, "leg-back-left-IK": { "translate": [ - {"time": 0.9167, "curve": 0.317, "c3": 0.693}, {"time": 1.3333, "x": -33.62, "curve": "stepped"}, {"time": 1.9167, "x": -33.62, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 2.1667} + {"time": 0.1, "curve": 0, "c2": 0.3, "c3": 0.62}, {"time": 0.2, "x": -56.56, "y": 95.34, "curve": 0.257, "c3": 0.637, "c4": 0.43}, + {"time": 0.2667, "x": 21.01, "y": 67.87, "curve": 0.518, "c2": 0.35, "c4": 0.83}, {"time": 0.3833, "x": 0.85}, {"time": 0.6333, "x": -16.87, "curve": 0, "c2": 0.2, "c3": 0.691}, + {"time": 0.7167, "x": 21.01, "y": 67.87, "curve": 0.257, "c3": 0.63, "c4": 0.42}, {"time": 0.7833, "x": -41.39, "y": 75.95, "curve": 0.503, "c2": 0.34, "c4": 0.83}, {"time": 0.9} ] }, "tail": { "rotate": [ - {"curve": 0, "c2": 0.3, "c3": 0.546}, {"time": 0.25, "angle": 20.35, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.4167, "angle": 15.85, "curve": 0.317, "c3": 0.693}, - {"time": 0.4833, "angle": 17.35, "curve": 0.317, "c3": 0.693}, {"time": 0.55, "angle": 15.85, "curve": 0.317, "c3": 0.693}, {"time": 0.6167, "angle": 18.35, "curve": 0.317, "c3": 0.693}, - {"time": 0.6833, "angle": 16.85, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.9167, "angle": 18.35, "curve": 0.317, "c3": 0.693}, - {"time": 1.3333, "angle": -9.65, "curve": 0.461, "c3": 0.543}, {"time": 1.9167, "angle": -13.65, "curve": 0.154, "c4": 0.9}, - {"time": 2.1667, "angle": 10.35, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 2.3333} + {"curve": 0, "c2": 0.2, "c3": 0.695}, {"time": 0.1, "angle": 21.16, "curve": 0, "c2": 0.2, "c3": 0.695}, {"time": 0.25, "angle": -27.62, "curve": 0.317, "c4": 0.8}, + {"time": 0.3833, "angle": 17.89}, {"time": 0.6333, "angle": 23.46, "curve": 0, "c2": 0.2, "c3": 0.695}, {"time": 0.7667, "angle": -27.7, "curve": 0.317, "c4": 0.8}, + {"time": 0.9, "angle": 21.16, "curve": 0, "c2": 0.2, "c3": 0.695}, {"time": 1} + ] + }, + "@shadow": { + "translate": [{"time": 0.1}, {"time": 0.3833, "x": 542.6}, {"time": 0.6333, "x": 603.73, "curve": 0, "c2": 0.1, "c3": 0.852}, {"time": 0.9}], + "scale": [ + {}, {"time": 0.1, "x": 1.08, "y": 1.08}, {"time": 0.25, "x": 0.9, "y": 0.9}, {"time": 0.3833, "x": 1.08, "y": 1.08}, {"time": 0.6333, "x": 1.1, "y": 1.1}, + {"time": 0.7833, "x": 0.9, "y": 0.9}, {"time": 0.9, "x": 1.08, "y": 1.08}, {"time": 1} ] }, "body-fur-2": { "rotate": [ - {"angle": 3.06, "curve": 0.358, "c2": 0.42, "c3": 0.702, "c4": 0.8}, {"time": 0.1333, "angle": 0.59, "curve": 0.366, "c2": 0.63, "c3": 0.703}, {"time": 0.2, "curve": 0.25, "c3": 0.75}, - {"time": 0.5333, "angle": 26.02, "curve": 0.25, "c3": 0.75}, {"time": 1.0333, "angle": -3.84, "curve": 0.25, "c3": 0.75}, {"time": 1.2, "angle": 5.97, "curve": 0.25, "c3": 0.75}, - {"time": 1.5333, "angle": -24.66, "curve": 0.25, "c3": 0.75}, {"time": 2.0333, "angle": 8.43, "curve": 0.245, "c3": 0.637, "c4": 0.56}, {"time": 2.3333, "angle": 13.84} + {"angle": 34.91, "curve": 0.36, "c2": 0.64, "c3": 0.695}, {"time": 0.0167, "angle": 37.78, "curve": 0.245, "c3": 0.637, "c4": 0.56}, + {"time": 0.0667, "angle": 13.9, "curve": 0.381, "c2": 0.55, "c3": 0.742}, {"time": 0.1}, {"time": 0.1833, "angle": -24.62, "curve": 0.25, "c3": 0.75}, + {"time": 0.3167, "angle": 43.2, "curve": 0.25, "c3": 0.75}, {"time": 0.4833, "angle": -45.45, "curve": 0.25, "c3": 0.75}, {"time": 0.7333, "angle": 40.81, "curve": 0.25, "c3": 0.75}, + {"time": 0.85, "angle": -29.59, "curve": 0.245, "c3": 0.711, "c4": 0.83}, {"time": 1, "angle": 13.84} ] }, "body-fur-9": { "rotate": [ - {"angle": 2.01, "curve": 0.355, "c2": 0.42, "c3": 0.693, "c4": 0.77}, {"time": 0.0833, "angle": 0.59, "curve": 0.366, "c2": 0.63, "c3": 0.703}, {"time": 0.15}, - {"time": 0.4833, "angle": 26.02, "curve": 0.25, "c3": 0.75}, {"time": 0.9833, "angle": -3.84, "curve": 0.25, "c3": 0.75}, {"time": 1.15, "angle": 5.97, "curve": 0.25, "c3": 0.75}, - {"time": 1.4833, "angle": -24.66, "curve": 0.25, "c3": 0.75}, {"time": 1.9833, "angle": 8.43, "curve": 0.243, "c3": 0.655, "c4": 0.63}, {"time": 2.3333, "angle": 6.86} + {"angle": 32.88, "curve": 0.303, "c2": 0.24, "c3": 0.661, "c4": 0.65}, {"time": 0.0333, "angle": 13.9, "curve": 0.381, "c2": 0.55, "c3": 0.742}, {"time": 0.0667}, + {"time": 0.15, "angle": -24.62, "curve": 0.25, "c3": 0.75}, {"time": 0.2833, "angle": 43.2, "curve": 0.25, "c3": 0.75}, {"time": 0.45, "angle": -45.45, "curve": 0.25, "c3": 0.75}, + {"time": 0.7, "angle": 40.81, "curve": 0.25, "c3": 0.75}, {"time": 0.8167, "angle": -29.59, "curve": 0.25, "c3": 0.75}, + {"time": 0.9833, "angle": 37.78, "curve": 0.284, "c3": 0.625, "c4": 0.38}, {"time": 1, "angle": 6.86} ] }, "body-fur-8": { "rotate": [ - {"angle": 0.81, "curve": 0.371, "c2": 0.62, "c3": 0.71}, {"time": 0.0833}, {"time": 0.4167, "angle": 26.02, "curve": 0.25, "c3": 0.75}, - {"time": 0.9167, "angle": -3.84, "curve": 0.25, "c3": 0.75}, {"time": 1.0833, "angle": 5.97, "curve": 0.25, "c3": 0.75}, {"time": 1.4167, "angle": -24.66, "curve": 0.25, "c3": 0.75}, - {"time": 1.9167, "angle": 8.43, "curve": 0.243, "c3": 0.689, "c4": 0.75}, {"time": 2.3333, "angle": -0.91} + {"angle": 13.9, "curve": 0.381, "c2": 0.55, "c3": 0.742}, {"time": 0.0333}, {"time": 0.1167, "angle": -24.62, "curve": 0.25, "c3": 0.75}, + {"time": 0.25, "angle": 43.2, "curve": 0.25, "c3": 0.75}, {"time": 0.4167, "angle": -45.45, "curve": 0.25, "c3": 0.75}, {"time": 0.6667, "angle": 40.81, "curve": 0.25, "c3": 0.75}, + {"time": 0.7833, "angle": -29.59, "curve": 0.25, "c3": 0.75}, {"time": 0.95, "angle": 37.78, "curve": 0.245, "c3": 0.637, "c4": 0.56}, {"time": 1, "angle": -0.91} ] }, "body-fur-7": { "rotate": [ - {"angle": 0.19, "curve": 0.352, "c2": 0.65, "c3": 0.687}, {"time": 0.0333, "curve": 0.25, "c3": 0.75}, {"time": 0.3667, "angle": 26.02, "curve": 0.25, "c3": 0.75}, - {"time": 0.8667, "angle": -3.84, "curve": 0.25, "c3": 0.75}, {"time": 1.0333, "angle": 5.97, "curve": 0.25, "c3": 0.75}, {"time": 1.3667, "angle": -24.66, "curve": 0.25, "c3": 0.75}, - {"time": 1.8667, "angle": 8.43, "curve": 0.246, "c3": 0.723, "c4": 0.88}, {"time": 2.3333, "angle": 2.91} + {"angle": 4.91, "curve": 0.375, "c2": 0.62, "c3": 0.716}, {"time": 0.0167, "curve": 0.25, "c3": 0.75}, {"time": 0.1, "angle": -24.62, "curve": 0.25, "c3": 0.75}, + {"time": 0.2333, "angle": 43.2, "curve": 0.25, "c3": 0.75}, {"time": 0.4, "angle": -45.45, "curve": 0.25, "c3": 0.75}, {"time": 0.65, "angle": 40.81, "curve": 0.25, "c3": 0.75}, + {"time": 0.7667, "angle": -29.59, "curve": 0.25, "c3": 0.75}, {"time": 0.9333, "angle": 37.78, "curve": 0.243, "c3": 0.68, "c4": 0.71}, {"time": 1, "angle": 2.91} ] }, "body-fur-6": { "rotate": [ - {"angle": 1.69, "curve": 0.352, "c2": 0.41, "c3": 0.688, "c4": 0.76}, {"time": 0.0667, "angle": 0.59, "curve": 0.366, "c2": 0.63, "c3": 0.703}, {"time": 0.1333}, - {"time": 0.4667, "angle": 26.02, "curve": 0.25, "c3": 0.75}, {"time": 0.9667, "angle": -3.84, "curve": 0.25, "c3": 0.75}, {"time": 1.1333, "angle": 5.97, "curve": 0.25, "c3": 0.75}, - {"time": 1.4667, "angle": -24.66, "curve": 0.25, "c3": 0.75}, {"time": 1.9667, "angle": 8.43, "curve": 0.242, "c3": 0.663, "c4": 0.65}, {"time": 2.3333, "angle": 13.33} + {"angle": 32.88, "curve": 0.303, "c2": 0.24, "c3": 0.661, "c4": 0.65}, {"time": 0.0333, "angle": 13.9, "curve": 0.381, "c2": 0.55, "c3": 0.742}, + {"time": 0.0667, "curve": 0.25, "c3": 0.75}, {"time": 0.15, "angle": -24.62, "curve": 0.25, "c3": 0.75}, {"time": 0.2833, "angle": 43.2, "curve": 0.25, "c3": 0.75}, + {"time": 0.45, "angle": -45.45, "curve": 0.25, "c3": 0.75}, {"time": 0.7, "angle": 40.81, "curve": 0.25, "c3": 0.75}, {"time": 0.8167, "angle": -29.59, "curve": 0.25, "c3": 0.75}, + {"time": 0.9833, "angle": 37.78, "curve": 0.284, "c3": 0.625, "c4": 0.38}, {"time": 1, "angle": 13.33} ] }, "body-fur-5": { "rotate": [ - {"angle": 0.59, "curve": 0.366, "c2": 0.63, "c3": 0.703}, {"time": 0.0667}, {"time": 0.4, "angle": 26.02, "curve": 0.25, "c3": 0.75}, - {"time": 0.9, "angle": -3.84, "curve": 0.25, "c3": 0.75}, {"time": 1.0667, "angle": 5.97, "curve": 0.25, "c3": 0.75}, {"time": 1.4, "angle": -24.66, "curve": 0.25, "c3": 0.75}, - {"time": 1.9, "angle": 8.43, "curve": 0.244, "c3": 0.7, "c4": 0.79}, {"time": 2.3333, "angle": 6.86} + {"angle": 13.9, "curve": 0.381, "c2": 0.55, "c3": 0.742}, {"time": 0.0333}, {"time": 0.1167, "angle": -24.62, "curve": 0.25, "c3": 0.75}, + {"time": 0.25, "angle": 43.2, "curve": 0.25, "c3": 0.75}, {"time": 0.4167, "angle": -45.45, "curve": 0.25, "c3": 0.75}, {"time": 0.6667, "angle": 40.81, "curve": 0.25, "c3": 0.75}, + {"time": 0.7833, "angle": -29.59, "curve": 0.25, "c3": 0.75}, {"time": 0.95, "angle": 37.78, "curve": 0.245, "c3": 0.637, "c4": 0.56}, {"time": 1, "angle": 6.86} ] }, "body-fur-4": { "rotate": [ - {"angle": 2.35, "curve": 0.356, "c2": 0.42, "c3": 0.696, "c4": 0.78}, {"time": 0.1, "angle": 0.59, "curve": 0.366, "c2": 0.63, "c3": 0.703}, {"time": 0.1667}, - {"time": 0.5, "angle": 26.02, "curve": 0.25, "c3": 0.75}, {"time": 1, "angle": -3.84, "curve": 0.25, "c3": 0.75}, {"time": 1.1667, "angle": 5.97, "curve": 0.25, "c3": 0.75}, - {"time": 1.5, "angle": -24.66, "curve": 0.25, "c3": 0.75}, {"time": 2, "angle": 8.43, "curve": 0.243, "c3": 0.649, "c4": 0.6}, {"time": 2.3333, "angle": 12.53} + {"angle": 37.78, "curve": 0.245, "c3": 0.637, "c4": 0.56}, {"time": 0.05, "angle": 13.9, "curve": 0.381, "c2": 0.55, "c3": 0.742}, {"time": 0.0833}, + {"time": 0.1667, "angle": -24.62, "curve": 0.25, "c3": 0.75}, {"time": 0.3, "angle": 43.2, "curve": 0.25, "c3": 0.75}, {"time": 0.4667, "angle": -45.45, "curve": 0.25, "c3": 0.75}, + {"time": 0.7167, "angle": 40.81, "curve": 0.25, "c3": 0.75}, {"time": 0.8333, "angle": -29.59, "curve": 0.25, "c3": 0.75}, {"time": 1, "angle": 12.53} ] }, "body-fur-3": { "rotate": [ - {"angle": 1.1, "curve": 0.375, "c2": 0.62, "c3": 0.716}, {"time": 0.1}, {"time": 0.4333, "angle": 26.02, "curve": 0.25, "c3": 0.75}, - {"time": 0.9333, "angle": -3.84, "curve": 0.25, "c3": 0.75}, {"time": 1.1, "angle": 5.97, "curve": 0.25, "c3": 0.75}, {"time": 1.4333, "angle": -24.66, "curve": 0.25, "c3": 0.75}, - {"time": 1.9333, "angle": 8.43, "curve": 0.243, "c3": 0.68, "c4": 0.71}, {"time": 2.3333, "angle": 5.54} + {"angle": 23.88, "curve": 0.363, "c2": 0.44, "c3": 0.755}, {"time": 0.05}, {"time": 0.1333, "angle": -24.62, "curve": 0.25, "c3": 0.75}, + {"time": 0.2667, "angle": 43.2, "curve": 0.25, "c3": 0.75}, {"time": 0.4333, "angle": -45.45, "curve": 0.25, "c3": 0.75}, {"time": 0.6833, "angle": 40.81, "curve": 0.25, "c3": 0.75}, + {"time": 0.8, "angle": -29.59, "curve": 0.25, "c3": 0.75}, {"time": 0.9667, "angle": 37.78, "curve": 0.258, "c3": 0.619, "c4": 0.45}, {"time": 1, "angle": 5.54} ] }, "body-fur-1": { "rotate": [ - {"angle": 1.71, "curve": 0.38, "c2": 0.59, "c3": 0.727}, {"time": 0.1333, "curve": 0.25, "c3": 0.75}, {"time": 0.4667, "angle": 26.02, "curve": 0.25, "c3": 0.75}, - {"time": 0.9667, "angle": -3.84, "curve": 0.25, "c3": 0.75}, {"time": 1.1333, "angle": 5.97, "curve": 0.25, "c3": 0.75}, {"time": 1.4667, "angle": -24.66, "curve": 0.25, "c3": 0.75}, - {"time": 1.9667, "angle": 8.43, "curve": 0.242, "c3": 0.663, "c4": 0.65}, {"time": 2.3333, "angle": 10.51} + {"angle": 32.86, "curve": 0.32, "c2": 0.29, "c3": 0.757}, {"time": 0.0667}, {"time": 0.15, "angle": -24.62, "curve": 0.25, "c3": 0.75}, + {"time": 0.2833, "angle": 43.2, "curve": 0.25, "c3": 0.75}, {"time": 0.45, "angle": -45.45, "curve": 0.25, "c3": 0.75}, {"time": 0.7, "angle": 40.81, "curve": 0.25, "c3": 0.75}, + {"time": 0.8167, "angle": -29.59, "curve": 0.25, "c3": 0.75}, {"time": 0.9833, "angle": 37.78, "curve": 0.284, "c3": 0.625, "c4": 0.38}, {"time": 1, "angle": 10.51} ] } } }, - "3268849333": { + "3241199930": { "slots": { - "eyes": {"attachment": [{"time": 0.3, "name": "eyes-angry"}, {"time": 1.2333, "name": "eyes"}]}, - "mouth": {"attachment": [{"time": 0.3, "name": "mouth-bite"}, {"time": 1.2333, "name": "mouth"}]} + "eyes": { + "attachment": [ + {"time": 0.1333, "name": "eyes-shut"}, {"time": 0.2, "name": "eyes"}, {"time": 0.55, "name": "eyes-shut"}, {"time": 0.6167, "name": "eyes"}, {"time": 0.9667, "name": "eyes-shut"} + ] + }, + "mouth": { + "attachment": [ + {"time": 0.1833, "name": "mouth-open"}, {"time": 0.5, "name": "mouth"}, {"time": 0.6, "name": "mouth-open"}, {"time": 0.9, "name": "mouth"}, {"time": 0.9667, "name": "mouth-bite"} + ] + } }, "bones": { "@pivot-back": { "rotate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1, "angle": 6, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.2, "angle": -6, "curve": 0.315, "c4": 0.8}, - {"time": 0.3, "angle": 5.5, "curve": 0.317, "c3": 0.693}, {"time": 0.3833, "angle": 4.5, "curve": 0.317, "c3": 0.693}, {"time": 0.4667, "angle": 5.5, "curve": 0.317, "c3": 0.693}, - {"time": 0.55, "angle": 4.5, "curve": 0.317, "c3": 0.693}, {"time": 0.6333, "angle": 5.5, "curve": 0.317, "c3": 0.693}, {"time": 0.7167, "angle": 4.5, "curve": 0.317, "c3": 0.693}, - {"time": 0.8, "angle": 5.5, "curve": 0.317, "c3": 0.693}, {"time": 0.8833, "angle": 4.5, "curve": 0.317, "c3": 0.693}, {"time": 0.9667, "angle": 5.5, "curve": 0.317, "c3": 0.693}, - {"time": 1.05, "angle": 4.5, "curve": 0.317, "c3": 0.693}, {"time": 1.1333, "angle": 5.5, "curve": 0.317, "c3": 0.693}, {"time": 1.2167, "angle": 6, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 1.3167, "angle": -3, "curve": 0.315, "c4": 0.8}, {"time": 1.4167} + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "angle": 3.53, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "angle": -10.14, "curve": 0.315, "c4": 0.8}, + {"time": 0.5, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5833, "angle": 3.53, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.75, "angle": -10.14, "curve": 0.315, "c4": 0.8}, + {"time": 0.9167, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1.0833, "angle": 5.43}, {"time": 1.15, "angle": 3.94}, {"time": 1.2, "angle": 5.43}, {"time": 1.2333, "angle": 3.94}, + {"time": 1.2667, "angle": 5.43}, {"time": 1.3, "angle": 3.94}, {"time": 1.3333, "angle": 5.43}, {"time": 1.3667, "angle": 3.94}, {"time": 1.4, "angle": 5.43}, + {"time": 1.4333, "angle": 3.94}, {"time": 1.4667, "angle": 5.43}, {"time": 1.5, "angle": 3.94} ], "translate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1, "y": 4.69, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.2, "y": 43.73, "curve": 0.315, "c4": 0.8}, - {"time": 0.3, "y": 3.84, "curve": "stepped"}, {"time": 1.2167, "y": 3.84, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1.3167, "y": 43.73, "curve": 0.315, "c4": 0.8}, {"time": 1.4167} - ] - }, - "@leg-front-left": { - "translate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1, "x": -1.28, "y": -14.48, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.2, "curve": 0.315, "c4": 0.8}, - {"time": 0.3, "x": -1.28, "y": -14.48, "curve": 0.317, "c3": 0.693}, {"time": 0.3833, "x": -1.02, "y": -10.26, "curve": 0.317, "c3": 0.693}, - {"time": 0.4667, "x": -1.22, "y": -13.05, "curve": 0.317, "c3": 0.693}, {"time": 0.55, "x": -1.02, "y": -10.26, "curve": 0.317, "c3": 0.693}, - {"time": 0.6333, "x": -1.22, "y": -13.05, "curve": 0.317, "c3": 0.693}, {"time": 0.7167, "x": -1.02, "y": -10.26, "curve": 0.317, "c3": 0.693}, - {"time": 0.8, "x": -1.22, "y": -13.05, "curve": 0.317, "c3": 0.693}, {"time": 0.8833, "x": -1.02, "y": -10.26, "curve": 0.317, "c3": 0.693}, - {"time": 0.9667, "x": -1.22, "y": -13.05, "curve": 0.317, "c3": 0.693}, {"time": 1.05, "x": -1.02, "y": -10.26, "curve": 0.317, "c3": 0.693}, - {"time": 1.1333, "x": -1.22, "y": -13.05, "curve": 0.317, "c3": 0.693}, {"time": 1.2167, "x": -1.28, "y": -14.48, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1.3167} + {"y": 44.46, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "y": 12.46, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "y": 209.26, "curve": 0.315, "c4": 0.8}, + {"time": 0.5, "y": 44.46, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5833, "y": 12.46, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.75, "y": 209.26, "curve": 0.315, "c4": 0.8}, + {"time": 0.9167, "y": 44.46} ] }, "@leg-front-right": { - "translate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1, "x": -2.46, "y": -27.93, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.2, "curve": 0.315, "c4": 0.8}, - {"time": 0.3, "x": -2.46, "y": -27.93, "curve": 0.317, "c3": 0.693}, {"time": 0.3833, "x": -2.06, "y": -21.45, "curve": 0.317, "c3": 0.693}, - {"time": 0.4667, "x": -2.44, "y": -26.54, "curve": 0.317, "c3": 0.693}, {"time": 0.55, "x": -2.06, "y": -21.45, "curve": 0.317, "c3": 0.693}, - {"time": 0.6333, "x": -2.44, "y": -26.54, "curve": 0.317, "c3": 0.693}, {"time": 0.7167, "x": -2.06, "y": -21.45, "curve": 0.317, "c3": 0.693}, - {"time": 0.8, "x": -2.44, "y": -26.54, "curve": 0.317, "c3": 0.693}, {"time": 0.8833, "x": -2.06, "y": -21.45, "curve": 0.317, "c3": 0.693}, - {"time": 0.9667, "x": -2.44, "y": -26.54, "curve": 0.317, "c3": 0.693}, {"time": 1.05, "x": -2.06, "y": -21.45, "curve": 0.317, "c3": 0.693}, - {"time": 1.1333, "x": -2.44, "y": -26.54, "curve": 0.317, "c3": 0.693}, {"time": 1.2167, "x": -2.46, "y": -27.93, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1.3167} + "rotate": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "angle": -14.05, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "angle": 13.89, "curve": 0.315, "c4": 0.8}, + {"time": 0.5, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5833, "angle": -12.58, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.75, "angle": 13.89, "curve": 0.315, "c4": 0.8}, + {"time": 0.9167, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1.0833, "angle": -12.58} ] }, - "@pivot-main": { - "translate": [ - {"time": 0.1, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.3, "x": -154.22, "curve": "stepped"}, {"time": 1.2167, "x": -154.22, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 1.4167} + "@leg-front-left": { + "rotate": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "angle": -14.05, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "angle": 13.89, "curve": 0.315, "c4": 0.8}, + {"time": 0.5, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5833, "angle": -12.58, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.75, "angle": 13.89, "curve": 0.315, "c4": 0.8}, + {"time": 0.9167, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1.0833, "angle": -12.58} ] }, - "leg-front-left-IK": {"translate": [{"time": 1.2167, "curve": 0.315, "c4": 0.8}, {"time": 1.3167, "x": -61.13, "curve": 0.315, "c4": 0.8}, {"time": 1.4167}]}, - "leg-front-right-IK": {"translate": [{"time": 1.2167, "curve": 0.315, "c4": 0.8}, {"time": 1.3167, "x": -61.13, "curve": 0.315, "c4": 0.8}, {"time": 1.4167}]}, - "@shadow": { - "translate": [ - {"time": 0.1, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.3, "x": -162.84, "curve": "stepped"}, {"time": 1.2167, "x": -162.84, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 1.4167} - ], - "scale": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1, "x": 1.1, "y": 1.1, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.2, "x": 0.92, "y": 0.92, "curve": 0.315, "c4": 0.8}, - {"time": 0.3, "x": 1.1, "y": 1.1, "curve": 0.317, "c3": 0.693}, {"time": 0.3833, "x": 1.06, "y": 1.06, "curve": 0.317, "c3": 0.693}, - {"time": 0.4667, "x": 1.1, "y": 1.1, "curve": 0.317, "c3": 0.693}, {"time": 0.55, "x": 1.06, "y": 1.06, "curve": 0.317, "c3": 0.693}, - {"time": 0.6333, "x": 1.1, "y": 1.1, "curve": 0.317, "c3": 0.693}, {"time": 0.7167, "x": 1.06, "y": 1.06, "curve": 0.317, "c3": 0.693}, - {"time": 0.8, "x": 1.1, "y": 1.1, "curve": 0.317, "c3": 0.693}, {"time": 0.8833, "x": 1.06, "y": 1.06, "curve": 0.317, "c3": 0.693}, - {"time": 0.9667, "x": 1.1, "y": 1.1, "curve": 0.317, "c3": 0.693}, {"time": 1.05, "x": 1.06, "y": 1.06, "curve": 0.317, "c3": 0.693}, - {"time": 1.1333, "x": 1.1, "y": 1.1, "curve": "stepped"}, {"time": 1.2167, "x": 1.1, "y": 1.1, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 1.3167, "x": 0.92, "y": 0.92, "curve": 0.315, "c4": 0.8}, {"time": 1.4167} + "@leg-back-left": { + "rotate": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "angle": -14.05, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "angle": 13.89, "curve": 0.315, "c4": 0.8}, + {"time": 0.5, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5833, "angle": -12.58, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.75, "angle": 13.89, "curve": 0.315, "c4": 0.8}, + {"time": 0.9167, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1.0833, "angle": -12.58} ] }, "tail": { "rotate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1, "angle": 16.7, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.2, "angle": -16.65, "curve": 0.315, "c4": 0.8}, - {"time": 0.3, "angle": 17.85, "curve": 0.317, "c3": 0.693}, {"time": 0.4333, "angle": 15.5, "curve": 0.317, "c3": 0.693}, {"time": 0.5667, "angle": 17.85, "curve": 0.317, "c3": 0.693}, - {"time": 0.7, "angle": 15.5, "curve": 0.317, "c3": 0.693}, {"time": 0.8333, "angle": 17.85, "curve": 0.317, "c3": 0.693}, {"time": 0.95, "angle": 15.5, "curve": 0.317, "c3": 0.693}, - {"time": 1.0833, "angle": 17.85, "curve": 0.317, "c3": 0.693}, {"time": 1.2167, "angle": 15.5, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 1.3167, "angle": -14.65, "curve": 0.315, "c4": 0.8}, {"time": 1.4167} + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "angle": 14.79, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "angle": -27.83, "curve": "stepped"}, + {"time": 0.3333, "angle": -27.83, "curve": 0.313, "c3": 0.691}, {"time": 0.5, "angle": 14.79, "curve": "stepped"}, {"time": 0.5833, "angle": 14.79, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.6667, "angle": -27.83, "curve": "stepped"}, {"time": 0.75, "angle": -27.83, "curve": 0.313, "c3": 0.691}, {"time": 0.9167, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 1.0833, "angle": 12.48, "curve": 0.313, "c3": 0.691}, {"time": 1.15, "angle": 9.69, "curve": 0.313, "c3": 0.691}, {"time": 1.2, "angle": 12.48, "curve": 0.161, "c3": 0.854}, + {"time": 1.2333, "angle": 9.69, "curve": 0.161, "c3": 0.854}, {"time": 1.2667, "angle": 12.48, "curve": 0.161, "c3": 0.854}, {"time": 1.3, "angle": 9.69, "curve": 0.161, "c3": 0.854}, + {"time": 1.3333, "angle": 12.48, "curve": 0.161, "c3": 0.854}, {"time": 1.3667, "angle": 9.69, "curve": 0.161, "c3": 0.854}, {"time": 1.4, "angle": 12.48, "curve": 0.161, "c3": 0.854}, + {"time": 1.4333, "angle": 9.69, "curve": 0.161, "c3": 0.854}, {"time": 1.4667, "angle": 12.48, "curve": 0.161, "c3": 0.854}, {"time": 1.5, "angle": 9.69} ] }, - "back": { - "rotate": [ - {"time": 0.3, "curve": 0.306, "c3": 0.695}, {"time": 0.4833, "angle": 5.93, "curve": 0.306, "c3": 0.695}, {"time": 0.65, "curve": 0.306, "c3": 0.695}, - {"time": 0.8333, "angle": 5.93, "curve": 0.306, "c3": 0.695}, {"time": 1.0167, "curve": 0.306, "c3": 0.695}, {"time": 1.2167, "angle": 5.93, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 1.4167} + "@shadow": { + "scale": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": 1.1, "y": 1.1, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "x": 0.9, "y": 0.9, "curve": 0.315, "c4": 0.8}, + {"time": 0.5833, "x": 1.1, "y": 1.1, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.75, "x": 0.9, "y": 0.9, "curve": 0.315, "c4": 0.8}, + {"time": 0.9167, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1.0833, "x": 1.05, "y": 1.05}, {"time": 1.15}, {"time": 1.2, "x": 1.05, "y": 1.05}, {"time": 1.25}, + {"time": 1.3, "x": 1.05, "y": 1.05}, {"time": 1.35}, {"time": 1.4, "x": 1.05, "y": 1.05}, {"time": 1.45}, {"time": 1.5, "x": 1.05, "y": 1.05} ] }, - "body-fur-2": { + "body-fur-8": { "rotate": [ - {"angle": -5.94, "curve": 0.338, "c2": 0.35, "c3": 0.688, "c4": 0.73}, {"time": 0.0667, "angle": -12.33, "curve": 0.379, "c2": 0.6, "c3": 0.724}, {"time": 0.1167, "angle": -15.12}, - {"time": 0.2, "angle": 13.82, "curve": 0.25, "c3": 0.75}, {"time": 0.3167, "angle": -26.73, "curve": 0.25, "c3": 0.75}, {"time": 0.45, "angle": 21.85, "curve": 0.25, "c3": 0.75}, - {"time": 0.6833, "angle": -18.74, "curve": 0.25, "c3": 0.75}, {"time": 0.9167, "angle": 0.46, "curve": 0.25, "c3": 0.75}, {"time": 1.1333, "angle": -18.54, "curve": 0.25, "c3": 0.75}, - {"time": 1.3333, "curve": 0.256, "c3": 0.619, "c4": 0.46}, {"time": 1.4167, "angle": 13.84} + {"angle": 5.95, "curve": 0.375, "c2": 0.5, "c3": 0.75}, {"time": 0.0833}, {"time": 0.25, "angle": 30.26, "curve": 0.25, "c3": 0.75}, + {"time": 0.45, "angle": -24.2, "curve": 0.25, "c3": 0.75}, {"time": 0.6167, "angle": 21.17, "curve": 0.25, "c3": 0.75}, {"time": 0.8167, "angle": -32.4, "curve": 0.25, "c3": 0.75}, + {"time": 1.0833, "angle": 24.01, "curve": 0.25, "c3": 0.75}, {"time": 1.25, "angle": -15.47, "curve": 0.25, "c3": 0.75}, + {"time": 1.4167, "angle": 11.9, "curve": 0.25, "c3": 0.625, "c4": 0.5}, {"time": 1.5, "angle": 5.95} ] }, - "body-fur-9": { + "body-fur-1": { "rotate": [ - {"angle": -9.27, "curve": 0.344, "c2": 0.37, "c3": 0.682, "c4": 0.72}, {"time": 0.0333, "angle": -12.33, "curve": 0.379, "c2": 0.6, "c3": 0.724}, - {"time": 0.0833, "angle": -15.12, "curve": 0.25, "c3": 0.75}, {"time": 0.1667, "angle": 13.82, "curve": 0.25, "c3": 0.75}, {"time": 0.2833, "angle": -26.73, "curve": 0.25, "c3": 0.75}, - {"time": 0.4167, "angle": 21.85, "curve": 0.25, "c3": 0.75}, {"time": 0.65, "angle": -18.74, "curve": 0.25, "c3": 0.75}, {"time": 0.8833, "angle": 0.46, "curve": 0.25, "c3": 0.75}, - {"time": 1.1, "angle": -18.54, "curve": 0.25, "c3": 0.75}, {"time": 1.3, "curve": 0.246, "c3": 0.635, "c4": 0.55}, {"time": 1.4167, "angle": 6.86} + {"angle": 5.95, "curve": 0.375, "c2": 0.5, "c3": 0.75}, {"time": 0.0833}, {"time": 0.25, "angle": 30.26, "curve": 0.25, "c3": 0.75}, + {"time": 0.45, "angle": -24.2, "curve": 0.25, "c3": 0.75}, {"time": 0.6167, "angle": 21.17, "curve": 0.25, "c3": 0.75}, {"time": 0.8167, "angle": -32.4, "curve": 0.25, "c3": 0.75}, + {"time": 1.0833, "angle": 24.01, "curve": 0.25, "c3": 0.75}, {"time": 1.25, "angle": -15.47, "curve": 0.25, "c3": 0.75}, + {"time": 1.4167, "angle": 11.9, "curve": 0.25, "c3": 0.625, "c4": 0.5}, {"time": 1.5, "angle": 5.95} ] }, - "body-fur-8": { + "body-fur-2": { "rotate": [ - {"angle": -13.66, "curve": 0.371, "c2": 0.62, "c3": 0.71}, {"time": 0.0333, "angle": -15.12}, {"time": 0.1167, "angle": 13.82, "curve": 0.25, "c3": 0.75}, - {"time": 0.2333, "angle": -26.73, "curve": 0.25, "c3": 0.75}, {"time": 0.3667, "angle": 21.85, "curve": 0.25, "c3": 0.75}, {"time": 0.6, "angle": -18.74, "curve": 0.25, "c3": 0.75}, - {"time": 0.8333, "angle": 0.46, "curve": 0.25, "c3": 0.75}, {"time": 1.05, "angle": -18.54, "curve": 0.25, "c3": 0.75}, {"time": 1.25, "curve": 0.243, "c3": 0.689, "c4": 0.75}, - {"time": 1.4167, "angle": -0.91} + {"angle": 10.34, "curve": 0.303, "c2": 0.24, "c3": 0.674, "c4": 0.69}, {"time": 0.0833, "angle": 2.88, "curve": 0.382, "c2": 0.58, "c3": 0.731}, {"time": 0.1333}, + {"time": 0.3, "angle": 30.26, "curve": 0.25, "c3": 0.75}, {"time": 0.5, "angle": -24.2, "curve": 0.25, "c3": 0.75}, {"time": 0.6667, "angle": 21.17, "curve": 0.25, "c3": 0.75}, + {"time": 0.8667, "angle": -32.4, "curve": 0.25, "c3": 0.75}, {"time": 1.1333, "angle": 24.01, "curve": 0.25, "c3": 0.75}, {"time": 1.3, "angle": -15.47, "curve": 0.25, "c3": 0.75}, + {"time": 1.4667, "angle": 11.9, "curve": 0.284, "c3": 0.625, "c4": 0.38}, {"time": 1.5, "angle": 10.34} ] }, - "body-fur-7": { + "body-fur-3": { "rotate": [ - {"angle": -10.83, "curve": 0.382, "c2": 0.57, "c3": 0.735}, {"time": 0.0667, "angle": -15.12, "curve": 0.25, "c3": 0.75}, {"time": 0.15, "angle": 13.82, "curve": 0.25, "c3": 0.75}, - {"time": 0.2667, "angle": -26.73, "curve": 0.25, "c3": 0.75}, {"time": 0.4, "angle": 21.85, "curve": 0.25, "c3": 0.75}, {"time": 0.6333, "angle": -18.74, "curve": 0.25, "c3": 0.75}, - {"time": 0.8667, "angle": 0.46, "curve": 0.25, "c3": 0.75}, {"time": 1.0833, "angle": -18.54, "curve": 0.25, "c3": 0.75}, {"time": 1.2833, "curve": 0.243, "c3": 0.649, "c4": 0.6}, - {"time": 1.4167, "angle": 2.91} + {"angle": 10.35, "curve": 0.32, "c2": 0.29, "c3": 0.757}, {"time": 0.1333}, {"time": 0.3, "angle": 30.26, "curve": 0.25, "c3": 0.75}, + {"time": 0.5, "angle": -24.2, "curve": 0.25, "c3": 0.75}, {"time": 0.6667, "angle": 21.17, "curve": 0.25, "c3": 0.75}, {"time": 0.8667, "angle": -32.4, "curve": 0.25, "c3": 0.75}, + {"time": 1.1333, "angle": 24.01, "curve": 0.25, "c3": 0.75}, {"time": 1.3, "angle": -15.47, "curve": 0.25, "c3": 0.75}, + {"time": 1.4667, "angle": 11.9, "curve": 0.284, "c3": 0.625, "c4": 0.38}, {"time": 1.5, "angle": 10.35} ] }, - "body-fur-6": { + "body-fur-4": { "rotate": [ - {"angle": -2.81, "curve": 0.314, "c2": 0.27, "c3": 0.686, "c4": 0.73}, {"time": 0.1, "angle": -12.33, "curve": 0.379, "c2": 0.6, "c3": 0.724}, {"time": 0.15, "angle": -15.12}, - {"time": 0.2333, "angle": 13.82, "curve": 0.25, "c3": 0.75}, {"time": 0.35, "angle": -26.73, "curve": 0.25, "c3": 0.75}, {"time": 0.4833, "angle": 21.85, "curve": 0.25, "c3": 0.75}, - {"time": 0.7167, "angle": -18.74, "curve": 0.25, "c3": 0.75}, {"time": 0.95, "angle": 0.46, "curve": 0.25, "c3": 0.75}, {"time": 1.1667, "angle": -18.54, "curve": 0.25, "c3": 0.75}, - {"time": 1.3667, "curve": 0.276, "c3": 0.621, "c4": 0.4}, {"time": 1.4167, "angle": 13.33} + {"angle": 10.73, "curve": 0.36, "c2": 0.64, "c3": 0.695}, {"time": 0.0167, "angle": 11.9, "curve": 0.243, "c3": 0.655, "c4": 0.63}, + {"time": 0.1333, "angle": 2.88, "curve": 0.382, "c2": 0.58, "c3": 0.731}, {"time": 0.1833}, {"time": 0.35, "angle": 30.26, "curve": 0.25, "c3": 0.75}, + {"time": 0.55, "angle": -24.2, "curve": 0.25, "c3": 0.75}, {"time": 0.7167, "angle": 21.17, "curve": 0.25, "c3": 0.75}, {"time": 0.9167, "angle": -32.4, "curve": 0.25, "c3": 0.75}, + {"time": 1.1833, "angle": 24.01, "curve": 0.25, "c3": 0.75}, {"time": 1.35, "angle": -15.47, "curve": 0.245, "c3": 0.711, "c4": 0.83}, {"time": 1.5, "angle": 10.73} ] }, "body-fur-5": { "rotate": [ - {"angle": -7.56, "curve": 0.375, "c2": 0.5, "c3": 0.75}, {"time": 0.1, "angle": -15.12}, {"time": 0.1833, "angle": 13.82, "curve": 0.25, "c3": 0.75}, - {"time": 0.3, "angle": -26.73, "curve": 0.25, "c3": 0.75}, {"time": 0.4333, "angle": 21.85, "curve": 0.25, "c3": 0.75}, {"time": 0.6667, "angle": -18.74, "curve": 0.25, "c3": 0.75}, - {"time": 0.9, "angle": 0.46, "curve": 0.25, "c3": 0.75}, {"time": 1.1167, "angle": -18.54, "curve": 0.25, "c3": 0.75}, {"time": 1.3167, "curve": 0.25, "c3": 0.625, "c4": 0.5}, - {"time": 1.4167, "angle": 6.86} + {"angle": 7.52, "curve": 0.363, "c2": 0.44, "c3": 0.755}, {"time": 0.1, "curve": 0.25, "c3": 0.75}, {"time": 0.2667, "angle": 30.26, "curve": 0.25, "c3": 0.75}, + {"time": 0.4667, "angle": -24.2, "curve": 0.25, "c3": 0.75}, {"time": 0.6333, "angle": 21.17, "curve": 0.25, "c3": 0.75}, {"time": 0.8333, "angle": -32.4, "curve": 0.25, "c3": 0.75}, + {"time": 1.1, "angle": 24.01, "curve": 0.25, "c3": 0.75}, {"time": 1.2667, "angle": -15.47, "curve": 0.25, "c3": 0.75}, + {"time": 1.4333, "angle": 11.9, "curve": 0.258, "c3": 0.619, "c4": 0.45}, {"time": 1.5, "angle": 7.52} ] }, - "body-fur-4": { + "body-fur-6": { "rotate": [ - {"angle": -0.48, "curve": 0.272, "c2": 0.12, "c3": 0.675, "c4": 0.7}, {"time": 0.1333, "angle": -12.33, "curve": 0.379, "c2": 0.6, "c3": 0.724}, {"time": 0.1833, "angle": -15.12}, - {"time": 0.2667, "angle": 13.82, "curve": 0.25, "c3": 0.75}, {"time": 0.3833, "angle": -26.73, "curve": 0.25, "c3": 0.75}, {"time": 0.5167, "angle": 21.85, "curve": 0.25, "c3": 0.75}, - {"time": 0.75, "angle": -18.74, "curve": 0.25, "c3": 0.75}, {"time": 0.9833, "angle": 0.46, "curve": 0.25, "c3": 0.75}, {"time": 1.2, "angle": -18.54, "curve": 0.25, "c3": 0.75}, - {"time": 1.4, "curve": 0.309, "c3": 0.644, "c4": 0.35}, {"time": 1.4167, "angle": 12.53} + {"angle": 11.4, "curve": 0.277, "c2": 0.14, "c3": 0.667, "c4": 0.67}, {"time": 0.1, "angle": 2.88, "curve": 0.382, "c2": 0.58, "c3": 0.731}, {"time": 0.15, "curve": 0.25, "c3": 0.75}, + {"time": 0.3167, "angle": 30.26, "curve": 0.25, "c3": 0.75}, {"time": 0.5167, "angle": -24.2, "curve": 0.25, "c3": 0.75}, {"time": 0.6833, "angle": 21.17, "curve": 0.25, "c3": 0.75}, + {"time": 0.8833, "angle": -32.4, "curve": 0.25, "c3": 0.75}, {"time": 1.15, "angle": 24.01, "curve": 0.25, "c3": 0.75}, {"time": 1.3167, "angle": -15.47, "curve": 0.25, "c3": 0.75}, + {"time": 1.4833, "angle": 11.9, "curve": 0.305, "c3": 0.64, "c4": 0.36}, {"time": 1.5, "angle": 11.4} ] }, - "body-fur-3": { + "body-fur-7": { "rotate": [ - {"angle": -4.29, "curve": 0.351, "c2": 0.4, "c3": 0.757}, {"time": 0.1333, "angle": -15.12}, {"time": 0.2167, "angle": 13.82, "curve": 0.25, "c3": 0.75}, - {"time": 0.3333, "angle": -26.73, "curve": 0.25, "c3": 0.75}, {"time": 0.4667, "angle": 21.85, "curve": 0.25, "c3": 0.75}, {"time": 0.7, "angle": -18.74, "curve": 0.25, "c3": 0.75}, - {"time": 0.9333, "angle": 0.46, "curve": 0.25, "c3": 0.75}, {"time": 1.15, "angle": -18.54, "curve": 0.25, "c3": 0.75}, {"time": 1.35, "curve": 0.265, "c3": 0.618, "c4": 0.43}, - {"time": 1.4167, "angle": 5.54} + {"angle": 4.38, "curve": 0.381, "c2": 0.55, "c3": 0.742}, {"time": 0.0667, "curve": 0.25, "c3": 0.75}, {"time": 0.2333, "angle": 30.26, "curve": 0.25, "c3": 0.75}, + {"time": 0.4333, "angle": -24.2, "curve": 0.25, "c3": 0.75}, {"time": 0.6, "angle": 21.17, "curve": 0.25, "c3": 0.75}, {"time": 0.8, "angle": -32.4, "curve": 0.25, "c3": 0.75}, + {"time": 1.0667, "angle": 24.01, "curve": 0.25, "c3": 0.75}, {"time": 1.2333, "angle": -15.47, "curve": 0.25, "c3": 0.75}, + {"time": 1.4, "angle": 11.9, "curve": 0.245, "c3": 0.637, "c4": 0.56}, {"time": 1.5, "angle": 4.38} ] }, - "body-fur-1": { + "body-fur-9": { "rotate": [ - {"angle": -10.83, "curve": 0.382, "c2": 0.57, "c3": 0.735}, {"time": 0.0667, "angle": -15.12, "curve": 0.25, "c3": 0.75}, {"time": 0.15, "angle": 13.82, "curve": 0.25, "c3": 0.75}, - {"time": 0.2667, "angle": -26.73, "curve": 0.25, "c3": 0.75}, {"time": 0.4, "angle": 21.85, "curve": 0.25, "c3": 0.75}, {"time": 0.6333, "angle": -18.74, "curve": 0.25, "c3": 0.75}, - {"time": 0.8667, "angle": 0.46, "curve": 0.25, "c3": 0.75}, {"time": 1.0833, "angle": -18.54, "curve": 0.25, "c3": 0.75}, {"time": 1.2833, "curve": 0.243, "c3": 0.649, "c4": 0.6}, - {"time": 1.4167, "angle": 10.51} + {"angle": 10.34, "curve": 0.303, "c2": 0.24, "c3": 0.674, "c4": 0.69}, {"time": 0.0833, "angle": 2.88, "curve": 0.382, "c2": 0.58, "c3": 0.731}, {"time": 0.1333}, + {"time": 0.3, "angle": 30.26, "curve": 0.25, "c3": 0.75}, {"time": 0.5, "angle": -24.2, "curve": 0.25, "c3": 0.75}, {"time": 0.6667, "angle": 21.17, "curve": 0.25, "c3": 0.75}, + {"time": 0.8667, "angle": -32.4, "curve": 0.25, "c3": 0.75}, {"time": 1.1333, "angle": 24.01, "curve": 0.25, "c3": 0.75}, {"time": 1.3, "angle": -15.47, "curve": 0.25, "c3": 0.75}, + {"time": 1.4667, "angle": 11.9, "curve": 0.284, "c3": 0.625, "c4": 0.38}, {"time": 1.5, "angle": 10.34} ] } } }, - "423222795": { - "bones": { - "body-fur-8": {"rotate": [{"angle": -0.91}]}, - "body-fur-1": {"rotate": [{"angle": 10.51}]}, - "body-fur-2": {"rotate": [{"angle": 13.84}]}, - "body-fur-3": {"rotate": [{"angle": 5.54}]}, - "body-fur-4": {"rotate": [{"angle": 12.53}]}, - "body-fur-5": {"rotate": [{"angle": 6.86}]}, - "body-fur-6": {"rotate": [{"angle": 13.33}]}, - "body-fur-7": {"rotate": [{"angle": 2.91}]}, - "body-fur-9": {"rotate": [{"angle": 6.86}]} - } - }, - "574696387": { - "slots": { - "eyes": {"attachment": [{"name": "eyes-happy"}]}, - "leg-front-left": {"attachment": [{"time": 0.2, "name": "mystic-leg-front-left-stretch"}, {"time": 0.5833, "name": "mystic-leg-front-left"}]} - }, + "922484181": { + "slots": {"eyes": {"attachment": [{"time": 0.05, "name": "eyes-happy"}, {"time": 0.7667, "name": "eyes"}]}}, "bones": { - "@leg-front-left": { - "translate": [ - {"x": -14.55, "y": -2.39, "curve": 0.374, "c2": 0.33, "c3": 0.72, "c4": 0.68}, {"time": 0.0333, "x": -24.69, "y": -4.71, "curve": 0.37, "c2": 0.57, "c3": 0.746}, - {"time": 0.1667, "x": -24.61, "y": -1.31, "curve": 0.37, "c2": 0.57, "c3": 0.746}, {"time": 0.3333, "x": 13.45, "y": -27.72, "curve": 0.345, "c2": 0.53, "c3": 0.751}, - {"time": 0.4833, "x": 40.66, "y": -4.9, "curve": 0.262, "c3": 0.63, "c4": 0.42}, {"time": 0.5667, "x": 49.25, "y": 8.32, "curve": 0.343, "c2": 0.3, "c3": 0.688, "c4": 0.65}, - {"time": 0.7, "x": 9.23, "y": 17.43, "curve": 0.255, "c3": 0.659, "c4": 0.47}, {"time": 0.75, "x": -14.55, "y": -2.39} + "@pivot-back": { + "rotate": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "angle": -5.76, "curve": 0.306, "c3": 0.695}, {"time": 0.6667, "angle": -6.67, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.8333, "angle": 2.85, "curve": 0.306, "c3": 0.695}, {"time": 1} ], - "scale": [ - {"curve": 0.459, "c2": 0.59, "c3": 0.838}, {"time": 0.0333, "x": 0.935, "curve": 0.331, "c3": 0.677, "c4": 0.4}, {"time": 0.0667, "x": 0.87, "curve": 0.464, "c4": 0.7}, {"time": 0.1667} - ] - }, - "leg-front-left-IK": { "translate": [ - {"x": 0.33, "y": 2.27, "curve": 0.154, "c4": 0.9}, {"time": 0.0833, "x": 32.98, "y": -4.28, "curve": 0.269, "c2": 0.57, "c3": 0.577}, - {"time": 0.1667, "x": 53.3, "y": 2.35, "curve": 0.461, "c3": 0.543}, {"time": 0.4167, "x": -85.44, "y": 106.83, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.5167, "x": -85.78, "y": 86.09, "curve": 0.143, "c3": 0.57, "c4": 0.46}, {"time": 0.7, "x": -26.89, "y": 8.67, "curve": 0, "c2": 0.09, "c3": 0.479, "c4": 0.56}, - {"time": 0.75, "x": 0.33, "y": 2.27} + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": -11.96, "y": -12.91, "curve": 0.306, "c3": 0.695}, + {"time": 0.6667, "x": -17.52, "y": -16.38, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.8333} ] }, - "leg-back-left-IK": { + "@leg-front-left": { "translate": [ - {"x": 17.64, "y": 16.11, "curve": 0.455, "c2": 0.58, "c3": 0.847}, {"time": 0.0333, "curve": 0, "c2": 0.1, "c3": 0.85}, - {"time": 0.2333, "x": -50.37, "curve": 0, "c2": 0.09, "c3": 0.466, "c4": 0.7}, {"time": 0.3, "x": 11.38, "y": 18.2, "curve": 0.177, "c2": 0.44, "c3": 0.617}, - {"time": 0.5333, "x": 56.74, "y": 103.8, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.6667, "x": 71.93, "y": 112.16, "curve": 0.315, "c4": 0.8}, {"time": 0.75, "x": 17.64, "y": 16.11} - ] - }, - "@shadow": { - "scale": [ - {"curve": 0.313, "c3": 0.699}, {"time": 0.25, "x": 0.94, "y": 0.94, "curve": 0.313, "c3": 0.699}, {"time": 0.4333, "x": 0.8, "y": 0.8, "curve": 0.315, "c4": 0.8}, {"time": 0.75} + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": -20.02, "y": -2.36, "curve": "stepped"}, {"time": 0.6667, "x": -20.02, "y": -2.36, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.8333, "x": 5.31, "y": -7.32, "curve": 0.306, "c3": 0.695}, {"time": 1} ] }, - "tail": { - "rotate": [{"curve": 0.161, "c3": 0.854}, {"time": 0.25, "angle": -20, "curve": 0, "c2": 0.3, "c3": 0.546}, {"time": 0.5, "angle": 4.21, "curve": 0.154, "c4": 0.9}, {"time": 0.75}] - }, "@leg-front-right": { "translate": [ - {"x": 7.78, "y": -11.23, "curve": 0.649, "c2": 0.4, "c4": 0.74}, {"time": 0.0167, "x": -0.64, "y": -13.16, "curve": 0.313, "c3": 0.699}, - {"time": 0.1333, "x": -9.39, "y": -16.39, "curve": 0.346, "c2": 0.44, "c3": 0.699}, {"time": 0.3167, "x": -26.29, "y": 12.52, "curve": 0, "c2": 0.18, "c3": 0.424, "c4": 0.59}, - {"time": 0.4333, "x": 7.42, "y": -10.53, "curve": 0.316, "c2": 0.49, "c3": 0.751}, {"time": 0.6, "x": 37.87, "y": -4.31, "curve": 0.289, "c3": 0.884, "c4": 0.7}, - {"time": 0.75, "x": 7.78, "y": -11.23} - ] - }, - "leg-front-right-IK": { - "translate": [ - {"x": -13.57, "y": 17.19, "curve": 0.645, "c2": 0.47, "c4": 0.81}, {"time": 0.0167, "curve": 0.313, "c3": 0.699}, {"time": 0.2667, "x": 52.85, "curve": 0, "c2": 0.3, "c3": 0.544}, - {"time": 0.5, "x": -85.89, "y": 125.19}, {"time": 0.6, "x": -87.57, "y": 110.89, "curve": 0.142, "c3": 0.858, "c4": 0.77}, {"time": 0.75, "x": -13.57, "y": 17.19} + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": -36.67, "y": 20.01, "curve": 0.306, "c3": 0.695}, + {"time": 0.6667, "x": -44.17, "y": 20.3, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.8333, "x": -12.71, "y": -17.14, "curve": 0.306, "c3": 0.695}, {"time": 1} ] }, "@leg-back-left": { "translate": [ - {"x": -4.73, "y": 6.6, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.15, "x": 1.29, "y": -4.22, "curve": 0.44, "c2": 0.55, "c3": 0.858}, - {"time": 0.25, "x": 2.16, "y": 6.49, "curve": 0, "c2": 0.09, "c3": 0.466, "c4": 0.7}, {"time": 0.3, "x": -5.17, "y": 15.67, "curve": 0.218, "c2": 0.39, "c3": 0.738}, - {"time": 0.5333, "x": -14.09, "y": -7.98, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.6667, "x": -12.69, "y": -11.31, "curve": 0.315, "c4": 0.8}, {"time": 0.75, "x": -4.73, "y": 6.6} - ], - "scale": [{"curve": 0, "c2": 0.1, "c3": 0.457, "c4": 0.54}, {"time": 0.0667, "x": 0.837, "curve": 0.395, "c2": 0.49, "c3": 0.868}, {"time": 0.15}] + {"time": 0.1667, "curve": 0.306, "c3": 0.695}, {"time": 0.6667, "x": -4.62, "y": -2.21, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.8333, "x": -0.1, "y": -3.16, "curve": 0.306, "c3": 0.695}, {"time": 1} + ] }, - "@pivot-back": { + "tail": { "rotate": [ - {"angle": 3.74, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "angle": 1.5, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.25, "angle": -2, "curve": 0, "c2": 0.1, "c3": 0.85}, - {"time": 0.35, "angle": -5, "curve": 0.154, "c4": 0.9}, {"time": 0.6667, "angle": 5, "curve": 0.154, "c4": 0.9}, {"time": 0.75, "angle": 3.74} - ], - "translate": [ - {"y": 8, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "y": -10, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.25, "curve": 0, "c2": 0.1, "c3": 0.85}, - {"time": 0.5667, "y": 80.61, "curve": 0.154, "c4": 0.9}, {"time": 0.75, "y": 8} + {"curve": 0, "c2": 0.3, "c3": 0.54}, {"time": 0.1667, "angle": -11.59, "curve": 0.306, "c3": 0.695}, {"time": 0.4167, "angle": 2.75, "curve": 0.306, "c3": 0.695}, + {"time": 0.6667, "angle": -13.32, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.8333, "angle": 15.71, "curve": 0.306, "c3": 0.695}, {"time": 1} ] }, - "@pivot-main": {"scale": [{"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1333, "y": 0.85, "curve": 0.306, "c4": 0.8}, {"time": 0.25}]}, - "ear-right": { - "rotate": [ - {"angle": 6.45, "curve": 0.306, "c3": 0.695}, {"time": 0.25, "angle": -6.15, "curve": 0.306, "c3": 0.695}, {"time": 0.5, "angle": -7.47, "curve": 0.306, "c3": 0.695}, - {"time": 0.75, "angle": 6.45} + "@shadow": { + "scale": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": 0.96, "y": 0.96}, {"time": 0.6667, "x": 0.94, "y": 0.94, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.8333, "x": 1.06, "y": 1.06, "curve": 0.306, "c3": 0.695}, {"time": 1} ] }, - "ear-left": { + "body-fur-2": { "rotate": [ - {"angle": 6.45, "curve": 0.306, "c3": 0.695}, {"time": 0.25, "angle": -6.15, "curve": 0.306, "c3": 0.695}, {"time": 0.5, "angle": -7.47, "curve": 0.306, "c3": 0.695}, - {"time": 0.75, "angle": 6.45} + {"angle": -17.34, "curve": 0.36, "c2": 0.64, "c3": 0.695}, {"time": 0.0167, "angle": -18.47, "curve": 0.243, "c3": 0.655, "c4": 0.63}, + {"time": 0.1333, "angle": -4.47, "curve": 0.382, "c2": 0.58, "c3": 0.731}, {"time": 0.1833}, {"time": 0.35, "angle": -21.07, "curve": 0.25, "c3": 0.75}, + {"time": 0.5167, "angle": 10.1, "curve": 0.25, "c3": 0.75}, {"time": 0.6833, "angle": -22.23, "curve": 0.25, "c3": 0.75}, + {"time": 0.85, "angle": 8, "curve": 0.245, "c3": 0.711, "c4": 0.83}, {"time": 1, "angle": 13.84} ] }, - "back": {"rotate": [{"curve": 0.306, "c3": 0.695}, {"time": 0.25, "angle": 9.32, "curve": 0.306, "c3": 0.695}, {"time": 0.5, "angle": -5.11, "curve": 0.306, "c3": 0.695}, {"time": 0.75}]}, - "body-fur-8": { - "rotate": [{"angle": -35.49, "curve": 0.455, "c2": 0.01, "c3": 0.75}, {"time": 0.3833, "angle": 26.07, "curve": 0.455, "c2": 0.01, "c3": 0.75}, {"time": 0.75, "angle": -35.49}] - }, - "body-fur-1": { + "body-fur-9": { "rotate": [ - {"angle": 5.91, "curve": 0.389, "c2": 0.48, "c3": 0.708}, {"time": 0.2, "angle": -35.49}, {"time": 0.5833, "angle": 26.07, "curve": 0.389, "c2": 0.01, "c3": 0.715, "c4": 0.48}, - {"time": 0.75, "angle": 5.91} + {"angle": -16.05, "curve": 0.303, "c2": 0.24, "c3": 0.674, "c4": 0.69}, {"time": 0.0833, "angle": -4.47, "curve": 0.382, "c2": 0.58, "c3": 0.731}, + {"time": 0.1333, "curve": 0.25, "c3": 0.75}, {"time": 0.3, "angle": -21.07, "curve": 0.25, "c3": 0.75}, {"time": 0.4667, "angle": 10.1, "curve": 0.25, "c3": 0.75}, + {"time": 0.6333, "angle": -22.23, "curve": 0.25, "c3": 0.75}, {"time": 0.8, "angle": 8, "curve": 0.25, "c3": 0.75}, + {"time": 0.9667, "angle": -18.47, "curve": 0.284, "c3": 0.625, "c4": 0.38}, {"time": 1, "angle": 6.86} ] }, - "body-fur-2": { + "body-fur-8": { "rotate": [ - {"angle": 22.47, "curve": 0.397, "c2": 0.23, "c3": 0.719, "c4": 0.71}, {"time": 0.2, "angle": -19.23, "curve": 0.356, "c2": 0.59, "c3": 0.686}, {"time": 0.3, "angle": -35.49}, - {"time": 0.6833, "angle": 26.07, "curve": 0.355, "c2": 0.02, "c3": 0.687, "c4": 0.39}, {"time": 0.75, "angle": 22.47} + {"angle": -9.23, "curve": 0.375, "c2": 0.5, "c3": 0.75}, {"time": 0.0833}, {"time": 0.25, "angle": -21.07, "curve": 0.25, "c3": 0.75}, + {"time": 0.4167, "angle": 10.1, "curve": 0.25, "c3": 0.75}, {"time": 0.5833, "angle": -22.23, "curve": 0.25, "c3": 0.75}, {"time": 0.75, "angle": 8, "curve": 0.25, "c3": 0.75}, + {"time": 0.9167, "angle": -18.47, "curve": 0.25, "c3": 0.625, "c4": 0.5}, {"time": 1, "angle": -0.91} ] }, - "body-fur-3": { + "body-fur-7": { "rotate": [ - {"angle": -6.24, "curve": 0.371, "c2": 0.54, "c3": 0.697}, {"time": 0.15, "angle": -35.49}, {"time": 0.5333, "angle": 26.07, "curve": 0.406, "c2": 0.01, "c3": 0.727, "c4": 0.55}, - {"time": 0.75, "angle": -6.24} + {"angle": -2.4, "curve": 0.375, "c2": 0.62, "c3": 0.716}, {"time": 0.0333, "curve": 0.25, "c3": 0.75}, {"time": 0.2, "angle": -21.07, "curve": 0.25, "c3": 0.75}, + {"time": 0.3667, "angle": 10.1, "curve": 0.25, "c3": 0.75}, {"time": 0.5333, "angle": -22.23, "curve": 0.25, "c3": 0.75}, {"time": 0.7, "angle": 8, "curve": 0.25, "c3": 0.75}, + {"time": 0.8667, "angle": -18.47, "curve": 0.243, "c3": 0.68, "c4": 0.71}, {"time": 1, "angle": 2.91} ] }, - "body-fur-4": { + "body-fur-6": { "rotate": [ - {"angle": 15.47, "curve": 0.379, "c2": 0.31, "c3": 0.706, "c4": 0.72}, {"time": 0.15, "angle": -19.23, "curve": 0.356, "c2": 0.59, "c3": 0.686}, {"time": 0.25, "angle": -35.49}, - {"time": 0.6333, "angle": 26.07, "curve": 0.372, "c2": 0.01, "c3": 0.702, "c4": 0.43}, {"time": 0.75, "angle": 15.47} + {"angle": -13.95, "curve": 0.321, "c2": 0.3, "c3": 0.679, "c4": 0.7}, {"time": 0.0667, "angle": -4.47, "curve": 0.382, "c2": 0.58, "c3": 0.731}, {"time": 0.1167}, + {"time": 0.2833, "angle": -21.07, "curve": 0.25, "c3": 0.75}, {"time": 0.45, "angle": 10.1, "curve": 0.25, "c3": 0.75}, {"time": 0.6167, "angle": -22.23, "curve": 0.25, "c3": 0.75}, + {"time": 0.7833, "angle": 8, "curve": 0.25, "c3": 0.75}, {"time": 0.95, "angle": -18.47, "curve": 0.269, "c3": 0.618, "c4": 0.42}, {"time": 1, "angle": 13.33} ] }, "body-fur-5": { "rotate": [ - {"angle": -19.23, "curve": 0.356, "c2": 0.59, "c3": 0.686}, {"time": 0.1, "angle": -35.49}, {"time": 0.4833, "angle": 26.07, "curve": 0.423, "c2": 0.01, "c3": 0.737, "c4": 0.65}, - {"time": 0.75, "angle": -19.23} + {"angle": -6.79, "curve": 0.381, "c2": 0.55, "c3": 0.742}, {"time": 0.0667}, {"time": 0.2333, "angle": -21.07, "curve": 0.25, "c3": 0.75}, + {"time": 0.4, "angle": 10.1, "curve": 0.25, "c3": 0.75}, {"time": 0.5667, "angle": -22.23, "curve": 0.25, "c3": 0.75}, {"time": 0.7333, "angle": 8, "curve": 0.25, "c3": 0.75}, + {"time": 0.9, "angle": -18.47, "curve": 0.245, "c3": 0.637, "c4": 0.56}, {"time": 1, "angle": 6.86} ] }, - "body-fur-6": { + "body-fur-4": { "rotate": [ - {"angle": 5.34, "curve": 0.362, "c2": 0.35, "c3": 0.692, "c4": 0.72}, {"time": 0.1, "angle": -19.23, "curve": 0.356, "c2": 0.59, "c3": 0.686}, - {"time": 0.2, "angle": -35.49, "curve": 0.25, "c3": 0.75}, {"time": 0.5833, "angle": 26.07, "curve": 0.389, "c2": 0.01, "c3": 0.715, "c4": 0.48}, {"time": 0.75, "angle": 5.34} + {"angle": -17.69, "curve": 0.277, "c2": 0.14, "c3": 0.667, "c4": 0.67}, {"time": 0.1, "angle": -4.47, "curve": 0.382, "c2": 0.58, "c3": 0.731}, {"time": 0.15}, + {"time": 0.3167, "angle": -21.07, "curve": 0.25, "c3": 0.75}, {"time": 0.4833, "angle": 10.1, "curve": 0.25, "c3": 0.75}, {"time": 0.65, "angle": -22.23, "curve": 0.25, "c3": 0.75}, + {"time": 0.8167, "angle": 8, "curve": 0.25, "c3": 0.75}, {"time": 0.9833, "angle": -18.47, "curve": 0.305, "c3": 0.64, "c4": 0.36}, {"time": 1, "angle": 12.53} ] }, - "body-fur-7": { + "body-fur-3": { "rotate": [ - {"angle": -30.29, "curve": 0.343, "c2": 0.63, "c3": 0.676}, {"time": 0.05, "angle": -35.49, "curve": 0.25, "c3": 0.75}, - {"time": 0.4333, "angle": 26.07, "curve": 0.439, "c2": 0.01, "c3": 0.745, "c4": 0.79}, {"time": 0.75, "angle": -30.29} + {"angle": -11.67, "curve": 0.363, "c2": 0.44, "c3": 0.755}, {"time": 0.1}, {"time": 0.2667, "angle": -21.07, "curve": 0.25, "c3": 0.75}, + {"time": 0.4333, "angle": 10.1, "curve": 0.25, "c3": 0.75}, {"time": 0.6, "angle": -22.23, "curve": 0.25, "c3": 0.75}, {"time": 0.7667, "angle": 8, "curve": 0.25, "c3": 0.75}, + {"time": 0.9333, "angle": -18.47, "curve": 0.258, "c3": 0.619, "c4": 0.45}, {"time": 1, "angle": 5.54} ] }, - "body-fur-9": { + "body-fur-1": { "rotate": [ - {"angle": -19.23, "curve": 0.356, "c2": 0.59, "c3": 0.686}, {"time": 0.1, "angle": -35.49}, {"time": 0.4833, "angle": 26.07, "curve": 0.423, "c2": 0.01, "c3": 0.737, "c4": 0.65}, - {"time": 0.75, "angle": -19.23} + {"angle": -16.07, "curve": 0.32, "c2": 0.29, "c3": 0.757}, {"time": 0.1333, "curve": 0.25, "c3": 0.75}, {"time": 0.3, "angle": -21.07, "curve": 0.25, "c3": 0.75}, + {"time": 0.4667, "angle": 10.1, "curve": 0.25, "c3": 0.75}, {"time": 0.6333, "angle": -22.23, "curve": 0.25, "c3": 0.75}, {"time": 0.8, "angle": 8, "curve": 0.25, "c3": 0.75}, + {"time": 0.9667, "angle": -18.47, "curve": 0.284, "c3": 0.625, "c4": 0.38}, {"time": 1, "angle": 10.51} ] } - } + }, + "events": [{"time": 0.1667, "name": "hit-buff"}] }, - "2432345616": { - "slots": {"leg-front-left": {"attachment": [{"time": 0.2, "name": "mystic-leg-front-left-stretch"}, {"time": 0.6667, "name": "mystic-leg-front-left"}]}}, + "2134002589": { + "slots": { + "eyes": {"attachment": [{"time": 0.05, "name": "eyes-shut"}, {"time": 0.7667, "name": "eyes"}]}, + "mouth": {"attachment": [{"time": 0.05, "name": "mouth-bite"}, {"time": 0.7667, "name": "mouth"}]} + }, "bones": { "@pivot-back": { + "rotate": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "angle": 3.5}, {"time": 0.6667, "angle": 4, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.8333, "angle": -1.98, "curve": 0.306, "c3": 0.695}, {"time": 1} + ], "translate": [ - {"y": 8, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "y": -10, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.25, "curve": 0, "c2": 0.1, "c3": 0.85}, - {"time": 0.5833, "y": 80.61, "curve": 0.154, "c4": 0.9}, {"time": 0.75, "y": 8} - ] - }, - "@leg-front-left": { - "translate": [ - {"x": -14.55, "y": -2.39, "curve": 0.374, "c2": 0.33, "c3": 0.72, "c4": 0.68}, {"time": 0.0333, "x": -24.61, "y": -1.31, "curve": "stepped"}, - {"time": 0.1667, "x": -24.61, "y": -1.31, "curve": 0.37, "c2": 0.57, "c3": 0.746}, {"time": 0.3333, "x": 13.45, "y": -27.72, "curve": 0.345, "c2": 0.53, "c3": 0.751}, - {"time": 0.4833, "x": 40.66, "y": -4.9, "curve": 0.255, "c3": 0.673, "c4": 0.49}, {"time": 0.5833, "x": 39.16, "y": 14.5, "curve": 0.565, "c2": 0.41, "c4": 0.82}, - {"time": 0.6667, "x": 1.05, "y": 16.15, "curve": 0.255, "c3": 0.659, "c4": 0.47}, {"time": 0.75, "x": -14.55, "y": -2.39} - ], - "scale": [ - {"x": 0.969, "curve": 0.459, "c2": 0.59, "c3": 0.838}, {"time": 0.0333, "x": 0.961, "curve": 0.154, "c4": 0.9}, {"time": 0.1667, "x": 1.075, "curve": 0, "c2": 0.1, "c3": 0.85}, - {"time": 0.3333, "curve": "stepped"}, {"time": 0.6667, "curve": 0, "c2": 0.09, "c3": 0.589, "c4": 0.67}, {"time": 0.75, "x": 0.969} + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "y": 2.9}, {"time": 0.6667, "y": 3.91, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.8333, "y": -2.14, "curve": 0.306, "c3": 0.695}, {"time": 1} ] }, - "leg-front-left-IK": { + "@leg-front-right": { "translate": [ - {"x": 4.88, "y": 20.49, "curve": 0.416, "c2": 0.51, "c3": 0.865}, {"time": 0.0833, "x": 28.75, "y": 34.52, "curve": 0.269, "c2": 0.57, "c3": 0.577}, - {"time": 0.1667, "x": 31.44, "y": 44.28, "curve": 0.461, "c3": 0.543}, {"time": 0.4167, "x": -85.44, "y": 106.83}, - {"time": 0.5167, "x": -87.18, "y": 81.5, "curve": 0.143, "c3": 0.57, "c4": 0.46}, {"time": 0.6667, "x": -21.75, "y": 25.36, "curve": 0, "c2": 0.09, "c3": 0.479, "c4": 0.56}, - {"time": 0.75, "x": 4.88, "y": 20.49} + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": -0.92, "y": -19.87}, {"time": 0.6667, "x": -1.14, "y": -21.42, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.8333, "x": -0.43, "y": 9.97, "curve": 0.306, "c3": 0.695}, {"time": 1} ] }, - "leg-back-left-IK": { + "@leg-front-left": { "translate": [ - {"x": 17.64, "y": 16.11, "curve": 0.455, "c2": 0.58, "c3": 0.847}, {"time": 0.0333, "curve": 0, "c2": 0.1, "c3": 0.85}, - {"time": 0.2333, "x": -50.37, "curve": 0, "c2": 0.09, "c3": 0.466, "c4": 0.7}, {"time": 0.3, "x": 11.38, "y": 18.2, "curve": 0.177, "c2": 0.44, "c3": 0.617}, - {"time": 0.5333, "x": 56.74, "y": 103.8, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.6667, "x": 71.93, "y": 112.16, "curve": 0.139, "c3": 0.671, "c4": 0.58}, - {"time": 0.75, "x": 17.64, "y": 16.11} - ] - }, - "@shadow": { - "scale": [ - {"curve": 0.313, "c3": 0.699}, {"time": 0.25, "x": 0.94, "y": 0.94, "curve": 0.313, "c3": 0.699}, {"time": 0.4333, "x": 0.8, "y": 0.8, "curve": 0.315, "c4": 0.8}, {"time": 0.75} + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": 7.87, "y": -5.37}, {"time": 0.6667, "x": 9.12, "y": -5.44, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.8333, "x": -0.16, "y": 3.89, "curve": 0.306, "c3": 0.695}, {"time": 1} ] }, - "@pivot-main": {"scale": [{"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "y": 0.98, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.25}]}, - "@leg-front-right": { - "translate": [ - {"x": -0.64, "y": -13.16, "curve": 0.313, "c3": 0.654, "c4": 0.45}, {"time": 0.1167, "x": -9.39, "y": -16.39, "curve": 0.346, "c2": 0.44, "c3": 0.699}, - {"time": 0.3, "x": -26.29, "y": 12.52, "curve": 0, "c2": 0.18, "c3": 0.424, "c4": 0.59}, {"time": 0.4167, "x": 7.42, "y": -10.53, "curve": 0.316, "c2": 0.49, "c3": 0.751}, - {"time": 0.5833, "x": 37.87, "y": -4.31, "curve": 0.315, "c4": 0.8}, {"time": 0.75, "x": -0.64, "y": -13.16} + "tail": { + "rotate": [ + {"curve": 0, "c2": 0.3, "c3": 0.54}, {"time": 0.1667, "angle": -17.97, "curve": 0.306, "c3": 0.695}, {"time": 0.4167, "angle": -9.96, "curve": 0.306, "c3": 0.695}, + {"time": 0.6667, "angle": -19.79, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.8333, "angle": 6.14, "curve": 0.306, "c3": 0.695}, {"time": 1} ] }, - "@leg-back-left": { - "translate": [ - {"x": -4.73, "y": 6.6, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.15, "x": 1.29, "y": -4.22, "curve": 0.44, "c2": 0.55, "c3": 0.858}, - {"time": 0.25, "x": 2.16, "y": 6.49, "curve": 0, "c2": 0.09, "c3": 0.466, "c4": 0.7}, {"time": 0.3, "x": -5.17, "y": 15.67, "curve": 0.218, "c2": 0.39, "c3": 0.738}, - {"time": 0.5333, "x": -14.09, "y": -7.98, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.6667, "x": -12.69, "y": -11.31, "curve": 0.139, "c3": 0.671, "c4": 0.58}, - {"time": 0.75, "x": -4.73, "y": 6.6} - ], - "scale": [{"curve": 0, "c2": 0.1, "c3": 0.457, "c4": 0.54}, {"time": 0.0667, "x": 0.837, "curve": 0.395, "c2": 0.49, "c3": 0.868}, {"time": 0.15}] - }, - "leg-front-right-IK": { - "translate": [ - {"curve": 0.313, "c3": 0.699}, {"time": 0.25, "x": 52.85, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.4833, "x": -85.89, "y": 125.19}, - {"time": 0.5833, "x": -87.57, "y": 110.89, "curve": 0.154, "c4": 0.9}, {"time": 0.75} + "body-fur-2": { + "rotate": [ + {"angle": 10.93, "curve": 0.366, "c2": 0.63, "c3": 0.703}, {"time": 0.0333, "angle": 12.5, "curve": 0.243, "c3": 0.649, "c4": 0.6}, + {"time": 0.2, "angle": 3.55, "curve": 0.382, "c2": 0.57, "c3": 0.735}, {"time": 0.2833, "curve": 0.25, "c3": 0.75}, {"time": 0.5333, "angle": 13.81, "curve": 0.25, "c3": 0.75}, + {"time": 0.7833, "angle": -10.1, "curve": 0.244, "c3": 0.7, "c4": 0.79}, {"time": 1, "angle": 13.84} ] }, - "body-fur-5": { + "body-fur-9": { "rotate": [ - {"angle": -19.23, "curve": 0.356, "c2": 0.59, "c3": 0.686}, {"time": 0.1, "angle": -35.49}, {"time": 0.4833, "angle": 26.07, "curve": 0.423, "c2": 0.01, "c3": 0.737, "c4": 0.65}, - {"time": 0.75, "angle": -19.23} + {"angle": 9.95, "curve": 0.315, "c2": 0.28, "c3": 0.673, "c4": 0.69}, {"time": 0.1, "angle": 3.55, "curve": 0.382, "c2": 0.57, "c3": 0.735}, {"time": 0.1833, "curve": 0.25, "c3": 0.75}, + {"time": 0.4333, "angle": 13.81, "curve": 0.25, "c3": 0.75}, {"time": 0.6833, "angle": -10.1, "curve": 0.25, "c3": 0.75}, + {"time": 0.9333, "angle": 12.5, "curve": 0.273, "c3": 0.62, "c4": 0.41}, {"time": 1, "angle": 6.86} ] }, - "body-fur-9": { + "body-fur-8": { "rotate": [ - {"angle": -19.23, "curve": 0.356, "c2": 0.59, "c3": 0.686}, {"time": 0.1, "angle": -35.49}, {"time": 0.4833, "angle": 26.07, "curve": 0.423, "c2": 0.01, "c3": 0.737, "c4": 0.65}, - {"time": 0.75, "angle": -19.23} + {"angle": 4.6, "curve": 0.381, "c2": 0.55, "c3": 0.742}, {"time": 0.1, "curve": 0.25, "c3": 0.75}, {"time": 0.35, "angle": 13.81, "curve": 0.25, "c3": 0.75}, + {"time": 0.6, "angle": -10.1, "curve": 0.25, "c3": 0.75}, {"time": 0.85, "angle": 12.5, "curve": 0.245, "c3": 0.637, "c4": 0.56}, {"time": 1, "angle": -0.91} ] }, "body-fur-7": { "rotate": [ - {"angle": -30.29, "curve": 0.343, "c2": 0.63, "c3": 0.676}, {"time": 0.05, "angle": -35.49, "curve": 0.25, "c3": 0.75}, - {"time": 0.4333, "angle": 26.07, "curve": 0.439, "c2": 0.01, "c3": 0.745, "c4": 0.79}, {"time": 0.75, "angle": -30.29} + {"angle": 1.63, "curve": 0.375, "c2": 0.62, "c3": 0.716}, {"time": 0.05, "curve": 0.25, "c3": 0.75}, {"time": 0.3, "angle": 13.81, "curve": 0.25, "c3": 0.75}, + {"time": 0.55, "angle": -10.1, "curve": 0.25, "c3": 0.75}, {"time": 0.8, "angle": 12.5, "curve": 0.243, "c3": 0.68, "c4": 0.71}, {"time": 1, "angle": 2.91} ] }, - "body-fur-1": { + "body-fur-6": { "rotate": [ - {"angle": 5.91, "curve": 0.389, "c2": 0.48, "c3": 0.708}, {"time": 0.2, "angle": -35.49}, {"time": 0.5833, "angle": 26.07, "curve": 0.389, "c2": 0.01, "c3": 0.715, "c4": 0.48}, - {"time": 0.75, "angle": 5.91} + {"angle": 9.95, "curve": 0.315, "c2": 0.28, "c3": 0.673, "c4": 0.69}, {"time": 0.1, "angle": 3.55, "curve": 0.382, "c2": 0.57, "c3": 0.735}, {"time": 0.1833, "curve": 0.25, "c3": 0.75}, + {"time": 0.4333, "angle": 13.81, "curve": 0.25, "c3": 0.75}, {"time": 0.6833, "angle": -10.1, "curve": 0.25, "c3": 0.75}, + {"time": 0.9333, "angle": 12.5, "curve": 0.273, "c3": 0.62, "c4": 0.41}, {"time": 1, "angle": 13.33} ] }, - "body-fur-3": { + "body-fur-5": { "rotate": [ - {"angle": -6.24, "curve": 0.371, "c2": 0.54, "c3": 0.697}, {"time": 0.15, "angle": -35.49}, {"time": 0.5333, "angle": 26.07, "curve": 0.406, "c2": 0.01, "c3": 0.727, "c4": 0.55}, - {"time": 0.75, "angle": -6.24} + {"angle": 4.6, "curve": 0.381, "c2": 0.55, "c3": 0.742}, {"time": 0.1, "curve": 0.25, "c3": 0.75}, {"time": 0.35, "angle": 13.81, "curve": 0.25, "c3": 0.75}, + {"time": 0.6, "angle": -10.1, "curve": 0.25, "c3": 0.75}, {"time": 0.85, "angle": 12.5, "curve": 0.245, "c3": 0.637, "c4": 0.56}, {"time": 1, "angle": 6.86} ] }, - "body-fur-8": { - "rotate": [{"angle": -35.49, "curve": 0.455, "c2": 0.01, "c3": 0.75}, {"time": 0.3833, "angle": 26.07, "curve": 0.455, "c2": 0.01, "c3": 0.75}, {"time": 0.75, "angle": -35.49}] - }, "body-fur-4": { "rotate": [ - {"angle": 15.47, "curve": 0.379, "c2": 0.31, "c3": 0.706, "c4": 0.72}, {"time": 0.15, "angle": -19.23, "curve": 0.356, "c2": 0.59, "c3": 0.686}, {"time": 0.25, "angle": -35.49}, - {"time": 0.6333, "angle": 26.07, "curve": 0.372, "c2": 0.01, "c3": 0.702, "c4": 0.43}, {"time": 0.75, "angle": 15.47} + {"angle": 12.24, "curve": 0.267, "c2": 0.1, "c3": 0.657, "c4": 0.63}, {"time": 0.15, "angle": 3.55, "curve": 0.382, "c2": 0.57, "c3": 0.735}, {"time": 0.2333, "curve": 0.25, "c3": 0.75}, + {"time": 0.4833, "angle": 13.81, "curve": 0.25, "c3": 0.75}, {"time": 0.7333, "angle": -10.1, "curve": 0.25, "c3": 0.75}, + {"time": 0.9833, "angle": 12.5, "curve": 0.313, "c3": 0.648, "c4": 0.35}, {"time": 1, "angle": 12.53} ] }, - "body-fur-2": { + "body-fur-3": { "rotate": [ - {"angle": 22.47, "curve": 0.397, "c2": 0.23, "c3": 0.719, "c4": 0.71}, {"time": 0.2, "angle": -19.23, "curve": 0.356, "c2": 0.59, "c3": 0.686}, {"time": 0.3, "angle": -35.49}, - {"time": 0.6833, "angle": 26.07, "curve": 0.355, "c2": 0.02, "c3": 0.687, "c4": 0.39}, {"time": 0.75, "angle": 22.47} + {"angle": 7.9, "curve": 0.363, "c2": 0.44, "c3": 0.755}, {"time": 0.15, "curve": 0.25, "c3": 0.75}, {"time": 0.4, "angle": 13.81, "curve": 0.25, "c3": 0.75}, + {"time": 0.65, "angle": -10.1, "curve": 0.25, "c3": 0.75}, {"time": 0.9, "angle": 12.5, "curve": 0.258, "c3": 0.619, "c4": 0.45}, {"time": 1, "angle": 5.54} ] }, - "body-fur-6": { + "body-fur-1": { "rotate": [ - {"angle": 5.34, "curve": 0.362, "c2": 0.35, "c3": 0.692, "c4": 0.72}, {"time": 0.1, "angle": -19.23, "curve": 0.356, "c2": 0.59, "c3": 0.686}, - {"time": 0.2, "angle": -35.49, "curve": 0.25, "c3": 0.75}, {"time": 0.5833, "angle": 26.07, "curve": 0.389, "c2": 0.01, "c3": 0.715, "c4": 0.48}, {"time": 0.75, "angle": 5.34} + {"angle": 10.88, "curve": 0.32, "c2": 0.29, "c3": 0.757}, {"time": 0.2, "curve": 0.25, "c3": 0.75}, {"time": 0.45, "angle": 13.81, "curve": 0.25, "c3": 0.75}, + {"time": 0.7, "angle": -10.1, "curve": 0.25, "c3": 0.75}, {"time": 0.95, "angle": 12.5, "curve": 0.284, "c3": 0.625, "c4": 0.38}, {"time": 1, "angle": 10.51} ] } - } + }, + "events": [{"time": 0.1667, "name": "hit-buff"}] }, - "4155075159": { + "3772948066": { "slots": { - "eyes": { - "attachment": [ - {"time": 0.05, "name": "eyes-angry"}, {"time": 0.3333, "name": "eyes-shut"}, {"time": 0.4333, "name": "eyes-angry"}, {"time": 1.0833, "name": "eyes-shut"}, - {"time": 1.1667, "name": "eyes-angry"}, {"time": 1.2833, "name": "eyes"} - ] - }, - "mouth": {"attachment": [{"time": 0.05, "name": "mouth-bite"}, {"time": 0.4333, "name": "mouth-open"}, {"time": 0.9167, "name": "mouth-bite"}, {"time": 1.2833, "name": "mouth"}]} + "eyes": {"attachment": [{"time": 0.0167, "name": "eyes-shut"}, {"time": 0.1833, "name": "eyes-angry"}, {"time": 0.4, "name": "eyes"}]}, + "mouth": {"attachment": [{"time": 0.0167, "name": "mouth-bite"}, {"time": 0.4, "name": "mouth"}]} }, "bones": { "@pivot-back": { - "rotate": [{"curve": 0, "c2": 0.3, "c3": 0.546}, {"time": 0.0833, "angle": 6, "curve": 0, "c2": 0.2, "c3": 0.828}, {"time": 0.1667}], - "translate": [ - {"curve": 0, "c2": 0.3, "c3": 0.546}, {"time": 0.0833, "y": 5, "curve": 0.313, "c3": 0.699}, {"time": 0.1667, "y": 220, "curve": 0.617, "c4": 0.6}, {"time": 0.3333, "y": 10}, - {"time": 0.4167, "y": 5, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5833, "y": 420, "curve": 0.852, "c4": 0.1}, {"time": 0.9167}, - {"time": 1.0833, "y": -5, "curve": 0, "c2": 0.17, "c3": 0.461, "c4": 0.62}, {"time": 1.2167, "y": 130, "curve": 0.353, "c2": 0.54, "c3": 0.751}, {"time": 1.3333} - ] - }, - "@leg-front-right": {"translate": [{"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "x": -2.46, "y": -27.89, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.1167}]}, - "@leg-front-left": {"translate": [{"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "x": -1.21, "y": -13.68, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.1167}]}, - "@pivot-center": { "rotate": [ - {"time": 0.1167, "curve": 0.313, "c3": 0.817}, {"time": 0.3333, "angle": 180, "curve": "stepped"}, {"time": 0.4167, "angle": 180, "curve": 0.313, "c3": 0.699}, - {"time": 0.6667, "angle": -1, "curve": 0.837, "c4": 0.2}, {"time": 0.9167, "angle": 178}, {"time": 1.0833, "angle": 180, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1.3333} - ] + {"curve": "stepped"}, {"time": 0.0167, "angle": -20}, {"time": 0.1667, "angle": -22, "curve": 0.464, "c4": 0.7}, {"time": 0.3167, "angle": 5.2, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.4167} + ], + "translate": [{"curve": "stepped"}, {"time": 0.0167, "x": 75, "y": -4.42}, {"time": 0.1667, "x": 80, "y": -7.47, "curve": 0.464, "c4": 0.7}, {"time": 0.3167}] }, - "leg-front-left-IK": { + "@leg-front-left": {"translate": [{"time": 0.1667, "curve": 0.62, "c4": 0.3}, {"time": 0.3167, "x": -1.1, "y": -14.87, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.4167}]}, + "@shadow": { "translate": [ - {"time": 0.0833, "x": 3.28, "y": 8.42, "curve": 0.344, "c3": 0.715, "c4": 0.45}, {"time": 0.1167, "x": 23.89, "y": 74.66, "curve": 0.589, "c2": 0.35, "c4": 0.75}, - {"time": 0.1667, "x": -100.7, "y": 242.98, "curve": 0.306, "c3": 0.695}, {"time": 0.25, "x": -233.21, "y": 406.49, "curve": 0.474, "c3": 0.714, "c4": 0.56}, - {"time": 0.3, "x": -153, "y": 482.64, "curve": 0.306, "c2": 0.39, "c3": 0.628, "c4": 0.74}, {"time": 0.3167, "x": -106.74, "y": 465.65, "curve": 0.287, "c2": 0.62, "c3": 0.612}, - {"time": 0.3333, "x": -79.92, "y": 385}, {"time": 0.4167, "x": -126.28, "y": 392.02, "curve": 0, "c2": 0.17, "c3": 0.45, "c4": 0.61}, - {"time": 0.5, "x": -212.54, "y": 584.25, "curve": 0.323, "c2": 0.4, "c3": 0.681, "c4": 0.77}, {"time": 0.55, "x": -233.91, "y": 520.55, "curve": 0.377, "c2": 0.62, "c3": 0.724}, - {"time": 0.5833, "x": -173.29, "y": 470.76}, {"time": 0.6667, "x": 19.48, "y": 419.84}, {"time": 0.75, "x": 31.74, "y": 414.89, "curve": 0.255, "c3": 0.659, "c4": 0.47}, - {"time": 0.8333, "x": 83.62, "y": 412.28, "curve": 0.41, "c2": 0.34, "c3": 0.774, "c4": 0.71}, - {"time": 0.8833, "x": 116.53, "y": 400.02, "curve": 0.427, "c2": 0.37, "c3": 0.767, "c4": 0.71}, {"time": 0.9, "x": 130.33, "y": 410.53, "curve": 0.649, "c2": 0.4, "c4": 0.74}, - {"time": 0.9167, "x": -78.08, "y": 379.36}, {"time": 1.0833, "x": -92.45, "y": 375.87, "curve": 0, "c2": 0.17, "c3": 0.45, "c4": 0.61}, - {"time": 1.15, "x": 127.37, "y": 350.17, "curve": 0.345, "c2": 0.53, "c3": 0.751}, {"time": 1.2167, "x": 133.62, "y": 244.55, "curve": 0, "c2": 0.1, "c3": 0.769}, {"time": 1.3333} + {"curve": "stepped"}, {"time": 0.0167, "x": 70.3, "curve": "stepped"}, {"time": 0.1667, "x": 70.3, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.3167, "x": 12.49, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.4167} + ], + "scale": [ + {"curve": "stepped"}, {"time": 0.0167, "x": 0.98, "y": 0.98}, {"time": 0.1667, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.3167, "x": 1.08, "y": 1.08, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.4167} ] }, - "leg-front-right-IK": { + "leg-back-left-IK": { "translate": [ - {"time": 0.0833, "curve": 0.344, "c3": 0.715, "c4": 0.45}, {"time": 0.1167, "x": 41.2, "y": 75.27, "curve": 0.589, "c2": 0.35, "c4": 0.75}, - {"time": 0.1667, "x": -103.56, "y": 361.93, "curve": 0.313, "c3": 0.699}, {"time": 0.25, "x": 61.46, "y": 606.37, "curve": 0.474, "c3": 0.714, "c4": 0.56}, - {"time": 0.3, "x": 293.95, "y": 550.17, "curve": 0.306, "c2": 0.39, "c3": 0.628, "c4": 0.74}, {"time": 0.3167, "x": 340.35, "y": 482.44, "curve": 0.287, "c2": 0.62, "c3": 0.612}, - {"time": 0.3333, "x": 426.33, "y": 357.51}, {"time": 0.4167, "x": 340.52, "y": 373.76, "curve": 0, "c2": 0.17, "c3": 0.45, "c4": 0.61}, - {"time": 0.5, "x": 236.72, "y": 764.35, "curve": 0.323, "c2": 0.4, "c3": 0.681, "c4": 0.77}, {"time": 0.55, "x": -18.99, "y": 764.25, "curve": 0.377, "c2": 0.62, "c3": 0.724}, - {"time": 0.5833, "x": -86.72, "y": 646.17}, {"time": 0.6667, "x": 16.1, "y": 426.11}, {"time": 0.75, "x": 19.92, "y": 404.36, "curve": 0.255, "c3": 0.659, "c4": 0.47}, - {"time": 0.8333, "x": 90.31, "y": 343.4, "curve": 0.41, "c2": 0.34, "c3": 0.774, "c4": 0.71}, - {"time": 0.8833, "x": 202.62, "y": 235.31, "curve": 0.427, "c2": 0.37, "c3": 0.767, "c4": 0.71}, {"time": 0.9, "x": 290.37, "y": 171.88, "curve": 0.649, "c2": 0.4, "c4": 0.74}, - {"time": 0.9167, "x": 412.25, "y": 355.41}, {"time": 1.0833, "x": 345.67, "y": 359.46, "curve": 0, "c2": 0.17, "c3": 0.45, "c4": 0.61}, - {"time": 1.15, "x": 400.77, "y": 121.52, "curve": 0.345, "c2": 0.53, "c3": 0.751}, {"time": 1.2167, "x": 172.82, "y": 29.19, "curve": 0.306, "c4": 0.8}, {"time": 1.3333} + {"curve": "stepped"}, {"time": 0.0167, "x": 20.18, "y": 0.9, "curve": "stepped"}, {"time": 0.1667, "x": 20.18, "y": 0.9, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333} ] }, - "leg-back-left-IK": { + "@leg-back-left": { "translate": [ - {"time": 0.0833, "x": 1.05, "y": 4.19, "curve": 0.344, "c3": 0.715, "c4": 0.45}, {"time": 0.1167, "x": 28.54, "y": 87, "curve": 0.589, "c2": 0.35, "c4": 0.75}, - {"time": 0.1667, "x": -101.24, "y": 155.59, "curve": 0.313, "c3": 0.699}, {"time": 0.25, "x": -446.46, "y": 186.66, "curve": 0.474, "c3": 0.714, "c4": 0.56}, - {"time": 0.3, "x": -509.64, "y": 364.51, "curve": 0.306, "c2": 0.39, "c3": 0.628, "c4": 0.74}, {"time": 0.3167, "x": -479.36, "y": 400.3, "curve": 0.287, "c2": 0.62, "c3": 0.612}, - {"time": 0.3333, "x": -473.08, "y": 343.1}, {"time": 0.4167, "x": -421.75, "y": 358.21, "curve": 0, "c2": 0.17, "c3": 0.45, "c4": 0.61}, - {"time": 0.5, "x": -502.28, "y": 409.04, "curve": 0.323, "c2": 0.4, "c3": 0.681, "c4": 0.77}, {"time": 0.55, "x": -357.82, "y": 309.09, "curve": 0.377, "c2": 0.62, "c3": 0.724}, - {"time": 0.5833, "x": -190.14, "y": 299.56}, {"time": 0.6667, "x": 28.01, "y": 424.39}, {"time": 0.75, "x": 15.55, "y": 419.34, "curve": 0.255, "c3": 0.659, "c4": 0.47}, - {"time": 0.8333, "x": 74.85, "y": 472.68, "curve": 0.41, "c2": 0.34, "c3": 0.774, "c4": 0.71}, - {"time": 0.8833, "x": 69.06, "y": 556.5, "curve": 0.427, "c2": 0.37, "c3": 0.767, "c4": 0.71}, {"time": 0.9, "x": 11.02, "y": 617.8, "curve": 0.649, "c2": 0.4, "c4": 0.74}, - {"time": 0.9167, "x": -407.64, "y": 352.01}, {"time": 1.0833, "x": -407.65, "y": 352.01, "curve": 0, "c2": 0.17, "c3": 0.45, "c4": 0.61}, - {"time": 1.15, "x": -101.44, "y": 524.93, "curve": 0.345, "c2": 0.53, "c3": 0.751}, {"time": 1.2167, "x": 63.56, "y": 378.89, "curve": 0, "c2": 0.1, "c3": 0.769}, {"time": 1.3333} + {"curve": "stepped"}, {"time": 0.0167, "x": -0.94, "y": 4.51, "curve": "stepped"}, {"time": 0.1667, "x": -0.94, "y": 4.51, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3167} ] }, + "@pivot-main": {"translate": [{"curve": "stepped"}, {"time": 0.0167, "x": 20, "curve": "stepped"}, {"time": 0.3167, "x": 20, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.4167}]}, + "@leg-front-right": {"translate": [{"time": 0.1667, "curve": 0.62, "c4": 0.3}, {"time": 0.3167, "x": -2.11, "y": -28.46, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.4167}]}, "tail": { "rotate": [ - {"curve": 0, "c2": 0.3, "c3": 0.546}, {"time": 0.0833, "angle": 19.35, "curve": 0.313, "c3": 0.699}, {"time": 0.1667, "angle": -22.95, "curve": 0.617, "c4": 0.6}, - {"time": 0.3333, "angle": 22.22}, {"time": 0.4167, "angle": 24.08, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5833, "angle": -30.94, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.6667, "angle": 18.1, "curve": 0.313, "c3": 0.699}, {"time": 0.8333, "angle": -20.52, "curve": 0.464, "c4": 0.7}, {"time": 0.9167, "angle": 16.35}, - {"time": 1.0833, "angle": 20.35, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1.2167, "angle": -9.93, "curve": 0.161, "c3": 0.854}, {"time": 1.3333} + {"curve": "stepped"}, {"time": 0.0167, "angle": 19}, {"time": 0.1667, "angle": 23.91, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.3167, "angle": -21.75, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.4167} ] }, - "@shadow": { - "scale": [ - {"curve": 0, "c2": 0.3, "c3": 0.546}, {"time": 0.0833, "x": 1.1, "y": 1.1, "curve": 0.313, "c3": 0.699}, {"time": 0.1667, "x": 0.92, "y": 0.92, "curve": 0.617, "c4": 0.6}, - {"time": 0.3333, "x": 1.12, "y": 1.12}, {"time": 0.4167, "x": 1.16, "y": 1.16, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5833, "x": 0.86, "y": 0.86, "curve": 0.752, "c4": 0.2}, - {"time": 0.9167, "x": 1.12, "y": 1.12}, {"time": 1.0833, "x": 1.16, "y": 1.16, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1.3333} + "leg-front-right-IK": { + "translate": [ + {"curve": "stepped"}, {"time": 0.0167, "x": 44.88, "y": 143.25}, {"time": 0.0833, "x": -0.81, "y": 175.84}, {"time": 0.1667, "x": 46.95, "y": 154.35, "curve": 0.306, "c4": 0.8}, + {"time": 0.3167} ] }, - "@pivot-main": {"scale": [{"time": 0.3333, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.4167, "y": 0.9, "curve": 0, "c2": 0.3, "c3": 0.546}, {"time": 0.5}]}, - "body-fur-2": { - "rotate": [ - {"angle": 19.98, "curve": 0.289, "c2": 0.19, "c3": 0.673, "c4": 0.69}, {"time": 0.0667, "angle": 4.86, "curve": 0.381, "c2": 0.59, "c3": 0.729}, {"time": 0.1}, - {"time": 0.1833, "angle": 15.16, "curve": 0.25, "c3": 0.75}, {"time": 0.2667, "angle": -17.09, "curve": 0.25, "c3": 0.75}, {"time": 0.4333, "angle": 34.22, "curve": 0.25, "c3": 0.75}, - {"time": 0.5, "angle": -32.46, "curve": 0.25, "c3": 0.75}, {"time": 0.6333, "angle": -37.23, "curve": 0.25, "c3": 0.75}, {"time": 0.8, "angle": 24.78, "curve": 0.25, "c3": 0.75}, - {"time": 1.0167, "angle": -47.33, "curve": 0.25, "c3": 0.75}, {"time": 1.1, "angle": -3.05, "curve": 0.25, "c3": 0.75}, {"time": 1.1833, "angle": -15.24, "curve": 0.25, "c3": 0.75}, - {"time": 1.3167, "angle": 21.64, "curve": 0.295, "c3": 0.633, "c4": 0.37}, {"time": 1.3333, "angle": 13.84} + "leg-front-left-IK": { + "translate": [ + {"curve": "stepped"}, {"time": 0.0167, "x": -4.98, "y": 86.81}, {"time": 0.0833, "x": 23.52, "y": 63.22}, {"time": 0.1667, "x": -2.69, "y": 90.83, "curve": 0.306, "c4": 0.8}, + {"time": 0.3167} ] }, - "body-fur-9": { + "body-fur-1": { "rotate": [ - {"angle": 16.71, "curve": 0.319, "c2": 0.29, "c3": 0.681, "c4": 0.71}, {"time": 0.05, "angle": 4.86, "curve": 0.381, "c2": 0.59, "c3": 0.729}, {"time": 0.0833}, - {"time": 0.1667, "angle": 15.16, "curve": 0.25, "c3": 0.75}, {"time": 0.25, "angle": -17.09, "curve": 0.25, "c3": 0.75}, {"time": 0.4167, "angle": 34.22, "curve": 0.25, "c3": 0.75}, - {"time": 0.4833, "angle": -32.46, "curve": 0.25, "c3": 0.75}, {"time": 0.6167, "angle": -37.23, "curve": 0.25, "c3": 0.75}, {"time": 0.7833, "angle": 24.78, "curve": 0.25, "c3": 0.75}, - {"time": 1, "angle": -47.33, "curve": 0.25, "c3": 0.75}, {"time": 1.0833, "angle": -3.05, "curve": 0.25, "c3": 0.75}, {"time": 1.1667, "angle": -15.24, "curve": 0.25, "c3": 0.75}, - {"time": 1.3, "angle": 21.64, "curve": 0.271, "c3": 0.619, "c4": 0.41}, {"time": 1.3333, "angle": 6.86} + {"angle": -7.37, "curve": 0.379, "c2": 0.53, "c3": 0.746}, {"time": 0.0667}, {"time": 0.15, "angle": 47.21, "curve": 0.384, "c3": 0.75}, + {"time": 0.3333, "angle": -17.29, "curve": 0.247, "c3": 0.631, "c4": 0.53}, {"time": 0.4167, "angle": 10.51} ] }, - "body-fur-8": { + "body-fur-4": { "rotate": [ - {"angle": 8.78, "curve": 0.38, "c2": 0.53, "c3": 0.745}, {"time": 0.05}, {"time": 0.1333, "angle": 15.16, "curve": 0.25, "c3": 0.75}, - {"time": 0.2167, "angle": -17.09, "curve": 0.25, "c3": 0.75}, {"time": 0.3833, "angle": 34.22, "curve": 0.25, "c3": 0.75}, {"time": 0.45, "angle": -32.46, "curve": 0.25, "c3": 0.75}, - {"time": 0.5833, "angle": -37.23, "curve": 0.25, "c3": 0.75}, {"time": 0.75, "angle": 24.78, "curve": 0.25, "c3": 0.75}, {"time": 0.9667, "angle": -47.33, "curve": 0.25, "c3": 0.75}, - {"time": 1.05, "angle": -3.05, "curve": 0.25, "c3": 0.75}, {"time": 1.1333, "angle": -15.24, "curve": 0.25, "c3": 0.75}, - {"time": 1.2667, "angle": 21.64, "curve": 0.246, "c3": 0.633, "c4": 0.54}, {"time": 1.3333, "angle": -0.91} + {"angle": -9.85, "curve": 0.342, "c2": 0.36, "c3": 0.692, "c4": 0.75}, {"time": 0.05, "angle": -2.67, "curve": 0.377, "c2": 0.61, "c3": 0.72}, {"time": 0.0833}, + {"time": 0.1667, "angle": 47.21, "curve": 0.384, "c3": 0.75}, {"time": 0.35, "angle": -17.29, "curve": 0.254, "c3": 0.621, "c4": 0.47}, {"time": 0.4167, "angle": 12.53} ] }, - "body-fur-7": { + "body-fur-2": { "rotate": [ - {"angle": 1.67, "curve": 0.367, "c2": 0.63, "c3": 0.705}, {"time": 0.0167, "curve": 0.25, "c3": 0.75}, {"time": 0.1, "angle": 15.16, "curve": 0.25, "c3": 0.75}, - {"time": 0.1833, "angle": -17.09, "curve": 0.25, "c3": 0.75}, {"time": 0.35, "angle": 34.22, "curve": 0.25, "c3": 0.75}, {"time": 0.4167, "angle": -32.46, "curve": 0.25, "c3": 0.75}, - {"time": 0.55, "angle": -37.23, "curve": 0.25, "c3": 0.75}, {"time": 0.7167, "angle": 24.78, "curve": 0.25, "c3": 0.75}, {"time": 0.9333, "angle": -47.33, "curve": 0.25, "c3": 0.75}, - {"time": 1.0167, "angle": -3.05, "curve": 0.25, "c3": 0.75}, {"time": 1.1, "angle": -15.24, "curve": 0.25, "c3": 0.75}, - {"time": 1.2333, "angle": 21.64, "curve": 0.244, "c3": 0.697, "c4": 0.78}, {"time": 1.3333, "angle": 2.91} + {"angle": -12.33, "curve": 0.33, "c2": 0.32, "c3": 0.693, "c4": 0.75}, {"time": 0.0667, "angle": -2.67, "curve": 0.377, "c2": 0.61, "c3": 0.72}, {"time": 0.1}, + {"time": 0.1833, "angle": 47.21, "curve": 0.384, "c3": 0.75}, {"time": 0.3667, "angle": -17.29, "curve": 0.265, "c3": 0.618, "c4": 0.43}, {"time": 0.4167, "angle": 13.84} ] }, "body-fur-6": { "rotate": [ - {"angle": 12.79, "curve": 0.336, "c2": 0.34, "c3": 0.682, "c4": 0.71}, {"time": 0.0333, "angle": 4.86, "curve": 0.381, "c2": 0.59, "c3": 0.729}, {"time": 0.0667}, - {"time": 0.15, "angle": 15.16, "curve": 0.25, "c3": 0.75}, {"time": 0.2333, "angle": -17.09, "curve": 0.25, "c3": 0.75}, {"time": 0.4, "angle": 34.22, "curve": 0.25, "c3": 0.75}, - {"time": 0.4667, "angle": -32.46, "curve": 0.25, "c3": 0.75}, {"time": 0.6, "angle": -37.23, "curve": 0.25, "c3": 0.75}, {"time": 0.7667, "angle": 24.78, "curve": 0.25, "c3": 0.75}, - {"time": 0.9833, "angle": -47.33, "curve": 0.25, "c3": 0.75}, {"time": 1.0667, "angle": -3.05, "curve": 0.25, "c3": 0.75}, {"time": 1.15, "angle": -15.24, "curve": 0.25, "c3": 0.75}, - {"time": 1.2833, "angle": 21.64, "curve": 0.255, "c3": 0.62, "c4": 0.47}, {"time": 1.3333, "angle": 13.33} + {"angle": -7.31, "curve": 0.347, "c2": 0.38, "c3": 0.688, "c4": 0.74}, {"time": 0.0333, "angle": -2.67, "curve": 0.377, "c2": 0.61, "c3": 0.72}, {"time": 0.0667}, + {"time": 0.15, "angle": 47.21, "curve": 0.384, "c3": 0.75}, {"time": 0.3333, "angle": -17.29, "curve": 0.247, "c3": 0.631, "c4": 0.53}, {"time": 0.4167, "angle": 13.33} ] }, - "body-fur-5": { + "body-fur-7": { "rotate": [ - {"angle": 4.86, "curve": 0.381, "c2": 0.59, "c3": 0.729}, {"time": 0.0333}, {"time": 0.1167, "angle": 15.16, "curve": 0.25, "c3": 0.75}, - {"time": 0.2, "angle": -17.09, "curve": 0.25, "c3": 0.75}, {"time": 0.3667, "angle": 34.22, "curve": 0.25, "c3": 0.75}, {"time": 0.4333, "angle": -32.46, "curve": 0.25, "c3": 0.75}, - {"time": 0.5667, "angle": -37.23, "curve": 0.25, "c3": 0.75}, {"time": 0.7333, "angle": 24.78, "curve": 0.25, "c3": 0.75}, {"time": 0.95, "angle": -47.33, "curve": 0.25, "c3": 0.75}, - {"time": 1.0333, "angle": -3.05, "curve": 0.25, "c3": 0.75}, {"time": 1.1167, "angle": -15.24, "curve": 0.25, "c3": 0.75}, - {"time": 1.25, "angle": 21.64, "curve": 0.243, "c3": 0.658, "c4": 0.64}, {"time": 1.3333, "angle": 6.86} + {"angle": -0.89, "curve": 0.362, "c2": 0.64, "c3": 0.698}, {"time": 0.0167, "curve": 0.25, "c3": 0.75}, {"time": 0.1, "angle": 47.21, "curve": 0.384, "c3": 0.75}, + {"time": 0.2833, "angle": -17.29, "curve": 0.245, "c3": 0.707, "c4": 0.82}, {"time": 0.4167, "angle": 2.91} ] }, - "body-fur-4": { + "body-fur-9": { "rotate": [ - {"angle": 16.71, "curve": 0.319, "c2": 0.29, "c3": 0.681, "c4": 0.71}, {"time": 0.05, "angle": 4.86, "curve": 0.381, "c2": 0.59, "c3": 0.729}, {"time": 0.0833}, - {"time": 0.1667, "angle": 15.16, "curve": 0.25, "c3": 0.75}, {"time": 0.25, "angle": -17.09, "curve": 0.25, "c3": 0.75}, {"time": 0.4167, "angle": 34.22, "curve": 0.25, "c3": 0.75}, - {"time": 0.4833, "angle": -32.46, "curve": 0.25, "c3": 0.75}, {"time": 0.6167, "angle": -37.23, "curve": 0.25, "c3": 0.75}, {"time": 0.7833, "angle": 24.78, "curve": 0.25, "c3": 0.75}, - {"time": 1, "angle": -47.33, "curve": 0.25, "c3": 0.75}, {"time": 1.0833, "angle": -3.05, "curve": 0.25, "c3": 0.75}, {"time": 1.1667, "angle": -15.24, "curve": 0.25, "c3": 0.75}, - {"time": 1.3, "angle": 21.64, "curve": 0.271, "c3": 0.619, "c4": 0.41}, {"time": 1.3333, "angle": 12.53} + {"angle": -9.85, "curve": 0.342, "c2": 0.36, "c3": 0.692, "c4": 0.75}, {"time": 0.05, "angle": -2.67, "curve": 0.377, "c2": 0.61, "c3": 0.72}, + {"time": 0.0833, "curve": 0.25, "c3": 0.75}, {"time": 0.1667, "angle": 47.21, "curve": 0.384, "c3": 0.75}, {"time": 0.35, "angle": -17.29, "curve": 0.254, "c3": 0.621, "c4": 0.47}, + {"time": 0.4167, "angle": 6.86} ] }, "body-fur-3": { "rotate": [ - {"angle": 8.78, "curve": 0.38, "c2": 0.53, "c3": 0.745}, {"time": 0.05}, {"time": 0.1333, "angle": 15.16, "curve": 0.25, "c3": 0.75}, - {"time": 0.2167, "angle": -17.09, "curve": 0.25, "c3": 0.75}, {"time": 0.3833, "angle": 34.22, "curve": 0.25, "c3": 0.75}, {"time": 0.45, "angle": -32.46, "curve": 0.25, "c3": 0.75}, - {"time": 0.5833, "angle": -37.23, "curve": 0.25, "c3": 0.75}, {"time": 0.75, "angle": 24.78, "curve": 0.25, "c3": 0.75}, {"time": 0.9667, "angle": -47.33, "curve": 0.25, "c3": 0.75}, - {"time": 1.05, "angle": -3.05, "curve": 0.25, "c3": 0.75}, {"time": 1.1333, "angle": -15.24, "curve": 0.25, "c3": 0.75}, - {"time": 1.2667, "angle": 21.64, "curve": 0.246, "c3": 0.633, "c4": 0.54}, {"time": 1.3333, "angle": 5.54} + {"angle": -4.91, "curve": 0.382, "c2": 0.57, "c3": 0.735}, {"time": 0.05}, {"time": 0.1333, "angle": 47.21, "curve": 0.384, "c3": 0.75}, + {"time": 0.3167, "angle": -17.29, "curve": 0.243, "c3": 0.649, "c4": 0.6}, {"time": 0.4167, "angle": 5.54} ] }, - "body-fur-1": { + "body-fur-5": { "rotate": [ - {"angle": 12.86, "curve": 0.367, "c2": 0.46, "c3": 0.754}, {"time": 0.0667, "curve": 0.25, "c3": 0.75}, {"time": 0.15, "angle": 15.16, "curve": 0.25, "c3": 0.75}, - {"time": 0.2333, "angle": -17.09, "curve": 0.25, "c3": 0.75}, {"time": 0.4, "angle": 34.22, "curve": 0.25, "c3": 0.75}, {"time": 0.4667, "angle": -32.46, "curve": 0.25, "c3": 0.75}, - {"time": 0.6, "angle": -37.23, "curve": 0.25, "c3": 0.75}, {"time": 0.7667, "angle": 24.78, "curve": 0.25, "c3": 0.75}, {"time": 0.9833, "angle": -47.33, "curve": 0.25, "c3": 0.75}, - {"time": 1.0667, "angle": -3.05, "curve": 0.25, "c3": 0.75}, {"time": 1.15, "angle": -15.24, "curve": 0.25, "c3": 0.75}, - {"time": 1.2833, "angle": 21.64, "curve": 0.255, "c3": 0.62, "c4": 0.47}, {"time": 1.3333, "angle": 10.51} + {"angle": -2.67, "curve": 0.377, "c2": 0.61, "c3": 0.72}, {"time": 0.0333}, {"time": 0.1167, "angle": 47.21, "curve": 0.384, "c3": 0.75}, + {"time": 0.3, "angle": -17.29, "curve": 0.243, "c3": 0.674, "c4": 0.69}, {"time": 0.4167, "angle": 6.86} + ] + }, + "body-fur-8": { + "rotate": [ + {"angle": -4.91, "curve": 0.382, "c2": 0.57, "c3": 0.735}, {"time": 0.05, "curve": 0.25, "c3": 0.75}, {"time": 0.1333, "angle": 47.21, "curve": 0.384, "c3": 0.75}, + {"time": 0.3167, "angle": -17.29, "curve": 0.243, "c3": 0.649, "c4": 0.6}, {"time": 0.4167, "angle": -0.91} ] } - }, - "events": [{"time": 0.4333, "name": "jump"}, {"time": 0.8333, "name": "start-attack"}, {"time": 0.9167, "name": "hit"}] + } }, - "2980573062": { - "slots": {"eyes": {"attachment": [{"name": "eyes-shut"}]}}, + "3973892445": { + "slots": { + "eyes": {"attachment": [{"time": 0.0167, "name": "eyes-shut"}, {"time": 0.1833, "name": "eyes-angry"}, {"time": 0.4, "name": "eyes"}]}, + "mouth": {"attachment": [{"time": 0.0167, "name": "mouth-bite"}, {"time": 0.4, "name": "mouth"}]} + }, "bones": { - "@pivot-back": {"translate": [{"curve": 0.384, "c3": 0.312}, {"time": 0.6667, "y": 22.76, "curve": 0.384, "c3": 0.306}, {"time": 1.3333}]}, "tail": { "rotate": [ - {"curve": 0, "c2": 0.05, "c3": 0.658}, {"time": 0.3333, "angle": -5.21, "curve": 0.304, "c3": 0.689}, {"time": 0.7333, "angle": -0.27}, - {"time": 1.05, "angle": 1.75, "curve": 0.234, "c4": 0.9}, {"time": 1.3333} + {"curve": "stepped"}, {"time": 0.0167, "angle": 35.35}, {"time": 0.1667, "angle": 50.35, "curve": 0.315, "c4": 0.8}, {"time": 0.3167, "angle": -21.75, "curve": 0, "c2": 0.1, "c3": 0.85}, + {"time": 0.4167} ] }, - "@shadow": {"scale": [{"curve": 0.387, "c3": 0.314}, {"time": 0.6667, "x": 0.9, "y": 0.9, "curve": 0.387, "c3": 0.314}, {"time": 1.3333}]}, - "body-fur-2": { + "leg-front-right-IK": { + "translate": [{"curve": "stepped"}, {"time": 0.0167, "x": 74.76, "y": 322.04}, {"time": 0.1667, "x": 85.96, "y": 349.35, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3167}] + }, + "@pivot-back": { "rotate": [ - {"angle": 4.14, "curve": 0.349, "c2": 0.39, "c3": 0.707, "c4": 0.8}, {"time": 0.2667, "angle": -10.49, "curve": 0.369, "c2": 0.63, "c3": 0.706}, - {"time": 0.3667, "angle": -13.03, "curve": 0.25, "c3": 0.75}, {"time": 1.0333, "angle": 17.57, "curve": 0.253, "c3": 0.621, "c4": 0.48}, {"time": 1.3333, "angle": 4.14} + {"curve": "stepped"}, {"time": 0.0167, "angle": -45}, {"time": 0.1667, "angle": -50, "curve": 0.464, "c4": 0.7}, {"time": 0.3167, "angle": 5.2, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.4167} + ], + "translate": [{"curve": "stepped"}, {"time": 0.0167, "x": 94.99, "y": -21}, {"time": 0.1667, "x": 107, "y": -60, "curve": 0.464, "c4": 0.7}, {"time": 0.3167}] + }, + "@shadow": { + "translate": [ + {"curve": "stepped"}, {"time": 0.0167, "x": 70.3, "curve": "stepped"}, {"time": 0.1667, "x": 70.3, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.3167, "x": 12.49, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.4167} + ], + "scale": [ + {"curve": "stepped"}, {"time": 0.0167, "x": 0.98, "y": 0.98}, {"time": 0.1667, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.3167, "x": 1.08, "y": 1.08, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.4167} ] }, - "body-fur-9": { - "rotate": [ - {"angle": -6.6, "curve": 0.35, "c2": 0.4, "c3": 0.686, "c4": 0.74}, {"time": 0.0833, "angle": -10.49, "curve": 0.369, "c2": 0.63, "c3": 0.706}, - {"time": 0.1833, "angle": -13.03, "curve": 0.25, "c3": 0.75}, {"time": 0.85, "angle": 17.57, "curve": 0.242, "c3": 0.661, "c4": 0.65}, {"time": 1.3333, "angle": -6.6} + "leg-back-left-IK": { + "translate": [ + {"curve": "stepped"}, {"time": 0.0167, "x": 11.67, "y": 0.9, "curve": "stepped"}, {"time": 0.1667, "x": 11.67, "y": 0.9, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333} ] }, + "@leg-back-left": {"translate": [{"curve": "stepped"}, {"time": 0.0167, "x": -2.63, "y": 8.92}, {"time": 0.1667, "x": 18.61, "y": -8.3, "curve": 0.464, "c4": 0.7}, {"time": 0.3167}]}, + "@pivot-main": {"translate": [{"curve": "stepped"}, {"time": 0.0167, "x": 20, "curve": "stepped"}, {"time": 0.3167, "x": 20, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.4167}]}, + "leg-front-left-IK": { + "translate": [{"curve": "stepped"}, {"time": 0.0167, "x": -4.7, "y": 168.09}, {"time": 0.1667, "x": 6.72, "y": 174.87, "curve": 0.306, "c3": 0.695}, {"time": 0.3167}] + }, + "@leg-front-left": {"translate": [{"time": 0.1667, "curve": 0.62, "c4": 0.3}, {"time": 0.3167, "x": -1.1, "y": -14.87, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.4167}]}, + "@leg-front-right": {"translate": [{"time": 0.1667, "curve": 0.62, "c4": 0.3}, {"time": 0.3167, "x": -2.11, "y": -28.46, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.4167}]}, "body-fur-8": { "rotate": [ - {"angle": -11.11, "curve": 0.364, "c2": 0.64, "c3": 0.701}, {"time": 0.0833, "angle": -13.03, "curve": 0.25, "c3": 0.75}, - {"time": 0.75, "angle": 17.57, "curve": 0.244, "c3": 0.702, "c4": 0.8}, {"time": 1.3333, "angle": -11.11} + {"angle": -3.8, "curve": 0.377, "c2": 0.61, "c3": 0.72}, {"time": 0.0333}, {"time": 0.1167, "angle": 55.85, "curve": 0.409, "c2": 0.01, "c3": 0.75}, + {"time": 0.3, "angle": -24.65, "curve": 0.243, "c3": 0.674, "c4": 0.69}, {"time": 0.4167, "angle": -0.91} ] }, - "body-fur-7": { + "body-fur-1": { "rotate": [ - {"angle": -11.73, "curve": 0.36, "c2": 0.64, "c3": 0.695}, {"time": 0.0667, "angle": -13.03, "curve": 0.25, "c3": 0.75}, - {"time": 0.7333, "angle": 17.57, "curve": 0.245, "c3": 0.711, "c4": 0.83}, {"time": 1.3333, "angle": -11.73} + {"angle": -10.51, "curve": 0.379, "c2": 0.53, "c3": 0.746}, {"time": 0.0667}, {"time": 0.15, "angle": 55.85, "curve": 0.409, "c2": 0.01, "c3": 0.75}, + {"time": 0.3333, "angle": -24.65, "curve": 0.247, "c3": 0.631, "c4": 0.53}, {"time": 0.4167, "angle": 10.51} ] }, - "body-fur-6": { + "body-fur-2": { "rotate": [ - {"angle": -3.86, "curve": 0.354, "c2": 0.41, "c3": 0.694, "c4": 0.77}, {"time": 0.1333, "angle": -10.49, "curve": 0.369, "c2": 0.63, "c3": 0.706}, - {"time": 0.2333, "angle": -13.03, "curve": 0.25, "c3": 0.75}, {"time": 0.9, "angle": 17.57, "curve": 0.244, "c3": 0.646, "c4": 0.59}, {"time": 1.3333, "angle": -3.86} + {"angle": -17.58, "curve": 0.33, "c2": 0.32, "c3": 0.693, "c4": 0.75}, {"time": 0.0667, "angle": -3.8, "curve": 0.377, "c2": 0.61, "c3": 0.72}, {"time": 0.1}, + {"time": 0.1833, "angle": 55.85, "curve": 0.409, "c2": 0.01, "c3": 0.75}, {"time": 0.3667, "angle": -24.65, "curve": 0.265, "c3": 0.618, "c4": 0.43}, {"time": 0.4167, "angle": 13.84} ] }, - "body-fur-5": { + "body-fur-3": { "rotate": [ - {"angle": -9.05, "curve": 0.375, "c2": 0.62, "c3": 0.716}, {"time": 0.1333, "angle": -13.03, "curve": 0.25, "c3": 0.75}, - {"time": 0.8, "angle": 17.57, "curve": 0.243, "c3": 0.68, "c4": 0.71}, {"time": 1.3333, "angle": -9.05} + {"angle": -6.99, "curve": 0.382, "c2": 0.57, "c3": 0.735}, {"time": 0.05, "curve": 0.25, "c3": 0.75}, {"time": 0.1333, "angle": 55.85, "curve": 0.409, "c2": 0.01, "c3": 0.75}, + {"time": 0.3167, "angle": -24.65, "curve": 0.243, "c3": 0.649, "c4": 0.6}, {"time": 0.4167, "angle": 5.54} ] }, "body-fur-4": { "rotate": [ - {"angle": 0.08, "curve": 0.355, "c2": 0.41, "c3": 0.702, "c4": 0.79}, {"time": 0.2, "angle": -10.49, "curve": 0.369, "c2": 0.63, "c3": 0.706}, - {"time": 0.3, "angle": -13.03, "curve": 0.25, "c3": 0.75}, {"time": 0.9667, "angle": 17.57, "curve": 0.247, "c3": 0.63, "c4": 0.53}, {"time": 1.3333, "angle": 0.08} + {"angle": -14.05, "curve": 0.342, "c2": 0.36, "c3": 0.692, "c4": 0.75}, {"time": 0.05, "angle": -3.8, "curve": 0.377, "c2": 0.61, "c3": 0.72}, {"time": 0.0833}, + {"time": 0.1667, "angle": 55.85, "curve": 0.409, "c2": 0.01, "c3": 0.75}, {"time": 0.35, "angle": -24.65, "curve": 0.254, "c3": 0.621, "c4": 0.47}, {"time": 0.4167, "angle": 12.53} ] }, - "body-fur-3": { + "body-fur-5": { "rotate": [ - {"angle": -5.62, "curve": 0.382, "c2": 0.58, "c3": 0.731}, {"time": 0.2, "angle": -13.03, "curve": 0.25, "c3": 0.75}, - {"time": 0.8667, "angle": 17.57, "curve": 0.243, "c3": 0.655, "c4": 0.63}, {"time": 1.3333, "angle": -5.62} + {"angle": -3.8, "curve": 0.377, "c2": 0.61, "c3": 0.72}, {"time": 0.0333, "curve": 0.25, "c3": 0.75}, {"time": 0.1167, "angle": 55.85, "curve": 0.409, "c2": 0.01, "c3": 0.75}, + {"time": 0.3, "angle": -24.65, "curve": 0.243, "c3": 0.674, "c4": 0.69}, {"time": 0.4167, "angle": 6.86} ] }, - "body-fur-1": { + "body-fur-6": { "rotate": [ - {"angle": -1.77, "curve": 0.381, "c2": 0.55, "c3": 0.742}, {"time": 0.2667, "angle": -13.03, "curve": 0.25, "c3": 0.75}, - {"time": 0.9333, "angle": 17.57, "curve": 0.245, "c3": 0.637, "c4": 0.56}, {"time": 1.3333, "angle": -1.77} + {"angle": -10.42, "curve": 0.347, "c2": 0.38, "c3": 0.688, "c4": 0.74}, {"time": 0.0333, "angle": -3.8, "curve": 0.377, "c2": 0.61, "c3": 0.72}, {"time": 0.0667}, + {"time": 0.15, "angle": 55.85, "curve": 0.409, "c2": 0.01, "c3": 0.75}, {"time": 0.3333, "angle": -24.65, "curve": 0.247, "c3": 0.631, "c4": 0.53}, {"time": 0.4167, "angle": 13.33} + ] + }, + "body-fur-7": { + "rotate": [ + {"angle": -1.27, "curve": 0.362, "c2": 0.64, "c3": 0.698}, {"time": 0.0167, "curve": 0.25, "c3": 0.75}, {"time": 0.1, "angle": 55.85, "curve": 0.409, "c2": 0.01, "c3": 0.75}, + {"time": 0.2833, "angle": -24.65, "curve": 0.245, "c3": 0.707, "c4": 0.82}, {"time": 0.4167, "angle": 2.91} + ] + }, + "body-fur-9": { + "rotate": [ + {"angle": -10.42, "curve": 0.347, "c2": 0.38, "c3": 0.688, "c4": 0.74}, {"time": 0.0333, "angle": -3.8, "curve": 0.377, "c2": 0.61, "c3": 0.72}, + {"time": 0.0667, "curve": 0.25, "c3": 0.75}, {"time": 0.15, "angle": 55.85, "curve": 0.409, "c2": 0.01, "c3": 0.75}, + {"time": 0.3333, "angle": -24.65, "curve": 0.247, "c3": 0.631, "c4": 0.53}, {"time": 0.4167, "angle": 6.86} ] } } }, - "4076098330": { + "3475359579": { "slots": { - "eyes": {"attachment": [{"time": 0.05, "name": "eyes-angry"}, {"time": 0.8333, "name": "eyes-shut"}, {"time": 0.9167, "name": "eyes"}]}, - "mouth": {"attachment": [{"time": 0.05, "name": "mouth-bite"}, {"time": 0.3333, "name": "mouth-open"}, {"time": 0.75, "name": "mouth-bite"}, {"time": 0.9167, "name": "mouth"}]} + "eyes": {"attachment": [{"time": 0.0167, "name": "eyes-shut"}, {"time": 0.5833, "name": "eyes-angry"}, {"time": 0.8333, "name": "eyes-shut"}, {"time": 0.9167, "name": "eyes"}]}, + "mouth": {"attachment": [{"time": 0.0167, "name": "mouth-bite"}, {"time": 0.6667, "name": "mouth-open"}, {"time": 0.8333, "name": "mouth"}]} }, "bones": { - "tail": { - "rotate": [ - {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.25, "angle": 21.98, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3167, "angle": -15.58, "curve": "stepped"}, - {"time": 0.3333, "angle": -19.65, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.4, "angle": 20.35, "curve": "stepped"}, {"time": 0.4333, "angle": -19.65, "curve": "stepped"}, - {"time": 0.4667, "angle": -19.65, "curve": 0.461, "c3": 0.543}, {"time": 0.5333, "angle": 20.35, "curve": "stepped"}, {"time": 0.5667, "angle": -19.65, "curve": "stepped"}, - {"time": 0.6, "angle": -19.65, "curve": 0.461, "c3": 0.543}, {"time": 0.6667, "angle": 20.35, "curve": "stepped"}, {"time": 0.7, "angle": -19.65, "curve": "stepped"}, - {"time": 0.75, "angle": -11.84, "curve": 0.313, "c3": 0.699}, {"time": 0.8333, "angle": 16.95, "curve": 0.313, "c3": 0.699}, {"time": 1} - ] - }, "@pivot-back": { "rotate": [ - {"curve": 0, "c2": 0.4, "c3": 0.383}, {"time": 0.15, "angle": 4, "curve": "stepped"}, {"time": 0.25, "angle": 4, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.3167, "curve": "stepped"}, {"time": 0.3333, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.4, "angle": -2.45, "curve": "stepped"}, {"time": 0.4333, "curve": "stepped"}, - {"time": 0.4667, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.5333, "angle": -2.45, "curve": "stepped"}, {"time": 0.5667, "curve": "stepped"}, - {"time": 0.6, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.6667, "angle": -2.45, "curve": "stepped"}, {"time": 0.7, "curve": "stepped"}, {"time": 0.75, "curve": 0.313, "c3": 0.699}, - {"time": 0.8333, "angle": 6, "curve": 0.313, "c3": 0.699}, {"time": 1} + {"curve": "stepped"}, {"time": 0.0167, "angle": -45}, {"time": 0.1, "angle": -85, "curve": "stepped"}, {"time": 0.6667, "angle": -85, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.8333, "angle": 6, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1} ], "translate": [ - {"curve": 0, "c2": 0.4, "c3": 0.383}, {"time": 0.25, "x": 25, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3167, "x": -135.5, "curve": "stepped"}, - {"time": 0.3333, "x": -560.54, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.4, "x": -560.54, "y": 9.3, "curve": "stepped"}, {"time": 0.4333, "x": -560.54, "curve": "stepped"}, - {"time": 0.4667, "x": -560.54, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.5333, "x": -560.54, "y": 9.3, "curve": "stepped"}, {"time": 0.5667, "x": -560.54, "curve": "stepped"}, - {"time": 0.6, "x": -560.54, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.6667, "x": -560.54, "y": 9.3, "curve": "stepped"}, {"time": 0.7, "x": -560.54, "curve": "stepped"}, - {"time": 0.75, "x": -151.24, "curve": 0.313, "c3": 0.699}, {"time": 0.8333, "x": -151.24, "y": 4.06, "curve": 0.313, "c3": 0.699}, {"time": 1} - ], - "scale": [{"time": 0.3167, "curve": "stepped"}, {"time": 0.3333, "x": -1, "curve": "stepped"}, {"time": 0.7, "x": -1, "curve": "stepped"}, {"time": 0.75}] + {"curve": "stepped"}, {"time": 0.0167, "x": 94.99, "y": -21}, {"time": 0.05, "x": 256.42, "y": -60}, {"time": 0.1, "x": 408.25, "y": -188, "curve": "stepped"}, + {"time": 0.6667, "x": 408.25, "y": -188, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.8333, "y": 12.75, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1} + ] }, - "@leg-front-right": { + "@shadow": { "translate": [ - {"curve": 0, "c2": 0.4, "c3": 0.383}, {"time": 0.25, "x": -1.86, "y": -9.26, "curve": "stepped"}, {"time": 0.3167, "x": -1.86, "y": -9.26, "curve": "stepped"}, - {"time": 0.3333, "x": -2.24, "y": 13.67, "curve": "stepped"}, {"time": 0.75, "x": -2.24, "y": 13.67, "curve": 0.313, "c3": 0.699}, - {"time": 0.8333, "x": -1.86, "y": -9.26, "curve": 0.313, "c3": 0.699}, {"time": 1} + {"curve": "stepped"}, {"time": 0.0167, "x": 144.17}, {"time": 0.1, "x": 589.27, "curve": 0.313, "c3": 0.699}, {"time": 0.25, "x": 627.48, "curve": 0.313, "c3": 0.699}, + {"time": 0.4167, "x": 576.87, "curve": 0.313, "c3": 0.699}, {"time": 0.55, "x": 602.83, "curve": 0.313, "c3": 0.699}, {"time": 0.6667, "x": 576.87, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.8333} + ], + "scale": [ + {"curve": "stepped"}, {"time": 0.0167, "x": 0.92, "y": 0.92}, {"time": 0.1, "curve": 0, "c2": 0.22, "c3": 0.373, "c4": 0.57}, {"time": 0.25, "x": 1.04, "y": 1.04, "curve": "stepped"}, + {"time": 0.6667, "x": 1.04, "y": 1.04, "curve": 0.206, "c2": 0.38, "c3": 0.736}, {"time": 0.8333, "x": 1.1, "y": 1.1, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1} ] }, - "@leg-front-left": { + "@leg-back-left": {"translate": [{"curve": "stepped"}, {"time": 0.0167, "x": 6.4, "y": 0.19}, {"time": 0.1667}]}, + "leg-front-right-IK": { "translate": [ - {"curve": 0, "c2": 0.4, "c3": 0.383}, {"time": 0.25, "x": -1, "y": -5.53, "curve": "stepped"}, {"time": 0.3167, "x": -1, "y": -5.53, "curve": "stepped"}, - {"time": 0.3333, "x": -1.12, "y": 1.52, "curve": "stepped"}, {"time": 0.75, "x": -1.12, "y": 1.52, "curve": 0.313, "c3": 0.699}, - {"time": 0.8333, "x": -1, "y": -5.53, "curve": 0.313, "c3": 0.699}, {"time": 1} + {"curve": "stepped"}, {"time": 0.0167, "x": 69.67, "y": 327.04}, {"time": 0.05, "x": 451.04, "y": 582.91}, {"time": 0.0833, "x": 787.85, "y": 470.29}, + {"time": 0.1, "x": 945.09, "y": 394.99, "curve": 0.313, "c3": 0.699}, {"time": 0.25, "x": 1086.85, "y": 338.86, "curve": 0.313, "c3": 0.699}, + {"time": 0.4167, "x": 921.41, "y": 410.91, "curve": 0.313, "c3": 0.699}, {"time": 0.5833, "x": 1028.37, "y": 385.44}, {"time": 0.6667, "x": 914.82, "y": 422.49}, + {"time": 0.7, "x": 413.58, "y": 458.44}, {"time": 0.75, "x": 45.46, "y": 287.09}, {"time": 0.7833, "x": -34.18, "y": 117.59}, {"time": 0.8333} ] }, - "@shadow": { - "translate": [ - {"time": 0.25, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3167, "x": -143.36, "curve": "stepped"}, {"time": 0.7, "x": -143.36, "curve": "stepped"}, - {"time": 0.75, "x": -161.35, "curve": "stepped"}, {"time": 0.8333, "x": -161.35, "curve": 0.313, "c3": 0.699}, {"time": 1} - ], - "scale": [ - {"curve": 0, "c2": 0.4, "c3": 0.383}, {"time": 0.25, "x": 1.08, "y": 1.08, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3167, "curve": "stepped"}, - {"time": 0.3333, "x": 1.02, "y": 1.02, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.4, "x": 0.96, "y": 0.96, "curve": "stepped"}, - {"time": 0.4333, "x": 1.02, "y": 1.02, "curve": "stepped"}, {"time": 0.4667, "x": 1.02, "y": 1.02, "curve": 0, "c2": 0.3, "c3": 0.544}, - {"time": 0.5333, "x": 0.96, "y": 0.96, "curve": "stepped"}, {"time": 0.5667, "x": 1.02, "y": 1.02, "curve": "stepped"}, - {"time": 0.6, "x": 1.02, "y": 1.02, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.6667, "x": 0.96, "y": 0.96, "curve": "stepped"}, - {"time": 0.7, "x": 1.02, "y": 1.02, "curve": "stepped"}, {"time": 0.75, "curve": 0.313, "c3": 0.699}, {"time": 0.8333, "x": 1.08, "y": 1.08, "curve": 0.313, "c3": 0.699}, {"time": 1} + "tail": { + "rotate": [ + {"curve": "stepped"}, {"time": 0.0167, "angle": 35.35}, {"time": 0.1, "angle": -18.03, "curve": 0.313, "c3": 0.699}, {"time": 0.25, "angle": 12.69, "curve": 0.313, "c3": 0.699}, + {"time": 0.4167, "angle": -15.12, "curve": 0.313, "c3": 0.699}, {"time": 0.6667, "angle": 1.29, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.8333, "angle": 19.35, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1} ] }, - "leg-front-left-IK": { + "leg-back-left-IK": { "translate": [ - {"time": 0.25, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3167, "x": -192.09, "y": 31.17, "curve": "stepped"}, - {"time": 0.3333, "x": -219.56, "y": 3.98, "curve": 0.277, "c3": 0.849, "c4": 0.67}, {"time": 0.65, "x": -219.56, "y": 3.98, "curve": 0.641, "c2": 0.41, "c4": 0.76}, - {"time": 0.7, "x": -226.38, "y": 3.98, "curve": "stepped"}, {"time": 0.75, "x": -157.76, "curve": "stepped"}, {"time": 0.8333, "x": -157.76, "curve": 0.306, "c3": 0.695}, {"time": 1} + {"curve": "stepped"}, {"time": 0.0167, "x": -3.7, "y": 19.91}, {"time": 0.05, "x": -86.78, "y": 121.52}, {"time": 0.1, "x": 129.15, "y": 364.61, "curve": 0.313, "c3": 0.699}, + {"time": 0.25, "x": 262.18, "y": 406.7, "curve": 0.313, "c3": 0.699}, {"time": 0.4167, "x": 109.91, "y": 347.96, "curve": 0.313, "c3": 0.699}, {"time": 0.5833, "x": 216.28, "y": 393.95}, + {"time": 0.6667, "x": 118.81, "y": 360.02}, {"time": 0.7, "x": -121.03, "y": 41.31}, {"time": 0.75, "x": -95.31, "y": -47.01}, {"time": 0.7833, "x": 22.31, "y": -53.8}, {"time": 0.8333} ] }, - "leg-front-right-IK": { + "leg-front-left-IK": { "translate": [ - {"time": 0.25, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3167, "x": -172.87, "y": 28.32, "curve": "stepped"}, {"time": 0.3333, "x": 295.89, "y": 8.85, "curve": "stepped"}, - {"time": 0.7, "x": 295.89, "y": 8.85, "curve": "stepped"}, {"time": 0.75, "x": -180.48, "curve": "stepped"}, {"time": 0.8333, "x": -180.48, "curve": 0.313, "c3": 0.699}, {"time": 1} + {"curve": "stepped"}, {"time": 0.0167, "x": -5.8, "y": 177.99}, {"time": 0.05, "x": 106.35, "y": 306.87}, {"time": 0.0833, "x": 355.94, "y": 424.69}, + {"time": 0.1, "x": 515.46, "y": 408.14, "curve": 0.313, "c3": 0.699}, {"time": 0.25, "x": 536.35, "y": 423.87, "curve": 0.313, "c3": 0.699}, + {"time": 0.4167, "x": 492.39, "y": 405.73, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.6667, "x": 482.36, "y": 419.06}, {"time": 0.7, "x": 97.67, "y": 283.45}, + {"time": 0.75, "x": -12.16, "y": 45.82}, {"time": 0.7833, "x": -31.56, "y": 29.02}, {"time": 0.8333} ] }, - "leg-back-left-IK": { + "@pivot-center": { + "rotate": [ + {"time": 0.0167, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.1, "angle": -95, "curve": 0.313, "c3": 0.699}, {"time": 0.25, "angle": -105, "curve": 0.313, "c3": 0.699}, + {"time": 0.4167, "angle": -90, "curve": 0.313, "c3": 0.699}, {"time": 0.55, "angle": -100, "curve": 0.313, "c3": 0.699}, + {"time": 0.6667, "angle": -90, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.8333} + ], "translate": [ - {"time": 0.25, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3167, "x": -96.78, "y": 27.51, "curve": "stepped"}, {"time": 0.3333, "x": -542.14, "curve": "stepped"}, - {"time": 0.7, "x": -542.14, "curve": "stepped"}, {"time": 0.75, "x": -134.74, "curve": "stepped"}, {"time": 0.8333, "x": -134.74, "curve": 0.313, "c3": 0.699}, {"time": 1} + {"time": 0.1, "curve": 0.313, "c3": 0.699}, {"time": 0.25, "x": 1.68, "y": 38.2, "curve": 0.313, "c3": 0.699}, {"time": 0.4167, "x": -2.73, "y": -12.21, "curve": 0.313, "c3": 0.699}, + {"time": 0.55, "x": -0.47, "y": 13.65, "curve": 0.313, "c3": 0.699}, {"time": 0.6667, "x": -2.73, "y": -12.21, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.8333} ] }, - "@leg-back-left": { - "translate": [{"time": 0.3167, "curve": "stepped"}, {"time": 0.3333, "x": -0.06, "y": 3.33, "curve": "stepped"}, {"time": 0.7, "x": -0.06, "y": 3.33, "curve": "stepped"}, {"time": 0.75}] + "@pivot-main": { + "translate": [{"time": 0.6667, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.75, "y": 150, "curve": 0.315, "c4": 0.8}, {"time": 0.8333}], + "scale": [ + {"time": 0.1, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "y": 0.93, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "curve": "stepped"}, + {"time": 0.5667, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.65, "y": 0.7, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.7333, "curve": "stepped"}, + {"time": 0.8333, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.9167, "y": 0.98, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1} + ] }, - "@pivot-main": {"translate": [{"time": 0.8333, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.9167, "y": 31, "curve": 0.315, "c4": 0.8}, {"time": 1}]}, + "@leg-front-right": {"translate": [{"time": 0.75, "curve": 0.306, "c4": 0.8}, {"time": 0.8333, "x": -2.23, "y": -25.27, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1}]}, "body-fur-2": { "rotate": [ - {"angle": 13.97, "curve": 0.346, "c2": 0.38, "c3": 0.7, "c4": 0.78}, {"time": 0.0667, "angle": -5.21, "curve": 0.373, "c2": 0.62, "c3": 0.713}, {"time": 0.1, "angle": -9.97}, - {"time": 0.2333, "angle": 18.26, "curve": 0.25, "c3": 0.75}, {"time": 0.4167, "angle": -20.51, "curve": 0.25, "c3": 0.75}, {"time": 0.5, "angle": 32.13, "curve": 0.25, "c3": 0.75}, - {"time": 0.6167, "angle": -10.59, "curve": 0.25, "c3": 0.75}, {"time": 0.7167, "angle": 18.01, "curve": 0.25, "c3": 0.75}, {"time": 0.8167, "angle": -14.98, "curve": 0.25, "c3": 0.75}, - {"time": 0.9167, "angle": 33.21, "curve": 0.253, "c3": 0.621, "c4": 0.48}, {"time": 1, "angle": 13.84} + {"angle": -12.43, "curve": 0.308, "c2": 0.39, "c3": 0.641, "c4": 0.78}, {"time": 0.0667, "angle": 7.42, "curve": 0.322, "c2": 0.62, "c3": 0.655}, + {"time": 0.1, "angle": 10.43, "curve": 0.25, "c3": 0.75}, {"time": 0.2, "angle": 34.88, "curve": 0.25, "c3": 0.579}, {"time": 0.3167, "angle": -33.9, "curve": 0.25, "c3": 0.75}, + {"time": 0.4833, "angle": 4.81, "curve": 0.25, "c3": 0.75}, {"time": 0.6667, "angle": -37.99, "curve": 0.25, "c3": 0.75}, {"time": 0.7667, "angle": 8.02, "curve": 0.25, "c3": 0.75}, + {"time": 0.9, "angle": -42.9, "curve": 0.286, "c3": 0.619, "c4": 0.5}, {"time": 1, "angle": 13.84} ] }, "body-fur-9": { "rotate": [ - {"angle": 8.75, "curve": 0.351, "c2": 0.39, "c3": 0.696, "c4": 0.76}, {"time": 0.05, "angle": -5.21}, {"time": 0.0833, "angle": -9.97}, - {"time": 0.2167, "angle": 18.26, "curve": 0.25, "c3": 0.75}, {"time": 0.4, "angle": -20.51, "curve": 0.25, "c3": 0.75}, {"time": 0.4833, "angle": 32.13, "curve": 0.25, "c3": 0.75}, - {"time": 0.6, "angle": -10.59, "curve": 0.25, "c3": 0.75}, {"time": 0.7, "angle": 18.01, "curve": 0.25, "c3": 0.75}, {"time": 0.8, "angle": -14.98, "curve": 0.25, "c3": 0.75}, - {"time": 0.9, "angle": 33.21, "curve": 0.247, "c3": 0.63, "c4": 0.52}, {"time": 1, "angle": 6.86} + {"angle": -6.38, "curve": 0.314, "c2": 0.4, "c3": 0.648, "c4": 0.77}, {"time": 0.05, "angle": 7.42, "curve": 0.322, "c2": 0.62, "c3": 0.655}, {"time": 0.0833, "angle": 10.43}, + {"time": 0.1833, "angle": 34.88, "curve": 0.25, "c3": 0.579}, {"time": 0.3, "angle": -33.9, "curve": 0.25, "c3": 0.75}, {"time": 0.4667, "angle": 4.81, "curve": 0.25, "c3": 0.75}, + {"time": 0.65, "angle": -37.99, "curve": 0.25, "c3": 0.75}, {"time": 0.75, "angle": 8.02, "curve": 0.25, "c3": 0.75}, + {"time": 0.8833, "angle": -42.9, "curve": 0.279, "c3": 0.612, "c4": 0.55}, {"time": 1, "angle": 6.86} ] }, "body-fur-8": { "rotate": [ - {"angle": -0.94, "curve": 0.381, "c2": 0.59, "c3": 0.727}, {"time": 0.05, "angle": -9.97}, {"time": 0.1833, "angle": 18.26, "curve": 0.25, "c3": 0.75}, - {"time": 0.3667, "angle": -20.51, "curve": 0.25, "c3": 0.75}, {"time": 0.45, "angle": 32.13, "curve": 0.25, "c3": 0.75}, {"time": 0.5667, "angle": -10.59, "curve": 0.25, "c3": 0.75}, - {"time": 0.6667, "angle": 18.01, "curve": 0.25, "c3": 0.75}, {"time": 0.7667, "angle": -14.98, "curve": 0.25, "c3": 0.75}, - {"time": 0.8667, "angle": 33.21, "curve": 0.242, "c3": 0.661, "c4": 0.65}, {"time": 1, "angle": -0.91} + {"angle": 4.36, "curve": 0.316, "c2": 0.6, "c3": 0.649}, {"time": 0.05, "angle": 10.43}, {"time": 0.15, "angle": 34.88, "curve": 0.25, "c3": 0.579}, + {"time": 0.2667, "angle": -33.9, "curve": 0.25, "c3": 0.75}, {"time": 0.4333, "angle": 4.81, "curve": 0.25, "c3": 0.75}, {"time": 0.6167, "angle": -37.99, "curve": 0.25, "c3": 0.75}, + {"time": 0.7167, "angle": 8.02, "curve": 0.25, "c3": 0.75}, {"time": 0.85, "angle": -42.9, "curve": 0.267, "c3": 0.6, "c4": 0.67}, {"time": 1, "angle": -0.91} ] }, "body-fur-7": { "rotate": [ - {"angle": -8.45, "curve": 0.358, "c2": 0.65, "c3": 0.693}, {"time": 0.0167, "angle": -9.97}, {"time": 0.15, "angle": 18.26, "curve": 0.25, "c3": 0.75}, - {"time": 0.3333, "angle": -20.51, "curve": 0.25, "c3": 0.75}, {"time": 0.4167, "angle": 32.13, "curve": 0.25, "c3": 0.75}, {"time": 0.5333, "angle": -10.59, "curve": 0.25, "c3": 0.75}, - {"time": 0.6333, "angle": 18.01, "curve": 0.25, "c3": 0.75}, {"time": 0.7333, "angle": -14.98, "curve": 0.25, "c3": 0.75}, - {"time": 0.8333, "angle": 33.21, "curve": 0.245, "c3": 0.714, "c4": 0.85}, {"time": 1, "angle": 2.91} + {"angle": 9.41, "curve": 0.328, "c2": 0.65, "c3": 0.661}, {"time": 0.0167, "angle": 10.43, "curve": 0.25, "c3": 0.75}, {"time": 0.1167, "angle": 34.88, "curve": 0.25, "c3": 0.579}, + {"time": 0.2333, "angle": -33.9, "curve": 0.25, "c3": 0.75}, {"time": 0.4, "angle": 4.81, "curve": 0.25, "c3": 0.75}, {"time": 0.5833, "angle": -37.99, "curve": 0.25, "c3": 0.75}, + {"time": 0.6833, "angle": 8.02, "curve": 0.25, "c3": 0.75}, {"time": 0.8167, "angle": -42.9, "curve": 0.255, "c3": 0.588, "c4": 0.86}, {"time": 1, "angle": 2.91} ] }, "body-fur-6": { "rotate": [ - {"angle": 3.65, "curve": 0.35, "c2": 0.39, "c3": 0.689, "c4": 0.75}, {"time": 0.0333, "angle": -5.21}, {"time": 0.0667, "angle": -9.97}, - {"time": 0.2, "angle": 18.26, "curve": 0.25, "c3": 0.75}, {"time": 0.3833, "angle": -20.51, "curve": 0.25, "c3": 0.75}, {"time": 0.4667, "angle": 32.13, "curve": 0.25, "c3": 0.75}, - {"time": 0.5833, "angle": -10.59, "curve": 0.25, "c3": 0.75}, {"time": 0.6833, "angle": 18.01, "curve": 0.25, "c3": 0.75}, {"time": 0.7833, "angle": -14.98, "curve": 0.25, "c3": 0.75}, - {"time": 0.8833, "angle": 33.21, "curve": 0.244, "c3": 0.643, "c4": 0.58}, {"time": 1, "angle": 13.33} + {"angle": -0.95, "curve": 0.321, "c2": 0.4, "c3": 0.654, "c4": 0.75}, {"time": 0.0333, "angle": 7.42, "curve": 0.322, "c2": 0.62, "c3": 0.655}, {"time": 0.0667, "angle": 10.43}, + {"time": 0.1667, "angle": 34.88, "curve": 0.25, "c3": 0.579}, {"time": 0.2833, "angle": -33.9, "curve": 0.25, "c3": 0.75}, {"time": 0.45, "angle": 4.81, "curve": 0.25, "c3": 0.75}, + {"time": 0.6333, "angle": -37.99, "curve": 0.25, "c3": 0.75}, {"time": 0.7333, "angle": 8.02, "curve": 0.25, "c3": 0.75}, + {"time": 0.8667, "angle": -42.9, "curve": 0.273, "c3": 0.606, "c4": 0.6}, {"time": 1, "angle": 13.33} ] }, "body-fur-5": { "rotate": [ - {"angle": -5.21, "curve": 0.373, "c2": 0.62, "c3": 0.713}, {"time": 0.0333, "angle": -9.97}, {"time": 0.1667, "angle": 18.26, "curve": 0.25, "c3": 0.75}, - {"time": 0.35, "angle": -20.51, "curve": 0.25, "c3": 0.75}, {"time": 0.4333, "angle": 32.13, "curve": 0.25, "c3": 0.75}, {"time": 0.55, "angle": -10.59, "curve": 0.25, "c3": 0.75}, - {"time": 0.65, "angle": 18.01, "curve": 0.25, "c3": 0.75}, {"time": 0.75, "angle": -14.98, "curve": 0.25, "c3": 0.75}, - {"time": 0.85, "angle": 33.21, "curve": 0.243, "c3": 0.685, "c4": 0.73}, {"time": 1, "angle": 6.86} + {"angle": 7.42, "curve": 0.322, "c2": 0.62, "c3": 0.655}, {"time": 0.0333, "angle": 10.43}, {"time": 0.1333, "angle": 34.88, "curve": 0.25, "c3": 0.579}, + {"time": 0.25, "angle": -33.9, "curve": 0.25, "c3": 0.75}, {"time": 0.4167, "angle": 4.81, "curve": 0.25, "c3": 0.75}, {"time": 0.6, "angle": -37.99, "curve": 0.25, "c3": 0.75}, + {"time": 0.7, "angle": 8.02, "curve": 0.25, "c3": 0.75}, {"time": 0.8333, "angle": -42.9, "curve": 0.261, "c3": 0.594, "c4": 0.75}, {"time": 1, "angle": 6.86} ] }, "body-fur-4": { "rotate": [ - {"angle": 8.75, "curve": 0.351, "c2": 0.39, "c3": 0.696, "c4": 0.76}, {"time": 0.05, "angle": -5.21, "curve": 0.373, "c2": 0.62, "c3": 0.713}, {"time": 0.0833, "angle": -9.97}, - {"time": 0.2167, "angle": 18.26, "curve": 0.25, "c3": 0.75}, {"time": 0.4, "angle": -20.51, "curve": 0.25, "c3": 0.75}, {"time": 0.4833, "angle": 32.13, "curve": 0.25, "c3": 0.75}, - {"time": 0.6, "angle": -10.59, "curve": 0.25, "c3": 0.75}, {"time": 0.7, "angle": 18.01, "curve": 0.25, "c3": 0.75}, {"time": 0.8, "angle": -14.98, "curve": 0.25, "c3": 0.75}, - {"time": 0.9, "angle": 33.21, "curve": 0.247, "c3": 0.63, "c4": 0.52}, {"time": 1, "angle": 12.53} + {"angle": -6.38, "curve": 0.314, "c2": 0.4, "c3": 0.648, "c4": 0.77}, {"time": 0.05, "angle": 7.42, "curve": 0.322, "c2": 0.62, "c3": 0.655}, {"time": 0.0833, "angle": 10.43}, + {"time": 0.1833, "angle": 34.88, "curve": 0.25, "c3": 0.579}, {"time": 0.3, "angle": -33.9, "curve": 0.25, "c3": 0.75}, {"time": 0.4667, "angle": 4.81, "curve": 0.25, "c3": 0.75}, + {"time": 0.65, "angle": -37.99, "curve": 0.25, "c3": 0.75}, {"time": 0.75, "angle": 8.02, "curve": 0.25, "c3": 0.75}, + {"time": 0.8833, "angle": -42.9, "curve": 0.279, "c3": 0.612, "c4": 0.55}, {"time": 1, "angle": 12.53} ] }, "body-fur-3": { "rotate": [ - {"angle": -0.94, "curve": 0.381, "c2": 0.59, "c3": 0.727}, {"time": 0.05, "angle": -9.97, "curve": 0.25, "c3": 0.75}, {"time": 0.1833, "angle": 18.26, "curve": 0.25, "c3": 0.75}, - {"time": 0.3667, "angle": -20.51, "curve": 0.25, "c3": 0.75}, {"time": 0.45, "angle": 32.13, "curve": 0.25, "c3": 0.75}, {"time": 0.5667, "angle": -10.59, "curve": 0.25, "c3": 0.75}, - {"time": 0.6667, "angle": 18.01, "curve": 0.25, "c3": 0.75}, {"time": 0.7667, "angle": -14.98, "curve": 0.25, "c3": 0.75}, - {"time": 0.8667, "angle": 33.21, "curve": 0.242, "c3": 0.661, "c4": 0.65}, {"time": 1, "angle": 5.54} + {"angle": 4.36, "curve": 0.316, "c2": 0.6, "c3": 0.649}, {"time": 0.05, "angle": 10.43}, {"time": 0.15, "angle": 34.88, "curve": 0.25, "c3": 0.579}, + {"time": 0.2667, "angle": -33.9, "curve": 0.25, "c3": 0.75}, {"time": 0.4333, "angle": 4.81, "curve": 0.25, "c3": 0.75}, {"time": 0.6167, "angle": -37.99, "curve": 0.25, "c3": 0.75}, + {"time": 0.7167, "angle": 8.02, "curve": 0.25, "c3": 0.75}, {"time": 0.85, "angle": -42.9, "curve": 0.267, "c3": 0.6, "c4": 0.67}, {"time": 1, "angle": 5.54} ] }, "body-fur-1": { "rotate": [ - {"angle": 3.91, "curve": 0.382, "c2": 0.56, "c3": 0.739}, {"time": 0.0667, "angle": -9.97, "curve": 0.25, "c3": 0.75}, {"time": 0.2, "angle": 18.26, "curve": 0.25, "c3": 0.75}, - {"time": 0.3833, "angle": -20.51, "curve": 0.25, "c3": 0.75}, {"time": 0.4667, "angle": 32.13, "curve": 0.25, "c3": 0.75}, {"time": 0.5833, "angle": -10.59, "curve": 0.25, "c3": 0.75}, - {"time": 0.6833, "angle": 18.01, "curve": 0.25, "c3": 0.75}, {"time": 0.7833, "angle": -14.98, "curve": 0.25, "c3": 0.75}, - {"time": 0.8833, "angle": 33.21, "curve": 0.244, "c3": 0.643, "c4": 0.58}, {"time": 1, "angle": 10.51} + {"angle": -0.06, "curve": 0.309, "c2": 0.57, "c3": 0.643}, {"time": 0.0667, "angle": 10.43}, {"time": 0.1667, "angle": 34.88, "curve": 0.25, "c3": 0.579}, + {"time": 0.2833, "angle": -33.9, "curve": 0.25, "c3": 0.75}, {"time": 0.45, "angle": 4.81, "curve": 0.25, "c3": 0.75}, {"time": 0.6333, "angle": -37.99, "curve": 0.25, "c3": 0.75}, + {"time": 0.7333, "angle": 8.02, "curve": 0.25, "c3": 0.75}, {"time": 0.8667, "angle": -42.9, "curve": 0.273, "c3": 0.606, "c4": 0.6}, {"time": 1, "angle": 10.51} ] } - }, - "events": [{"time": 0.3167, "name": "start-attack"}, {"time": 0.4333, "name": "hit"}, {"time": 0.5667, "name": "hit"}, {"time": 0.7, "name": "hit"}] + } }, - "1934032146": { + "710052842": { "slots": { - "eyes": {"attachment": [{"time": 0.0167, "name": "eyes-angry"}, {"time": 0.85, "name": "eyes-shut"}, {"time": 0.9333, "name": "eyes"}]}, - "mouth": {"attachment": [{"time": 0.0167, "name": "mouth-bite"}, {"time": 0.1833, "name": "mouth-open"}, {"time": 0.5, "name": "mouth-bite"}, {"time": 0.9333, "name": "mouth"}]} + "eyes": {"attachment": [{"time": 0.0167, "name": "eyes-shut"}, {"time": 0.3, "name": "eyes-angry"}, {"time": 0.4833, "name": "eyes"}]}, + "mouth": {"attachment": [{"time": 0.0167, "name": "mouth-bite"}, {"time": 0.4833, "name": "mouth"}]} }, "bones": { "@pivot-back": { "rotate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "angle": -3.92, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "angle": 2.51, "curve": 0, "c2": 0.2, "c3": 0.858}, - {"time": 0.25, "angle": -6, "curve": "stepped"}, {"time": 0.7167, "angle": -6, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.8333, "angle": 6, "curve": 0.313, "c3": 0.699}, {"time": 1} + {"curve": "stepped"}, {"time": 0.0167, "angle": 8}, {"time": 0.2333, "angle": 10, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "angle": -5, "curve": 0.315, "c4": 0.8}, + {"time": 0.4833, "angle": 5, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5833} ], "translate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "x": 71.93, "y": -12.95, "curve": "stepped"}, {"time": 0.1667, "x": 71.93, "y": -12.95, "curve": 0, "c2": 0.2, "c3": 0.858}, - {"time": 0.25, "x": -145.48, "y": 99.8, "curve": 0, "c2": 0.3, "c3": 0.698}, {"time": 0.4167, "x": -145, "y": 149.7, "curve": 1, "c4": 0}, {"time": 0.5, "x": -145}, - {"time": 0.6667, "x": -145, "y": 2.5, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.7167, "y": 48.98, "curve": 0.315, "c4": 0.8}, - {"time": 0.8333, "y": -3.33, "curve": 0.313, "c3": 0.699}, {"time": 1} + {"curve": "stepped"}, {"time": 0.0167, "x": 29.16, "y": 6.28}, {"time": 0.2667, "x": 18.48, "y": 18.85, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.3833, "x": -1.17, "y": 18.85, "curve": 0.315, "c4": 0.8}, {"time": 0.4833} ] }, - "@leg-front-left": { + "@shadow": { "translate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "x": -2.77, "y": -2.64, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.1667, "x": -0.53, "y": 0.11, "curve": 0, "c2": 0.2, "c3": 0.858}, {"time": 0.25, "x": -1, "y": -5.53, "curve": "stepped"}, - {"time": 0.7167, "x": -1, "y": -5.53, "curve": 0.464, "c4": 0.7}, {"time": 0.8333, "x": -2.17, "y": -17.49, "curve": 0.313, "c3": 0.699}, {"time": 1} + {"curve": "stepped"}, {"time": 0.0167, "x": 33.22}, {"time": 0.2667, "x": 61.08, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3833, "x": 9.02, "curve": 0.315, "c4": 0.8}, + {"time": 0.4833} + ], + "scale": [ + {"curve": "stepped"}, {"time": 0.0167, "x": 1.1, "y": 1.1, "curve": "stepped"}, {"time": 0.2667, "x": 1.1, "y": 1.1, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.3833, "x": 0.98, "y": 0.98, "curve": 0.315, "c4": 0.8}, {"time": 0.4833, "x": 1.1, "y": 1.1, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5833} ] }, - "@leg-back-left": { + "@pivot-main": { "translate": [ - {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 0.67, "y": -7.85, "curve": 0.161, "c3": 0.854}, {"time": 0.1667, "x": 0.53, "y": -13.09, "curve": 0, "c2": 0.2, "c3": 0.858}, - {"time": 0.25, "curve": "stepped"}, {"time": 0.7167, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.8333, "x": -0.5, "y": -5.23, "curve": 0.313, "c3": 0.699}, {"time": 1} + {"curve": "stepped"}, {"time": 0.0167, "x": 33.18}, {"time": 0.2667, "x": 61.52, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3833, "x": 20.27, "y": 27.91, "curve": 0.315, "c4": 0.8}, + {"time": 0.4833} ] }, - "@shadow": { - "translate": [ - {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 61.96, "curve": "stepped"}, {"time": 0.1667, "x": 61.96, "curve": 0, "c2": 0.2, "c3": 0.858}, - {"time": 0.25, "x": -143.36, "curve": 0, "c2": 0.3, "c3": 0.698}, {"time": 0.4167, "x": -154.48, "curve": "stepped"}, {"time": 0.6667, "x": -154.48, "curve": 0, "c2": 0.3, "c3": 0.544}, - {"time": 0.7167, "x": -9.48, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.8333} - ], - "scale": [ - {"time": 0.0833, "curve": 0, "c2": 0.26, "c3": 0.369, "c4": 0.62}, {"time": 0.1667, "x": 1.06, "y": 1.06, "curve": 0, "c2": 0.2, "c3": 0.858}, - {"time": 0.25, "curve": 0, "c2": 0.3, "c3": 0.698}, {"time": 0.4167, "x": 0.86, "y": 0.86}, {"time": 0.5, "x": 1.16, "y": 1.16}, - {"time": 0.6667, "x": 1.18, "y": 1.18, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.7167, "x": 1.02, "y": 1.02, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.8333, "x": 1.1, "y": 1.1, "curve": 0.313, "c3": 0.699}, {"time": 1} + "tail": { + "rotate": [ + {"curve": "stepped"}, {"time": 0.0167, "angle": -18.65}, {"time": 0.2333, "angle": -21.65, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.3333, "angle": -13.3, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.45, "angle": 12.04, "curve": 0.154, "c4": 0.9}, + {"time": 0.5167, "angle": -9.14, "curve": 0.161, "c3": 0.854}, {"time": 0.5833} ] }, "leg-front-right-IK": { "translate": [ - {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 30.89, "y": 11.74, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": 42.9, "curve": 0, "c2": 0.2, "c3": 0.858}, - {"time": 0.25, "x": -172.87, "y": 28.32, "curve": 0, "c2": 0.3, "c3": 0.698}, {"time": 0.4667, "x": 261.69, "y": 187.13, "curve": 1, "c4": 0.1}, {"time": 0.5, "x": 166.41, "y": 465.39}, - {"time": 0.6667, "x": 101.69, "y": 451.97, "curve": "stepped"}, {"time": 0.7, "x": -101.81, "y": 172.32, "curve": "stepped"}, {"time": 0.7167} + {"time": 0.2333, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "x": 22.26, "y": 54.13}, {"time": 0.3833, "x": 28.04, "y": 49.32, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.45} ] }, - "leg-back-left-IK": { + "@leg-front-left": { "translate": [ - {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 80.9, "curve": 0.161, "c3": 0.854}, {"time": 0.1667, "x": 72.25, "curve": 0, "c2": 0.2, "c3": 0.858}, - {"time": 0.25, "x": -96.78, "y": 27.51, "curve": 0, "c2": 0.3, "c3": 0.698}, {"time": 0.4667, "x": -250.56, "y": 568.36, "curve": 1, "c4": 0.1}, {"time": 0.5, "x": -654.65, "y": 234.55}, - {"time": 0.6667, "x": -665.01, "y": 210.09, "curve": "stepped"}, {"time": 0.7, "x": -61.52, "y": -3.55, "curve": "stepped"}, {"time": 0.7167} + {"curve": "stepped"}, {"time": 0.0167, "x": -0.45, "y": -3.93}, {"time": 0.2333, "x": -0.82, "y": -2.61}, {"time": 0.3333, "x": -5.6, "y": -0.89, "curve": 0.617, "c4": 0.6}, + {"time": 0.45, "x": -1.09, "y": -14.69, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5833} ] }, - "@leg-front-right": { + "leg-back-left-IK": { "translate": [ - {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 4.31, "y": 11.86, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.1667, "x": -10.19, "y": -4.67, "curve": 0, "c2": 0.2, "c3": 0.858}, {"time": 0.25, "curve": "stepped"}, {"time": 0.7167, "curve": 0.464, "c4": 0.7}, - {"time": 0.8333, "x": -4.16, "y": -33.18, "curve": 0.313, "c3": 0.699}, {"time": 1} + {"curve": "stepped"}, {"time": 0.0167, "x": 50.74, "y": 0.9, "curve": "stepped"}, {"time": 0.2, "x": 50.74, "y": 0.9, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.25, "x": 12.5, "y": 6.45, "curve": 0, "c2": 0.8, "c3": 0.15}, {"time": 0.3667, "x": 5.47, "y": 26.12, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.4833} ] }, - "leg-front-left-IK": { + "@leg-front-right": { "translate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "x": 42.22, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": 42.9, "curve": 0, "c2": 0.2, "c3": 0.858}, - {"time": 0.25, "x": -192.09, "y": 31.17, "curve": 0, "c2": 0.3, "c3": 0.698}, {"time": 0.4667, "x": -33.07, "y": 448.19, "curve": 1, "c4": 0.1}, {"time": 0.5, "x": -325.8, "y": 359.06}, - {"time": 0.6667, "x": -307.09, "y": 359.93, "curve": "stepped"}, {"time": 0.7, "x": -83.89, "y": 65.11, "curve": "stepped"}, {"time": 0.7167} + {"time": 0.0167}, {"time": 0.3333, "x": -7.53, "y": 2.3, "curve": 0, "c2": 0.1, "c3": 0.853}, {"time": 0.45, "x": 0.15, "y": -4.26, "curve": 0.159, "c3": 0.853}, + {"time": 0.4833, "x": -2.34, "y": -28.14, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5833} ] }, - "tail": { - "rotate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "angle": 15.61, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "angle": 20.44, "curve": 0, "c2": 0.2, "c3": 0.858}, - {"time": 0.25, "angle": -14.65, "curve": 0.313, "c3": 0.699}, {"time": 0.4667, "angle": -49.65, "curve": 1, "c4": 0.1}, {"time": 0.5, "angle": -2.15}, - {"time": 0.6667, "angle": -1.85, "curve": 0, "c2": 0.4, "c3": 0.383}, {"time": 0.8333, "angle": 21.05, "curve": 0.313, "c3": 0.699}, {"time": 1} + "@leg-back-left": { + "translate": [ + {"curve": "stepped"}, {"time": 0.0167, "x": 18.74, "y": 14.65, "curve": "stepped"}, {"time": 0.1667, "x": 18.74, "y": 14.65, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.4833} ] }, - "@pivot-center": { - "rotate": [ - {"time": 0.25, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.4667, "angle": 112.05, "curve": 1, "c4": 0.1}, {"time": 0.5, "angle": -146.9}, - {"time": 0.6667, "angle": -145.45, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.7167} + "leg-front-left-IK": { + "translate": [ + {"curve": "stepped"}, {"time": 0.0167, "x": 38.52}, {"time": 0.2333, "x": 38.87, "curve": 0, "c2": 0.3, "c3": 0.54}, {"time": 0.3333, "x": 26.12, "y": 38.71}, + {"time": 0.3833, "x": 12.33, "y": 29.93, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.45} ] }, - "body-fur-8": { + "body-fur-2": { "rotate": [ - {"angle": 5.63, "curve": 0.382, "c2": 0.58, "c3": 0.731}, {"time": 0.05}, {"time": 0.1833, "angle": -25.75, "curve": 0.25, "c3": 0.75}, - {"time": 0.55, "angle": -44.12, "curve": 0.25, "c3": 0.75}, {"time": 0.7167, "angle": 19.76, "curve": 0.25, "c3": 0.75}, {"time": 0.7833, "angle": -17.51, "curve": 0.25, "c3": 0.75}, - {"time": 0.8833, "angle": 23.24, "curve": 0.243, "c3": 0.655, "c4": 0.63}, {"time": 1, "angle": -0.91} + {"angle": -11.97, "curve": 0.358, "c2": 0.42, "c3": 0.702, "c4": 0.8}, {"time": 0.0667, "angle": -2.29, "curve": 0.366, "c2": 0.63, "c3": 0.703}, {"time": 0.1}, + {"time": 0.2, "angle": 37.82, "curve": 0.325, "c3": 0.75}, {"time": 0.4333, "angle": -32.98, "curve": 0.245, "c3": 0.637, "c4": 0.56}, {"time": 0.5833, "angle": 13.84} ] }, - "body-fur-1": { + "body-fur-9": { "rotate": [ - {"angle": 8.55, "curve": 0.381, "c2": 0.55, "c3": 0.742}, {"time": 0.0667}, {"time": 0.2, "angle": -31.39, "curve": 0.25, "c3": 0.75}, - {"time": 0.5667, "angle": -44.12, "curve": 0.25, "c3": 0.75}, {"time": 0.7333, "angle": 19.76, "curve": 0.25, "c3": 0.75}, {"time": 0.8, "angle": -17.51, "curve": 0.25, "c3": 0.75}, - {"time": 0.9, "angle": 23.24, "curve": 0.245, "c3": 0.637, "c4": 0.56}, {"time": 1, "angle": 10.51} + {"angle": -9.21, "curve": 0.356, "c2": 0.42, "c3": 0.696, "c4": 0.78}, {"time": 0.05, "angle": -2.29, "curve": 0.366, "c2": 0.63, "c3": 0.703}, {"time": 0.0833}, + {"time": 0.1833, "angle": 37.82, "curve": 0.325, "c3": 0.75}, {"time": 0.4167, "angle": -32.98, "curve": 0.243, "c3": 0.649, "c4": 0.6}, {"time": 0.5833, "angle": 6.86} ] }, - "body-fur-2": { + "body-fur-8": { "rotate": [ - {"angle": 14.58, "curve": 0.339, "c2": 0.35, "c3": 0.697, "c4": 0.76}, {"time": 0.0667, "angle": 3.02, "curve": 0.375, "c2": 0.62, "c3": 0.716}, {"time": 0.1}, - {"time": 0.2333, "angle": -44.52, "curve": 0.25, "c3": 0.75}, {"time": 0.6, "angle": -44.12, "curve": 0.25, "c3": 0.75}, {"time": 0.7667, "angle": 19.76, "curve": 0.25, "c3": 0.75}, - {"time": 0.8333, "angle": -17.51, "curve": 0.25, "c3": 0.75}, {"time": 0.9333, "angle": 23.24, "curve": 0.258, "c3": 0.619, "c4": 0.45}, {"time": 1, "angle": 13.84} + {"angle": -4.29, "curve": 0.375, "c2": 0.62, "c3": 0.716}, {"time": 0.05}, {"time": 0.15, "angle": 37.82, "curve": 0.325, "c3": 0.75}, + {"time": 0.3833, "angle": -32.98, "curve": 0.243, "c3": 0.68, "c4": 0.71}, {"time": 0.5833, "angle": -0.91} ] }, - "body-fur-3": { + "body-fur-7": { "rotate": [ - {"angle": 5.63, "curve": 0.382, "c2": 0.58, "c3": 0.731}, {"time": 0.05}, {"time": 0.1833, "angle": -25.75, "curve": 0.25, "c3": 0.75}, - {"time": 0.55, "angle": -44.12, "curve": 0.25, "c3": 0.75}, {"time": 0.7167, "angle": 19.76, "curve": 0.25, "c3": 0.75}, {"time": 0.7833, "angle": -17.51, "curve": 0.25, "c3": 0.75}, - {"time": 0.8833, "angle": 23.24, "curve": 0.243, "c3": 0.655, "c4": 0.63}, {"time": 1, "angle": 5.54} + {"angle": -0.75, "curve": 0.352, "c2": 0.65, "c3": 0.687}, {"time": 0.0167, "curve": 0.25, "c3": 0.75}, {"time": 0.1167, "angle": 37.82, "curve": 0.325, "c3": 0.75}, + {"time": 0.35, "angle": -32.98, "curve": 0.246, "c3": 0.723, "c4": 0.88}, {"time": 0.5833, "angle": 2.91} ] }, - "body-fur-4": { + "body-fur-6": { "rotate": [ - {"angle": 11.51, "curve": 0.347, "c2": 0.38, "c3": 0.694, "c4": 0.76}, {"time": 0.05, "angle": 3.02, "curve": 0.375, "c2": 0.62, "c3": 0.716}, {"time": 0.0833}, - {"time": 0.2167, "angle": -25.75, "curve": 0.25, "c3": 0.75}, {"time": 0.5833, "angle": -44.12, "curve": 0.25, "c3": 0.75}, {"time": 0.75, "angle": 19.76, "curve": 0.25, "c3": 0.75}, - {"time": 0.8167, "angle": -17.51, "curve": 0.25, "c3": 0.75}, {"time": 0.9167, "angle": 23.24, "curve": 0.25, "c3": 0.625, "c4": 0.5}, {"time": 1, "angle": 12.53} + {"angle": -6.62, "curve": 0.352, "c2": 0.41, "c3": 0.688, "c4": 0.76}, {"time": 0.0333, "angle": -2.29, "curve": 0.366, "c2": 0.63, "c3": 0.703}, {"time": 0.0667}, + {"time": 0.1667, "angle": 37.82, "curve": 0.325, "c3": 0.75}, {"time": 0.4, "angle": -32.98, "curve": 0.242, "c3": 0.663, "c4": 0.65}, {"time": 0.5833, "angle": 13.33} ] }, "body-fur-5": { "rotate": [ - {"angle": 3.02, "curve": 0.375, "c2": 0.62, "c3": 0.716}, {"time": 0.0333}, {"time": 0.1667, "angle": -25.75, "curve": 0.25, "c3": 0.75}, - {"time": 0.5333, "angle": -44.12, "curve": 0.25, "c3": 0.75}, {"time": 0.7, "angle": 19.76, "curve": 0.25, "c3": 0.75}, {"time": 0.7667, "angle": -17.51, "curve": 0.25, "c3": 0.75}, - {"time": 0.8667, "angle": 23.24, "curve": 0.243, "c3": 0.68, "c4": 0.71}, {"time": 1, "angle": 6.86} + {"angle": -2.29, "curve": 0.366, "c2": 0.63, "c3": 0.703}, {"time": 0.0333}, {"time": 0.1333, "angle": 37.82, "curve": 0.325, "c3": 0.75}, + {"time": 0.3667, "angle": -32.98, "curve": 0.244, "c3": 0.7, "c4": 0.79}, {"time": 0.5833, "angle": 6.86} ] }, - "body-fur-6": { + "body-fur-4": { "rotate": [ - {"angle": 8.46, "curve": 0.349, "c2": 0.39, "c3": 0.689, "c4": 0.74}, {"time": 0.0333, "angle": 3.02, "curve": 0.375, "c2": 0.62, "c3": 0.716}, {"time": 0.0667}, - {"time": 0.2, "angle": -25.75, "curve": 0.25, "c3": 0.75}, {"time": 0.5667, "angle": -44.12, "curve": 0.25, "c3": 0.75}, {"time": 0.7333, "angle": 19.76, "curve": 0.25, "c3": 0.75}, - {"time": 0.8, "angle": -17.51, "curve": 0.25, "c3": 0.75}, {"time": 0.9, "angle": 23.24, "curve": 0.245, "c3": 0.637, "c4": 0.56}, {"time": 1, "angle": 13.33} + {"angle": -9.21, "curve": 0.356, "c2": 0.42, "c3": 0.696, "c4": 0.78}, {"time": 0.05, "angle": -2.29, "curve": 0.366, "c2": 0.63, "c3": 0.703}, {"time": 0.0833}, + {"time": 0.1833, "angle": 37.82, "curve": 0.325, "c3": 0.75}, {"time": 0.4167, "angle": -32.98, "curve": 0.243, "c3": 0.649, "c4": 0.6}, {"time": 0.5833, "angle": 12.53} ] }, - "body-fur-7": { + "body-fur-3": { "rotate": [ - {"angle": 0.99, "curve": 0.36, "c2": 0.64, "c3": 0.695}, {"time": 0.0167, "curve": 0.25, "c3": 0.75}, {"time": 0.15, "angle": -25.75, "curve": 0.25, "c3": 0.75}, - {"time": 0.5167, "angle": -44.12, "curve": 0.25, "c3": 0.75}, {"time": 0.6833, "angle": 19.76, "curve": 0.25, "c3": 0.75}, {"time": 0.75, "angle": -17.51, "curve": 0.25, "c3": 0.75}, - {"time": 0.85, "angle": 23.24, "curve": 0.245, "c3": 0.711, "c4": 0.83}, {"time": 1, "angle": 2.91} + {"angle": -4.29, "curve": 0.375, "c2": 0.62, "c3": 0.716}, {"time": 0.05}, {"time": 0.15, "angle": 37.82, "curve": 0.325, "c3": 0.75}, + {"time": 0.3833, "angle": -32.98, "curve": 0.243, "c3": 0.68, "c4": 0.71}, {"time": 0.5833, "angle": 5.54} ] }, - "body-fur-9": { + "body-fur-1": { "rotate": [ - {"angle": 11.51, "curve": 0.347, "c2": 0.38, "c3": 0.694, "c4": 0.76}, {"time": 0.05, "angle": 3.02, "curve": 0.375, "c2": 0.62, "c3": 0.716}, - {"time": 0.0833, "curve": 0.25, "c3": 0.75}, {"time": 0.2167, "angle": -25.75, "curve": 0.25, "c3": 0.75}, {"time": 0.5833, "angle": -44.12, "curve": 0.25, "c3": 0.75}, - {"time": 0.75, "angle": 19.76, "curve": 0.25, "c3": 0.75}, {"time": 0.8167, "angle": -17.51, "curve": 0.25, "c3": 0.75}, - {"time": 0.9167, "angle": 23.24, "curve": 0.25, "c3": 0.625, "c4": 0.5}, {"time": 1, "angle": 6.86} + {"angle": -6.68, "curve": 0.38, "c2": 0.59, "c3": 0.727}, {"time": 0.0667}, {"time": 0.1667, "angle": 37.82, "curve": 0.325, "c3": 0.75}, + {"time": 0.4, "angle": -32.98, "curve": 0.242, "c3": 0.663, "c4": 0.65}, {"time": 0.5833, "angle": 10.51} ] } - }, - "events": [{"time": 0.4167, "name": "start-attack"}, {"time": 0.5, "name": "hit"}] + } }, - "1747338625": { + "1910291818": { "slots": { - "eyes": {"attachment": [{"time": 0.0167, "name": "eyes-angry"}, {"time": 0.9167, "name": "eyes"}]}, - "mouth": {"attachment": [{"time": 0.0167, "name": "mouth-bite"}, {"time": 0.1833, "name": "mouth-open"}, {"time": 0.5, "name": "mouth-bite"}, {"time": 0.9167, "name": "mouth"}]} + "eyes": {"attachment": [{"time": 0.0167, "name": "eyes-angry"}, {"time": 0.25, "name": "eyes-shut"}, {"time": 0.3, "name": "eyes-angry"}, {"time": 0.4333, "name": "eyes"}]}, + "mouth": {"attachment": [{"time": 0.0167, "name": "mouth-bite"}, {"time": 0.3, "name": "mouth-open"}, {"time": 0.4333, "name": "mouth"}]} }, "bones": { "@pivot-back": { "rotate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "angle": -3.92, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "angle": 2.51, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.25, "angle": -6, "curve": "stepped"}, {"time": 0.2667, "angle": -20, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.4833, "angle": -22, "curve": "stepped"}, - {"time": 0.5, "angle": 10}, {"time": 0.6667, "angle": 12, "curve": "stepped"}, {"time": 0.7, "angle": 4, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.8333, "angle": 6, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1} + {"curve": "stepped"}, {"time": 0.0167, "angle": 7.5}, {"time": 0.2333, "angle": 10, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "angle": -5, "curve": 0.315, "c4": 0.8}, + {"time": 0.4833, "angle": 5, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5833} ], "translate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "x": 71.93, "y": -12.95, "curve": "stepped"}, {"time": 0.1667, "x": 71.93, "y": -12.95, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.25, "x": -135.5, "curve": "stepped"}, {"time": 0.2667, "x": -551.77, "y": 110, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.4833, "x": -551.77, "y": 120.52, "curve": "stepped"}, {"time": 0.5, "x": -565, "y": -35}, {"time": 0.6667, "x": -565, "y": -40, "curve": "stepped"}, - {"time": 0.7, "x": -135.5, "y": 5, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.8333, "x": -135.5, "y": 10, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1} - ], - "scale": [{"time": 0.25, "curve": "stepped"}, {"time": 0.2667, "x": -1, "curve": "stepped"}, {"time": 0.6667, "x": -1, "curve": "stepped"}, {"time": 0.7}] + {"curve": "stepped"}, {"time": 0.0167, "x": 29.16, "y": 18.85, "curve": "stepped"}, {"time": 0.2667, "x": 29.16, "y": 18.85, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.3833, "x": -1.17, "y": 18.85, "curve": 0.315, "c4": 0.8}, {"time": 0.4833} + ] }, - "leg-front-right-IK": { + "leg-back-left-IK": { "translate": [ - {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 30.89, "y": 11.74, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": 42.9, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.25, "x": -172.87, "y": 28.32, "curve": "stepped"}, {"time": 0.2667, "x": 224.47, "y": -9.31, "curve": "stepped"}, - {"time": 0.4833, "x": 224.47, "y": -9.31, "curve": "stepped"}, {"time": 0.5, "x": 219.47, "curve": "stepped"}, {"time": 0.6667, "x": 219.47, "curve": "stepped"}, - {"time": 0.7, "x": -152.3, "curve": "stepped"}, {"time": 0.8333, "x": -152.3, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1} + {"curve": "stepped"}, {"time": 0.0167, "x": 50.74, "y": 0.9, "curve": "stepped"}, {"time": 0.2, "x": 50.74, "y": 0.9, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.25, "x": 12.5, "y": 6.45, "curve": 0, "c2": 0.8, "c3": 0.15}, {"time": 0.3667, "x": 5.47, "y": 26.12, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.4833} ] }, - "leg-front-left-IK": { + "@leg-back-left": { "translate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "x": 43.18, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": 42.9, "y": -3.49, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.25, "x": -192.09, "y": 31.17, "curve": "stepped"}, {"time": 0.2667, "x": -277.01, "y": 66.37, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.4833, "x": -274.01, "y": 75.85, "curve": "stepped"}, {"time": 0.5, "x": -170.67, "curve": "stepped"}, {"time": 0.6667, "x": -170.67, "curve": "stepped"}, - {"time": 0.7, "x": -151.12, "curve": "stepped"}, {"time": 0.8333, "x": -151.12, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1} + {"curve": "stepped"}, {"time": 0.0167, "x": 18.74, "y": 14.65, "curve": "stepped"}, {"time": 0.1667, "x": 18.74, "y": 14.65, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.4833} ] }, "@leg-front-left": { "translate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "x": -2.8, "y": -2.2, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.1667, "x": -0.62, "y": -3.38, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "x": -1, "y": -5.53, "curve": "stepped"}, - {"time": 0.2667, "x": 4, "y": -0.66, "curve": "stepped"}, {"time": 0.4833, "x": 4, "y": -0.66, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.5, "x": 4.53, "y": 2.49, "curve": "stepped"}, {"time": 0.6667, "x": 4.53, "y": 2.49, "curve": "stepped"}, - {"time": 0.7, "x": -1, "y": -5.53, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.8333, "x": -0.91, "y": -4.54, "curve": 0.315, "c4": 0.8}, {"time": 1} + {"curve": "stepped"}, {"time": 0.0167, "x": -0.45, "y": -3.93}, {"time": 0.2333, "x": -0.82, "y": -2.61}, {"time": 0.3333, "x": -5.6, "y": -0.89, "curve": 0.617, "c4": 0.6}, + {"time": 0.45, "x": -1.09, "y": -14.69, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5833} ] }, - "@leg-back-left": { + "@leg-front-right": { "translate": [ - {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 0.67, "y": -7.85, "curve": 0.161, "c3": 0.854}, {"time": 0.1667, "x": 0.61, "y": -9.9, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.25, "curve": "stepped"}, {"time": 0.2667, "x": -1.82, "y": 0.09}, {"time": 0.4833, "x": -6.6, "y": 4.03, "curve": "stepped"}, - {"time": 0.5, "x": 10.86, "y": -7.65, "curve": "stepped"}, {"time": 0.6667, "x": 10.86, "y": -7.65, "curve": "stepped"}, {"time": 0.7} + {"time": 0.0167}, {"time": 0.3333, "x": -7.53, "y": 2.3, "curve": 0, "c2": 0.1, "c3": 0.853}, {"time": 0.45, "x": 0.15, "y": -4.26, "curve": 0.159, "c3": 0.853}, + {"time": 0.4833, "x": -2.34, "y": -28.14, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5833} ] }, - "leg-back-left-IK": { + "@pivot-main": { "translate": [ - {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 80.9, "curve": 0.161, "c3": 0.854}, {"time": 0.1667, "x": 72.57, "y": -3.2, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.25, "x": -106.8, "y": 17.49, "curve": "stepped"}, {"time": 0.2667, "x": -654.94, "y": 154.36, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.4833, "x": -669.36, "y": 180.24, "curve": "stepped"}, {"time": 0.5, "x": -541.29, "y": -24.41, "curve": "stepped"}, - {"time": 0.6667, "x": -541.29, "y": -24.41, "curve": "stepped"}, {"time": 0.7, "x": -130.76, "curve": "stepped"}, {"time": 0.8333, "x": -130.76, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 1} + {"curve": "stepped"}, {"time": 0.0167, "x": 33.18}, {"time": 0.2667, "x": 61.52, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3833, "x": 20.27, "y": 27.91, "curve": 0.315, "c4": 0.8}, + {"time": 0.4833} ] }, - "@leg-front-right": { + "leg-front-right-IK": { "translate": [ - {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 4.31, "y": 11.86, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.1667, "x": -10.19, "y": -4.67, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "x": -1.86, "y": -9.26, "curve": "stepped"}, - {"time": 0.2667, "x": -5.58, "y": 2.65, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.4833, "x": -3.84, "y": 7.68, "curve": "stepped"}, - {"time": 0.5, "x": -8.1, "y": 29.66, "curve": "stepped"}, {"time": 0.6667, "x": -8.1, "y": 29.66, "curve": "stepped"}, - {"time": 0.7, "x": -1.86, "y": -9.26, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.8333, "x": -2.25, "y": -13.72, "curve": 0.315, "c4": 0.8}, {"time": 1} + {"time": 0.2333, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "x": 22.26, "y": 54.13}, {"time": 0.3833, "x": 28.04, "y": 49.32, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.45} + ] + }, + "leg-front-left-IK": { + "translate": [ + {"curve": "stepped"}, {"time": 0.0167, "x": 38.52}, {"time": 0.2333, "x": 38.87, "curve": 0, "c2": 0.3, "c3": 0.54}, {"time": 0.3333, "x": 26.12, "y": 38.71}, + {"time": 0.3833, "x": 12.33, "y": 29.93, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.45} ] }, "@shadow": { "translate": [ - {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 61.96, "curve": "stepped"}, {"time": 0.1667, "x": 61.96, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.25, "x": -143.36, "curve": "stepped"}, {"time": 0.2667, "x": -150.21, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.4833, "x": -152.15, "curve": "stepped"}, - {"time": 0.5, "x": -142.78}, {"time": 0.6667, "x": -144.04, "curve": "stepped"}, {"time": 0.7, "x": -144.72, "curve": "stepped"}, - {"time": 0.8333, "x": -144.72, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1} + {"curve": "stepped"}, {"time": 0.0167, "x": 33.22}, {"time": 0.2667, "x": 61.08, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3833, "x": 9.02, "curve": 0.315, "c4": 0.8}, + {"time": 0.4833} ], "scale": [ - {"time": 0.0833, "curve": 0, "c2": 0.26, "c3": 0.369, "c4": 0.62}, {"time": 0.1667, "x": 1.06, "y": 1.06, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "curve": "stepped"}, - {"time": 0.2667, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.4833, "x": 0.9, "y": 0.9, "curve": "stepped"}, {"time": 0.5, "x": 1.06, "y": 1.06}, - {"time": 0.6667, "x": 1.1, "y": 1.1, "curve": "stepped"}, {"time": 0.7, "x": 1.06, "y": 1.06, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.8333, "x": 1.1, "y": 1.1, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1} + {"curve": "stepped"}, {"time": 0.0167, "x": 1.1, "y": 1.1, "curve": "stepped"}, {"time": 0.2667, "x": 1.1, "y": 1.1, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.3833, "x": 0.98, "y": 0.98, "curve": 0.315, "c4": 0.8}, {"time": 0.4833, "x": 1.1, "y": 1.1, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5833} ] }, "tail": { "rotate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "angle": 15.61, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "angle": 20.44, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.25, "angle": -15.58, "curve": "stepped"}, {"time": 0.2667, "angle": 40.35, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.4833, "angle": 41.35, "curve": "stepped"}, - {"time": 0.5, "angle": -14.65}, {"time": 0.6667, "angle": -15.65, "curve": "stepped"}, {"time": 0.7, "angle": -15.58, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.8333, "angle": 19.38, "curve": 0.313, "c3": 0.699}, {"time": 1} + {"curve": "stepped"}, {"time": 0.0167, "angle": -17.67}, {"time": 0.2333, "angle": -21.07, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.3167, "angle": -20.71, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.45, "angle": 25.83, "curve": 0.154, "c4": 0.9}, + {"time": 0.5167, "angle": -14.3, "curve": 0.161, "c3": 0.854}, {"time": 0.5833} ] }, - "@pivot-main": {"translate": [{"time": 0.8333, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.9167, "y": 31, "curve": 0.315, "c4": 0.8}, {"time": 1}]}, "body-fur-2": { "rotate": [ - {"angle": -14.13, "curve": 0.358, "c2": 0.42, "c3": 0.702, "c4": 0.8}, {"time": 0.0667, "angle": -2.71, "curve": 0.366, "c2": 0.63, "c3": 0.703}, {"time": 0.1}, - {"time": 0.2667, "angle": -25.37, "curve": 0.571, "c2": 0.01, "c3": 0.75}, {"time": 0.4333, "angle": 31.07, "curve": 0.752, "c2": 0.01, "c3": 0.75}, - {"time": 0.6, "angle": -34.51, "curve": 0.25, "c3": 0.75}, {"time": 0.7667, "angle": -3.25, "curve": 0.25, "c3": 0.75}, - {"time": 0.85, "angle": -38.93, "curve": 0.245, "c3": 0.637, "c4": 0.56}, {"time": 1, "angle": 13.84} + {"angle": -17.14, "curve": 0.346, "c2": 0.38, "c3": 0.7, "c4": 0.78}, {"time": 0.0667, "angle": -3.41, "curve": 0.373, "c2": 0.62, "c3": 0.713}, {"time": 0.1, "curve": 0.25, "c3": 0.75}, + {"time": 0.1833, "angle": 31.69, "curve": 0.326, "c2": 0.01, "c3": 0.75}, {"time": 0.35, "angle": 13.72, "curve": 0.25, "c3": 0.75}, + {"time": 0.5, "angle": -30.92, "curve": 0.253, "c3": 0.621, "c4": 0.48}, {"time": 0.5833, "angle": 13.84} ] }, "body-fur-9": { "rotate": [ - {"angle": -7.82, "curve": 0.352, "c2": 0.41, "c3": 0.688, "c4": 0.76}, {"time": 0.0333, "angle": -2.71, "curve": 0.366, "c2": 0.63, "c3": 0.703}, - {"time": 0.0667, "curve": 0.25, "c3": 0.75}, {"time": 0.2333, "angle": -25.37, "curve": 0.571, "c2": 0.01, "c3": 0.75}, - {"time": 0.4, "angle": 31.07, "curve": 0.752, "c2": 0.01, "c3": 0.75}, {"time": 0.5667, "angle": -34.51, "curve": 0.25, "c3": 0.75}, - {"time": 0.7333, "angle": -3.25, "curve": 0.25, "c3": 0.75}, {"time": 0.8167, "angle": -38.93, "curve": 0.242, "c3": 0.663, "c4": 0.65}, {"time": 1, "angle": 6.86} + {"angle": -9.76, "curve": 0.35, "c2": 0.39, "c3": 0.689, "c4": 0.75}, {"time": 0.0333, "angle": -3.41, "curve": 0.373, "c2": 0.62, "c3": 0.713}, {"time": 0.0667}, + {"time": 0.15, "angle": 31.69, "curve": 0.326, "c2": 0.01, "c3": 0.75}, {"time": 0.3167, "angle": 13.72, "curve": 0.25, "c3": 0.75}, + {"time": 0.4667, "angle": -30.92, "curve": 0.244, "c3": 0.643, "c4": 0.58}, {"time": 0.5833, "angle": 6.86} ] }, "body-fur-8": { "rotate": [ - {"angle": -2.71, "curve": 0.366, "c2": 0.63, "c3": 0.703}, {"time": 0.0333, "curve": 0.25, "c3": 0.75}, {"time": 0.2, "angle": -25.37, "curve": 0.571, "c2": 0.01, "c3": 0.75}, - {"time": 0.3667, "angle": 31.07, "curve": 0.752, "c2": 0.01, "c3": 0.75}, {"time": 0.5333, "angle": -34.51, "curve": 0.25, "c3": 0.75}, - {"time": 0.7, "angle": -3.25, "curve": 0.25, "c3": 0.75}, {"time": 0.7833, "angle": -38.93, "curve": 0.244, "c3": 0.7, "c4": 0.79}, {"time": 1, "angle": -0.91} + {"angle": -3.41, "curve": 0.373, "c2": 0.62, "c3": 0.713}, {"time": 0.0333}, {"time": 0.1167, "angle": 31.69, "curve": 0.326, "c2": 0.01, "c3": 0.75}, + {"time": 0.2833, "angle": 13.72, "curve": 0.25, "c3": 0.75}, {"time": 0.4333, "angle": -30.92, "curve": 0.243, "c3": 0.685, "c4": 0.73}, {"time": 0.5833, "angle": -0.91} ] }, "body-fur-7": { "rotate": [ - {"angle": -0.89, "curve": 0.352, "c2": 0.65, "c3": 0.687}, {"time": 0.0167, "curve": 0.25, "c3": 0.75}, {"time": 0.1833, "angle": -25.37, "curve": 0.571, "c2": 0.01, "c3": 0.75}, - {"time": 0.35, "angle": 31.07, "curve": 0.752, "c2": 0.01, "c3": 0.75}, {"time": 0.5167, "angle": -34.51, "curve": 0.25, "c3": 0.75}, - {"time": 0.6833, "angle": -3.25, "curve": 0.25, "c3": 0.75}, {"time": 0.7667, "angle": -38.93, "curve": 0.246, "c3": 0.723, "c4": 0.88}, {"time": 1, "angle": 2.91} + {"angle": -1.09, "curve": 0.358, "c2": 0.65, "c3": 0.693}, {"time": 0.0167, "curve": 0.25, "c3": 0.75}, {"time": 0.1, "angle": 31.69, "curve": 0.326, "c2": 0.01, "c3": 0.75}, + {"time": 0.2667, "angle": 13.72, "curve": 0.25, "c3": 0.75}, {"time": 0.4167, "angle": -30.92, "curve": 0.245, "c3": 0.714, "c4": 0.85}, {"time": 0.5833, "angle": 2.91} ] }, "body-fur-6": { "rotate": [ - {"angle": -7.82, "curve": 0.352, "c2": 0.41, "c3": 0.688, "c4": 0.76}, {"time": 0.0333, "angle": -2.71, "curve": 0.366, "c2": 0.63, "c3": 0.703}, {"time": 0.0667}, - {"time": 0.2333, "angle": -25.37, "curve": 0.571, "c2": 0.01, "c3": 0.75}, {"time": 0.4, "angle": 31.07, "curve": 0.752, "c2": 0.01, "c3": 0.75}, - {"time": 0.5667, "angle": -34.51, "curve": 0.25, "c3": 0.75}, {"time": 0.7333, "angle": -3.25, "curve": 0.25, "c3": 0.75}, - {"time": 0.8167, "angle": -38.93, "curve": 0.242, "c3": 0.663, "c4": 0.65}, {"time": 1, "angle": 13.33} + {"angle": -9.76, "curve": 0.35, "c2": 0.39, "c3": 0.689, "c4": 0.75}, {"time": 0.0333, "angle": -3.41, "curve": 0.373, "c2": 0.62, "c3": 0.713}, {"time": 0.0667}, + {"time": 0.15, "angle": 31.69, "curve": 0.326, "c2": 0.01, "c3": 0.75}, {"time": 0.3167, "angle": 13.72, "curve": 0.25, "c3": 0.75}, + {"time": 0.4667, "angle": -30.92, "curve": 0.244, "c3": 0.643, "c4": 0.58}, {"time": 0.5833, "angle": 13.33} ] }, "body-fur-5": { "rotate": [ - {"angle": -2.71, "curve": 0.366, "c2": 0.63, "c3": 0.703}, {"time": 0.0333}, {"time": 0.2, "angle": -25.37, "curve": 0.571, "c2": 0.01, "c3": 0.75}, - {"time": 0.3667, "angle": 31.07, "curve": 0.752, "c2": 0.01, "c3": 0.75}, {"time": 0.5333, "angle": -34.51, "curve": 0.25, "c3": 0.75}, - {"time": 0.7, "angle": -3.25, "curve": 0.25, "c3": 0.75}, {"time": 0.7833, "angle": -38.93, "curve": 0.244, "c3": 0.7, "c4": 0.79}, {"time": 1, "angle": 6.86} + {"angle": -3.41, "curve": 0.373, "c2": 0.62, "c3": 0.713}, {"time": 0.0333}, {"time": 0.1167, "angle": 31.69, "curve": 0.326, "c2": 0.01, "c3": 0.75}, + {"time": 0.2833, "angle": 13.72, "curve": 0.25, "c3": 0.75}, {"time": 0.4333, "angle": -30.92, "curve": 0.243, "c3": 0.685, "c4": 0.73}, {"time": 0.5833, "angle": 6.86} ] }, "body-fur-4": { "rotate": [ - {"angle": -10.87, "curve": 0.356, "c2": 0.42, "c3": 0.696, "c4": 0.78}, {"time": 0.05, "angle": -2.71, "curve": 0.366, "c2": 0.63, "c3": 0.703}, {"time": 0.0833}, - {"time": 0.25, "angle": -25.37, "curve": 0.571, "c2": 0.01, "c3": 0.75}, {"time": 0.4167, "angle": 31.07, "curve": 0.752, "c2": 0.01, "c3": 0.75}, - {"time": 0.5833, "angle": -34.51, "curve": 0.25, "c3": 0.75}, {"time": 0.75, "angle": -3.25, "curve": 0.25, "c3": 0.75}, - {"time": 0.8333, "angle": -38.93, "curve": 0.243, "c3": 0.649, "c4": 0.6}, {"time": 1, "angle": 12.53} + {"angle": -13.41, "curve": 0.351, "c2": 0.39, "c3": 0.696, "c4": 0.76}, {"time": 0.05, "angle": -3.41, "curve": 0.373, "c2": 0.62, "c3": 0.713}, {"time": 0.0833}, + {"time": 0.1667, "angle": 31.69, "curve": 0.326, "c2": 0.01, "c3": 0.75}, {"time": 0.3333, "angle": 13.72, "curve": 0.25, "c3": 0.75}, + {"time": 0.4833, "angle": -30.92, "curve": 0.247, "c3": 0.63, "c4": 0.52}, {"time": 0.5833, "angle": 12.53} ] }, "body-fur-3": { "rotate": [ - {"angle": -5.07, "curve": 0.375, "c2": 0.62, "c3": 0.716}, {"time": 0.05}, {"time": 0.2167, "angle": -25.37, "curve": 0.571, "c2": 0.01, "c3": 0.75}, - {"time": 0.3833, "angle": 31.07, "curve": 0.752, "c2": 0.01, "c3": 0.75}, {"time": 0.55, "angle": -34.51, "curve": 0.25, "c3": 0.75}, - {"time": 0.7167, "angle": -3.25, "curve": 0.25, "c3": 0.75}, {"time": 0.8, "angle": -38.93, "curve": 0.243, "c3": 0.68, "c4": 0.71}, {"time": 1, "angle": 5.54} + {"angle": -6.47, "curve": 0.381, "c2": 0.59, "c3": 0.727}, {"time": 0.05}, {"time": 0.1333, "angle": 31.69, "curve": 0.326, "c2": 0.01, "c3": 0.75}, + {"time": 0.3, "angle": 13.72, "curve": 0.25, "c3": 0.75}, {"time": 0.45, "angle": -30.92, "curve": 0.242, "c3": 0.661, "c4": 0.65}, {"time": 0.5833, "angle": 5.54} ] }, "body-fur-1": { "rotate": [ - {"angle": -7.89, "curve": 0.38, "c2": 0.59, "c3": 0.727}, {"time": 0.0667}, {"time": 0.2333, "angle": -25.37, "curve": 0.571, "c2": 0.01, "c3": 0.75}, - {"time": 0.4, "angle": 31.07, "curve": 0.752, "c2": 0.01, "c3": 0.75}, {"time": 0.5667, "angle": -34.51, "curve": 0.25, "c3": 0.75}, - {"time": 0.7333, "angle": -3.25, "curve": 0.25, "c3": 0.75}, {"time": 0.8167, "angle": -38.93, "curve": 0.242, "c3": 0.663, "c4": 0.65}, {"time": 1, "angle": 10.51} + {"angle": -9.94, "curve": 0.382, "c2": 0.56, "c3": 0.739}, {"time": 0.0667}, {"time": 0.15, "angle": 31.69, "curve": 0.326, "c2": 0.01, "c3": 0.75}, + {"time": 0.3167, "angle": 13.72, "curve": 0.25, "c3": 0.75}, {"time": 0.4667, "angle": -30.92, "curve": 0.244, "c3": 0.643, "c4": 0.58}, {"time": 0.5833, "angle": 10.51} ] } - }, - "events": [{"time": 0.3333, "name": "start-attack"}, {"time": 0.5, "name": "hit"}] + } }, - "882476411": { + "431191473": { "slots": { - "eyes": {"attachment": [{"time": 0.05, "name": "eyes-angry"}, {"time": 0.6667, "name": "eyes-shut"}, {"time": 0.75, "name": "eyes"}]}, - "mouth": {"attachment": [{"time": 0.05, "name": "mouth-bite"}, {"time": 0.2667, "name": "mouth-open"}, {"time": 0.55, "name": "mouth-bite"}, {"time": 0.75, "name": "mouth"}]} + "eyes": {"attachment": [{"time": 0.05, "name": "eyes-angry"}, {"time": 0.7, "name": "eyes"}]}, + "mouth": {"attachment": [{"time": 0.05, "name": "mouth-bite"}, {"time": 0.2833, "name": "mouth-open"}, {"time": 0.4667, "name": "mouth-bite"}, {"time": 0.7, "name": "mouth"}]} }, "bones": { - "@leg-front-right": { - "translate": [ - {"curve": 0, "c2": 0.4, "c3": 0.383}, {"time": 0.25, "x": -2.2, "y": -15.65, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3167, "x": -1.86, "y": -9.26, "curve": "stepped"}, - {"time": 0.3333, "x": -2.24, "y": 13.67, "curve": "stepped"}, {"time": 0.5333, "x": -2.24, "y": 13.67, "curve": "stepped"}, - {"time": 0.55, "x": -2.12, "y": 6.47, "curve": 0.313, "c3": 0.699}, {"time": 0.6667, "x": -3.13, "y": -23.62, "curve": 0, "c2": 0.3, "c3": 0.54}, {"time": 0.8333} - ] - }, - "tail": { - "rotate": [ - {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.25, "angle": 21.98, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3167, "angle": -15.58, "curve": "stepped"}, - {"time": 0.3333, "angle": 6.35}, {"time": 0.5, "angle": 10.35, "curve": "stepped"}, {"time": 0.55, "angle": -11.84, "curve": 0.313, "c3": 0.699}, - {"time": 0.6667, "angle": 16.95, "curve": 0.313, "c3": 0.699}, {"time": 0.8333} - ] - }, "@pivot-back": { "rotate": [ - {"curve": 0, "c2": 0.4, "c3": 0.383}, {"time": 0.15, "angle": 4, "curve": "stepped"}, {"time": 0.25, "angle": 4, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.3167, "curve": "stepped"}, {"time": 0.3333}, {"time": 0.5, "angle": -3, "curve": "stepped"}, {"time": 0.55, "curve": 0.313, "c3": 0.699}, - {"time": 0.6667, "angle": 6, "curve": 0.313, "c3": 0.699}, {"time": 0.8333} + {"curve": 0, "c2": 0.4, "c3": 0.383}, {"time": 0.15, "angle": 4, "curve": 0, "c2": 0.2, "c3": 0.851}, {"time": 0.2833, "angle": 7}, + {"time": 0.4167, "angle": 7.5, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5, "angle": 4, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.5833, "angle": 6, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.75} ], "translate": [ - {"curve": 0, "c2": 0.4, "c3": 0.383}, {"time": 0.25, "x": 25, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3167, "x": -135.5, "curve": "stepped"}, {"time": 0.3333, "x": -560.54}, - {"time": 0.5, "x": -577.1, "curve": "stepped"}, {"time": 0.55, "x": -151.24, "curve": 0.313, "c3": 0.699}, {"time": 0.6667, "x": -151.24, "y": 4.06, "curve": 0.313, "c3": 0.699}, - {"time": 0.8333} - ], - "scale": [{"time": 0.3167, "curve": "stepped"}, {"time": 0.3333, "x": -1, "curve": "stepped"}, {"time": 0.5, "x": -1, "curve": "stepped"}, {"time": 0.55}] + {"curve": 0, "c2": 0.4, "c3": 0.383}, {"time": 0.25, "x": 25, "curve": 1, "c2": -0.1, "c4": 0}, {"time": 0.2833, "x": -136, "y": 25.56}, + {"time": 0.4167, "x": -153.19, "y": 25.56, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5, "x": -176.94, "curve": "stepped"}, + {"time": 0.5833, "x": -176.94, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.75} + ] }, + "@pivot-main": {"translate": [{"time": 0.5833, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.6667, "y": 45.22, "curve": 0.315, "c4": 0.8}, {"time": 0.75}]}, "@leg-front-left": { "translate": [ - {"curve": 0, "c2": 0.4, "c3": 0.383}, {"time": 0.25, "x": -1, "y": -5.53, "curve": "stepped"}, {"time": 0.3167, "x": -1, "y": -5.53, "curve": "stepped"}, - {"time": 0.3333, "x": -1.12, "y": 1.52, "curve": "stepped"}, {"time": 0.55, "x": -1.12, "y": 1.52, "curve": 0.313, "c3": 0.699}, - {"time": 0.6667, "x": -1, "y": -5.53, "curve": 0.313, "c3": 0.699}, {"time": 0.8333} + {"curve": 0, "c2": 0.4, "c3": 0.383}, {"time": 0.25, "x": -0.72, "y": -6.78}, {"time": 0.5833, "x": -1.48, "y": -14.61, "curve": 0, "c2": 0.17, "c3": 0.45, "c4": 0.61}, + {"time": 0.65, "x": -0.39, "y": 5.91, "curve": 0.345, "c2": 0.53, "c3": 0.751}, {"time": 0.75} ] }, - "@shadow": { + "@leg-front-right": { "translate": [ - {"time": 0.25, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3167, "x": -143.36, "curve": "stepped"}, {"time": 0.3333, "x": -143.36}, {"time": 0.5, "x": -157.56, "curve": "stepped"}, - {"time": 0.55, "x": -161.35, "curve": "stepped"}, {"time": 0.6667, "x": -161.35, "curve": 0.313, "c3": 0.699}, {"time": 0.8333} - ], - "scale": [ - {"curve": 0, "c2": 0.4, "c3": 0.383}, {"time": 0.25, "x": 1.08, "y": 1.08, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3167, "curve": "stepped"}, {"time": 0.3333}, - {"time": 0.5, "x": 1.08, "y": 1.08, "curve": "stepped"}, {"time": 0.55, "curve": 0.313, "c3": 0.699}, {"time": 0.6667, "x": 1.08, "y": 1.08, "curve": 0.313, "c3": 0.699}, - {"time": 0.8333} + {"curve": 0, "c2": 0.39, "c3": 0.387}, {"time": 0.25, "x": -2.88, "y": -28.54, "curve": "stepped"}, + {"time": 0.5833, "x": -2.88, "y": -28.54, "curve": 0, "c2": 0.17, "c3": 0.45, "c4": 0.61}, {"time": 0.65, "x": -0.83, "y": 1.57, "curve": 0.345, "c2": 0.53, "c3": 0.751}, {"time": 0.75} ] }, "leg-front-left-IK": { "translate": [ - {"time": 0.25, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3167, "x": -192.09, "y": 31.17, "curve": "stepped"}, {"time": 0.3333, "x": -162.19, "curve": "stepped"}, - {"time": 0.5, "x": -162.19, "curve": "stepped"}, {"time": 0.55, "x": -180.48, "curve": "stepped"}, {"time": 0.6667, "x": -180.48, "curve": 0.313, "c3": 0.699}, {"time": 0.8333} + {"curve": 0, "c2": 0.39, "c3": 0.387}, {"time": 0.25, "x": 19.12, "curve": 0.702, "c4": 0.2}, {"time": 0.2833, "x": -43.29, "y": 59.07}, + {"time": 0.4167, "x": -61.19, "y": 52.81, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5, "x": -184.33, "y": 7.89, "curve": "stepped"}, + {"time": 0.5833, "x": -184.33, "y": 7.89, "curve": 0, "c2": 0.17, "c3": 0.45, "c4": 0.61}, {"time": 0.65, "x": -105.91, "y": -2.82, "curve": 0.345, "c2": 0.53, "c3": 0.751}, + {"time": 0.75} ] }, "leg-front-right-IK": { "translate": [ - {"time": 0.25, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3167, "x": -172.87, "y": 28.32, "curve": "stepped"}, {"time": 0.3333, "x": 301.16, "y": 16.82, "curve": 0.31, "c4": 0.8}, - {"time": 0.5, "x": 285.54, "y": 12.82, "curve": "stepped"}, {"time": 0.55, "x": -180.48, "curve": "stepped"}, {"time": 0.6667, "x": -180.48, "curve": 0.313, "c3": 0.699}, - {"time": 0.8333} + {"time": 0.25, "curve": 0.702, "c4": 0.2}, {"time": 0.2833, "x": -27.95, "y": 28.32}, {"time": 0.4167, "x": -40.48, "y": 34.59, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.5, "x": -191.61, "curve": "stepped"}, {"time": 0.5833, "x": -191.61, "curve": 0, "c2": 0.17, "c3": 0.45, "c4": 0.61}, + {"time": 0.65, "x": -103, "y": 4.15, "curve": 0.345, "c2": 0.53, "c3": 0.751}, {"time": 0.75} ] }, "leg-back-left-IK": { "translate": [ - {"time": 0.25, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3167, "x": -91.18, "y": 21.9, "curve": "stepped"}, {"time": 0.3333, "x": -595.64, "y": 5, "curve": 0.31, "c4": 0.8}, - {"time": 0.5, "x": -626.51, "y": 11.36, "curve": "stepped"}, {"time": 0.55, "x": -134.74, "curve": "stepped"}, {"time": 0.6667, "x": -134.74, "curve": 0.313, "c3": 0.699}, - {"time": 0.8333} + {"time": 0.2667, "curve": 0.461, "c4": 0.4}, {"time": 0.2833, "x": -70.51, "y": 98.54}, {"time": 0.4167, "x": -70.51, "y": 101.95, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.5, "x": -189.32, "curve": "stepped"}, {"time": 0.5833, "x": -189.32, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.75} ] }, - "@pivot-main": {"translate": [{"time": 0.6667, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.75, "y": 31, "curve": 0.315, "c4": 0.8}, {"time": 0.8333}]}, - "@leg-back-left": {"translate": [{"time": 0.3167, "curve": "stepped"}, {"time": 0.3333, "x": -0.06, "y": 3.33, "curve": "stepped"}, {"time": 0.5, "x": -0.06, "y": 3.33}, {"time": 0.55}]}, - "body-fur-2": { + "@pivot-center": { "rotate": [ - {"angle": -19.31, "curve": 0.33, "c2": 0.32, "c3": 0.693, "c4": 0.75}, {"time": 0.0667, "angle": -4.17, "curve": 0.377, "c2": 0.61, "c3": 0.72}, {"time": 0.1, "curve": 0.25, "c3": 0.75}, - {"time": 0.2333, "angle": 21.88, "curve": 0.25, "c3": 0.75}, {"time": 0.4167, "angle": -28.05, "curve": 0.25, "c3": 0.75}, {"time": 0.5, "angle": 25.5, "curve": 0.25, "c3": 0.75}, - {"time": 0.65, "curve": 0.25, "c3": 0.75}, {"time": 0.7833, "angle": -27.06, "curve": 0.265, "c3": 0.618, "c4": 0.43}, {"time": 0.8333, "angle": 13.84} + {"time": 0.25, "curve": 0.779, "c4": 0.3}, {"time": 0.2833, "angle": 10.18, "curve": "stepped"}, {"time": 0.4167, "angle": 10.18, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5} ] }, - "body-fur-9": { + "tail": { "rotate": [ - {"angle": -15.42, "curve": 0.342, "c2": 0.36, "c3": 0.692, "c4": 0.75}, {"time": 0.05, "angle": -4.17, "curve": 0.377, "c2": 0.61, "c3": 0.72}, {"time": 0.0833}, - {"time": 0.2167, "angle": 21.88, "curve": 0.25, "c3": 0.75}, {"time": 0.4, "angle": -28.05, "curve": 0.25, "c3": 0.75}, {"time": 0.4833, "angle": 25.5, "curve": 0.25, "c3": 0.75}, - {"time": 0.6333, "curve": 0.25, "c3": 0.75}, {"time": 0.7667, "angle": -27.06, "curve": 0.254, "c3": 0.621, "c4": 0.47}, {"time": 0.8333, "angle": 6.86} + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.25, "angle": 21.98, "curve": 0.851, "c4": 0.1}, {"time": 0.2833, "angle": -15.58}, + {"time": 0.4167, "angle": -20.71, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5, "angle": 19.93, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.5833, "angle": 23.12, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.6667, "angle": -14.25, "curve": 0.313, "c3": 0.699}, {"time": 0.75} ] }, - "body-fur-8": { - "rotate": [ - {"angle": -7.68, "curve": 0.382, "c2": 0.57, "c3": 0.735}, {"time": 0.05}, {"time": 0.1833, "angle": 21.88, "curve": 0.25, "c3": 0.75}, - {"time": 0.3667, "angle": -28.05, "curve": 0.25, "c3": 0.75}, {"time": 0.45, "angle": 25.5, "curve": 0.25, "c3": 0.75}, {"time": 0.6, "curve": 0.25, "c3": 0.75}, - {"time": 0.7333, "angle": -27.06, "curve": 0.243, "c3": 0.649, "c4": 0.6}, {"time": 0.8333, "angle": -0.91} + "@shadow": { + "translate": [ + {"time": 0.25, "curve": 0.851, "c4": 0.1}, {"time": 0.2833, "x": -143.36}, {"time": 0.4167, "x": -160.77, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.5, "x": -186.16, "curve": "stepped"}, {"time": 0.5833, "x": -186.16, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.75} + ], + "scale": [ + {"curve": 0, "c2": 0.4, "c3": 0.383}, {"time": 0.25, "x": 1.08, "y": 1.08, "curve": "stepped"}, {"time": 0.5, "x": 1.08, "y": 1.08, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.5833, "x": 1.12, "y": 1.12, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.6667, "x": 0.94, "y": 0.94, "curve": 0.315, "c4": 0.8}, {"time": 0.75} ] }, - "body-fur-7": { + "@leg-back-left": {"translate": [{"curve": 0, "c2": 0.39, "c3": 0.387}, {"time": 0.25, "x": -7.28, "y": 3.82}]}, + "body-fur-1": { "rotate": [ - {"angle": -1.39, "curve": 0.362, "c2": 0.64, "c3": 0.698}, {"time": 0.0167, "curve": 0.25, "c3": 0.75}, {"time": 0.15, "angle": 21.88, "curve": 0.25, "c3": 0.75}, - {"time": 0.3333, "angle": -28.05, "curve": 0.25, "c3": 0.75}, {"time": 0.4167, "angle": 25.5, "curve": 0.25, "c3": 0.75}, {"time": 0.5667, "curve": 0.25, "c3": 0.75}, - {"time": 0.7, "angle": -27.06, "curve": 0.245, "c3": 0.707, "c4": 0.82}, {"time": 0.8333, "angle": 2.91} + {"angle": -7.99, "curve": 0.382, "c2": 0.57, "c3": 0.735}, {"time": 0.0667}, {"time": 0.3333, "angle": -23.85, "curve": 0.25, "c3": 0.75}, + {"time": 0.4, "angle": 26.05, "curve": 0.25, "c3": 0.75}, {"time": 0.6167, "angle": -28.16, "curve": 0.243, "c3": 0.649, "c4": 0.6}, {"time": 0.75, "angle": 10.51} ] }, - "body-fur-6": { + "body-fur-2": { "rotate": [ - {"angle": -11.45, "curve": 0.347, "c2": 0.38, "c3": 0.688, "c4": 0.74}, {"time": 0.0333, "angle": -4.17, "curve": 0.377, "c2": 0.61, "c3": 0.72}, {"time": 0.0667}, - {"time": 0.2, "angle": 21.88, "curve": 0.25, "c3": 0.75}, {"time": 0.3833, "angle": -28.05, "curve": 0.25, "c3": 0.75}, {"time": 0.4667, "angle": 25.5, "curve": 0.25, "c3": 0.75}, - {"time": 0.6167, "curve": 0.25, "c3": 0.75}, {"time": 0.75, "angle": -27.06, "curve": 0.247, "c3": 0.631, "c4": 0.53}, {"time": 0.8333, "angle": 13.33} + {"angle": -13.91, "curve": 0.351, "c2": 0.39, "c3": 0.701, "c4": 0.78}, {"time": 0.0667, "angle": -2.72, "curve": 0.371, "c2": 0.62, "c3": 0.71}, {"time": 0.1}, + {"time": 0.3667, "angle": -23.85, "curve": 0.25, "c3": 0.75}, {"time": 0.4333, "angle": 26.05, "curve": 0.25, "c3": 0.75}, + {"time": 0.65, "angle": -28.16, "curve": 0.25, "c3": 0.625, "c4": 0.5}, {"time": 0.75, "angle": 13.84} ] }, - "body-fur-5": { + "body-fur-3": { "rotate": [ - {"angle": -4.17, "curve": 0.377, "c2": 0.61, "c3": 0.72}, {"time": 0.0333}, {"time": 0.1667, "angle": 21.88, "curve": 0.25, "c3": 0.75}, - {"time": 0.35, "angle": -28.05, "curve": 0.25, "c3": 0.75}, {"time": 0.4333, "angle": 25.5, "curve": 0.25, "c3": 0.75}, {"time": 0.5833, "curve": 0.25, "c3": 0.75}, - {"time": 0.7167, "angle": -27.06, "curve": 0.243, "c3": 0.674, "c4": 0.69}, {"time": 0.8333, "angle": 6.86} + {"angle": -5.19, "curve": 0.379, "c2": 0.6, "c3": 0.724}, {"time": 0.05, "curve": 0.25, "c3": 0.75}, {"time": 0.3167, "angle": -23.85, "curve": 0.25, "c3": 0.75}, + {"time": 0.3833, "angle": 26.05, "curve": 0.25, "c3": 0.75}, {"time": 0.6, "angle": -28.16, "curve": 0.242, "c3": 0.667, "c4": 0.67}, {"time": 0.75, "angle": 5.54} ] }, "body-fur-4": { "rotate": [ - {"angle": -15.42, "curve": 0.342, "c2": 0.36, "c3": 0.692, "c4": 0.75}, {"time": 0.05, "angle": -4.17, "curve": 0.377, "c2": 0.61, "c3": 0.72}, {"time": 0.0833}, - {"time": 0.2167, "angle": 21.88, "curve": 0.25, "c3": 0.75}, {"time": 0.4, "angle": -28.05, "curve": 0.25, "c3": 0.75}, {"time": 0.4833, "angle": 25.5, "curve": 0.25, "c3": 0.75}, - {"time": 0.6333, "curve": 0.25, "c3": 0.75}, {"time": 0.7667, "angle": -27.06, "curve": 0.254, "c3": 0.621, "c4": 0.47}, {"time": 0.8333, "angle": 12.53} + {"angle": -10.8, "curve": 0.353, "c2": 0.4, "c3": 0.696, "c4": 0.77}, {"time": 0.05, "angle": -2.72, "curve": 0.371, "c2": 0.62, "c3": 0.71}, {"time": 0.0833, "curve": 0.25, "c3": 0.75}, + {"time": 0.35, "angle": -23.85, "curve": 0.25, "c3": 0.75}, {"time": 0.4167, "angle": 26.05, "curve": 0.25, "c3": 0.75}, + {"time": 0.6333, "angle": -28.16, "curve": 0.246, "c3": 0.635, "c4": 0.55}, {"time": 0.75, "angle": 12.53} ] }, - "body-fur-3": { + "body-fur-5": { "rotate": [ - {"angle": -7.68, "curve": 0.382, "c2": 0.57, "c3": 0.735}, {"time": 0.05}, {"time": 0.1833, "angle": 21.88, "curve": 0.25, "c3": 0.75}, - {"time": 0.3667, "angle": -28.05, "curve": 0.25, "c3": 0.75}, {"time": 0.45, "angle": 25.5, "curve": 0.25, "c3": 0.75}, {"time": 0.6, "curve": 0.25, "c3": 0.75}, - {"time": 0.7333, "angle": -27.06, "curve": 0.243, "c3": 0.649, "c4": 0.6}, {"time": 0.8333, "angle": 5.54} + {"angle": -2.72, "curve": 0.371, "c2": 0.62, "c3": 0.71}, {"time": 0.0333}, {"time": 0.3, "angle": -23.85, "curve": 0.25, "c3": 0.75}, + {"time": 0.3667, "angle": 26.05, "curve": 0.25, "c3": 0.75}, {"time": 0.5833, "angle": -28.16, "curve": 0.243, "c3": 0.689, "c4": 0.75}, {"time": 0.75, "angle": 6.86} ] }, - "body-fur-1": { + "body-fur-6": { "rotate": [ - {"angle": -11.54, "curve": 0.379, "c2": 0.53, "c3": 0.746}, {"time": 0.0667, "curve": 0.25, "c3": 0.75}, {"time": 0.2, "angle": 21.88, "curve": 0.25, "c3": 0.75}, - {"time": 0.3833, "angle": -28.05, "curve": 0.25, "c3": 0.75}, {"time": 0.4667, "angle": 25.5, "curve": 0.25, "c3": 0.75}, {"time": 0.6167, "curve": 0.25, "c3": 0.75}, - {"time": 0.75, "angle": -27.06, "curve": 0.247, "c3": 0.631, "c4": 0.53}, {"time": 0.8333, "angle": 10.51} + {"angle": -7.8, "curve": 0.351, "c2": 0.4, "c3": 0.689, "c4": 0.75}, {"time": 0.0333, "angle": -2.72, "curve": 0.371, "c2": 0.62, "c3": 0.71}, {"time": 0.0667}, + {"time": 0.3333, "angle": -23.85, "curve": 0.25, "c3": 0.75}, {"time": 0.4, "angle": 26.05, "curve": 0.25, "c3": 0.75}, + {"time": 0.6167, "angle": -28.16, "curve": 0.243, "c3": 0.649, "c4": 0.6}, {"time": 0.75, "angle": 13.33} ] - } - }, - "events": [{"time": 0.25, "name": "start-attack"}, {"time": 0.3333, "name": "hit"}] + }, + "body-fur-7": { + "rotate": [ + {"angle": -0.82, "curve": 0.356, "c2": 0.65, "c3": 0.691}, {"time": 0.0167, "curve": 0.25, "c3": 0.75}, {"time": 0.2833, "angle": -23.85, "curve": 0.25, "c3": 0.75}, + {"time": 0.35, "angle": 26.05, "curve": 0.25, "c3": 0.75}, {"time": 0.5667, "angle": -28.16, "curve": 0.246, "c3": 0.717, "c4": 0.86}, {"time": 0.75, "angle": 2.91} + ] + }, + "body-fur-8": { + "rotate": [ + {"angle": -2.72, "curve": 0.371, "c2": 0.62, "c3": 0.71}, {"time": 0.0333}, {"time": 0.3, "angle": -23.85, "curve": 0.25, "c3": 0.75}, + {"time": 0.3667, "angle": 26.05, "curve": 0.25, "c3": 0.75}, {"time": 0.5833, "angle": -28.16, "curve": 0.243, "c3": 0.689, "c4": 0.75}, {"time": 0.75, "angle": -0.91} + ] + }, + "body-fur-9": { + "rotate": [ + {"angle": -7.8, "curve": 0.351, "c2": 0.4, "c3": 0.689, "c4": 0.75}, {"time": 0.0333, "angle": -2.72, "curve": 0.371, "c2": 0.62, "c3": 0.71}, {"time": 0.0667}, + {"time": 0.3333, "angle": -23.85, "curve": 0.25, "c3": 0.75}, {"time": 0.4, "angle": 26.05, "curve": 0.25, "c3": 0.75}, + {"time": 0.6167, "angle": -28.16, "curve": 0.243, "c3": 0.649, "c4": 0.6}, {"time": 0.75, "angle": 6.86} + ] + } + }, + "events": [{"time": 0.2167, "name": "start-attack"}, {"time": 0.2833, "name": "hit"}] }, - "2870186096": { + "2133555169": { + "slots": { + "eyes": {"attachment": [{"time": 0.1333, "name": "eyes-angry"}, {"time": 0.6667, "name": "eyes"}]}, + "mouth": {"attachment": [{"time": 0.1333, "name": "mouth-bite"}, {"time": 0.2667, "name": "mouth-open"}, {"time": 0.4167, "name": "mouth-bite"}, {"time": 0.6667, "name": "mouth"}]} + }, "bones": { "@pivot-back": { "rotate": [ - {"curve": 0, "c2": 0.34, "c3": 0.465}, {"time": 0.1667, "angle": 8.43, "curve": 0.614, "c4": 0.29}, {"time": 0.4167, "angle": -69.48, "curve": 0, "c2": 0.1, "c4": 0.9}, - {"time": 0.5833, "angle": 151.42, "curve": 0, "c2": 0.3, "c3": 0.535}, {"time": 0.8333, "angle": -5.75, "curve": 0, "c2": 0.15, "c4": 0.85}, - {"time": 1, "angle": -7.09, "curve": 0, "c2": 0.3, "c3": 0.542}, {"time": 1.25, "angle": 7.21, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1.5} + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "angle": -3.92, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "angle": 2.51, "curve": 0, "c2": 0.3, "c3": 0.544}, + {"time": 0.35, "angle": -4.74, "curve": 0.7, "c4": 0.3}, {"time": 0.4167, "angle": 2}, {"time": 0.5833, "angle": 4, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.75} ], "translate": [ - {"x": 0.02, "y": 44.43, "curve": 0, "c2": 0.34, "c3": 0.465}, {"time": 0.1667, "x": 25.79, "y": 23.82, "curve": 0.614, "c4": 0.29}, - {"time": 0.4167, "x": -156.83, "y": 231.34, "curve": 0, "c2": 0.1, "c4": 0.9}, {"time": 0.5833, "x": -1.88, "y": 372.46, "curve": 0, "c2": 0.19, "c3": 0.403, "c4": 0.57}, - {"time": 0.6667, "x": 196.15, "y": 317.74, "curve": 0.282, "c2": 0.45, "c3": 0.748}, {"time": 0.8333, "x": 558.6, "y": 68.09, "curve": 0, "c2": 0.15, "c4": 0.85}, - {"time": 1, "x": 586.58, "y": 68.09, "curve": 0, "c2": 0.3, "c3": 0.542}, {"time": 1.25, "x": 594.57, "y": 68.09, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 1.5, "x": 0.02, "y": 44.43} + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 71.93, "y": -12.95, "curve": "stepped"}, {"time": 0.25, "x": 71.93, "y": -12.95, "curve": 0, "c2": 0.3, "c3": 0.544}, + {"time": 0.4167, "x": -144.49, "y": -12.95, "curve": "stepped"}, {"time": 0.5833, "x": -144.49, "y": -12.95, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.75} ] }, - "tail": { - "rotate": [ - {"curve": 0, "c2": 0.34, "c3": 0.465}, {"time": 0.1667, "angle": 16.63, "curve": 0.622, "c4": 0.3}, {"time": 0.4167, "angle": -38.13, "curve": 0, "c2": 0.1, "c4": 0.9}, - {"time": 0.6667, "angle": 21.47, "curve": 0, "c2": 0.2, "c3": 0.698}, {"time": 1, "angle": -14.5, "curve": 0, "c2": 0.3, "c3": 0.549}, - {"time": 1.25, "angle": 17, "curve": 0, "c2": 0.2, "c3": 0.7}, {"time": 1.5} + "leg-back-left-IK": { + "translate": [ + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.1167, "x": 93.98, "curve": 0.161, "c3": 0.854}, {"time": 0.25, "x": 67.02, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.3333, "x": -65.1, "y": -1.32, "curve": 0.315, "c4": 0.8}, {"time": 0.4167, "x": -131.67, "curve": "stepped"}, {"time": 0.5833, "x": -131.67, "curve": 0.159, "c4": 0.9}, + {"time": 0.75} ] }, - "@leg-back-left": { - "rotate": [ - {"curve": 0, "c2": 0.34, "c3": 0.465}, {"time": 0.1667, "angle": -14.34, "curve": 0.619, "c4": 0.3}, {"time": 0.4167, "angle": 14.4, "curve": 0, "c2": 0.1, "c4": 0.9}, - {"time": 0.6667, "angle": -14.29, "curve": "stepped"}, {"time": 1, "angle": -14.29, "curve": 0, "c2": 0.3, "c3": 0.542}, - {"time": 1.25, "angle": 14.99, "curve": 0, "c2": 0.2, "c3": 0.693}, {"time": 1.5} + "leg-front-right-IK": { + "translate": [ + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 21.56, "y": 4.31, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.25, "x": 42.9, "curve": 0, "c2": 0.3, "c3": 0.544}, + {"time": 0.3667, "x": -104.26, "y": 42.61, "curve": 0.161, "c4": 0.85}, {"time": 0.4167, "x": -153.64, "curve": "stepped"}, {"time": 0.5833, "x": -153.64, "curve": 0.154, "c4": 0.9}, + {"time": 0.7, "x": 13.43, "curve": 0.161, "c3": 0.854}, {"time": 0.75} + ] + }, + "leg-front-left-IK": { + "translate": [ + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 43.11, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "x": 48.71, "y": -1.66, "curve": 0, "c2": 0.3, "c3": 0.544}, + {"time": 0.3667, "x": -87.39, "y": 18.71, "curve": 0.161, "c4": 0.85}, {"time": 0.4167, "x": -150.32, "y": 0.83}, {"time": 0.5833, "x": -142.85, "curve": 0.154, "c4": 0.9}, + {"time": 0.7, "x": 13.43, "curve": 0.161, "c3": 0.854}, {"time": 0.75} ] }, "@leg-front-left": { - "rotate": [ - {"curve": 0, "c2": 0.34, "c3": 0.465}, {"time": 0.1667, "angle": -18.49, "curve": 0.619, "c4": 0.3}, {"time": 0.4167, "angle": 10.25, "curve": 0, "c2": 0.1, "c4": 0.9}, - {"time": 0.6667, "angle": -18.44}, {"time": 1, "angle": -22.13, "curve": 0, "c2": 0.3, "c3": 0.542}, {"time": 1.25, "angle": 7.14, "curve": 0, "c2": 0.2, "c3": 0.693}, {"time": 1.5} + "translate": [ + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": -0.28, "y": 3.31, "curve": 0, "c2": 0.3, "c3": 0.544}, + {"time": 0.25, "x": -0.62, "y": -3.21, "curve": 0, "c2": 0.25, "c3": 0.457, "c4": 0.73}, {"time": 0.3667, "x": -15.24, "y": -11.32, "curve": 0.325, "c2": 0.6, "c3": 0.672}, + {"time": 0.4167, "x": -17.97, "y": -3.57, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5833, "x": -18.47, "y": -10.19, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.75} ] }, "@leg-front-right": { + "translate": [ + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 3.63, "y": 19.84, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.25, "x": -10.53, "y": -16.98, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.4167, "x": -10.44, "y": -18.31, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.5833, "x": -10.92, "y": -30.23, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.75} + ] + }, + "@pivot-main": { + "translate": [ + {"time": 0.25, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "y": 26.43, "curve": 0.315, "c4": 0.8}, {"time": 0.4167, "curve": "stepped"}, + {"time": 0.5833, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.6667, "y": 26.43, "curve": 0.315, "c4": 0.8}, {"time": 0.75} + ] + }, + "@leg-back-left": { + "translate": [ + {"time": 0.1167, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "x": -0.25, "y": -9.22, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.3333, "x": -0.44, "y": 4.57, "curve": 0.306, "c4": 0.8}, {"time": 0.4167, "x": -0.58, "y": -9.21}, + {"time": 0.5833, "x": -0.15, "y": -9.98, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.75} + ] + }, + "tail": { "rotate": [ - {"curve": 0, "c2": 0.34, "c3": 0.465}, {"time": 0.1667, "angle": -18.49, "curve": 0.619, "c4": 0.3}, {"time": 0.4167, "angle": 10.25, "curve": 0, "c2": 0.1, "c4": 0.9}, - {"time": 0.6667, "angle": -18.44}, {"time": 1, "angle": -22.13, "curve": 0, "c2": 0.3, "c3": 0.542}, {"time": 1.25, "angle": 7.14, "curve": 0, "c2": 0.2, "c3": 0.693}, {"time": 1.5} + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "angle": 12.92, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "angle": 18.48, "curve": 0, "c2": 0.3, "c3": 0.544}, + {"time": 0.35, "angle": -6.88, "curve": 0.7, "c4": 0.3}, {"time": 0.4167, "angle": 14}, {"time": 0.5833, "angle": 19.37, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.6833, "angle": -8.78, "curve": 0.313, "c3": 0.699}, {"time": 0.75} ] }, "@shadow": { "translate": [ - {"curve": 0, "c2": 0.34, "c3": 0.465}, {"time": 0.1667, "x": 19.25, "curve": 0.622, "c4": 0.3}, {"time": 0.4167, "x": -31.7, "curve": 0, "c2": 0.1, "c4": 0.9}, - {"time": 0.5833, "x": 395, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.8333, "x": 549.5, "curve": 0, "c2": 0.15, "c4": 0.85}, - {"time": 1, "x": 577.9, "curve": 0, "c2": 0.3, "c3": 0.549}, {"time": 1.25, "x": 587.3, "curve": 0, "c2": 0.2, "c3": 0.7}, {"time": 1.5} + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 61.96, "curve": "stepped"}, {"time": 0.25, "x": 61.96, "curve": 0, "c2": 0.3, "c3": 0.544}, + {"time": 0.35, "x": -121.98, "curve": 0.7, "c4": 0.3}, {"time": 0.4167, "x": -154.28, "curve": "stepped"}, {"time": 0.5833, "x": -154.28, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.75} ], "scale": [ - {"curve": 0, "c2": 0.34, "c3": 0.465}, {"time": 0.1667, "x": 1.12, "y": 1.12, "curve": 0.622, "c4": 0.3}, {"time": 0.4167, "x": 0.84, "y": 0.84, "curve": 0, "c2": 0.1, "c4": 0.9}, - {"time": 0.5833, "x": 0.9, "y": 0.9, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.8333, "x": 0.98, "y": 0.98, "curve": 0, "c2": 0.15, "c4": 0.85}, - {"time": 1, "x": 0.94, "y": 0.94, "curve": 0, "c2": 0.3, "c3": 0.549}, {"time": 1.25, "x": 1.02, "y": 1.02, "curve": 0, "c2": 0.2, "c3": 0.7}, {"time": 1.5} + {"time": 0.0833, "curve": 0, "c2": 0.26, "c3": 0.369, "c4": 0.62}, {"time": 0.25, "x": 1.06, "y": 1.06, "curve": 0.192, "c2": 0.45, "c3": 0.623}, + {"time": 0.35, "x": 0.96, "y": 0.96, "curve": 0.7, "c4": 0.3}, {"time": 0.4167, "x": 1.08, "y": 1.08, "curve": "stepped"}, + {"time": 0.5833, "x": 1.08, "y": 1.08, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.75} ] }, - "body-fur-8": { + "body-fur-5": { "rotate": [ - {"angle": -8.81, "curve": 0.375, "c2": 0.5, "c3": 0.75}, {"time": 0.0667}, {"time": 0.2333, "angle": 34.44, "curve": 0.25, "c3": 0.75}, - {"time": 0.4, "angle": 15.7, "curve": 0.25, "c3": 0.75}, {"time": 0.7333, "angle": 43.18, "curve": 0.361, "c2": 0.01, "c3": 0.75}, - {"time": 0.9667, "angle": -39.28, "curve": 0.25, "c3": 0.75}, {"time": 1.2667, "angle": 22.14, "curve": 0.25, "c3": 0.75}, - {"time": 1.4333, "angle": -17.63, "curve": 0.25, "c3": 0.625, "c4": 0.5}, {"time": 1.5, "angle": -8.81} + {"angle": -2.72, "curve": 0.371, "c2": 0.62, "c3": 0.71}, {"time": 0.0333}, {"time": 0.3, "angle": -23.85, "curve": 0.25, "c3": 0.75}, + {"time": 0.3667, "angle": 26.05, "curve": 0.25, "c3": 0.75}, {"time": 0.5833, "angle": -28.16, "curve": 0.243, "c3": 0.689, "c4": 0.75}, {"time": 0.75, "angle": 6.86} ] }, - "body-fur-1": { + "body-fur-4": { "rotate": [ - {"angle": -11.71, "curve": 0.359, "c2": 0.43, "c3": 0.756}, {"time": 0.0833}, {"time": 0.25, "angle": 34.44, "curve": 0.25, "c3": 0.75}, - {"time": 0.4167, "angle": 15.7, "curve": 0.25, "c3": 0.75}, {"time": 0.75, "angle": 43.18, "curve": 0.361, "c2": 0.01, "c3": 0.75}, - {"time": 0.9833, "angle": -39.28, "curve": 0.25, "c3": 0.75}, {"time": 1.2833, "angle": 22.14, "curve": 0.25, "c3": 0.75}, - {"time": 1.45, "angle": -17.63, "curve": 0.26, "c3": 0.618, "c4": 0.44}, {"time": 1.5, "angle": -11.71} + {"angle": -10.8, "curve": 0.353, "c2": 0.4, "c3": 0.696, "c4": 0.77}, {"time": 0.05, "angle": -2.72, "curve": 0.371, "c2": 0.62, "c3": 0.71}, {"time": 0.0833, "curve": 0.25, "c3": 0.75}, + {"time": 0.35, "angle": -23.85, "curve": 0.25, "c3": 0.75}, {"time": 0.4167, "angle": 26.05, "curve": 0.25, "c3": 0.75}, + {"time": 0.6333, "angle": -28.16, "curve": 0.246, "c3": 0.635, "c4": 0.55}, {"time": 0.75, "angle": 12.53} ] }, - "body-fur-2": { + "body-fur-7": { "rotate": [ - {"angle": -17.63, "curve": 0.244, "c3": 0.641, "c4": 0.57}, {"time": 0.0833, "angle": -5.92, "curve": 0.382, "c2": 0.56, "c3": 0.74}, {"time": 0.1333}, - {"time": 0.3, "angle": 34.44, "curve": 0.25, "c3": 0.75}, {"time": 0.4667, "angle": 15.7, "curve": 0.25, "c3": 0.75}, - {"time": 0.8, "angle": 43.18, "curve": 0.361, "c2": 0.01, "c3": 0.75}, {"time": 1.0333, "angle": -39.28, "curve": 0.25, "c3": 0.75}, - {"time": 1.3333, "angle": 22.14, "curve": 0.25, "c3": 0.75}, {"time": 1.5, "angle": -17.63} + {"angle": -0.82, "curve": 0.356, "c2": 0.65, "c3": 0.691}, {"time": 0.0167, "curve": 0.25, "c3": 0.75}, {"time": 0.2833, "angle": -23.85, "curve": 0.25, "c3": 0.75}, + {"time": 0.35, "angle": 26.05, "curve": 0.25, "c3": 0.75}, {"time": 0.5667, "angle": -28.16, "curve": 0.246, "c3": 0.717, "c4": 0.86}, {"time": 0.75, "angle": 2.91} ] }, - "body-fur-3": { + "body-fur-8": { "rotate": [ - {"angle": -17.63, "curve": 0.25, "c3": 0.75}, {"time": 0.1333, "curve": 0.25, "c3": 0.75}, {"time": 0.3, "angle": 34.44, "curve": 0.25, "c3": 0.75}, - {"time": 0.4667, "angle": 15.7, "curve": 0.25, "c3": 0.75}, {"time": 0.8, "angle": 43.18, "curve": 0.361, "c2": 0.01, "c3": 0.75}, - {"time": 1.0333, "angle": -39.28, "curve": 0.25, "c3": 0.75}, {"time": 1.3333, "angle": 22.14, "curve": 0.25, "c3": 0.75}, {"time": 1.5, "angle": -17.63} + {"angle": -2.72, "curve": 0.371, "c2": 0.62, "c3": 0.71}, {"time": 0.0333}, {"time": 0.3, "angle": -23.85, "curve": 0.25, "c3": 0.75}, + {"time": 0.3667, "angle": 26.05, "curve": 0.25, "c3": 0.75}, {"time": 0.5833, "angle": -28.16, "curve": 0.243, "c3": 0.689, "c4": 0.75}, {"time": 0.75, "angle": -0.91} ] }, - "body-fur-4": { + "body-fur-9": { "rotate": [ - {"angle": -7.99, "curve": 0.382, "c2": 0.58, "c3": 0.731}, {"time": 0.05, "angle": -17.63, "curve": 0.244, "c3": 0.641, "c4": 0.57}, - {"time": 0.1333, "angle": -5.92, "curve": 0.382, "c2": 0.56, "c3": 0.74}, {"time": 0.1833, "curve": 0.25, "c3": 0.75}, {"time": 0.35, "angle": 34.44, "curve": 0.25, "c3": 0.75}, - {"time": 0.5167, "angle": 15.7, "curve": 0.25, "c3": 0.75}, {"time": 0.85, "angle": 43.18, "curve": 0.361, "c2": 0.01, "c3": 0.75}, - {"time": 1.0833, "angle": -39.28, "curve": 0.25, "c3": 0.75}, {"time": 1.3833, "angle": 22.14, "curve": 0.243, "c3": 0.655, "c4": 0.63}, {"time": 1.5, "angle": -7.99} + {"angle": -7.8, "curve": 0.351, "c2": 0.4, "c3": 0.689, "c4": 0.75}, {"time": 0.0333, "angle": -2.72, "curve": 0.371, "c2": 0.62, "c3": 0.71}, {"time": 0.0667}, + {"time": 0.3333, "angle": -23.85, "curve": 0.25, "c3": 0.75}, {"time": 0.4, "angle": 26.05, "curve": 0.25, "c3": 0.75}, + {"time": 0.6167, "angle": -28.16, "curve": 0.243, "c3": 0.649, "c4": 0.6}, {"time": 0.75, "angle": 6.86} ] }, - "body-fur-5": { + "body-fur-6": { "rotate": [ - {"angle": -14.37, "curve": 0.333, "c2": 0.33, "c3": 0.758}, {"time": 0.1}, {"time": 0.2667, "angle": 34.44, "curve": 0.25, "c3": 0.75}, - {"time": 0.4333, "angle": 15.7, "curve": 0.25, "c3": 0.75}, {"time": 0.7667, "angle": 43.18, "curve": 0.361, "c2": 0.01, "c3": 0.75}, - {"time": 1, "angle": -39.28, "curve": 0.25, "c3": 0.75}, {"time": 1.3, "angle": 22.14, "curve": 0.25, "c3": 0.75}, - {"time": 1.4667, "angle": -17.63, "curve": 0.276, "c3": 0.621, "c4": 0.4}, {"time": 1.5, "angle": -14.37} + {"angle": -7.8, "curve": 0.351, "c2": 0.4, "c3": 0.689, "c4": 0.75}, {"time": 0.0333, "angle": -2.72, "curve": 0.371, "c2": 0.62, "c3": 0.71}, {"time": 0.0667}, + {"time": 0.3333, "angle": -23.85, "curve": 0.25, "c3": 0.75}, {"time": 0.4, "angle": 26.05, "curve": 0.25, "c3": 0.75}, + {"time": 0.6167, "angle": -28.16, "curve": 0.243, "c3": 0.649, "c4": 0.6}, {"time": 0.75, "angle": 13.33} ] }, - "body-fur-6": { + "body-fur-1": { "rotate": [ - {"angle": -15.93, "curve": 0.36, "c2": 0.64, "c3": 0.695}, {"time": 0.0167, "angle": -17.63, "curve": 0.244, "c3": 0.641, "c4": 0.57}, - {"time": 0.1, "angle": -5.92, "curve": 0.382, "c2": 0.56, "c3": 0.74}, {"time": 0.15}, {"time": 0.3167, "angle": 34.44, "curve": 0.25, "c3": 0.75}, - {"time": 0.4833, "angle": 15.7, "curve": 0.25, "c3": 0.75}, {"time": 0.8167, "angle": 43.18, "curve": 0.361, "c2": 0.01, "c3": 0.75}, - {"time": 1.05, "angle": -39.28, "curve": 0.25, "c3": 0.75}, {"time": 1.35, "angle": 22.14, "curve": 0.245, "c3": 0.711, "c4": 0.83}, {"time": 1.5, "angle": -15.93} + {"angle": -7.99, "curve": 0.382, "c2": 0.57, "c3": 0.735}, {"time": 0.0667}, {"time": 0.3333, "angle": -23.85, "curve": 0.25, "c3": 0.75}, + {"time": 0.4, "angle": 26.05, "curve": 0.25, "c3": 0.75}, {"time": 0.6167, "angle": -28.16, "curve": 0.243, "c3": 0.649, "c4": 0.6}, {"time": 0.75, "angle": 10.51} ] }, - "body-fur-7": { + "body-fur-2": { "rotate": [ - {"angle": -8.81, "curve": 0.375, "c2": 0.5, "c3": 0.75}, {"time": 0.0667, "curve": 0.25, "c3": 0.75}, {"time": 0.2333, "angle": 34.44, "curve": 0.25, "c3": 0.75}, - {"time": 0.4, "angle": 15.7, "curve": 0.25, "c3": 0.75}, {"time": 0.7333, "angle": 43.18, "curve": 0.361, "c2": 0.01, "c3": 0.75}, - {"time": 0.9667, "angle": -39.28, "curve": 0.25, "c3": 0.75}, {"time": 1.2667, "angle": 22.14, "curve": 0.25, "c3": 0.75}, - {"time": 1.4333, "angle": -17.63, "curve": 0.25, "c3": 0.625, "c4": 0.5}, {"time": 1.5, "angle": -8.81} + {"angle": -13.91, "curve": 0.351, "c2": 0.39, "c3": 0.701, "c4": 0.78}, {"time": 0.0667, "angle": -2.72, "curve": 0.371, "c2": 0.62, "c3": 0.71}, {"time": 0.1}, + {"time": 0.3667, "angle": -23.85, "curve": 0.25, "c3": 0.75}, {"time": 0.4333, "angle": 26.05, "curve": 0.25, "c3": 0.75}, + {"time": 0.65, "angle": -28.16, "curve": 0.25, "c3": 0.625, "c4": 0.5}, {"time": 0.75, "angle": 13.84} ] }, - "body-fur-9": { + "body-fur-3": { "rotate": [ - {"angle": -16.56, "curve": 0.285, "c2": 0.17, "c3": 0.657, "c4": 0.63}, {"time": 0.0667, "angle": -5.92, "curve": 0.382, "c2": 0.56, "c3": 0.74}, {"time": 0.1167}, - {"time": 0.2833, "angle": 34.44, "curve": 0.25, "c3": 0.75}, {"time": 0.45, "angle": 15.7, "curve": 0.25, "c3": 0.75}, - {"time": 0.7833, "angle": 43.18, "curve": 0.361, "c2": 0.01, "c3": 0.75}, {"time": 1.0167, "angle": -39.28, "curve": 0.25, "c3": 0.75}, - {"time": 1.3167, "angle": 22.14, "curve": 0.25, "c3": 0.75}, {"time": 1.4833, "angle": -17.63, "curve": 0.299, "c3": 0.636, "c4": 0.36}, {"time": 1.5, "angle": -16.56} + {"angle": -5.19, "curve": 0.379, "c2": 0.6, "c3": 0.724}, {"time": 0.05, "curve": 0.25, "c3": 0.75}, {"time": 0.3167, "angle": -23.85, "curve": 0.25, "c3": 0.75}, + {"time": 0.3833, "angle": 26.05, "curve": 0.25, "c3": 0.75}, {"time": 0.6, "angle": -28.16, "curve": 0.242, "c3": 0.667, "c4": 0.67}, {"time": 0.75, "angle": 5.54} ] } - } + }, + "events": [{"time": 0.25, "name": "start-attack"}, {"time": 0.4167, "name": "hit"}] }, - "901954966": { - "slots": { - "ear-left-dot-01": { - "color": [ - {"color": "ffffffff", "curve": "stepped"}, {"time": 0.2167, "color": "ffffffff", "curve": 0.25, "c3": 0.75}, {"time": 0.85, "color": "ffffff00", "curve": "stepped"}, - {"time": 0.8833, "color": "ffffff00", "curve": 0.25, "c3": 0.75}, {"time": 1.2167, "color": "ffffffff"} + "1829044875": { + "bones": { + "leg-front-left-IK": { + "translate": [ + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 3.08, "curve": 0.315, "c4": 0.8}, {"time": 0.15, "x": 13.79, "curve": 0, "c2": 0.3, "c3": 0.544}, + {"time": 0.25, "x": -43.09, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.3333, "x": 26.11, "curve": "stepped"}, {"time": 0.5, "x": 26.11, "curve": 0, "c2": 0.3, "c3": 0.544}, + {"time": 0.5833} ] }, - "ear-left-dot-02": { - "color": [ - {"color": "ffffffab", "curve": 0.358, "c2": 0.42, "c3": 0.756}, {"time": 0.4, "color": "ffffff00", "curve": "stepped"}, {"time": 0.4333, "color": "ffffff00", "curve": 0.25, "c3": 0.75}, - {"time": 0.7667, "color": "ffffffff", "curve": "stepped"}, {"time": 2.4333, "color": "ffffffff", "curve": 0.261, "c3": 0.618, "c4": 0.44}, {"time": 2.6667, "color": "ffffffab"} + "@pivot-back": { + "rotate": [ + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "angle": 5.51, "curve": 0.315, "c4": 0.8}, {"time": 0.2, "angle": -4, "curve": 0.62, "c3": 0.536}, + {"time": 0.5, "angle": 5.83, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5833, "angle": -1.41, "curve": 0.154, "c4": 0.9}, {"time": 0.6667} + ], + "translate": [ + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.1167, "x": 13.63, "y": 1.37, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5, "y": -4.7, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.6667} ] }, - "ear-left-dot-03": { - "color": [ - {"color": "ffffffff", "curve": "stepped"}, {"time": 1.4667, "color": "ffffffff", "curve": 0.25, "c3": 0.75}, {"time": 2.1, "color": "ffffff00", "curve": "stepped"}, - {"time": 2.1333, "color": "ffffff00", "curve": 0.25, "c3": 0.75}, {"time": 2.4667, "color": "ffffffff"} + "@leg-front-right": { + "translate": [ + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": -1.98, "y": -24.83, "curve": 0.263, "c3": 0.629, "c4": 0.42}, + {"time": 0.1667, "x": -2.18, "y": -3.56, "curve": 0.493, "c2": 0.32, "c4": 0.83}, {"time": 0.3333, "x": -2.18, "y": -2.89, "curve": "stepped"}, + {"time": 0.4833, "x": -2.18, "y": -2.89, "curve": 0, "c2": 0.17, "c3": 0.45, "c4": 0.61}, {"time": 0.5, "x": -1.98, "y": -24.83, "curve": 0, "c2": 0.17, "c3": 0.45, "c4": 0.61}, + {"time": 0.5833, "x": -1.28, "y": 8.38, "curve": 0.345, "c2": 0.53, "c3": 0.751}, {"time": 0.6667} ] }, - "ear-left-dot-04": { - "color": [ - {"color": "ffffffff", "curve": "stepped"}, {"time": 0.35, "color": "ffffffff", "curve": 0.25, "c3": 0.75}, {"time": 0.9833, "color": "ffffff00", "curve": "stepped"}, - {"time": 1.0167, "color": "ffffff00", "curve": 0.25, "c3": 0.75}, {"time": 1.35, "color": "ffffffff"} + "tail": { + "rotate": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1167, "angle": 11.6, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "angle": -18.66, "curve": 0.313, "c3": 0.699}, + {"time": 0.4667, "angle": 16.43, "curve": 0.315, "c4": 0.8}, {"time": 0.5833, "angle": -6.67, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.6667} ] }, - "ear-left-dot-05": { - "color": [ - {"color": "ffffffff", "curve": "stepped"}, {"time": 1.45, "color": "ffffffff", "curve": 0.25, "c3": 0.75}, {"time": 2.0833, "color": "ffffff00", "curve": "stepped"}, - {"time": 2.1167, "color": "ffffff00", "curve": 0.25, "c3": 0.75}, {"time": 2.45, "color": "ffffffff"} + "leg-back-left-IK": { + "translate": [ + {"time": 0.15, "curve": 0.464, "c4": 0.7}, {"time": 0.25, "x": -43.09, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.4, "x": 34.02, "curve": "stepped"}, + {"time": 0.45, "x": 34.02, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.5833} ] }, - "ear-left-dot-06": { - "color": [ - {"color": "ffffffda", "curve": 0.323, "c2": 0.3, "c3": 0.757}, {"time": 0.5, "color": "ffffff00", "curve": "stepped"}, {"time": 0.5333, "color": "ffffff00", "curve": 0.25, "c3": 0.75}, - {"time": 0.8667, "color": "ffffffff", "curve": "stepped"}, {"time": 2.5333, "color": "ffffffff", "curve": 0.282, "c3": 0.624, "c4": 0.39}, {"time": 2.6667, "color": "ffffffda"} + "@leg-back-left": { + "translate": [ + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.1333, "x": -0.27, "y": -3.45, "curve": "stepped"}, {"time": 0.5, "x": -0.27, "y": -3.45, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.6667} ] }, - "ear-left-dot-07": { - "color": [ - {"color": "ffffff00", "curve": 0.25, "c3": 0.75}, {"time": 0.3333, "color": "ffffffff", "curve": "stepped"}, {"time": 2, "color": "ffffffff", "curve": 0.25, "c3": 0.75}, - {"time": 2.6333, "color": "ffffff00"} + "@leg-front-left": { + "translate": [ + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": -1.04, "y": -13.11, "curve": 0.263, "c3": 0.629, "c4": 0.42}, + {"time": 0.1667, "x": -1.14, "y": -2.73, "curve": 0.493, "c2": 0.32, "c4": 0.83}, {"time": 0.3333, "x": -1.16, "y": -1.14, "curve": "stepped"}, + {"time": 0.4833, "x": -1.16, "y": -1.14, "curve": 0, "c2": 0.17, "c3": 0.45, "c4": 0.61}, {"time": 0.5, "x": -1.04, "y": -13.11, "curve": 0, "c2": 0.17, "c3": 0.45, "c4": 0.61}, + {"time": 0.5833, "x": -0.69, "y": 4.65, "curve": 0.345, "c2": 0.53, "c3": 0.751}, {"time": 0.6667} ] }, - "ear-left-dot-08": { - "color": [ - {"color": "ffffffff", "curve": "stepped"}, {"time": 1.1667, "color": "ffffffff", "curve": 0.25, "c3": 0.75}, {"time": 1.8, "color": "ffffff00", "curve": "stepped"}, - {"time": 1.8333, "color": "ffffff00", "curve": 0.25, "c3": 0.75}, {"time": 2.1667, "color": "ffffffff"} + "leg-front-right-IK": { + "translate": [ + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 3.08, "curve": 0.315, "c4": 0.8}, {"time": 0.15, "x": 13.79, "curve": 0, "c2": 0.3, "c3": 0.544}, + {"time": 0.25, "x": -43.09, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.3333, "x": 26.11, "curve": "stepped"}, {"time": 0.5, "x": 26.11, "curve": 0, "c2": 0.3, "c3": 0.544}, + {"time": 0.5833} ] }, - "ear-left-dot-09": { - "color": [ - {"color": "ffffff16", "curve": 0.37, "c2": 0.63, "c3": 0.708}, {"time": 0.1, "color": "ffffff00", "curve": "stepped"}, {"time": 0.1333, "color": "ffffff00", "curve": 0.25, "c3": 0.75}, - {"time": 0.4667, "color": "ffffffff", "curve": "stepped"}, {"time": 2.1333, "color": "ffffffff", "curve": 0.243, "c3": 0.692, "c4": 0.76}, {"time": 2.6667, "color": "ffffff16"} + "@shadow": { + "scale": [ + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 1.1, "y": 1.1, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "x": 0.8, "y": 0.8, "curve": 0.315, "c4": 0.8}, + {"time": 0.5, "x": 1.1, "y": 1.1, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.6667} ] }, - "ear-left-dot-10": { - "color": [ - {"color": "ffffffff", "curve": "stepped"}, {"time": 1.5, "color": "ffffffff", "curve": 0.25, "c3": 0.75}, {"time": 2.1333, "color": "ffffff00", "curve": "stepped"}, - {"time": 2.1667, "color": "ffffff00", "curve": 0.25, "c3": 0.75}, {"time": 2.5, "color": "ffffffff"} + "@pivot-main": { + "translate": [{"time": 0.1667, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "y": 133.58, "curve": 0.315, "c4": 0.8}, {"time": 0.5}], + "scale": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "y": 0.97, "curve": 0.315, "c4": 0.8}, {"time": 0.1667, "curve": "stepped"}, {"time": 0.4167, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.5, "y": 0.97, "curve": 0.315, "c4": 0.8}, {"time": 0.5833} ] }, - "ear-left-dot-11": { - "color": [ - {"color": "ffffffcf", "curve": 0.379, "c2": 0.6, "c3": 0.724}, {"time": 0.0833, "color": "ffffffff", "curve": "stepped"}, {"time": 1.75, "color": "ffffffff", "curve": 0.25, "c3": 0.75}, - {"time": 2.3833, "color": "ffffff00", "curve": "stepped"}, {"time": 2.4167, "color": "ffffff00", "curve": 0.242, "c3": 0.667, "c4": 0.67}, {"time": 2.6667, "color": "ffffffcf"} + "body-fur-2": { + "rotate": [ + {"angle": -25.95, "curve": 0.303, "c2": 0.24, "c3": 0.674, "c4": 0.69}, {"time": 0.0833, "angle": 0.25, "curve": 0.382, "c2": 0.58, "c3": 0.731}, + {"time": 0.1333, "angle": 10.37, "curve": 0.25, "c3": 0.75}, {"time": 0.2167, "angle": -19.33, "curve": 0.25, "c3": 0.75}, {"time": 0.3833, "angle": 26.76, "curve": 0.25, "c3": 0.75}, + {"time": 0.6333, "angle": -31.42, "curve": 0.284, "c3": 0.625, "c4": 0.38}, {"time": 0.6667, "angle": 13.84} ] }, - "ear-left-dot-12": { - "color": [ - {"color": "ffffff88", "curve": 0.372, "c2": 0.49, "c3": 0.752}, {"time": 0.3333, "color": "ffffff00", "curve": "stepped"}, - {"time": 0.3667, "color": "ffffff00", "curve": 0.25, "c3": 0.75}, {"time": 0.7, "color": "ffffffff", "curve": "stepped"}, - {"time": 2.3667, "color": "ffffffff", "curve": 0.252, "c3": 0.623, "c4": 0.49}, {"time": 2.6667, "color": "ffffff88"} + "body-fur-9": { + "rotate": [ + {"angle": -10.42, "curve": 0.339, "c2": 0.35, "c3": 0.679, "c4": 0.7}, {"time": 0.0333, "angle": 0.25, "curve": 0.382, "c2": 0.58, "c3": 0.731}, {"time": 0.0833, "angle": 10.37}, + {"time": 0.1667, "angle": -19.33, "curve": 0.25, "c3": 0.75}, {"time": 0.3333, "angle": 26.76, "curve": 0.25, "c3": 0.75}, + {"time": 0.5833, "angle": -31.42, "curve": 0.25, "c3": 0.625, "c4": 0.5}, {"time": 0.6667, "angle": 6.86} ] }, - "ear-right-dot-01": { - "color": [ - {"color": "ffffff6d", "curve": 0.379, "c2": 0.53, "c3": 0.746}, {"time": 0.2833, "color": "ffffff00", "curve": "stepped"}, - {"time": 0.3167, "color": "ffffff00", "curve": 0.242, "c3": 0.667, "c4": 0.67}, {"time": 0.5667, "color": "ffffffcf", "curve": 0.379, "c2": 0.6, "c3": 0.724}, - {"time": 0.65, "color": "ffffffff", "curve": "stepped"}, {"time": 2.3167, "color": "ffffffff", "curve": 0.247, "c3": 0.631, "c4": 0.53}, {"time": 2.6667, "color": "ffffff6d"} + "body-fur-8": { + "rotate": [ + {"angle": 4.93, "curve": 0.375, "c2": 0.62, "c3": 0.716}, {"time": 0.0333, "angle": 10.37}, {"time": 0.1167, "angle": -19.33, "curve": 0.25, "c3": 0.75}, + {"time": 0.2833, "angle": 26.76, "curve": 0.25, "c3": 0.75}, {"time": 0.5333, "angle": -31.42, "curve": 0.243, "c3": 0.68, "c4": 0.71}, {"time": 0.6667, "angle": -0.91} ] }, - "ear-right-dot-02": { - "color": [ - {"color": "ffffffed", "curve": 0.3, "c2": 0.21, "c3": 0.756}, {"time": 0.55, "color": "ffffff00", "curve": "stepped"}, {"time": 0.5833, "color": "ffffff00", "curve": 0.25, "c3": 0.75}, - {"time": 0.9167, "color": "ffffffff", "curve": "stepped"}, {"time": 2.5833, "color": "ffffffff", "curve": 0.298, "c3": 0.634, "c4": 0.37}, {"time": 2.6667, "color": "ffffffed"} + "body-fur-7": { + "rotate": [ + {"angle": -5, "curve": 0.381, "c2": 0.55, "c3": 0.742}, {"time": 0.0667, "angle": 10.37, "curve": 0.25, "c3": 0.75}, {"time": 0.15, "angle": -19.33, "curve": 0.25, "c3": 0.75}, + {"time": 0.3167, "angle": 26.76, "curve": 0.25, "c3": 0.75}, {"time": 0.5667, "angle": -31.42, "curve": 0.245, "c3": 0.637, "c4": 0.56}, {"time": 0.6667, "angle": 2.91} ] }, - "ear-right-dot-03": { - "color": [ - {"color": "ffffffff", "curve": "stepped"}, {"time": 0.9833, "color": "ffffffff", "curve": 0.25, "c3": 0.75}, {"time": 1.6167, "color": "ffffff00", "curve": "stepped"}, - {"time": 1.65, "color": "ffffff00", "curve": 0.25, "c3": 0.75}, {"time": 1.9833, "color": "ffffffff"} + "body-fur-6": { + "rotate": [ + {"angle": -29.66, "curve": 0.277, "c2": 0.14, "c3": 0.667, "c4": 0.67}, {"time": 0.1, "angle": 0.25, "curve": 0.382, "c2": 0.58, "c3": 0.731}, {"time": 0.15, "angle": 10.37}, + {"time": 0.2333, "angle": -19.33, "curve": 0.25, "c3": 0.75}, {"time": 0.4, "angle": 26.76, "curve": 0.25, "c3": 0.75}, + {"time": 0.65, "angle": -31.42, "curve": 0.305, "c3": 0.64, "c4": 0.36}, {"time": 0.6667, "angle": 13.33} ] }, - "ear-right-dot-04": { - "color": [ - {"color": "ffffffff", "curve": "stepped"}, {"time": 1.5667, "color": "ffffffff", "curve": 0.25, "c3": 0.75}, {"time": 2.2, "color": "ffffff00", "curve": "stepped"}, - {"time": 2.2333, "color": "ffffff00", "curve": 0.25, "c3": 0.75}, {"time": 2.5667, "color": "ffffffff"} + "body-fur-5": { + "rotate": [ + {"angle": -16.05, "curve": 0.363, "c2": 0.44, "c3": 0.755}, {"time": 0.1, "angle": 10.37}, {"time": 0.1833, "angle": -19.33, "curve": 0.25, "c3": 0.75}, + {"time": 0.35, "angle": 26.76, "curve": 0.25, "c3": 0.75}, {"time": 0.6, "angle": -31.42, "curve": 0.258, "c3": 0.619, "c4": 0.45}, {"time": 0.6667, "angle": 6.86} ] }, - "ear-right-dot-05": { - "color": [ - {"color": "ffffffff", "curve": "stepped"}, {"time": 1.2833, "color": "ffffffff", "curve": 0.25, "c3": 0.75}, {"time": 1.9167, "color": "ffffff00", "curve": "stepped"}, - {"time": 1.95, "color": "ffffff00", "curve": 0.25, "c3": 0.75}, {"time": 2.2833, "color": "ffffffff"} + "body-fur-4": { + "rotate": [ + {"angle": -30.09, "curve": 0.352, "c2": 0.65, "c3": 0.687}, {"time": 0.0167, "angle": -31.42, "curve": 0.243, "c3": 0.655, "c4": 0.63}, + {"time": 0.1333, "angle": 0.25, "curve": 0.382, "c2": 0.58, "c3": 0.731}, {"time": 0.1833, "angle": 10.37}, {"time": 0.2667, "angle": -19.33, "curve": 0.25, "c3": 0.75}, + {"time": 0.4333, "angle": 26.76, "curve": 0.246, "c3": 0.723, "c4": 0.88}, {"time": 0.6667, "angle": 12.53} ] }, - "ear-right-dot-06": { - "color": [ - {"color": "ffffffff", "curve": "stepped"}, {"time": 0.0833, "color": "ffffffff", "curve": 0.25, "c3": 0.75}, {"time": 0.7167, "color": "ffffff00", "curve": "stepped"}, - {"time": 0.75, "color": "ffffff00", "curve": 0.25, "c3": 0.75}, {"time": 1.0833, "color": "ffffffff"} + "body-fur-3": { + "rotate": [ + {"angle": -25.98, "curve": 0.32, "c2": 0.29, "c3": 0.757}, {"time": 0.1333, "angle": 10.37, "curve": 0.25, "c3": 0.75}, {"time": 0.2167, "angle": -19.33, "curve": 0.25, "c3": 0.75}, + {"time": 0.3833, "angle": 26.76, "curve": 0.25, "c3": 0.75}, {"time": 0.6333, "angle": -31.42, "curve": 0.284, "c3": 0.625, "c4": 0.38}, {"time": 0.6667, "angle": 5.54} ] }, - "ear-right-dot-07": { - "color": [ - {"color": "ffffffff", "curve": "stepped"}, {"time": 0.0333, "color": "ffffffff", "curve": 0.25, "c3": 0.75}, {"time": 0.6667, "color": "ffffff00", "curve": "stepped"}, - {"time": 0.7, "color": "ffffff00", "curve": 0.25, "c3": 0.75}, {"time": 1.0333, "color": "ffffffff"} + "body-fur-1": { + "rotate": [ + {"angle": -10.53, "curve": 0.375, "c2": 0.5, "c3": 0.75}, {"time": 0.0833, "angle": 10.37}, {"time": 0.1667, "angle": -19.33, "curve": 0.25, "c3": 0.75}, + {"time": 0.3333, "angle": 26.76, "curve": 0.25, "c3": 0.75}, {"time": 0.5833, "angle": -31.42, "curve": 0.25, "c3": 0.625, "c4": 0.5}, {"time": 0.6667, "angle": 10.51} ] - }, - "ear-right-dot-08": { - "color": [ - {"color": "ffffff00", "curve": 0.25, "c3": 0.75}, {"time": 0.3333, "color": "ffffffff", "curve": "stepped"}, {"time": 2, "color": "ffffffff", "curve": 0.25, "c3": 0.75}, - {"time": 2.6333, "color": "ffffff00"} + } + }, + "events": [{"time": 0.15, "name": "jump"}] + }, + "2128743770": { + "bones": { + "@pivot-back": { + "rotate": [ + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "angle": 5.51, "curve": 0.315, "c4": 0.8}, {"time": 0.2, "angle": -4, "curve": 0.62, "c3": 0.536}, + {"time": 0.5, "angle": 5.83, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5833, "angle": -1.41, "curve": 0.154, "c4": 0.9}, {"time": 0.6667} + ], + "translate": [ + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.1167, "x": 13.63, "y": 1.37, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5, "y": -4.7, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.6667} ] }, - "ear-right-dot-09": { - "color": [ - {"color": "ffffffff", "curve": "stepped"}, {"time": 1.3, "color": "ffffffff", "curve": 0.25, "c3": 0.75}, {"time": 1.9333, "color": "ffffff00", "curve": "stepped"}, - {"time": 1.9667, "color": "ffffff00", "curve": 0.25, "c3": 0.75}, {"time": 2.3, "color": "ffffffff"} + "@leg-front-right": { + "translate": [ + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": -1.98, "y": -24.83, "curve": 0.263, "c3": 0.629, "c4": 0.42}, + {"time": 0.1667, "x": -2.18, "y": -3.56, "curve": 0.493, "c2": 0.32, "c4": 0.83}, {"time": 0.3333, "x": -2.18, "y": -2.89, "curve": "stepped"}, + {"time": 0.4833, "x": -2.18, "y": -2.89, "curve": 0, "c2": 0.17, "c3": 0.45, "c4": 0.61}, {"time": 0.5, "x": -1.98, "y": -24.83, "curve": 0, "c2": 0.17, "c3": 0.45, "c4": 0.61}, + {"time": 0.5833, "x": -1.28, "y": 8.38, "curve": 0.345, "c2": 0.53, "c3": 0.751}, {"time": 0.6667} ] }, - "ear-right-dot-10": { - "color": [ - {"color": "ffffffff", "curve": "stepped"}, {"time": 1.4, "color": "ffffffff", "curve": 0.25, "c3": 0.75}, {"time": 2.0333, "color": "ffffff00", "curve": "stepped"}, - {"time": 2.0667, "color": "ffffff00", "curve": 0.25, "c3": 0.75}, {"time": 2.4, "color": "ffffffff"} + "leg-front-right-IK": { + "translate": [ + {"time": 0.15, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.25, "x": 26.77, "curve": 0.315, "c4": 0.8}, {"time": 0.35, "x": -20.02, "curve": "stepped"}, + {"time": 0.5, "x": -20.02, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.5833} ] }, - "ear-right-dot-11": { - "color": [ - {"color": "fffffffa", "curve": 0.348, "c2": 0.66, "c3": 0.682}, {"time": 0.0167, "color": "ffffffff", "curve": "stepped"}, - {"time": 1.6833, "color": "ffffffff", "curve": 0.25, "c3": 0.75}, {"time": 2.3167, "color": "ffffff00", "curve": "stepped"}, - {"time": 2.35, "color": "ffffff00", "curve": 0.247, "c3": 0.729, "c4": 0.91}, {"time": 2.6667, "color": "fffffffa"} + "@leg-front-left": { + "translate": [ + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": -1.04, "y": -13.11, "curve": 0.263, "c3": 0.629, "c4": 0.42}, + {"time": 0.1667, "x": -1.14, "y": -2.73, "curve": 0.493, "c2": 0.32, "c4": 0.83}, {"time": 0.3333, "x": -1.16, "y": -1.14, "curve": "stepped"}, + {"time": 0.4833, "x": -1.16, "y": -1.14, "curve": 0, "c2": 0.17, "c3": 0.45, "c4": 0.61}, {"time": 0.5, "x": -1.04, "y": -13.11, "curve": 0, "c2": 0.17, "c3": 0.45, "c4": 0.61}, + {"time": 0.5833, "x": -0.69, "y": 4.65, "curve": 0.345, "c2": 0.53, "c3": 0.751}, {"time": 0.6667} ] }, - "ear-right-dot-12": { - "color": [ - {"color": "ffffffff", "curve": "stepped"}, {"time": 0.7167, "color": "ffffffff", "curve": 0.25, "c3": 0.75}, {"time": 1.35, "color": "ffffff00", "curve": "stepped"}, - {"time": 1.3833, "color": "ffffff00", "curve": 0.25, "c3": 0.75}, {"time": 1.7167, "color": "ffffffff"} + "leg-front-left-IK": { + "translate": [ + {"time": 0.15, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.25, "x": 26.77, "curve": 0.315, "c4": 0.8}, {"time": 0.35, "x": -20.02, "curve": "stepped"}, + {"time": 0.5, "x": -20.02, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.5833} ] }, - "ear-right-dot-13": { - "color": [ - {"color": "ffffff00", "curve": 0.25, "c3": 0.75}, {"time": 0.3333, "color": "ffffffff", "curve": "stepped"}, {"time": 2, "color": "ffffffff", "curve": 0.25, "c3": 0.75}, - {"time": 2.6333, "color": "ffffff00"} + "@leg-back-left": { + "translate": [ + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.1333, "x": -0.27, "y": -3.45, "curve": "stepped"}, {"time": 0.5, "x": -0.27, "y": -3.45, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.6667} ] }, - "ear-right-dot-14": { - "color": [ - {"color": "ffffffff", "curve": "stepped"}, {"time": 0.2, "color": "ffffffff", "curve": 0.25, "c3": 0.75}, {"time": 0.8333, "color": "ffffff00", "curve": "stepped"}, - {"time": 0.8667, "color": "ffffff00", "curve": 0.25, "c3": 0.75}, {"time": 1.2, "color": "ffffffff"} + "leg-back-left-IK": { + "translate": [ + {"time": 0.15, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.25, "x": 26.77, "curve": "stepped"}, {"time": 0.3, "x": 26.77, "curve": 0.315, "c4": 0.8}, + {"time": 0.4167, "x": -20.02, "curve": "stepped"}, {"time": 0.5, "x": -20.02, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.5833} ] }, - "ear-right-dot-15": { - "color": [ - {"color": "ffffffff", "curve": "stepped"}, {"time": 0.6, "color": "ffffffff", "curve": 0.25, "c3": 0.75}, {"time": 1.2333, "color": "ffffff00", "curve": "stepped"}, - {"time": 1.2667, "color": "ffffff00", "curve": 0.25, "c3": 0.75}, {"time": 1.6, "color": "ffffffff"} + "@pivot-main": { + "translate": [{"time": 0.1667, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "y": 133.58, "curve": 0.315, "c4": 0.8}, {"time": 0.5}], + "scale": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "y": 0.97, "curve": 0.315, "c4": 0.8}, {"time": 0.1667, "curve": "stepped"}, {"time": 0.4167, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.5, "y": 0.97, "curve": 0.315, "c4": 0.8}, {"time": 0.5833} ] }, - "ear-right-dot-16": { - "color": [ - {"color": "ffffffff", "curve": "stepped"}, {"time": 0.4, "color": "ffffffff", "curve": 0.25, "c3": 0.75}, {"time": 1.0333, "color": "ffffff00", "curve": "stepped"}, - {"time": 1.0667, "color": "ffffff00", "curve": 0.25, "c3": 0.75}, {"time": 1.4, "color": "ffffffff"} + "tail": { + "rotate": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1167, "angle": 11.6, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "angle": -18.66, "curve": 0.313, "c3": 0.699}, + {"time": 0.4667, "angle": 16.43, "curve": 0.315, "c4": 0.8}, {"time": 0.5833, "angle": -6.67, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.6667} ] }, - "ear-right-dot-17": { - "color": [ - {"color": "ffffff24", "curve": 0.376, "c2": 0.61, "c3": 0.718}, {"time": 0.1333, "color": "ffffff00", "curve": "stepped"}, - {"time": 0.1667, "color": "ffffff00", "curve": 0.25, "c3": 0.75}, {"time": 0.5, "color": "ffffffff", "curve": "stepped"}, - {"time": 2.1667, "color": "ffffffff", "curve": 0.243, "c3": 0.677, "c4": 0.7}, {"time": 2.6667, "color": "ffffff24"} + "@shadow": { + "scale": [ + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 1.1, "y": 1.1, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "x": 0.8, "y": 0.8, "curve": 0.315, "c4": 0.8}, + {"time": 0.5, "x": 1.1, "y": 1.1, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.6667} ] }, - "ear-right-dot-18": { - "color": [ - {"color": "ffffffff", "curve": "stepped"}, {"time": 1.2833, "color": "ffffffff", "curve": 0.25, "c3": 0.75}, {"time": 1.9167, "color": "ffffff00", "curve": "stepped"}, - {"time": 1.95, "color": "ffffff00", "curve": 0.25, "c3": 0.75}, {"time": 2.2833, "color": "ffffffff"} + "body-fur-2": { + "rotate": [ + {"angle": 14.28, "curve": 0.303, "c2": 0.24, "c3": 0.674, "c4": 0.69}, {"time": 0.0833, "angle": -8.1, "curve": 0.382, "c2": 0.58, "c3": 0.731}, {"time": 0.1333, "angle": -16.75}, + {"time": 0.2167, "angle": 6.13, "curve": 0.25, "c3": 0.75}, {"time": 0.3833, "angle": -32.74, "curve": 0.25, "c3": 0.75}, + {"time": 0.6333, "angle": 18.96, "curve": 0.284, "c3": 0.625, "c4": 0.38}, {"time": 0.6667, "angle": 13.84} ] }, - "ear-right-dot-19": { - "color": [ - {"color": "ffffff76", "curve": 0.377, "c2": 0.51, "c3": 0.748}, {"time": 0.3, "color": "ffffff00", "curve": "stepped"}, {"time": 0.3333, "color": "ffffff00", "curve": 0.25, "c3": 0.75}, - {"time": 0.6667, "color": "ffffffff", "curve": "stepped"}, {"time": 2.3333, "color": "ffffffff", "curve": 0.248, "c3": 0.628, "c4": 0.51}, {"time": 2.6667, "color": "ffffff76"} + "body-fur-9": { + "rotate": [ + {"angle": 1.01, "curve": 0.339, "c2": 0.35, "c3": 0.679, "c4": 0.7}, {"time": 0.0333, "angle": -8.1, "curve": 0.382, "c2": 0.58, "c3": 0.731}, {"time": 0.0833, "angle": -16.75}, + {"time": 0.1667, "angle": 6.13, "curve": 0.25, "c3": 0.75}, {"time": 0.3333, "angle": -32.74, "curve": 0.25, "c3": 0.75}, + {"time": 0.5833, "angle": 18.96, "curve": 0.25, "c3": 0.625, "c4": 0.5}, {"time": 0.6667, "angle": 6.86} ] }, - "ear-right-dot-20": { - "color": [ - {"color": "ffffffff", "curve": "stepped"}, {"time": 0.25, "color": "ffffffff", "curve": 0.25, "c3": 0.75}, {"time": 0.8833, "color": "ffffff00", "curve": "stepped"}, - {"time": 0.9167, "color": "ffffff00", "curve": 0.25, "c3": 0.75}, {"time": 1.25, "color": "ffffffff"} - ] - } - }, - "bones": { - "ear-left-bubble-02": { + "body-fur-8": { "rotate": [ - {"angle": 22.65, "curve": 0.381, "c2": 0.59, "c3": 0.73}, {"time": 0.3833, "angle": 35.68, "curve": 0.308, "c3": 0.643, "c4": 0.35}, - {"time": 0.5, "angle": 33.83, "curve": 0.285, "c2": 0.15, "c3": 0.754}, {"time": 1.7167, "angle": -21.58, "curve": 0.282, "c3": 0.624, "c4": 0.39}, - {"time": 2, "angle": -13.53, "curve": 0.315, "c2": 0.27, "c3": 0.653, "c4": 0.62}, {"time": 2.2167, "angle": -2.35, "curve": 0.331, "c2": 0.33, "c3": 0.682, "c4": 0.71}, - {"time": 2.6667, "angle": 22.65} - ], - "translate": [ - {"x": -10.33, "y": -0.67, "curve": 0.364, "c2": 0.64, "c3": 0.701}, {"time": 0.1667, "x": -11, "y": -0.72, "curve": 0.276, "c3": 0.621, "c4": 0.4}, - {"time": 0.5, "x": -8.97, "y": -0.59, "curve": 0.333, "c2": 0.33, "c3": 0.758}, {"time": 1.5, "curve": 0.26, "c3": 0.618, "c4": 0.44}, - {"time": 2, "x": -3.69, "y": -0.24, "curve": 0.343, "c2": 0.37, "c3": 0.715, "c4": 0.83}, {"time": 2.6667, "x": -10.33, "y": -0.67} + {"angle": -12.1, "curve": 0.375, "c2": 0.62, "c3": 0.716}, {"time": 0.0333, "angle": -16.75}, {"time": 0.1167, "angle": 6.13, "curve": 0.25, "c3": 0.75}, + {"time": 0.2833, "angle": -32.74, "curve": 0.25, "c3": 0.75}, {"time": 0.5333, "angle": 18.96, "curve": 0.243, "c3": 0.68, "c4": 0.71}, {"time": 0.6667, "angle": -0.91} ] }, - "ear-left-bubble-03": { - "translate": [ - {"x": -7.97, "y": -0.52, "curve": 0.356, "c2": 0.41, "c3": 0.711, "c4": 0.82}, {"time": 0.5, "x": -20.65, "y": -1.35, "curve": 0.364, "c2": 0.64, "c3": 0.701}, - {"time": 0.6667, "x": -22.49, "y": -1.47, "curve": 0.25, "c3": 0.75}, {"time": 2, "x": 6.85, "y": 0.45, "curve": 0.25, "c3": 0.625, "c4": 0.5}, {"time": 2.6667, "x": -7.97, "y": -0.52} + "body-fur-7": { + "rotate": [ + {"angle": -3.61, "curve": 0.381, "c2": 0.55, "c3": 0.742}, {"time": 0.0667, "angle": -16.75, "curve": 0.25, "c3": 0.75}, {"time": 0.15, "angle": 6.13, "curve": 0.25, "c3": 0.75}, + {"time": 0.3167, "angle": -32.74, "curve": 0.25, "c3": 0.75}, {"time": 0.5667, "angle": 18.96, "curve": 0.245, "c3": 0.637, "c4": 0.56}, {"time": 0.6667, "angle": 2.91} ] }, - "ear-left-bubble-04": { + "body-fur-6": { "rotate": [ - {"angle": 20.89, "curve": 0.276, "c2": 0.11, "c3": 0.632, "c4": 0.53}, {"time": 0.5, "angle": -3.68, "curve": 0.368, "c2": 0.47, "c3": 0.753}, - {"time": 1.25, "angle": -39.49, "curve": 0.247, "c3": 0.632, "c4": 0.53}, {"time": 2, "angle": -3.61, "curve": 0.338, "c2": 0.35, "c3": 0.674, "c4": 0.69}, - {"time": 2.15, "angle": 5.18, "curve": 0.382, "c2": 0.57, "c3": 0.734}, {"time": 2.5833, "angle": 21.99, "curve": 0.314, "c3": 0.649, "c4": 0.35}, {"time": 2.6667, "angle": 20.89} - ], - "translate": [ - {"x": -1.2, "y": -0.08, "curve": 0.299, "c2": 0.22, "c3": 0.654, "c4": 0.62}, {"time": 0.5, "x": -6.5, "y": -0.42, "curve": 0.379, "c2": 0.52, "c3": 0.747}, - {"time": 1.1, "x": -11.49, "y": -0.75, "curve": 0.243, "c3": 0.65, "c4": 0.61}, {"time": 2, "x": -3.14, "y": -0.2, "curve": 0.382, "c2": 0.57, "c3": 0.734}, - {"time": 2.4333, "curve": 0.289, "c3": 0.628, "c4": 0.38}, {"time": 2.6667, "x": -1.2, "y": -0.08} - ] - }, - "ear-right-bubble-02": { - "rotate": [ - {"angle": 1.22, "curve": 0.318, "c2": 0.29, "c3": 0.659, "c4": 0.64}, {"time": 0.3, "angle": 8.04, "curve": 0.375, "c2": 0.5, "c3": 0.75}, - {"time": 0.9667, "angle": 19.86, "curve": 0.25, "c3": 0.625, "c4": 0.5}, {"time": 1.6333, "angle": 8.02, "curve": 0.336, "c2": 0.34, "c3": 0.671, "c4": 0.68}, - {"time": 1.8, "angle": 4.16, "curve": 0.382, "c2": 0.56, "c3": 0.74}, {"time": 2.3, "angle": -3.78, "curve": 0.272, "c3": 0.619, "c4": 0.41}, {"time": 2.6667, "angle": 1.22} - ], - "translate": [ - {"x": 3.57, "y": -0.19, "curve": 0.331, "c2": 0.33, "c3": 0.672, "c4": 0.68}, {"time": 0.3, "x": -4.24, "y": 0.22, "curve": 0.382, "c2": 0.56, "c3": 0.74}, - {"time": 0.8, "x": -13.12, "y": 0.69, "curve": 0.244, "c3": 0.641, "c4": 0.57}, {"time": 1.6333, "x": 4.46, "y": -0.23, "curve": 0.382, "c2": 0.56, "c3": 0.74}, - {"time": 2.1333, "x": 13.34, "y": -0.7, "curve": 0.258, "c3": 0.619, "c4": 0.45}, {"time": 2.6667, "x": 3.57, "y": -0.19} - ] - }, - "ear-right-bubble-03": { - "translate": [ - {"x": -18.02, "y": 0.95, "curve": 0.377, "c2": 0.61, "c3": 0.72}, {"time": 0.3, "x": -24.28, "y": 1.28, "curve": 0.25, "c3": 0.75}, - {"time": 1.6333, "x": 15.53, "y": -0.82, "curve": 0.242, "c3": 0.673, "c4": 0.69}, {"time": 2.6667, "x": -18.02, "y": 0.95} + {"angle": 17.45, "curve": 0.277, "c2": 0.14, "c3": 0.667, "c4": 0.67}, {"time": 0.1, "angle": -8.1, "curve": 0.382, "c2": 0.58, "c3": 0.731}, + {"time": 0.15, "angle": -16.75, "curve": 0.25, "c3": 0.75}, {"time": 0.2333, "angle": 6.13, "curve": 0.25, "c3": 0.75}, {"time": 0.4, "angle": -32.74, "curve": 0.25, "c3": 0.75}, + {"time": 0.65, "angle": 18.96, "curve": 0.305, "c3": 0.64, "c4": 0.36}, {"time": 0.6667, "angle": 13.33} ] }, - "ear-right-bubble-04": { + "body-fur-5": { "rotate": [ - {"angle": -8.47, "curve": 0.36, "c2": 0.64, "c3": 0.695}, {"time": 0.1333, "angle": -9.72, "curve": 0.299, "c3": 0.636, "c4": 0.36}, - {"time": 0.3, "angle": -7.78, "curve": 0.298, "c2": 0.2, "c3": 0.756}, {"time": 1.4667, "angle": 21.21, "curve": 0.299, "c3": 0.636, "c4": 0.36}, - {"time": 1.6333, "angle": 19.4, "curve": 0.298, "c2": 0.2, "c3": 0.641, "c4": 0.57}, {"time": 1.9667, "angle": 10.82, "curve": 0.346, "c2": 0.38, "c3": 0.722, "c4": 0.86}, - {"time": 2.6667, "angle": -8.47} - ], - "translate": [ - {"x": -16.1, "y": 0.65, "curve": 0.303, "c2": 0.22, "c3": 0.645, "c4": 0.59}, {"time": 0.3, "x": -8.79, "y": -0.35, "curve": 0.359, "c2": 0.43, "c3": 0.756}, - {"time": 1.1333, "x": 10.15, "y": -2.95, "curve": 0.26, "c3": 0.618, "c4": 0.44}, {"time": 1.6333, "x": 0.57, "y": -1.63, "curve": 0.359, "c2": 0.43, "c3": 0.756}, - {"time": 2.4667, "x": -18.37, "y": 0.97, "curve": 0.294, "c3": 0.631, "c4": 0.37}, {"time": 2.6667, "x": -16.1, "y": 0.65} + {"angle": 5.82, "curve": 0.363, "c2": 0.44, "c3": 0.755}, {"time": 0.1, "angle": -16.75, "curve": 0.25, "c3": 0.75}, {"time": 0.1833, "angle": 6.13, "curve": 0.25, "c3": 0.75}, + {"time": 0.35, "angle": -32.74, "curve": 0.25, "c3": 0.75}, {"time": 0.6, "angle": 18.96, "curve": 0.258, "c3": 0.619, "c4": 0.45}, {"time": 0.6667, "angle": 6.86} ] }, - "ear-right-bubble-06": { + "body-fur-4": { "rotate": [ - {"angle": 8.02, "curve": 0.336, "c2": 0.34, "c3": 0.671, "c4": 0.68}, {"time": 0.1667, "angle": 4.16, "curve": 0.382, "c2": 0.56, "c3": 0.74}, - {"time": 0.6667, "angle": -3.78, "curve": 0.25, "c3": 0.75}, {"time": 2, "angle": 19.86, "curve": 0.25, "c3": 0.625, "c4": 0.5}, {"time": 2.6667, "angle": 8.02} - ], - "translate": [ - {"x": 4.46, "y": -0.23, "curve": 0.382, "c2": 0.56, "c3": 0.74}, {"time": 0.5, "x": 13.34, "y": -0.7, "curve": 0.25, "c3": 0.75}, - {"time": 1.8333, "x": -13.12, "y": 0.69, "curve": 0.244, "c3": 0.641, "c4": 0.57}, {"time": 2.6667, "x": 4.46, "y": -0.23} + {"angle": 17.78, "curve": 0.352, "c2": 0.65, "c3": 0.687}, {"time": 0.0167, "angle": 18.96, "curve": 0.243, "c3": 0.655, "c4": 0.63}, + {"time": 0.1333, "angle": -8.1, "curve": 0.382, "c2": 0.58, "c3": 0.731}, {"time": 0.1833, "angle": -16.75}, {"time": 0.2667, "angle": 6.13, "curve": 0.25, "c3": 0.75}, + {"time": 0.4333, "angle": -32.74, "curve": 0.246, "c3": 0.723, "c4": 0.88}, {"time": 0.6667, "angle": 12.53} ] }, - "ear-right-bubble-07": { - "translate": [{"x": 15.53, "y": -0.82, "curve": 0.25, "c3": 0.75}, {"time": 1.3333, "x": -24.28, "y": 1.28, "curve": 0.25, "c3": 0.75}, {"time": 2.6667, "x": 15.53, "y": -0.82}] - }, - "ear-right-bubble-08": { + "body-fur-3": { "rotate": [ - {"angle": 19.4, "curve": 0.298, "c2": 0.2, "c3": 0.641, "c4": 0.57}, {"time": 0.3333, "angle": 10.82, "curve": 0.359, "c2": 0.43, "c3": 0.756}, - {"time": 1.1667, "angle": -9.72, "curve": 0.25, "c3": 0.75}, {"time": 2.5, "angle": 21.21, "curve": 0.299, "c3": 0.636, "c4": 0.36}, {"time": 2.6667, "angle": 19.4} - ], - "translate": [ - {"x": 0.57, "y": -1.63, "curve": 0.359, "c2": 0.43, "c3": 0.756}, {"time": 0.8333, "x": -18.37, "y": 0.97, "curve": 0.25, "c3": 0.75}, - {"time": 2.1667, "x": 10.15, "y": -2.95, "curve": 0.26, "c3": 0.618, "c4": 0.44}, {"time": 2.6667, "x": 0.57, "y": -1.63} + {"angle": 14.31, "curve": 0.32, "c2": 0.29, "c3": 0.757}, {"time": 0.1333, "angle": -16.75}, {"time": 0.2167, "angle": 6.13, "curve": 0.25, "c3": 0.75}, + {"time": 0.3833, "angle": -32.74, "curve": 0.25, "c3": 0.75}, {"time": 0.6333, "angle": 18.96, "curve": 0.284, "c3": 0.625, "c4": 0.38}, {"time": 0.6667, "angle": 5.54} ] }, - "ear-left-bubble-06": { + "body-fur-1": { "rotate": [ - {"angle": -16.25, "curve": 0.37, "c2": 0.63, "c3": 0.709}, {"time": 0.2167, "angle": -21.58, "curve": 0.282, "c3": 0.624, "c4": 0.39}, - {"time": 0.5, "angle": -13.53, "curve": 0.315, "c2": 0.27, "c3": 0.653, "c4": 0.62}, {"time": 0.7167, "angle": -2.35, "curve": 0.359, "c2": 0.43, "c3": 0.756}, - {"time": 1.55, "angle": 35.68, "curve": 0.243, "c3": 0.69, "c4": 0.75}, {"time": 2.6667, "angle": -16.25} - ], - "translate": [ - {"curve": 0.26, "c3": 0.618, "c4": 0.44}, {"time": 0.5, "x": -3.69, "y": -0.24, "curve": 0.359, "c2": 0.43, "c3": 0.756}, - {"time": 1.3333, "x": -11, "y": -0.72, "curve": 0.25, "c3": 0.75}, {"time": 2.6667} + {"angle": 1.1, "curve": 0.375, "c2": 0.5, "c3": 0.75}, {"time": 0.0833, "angle": -16.75}, {"time": 0.1667, "angle": 6.13, "curve": 0.25, "c3": 0.75}, + {"time": 0.3333, "angle": -32.74, "curve": 0.25, "c3": 0.75}, {"time": 0.5833, "angle": 18.96, "curve": 0.25, "c3": 0.625, "c4": 0.5}, {"time": 0.6667, "angle": 10.51} ] - }, - "ear-left-bubble-07": { - "translate": [ - {"x": -3.01, "y": -0.2, "curve": 0.382, "c2": 0.56, "c3": 0.74}, {"time": 0.5, "x": 6.85, "y": 0.45, "curve": 0.25, "c3": 0.75}, - {"time": 1.8333, "x": -22.49, "y": -1.47, "curve": 0.244, "c3": 0.641, "c4": 0.57}, {"time": 2.6667, "x": -3.01, "y": -0.2} + } + }, + "events": [{"time": 0.15, "name": "jump"}] + }, + "2770379418": { + "slots": { + "eyes": {"attachment": [{"time": 0.0833, "name": "eyes-shut"}, {"time": 0.1667, "name": "eyes-angry"}, {"time": 0.9833, "name": "eyes-shut"}, {"time": 1.0833, "name": "eyes"}]}, + "leg-front-left": { + "attachment": [ + {"time": 0.5, "name": "mystic-leg-front-left-stretch"}, {"time": 0.6333, "name": "mystic-leg-front-left"}, {"time": 0.7667, "name": "mystic-leg-front-left-stretch"}, + {"time": 0.9, "name": "mystic-leg-front-left"} ] }, - "ear-left-bubble-08": { + "mouth": {"attachment": [{"time": 0.0833, "name": "mouth-bite"}, {"time": 0.3667, "name": "mouth-open"}, {"time": 0.9833, "name": "mouth-bite"}, {"time": 1.0833, "name": "mouth"}]} + }, + "bones": { + "@pivot-back": { "rotate": [ - {"angle": -32.32, "curve": 0.301, "c2": 0.23, "c3": 0.656, "c4": 0.63}, {"time": 0.5, "angle": -3.61, "curve": 0.338, "c2": 0.35, "c3": 0.674, "c4": 0.69}, - {"time": 0.65, "angle": 5.18, "curve": 0.382, "c2": 0.57, "c3": 0.734}, {"time": 1.0833, "angle": 21.99, "curve": 0.25, "c3": 0.75}, - {"time": 2.4167, "angle": -39.49, "curve": 0.286, "c3": 0.626, "c4": 0.38}, {"time": 2.6667, "angle": -32.32} + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.15, "angle": 3.67, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.3333, "angle": -14.29, "curve": 0.779, "c4": 0.3}, + {"time": 0.3667, "angle": 15.82}, {"time": 0.4667, "angle": 16.67, "curve": 0.779, "c4": 0.3}, {"time": 0.5, "angle": -19.96}, {"time": 0.6, "angle": -21.17, "curve": 0.779, "c4": 0.3}, + {"time": 0.6333, "angle": 15.82}, {"time": 0.7333, "angle": 16.67, "curve": 0.779, "c4": 0.3}, {"time": 0.7667, "angle": -19.96}, + {"time": 0.8667, "angle": -21.17, "curve": 0.779, "c4": 0.3}, {"time": 0.9833, "angle": 4.4, "curve": 0, "c2": 0.1, "c3": 0.85}, + {"time": 1.05, "angle": 6.79, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1.25} ], "translate": [ - {"x": -8.69, "y": -0.57, "curve": 0.321, "c2": 0.29, "c3": 0.675, "c4": 0.69}, {"time": 0.5, "x": -3.14, "y": -0.2, "curve": 0.382, "c2": 0.57, "c3": 0.734}, - {"time": 0.9333, "curve": 0.25, "c3": 0.75}, {"time": 2.2667, "x": -11.49, "y": -0.75, "curve": 0.269, "c3": 0.618, "c4": 0.42}, {"time": 2.6667, "x": -8.69, "y": -0.57} + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.2167, "x": 8.02, "curve": 0, "c2": 0.4, "c3": 0.383}, {"time": 0.3333, "x": -54.3, "y": 61.69, "curve": 0.779, "c4": 0.3}, + {"time": 0.3667, "x": -60.41, "y": 130.13}, {"time": 0.4667, "x": -60.41, "y": 130.01, "curve": 0.779, "c4": 0.3}, {"time": 0.5, "x": -58.41, "y": 9.6}, + {"time": 0.6, "x": -58.41, "y": 9.9, "curve": 0.779, "c4": 0.3}, {"time": 0.6333, "x": -60.41, "y": 130.13}, {"time": 0.7333, "x": -60.41, "y": 130.01, "curve": 0.779, "c4": 0.3}, + {"time": 0.7667, "x": -58.41, "y": 9.6}, {"time": 0.8667, "x": -58.41, "y": 9.9, "curve": 0.779, "c4": 0.3}, {"time": 0.9833} ] }, - "ear-left-dot-06": { + "@leg-front-right": { "translate": [ - {"x": 112.03, "y": -59.2, "curve": 0.374, "c2": 0.62, "c3": 0.714}, {"time": 0.5, "x": 125.74, "y": -65, "curve": 0.25, "c3": 0.75}, - {"time": 0.5333, "x": 10.6, "y": -16.3, "curve": 0.243, "c3": 0.682, "c4": 0.72}, {"time": 2.6667, "x": 112.03, "y": -59.2} + {"curve": 0, "c2": 0.17, "c3": 0.521, "c4": 0.69}, {"time": 0.15, "x": -16.23, "y": -19.18, "curve": 0.377, "c2": 0.59, "c3": 0.739}, {"time": 0.2167, "x": -18.54, "y": -11.57}, + {"time": 0.25, "x": -22.65, "y": 8.05, "curve": 0, "c2": 0.4, "c3": 0.383}, {"time": 0.3333, "x": 29.92, "y": -4.24, "curve": 0.779, "c4": 0.4}, {"time": 0.3667, "x": 22.95, "y": 2.68}, + {"time": 0.4667, "x": 29.92, "y": -4.24, "curve": 0.779, "c4": 0.4}, {"time": 0.5, "x": 22.95, "y": 2.68}, {"time": 0.6, "x": 29.92, "y": -4.24, "curve": 0.779, "c4": 0.4}, + {"time": 0.6333, "x": 22.95, "y": 2.68}, {"time": 0.7333, "x": 29.92, "y": -4.24, "curve": 0.779, "c4": 0.4}, {"time": 0.7667, "x": 22.95, "y": 2.68, "curve": "stepped"}, + {"time": 0.9167, "x": 22.95, "y": 2.68, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.95, "curve": 0.464, "c4": 0.7}, {"time": 0.9833, "x": -1.45, "y": -24.11}, + {"time": 1.05, "x": -3.72, "y": -46.34, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1.0833} ], "scale": [ - {"x": 1.172, "y": 0.965, "curve": 0.375, "c2": 0.62, "c3": 0.716}, {"time": 0.0333, "x": 1.187, "y": 0.949, "curve": 0.25, "c3": 0.75}, - {"time": 0.2, "x": 1.004, "y": 1.019, "curve": 0.25, "c3": 0.75}, {"time": 0.5, "curve": "stepped"}, {"time": 0.5333, "curve": 0.25, "c3": 0.75}, - {"time": 0.7, "x": 1.159, "y": 0.726, "curve": 0.25, "c3": 0.75}, {"time": 0.8667, "x": 0.879, "y": 1.128, "curve": 0.25, "c3": 0.75}, - {"time": 1.0333, "x": 1.23, "y": 0.878, "curve": 0.25, "c3": 0.75}, {"time": 1.2, "x": 1.057, "y": 1.017, "curve": 0.25, "c3": 0.75}, - {"time": 1.3667, "x": 1.209, "y": 0.882, "curve": 0.25, "c3": 0.75}, {"time": 1.5333, "x": 0.956, "y": 1.174, "curve": 0.25, "c3": 0.75}, - {"time": 1.7, "x": 1.285, "y": 1.001, "curve": 0.25, "c3": 0.75}, {"time": 1.8667, "x": 0.97, "y": 1.08, "curve": 0.25, "c3": 0.75}, - {"time": 2.0333, "x": 0.809, "y": 1.228, "curve": 0.25, "c3": 0.75}, {"time": 2.2, "x": 0.996, "y": 0.995, "curve": 0.25, "c3": 0.75}, - {"time": 2.3667, "x": 1.258, "y": 0.899, "curve": 0.25, "c3": 0.75}, {"time": 2.5333, "x": 1.069, "y": 1.069, "curve": 0.243, "c3": 0.68, "c4": 0.71}, - {"time": 2.6667, "x": 1.172, "y": 0.965} + {"time": 0.2167}, {"time": 0.25, "x": 1.5}, {"time": 0.3333, "curve": 0.779, "c4": 0.4}, {"time": 0.3667, "x": 1.5}, {"time": 0.4667, "x": 1.51, "curve": 0.157, "c2": 0.33, "c3": 0.727}, + {"time": 0.5, "curve": "stepped"}, {"time": 0.6, "curve": 0.779, "c4": 0.4}, {"time": 0.6333, "x": 1.5}, {"time": 0.7333, "x": 1.51, "curve": 0.157, "c2": 0.33, "c3": 0.727}, + {"time": 0.7667} ] }, - "ear-left-dot-02": { + "@leg-front-left": { "translate": [ - {"x": 165.68, "y": -37.44, "curve": 0.369, "c2": 0.63, "c3": 0.707}, {"time": 0.4, "x": 176.3, "y": -40.93, "curve": 0.25, "c3": 0.75}, - {"time": 0.4333, "x": 50.64, "y": 0.28, "curve": 0.244, "c3": 0.694, "c4": 0.77}, {"time": 2.6667, "x": 165.68, "y": -37.44} + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.2167, "x": -6.84, "y": -9.77, "curve": "stepped"}, {"time": 0.9833, "x": -6.84, "y": -9.77, "curve": 0, "c2": 0.1, "c3": 0.85}, + {"time": 1.05, "x": -6.29, "y": -18.69, "curve": 0, "c2": 0.23, "c3": 0.365, "c4": 0.58}, {"time": 1.0833, "x": -3.64, "y": -2.46, "curve": 0.177, "c2": 0.35, "c3": 0.731}, + {"time": 1.25} ], "scale": [ - {"x": 1.12, "y": 0.975, "curve": 0.363, "c2": 0.44, "c3": 0.755}, {"time": 0.1, "x": 1.004, "y": 1.019, "curve": 0.25, "c3": 0.75}, {"time": 0.4, "curve": "stepped"}, - {"time": 0.4333, "curve": 0.25, "c3": 0.75}, {"time": 0.6, "x": 1.159, "y": 0.726, "curve": 0.25, "c3": 0.75}, {"time": 0.7667, "x": 0.879, "y": 1.128, "curve": 0.25, "c3": 0.75}, - {"time": 0.9333, "x": 1.23, "y": 0.878, "curve": 0.25, "c3": 0.75}, {"time": 1.1, "x": 1.057, "y": 1.017, "curve": 0.25, "c3": 0.75}, - {"time": 1.2667, "x": 1.209, "y": 0.882, "curve": 0.25, "c3": 0.75}, {"time": 1.4333, "x": 0.956, "y": 1.174, "curve": 0.25, "c3": 0.75}, - {"time": 1.6, "x": 1.285, "y": 1.001, "curve": 0.25, "c3": 0.75}, {"time": 1.7667, "x": 0.97, "y": 1.08, "curve": 0.25, "c3": 0.75}, - {"time": 1.9333, "x": 0.809, "y": 1.228, "curve": 0.25, "c3": 0.75}, {"time": 2.1, "x": 0.996, "y": 0.995, "curve": 0.25, "c3": 0.75}, - {"time": 2.2667, "x": 1.258, "y": 0.899, "curve": 0.25, "c3": 0.75}, {"time": 2.4333, "x": 1.069, "y": 1.069, "curve": 0.25, "c3": 0.75}, - {"time": 2.6, "x": 1.187, "y": 0.949, "curve": 0.258, "c3": 0.619, "c4": 0.45}, {"time": 2.6667, "x": 1.12, "y": 0.975} + {"time": 0.4667, "curve": 0.779, "c4": 0.4}, {"time": 0.5, "x": 1.5}, {"time": 0.6, "x": 1.51, "curve": 0.157, "c2": 0.33, "c3": 0.727}, {"time": 0.6333, "curve": "stepped"}, + {"time": 0.7333, "curve": 0.779, "c4": 0.4}, {"time": 0.7667, "x": 1.5}, {"time": 0.8667, "x": 1.51, "curve": 0.157, "c2": 0.33, "c3": 0.727}, {"time": 0.9833} ] }, - "ear-right-dot-05": { + "@leg-back-left": { "translate": [ - {"x": 42.24, "y": -24.98, "curve": 0.339, "c2": 0.35, "c3": 0.758}, {"time": 1.9167, "x": 174.04, "y": -19.08, "curve": 0.25, "c3": 0.75}, - {"time": 1.95, "x": 7.51, "y": -26.54, "curve": 0.273, "c3": 0.619, "c4": 0.41}, {"time": 2.6667, "x": 42.24, "y": -24.98} - ], - "scale": [ - {"x": 1.094, "y": 0.984, "curve": 0.345, "c2": 0.37, "c3": 0.757}, {"time": 0.1167, "x": 1.209, "y": 0.882, "curve": 0.25, "c3": 0.75}, - {"time": 0.2833, "x": 0.956, "y": 1.174, "curve": 0.25, "c3": 0.75}, {"time": 0.45, "x": 1.285, "y": 1.001, "curve": 0.25, "c3": 0.75}, - {"time": 0.6167, "x": 0.97, "y": 1.08, "curve": 0.25, "c3": 0.75}, {"time": 0.7833, "x": 0.809, "y": 1.228, "curve": 0.25, "c3": 0.75}, - {"time": 0.95, "x": 0.996, "y": 0.995, "curve": 0.25, "c3": 0.75}, {"time": 1.1167, "x": 1.258, "y": 0.899, "curve": 0.25, "c3": 0.75}, - {"time": 1.2833, "x": 1.069, "y": 1.069, "curve": 0.25, "c3": 0.75}, {"time": 1.45, "x": 1.187, "y": 0.949, "curve": 0.25, "c3": 0.75}, - {"time": 1.6167, "x": 1.004, "y": 1.019, "curve": 0.25, "c3": 0.75}, {"time": 1.9167, "curve": "stepped"}, {"time": 1.95, "curve": 0.25, "c3": 0.75}, - {"time": 2.1167, "x": 1.159, "y": 0.726, "curve": 0.25, "c3": 0.75}, {"time": 2.2833, "x": 0.879, "y": 1.128, "curve": 0.25, "c3": 0.75}, - {"time": 2.45, "x": 1.23, "y": 0.878, "curve": 0.25, "c3": 0.75}, {"time": 2.6167, "x": 1.057, "y": 1.017, "curve": 0.269, "c3": 0.618, "c4": 0.42}, - {"time": 2.6667, "x": 1.094, "y": 0.984} + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.2167, "x": -0.11, "y": -2.73, "curve": "stepped"}, {"time": 0.9833, "x": -0.11, "y": -2.73, "curve": 0, "c2": 0.1, "c3": 0.85}, + {"time": 1.05, "x": -0.46, "y": -6.19, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1.25} ] }, - "ear-left-dot-04": { + "@pivot-main": { "translate": [ - {"x": 126.24, "y": -42.12, "curve": 0.382, "c2": 0.56, "c3": 0.74}, {"time": 0.9833, "x": 179.1, "y": -55.16, "curve": 0.25, "c3": 0.75}, - {"time": 1.0167, "x": 20.73, "y": -16.1, "curve": 0.244, "c3": 0.641, "c4": 0.57}, {"time": 2.6667, "x": 126.24, "y": -42.12} + {"time": 0.15, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "x": -73.35, "y": 43, "curve": "stepped"}, {"time": 0.8667, "x": -73.35, "y": 43, "curve": 0.315, "c4": 0.8}, + {"time": 0.9833, "x": -146.44, "curve": "stepped"}, {"time": 1.05, "x": -146.44, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1.15, "x": -45.61, "y": 50.15, "curve": 0.315, "c4": 0.8}, + {"time": 1.25} ], - "scale": [ - {"x": 0.989, "y": 1.005, "curve": 0.36, "c2": 0.64, "c3": 0.695}, {"time": 0.0167, "x": 0.996, "y": 0.995, "curve": 0.25, "c3": 0.75}, - {"time": 0.1833, "x": 1.258, "y": 0.899, "curve": 0.25, "c3": 0.75}, {"time": 0.35, "x": 1.069, "y": 1.069, "curve": 0.25, "c3": 0.75}, - {"time": 0.5167, "x": 1.187, "y": 0.949, "curve": 0.25, "c3": 0.75}, {"time": 0.6833, "x": 1.004, "y": 1.019, "curve": 0.25, "c3": 0.75}, {"time": 0.9833, "curve": "stepped"}, - {"time": 1.0167, "curve": 0.25, "c3": 0.75}, {"time": 1.1833, "x": 1.159, "y": 0.726, "curve": 0.25, "c3": 0.75}, {"time": 1.35, "x": 0.879, "y": 1.128, "curve": 0.25, "c3": 0.75}, - {"time": 1.5167, "x": 1.23, "y": 0.878, "curve": 0.25, "c3": 0.75}, {"time": 1.6833, "x": 1.057, "y": 1.017, "curve": 0.25, "c3": 0.75}, - {"time": 1.85, "x": 1.209, "y": 0.882, "curve": 0.25, "c3": 0.75}, {"time": 2.0167, "x": 0.956, "y": 1.174, "curve": 0.25, "c3": 0.75}, - {"time": 2.1833, "x": 1.285, "y": 1.001, "curve": 0.25, "c3": 0.75}, {"time": 2.35, "x": 0.97, "y": 1.08, "curve": 0.25, "c3": 0.75}, - {"time": 2.5167, "x": 0.809, "y": 1.228, "curve": 0.245, "c3": 0.711, "c4": 0.83}, {"time": 2.6667, "x": 0.989, "y": 1.005} - ] + "scale": [{"time": 0.9833, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1.05, "y": 0.98, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1.15}] }, - "ear-left-dot-05": { + "leg-front-right-IK": { "translate": [ - {"x": 30.36, "y": -32.03, "curve": 0.321, "c2": 0.29, "c3": 0.656, "c4": 0.63}, {"time": 0.2667, "x": 48.79, "y": -35.67, "curve": 0.347, "c2": 0.38, "c3": 0.757}, - {"time": 2.0833, "x": 165.48, "y": -58.72, "curve": 0.25, "c3": 0.75}, {"time": 2.1167, "x": 8.89, "y": -27.79, "curve": 0.283, "c3": 0.624, "c4": 0.39}, - {"time": 2.6667, "x": 30.36, "y": -32.03} - ], - "scale": [ - {"x": 1.188, "y": 0.912, "curve": 0.345, "c2": 0.37, "c3": 0.757}, {"time": 0.1167, "x": 1.057, "y": 1.017, "curve": 0.245, "c3": 0.711, "c4": 0.83}, - {"time": 0.2667, "x": 1.202, "y": 0.888, "curve": 0.36, "c2": 0.64, "c3": 0.695}, {"time": 0.2833, "x": 1.209, "y": 0.882, "curve": 0.25, "c3": 0.75}, - {"time": 0.45, "x": 0.956, "y": 1.174, "curve": 0.25, "c3": 0.75}, {"time": 0.6167, "x": 1.285, "y": 1.001, "curve": 0.25, "c3": 0.75}, - {"time": 0.7833, "x": 0.97, "y": 1.08, "curve": 0.25, "c3": 0.75}, {"time": 0.95, "x": 0.809, "y": 1.228, "curve": 0.25, "c3": 0.75}, - {"time": 1.1167, "x": 0.996, "y": 0.995, "curve": 0.25, "c3": 0.75}, {"time": 1.2833, "x": 1.258, "y": 0.899, "curve": 0.25, "c3": 0.75}, - {"time": 1.45, "x": 1.069, "y": 1.069, "curve": 0.25, "c3": 0.75}, {"time": 1.6167, "x": 1.187, "y": 0.949, "curve": 0.25, "c3": 0.75}, - {"time": 1.7833, "x": 1.004, "y": 1.019, "curve": 0.25, "c3": 0.75}, {"time": 2.0833, "curve": "stepped"}, {"time": 2.1167, "curve": 0.25, "c3": 0.75}, - {"time": 2.2833, "x": 1.159, "y": 0.726, "curve": 0.25, "c3": 0.75}, {"time": 2.45, "x": 0.879, "y": 1.128, "curve": 0.25, "c3": 0.75}, - {"time": 2.6167, "x": 1.23, "y": 0.878, "curve": 0.269, "c3": 0.618, "c4": 0.42}, {"time": 2.6667, "x": 1.188, "y": 0.912} + {"time": 0.15, "curve": 0, "c2": 0.18, "c3": 0.416, "c4": 0.58}, {"time": 0.2167, "x": 19.11, "y": 67.51}, {"time": 0.25, "x": 9.04, "y": 75.61, "curve": 0, "c2": 0.4, "c3": 0.383}, + {"time": 0.3333, "x": -160.66, "y": 272.78, "curve": 0.779, "c4": 0.4}, {"time": 0.3667, "x": -57.38, "y": -16.06}, {"time": 0.4667, "x": -10.1, "y": -16.06, "curve": 0.779, "c4": 0.4}, + {"time": 0.5, "x": -151.82, "y": 190.82}, {"time": 0.6, "x": -168.95, "y": 277.96, "curve": 0.779, "c4": 0.4}, {"time": 0.6333, "x": -54.28, "y": -17.1}, + {"time": 0.7333, "x": -12.17, "y": -17.1, "curve": 0.779, "c4": 0.4}, {"time": 0.7667, "x": -151.82, "y": 190.82}, {"time": 0.8667, "x": -165.84, "y": 271.75, "curve": 0.779, "c4": 0.4}, + {"time": 0.9833, "curve": "stepped"}, {"time": 1.05, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 1.0833, "x": -14.68, "y": -19.57, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1.25} ] }, - "ear-right-dot-06": { + "leg-front-left-IK": { "translate": [ - {"x": 151.26, "y": -28.07, "curve": 0.381, "c2": 0.59, "c3": 0.727}, {"time": 0.7167, "x": 185.6, "y": -28.85, "curve": 0.25, "c3": 0.75}, - {"time": 0.75, "x": 20.96, "y": -25.1, "curve": 0.242, "c3": 0.661, "c4": 0.65}, {"time": 2.6667, "x": 151.26, "y": -28.07} - ], - "scale": [ - {"x": 1.163, "y": 0.984, "curve": 0.375, "c2": 0.5, "c3": 0.75}, {"time": 0.0833, "x": 1.069, "y": 1.069, "curve": 0.25, "c3": 0.75}, - {"time": 0.25, "x": 1.187, "y": 0.949, "curve": 0.25, "c3": 0.75}, {"time": 0.4167, "x": 1.004, "y": 1.019, "curve": 0.25, "c3": 0.75}, {"time": 0.7167, "curve": "stepped"}, - {"time": 0.75, "curve": 0.25, "c3": 0.75}, {"time": 0.9167, "x": 1.159, "y": 0.726, "curve": 0.25, "c3": 0.75}, {"time": 1.0833, "x": 0.879, "y": 1.128, "curve": 0.25, "c3": 0.75}, - {"time": 1.25, "x": 1.23, "y": 0.878, "curve": 0.25, "c3": 0.75}, {"time": 1.4167, "x": 1.057, "y": 1.017, "curve": 0.25, "c3": 0.75}, - {"time": 1.5833, "x": 1.209, "y": 0.882, "curve": 0.25, "c3": 0.75}, {"time": 1.75, "x": 0.956, "y": 1.174, "curve": 0.25, "c3": 0.75}, - {"time": 1.9167, "x": 1.285, "y": 1.001, "curve": 0.25, "c3": 0.75}, {"time": 2.0833, "x": 0.97, "y": 1.08, "curve": 0.25, "c3": 0.75}, - {"time": 2.25, "x": 0.809, "y": 1.228, "curve": 0.25, "c3": 0.75}, {"time": 2.4167, "x": 0.996, "y": 0.995, "curve": 0.25, "c3": 0.75}, - {"time": 2.5833, "x": 1.258, "y": 0.899, "curve": 0.25, "c3": 0.625, "c4": 0.5}, {"time": 2.6667, "x": 1.163, "y": 0.984} + {"time": 0.15, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "x": -54.88, "y": 124.95, "curve": 0.779, "c4": 0.4}, {"time": 0.3667, "x": 37.97, "y": 122.64}, + {"time": 0.4667, "x": 48.96, "y": 138.43, "curve": 0.779, "c4": 0.4}, {"time": 0.5, "x": -142.3, "y": 180.66}, {"time": 0.6, "x": -134.29, "y": 191.98, "curve": 0.779, "c4": 0.4}, + {"time": 0.6333, "x": 37.97, "y": 122.64}, {"time": 0.7333, "x": 48.96, "y": 138.43, "curve": 0.779, "c4": 0.4}, {"time": 0.7667, "x": -142.3, "y": 180.66}, + {"time": 0.8667, "x": -134.29, "y": 191.98, "curve": 0.617, "c4": 0.6}, {"time": 0.9833, "curve": "stepped"}, {"time": 1.05, "curve": 0, "c2": 0.1, "c3": 0.85}, + {"time": 1.0833, "x": -7.79, "y": -10.12, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1.25} ] }, - "ear-right-dot-09": { + "leg-back-left-IK": { "translate": [ - {"x": 46.79, "y": -39.42, "curve": 0.337, "c2": 0.35, "c3": 0.758}, {"time": 1.9333, "x": 171.94, "y": -57.89, "curve": 0.25, "c3": 0.75}, - {"time": 1.9667, "x": 15.17, "y": -34.76, "curve": 0.274, "c3": 0.62, "c4": 0.41}, {"time": 2.6667, "x": 46.79, "y": -39.42} - ], - "scale": [ - {"x": 1.077, "y": 0.999, "curve": 0.32, "c2": 0.29, "c3": 0.757}, {"time": 0.1333, "x": 1.209, "y": 0.882, "curve": 0.25, "c3": 0.75}, - {"time": 0.3, "x": 0.956, "y": 1.174, "curve": 0.25, "c3": 0.75}, {"time": 0.4667, "x": 1.285, "y": 1.001, "curve": 0.25, "c3": 0.75}, - {"time": 0.6333, "x": 0.97, "y": 1.08, "curve": 0.25, "c3": 0.75}, {"time": 0.8, "x": 0.809, "y": 1.228, "curve": 0.25, "c3": 0.75}, - {"time": 0.9667, "x": 0.996, "y": 0.995, "curve": 0.25, "c3": 0.75}, {"time": 1.1333, "x": 1.258, "y": 0.899, "curve": 0.25, "c3": 0.75}, - {"time": 1.3, "x": 1.069, "y": 1.069, "curve": 0.25, "c3": 0.75}, {"time": 1.4667, "x": 1.187, "y": 0.949, "curve": 0.25, "c3": 0.75}, - {"time": 1.6333, "x": 1.004, "y": 1.019, "curve": 0.25, "c3": 0.75}, {"time": 1.9333, "curve": "stepped"}, {"time": 1.9667, "curve": 0.25, "c3": 0.75}, - {"time": 2.1333, "x": 1.159, "y": 0.726, "curve": 0.25, "c3": 0.75}, {"time": 2.3, "x": 0.879, "y": 1.128, "curve": 0.25, "c3": 0.75}, - {"time": 2.4667, "x": 1.23, "y": 0.878, "curve": 0.25, "c3": 0.75}, {"time": 2.6333, "x": 1.057, "y": 1.017, "curve": 0.284, "c3": 0.625, "c4": 0.38}, - {"time": 2.6667, "x": 1.077, "y": 0.999} + {"time": 0.0833, "curve": 0.332, "c3": 0.682, "c4": 0.41}, {"time": 0.2167, "x": 21.57, "y": 4.03, "curve": 0, "c2": 0.4, "c3": 0.383}, + {"time": 0.3333, "x": -50.73, "y": 91.08, "curve": 0.779, "c4": 0.4}, {"time": 0.3667, "x": 19.18, "y": 184.64}, {"time": 0.4667, "x": 25.59, "y": 197.69, "curve": 0.779, "c4": 0.4}, + {"time": 0.5, "x": -145.53, "y": 47.62}, {"time": 0.6, "x": -152.68, "y": 53.34, "curve": 0.779, "c4": 0.4}, {"time": 0.6333, "x": 19.18, "y": 184.64}, + {"time": 0.7333, "x": 25.59, "y": 197.69, "curve": 0.779, "c4": 0.4}, {"time": 0.7667, "x": -145.53, "y": 47.62}, {"time": 0.8667, "x": -153.88, "y": 53.26, "curve": 0.779, "c4": 0.4}, + {"time": 0.9833, "curve": "stepped"}, {"time": 1.05, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 1.1667, "x": 24.35, "y": 13.92, "curve": 0.154, "c4": 0.9}, {"time": 1.25} ] }, - "ear-right-dot-01": { - "translate": [ - {"x": 177.28, "y": -26.63, "curve": 0.361, "c2": 0.64, "c3": 0.697}, {"time": 0.2833, "x": 186.45, "y": -25.68, "curve": 0.25, "c3": 0.75}, - {"time": 0.3167, "x": 1.74, "y": -44.82, "curve": 0.306, "c3": 0.641, "c4": 0.36}, {"time": 0.5667, "x": 8.84, "y": -44.08, "curve": 0.28, "c2": 0.15, "c3": 0.715, "c4": 0.84}, - {"time": 2.6667, "x": 177.28, "y": -26.63} - ], - "scale": [ - {"x": 1.004, "y": 1.018, "curve": 0.273, "c2": 0.1, "c3": 0.753}, {"time": 0.2833, "curve": "stepped"}, {"time": 0.3167, "curve": 0.25, "c3": 0.75}, - {"time": 0.4833, "x": 1.159, "y": 0.726, "curve": 0.25, "c3": 0.625, "c4": 0.5}, {"time": 0.5667, "x": 1.019, "y": 0.927, "curve": 0.375, "c2": 0.5, "c3": 0.75}, - {"time": 0.65, "x": 0.879, "y": 1.128, "curve": 0.25, "c3": 0.75}, {"time": 0.8167, "x": 1.23, "y": 0.878, "curve": 0.25, "c3": 0.75}, - {"time": 0.9833, "x": 1.057, "y": 1.017, "curve": 0.25, "c3": 0.75}, {"time": 1.15, "x": 1.209, "y": 0.882, "curve": 0.25, "c3": 0.75}, - {"time": 1.3167, "x": 0.956, "y": 1.174, "curve": 0.25, "c3": 0.75}, {"time": 1.4833, "x": 1.285, "y": 1.001, "curve": 0.25, "c3": 0.75}, - {"time": 1.65, "x": 0.97, "y": 1.08, "curve": 0.25, "c3": 0.75}, {"time": 1.8167, "x": 0.809, "y": 1.228, "curve": 0.25, "c3": 0.75}, - {"time": 1.9833, "x": 0.996, "y": 0.995, "curve": 0.25, "c3": 0.75}, {"time": 2.15, "x": 1.258, "y": 0.899, "curve": 0.25, "c3": 0.75}, - {"time": 2.3167, "x": 1.069, "y": 1.069, "curve": 0.25, "c3": 0.75}, {"time": 2.4833, "x": 1.187, "y": 0.949, "curve": 0.25, "c3": 0.75}, - {"time": 2.65, "x": 1.004, "y": 1.019, "curve": 0.316, "c3": 0.65, "c4": 0.35}, {"time": 2.6667, "x": 1.004, "y": 1.018} + "tail": { + "rotate": [ + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.15, "angle": 14.68, "curve": 0.315, "c4": 0.8}, {"time": 0.2167, "angle": -12.57}, + {"time": 0.3333, "angle": -14.89, "curve": 0.779, "c4": 0.4}, {"time": 0.3667, "angle": 20.64}, {"time": 0.4667, "angle": 25.18, "curve": 0.779, "c4": 0.4}, + {"time": 0.5, "angle": -19.72}, {"time": 0.6, "angle": -22.19, "curve": 0.779, "c4": 0.4}, {"time": 0.6333, "angle": 20.64}, {"time": 0.7333, "angle": 25.18, "curve": 0.779, "c4": 0.4}, + {"time": 0.7667, "angle": -19.72}, {"time": 0.8667, "angle": -22.19, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.9833, "angle": 23.3}, + {"time": 1.05, "angle": 26.39, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1.1333, "angle": -14.8, "curve": 0.154, "c4": 0.9}, {"time": 1.25} ] }, - "ear-left-dot-01": { + "@shadow": { "translate": [ - {"x": 149.7, "y": 6.86, "curve": 0.382, "c2": 0.58, "c3": 0.734}, {"time": 0.85, "x": 200.94, "y": 11.88, "curve": 0.25, "c3": 0.75}, - {"time": 0.8833, "x": 11.62, "y": -6.68, "curve": 0.243, "c3": 0.651, "c4": 0.61}, {"time": 2.6667, "x": 149.7, "y": 6.86} + {"time": 0.15, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.3333, "x": -132.39, "curve": 0.779, "c4": 0.4}, {"time": 0.3667, "x": -111.3, "curve": "stepped"}, + {"time": 0.8667, "x": -111.3, "curve": 0.315, "c4": 0.8}, {"time": 0.9833, "x": -132.39, "curve": "stepped"}, {"time": 1.05, "x": -132.39, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 1.25} ], "scale": [ - {"x": 1.194, "y": 0.922, "curve": 0.382, "c2": 0.58, "c3": 0.731}, {"time": 0.05, "x": 1.258, "y": 0.899, "curve": 0.25, "c3": 0.75}, - {"time": 0.2167, "x": 1.069, "y": 1.069, "curve": 0.25, "c3": 0.75}, {"time": 0.3833, "x": 1.187, "y": 0.949, "curve": 0.25, "c3": 0.75}, - {"time": 0.55, "x": 1.004, "y": 1.019, "curve": 0.25, "c3": 0.75}, {"time": 0.85, "curve": "stepped"}, {"time": 0.8833, "curve": 0.25, "c3": 0.75}, - {"time": 1.05, "x": 1.159, "y": 0.726, "curve": 0.25, "c3": 0.75}, {"time": 1.2167, "x": 0.879, "y": 1.128, "curve": 0.25, "c3": 0.75}, - {"time": 1.3833, "x": 1.23, "y": 0.878, "curve": 0.25, "c3": 0.75}, {"time": 1.55, "x": 1.057, "y": 1.017, "curve": 0.25, "c3": 0.75}, - {"time": 1.7167, "x": 1.209, "y": 0.882, "curve": 0.25, "c3": 0.75}, {"time": 1.8833, "x": 0.956, "y": 1.174, "curve": 0.25, "c3": 0.75}, - {"time": 2.05, "x": 1.285, "y": 1.001, "curve": 0.25, "c3": 0.75}, {"time": 2.2167, "x": 0.97, "y": 1.08, "curve": 0.25, "c3": 0.75}, - {"time": 2.3833, "x": 0.809, "y": 1.228, "curve": 0.25, "c3": 0.75}, {"time": 2.55, "x": 0.996, "y": 0.995, "curve": 0.243, "c3": 0.655, "c4": 0.63}, - {"time": 2.6667, "x": 1.194, "y": 0.922} + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.15, "x": 1.05, "y": 1.05, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.3333, "x": 0.93, "y": 0.93, "curve": 0.779, "c4": 0.4}, + {"time": 0.3667, "x": 0.95, "y": 0.95}, {"time": 0.4667, "x": 0.93, "y": 0.93, "curve": 0.779, "c4": 0.4}, {"time": 0.5}, {"time": 0.6, "x": 1.05, "y": 1.05, "curve": 0.779, "c4": 0.4}, + {"time": 0.6333}, {"time": 0.7333, "x": 0.93, "y": 0.93, "curve": 0.779, "c4": 0.4}, {"time": 0.7667}, {"time": 0.8667, "x": 1.05, "y": 1.05, "curve": 0.315, "c4": 0.8}, + {"time": 0.9833, "x": 1.09, "y": 1.09, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 1.05, "x": 1.11, "y": 1.11, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1.25} ] }, - "ear-right-dot-02": { - "translate": [ - {"x": 158.57, "y": 32.89, "curve": 0.376, "c2": 0.61, "c3": 0.717}, {"time": 0.55, "x": 181.53, "y": 37.26, "curve": 0.25, "c3": 0.75}, - {"time": 0.5833, "x": 17.24, "y": 6.05, "curve": 0.243, "c3": 0.677, "c4": 0.71}, {"time": 2.6667, "x": 158.57, "y": 32.89} - ], - "scale": [ - {"x": 1.128, "y": 1.009, "curve": 0.375, "c2": 0.5, "c3": 0.75}, {"time": 0.0833, "x": 1.187, "y": 0.949, "curve": 0.25, "c3": 0.75}, - {"time": 0.25, "x": 1.004, "y": 1.019, "curve": 0.25, "c3": 0.75}, {"time": 0.55, "curve": "stepped"}, {"time": 0.5833, "curve": 0.25, "c3": 0.75}, - {"time": 0.75, "x": 1.159, "y": 0.726, "curve": 0.25, "c3": 0.75}, {"time": 0.9167, "x": 0.879, "y": 1.128, "curve": 0.25, "c3": 0.75}, - {"time": 1.0833, "x": 1.23, "y": 0.878, "curve": 0.25, "c3": 0.75}, {"time": 1.25, "x": 1.057, "y": 1.017, "curve": 0.25, "c3": 0.75}, - {"time": 1.4167, "x": 1.209, "y": 0.882, "curve": 0.25, "c3": 0.75}, {"time": 1.5833, "x": 0.956, "y": 1.174, "curve": 0.25, "c3": 0.75}, - {"time": 1.75, "x": 1.285, "y": 1.001, "curve": 0.25, "c3": 0.75}, {"time": 1.9167, "x": 0.97, "y": 1.08, "curve": 0.25, "c3": 0.75}, - {"time": 2.0833, "x": 0.809, "y": 1.228, "curve": 0.25, "c3": 0.75}, {"time": 2.25, "x": 0.996, "y": 0.995, "curve": 0.25, "c3": 0.75}, - {"time": 2.4167, "x": 1.258, "y": 0.899, "curve": 0.25, "c3": 0.75}, {"time": 2.5833, "x": 1.069, "y": 1.069, "curve": 0.25, "c3": 0.625, "c4": 0.5}, - {"time": 2.6667, "x": 1.128, "y": 1.009} + "body-fur-8": { + "rotate": [ + {"angle": 5.84, "curve": 0.381, "c2": 0.59, "c3": 0.727}, {"time": 0.05}, {"time": 0.2, "angle": 22.69, "curve": 0.25, "c3": 0.75}, + {"time": 0.4, "angle": -25.47, "curve": 0.25, "c3": 0.75}, {"time": 0.5, "angle": 30.13, "curve": 0.25, "c3": 0.75}, {"time": 0.6667, "angle": -32.6, "curve": 0.25, "c3": 0.75}, + {"time": 0.7667, "angle": 29.93, "curve": 0.25, "c3": 0.75}, {"time": 0.95, "angle": -31.51, "curve": 0.25, "c3": 0.75}, + {"time": 1.1167, "angle": 27.92, "curve": 0.242, "c3": 0.661, "c4": 0.65}, {"time": 1.25, "angle": -0.91} ] }, - "ear-right-dot-03": { - "translate": [ - {"x": 78.35, "y": 13.71, "curve": 0.361, "c2": 0.44, "c3": 0.755}, {"time": 1.6167, "x": 203.5, "y": 31.52, "curve": 0.25, "c3": 0.75}, - {"time": 1.65, "x": 11.08, "y": 4.14, "curve": 0.259, "c3": 0.618, "c4": 0.45}, {"time": 2.6667, "x": 78.35, "y": 13.71} - ], - "scale": [ - {"x": 0.97, "y": 1.167, "curve": 0.289, "c2": 0.17, "c3": 0.755}, {"time": 0.15, "x": 1.285, "y": 1.001, "curve": 0.25, "c3": 0.75}, - {"time": 0.3167, "x": 0.97, "y": 1.08, "curve": 0.25, "c3": 0.75}, {"time": 0.4833, "x": 0.809, "y": 1.228, "curve": 0.25, "c3": 0.75}, - {"time": 0.65, "x": 0.996, "y": 0.995, "curve": 0.25, "c3": 0.75}, {"time": 0.8167, "x": 1.258, "y": 0.899, "curve": 0.25, "c3": 0.75}, - {"time": 0.9833, "x": 1.069, "y": 1.069, "curve": 0.25, "c3": 0.75}, {"time": 1.15, "x": 1.187, "y": 0.949, "curve": 0.25, "c3": 0.75}, - {"time": 1.3167, "x": 1.004, "y": 1.019, "curve": 0.25, "c3": 0.75}, {"time": 1.6167, "curve": "stepped"}, {"time": 1.65, "curve": 0.25, "c3": 0.75}, - {"time": 1.8167, "x": 1.159, "y": 0.726, "curve": 0.25, "c3": 0.75}, {"time": 1.9833, "x": 0.879, "y": 1.128, "curve": 0.25, "c3": 0.75}, - {"time": 2.15, "x": 1.23, "y": 0.878, "curve": 0.25, "c3": 0.75}, {"time": 2.3167, "x": 1.057, "y": 1.017, "curve": 0.25, "c3": 0.75}, - {"time": 2.4833, "x": 1.209, "y": 0.882, "curve": 0.25, "c3": 0.75}, {"time": 2.65, "x": 0.956, "y": 1.174, "curve": 0.305, "c3": 0.64, "c4": 0.36}, - {"time": 2.6667, "x": 0.97, "y": 1.167} + "body-fur-1": { + "rotate": [ + {"angle": 8.98, "curve": 0.382, "c2": 0.56, "c3": 0.739}, {"time": 0.0667}, {"time": 0.2167, "angle": 22.69, "curve": 0.25, "c3": 0.75}, + {"time": 0.4167, "angle": -25.47, "curve": 0.25, "c3": 0.75}, {"time": 0.5167, "angle": 30.13, "curve": 0.25, "c3": 0.75}, {"time": 0.6833, "angle": -32.6, "curve": 0.25, "c3": 0.75}, + {"time": 0.7833, "angle": 29.93, "curve": 0.25, "c3": 0.75}, {"time": 0.9667, "angle": -31.51, "curve": 0.25, "c3": 0.75}, + {"time": 1.1333, "angle": 27.92, "curve": 0.244, "c3": 0.643, "c4": 0.58}, {"time": 1.25, "angle": 10.51} ] }, - "ear-right-dot-04": { - "translate": [ - {"x": 37.63, "y": -8.81, "curve": 0.31, "c2": 0.25, "c3": 0.757}, {"time": 2.2, "x": 195.03, "y": 35.75, "curve": 0.25, "c3": 0.75}, - {"time": 2.2333, "x": 21.15, "y": -13.48, "curve": 0.291, "c3": 0.629, "c4": 0.37}, {"time": 2.6667, "x": 37.63, "y": -8.81} - ], - "scale": [ - {"x": 1.101, "y": 0.97, "curve": 0.381, "c2": 0.55, "c3": 0.742}, {"time": 0.0667, "x": 1.23, "y": 0.878, "curve": 0.25, "c3": 0.75}, - {"time": 0.2333, "x": 1.057, "y": 1.017, "curve": 0.25, "c3": 0.75}, {"time": 0.4, "x": 1.209, "y": 0.882, "curve": 0.25, "c3": 0.75}, - {"time": 0.5667, "x": 0.956, "y": 1.174, "curve": 0.25, "c3": 0.75}, {"time": 0.7333, "x": 1.285, "y": 1.001, "curve": 0.25, "c3": 0.75}, - {"time": 0.9, "x": 0.97, "y": 1.08, "curve": 0.25, "c3": 0.75}, {"time": 1.0667, "x": 0.809, "y": 1.228, "curve": 0.25, "c3": 0.75}, - {"time": 1.2333, "x": 0.996, "y": 0.995, "curve": 0.25, "c3": 0.75}, {"time": 1.4, "x": 1.258, "y": 0.899, "curve": 0.25, "c3": 0.75}, - {"time": 1.5667, "x": 1.069, "y": 1.069, "curve": 0.25, "c3": 0.75}, {"time": 1.7333, "x": 1.187, "y": 0.949, "curve": 0.25, "c3": 0.75}, - {"time": 1.9, "x": 1.004, "y": 1.019, "curve": 0.25, "c3": 0.75}, {"time": 2.2, "curve": "stepped"}, {"time": 2.2333, "curve": 0.25, "c3": 0.75}, - {"time": 2.4, "x": 1.159, "y": 0.726, "curve": 0.25, "c3": 0.75}, {"time": 2.5667, "x": 0.879, "y": 1.128, "curve": 0.245, "c3": 0.637, "c4": 0.56}, - {"time": 2.6667, "x": 1.101, "y": 0.97} + "body-fur-2": { + "rotate": [ + {"angle": 15.48, "curve": 0.346, "c2": 0.38, "c3": 0.7, "c4": 0.78}, {"time": 0.0667, "angle": 3.08, "curve": 0.373, "c2": 0.62, "c3": 0.713}, {"time": 0.1, "curve": 0.25, "c3": 0.75}, + {"time": 0.25, "angle": 22.69, "curve": 0.25, "c3": 0.75}, {"time": 0.45, "angle": -25.47, "curve": 0.25, "c3": 0.75}, {"time": 0.55, "angle": 30.13, "curve": 0.25, "c3": 0.75}, + {"time": 0.7167, "angle": -32.6, "curve": 0.25, "c3": 0.75}, {"time": 0.8167, "angle": 29.93, "curve": 0.25, "c3": 0.75}, {"time": 1, "angle": -31.51, "curve": 0.25, "c3": 0.75}, + {"time": 1.1667, "angle": 27.92, "curve": 0.253, "c3": 0.621, "c4": 0.48}, {"time": 1.25, "angle": 13.84} ] }, - "ear-left-dot-03": { - "translate": [ - {"x": 34.7, "y": -54.32, "curve": 0.321, "c2": 0.29, "c3": 0.757}, {"time": 2.1, "x": 192.66, "y": -9.15, "curve": 0.25, "c3": 0.75}, - {"time": 2.1333, "x": 10.5, "y": -61.24, "curve": 0.284, "c3": 0.625, "c4": 0.39}, {"time": 2.6667, "x": 34.7, "y": -54.32} - ], - "scale": [ - {"x": 1.208, "y": 0.896, "curve": 0.32, "c2": 0.29, "c3": 0.757}, {"time": 0.1333, "x": 1.057, "y": 1.017, "curve": 0.25, "c3": 0.75}, - {"time": 0.3, "x": 1.209, "y": 0.882, "curve": 0.25, "c3": 0.75}, {"time": 0.4667, "x": 0.956, "y": 1.174, "curve": 0.25, "c3": 0.75}, - {"time": 0.6333, "x": 1.285, "y": 1.001, "curve": 0.25, "c3": 0.75}, {"time": 0.8, "x": 0.97, "y": 1.08, "curve": 0.25, "c3": 0.75}, - {"time": 0.9667, "x": 0.809, "y": 1.228, "curve": 0.25, "c3": 0.75}, {"time": 1.1333, "x": 0.996, "y": 0.995, "curve": 0.25, "c3": 0.75}, - {"time": 1.3, "x": 1.258, "y": 0.899, "curve": 0.25, "c3": 0.75}, {"time": 1.4667, "x": 1.069, "y": 1.069, "curve": 0.25, "c3": 0.75}, - {"time": 1.6333, "x": 1.187, "y": 0.949, "curve": 0.25, "c3": 0.75}, {"time": 1.8, "x": 1.004, "y": 1.019, "curve": 0.25, "c3": 0.75}, {"time": 2.1, "curve": "stepped"}, - {"time": 2.1333, "curve": 0.25, "c3": 0.75}, {"time": 2.3, "x": 1.159, "y": 0.726, "curve": 0.25, "c3": 0.75}, {"time": 2.4667, "x": 0.879, "y": 1.128, "curve": 0.25, "c3": 0.75}, - {"time": 2.6333, "x": 1.23, "y": 0.878, "curve": 0.284, "c3": 0.625, "c4": 0.38}, {"time": 2.6667, "x": 1.208, "y": 0.896} + "body-fur-3": { + "rotate": [ + {"angle": 5.84, "curve": 0.381, "c2": 0.59, "c3": 0.727}, {"time": 0.05}, {"time": 0.2, "angle": 22.69, "curve": 0.25, "c3": 0.75}, + {"time": 0.4, "angle": -25.47, "curve": 0.25, "c3": 0.75}, {"time": 0.5, "angle": 30.13, "curve": 0.25, "c3": 0.75}, {"time": 0.6667, "angle": -32.6, "curve": 0.25, "c3": 0.75}, + {"time": 0.7667, "angle": 29.93, "curve": 0.25, "c3": 0.75}, {"time": 0.95, "angle": -31.51, "curve": 0.25, "c3": 0.75}, + {"time": 1.1167, "angle": 27.92, "curve": 0.242, "c3": 0.661, "c4": 0.65}, {"time": 1.25, "angle": 5.54} ] }, - "ear-right-dot-07": { - "translate": [ - {"x": 185.04, "y": -8.98, "curve": 0.38, "c2": 0.6, "c3": 0.725}, {"time": 0.6667, "x": 218.85, "y": 0.11, "curve": 0.25, "c3": 0.75}, - {"time": 0.7, "x": 38.95, "y": -48.28, "curve": 0.242, "c3": 0.666, "c4": 0.66}, {"time": 2.6667, "x": 185.04, "y": -8.98} - ], - "scale": [ - {"x": 1.094, "y": 1.046, "curve": 0.375, "c2": 0.62, "c3": 0.716}, {"time": 0.0333, "x": 1.069, "y": 1.069, "curve": 0.25, "c3": 0.75}, - {"time": 0.2, "x": 1.187, "y": 0.949, "curve": 0.25, "c3": 0.75}, {"time": 0.3667, "x": 1.004, "y": 1.019, "curve": 0.25, "c3": 0.75}, {"time": 0.6667, "curve": "stepped"}, - {"time": 0.7, "curve": 0.25, "c3": 0.75}, {"time": 0.8667, "x": 1.159, "y": 0.726, "curve": 0.25, "c3": 0.75}, {"time": 1.0333, "x": 0.879, "y": 1.128, "curve": 0.25, "c3": 0.75}, - {"time": 1.2, "x": 1.23, "y": 0.878, "curve": 0.25, "c3": 0.75}, {"time": 1.3667, "x": 1.057, "y": 1.017, "curve": 0.25, "c3": 0.75}, - {"time": 1.5333, "x": 1.209, "y": 0.882, "curve": 0.25, "c3": 0.75}, {"time": 1.7, "x": 0.956, "y": 1.174, "curve": 0.25, "c3": 0.75}, - {"time": 1.8667, "x": 1.285, "y": 1.001, "curve": 0.25, "c3": 0.75}, {"time": 2.0333, "x": 0.97, "y": 1.08, "curve": 0.25, "c3": 0.75}, - {"time": 2.2, "x": 0.809, "y": 1.228, "curve": 0.25, "c3": 0.75}, {"time": 2.3667, "x": 0.996, "y": 0.995, "curve": 0.25, "c3": 0.75}, - {"time": 2.5333, "x": 1.258, "y": 0.899, "curve": 0.243, "c3": 0.68, "c4": 0.71}, {"time": 2.6667, "x": 1.094, "y": 1.046} + "body-fur-4": { + "rotate": [ + {"angle": 12.1, "curve": 0.351, "c2": 0.39, "c3": 0.696, "c4": 0.76}, {"time": 0.05, "angle": 3.08, "curve": 0.373, "c2": 0.62, "c3": 0.713}, {"time": 0.0833}, + {"time": 0.2333, "angle": 22.69, "curve": 0.25, "c3": 0.75}, {"time": 0.4333, "angle": -25.47, "curve": 0.25, "c3": 0.75}, {"time": 0.5333, "angle": 30.13, "curve": 0.25, "c3": 0.75}, + {"time": 0.7, "angle": -32.6, "curve": 0.25, "c3": 0.75}, {"time": 0.8, "angle": 29.93, "curve": 0.25, "c3": 0.75}, {"time": 0.9833, "angle": -31.51, "curve": 0.25, "c3": 0.75}, + {"time": 1.15, "angle": 27.92, "curve": 0.247, "c3": 0.63, "c4": 0.52}, {"time": 1.25, "angle": 12.53} ] }, - "ear-right-dot-08": { - "translate": [{"x": 13.73, "y": 45.86, "curve": 0.25, "c3": 0.75}, {"time": 2.6333, "x": 213.05, "y": 62.73, "curve": 0.25, "c3": 0.75}, {"time": 2.6667, "x": 13.73, "y": 45.86}], - "scale": [ - {"curve": 0.25, "c3": 0.75}, {"time": 0.1667, "x": 1.159, "y": 0.726, "curve": 0.25, "c3": 0.75}, {"time": 0.3333, "x": 0.879, "y": 1.128, "curve": 0.25, "c3": 0.75}, - {"time": 0.5, "x": 1.23, "y": 0.878, "curve": 0.25, "c3": 0.75}, {"time": 0.6667, "x": 1.057, "y": 1.017, "curve": 0.25, "c3": 0.75}, - {"time": 0.8333, "x": 1.209, "y": 0.882, "curve": 0.25, "c3": 0.75}, {"time": 1, "x": 0.956, "y": 1.174, "curve": 0.25, "c3": 0.75}, - {"time": 1.1667, "x": 1.285, "y": 1.001, "curve": 0.25, "c3": 0.75}, {"time": 1.3333, "x": 0.97, "y": 1.08, "curve": 0.25, "c3": 0.75}, - {"time": 1.5, "x": 0.809, "y": 1.228, "curve": 0.25, "c3": 0.75}, {"time": 1.6667, "x": 0.996, "y": 0.995, "curve": 0.25, "c3": 0.75}, - {"time": 1.8333, "x": 1.258, "y": 0.899, "curve": 0.25, "c3": 0.75}, {"time": 2, "x": 1.069, "y": 1.069, "curve": 0.25, "c3": 0.75}, - {"time": 2.1667, "x": 1.187, "y": 0.949, "curve": 0.25, "c3": 0.75}, {"time": 2.3333, "x": 1.004, "y": 1.019, "curve": 0.25, "c3": 0.75}, {"time": 2.6333} + "body-fur-5": { + "rotate": [ + {"angle": 3.08, "curve": 0.373, "c2": 0.62, "c3": 0.713}, {"time": 0.0333}, {"time": 0.1833, "angle": 22.69, "curve": 0.25, "c3": 0.75}, + {"time": 0.3833, "angle": -25.47, "curve": 0.25, "c3": 0.75}, {"time": 0.4833, "angle": 30.13, "curve": 0.25, "c3": 0.75}, {"time": 0.65, "angle": -32.6, "curve": 0.25, "c3": 0.75}, + {"time": 0.75, "angle": 29.93, "curve": 0.25, "c3": 0.75}, {"time": 0.9333, "angle": -31.51, "curve": 0.25, "c3": 0.75}, + {"time": 1.1, "angle": 27.92, "curve": 0.243, "c3": 0.685, "c4": 0.73}, {"time": 1.25, "angle": 6.86} ] }, - "ear-right-dot-10": { + "body-fur-6": { + "rotate": [ + {"angle": 8.81, "curve": 0.35, "c2": 0.39, "c3": 0.689, "c4": 0.75}, {"time": 0.0333, "angle": 3.08, "curve": 0.373, "c2": 0.62, "c3": 0.713}, {"time": 0.0667}, + {"time": 0.2167, "angle": 22.69, "curve": 0.25, "c3": 0.75}, {"time": 0.4167, "angle": -25.47, "curve": 0.25, "c3": 0.75}, {"time": 0.5167, "angle": 30.13, "curve": 0.25, "c3": 0.75}, + {"time": 0.6833, "angle": -32.6, "curve": 0.25, "c3": 0.75}, {"time": 0.7833, "angle": 29.93, "curve": 0.25, "c3": 0.75}, {"time": 0.9667, "angle": -31.51, "curve": 0.25, "c3": 0.75}, + {"time": 1.1333, "angle": 27.92, "curve": 0.244, "c3": 0.643, "c4": 0.58}, {"time": 1.25, "angle": 13.33} + ] + }, + "body-fur-7": { + "rotate": [ + {"angle": 0.98, "curve": 0.358, "c2": 0.65, "c3": 0.693}, {"time": 0.0167, "curve": 0.25, "c3": 0.75}, {"time": 0.1667, "angle": 22.69, "curve": 0.25, "c3": 0.75}, + {"time": 0.3667, "angle": -25.47, "curve": 0.25, "c3": 0.75}, {"time": 0.4667, "angle": 30.13, "curve": 0.25, "c3": 0.75}, {"time": 0.6333, "angle": -32.6, "curve": 0.25, "c3": 0.75}, + {"time": 0.7333, "angle": 29.93, "curve": 0.25, "c3": 0.75}, {"time": 0.9167, "angle": -31.51, "curve": 0.25, "c3": 0.75}, + {"time": 1.0833, "angle": 27.92, "curve": 0.245, "c3": 0.714, "c4": 0.85}, {"time": 1.25, "angle": 2.91} + ] + }, + "body-fur-9": { + "rotate": [ + {"angle": 12.1, "curve": 0.351, "c2": 0.39, "c3": 0.696, "c4": 0.76}, {"time": 0.05, "angle": 3.08, "curve": 0.373, "c2": 0.62, "c3": 0.713}, {"time": 0.0833}, + {"time": 0.2333, "angle": 22.69, "curve": 0.25, "c3": 0.75}, {"time": 0.4333, "angle": -25.47, "curve": 0.25, "c3": 0.75}, {"time": 0.5333, "angle": 30.13, "curve": 0.25, "c3": 0.75}, + {"time": 0.7, "angle": -32.6, "curve": 0.25, "c3": 0.75}, {"time": 0.8, "angle": 29.93, "curve": 0.25, "c3": 0.75}, {"time": 0.9833, "angle": -31.51, "curve": 0.25, "c3": 0.75}, + {"time": 1.15, "angle": 27.92, "curve": 0.247, "c3": 0.63, "c4": 0.52}, {"time": 1.25, "angle": 6.86} + ] + } + }, + "events": [{"time": 0.3333, "name": "start-attack"}, {"time": 0.3667, "name": "hit"}, {"time": 0.5, "name": "hit"}, {"time": 0.6333, "name": "hit"}, {"time": 0.7667, "name": "hit"}] + }, + "520076436": { + "slots": { + "eyes": {"attachment": [{"time": 1, "name": "eyes-shut"}, {"time": 1.0833, "name": "eyes"}]}, + "mouth-accessory": { + "color": [ + {"time": 0.5833, "color": "ffffff00", "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.6667, "color": "ffffffff", "curve": "stepped"}, + {"time": 0.9167, "color": "ffffffff", "curve": 0.306, "c4": 0.8}, {"time": 1, "color": "ffffff00"} + ], + "attachment": [{"time": 0.5833, "name": "mouth-accessory"}, {"time": 1, "name": null}] + } + }, + "bones": { + "@pivot-back": { + "rotate": [ + {"curve": 0.313, "c3": 0.699}, {"time": 0.3333, "angle": 2.04, "curve": 0.313, "c3": 0.699}, {"time": 0.6667, "curve": 0.313, "c3": 0.699}, + {"time": 1, "angle": 1.79, "curve": 0.313, "c3": 0.699}, {"time": 1.3333} + ], "translate": [ - {"x": 55.35, "y": -33.35, "curve": 0.328, "c2": 0.31, "c3": 0.758}, {"time": 2.0333, "x": 192.67, "y": -38.93, "curve": 0.25, "c3": 0.75}, - {"time": 2.0667, "x": 29.12, "y": -32.28, "curve": 0.279, "c3": 0.622, "c4": 0.39}, {"time": 2.6667, "x": 55.35, "y": -33.35} + {"curve": 0.313, "c3": 0.699}, {"time": 0.3333, "y": -6.53, "curve": 0.313, "c3": 0.699}, {"time": 0.6667, "curve": 0.313, "c3": 0.699}, + {"time": 1, "y": -8.86, "curve": 0.313, "c3": 0.699}, {"time": 1.3333} ], - "scale": [ - {"x": 1.121, "y": 0.966, "curve": 0.381, "c2": 0.55, "c3": 0.742}, {"time": 0.0667, "x": 1.057, "y": 1.017, "curve": 0.25, "c3": 0.75}, - {"time": 0.2333, "x": 1.209, "y": 0.882, "curve": 0.25, "c3": 0.75}, {"time": 0.4, "x": 0.956, "y": 1.174, "curve": 0.25, "c3": 0.75}, - {"time": 0.5667, "x": 1.285, "y": 1.001, "curve": 0.25, "c3": 0.75}, {"time": 0.7333, "x": 0.97, "y": 1.08, "curve": 0.25, "c3": 0.75}, - {"time": 0.9, "x": 0.809, "y": 1.228, "curve": 0.25, "c3": 0.75}, {"time": 1.0667, "x": 0.996, "y": 0.995, "curve": 0.25, "c3": 0.75}, - {"time": 1.2333, "x": 1.258, "y": 0.899, "curve": 0.25, "c3": 0.75}, {"time": 1.4, "x": 1.069, "y": 1.069, "curve": 0.25, "c3": 0.75}, - {"time": 1.5667, "x": 1.187, "y": 0.949, "curve": 0.25, "c3": 0.75}, {"time": 1.7333, "x": 1.004, "y": 1.019, "curve": 0.25, "c3": 0.75}, {"time": 2.0333, "curve": "stepped"}, - {"time": 2.0667, "curve": 0.25, "c3": 0.75}, {"time": 2.2333, "x": 1.159, "y": 0.726, "curve": 0.25, "c3": 0.75}, {"time": 2.4, "x": 0.879, "y": 1.128, "curve": 0.25, "c3": 0.75}, - {"time": 2.5667, "x": 1.23, "y": 0.878, "curve": 0.245, "c3": 0.637, "c4": 0.56}, {"time": 2.6667, "x": 1.121, "y": 0.966} + "scale": [{"curve": 0.313, "c3": 0.699}, {"time": 0.6667, "y": 0.99, "curve": 0.313, "c3": 0.699}, {"time": 1.3333}] + }, + "@leg-front-right": { + "translate": [ + {"curve": 0.313, "c3": 0.699}, {"time": 0.3333, "x": 0.02, "y": -16.89, "curve": 0.313, "c3": 0.699}, {"time": 0.6667, "x": -0.04, "y": 2.46, "curve": 0.313, "c3": 0.699}, + {"time": 1, "x": -0.02, "y": -18.9, "curve": 0.313, "c3": 0.699}, {"time": 1.3333} ] }, - "ear-right-dot-12": { + "@leg-front-left": { "translate": [ - {"x": 101.95, "y": 31.58, "curve": 0.374, "c2": 0.49, "c3": 0.751}, {"time": 1.35, "x": 171.9, "y": 8.82, "curve": 0.25, "c3": 0.75}, - {"time": 1.3833, "x": 36.53, "y": 52.86, "curve": 0.251, "c3": 0.624, "c4": 0.49}, {"time": 2.6667, "x": 101.95, "y": 31.58} + {"curve": 0.313, "c3": 0.699}, {"time": 0.3333, "x": 0.22, "y": -5.13, "curve": 0.313, "c3": 0.699}, {"time": 0.6667, "x": -0.03, "y": 1.81, "curve": 0.313, "c3": 0.699}, + {"time": 1, "x": 0.2, "y": -7.06, "curve": 0.313, "c3": 0.699}, {"time": 1.3333} ], "scale": [ - {"x": 1.047, "y": 1.061, "curve": 0.382, "c2": 0.58, "c3": 0.731}, {"time": 0.05, "x": 0.97, "y": 1.08, "curve": 0.25, "c3": 0.75}, - {"time": 0.2167, "x": 0.809, "y": 1.228, "curve": 0.25, "c3": 0.75}, {"time": 0.3833, "x": 0.996, "y": 0.995, "curve": 0.25, "c3": 0.75}, - {"time": 0.55, "x": 1.258, "y": 0.899, "curve": 0.25, "c3": 0.75}, {"time": 0.7167, "x": 1.069, "y": 1.069, "curve": 0.25, "c3": 0.75}, - {"time": 0.8833, "x": 1.187, "y": 0.949, "curve": 0.25, "c3": 0.75}, {"time": 1.05, "x": 1.004, "y": 1.019, "curve": 0.25, "c3": 0.75}, {"time": 1.35, "curve": "stepped"}, - {"time": 1.3833, "curve": 0.25, "c3": 0.75}, {"time": 1.55, "x": 1.159, "y": 0.726, "curve": 0.25, "c3": 0.75}, {"time": 1.7167, "x": 0.879, "y": 1.128, "curve": 0.25, "c3": 0.75}, - {"time": 1.8833, "x": 1.23, "y": 0.878, "curve": 0.25, "c3": 0.75}, {"time": 2.05, "x": 1.057, "y": 1.017, "curve": 0.25, "c3": 0.75}, - {"time": 2.2167, "x": 1.209, "y": 0.882, "curve": 0.25, "c3": 0.75}, {"time": 2.3833, "x": 0.956, "y": 1.174, "curve": 0.25, "c3": 0.75}, - {"time": 2.55, "x": 1.285, "y": 1.001, "curve": 0.243, "c3": 0.655, "c4": 0.63}, {"time": 2.6667, "x": 1.047, "y": 1.061} + {"curve": 0.313, "c3": 0.699}, {"time": 0.3333, "x": 0.905, "curve": 0.313, "c3": 0.699}, {"time": 0.6667, "curve": 0.313, "c3": 0.699}, + {"time": 1, "x": 0.905, "curve": 0.313, "c3": 0.699}, {"time": 1.3333} ] }, - "ear-left-dot-08": { + "@leg-back-left": { "translate": [ - {"x": 107.51, "y": -38.51, "curve": 0.348, "c2": 0.39, "c3": 0.757}, {"time": 1.8, "x": 183.99, "y": -12.09, "curve": 0.25, "c3": 0.75}, - {"time": 1.8333, "x": 80.26, "y": -47.93, "curve": 0.267, "c3": 0.618, "c4": 0.42}, {"time": 2.6667, "x": 107.51, "y": -38.51} + {"curve": 0.313, "c3": 0.699}, {"time": 0.3333, "x": 0.22, "y": -4.11, "curve": 0.313, "c3": 0.699}, {"time": 0.6667, "x": -0.03, "y": 1.69, "curve": 0.313, "c3": 0.699}, + {"time": 1, "x": 0.2, "y": -5.68, "curve": 0.313, "c3": 0.699}, {"time": 1.3333} ], "scale": [ - {"x": 1.209, "y": 0.882, "curve": 0.25, "c3": 0.75}, {"time": 0.1667, "x": 0.956, "y": 1.174, "curve": 0.25, "c3": 0.75}, - {"time": 0.3333, "x": 1.285, "y": 1.001, "curve": 0.25, "c3": 0.75}, {"time": 0.5, "x": 0.97, "y": 1.08, "curve": 0.25, "c3": 0.75}, - {"time": 0.6667, "x": 0.809, "y": 1.228, "curve": 0.25, "c3": 0.75}, {"time": 0.8333, "x": 0.996, "y": 0.995, "curve": 0.25, "c3": 0.75}, - {"time": 1, "x": 1.258, "y": 0.899, "curve": 0.25, "c3": 0.75}, {"time": 1.1667, "x": 1.069, "y": 1.069, "curve": 0.25, "c3": 0.75}, - {"time": 1.3333, "x": 1.187, "y": 0.949, "curve": 0.25, "c3": 0.75}, {"time": 1.5, "x": 1.004, "y": 1.019, "curve": 0.25, "c3": 0.75}, {"time": 1.8, "curve": "stepped"}, - {"time": 1.8333, "curve": 0.25, "c3": 0.75}, {"time": 2, "x": 1.159, "y": 0.726, "curve": 0.25, "c3": 0.75}, {"time": 2.1667, "x": 0.879, "y": 1.128, "curve": 0.25, "c3": 0.75}, - {"time": 2.3333, "x": 1.23, "y": 0.878, "curve": 0.25, "c3": 0.75}, {"time": 2.5, "x": 1.057, "y": 1.017, "curve": 0.25, "c3": 0.75}, {"time": 2.6667, "x": 1.209, "y": 0.882} + {"curve": 0.313, "c3": 0.699}, {"time": 0.3333, "x": 0.943, "curve": 0.313, "c3": 0.699}, {"time": 0.6667, "curve": 0.313, "c3": 0.699}, + {"time": 1, "x": 0.943, "curve": 0.313, "c3": 0.699}, {"time": 1.3333} ] }, - "ear-right-dot-15": { - "translate": [ - {"x": 88.47, "y": -33.22, "curve": 0.378, "c2": 0.52, "c3": 0.748}, {"time": 1.2333, "x": 149.07, "y": -62.9, "curve": 0.25, "c3": 0.75}, - {"time": 1.2667, "x": 16.82, "y": 1.88, "curve": 0.248, "c3": 0.628, "c4": 0.52}, {"time": 2.6667, "x": 88.47, "y": -33.22} - ], + "@pivot-main": { "scale": [ - {"x": 0.911, "y": 1.135, "curve": 0.363, "c2": 0.44, "c3": 0.755}, {"time": 0.1, "x": 0.809, "y": 1.228, "curve": 0.25, "c3": 0.75}, - {"time": 0.2667, "x": 0.996, "y": 0.995, "curve": 0.25, "c3": 0.75}, {"time": 0.4333, "x": 1.258, "y": 0.899, "curve": 0.25, "c3": 0.75}, - {"time": 0.6, "x": 1.069, "y": 1.069, "curve": 0.25, "c3": 0.75}, {"time": 0.7667, "x": 1.187, "y": 0.949, "curve": 0.25, "c3": 0.75}, - {"time": 0.9333, "x": 1.004, "y": 1.019, "curve": 0.25, "c3": 0.75}, {"time": 1.2333, "curve": "stepped"}, {"time": 1.2667, "curve": 0.25, "c3": 0.75}, - {"time": 1.4333, "x": 1.159, "y": 0.726, "curve": 0.25, "c3": 0.75}, {"time": 1.6, "x": 0.879, "y": 1.128, "curve": 0.25, "c3": 0.75}, - {"time": 1.7667, "x": 1.23, "y": 0.878, "curve": 0.25, "c3": 0.75}, {"time": 1.9333, "x": 1.057, "y": 1.017, "curve": 0.25, "c3": 0.75}, - {"time": 2.1, "x": 1.209, "y": 0.882, "curve": 0.25, "c3": 0.75}, {"time": 2.2667, "x": 0.956, "y": 1.174, "curve": 0.25, "c3": 0.75}, - {"time": 2.4333, "x": 1.285, "y": 1.001, "curve": 0.25, "c3": 0.75}, {"time": 2.6, "x": 0.97, "y": 1.08, "curve": 0.258, "c3": 0.619, "c4": 0.45}, - {"time": 2.6667, "x": 0.911, "y": 1.135} + {"curve": 0.313, "c3": 0.699}, {"time": 0.3333, "y": 0.98, "curve": 0.313, "c3": 0.699}, {"time": 0.6667, "curve": 0.313, "c3": 0.699}, + {"time": 1, "y": 0.98, "curve": 0.313, "c3": 0.699}, {"time": 1.3333} ] }, - "ear-left-dot-09": { - "translate": [ - {"x": 164.03, "y": -48.48, "curve": 0.345, "c2": 0.66, "c3": 0.679}, {"time": 0.1, "x": 165.25, "y": -48.85, "curve": 0.25, "c3": 0.75}, - {"time": 0.1333, "x": 37.71, "y": -10.29, "curve": 0.27, "c3": 0.619, "c4": 0.41}, {"time": 0.9, "x": 67.19, "y": -19.21, "curve": 0.338, "c2": 0.35, "c3": 0.743, "c4": 0.94}, - {"time": 2.6667, "x": 164.03, "y": -48.48} - ], + "tail": { + "rotate": [{"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "angle": 4.54, "curve": 0.313, "c3": 0.699}, {"time": 1, "angle": -9.06, "curve": 0.313, "c3": 0.699}, {"time": 1.3333}] + }, + "back": { + "rotate": [{"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "angle": -4.27, "curve": 0.313, "c3": 0.699}, {"time": 1, "angle": 2.83, "curve": 0.313, "c3": 0.699}, {"time": 1.3333}] + }, + "ear-right": {"rotate": [{"curve": 0.461, "c3": 0.543}, {"time": 0.6667, "angle": -3.91, "curve": 0.461, "c3": 0.543}, {"time": 1.3333}]}, + "ear-left": {"rotate": [{"curve": 0.461, "c3": 0.543}, {"time": 0.6667, "angle": -3.92, "curve": 0.461, "c3": 0.543}, {"time": 1.3333}]}, + "@shadow": { "scale": [ - {"x": 1.001, "y": 1.005, "curve": 0.382, "c2": 0.57, "c3": 0.735}, {"time": 0.1, "curve": "stepped"}, {"time": 0.1333, "curve": 0.25, "c3": 0.75}, - {"time": 0.3, "x": 1.159, "y": 0.726, "curve": 0.25, "c3": 0.75}, {"time": 0.4667, "x": 0.879, "y": 1.128, "curve": 0.25, "c3": 0.75}, - {"time": 0.6333, "x": 1.23, "y": 0.878, "curve": 0.25, "c3": 0.75}, {"time": 0.8, "x": 1.057, "y": 1.017, "curve": 0.245, "c3": 0.637, "c4": 0.56}, - {"time": 0.9, "x": 1.153, "y": 0.932, "curve": 0.381, "c2": 0.55, "c3": 0.742}, {"time": 0.9667, "x": 1.209, "y": 0.882, "curve": 0.25, "c3": 0.75}, - {"time": 1.1333, "x": 0.956, "y": 1.174, "curve": 0.25, "c3": 0.75}, {"time": 1.3, "x": 1.285, "y": 1.001, "curve": 0.25, "c3": 0.75}, - {"time": 1.4667, "x": 0.97, "y": 1.08, "curve": 0.25, "c3": 0.75}, {"time": 1.6333, "x": 0.809, "y": 1.228, "curve": 0.25, "c3": 0.75}, - {"time": 1.8, "x": 0.996, "y": 0.995, "curve": 0.25, "c3": 0.75}, {"time": 1.9667, "x": 1.258, "y": 0.899, "curve": 0.25, "c3": 0.75}, - {"time": 2.1333, "x": 1.069, "y": 1.069, "curve": 0.25, "c3": 0.75}, {"time": 2.3, "x": 1.187, "y": 0.949, "curve": 0.25, "c3": 0.75}, - {"time": 2.4667, "x": 1.004, "y": 1.019, "curve": 0.243, "c3": 0.649, "c4": 0.6}, {"time": 2.6667, "x": 1.001, "y": 1.005} + {"curve": 0.306, "c3": 0.695}, {"time": 0.3333, "x": 1.05, "y": 1.05, "curve": 0.306, "c3": 0.695}, {"time": 0.6667, "curve": 0.306, "c3": 0.695}, + {"time": 1, "x": 1.05, "y": 1.05, "curve": 0.306, "c3": 0.695}, {"time": 1.3333} ] }, - "ear-left-dot-10": { - "translate": [ - {"x": 60.95, "y": -9.83, "curve": 0.318, "c2": 0.28, "c3": 0.757}, {"time": 2.1333, "x": 188.46, "y": -29.29, "curve": 0.25, "c3": 0.75}, - {"time": 2.1667, "x": 43.72, "y": -7.2, "curve": 0.286, "c3": 0.626, "c4": 0.38}, {"time": 2.6667, "x": 60.95, "y": -9.83} + "mouth-accessory": { + "rotate": [{"time": 0.5833}, {"time": 1, "angle": -120}], + "scale": [{"time": 0.5667}, {"time": 0.5833, "x": 0.6, "y": 0.6}, {"time": 0.8}, {"time": 1, "x": 0.6, "y": 0.6}, {"time": 1.0167}] + }, + "body-fur-1": { + "rotate": [ + {"angle": 10.51, "curve": 0.333, "c2": 0.33, "c3": 0.758}, {"time": 0.25, "angle": -5.73, "curve": 0.25, "c3": 0.75}, + {"time": 0.5833, "angle": 14.18, "curve": 0.276, "c3": 0.621, "c4": 0.4}, {"time": 0.6667, "angle": 10.51, "curve": 0.333, "c2": 0.33, "c3": 0.758}, + {"time": 0.9167, "angle": -5.73, "curve": 0.25, "c3": 0.75}, {"time": 1.25, "angle": 14.18, "curve": 0.276, "c3": 0.621, "c4": 0.4}, {"time": 1.3333, "angle": 10.51} + ] + }, + "body-fur-2": { + "rotate": [ + {"angle": 13.84, "curve": 0.348, "c2": 0.66, "c3": 0.682}, {"time": 0.0167, "angle": 14.18, "curve": 0.25, "c3": 0.75}, + {"time": 0.35, "angle": -5.73, "curve": 0.247, "c3": 0.729, "c4": 0.91}, {"time": 0.6667, "angle": 13.84, "curve": 0.348, "c2": 0.66, "c3": 0.682}, + {"time": 0.6833, "angle": 14.18, "curve": 0.243, "c3": 0.655, "c4": 0.63}, {"time": 0.9167, "angle": -0.91, "curve": 0.382, "c2": 0.58, "c3": 0.731}, + {"time": 1.0167, "angle": -5.73, "curve": 0.247, "c3": 0.729, "c4": 0.91}, {"time": 1.3333, "angle": 13.84} + ] + }, + "body-fur-3": { + "rotate": [ + {"angle": 5.54, "curve": 0.37, "c2": 0.47, "c3": 0.753}, {"time": 0.1833, "angle": -5.73, "curve": 0.25, "c3": 0.75}, + {"time": 0.5167, "angle": 14.18, "curve": 0.253, "c3": 0.621, "c4": 0.48}, {"time": 0.6667, "angle": 5.54, "curve": 0.37, "c2": 0.47, "c3": 0.753}, + {"time": 0.85, "angle": -5.73, "curve": 0.25, "c3": 0.75}, {"time": 1.1833, "angle": 14.18, "curve": 0.253, "c3": 0.621, "c4": 0.48}, {"time": 1.3333, "angle": 5.54} + ] + }, + "body-fur-4": { + "rotate": [ + {"angle": 12.53, "curve": 0.306, "c2": 0.23, "c3": 0.756}, {"time": 0.2833, "angle": -5.73, "curve": 0.25, "c3": 0.75}, + {"time": 0.6167, "angle": 14.18, "curve": 0.294, "c3": 0.631, "c4": 0.37}, {"time": 0.6667, "angle": 12.53, "curve": 0.291, "c2": 0.19, "c3": 0.671, "c4": 0.68}, + {"time": 0.85, "angle": -0.91, "curve": 0.382, "c2": 0.58, "c3": 0.731}, {"time": 0.95, "angle": -5.73, "curve": 0.25, "c3": 0.75}, + {"time": 1.2833, "angle": 14.18, "curve": 0.294, "c3": 0.631, "c4": 0.37}, {"time": 1.3333, "angle": 12.53} + ] + }, + "body-fur-5": { + "rotate": [ + {"angle": 6.86, "curve": 0.363, "c2": 0.44, "c3": 0.755}, {"time": 0.2, "angle": -5.73, "curve": 0.25, "c3": 0.75}, + {"time": 0.5333, "angle": 14.18, "curve": 0.258, "c3": 0.619, "c4": 0.45}, {"time": 0.6667, "angle": 6.86, "curve": 0.363, "c2": 0.44, "c3": 0.755}, + {"time": 0.8667, "angle": -5.73, "curve": 0.25, "c3": 0.75}, {"time": 1.2, "angle": 14.18, "curve": 0.258, "c3": 0.619, "c4": 0.45}, {"time": 1.3333, "angle": 6.86} + ] + }, + "body-fur-6": { + "rotate": [ + {"angle": 13.33, "curve": 0.289, "c2": 0.17, "c3": 0.755}, {"time": 0.3, "angle": -5.73, "curve": 0.25, "c3": 0.75}, + {"time": 0.6333, "angle": 14.18, "curve": 0.305, "c3": 0.64, "c4": 0.36}, {"time": 0.6667, "angle": 13.34, "curve": 0.277, "c2": 0.14, "c3": 0.667, "c4": 0.67}, + {"time": 0.8667, "angle": -0.91, "curve": 0.382, "c2": 0.58, "c3": 0.731}, {"time": 0.9667, "angle": -5.73, "curve": 0.25, "c3": 0.75}, + {"time": 1.3, "angle": 14.18, "curve": 0.305, "c3": 0.64, "c4": 0.36}, {"time": 1.3333, "angle": 13.33} + ] + }, + "body-fur-7": { + "rotate": [ + {"angle": 2.91, "curve": 0.379, "c2": 0.52, "c3": 0.747}, {"time": 0.15, "angle": -5.73, "curve": 0.25, "c3": 0.75}, + {"time": 0.4833, "angle": 14.18, "curve": 0.247, "c3": 0.63, "c4": 0.53}, {"time": 0.6667, "angle": 2.91, "curve": 0.379, "c2": 0.52, "c3": 0.747}, + {"time": 0.8167, "angle": -5.73, "curve": 0.25, "c3": 0.75}, {"time": 1.15, "angle": 14.18, "curve": 0.247, "c3": 0.63, "c4": 0.53}, {"time": 1.3333, "angle": 2.91} + ] + }, + "body-fur-8": { + "rotate": [ + {"angle": -0.91, "curve": 0.382, "c2": 0.58, "c3": 0.731}, {"time": 0.1, "angle": -5.73, "curve": 0.25, "c3": 0.75}, + {"time": 0.4333, "angle": 14.18, "curve": 0.243, "c3": 0.655, "c4": 0.63}, {"time": 0.6667, "angle": -0.91, "curve": 0.382, "c2": 0.58, "c3": 0.731}, + {"time": 0.7667, "angle": -5.73, "curve": 0.25, "c3": 0.75}, {"time": 1.1, "angle": 14.18, "curve": 0.243, "c3": 0.655, "c4": 0.63}, {"time": 1.3333, "angle": -0.91} + ] + }, + "body-fur-9": { + "rotate": [ + {"angle": 6.86, "curve": 0.363, "c2": 0.44, "c3": 0.755}, {"time": 0.2, "angle": -5.73, "curve": 0.25, "c3": 0.75}, + {"time": 0.5333, "angle": 14.18, "curve": 0.258, "c3": 0.619, "c4": 0.45}, {"time": 0.6667, "angle": 6.8, "curve": 0.333, "c2": 0.33, "c3": 0.68, "c4": 0.71}, + {"time": 0.7667, "angle": -0.91, "curve": 0.382, "c2": 0.58, "c3": 0.731}, {"time": 0.8667, "angle": -5.73, "curve": 0.25, "c3": 0.75}, + {"time": 1.2, "angle": 14.18, "curve": 0.258, "c3": 0.619, "c4": 0.45}, {"time": 1.3333, "angle": 6.86} + ] + } + } + }, + "1326541922": { + "slots": { + "eyes": {"attachment": [{"time": 0.0833, "name": "eyes-shut"}, {"time": 0.1667, "name": "eyes-angry"}, {"time": 0.5833, "name": "eyes-shut"}, {"time": 0.6667, "name": "eyes"}]}, + "mouth": {"attachment": [{"time": 0.0833, "name": "mouth-bite"}, {"time": 0.3667, "name": "mouth-open"}, {"time": 0.5833, "name": "mouth"}]} + }, + "bones": { + "@pivot-back": { + "rotate": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.15, "angle": 3.67, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.3333, "angle": -14.29, "curve": 0.854, "c4": 0.1}, + {"time": 0.3667, "angle": 15.82}, {"time": 0.45, "angle": 16.67, "curve": 0.315, "c4": 0.8}, {"time": 0.5667, "angle": 4.4, "curve": 0, "c2": 0.1, "c3": 0.85}, + {"time": 0.6333, "angle": 6.79, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.8333} ], - "scale": [ - {"x": 1.23, "y": 0.878, "curve": 0.25, "c3": 0.75}, {"time": 0.1667, "x": 1.057, "y": 1.017, "curve": 0.25, "c3": 0.75}, - {"time": 0.3333, "x": 1.209, "y": 0.882, "curve": 0.25, "c3": 0.75}, {"time": 0.5, "x": 0.956, "y": 1.174, "curve": 0.25, "c3": 0.75}, - {"time": 0.6667, "x": 1.285, "y": 1.001, "curve": 0.25, "c3": 0.75}, {"time": 0.8333, "x": 0.97, "y": 1.08, "curve": 0.25, "c3": 0.75}, - {"time": 1, "x": 0.809, "y": 1.228, "curve": 0.25, "c3": 0.75}, {"time": 1.1667, "x": 0.996, "y": 0.995, "curve": 0.25, "c3": 0.75}, - {"time": 1.3333, "x": 1.258, "y": 0.899, "curve": 0.25, "c3": 0.75}, {"time": 1.5, "x": 1.069, "y": 1.069, "curve": 0.25, "c3": 0.75}, - {"time": 1.6667, "x": 1.187, "y": 0.949, "curve": 0.25, "c3": 0.75}, {"time": 1.8333, "x": 1.004, "y": 1.019, "curve": 0.25, "c3": 0.75}, {"time": 2.1333, "curve": "stepped"}, - {"time": 2.1667, "curve": 0.25, "c3": 0.75}, {"time": 2.3333, "x": 1.159, "y": 0.726, "curve": 0.25, "c3": 0.75}, {"time": 2.5, "x": 0.879, "y": 1.128, "curve": 0.25, "c3": 0.75}, - {"time": 2.6667, "x": 1.23, "y": 0.878} + "translate": [ + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.2167, "x": 8.02, "curve": 0, "c2": 0.4, "c3": 0.383}, {"time": 0.3333, "x": -54.3, "y": 61.69, "curve": 0.854, "c4": 0.1}, + {"time": 0.3667, "x": -60.41, "y": 130.13}, {"time": 0.45, "x": -60.41, "y": 130.01, "curve": 0.315, "c4": 0.8}, {"time": 0.5667} ] }, - "ear-left-dot-11": { + "@leg-front-right": { "translate": [ - {"x": 35.15, "y": -8.78, "curve": 0.287, "c2": 0.16, "c3": 0.755}, {"time": 2.3833, "x": 162.5, "y": -30.16, "curve": 0.25, "c3": 0.75}, - {"time": 2.4167, "x": 30.05, "y": -7.92, "curve": 0.306, "c3": 0.641, "c4": 0.36}, {"time": 2.6667, "x": 35.15, "y": -8.78} + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.2167, "x": -18.54, "y": -11.57}, {"time": 0.25, "x": -23.07, "y": 10.08, "curve": 0, "c2": 0.4, "c3": 0.383}, + {"time": 0.3333, "x": 29.92, "y": -4.24, "curve": 0.854, "c4": 0.1}, {"time": 0.3667, "x": 22.95, "y": 2.68, "curve": "stepped"}, + {"time": 0.45, "x": 22.95, "y": 2.68, "curve": 0.157, "c2": 0.33, "c3": 0.727}, {"time": 0.5333, "x": 29.92, "y": -4.24, "curve": 0.779, "c4": 0.4}, + {"time": 0.5667, "x": -1.45, "y": -24.11, "curve": "stepped"}, {"time": 0.6333, "x": -1.45, "y": -24.11, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.6667} ], "scale": [ - {"x": 1.019, "y": 0.927, "curve": 0.375, "c2": 0.5, "c3": 0.75}, {"time": 0.0833, "x": 0.879, "y": 1.128, "curve": 0.25, "c3": 0.75}, - {"time": 0.25, "x": 1.23, "y": 0.878, "curve": 0.25, "c3": 0.75}, {"time": 0.4167, "x": 1.057, "y": 1.017, "curve": 0.25, "c3": 0.75}, - {"time": 0.5833, "x": 1.209, "y": 0.882, "curve": 0.25, "c3": 0.75}, {"time": 0.75, "x": 0.956, "y": 1.174, "curve": 0.25, "c3": 0.75}, - {"time": 0.9167, "x": 1.285, "y": 1.001, "curve": 0.25, "c3": 0.75}, {"time": 1.0833, "x": 0.97, "y": 1.08, "curve": 0.25, "c3": 0.75}, - {"time": 1.25, "x": 0.809, "y": 1.228, "curve": 0.25, "c3": 0.75}, {"time": 1.4167, "x": 0.996, "y": 0.995, "curve": 0.25, "c3": 0.75}, - {"time": 1.5833, "x": 1.258, "y": 0.899, "curve": 0.25, "c3": 0.75}, {"time": 1.75, "x": 1.069, "y": 1.069, "curve": 0.25, "c3": 0.75}, - {"time": 1.9167, "x": 1.187, "y": 0.949, "curve": 0.25, "c3": 0.75}, {"time": 2.0833, "x": 1.004, "y": 1.019, "curve": 0.25, "c3": 0.75}, {"time": 2.3833, "curve": "stepped"}, - {"time": 2.4167, "curve": 0.25, "c3": 0.75}, {"time": 2.5833, "x": 1.159, "y": 0.726, "curve": 0.25, "c3": 0.625, "c4": 0.5}, {"time": 2.6667, "x": 1.019, "y": 0.927} + {"time": 0.2, "curve": 0.315, "c4": 0.8}, {"time": 0.25, "x": 1.5, "curve": 0, "c2": 0.3, "c3": 0.539}, {"time": 0.3333, "curve": 0.854, "c4": 0.1}, {"time": 0.3667, "x": 1.5}, + {"time": 0.45, "x": 1.51, "curve": 0.157, "c2": 0.33, "c3": 0.727}, {"time": 0.4833} ] }, - "ear-left-dot-12": { + "@leg-front-left": { "translate": [ - {"x": 148.7, "y": -51.89, "curve": 0.365, "c2": 0.64, "c3": 0.701}, {"time": 0.3333, "x": 157.59, "y": -54.88, "curve": 0.25, "c3": 0.75}, - {"time": 0.3667, "x": 18.7, "y": -8.15, "curve": 0.244, "c3": 0.702, "c4": 0.8}, {"time": 2.6667, "x": 148.7, "y": -51.89} - ], - "scale": [ - {"x": 1.028, "y": 1.01, "curve": 0.375, "c2": 0.62, "c3": 0.716}, {"time": 0.0333, "x": 1.004, "y": 1.019, "curve": 0.25, "c3": 0.75}, {"time": 0.3333, "curve": "stepped"}, - {"time": 0.3667, "curve": 0.25, "c3": 0.75}, {"time": 0.5333, "x": 1.159, "y": 0.726, "curve": 0.25, "c3": 0.75}, {"time": 0.7, "x": 0.879, "y": 1.128, "curve": 0.25, "c3": 0.75}, - {"time": 0.8667, "x": 1.23, "y": 0.878, "curve": 0.25, "c3": 0.75}, {"time": 1.0333, "x": 1.057, "y": 1.017, "curve": 0.25, "c3": 0.75}, - {"time": 1.2, "x": 1.209, "y": 0.882, "curve": 0.25, "c3": 0.75}, {"time": 1.3667, "x": 0.956, "y": 1.174, "curve": 0.25, "c3": 0.75}, - {"time": 1.5333, "x": 1.285, "y": 1.001, "curve": 0.25, "c3": 0.75}, {"time": 1.7, "x": 0.97, "y": 1.08, "curve": 0.25, "c3": 0.75}, - {"time": 1.8667, "x": 0.809, "y": 1.228, "curve": 0.25, "c3": 0.75}, {"time": 2.0333, "x": 0.996, "y": 0.995, "curve": 0.25, "c3": 0.75}, - {"time": 2.2, "x": 1.258, "y": 0.899, "curve": 0.25, "c3": 0.75}, {"time": 2.3667, "x": 1.069, "y": 1.069, "curve": 0.25, "c3": 0.75}, - {"time": 2.5333, "x": 1.187, "y": 0.949, "curve": 0.243, "c3": 0.68, "c4": 0.71}, {"time": 2.6667, "x": 1.028, "y": 1.01} + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.2167, "x": -6.84, "y": -9.77, "curve": "stepped"}, {"time": 0.5667, "x": -6.84, "y": -9.77, "curve": 0, "c2": 0.1, "c3": 0.85}, + {"time": 0.6333, "x": -6.29, "y": -18.69, "curve": 0, "c2": 0.23, "c3": 0.365, "c4": 0.58}, {"time": 0.6667, "x": -3.64, "y": -2.46, "curve": 0.177, "c2": 0.35, "c3": 0.731}, + {"time": 0.8333} ] }, - "ear-right-dot-19": { + "@leg-back-left": { "translate": [ - {"x": 157.18, "y": -73.74, "curve": 0.362, "c2": 0.64, "c3": 0.698}, {"time": 0.3, "x": 164.98, "y": -77.61, "curve": 0.25, "c3": 0.75}, - {"time": 0.3333, "x": 20.12, "y": -5.67, "curve": 0.245, "c3": 0.706, "c4": 0.81}, {"time": 2.6667, "x": 157.18, "y": -73.74} + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.2167, "x": -0.11, "y": -2.73, "curve": "stepped"}, {"time": 0.5667, "x": -0.11, "y": -2.73, "curve": 0, "c2": 0.1, "c3": 0.85}, + {"time": 0.6333, "x": -0.46, "y": -6.19, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.8333} + ] + }, + "@pivot-main": { + "translate": [ + {"time": 0.15, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "x": -73.35, "y": 43, "curve": "stepped"}, {"time": 0.45, "x": -73.35, "y": 43, "curve": 0.315, "c4": 0.8}, + {"time": 0.5667, "x": -146.44, "curve": "stepped"}, {"time": 0.6333, "x": -146.44, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.7333, "x": -45.61, "y": 50.15, "curve": 0.315, "c4": 0.8}, {"time": 0.8333} ], - "scale": [ - {"x": 1.004, "y": 1.019, "curve": 0.25, "c3": 0.75}, {"time": 0.3, "curve": "stepped"}, {"time": 0.3333, "curve": 0.25, "c3": 0.75}, - {"time": 0.5, "x": 1.159, "y": 0.726, "curve": 0.25, "c3": 0.75}, {"time": 0.6667, "x": 0.879, "y": 1.128, "curve": 0.25, "c3": 0.75}, - {"time": 0.8333, "x": 1.23, "y": 0.878, "curve": 0.25, "c3": 0.75}, {"time": 1, "x": 1.057, "y": 1.017, "curve": 0.25, "c3": 0.75}, - {"time": 1.1667, "x": 1.209, "y": 0.882, "curve": 0.25, "c3": 0.75}, {"time": 1.3333, "x": 0.956, "y": 1.174, "curve": 0.25, "c3": 0.75}, - {"time": 1.5, "x": 1.285, "y": 1.001, "curve": 0.25, "c3": 0.75}, {"time": 1.6667, "x": 0.97, "y": 1.08, "curve": 0.25, "c3": 0.75}, - {"time": 1.8333, "x": 0.809, "y": 1.228, "curve": 0.25, "c3": 0.75}, {"time": 2, "x": 0.996, "y": 0.995, "curve": 0.25, "c3": 0.75}, - {"time": 2.1667, "x": 1.258, "y": 0.899, "curve": 0.25, "c3": 0.75}, {"time": 2.3333, "x": 1.069, "y": 1.069, "curve": 0.25, "c3": 0.75}, - {"time": 2.5, "x": 1.187, "y": 0.949, "curve": 0.25, "c3": 0.75}, {"time": 2.6667, "x": 1.004, "y": 1.019} + "scale": [{"time": 0.5667, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.6333, "y": 0.98, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.7333}] + }, + "leg-front-right-IK": { + "translate": [ + {"time": 0.15, "curve": 0, "c2": 0.18, "c3": 0.416, "c4": 0.58}, {"time": 0.2167, "x": 49.59, "y": 35.17}, {"time": 0.25, "x": -2.16, "y": 99.87, "curve": 0, "c2": 0.6, "c3": 0.237}, + {"time": 0.3333, "x": -158.6, "y": 254.45, "curve": 0.854, "c4": 0.1}, {"time": 0.3667, "x": -48.06, "y": 31.6}, {"time": 0.45, "x": -24.61, "y": 31.6, "curve": 0.315, "c4": 0.8}, + {"time": 0.5667, "curve": "stepped"}, {"time": 0.6333, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.6667, "x": -14.68, "y": -19.57, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.8333} ] }, - "ear-right-dot-11": { + "leg-front-left-IK": { "translate": [ - {"x": 15.23, "y": 41.39, "curve": 0.296, "c2": 0.19, "c3": 0.756}, {"time": 2.3167, "x": 132.18, "y": 11.57, "curve": 0.25, "c3": 0.75}, - {"time": 2.35, "x": 7.9, "y": 43.26, "curve": 0.3, "c3": 0.636, "c4": 0.36}, {"time": 2.6667, "x": 15.23, "y": 41.39} + {"time": 0.15, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "x": -54.88, "y": 124.95, "curve": 0.854, "c4": 0.1}, {"time": 0.3667, "x": 37.97, "y": 122.64}, + {"time": 0.45, "x": 48.96, "y": 138.43, "curve": 0.315, "c4": 0.8}, {"time": 0.5667, "curve": "stepped"}, {"time": 0.6333, "curve": 0, "c2": 0.1, "c3": 0.85}, + {"time": 0.6667, "x": -7.79, "y": -10.12, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.8333} + ] + }, + "leg-back-left-IK": { + "translate": [ + {"time": 0.0833, "curve": 0.332, "c3": 0.682, "c4": 0.41}, {"time": 0.2167, "x": 21.57, "y": 4.03, "curve": 0, "c2": 0.4, "c3": 0.383}, + {"time": 0.3333, "x": -50.73, "y": 91.08, "curve": 0.854, "c4": 0.1}, {"time": 0.3667, "x": 19.18, "y": 184.64}, {"time": 0.45, "x": 25.59, "y": 197.69, "curve": 0.315, "c4": 0.8}, + {"time": 0.5667, "curve": "stepped"}, {"time": 0.6333, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.75, "x": 24.35, "y": 13.92, "curve": 0.154, "c4": 0.9}, {"time": 0.8333} + ] + }, + "tail": { + "rotate": [ + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.15, "angle": 14.68, "curve": 0.315, "c4": 0.8}, {"time": 0.2167, "angle": -12.57}, + {"time": 0.3333, "angle": -14.89, "curve": 0.854, "c4": 0.1}, {"time": 0.3667, "angle": 25.96}, {"time": 0.45, "angle": 33.77}, + {"time": 0.6167, "angle": 26.39, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.7167, "angle": -14.8, "curve": 0.154, "c4": 0.9}, {"time": 0.8333} + ] + }, + "@shadow": { + "translate": [ + {"time": 0.15, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.3333, "x": -132.39, "curve": 0.854, "c4": 0.1}, {"time": 0.3667, "x": -111.3, "curve": "stepped"}, + {"time": 0.45, "x": -111.3, "curve": 0.315, "c4": 0.8}, {"time": 0.5667, "x": -132.39, "curve": "stepped"}, {"time": 0.6333, "x": -132.39, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.8333} ], "scale": [ - {"x": 0.891, "y": 1.111, "curve": 0.36, "c2": 0.64, "c3": 0.695}, {"time": 0.0167, "x": 0.879, "y": 1.128, "curve": 0.25, "c3": 0.75}, - {"time": 0.1833, "x": 1.23, "y": 0.878, "curve": 0.25, "c3": 0.75}, {"time": 0.35, "x": 1.057, "y": 1.017, "curve": 0.25, "c3": 0.75}, - {"time": 0.5167, "x": 1.209, "y": 0.882, "curve": 0.25, "c3": 0.75}, {"time": 0.6833, "x": 0.956, "y": 1.174, "curve": 0.25, "c3": 0.75}, - {"time": 0.85, "x": 1.285, "y": 1.001, "curve": 0.25, "c3": 0.75}, {"time": 1.0167, "x": 0.97, "y": 1.08, "curve": 0.25, "c3": 0.75}, - {"time": 1.1833, "x": 0.809, "y": 1.228, "curve": 0.25, "c3": 0.75}, {"time": 1.35, "x": 0.996, "y": 0.995, "curve": 0.25, "c3": 0.75}, - {"time": 1.5167, "x": 1.258, "y": 0.899, "curve": 0.25, "c3": 0.75}, {"time": 1.6833, "x": 1.069, "y": 1.069, "curve": 0.25, "c3": 0.75}, - {"time": 1.85, "x": 1.187, "y": 0.949, "curve": 0.25, "c3": 0.75}, {"time": 2.0167, "x": 1.004, "y": 1.019, "curve": 0.25, "c3": 0.75}, {"time": 2.3167, "curve": "stepped"}, - {"time": 2.35, "curve": 0.25, "c3": 0.75}, {"time": 2.5167, "x": 1.159, "y": 0.726, "curve": 0.245, "c3": 0.711, "c4": 0.83}, {"time": 2.6667, "x": 0.891, "y": 1.111} + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.15, "x": 1.05, "y": 1.05, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.3333, "x": 0.93, "y": 0.93, "curve": 0.854, "c4": 0.1}, + {"time": 0.3667, "x": 0.95, "y": 0.95}, {"time": 0.45, "x": 0.97, "y": 0.97, "curve": 0.315, "c4": 0.8}, {"time": 0.5667, "x": 1.05, "y": 1.05, "curve": 0, "c2": 0.1, "c3": 0.85}, + {"time": 0.6333, "x": 1.07, "y": 1.07, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.8333} ] }, - "ear-right-dot-14": { + "body-fur-8": { + "rotate": [ + {"angle": 5.73, "curve": 0.382, "c2": 0.56, "c3": 0.74}, {"time": 0.05, "curve": 0.25, "c3": 0.75}, {"time": 0.2, "angle": 18.8, "curve": 0.25, "c3": 0.75}, + {"time": 0.4, "angle": -26.83, "curve": 0.25, "c3": 0.75}, {"time": 0.4833, "angle": 37.79, "curve": 0.25, "c3": 0.75}, {"time": 0.65, "angle": -23.11, "curve": 0.25, "c3": 0.75}, + {"time": 0.75, "angle": 17.07, "curve": 0.244, "c3": 0.641, "c4": 0.57}, {"time": 0.8333, "angle": -0.91} + ] + }, + "body-fur-1": { + "rotate": [ + {"angle": 8.53, "curve": 0.375, "c2": 0.5, "c3": 0.75}, {"time": 0.0667, "curve": 0.25, "c3": 0.75}, {"time": 0.2167, "angle": 18.8, "curve": 0.25, "c3": 0.75}, + {"time": 0.4167, "angle": -26.83, "curve": 0.25, "c3": 0.75}, {"time": 0.5, "angle": 37.79, "curve": 0.25, "c3": 0.75}, {"time": 0.6667, "angle": -23.11, "curve": 0.25, "c3": 0.75}, + {"time": 0.7667, "angle": 17.07, "curve": 0.25, "c3": 0.625, "c4": 0.5}, {"time": 0.8333, "angle": 10.51} + ] + }, + "body-fur-2": { + "rotate": [ + {"angle": 13.89, "curve": 0.314, "c2": 0.27, "c3": 0.686, "c4": 0.73}, {"time": 0.0667, "angle": 3.15, "curve": 0.379, "c2": 0.6, "c3": 0.724}, {"time": 0.1, "curve": 0.25, "c3": 0.75}, + {"time": 0.25, "angle": 18.8, "curve": 0.25, "c3": 0.75}, {"time": 0.45, "angle": -26.83, "curve": 0.25, "c3": 0.75}, {"time": 0.5333, "angle": 37.79, "curve": 0.25, "c3": 0.75}, + {"time": 0.7, "angle": -23.11, "curve": 0.25, "c3": 0.75}, {"time": 0.8, "angle": 17.07, "curve": 0.276, "c3": 0.621, "c4": 0.4}, {"time": 0.8333, "angle": 13.84} + ] + }, + "body-fur-3": { + "rotate": [ + {"angle": 5.73, "curve": 0.382, "c2": 0.56, "c3": 0.74}, {"time": 0.05, "curve": 0.25, "c3": 0.75}, {"time": 0.2, "angle": 18.8, "curve": 0.25, "c3": 0.75}, + {"time": 0.4, "angle": -26.83, "curve": 0.25, "c3": 0.75}, {"time": 0.4833, "angle": 37.79, "curve": 0.25, "c3": 0.75}, {"time": 0.65, "angle": -23.11, "curve": 0.25, "c3": 0.75}, + {"time": 0.75, "angle": 17.07, "curve": 0.244, "c3": 0.641, "c4": 0.57}, {"time": 0.8333, "angle": 5.54} + ] + }, + "body-fur-4": { + "rotate": [ + {"angle": 11.28, "curve": 0.333, "c2": 0.33, "c3": 0.688, "c4": 0.73}, {"time": 0.05, "angle": 3.15, "curve": 0.379, "c2": 0.6, "c3": 0.724}, {"time": 0.0833, "curve": 0.25, "c3": 0.75}, + {"time": 0.2333, "angle": 18.8, "curve": 0.25, "c3": 0.75}, {"time": 0.4333, "angle": -26.83, "curve": 0.25, "c3": 0.75}, {"time": 0.5167, "angle": 37.79, "curve": 0.25, "c3": 0.75}, + {"time": 0.6833, "angle": -23.11, "curve": 0.25, "c3": 0.75}, {"time": 0.7833, "angle": 17.07, "curve": 0.26, "c3": 0.618, "c4": 0.44}, {"time": 0.8333, "angle": 12.53} + ] + }, + "body-fur-5": { + "rotate": [ + {"angle": 3.15, "curve": 0.379, "c2": 0.6, "c3": 0.724}, {"time": 0.0333, "curve": 0.25, "c3": 0.75}, {"time": 0.1833, "angle": 18.8, "curve": 0.25, "c3": 0.75}, + {"time": 0.3833, "angle": -26.83, "curve": 0.25, "c3": 0.75}, {"time": 0.4667, "angle": 37.79, "curve": 0.25, "c3": 0.75}, {"time": 0.6333, "angle": -23.11, "curve": 0.25, "c3": 0.75}, + {"time": 0.7333, "angle": 17.07, "curve": 0.242, "c3": 0.667, "c4": 0.67}, {"time": 0.8333, "angle": 6.86} + ] + }, + "body-fur-6": { + "rotate": [ + {"angle": 8.47, "curve": 0.343, "c2": 0.36, "c3": 0.686, "c4": 0.73}, {"time": 0.0333, "angle": 3.15, "curve": 0.379, "c2": 0.6, "c3": 0.724}, + {"time": 0.0667, "curve": 0.25, "c3": 0.75}, {"time": 0.2167, "angle": 18.8, "curve": 0.25, "c3": 0.75}, {"time": 0.4167, "angle": -26.83, "curve": 0.25, "c3": 0.75}, + {"time": 0.5, "angle": 37.79, "curve": 0.25, "c3": 0.75}, {"time": 0.6667, "angle": -23.11, "curve": 0.25, "c3": 0.75}, + {"time": 0.7667, "angle": 17.07, "curve": 0.25, "c3": 0.625, "c4": 0.5}, {"time": 0.8333, "angle": 13.33} + ] + }, + "body-fur-7": { + "rotate": [ + {"angle": 1.07, "curve": 0.364, "c2": 0.64, "c3": 0.701}, {"time": 0.0167, "curve": 0.25, "c3": 0.75}, {"time": 0.1667, "angle": 18.8, "curve": 0.25, "c3": 0.75}, + {"time": 0.3667, "angle": -26.83, "curve": 0.25, "c3": 0.75}, {"time": 0.45, "angle": 37.79, "curve": 0.25, "c3": 0.75}, {"time": 0.6167, "angle": -23.11, "curve": 0.25, "c3": 0.75}, + {"time": 0.7167, "angle": 17.07, "curve": 0.244, "c3": 0.702, "c4": 0.8}, {"time": 0.8333, "angle": 2.91} + ] + }, + "body-fur-9": { + "rotate": [ + {"angle": 11.28, "curve": 0.333, "c2": 0.33, "c3": 0.688, "c4": 0.73}, {"time": 0.05, "angle": 3.15, "curve": 0.379, "c2": 0.6, "c3": 0.724}, {"time": 0.0833, "curve": 0.25, "c3": 0.75}, + {"time": 0.2333, "angle": 18.8, "curve": 0.25, "c3": 0.75}, {"time": 0.4333, "angle": -26.83, "curve": 0.25, "c3": 0.75}, {"time": 0.5167, "angle": 37.79, "curve": 0.25, "c3": 0.75}, + {"time": 0.6833, "angle": -23.11, "curve": 0.25, "c3": 0.75}, {"time": 0.7833, "angle": 17.07, "curve": 0.26, "c3": 0.618, "c4": 0.44}, {"time": 0.8333, "angle": 6.86} + ] + } + }, + "events": [{"time": 0.3333, "name": "start-attack"}, {"time": 0.3667, "name": "hit"}] + }, + "3156742502": { + "slots": {"eyes": {"attachment": [{"time": 0.9167, "name": "eyes-shut"}, {"time": 1, "name": "eyes"}]}}, + "bones": { + "@pivot-back": {"translate": [{"y": -97.74, "curve": 0.393, "c3": 0.303}, {"time": 0.6667, "y": -82.74, "curve": 0.387, "c3": 0.309}, {"time": 1.3333, "y": -97.74}]}, + "@leg-front-left": { + "rotate": [ + {"curve": 0, "c2": 0.1, "c3": 0.856}, {"time": 0.3333, "angle": -17.48, "curve": 0.15, "c3": 0.926}, {"time": 0.7333, "curve": 0, "c2": 0.05, "c3": 0.692}, + {"time": 1.05, "angle": 8.38, "curve": 0.24, "c3": 0.769}, {"time": 1.3333} + ] + }, + "@leg-front-right": { + "rotate": [ + {"curve": 0, "c2": 0.1, "c3": 0.856}, {"time": 0.3333, "angle": 9.43, "curve": 0.15, "c3": 0.926}, {"time": 0.7333, "curve": 0, "c2": 0.05, "c3": 0.692}, + {"time": 1.05, "angle": -11.74, "curve": 0.24, "c3": 0.769}, {"time": 1.3333} + ] + }, + "@leg-back-left": { + "rotate": [ + {"curve": 0, "c2": 0.1, "c3": 0.856}, {"time": 0.3333, "angle": -12.53, "curve": 0.15, "c3": 0.926}, {"time": 0.7333, "curve": 0, "c2": 0.05, "c3": 0.692}, + {"time": 1.05, "angle": 9.41, "curve": 0.24, "c3": 0.769}, {"time": 1.3333} + ] + }, + "tail": { + "rotate": [ + {"curve": 0, "c2": 0.05, "c3": 0.691}, {"time": 0.3333, "angle": -5.06, "curve": 0.304, "c3": 0.689}, {"time": 0.7333, "angle": -0.77}, + {"time": 1.05, "angle": 2.12, "curve": 0.234, "c4": 0.9}, {"time": 1.3333} + ] + }, + "@shadow": {"scale": [{"x": 1.3, "y": 1.3, "curve": 0.387, "c3": 0.314}, {"time": 0.6667, "x": 1.25, "y": 1.25, "curve": 0.387, "c3": 0.314}, {"time": 1.3333, "x": 1.3, "y": 1.3}]}, + "body-fur-8": { + "rotate": [ + {"angle": -12.61, "curve": 0.364, "c2": 0.64, "c3": 0.701}, {"time": 0.0833, "angle": -14.41, "curve": 0.25, "c3": 0.75}, + {"time": 0.75, "angle": 14.27, "curve": 0.244, "c3": 0.702, "c4": 0.8}, {"time": 1.3333, "angle": -12.61} + ] + }, + "body-fur-1": { + "rotate": [ + {"angle": -3.86, "curve": 0.381, "c2": 0.55, "c3": 0.742}, {"time": 0.2667, "angle": -14.41, "curve": 0.25, "c3": 0.75}, + {"time": 0.9333, "angle": 14.27, "curve": 0.245, "c3": 0.637, "c4": 0.56}, {"time": 1.3333, "angle": -3.86} + ] + }, + "body-fur-2": { + "rotate": [ + {"angle": 1.69, "curve": 0.349, "c2": 0.39, "c3": 0.707, "c4": 0.8}, {"time": 0.2667, "angle": -12.03, "curve": 0.369, "c2": 0.63, "c3": 0.706}, + {"time": 0.3667, "angle": -14.41, "curve": 0.25, "c3": 0.75}, {"time": 1.0333, "angle": 14.27, "curve": 0.253, "c3": 0.621, "c4": 0.48}, {"time": 1.3333, "angle": 1.69} + ] + }, + "body-fur-3": { + "rotate": [ + {"angle": -7.46, "curve": 0.382, "c2": 0.58, "c3": 0.731}, {"time": 0.2, "angle": -14.41, "curve": 0.25, "c3": 0.75}, + {"time": 0.8667, "angle": 14.27, "curve": 0.243, "c3": 0.655, "c4": 0.63}, {"time": 1.3333, "angle": -7.46} + ] + }, + "body-fur-4": { + "rotate": [ + {"angle": -2.12, "curve": 0.355, "c2": 0.41, "c3": 0.702, "c4": 0.79}, {"time": 0.2, "angle": -12.03, "curve": 0.369, "c2": 0.63, "c3": 0.706}, + {"time": 0.3, "angle": -14.41, "curve": 0.25, "c3": 0.75}, {"time": 0.9667, "angle": 14.27, "curve": 0.247, "c3": 0.63, "c4": 0.53}, {"time": 1.3333, "angle": -2.12} + ] + }, + "body-fur-5": { + "rotate": [ + {"angle": -10.68, "curve": 0.375, "c2": 0.62, "c3": 0.716}, {"time": 0.1333, "angle": -14.41, "curve": 0.25, "c3": 0.75}, + {"time": 0.8, "angle": 14.27, "curve": 0.243, "c3": 0.68, "c4": 0.71}, {"time": 1.3333, "angle": -10.68} + ] + }, + "body-fur-6": { + "rotate": [ + {"angle": -5.81, "curve": 0.354, "c2": 0.41, "c3": 0.694, "c4": 0.77}, {"time": 0.1333, "angle": -12.03, "curve": 0.369, "c2": 0.63, "c3": 0.706}, + {"time": 0.2333, "angle": -14.41, "curve": 0.25, "c3": 0.75}, {"time": 0.9, "angle": 14.27, "curve": 0.244, "c3": 0.646, "c4": 0.59}, {"time": 1.3333, "angle": -5.81} + ] + }, + "body-fur-7": { + "rotate": [ + {"angle": -13.19, "curve": 0.36, "c2": 0.64, "c3": 0.695}, {"time": 0.0667, "angle": -14.41, "curve": 0.25, "c3": 0.75}, + {"time": 0.7333, "angle": 14.27, "curve": 0.245, "c3": 0.711, "c4": 0.83}, {"time": 1.3333, "angle": -13.19} + ] + }, + "body-fur-9": { + "rotate": [ + {"angle": -8.38, "curve": 0.35, "c2": 0.4, "c3": 0.686, "c4": 0.74}, {"time": 0.0833, "angle": -12.03, "curve": 0.369, "c2": 0.63, "c3": 0.706}, + {"time": 0.1833, "angle": -14.41, "curve": 0.25, "c3": 0.75}, {"time": 0.85, "angle": 14.27, "curve": 0.242, "c3": 0.661, "c4": 0.65}, {"time": 1.3333, "angle": -8.38} + ] + } + } + }, + "2112863967": { + "slots": { + "ball": { + "color": [ + {"color": "ffffff00", "curve": "stepped"}, {"time": 0.1667, "color": "ffffff00", "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "color": "ffffffff", "curve": "stepped"}, + {"time": 2.9167, "color": "ffffffff", "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 3.0833, "color": "ffffff00"} + ], + "attachment": [{"name": "ball"}] + }, + "eyes": {"attachment": [{"time": 0.5, "name": "eyes-shut"}, {"time": 0.5833, "name": "eyes"}, {"time": 3.0833, "name": "eyes-shut"}, {"time": 3.1667, "name": "eyes"}]}, + "mouth": {"attachment": [{"time": 0.1833, "name": "mouth-open"}, {"time": 0.5, "name": "mouth"}, {"time": 2.7667, "name": "mouth-open"}, {"time": 2.9167, "name": "mouth"}]} + }, + "bones": { + "@pivot-back": { + "rotate": [ + {"curve": 0, "c2": 0.3, "c3": 0.546}, {"time": 0.1667, "angle": 6, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "angle": -6.98, "curve": 0.464, "c4": 0.7}, + {"time": 0.5, "angle": 3, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.6667, "curve": "stepped"}, {"time": 2.5833, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 2.75, "angle": 6, "curve": 0, "c2": 0.3, "c3": 0.546}, {"time": 2.9167, "angle": -6, "curve": 0.464, "c4": 0.7}, + {"time": 3.0833, "angle": 6, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 3.25} + ], "translate": [ - {"x": 124.12, "y": -9.33, "curve": 0.382, "c2": 0.58, "c3": 0.733}, {"time": 0.8333, "x": 158.19, "y": -13.58, "curve": 0.25, "c3": 0.75}, - {"time": 0.8667, "x": 28.51, "y": 2.6, "curve": 0.243, "c3": 0.652, "c4": 0.61}, {"time": 2.6667, "x": 124.12, "y": -9.33} + {"curve": 0, "c2": 0.3, "c3": 0.546}, {"time": 0.1667, "y": 1.78, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "y": 353.14, "curve": 0.464, "c4": 0.7}, + {"time": 0.5, "y": 255, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.6667, "y": 267.67, "curve": 0.156, "c3": 0.693}, + {"time": 1.1667, "x": -30, "y": 267.67, "curve": 0.317, "c3": 0.693}, {"time": 2.1667, "x": 50, "y": 267.67, "curve": 0.317, "c3": 0.693}, + {"time": 2.5833, "y": 267.67, "curve": "stepped"}, {"time": 2.75, "y": 267.67, "curve": 0, "c2": 0.3, "c3": 0.546}, {"time": 2.9167, "y": 310, "curve": 0.464, "c4": 0.7}, + {"time": 3.0833} + ] + }, + "@leg-front-right": { + "translate": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": -2.8, "y": -31.7, "curve": 0, "c2": 0.3, "c3": 0.546}, {"time": 0.25, "curve": "stepped"}, + {"time": 2.5833, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 2.75, "x": -2.8, "y": -31.7, "curve": 0.315, "c4": 0.8}, {"time": 2.8333, "curve": "stepped"}, + {"time": 3, "curve": 0.315, "c4": 0.8}, {"time": 3.0833, "x": -2.86, "y": -32.44, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 3.25} + ] + }, + "@leg-front-left": { + "translate": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": -1.46, "y": -16.59, "curve": 0, "c2": 0.3, "c3": 0.546}, {"time": 0.25, "curve": "stepped"}, + {"time": 2.5833, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 2.75, "x": -1.46, "y": -16.59, "curve": 0.315, "c4": 0.8}, {"time": 2.8333, "curve": "stepped"}, + {"time": 3, "curve": 0.315, "c4": 0.8}, {"time": 3.0833, "x": -1.64, "y": -18.64, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 3.25} + ] + }, + "leg-front-left-IK": { + "translate": [ + {"time": 0.1667, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "x": -6.9, "y": 380.8, "curve": 0.315, "c4": 0.8}, {"time": 0.5, "x": -5.5, "y": 268.35, "curve": "stepped"}, + {"time": 0.6667, "x": -5.5, "y": 268.35, "curve": 0.317, "c3": 0.693}, {"time": 0.9167, "x": -38.87, "y": 268.35, "curve": 0.317, "c3": 0.693}, + {"time": 1.1667, "x": -10.16, "y": 268.35, "curve": 0.317, "c3": 0.693}, {"time": 1.4167, "x": -39.65, "y": 268.35, "curve": 0.317, "c3": 0.693}, + {"time": 1.6667, "x": 23.98, "y": 268.35, "curve": 0.317, "c3": 0.693}, {"time": 1.9167, "x": 5.36, "y": 268.35, "curve": 0.317, "c3": 0.693}, + {"time": 2.1667, "x": 67.44, "y": 268.35, "curve": 0.317, "c3": 0.693}, {"time": 2.4167, "x": -3.95, "y": 268.35, "curve": 0.317, "c3": 0.693}, + {"time": 2.5833, "x": -5.5, "y": 268.35, "curve": "stepped"}, {"time": 2.9167, "x": -5.5, "y": 268.35, "curve": 0.315, "c4": 0.8}, {"time": 3.0833} + ] + }, + "leg-front-right-IK": { + "translate": [ + {"time": 0.1667, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "x": -6.9, "y": 397.8, "curve": 0.315, "c4": 0.8}, {"time": 0.5, "x": 15.4, "y": 268.08, "curve": "stepped"}, + {"time": 0.6667, "x": 15.4, "y": 268.08, "curve": 0.317, "c3": 0.693}, {"time": 0.9167, "x": 24.64, "y": 268.08, "curve": 0.317, "c3": 0.693}, + {"time": 1.1667, "x": -41.71, "y": 268.08, "curve": 0.317, "c3": 0.693}, {"time": 1.4167, "x": 22.12, "y": 268.08, "curve": 0.317, "c3": 0.693}, + {"time": 1.6667, "x": -0.56, "y": 268.08, "curve": 0.317, "c3": 0.693}, {"time": 1.9167, "x": 61.6, "y": 268.08, "curve": 0.317, "c3": 0.693}, + {"time": 2.1667, "x": 33.88, "y": 268.08, "curve": 0.317, "c3": 0.693}, {"time": 2.4167, "x": 49, "y": 268.08, "curve": 0.317, "c3": 0.693}, + {"time": 2.5833, "x": 15.4, "y": 268.08, "curve": "stepped"}, {"time": 2.9167, "x": 15.4, "y": 268.08, "curve": 0.315, "c4": 0.8}, {"time": 3.0833} + ] + }, + "leg-back-left-IK": { + "translate": [ + {"time": 0.1667, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "x": -0.4, "y": 363.25, "curve": 0.315, "c4": 0.8}, {"time": 0.5, "x": -26.16, "y": 267.01}, + {"time": 0.6667, "x": -33.59, "y": 267.01, "curve": 0.317, "c3": 0.693}, {"time": 0.9167, "x": -22.32, "y": 267.01, "curve": 0.317, "c3": 0.693}, + {"time": 1.1667, "x": -63.32, "y": 267.01, "curve": 0.317, "c3": 0.693}, {"time": 1.4167, "x": -28.35, "y": 267.01, "curve": 0.317, "c3": 0.693}, + {"time": 1.6667, "x": -28.02, "y": 267.01, "curve": 0.317, "c3": 0.693}, {"time": 1.9167, "x": 14.36, "y": 267.01, "curve": 0.317, "c3": 0.693}, + {"time": 2.1667, "x": 9.14, "y": 267.01, "curve": 0.317, "c3": 0.693}, {"time": 2.4167, "x": 11.99, "y": 267.01, "curve": 0.317, "c3": 0.693}, + {"time": 2.6667, "x": -33.59, "y": 267.01, "curve": "stepped"}, {"time": 2.9167, "x": -33.59, "y": 267.01, "curve": 0.315, "c4": 0.8}, {"time": 3.0833} + ] + }, + "@ball": { + "rotate": [ + {"time": 0.6667, "curve": 0.156, "c3": 0.693}, {"time": 1.1667, "angle": 18, "curve": 0.317, "c3": 0.693}, {"time": 2.1667, "angle": -18, "curve": 0.317, "c3": 0.693}, {"time": 2.75} + ], + "translate": [ + {"time": 0.6667, "curve": 0.156, "c3": 0.693}, {"time": 1.1667, "x": -32, "curve": 0.317, "c3": 0.693}, {"time": 2.1667, "x": 32, "curve": 0.317, "c3": 0.693}, {"time": 2.75} ], "scale": [ - {"x": 1.224, "y": 0.911, "curve": 0.375, "c2": 0.62, "c3": 0.716}, {"time": 0.0333, "x": 1.258, "y": 0.899, "curve": 0.25, "c3": 0.75}, - {"time": 0.2, "x": 1.069, "y": 1.069, "curve": 0.25, "c3": 0.75}, {"time": 0.3667, "x": 1.187, "y": 0.949, "curve": 0.25, "c3": 0.75}, - {"time": 0.5333, "x": 1.004, "y": 1.019, "curve": 0.25, "c3": 0.75}, {"time": 0.8333, "curve": "stepped"}, {"time": 0.8667, "curve": 0.25, "c3": 0.75}, - {"time": 1.0333, "x": 1.159, "y": 0.726, "curve": 0.25, "c3": 0.75}, {"time": 1.2, "x": 0.879, "y": 1.128, "curve": 0.25, "c3": 0.75}, - {"time": 1.3667, "x": 1.23, "y": 0.878, "curve": 0.25, "c3": 0.75}, {"time": 1.5333, "x": 1.057, "y": 1.017, "curve": 0.25, "c3": 0.75}, - {"time": 1.7, "x": 1.209, "y": 0.882, "curve": 0.25, "c3": 0.75}, {"time": 1.8667, "x": 0.956, "y": 1.174, "curve": 0.25, "c3": 0.75}, - {"time": 2.0333, "x": 1.285, "y": 1.001, "curve": 0.25, "c3": 0.75}, {"time": 2.2, "x": 0.97, "y": 1.08, "curve": 0.25, "c3": 0.75}, - {"time": 2.3667, "x": 0.809, "y": 1.228, "curve": 0.25, "c3": 0.75}, {"time": 2.5333, "x": 0.996, "y": 0.995, "curve": 0.243, "c3": 0.68, "c4": 0.71}, - {"time": 2.6667, "x": 1.224, "y": 0.911} + {"x": 0, "y": 0, "curve": "stepped"}, {"time": 0.1667, "x": 0, "y": 0, "curve": 0, "c2": 0.6, "c3": 0.237}, {"time": 0.3333, "x": 1.2, "y": 1.2, "curve": 0.315, "c4": 0.8}, + {"time": 0.5, "curve": "stepped"}, {"time": 2.75, "curve": 0, "c2": 0.3, "c3": 0.546}, {"time": 2.9167, "x": 1.2, "y": 1.2, "curve": 0.315, "c4": 0.8}, {"time": 3.0833, "x": 0, "y": 0} ] }, - "ear-right-dot-16": { + "ball": { + "scale": [ + {"time": 0.3333, "curve": 0.617, "c4": 0.6}, {"time": 0.5, "x": 1.2, "y": 0.802, "curve": 0, "c2": 0.39, "c3": 0.387}, {"time": 0.6667, "curve": "stepped"}, + {"time": 2.5833, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 2.75, "x": 1.2, "y": 0.9, "curve": 0, "c2": 0.3, "c3": 0.546}, {"time": 2.9167} + ] + }, + "@pivot-center": { + "rotate": [ + {"time": 0.6667, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.9167, "angle": 2, "curve": 0.461, "c3": 0.543}, {"time": 1.4167, "angle": -2, "curve": 0.461, "c3": 0.543}, + {"time": 1.9167, "angle": 2, "curve": 0.461, "c3": 0.543}, {"time": 2.4167, "angle": -2, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 2.75} + ] + }, + "@shadow": { "translate": [ - {"x": 133.42, "y": 14.76, "curve": 0.382, "c2": 0.55, "c3": 0.742}, {"time": 1.0333, "x": 178.04, "y": 22.35, "curve": 0.25, "c3": 0.75}, - {"time": 1.0667, "x": 53.34, "y": 1.15, "curve": 0.245, "c3": 0.638, "c4": 0.56}, {"time": 2.6667, "x": 133.42, "y": 14.76} + {"time": 0.6667, "curve": 0.317, "c3": 0.693}, {"time": 1.1667, "x": -32, "curve": 0.317, "c3": 0.693}, {"time": 2.1667, "x": 32, "curve": 0.317, "c3": 0.693}, {"time": 2.5833} ], "scale": [ - {"x": 0.928, "y": 1.081, "curve": 0.381, "c2": 0.55, "c3": 0.742}, {"time": 0.0667, "x": 0.996, "y": 0.995, "curve": 0.25, "c3": 0.75}, - {"time": 0.2333, "x": 1.258, "y": 0.899, "curve": 0.25, "c3": 0.75}, {"time": 0.4, "x": 1.069, "y": 1.069, "curve": 0.25, "c3": 0.75}, - {"time": 0.5667, "x": 1.187, "y": 0.949, "curve": 0.25, "c3": 0.75}, {"time": 0.7333, "x": 1.004, "y": 1.019, "curve": 0.25, "c3": 0.75}, {"time": 1.0333, "curve": "stepped"}, - {"time": 1.0667, "curve": 0.25, "c3": 0.75}, {"time": 1.2333, "x": 1.159, "y": 0.726, "curve": 0.25, "c3": 0.75}, {"time": 1.4, "x": 0.879, "y": 1.128, "curve": 0.25, "c3": 0.75}, - {"time": 1.5667, "x": 1.23, "y": 0.878, "curve": 0.25, "c3": 0.75}, {"time": 1.7333, "x": 1.057, "y": 1.017, "curve": 0.25, "c3": 0.75}, - {"time": 1.9, "x": 1.209, "y": 0.882, "curve": 0.25, "c3": 0.75}, {"time": 2.0667, "x": 0.956, "y": 1.174, "curve": 0.25, "c3": 0.75}, - {"time": 2.2333, "x": 1.285, "y": 1.001, "curve": 0.25, "c3": 0.75}, {"time": 2.4, "x": 0.97, "y": 1.08, "curve": 0.25, "c3": 0.75}, - {"time": 2.5667, "x": 0.809, "y": 1.228, "curve": 0.245, "c3": 0.637, "c4": 0.56}, {"time": 2.6667, "x": 0.928, "y": 1.081} + {"curve": 0, "c2": 0.3, "c3": 0.546}, {"time": 0.1667, "x": 1.1, "y": 1.1, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "curve": 0.464, "c4": 0.7}, + {"time": 0.5, "x": 1.06, "y": 1.06, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.6667, "curve": "stepped"}, {"time": 2.5833, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 2.75, "x": 1.06, "y": 1.06, "curve": 0, "c2": 0.3, "c3": 0.546}, {"time": 2.9167, "curve": 0.464, "c4": 0.7}, + {"time": 3.0833, "x": 1.1, "y": 1.1, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 3.25} + ] + }, + "tail": { + "rotate": [ + {"curve": 0, "c2": 0.3, "c3": 0.546}, {"time": 0.1667, "angle": 17.35, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "angle": -14.67, "curve": 0.464, "c4": 0.7}, + {"time": 0.5, "angle": 19.12, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.6667, "angle": -10.65, "curve": 0.317, "c3": 0.693}, + {"time": 0.9167, "angle": -0.65, "curve": 0.317, "c3": 0.693}, {"time": 1.1667, "angle": -10.65, "curve": 0.317, "c3": 0.693}, + {"time": 1.4167, "angle": -0.65, "curve": 0.317, "c3": 0.693}, {"time": 1.6667, "angle": -10.65, "curve": 0.317, "c3": 0.693}, + {"time": 1.9167, "angle": -0.65, "curve": 0.317, "c3": 0.693}, {"time": 2.1667, "angle": -10.65, "curve": 0.317, "c3": 0.693}, + {"time": 2.4167, "angle": -0.65, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 2.5833, "angle": -10.65, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 2.75, "angle": 19.35, "curve": 0, "c2": 0.3, "c3": 0.546}, {"time": 2.9167, "angle": -18.65, "curve": 0, "c2": 0.3, "c3": 0.546}, + {"time": 3.0833, "angle": 17.35, "curve": 0.317, "c3": 0.693}, {"time": 3.25} + ] + }, + "body-light-life": {"rotate": [{}, {"time": 1.65, "angle": -151.16, "curve": "stepped"}, {"time": 1.6667}, {"time": 3.25, "angle": -151.16}]}, + "body-fur-3": { + "rotate": [ + {"angle": 17.95, "curve": 0.363, "c2": 0.44, "c3": 0.755}, {"time": 0.1}, {"time": 0.2667, "angle": 15.51, "curve": 0.25, "c3": 0.75}, + {"time": 0.4333, "angle": -26.6, "curve": 0.25, "c3": 0.75}, {"time": 0.6, "angle": 14.77, "curve": 0.25, "c3": 0.75}, {"time": 0.7667, "angle": -12.34, "curve": 0.25, "c3": 0.75}, + {"time": 1.0667, "curve": 0.25, "c3": 0.75}, {"time": 1.4333, "angle": -19.09, "curve": 0.25, "c3": 0.75}, {"time": 2.1, "angle": 15.18, "curve": 0.25, "c3": 0.75}, + {"time": 2.6833, "curve": 0.25, "c3": 0.75}, {"time": 2.85, "angle": 24.34, "curve": 0.25, "c3": 0.75}, {"time": 3.0167, "angle": -25.03, "curve": 0.25, "c3": 0.75}, + {"time": 3.1833, "angle": 28.39, "curve": 0.258, "c3": 0.619, "c4": 0.45}, {"time": 3.25, "angle": 5.54} + ] + }, + "body-fur-2": { + "rotate": [ + {"angle": 15.45, "curve": 0.382, "c2": 0.58, "c3": 0.731}, {"time": 0.05, "angle": 28.39, "curve": 0.25, "c3": 0.625, "c4": 0.5}, + {"time": 0.1333, "angle": 14.2, "curve": 0.375, "c2": 0.5, "c3": 0.75}, {"time": 0.2167}, {"time": 0.3833, "angle": 15.51, "curve": 0.25, "c3": 0.75}, + {"time": 0.55, "angle": -26.6, "curve": 0.25, "c3": 0.75}, {"time": 0.7167, "angle": 14.77, "curve": 0.25, "c3": 0.75}, {"time": 0.8833, "angle": -12.34, "curve": 0.25, "c3": 0.75}, + {"time": 1.1833, "curve": 0.25, "c3": 0.75}, {"time": 1.55, "angle": -19.09, "curve": 0.25, "c3": 0.75}, {"time": 2.2167, "angle": 15.18, "curve": 0.25, "c3": 0.75}, + {"time": 2.8, "curve": 0.25, "c3": 0.75}, {"time": 2.9667, "angle": 24.34, "curve": 0.25, "c3": 0.75}, {"time": 3.1333, "angle": -25.03, "curve": 0.243, "c3": 0.655, "c4": 0.63}, + {"time": 3.25, "angle": 13.84} + ] + }, + "body-fur-9": { + "rotate": [ + {"angle": 21.53, "curve": 0.321, "c2": 0.3, "c3": 0.661, "c4": 0.65}, {"time": 0.0333, "angle": 14.2, "curve": 0.375, "c2": 0.5, "c3": 0.75}, {"time": 0.1167}, + {"time": 0.2833, "angle": 15.51, "curve": 0.25, "c3": 0.75}, {"time": 0.45, "angle": -26.6, "curve": 0.25, "c3": 0.75}, {"time": 0.6167, "angle": 14.77, "curve": 0.25, "c3": 0.75}, + {"time": 0.7833, "angle": -12.34, "curve": 0.25, "c3": 0.75}, {"time": 1.0833, "curve": 0.25, "c3": 0.75}, {"time": 1.45, "angle": -19.09, "curve": 0.25, "c3": 0.75}, + {"time": 2.1167, "angle": 15.18, "curve": 0.25, "c3": 0.75}, {"time": 2.7, "curve": 0.25, "c3": 0.75}, {"time": 2.8667, "angle": 24.34, "curve": 0.25, "c3": 0.75}, + {"time": 3.0333, "angle": -25.03, "curve": 0.25, "c3": 0.75}, {"time": 3.2, "angle": 28.39, "curve": 0.269, "c3": 0.618, "c4": 0.42}, {"time": 3.25, "angle": 6.86} + ] + }, + "body-fur-8": { + "rotate": [ + {"angle": 3.69, "curve": 0.375, "c2": 0.62, "c3": 0.716}, {"time": 0.0333}, {"time": 0.2, "angle": 15.51, "curve": 0.25, "c3": 0.75}, + {"time": 0.3667, "angle": -26.6, "curve": 0.25, "c3": 0.75}, {"time": 0.5333, "angle": 14.77, "curve": 0.25, "c3": 0.75}, {"time": 0.7, "angle": -12.34, "curve": 0.25, "c3": 0.75}, + {"time": 1, "curve": 0.25, "c3": 0.75}, {"time": 1.3667, "angle": -19.09, "curve": 0.25, "c3": 0.75}, {"time": 2.0333, "angle": 15.18, "curve": 0.25, "c3": 0.75}, + {"time": 2.6167, "curve": 0.25, "c3": 0.75}, {"time": 2.7833, "angle": 24.34, "curve": 0.25, "c3": 0.75}, {"time": 2.95, "angle": -25.03, "curve": 0.25, "c3": 0.75}, + {"time": 3.1167, "angle": 28.39, "curve": 0.243, "c3": 0.68, "c4": 0.71}, {"time": 3.25, "angle": -0.91} + ] + }, + "body-fur-7": { + "rotate": [ + {"angle": 6.88, "curve": 0.382, "c2": 0.58, "c3": 0.731}, {"time": 0.05, "curve": 0.25, "c3": 0.75}, {"time": 0.2167, "angle": 15.51, "curve": 0.25, "c3": 0.75}, + {"time": 0.3833, "angle": -26.6, "curve": 0.25, "c3": 0.75}, {"time": 0.55, "angle": 14.77, "curve": 0.25, "c3": 0.75}, {"time": 0.7167, "angle": -12.34, "curve": 0.25, "c3": 0.75}, + {"time": 1.0167, "curve": 0.25, "c3": 0.75}, {"time": 1.3833, "angle": -19.09, "curve": 0.25, "c3": 0.75}, {"time": 2.05, "angle": 15.18, "curve": 0.25, "c3": 0.75}, + {"time": 2.6333, "curve": 0.25, "c3": 0.75}, {"time": 2.8, "angle": 24.34, "curve": 0.25, "c3": 0.75}, {"time": 2.9667, "angle": -25.03, "curve": 0.25, "c3": 0.75}, + {"time": 3.1333, "angle": 28.39, "curve": 0.243, "c3": 0.655, "c4": 0.63}, {"time": 3.25, "angle": 2.91} + ] + }, + "body-fur-6": { + "rotate": [ + {"angle": 27.23, "curve": 0.282, "c2": 0.15, "c3": 0.641, "c4": 0.58}, {"time": 0.0667, "angle": 14.2, "curve": 0.375, "c2": 0.5, "c3": 0.75}, {"time": 0.15}, + {"time": 0.3167, "angle": 15.51, "curve": 0.25, "c3": 0.75}, {"time": 0.4833, "angle": -26.6, "curve": 0.25, "c3": 0.75}, {"time": 0.65, "angle": 14.77, "curve": 0.25, "c3": 0.75}, + {"time": 0.8167, "angle": -12.34, "curve": 0.25, "c3": 0.75}, {"time": 1.1167, "curve": 0.25, "c3": 0.75}, {"time": 1.4833, "angle": -19.09, "curve": 0.25, "c3": 0.75}, + {"time": 2.15, "angle": 15.18, "curve": 0.25, "c3": 0.75}, {"time": 2.7333, "curve": 0.25, "c3": 0.75}, {"time": 2.9, "angle": 24.34, "curve": 0.25, "c3": 0.75}, + {"time": 3.0667, "angle": -25.03, "curve": 0.25, "c3": 0.75}, {"time": 3.2333, "angle": 28.39, "curve": 0.305, "c3": 0.64, "c4": 0.36}, {"time": 3.25, "angle": 13.33} + ] + }, + "body-fur-5": { + "rotate": [ + {"angle": 10.44, "curve": 0.381, "c2": 0.55, "c3": 0.742}, {"time": 0.0667}, {"time": 0.2333, "angle": 15.51, "curve": 0.25, "c3": 0.75}, + {"time": 0.4, "angle": -26.6, "curve": 0.25, "c3": 0.75}, {"time": 0.5667, "angle": 14.77, "curve": 0.25, "c3": 0.75}, {"time": 0.7333, "angle": -12.34, "curve": 0.25, "c3": 0.75}, + {"time": 1.0333, "curve": 0.25, "c3": 0.75}, {"time": 1.4, "angle": -19.09, "curve": 0.25, "c3": 0.75}, {"time": 2.0667, "angle": 15.18, "curve": 0.25, "c3": 0.75}, + {"time": 2.65, "curve": 0.25, "c3": 0.75}, {"time": 2.8167, "angle": 24.34, "curve": 0.25, "c3": 0.75}, {"time": 2.9833, "angle": -25.03, "curve": 0.25, "c3": 0.75}, + {"time": 3.15, "angle": 28.39, "curve": 0.245, "c3": 0.637, "c4": 0.56}, {"time": 3.25, "angle": 6.86} + ] + }, + "body-fur-4": { + "rotate": [ + {"angle": 26.12, "curve": 0.36, "c2": 0.64, "c3": 0.695}, {"time": 0.0167, "angle": 28.39, "curve": 0.25, "c3": 0.625, "c4": 0.5}, + {"time": 0.1, "angle": 14.2, "curve": 0.375, "c2": 0.5, "c3": 0.75}, {"time": 0.1833}, {"time": 0.35, "angle": 15.51, "curve": 0.25, "c3": 0.75}, + {"time": 0.5167, "angle": -26.6, "curve": 0.25, "c3": 0.75}, {"time": 0.6833, "angle": 14.77, "curve": 0.25, "c3": 0.75}, {"time": 0.85, "angle": -12.34, "curve": 0.25, "c3": 0.75}, + {"time": 1.15, "curve": 0.25, "c3": 0.75}, {"time": 1.5167, "angle": -19.09, "curve": 0.25, "c3": 0.75}, {"time": 2.1833, "angle": 15.18, "curve": 0.25, "c3": 0.75}, + {"time": 2.7667, "curve": 0.25, "c3": 0.75}, {"time": 2.9333, "angle": 24.34, "curve": 0.25, "c3": 0.75}, {"time": 3.1, "angle": -25.03, "curve": 0.245, "c3": 0.711, "c4": 0.83}, + {"time": 3.25, "angle": 12.53} + ] + }, + "body-fur-1": { + "rotate": [ + {"angle": 24.7, "curve": 0.32, "c2": 0.29, "c3": 0.757}, {"time": 0.1333}, {"time": 0.3, "angle": 15.51, "curve": 0.25, "c3": 0.75}, + {"time": 0.4667, "angle": -26.6, "curve": 0.25, "c3": 0.75}, {"time": 0.6333, "angle": 14.77, "curve": 0.25, "c3": 0.75}, {"time": 0.8, "angle": -12.34, "curve": 0.25, "c3": 0.75}, + {"time": 1.1, "curve": 0.25, "c3": 0.75}, {"time": 1.4667, "angle": -19.09, "curve": 0.25, "c3": 0.75}, {"time": 2.1333, "angle": 15.18, "curve": 0.25, "c3": 0.75}, + {"time": 2.7167, "curve": 0.25, "c3": 0.75}, {"time": 2.8833, "angle": 24.34, "curve": 0.25, "c3": 0.75}, {"time": 3.05, "angle": -25.03, "curve": 0.25, "c3": 0.75}, + {"time": 3.2167, "angle": 28.39, "curve": 0.284, "c3": 0.625, "c4": 0.38}, {"time": 3.25, "angle": 10.51} + ] + } + } + }, + "2668998474": { + "slots": { + "eyes": {"attachment": [{"time": 0.0833, "name": "eyes-happy"}, {"time": 1, "name": "eyes"}]}, + "leg-back-left": {"attachment": [{"time": 0.0667, "name": "mystic-leg-back-left-long"}, {"time": 0.9, "name": "mystic-leg-back-left"}]}, + "mouth": {"attachment": [{"time": 0.0833, "name": "mouth-smile"}, {"time": 1, "name": "mouth"}]} + }, + "bones": { + "@pivot-back": { + "rotate": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "angle": -18, "curve": 0.317, "c3": 0.693}, {"time": 0.3333, "angle": -17, "curve": 0.317, "c3": 0.693}, + {"time": 0.5, "angle": -18, "curve": 0.317, "c3": 0.693}, {"time": 0.6667, "angle": -17, "curve": 0.317, "c3": 0.693}, {"time": 0.8333, "angle": -18, "curve": 0.317, "c3": 0.693}, + {"time": 1.0833} + ], + "translate": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": 33.94, "y": -52, "curve": "stepped"}, {"time": 0.8333, "x": 33.94, "y": -52, "curve": 0.317, "c3": 0.693}, {"time": 1.0833} + ] + }, + "@leg-front-left": { + "translate": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": -27.99, "y": 1.7, "curve": 0.25, "c3": 0.75}, {"time": 0.3333, "x": -26.93, "y": -1.56, "curve": 0.25, "c3": 0.75}, + {"time": 0.5, "x": -27.99, "y": 1.7, "curve": 0.25, "c3": 0.75}, {"time": 0.6667, "x": -26.93, "y": -1.56, "curve": 0.25, "c3": 0.75}, + {"time": 0.8333, "x": -27.99, "y": 1.7, "curve": 0.317, "c3": 0.693}, {"time": 1.0833} + ] + }, + "@leg-front-right": { + "translate": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": -84.32, "y": 39.72, "curve": 0.317, "c3": 0.693}, {"time": 0.3333, "x": -82.71, "y": 34.75, "curve": 0.317, "c3": 0.693}, + {"time": 0.5, "x": -84.32, "y": 39.72, "curve": 0.317, "c3": 0.693}, {"time": 0.6667, "x": -82.71, "y": 34.75, "curve": 0.317, "c3": 0.693}, + {"time": 0.8333, "x": -84.32, "y": 39.72, "curve": 0.317, "c3": 0.693}, {"time": 1.0833} + ] + }, + "leg-front-right-IK": { + "translate": [{"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": 40.32, "curve": "stepped"}, {"time": 0.8333, "x": 40.32, "curve": 0.317, "c3": 0.693}, {"time": 1.0833}] + }, + "leg-front-left-IK": { + "translate": [{"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": 26.51, "curve": "stepped"}, {"time": 0.8333, "x": 26.51, "curve": 0.317, "c3": 0.693}, {"time": 1.0833}] + }, + "leg-back-left-IK": { + "translate": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": -30.93, "y": 88.63, "curve": 0.617, "c4": 0.6}, {"time": 0.2667, "x": -62.81, "y": 72.23, "curve": 0, "c2": 0.4, "c3": 0.383}, + {"time": 0.35, "x": -28.19, "y": 96.83, "curve": 0.617, "c4": 0.6}, {"time": 0.45, "x": -62.81, "y": 72.23, "curve": 0, "c2": 0.4, "c3": 0.383}, + {"time": 0.55, "x": -28.19, "y": 96.83, "curve": 0.617, "c4": 0.6}, {"time": 0.6333, "x": -62.81, "y": 72.23, "curve": 0, "c2": 0.4, "c3": 0.383}, + {"time": 0.7333, "x": -28.19, "y": 96.83, "curve": 0.434, "c3": 0.739, "c4": 0.4}, {"time": 0.8333, "x": -56.92, "y": 76.7, "curve": 0.223, "c2": 0.33, "c3": 0.336}, {"time": 1.0833} + ] + }, + "tail": { + "rotate": [ + {"curve": 0, "c2": 0.3, "c3": 0.546}, {"time": 0.1667, "angle": 25.35, "curve": 0.317, "c3": 0.693}, {"time": 0.3333, "angle": 33.35, "curve": 0.317, "c3": 0.693}, + {"time": 0.5, "angle": 25.35, "curve": 0.317, "c3": 0.693}, {"time": 0.6667, "angle": 33.35, "curve": 0.317, "c3": 0.693}, + {"time": 0.9167, "angle": 25.35, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 1.0833} + ] + }, + "@shadow": { + "translate": [{"curve": 0, "c2": 0.3, "c3": 0.546}, {"time": 0.1667, "x": 32.73, "curve": "stepped"}, {"time": 0.8333, "x": 32.73, "curve": 0.317, "c3": 0.693}, {"time": 1.0833}], + "scale": [ + {"time": 0.1667, "curve": 0.317, "c3": 0.693}, {"time": 0.25, "x": 1.02, "y": 1.02, "curve": 0.317, "c3": 0.693}, {"time": 0.3333, "curve": 0.317, "c3": 0.693}, + {"time": 0.4167, "x": 1.02, "y": 1.02, "curve": 0.317, "c3": 0.693}, {"time": 0.5, "curve": 0.317, "c3": 0.693}, {"time": 0.5833, "x": 1.02, "y": 1.02, "curve": 0.317, "c3": 0.693}, + {"time": 0.6667, "curve": 0.317, "c3": 0.693}, {"time": 0.8333, "x": 1.02, "y": 1.02, "curve": 0.317, "c3": 0.693}, {"time": 1.0833} + ] + }, + "body-fur-7": { + "rotate": [ + {"angle": 5.09, "curve": 0.366, "c2": 0.63, "c3": 0.703}, {"time": 0.0333, "angle": 6.14, "curve": 0.25, "c3": 0.75}, {"time": 0.2, "angle": -20.35, "curve": 0.25, "c3": 0.75}, + {"time": 0.5333, "angle": 10.82, "curve": 0.25, "c3": 0.75}, {"time": 0.8667, "angle": -8.98, "curve": 0.244, "c3": 0.7, "c4": 0.79}, {"time": 1.0833, "angle": 2.91} + ] + }, + "body-fur-8": { + "rotate": [ + {"angle": 1.85, "curve": 0.382, "c2": 0.57, "c3": 0.735}, {"time": 0.0833, "angle": 6.14, "curve": 0.25, "c3": 0.75}, {"time": 0.25, "angle": -20.35, "curve": 0.25, "c3": 0.75}, + {"time": 0.5833, "angle": 10.82, "curve": 0.25, "c3": 0.75}, {"time": 0.9167, "angle": -8.98, "curve": 0.243, "c3": 0.649, "c4": 0.6}, {"time": 1.0833, "angle": -0.91} + ] + }, + "body-fur-1": { + "rotate": [ + {"angle": -2.09, "curve": 0.372, "c2": 0.48, "c3": 0.752}, {"time": 0.1333, "angle": 6.14, "curve": 0.25, "c3": 0.75}, {"time": 0.3, "angle": -20.35, "curve": 0.25, "c3": 0.75}, + {"time": 0.6333, "angle": 10.82, "curve": 0.25, "c3": 0.75}, {"time": 0.9667, "angle": -8.98, "curve": 0.252, "c3": 0.622, "c4": 0.48}, {"time": 1.0833, "angle": 10.51} + ] + }, + "body-fur-2": { + "rotate": [ + {"angle": -7, "curve": 0.303, "c2": 0.24, "c3": 0.68, "c4": 0.71}, {"time": 0.1333, "angle": 3.08, "curve": 0.38, "c2": 0.59, "c3": 0.727}, {"time": 0.2, "angle": 6.14}, + {"time": 0.3667, "angle": -20.35, "curve": 0.25, "c3": 0.75}, {"time": 0.7, "angle": 10.82, "curve": 0.25, "c3": 0.75}, + {"time": 1.0333, "angle": -8.98, "curve": 0.284, "c3": 0.625, "c4": 0.38}, {"time": 1.0833, "angle": 13.84} + ] + }, + "body-fur-3": { + "rotate": [ + {"angle": 0.58, "curve": 0.381, "c2": 0.55, "c3": 0.742}, {"time": 0.1, "angle": 6.14, "curve": 0.25, "c3": 0.75}, {"time": 0.2667, "angle": -20.35, "curve": 0.25, "c3": 0.75}, + {"time": 0.6, "angle": 10.82, "curve": 0.25, "c3": 0.75}, {"time": 0.9333, "angle": -8.98, "curve": 0.245, "c3": 0.637, "c4": 0.56}, {"time": 1.0833, "angle": 5.54} + ] + }, + "body-fur-4": { + "rotate": [ + {"angle": -4.66, "curve": 0.327, "c2": 0.31, "c3": 0.685, "c4": 0.72}, {"time": 0.1, "angle": 3.08, "curve": 0.38, "c2": 0.59, "c3": 0.727}, + {"time": 0.1667, "angle": 6.14, "curve": 0.25, "c3": 0.75}, {"time": 0.3333, "angle": -20.35, "curve": 0.25, "c3": 0.75}, {"time": 0.6667, "angle": 10.82, "curve": 0.25, "c3": 0.75}, + {"time": 1, "angle": -8.98, "curve": 0.265, "c3": 0.618, "c4": 0.43}, {"time": 1.0833, "angle": 12.53} + ] + }, + "body-fur-5": { + "rotate": [ + {"angle": 3.08, "curve": 0.38, "c2": 0.59, "c3": 0.727}, {"time": 0.0667, "angle": 6.14, "curve": 0.25, "c3": 0.75}, {"time": 0.2333, "angle": -20.35, "curve": 0.25, "c3": 0.75}, + {"time": 0.5667, "angle": 10.82, "curve": 0.25, "c3": 0.75}, {"time": 0.9, "angle": -8.98, "curve": 0.242, "c3": 0.663, "c4": 0.65}, {"time": 1.0833, "angle": 6.86} + ] + }, + "body-fur-6": { + "rotate": [ + {"angle": -2.03, "curve": 0.34, "c2": 0.35, "c3": 0.684, "c4": 0.72}, {"time": 0.0667, "angle": 3.08, "curve": 0.38, "c2": 0.59, "c3": 0.727}, {"time": 0.1333, "angle": 6.14}, + {"time": 0.3, "angle": -20.35, "curve": 0.25, "c3": 0.75}, {"time": 0.6333, "angle": 10.82, "curve": 0.25, "c3": 0.75}, + {"time": 0.9667, "angle": -8.98, "curve": 0.252, "c3": 0.622, "c4": 0.48}, {"time": 1.0833, "angle": 13.33} + ] + }, + "body-fur-9": { + "rotate": [ + {"angle": -3.36, "curve": 0.335, "c2": 0.34, "c3": 0.685, "c4": 0.72}, {"time": 0.0833, "angle": 3.08, "curve": 0.38, "c2": 0.59, "c3": 0.727}, {"time": 0.15, "angle": 6.14}, + {"time": 0.3167, "angle": -20.35, "curve": 0.25, "c3": 0.75}, {"time": 0.65, "angle": 10.82, "curve": 0.25, "c3": 0.75}, + {"time": 0.9833, "angle": -8.98, "curve": 0.258, "c3": 0.619, "c4": 0.45}, {"time": 1.0833, "angle": 6.86} + ] + } + }, + "drawOrder": [{"time": 0.0667, "offsets": [{"slot": "leg-back-left", "offset": 11}]}, {"time": 0.9}] + }, + "863131580": { + "slots": { + "eyes": {"attachment": [{"time": 0.05, "name": "eyes-happy"}, {"time": 2.0833, "name": "eyes"}]}, + "mouth": {"attachment": [{"time": 0.05, "name": "mouth-bite"}, {"time": 2.0833, "name": "mouth"}]} + }, + "bones": { + "@pivot-back": { + "rotate": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "angle": 6, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.4833, "angle": 7, "curve": 0.317, "c3": 0.693}, + {"time": 0.55, "angle": 6.5, "curve": 0.317, "c3": 0.693}, {"time": 0.6167, "angle": 7, "curve": 0.317, "c3": 0.693}, {"time": 0.6833, "angle": 6.5, "curve": 0, "c2": 0.1, "c3": 0.85}, + {"time": 0.9167, "angle": 8, "curve": 0.317, "c3": 0.693}, {"time": 1.3333, "angle": -7, "curve": 0.461, "c3": 0.543}, {"time": 1.9167, "angle": -9, "curve": 0.154, "c4": 0.9}, + {"time": 2.1667, "angle": 3, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 2.3333} + ], + "translate": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "x": 7, "y": 6, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.9167, "x": 11, "y": 10, "curve": 0.317, "c3": 0.693}, + {"time": 1.3333, "x": -45, "y": -14, "curve": 0.461, "c3": 0.543}, {"time": 1.9167, "x": -45, "y": -18, "curve": 0.154, "c4": 0.9}, + {"time": 2.1667, "y": 4.23, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 2.3333} + ] + }, + "@leg-front-right": { + "translate": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "x": -2.08, "y": -23.58, "curve": "stepped"}, {"time": 0.9167, "x": -2.08, "y": -23.58, "curve": 0.317, "c3": 0.693}, + {"time": 1.3333, "x": -56.51, "y": 25.21, "curve": 0.461, "c3": 0.543}, {"time": 1.9167, "x": -57.58, "y": 31.33, "curve": 0.154, "c4": 0.9}, + {"time": 2.1667, "x": -1.95, "y": -12.95, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 2.3333} + ] + }, + "@leg-front-left": { + "translate": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "x": -0.92, "y": -10.48, "curve": "stepped"}, {"time": 0.9167, "x": -0.92, "y": -10.48, "curve": 0.317, "c3": 0.693}, + {"time": 1.3333, "x": -48.7, "y": 5.49, "curve": 0.461, "c3": 0.543}, {"time": 1.9167, "x": -49.1, "y": 7.78, "curve": 0.154, "c4": 0.9}, + {"time": 2.1667, "x": -0.87, "y": -4.98, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 2.3333} + ] + }, + "@leg-back-left": { + "translate": [ + {"time": 0.25}, {"time": 0.9167, "x": 0.52, "y": 4.2, "curve": 0.317, "c3": 0.693}, {"time": 1.3333, "x": -2.48, "y": -1.61, "curve": "stepped"}, + {"time": 1.9167, "x": -2.48, "y": -1.61, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 2.1667} + ] + }, + "leg-front-left-IK": { + "translate": [ + {"time": 0.9167, "curve": 0.317, "c3": 0.693}, {"time": 1.3333, "x": -11.56, "curve": "stepped"}, {"time": 1.9167, "x": -11.56, "curve": 0.154, "c4": 0.9}, {"time": 2.1667} + ] + }, + "leg-front-right-IK": { + "translate": [{"time": 0.9167, "curve": 0.317, "c3": 0.693}, {"time": 1.3333, "x": -5.65, "curve": "stepped"}, {"time": 1.9167, "x": -5.65, "curve": 0.154, "c4": 0.9}, {"time": 2.1667}] + }, + "leg-back-left-IK": { + "translate": [ + {"time": 0.9167, "curve": 0.317, "c3": 0.693}, {"time": 1.3333, "x": -33.62, "curve": "stepped"}, {"time": 1.9167, "x": -33.62, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 2.1667} + ] + }, + "tail": { + "rotate": [ + {"curve": 0, "c2": 0.3, "c3": 0.546}, {"time": 0.25, "angle": 20.35, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.4167, "angle": 15.85, "curve": 0.317, "c3": 0.693}, + {"time": 0.4833, "angle": 17.35, "curve": 0.317, "c3": 0.693}, {"time": 0.55, "angle": 15.85, "curve": 0.317, "c3": 0.693}, {"time": 0.6167, "angle": 18.35, "curve": 0.317, "c3": 0.693}, + {"time": 0.6833, "angle": 16.85, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.9167, "angle": 18.35, "curve": 0.317, "c3": 0.693}, + {"time": 1.3333, "angle": -9.65, "curve": 0.461, "c3": 0.543}, {"time": 1.9167, "angle": -13.65, "curve": 0.154, "c4": 0.9}, + {"time": 2.1667, "angle": 10.35, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 2.3333} + ] + }, + "body-fur-2": { + "rotate": [ + {"angle": 3.06, "curve": 0.358, "c2": 0.42, "c3": 0.702, "c4": 0.8}, {"time": 0.1333, "angle": 0.59, "curve": 0.366, "c2": 0.63, "c3": 0.703}, {"time": 0.2, "curve": 0.25, "c3": 0.75}, + {"time": 0.5333, "angle": 26.02, "curve": 0.25, "c3": 0.75}, {"time": 1.0333, "angle": -3.84, "curve": 0.25, "c3": 0.75}, {"time": 1.2, "angle": 5.97, "curve": 0.25, "c3": 0.75}, + {"time": 1.5333, "angle": -24.66, "curve": 0.25, "c3": 0.75}, {"time": 2.0333, "angle": 8.43, "curve": 0.245, "c3": 0.637, "c4": 0.56}, {"time": 2.3333, "angle": 13.84} + ] + }, + "body-fur-9": { + "rotate": [ + {"angle": 2.01, "curve": 0.355, "c2": 0.42, "c3": 0.693, "c4": 0.77}, {"time": 0.0833, "angle": 0.59, "curve": 0.366, "c2": 0.63, "c3": 0.703}, {"time": 0.15}, + {"time": 0.4833, "angle": 26.02, "curve": 0.25, "c3": 0.75}, {"time": 0.9833, "angle": -3.84, "curve": 0.25, "c3": 0.75}, {"time": 1.15, "angle": 5.97, "curve": 0.25, "c3": 0.75}, + {"time": 1.4833, "angle": -24.66, "curve": 0.25, "c3": 0.75}, {"time": 1.9833, "angle": 8.43, "curve": 0.243, "c3": 0.655, "c4": 0.63}, {"time": 2.3333, "angle": 6.86} + ] + }, + "body-fur-8": { + "rotate": [ + {"angle": 0.81, "curve": 0.371, "c2": 0.62, "c3": 0.71}, {"time": 0.0833}, {"time": 0.4167, "angle": 26.02, "curve": 0.25, "c3": 0.75}, + {"time": 0.9167, "angle": -3.84, "curve": 0.25, "c3": 0.75}, {"time": 1.0833, "angle": 5.97, "curve": 0.25, "c3": 0.75}, {"time": 1.4167, "angle": -24.66, "curve": 0.25, "c3": 0.75}, + {"time": 1.9167, "angle": 8.43, "curve": 0.243, "c3": 0.689, "c4": 0.75}, {"time": 2.3333, "angle": -0.91} + ] + }, + "body-fur-7": { + "rotate": [ + {"angle": 0.19, "curve": 0.352, "c2": 0.65, "c3": 0.687}, {"time": 0.0333, "curve": 0.25, "c3": 0.75}, {"time": 0.3667, "angle": 26.02, "curve": 0.25, "c3": 0.75}, + {"time": 0.8667, "angle": -3.84, "curve": 0.25, "c3": 0.75}, {"time": 1.0333, "angle": 5.97, "curve": 0.25, "c3": 0.75}, {"time": 1.3667, "angle": -24.66, "curve": 0.25, "c3": 0.75}, + {"time": 1.8667, "angle": 8.43, "curve": 0.246, "c3": 0.723, "c4": 0.88}, {"time": 2.3333, "angle": 2.91} + ] + }, + "body-fur-6": { + "rotate": [ + {"angle": 1.69, "curve": 0.352, "c2": 0.41, "c3": 0.688, "c4": 0.76}, {"time": 0.0667, "angle": 0.59, "curve": 0.366, "c2": 0.63, "c3": 0.703}, {"time": 0.1333}, + {"time": 0.4667, "angle": 26.02, "curve": 0.25, "c3": 0.75}, {"time": 0.9667, "angle": -3.84, "curve": 0.25, "c3": 0.75}, {"time": 1.1333, "angle": 5.97, "curve": 0.25, "c3": 0.75}, + {"time": 1.4667, "angle": -24.66, "curve": 0.25, "c3": 0.75}, {"time": 1.9667, "angle": 8.43, "curve": 0.242, "c3": 0.663, "c4": 0.65}, {"time": 2.3333, "angle": 13.33} + ] + }, + "body-fur-5": { + "rotate": [ + {"angle": 0.59, "curve": 0.366, "c2": 0.63, "c3": 0.703}, {"time": 0.0667}, {"time": 0.4, "angle": 26.02, "curve": 0.25, "c3": 0.75}, + {"time": 0.9, "angle": -3.84, "curve": 0.25, "c3": 0.75}, {"time": 1.0667, "angle": 5.97, "curve": 0.25, "c3": 0.75}, {"time": 1.4, "angle": -24.66, "curve": 0.25, "c3": 0.75}, + {"time": 1.9, "angle": 8.43, "curve": 0.244, "c3": 0.7, "c4": 0.79}, {"time": 2.3333, "angle": 6.86} + ] + }, + "body-fur-4": { + "rotate": [ + {"angle": 2.35, "curve": 0.356, "c2": 0.42, "c3": 0.696, "c4": 0.78}, {"time": 0.1, "angle": 0.59, "curve": 0.366, "c2": 0.63, "c3": 0.703}, {"time": 0.1667}, + {"time": 0.5, "angle": 26.02, "curve": 0.25, "c3": 0.75}, {"time": 1, "angle": -3.84, "curve": 0.25, "c3": 0.75}, {"time": 1.1667, "angle": 5.97, "curve": 0.25, "c3": 0.75}, + {"time": 1.5, "angle": -24.66, "curve": 0.25, "c3": 0.75}, {"time": 2, "angle": 8.43, "curve": 0.243, "c3": 0.649, "c4": 0.6}, {"time": 2.3333, "angle": 12.53} + ] + }, + "body-fur-3": { + "rotate": [ + {"angle": 1.1, "curve": 0.375, "c2": 0.62, "c3": 0.716}, {"time": 0.1}, {"time": 0.4333, "angle": 26.02, "curve": 0.25, "c3": 0.75}, + {"time": 0.9333, "angle": -3.84, "curve": 0.25, "c3": 0.75}, {"time": 1.1, "angle": 5.97, "curve": 0.25, "c3": 0.75}, {"time": 1.4333, "angle": -24.66, "curve": 0.25, "c3": 0.75}, + {"time": 1.9333, "angle": 8.43, "curve": 0.243, "c3": 0.68, "c4": 0.71}, {"time": 2.3333, "angle": 5.54} + ] + }, + "body-fur-1": { + "rotate": [ + {"angle": 1.71, "curve": 0.38, "c2": 0.59, "c3": 0.727}, {"time": 0.1333, "curve": 0.25, "c3": 0.75}, {"time": 0.4667, "angle": 26.02, "curve": 0.25, "c3": 0.75}, + {"time": 0.9667, "angle": -3.84, "curve": 0.25, "c3": 0.75}, {"time": 1.1333, "angle": 5.97, "curve": 0.25, "c3": 0.75}, {"time": 1.4667, "angle": -24.66, "curve": 0.25, "c3": 0.75}, + {"time": 1.9667, "angle": 8.43, "curve": 0.242, "c3": 0.663, "c4": 0.65}, {"time": 2.3333, "angle": 10.51} + ] + } + } + }, + "3268849333": { + "slots": { + "eyes": {"attachment": [{"time": 0.3, "name": "eyes-angry"}, {"time": 1.2333, "name": "eyes"}]}, + "mouth": {"attachment": [{"time": 0.3, "name": "mouth-bite"}, {"time": 1.2333, "name": "mouth"}]} + }, + "bones": { + "@pivot-back": { + "rotate": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1, "angle": 6, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.2, "angle": -6, "curve": 0.315, "c4": 0.8}, + {"time": 0.3, "angle": 5.5, "curve": 0.317, "c3": 0.693}, {"time": 0.3833, "angle": 4.5, "curve": 0.317, "c3": 0.693}, {"time": 0.4667, "angle": 5.5, "curve": 0.317, "c3": 0.693}, + {"time": 0.55, "angle": 4.5, "curve": 0.317, "c3": 0.693}, {"time": 0.6333, "angle": 5.5, "curve": 0.317, "c3": 0.693}, {"time": 0.7167, "angle": 4.5, "curve": 0.317, "c3": 0.693}, + {"time": 0.8, "angle": 5.5, "curve": 0.317, "c3": 0.693}, {"time": 0.8833, "angle": 4.5, "curve": 0.317, "c3": 0.693}, {"time": 0.9667, "angle": 5.5, "curve": 0.317, "c3": 0.693}, + {"time": 1.05, "angle": 4.5, "curve": 0.317, "c3": 0.693}, {"time": 1.1333, "angle": 5.5, "curve": 0.317, "c3": 0.693}, {"time": 1.2167, "angle": 6, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 1.3167, "angle": -3, "curve": 0.315, "c4": 0.8}, {"time": 1.4167} + ], + "translate": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1, "y": 4.69, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.2, "y": 43.73, "curve": 0.315, "c4": 0.8}, + {"time": 0.3, "y": 3.84, "curve": "stepped"}, {"time": 1.2167, "y": 3.84, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1.3167, "y": 43.73, "curve": 0.315, "c4": 0.8}, {"time": 1.4167} + ] + }, + "@leg-front-left": { + "translate": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1, "x": -1.28, "y": -14.48, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.2, "curve": 0.315, "c4": 0.8}, + {"time": 0.3, "x": -1.28, "y": -14.48, "curve": 0.317, "c3": 0.693}, {"time": 0.3833, "x": -1.02, "y": -10.26, "curve": 0.317, "c3": 0.693}, + {"time": 0.4667, "x": -1.22, "y": -13.05, "curve": 0.317, "c3": 0.693}, {"time": 0.55, "x": -1.02, "y": -10.26, "curve": 0.317, "c3": 0.693}, + {"time": 0.6333, "x": -1.22, "y": -13.05, "curve": 0.317, "c3": 0.693}, {"time": 0.7167, "x": -1.02, "y": -10.26, "curve": 0.317, "c3": 0.693}, + {"time": 0.8, "x": -1.22, "y": -13.05, "curve": 0.317, "c3": 0.693}, {"time": 0.8833, "x": -1.02, "y": -10.26, "curve": 0.317, "c3": 0.693}, + {"time": 0.9667, "x": -1.22, "y": -13.05, "curve": 0.317, "c3": 0.693}, {"time": 1.05, "x": -1.02, "y": -10.26, "curve": 0.317, "c3": 0.693}, + {"time": 1.1333, "x": -1.22, "y": -13.05, "curve": 0.317, "c3": 0.693}, {"time": 1.2167, "x": -1.28, "y": -14.48, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1.3167} + ] + }, + "@leg-front-right": { + "translate": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1, "x": -2.46, "y": -27.93, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.2, "curve": 0.315, "c4": 0.8}, + {"time": 0.3, "x": -2.46, "y": -27.93, "curve": 0.317, "c3": 0.693}, {"time": 0.3833, "x": -2.06, "y": -21.45, "curve": 0.317, "c3": 0.693}, + {"time": 0.4667, "x": -2.44, "y": -26.54, "curve": 0.317, "c3": 0.693}, {"time": 0.55, "x": -2.06, "y": -21.45, "curve": 0.317, "c3": 0.693}, + {"time": 0.6333, "x": -2.44, "y": -26.54, "curve": 0.317, "c3": 0.693}, {"time": 0.7167, "x": -2.06, "y": -21.45, "curve": 0.317, "c3": 0.693}, + {"time": 0.8, "x": -2.44, "y": -26.54, "curve": 0.317, "c3": 0.693}, {"time": 0.8833, "x": -2.06, "y": -21.45, "curve": 0.317, "c3": 0.693}, + {"time": 0.9667, "x": -2.44, "y": -26.54, "curve": 0.317, "c3": 0.693}, {"time": 1.05, "x": -2.06, "y": -21.45, "curve": 0.317, "c3": 0.693}, + {"time": 1.1333, "x": -2.44, "y": -26.54, "curve": 0.317, "c3": 0.693}, {"time": 1.2167, "x": -2.46, "y": -27.93, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1.3167} + ] + }, + "@pivot-main": { + "translate": [ + {"time": 0.1, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.3, "x": -154.22, "curve": "stepped"}, {"time": 1.2167, "x": -154.22, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 1.4167} + ] + }, + "leg-front-left-IK": {"translate": [{"time": 1.2167, "curve": 0.315, "c4": 0.8}, {"time": 1.3167, "x": -61.13, "curve": 0.315, "c4": 0.8}, {"time": 1.4167}]}, + "leg-front-right-IK": {"translate": [{"time": 1.2167, "curve": 0.315, "c4": 0.8}, {"time": 1.3167, "x": -61.13, "curve": 0.315, "c4": 0.8}, {"time": 1.4167}]}, + "@shadow": { + "translate": [ + {"time": 0.1, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.3, "x": -162.84, "curve": "stepped"}, {"time": 1.2167, "x": -162.84, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 1.4167} + ], + "scale": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1, "x": 1.1, "y": 1.1, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.2, "x": 0.92, "y": 0.92, "curve": 0.315, "c4": 0.8}, + {"time": 0.3, "x": 1.1, "y": 1.1, "curve": 0.317, "c3": 0.693}, {"time": 0.3833, "x": 1.06, "y": 1.06, "curve": 0.317, "c3": 0.693}, + {"time": 0.4667, "x": 1.1, "y": 1.1, "curve": 0.317, "c3": 0.693}, {"time": 0.55, "x": 1.06, "y": 1.06, "curve": 0.317, "c3": 0.693}, + {"time": 0.6333, "x": 1.1, "y": 1.1, "curve": 0.317, "c3": 0.693}, {"time": 0.7167, "x": 1.06, "y": 1.06, "curve": 0.317, "c3": 0.693}, + {"time": 0.8, "x": 1.1, "y": 1.1, "curve": 0.317, "c3": 0.693}, {"time": 0.8833, "x": 1.06, "y": 1.06, "curve": 0.317, "c3": 0.693}, + {"time": 0.9667, "x": 1.1, "y": 1.1, "curve": 0.317, "c3": 0.693}, {"time": 1.05, "x": 1.06, "y": 1.06, "curve": 0.317, "c3": 0.693}, + {"time": 1.1333, "x": 1.1, "y": 1.1, "curve": "stepped"}, {"time": 1.2167, "x": 1.1, "y": 1.1, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 1.3167, "x": 0.92, "y": 0.92, "curve": 0.315, "c4": 0.8}, {"time": 1.4167} + ] + }, + "tail": { + "rotate": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1, "angle": 16.7, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.2, "angle": -16.65, "curve": 0.315, "c4": 0.8}, + {"time": 0.3, "angle": 17.85, "curve": 0.317, "c3": 0.693}, {"time": 0.4333, "angle": 15.5, "curve": 0.317, "c3": 0.693}, {"time": 0.5667, "angle": 17.85, "curve": 0.317, "c3": 0.693}, + {"time": 0.7, "angle": 15.5, "curve": 0.317, "c3": 0.693}, {"time": 0.8333, "angle": 17.85, "curve": 0.317, "c3": 0.693}, {"time": 0.95, "angle": 15.5, "curve": 0.317, "c3": 0.693}, + {"time": 1.0833, "angle": 17.85, "curve": 0.317, "c3": 0.693}, {"time": 1.2167, "angle": 15.5, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 1.3167, "angle": -14.65, "curve": 0.315, "c4": 0.8}, {"time": 1.4167} + ] + }, + "back": { + "rotate": [ + {"time": 0.3, "curve": 0.306, "c3": 0.695}, {"time": 0.4833, "angle": 5.93, "curve": 0.306, "c3": 0.695}, {"time": 0.65, "curve": 0.306, "c3": 0.695}, + {"time": 0.8333, "angle": 5.93, "curve": 0.306, "c3": 0.695}, {"time": 1.0167, "curve": 0.306, "c3": 0.695}, {"time": 1.2167, "angle": 5.93, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 1.4167} + ] + }, + "body-fur-2": { + "rotate": [ + {"angle": -5.94, "curve": 0.338, "c2": 0.35, "c3": 0.688, "c4": 0.73}, {"time": 0.0667, "angle": -12.33, "curve": 0.379, "c2": 0.6, "c3": 0.724}, {"time": 0.1167, "angle": -15.12}, + {"time": 0.2, "angle": 13.82, "curve": 0.25, "c3": 0.75}, {"time": 0.3167, "angle": -26.73, "curve": 0.25, "c3": 0.75}, {"time": 0.45, "angle": 21.85, "curve": 0.25, "c3": 0.75}, + {"time": 0.6833, "angle": -18.74, "curve": 0.25, "c3": 0.75}, {"time": 0.9167, "angle": 0.46, "curve": 0.25, "c3": 0.75}, {"time": 1.1333, "angle": -18.54, "curve": 0.25, "c3": 0.75}, + {"time": 1.3333, "curve": 0.256, "c3": 0.619, "c4": 0.46}, {"time": 1.4167, "angle": 13.84} + ] + }, + "body-fur-9": { + "rotate": [ + {"angle": -9.27, "curve": 0.344, "c2": 0.37, "c3": 0.682, "c4": 0.72}, {"time": 0.0333, "angle": -12.33, "curve": 0.379, "c2": 0.6, "c3": 0.724}, + {"time": 0.0833, "angle": -15.12, "curve": 0.25, "c3": 0.75}, {"time": 0.1667, "angle": 13.82, "curve": 0.25, "c3": 0.75}, {"time": 0.2833, "angle": -26.73, "curve": 0.25, "c3": 0.75}, + {"time": 0.4167, "angle": 21.85, "curve": 0.25, "c3": 0.75}, {"time": 0.65, "angle": -18.74, "curve": 0.25, "c3": 0.75}, {"time": 0.8833, "angle": 0.46, "curve": 0.25, "c3": 0.75}, + {"time": 1.1, "angle": -18.54, "curve": 0.25, "c3": 0.75}, {"time": 1.3, "curve": 0.246, "c3": 0.635, "c4": 0.55}, {"time": 1.4167, "angle": 6.86} + ] + }, + "body-fur-8": { + "rotate": [ + {"angle": -13.66, "curve": 0.371, "c2": 0.62, "c3": 0.71}, {"time": 0.0333, "angle": -15.12}, {"time": 0.1167, "angle": 13.82, "curve": 0.25, "c3": 0.75}, + {"time": 0.2333, "angle": -26.73, "curve": 0.25, "c3": 0.75}, {"time": 0.3667, "angle": 21.85, "curve": 0.25, "c3": 0.75}, {"time": 0.6, "angle": -18.74, "curve": 0.25, "c3": 0.75}, + {"time": 0.8333, "angle": 0.46, "curve": 0.25, "c3": 0.75}, {"time": 1.05, "angle": -18.54, "curve": 0.25, "c3": 0.75}, {"time": 1.25, "curve": 0.243, "c3": 0.689, "c4": 0.75}, + {"time": 1.4167, "angle": -0.91} + ] + }, + "body-fur-7": { + "rotate": [ + {"angle": -10.83, "curve": 0.382, "c2": 0.57, "c3": 0.735}, {"time": 0.0667, "angle": -15.12, "curve": 0.25, "c3": 0.75}, {"time": 0.15, "angle": 13.82, "curve": 0.25, "c3": 0.75}, + {"time": 0.2667, "angle": -26.73, "curve": 0.25, "c3": 0.75}, {"time": 0.4, "angle": 21.85, "curve": 0.25, "c3": 0.75}, {"time": 0.6333, "angle": -18.74, "curve": 0.25, "c3": 0.75}, + {"time": 0.8667, "angle": 0.46, "curve": 0.25, "c3": 0.75}, {"time": 1.0833, "angle": -18.54, "curve": 0.25, "c3": 0.75}, {"time": 1.2833, "curve": 0.243, "c3": 0.649, "c4": 0.6}, + {"time": 1.4167, "angle": 2.91} + ] + }, + "body-fur-6": { + "rotate": [ + {"angle": -2.81, "curve": 0.314, "c2": 0.27, "c3": 0.686, "c4": 0.73}, {"time": 0.1, "angle": -12.33, "curve": 0.379, "c2": 0.6, "c3": 0.724}, {"time": 0.15, "angle": -15.12}, + {"time": 0.2333, "angle": 13.82, "curve": 0.25, "c3": 0.75}, {"time": 0.35, "angle": -26.73, "curve": 0.25, "c3": 0.75}, {"time": 0.4833, "angle": 21.85, "curve": 0.25, "c3": 0.75}, + {"time": 0.7167, "angle": -18.74, "curve": 0.25, "c3": 0.75}, {"time": 0.95, "angle": 0.46, "curve": 0.25, "c3": 0.75}, {"time": 1.1667, "angle": -18.54, "curve": 0.25, "c3": 0.75}, + {"time": 1.3667, "curve": 0.276, "c3": 0.621, "c4": 0.4}, {"time": 1.4167, "angle": 13.33} + ] + }, + "body-fur-5": { + "rotate": [ + {"angle": -7.56, "curve": 0.375, "c2": 0.5, "c3": 0.75}, {"time": 0.1, "angle": -15.12}, {"time": 0.1833, "angle": 13.82, "curve": 0.25, "c3": 0.75}, + {"time": 0.3, "angle": -26.73, "curve": 0.25, "c3": 0.75}, {"time": 0.4333, "angle": 21.85, "curve": 0.25, "c3": 0.75}, {"time": 0.6667, "angle": -18.74, "curve": 0.25, "c3": 0.75}, + {"time": 0.9, "angle": 0.46, "curve": 0.25, "c3": 0.75}, {"time": 1.1167, "angle": -18.54, "curve": 0.25, "c3": 0.75}, {"time": 1.3167, "curve": 0.25, "c3": 0.625, "c4": 0.5}, + {"time": 1.4167, "angle": 6.86} + ] + }, + "body-fur-4": { + "rotate": [ + {"angle": -0.48, "curve": 0.272, "c2": 0.12, "c3": 0.675, "c4": 0.7}, {"time": 0.1333, "angle": -12.33, "curve": 0.379, "c2": 0.6, "c3": 0.724}, {"time": 0.1833, "angle": -15.12}, + {"time": 0.2667, "angle": 13.82, "curve": 0.25, "c3": 0.75}, {"time": 0.3833, "angle": -26.73, "curve": 0.25, "c3": 0.75}, {"time": 0.5167, "angle": 21.85, "curve": 0.25, "c3": 0.75}, + {"time": 0.75, "angle": -18.74, "curve": 0.25, "c3": 0.75}, {"time": 0.9833, "angle": 0.46, "curve": 0.25, "c3": 0.75}, {"time": 1.2, "angle": -18.54, "curve": 0.25, "c3": 0.75}, + {"time": 1.4, "curve": 0.309, "c3": 0.644, "c4": 0.35}, {"time": 1.4167, "angle": 12.53} + ] + }, + "body-fur-3": { + "rotate": [ + {"angle": -4.29, "curve": 0.351, "c2": 0.4, "c3": 0.757}, {"time": 0.1333, "angle": -15.12}, {"time": 0.2167, "angle": 13.82, "curve": 0.25, "c3": 0.75}, + {"time": 0.3333, "angle": -26.73, "curve": 0.25, "c3": 0.75}, {"time": 0.4667, "angle": 21.85, "curve": 0.25, "c3": 0.75}, {"time": 0.7, "angle": -18.74, "curve": 0.25, "c3": 0.75}, + {"time": 0.9333, "angle": 0.46, "curve": 0.25, "c3": 0.75}, {"time": 1.15, "angle": -18.54, "curve": 0.25, "c3": 0.75}, {"time": 1.35, "curve": 0.265, "c3": 0.618, "c4": 0.43}, + {"time": 1.4167, "angle": 5.54} + ] + }, + "body-fur-1": { + "rotate": [ + {"angle": -10.83, "curve": 0.382, "c2": 0.57, "c3": 0.735}, {"time": 0.0667, "angle": -15.12, "curve": 0.25, "c3": 0.75}, {"time": 0.15, "angle": 13.82, "curve": 0.25, "c3": 0.75}, + {"time": 0.2667, "angle": -26.73, "curve": 0.25, "c3": 0.75}, {"time": 0.4, "angle": 21.85, "curve": 0.25, "c3": 0.75}, {"time": 0.6333, "angle": -18.74, "curve": 0.25, "c3": 0.75}, + {"time": 0.8667, "angle": 0.46, "curve": 0.25, "c3": 0.75}, {"time": 1.0833, "angle": -18.54, "curve": 0.25, "c3": 0.75}, {"time": 1.2833, "curve": 0.243, "c3": 0.649, "c4": 0.6}, + {"time": 1.4167, "angle": 10.51} + ] + } + } + }, + "423222795": { + "bones": { + "body-fur-8": {"rotate": [{"angle": -0.91}]}, + "body-fur-1": {"rotate": [{"angle": 10.51}]}, + "body-fur-2": {"rotate": [{"angle": 13.84}]}, + "body-fur-3": {"rotate": [{"angle": 5.54}]}, + "body-fur-4": {"rotate": [{"angle": 12.53}]}, + "body-fur-5": {"rotate": [{"angle": 6.86}]}, + "body-fur-6": {"rotate": [{"angle": 13.33}]}, + "body-fur-7": {"rotate": [{"angle": 2.91}]}, + "body-fur-9": {"rotate": [{"angle": 6.86}]} + } + }, + "574696387": { + "slots": { + "eyes": {"attachment": [{"name": "eyes-happy"}]}, + "leg-front-left": {"attachment": [{"time": 0.2, "name": "mystic-leg-front-left-stretch"}, {"time": 0.5833, "name": "mystic-leg-front-left"}]} + }, + "bones": { + "@leg-front-left": { + "translate": [ + {"x": -14.55, "y": -2.39, "curve": 0.374, "c2": 0.33, "c3": 0.72, "c4": 0.68}, {"time": 0.0333, "x": -24.69, "y": -4.71, "curve": 0.37, "c2": 0.57, "c3": 0.746}, + {"time": 0.1667, "x": -24.61, "y": -1.31, "curve": 0.37, "c2": 0.57, "c3": 0.746}, {"time": 0.3333, "x": 13.45, "y": -27.72, "curve": 0.345, "c2": 0.53, "c3": 0.751}, + {"time": 0.4833, "x": 40.66, "y": -4.9, "curve": 0.262, "c3": 0.63, "c4": 0.42}, {"time": 0.5667, "x": 49.25, "y": 8.32, "curve": 0.343, "c2": 0.3, "c3": 0.688, "c4": 0.65}, + {"time": 0.7, "x": 9.23, "y": 17.43, "curve": 0.255, "c3": 0.659, "c4": 0.47}, {"time": 0.75, "x": -14.55, "y": -2.39} + ], + "scale": [ + {"curve": 0.459, "c2": 0.59, "c3": 0.838}, {"time": 0.0333, "x": 0.935, "curve": 0.331, "c3": 0.677, "c4": 0.4}, {"time": 0.0667, "x": 0.87, "curve": 0.464, "c4": 0.7}, {"time": 0.1667} + ] + }, + "leg-front-left-IK": { + "translate": [ + {"x": 0.33, "y": 2.27, "curve": 0.154, "c4": 0.9}, {"time": 0.0833, "x": 32.98, "y": -4.28, "curve": 0.269, "c2": 0.57, "c3": 0.577}, + {"time": 0.1667, "x": 53.3, "y": 2.35, "curve": 0.461, "c3": 0.543}, {"time": 0.4167, "x": -85.44, "y": 106.83, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.5167, "x": -85.78, "y": 86.09, "curve": 0.143, "c3": 0.57, "c4": 0.46}, {"time": 0.7, "x": -26.89, "y": 8.67, "curve": 0, "c2": 0.09, "c3": 0.479, "c4": 0.56}, + {"time": 0.75, "x": 0.33, "y": 2.27} + ] + }, + "leg-back-left-IK": { + "translate": [ + {"x": 17.64, "y": 16.11, "curve": 0.455, "c2": 0.58, "c3": 0.847}, {"time": 0.0333, "curve": 0, "c2": 0.1, "c3": 0.85}, + {"time": 0.2333, "x": -50.37, "curve": 0, "c2": 0.09, "c3": 0.466, "c4": 0.7}, {"time": 0.3, "x": 11.38, "y": 18.2, "curve": 0.177, "c2": 0.44, "c3": 0.617}, + {"time": 0.5333, "x": 56.74, "y": 103.8, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.6667, "x": 71.93, "y": 112.16, "curve": 0.315, "c4": 0.8}, {"time": 0.75, "x": 17.64, "y": 16.11} + ] + }, + "@shadow": { + "scale": [ + {"curve": 0.313, "c3": 0.699}, {"time": 0.25, "x": 0.94, "y": 0.94, "curve": 0.313, "c3": 0.699}, {"time": 0.4333, "x": 0.8, "y": 0.8, "curve": 0.315, "c4": 0.8}, {"time": 0.75} + ] + }, + "tail": { + "rotate": [{"curve": 0.161, "c3": 0.854}, {"time": 0.25, "angle": -20, "curve": 0, "c2": 0.3, "c3": 0.546}, {"time": 0.5, "angle": 4.21, "curve": 0.154, "c4": 0.9}, {"time": 0.75}] + }, + "@leg-front-right": { + "translate": [ + {"x": 7.78, "y": -11.23, "curve": 0.649, "c2": 0.4, "c4": 0.74}, {"time": 0.0167, "x": -0.64, "y": -13.16, "curve": 0.313, "c3": 0.699}, + {"time": 0.1333, "x": -9.39, "y": -16.39, "curve": 0.346, "c2": 0.44, "c3": 0.699}, {"time": 0.3167, "x": -26.29, "y": 12.52, "curve": 0, "c2": 0.18, "c3": 0.424, "c4": 0.59}, + {"time": 0.4333, "x": 7.42, "y": -10.53, "curve": 0.316, "c2": 0.49, "c3": 0.751}, {"time": 0.6, "x": 37.87, "y": -4.31, "curve": 0.289, "c3": 0.884, "c4": 0.7}, + {"time": 0.75, "x": 7.78, "y": -11.23} + ] + }, + "leg-front-right-IK": { + "translate": [ + {"x": -13.57, "y": 17.19, "curve": 0.645, "c2": 0.47, "c4": 0.81}, {"time": 0.0167, "curve": 0.313, "c3": 0.699}, {"time": 0.2667, "x": 52.85, "curve": 0, "c2": 0.3, "c3": 0.544}, + {"time": 0.5, "x": -85.89, "y": 125.19}, {"time": 0.6, "x": -87.57, "y": 110.89, "curve": 0.142, "c3": 0.858, "c4": 0.77}, {"time": 0.75, "x": -13.57, "y": 17.19} + ] + }, + "@leg-back-left": { + "translate": [ + {"x": -4.73, "y": 6.6, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.15, "x": 1.29, "y": -4.22, "curve": 0.44, "c2": 0.55, "c3": 0.858}, + {"time": 0.25, "x": 2.16, "y": 6.49, "curve": 0, "c2": 0.09, "c3": 0.466, "c4": 0.7}, {"time": 0.3, "x": -5.17, "y": 15.67, "curve": 0.218, "c2": 0.39, "c3": 0.738}, + {"time": 0.5333, "x": -14.09, "y": -7.98, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.6667, "x": -12.69, "y": -11.31, "curve": 0.315, "c4": 0.8}, {"time": 0.75, "x": -4.73, "y": 6.6} + ], + "scale": [{"curve": 0, "c2": 0.1, "c3": 0.457, "c4": 0.54}, {"time": 0.0667, "x": 0.837, "curve": 0.395, "c2": 0.49, "c3": 0.868}, {"time": 0.15}] + }, + "@pivot-back": { + "rotate": [ + {"angle": 3.74, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "angle": 1.5, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.25, "angle": -2, "curve": 0, "c2": 0.1, "c3": 0.85}, + {"time": 0.35, "angle": -5, "curve": 0.154, "c4": 0.9}, {"time": 0.6667, "angle": 5, "curve": 0.154, "c4": 0.9}, {"time": 0.75, "angle": 3.74} + ], + "translate": [ + {"y": 8, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "y": -10, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.25, "curve": 0, "c2": 0.1, "c3": 0.85}, + {"time": 0.5667, "y": 80.61, "curve": 0.154, "c4": 0.9}, {"time": 0.75, "y": 8} + ] + }, + "@pivot-main": {"scale": [{"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1333, "y": 0.85, "curve": 0.306, "c4": 0.8}, {"time": 0.25}]}, + "ear-right": { + "rotate": [ + {"angle": 6.45, "curve": 0.306, "c3": 0.695}, {"time": 0.25, "angle": -6.15, "curve": 0.306, "c3": 0.695}, {"time": 0.5, "angle": -7.47, "curve": 0.306, "c3": 0.695}, + {"time": 0.75, "angle": 6.45} + ] + }, + "ear-left": { + "rotate": [ + {"angle": 6.45, "curve": 0.306, "c3": 0.695}, {"time": 0.25, "angle": -6.15, "curve": 0.306, "c3": 0.695}, {"time": 0.5, "angle": -7.47, "curve": 0.306, "c3": 0.695}, + {"time": 0.75, "angle": 6.45} + ] + }, + "back": {"rotate": [{"curve": 0.306, "c3": 0.695}, {"time": 0.25, "angle": 9.32, "curve": 0.306, "c3": 0.695}, {"time": 0.5, "angle": -5.11, "curve": 0.306, "c3": 0.695}, {"time": 0.75}]}, + "body-fur-8": { + "rotate": [{"angle": -35.49, "curve": 0.455, "c2": 0.01, "c3": 0.75}, {"time": 0.3833, "angle": 26.07, "curve": 0.455, "c2": 0.01, "c3": 0.75}, {"time": 0.75, "angle": -35.49}] + }, + "body-fur-1": { + "rotate": [ + {"angle": 5.91, "curve": 0.389, "c2": 0.48, "c3": 0.708}, {"time": 0.2, "angle": -35.49}, {"time": 0.5833, "angle": 26.07, "curve": 0.389, "c2": 0.01, "c3": 0.715, "c4": 0.48}, + {"time": 0.75, "angle": 5.91} + ] + }, + "body-fur-2": { + "rotate": [ + {"angle": 22.47, "curve": 0.397, "c2": 0.23, "c3": 0.719, "c4": 0.71}, {"time": 0.2, "angle": -19.23, "curve": 0.356, "c2": 0.59, "c3": 0.686}, {"time": 0.3, "angle": -35.49}, + {"time": 0.6833, "angle": 26.07, "curve": 0.355, "c2": 0.02, "c3": 0.687, "c4": 0.39}, {"time": 0.75, "angle": 22.47} + ] + }, + "body-fur-3": { + "rotate": [ + {"angle": -6.24, "curve": 0.371, "c2": 0.54, "c3": 0.697}, {"time": 0.15, "angle": -35.49}, {"time": 0.5333, "angle": 26.07, "curve": 0.406, "c2": 0.01, "c3": 0.727, "c4": 0.55}, + {"time": 0.75, "angle": -6.24} + ] + }, + "body-fur-4": { + "rotate": [ + {"angle": 15.47, "curve": 0.379, "c2": 0.31, "c3": 0.706, "c4": 0.72}, {"time": 0.15, "angle": -19.23, "curve": 0.356, "c2": 0.59, "c3": 0.686}, {"time": 0.25, "angle": -35.49}, + {"time": 0.6333, "angle": 26.07, "curve": 0.372, "c2": 0.01, "c3": 0.702, "c4": 0.43}, {"time": 0.75, "angle": 15.47} + ] + }, + "body-fur-5": { + "rotate": [ + {"angle": -19.23, "curve": 0.356, "c2": 0.59, "c3": 0.686}, {"time": 0.1, "angle": -35.49}, {"time": 0.4833, "angle": 26.07, "curve": 0.423, "c2": 0.01, "c3": 0.737, "c4": 0.65}, + {"time": 0.75, "angle": -19.23} + ] + }, + "body-fur-6": { + "rotate": [ + {"angle": 5.34, "curve": 0.362, "c2": 0.35, "c3": 0.692, "c4": 0.72}, {"time": 0.1, "angle": -19.23, "curve": 0.356, "c2": 0.59, "c3": 0.686}, + {"time": 0.2, "angle": -35.49, "curve": 0.25, "c3": 0.75}, {"time": 0.5833, "angle": 26.07, "curve": 0.389, "c2": 0.01, "c3": 0.715, "c4": 0.48}, {"time": 0.75, "angle": 5.34} + ] + }, + "body-fur-7": { + "rotate": [ + {"angle": -30.29, "curve": 0.343, "c2": 0.63, "c3": 0.676}, {"time": 0.05, "angle": -35.49, "curve": 0.25, "c3": 0.75}, + {"time": 0.4333, "angle": 26.07, "curve": 0.439, "c2": 0.01, "c3": 0.745, "c4": 0.79}, {"time": 0.75, "angle": -30.29} + ] + }, + "body-fur-9": { + "rotate": [ + {"angle": -19.23, "curve": 0.356, "c2": 0.59, "c3": 0.686}, {"time": 0.1, "angle": -35.49}, {"time": 0.4833, "angle": 26.07, "curve": 0.423, "c2": 0.01, "c3": 0.737, "c4": 0.65}, + {"time": 0.75, "angle": -19.23} + ] + } + } + }, + "2432345616": { + "slots": {"leg-front-left": {"attachment": [{"time": 0.2, "name": "mystic-leg-front-left-stretch"}, {"time": 0.6667, "name": "mystic-leg-front-left"}]}}, + "bones": { + "@pivot-back": { + "translate": [ + {"y": 8, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "y": -10, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.25, "curve": 0, "c2": 0.1, "c3": 0.85}, + {"time": 0.5833, "y": 80.61, "curve": 0.154, "c4": 0.9}, {"time": 0.75, "y": 8} + ] + }, + "@leg-front-left": { + "translate": [ + {"x": -14.55, "y": -2.39, "curve": 0.374, "c2": 0.33, "c3": 0.72, "c4": 0.68}, {"time": 0.0333, "x": -24.61, "y": -1.31, "curve": "stepped"}, + {"time": 0.1667, "x": -24.61, "y": -1.31, "curve": 0.37, "c2": 0.57, "c3": 0.746}, {"time": 0.3333, "x": 13.45, "y": -27.72, "curve": 0.345, "c2": 0.53, "c3": 0.751}, + {"time": 0.4833, "x": 40.66, "y": -4.9, "curve": 0.255, "c3": 0.673, "c4": 0.49}, {"time": 0.5833, "x": 39.16, "y": 14.5, "curve": 0.565, "c2": 0.41, "c4": 0.82}, + {"time": 0.6667, "x": 1.05, "y": 16.15, "curve": 0.255, "c3": 0.659, "c4": 0.47}, {"time": 0.75, "x": -14.55, "y": -2.39} + ], + "scale": [ + {"x": 0.969, "curve": 0.459, "c2": 0.59, "c3": 0.838}, {"time": 0.0333, "x": 0.961, "curve": 0.154, "c4": 0.9}, {"time": 0.1667, "x": 1.075, "curve": 0, "c2": 0.1, "c3": 0.85}, + {"time": 0.3333, "curve": "stepped"}, {"time": 0.6667, "curve": 0, "c2": 0.09, "c3": 0.589, "c4": 0.67}, {"time": 0.75, "x": 0.969} + ] + }, + "leg-front-left-IK": { + "translate": [ + {"x": 4.88, "y": 20.49, "curve": 0.416, "c2": 0.51, "c3": 0.865}, {"time": 0.0833, "x": 28.75, "y": 34.52, "curve": 0.269, "c2": 0.57, "c3": 0.577}, + {"time": 0.1667, "x": 31.44, "y": 44.28, "curve": 0.461, "c3": 0.543}, {"time": 0.4167, "x": -85.44, "y": 106.83}, + {"time": 0.5167, "x": -87.18, "y": 81.5, "curve": 0.143, "c3": 0.57, "c4": 0.46}, {"time": 0.6667, "x": -21.75, "y": 25.36, "curve": 0, "c2": 0.09, "c3": 0.479, "c4": 0.56}, + {"time": 0.75, "x": 4.88, "y": 20.49} + ] + }, + "leg-back-left-IK": { + "translate": [ + {"x": 17.64, "y": 16.11, "curve": 0.455, "c2": 0.58, "c3": 0.847}, {"time": 0.0333, "curve": 0, "c2": 0.1, "c3": 0.85}, + {"time": 0.2333, "x": -50.37, "curve": 0, "c2": 0.09, "c3": 0.466, "c4": 0.7}, {"time": 0.3, "x": 11.38, "y": 18.2, "curve": 0.177, "c2": 0.44, "c3": 0.617}, + {"time": 0.5333, "x": 56.74, "y": 103.8, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.6667, "x": 71.93, "y": 112.16, "curve": 0.139, "c3": 0.671, "c4": 0.58}, + {"time": 0.75, "x": 17.64, "y": 16.11} + ] + }, + "@shadow": { + "scale": [ + {"curve": 0.313, "c3": 0.699}, {"time": 0.25, "x": 0.94, "y": 0.94, "curve": 0.313, "c3": 0.699}, {"time": 0.4333, "x": 0.8, "y": 0.8, "curve": 0.315, "c4": 0.8}, {"time": 0.75} + ] + }, + "@pivot-main": {"scale": [{"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "y": 0.98, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.25}]}, + "@leg-front-right": { + "translate": [ + {"x": -0.64, "y": -13.16, "curve": 0.313, "c3": 0.654, "c4": 0.45}, {"time": 0.1167, "x": -9.39, "y": -16.39, "curve": 0.346, "c2": 0.44, "c3": 0.699}, + {"time": 0.3, "x": -26.29, "y": 12.52, "curve": 0, "c2": 0.18, "c3": 0.424, "c4": 0.59}, {"time": 0.4167, "x": 7.42, "y": -10.53, "curve": 0.316, "c2": 0.49, "c3": 0.751}, + {"time": 0.5833, "x": 37.87, "y": -4.31, "curve": 0.315, "c4": 0.8}, {"time": 0.75, "x": -0.64, "y": -13.16} + ] + }, + "@leg-back-left": { + "translate": [ + {"x": -4.73, "y": 6.6, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.15, "x": 1.29, "y": -4.22, "curve": 0.44, "c2": 0.55, "c3": 0.858}, + {"time": 0.25, "x": 2.16, "y": 6.49, "curve": 0, "c2": 0.09, "c3": 0.466, "c4": 0.7}, {"time": 0.3, "x": -5.17, "y": 15.67, "curve": 0.218, "c2": 0.39, "c3": 0.738}, + {"time": 0.5333, "x": -14.09, "y": -7.98, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.6667, "x": -12.69, "y": -11.31, "curve": 0.139, "c3": 0.671, "c4": 0.58}, + {"time": 0.75, "x": -4.73, "y": 6.6} + ], + "scale": [{"curve": 0, "c2": 0.1, "c3": 0.457, "c4": 0.54}, {"time": 0.0667, "x": 0.837, "curve": 0.395, "c2": 0.49, "c3": 0.868}, {"time": 0.15}] + }, + "leg-front-right-IK": { + "translate": [ + {"curve": 0.313, "c3": 0.699}, {"time": 0.25, "x": 52.85, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.4833, "x": -85.89, "y": 125.19}, + {"time": 0.5833, "x": -87.57, "y": 110.89, "curve": 0.154, "c4": 0.9}, {"time": 0.75} + ] + }, + "body-fur-5": { + "rotate": [ + {"angle": -19.23, "curve": 0.356, "c2": 0.59, "c3": 0.686}, {"time": 0.1, "angle": -35.49}, {"time": 0.4833, "angle": 26.07, "curve": 0.423, "c2": 0.01, "c3": 0.737, "c4": 0.65}, + {"time": 0.75, "angle": -19.23} + ] + }, + "body-fur-9": { + "rotate": [ + {"angle": -19.23, "curve": 0.356, "c2": 0.59, "c3": 0.686}, {"time": 0.1, "angle": -35.49}, {"time": 0.4833, "angle": 26.07, "curve": 0.423, "c2": 0.01, "c3": 0.737, "c4": 0.65}, + {"time": 0.75, "angle": -19.23} + ] + }, + "body-fur-7": { + "rotate": [ + {"angle": -30.29, "curve": 0.343, "c2": 0.63, "c3": 0.676}, {"time": 0.05, "angle": -35.49, "curve": 0.25, "c3": 0.75}, + {"time": 0.4333, "angle": 26.07, "curve": 0.439, "c2": 0.01, "c3": 0.745, "c4": 0.79}, {"time": 0.75, "angle": -30.29} + ] + }, + "body-fur-1": { + "rotate": [ + {"angle": 5.91, "curve": 0.389, "c2": 0.48, "c3": 0.708}, {"time": 0.2, "angle": -35.49}, {"time": 0.5833, "angle": 26.07, "curve": 0.389, "c2": 0.01, "c3": 0.715, "c4": 0.48}, + {"time": 0.75, "angle": 5.91} + ] + }, + "body-fur-3": { + "rotate": [ + {"angle": -6.24, "curve": 0.371, "c2": 0.54, "c3": 0.697}, {"time": 0.15, "angle": -35.49}, {"time": 0.5333, "angle": 26.07, "curve": 0.406, "c2": 0.01, "c3": 0.727, "c4": 0.55}, + {"time": 0.75, "angle": -6.24} + ] + }, + "body-fur-8": { + "rotate": [{"angle": -35.49, "curve": 0.455, "c2": 0.01, "c3": 0.75}, {"time": 0.3833, "angle": 26.07, "curve": 0.455, "c2": 0.01, "c3": 0.75}, {"time": 0.75, "angle": -35.49}] + }, + "body-fur-4": { + "rotate": [ + {"angle": 15.47, "curve": 0.379, "c2": 0.31, "c3": 0.706, "c4": 0.72}, {"time": 0.15, "angle": -19.23, "curve": 0.356, "c2": 0.59, "c3": 0.686}, {"time": 0.25, "angle": -35.49}, + {"time": 0.6333, "angle": 26.07, "curve": 0.372, "c2": 0.01, "c3": 0.702, "c4": 0.43}, {"time": 0.75, "angle": 15.47} + ] + }, + "body-fur-2": { + "rotate": [ + {"angle": 22.47, "curve": 0.397, "c2": 0.23, "c3": 0.719, "c4": 0.71}, {"time": 0.2, "angle": -19.23, "curve": 0.356, "c2": 0.59, "c3": 0.686}, {"time": 0.3, "angle": -35.49}, + {"time": 0.6833, "angle": 26.07, "curve": 0.355, "c2": 0.02, "c3": 0.687, "c4": 0.39}, {"time": 0.75, "angle": 22.47} + ] + }, + "body-fur-6": { + "rotate": [ + {"angle": 5.34, "curve": 0.362, "c2": 0.35, "c3": 0.692, "c4": 0.72}, {"time": 0.1, "angle": -19.23, "curve": 0.356, "c2": 0.59, "c3": 0.686}, + {"time": 0.2, "angle": -35.49, "curve": 0.25, "c3": 0.75}, {"time": 0.5833, "angle": 26.07, "curve": 0.389, "c2": 0.01, "c3": 0.715, "c4": 0.48}, {"time": 0.75, "angle": 5.34} + ] + } + } + }, + "4155075159": { + "slots": { + "eyes": { + "attachment": [ + {"time": 0.05, "name": "eyes-angry"}, {"time": 0.3333, "name": "eyes-shut"}, {"time": 0.4333, "name": "eyes-angry"}, {"time": 1.0833, "name": "eyes-shut"}, + {"time": 1.1667, "name": "eyes-angry"}, {"time": 1.2833, "name": "eyes"} + ] + }, + "mouth": {"attachment": [{"time": 0.05, "name": "mouth-bite"}, {"time": 0.4333, "name": "mouth-open"}, {"time": 0.9167, "name": "mouth-bite"}, {"time": 1.2833, "name": "mouth"}]} + }, + "bones": { + "@pivot-back": { + "rotate": [{"curve": 0, "c2": 0.3, "c3": 0.546}, {"time": 0.0833, "angle": 6, "curve": 0, "c2": 0.2, "c3": 0.828}, {"time": 0.1667}], + "translate": [ + {"curve": 0, "c2": 0.3, "c3": 0.546}, {"time": 0.0833, "y": 5, "curve": 0.313, "c3": 0.699}, {"time": 0.1667, "y": 220, "curve": 0.617, "c4": 0.6}, {"time": 0.3333, "y": 10}, + {"time": 0.4167, "y": 5, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5833, "y": 420, "curve": 0.852, "c4": 0.1}, {"time": 0.9167}, + {"time": 1.0833, "y": -5, "curve": 0, "c2": 0.17, "c3": 0.461, "c4": 0.62}, {"time": 1.2167, "y": 130, "curve": 0.353, "c2": 0.54, "c3": 0.751}, {"time": 1.3333} + ] + }, + "@leg-front-right": {"translate": [{"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "x": -2.46, "y": -27.89, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.1167}]}, + "@leg-front-left": {"translate": [{"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "x": -1.21, "y": -13.68, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.1167}]}, + "@pivot-center": { + "rotate": [ + {"time": 0.1167, "curve": 0.313, "c3": 0.817}, {"time": 0.3333, "angle": 180, "curve": "stepped"}, {"time": 0.4167, "angle": 180, "curve": 0.313, "c3": 0.699}, + {"time": 0.6667, "angle": -1, "curve": 0.837, "c4": 0.2}, {"time": 0.9167, "angle": 178}, {"time": 1.0833, "angle": 180, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1.3333} + ] + }, + "leg-front-left-IK": { + "translate": [ + {"time": 0.0833, "x": 3.28, "y": 8.42, "curve": 0.344, "c3": 0.715, "c4": 0.45}, {"time": 0.1167, "x": 23.89, "y": 74.66, "curve": 0.589, "c2": 0.35, "c4": 0.75}, + {"time": 0.1667, "x": -100.7, "y": 242.98, "curve": 0.306, "c3": 0.695}, {"time": 0.25, "x": -233.21, "y": 406.49, "curve": 0.474, "c3": 0.714, "c4": 0.56}, + {"time": 0.3, "x": -153, "y": 482.64, "curve": 0.306, "c2": 0.39, "c3": 0.628, "c4": 0.74}, {"time": 0.3167, "x": -106.74, "y": 465.65, "curve": 0.287, "c2": 0.62, "c3": 0.612}, + {"time": 0.3333, "x": -79.92, "y": 385}, {"time": 0.4167, "x": -126.28, "y": 392.02, "curve": 0, "c2": 0.17, "c3": 0.45, "c4": 0.61}, + {"time": 0.5, "x": -212.54, "y": 584.25, "curve": 0.323, "c2": 0.4, "c3": 0.681, "c4": 0.77}, {"time": 0.55, "x": -233.91, "y": 520.55, "curve": 0.377, "c2": 0.62, "c3": 0.724}, + {"time": 0.5833, "x": -173.29, "y": 470.76}, {"time": 0.6667, "x": 19.48, "y": 419.84}, {"time": 0.75, "x": 31.74, "y": 414.89, "curve": 0.255, "c3": 0.659, "c4": 0.47}, + {"time": 0.8333, "x": 83.62, "y": 412.28, "curve": 0.41, "c2": 0.34, "c3": 0.774, "c4": 0.71}, + {"time": 0.8833, "x": 116.53, "y": 400.02, "curve": 0.427, "c2": 0.37, "c3": 0.767, "c4": 0.71}, {"time": 0.9, "x": 130.33, "y": 410.53, "curve": 0.649, "c2": 0.4, "c4": 0.74}, + {"time": 0.9167, "x": -78.08, "y": 379.36}, {"time": 1.0833, "x": -92.45, "y": 375.87, "curve": 0, "c2": 0.17, "c3": 0.45, "c4": 0.61}, + {"time": 1.15, "x": 127.37, "y": 350.17, "curve": 0.345, "c2": 0.53, "c3": 0.751}, {"time": 1.2167, "x": 133.62, "y": 244.55, "curve": 0, "c2": 0.1, "c3": 0.769}, {"time": 1.3333} + ] + }, + "leg-front-right-IK": { + "translate": [ + {"time": 0.0833, "curve": 0.344, "c3": 0.715, "c4": 0.45}, {"time": 0.1167, "x": 41.2, "y": 75.27, "curve": 0.589, "c2": 0.35, "c4": 0.75}, + {"time": 0.1667, "x": -103.56, "y": 361.93, "curve": 0.313, "c3": 0.699}, {"time": 0.25, "x": 61.46, "y": 606.37, "curve": 0.474, "c3": 0.714, "c4": 0.56}, + {"time": 0.3, "x": 293.95, "y": 550.17, "curve": 0.306, "c2": 0.39, "c3": 0.628, "c4": 0.74}, {"time": 0.3167, "x": 340.35, "y": 482.44, "curve": 0.287, "c2": 0.62, "c3": 0.612}, + {"time": 0.3333, "x": 426.33, "y": 357.51}, {"time": 0.4167, "x": 340.52, "y": 373.76, "curve": 0, "c2": 0.17, "c3": 0.45, "c4": 0.61}, + {"time": 0.5, "x": 236.72, "y": 764.35, "curve": 0.323, "c2": 0.4, "c3": 0.681, "c4": 0.77}, {"time": 0.55, "x": -18.99, "y": 764.25, "curve": 0.377, "c2": 0.62, "c3": 0.724}, + {"time": 0.5833, "x": -86.72, "y": 646.17}, {"time": 0.6667, "x": 16.1, "y": 426.11}, {"time": 0.75, "x": 19.92, "y": 404.36, "curve": 0.255, "c3": 0.659, "c4": 0.47}, + {"time": 0.8333, "x": 90.31, "y": 343.4, "curve": 0.41, "c2": 0.34, "c3": 0.774, "c4": 0.71}, + {"time": 0.8833, "x": 202.62, "y": 235.31, "curve": 0.427, "c2": 0.37, "c3": 0.767, "c4": 0.71}, {"time": 0.9, "x": 290.37, "y": 171.88, "curve": 0.649, "c2": 0.4, "c4": 0.74}, + {"time": 0.9167, "x": 412.25, "y": 355.41}, {"time": 1.0833, "x": 345.67, "y": 359.46, "curve": 0, "c2": 0.17, "c3": 0.45, "c4": 0.61}, + {"time": 1.15, "x": 400.77, "y": 121.52, "curve": 0.345, "c2": 0.53, "c3": 0.751}, {"time": 1.2167, "x": 172.82, "y": 29.19, "curve": 0.306, "c4": 0.8}, {"time": 1.3333} + ] + }, + "leg-back-left-IK": { + "translate": [ + {"time": 0.0833, "x": 1.05, "y": 4.19, "curve": 0.344, "c3": 0.715, "c4": 0.45}, {"time": 0.1167, "x": 28.54, "y": 87, "curve": 0.589, "c2": 0.35, "c4": 0.75}, + {"time": 0.1667, "x": -101.24, "y": 155.59, "curve": 0.313, "c3": 0.699}, {"time": 0.25, "x": -446.46, "y": 186.66, "curve": 0.474, "c3": 0.714, "c4": 0.56}, + {"time": 0.3, "x": -509.64, "y": 364.51, "curve": 0.306, "c2": 0.39, "c3": 0.628, "c4": 0.74}, {"time": 0.3167, "x": -479.36, "y": 400.3, "curve": 0.287, "c2": 0.62, "c3": 0.612}, + {"time": 0.3333, "x": -473.08, "y": 343.1}, {"time": 0.4167, "x": -421.75, "y": 358.21, "curve": 0, "c2": 0.17, "c3": 0.45, "c4": 0.61}, + {"time": 0.5, "x": -502.28, "y": 409.04, "curve": 0.323, "c2": 0.4, "c3": 0.681, "c4": 0.77}, {"time": 0.55, "x": -357.82, "y": 309.09, "curve": 0.377, "c2": 0.62, "c3": 0.724}, + {"time": 0.5833, "x": -190.14, "y": 299.56}, {"time": 0.6667, "x": 28.01, "y": 424.39}, {"time": 0.75, "x": 15.55, "y": 419.34, "curve": 0.255, "c3": 0.659, "c4": 0.47}, + {"time": 0.8333, "x": 74.85, "y": 472.68, "curve": 0.41, "c2": 0.34, "c3": 0.774, "c4": 0.71}, + {"time": 0.8833, "x": 69.06, "y": 556.5, "curve": 0.427, "c2": 0.37, "c3": 0.767, "c4": 0.71}, {"time": 0.9, "x": 11.02, "y": 617.8, "curve": 0.649, "c2": 0.4, "c4": 0.74}, + {"time": 0.9167, "x": -407.64, "y": 352.01}, {"time": 1.0833, "x": -407.65, "y": 352.01, "curve": 0, "c2": 0.17, "c3": 0.45, "c4": 0.61}, + {"time": 1.15, "x": -101.44, "y": 524.93, "curve": 0.345, "c2": 0.53, "c3": 0.751}, {"time": 1.2167, "x": 63.56, "y": 378.89, "curve": 0, "c2": 0.1, "c3": 0.769}, {"time": 1.3333} + ] + }, + "tail": { + "rotate": [ + {"curve": 0, "c2": 0.3, "c3": 0.546}, {"time": 0.0833, "angle": 19.35, "curve": 0.313, "c3": 0.699}, {"time": 0.1667, "angle": -22.95, "curve": 0.617, "c4": 0.6}, + {"time": 0.3333, "angle": 22.22}, {"time": 0.4167, "angle": 24.08, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5833, "angle": -30.94, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.6667, "angle": 18.1, "curve": 0.313, "c3": 0.699}, {"time": 0.8333, "angle": -20.52, "curve": 0.464, "c4": 0.7}, {"time": 0.9167, "angle": 16.35}, + {"time": 1.0833, "angle": 20.35, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1.2167, "angle": -9.93, "curve": 0.161, "c3": 0.854}, {"time": 1.3333} + ] + }, + "@shadow": { + "scale": [ + {"curve": 0, "c2": 0.3, "c3": 0.546}, {"time": 0.0833, "x": 1.1, "y": 1.1, "curve": 0.313, "c3": 0.699}, {"time": 0.1667, "x": 0.92, "y": 0.92, "curve": 0.617, "c4": 0.6}, + {"time": 0.3333, "x": 1.12, "y": 1.12}, {"time": 0.4167, "x": 1.16, "y": 1.16, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5833, "x": 0.86, "y": 0.86, "curve": 0.752, "c4": 0.2}, + {"time": 0.9167, "x": 1.12, "y": 1.12}, {"time": 1.0833, "x": 1.16, "y": 1.16, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1.3333} + ] + }, + "@pivot-main": {"scale": [{"time": 0.3333, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.4167, "y": 0.9, "curve": 0, "c2": 0.3, "c3": 0.546}, {"time": 0.5}]}, + "body-fur-2": { + "rotate": [ + {"angle": 19.98, "curve": 0.289, "c2": 0.19, "c3": 0.673, "c4": 0.69}, {"time": 0.0667, "angle": 4.86, "curve": 0.381, "c2": 0.59, "c3": 0.729}, {"time": 0.1}, + {"time": 0.1833, "angle": 15.16, "curve": 0.25, "c3": 0.75}, {"time": 0.2667, "angle": -17.09, "curve": 0.25, "c3": 0.75}, {"time": 0.4333, "angle": 34.22, "curve": 0.25, "c3": 0.75}, + {"time": 0.5, "angle": -32.46, "curve": 0.25, "c3": 0.75}, {"time": 0.6333, "angle": -37.23, "curve": 0.25, "c3": 0.75}, {"time": 0.8, "angle": 24.78, "curve": 0.25, "c3": 0.75}, + {"time": 1.0167, "angle": -47.33, "curve": 0.25, "c3": 0.75}, {"time": 1.1, "angle": -3.05, "curve": 0.25, "c3": 0.75}, {"time": 1.1833, "angle": -15.24, "curve": 0.25, "c3": 0.75}, + {"time": 1.3167, "angle": 21.64, "curve": 0.295, "c3": 0.633, "c4": 0.37}, {"time": 1.3333, "angle": 13.84} + ] + }, + "body-fur-9": { + "rotate": [ + {"angle": 16.71, "curve": 0.319, "c2": 0.29, "c3": 0.681, "c4": 0.71}, {"time": 0.05, "angle": 4.86, "curve": 0.381, "c2": 0.59, "c3": 0.729}, {"time": 0.0833}, + {"time": 0.1667, "angle": 15.16, "curve": 0.25, "c3": 0.75}, {"time": 0.25, "angle": -17.09, "curve": 0.25, "c3": 0.75}, {"time": 0.4167, "angle": 34.22, "curve": 0.25, "c3": 0.75}, + {"time": 0.4833, "angle": -32.46, "curve": 0.25, "c3": 0.75}, {"time": 0.6167, "angle": -37.23, "curve": 0.25, "c3": 0.75}, {"time": 0.7833, "angle": 24.78, "curve": 0.25, "c3": 0.75}, + {"time": 1, "angle": -47.33, "curve": 0.25, "c3": 0.75}, {"time": 1.0833, "angle": -3.05, "curve": 0.25, "c3": 0.75}, {"time": 1.1667, "angle": -15.24, "curve": 0.25, "c3": 0.75}, + {"time": 1.3, "angle": 21.64, "curve": 0.271, "c3": 0.619, "c4": 0.41}, {"time": 1.3333, "angle": 6.86} + ] + }, + "body-fur-8": { + "rotate": [ + {"angle": 8.78, "curve": 0.38, "c2": 0.53, "c3": 0.745}, {"time": 0.05}, {"time": 0.1333, "angle": 15.16, "curve": 0.25, "c3": 0.75}, + {"time": 0.2167, "angle": -17.09, "curve": 0.25, "c3": 0.75}, {"time": 0.3833, "angle": 34.22, "curve": 0.25, "c3": 0.75}, {"time": 0.45, "angle": -32.46, "curve": 0.25, "c3": 0.75}, + {"time": 0.5833, "angle": -37.23, "curve": 0.25, "c3": 0.75}, {"time": 0.75, "angle": 24.78, "curve": 0.25, "c3": 0.75}, {"time": 0.9667, "angle": -47.33, "curve": 0.25, "c3": 0.75}, + {"time": 1.05, "angle": -3.05, "curve": 0.25, "c3": 0.75}, {"time": 1.1333, "angle": -15.24, "curve": 0.25, "c3": 0.75}, + {"time": 1.2667, "angle": 21.64, "curve": 0.246, "c3": 0.633, "c4": 0.54}, {"time": 1.3333, "angle": -0.91} + ] + }, + "body-fur-7": { + "rotate": [ + {"angle": 1.67, "curve": 0.367, "c2": 0.63, "c3": 0.705}, {"time": 0.0167, "curve": 0.25, "c3": 0.75}, {"time": 0.1, "angle": 15.16, "curve": 0.25, "c3": 0.75}, + {"time": 0.1833, "angle": -17.09, "curve": 0.25, "c3": 0.75}, {"time": 0.35, "angle": 34.22, "curve": 0.25, "c3": 0.75}, {"time": 0.4167, "angle": -32.46, "curve": 0.25, "c3": 0.75}, + {"time": 0.55, "angle": -37.23, "curve": 0.25, "c3": 0.75}, {"time": 0.7167, "angle": 24.78, "curve": 0.25, "c3": 0.75}, {"time": 0.9333, "angle": -47.33, "curve": 0.25, "c3": 0.75}, + {"time": 1.0167, "angle": -3.05, "curve": 0.25, "c3": 0.75}, {"time": 1.1, "angle": -15.24, "curve": 0.25, "c3": 0.75}, + {"time": 1.2333, "angle": 21.64, "curve": 0.244, "c3": 0.697, "c4": 0.78}, {"time": 1.3333, "angle": 2.91} + ] + }, + "body-fur-6": { + "rotate": [ + {"angle": 12.79, "curve": 0.336, "c2": 0.34, "c3": 0.682, "c4": 0.71}, {"time": 0.0333, "angle": 4.86, "curve": 0.381, "c2": 0.59, "c3": 0.729}, {"time": 0.0667}, + {"time": 0.15, "angle": 15.16, "curve": 0.25, "c3": 0.75}, {"time": 0.2333, "angle": -17.09, "curve": 0.25, "c3": 0.75}, {"time": 0.4, "angle": 34.22, "curve": 0.25, "c3": 0.75}, + {"time": 0.4667, "angle": -32.46, "curve": 0.25, "c3": 0.75}, {"time": 0.6, "angle": -37.23, "curve": 0.25, "c3": 0.75}, {"time": 0.7667, "angle": 24.78, "curve": 0.25, "c3": 0.75}, + {"time": 0.9833, "angle": -47.33, "curve": 0.25, "c3": 0.75}, {"time": 1.0667, "angle": -3.05, "curve": 0.25, "c3": 0.75}, {"time": 1.15, "angle": -15.24, "curve": 0.25, "c3": 0.75}, + {"time": 1.2833, "angle": 21.64, "curve": 0.255, "c3": 0.62, "c4": 0.47}, {"time": 1.3333, "angle": 13.33} + ] + }, + "body-fur-5": { + "rotate": [ + {"angle": 4.86, "curve": 0.381, "c2": 0.59, "c3": 0.729}, {"time": 0.0333}, {"time": 0.1167, "angle": 15.16, "curve": 0.25, "c3": 0.75}, + {"time": 0.2, "angle": -17.09, "curve": 0.25, "c3": 0.75}, {"time": 0.3667, "angle": 34.22, "curve": 0.25, "c3": 0.75}, {"time": 0.4333, "angle": -32.46, "curve": 0.25, "c3": 0.75}, + {"time": 0.5667, "angle": -37.23, "curve": 0.25, "c3": 0.75}, {"time": 0.7333, "angle": 24.78, "curve": 0.25, "c3": 0.75}, {"time": 0.95, "angle": -47.33, "curve": 0.25, "c3": 0.75}, + {"time": 1.0333, "angle": -3.05, "curve": 0.25, "c3": 0.75}, {"time": 1.1167, "angle": -15.24, "curve": 0.25, "c3": 0.75}, + {"time": 1.25, "angle": 21.64, "curve": 0.243, "c3": 0.658, "c4": 0.64}, {"time": 1.3333, "angle": 6.86} + ] + }, + "body-fur-4": { + "rotate": [ + {"angle": 16.71, "curve": 0.319, "c2": 0.29, "c3": 0.681, "c4": 0.71}, {"time": 0.05, "angle": 4.86, "curve": 0.381, "c2": 0.59, "c3": 0.729}, {"time": 0.0833}, + {"time": 0.1667, "angle": 15.16, "curve": 0.25, "c3": 0.75}, {"time": 0.25, "angle": -17.09, "curve": 0.25, "c3": 0.75}, {"time": 0.4167, "angle": 34.22, "curve": 0.25, "c3": 0.75}, + {"time": 0.4833, "angle": -32.46, "curve": 0.25, "c3": 0.75}, {"time": 0.6167, "angle": -37.23, "curve": 0.25, "c3": 0.75}, {"time": 0.7833, "angle": 24.78, "curve": 0.25, "c3": 0.75}, + {"time": 1, "angle": -47.33, "curve": 0.25, "c3": 0.75}, {"time": 1.0833, "angle": -3.05, "curve": 0.25, "c3": 0.75}, {"time": 1.1667, "angle": -15.24, "curve": 0.25, "c3": 0.75}, + {"time": 1.3, "angle": 21.64, "curve": 0.271, "c3": 0.619, "c4": 0.41}, {"time": 1.3333, "angle": 12.53} + ] + }, + "body-fur-3": { + "rotate": [ + {"angle": 8.78, "curve": 0.38, "c2": 0.53, "c3": 0.745}, {"time": 0.05}, {"time": 0.1333, "angle": 15.16, "curve": 0.25, "c3": 0.75}, + {"time": 0.2167, "angle": -17.09, "curve": 0.25, "c3": 0.75}, {"time": 0.3833, "angle": 34.22, "curve": 0.25, "c3": 0.75}, {"time": 0.45, "angle": -32.46, "curve": 0.25, "c3": 0.75}, + {"time": 0.5833, "angle": -37.23, "curve": 0.25, "c3": 0.75}, {"time": 0.75, "angle": 24.78, "curve": 0.25, "c3": 0.75}, {"time": 0.9667, "angle": -47.33, "curve": 0.25, "c3": 0.75}, + {"time": 1.05, "angle": -3.05, "curve": 0.25, "c3": 0.75}, {"time": 1.1333, "angle": -15.24, "curve": 0.25, "c3": 0.75}, + {"time": 1.2667, "angle": 21.64, "curve": 0.246, "c3": 0.633, "c4": 0.54}, {"time": 1.3333, "angle": 5.54} + ] + }, + "body-fur-1": { + "rotate": [ + {"angle": 12.86, "curve": 0.367, "c2": 0.46, "c3": 0.754}, {"time": 0.0667, "curve": 0.25, "c3": 0.75}, {"time": 0.15, "angle": 15.16, "curve": 0.25, "c3": 0.75}, + {"time": 0.2333, "angle": -17.09, "curve": 0.25, "c3": 0.75}, {"time": 0.4, "angle": 34.22, "curve": 0.25, "c3": 0.75}, {"time": 0.4667, "angle": -32.46, "curve": 0.25, "c3": 0.75}, + {"time": 0.6, "angle": -37.23, "curve": 0.25, "c3": 0.75}, {"time": 0.7667, "angle": 24.78, "curve": 0.25, "c3": 0.75}, {"time": 0.9833, "angle": -47.33, "curve": 0.25, "c3": 0.75}, + {"time": 1.0667, "angle": -3.05, "curve": 0.25, "c3": 0.75}, {"time": 1.15, "angle": -15.24, "curve": 0.25, "c3": 0.75}, + {"time": 1.2833, "angle": 21.64, "curve": 0.255, "c3": 0.62, "c4": 0.47}, {"time": 1.3333, "angle": 10.51} + ] + } + }, + "events": [{"time": 0.4333, "name": "jump"}, {"time": 0.8333, "name": "start-attack"}, {"time": 0.9167, "name": "hit"}] + }, + "2980573062": { + "slots": {"eyes": {"attachment": [{"name": "eyes-shut"}]}}, + "bones": { + "@pivot-back": {"translate": [{"curve": 0.384, "c3": 0.312}, {"time": 0.6667, "y": 22.76, "curve": 0.384, "c3": 0.306}, {"time": 1.3333}]}, + "tail": { + "rotate": [ + {"curve": 0, "c2": 0.05, "c3": 0.658}, {"time": 0.3333, "angle": -5.21, "curve": 0.304, "c3": 0.689}, {"time": 0.7333, "angle": -0.27}, + {"time": 1.05, "angle": 1.75, "curve": 0.234, "c4": 0.9}, {"time": 1.3333} + ] + }, + "@shadow": {"scale": [{"curve": 0.387, "c3": 0.314}, {"time": 0.6667, "x": 0.9, "y": 0.9, "curve": 0.387, "c3": 0.314}, {"time": 1.3333}]}, + "body-fur-2": { + "rotate": [ + {"angle": 4.14, "curve": 0.349, "c2": 0.39, "c3": 0.707, "c4": 0.8}, {"time": 0.2667, "angle": -10.49, "curve": 0.369, "c2": 0.63, "c3": 0.706}, + {"time": 0.3667, "angle": -13.03, "curve": 0.25, "c3": 0.75}, {"time": 1.0333, "angle": 17.57, "curve": 0.253, "c3": 0.621, "c4": 0.48}, {"time": 1.3333, "angle": 4.14} + ] + }, + "body-fur-9": { + "rotate": [ + {"angle": -6.6, "curve": 0.35, "c2": 0.4, "c3": 0.686, "c4": 0.74}, {"time": 0.0833, "angle": -10.49, "curve": 0.369, "c2": 0.63, "c3": 0.706}, + {"time": 0.1833, "angle": -13.03, "curve": 0.25, "c3": 0.75}, {"time": 0.85, "angle": 17.57, "curve": 0.242, "c3": 0.661, "c4": 0.65}, {"time": 1.3333, "angle": -6.6} + ] + }, + "body-fur-8": { + "rotate": [ + {"angle": -11.11, "curve": 0.364, "c2": 0.64, "c3": 0.701}, {"time": 0.0833, "angle": -13.03, "curve": 0.25, "c3": 0.75}, + {"time": 0.75, "angle": 17.57, "curve": 0.244, "c3": 0.702, "c4": 0.8}, {"time": 1.3333, "angle": -11.11} + ] + }, + "body-fur-7": { + "rotate": [ + {"angle": -11.73, "curve": 0.36, "c2": 0.64, "c3": 0.695}, {"time": 0.0667, "angle": -13.03, "curve": 0.25, "c3": 0.75}, + {"time": 0.7333, "angle": 17.57, "curve": 0.245, "c3": 0.711, "c4": 0.83}, {"time": 1.3333, "angle": -11.73} + ] + }, + "body-fur-6": { + "rotate": [ + {"angle": -3.86, "curve": 0.354, "c2": 0.41, "c3": 0.694, "c4": 0.77}, {"time": 0.1333, "angle": -10.49, "curve": 0.369, "c2": 0.63, "c3": 0.706}, + {"time": 0.2333, "angle": -13.03, "curve": 0.25, "c3": 0.75}, {"time": 0.9, "angle": 17.57, "curve": 0.244, "c3": 0.646, "c4": 0.59}, {"time": 1.3333, "angle": -3.86} + ] + }, + "body-fur-5": { + "rotate": [ + {"angle": -9.05, "curve": 0.375, "c2": 0.62, "c3": 0.716}, {"time": 0.1333, "angle": -13.03, "curve": 0.25, "c3": 0.75}, + {"time": 0.8, "angle": 17.57, "curve": 0.243, "c3": 0.68, "c4": 0.71}, {"time": 1.3333, "angle": -9.05} + ] + }, + "body-fur-4": { + "rotate": [ + {"angle": 0.08, "curve": 0.355, "c2": 0.41, "c3": 0.702, "c4": 0.79}, {"time": 0.2, "angle": -10.49, "curve": 0.369, "c2": 0.63, "c3": 0.706}, + {"time": 0.3, "angle": -13.03, "curve": 0.25, "c3": 0.75}, {"time": 0.9667, "angle": 17.57, "curve": 0.247, "c3": 0.63, "c4": 0.53}, {"time": 1.3333, "angle": 0.08} + ] + }, + "body-fur-3": { + "rotate": [ + {"angle": -5.62, "curve": 0.382, "c2": 0.58, "c3": 0.731}, {"time": 0.2, "angle": -13.03, "curve": 0.25, "c3": 0.75}, + {"time": 0.8667, "angle": 17.57, "curve": 0.243, "c3": 0.655, "c4": 0.63}, {"time": 1.3333, "angle": -5.62} + ] + }, + "body-fur-1": { + "rotate": [ + {"angle": -1.77, "curve": 0.381, "c2": 0.55, "c3": 0.742}, {"time": 0.2667, "angle": -13.03, "curve": 0.25, "c3": 0.75}, + {"time": 0.9333, "angle": 17.57, "curve": 0.245, "c3": 0.637, "c4": 0.56}, {"time": 1.3333, "angle": -1.77} + ] + } + } + }, + "4076098330": { + "slots": { + "eyes": {"attachment": [{"time": 0.05, "name": "eyes-angry"}, {"time": 0.8333, "name": "eyes-shut"}, {"time": 0.9167, "name": "eyes"}]}, + "mouth": {"attachment": [{"time": 0.05, "name": "mouth-bite"}, {"time": 0.3333, "name": "mouth-open"}, {"time": 0.75, "name": "mouth-bite"}, {"time": 0.9167, "name": "mouth"}]} + }, + "bones": { + "tail": { + "rotate": [ + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.25, "angle": 21.98, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3167, "angle": -15.58, "curve": "stepped"}, + {"time": 0.3333, "angle": -19.65, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.4, "angle": 20.35, "curve": "stepped"}, {"time": 0.4333, "angle": -19.65, "curve": "stepped"}, + {"time": 0.4667, "angle": -19.65, "curve": 0.461, "c3": 0.543}, {"time": 0.5333, "angle": 20.35, "curve": "stepped"}, {"time": 0.5667, "angle": -19.65, "curve": "stepped"}, + {"time": 0.6, "angle": -19.65, "curve": 0.461, "c3": 0.543}, {"time": 0.6667, "angle": 20.35, "curve": "stepped"}, {"time": 0.7, "angle": -19.65, "curve": "stepped"}, + {"time": 0.75, "angle": -11.84, "curve": 0.313, "c3": 0.699}, {"time": 0.8333, "angle": 16.95, "curve": 0.313, "c3": 0.699}, {"time": 1} + ] + }, + "@pivot-back": { + "rotate": [ + {"curve": 0, "c2": 0.4, "c3": 0.383}, {"time": 0.15, "angle": 4, "curve": "stepped"}, {"time": 0.25, "angle": 4, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.3167, "curve": "stepped"}, {"time": 0.3333, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.4, "angle": -2.45, "curve": "stepped"}, {"time": 0.4333, "curve": "stepped"}, + {"time": 0.4667, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.5333, "angle": -2.45, "curve": "stepped"}, {"time": 0.5667, "curve": "stepped"}, + {"time": 0.6, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.6667, "angle": -2.45, "curve": "stepped"}, {"time": 0.7, "curve": "stepped"}, {"time": 0.75, "curve": 0.313, "c3": 0.699}, + {"time": 0.8333, "angle": 6, "curve": 0.313, "c3": 0.699}, {"time": 1} + ], + "translate": [ + {"curve": 0, "c2": 0.4, "c3": 0.383}, {"time": 0.25, "x": 25, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3167, "x": -135.5, "curve": "stepped"}, + {"time": 0.3333, "x": -560.54, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.4, "x": -560.54, "y": 9.3, "curve": "stepped"}, {"time": 0.4333, "x": -560.54, "curve": "stepped"}, + {"time": 0.4667, "x": -560.54, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.5333, "x": -560.54, "y": 9.3, "curve": "stepped"}, {"time": 0.5667, "x": -560.54, "curve": "stepped"}, + {"time": 0.6, "x": -560.54, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.6667, "x": -560.54, "y": 9.3, "curve": "stepped"}, {"time": 0.7, "x": -560.54, "curve": "stepped"}, + {"time": 0.75, "x": -151.24, "curve": 0.313, "c3": 0.699}, {"time": 0.8333, "x": -151.24, "y": 4.06, "curve": 0.313, "c3": 0.699}, {"time": 1} + ], + "scale": [{"time": 0.3167, "curve": "stepped"}, {"time": 0.3333, "x": -1, "curve": "stepped"}, {"time": 0.7, "x": -1, "curve": "stepped"}, {"time": 0.75}] + }, + "@leg-front-right": { + "translate": [ + {"curve": 0, "c2": 0.4, "c3": 0.383}, {"time": 0.25, "x": -1.86, "y": -9.26, "curve": "stepped"}, {"time": 0.3167, "x": -1.86, "y": -9.26, "curve": "stepped"}, + {"time": 0.3333, "x": -2.24, "y": 13.67, "curve": "stepped"}, {"time": 0.75, "x": -2.24, "y": 13.67, "curve": 0.313, "c3": 0.699}, + {"time": 0.8333, "x": -1.86, "y": -9.26, "curve": 0.313, "c3": 0.699}, {"time": 1} + ] + }, + "@leg-front-left": { + "translate": [ + {"curve": 0, "c2": 0.4, "c3": 0.383}, {"time": 0.25, "x": -1, "y": -5.53, "curve": "stepped"}, {"time": 0.3167, "x": -1, "y": -5.53, "curve": "stepped"}, + {"time": 0.3333, "x": -1.12, "y": 1.52, "curve": "stepped"}, {"time": 0.75, "x": -1.12, "y": 1.52, "curve": 0.313, "c3": 0.699}, + {"time": 0.8333, "x": -1, "y": -5.53, "curve": 0.313, "c3": 0.699}, {"time": 1} + ] + }, + "@shadow": { + "translate": [ + {"time": 0.25, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3167, "x": -143.36, "curve": "stepped"}, {"time": 0.7, "x": -143.36, "curve": "stepped"}, + {"time": 0.75, "x": -161.35, "curve": "stepped"}, {"time": 0.8333, "x": -161.35, "curve": 0.313, "c3": 0.699}, {"time": 1} + ], + "scale": [ + {"curve": 0, "c2": 0.4, "c3": 0.383}, {"time": 0.25, "x": 1.08, "y": 1.08, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3167, "curve": "stepped"}, + {"time": 0.3333, "x": 1.02, "y": 1.02, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.4, "x": 0.96, "y": 0.96, "curve": "stepped"}, + {"time": 0.4333, "x": 1.02, "y": 1.02, "curve": "stepped"}, {"time": 0.4667, "x": 1.02, "y": 1.02, "curve": 0, "c2": 0.3, "c3": 0.544}, + {"time": 0.5333, "x": 0.96, "y": 0.96, "curve": "stepped"}, {"time": 0.5667, "x": 1.02, "y": 1.02, "curve": "stepped"}, + {"time": 0.6, "x": 1.02, "y": 1.02, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.6667, "x": 0.96, "y": 0.96, "curve": "stepped"}, + {"time": 0.7, "x": 1.02, "y": 1.02, "curve": "stepped"}, {"time": 0.75, "curve": 0.313, "c3": 0.699}, {"time": 0.8333, "x": 1.08, "y": 1.08, "curve": 0.313, "c3": 0.699}, {"time": 1} + ] + }, + "leg-front-left-IK": { + "translate": [ + {"time": 0.25, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3167, "x": -192.09, "y": 31.17, "curve": "stepped"}, + {"time": 0.3333, "x": -219.56, "y": 3.98, "curve": 0.277, "c3": 0.849, "c4": 0.67}, {"time": 0.65, "x": -219.56, "y": 3.98, "curve": 0.641, "c2": 0.41, "c4": 0.76}, + {"time": 0.7, "x": -226.38, "y": 3.98, "curve": "stepped"}, {"time": 0.75, "x": -157.76, "curve": "stepped"}, {"time": 0.8333, "x": -157.76, "curve": 0.306, "c3": 0.695}, {"time": 1} + ] + }, + "leg-front-right-IK": { + "translate": [ + {"time": 0.25, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3167, "x": -172.87, "y": 28.32, "curve": "stepped"}, {"time": 0.3333, "x": 295.89, "y": 8.85, "curve": "stepped"}, + {"time": 0.7, "x": 295.89, "y": 8.85, "curve": "stepped"}, {"time": 0.75, "x": -180.48, "curve": "stepped"}, {"time": 0.8333, "x": -180.48, "curve": 0.313, "c3": 0.699}, {"time": 1} + ] + }, + "leg-back-left-IK": { + "translate": [ + {"time": 0.25, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3167, "x": -96.78, "y": 27.51, "curve": "stepped"}, {"time": 0.3333, "x": -542.14, "curve": "stepped"}, + {"time": 0.7, "x": -542.14, "curve": "stepped"}, {"time": 0.75, "x": -134.74, "curve": "stepped"}, {"time": 0.8333, "x": -134.74, "curve": 0.313, "c3": 0.699}, {"time": 1} + ] + }, + "@leg-back-left": { + "translate": [{"time": 0.3167, "curve": "stepped"}, {"time": 0.3333, "x": -0.06, "y": 3.33, "curve": "stepped"}, {"time": 0.7, "x": -0.06, "y": 3.33, "curve": "stepped"}, {"time": 0.75}] + }, + "@pivot-main": {"translate": [{"time": 0.8333, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.9167, "y": 31, "curve": 0.315, "c4": 0.8}, {"time": 1}]}, + "body-fur-2": { + "rotate": [ + {"angle": 13.97, "curve": 0.346, "c2": 0.38, "c3": 0.7, "c4": 0.78}, {"time": 0.0667, "angle": -5.21, "curve": 0.373, "c2": 0.62, "c3": 0.713}, {"time": 0.1, "angle": -9.97}, + {"time": 0.2333, "angle": 18.26, "curve": 0.25, "c3": 0.75}, {"time": 0.4167, "angle": -20.51, "curve": 0.25, "c3": 0.75}, {"time": 0.5, "angle": 32.13, "curve": 0.25, "c3": 0.75}, + {"time": 0.6167, "angle": -10.59, "curve": 0.25, "c3": 0.75}, {"time": 0.7167, "angle": 18.01, "curve": 0.25, "c3": 0.75}, {"time": 0.8167, "angle": -14.98, "curve": 0.25, "c3": 0.75}, + {"time": 0.9167, "angle": 33.21, "curve": 0.253, "c3": 0.621, "c4": 0.48}, {"time": 1, "angle": 13.84} + ] + }, + "body-fur-9": { + "rotate": [ + {"angle": 8.75, "curve": 0.351, "c2": 0.39, "c3": 0.696, "c4": 0.76}, {"time": 0.05, "angle": -5.21}, {"time": 0.0833, "angle": -9.97}, + {"time": 0.2167, "angle": 18.26, "curve": 0.25, "c3": 0.75}, {"time": 0.4, "angle": -20.51, "curve": 0.25, "c3": 0.75}, {"time": 0.4833, "angle": 32.13, "curve": 0.25, "c3": 0.75}, + {"time": 0.6, "angle": -10.59, "curve": 0.25, "c3": 0.75}, {"time": 0.7, "angle": 18.01, "curve": 0.25, "c3": 0.75}, {"time": 0.8, "angle": -14.98, "curve": 0.25, "c3": 0.75}, + {"time": 0.9, "angle": 33.21, "curve": 0.247, "c3": 0.63, "c4": 0.52}, {"time": 1, "angle": 6.86} + ] + }, + "body-fur-8": { + "rotate": [ + {"angle": -0.94, "curve": 0.381, "c2": 0.59, "c3": 0.727}, {"time": 0.05, "angle": -9.97}, {"time": 0.1833, "angle": 18.26, "curve": 0.25, "c3": 0.75}, + {"time": 0.3667, "angle": -20.51, "curve": 0.25, "c3": 0.75}, {"time": 0.45, "angle": 32.13, "curve": 0.25, "c3": 0.75}, {"time": 0.5667, "angle": -10.59, "curve": 0.25, "c3": 0.75}, + {"time": 0.6667, "angle": 18.01, "curve": 0.25, "c3": 0.75}, {"time": 0.7667, "angle": -14.98, "curve": 0.25, "c3": 0.75}, + {"time": 0.8667, "angle": 33.21, "curve": 0.242, "c3": 0.661, "c4": 0.65}, {"time": 1, "angle": -0.91} + ] + }, + "body-fur-7": { + "rotate": [ + {"angle": -8.45, "curve": 0.358, "c2": 0.65, "c3": 0.693}, {"time": 0.0167, "angle": -9.97}, {"time": 0.15, "angle": 18.26, "curve": 0.25, "c3": 0.75}, + {"time": 0.3333, "angle": -20.51, "curve": 0.25, "c3": 0.75}, {"time": 0.4167, "angle": 32.13, "curve": 0.25, "c3": 0.75}, {"time": 0.5333, "angle": -10.59, "curve": 0.25, "c3": 0.75}, + {"time": 0.6333, "angle": 18.01, "curve": 0.25, "c3": 0.75}, {"time": 0.7333, "angle": -14.98, "curve": 0.25, "c3": 0.75}, + {"time": 0.8333, "angle": 33.21, "curve": 0.245, "c3": 0.714, "c4": 0.85}, {"time": 1, "angle": 2.91} + ] + }, + "body-fur-6": { + "rotate": [ + {"angle": 3.65, "curve": 0.35, "c2": 0.39, "c3": 0.689, "c4": 0.75}, {"time": 0.0333, "angle": -5.21}, {"time": 0.0667, "angle": -9.97}, + {"time": 0.2, "angle": 18.26, "curve": 0.25, "c3": 0.75}, {"time": 0.3833, "angle": -20.51, "curve": 0.25, "c3": 0.75}, {"time": 0.4667, "angle": 32.13, "curve": 0.25, "c3": 0.75}, + {"time": 0.5833, "angle": -10.59, "curve": 0.25, "c3": 0.75}, {"time": 0.6833, "angle": 18.01, "curve": 0.25, "c3": 0.75}, {"time": 0.7833, "angle": -14.98, "curve": 0.25, "c3": 0.75}, + {"time": 0.8833, "angle": 33.21, "curve": 0.244, "c3": 0.643, "c4": 0.58}, {"time": 1, "angle": 13.33} + ] + }, + "body-fur-5": { + "rotate": [ + {"angle": -5.21, "curve": 0.373, "c2": 0.62, "c3": 0.713}, {"time": 0.0333, "angle": -9.97}, {"time": 0.1667, "angle": 18.26, "curve": 0.25, "c3": 0.75}, + {"time": 0.35, "angle": -20.51, "curve": 0.25, "c3": 0.75}, {"time": 0.4333, "angle": 32.13, "curve": 0.25, "c3": 0.75}, {"time": 0.55, "angle": -10.59, "curve": 0.25, "c3": 0.75}, + {"time": 0.65, "angle": 18.01, "curve": 0.25, "c3": 0.75}, {"time": 0.75, "angle": -14.98, "curve": 0.25, "c3": 0.75}, + {"time": 0.85, "angle": 33.21, "curve": 0.243, "c3": 0.685, "c4": 0.73}, {"time": 1, "angle": 6.86} + ] + }, + "body-fur-4": { + "rotate": [ + {"angle": 8.75, "curve": 0.351, "c2": 0.39, "c3": 0.696, "c4": 0.76}, {"time": 0.05, "angle": -5.21, "curve": 0.373, "c2": 0.62, "c3": 0.713}, {"time": 0.0833, "angle": -9.97}, + {"time": 0.2167, "angle": 18.26, "curve": 0.25, "c3": 0.75}, {"time": 0.4, "angle": -20.51, "curve": 0.25, "c3": 0.75}, {"time": 0.4833, "angle": 32.13, "curve": 0.25, "c3": 0.75}, + {"time": 0.6, "angle": -10.59, "curve": 0.25, "c3": 0.75}, {"time": 0.7, "angle": 18.01, "curve": 0.25, "c3": 0.75}, {"time": 0.8, "angle": -14.98, "curve": 0.25, "c3": 0.75}, + {"time": 0.9, "angle": 33.21, "curve": 0.247, "c3": 0.63, "c4": 0.52}, {"time": 1, "angle": 12.53} + ] + }, + "body-fur-3": { + "rotate": [ + {"angle": -0.94, "curve": 0.381, "c2": 0.59, "c3": 0.727}, {"time": 0.05, "angle": -9.97, "curve": 0.25, "c3": 0.75}, {"time": 0.1833, "angle": 18.26, "curve": 0.25, "c3": 0.75}, + {"time": 0.3667, "angle": -20.51, "curve": 0.25, "c3": 0.75}, {"time": 0.45, "angle": 32.13, "curve": 0.25, "c3": 0.75}, {"time": 0.5667, "angle": -10.59, "curve": 0.25, "c3": 0.75}, + {"time": 0.6667, "angle": 18.01, "curve": 0.25, "c3": 0.75}, {"time": 0.7667, "angle": -14.98, "curve": 0.25, "c3": 0.75}, + {"time": 0.8667, "angle": 33.21, "curve": 0.242, "c3": 0.661, "c4": 0.65}, {"time": 1, "angle": 5.54} + ] + }, + "body-fur-1": { + "rotate": [ + {"angle": 3.91, "curve": 0.382, "c2": 0.56, "c3": 0.739}, {"time": 0.0667, "angle": -9.97, "curve": 0.25, "c3": 0.75}, {"time": 0.2, "angle": 18.26, "curve": 0.25, "c3": 0.75}, + {"time": 0.3833, "angle": -20.51, "curve": 0.25, "c3": 0.75}, {"time": 0.4667, "angle": 32.13, "curve": 0.25, "c3": 0.75}, {"time": 0.5833, "angle": -10.59, "curve": 0.25, "c3": 0.75}, + {"time": 0.6833, "angle": 18.01, "curve": 0.25, "c3": 0.75}, {"time": 0.7833, "angle": -14.98, "curve": 0.25, "c3": 0.75}, + {"time": 0.8833, "angle": 33.21, "curve": 0.244, "c3": 0.643, "c4": 0.58}, {"time": 1, "angle": 10.51} + ] + } + }, + "events": [{"time": 0.3167, "name": "start-attack"}, {"time": 0.4333, "name": "hit"}, {"time": 0.5667, "name": "hit"}, {"time": 0.7, "name": "hit"}] + }, + "1934032146": { + "slots": { + "eyes": {"attachment": [{"time": 0.0167, "name": "eyes-angry"}, {"time": 0.85, "name": "eyes-shut"}, {"time": 0.9333, "name": "eyes"}]}, + "mouth": {"attachment": [{"time": 0.0167, "name": "mouth-bite"}, {"time": 0.1833, "name": "mouth-open"}, {"time": 0.5, "name": "mouth-bite"}, {"time": 0.9333, "name": "mouth"}]} + }, + "bones": { + "@pivot-back": { + "rotate": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "angle": -3.92, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "angle": 2.51, "curve": 0, "c2": 0.2, "c3": 0.858}, + {"time": 0.25, "angle": -6, "curve": "stepped"}, {"time": 0.7167, "angle": -6, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.8333, "angle": 6, "curve": 0.313, "c3": 0.699}, {"time": 1} + ], + "translate": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "x": 71.93, "y": -12.95, "curve": "stepped"}, {"time": 0.1667, "x": 71.93, "y": -12.95, "curve": 0, "c2": 0.2, "c3": 0.858}, + {"time": 0.25, "x": -145.48, "y": 99.8, "curve": 0, "c2": 0.3, "c3": 0.698}, {"time": 0.4167, "x": -145, "y": 149.7, "curve": 1, "c4": 0}, {"time": 0.5, "x": -145}, + {"time": 0.6667, "x": -145, "y": 2.5, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.7167, "y": 48.98, "curve": 0.315, "c4": 0.8}, + {"time": 0.8333, "y": -3.33, "curve": 0.313, "c3": 0.699}, {"time": 1} + ] + }, + "@leg-front-left": { + "translate": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "x": -2.77, "y": -2.64, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.1667, "x": -0.53, "y": 0.11, "curve": 0, "c2": 0.2, "c3": 0.858}, {"time": 0.25, "x": -1, "y": -5.53, "curve": "stepped"}, + {"time": 0.7167, "x": -1, "y": -5.53, "curve": 0.464, "c4": 0.7}, {"time": 0.8333, "x": -2.17, "y": -17.49, "curve": 0.313, "c3": 0.699}, {"time": 1} + ] + }, + "@leg-back-left": { + "translate": [ + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 0.67, "y": -7.85, "curve": 0.161, "c3": 0.854}, {"time": 0.1667, "x": 0.53, "y": -13.09, "curve": 0, "c2": 0.2, "c3": 0.858}, + {"time": 0.25, "curve": "stepped"}, {"time": 0.7167, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.8333, "x": -0.5, "y": -5.23, "curve": 0.313, "c3": 0.699}, {"time": 1} + ] + }, + "@shadow": { + "translate": [ + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 61.96, "curve": "stepped"}, {"time": 0.1667, "x": 61.96, "curve": 0, "c2": 0.2, "c3": 0.858}, + {"time": 0.25, "x": -143.36, "curve": 0, "c2": 0.3, "c3": 0.698}, {"time": 0.4167, "x": -154.48, "curve": "stepped"}, {"time": 0.6667, "x": -154.48, "curve": 0, "c2": 0.3, "c3": 0.544}, + {"time": 0.7167, "x": -9.48, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.8333} + ], + "scale": [ + {"time": 0.0833, "curve": 0, "c2": 0.26, "c3": 0.369, "c4": 0.62}, {"time": 0.1667, "x": 1.06, "y": 1.06, "curve": 0, "c2": 0.2, "c3": 0.858}, + {"time": 0.25, "curve": 0, "c2": 0.3, "c3": 0.698}, {"time": 0.4167, "x": 0.86, "y": 0.86}, {"time": 0.5, "x": 1.16, "y": 1.16}, + {"time": 0.6667, "x": 1.18, "y": 1.18, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.7167, "x": 1.02, "y": 1.02, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.8333, "x": 1.1, "y": 1.1, "curve": 0.313, "c3": 0.699}, {"time": 1} + ] + }, + "leg-front-right-IK": { + "translate": [ + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 30.89, "y": 11.74, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": 42.9, "curve": 0, "c2": 0.2, "c3": 0.858}, + {"time": 0.25, "x": -172.87, "y": 28.32, "curve": 0, "c2": 0.3, "c3": 0.698}, {"time": 0.4667, "x": 261.69, "y": 187.13, "curve": 1, "c4": 0.1}, {"time": 0.5, "x": 166.41, "y": 465.39}, + {"time": 0.6667, "x": 101.69, "y": 451.97, "curve": "stepped"}, {"time": 0.7, "x": -101.81, "y": 172.32, "curve": "stepped"}, {"time": 0.7167} + ] + }, + "leg-back-left-IK": { + "translate": [ + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 80.9, "curve": 0.161, "c3": 0.854}, {"time": 0.1667, "x": 72.25, "curve": 0, "c2": 0.2, "c3": 0.858}, + {"time": 0.25, "x": -96.78, "y": 27.51, "curve": 0, "c2": 0.3, "c3": 0.698}, {"time": 0.4667, "x": -250.56, "y": 568.36, "curve": 1, "c4": 0.1}, {"time": 0.5, "x": -654.65, "y": 234.55}, + {"time": 0.6667, "x": -665.01, "y": 210.09, "curve": "stepped"}, {"time": 0.7, "x": -61.52, "y": -3.55, "curve": "stepped"}, {"time": 0.7167} + ] + }, + "@leg-front-right": { + "translate": [ + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 4.31, "y": 11.86, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.1667, "x": -10.19, "y": -4.67, "curve": 0, "c2": 0.2, "c3": 0.858}, {"time": 0.25, "curve": "stepped"}, {"time": 0.7167, "curve": 0.464, "c4": 0.7}, + {"time": 0.8333, "x": -4.16, "y": -33.18, "curve": 0.313, "c3": 0.699}, {"time": 1} + ] + }, + "leg-front-left-IK": { + "translate": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "x": 42.22, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": 42.9, "curve": 0, "c2": 0.2, "c3": 0.858}, + {"time": 0.25, "x": -192.09, "y": 31.17, "curve": 0, "c2": 0.3, "c3": 0.698}, {"time": 0.4667, "x": -33.07, "y": 448.19, "curve": 1, "c4": 0.1}, {"time": 0.5, "x": -325.8, "y": 359.06}, + {"time": 0.6667, "x": -307.09, "y": 359.93, "curve": "stepped"}, {"time": 0.7, "x": -83.89, "y": 65.11, "curve": "stepped"}, {"time": 0.7167} + ] + }, + "tail": { + "rotate": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "angle": 15.61, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "angle": 20.44, "curve": 0, "c2": 0.2, "c3": 0.858}, + {"time": 0.25, "angle": -14.65, "curve": 0.313, "c3": 0.699}, {"time": 0.4667, "angle": -49.65, "curve": 1, "c4": 0.1}, {"time": 0.5, "angle": -2.15}, + {"time": 0.6667, "angle": -1.85, "curve": 0, "c2": 0.4, "c3": 0.383}, {"time": 0.8333, "angle": 21.05, "curve": 0.313, "c3": 0.699}, {"time": 1} + ] + }, + "@pivot-center": { + "rotate": [ + {"time": 0.25, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.4667, "angle": 112.05, "curve": 1, "c4": 0.1}, {"time": 0.5, "angle": -146.9}, + {"time": 0.6667, "angle": -145.45, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.7167} + ] + }, + "body-fur-8": { + "rotate": [ + {"angle": 5.63, "curve": 0.382, "c2": 0.58, "c3": 0.731}, {"time": 0.05}, {"time": 0.1833, "angle": -25.75, "curve": 0.25, "c3": 0.75}, + {"time": 0.55, "angle": -44.12, "curve": 0.25, "c3": 0.75}, {"time": 0.7167, "angle": 19.76, "curve": 0.25, "c3": 0.75}, {"time": 0.7833, "angle": -17.51, "curve": 0.25, "c3": 0.75}, + {"time": 0.8833, "angle": 23.24, "curve": 0.243, "c3": 0.655, "c4": 0.63}, {"time": 1, "angle": -0.91} + ] + }, + "body-fur-1": { + "rotate": [ + {"angle": 8.55, "curve": 0.381, "c2": 0.55, "c3": 0.742}, {"time": 0.0667}, {"time": 0.2, "angle": -31.39, "curve": 0.25, "c3": 0.75}, + {"time": 0.5667, "angle": -44.12, "curve": 0.25, "c3": 0.75}, {"time": 0.7333, "angle": 19.76, "curve": 0.25, "c3": 0.75}, {"time": 0.8, "angle": -17.51, "curve": 0.25, "c3": 0.75}, + {"time": 0.9, "angle": 23.24, "curve": 0.245, "c3": 0.637, "c4": 0.56}, {"time": 1, "angle": 10.51} + ] + }, + "body-fur-2": { + "rotate": [ + {"angle": 14.58, "curve": 0.339, "c2": 0.35, "c3": 0.697, "c4": 0.76}, {"time": 0.0667, "angle": 3.02, "curve": 0.375, "c2": 0.62, "c3": 0.716}, {"time": 0.1}, + {"time": 0.2333, "angle": -44.52, "curve": 0.25, "c3": 0.75}, {"time": 0.6, "angle": -44.12, "curve": 0.25, "c3": 0.75}, {"time": 0.7667, "angle": 19.76, "curve": 0.25, "c3": 0.75}, + {"time": 0.8333, "angle": -17.51, "curve": 0.25, "c3": 0.75}, {"time": 0.9333, "angle": 23.24, "curve": 0.258, "c3": 0.619, "c4": 0.45}, {"time": 1, "angle": 13.84} + ] + }, + "body-fur-3": { + "rotate": [ + {"angle": 5.63, "curve": 0.382, "c2": 0.58, "c3": 0.731}, {"time": 0.05}, {"time": 0.1833, "angle": -25.75, "curve": 0.25, "c3": 0.75}, + {"time": 0.55, "angle": -44.12, "curve": 0.25, "c3": 0.75}, {"time": 0.7167, "angle": 19.76, "curve": 0.25, "c3": 0.75}, {"time": 0.7833, "angle": -17.51, "curve": 0.25, "c3": 0.75}, + {"time": 0.8833, "angle": 23.24, "curve": 0.243, "c3": 0.655, "c4": 0.63}, {"time": 1, "angle": 5.54} + ] + }, + "body-fur-4": { + "rotate": [ + {"angle": 11.51, "curve": 0.347, "c2": 0.38, "c3": 0.694, "c4": 0.76}, {"time": 0.05, "angle": 3.02, "curve": 0.375, "c2": 0.62, "c3": 0.716}, {"time": 0.0833}, + {"time": 0.2167, "angle": -25.75, "curve": 0.25, "c3": 0.75}, {"time": 0.5833, "angle": -44.12, "curve": 0.25, "c3": 0.75}, {"time": 0.75, "angle": 19.76, "curve": 0.25, "c3": 0.75}, + {"time": 0.8167, "angle": -17.51, "curve": 0.25, "c3": 0.75}, {"time": 0.9167, "angle": 23.24, "curve": 0.25, "c3": 0.625, "c4": 0.5}, {"time": 1, "angle": 12.53} + ] + }, + "body-fur-5": { + "rotate": [ + {"angle": 3.02, "curve": 0.375, "c2": 0.62, "c3": 0.716}, {"time": 0.0333}, {"time": 0.1667, "angle": -25.75, "curve": 0.25, "c3": 0.75}, + {"time": 0.5333, "angle": -44.12, "curve": 0.25, "c3": 0.75}, {"time": 0.7, "angle": 19.76, "curve": 0.25, "c3": 0.75}, {"time": 0.7667, "angle": -17.51, "curve": 0.25, "c3": 0.75}, + {"time": 0.8667, "angle": 23.24, "curve": 0.243, "c3": 0.68, "c4": 0.71}, {"time": 1, "angle": 6.86} + ] + }, + "body-fur-6": { + "rotate": [ + {"angle": 8.46, "curve": 0.349, "c2": 0.39, "c3": 0.689, "c4": 0.74}, {"time": 0.0333, "angle": 3.02, "curve": 0.375, "c2": 0.62, "c3": 0.716}, {"time": 0.0667}, + {"time": 0.2, "angle": -25.75, "curve": 0.25, "c3": 0.75}, {"time": 0.5667, "angle": -44.12, "curve": 0.25, "c3": 0.75}, {"time": 0.7333, "angle": 19.76, "curve": 0.25, "c3": 0.75}, + {"time": 0.8, "angle": -17.51, "curve": 0.25, "c3": 0.75}, {"time": 0.9, "angle": 23.24, "curve": 0.245, "c3": 0.637, "c4": 0.56}, {"time": 1, "angle": 13.33} + ] + }, + "body-fur-7": { + "rotate": [ + {"angle": 0.99, "curve": 0.36, "c2": 0.64, "c3": 0.695}, {"time": 0.0167, "curve": 0.25, "c3": 0.75}, {"time": 0.15, "angle": -25.75, "curve": 0.25, "c3": 0.75}, + {"time": 0.5167, "angle": -44.12, "curve": 0.25, "c3": 0.75}, {"time": 0.6833, "angle": 19.76, "curve": 0.25, "c3": 0.75}, {"time": 0.75, "angle": -17.51, "curve": 0.25, "c3": 0.75}, + {"time": 0.85, "angle": 23.24, "curve": 0.245, "c3": 0.711, "c4": 0.83}, {"time": 1, "angle": 2.91} + ] + }, + "body-fur-9": { + "rotate": [ + {"angle": 11.51, "curve": 0.347, "c2": 0.38, "c3": 0.694, "c4": 0.76}, {"time": 0.05, "angle": 3.02, "curve": 0.375, "c2": 0.62, "c3": 0.716}, + {"time": 0.0833, "curve": 0.25, "c3": 0.75}, {"time": 0.2167, "angle": -25.75, "curve": 0.25, "c3": 0.75}, {"time": 0.5833, "angle": -44.12, "curve": 0.25, "c3": 0.75}, + {"time": 0.75, "angle": 19.76, "curve": 0.25, "c3": 0.75}, {"time": 0.8167, "angle": -17.51, "curve": 0.25, "c3": 0.75}, + {"time": 0.9167, "angle": 23.24, "curve": 0.25, "c3": 0.625, "c4": 0.5}, {"time": 1, "angle": 6.86} + ] + } + }, + "events": [{"time": 0.4167, "name": "start-attack"}, {"time": 0.5, "name": "hit"}] + }, + "1747338625": { + "slots": { + "eyes": {"attachment": [{"time": 0.0167, "name": "eyes-angry"}, {"time": 0.9167, "name": "eyes"}]}, + "mouth": {"attachment": [{"time": 0.0167, "name": "mouth-bite"}, {"time": 0.1833, "name": "mouth-open"}, {"time": 0.5, "name": "mouth-bite"}, {"time": 0.9167, "name": "mouth"}]} + }, + "bones": { + "@pivot-back": { + "rotate": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "angle": -3.92, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "angle": 2.51, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.25, "angle": -6, "curve": "stepped"}, {"time": 0.2667, "angle": -20, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.4833, "angle": -22, "curve": "stepped"}, + {"time": 0.5, "angle": 10}, {"time": 0.6667, "angle": 12, "curve": "stepped"}, {"time": 0.7, "angle": 4, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.8333, "angle": 6, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1} + ], + "translate": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "x": 71.93, "y": -12.95, "curve": "stepped"}, {"time": 0.1667, "x": 71.93, "y": -12.95, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.25, "x": -135.5, "curve": "stepped"}, {"time": 0.2667, "x": -551.77, "y": 110, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.4833, "x": -551.77, "y": 120.52, "curve": "stepped"}, {"time": 0.5, "x": -565, "y": -35}, {"time": 0.6667, "x": -565, "y": -40, "curve": "stepped"}, + {"time": 0.7, "x": -135.5, "y": 5, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.8333, "x": -135.5, "y": 10, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1} + ], + "scale": [{"time": 0.25, "curve": "stepped"}, {"time": 0.2667, "x": -1, "curve": "stepped"}, {"time": 0.6667, "x": -1, "curve": "stepped"}, {"time": 0.7}] + }, + "leg-front-right-IK": { + "translate": [ + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 30.89, "y": 11.74, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": 42.9, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.25, "x": -172.87, "y": 28.32, "curve": "stepped"}, {"time": 0.2667, "x": 224.47, "y": -9.31, "curve": "stepped"}, + {"time": 0.4833, "x": 224.47, "y": -9.31, "curve": "stepped"}, {"time": 0.5, "x": 219.47, "curve": "stepped"}, {"time": 0.6667, "x": 219.47, "curve": "stepped"}, + {"time": 0.7, "x": -152.3, "curve": "stepped"}, {"time": 0.8333, "x": -152.3, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1} + ] + }, + "leg-front-left-IK": { + "translate": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "x": 43.18, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": 42.9, "y": -3.49, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.25, "x": -192.09, "y": 31.17, "curve": "stepped"}, {"time": 0.2667, "x": -277.01, "y": 66.37, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.4833, "x": -274.01, "y": 75.85, "curve": "stepped"}, {"time": 0.5, "x": -170.67, "curve": "stepped"}, {"time": 0.6667, "x": -170.67, "curve": "stepped"}, + {"time": 0.7, "x": -151.12, "curve": "stepped"}, {"time": 0.8333, "x": -151.12, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1} + ] + }, + "@leg-front-left": { + "translate": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "x": -2.8, "y": -2.2, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.1667, "x": -0.62, "y": -3.38, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "x": -1, "y": -5.53, "curve": "stepped"}, + {"time": 0.2667, "x": 4, "y": -0.66, "curve": "stepped"}, {"time": 0.4833, "x": 4, "y": -0.66, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.5, "x": 4.53, "y": 2.49, "curve": "stepped"}, {"time": 0.6667, "x": 4.53, "y": 2.49, "curve": "stepped"}, + {"time": 0.7, "x": -1, "y": -5.53, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.8333, "x": -0.91, "y": -4.54, "curve": 0.315, "c4": 0.8}, {"time": 1} + ] + }, + "@leg-back-left": { + "translate": [ + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 0.67, "y": -7.85, "curve": 0.161, "c3": 0.854}, {"time": 0.1667, "x": 0.61, "y": -9.9, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.25, "curve": "stepped"}, {"time": 0.2667, "x": -1.82, "y": 0.09}, {"time": 0.4833, "x": -6.6, "y": 4.03, "curve": "stepped"}, + {"time": 0.5, "x": 10.86, "y": -7.65, "curve": "stepped"}, {"time": 0.6667, "x": 10.86, "y": -7.65, "curve": "stepped"}, {"time": 0.7} + ] + }, + "leg-back-left-IK": { + "translate": [ + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 80.9, "curve": 0.161, "c3": 0.854}, {"time": 0.1667, "x": 72.57, "y": -3.2, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.25, "x": -106.8, "y": 17.49, "curve": "stepped"}, {"time": 0.2667, "x": -654.94, "y": 154.36, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.4833, "x": -669.36, "y": 180.24, "curve": "stepped"}, {"time": 0.5, "x": -541.29, "y": -24.41, "curve": "stepped"}, + {"time": 0.6667, "x": -541.29, "y": -24.41, "curve": "stepped"}, {"time": 0.7, "x": -130.76, "curve": "stepped"}, {"time": 0.8333, "x": -130.76, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 1} + ] + }, + "@leg-front-right": { + "translate": [ + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 4.31, "y": 11.86, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.1667, "x": -10.19, "y": -4.67, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "x": -1.86, "y": -9.26, "curve": "stepped"}, + {"time": 0.2667, "x": -5.58, "y": 2.65, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.4833, "x": -3.84, "y": 7.68, "curve": "stepped"}, + {"time": 0.5, "x": -8.1, "y": 29.66, "curve": "stepped"}, {"time": 0.6667, "x": -8.1, "y": 29.66, "curve": "stepped"}, + {"time": 0.7, "x": -1.86, "y": -9.26, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.8333, "x": -2.25, "y": -13.72, "curve": 0.315, "c4": 0.8}, {"time": 1} + ] + }, + "@shadow": { + "translate": [ + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 61.96, "curve": "stepped"}, {"time": 0.1667, "x": 61.96, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.25, "x": -143.36, "curve": "stepped"}, {"time": 0.2667, "x": -150.21, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.4833, "x": -152.15, "curve": "stepped"}, + {"time": 0.5, "x": -142.78}, {"time": 0.6667, "x": -144.04, "curve": "stepped"}, {"time": 0.7, "x": -144.72, "curve": "stepped"}, + {"time": 0.8333, "x": -144.72, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1} + ], + "scale": [ + {"time": 0.0833, "curve": 0, "c2": 0.26, "c3": 0.369, "c4": 0.62}, {"time": 0.1667, "x": 1.06, "y": 1.06, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "curve": "stepped"}, + {"time": 0.2667, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.4833, "x": 0.9, "y": 0.9, "curve": "stepped"}, {"time": 0.5, "x": 1.06, "y": 1.06}, + {"time": 0.6667, "x": 1.1, "y": 1.1, "curve": "stepped"}, {"time": 0.7, "x": 1.06, "y": 1.06, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.8333, "x": 1.1, "y": 1.1, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1} + ] + }, + "tail": { + "rotate": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "angle": 15.61, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "angle": 20.44, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.25, "angle": -15.58, "curve": "stepped"}, {"time": 0.2667, "angle": 40.35, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.4833, "angle": 41.35, "curve": "stepped"}, + {"time": 0.5, "angle": -14.65}, {"time": 0.6667, "angle": -15.65, "curve": "stepped"}, {"time": 0.7, "angle": -15.58, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.8333, "angle": 19.38, "curve": 0.313, "c3": 0.699}, {"time": 1} + ] + }, + "@pivot-main": {"translate": [{"time": 0.8333, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.9167, "y": 31, "curve": 0.315, "c4": 0.8}, {"time": 1}]}, + "body-fur-2": { + "rotate": [ + {"angle": -14.13, "curve": 0.358, "c2": 0.42, "c3": 0.702, "c4": 0.8}, {"time": 0.0667, "angle": -2.71, "curve": 0.366, "c2": 0.63, "c3": 0.703}, {"time": 0.1}, + {"time": 0.2667, "angle": -25.37, "curve": 0.571, "c2": 0.01, "c3": 0.75}, {"time": 0.4333, "angle": 31.07, "curve": 0.752, "c2": 0.01, "c3": 0.75}, + {"time": 0.6, "angle": -34.51, "curve": 0.25, "c3": 0.75}, {"time": 0.7667, "angle": -3.25, "curve": 0.25, "c3": 0.75}, + {"time": 0.85, "angle": -38.93, "curve": 0.245, "c3": 0.637, "c4": 0.56}, {"time": 1, "angle": 13.84} + ] + }, + "body-fur-9": { + "rotate": [ + {"angle": -7.82, "curve": 0.352, "c2": 0.41, "c3": 0.688, "c4": 0.76}, {"time": 0.0333, "angle": -2.71, "curve": 0.366, "c2": 0.63, "c3": 0.703}, + {"time": 0.0667, "curve": 0.25, "c3": 0.75}, {"time": 0.2333, "angle": -25.37, "curve": 0.571, "c2": 0.01, "c3": 0.75}, + {"time": 0.4, "angle": 31.07, "curve": 0.752, "c2": 0.01, "c3": 0.75}, {"time": 0.5667, "angle": -34.51, "curve": 0.25, "c3": 0.75}, + {"time": 0.7333, "angle": -3.25, "curve": 0.25, "c3": 0.75}, {"time": 0.8167, "angle": -38.93, "curve": 0.242, "c3": 0.663, "c4": 0.65}, {"time": 1, "angle": 6.86} + ] + }, + "body-fur-8": { + "rotate": [ + {"angle": -2.71, "curve": 0.366, "c2": 0.63, "c3": 0.703}, {"time": 0.0333, "curve": 0.25, "c3": 0.75}, {"time": 0.2, "angle": -25.37, "curve": 0.571, "c2": 0.01, "c3": 0.75}, + {"time": 0.3667, "angle": 31.07, "curve": 0.752, "c2": 0.01, "c3": 0.75}, {"time": 0.5333, "angle": -34.51, "curve": 0.25, "c3": 0.75}, + {"time": 0.7, "angle": -3.25, "curve": 0.25, "c3": 0.75}, {"time": 0.7833, "angle": -38.93, "curve": 0.244, "c3": 0.7, "c4": 0.79}, {"time": 1, "angle": -0.91} + ] + }, + "body-fur-7": { + "rotate": [ + {"angle": -0.89, "curve": 0.352, "c2": 0.65, "c3": 0.687}, {"time": 0.0167, "curve": 0.25, "c3": 0.75}, {"time": 0.1833, "angle": -25.37, "curve": 0.571, "c2": 0.01, "c3": 0.75}, + {"time": 0.35, "angle": 31.07, "curve": 0.752, "c2": 0.01, "c3": 0.75}, {"time": 0.5167, "angle": -34.51, "curve": 0.25, "c3": 0.75}, + {"time": 0.6833, "angle": -3.25, "curve": 0.25, "c3": 0.75}, {"time": 0.7667, "angle": -38.93, "curve": 0.246, "c3": 0.723, "c4": 0.88}, {"time": 1, "angle": 2.91} + ] + }, + "body-fur-6": { + "rotate": [ + {"angle": -7.82, "curve": 0.352, "c2": 0.41, "c3": 0.688, "c4": 0.76}, {"time": 0.0333, "angle": -2.71, "curve": 0.366, "c2": 0.63, "c3": 0.703}, {"time": 0.0667}, + {"time": 0.2333, "angle": -25.37, "curve": 0.571, "c2": 0.01, "c3": 0.75}, {"time": 0.4, "angle": 31.07, "curve": 0.752, "c2": 0.01, "c3": 0.75}, + {"time": 0.5667, "angle": -34.51, "curve": 0.25, "c3": 0.75}, {"time": 0.7333, "angle": -3.25, "curve": 0.25, "c3": 0.75}, + {"time": 0.8167, "angle": -38.93, "curve": 0.242, "c3": 0.663, "c4": 0.65}, {"time": 1, "angle": 13.33} + ] + }, + "body-fur-5": { + "rotate": [ + {"angle": -2.71, "curve": 0.366, "c2": 0.63, "c3": 0.703}, {"time": 0.0333}, {"time": 0.2, "angle": -25.37, "curve": 0.571, "c2": 0.01, "c3": 0.75}, + {"time": 0.3667, "angle": 31.07, "curve": 0.752, "c2": 0.01, "c3": 0.75}, {"time": 0.5333, "angle": -34.51, "curve": 0.25, "c3": 0.75}, + {"time": 0.7, "angle": -3.25, "curve": 0.25, "c3": 0.75}, {"time": 0.7833, "angle": -38.93, "curve": 0.244, "c3": 0.7, "c4": 0.79}, {"time": 1, "angle": 6.86} + ] + }, + "body-fur-4": { + "rotate": [ + {"angle": -10.87, "curve": 0.356, "c2": 0.42, "c3": 0.696, "c4": 0.78}, {"time": 0.05, "angle": -2.71, "curve": 0.366, "c2": 0.63, "c3": 0.703}, {"time": 0.0833}, + {"time": 0.25, "angle": -25.37, "curve": 0.571, "c2": 0.01, "c3": 0.75}, {"time": 0.4167, "angle": 31.07, "curve": 0.752, "c2": 0.01, "c3": 0.75}, + {"time": 0.5833, "angle": -34.51, "curve": 0.25, "c3": 0.75}, {"time": 0.75, "angle": -3.25, "curve": 0.25, "c3": 0.75}, + {"time": 0.8333, "angle": -38.93, "curve": 0.243, "c3": 0.649, "c4": 0.6}, {"time": 1, "angle": 12.53} + ] + }, + "body-fur-3": { + "rotate": [ + {"angle": -5.07, "curve": 0.375, "c2": 0.62, "c3": 0.716}, {"time": 0.05}, {"time": 0.2167, "angle": -25.37, "curve": 0.571, "c2": 0.01, "c3": 0.75}, + {"time": 0.3833, "angle": 31.07, "curve": 0.752, "c2": 0.01, "c3": 0.75}, {"time": 0.55, "angle": -34.51, "curve": 0.25, "c3": 0.75}, + {"time": 0.7167, "angle": -3.25, "curve": 0.25, "c3": 0.75}, {"time": 0.8, "angle": -38.93, "curve": 0.243, "c3": 0.68, "c4": 0.71}, {"time": 1, "angle": 5.54} + ] + }, + "body-fur-1": { + "rotate": [ + {"angle": -7.89, "curve": 0.38, "c2": 0.59, "c3": 0.727}, {"time": 0.0667}, {"time": 0.2333, "angle": -25.37, "curve": 0.571, "c2": 0.01, "c3": 0.75}, + {"time": 0.4, "angle": 31.07, "curve": 0.752, "c2": 0.01, "c3": 0.75}, {"time": 0.5667, "angle": -34.51, "curve": 0.25, "c3": 0.75}, + {"time": 0.7333, "angle": -3.25, "curve": 0.25, "c3": 0.75}, {"time": 0.8167, "angle": -38.93, "curve": 0.242, "c3": 0.663, "c4": 0.65}, {"time": 1, "angle": 10.51} + ] + } + }, + "events": [{"time": 0.3333, "name": "start-attack"}, {"time": 0.5, "name": "hit"}] + }, + "882476411": { + "slots": { + "eyes": {"attachment": [{"time": 0.05, "name": "eyes-angry"}, {"time": 0.6667, "name": "eyes-shut"}, {"time": 0.75, "name": "eyes"}]}, + "mouth": {"attachment": [{"time": 0.05, "name": "mouth-bite"}, {"time": 0.2667, "name": "mouth-open"}, {"time": 0.55, "name": "mouth-bite"}, {"time": 0.75, "name": "mouth"}]} + }, + "bones": { + "@leg-front-right": { + "translate": [ + {"curve": 0, "c2": 0.4, "c3": 0.383}, {"time": 0.25, "x": -2.2, "y": -15.65, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3167, "x": -1.86, "y": -9.26, "curve": "stepped"}, + {"time": 0.3333, "x": -2.24, "y": 13.67, "curve": "stepped"}, {"time": 0.5333, "x": -2.24, "y": 13.67, "curve": "stepped"}, + {"time": 0.55, "x": -2.12, "y": 6.47, "curve": 0.313, "c3": 0.699}, {"time": 0.6667, "x": -3.13, "y": -23.62, "curve": 0, "c2": 0.3, "c3": 0.54}, {"time": 0.8333} + ] + }, + "tail": { + "rotate": [ + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.25, "angle": 21.98, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3167, "angle": -15.58, "curve": "stepped"}, + {"time": 0.3333, "angle": 6.35}, {"time": 0.5, "angle": 10.35, "curve": "stepped"}, {"time": 0.55, "angle": -11.84, "curve": 0.313, "c3": 0.699}, + {"time": 0.6667, "angle": 16.95, "curve": 0.313, "c3": 0.699}, {"time": 0.8333} + ] + }, + "@pivot-back": { + "rotate": [ + {"curve": 0, "c2": 0.4, "c3": 0.383}, {"time": 0.15, "angle": 4, "curve": "stepped"}, {"time": 0.25, "angle": 4, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.3167, "curve": "stepped"}, {"time": 0.3333}, {"time": 0.5, "angle": -3, "curve": "stepped"}, {"time": 0.55, "curve": 0.313, "c3": 0.699}, + {"time": 0.6667, "angle": 6, "curve": 0.313, "c3": 0.699}, {"time": 0.8333} + ], + "translate": [ + {"curve": 0, "c2": 0.4, "c3": 0.383}, {"time": 0.25, "x": 25, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3167, "x": -135.5, "curve": "stepped"}, {"time": 0.3333, "x": -560.54}, + {"time": 0.5, "x": -577.1, "curve": "stepped"}, {"time": 0.55, "x": -151.24, "curve": 0.313, "c3": 0.699}, {"time": 0.6667, "x": -151.24, "y": 4.06, "curve": 0.313, "c3": 0.699}, + {"time": 0.8333} + ], + "scale": [{"time": 0.3167, "curve": "stepped"}, {"time": 0.3333, "x": -1, "curve": "stepped"}, {"time": 0.5, "x": -1, "curve": "stepped"}, {"time": 0.55}] + }, + "@leg-front-left": { + "translate": [ + {"curve": 0, "c2": 0.4, "c3": 0.383}, {"time": 0.25, "x": -1, "y": -5.53, "curve": "stepped"}, {"time": 0.3167, "x": -1, "y": -5.53, "curve": "stepped"}, + {"time": 0.3333, "x": -1.12, "y": 1.52, "curve": "stepped"}, {"time": 0.55, "x": -1.12, "y": 1.52, "curve": 0.313, "c3": 0.699}, + {"time": 0.6667, "x": -1, "y": -5.53, "curve": 0.313, "c3": 0.699}, {"time": 0.8333} + ] + }, + "@shadow": { + "translate": [ + {"time": 0.25, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3167, "x": -143.36, "curve": "stepped"}, {"time": 0.3333, "x": -143.36}, {"time": 0.5, "x": -157.56, "curve": "stepped"}, + {"time": 0.55, "x": -161.35, "curve": "stepped"}, {"time": 0.6667, "x": -161.35, "curve": 0.313, "c3": 0.699}, {"time": 0.8333} + ], + "scale": [ + {"curve": 0, "c2": 0.4, "c3": 0.383}, {"time": 0.25, "x": 1.08, "y": 1.08, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3167, "curve": "stepped"}, {"time": 0.3333}, + {"time": 0.5, "x": 1.08, "y": 1.08, "curve": "stepped"}, {"time": 0.55, "curve": 0.313, "c3": 0.699}, {"time": 0.6667, "x": 1.08, "y": 1.08, "curve": 0.313, "c3": 0.699}, + {"time": 0.8333} + ] + }, + "leg-front-left-IK": { + "translate": [ + {"time": 0.25, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3167, "x": -192.09, "y": 31.17, "curve": "stepped"}, {"time": 0.3333, "x": -162.19, "curve": "stepped"}, + {"time": 0.5, "x": -162.19, "curve": "stepped"}, {"time": 0.55, "x": -180.48, "curve": "stepped"}, {"time": 0.6667, "x": -180.48, "curve": 0.313, "c3": 0.699}, {"time": 0.8333} + ] + }, + "leg-front-right-IK": { + "translate": [ + {"time": 0.25, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3167, "x": -172.87, "y": 28.32, "curve": "stepped"}, {"time": 0.3333, "x": 301.16, "y": 16.82, "curve": 0.31, "c4": 0.8}, + {"time": 0.5, "x": 285.54, "y": 12.82, "curve": "stepped"}, {"time": 0.55, "x": -180.48, "curve": "stepped"}, {"time": 0.6667, "x": -180.48, "curve": 0.313, "c3": 0.699}, + {"time": 0.8333} + ] + }, + "leg-back-left-IK": { + "translate": [ + {"time": 0.25, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3167, "x": -91.18, "y": 21.9, "curve": "stepped"}, {"time": 0.3333, "x": -595.64, "y": 5, "curve": 0.31, "c4": 0.8}, + {"time": 0.5, "x": -626.51, "y": 11.36, "curve": "stepped"}, {"time": 0.55, "x": -134.74, "curve": "stepped"}, {"time": 0.6667, "x": -134.74, "curve": 0.313, "c3": 0.699}, + {"time": 0.8333} + ] + }, + "@pivot-main": {"translate": [{"time": 0.6667, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.75, "y": 31, "curve": 0.315, "c4": 0.8}, {"time": 0.8333}]}, + "@leg-back-left": {"translate": [{"time": 0.3167, "curve": "stepped"}, {"time": 0.3333, "x": -0.06, "y": 3.33, "curve": "stepped"}, {"time": 0.5, "x": -0.06, "y": 3.33}, {"time": 0.55}]}, + "body-fur-2": { + "rotate": [ + {"angle": -19.31, "curve": 0.33, "c2": 0.32, "c3": 0.693, "c4": 0.75}, {"time": 0.0667, "angle": -4.17, "curve": 0.377, "c2": 0.61, "c3": 0.72}, {"time": 0.1, "curve": 0.25, "c3": 0.75}, + {"time": 0.2333, "angle": 21.88, "curve": 0.25, "c3": 0.75}, {"time": 0.4167, "angle": -28.05, "curve": 0.25, "c3": 0.75}, {"time": 0.5, "angle": 25.5, "curve": 0.25, "c3": 0.75}, + {"time": 0.65, "curve": 0.25, "c3": 0.75}, {"time": 0.7833, "angle": -27.06, "curve": 0.265, "c3": 0.618, "c4": 0.43}, {"time": 0.8333, "angle": 13.84} + ] + }, + "body-fur-9": { + "rotate": [ + {"angle": -15.42, "curve": 0.342, "c2": 0.36, "c3": 0.692, "c4": 0.75}, {"time": 0.05, "angle": -4.17, "curve": 0.377, "c2": 0.61, "c3": 0.72}, {"time": 0.0833}, + {"time": 0.2167, "angle": 21.88, "curve": 0.25, "c3": 0.75}, {"time": 0.4, "angle": -28.05, "curve": 0.25, "c3": 0.75}, {"time": 0.4833, "angle": 25.5, "curve": 0.25, "c3": 0.75}, + {"time": 0.6333, "curve": 0.25, "c3": 0.75}, {"time": 0.7667, "angle": -27.06, "curve": 0.254, "c3": 0.621, "c4": 0.47}, {"time": 0.8333, "angle": 6.86} + ] + }, + "body-fur-8": { + "rotate": [ + {"angle": -7.68, "curve": 0.382, "c2": 0.57, "c3": 0.735}, {"time": 0.05}, {"time": 0.1833, "angle": 21.88, "curve": 0.25, "c3": 0.75}, + {"time": 0.3667, "angle": -28.05, "curve": 0.25, "c3": 0.75}, {"time": 0.45, "angle": 25.5, "curve": 0.25, "c3": 0.75}, {"time": 0.6, "curve": 0.25, "c3": 0.75}, + {"time": 0.7333, "angle": -27.06, "curve": 0.243, "c3": 0.649, "c4": 0.6}, {"time": 0.8333, "angle": -0.91} + ] + }, + "body-fur-7": { + "rotate": [ + {"angle": -1.39, "curve": 0.362, "c2": 0.64, "c3": 0.698}, {"time": 0.0167, "curve": 0.25, "c3": 0.75}, {"time": 0.15, "angle": 21.88, "curve": 0.25, "c3": 0.75}, + {"time": 0.3333, "angle": -28.05, "curve": 0.25, "c3": 0.75}, {"time": 0.4167, "angle": 25.5, "curve": 0.25, "c3": 0.75}, {"time": 0.5667, "curve": 0.25, "c3": 0.75}, + {"time": 0.7, "angle": -27.06, "curve": 0.245, "c3": 0.707, "c4": 0.82}, {"time": 0.8333, "angle": 2.91} + ] + }, + "body-fur-6": { + "rotate": [ + {"angle": -11.45, "curve": 0.347, "c2": 0.38, "c3": 0.688, "c4": 0.74}, {"time": 0.0333, "angle": -4.17, "curve": 0.377, "c2": 0.61, "c3": 0.72}, {"time": 0.0667}, + {"time": 0.2, "angle": 21.88, "curve": 0.25, "c3": 0.75}, {"time": 0.3833, "angle": -28.05, "curve": 0.25, "c3": 0.75}, {"time": 0.4667, "angle": 25.5, "curve": 0.25, "c3": 0.75}, + {"time": 0.6167, "curve": 0.25, "c3": 0.75}, {"time": 0.75, "angle": -27.06, "curve": 0.247, "c3": 0.631, "c4": 0.53}, {"time": 0.8333, "angle": 13.33} + ] + }, + "body-fur-5": { + "rotate": [ + {"angle": -4.17, "curve": 0.377, "c2": 0.61, "c3": 0.72}, {"time": 0.0333}, {"time": 0.1667, "angle": 21.88, "curve": 0.25, "c3": 0.75}, + {"time": 0.35, "angle": -28.05, "curve": 0.25, "c3": 0.75}, {"time": 0.4333, "angle": 25.5, "curve": 0.25, "c3": 0.75}, {"time": 0.5833, "curve": 0.25, "c3": 0.75}, + {"time": 0.7167, "angle": -27.06, "curve": 0.243, "c3": 0.674, "c4": 0.69}, {"time": 0.8333, "angle": 6.86} + ] + }, + "body-fur-4": { + "rotate": [ + {"angle": -15.42, "curve": 0.342, "c2": 0.36, "c3": 0.692, "c4": 0.75}, {"time": 0.05, "angle": -4.17, "curve": 0.377, "c2": 0.61, "c3": 0.72}, {"time": 0.0833}, + {"time": 0.2167, "angle": 21.88, "curve": 0.25, "c3": 0.75}, {"time": 0.4, "angle": -28.05, "curve": 0.25, "c3": 0.75}, {"time": 0.4833, "angle": 25.5, "curve": 0.25, "c3": 0.75}, + {"time": 0.6333, "curve": 0.25, "c3": 0.75}, {"time": 0.7667, "angle": -27.06, "curve": 0.254, "c3": 0.621, "c4": 0.47}, {"time": 0.8333, "angle": 12.53} + ] + }, + "body-fur-3": { + "rotate": [ + {"angle": -7.68, "curve": 0.382, "c2": 0.57, "c3": 0.735}, {"time": 0.05}, {"time": 0.1833, "angle": 21.88, "curve": 0.25, "c3": 0.75}, + {"time": 0.3667, "angle": -28.05, "curve": 0.25, "c3": 0.75}, {"time": 0.45, "angle": 25.5, "curve": 0.25, "c3": 0.75}, {"time": 0.6, "curve": 0.25, "c3": 0.75}, + {"time": 0.7333, "angle": -27.06, "curve": 0.243, "c3": 0.649, "c4": 0.6}, {"time": 0.8333, "angle": 5.54} + ] + }, + "body-fur-1": { + "rotate": [ + {"angle": -11.54, "curve": 0.379, "c2": 0.53, "c3": 0.746}, {"time": 0.0667, "curve": 0.25, "c3": 0.75}, {"time": 0.2, "angle": 21.88, "curve": 0.25, "c3": 0.75}, + {"time": 0.3833, "angle": -28.05, "curve": 0.25, "c3": 0.75}, {"time": 0.4667, "angle": 25.5, "curve": 0.25, "c3": 0.75}, {"time": 0.6167, "curve": 0.25, "c3": 0.75}, + {"time": 0.75, "angle": -27.06, "curve": 0.247, "c3": 0.631, "c4": 0.53}, {"time": 0.8333, "angle": 10.51} + ] + } + }, + "events": [{"time": 0.25, "name": "start-attack"}, {"time": 0.3333, "name": "hit"}] + }, + "2870186096": { + "bones": { + "@pivot-back": { + "rotate": [ + {"curve": 0, "c2": 0.34, "c3": 0.465}, {"time": 0.1667, "angle": 8.43, "curve": 0.614, "c4": 0.29}, {"time": 0.4167, "angle": -69.48, "curve": 0, "c2": 0.1, "c4": 0.9}, + {"time": 0.5833, "angle": 151.42, "curve": 0, "c2": 0.3, "c3": 0.535}, {"time": 0.8333, "angle": -5.75, "curve": 0, "c2": 0.15, "c4": 0.85}, + {"time": 1, "angle": -7.09, "curve": 0, "c2": 0.3, "c3": 0.542}, {"time": 1.25, "angle": 7.21, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1.5} + ], + "translate": [ + {"x": 0.02, "y": 44.43, "curve": 0, "c2": 0.34, "c3": 0.465}, {"time": 0.1667, "x": 25.79, "y": 23.82, "curve": 0.614, "c4": 0.29}, + {"time": 0.4167, "x": -156.83, "y": 231.34, "curve": 0, "c2": 0.1, "c4": 0.9}, {"time": 0.5833, "x": -1.88, "y": 372.46, "curve": 0, "c2": 0.19, "c3": 0.403, "c4": 0.57}, + {"time": 0.6667, "x": 196.15, "y": 317.74, "curve": 0.282, "c2": 0.45, "c3": 0.748}, {"time": 0.8333, "x": 558.6, "y": 68.09, "curve": 0, "c2": 0.15, "c4": 0.85}, + {"time": 1, "x": 586.58, "y": 68.09, "curve": 0, "c2": 0.3, "c3": 0.542}, {"time": 1.25, "x": 594.57, "y": 68.09, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 1.5, "x": 0.02, "y": 44.43} + ] + }, + "tail": { + "rotate": [ + {"curve": 0, "c2": 0.34, "c3": 0.465}, {"time": 0.1667, "angle": 16.63, "curve": 0.622, "c4": 0.3}, {"time": 0.4167, "angle": -38.13, "curve": 0, "c2": 0.1, "c4": 0.9}, + {"time": 0.6667, "angle": 21.47, "curve": 0, "c2": 0.2, "c3": 0.698}, {"time": 1, "angle": -14.5, "curve": 0, "c2": 0.3, "c3": 0.549}, + {"time": 1.25, "angle": 17, "curve": 0, "c2": 0.2, "c3": 0.7}, {"time": 1.5} + ] + }, + "@leg-back-left": { + "rotate": [ + {"curve": 0, "c2": 0.34, "c3": 0.465}, {"time": 0.1667, "angle": -14.34, "curve": 0.619, "c4": 0.3}, {"time": 0.4167, "angle": 14.4, "curve": 0, "c2": 0.1, "c4": 0.9}, + {"time": 0.6667, "angle": -14.29, "curve": "stepped"}, {"time": 1, "angle": -14.29, "curve": 0, "c2": 0.3, "c3": 0.542}, + {"time": 1.25, "angle": 14.99, "curve": 0, "c2": 0.2, "c3": 0.693}, {"time": 1.5} + ] + }, + "@leg-front-left": { + "rotate": [ + {"curve": 0, "c2": 0.34, "c3": 0.465}, {"time": 0.1667, "angle": -18.49, "curve": 0.619, "c4": 0.3}, {"time": 0.4167, "angle": 10.25, "curve": 0, "c2": 0.1, "c4": 0.9}, + {"time": 0.6667, "angle": -18.44}, {"time": 1, "angle": -22.13, "curve": 0, "c2": 0.3, "c3": 0.542}, {"time": 1.25, "angle": 7.14, "curve": 0, "c2": 0.2, "c3": 0.693}, {"time": 1.5} + ] + }, + "@leg-front-right": { + "rotate": [ + {"curve": 0, "c2": 0.34, "c3": 0.465}, {"time": 0.1667, "angle": -18.49, "curve": 0.619, "c4": 0.3}, {"time": 0.4167, "angle": 10.25, "curve": 0, "c2": 0.1, "c4": 0.9}, + {"time": 0.6667, "angle": -18.44}, {"time": 1, "angle": -22.13, "curve": 0, "c2": 0.3, "c3": 0.542}, {"time": 1.25, "angle": 7.14, "curve": 0, "c2": 0.2, "c3": 0.693}, {"time": 1.5} + ] + }, + "@shadow": { + "translate": [ + {"curve": 0, "c2": 0.34, "c3": 0.465}, {"time": 0.1667, "x": 19.25, "curve": 0.622, "c4": 0.3}, {"time": 0.4167, "x": -31.7, "curve": 0, "c2": 0.1, "c4": 0.9}, + {"time": 0.5833, "x": 395, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.8333, "x": 549.5, "curve": 0, "c2": 0.15, "c4": 0.85}, + {"time": 1, "x": 577.9, "curve": 0, "c2": 0.3, "c3": 0.549}, {"time": 1.25, "x": 587.3, "curve": 0, "c2": 0.2, "c3": 0.7}, {"time": 1.5} + ], + "scale": [ + {"curve": 0, "c2": 0.34, "c3": 0.465}, {"time": 0.1667, "x": 1.12, "y": 1.12, "curve": 0.622, "c4": 0.3}, {"time": 0.4167, "x": 0.84, "y": 0.84, "curve": 0, "c2": 0.1, "c4": 0.9}, + {"time": 0.5833, "x": 0.9, "y": 0.9, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.8333, "x": 0.98, "y": 0.98, "curve": 0, "c2": 0.15, "c4": 0.85}, + {"time": 1, "x": 0.94, "y": 0.94, "curve": 0, "c2": 0.3, "c3": 0.549}, {"time": 1.25, "x": 1.02, "y": 1.02, "curve": 0, "c2": 0.2, "c3": 0.7}, {"time": 1.5} + ] + }, + "body-fur-8": { + "rotate": [ + {"angle": -8.81, "curve": 0.375, "c2": 0.5, "c3": 0.75}, {"time": 0.0667}, {"time": 0.2333, "angle": 34.44, "curve": 0.25, "c3": 0.75}, + {"time": 0.4, "angle": 15.7, "curve": 0.25, "c3": 0.75}, {"time": 0.7333, "angle": 43.18, "curve": 0.361, "c2": 0.01, "c3": 0.75}, + {"time": 0.9667, "angle": -39.28, "curve": 0.25, "c3": 0.75}, {"time": 1.2667, "angle": 22.14, "curve": 0.25, "c3": 0.75}, + {"time": 1.4333, "angle": -17.63, "curve": 0.25, "c3": 0.625, "c4": 0.5}, {"time": 1.5, "angle": -8.81} + ] + }, + "body-fur-1": { + "rotate": [ + {"angle": -11.71, "curve": 0.359, "c2": 0.43, "c3": 0.756}, {"time": 0.0833}, {"time": 0.25, "angle": 34.44, "curve": 0.25, "c3": 0.75}, + {"time": 0.4167, "angle": 15.7, "curve": 0.25, "c3": 0.75}, {"time": 0.75, "angle": 43.18, "curve": 0.361, "c2": 0.01, "c3": 0.75}, + {"time": 0.9833, "angle": -39.28, "curve": 0.25, "c3": 0.75}, {"time": 1.2833, "angle": 22.14, "curve": 0.25, "c3": 0.75}, + {"time": 1.45, "angle": -17.63, "curve": 0.26, "c3": 0.618, "c4": 0.44}, {"time": 1.5, "angle": -11.71} + ] + }, + "body-fur-2": { + "rotate": [ + {"angle": -17.63, "curve": 0.244, "c3": 0.641, "c4": 0.57}, {"time": 0.0833, "angle": -5.92, "curve": 0.382, "c2": 0.56, "c3": 0.74}, {"time": 0.1333}, + {"time": 0.3, "angle": 34.44, "curve": 0.25, "c3": 0.75}, {"time": 0.4667, "angle": 15.7, "curve": 0.25, "c3": 0.75}, + {"time": 0.8, "angle": 43.18, "curve": 0.361, "c2": 0.01, "c3": 0.75}, {"time": 1.0333, "angle": -39.28, "curve": 0.25, "c3": 0.75}, + {"time": 1.3333, "angle": 22.14, "curve": 0.25, "c3": 0.75}, {"time": 1.5, "angle": -17.63} + ] + }, + "body-fur-3": { + "rotate": [ + {"angle": -17.63, "curve": 0.25, "c3": 0.75}, {"time": 0.1333, "curve": 0.25, "c3": 0.75}, {"time": 0.3, "angle": 34.44, "curve": 0.25, "c3": 0.75}, + {"time": 0.4667, "angle": 15.7, "curve": 0.25, "c3": 0.75}, {"time": 0.8, "angle": 43.18, "curve": 0.361, "c2": 0.01, "c3": 0.75}, + {"time": 1.0333, "angle": -39.28, "curve": 0.25, "c3": 0.75}, {"time": 1.3333, "angle": 22.14, "curve": 0.25, "c3": 0.75}, {"time": 1.5, "angle": -17.63} + ] + }, + "body-fur-4": { + "rotate": [ + {"angle": -7.99, "curve": 0.382, "c2": 0.58, "c3": 0.731}, {"time": 0.05, "angle": -17.63, "curve": 0.244, "c3": 0.641, "c4": 0.57}, + {"time": 0.1333, "angle": -5.92, "curve": 0.382, "c2": 0.56, "c3": 0.74}, {"time": 0.1833, "curve": 0.25, "c3": 0.75}, {"time": 0.35, "angle": 34.44, "curve": 0.25, "c3": 0.75}, + {"time": 0.5167, "angle": 15.7, "curve": 0.25, "c3": 0.75}, {"time": 0.85, "angle": 43.18, "curve": 0.361, "c2": 0.01, "c3": 0.75}, + {"time": 1.0833, "angle": -39.28, "curve": 0.25, "c3": 0.75}, {"time": 1.3833, "angle": 22.14, "curve": 0.243, "c3": 0.655, "c4": 0.63}, {"time": 1.5, "angle": -7.99} + ] + }, + "body-fur-5": { + "rotate": [ + {"angle": -14.37, "curve": 0.333, "c2": 0.33, "c3": 0.758}, {"time": 0.1}, {"time": 0.2667, "angle": 34.44, "curve": 0.25, "c3": 0.75}, + {"time": 0.4333, "angle": 15.7, "curve": 0.25, "c3": 0.75}, {"time": 0.7667, "angle": 43.18, "curve": 0.361, "c2": 0.01, "c3": 0.75}, + {"time": 1, "angle": -39.28, "curve": 0.25, "c3": 0.75}, {"time": 1.3, "angle": 22.14, "curve": 0.25, "c3": 0.75}, + {"time": 1.4667, "angle": -17.63, "curve": 0.276, "c3": 0.621, "c4": 0.4}, {"time": 1.5, "angle": -14.37} + ] + }, + "body-fur-6": { + "rotate": [ + {"angle": -15.93, "curve": 0.36, "c2": 0.64, "c3": 0.695}, {"time": 0.0167, "angle": -17.63, "curve": 0.244, "c3": 0.641, "c4": 0.57}, + {"time": 0.1, "angle": -5.92, "curve": 0.382, "c2": 0.56, "c3": 0.74}, {"time": 0.15}, {"time": 0.3167, "angle": 34.44, "curve": 0.25, "c3": 0.75}, + {"time": 0.4833, "angle": 15.7, "curve": 0.25, "c3": 0.75}, {"time": 0.8167, "angle": 43.18, "curve": 0.361, "c2": 0.01, "c3": 0.75}, + {"time": 1.05, "angle": -39.28, "curve": 0.25, "c3": 0.75}, {"time": 1.35, "angle": 22.14, "curve": 0.245, "c3": 0.711, "c4": 0.83}, {"time": 1.5, "angle": -15.93} + ] + }, + "body-fur-7": { + "rotate": [ + {"angle": -8.81, "curve": 0.375, "c2": 0.5, "c3": 0.75}, {"time": 0.0667, "curve": 0.25, "c3": 0.75}, {"time": 0.2333, "angle": 34.44, "curve": 0.25, "c3": 0.75}, + {"time": 0.4, "angle": 15.7, "curve": 0.25, "c3": 0.75}, {"time": 0.7333, "angle": 43.18, "curve": 0.361, "c2": 0.01, "c3": 0.75}, + {"time": 0.9667, "angle": -39.28, "curve": 0.25, "c3": 0.75}, {"time": 1.2667, "angle": 22.14, "curve": 0.25, "c3": 0.75}, + {"time": 1.4333, "angle": -17.63, "curve": 0.25, "c3": 0.625, "c4": 0.5}, {"time": 1.5, "angle": -8.81} + ] + }, + "body-fur-9": { + "rotate": [ + {"angle": -16.56, "curve": 0.285, "c2": 0.17, "c3": 0.657, "c4": 0.63}, {"time": 0.0667, "angle": -5.92, "curve": 0.382, "c2": 0.56, "c3": 0.74}, {"time": 0.1167}, + {"time": 0.2833, "angle": 34.44, "curve": 0.25, "c3": 0.75}, {"time": 0.45, "angle": 15.7, "curve": 0.25, "c3": 0.75}, + {"time": 0.7833, "angle": 43.18, "curve": 0.361, "c2": 0.01, "c3": 0.75}, {"time": 1.0167, "angle": -39.28, "curve": 0.25, "c3": 0.75}, + {"time": 1.3167, "angle": 22.14, "curve": 0.25, "c3": 0.75}, {"time": 1.4833, "angle": -17.63, "curve": 0.299, "c3": 0.636, "c4": 0.36}, {"time": 1.5, "angle": -16.56} + ] + } + } + }, + "901954966": { + "slots": { + "ear-left-dot-01": { + "color": [ + {"color": "ffffffff", "curve": "stepped"}, {"time": 0.2167, "color": "ffffffff", "curve": 0.25, "c3": 0.75}, {"time": 0.85, "color": "ffffff00", "curve": "stepped"}, + {"time": 0.8833, "color": "ffffff00", "curve": 0.25, "c3": 0.75}, {"time": 1.2167, "color": "ffffffff"} + ] + }, + "ear-left-dot-02": { + "color": [ + {"color": "ffffffab", "curve": 0.358, "c2": 0.42, "c3": 0.756}, {"time": 0.4, "color": "ffffff00", "curve": "stepped"}, {"time": 0.4333, "color": "ffffff00", "curve": 0.25, "c3": 0.75}, + {"time": 0.7667, "color": "ffffffff", "curve": "stepped"}, {"time": 2.4333, "color": "ffffffff", "curve": 0.261, "c3": 0.618, "c4": 0.44}, {"time": 2.6667, "color": "ffffffab"} + ] + }, + "ear-left-dot-03": { + "color": [ + {"color": "ffffffff", "curve": "stepped"}, {"time": 1.4667, "color": "ffffffff", "curve": 0.25, "c3": 0.75}, {"time": 2.1, "color": "ffffff00", "curve": "stepped"}, + {"time": 2.1333, "color": "ffffff00", "curve": 0.25, "c3": 0.75}, {"time": 2.4667, "color": "ffffffff"} + ] + }, + "ear-left-dot-04": { + "color": [ + {"color": "ffffffff", "curve": "stepped"}, {"time": 0.35, "color": "ffffffff", "curve": 0.25, "c3": 0.75}, {"time": 0.9833, "color": "ffffff00", "curve": "stepped"}, + {"time": 1.0167, "color": "ffffff00", "curve": 0.25, "c3": 0.75}, {"time": 1.35, "color": "ffffffff"} + ] + }, + "ear-left-dot-05": { + "color": [ + {"color": "ffffffff", "curve": "stepped"}, {"time": 1.45, "color": "ffffffff", "curve": 0.25, "c3": 0.75}, {"time": 2.0833, "color": "ffffff00", "curve": "stepped"}, + {"time": 2.1167, "color": "ffffff00", "curve": 0.25, "c3": 0.75}, {"time": 2.45, "color": "ffffffff"} + ] + }, + "ear-left-dot-06": { + "color": [ + {"color": "ffffffda", "curve": 0.323, "c2": 0.3, "c3": 0.757}, {"time": 0.5, "color": "ffffff00", "curve": "stepped"}, {"time": 0.5333, "color": "ffffff00", "curve": 0.25, "c3": 0.75}, + {"time": 0.8667, "color": "ffffffff", "curve": "stepped"}, {"time": 2.5333, "color": "ffffffff", "curve": 0.282, "c3": 0.624, "c4": 0.39}, {"time": 2.6667, "color": "ffffffda"} + ] + }, + "ear-left-dot-07": { + "color": [ + {"color": "ffffff00", "curve": 0.25, "c3": 0.75}, {"time": 0.3333, "color": "ffffffff", "curve": "stepped"}, {"time": 2, "color": "ffffffff", "curve": 0.25, "c3": 0.75}, + {"time": 2.6333, "color": "ffffff00"} + ] + }, + "ear-left-dot-08": { + "color": [ + {"color": "ffffffff", "curve": "stepped"}, {"time": 1.1667, "color": "ffffffff", "curve": 0.25, "c3": 0.75}, {"time": 1.8, "color": "ffffff00", "curve": "stepped"}, + {"time": 1.8333, "color": "ffffff00", "curve": 0.25, "c3": 0.75}, {"time": 2.1667, "color": "ffffffff"} + ] + }, + "ear-left-dot-09": { + "color": [ + {"color": "ffffff16", "curve": 0.37, "c2": 0.63, "c3": 0.708}, {"time": 0.1, "color": "ffffff00", "curve": "stepped"}, {"time": 0.1333, "color": "ffffff00", "curve": 0.25, "c3": 0.75}, + {"time": 0.4667, "color": "ffffffff", "curve": "stepped"}, {"time": 2.1333, "color": "ffffffff", "curve": 0.243, "c3": 0.692, "c4": 0.76}, {"time": 2.6667, "color": "ffffff16"} + ] + }, + "ear-left-dot-10": { + "color": [ + {"color": "ffffffff", "curve": "stepped"}, {"time": 1.5, "color": "ffffffff", "curve": 0.25, "c3": 0.75}, {"time": 2.1333, "color": "ffffff00", "curve": "stepped"}, + {"time": 2.1667, "color": "ffffff00", "curve": 0.25, "c3": 0.75}, {"time": 2.5, "color": "ffffffff"} + ] + }, + "ear-left-dot-11": { + "color": [ + {"color": "ffffffcf", "curve": 0.379, "c2": 0.6, "c3": 0.724}, {"time": 0.0833, "color": "ffffffff", "curve": "stepped"}, {"time": 1.75, "color": "ffffffff", "curve": 0.25, "c3": 0.75}, + {"time": 2.3833, "color": "ffffff00", "curve": "stepped"}, {"time": 2.4167, "color": "ffffff00", "curve": 0.242, "c3": 0.667, "c4": 0.67}, {"time": 2.6667, "color": "ffffffcf"} + ] + }, + "ear-left-dot-12": { + "color": [ + {"color": "ffffff88", "curve": 0.372, "c2": 0.49, "c3": 0.752}, {"time": 0.3333, "color": "ffffff00", "curve": "stepped"}, + {"time": 0.3667, "color": "ffffff00", "curve": 0.25, "c3": 0.75}, {"time": 0.7, "color": "ffffffff", "curve": "stepped"}, + {"time": 2.3667, "color": "ffffffff", "curve": 0.252, "c3": 0.623, "c4": 0.49}, {"time": 2.6667, "color": "ffffff88"} + ] + }, + "ear-right-dot-01": { + "color": [ + {"color": "ffffff6d", "curve": 0.379, "c2": 0.53, "c3": 0.746}, {"time": 0.2833, "color": "ffffff00", "curve": "stepped"}, + {"time": 0.3167, "color": "ffffff00", "curve": 0.242, "c3": 0.667, "c4": 0.67}, {"time": 0.5667, "color": "ffffffcf", "curve": 0.379, "c2": 0.6, "c3": 0.724}, + {"time": 0.65, "color": "ffffffff", "curve": "stepped"}, {"time": 2.3167, "color": "ffffffff", "curve": 0.247, "c3": 0.631, "c4": 0.53}, {"time": 2.6667, "color": "ffffff6d"} + ] + }, + "ear-right-dot-02": { + "color": [ + {"color": "ffffffed", "curve": 0.3, "c2": 0.21, "c3": 0.756}, {"time": 0.55, "color": "ffffff00", "curve": "stepped"}, {"time": 0.5833, "color": "ffffff00", "curve": 0.25, "c3": 0.75}, + {"time": 0.9167, "color": "ffffffff", "curve": "stepped"}, {"time": 2.5833, "color": "ffffffff", "curve": 0.298, "c3": 0.634, "c4": 0.37}, {"time": 2.6667, "color": "ffffffed"} + ] + }, + "ear-right-dot-03": { + "color": [ + {"color": "ffffffff", "curve": "stepped"}, {"time": 0.9833, "color": "ffffffff", "curve": 0.25, "c3": 0.75}, {"time": 1.6167, "color": "ffffff00", "curve": "stepped"}, + {"time": 1.65, "color": "ffffff00", "curve": 0.25, "c3": 0.75}, {"time": 1.9833, "color": "ffffffff"} + ] + }, + "ear-right-dot-04": { + "color": [ + {"color": "ffffffff", "curve": "stepped"}, {"time": 1.5667, "color": "ffffffff", "curve": 0.25, "c3": 0.75}, {"time": 2.2, "color": "ffffff00", "curve": "stepped"}, + {"time": 2.2333, "color": "ffffff00", "curve": 0.25, "c3": 0.75}, {"time": 2.5667, "color": "ffffffff"} + ] + }, + "ear-right-dot-05": { + "color": [ + {"color": "ffffffff", "curve": "stepped"}, {"time": 1.2833, "color": "ffffffff", "curve": 0.25, "c3": 0.75}, {"time": 1.9167, "color": "ffffff00", "curve": "stepped"}, + {"time": 1.95, "color": "ffffff00", "curve": 0.25, "c3": 0.75}, {"time": 2.2833, "color": "ffffffff"} + ] + }, + "ear-right-dot-06": { + "color": [ + {"color": "ffffffff", "curve": "stepped"}, {"time": 0.0833, "color": "ffffffff", "curve": 0.25, "c3": 0.75}, {"time": 0.7167, "color": "ffffff00", "curve": "stepped"}, + {"time": 0.75, "color": "ffffff00", "curve": 0.25, "c3": 0.75}, {"time": 1.0833, "color": "ffffffff"} + ] + }, + "ear-right-dot-07": { + "color": [ + {"color": "ffffffff", "curve": "stepped"}, {"time": 0.0333, "color": "ffffffff", "curve": 0.25, "c3": 0.75}, {"time": 0.6667, "color": "ffffff00", "curve": "stepped"}, + {"time": 0.7, "color": "ffffff00", "curve": 0.25, "c3": 0.75}, {"time": 1.0333, "color": "ffffffff"} + ] + }, + "ear-right-dot-08": { + "color": [ + {"color": "ffffff00", "curve": 0.25, "c3": 0.75}, {"time": 0.3333, "color": "ffffffff", "curve": "stepped"}, {"time": 2, "color": "ffffffff", "curve": 0.25, "c3": 0.75}, + {"time": 2.6333, "color": "ffffff00"} + ] + }, + "ear-right-dot-09": { + "color": [ + {"color": "ffffffff", "curve": "stepped"}, {"time": 1.3, "color": "ffffffff", "curve": 0.25, "c3": 0.75}, {"time": 1.9333, "color": "ffffff00", "curve": "stepped"}, + {"time": 1.9667, "color": "ffffff00", "curve": 0.25, "c3": 0.75}, {"time": 2.3, "color": "ffffffff"} + ] + }, + "ear-right-dot-10": { + "color": [ + {"color": "ffffffff", "curve": "stepped"}, {"time": 1.4, "color": "ffffffff", "curve": 0.25, "c3": 0.75}, {"time": 2.0333, "color": "ffffff00", "curve": "stepped"}, + {"time": 2.0667, "color": "ffffff00", "curve": 0.25, "c3": 0.75}, {"time": 2.4, "color": "ffffffff"} + ] + }, + "ear-right-dot-11": { + "color": [ + {"color": "fffffffa", "curve": 0.348, "c2": 0.66, "c3": 0.682}, {"time": 0.0167, "color": "ffffffff", "curve": "stepped"}, + {"time": 1.6833, "color": "ffffffff", "curve": 0.25, "c3": 0.75}, {"time": 2.3167, "color": "ffffff00", "curve": "stepped"}, + {"time": 2.35, "color": "ffffff00", "curve": 0.247, "c3": 0.729, "c4": 0.91}, {"time": 2.6667, "color": "fffffffa"} + ] + }, + "ear-right-dot-12": { + "color": [ + {"color": "ffffffff", "curve": "stepped"}, {"time": 0.7167, "color": "ffffffff", "curve": 0.25, "c3": 0.75}, {"time": 1.35, "color": "ffffff00", "curve": "stepped"}, + {"time": 1.3833, "color": "ffffff00", "curve": 0.25, "c3": 0.75}, {"time": 1.7167, "color": "ffffffff"} + ] + }, + "ear-right-dot-13": { + "color": [ + {"color": "ffffff00", "curve": 0.25, "c3": 0.75}, {"time": 0.3333, "color": "ffffffff", "curve": "stepped"}, {"time": 2, "color": "ffffffff", "curve": 0.25, "c3": 0.75}, + {"time": 2.6333, "color": "ffffff00"} + ] + }, + "ear-right-dot-14": { + "color": [ + {"color": "ffffffff", "curve": "stepped"}, {"time": 0.2, "color": "ffffffff", "curve": 0.25, "c3": 0.75}, {"time": 0.8333, "color": "ffffff00", "curve": "stepped"}, + {"time": 0.8667, "color": "ffffff00", "curve": 0.25, "c3": 0.75}, {"time": 1.2, "color": "ffffffff"} + ] + }, + "ear-right-dot-15": { + "color": [ + {"color": "ffffffff", "curve": "stepped"}, {"time": 0.6, "color": "ffffffff", "curve": 0.25, "c3": 0.75}, {"time": 1.2333, "color": "ffffff00", "curve": "stepped"}, + {"time": 1.2667, "color": "ffffff00", "curve": 0.25, "c3": 0.75}, {"time": 1.6, "color": "ffffffff"} + ] + }, + "ear-right-dot-16": { + "color": [ + {"color": "ffffffff", "curve": "stepped"}, {"time": 0.4, "color": "ffffffff", "curve": 0.25, "c3": 0.75}, {"time": 1.0333, "color": "ffffff00", "curve": "stepped"}, + {"time": 1.0667, "color": "ffffff00", "curve": 0.25, "c3": 0.75}, {"time": 1.4, "color": "ffffffff"} + ] + }, + "ear-right-dot-17": { + "color": [ + {"color": "ffffff24", "curve": 0.376, "c2": 0.61, "c3": 0.718}, {"time": 0.1333, "color": "ffffff00", "curve": "stepped"}, + {"time": 0.1667, "color": "ffffff00", "curve": 0.25, "c3": 0.75}, {"time": 0.5, "color": "ffffffff", "curve": "stepped"}, + {"time": 2.1667, "color": "ffffffff", "curve": 0.243, "c3": 0.677, "c4": 0.7}, {"time": 2.6667, "color": "ffffff24"} + ] + }, + "ear-right-dot-18": { + "color": [ + {"color": "ffffffff", "curve": "stepped"}, {"time": 1.2833, "color": "ffffffff", "curve": 0.25, "c3": 0.75}, {"time": 1.9167, "color": "ffffff00", "curve": "stepped"}, + {"time": 1.95, "color": "ffffff00", "curve": 0.25, "c3": 0.75}, {"time": 2.2833, "color": "ffffffff"} + ] + }, + "ear-right-dot-19": { + "color": [ + {"color": "ffffff76", "curve": 0.377, "c2": 0.51, "c3": 0.748}, {"time": 0.3, "color": "ffffff00", "curve": "stepped"}, {"time": 0.3333, "color": "ffffff00", "curve": 0.25, "c3": 0.75}, + {"time": 0.6667, "color": "ffffffff", "curve": "stepped"}, {"time": 2.3333, "color": "ffffffff", "curve": 0.248, "c3": 0.628, "c4": 0.51}, {"time": 2.6667, "color": "ffffff76"} + ] + }, + "ear-right-dot-20": { + "color": [ + {"color": "ffffffff", "curve": "stepped"}, {"time": 0.25, "color": "ffffffff", "curve": 0.25, "c3": 0.75}, {"time": 0.8833, "color": "ffffff00", "curve": "stepped"}, + {"time": 0.9167, "color": "ffffff00", "curve": 0.25, "c3": 0.75}, {"time": 1.25, "color": "ffffffff"} + ] + } + }, + "bones": { + "ear-left-bubble-02": { + "rotate": [ + {"angle": 22.65, "curve": 0.381, "c2": 0.59, "c3": 0.73}, {"time": 0.3833, "angle": 35.68, "curve": 0.308, "c3": 0.643, "c4": 0.35}, + {"time": 0.5, "angle": 33.83, "curve": 0.285, "c2": 0.15, "c3": 0.754}, {"time": 1.7167, "angle": -21.58, "curve": 0.282, "c3": 0.624, "c4": 0.39}, + {"time": 2, "angle": -13.53, "curve": 0.315, "c2": 0.27, "c3": 0.653, "c4": 0.62}, {"time": 2.2167, "angle": -2.35, "curve": 0.331, "c2": 0.33, "c3": 0.682, "c4": 0.71}, + {"time": 2.6667, "angle": 22.65} + ], + "translate": [ + {"x": -10.33, "y": -0.67, "curve": 0.364, "c2": 0.64, "c3": 0.701}, {"time": 0.1667, "x": -11, "y": -0.72, "curve": 0.276, "c3": 0.621, "c4": 0.4}, + {"time": 0.5, "x": -8.97, "y": -0.59, "curve": 0.333, "c2": 0.33, "c3": 0.758}, {"time": 1.5, "curve": 0.26, "c3": 0.618, "c4": 0.44}, + {"time": 2, "x": -3.69, "y": -0.24, "curve": 0.343, "c2": 0.37, "c3": 0.715, "c4": 0.83}, {"time": 2.6667, "x": -10.33, "y": -0.67} + ] + }, + "ear-left-bubble-03": { + "translate": [ + {"x": -7.97, "y": -0.52, "curve": 0.356, "c2": 0.41, "c3": 0.711, "c4": 0.82}, {"time": 0.5, "x": -20.65, "y": -1.35, "curve": 0.364, "c2": 0.64, "c3": 0.701}, + {"time": 0.6667, "x": -22.49, "y": -1.47, "curve": 0.25, "c3": 0.75}, {"time": 2, "x": 6.85, "y": 0.45, "curve": 0.25, "c3": 0.625, "c4": 0.5}, {"time": 2.6667, "x": -7.97, "y": -0.52} + ] + }, + "ear-left-bubble-04": { + "rotate": [ + {"angle": 20.89, "curve": 0.276, "c2": 0.11, "c3": 0.632, "c4": 0.53}, {"time": 0.5, "angle": -3.68, "curve": 0.368, "c2": 0.47, "c3": 0.753}, + {"time": 1.25, "angle": -39.49, "curve": 0.247, "c3": 0.632, "c4": 0.53}, {"time": 2, "angle": -3.61, "curve": 0.338, "c2": 0.35, "c3": 0.674, "c4": 0.69}, + {"time": 2.15, "angle": 5.18, "curve": 0.382, "c2": 0.57, "c3": 0.734}, {"time": 2.5833, "angle": 21.99, "curve": 0.314, "c3": 0.649, "c4": 0.35}, {"time": 2.6667, "angle": 20.89} + ], + "translate": [ + {"x": -1.2, "y": -0.08, "curve": 0.299, "c2": 0.22, "c3": 0.654, "c4": 0.62}, {"time": 0.5, "x": -6.5, "y": -0.42, "curve": 0.379, "c2": 0.52, "c3": 0.747}, + {"time": 1.1, "x": -11.49, "y": -0.75, "curve": 0.243, "c3": 0.65, "c4": 0.61}, {"time": 2, "x": -3.14, "y": -0.2, "curve": 0.382, "c2": 0.57, "c3": 0.734}, + {"time": 2.4333, "curve": 0.289, "c3": 0.628, "c4": 0.38}, {"time": 2.6667, "x": -1.2, "y": -0.08} + ] + }, + "ear-right-bubble-02": { + "rotate": [ + {"angle": 1.22, "curve": 0.318, "c2": 0.29, "c3": 0.659, "c4": 0.64}, {"time": 0.3, "angle": 8.04, "curve": 0.375, "c2": 0.5, "c3": 0.75}, + {"time": 0.9667, "angle": 19.86, "curve": 0.25, "c3": 0.625, "c4": 0.5}, {"time": 1.6333, "angle": 8.02, "curve": 0.336, "c2": 0.34, "c3": 0.671, "c4": 0.68}, + {"time": 1.8, "angle": 4.16, "curve": 0.382, "c2": 0.56, "c3": 0.74}, {"time": 2.3, "angle": -3.78, "curve": 0.272, "c3": 0.619, "c4": 0.41}, {"time": 2.6667, "angle": 1.22} + ], + "translate": [ + {"x": 3.57, "y": -0.19, "curve": 0.331, "c2": 0.33, "c3": 0.672, "c4": 0.68}, {"time": 0.3, "x": -4.24, "y": 0.22, "curve": 0.382, "c2": 0.56, "c3": 0.74}, + {"time": 0.8, "x": -13.12, "y": 0.69, "curve": 0.244, "c3": 0.641, "c4": 0.57}, {"time": 1.6333, "x": 4.46, "y": -0.23, "curve": 0.382, "c2": 0.56, "c3": 0.74}, + {"time": 2.1333, "x": 13.34, "y": -0.7, "curve": 0.258, "c3": 0.619, "c4": 0.45}, {"time": 2.6667, "x": 3.57, "y": -0.19} + ] + }, + "ear-right-bubble-03": { + "translate": [ + {"x": -18.02, "y": 0.95, "curve": 0.377, "c2": 0.61, "c3": 0.72}, {"time": 0.3, "x": -24.28, "y": 1.28, "curve": 0.25, "c3": 0.75}, + {"time": 1.6333, "x": 15.53, "y": -0.82, "curve": 0.242, "c3": 0.673, "c4": 0.69}, {"time": 2.6667, "x": -18.02, "y": 0.95} + ] + }, + "ear-right-bubble-04": { + "rotate": [ + {"angle": -8.47, "curve": 0.36, "c2": 0.64, "c3": 0.695}, {"time": 0.1333, "angle": -9.72, "curve": 0.299, "c3": 0.636, "c4": 0.36}, + {"time": 0.3, "angle": -7.78, "curve": 0.298, "c2": 0.2, "c3": 0.756}, {"time": 1.4667, "angle": 21.21, "curve": 0.299, "c3": 0.636, "c4": 0.36}, + {"time": 1.6333, "angle": 19.4, "curve": 0.298, "c2": 0.2, "c3": 0.641, "c4": 0.57}, {"time": 1.9667, "angle": 10.82, "curve": 0.346, "c2": 0.38, "c3": 0.722, "c4": 0.86}, + {"time": 2.6667, "angle": -8.47} + ], + "translate": [ + {"x": -16.1, "y": 0.65, "curve": 0.303, "c2": 0.22, "c3": 0.645, "c4": 0.59}, {"time": 0.3, "x": -8.79, "y": -0.35, "curve": 0.359, "c2": 0.43, "c3": 0.756}, + {"time": 1.1333, "x": 10.15, "y": -2.95, "curve": 0.26, "c3": 0.618, "c4": 0.44}, {"time": 1.6333, "x": 0.57, "y": -1.63, "curve": 0.359, "c2": 0.43, "c3": 0.756}, + {"time": 2.4667, "x": -18.37, "y": 0.97, "curve": 0.294, "c3": 0.631, "c4": 0.37}, {"time": 2.6667, "x": -16.1, "y": 0.65} + ] + }, + "ear-right-bubble-06": { + "rotate": [ + {"angle": 8.02, "curve": 0.336, "c2": 0.34, "c3": 0.671, "c4": 0.68}, {"time": 0.1667, "angle": 4.16, "curve": 0.382, "c2": 0.56, "c3": 0.74}, + {"time": 0.6667, "angle": -3.78, "curve": 0.25, "c3": 0.75}, {"time": 2, "angle": 19.86, "curve": 0.25, "c3": 0.625, "c4": 0.5}, {"time": 2.6667, "angle": 8.02} + ], + "translate": [ + {"x": 4.46, "y": -0.23, "curve": 0.382, "c2": 0.56, "c3": 0.74}, {"time": 0.5, "x": 13.34, "y": -0.7, "curve": 0.25, "c3": 0.75}, + {"time": 1.8333, "x": -13.12, "y": 0.69, "curve": 0.244, "c3": 0.641, "c4": 0.57}, {"time": 2.6667, "x": 4.46, "y": -0.23} + ] + }, + "ear-right-bubble-07": { + "translate": [{"x": 15.53, "y": -0.82, "curve": 0.25, "c3": 0.75}, {"time": 1.3333, "x": -24.28, "y": 1.28, "curve": 0.25, "c3": 0.75}, {"time": 2.6667, "x": 15.53, "y": -0.82}] + }, + "ear-right-bubble-08": { + "rotate": [ + {"angle": 19.4, "curve": 0.298, "c2": 0.2, "c3": 0.641, "c4": 0.57}, {"time": 0.3333, "angle": 10.82, "curve": 0.359, "c2": 0.43, "c3": 0.756}, + {"time": 1.1667, "angle": -9.72, "curve": 0.25, "c3": 0.75}, {"time": 2.5, "angle": 21.21, "curve": 0.299, "c3": 0.636, "c4": 0.36}, {"time": 2.6667, "angle": 19.4} + ], + "translate": [ + {"x": 0.57, "y": -1.63, "curve": 0.359, "c2": 0.43, "c3": 0.756}, {"time": 0.8333, "x": -18.37, "y": 0.97, "curve": 0.25, "c3": 0.75}, + {"time": 2.1667, "x": 10.15, "y": -2.95, "curve": 0.26, "c3": 0.618, "c4": 0.44}, {"time": 2.6667, "x": 0.57, "y": -1.63} + ] + }, + "ear-left-bubble-06": { + "rotate": [ + {"angle": -16.25, "curve": 0.37, "c2": 0.63, "c3": 0.709}, {"time": 0.2167, "angle": -21.58, "curve": 0.282, "c3": 0.624, "c4": 0.39}, + {"time": 0.5, "angle": -13.53, "curve": 0.315, "c2": 0.27, "c3": 0.653, "c4": 0.62}, {"time": 0.7167, "angle": -2.35, "curve": 0.359, "c2": 0.43, "c3": 0.756}, + {"time": 1.55, "angle": 35.68, "curve": 0.243, "c3": 0.69, "c4": 0.75}, {"time": 2.6667, "angle": -16.25} + ], + "translate": [ + {"curve": 0.26, "c3": 0.618, "c4": 0.44}, {"time": 0.5, "x": -3.69, "y": -0.24, "curve": 0.359, "c2": 0.43, "c3": 0.756}, + {"time": 1.3333, "x": -11, "y": -0.72, "curve": 0.25, "c3": 0.75}, {"time": 2.6667} + ] + }, + "ear-left-bubble-07": { + "translate": [ + {"x": -3.01, "y": -0.2, "curve": 0.382, "c2": 0.56, "c3": 0.74}, {"time": 0.5, "x": 6.85, "y": 0.45, "curve": 0.25, "c3": 0.75}, + {"time": 1.8333, "x": -22.49, "y": -1.47, "curve": 0.244, "c3": 0.641, "c4": 0.57}, {"time": 2.6667, "x": -3.01, "y": -0.2} + ] + }, + "ear-left-bubble-08": { + "rotate": [ + {"angle": -32.32, "curve": 0.301, "c2": 0.23, "c3": 0.656, "c4": 0.63}, {"time": 0.5, "angle": -3.61, "curve": 0.338, "c2": 0.35, "c3": 0.674, "c4": 0.69}, + {"time": 0.65, "angle": 5.18, "curve": 0.382, "c2": 0.57, "c3": 0.734}, {"time": 1.0833, "angle": 21.99, "curve": 0.25, "c3": 0.75}, + {"time": 2.4167, "angle": -39.49, "curve": 0.286, "c3": 0.626, "c4": 0.38}, {"time": 2.6667, "angle": -32.32} + ], + "translate": [ + {"x": -8.69, "y": -0.57, "curve": 0.321, "c2": 0.29, "c3": 0.675, "c4": 0.69}, {"time": 0.5, "x": -3.14, "y": -0.2, "curve": 0.382, "c2": 0.57, "c3": 0.734}, + {"time": 0.9333, "curve": 0.25, "c3": 0.75}, {"time": 2.2667, "x": -11.49, "y": -0.75, "curve": 0.269, "c3": 0.618, "c4": 0.42}, {"time": 2.6667, "x": -8.69, "y": -0.57} + ] + }, + "ear-left-dot-06": { + "translate": [ + {"x": 112.03, "y": -59.2, "curve": 0.374, "c2": 0.62, "c3": 0.714}, {"time": 0.5, "x": 125.74, "y": -65, "curve": 0.25, "c3": 0.75}, + {"time": 0.5333, "x": 10.6, "y": -16.3, "curve": 0.243, "c3": 0.682, "c4": 0.72}, {"time": 2.6667, "x": 112.03, "y": -59.2} + ], + "scale": [ + {"x": 1.172, "y": 0.965, "curve": 0.375, "c2": 0.62, "c3": 0.716}, {"time": 0.0333, "x": 1.187, "y": 0.949, "curve": 0.25, "c3": 0.75}, + {"time": 0.2, "x": 1.004, "y": 1.019, "curve": 0.25, "c3": 0.75}, {"time": 0.5, "curve": "stepped"}, {"time": 0.5333, "curve": 0.25, "c3": 0.75}, + {"time": 0.7, "x": 1.159, "y": 0.726, "curve": 0.25, "c3": 0.75}, {"time": 0.8667, "x": 0.879, "y": 1.128, "curve": 0.25, "c3": 0.75}, + {"time": 1.0333, "x": 1.23, "y": 0.878, "curve": 0.25, "c3": 0.75}, {"time": 1.2, "x": 1.057, "y": 1.017, "curve": 0.25, "c3": 0.75}, + {"time": 1.3667, "x": 1.209, "y": 0.882, "curve": 0.25, "c3": 0.75}, {"time": 1.5333, "x": 0.956, "y": 1.174, "curve": 0.25, "c3": 0.75}, + {"time": 1.7, "x": 1.285, "y": 1.001, "curve": 0.25, "c3": 0.75}, {"time": 1.8667, "x": 0.97, "y": 1.08, "curve": 0.25, "c3": 0.75}, + {"time": 2.0333, "x": 0.809, "y": 1.228, "curve": 0.25, "c3": 0.75}, {"time": 2.2, "x": 0.996, "y": 0.995, "curve": 0.25, "c3": 0.75}, + {"time": 2.3667, "x": 1.258, "y": 0.899, "curve": 0.25, "c3": 0.75}, {"time": 2.5333, "x": 1.069, "y": 1.069, "curve": 0.243, "c3": 0.68, "c4": 0.71}, + {"time": 2.6667, "x": 1.172, "y": 0.965} + ] + }, + "ear-left-dot-02": { + "translate": [ + {"x": 165.68, "y": -37.44, "curve": 0.369, "c2": 0.63, "c3": 0.707}, {"time": 0.4, "x": 176.3, "y": -40.93, "curve": 0.25, "c3": 0.75}, + {"time": 0.4333, "x": 50.64, "y": 0.28, "curve": 0.244, "c3": 0.694, "c4": 0.77}, {"time": 2.6667, "x": 165.68, "y": -37.44} + ], + "scale": [ + {"x": 1.12, "y": 0.975, "curve": 0.363, "c2": 0.44, "c3": 0.755}, {"time": 0.1, "x": 1.004, "y": 1.019, "curve": 0.25, "c3": 0.75}, {"time": 0.4, "curve": "stepped"}, + {"time": 0.4333, "curve": 0.25, "c3": 0.75}, {"time": 0.6, "x": 1.159, "y": 0.726, "curve": 0.25, "c3": 0.75}, {"time": 0.7667, "x": 0.879, "y": 1.128, "curve": 0.25, "c3": 0.75}, + {"time": 0.9333, "x": 1.23, "y": 0.878, "curve": 0.25, "c3": 0.75}, {"time": 1.1, "x": 1.057, "y": 1.017, "curve": 0.25, "c3": 0.75}, + {"time": 1.2667, "x": 1.209, "y": 0.882, "curve": 0.25, "c3": 0.75}, {"time": 1.4333, "x": 0.956, "y": 1.174, "curve": 0.25, "c3": 0.75}, + {"time": 1.6, "x": 1.285, "y": 1.001, "curve": 0.25, "c3": 0.75}, {"time": 1.7667, "x": 0.97, "y": 1.08, "curve": 0.25, "c3": 0.75}, + {"time": 1.9333, "x": 0.809, "y": 1.228, "curve": 0.25, "c3": 0.75}, {"time": 2.1, "x": 0.996, "y": 0.995, "curve": 0.25, "c3": 0.75}, + {"time": 2.2667, "x": 1.258, "y": 0.899, "curve": 0.25, "c3": 0.75}, {"time": 2.4333, "x": 1.069, "y": 1.069, "curve": 0.25, "c3": 0.75}, + {"time": 2.6, "x": 1.187, "y": 0.949, "curve": 0.258, "c3": 0.619, "c4": 0.45}, {"time": 2.6667, "x": 1.12, "y": 0.975} + ] + }, + "ear-right-dot-05": { + "translate": [ + {"x": 42.24, "y": -24.98, "curve": 0.339, "c2": 0.35, "c3": 0.758}, {"time": 1.9167, "x": 174.04, "y": -19.08, "curve": 0.25, "c3": 0.75}, + {"time": 1.95, "x": 7.51, "y": -26.54, "curve": 0.273, "c3": 0.619, "c4": 0.41}, {"time": 2.6667, "x": 42.24, "y": -24.98} + ], + "scale": [ + {"x": 1.094, "y": 0.984, "curve": 0.345, "c2": 0.37, "c3": 0.757}, {"time": 0.1167, "x": 1.209, "y": 0.882, "curve": 0.25, "c3": 0.75}, + {"time": 0.2833, "x": 0.956, "y": 1.174, "curve": 0.25, "c3": 0.75}, {"time": 0.45, "x": 1.285, "y": 1.001, "curve": 0.25, "c3": 0.75}, + {"time": 0.6167, "x": 0.97, "y": 1.08, "curve": 0.25, "c3": 0.75}, {"time": 0.7833, "x": 0.809, "y": 1.228, "curve": 0.25, "c3": 0.75}, + {"time": 0.95, "x": 0.996, "y": 0.995, "curve": 0.25, "c3": 0.75}, {"time": 1.1167, "x": 1.258, "y": 0.899, "curve": 0.25, "c3": 0.75}, + {"time": 1.2833, "x": 1.069, "y": 1.069, "curve": 0.25, "c3": 0.75}, {"time": 1.45, "x": 1.187, "y": 0.949, "curve": 0.25, "c3": 0.75}, + {"time": 1.6167, "x": 1.004, "y": 1.019, "curve": 0.25, "c3": 0.75}, {"time": 1.9167, "curve": "stepped"}, {"time": 1.95, "curve": 0.25, "c3": 0.75}, + {"time": 2.1167, "x": 1.159, "y": 0.726, "curve": 0.25, "c3": 0.75}, {"time": 2.2833, "x": 0.879, "y": 1.128, "curve": 0.25, "c3": 0.75}, + {"time": 2.45, "x": 1.23, "y": 0.878, "curve": 0.25, "c3": 0.75}, {"time": 2.6167, "x": 1.057, "y": 1.017, "curve": 0.269, "c3": 0.618, "c4": 0.42}, + {"time": 2.6667, "x": 1.094, "y": 0.984} + ] + }, + "ear-left-dot-04": { + "translate": [ + {"x": 126.24, "y": -42.12, "curve": 0.382, "c2": 0.56, "c3": 0.74}, {"time": 0.9833, "x": 179.1, "y": -55.16, "curve": 0.25, "c3": 0.75}, + {"time": 1.0167, "x": 20.73, "y": -16.1, "curve": 0.244, "c3": 0.641, "c4": 0.57}, {"time": 2.6667, "x": 126.24, "y": -42.12} + ], + "scale": [ + {"x": 0.989, "y": 1.005, "curve": 0.36, "c2": 0.64, "c3": 0.695}, {"time": 0.0167, "x": 0.996, "y": 0.995, "curve": 0.25, "c3": 0.75}, + {"time": 0.1833, "x": 1.258, "y": 0.899, "curve": 0.25, "c3": 0.75}, {"time": 0.35, "x": 1.069, "y": 1.069, "curve": 0.25, "c3": 0.75}, + {"time": 0.5167, "x": 1.187, "y": 0.949, "curve": 0.25, "c3": 0.75}, {"time": 0.6833, "x": 1.004, "y": 1.019, "curve": 0.25, "c3": 0.75}, {"time": 0.9833, "curve": "stepped"}, + {"time": 1.0167, "curve": 0.25, "c3": 0.75}, {"time": 1.1833, "x": 1.159, "y": 0.726, "curve": 0.25, "c3": 0.75}, {"time": 1.35, "x": 0.879, "y": 1.128, "curve": 0.25, "c3": 0.75}, + {"time": 1.5167, "x": 1.23, "y": 0.878, "curve": 0.25, "c3": 0.75}, {"time": 1.6833, "x": 1.057, "y": 1.017, "curve": 0.25, "c3": 0.75}, + {"time": 1.85, "x": 1.209, "y": 0.882, "curve": 0.25, "c3": 0.75}, {"time": 2.0167, "x": 0.956, "y": 1.174, "curve": 0.25, "c3": 0.75}, + {"time": 2.1833, "x": 1.285, "y": 1.001, "curve": 0.25, "c3": 0.75}, {"time": 2.35, "x": 0.97, "y": 1.08, "curve": 0.25, "c3": 0.75}, + {"time": 2.5167, "x": 0.809, "y": 1.228, "curve": 0.245, "c3": 0.711, "c4": 0.83}, {"time": 2.6667, "x": 0.989, "y": 1.005} + ] + }, + "ear-left-dot-05": { + "translate": [ + {"x": 30.36, "y": -32.03, "curve": 0.321, "c2": 0.29, "c3": 0.656, "c4": 0.63}, {"time": 0.2667, "x": 48.79, "y": -35.67, "curve": 0.347, "c2": 0.38, "c3": 0.757}, + {"time": 2.0833, "x": 165.48, "y": -58.72, "curve": 0.25, "c3": 0.75}, {"time": 2.1167, "x": 8.89, "y": -27.79, "curve": 0.283, "c3": 0.624, "c4": 0.39}, + {"time": 2.6667, "x": 30.36, "y": -32.03} + ], + "scale": [ + {"x": 1.188, "y": 0.912, "curve": 0.345, "c2": 0.37, "c3": 0.757}, {"time": 0.1167, "x": 1.057, "y": 1.017, "curve": 0.245, "c3": 0.711, "c4": 0.83}, + {"time": 0.2667, "x": 1.202, "y": 0.888, "curve": 0.36, "c2": 0.64, "c3": 0.695}, {"time": 0.2833, "x": 1.209, "y": 0.882, "curve": 0.25, "c3": 0.75}, + {"time": 0.45, "x": 0.956, "y": 1.174, "curve": 0.25, "c3": 0.75}, {"time": 0.6167, "x": 1.285, "y": 1.001, "curve": 0.25, "c3": 0.75}, + {"time": 0.7833, "x": 0.97, "y": 1.08, "curve": 0.25, "c3": 0.75}, {"time": 0.95, "x": 0.809, "y": 1.228, "curve": 0.25, "c3": 0.75}, + {"time": 1.1167, "x": 0.996, "y": 0.995, "curve": 0.25, "c3": 0.75}, {"time": 1.2833, "x": 1.258, "y": 0.899, "curve": 0.25, "c3": 0.75}, + {"time": 1.45, "x": 1.069, "y": 1.069, "curve": 0.25, "c3": 0.75}, {"time": 1.6167, "x": 1.187, "y": 0.949, "curve": 0.25, "c3": 0.75}, + {"time": 1.7833, "x": 1.004, "y": 1.019, "curve": 0.25, "c3": 0.75}, {"time": 2.0833, "curve": "stepped"}, {"time": 2.1167, "curve": 0.25, "c3": 0.75}, + {"time": 2.2833, "x": 1.159, "y": 0.726, "curve": 0.25, "c3": 0.75}, {"time": 2.45, "x": 0.879, "y": 1.128, "curve": 0.25, "c3": 0.75}, + {"time": 2.6167, "x": 1.23, "y": 0.878, "curve": 0.269, "c3": 0.618, "c4": 0.42}, {"time": 2.6667, "x": 1.188, "y": 0.912} + ] + }, + "ear-right-dot-06": { + "translate": [ + {"x": 151.26, "y": -28.07, "curve": 0.381, "c2": 0.59, "c3": 0.727}, {"time": 0.7167, "x": 185.6, "y": -28.85, "curve": 0.25, "c3": 0.75}, + {"time": 0.75, "x": 20.96, "y": -25.1, "curve": 0.242, "c3": 0.661, "c4": 0.65}, {"time": 2.6667, "x": 151.26, "y": -28.07} + ], + "scale": [ + {"x": 1.163, "y": 0.984, "curve": 0.375, "c2": 0.5, "c3": 0.75}, {"time": 0.0833, "x": 1.069, "y": 1.069, "curve": 0.25, "c3": 0.75}, + {"time": 0.25, "x": 1.187, "y": 0.949, "curve": 0.25, "c3": 0.75}, {"time": 0.4167, "x": 1.004, "y": 1.019, "curve": 0.25, "c3": 0.75}, {"time": 0.7167, "curve": "stepped"}, + {"time": 0.75, "curve": 0.25, "c3": 0.75}, {"time": 0.9167, "x": 1.159, "y": 0.726, "curve": 0.25, "c3": 0.75}, {"time": 1.0833, "x": 0.879, "y": 1.128, "curve": 0.25, "c3": 0.75}, + {"time": 1.25, "x": 1.23, "y": 0.878, "curve": 0.25, "c3": 0.75}, {"time": 1.4167, "x": 1.057, "y": 1.017, "curve": 0.25, "c3": 0.75}, + {"time": 1.5833, "x": 1.209, "y": 0.882, "curve": 0.25, "c3": 0.75}, {"time": 1.75, "x": 0.956, "y": 1.174, "curve": 0.25, "c3": 0.75}, + {"time": 1.9167, "x": 1.285, "y": 1.001, "curve": 0.25, "c3": 0.75}, {"time": 2.0833, "x": 0.97, "y": 1.08, "curve": 0.25, "c3": 0.75}, + {"time": 2.25, "x": 0.809, "y": 1.228, "curve": 0.25, "c3": 0.75}, {"time": 2.4167, "x": 0.996, "y": 0.995, "curve": 0.25, "c3": 0.75}, + {"time": 2.5833, "x": 1.258, "y": 0.899, "curve": 0.25, "c3": 0.625, "c4": 0.5}, {"time": 2.6667, "x": 1.163, "y": 0.984} + ] + }, + "ear-right-dot-09": { + "translate": [ + {"x": 46.79, "y": -39.42, "curve": 0.337, "c2": 0.35, "c3": 0.758}, {"time": 1.9333, "x": 171.94, "y": -57.89, "curve": 0.25, "c3": 0.75}, + {"time": 1.9667, "x": 15.17, "y": -34.76, "curve": 0.274, "c3": 0.62, "c4": 0.41}, {"time": 2.6667, "x": 46.79, "y": -39.42} + ], + "scale": [ + {"x": 1.077, "y": 0.999, "curve": 0.32, "c2": 0.29, "c3": 0.757}, {"time": 0.1333, "x": 1.209, "y": 0.882, "curve": 0.25, "c3": 0.75}, + {"time": 0.3, "x": 0.956, "y": 1.174, "curve": 0.25, "c3": 0.75}, {"time": 0.4667, "x": 1.285, "y": 1.001, "curve": 0.25, "c3": 0.75}, + {"time": 0.6333, "x": 0.97, "y": 1.08, "curve": 0.25, "c3": 0.75}, {"time": 0.8, "x": 0.809, "y": 1.228, "curve": 0.25, "c3": 0.75}, + {"time": 0.9667, "x": 0.996, "y": 0.995, "curve": 0.25, "c3": 0.75}, {"time": 1.1333, "x": 1.258, "y": 0.899, "curve": 0.25, "c3": 0.75}, + {"time": 1.3, "x": 1.069, "y": 1.069, "curve": 0.25, "c3": 0.75}, {"time": 1.4667, "x": 1.187, "y": 0.949, "curve": 0.25, "c3": 0.75}, + {"time": 1.6333, "x": 1.004, "y": 1.019, "curve": 0.25, "c3": 0.75}, {"time": 1.9333, "curve": "stepped"}, {"time": 1.9667, "curve": 0.25, "c3": 0.75}, + {"time": 2.1333, "x": 1.159, "y": 0.726, "curve": 0.25, "c3": 0.75}, {"time": 2.3, "x": 0.879, "y": 1.128, "curve": 0.25, "c3": 0.75}, + {"time": 2.4667, "x": 1.23, "y": 0.878, "curve": 0.25, "c3": 0.75}, {"time": 2.6333, "x": 1.057, "y": 1.017, "curve": 0.284, "c3": 0.625, "c4": 0.38}, + {"time": 2.6667, "x": 1.077, "y": 0.999} + ] + }, + "ear-right-dot-01": { + "translate": [ + {"x": 177.28, "y": -26.63, "curve": 0.361, "c2": 0.64, "c3": 0.697}, {"time": 0.2833, "x": 186.45, "y": -25.68, "curve": 0.25, "c3": 0.75}, + {"time": 0.3167, "x": 1.74, "y": -44.82, "curve": 0.306, "c3": 0.641, "c4": 0.36}, {"time": 0.5667, "x": 8.84, "y": -44.08, "curve": 0.28, "c2": 0.15, "c3": 0.715, "c4": 0.84}, + {"time": 2.6667, "x": 177.28, "y": -26.63} + ], + "scale": [ + {"x": 1.004, "y": 1.018, "curve": 0.273, "c2": 0.1, "c3": 0.753}, {"time": 0.2833, "curve": "stepped"}, {"time": 0.3167, "curve": 0.25, "c3": 0.75}, + {"time": 0.4833, "x": 1.159, "y": 0.726, "curve": 0.25, "c3": 0.625, "c4": 0.5}, {"time": 0.5667, "x": 1.019, "y": 0.927, "curve": 0.375, "c2": 0.5, "c3": 0.75}, + {"time": 0.65, "x": 0.879, "y": 1.128, "curve": 0.25, "c3": 0.75}, {"time": 0.8167, "x": 1.23, "y": 0.878, "curve": 0.25, "c3": 0.75}, + {"time": 0.9833, "x": 1.057, "y": 1.017, "curve": 0.25, "c3": 0.75}, {"time": 1.15, "x": 1.209, "y": 0.882, "curve": 0.25, "c3": 0.75}, + {"time": 1.3167, "x": 0.956, "y": 1.174, "curve": 0.25, "c3": 0.75}, {"time": 1.4833, "x": 1.285, "y": 1.001, "curve": 0.25, "c3": 0.75}, + {"time": 1.65, "x": 0.97, "y": 1.08, "curve": 0.25, "c3": 0.75}, {"time": 1.8167, "x": 0.809, "y": 1.228, "curve": 0.25, "c3": 0.75}, + {"time": 1.9833, "x": 0.996, "y": 0.995, "curve": 0.25, "c3": 0.75}, {"time": 2.15, "x": 1.258, "y": 0.899, "curve": 0.25, "c3": 0.75}, + {"time": 2.3167, "x": 1.069, "y": 1.069, "curve": 0.25, "c3": 0.75}, {"time": 2.4833, "x": 1.187, "y": 0.949, "curve": 0.25, "c3": 0.75}, + {"time": 2.65, "x": 1.004, "y": 1.019, "curve": 0.316, "c3": 0.65, "c4": 0.35}, {"time": 2.6667, "x": 1.004, "y": 1.018} + ] + }, + "ear-left-dot-01": { + "translate": [ + {"x": 149.7, "y": 6.86, "curve": 0.382, "c2": 0.58, "c3": 0.734}, {"time": 0.85, "x": 200.94, "y": 11.88, "curve": 0.25, "c3": 0.75}, + {"time": 0.8833, "x": 11.62, "y": -6.68, "curve": 0.243, "c3": 0.651, "c4": 0.61}, {"time": 2.6667, "x": 149.7, "y": 6.86} + ], + "scale": [ + {"x": 1.194, "y": 0.922, "curve": 0.382, "c2": 0.58, "c3": 0.731}, {"time": 0.05, "x": 1.258, "y": 0.899, "curve": 0.25, "c3": 0.75}, + {"time": 0.2167, "x": 1.069, "y": 1.069, "curve": 0.25, "c3": 0.75}, {"time": 0.3833, "x": 1.187, "y": 0.949, "curve": 0.25, "c3": 0.75}, + {"time": 0.55, "x": 1.004, "y": 1.019, "curve": 0.25, "c3": 0.75}, {"time": 0.85, "curve": "stepped"}, {"time": 0.8833, "curve": 0.25, "c3": 0.75}, + {"time": 1.05, "x": 1.159, "y": 0.726, "curve": 0.25, "c3": 0.75}, {"time": 1.2167, "x": 0.879, "y": 1.128, "curve": 0.25, "c3": 0.75}, + {"time": 1.3833, "x": 1.23, "y": 0.878, "curve": 0.25, "c3": 0.75}, {"time": 1.55, "x": 1.057, "y": 1.017, "curve": 0.25, "c3": 0.75}, + {"time": 1.7167, "x": 1.209, "y": 0.882, "curve": 0.25, "c3": 0.75}, {"time": 1.8833, "x": 0.956, "y": 1.174, "curve": 0.25, "c3": 0.75}, + {"time": 2.05, "x": 1.285, "y": 1.001, "curve": 0.25, "c3": 0.75}, {"time": 2.2167, "x": 0.97, "y": 1.08, "curve": 0.25, "c3": 0.75}, + {"time": 2.3833, "x": 0.809, "y": 1.228, "curve": 0.25, "c3": 0.75}, {"time": 2.55, "x": 0.996, "y": 0.995, "curve": 0.243, "c3": 0.655, "c4": 0.63}, + {"time": 2.6667, "x": 1.194, "y": 0.922} + ] + }, + "ear-right-dot-02": { + "translate": [ + {"x": 158.57, "y": 32.89, "curve": 0.376, "c2": 0.61, "c3": 0.717}, {"time": 0.55, "x": 181.53, "y": 37.26, "curve": 0.25, "c3": 0.75}, + {"time": 0.5833, "x": 17.24, "y": 6.05, "curve": 0.243, "c3": 0.677, "c4": 0.71}, {"time": 2.6667, "x": 158.57, "y": 32.89} + ], + "scale": [ + {"x": 1.128, "y": 1.009, "curve": 0.375, "c2": 0.5, "c3": 0.75}, {"time": 0.0833, "x": 1.187, "y": 0.949, "curve": 0.25, "c3": 0.75}, + {"time": 0.25, "x": 1.004, "y": 1.019, "curve": 0.25, "c3": 0.75}, {"time": 0.55, "curve": "stepped"}, {"time": 0.5833, "curve": 0.25, "c3": 0.75}, + {"time": 0.75, "x": 1.159, "y": 0.726, "curve": 0.25, "c3": 0.75}, {"time": 0.9167, "x": 0.879, "y": 1.128, "curve": 0.25, "c3": 0.75}, + {"time": 1.0833, "x": 1.23, "y": 0.878, "curve": 0.25, "c3": 0.75}, {"time": 1.25, "x": 1.057, "y": 1.017, "curve": 0.25, "c3": 0.75}, + {"time": 1.4167, "x": 1.209, "y": 0.882, "curve": 0.25, "c3": 0.75}, {"time": 1.5833, "x": 0.956, "y": 1.174, "curve": 0.25, "c3": 0.75}, + {"time": 1.75, "x": 1.285, "y": 1.001, "curve": 0.25, "c3": 0.75}, {"time": 1.9167, "x": 0.97, "y": 1.08, "curve": 0.25, "c3": 0.75}, + {"time": 2.0833, "x": 0.809, "y": 1.228, "curve": 0.25, "c3": 0.75}, {"time": 2.25, "x": 0.996, "y": 0.995, "curve": 0.25, "c3": 0.75}, + {"time": 2.4167, "x": 1.258, "y": 0.899, "curve": 0.25, "c3": 0.75}, {"time": 2.5833, "x": 1.069, "y": 1.069, "curve": 0.25, "c3": 0.625, "c4": 0.5}, + {"time": 2.6667, "x": 1.128, "y": 1.009} + ] + }, + "ear-right-dot-03": { + "translate": [ + {"x": 78.35, "y": 13.71, "curve": 0.361, "c2": 0.44, "c3": 0.755}, {"time": 1.6167, "x": 203.5, "y": 31.52, "curve": 0.25, "c3": 0.75}, + {"time": 1.65, "x": 11.08, "y": 4.14, "curve": 0.259, "c3": 0.618, "c4": 0.45}, {"time": 2.6667, "x": 78.35, "y": 13.71} + ], + "scale": [ + {"x": 0.97, "y": 1.167, "curve": 0.289, "c2": 0.17, "c3": 0.755}, {"time": 0.15, "x": 1.285, "y": 1.001, "curve": 0.25, "c3": 0.75}, + {"time": 0.3167, "x": 0.97, "y": 1.08, "curve": 0.25, "c3": 0.75}, {"time": 0.4833, "x": 0.809, "y": 1.228, "curve": 0.25, "c3": 0.75}, + {"time": 0.65, "x": 0.996, "y": 0.995, "curve": 0.25, "c3": 0.75}, {"time": 0.8167, "x": 1.258, "y": 0.899, "curve": 0.25, "c3": 0.75}, + {"time": 0.9833, "x": 1.069, "y": 1.069, "curve": 0.25, "c3": 0.75}, {"time": 1.15, "x": 1.187, "y": 0.949, "curve": 0.25, "c3": 0.75}, + {"time": 1.3167, "x": 1.004, "y": 1.019, "curve": 0.25, "c3": 0.75}, {"time": 1.6167, "curve": "stepped"}, {"time": 1.65, "curve": 0.25, "c3": 0.75}, + {"time": 1.8167, "x": 1.159, "y": 0.726, "curve": 0.25, "c3": 0.75}, {"time": 1.9833, "x": 0.879, "y": 1.128, "curve": 0.25, "c3": 0.75}, + {"time": 2.15, "x": 1.23, "y": 0.878, "curve": 0.25, "c3": 0.75}, {"time": 2.3167, "x": 1.057, "y": 1.017, "curve": 0.25, "c3": 0.75}, + {"time": 2.4833, "x": 1.209, "y": 0.882, "curve": 0.25, "c3": 0.75}, {"time": 2.65, "x": 0.956, "y": 1.174, "curve": 0.305, "c3": 0.64, "c4": 0.36}, + {"time": 2.6667, "x": 0.97, "y": 1.167} + ] + }, + "ear-right-dot-04": { + "translate": [ + {"x": 37.63, "y": -8.81, "curve": 0.31, "c2": 0.25, "c3": 0.757}, {"time": 2.2, "x": 195.03, "y": 35.75, "curve": 0.25, "c3": 0.75}, + {"time": 2.2333, "x": 21.15, "y": -13.48, "curve": 0.291, "c3": 0.629, "c4": 0.37}, {"time": 2.6667, "x": 37.63, "y": -8.81} + ], + "scale": [ + {"x": 1.101, "y": 0.97, "curve": 0.381, "c2": 0.55, "c3": 0.742}, {"time": 0.0667, "x": 1.23, "y": 0.878, "curve": 0.25, "c3": 0.75}, + {"time": 0.2333, "x": 1.057, "y": 1.017, "curve": 0.25, "c3": 0.75}, {"time": 0.4, "x": 1.209, "y": 0.882, "curve": 0.25, "c3": 0.75}, + {"time": 0.5667, "x": 0.956, "y": 1.174, "curve": 0.25, "c3": 0.75}, {"time": 0.7333, "x": 1.285, "y": 1.001, "curve": 0.25, "c3": 0.75}, + {"time": 0.9, "x": 0.97, "y": 1.08, "curve": 0.25, "c3": 0.75}, {"time": 1.0667, "x": 0.809, "y": 1.228, "curve": 0.25, "c3": 0.75}, + {"time": 1.2333, "x": 0.996, "y": 0.995, "curve": 0.25, "c3": 0.75}, {"time": 1.4, "x": 1.258, "y": 0.899, "curve": 0.25, "c3": 0.75}, + {"time": 1.5667, "x": 1.069, "y": 1.069, "curve": 0.25, "c3": 0.75}, {"time": 1.7333, "x": 1.187, "y": 0.949, "curve": 0.25, "c3": 0.75}, + {"time": 1.9, "x": 1.004, "y": 1.019, "curve": 0.25, "c3": 0.75}, {"time": 2.2, "curve": "stepped"}, {"time": 2.2333, "curve": 0.25, "c3": 0.75}, + {"time": 2.4, "x": 1.159, "y": 0.726, "curve": 0.25, "c3": 0.75}, {"time": 2.5667, "x": 0.879, "y": 1.128, "curve": 0.245, "c3": 0.637, "c4": 0.56}, + {"time": 2.6667, "x": 1.101, "y": 0.97} + ] + }, + "ear-left-dot-03": { + "translate": [ + {"x": 34.7, "y": -54.32, "curve": 0.321, "c2": 0.29, "c3": 0.757}, {"time": 2.1, "x": 192.66, "y": -9.15, "curve": 0.25, "c3": 0.75}, + {"time": 2.1333, "x": 10.5, "y": -61.24, "curve": 0.284, "c3": 0.625, "c4": 0.39}, {"time": 2.6667, "x": 34.7, "y": -54.32} + ], + "scale": [ + {"x": 1.208, "y": 0.896, "curve": 0.32, "c2": 0.29, "c3": 0.757}, {"time": 0.1333, "x": 1.057, "y": 1.017, "curve": 0.25, "c3": 0.75}, + {"time": 0.3, "x": 1.209, "y": 0.882, "curve": 0.25, "c3": 0.75}, {"time": 0.4667, "x": 0.956, "y": 1.174, "curve": 0.25, "c3": 0.75}, + {"time": 0.6333, "x": 1.285, "y": 1.001, "curve": 0.25, "c3": 0.75}, {"time": 0.8, "x": 0.97, "y": 1.08, "curve": 0.25, "c3": 0.75}, + {"time": 0.9667, "x": 0.809, "y": 1.228, "curve": 0.25, "c3": 0.75}, {"time": 1.1333, "x": 0.996, "y": 0.995, "curve": 0.25, "c3": 0.75}, + {"time": 1.3, "x": 1.258, "y": 0.899, "curve": 0.25, "c3": 0.75}, {"time": 1.4667, "x": 1.069, "y": 1.069, "curve": 0.25, "c3": 0.75}, + {"time": 1.6333, "x": 1.187, "y": 0.949, "curve": 0.25, "c3": 0.75}, {"time": 1.8, "x": 1.004, "y": 1.019, "curve": 0.25, "c3": 0.75}, {"time": 2.1, "curve": "stepped"}, + {"time": 2.1333, "curve": 0.25, "c3": 0.75}, {"time": 2.3, "x": 1.159, "y": 0.726, "curve": 0.25, "c3": 0.75}, {"time": 2.4667, "x": 0.879, "y": 1.128, "curve": 0.25, "c3": 0.75}, + {"time": 2.6333, "x": 1.23, "y": 0.878, "curve": 0.284, "c3": 0.625, "c4": 0.38}, {"time": 2.6667, "x": 1.208, "y": 0.896} + ] + }, + "ear-right-dot-07": { + "translate": [ + {"x": 185.04, "y": -8.98, "curve": 0.38, "c2": 0.6, "c3": 0.725}, {"time": 0.6667, "x": 218.85, "y": 0.11, "curve": 0.25, "c3": 0.75}, + {"time": 0.7, "x": 38.95, "y": -48.28, "curve": 0.242, "c3": 0.666, "c4": 0.66}, {"time": 2.6667, "x": 185.04, "y": -8.98} + ], + "scale": [ + {"x": 1.094, "y": 1.046, "curve": 0.375, "c2": 0.62, "c3": 0.716}, {"time": 0.0333, "x": 1.069, "y": 1.069, "curve": 0.25, "c3": 0.75}, + {"time": 0.2, "x": 1.187, "y": 0.949, "curve": 0.25, "c3": 0.75}, {"time": 0.3667, "x": 1.004, "y": 1.019, "curve": 0.25, "c3": 0.75}, {"time": 0.6667, "curve": "stepped"}, + {"time": 0.7, "curve": 0.25, "c3": 0.75}, {"time": 0.8667, "x": 1.159, "y": 0.726, "curve": 0.25, "c3": 0.75}, {"time": 1.0333, "x": 0.879, "y": 1.128, "curve": 0.25, "c3": 0.75}, + {"time": 1.2, "x": 1.23, "y": 0.878, "curve": 0.25, "c3": 0.75}, {"time": 1.3667, "x": 1.057, "y": 1.017, "curve": 0.25, "c3": 0.75}, + {"time": 1.5333, "x": 1.209, "y": 0.882, "curve": 0.25, "c3": 0.75}, {"time": 1.7, "x": 0.956, "y": 1.174, "curve": 0.25, "c3": 0.75}, + {"time": 1.8667, "x": 1.285, "y": 1.001, "curve": 0.25, "c3": 0.75}, {"time": 2.0333, "x": 0.97, "y": 1.08, "curve": 0.25, "c3": 0.75}, + {"time": 2.2, "x": 0.809, "y": 1.228, "curve": 0.25, "c3": 0.75}, {"time": 2.3667, "x": 0.996, "y": 0.995, "curve": 0.25, "c3": 0.75}, + {"time": 2.5333, "x": 1.258, "y": 0.899, "curve": 0.243, "c3": 0.68, "c4": 0.71}, {"time": 2.6667, "x": 1.094, "y": 1.046} + ] + }, + "ear-right-dot-08": { + "translate": [{"x": 13.73, "y": 45.86, "curve": 0.25, "c3": 0.75}, {"time": 2.6333, "x": 213.05, "y": 62.73, "curve": 0.25, "c3": 0.75}, {"time": 2.6667, "x": 13.73, "y": 45.86}], + "scale": [ + {"curve": 0.25, "c3": 0.75}, {"time": 0.1667, "x": 1.159, "y": 0.726, "curve": 0.25, "c3": 0.75}, {"time": 0.3333, "x": 0.879, "y": 1.128, "curve": 0.25, "c3": 0.75}, + {"time": 0.5, "x": 1.23, "y": 0.878, "curve": 0.25, "c3": 0.75}, {"time": 0.6667, "x": 1.057, "y": 1.017, "curve": 0.25, "c3": 0.75}, + {"time": 0.8333, "x": 1.209, "y": 0.882, "curve": 0.25, "c3": 0.75}, {"time": 1, "x": 0.956, "y": 1.174, "curve": 0.25, "c3": 0.75}, + {"time": 1.1667, "x": 1.285, "y": 1.001, "curve": 0.25, "c3": 0.75}, {"time": 1.3333, "x": 0.97, "y": 1.08, "curve": 0.25, "c3": 0.75}, + {"time": 1.5, "x": 0.809, "y": 1.228, "curve": 0.25, "c3": 0.75}, {"time": 1.6667, "x": 0.996, "y": 0.995, "curve": 0.25, "c3": 0.75}, + {"time": 1.8333, "x": 1.258, "y": 0.899, "curve": 0.25, "c3": 0.75}, {"time": 2, "x": 1.069, "y": 1.069, "curve": 0.25, "c3": 0.75}, + {"time": 2.1667, "x": 1.187, "y": 0.949, "curve": 0.25, "c3": 0.75}, {"time": 2.3333, "x": 1.004, "y": 1.019, "curve": 0.25, "c3": 0.75}, {"time": 2.6333} + ] + }, + "ear-right-dot-10": { + "translate": [ + {"x": 55.35, "y": -33.35, "curve": 0.328, "c2": 0.31, "c3": 0.758}, {"time": 2.0333, "x": 192.67, "y": -38.93, "curve": 0.25, "c3": 0.75}, + {"time": 2.0667, "x": 29.12, "y": -32.28, "curve": 0.279, "c3": 0.622, "c4": 0.39}, {"time": 2.6667, "x": 55.35, "y": -33.35} + ], + "scale": [ + {"x": 1.121, "y": 0.966, "curve": 0.381, "c2": 0.55, "c3": 0.742}, {"time": 0.0667, "x": 1.057, "y": 1.017, "curve": 0.25, "c3": 0.75}, + {"time": 0.2333, "x": 1.209, "y": 0.882, "curve": 0.25, "c3": 0.75}, {"time": 0.4, "x": 0.956, "y": 1.174, "curve": 0.25, "c3": 0.75}, + {"time": 0.5667, "x": 1.285, "y": 1.001, "curve": 0.25, "c3": 0.75}, {"time": 0.7333, "x": 0.97, "y": 1.08, "curve": 0.25, "c3": 0.75}, + {"time": 0.9, "x": 0.809, "y": 1.228, "curve": 0.25, "c3": 0.75}, {"time": 1.0667, "x": 0.996, "y": 0.995, "curve": 0.25, "c3": 0.75}, + {"time": 1.2333, "x": 1.258, "y": 0.899, "curve": 0.25, "c3": 0.75}, {"time": 1.4, "x": 1.069, "y": 1.069, "curve": 0.25, "c3": 0.75}, + {"time": 1.5667, "x": 1.187, "y": 0.949, "curve": 0.25, "c3": 0.75}, {"time": 1.7333, "x": 1.004, "y": 1.019, "curve": 0.25, "c3": 0.75}, {"time": 2.0333, "curve": "stepped"}, + {"time": 2.0667, "curve": 0.25, "c3": 0.75}, {"time": 2.2333, "x": 1.159, "y": 0.726, "curve": 0.25, "c3": 0.75}, {"time": 2.4, "x": 0.879, "y": 1.128, "curve": 0.25, "c3": 0.75}, + {"time": 2.5667, "x": 1.23, "y": 0.878, "curve": 0.245, "c3": 0.637, "c4": 0.56}, {"time": 2.6667, "x": 1.121, "y": 0.966} + ] + }, + "ear-right-dot-12": { + "translate": [ + {"x": 101.95, "y": 31.58, "curve": 0.374, "c2": 0.49, "c3": 0.751}, {"time": 1.35, "x": 171.9, "y": 8.82, "curve": 0.25, "c3": 0.75}, + {"time": 1.3833, "x": 36.53, "y": 52.86, "curve": 0.251, "c3": 0.624, "c4": 0.49}, {"time": 2.6667, "x": 101.95, "y": 31.58} + ], + "scale": [ + {"x": 1.047, "y": 1.061, "curve": 0.382, "c2": 0.58, "c3": 0.731}, {"time": 0.05, "x": 0.97, "y": 1.08, "curve": 0.25, "c3": 0.75}, + {"time": 0.2167, "x": 0.809, "y": 1.228, "curve": 0.25, "c3": 0.75}, {"time": 0.3833, "x": 0.996, "y": 0.995, "curve": 0.25, "c3": 0.75}, + {"time": 0.55, "x": 1.258, "y": 0.899, "curve": 0.25, "c3": 0.75}, {"time": 0.7167, "x": 1.069, "y": 1.069, "curve": 0.25, "c3": 0.75}, + {"time": 0.8833, "x": 1.187, "y": 0.949, "curve": 0.25, "c3": 0.75}, {"time": 1.05, "x": 1.004, "y": 1.019, "curve": 0.25, "c3": 0.75}, {"time": 1.35, "curve": "stepped"}, + {"time": 1.3833, "curve": 0.25, "c3": 0.75}, {"time": 1.55, "x": 1.159, "y": 0.726, "curve": 0.25, "c3": 0.75}, {"time": 1.7167, "x": 0.879, "y": 1.128, "curve": 0.25, "c3": 0.75}, + {"time": 1.8833, "x": 1.23, "y": 0.878, "curve": 0.25, "c3": 0.75}, {"time": 2.05, "x": 1.057, "y": 1.017, "curve": 0.25, "c3": 0.75}, + {"time": 2.2167, "x": 1.209, "y": 0.882, "curve": 0.25, "c3": 0.75}, {"time": 2.3833, "x": 0.956, "y": 1.174, "curve": 0.25, "c3": 0.75}, + {"time": 2.55, "x": 1.285, "y": 1.001, "curve": 0.243, "c3": 0.655, "c4": 0.63}, {"time": 2.6667, "x": 1.047, "y": 1.061} + ] + }, + "ear-left-dot-08": { + "translate": [ + {"x": 107.51, "y": -38.51, "curve": 0.348, "c2": 0.39, "c3": 0.757}, {"time": 1.8, "x": 183.99, "y": -12.09, "curve": 0.25, "c3": 0.75}, + {"time": 1.8333, "x": 80.26, "y": -47.93, "curve": 0.267, "c3": 0.618, "c4": 0.42}, {"time": 2.6667, "x": 107.51, "y": -38.51} + ], + "scale": [ + {"x": 1.209, "y": 0.882, "curve": 0.25, "c3": 0.75}, {"time": 0.1667, "x": 0.956, "y": 1.174, "curve": 0.25, "c3": 0.75}, + {"time": 0.3333, "x": 1.285, "y": 1.001, "curve": 0.25, "c3": 0.75}, {"time": 0.5, "x": 0.97, "y": 1.08, "curve": 0.25, "c3": 0.75}, + {"time": 0.6667, "x": 0.809, "y": 1.228, "curve": 0.25, "c3": 0.75}, {"time": 0.8333, "x": 0.996, "y": 0.995, "curve": 0.25, "c3": 0.75}, + {"time": 1, "x": 1.258, "y": 0.899, "curve": 0.25, "c3": 0.75}, {"time": 1.1667, "x": 1.069, "y": 1.069, "curve": 0.25, "c3": 0.75}, + {"time": 1.3333, "x": 1.187, "y": 0.949, "curve": 0.25, "c3": 0.75}, {"time": 1.5, "x": 1.004, "y": 1.019, "curve": 0.25, "c3": 0.75}, {"time": 1.8, "curve": "stepped"}, + {"time": 1.8333, "curve": 0.25, "c3": 0.75}, {"time": 2, "x": 1.159, "y": 0.726, "curve": 0.25, "c3": 0.75}, {"time": 2.1667, "x": 0.879, "y": 1.128, "curve": 0.25, "c3": 0.75}, + {"time": 2.3333, "x": 1.23, "y": 0.878, "curve": 0.25, "c3": 0.75}, {"time": 2.5, "x": 1.057, "y": 1.017, "curve": 0.25, "c3": 0.75}, {"time": 2.6667, "x": 1.209, "y": 0.882} + ] + }, + "ear-right-dot-15": { + "translate": [ + {"x": 88.47, "y": -33.22, "curve": 0.378, "c2": 0.52, "c3": 0.748}, {"time": 1.2333, "x": 149.07, "y": -62.9, "curve": 0.25, "c3": 0.75}, + {"time": 1.2667, "x": 16.82, "y": 1.88, "curve": 0.248, "c3": 0.628, "c4": 0.52}, {"time": 2.6667, "x": 88.47, "y": -33.22} + ], + "scale": [ + {"x": 0.911, "y": 1.135, "curve": 0.363, "c2": 0.44, "c3": 0.755}, {"time": 0.1, "x": 0.809, "y": 1.228, "curve": 0.25, "c3": 0.75}, + {"time": 0.2667, "x": 0.996, "y": 0.995, "curve": 0.25, "c3": 0.75}, {"time": 0.4333, "x": 1.258, "y": 0.899, "curve": 0.25, "c3": 0.75}, + {"time": 0.6, "x": 1.069, "y": 1.069, "curve": 0.25, "c3": 0.75}, {"time": 0.7667, "x": 1.187, "y": 0.949, "curve": 0.25, "c3": 0.75}, + {"time": 0.9333, "x": 1.004, "y": 1.019, "curve": 0.25, "c3": 0.75}, {"time": 1.2333, "curve": "stepped"}, {"time": 1.2667, "curve": 0.25, "c3": 0.75}, + {"time": 1.4333, "x": 1.159, "y": 0.726, "curve": 0.25, "c3": 0.75}, {"time": 1.6, "x": 0.879, "y": 1.128, "curve": 0.25, "c3": 0.75}, + {"time": 1.7667, "x": 1.23, "y": 0.878, "curve": 0.25, "c3": 0.75}, {"time": 1.9333, "x": 1.057, "y": 1.017, "curve": 0.25, "c3": 0.75}, + {"time": 2.1, "x": 1.209, "y": 0.882, "curve": 0.25, "c3": 0.75}, {"time": 2.2667, "x": 0.956, "y": 1.174, "curve": 0.25, "c3": 0.75}, + {"time": 2.4333, "x": 1.285, "y": 1.001, "curve": 0.25, "c3": 0.75}, {"time": 2.6, "x": 0.97, "y": 1.08, "curve": 0.258, "c3": 0.619, "c4": 0.45}, + {"time": 2.6667, "x": 0.911, "y": 1.135} + ] + }, + "ear-left-dot-09": { + "translate": [ + {"x": 164.03, "y": -48.48, "curve": 0.345, "c2": 0.66, "c3": 0.679}, {"time": 0.1, "x": 165.25, "y": -48.85, "curve": 0.25, "c3": 0.75}, + {"time": 0.1333, "x": 37.71, "y": -10.29, "curve": 0.27, "c3": 0.619, "c4": 0.41}, {"time": 0.9, "x": 67.19, "y": -19.21, "curve": 0.338, "c2": 0.35, "c3": 0.743, "c4": 0.94}, + {"time": 2.6667, "x": 164.03, "y": -48.48} + ], + "scale": [ + {"x": 1.001, "y": 1.005, "curve": 0.382, "c2": 0.57, "c3": 0.735}, {"time": 0.1, "curve": "stepped"}, {"time": 0.1333, "curve": 0.25, "c3": 0.75}, + {"time": 0.3, "x": 1.159, "y": 0.726, "curve": 0.25, "c3": 0.75}, {"time": 0.4667, "x": 0.879, "y": 1.128, "curve": 0.25, "c3": 0.75}, + {"time": 0.6333, "x": 1.23, "y": 0.878, "curve": 0.25, "c3": 0.75}, {"time": 0.8, "x": 1.057, "y": 1.017, "curve": 0.245, "c3": 0.637, "c4": 0.56}, + {"time": 0.9, "x": 1.153, "y": 0.932, "curve": 0.381, "c2": 0.55, "c3": 0.742}, {"time": 0.9667, "x": 1.209, "y": 0.882, "curve": 0.25, "c3": 0.75}, + {"time": 1.1333, "x": 0.956, "y": 1.174, "curve": 0.25, "c3": 0.75}, {"time": 1.3, "x": 1.285, "y": 1.001, "curve": 0.25, "c3": 0.75}, + {"time": 1.4667, "x": 0.97, "y": 1.08, "curve": 0.25, "c3": 0.75}, {"time": 1.6333, "x": 0.809, "y": 1.228, "curve": 0.25, "c3": 0.75}, + {"time": 1.8, "x": 0.996, "y": 0.995, "curve": 0.25, "c3": 0.75}, {"time": 1.9667, "x": 1.258, "y": 0.899, "curve": 0.25, "c3": 0.75}, + {"time": 2.1333, "x": 1.069, "y": 1.069, "curve": 0.25, "c3": 0.75}, {"time": 2.3, "x": 1.187, "y": 0.949, "curve": 0.25, "c3": 0.75}, + {"time": 2.4667, "x": 1.004, "y": 1.019, "curve": 0.243, "c3": 0.649, "c4": 0.6}, {"time": 2.6667, "x": 1.001, "y": 1.005} + ] + }, + "ear-left-dot-10": { + "translate": [ + {"x": 60.95, "y": -9.83, "curve": 0.318, "c2": 0.28, "c3": 0.757}, {"time": 2.1333, "x": 188.46, "y": -29.29, "curve": 0.25, "c3": 0.75}, + {"time": 2.1667, "x": 43.72, "y": -7.2, "curve": 0.286, "c3": 0.626, "c4": 0.38}, {"time": 2.6667, "x": 60.95, "y": -9.83} + ], + "scale": [ + {"x": 1.23, "y": 0.878, "curve": 0.25, "c3": 0.75}, {"time": 0.1667, "x": 1.057, "y": 1.017, "curve": 0.25, "c3": 0.75}, + {"time": 0.3333, "x": 1.209, "y": 0.882, "curve": 0.25, "c3": 0.75}, {"time": 0.5, "x": 0.956, "y": 1.174, "curve": 0.25, "c3": 0.75}, + {"time": 0.6667, "x": 1.285, "y": 1.001, "curve": 0.25, "c3": 0.75}, {"time": 0.8333, "x": 0.97, "y": 1.08, "curve": 0.25, "c3": 0.75}, + {"time": 1, "x": 0.809, "y": 1.228, "curve": 0.25, "c3": 0.75}, {"time": 1.1667, "x": 0.996, "y": 0.995, "curve": 0.25, "c3": 0.75}, + {"time": 1.3333, "x": 1.258, "y": 0.899, "curve": 0.25, "c3": 0.75}, {"time": 1.5, "x": 1.069, "y": 1.069, "curve": 0.25, "c3": 0.75}, + {"time": 1.6667, "x": 1.187, "y": 0.949, "curve": 0.25, "c3": 0.75}, {"time": 1.8333, "x": 1.004, "y": 1.019, "curve": 0.25, "c3": 0.75}, {"time": 2.1333, "curve": "stepped"}, + {"time": 2.1667, "curve": 0.25, "c3": 0.75}, {"time": 2.3333, "x": 1.159, "y": 0.726, "curve": 0.25, "c3": 0.75}, {"time": 2.5, "x": 0.879, "y": 1.128, "curve": 0.25, "c3": 0.75}, + {"time": 2.6667, "x": 1.23, "y": 0.878} + ] + }, + "ear-left-dot-11": { + "translate": [ + {"x": 35.15, "y": -8.78, "curve": 0.287, "c2": 0.16, "c3": 0.755}, {"time": 2.3833, "x": 162.5, "y": -30.16, "curve": 0.25, "c3": 0.75}, + {"time": 2.4167, "x": 30.05, "y": -7.92, "curve": 0.306, "c3": 0.641, "c4": 0.36}, {"time": 2.6667, "x": 35.15, "y": -8.78} + ], + "scale": [ + {"x": 1.019, "y": 0.927, "curve": 0.375, "c2": 0.5, "c3": 0.75}, {"time": 0.0833, "x": 0.879, "y": 1.128, "curve": 0.25, "c3": 0.75}, + {"time": 0.25, "x": 1.23, "y": 0.878, "curve": 0.25, "c3": 0.75}, {"time": 0.4167, "x": 1.057, "y": 1.017, "curve": 0.25, "c3": 0.75}, + {"time": 0.5833, "x": 1.209, "y": 0.882, "curve": 0.25, "c3": 0.75}, {"time": 0.75, "x": 0.956, "y": 1.174, "curve": 0.25, "c3": 0.75}, + {"time": 0.9167, "x": 1.285, "y": 1.001, "curve": 0.25, "c3": 0.75}, {"time": 1.0833, "x": 0.97, "y": 1.08, "curve": 0.25, "c3": 0.75}, + {"time": 1.25, "x": 0.809, "y": 1.228, "curve": 0.25, "c3": 0.75}, {"time": 1.4167, "x": 0.996, "y": 0.995, "curve": 0.25, "c3": 0.75}, + {"time": 1.5833, "x": 1.258, "y": 0.899, "curve": 0.25, "c3": 0.75}, {"time": 1.75, "x": 1.069, "y": 1.069, "curve": 0.25, "c3": 0.75}, + {"time": 1.9167, "x": 1.187, "y": 0.949, "curve": 0.25, "c3": 0.75}, {"time": 2.0833, "x": 1.004, "y": 1.019, "curve": 0.25, "c3": 0.75}, {"time": 2.3833, "curve": "stepped"}, + {"time": 2.4167, "curve": 0.25, "c3": 0.75}, {"time": 2.5833, "x": 1.159, "y": 0.726, "curve": 0.25, "c3": 0.625, "c4": 0.5}, {"time": 2.6667, "x": 1.019, "y": 0.927} + ] + }, + "ear-left-dot-12": { + "translate": [ + {"x": 148.7, "y": -51.89, "curve": 0.365, "c2": 0.64, "c3": 0.701}, {"time": 0.3333, "x": 157.59, "y": -54.88, "curve": 0.25, "c3": 0.75}, + {"time": 0.3667, "x": 18.7, "y": -8.15, "curve": 0.244, "c3": 0.702, "c4": 0.8}, {"time": 2.6667, "x": 148.7, "y": -51.89} + ], + "scale": [ + {"x": 1.028, "y": 1.01, "curve": 0.375, "c2": 0.62, "c3": 0.716}, {"time": 0.0333, "x": 1.004, "y": 1.019, "curve": 0.25, "c3": 0.75}, {"time": 0.3333, "curve": "stepped"}, + {"time": 0.3667, "curve": 0.25, "c3": 0.75}, {"time": 0.5333, "x": 1.159, "y": 0.726, "curve": 0.25, "c3": 0.75}, {"time": 0.7, "x": 0.879, "y": 1.128, "curve": 0.25, "c3": 0.75}, + {"time": 0.8667, "x": 1.23, "y": 0.878, "curve": 0.25, "c3": 0.75}, {"time": 1.0333, "x": 1.057, "y": 1.017, "curve": 0.25, "c3": 0.75}, + {"time": 1.2, "x": 1.209, "y": 0.882, "curve": 0.25, "c3": 0.75}, {"time": 1.3667, "x": 0.956, "y": 1.174, "curve": 0.25, "c3": 0.75}, + {"time": 1.5333, "x": 1.285, "y": 1.001, "curve": 0.25, "c3": 0.75}, {"time": 1.7, "x": 0.97, "y": 1.08, "curve": 0.25, "c3": 0.75}, + {"time": 1.8667, "x": 0.809, "y": 1.228, "curve": 0.25, "c3": 0.75}, {"time": 2.0333, "x": 0.996, "y": 0.995, "curve": 0.25, "c3": 0.75}, + {"time": 2.2, "x": 1.258, "y": 0.899, "curve": 0.25, "c3": 0.75}, {"time": 2.3667, "x": 1.069, "y": 1.069, "curve": 0.25, "c3": 0.75}, + {"time": 2.5333, "x": 1.187, "y": 0.949, "curve": 0.243, "c3": 0.68, "c4": 0.71}, {"time": 2.6667, "x": 1.028, "y": 1.01} + ] + }, + "ear-right-dot-19": { + "translate": [ + {"x": 157.18, "y": -73.74, "curve": 0.362, "c2": 0.64, "c3": 0.698}, {"time": 0.3, "x": 164.98, "y": -77.61, "curve": 0.25, "c3": 0.75}, + {"time": 0.3333, "x": 20.12, "y": -5.67, "curve": 0.245, "c3": 0.706, "c4": 0.81}, {"time": 2.6667, "x": 157.18, "y": -73.74} + ], + "scale": [ + {"x": 1.004, "y": 1.019, "curve": 0.25, "c3": 0.75}, {"time": 0.3, "curve": "stepped"}, {"time": 0.3333, "curve": 0.25, "c3": 0.75}, + {"time": 0.5, "x": 1.159, "y": 0.726, "curve": 0.25, "c3": 0.75}, {"time": 0.6667, "x": 0.879, "y": 1.128, "curve": 0.25, "c3": 0.75}, + {"time": 0.8333, "x": 1.23, "y": 0.878, "curve": 0.25, "c3": 0.75}, {"time": 1, "x": 1.057, "y": 1.017, "curve": 0.25, "c3": 0.75}, + {"time": 1.1667, "x": 1.209, "y": 0.882, "curve": 0.25, "c3": 0.75}, {"time": 1.3333, "x": 0.956, "y": 1.174, "curve": 0.25, "c3": 0.75}, + {"time": 1.5, "x": 1.285, "y": 1.001, "curve": 0.25, "c3": 0.75}, {"time": 1.6667, "x": 0.97, "y": 1.08, "curve": 0.25, "c3": 0.75}, + {"time": 1.8333, "x": 0.809, "y": 1.228, "curve": 0.25, "c3": 0.75}, {"time": 2, "x": 0.996, "y": 0.995, "curve": 0.25, "c3": 0.75}, + {"time": 2.1667, "x": 1.258, "y": 0.899, "curve": 0.25, "c3": 0.75}, {"time": 2.3333, "x": 1.069, "y": 1.069, "curve": 0.25, "c3": 0.75}, + {"time": 2.5, "x": 1.187, "y": 0.949, "curve": 0.25, "c3": 0.75}, {"time": 2.6667, "x": 1.004, "y": 1.019} + ] + }, + "ear-right-dot-11": { + "translate": [ + {"x": 15.23, "y": 41.39, "curve": 0.296, "c2": 0.19, "c3": 0.756}, {"time": 2.3167, "x": 132.18, "y": 11.57, "curve": 0.25, "c3": 0.75}, + {"time": 2.35, "x": 7.9, "y": 43.26, "curve": 0.3, "c3": 0.636, "c4": 0.36}, {"time": 2.6667, "x": 15.23, "y": 41.39} + ], + "scale": [ + {"x": 0.891, "y": 1.111, "curve": 0.36, "c2": 0.64, "c3": 0.695}, {"time": 0.0167, "x": 0.879, "y": 1.128, "curve": 0.25, "c3": 0.75}, + {"time": 0.1833, "x": 1.23, "y": 0.878, "curve": 0.25, "c3": 0.75}, {"time": 0.35, "x": 1.057, "y": 1.017, "curve": 0.25, "c3": 0.75}, + {"time": 0.5167, "x": 1.209, "y": 0.882, "curve": 0.25, "c3": 0.75}, {"time": 0.6833, "x": 0.956, "y": 1.174, "curve": 0.25, "c3": 0.75}, + {"time": 0.85, "x": 1.285, "y": 1.001, "curve": 0.25, "c3": 0.75}, {"time": 1.0167, "x": 0.97, "y": 1.08, "curve": 0.25, "c3": 0.75}, + {"time": 1.1833, "x": 0.809, "y": 1.228, "curve": 0.25, "c3": 0.75}, {"time": 1.35, "x": 0.996, "y": 0.995, "curve": 0.25, "c3": 0.75}, + {"time": 1.5167, "x": 1.258, "y": 0.899, "curve": 0.25, "c3": 0.75}, {"time": 1.6833, "x": 1.069, "y": 1.069, "curve": 0.25, "c3": 0.75}, + {"time": 1.85, "x": 1.187, "y": 0.949, "curve": 0.25, "c3": 0.75}, {"time": 2.0167, "x": 1.004, "y": 1.019, "curve": 0.25, "c3": 0.75}, {"time": 2.3167, "curve": "stepped"}, + {"time": 2.35, "curve": 0.25, "c3": 0.75}, {"time": 2.5167, "x": 1.159, "y": 0.726, "curve": 0.245, "c3": 0.711, "c4": 0.83}, {"time": 2.6667, "x": 0.891, "y": 1.111} + ] + }, + "ear-right-dot-14": { + "translate": [ + {"x": 124.12, "y": -9.33, "curve": 0.382, "c2": 0.58, "c3": 0.733}, {"time": 0.8333, "x": 158.19, "y": -13.58, "curve": 0.25, "c3": 0.75}, + {"time": 0.8667, "x": 28.51, "y": 2.6, "curve": 0.243, "c3": 0.652, "c4": 0.61}, {"time": 2.6667, "x": 124.12, "y": -9.33} + ], + "scale": [ + {"x": 1.224, "y": 0.911, "curve": 0.375, "c2": 0.62, "c3": 0.716}, {"time": 0.0333, "x": 1.258, "y": 0.899, "curve": 0.25, "c3": 0.75}, + {"time": 0.2, "x": 1.069, "y": 1.069, "curve": 0.25, "c3": 0.75}, {"time": 0.3667, "x": 1.187, "y": 0.949, "curve": 0.25, "c3": 0.75}, + {"time": 0.5333, "x": 1.004, "y": 1.019, "curve": 0.25, "c3": 0.75}, {"time": 0.8333, "curve": "stepped"}, {"time": 0.8667, "curve": 0.25, "c3": 0.75}, + {"time": 1.0333, "x": 1.159, "y": 0.726, "curve": 0.25, "c3": 0.75}, {"time": 1.2, "x": 0.879, "y": 1.128, "curve": 0.25, "c3": 0.75}, + {"time": 1.3667, "x": 1.23, "y": 0.878, "curve": 0.25, "c3": 0.75}, {"time": 1.5333, "x": 1.057, "y": 1.017, "curve": 0.25, "c3": 0.75}, + {"time": 1.7, "x": 1.209, "y": 0.882, "curve": 0.25, "c3": 0.75}, {"time": 1.8667, "x": 0.956, "y": 1.174, "curve": 0.25, "c3": 0.75}, + {"time": 2.0333, "x": 1.285, "y": 1.001, "curve": 0.25, "c3": 0.75}, {"time": 2.2, "x": 0.97, "y": 1.08, "curve": 0.25, "c3": 0.75}, + {"time": 2.3667, "x": 0.809, "y": 1.228, "curve": 0.25, "c3": 0.75}, {"time": 2.5333, "x": 0.996, "y": 0.995, "curve": 0.243, "c3": 0.68, "c4": 0.71}, + {"time": 2.6667, "x": 1.224, "y": 0.911} + ] + }, + "ear-right-dot-16": { + "translate": [ + {"x": 133.42, "y": 14.76, "curve": 0.382, "c2": 0.55, "c3": 0.742}, {"time": 1.0333, "x": 178.04, "y": 22.35, "curve": 0.25, "c3": 0.75}, + {"time": 1.0667, "x": 53.34, "y": 1.15, "curve": 0.245, "c3": 0.638, "c4": 0.56}, {"time": 2.6667, "x": 133.42, "y": 14.76} + ], + "scale": [ + {"x": 0.928, "y": 1.081, "curve": 0.381, "c2": 0.55, "c3": 0.742}, {"time": 0.0667, "x": 0.996, "y": 0.995, "curve": 0.25, "c3": 0.75}, + {"time": 0.2333, "x": 1.258, "y": 0.899, "curve": 0.25, "c3": 0.75}, {"time": 0.4, "x": 1.069, "y": 1.069, "curve": 0.25, "c3": 0.75}, + {"time": 0.5667, "x": 1.187, "y": 0.949, "curve": 0.25, "c3": 0.75}, {"time": 0.7333, "x": 1.004, "y": 1.019, "curve": 0.25, "c3": 0.75}, {"time": 1.0333, "curve": "stepped"}, + {"time": 1.0667, "curve": 0.25, "c3": 0.75}, {"time": 1.2333, "x": 1.159, "y": 0.726, "curve": 0.25, "c3": 0.75}, {"time": 1.4, "x": 0.879, "y": 1.128, "curve": 0.25, "c3": 0.75}, + {"time": 1.5667, "x": 1.23, "y": 0.878, "curve": 0.25, "c3": 0.75}, {"time": 1.7333, "x": 1.057, "y": 1.017, "curve": 0.25, "c3": 0.75}, + {"time": 1.9, "x": 1.209, "y": 0.882, "curve": 0.25, "c3": 0.75}, {"time": 2.0667, "x": 0.956, "y": 1.174, "curve": 0.25, "c3": 0.75}, + {"time": 2.2333, "x": 1.285, "y": 1.001, "curve": 0.25, "c3": 0.75}, {"time": 2.4, "x": 0.97, "y": 1.08, "curve": 0.25, "c3": 0.75}, + {"time": 2.5667, "x": 0.809, "y": 1.228, "curve": 0.245, "c3": 0.637, "c4": 0.56}, {"time": 2.6667, "x": 0.928, "y": 1.081} + ] + }, + "ear-right-dot-17": { + "translate": [ + {"x": 158.62, "y": 2.82, "curve": 0.348, "c2": 0.66, "c3": 0.682}, {"time": 0.1333, "x": 160.87, "y": 2.94, "curve": 0.25, "c3": 0.75}, + {"time": 0.1667, "x": 30.47, "y": -4.19, "curve": 0.247, "c3": 0.729, "c4": 0.91}, {"time": 2.6667, "x": 158.62, "y": 2.82} + ], + "scale": [ + {"x": 1.002, "y": 1.008, "curve": 0.379, "c2": 0.53, "c3": 0.746}, {"time": 0.1333, "curve": "stepped"}, {"time": 0.1667, "curve": 0.25, "c3": 0.75}, + {"time": 0.3333, "x": 1.159, "y": 0.726, "curve": 0.25, "c3": 0.75}, {"time": 0.5, "x": 0.879, "y": 1.128, "curve": 0.25, "c3": 0.75}, + {"time": 0.6667, "x": 1.23, "y": 0.878, "curve": 0.25, "c3": 0.75}, {"time": 0.8333, "x": 1.057, "y": 1.017, "curve": 0.25, "c3": 0.75}, + {"time": 1, "x": 1.209, "y": 0.882, "curve": 0.25, "c3": 0.75}, {"time": 1.1667, "x": 0.956, "y": 1.174, "curve": 0.25, "c3": 0.75}, + {"time": 1.3333, "x": 1.285, "y": 1.001, "curve": 0.25, "c3": 0.75}, {"time": 1.5, "x": 0.97, "y": 1.08, "curve": 0.25, "c3": 0.75}, + {"time": 1.6667, "x": 0.809, "y": 1.228, "curve": 0.25, "c3": 0.75}, {"time": 1.8333, "x": 0.996, "y": 0.995, "curve": 0.25, "c3": 0.75}, + {"time": 2, "x": 1.258, "y": 0.899, "curve": 0.25, "c3": 0.75}, {"time": 2.1667, "x": 1.069, "y": 1.069, "curve": 0.25, "c3": 0.75}, + {"time": 2.3333, "x": 1.187, "y": 0.949, "curve": 0.25, "c3": 0.75}, {"time": 2.5, "x": 1.004, "y": 1.019, "curve": 0.247, "c3": 0.631, "c4": 0.53}, + {"time": 2.6667, "x": 1.002, "y": 1.008} + ] + }, + "ear-right-dot-20": { + "translate": [ + {"x": 137.38, "y": 4.33, "curve": 0.382, "c2": 0.57, "c3": 0.736}, {"time": 0.8833, "x": 172.31, "y": 12.14, "curve": 0.25, "c3": 0.75}, + {"time": 0.9167, "x": 50.37, "y": -15.12, "curve": 0.243, "c3": 0.648, "c4": 0.6}, {"time": 2.6667, "x": 137.38, "y": 4.33} + ], + "scale": [ + {"x": 1.127, "y": 0.947, "curve": 0.375, "c2": 0.5, "c3": 0.75}, {"time": 0.0833, "x": 1.258, "y": 0.899, "curve": 0.25, "c3": 0.75}, + {"time": 0.25, "x": 1.069, "y": 1.069, "curve": 0.25, "c3": 0.75}, {"time": 0.4167, "x": 1.187, "y": 0.949, "curve": 0.25, "c3": 0.75}, + {"time": 0.5833, "x": 1.004, "y": 1.019, "curve": 0.25, "c3": 0.75}, {"time": 0.8833, "curve": "stepped"}, {"time": 0.9167, "curve": 0.25, "c3": 0.75}, + {"time": 1.0833, "x": 1.159, "y": 0.726, "curve": 0.25, "c3": 0.75}, {"time": 1.25, "x": 0.879, "y": 1.128, "curve": 0.25, "c3": 0.75}, + {"time": 1.4167, "x": 1.23, "y": 0.878, "curve": 0.25, "c3": 0.75}, {"time": 1.5833, "x": 1.057, "y": 1.017, "curve": 0.25, "c3": 0.75}, + {"time": 1.75, "x": 1.209, "y": 0.882, "curve": 0.25, "c3": 0.75}, {"time": 1.9167, "x": 0.956, "y": 1.174, "curve": 0.25, "c3": 0.75}, + {"time": 2.0833, "x": 1.285, "y": 1.001, "curve": 0.25, "c3": 0.75}, {"time": 2.25, "x": 0.97, "y": 1.08, "curve": 0.25, "c3": 0.75}, + {"time": 2.4167, "x": 0.809, "y": 1.228, "curve": 0.25, "c3": 0.75}, {"time": 2.5833, "x": 0.996, "y": 0.995, "curve": 0.25, "c3": 0.625, "c4": 0.5}, + {"time": 2.6667, "x": 1.127, "y": 0.947} + ] + }, + "ear-left-dot-07": { + "translate": [{"x": 14.23, "y": 15.75, "curve": 0.25, "c3": 0.75}, {"time": 2.6333, "x": 137.48, "y": 20.63, "curve": 0.25, "c3": 0.75}, {"time": 2.6667, "x": 14.23, "y": 15.75}], + "scale": [ + {"curve": 0.25, "c3": 0.75}, {"time": 0.1667, "x": 1.159, "y": 0.726, "curve": 0.25, "c3": 0.75}, {"time": 0.3333, "x": 0.879, "y": 1.128, "curve": 0.25, "c3": 0.75}, + {"time": 0.5, "x": 1.23, "y": 0.878, "curve": 0.25, "c3": 0.75}, {"time": 0.6667, "x": 1.057, "y": 1.017, "curve": 0.25, "c3": 0.75}, + {"time": 0.8333, "x": 1.209, "y": 0.882, "curve": 0.25, "c3": 0.75}, {"time": 1, "x": 0.956, "y": 1.174, "curve": 0.25, "c3": 0.75}, + {"time": 1.1667, "x": 1.285, "y": 1.001, "curve": 0.25, "c3": 0.75}, {"time": 1.3333, "x": 0.97, "y": 1.08, "curve": 0.25, "c3": 0.75}, + {"time": 1.5, "x": 0.809, "y": 1.228, "curve": 0.25, "c3": 0.75}, {"time": 1.6667, "x": 0.996, "y": 0.995, "curve": 0.25, "c3": 0.75}, + {"time": 1.8333, "x": 1.258, "y": 0.899, "curve": 0.25, "c3": 0.75}, {"time": 2, "x": 1.069, "y": 1.069, "curve": 0.25, "c3": 0.75}, + {"time": 2.1667, "x": 1.187, "y": 0.949, "curve": 0.25, "c3": 0.75}, {"time": 2.3333, "x": 1.004, "y": 1.019, "curve": 0.25, "c3": 0.75}, {"time": 2.6333} + ] + }, + "ear-right-dot-13": { + "translate": [{"x": 20.82, "y": -6.12, "curve": 0.25, "c3": 0.75}, {"time": 2.6333, "x": 135.26, "y": 39.62, "curve": 0.25, "c3": 0.75}, {"time": 2.6667, "x": 20.82, "y": -6.12}], + "scale": [ + {"curve": 0.25, "c3": 0.75}, {"time": 0.1667, "x": 1.159, "y": 0.726, "curve": 0.25, "c3": 0.75}, {"time": 0.3333, "x": 0.879, "y": 1.128, "curve": 0.25, "c3": 0.75}, + {"time": 0.5, "x": 1.23, "y": 0.878, "curve": 0.25, "c3": 0.75}, {"time": 0.6667, "x": 1.057, "y": 1.017, "curve": 0.25, "c3": 0.75}, + {"time": 0.8333, "x": 1.209, "y": 0.882, "curve": 0.25, "c3": 0.75}, {"time": 1, "x": 0.956, "y": 1.174, "curve": 0.25, "c3": 0.75}, + {"time": 1.1667, "x": 1.285, "y": 1.001, "curve": 0.25, "c3": 0.75}, {"time": 1.3333, "x": 0.97, "y": 1.08, "curve": 0.25, "c3": 0.75}, + {"time": 1.5, "x": 0.809, "y": 1.228, "curve": 0.25, "c3": 0.75}, {"time": 1.6667, "x": 0.996, "y": 0.995, "curve": 0.25, "c3": 0.75}, + {"time": 1.8333, "x": 1.258, "y": 0.899, "curve": 0.25, "c3": 0.75}, {"time": 2, "x": 1.069, "y": 1.069, "curve": 0.25, "c3": 0.75}, + {"time": 2.1667, "x": 1.187, "y": 0.949, "curve": 0.25, "c3": 0.75}, {"time": 2.3333, "x": 1.004, "y": 1.019, "curve": 0.25, "c3": 0.75}, {"time": 2.6333} + ] + }, + "ear-right-dot-18": { + "translate": [ + {"x": 49.78, "y": 13.74, "curve": 0.339, "c2": 0.35, "c3": 0.758}, {"time": 1.9167, "x": 147.63, "y": 20.29, "curve": 0.25, "c3": 0.75}, + {"time": 1.95, "x": 24, "y": 12.01, "curve": 0.273, "c3": 0.619, "c4": 0.41}, {"time": 2.6667, "x": 49.78, "y": 13.74} + ], + "scale": [ + {"x": 1.094, "y": 0.984, "curve": 0.345, "c2": 0.37, "c3": 0.757}, {"time": 0.1167, "x": 1.209, "y": 0.882, "curve": 0.25, "c3": 0.75}, + {"time": 0.2833, "x": 0.956, "y": 1.174, "curve": 0.25, "c3": 0.75}, {"time": 0.45, "x": 1.285, "y": 1.001, "curve": 0.25, "c3": 0.75}, + {"time": 0.6167, "x": 0.97, "y": 1.08, "curve": 0.25, "c3": 0.75}, {"time": 0.7833, "x": 0.809, "y": 1.228, "curve": 0.25, "c3": 0.75}, + {"time": 0.95, "x": 0.996, "y": 0.995, "curve": 0.25, "c3": 0.75}, {"time": 1.1167, "x": 1.258, "y": 0.899, "curve": 0.25, "c3": 0.75}, + {"time": 1.2833, "x": 1.069, "y": 1.069, "curve": 0.25, "c3": 0.75}, {"time": 1.45, "x": 1.187, "y": 0.949, "curve": 0.25, "c3": 0.75}, + {"time": 1.6167, "x": 1.004, "y": 1.019, "curve": 0.25, "c3": 0.75}, {"time": 1.9167, "curve": "stepped"}, {"time": 1.95, "curve": 0.25, "c3": 0.75}, + {"time": 2.1167, "x": 1.159, "y": 0.726, "curve": 0.25, "c3": 0.75}, {"time": 2.2833, "x": 0.879, "y": 1.128, "curve": 0.25, "c3": 0.75}, + {"time": 2.45, "x": 1.23, "y": 0.878, "curve": 0.25, "c3": 0.75}, {"time": 2.6167, "x": 1.057, "y": 1.017, "curve": 0.269, "c3": 0.618, "c4": 0.42}, + {"time": 2.6667, "x": 1.094, "y": 0.984} + ] + } + } + }, + "2557998295": { + "slots": { + "eyes": {"attachment": [{"time": 0.05, "name": "eyes-angry"}, {"time": 0.8833, "name": "eyes"}]}, + "mouth": {"attachment": [{"time": 0.05, "name": "mouth-bite"}, {"time": 0.4667, "name": "mouth-open"}, {"time": 0.75, "name": "mouth-bite"}, {"time": 0.8833, "name": "mouth"}]} + }, + "bones": { + "@pivot-back": { + "rotate": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "angle": 4, "curve": 0, "c2": 0.6, "c3": 0.237}, {"time": 0.3333, "angle": -8.88, "curve": 0.621, "c3": 0, "c4": 1.6}, + {"time": 0.6667, "angle": 8.17, "curve": 0.701, "c4": 0.5}, {"time": 0.8833, "angle": 5, "curve": 0.461, "c3": 0.543}, {"time": 1} + ], + "translate": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": 33.65, "y": -5, "curve": 0, "c2": 0.6, "c3": 0.237}, + {"time": 0.3333, "x": -62.54, "y": 309.16, "curve": 0.621, "c3": 0, "c4": 1.6}, {"time": 0.6667, "x": 12.32, "y": 268.04, "curve": 0.701, "c4": 0.5}, {"time": 0.8833} + ] + }, + "@leg-front-left": { + "translate": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": -0.29, "y": -5.47, "curve": 0, "c2": 0.6, "c3": 0.237}, {"time": 0.3333, "curve": "stepped"}, + {"time": 0.6667, "curve": 0.701, "c4": 0.5}, {"time": 0.8833, "x": -0.95, "y": -14.45, "curve": 0.461, "c3": 0.543}, {"time": 1} + ] + }, + "@leg-front-right": { + "translate": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": -1.07, "y": -20.09, "curve": 0, "c2": 0.6, "c3": 0.237}, {"time": 0.3333, "curve": "stepped"}, + {"time": 0.6667, "curve": 0.701, "c4": 0.5}, {"time": 0.8833, "x": -1.66, "y": -25.29, "curve": 0.461, "c3": 0.543}, {"time": 1} + ] + }, + "@shadow": { + "translate": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": 24.43, "curve": 0, "c2": 0.6, "c3": 0.237}, {"time": 0.3333, "x": -70.38, "curve": 0.621, "c3": 0, "c4": 1.4}, + {"time": 0.6667, "x": 5.15, "curve": 0.701, "c4": 0.5}, {"time": 0.8833, "x": -8.95, "curve": 0.461, "c3": 0.543}, {"time": 1} + ], + "scale": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": 1.08, "y": 1.08, "curve": 0, "c2": 0.6, "c3": 0.237}, + {"time": 0.3333, "x": 0.85, "y": 0.85, "curve": 0.621, "c3": 0, "c4": 1.4}, {"time": 0.6667, "x": 0.9, "y": 0.9, "curve": 0.701, "c4": 0.5}, + {"time": 0.8833, "x": 1.1, "y": 1.1, "curve": 0.461, "c3": 0.543}, {"time": 1} + ] + }, + "tail": { + "rotate": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "angle": 17.93, "curve": 0, "c2": 0.6, "c3": 0.237}, {"time": 0.3333, "angle": -15.3, "curve": 0.621, "c3": 0, "c4": 1.4}, + {"time": 0.6667, "angle": 24.81, "curve": 0.701, "c4": 0.5}, {"time": 0.8833, "angle": -15.84, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 1} + ] + }, + "body-braid-02": { + "rotate": [ + {"angle": 3.5, "curve": 0.348, "c2": 0.38, "c3": 0.685, "c4": 0.73}, {"time": 0.3167, "angle": 29.04, "curve": 0.25, "c3": 0.75}, + {"time": 0.5667, "angle": 25.88, "curve": 0.25, "c3": 0.144}, {"time": 0.8167, "angle": 41.04, "curve": 0.25, "c3": 0.75}, {"time": 1, "angle": 3.5} + ] + }, + "body-braid-03": { + "rotate": [ + {"angle": -1.71, "curve": 0.337, "c2": 0.34, "c3": 0.673, "c4": 0.69}, {"time": 0.0333, "curve": 0.25, "c3": 0.75}, {"time": 0.35, "angle": 45.56, "curve": 0.25, "c3": 0.75}, + {"time": 0.6167, "angle": -13.49, "curve": 0.25, "c3": 0.144}, {"time": 0.85, "angle": 45.56, "curve": 0.243, "c3": 0.68, "c4": 0.71}, {"time": 1, "angle": -1.71} + ] + }, + "body-braid-04": { + "rotate": [ + {"angle": -9.29, "curve": 0.323, "c2": 0.3, "c3": 0.66, "c4": 0.65}, {"time": 0.0833, "curve": 0.25, "c3": 0.75}, {"time": 0.4, "angle": 36.13, "curve": 0.25, "c3": 0.75}, + {"time": 0.6667, "angle": -30, "curve": 0.25, "c3": 0.144}, {"time": 0.9, "angle": 36.13, "curve": 0.248, "c3": 0.628, "c4": 0.52}, {"time": 1, "angle": -9.29} + ] + }, + "body-braid-05": { + "rotate": [ + {"angle": -8.3, "curve": 0.294, "c3": 0.631, "c4": 0.37}, {"time": 0.15, "curve": 0.25, "c3": 0.75}, {"time": 0.4667, "angle": -7.54, "curve": 0.25, "c3": 0.75}, + {"time": 0.7167, "angle": -31.56, "curve": 0.25, "c3": 0.144}, {"time": 0.9667, "angle": -7.54, "curve": 0.284, "c3": 0.625, "c4": 0.38}, {"time": 1, "angle": -8.3} + ] + }, + "body-braid-06": { + "rotate": [ + {"angle": -20.59, "curve": 0.352, "c2": 0.41, "c3": 0.689, "c4": 0.75}, {"time": 0.0333, "angle": 1.41, "curve": 0.25, "c3": 0.75}, {"time": 0.2167, "curve": 0.25, "c3": 0.75}, + {"time": 0.5333, "angle": 1.41, "curve": 0.25, "c3": 0.75}, {"time": 0.8, "angle": -42.25, "curve": 0.25, "c3": 0.144}, {"time": 1, "angle": -20.59} + ] + }, + "body-fur-under-04": { + "translate": [ + {"x": -0.33, "y": 3.2, "curve": 0.348, "c2": 0.39, "c3": 0.683, "c4": 0.73}, {"time": 0.0333, "x": -0.15, "y": 1.46, "curve": 0.369, "c2": 0.63, "c3": 0.706}, + {"time": 0.0667, "curve": 0.25, "c3": 0.75}, {"time": 0.3167, "x": 3.59, "y": -11.21, "curve": 0.25, "c3": 0.75}, {"time": 0.4333, "x": -14.26, "y": 19.9, "curve": 0.25, "c3": 0.75}, + {"time": 0.5667, "x": 0.07, "y": 10.3, "curve": 0.25, "c3": 0.75}, {"time": 0.6833, "x": -24.88, "y": 22.21, "curve": 0.25, "c3": 0.75}, + {"time": 0.8167, "x": -1.82, "y": 17.62, "curve": 0.242, "c3": 0.667, "c4": 0.67}, {"time": 1, "x": -0.33, "y": 3.2} + ], + "shear": [ + {"x": 10.24, "curve": 0.36, "c2": 0.64, "c3": 0.695}, {"time": 0.0333, "curve": 0.25, "c3": 0.75}, {"time": 0.2833, "x": -0.05, "curve": 0.25, "c3": 0.75}, + {"time": 0.4167, "x": 18.75, "curve": 0.25, "c3": 0.75}, {"time": 0.5333, "x": 47.55, "curve": 0.25, "c3": 0.75}, {"time": 0.6667, "x": 9.03, "y": 3.36, "curve": 0.25, "c3": 0.75}, + {"time": 0.7833, "x": 47.37, "curve": 0.244, "c3": 0.694, "c4": 0.77}, {"time": 1, "x": 10.24} + ] + }, + "body-fur-under-03": { + "translate": [ + {"x": -0.78, "y": 3.19, "curve": 0.338, "c2": 0.35, "c3": 0.672, "c4": 0.69}, {"time": 0.0167, "x": -0.59, "y": 2.43, "curve": 0.379, "c2": 0.6, "c3": 0.724}, + {"time": 0.0833, "curve": 0.25, "c3": 0.75}, {"time": 0.3333, "x": 3.59, "y": -11.21, "curve": 0.25, "c3": 0.75}, {"time": 0.45, "x": -14.26, "y": 19.9, "curve": 0.25, "c3": 0.75}, + {"time": 0.5833, "x": 0.07, "y": 10.3, "curve": 0.25, "c3": 0.75}, {"time": 0.7, "x": -26.35, "y": 20.75, "curve": 0.25, "c3": 0.75}, + {"time": 0.8333, "x": -3.2, "y": 13.18, "curve": 0.243, "c3": 0.655, "c4": 0.63}, {"time": 1, "x": -0.78, "y": 3.19} + ], + "shear": [ + {"x": 22.47, "curve": 0.25, "c3": 0.75}, {"time": 0.0667, "curve": 0.25, "c3": 0.75}, {"time": 0.3167, "x": 0.35, "curve": 0.25, "c3": 0.75}, + {"time": 0.4333, "x": 26.04, "y": -7.3, "curve": 0.25, "c3": 0.75}, {"time": 0.5667, "x": 47.96, "curve": 0.25, "c3": 0.75}, + {"time": 0.6833, "x": 16.32, "y": -3.94, "curve": 0.25, "c3": 0.75}, {"time": 0.8167, "x": 47.78, "curve": 0.242, "c3": 0.667, "c4": 0.67}, {"time": 1, "x": 22.47} + ] + }, + "body-fur-under-05": { + "translate": [ + {"x": 0.53, "y": 14.98, "curve": 0.335, "c2": 0.34, "c3": 0.674, "c4": 0.69}, {"time": 0.05, "x": 0.29, "y": 8.07, "curve": 0.382, "c2": 0.57, "c3": 0.737}, + {"time": 0.1333, "curve": 0.25, "c3": 0.75}, {"time": 0.3833, "x": 3.59, "y": -11.21, "curve": 0.25, "c3": 0.75}, {"time": 0.5167, "x": -14.26, "y": 19.9, "curve": 0.25, "c3": 0.75}, + {"time": 0.6333, "x": 0.07, "y": 10.3, "curve": 0.25, "c3": 0.75}, {"time": 0.7667, "x": -11.61, "y": 26.55, "curve": 0.25, "c3": 0.75}, + {"time": 0.8833, "x": 0.95, "y": 26.5, "curve": 0.253, "c3": 0.621, "c4": 0.48}, {"time": 1, "x": 0.53, "y": 14.98} + ], + "shear": [ + {"x": 3.7, "curve": 0.382, "c2": 0.57, "c3": 0.737}, {"time": 0.0833, "curve": 0.25, "c3": 0.75}, {"time": 0.3333, "x": 1.13, "y": -4.12, "curve": 0.25, "c3": 0.75}, + {"time": 0.4667, "x": 23.64, "curve": 0.25, "c3": 0.75}, {"time": 0.5833, "x": 48.74, "y": -4.12, "curve": 0.25, "c3": 0.75}, + {"time": 0.7167, "x": 13.91, "y": 3.36, "curve": 0.25, "c3": 0.75}, {"time": 0.8333, "x": 69.84, "y": -4.12, "curve": 0.244, "c3": 0.646, "c4": 0.59}, {"time": 1, "x": 3.7} + ] + }, + "body-fur-under-02": { + "translate": [ + {"x": -2.23, "y": 6.28, "curve": 0.352, "c2": 0.41, "c3": 0.689, "c4": 0.75}, {"time": 0.0333, "x": -0.78, "y": 2.18, "curve": 0.369, "c2": 0.63, "c3": 0.706}, + {"time": 0.0833, "curve": 0.25, "c3": 0.75}, {"time": 0.3333, "x": 3.59, "y": -11.21, "curve": 0.25, "c3": 0.75}, {"time": 0.45, "x": -14.26, "y": 19.9, "curve": 0.25, "c3": 0.75}, + {"time": 0.5833, "x": 0.07, "y": 10.3, "curve": 0.25, "c3": 0.75}, {"time": 0.7, "x": -32.26, "y": 17.84, "curve": 0.25, "c3": 0.75}, + {"time": 0.8333, "x": -9.35, "y": 26.3, "curve": 0.243, "c3": 0.655, "c4": 0.63}, {"time": 1, "x": -2.23, "y": 6.28} + ], + "shear": [ + {"x": -27.8, "curve": 0.375, "c2": 0.62, "c3": 0.716}, {"time": 0.0333, "curve": 0.25, "c3": 0.75}, {"time": 0.2833, "x": -2.26, "curve": 0.25, "c3": 0.75}, + {"time": 0.4167, "x": 32.83, "curve": 0.25, "c3": 0.75}, {"time": 0.5333, "x": 45.35, "curve": 0.25, "c3": 0.75}, {"time": 0.6667, "x": 23.11, "y": 3.36, "curve": 0.25, "c3": 0.75}, + {"time": 0.7833, "x": 45.16, "curve": 0.244, "c3": 0.694, "c4": 0.77}, {"time": 1, "x": -27.8} + ] + }, + "body-fur-under-01": { + "translate": [ + {"x": -0.14, "y": 0.84, "curve": 0.343, "c2": 0.39, "c3": 0.677, "c4": 0.73}, {"time": 0.0167, "x": -0.07, "y": 0.44, "curve": 0.36, "c2": 0.64, "c3": 0.695}, + {"time": 0.0333, "curve": 0.25, "c3": 0.75}, {"time": 0.2833, "x": 3.59, "y": -11.21, "curve": 0.25, "c3": 0.75}, {"time": 0.4167, "x": -14.26, "y": 19.9, "curve": 0.25, "c3": 0.75}, + {"time": 0.5333, "x": 0.07, "y": 10.3, "curve": 0.25, "c3": 0.75}, {"time": 0.6667, "x": -11.61, "y": 26.55, "curve": 0.25, "c3": 0.75}, + {"time": 0.7833, "x": -1.67, "y": 10.27, "curve": 0.244, "c3": 0.694, "c4": 0.77}, {"time": 1, "x": -0.14, "y": 0.84} + ], + "shear": [ + {"x": -4.09, "curve": 0.375, "c2": 0.5, "c3": 0.75}, {"time": 0.0333, "curve": 0.25, "c3": 0.75}, {"time": 0.2833, "x": -2.74, "y": 10.77, "curve": 0.25, "c3": 0.75}, + {"time": 0.4, "x": 55.89, "y": -8.05, "curve": 0.25, "c3": 0.75}, {"time": 0.5333, "x": 44.86, "y": 10.77, "curve": 0.25, "c3": 0.75}, + {"time": 0.65, "x": 46.17, "y": -4.69, "curve": 0.25, "c3": 0.75}, {"time": 0.7833, "x": 44.68, "y": 10.77, "curve": 0.245, "c3": 0.711, "c4": 0.83}, {"time": 1, "x": -4.09} + ] + }, + "body-braid-01": {"rotate": [{"angle": 2.31}]} + } + }, + "260375190": { + "slots": { + "eyes": {"attachment": [{"time": 0.0833, "name": "eyes-angry"}, {"time": 0.6667, "name": "eyes-shut"}, {"time": 0.75, "name": "eyes"}]}, + "mouth": {"attachment": [{"time": 0.0833, "name": "mouth-bite"}, {"time": 0.35, "name": "mouth-open"}, {"time": 0.55, "name": "mouth-bite"}, {"time": 0.75, "name": "mouth"}]} + }, + "bones": { + "@pivot-back": { + "rotate": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "angle": 4, "curve": 0, "c2": 0.5, "c3": 0.3}, {"time": 0.3333, "angle": -23.77, "curve": "stepped"}, + {"time": 0.35, "angle": -29.82, "curve": 0.698, "c3": 0.541}, {"time": 0.5833, "angle": 3}, {"time": 0.7167, "angle": 4, "curve": 0, "c2": 0.09, "c3": 0.479, "c4": 0.56}, + {"time": 0.8167, "angle": -5.09, "curve": 0.416, "c2": 0.51, "c3": 0.865}, {"time": 0.9167} + ], + "translate": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": 33.65, "y": -5, "curve": 0, "c2": 0.5, "c3": 0.3}, {"time": 0.3333, "x": 80.56, "y": 137.85, "curve": "stepped"}, + {"time": 0.35, "x": 147.57, "y": 42.83, "curve": 0, "c2": 0.2, "c3": 0.686}, {"time": 0.5, "x": 206.93, "y": -26.82, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.5833, "x": 226.09}, + {"time": 0.7167, "x": 237.58, "y": 2, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.9167} + ] + }, + "@pivot-main": { + "translate": [ + {"time": 0.5833, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.7167, "x": 15, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.8167, "x": 7.5, "y": 59.4, "curve": 0.315, "c4": 0.8}, + {"time": 0.9167} + ] + }, + "leg-front-left-IK": { + "translate": [ + {"time": 0.1667, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.3333, "x": 27.04, "y": 216.41, "curve": "stepped"}, {"time": 0.35, "x": 51.7, "y": 178.19, "curve": 0.384, "c3": 0.537}, + {"time": 0.5833, "x": 202.93}, {"time": 0.7, "x": 218.86, "y": 2.61, "curve": 0.315, "c4": 0.8}, {"time": 0.7667, "x": 145.27, "curve": 0.237, "c4": 0.8}, {"time": 0.9167} + ] + }, + "leg-front-right-IK": { + "translate": [ + {"time": 0.1667, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.3333, "x": 54.35, "y": 310.88, "curve": "stepped"}, {"time": 0.35, "x": 67.2, "y": 319.96, "curve": 0.384, "c3": 0.537}, + {"time": 0.5833, "x": 199.77}, {"time": 0.7, "x": 187.66, "curve": 0.315, "c4": 0.8}, {"time": 0.7667, "x": 143.69, "curve": 0.237, "c4": 0.8}, {"time": 0.9167} + ] + }, + "leg-back-left-IK": { + "translate": [ + {"time": 0.1667, "curve": 0, "c2": 0.4, "c3": 0.383}, {"time": 0.3333, "x": 50.37, "y": 150.84, "curve": "stepped"}, {"time": 0.35, "x": 34.64, "y": 81.96, "curve": 0.306, "c4": 0.8}, + {"time": 0.5, "x": 185.62, "y": 1.08, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.7167, "x": 244.18, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.8167, "x": 108.59, "y": 18.82, "curve": 0.306, "c4": 0.8}, {"time": 0.9167} + ] + }, + "@leg-front-right": { + "translate": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": -1.03, "y": -19.32}, {"time": 0.3333, "curve": "stepped"}, {"time": 0.5833, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.7167, "x": 9.38, "y": 7.22}, {"time": 0.9167} + ] + }, + "@leg-front-left": { + "translate": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": -0.29, "y": -5.47}, {"time": 0.3333, "curve": "stepped"}, {"time": 0.5833, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.7167, "x": 6.3, "y": -2.41}, {"time": 0.9167} + ] + }, + "tail": { + "rotate": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "angle": 19.35, "curve": 0, "c2": 0.4, "c3": 0.383}, {"time": 0.3333, "angle": -0.88, "curve": "stepped"}, + {"time": 0.35, "angle": -13.56, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.5, "angle": 0.52, "curve": 0, "c2": 0.3, "c3": 0.544}, + {"time": 0.7167, "angle": 19.32, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.8, "angle": -9.3, "curve": 0.313, "c3": 0.699}, {"time": 0.9167} + ] + }, + "@shadow": { + "translate": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": 24.43, "curve": 0, "c2": 0.4, "c3": 0.383}, {"time": 0.3333, "x": 86.58, "curve": "stepped"}, + {"time": 0.35, "x": 154.34, "curve": 0.315, "c4": 0.8}, {"time": 0.5, "x": 208.2, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.5833, "x": 216.55}, + {"time": 0.7167, "x": 243.36, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.9167} + ], + "scale": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": 1.08, "y": 1.08, "curve": 0, "c2": 0.4, "c3": 0.383}, {"time": 0.3333, "x": 0.92, "y": 0.92, "curve": "stepped"}, + {"time": 0.35, "x": 0.9, "y": 0.9, "curve": 0.315, "c4": 0.8}, {"time": 0.5, "x": 1.02, "y": 1.02, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.5833, "x": 1.08, "y": 1.08}, + {"time": 0.7167, "x": 1.1, "y": 1.1, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.9167} + ] + }, + "body-braid-02": { + "rotate": [ + {"angle": 3.5, "curve": 0.348, "c2": 0.38, "c3": 0.685, "c4": 0.73}, {"time": 0.1667, "angle": 2.2, "curve": 0.378, "c2": 0.61, "c3": 0.721}, + {"time": 0.2333, "angle": 2.63, "curve": 0.25, "c3": 0}, {"time": 0.55, "angle": 20.83, "curve": 0.25, "c3": 0.75}, {"time": 0.85, "curve": 0.284, "c3": 0.625, "c4": 0.38}, + {"time": 0.9167, "angle": 3.5} + ] + }, + "body-braid-03": { + "rotate": [ + {"angle": -1.71, "curve": 0.337, "c2": 0.34, "c3": 0.673, "c4": 0.69}, {"time": 0.1667, "angle": 1.7, "curve": 0.352, "c2": 0.4, "c3": 0.693, "c4": 0.76}, + {"time": 0.2333, "angle": 2.35, "curve": 0.372, "c2": 0.62, "c3": 0}, {"time": 0.2833, "angle": 2.63, "curve": 0.25, "c3": 0}, + {"time": 0.5833, "angle": 23.44, "curve": 0.244, "c3": 0.7, "c4": 0.79}, {"time": 0.85, "angle": 1.63, "curve": 0.366, "c2": 0.63, "c3": 0.703}, + {"time": 0.8833, "curve": 0.313, "c3": 0.648, "c4": 0.35}, {"time": 0.9167, "angle": -1.71} + ] + }, + "body-braid-04": { + "rotate": [ + {"angle": -9.29, "curve": 0.323, "c2": 0.3, "c3": 0.66, "c4": 0.65}, {"time": 0.0333, "curve": 0.255, "c3": 0.62, "c4": 0.47}, + {"time": 0.1667, "angle": 1.08, "curve": 0.334, "c2": 0.33, "c3": 0.674, "c4": 0.69}, {"time": 0.2333, "angle": 1.82, "curve": 0.382, "c2": 0.56, "c3": 0}, + {"time": 0.35, "angle": 2.63, "curve": 0.25, "c3": 0}, {"time": 0.65, "angle": 16.91, "curve": 0.243, "c3": 0.649, "c4": 0.6}, + {"time": 0.85, "angle": 4.8, "curve": 0.356, "c2": 0.42, "c3": 0.696, "c4": 0.78}, {"time": 0.9167, "angle": -9.29} + ] + }, + "body-braid-05": { + "rotate": [ + {"angle": -8.3, "curve": 0.294, "c3": 0.631, "c4": 0.37}, {"time": 0.1167, "curve": 0.292, "c3": 0.63, "c4": 0.37}, + {"time": 0.1667, "angle": -0.94, "curve": 0.306, "c2": 0.23, "c3": 0.646, "c4": 0.59}, {"time": 0.2333, "angle": -3.52, "curve": 0.359, "c2": 0.43, "c3": 0}, + {"time": 0.4167, "angle": -10.49, "curve": 0.25, "c3": 0}, {"time": 0.7333, "angle": 8.22, "curve": 0.258, "c3": 0.619, "c4": 0.45}, + {"time": 0.85, "angle": 5.2, "curve": 0.33, "c2": 0.32, "c3": 0.67, "c4": 0.68}, {"time": 0.9167, "angle": -8.3} + ] + }, + "body-braid-06": { + "rotate": [ + {"angle": -20.59, "curve": 0.352, "c2": 0.41, "c3": 0.689, "c4": 0.75}, {"time": 0.1667, "angle": 0.47, "curve": 0.362, "c2": 0.64, "c3": 0.698}, {"time": 0.2, "curve": 0.301, "c3": 0}, + {"time": 0.2333, "angle": -1.65, "curve": 0.295, "c2": 0.19, "c3": 0}, {"time": 0.5, "angle": -28.99, "curve": 0.25, "c3": 0.228, "c4": 0.99}, + {"time": 0.8167, "angle": 9.53, "curve": 0.297, "c3": 0.634, "c4": 0.37}, {"time": 0.85, "angle": 8.86, "curve": 0.304, "c2": 0.22, "c3": 0.644, "c4": 0.58}, + {"time": 0.9167, "angle": -20.59} + ] + }, + "body-fur-under-05": { + "shear": [ + {"x": 3.7, "curve": 0.382, "c2": 0.57, "c3": 0.737}, {"time": 0.0667, "x": 0.88, "curve": 0.382, "c2": 0.56, "c3": 0.738}, + {"time": 0.1833, "x": 6.85, "curve": 0.25, "c3": 0.228, "c4": 0.99}, {"time": 0.4833, "x": -44.3, "curve": 0.248, "c3": 0.628, "c4": 0.52}, + {"time": 0.65, "x": -27.02, "curve": 0.356, "c2": 0.41, "c3": 0.707, "c4": 0.81}, {"time": 0.75, "x": -14.63, "curve": 0.366, "c2": 0.63, "c3": 0.703}, + {"time": 0.7833, "x": -12.53, "curve": 0.255, "c3": 0.62, "c4": 0.47}, {"time": 0.9167, "x": 3.7} + ] + }, + "body-fur-under-04": { + "shear": [ + {"x": 10.24, "curve": 0.36, "c2": 0.64, "c3": 0.695}, {"time": 0.0667, "x": 8.81, "curve": 0.378, "c2": 0.6, "c3": 0.722}, + {"time": 0.1333, "x": 13.82, "curve": 0.25, "c3": 0.228, "c4": 0.99}, {"time": 0.4333, "x": -39.88, "curve": 0.243, "c3": 0.649, "c4": 0.6}, + {"time": 0.65, "x": -22.71, "curve": 0.382, "c2": 0.57, "c3": 0.735}, {"time": 0.75, "x": -15.91, "curve": 0.247, "c3": 0.63, "c4": 0.52}, {"time": 0.9167, "x": 10.24} + ] + }, + "body-fur-under-03": { + "shear": [ + {"x": 22.47, "curve": 0.25, "c3": 0.75}, {"time": 0.0667, "x": 19.28, "curve": 0.25, "c3": 0.228, "c4": 0.99}, {"time": 0.3833, "x": -45.7, "curve": 0.244, "c3": 0.7, "c4": 0.79}, + {"time": 0.65, "x": -3.18, "curve": 0.366, "c2": 0.63, "c3": 0.703}, {"time": 0.6833, "curve": 0.284, "c3": 0.625, "c4": 0.38}, + {"time": 0.75, "x": 2.51, "curve": 0.304, "c2": 0.24, "c3": 0.688, "c4": 0.74}, {"time": 0.9167, "x": 22.47} + ] + }, + "body-fur-under-02": { + "shear": [ + {"x": -27.8, "curve": 0.375, "c2": 0.62, "c3": 0.716}, {"time": 0.0667, "x": 17.68, "curve": 0.363, "c2": 0.64, "c3": 0.699}, + {"time": 0.1, "x": 18.72, "curve": 0.25, "c3": 0.228, "c4": 0.99}, {"time": 0.4, "x": -43.03, "curve": 0.243, "c3": 0.68, "c4": 0.71}, + {"time": 0.65, "x": -5.6, "curve": 0.375, "c2": 0.62, "c3": 0.716}, {"time": 0.7, "curve": 0.297, "c3": 0.634, "c4": 0.37}, + {"time": 0.75, "x": 1.3, "curve": 0.286, "c2": 0.18, "c3": 0.664, "c4": 0.66}, {"time": 0.9167, "x": -27.8} + ] + }, + "body-fur-under-01": { + "shear": [ + {"x": -4.09, "curve": 0.375, "c2": 0.5, "c3": 0.75}, {"time": 0.0333, "x": 26.91, "curve": 0.374, "c3": 0.7, "c4": 0.36}, + {"time": 0.0667, "x": 20.46, "curve": 0.192, "c2": 0.19, "c3": 0.26, "c4": 0.99}, {"time": 0.3333, "x": -42.78, "curve": 0.25, "c3": 0.75}, + {"time": 0.65, "curve": 0.265, "c3": 0.618, "c4": 0.43}, {"time": 0.75, "x": 7.64, "curve": 0.338, "c2": 0.35, "c3": 0.72, "c4": 0.84}, {"time": 0.9167, "x": -4.09} + ] + }, + "body-braid-01": {"rotate": [{"angle": 2.31}]} + }, + "events": [{"time": 0.5167, "name": "start-attack"}] + }, + "1610371879": { + "slots": { + "eyes": {"attachment": [{"time": 0.0167, "name": "eyes-angry"}, {"time": 0.5, "name": "eyes-shut"}, {"time": 0.6667, "name": "eyes"}]}, + "mouth": {"attachment": [{"time": 0.0167, "name": "mouth-bite"}, {"time": 0.3, "name": "mouth-open"}, {"time": 0.5, "name": "mouth"}]} + }, + "bones": { + "@pivot-back": { + "rotate": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "angle": -3.92, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "angle": 2.51, "curve": 0.697, "c4": 0.3}, + {"time": 0.3, "angle": -2}, {"time": 0.4167, "angle": -3, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5833, "angle": 3, "curve": 0, "c2": 0.17, "c3": 0.45, "c4": 0.61}, + {"time": 0.6667, "angle": -2.47, "curve": 0.345, "c2": 0.53, "c3": 0.751}, {"time": 0.75} + ], + "translate": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "x": 71.93, "y": -12.95, "curve": "stepped"}, {"time": 0.25, "x": 71.93, "y": -12.95, "curve": 0.697, "c4": 0.3}, + {"time": 0.3, "x": -65}, {"time": 0.4167, "x": -67, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5833, "x": -74.25, "y": -5.2, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.75} + ] + }, + "leg-back-left-IK": { + "translate": [ + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.1333, "x": 80.9, "curve": 0.161, "c3": 0.854}, {"time": 0.25, "x": 72.25, "curve": 0.25, "c4": 0.3}, + {"time": 0.3, "x": -24.7, "y": 18.44, "curve": "stepped"}, {"time": 0.4167, "x": -24.7, "y": 18.44, "curve": 0.306, "c3": 0.695}, + {"time": 0.5833, "x": -90.91, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.75} + ] + }, + "leg-front-right-IK": { + "translate": [ + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 30.89, "y": 11.74, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "x": 42.9, "curve": 0.697, "c4": 0.3}, + {"time": 0.3, "x": 11.08, "y": 2.13, "curve": "stepped"}, {"time": 0.4167, "x": 11.08, "y": 2.13, "curve": 0.306, "c3": 0.695}, + {"time": 0.5833, "x": -87.1, "curve": 0, "c2": 0.17, "c3": 0.45, "c4": 0.61}, {"time": 0.6667, "x": -39.4, "curve": 0.345, "c2": 0.53, "c3": 0.751}, {"time": 0.75} + ] + }, + "leg-front-left-IK": { + "translate": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "x": 52.52, "y": 6.57, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "x": 44.73, "y": 1.83, "curve": 0.697, "c4": 0.3}, + {"time": 0.3, "x": -28.02, "y": 20.97}, {"time": 0.4167, "x": -31.01, "y": 31.21, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.5833, "x": -82.62, "curve": 0, "c2": 0.17, "c3": 0.45, "c4": 0.61}, {"time": 0.6667, "x": -55.81, "curve": 0.345, "c2": 0.53, "c3": 0.751}, {"time": 0.75} + ] + }, + "@leg-front-left": { + "translate": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "x": -2.59, "y": -4.65, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "x": -0.61, "y": -2.94, "curve": 0.697, "c4": 0.3}, + {"time": 0.3, "x": 0.47, "y": -9.15, "curve": "stepped"}, {"time": 0.4167, "x": 0.47, "y": -9.15, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5833} + ] + }, + "@leg-front-right": { + "translate": [ + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 4.31, "y": 11.86, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "x": -10.4, "y": -12.15, "curve": 0.697, "c4": 0.3}, + {"time": 0.3, "x": -48.45, "y": 18.12, "curve": "stepped"}, {"time": 0.4167, "x": -48.45, "y": 18.12, "curve": 0, "c2": 0.3, "c3": 0.54}, + {"time": 0.5833, "x": -10.7, "y": -18.88, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.75} + ] + }, + "@leg-back-left": { + "translate": [ + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.1333, "x": 0.67, "y": -7.85, "curve": 0.161, "c3": 0.854}, {"time": 0.25, "x": 0.53, "y": -13.09, "curve": 0.25, "c4": 0.3}, + {"time": 0.3, "x": -0.22, "y": 1.34, "curve": "stepped"}, {"time": 0.4167, "x": -0.22, "y": 1.34, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.5833, "x": -0.28, "y": -7.87, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.75} + ] + }, + "@shadow": { + "translate": [ + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 61.96, "curve": "stepped"}, {"time": 0.25, "x": 61.96, "curve": 0.697, "c4": 0.3}, {"time": 0.3, "x": -50.16}, + {"time": 0.4167, "x": -53.09, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5833, "x": -83.79, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.75} + ], + "scale": [ + {"time": 0.0833, "curve": 0, "c2": 0.26, "c3": 0.369, "c4": 0.62}, {"time": 0.25, "x": 1.06, "y": 1.06, "curve": 0.697, "c4": 0.3}, + {"time": 0.3, "x": 0.96, "y": 0.96, "curve": "stepped"}, {"time": 0.4167, "x": 0.96, "y": 0.96, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.5833, "x": 1.08, "y": 1.08, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.75} + ] + }, + "tail": { + "rotate": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "angle": 15.61, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "angle": 20.44, "curve": 0.697, "c4": 0.3}, + {"time": 0.3, "angle": -9.4}, {"time": 0.4167, "angle": -13.12, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5833, "angle": 15.47, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.75} + ] + }, + "body-braid-02": { + "rotate": [ + {"angle": 3.5, "curve": 0.348, "c2": 0.38, "c3": 0.685, "c4": 0.73}, {"time": 0.2, "angle": 2.63, "curve": 0.25, "c3": 0.228, "c4": 0.99}, + {"time": 0.45, "angle": 17.69, "curve": 0.25, "c3": 0.75}, {"time": 0.7, "curve": 0.284, "c3": 0.625, "c4": 0.38}, {"time": 0.75, "angle": 3.5} + ] + }, + "body-braid-03": { + "rotate": [ + {"angle": -1.71, "curve": 0.337, "c2": 0.34, "c3": 0.673, "c4": 0.69}, {"time": 0.2333, "angle": 2.63, "curve": 0.25, "c3": 0.228, "c4": 0.99}, + {"time": 0.4833, "angle": 23.44, "curve": 0.244, "c3": 0.7, "c4": 0.79}, {"time": 0.7, "angle": 1.63, "curve": 0.366, "c2": 0.63, "c3": 0.703}, + {"time": 0.7333, "curve": 0.313, "c3": 0.648, "c4": 0.35}, {"time": 0.75, "angle": -1.71} + ] + }, + "body-braid-04": { + "rotate": [ + {"angle": -9.29, "curve": 0.323, "c2": 0.3, "c3": 0.66, "c4": 0.65}, {"time": 0.0333, "curve": 0.25, "c3": 0.75}, {"time": 0.2833, "angle": 2.63, "curve": 0.25, "c3": 0.228, "c4": 0.99}, + {"time": 0.5333, "angle": 16.91, "curve": 0.243, "c3": 0.649, "c4": 0.6}, {"time": 0.7, "angle": 4.8, "curve": 0.356, "c2": 0.42, "c3": 0.696, "c4": 0.78}, {"time": 0.75, "angle": -9.29} + ] + }, + "body-braid-05": { + "rotate": [ + {"angle": -8.3, "curve": 0.294, "c3": 0.631, "c4": 0.37}, {"time": 0.1, "curve": 0.25, "c3": 0.75}, {"time": 0.35, "angle": -10.49, "curve": 0.25, "c3": 0.228, "c4": 0.99}, + {"time": 0.6, "angle": 8.22, "curve": 0.258, "c3": 0.619, "c4": 0.45}, {"time": 0.7, "angle": 5.2, "curve": 0.33, "c2": 0.32, "c3": 0.67, "c4": 0.68}, {"time": 0.75, "angle": -8.3} + ] + }, + "body-braid-06": { + "rotate": [ + {"angle": -20.59, "curve": 0.352, "c2": 0.41, "c3": 0.689, "c4": 0.75}, {"time": 0.1667, "curve": 0.25, "c3": 0.75}, + {"time": 0.4167, "angle": -28.99, "curve": 0.25, "c3": 0.228, "c4": 0.99}, {"time": 0.6667, "angle": 9.53, "curve": 0.297, "c3": 0.634, "c4": 0.37}, + {"time": 0.7, "angle": 8.86, "curve": 0.304, "c2": 0.22, "c3": 0.644, "c4": 0.58}, {"time": 0.75, "angle": -20.59} + ] + }, + "body-fur-under-05": { + "translate": [{"x": 0.53, "y": 14.98}], + "shear": [ + {"x": 3.7, "curve": 0.382, "c2": 0.57, "c3": 0.737}, {"time": 0.0333, "x": -12.53, "curve": 0.25, "c3": 0.75}, {"time": 0.2833, "x": 6.85, "curve": 0.25, "c3": 0.228, "c4": 0.99}, + {"time": 0.5333, "x": -44.3, "curve": 0.248, "c3": 0.628, "c4": 0.52}, {"time": 0.6667, "x": -27.02, "curve": 0.356, "c2": 0.41, "c3": 0.707, "c4": 0.81}, {"time": 0.75, "x": 3.7} + ] + }, + "body-fur-under-04": { + "translate": [{"x": -0.33, "y": 3.2}], + "shear": [ + {"x": 10.24, "curve": 0.36, "c2": 0.64, "c3": 0.695}, {"time": 0.25, "x": 13.82, "curve": 0.25, "c3": 0.228, "c4": 0.99}, + {"time": 0.5, "x": -39.88, "curve": 0.243, "c3": 0.649, "c4": 0.6}, {"time": 0.6667, "x": -22.71, "curve": 0.382, "c2": 0.57, "c3": 0.735}, {"time": 0.75, "x": 10.24} + ] + }, + "body-fur-under-03": { + "translate": [{"x": -0.78, "y": 3.19}], + "shear": [ + {"x": 22.47, "curve": 0.25, "c3": 0.75}, {"time": 0.2, "x": 19.28, "curve": 0.25, "c3": 0.228, "c4": 0.99}, {"time": 0.45, "x": -45.7, "curve": 0.244, "c3": 0.7, "c4": 0.79}, + {"time": 0.6667, "x": -3.18, "curve": 0.366, "c2": 0.63, "c3": 0.703}, {"time": 0.7, "curve": 0.284, "c3": 0.625, "c4": 0.38}, {"time": 0.75, "x": 22.47} + ] + }, + "body-fur-under-02": { + "translate": [{"x": -2.23, "y": 6.28}], + "shear": [ + {"x": -27.8, "curve": 0.375, "c2": 0.62, "c3": 0.716}, {"time": 0.2167, "x": 18.72, "curve": 0.25, "c3": 0.228, "c4": 0.99}, + {"time": 0.4667, "x": -43.03, "curve": 0.243, "c3": 0.68, "c4": 0.71}, {"time": 0.6667, "x": -5.6, "curve": 0.375, "c2": 0.62, "c3": 0.716}, + {"time": 0.7167, "curve": 0.297, "c3": 0.634, "c4": 0.37}, {"time": 0.75, "x": -27.8} + ] + }, + "body-fur-under-01": { + "translate": [{"x": -0.14, "y": 0.84}], + "shear": [ + {"x": -4.09, "curve": 0.375, "c2": 0.5, "c3": 0.75}, {"time": 0.1667, "x": 26.91, "curve": 0.25, "c3": 0.228, "c4": 0.99}, {"time": 0.4167, "x": -42.78, "curve": 0.25, "c3": 0.75}, + {"time": 0.6667, "curve": 0.265, "c3": 0.618, "c4": 0.43}, {"time": 0.75, "x": -4.09} + ] + }, + "body-braid-01": {"rotate": [{"angle": 2.31}]} + }, + "events": [{"time": 0.3, "name": "start-attack"}] + }, + "305611055": { + "slots": { + "eyes": {"attachment": [{"time": 0.05, "name": "eyes-angry"}, {"time": 1.2333, "name": "eyes"}]}, + "mouth": {"attachment": [{"time": 0.05, "name": "mouth-bite"}, {"time": 0.4667, "name": "mouth-open"}, {"time": 1.0833, "name": "mouth-bite"}, {"time": 1.2333, "name": "mouth"}]} + }, + "bones": { + "@pivot-back": { + "rotate": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "angle": 4, "curve": 0, "c2": 0.6, "c3": 0.237}, {"time": 0.4167, "angle": -8.88, "curve": 0, "c2": 0.6, "c3": 0, "c4": 1.4}, + {"time": 1, "angle": 8.17, "curve": 0.701, "c4": 0.5}, {"time": 1.2333, "angle": 5, "curve": 0.461, "c3": 0.543}, {"time": 1.3333} + ], + "translate": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": 33.65, "y": -5, "curve": 0, "c2": 0.6, "c3": 0.237}, + {"time": 0.4167, "x": -62.54, "y": 309.16, "curve": 0, "c2": 0.6, "c3": 0, "c4": 1.4}, {"time": 1, "x": 12.32, "y": 268.04, "curve": 0.701, "c4": 0.5}, {"time": 1.2333} + ] + }, + "@shadow": { + "translate": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": 24.43, "curve": 0, "c2": 0.6, "c3": 0.237}, {"time": 0.4167, "x": -70.38, "curve": 0, "c2": 0.6, "c3": 0, "c4": 1.4}, + {"time": 1, "x": 5.15, "curve": 0.701, "c4": 0.5}, {"time": 1.2333, "x": -8.95, "curve": 0.461, "c3": 0.543}, {"time": 1.3333} + ], + "scale": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": 1.08, "y": 1.08, "curve": 0, "c2": 0.6, "c3": 0.237}, + {"time": 0.4167, "x": 0.85, "y": 0.85, "curve": 0, "c2": 0.6, "c3": 0, "c4": 1.4}, {"time": 1, "x": 0.9, "y": 0.9, "curve": 0.701, "c4": 0.5}, + {"time": 1.2333, "x": 1.1, "y": 1.1, "curve": 0.461, "c3": 0.543}, {"time": 1.3333} + ] + }, + "@leg-front-left": { + "translate": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": -0.29, "y": -5.47, "curve": 0, "c2": 0.6, "c3": 0.237}, {"time": 0.4167, "curve": "stepped"}, + {"time": 1, "curve": 0.701, "c4": 0.5}, {"time": 1.2333, "x": -0.95, "y": -14.45, "curve": 0.461, "c3": 0.543}, {"time": 1.3333} + ] + }, + "@leg-front-right": { + "translate": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": -0.29, "y": -5.47, "curve": 0, "c2": 0.6, "c3": 0.237}, {"time": 0.4167, "curve": "stepped"}, + {"time": 1, "curve": 0.701, "c4": 0.5}, {"time": 1.2333, "x": -1.66, "y": -25.29, "curve": 0.461, "c3": 0.543}, {"time": 1.3333} + ] + }, + "tail": { + "rotate": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "angle": 17.93, "curve": 0, "c2": 0.6, "c3": 0.237}, {"time": 0.4167, "angle": -15.3, "curve": 0, "c2": 0.6, "c3": 0, "c4": 1.4}, + {"time": 1, "angle": 24.81, "curve": 0.701, "c4": 0.5}, {"time": 1.2333, "angle": -15.84, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 1.3333} + ] + }, + "body-braid-02": { + "rotate": [ + {"angle": 3.5, "curve": 0.348, "c2": 0.38, "c3": 0.685, "c4": 0.73}, {"time": 0.4167, "angle": 50.59, "curve": 0.25, "c3": 0.75}, + {"time": 0.7667, "angle": 16.03, "curve": 0.25, "c3": 0.144}, {"time": 1.0833, "angle": 79.52, "curve": 0.25, "c3": 0.75}, {"time": 1.3333, "angle": 3.5} + ] + }, + "body-braid-03": { + "rotate": [ + {"angle": -1.71, "curve": 0.337, "c2": 0.34, "c3": 0.673, "c4": 0.69}, {"time": 0.05, "curve": 0.25, "c3": 0.75}, {"time": 0.4667, "angle": 45.56, "curve": 0.25, "c3": 0.75}, + {"time": 0.8167, "angle": 11.58, "curve": 0.25, "c3": 0.144}, {"time": 1.1333, "angle": 45.56, "curve": 0.243, "c3": 0.68, "c4": 0.71}, {"time": 1.3333, "angle": -1.71} + ] + }, + "body-braid-04": { + "rotate": [ + {"angle": -9.29, "curve": 0.323, "c2": 0.3, "c3": 0.66, "c4": 0.65}, {"time": 0.1167, "curve": 0.25, "c3": 0.75}, {"time": 0.5333, "angle": 36.13, "curve": 0.25, "c3": 0.75}, + {"time": 0.8833, "angle": -30, "curve": 0.25, "c3": 0.144}, {"time": 1.2, "angle": 36.13, "curve": 0.248, "c3": 0.628, "c4": 0.52}, {"time": 1.3333, "angle": -9.29} + ] + }, + "body-braid-05": { + "rotate": [ + {"angle": -8.3, "curve": 0.294, "c3": 0.631, "c4": 0.37}, {"time": 0.2, "curve": 0.25, "c3": 0.75}, {"time": 0.6167, "angle": -7.54, "curve": 0.25, "c3": 0.75}, + {"time": 0.9667, "angle": -31.56, "curve": 0.25, "c3": 0.144}, {"time": 1.2833, "angle": -7.54, "curve": 0.284, "c3": 0.625, "c4": 0.38}, {"time": 1.3333, "angle": -8.3} + ] + }, + "body-braid-06": { + "rotate": [ + {"angle": -20.59, "curve": 0.352, "c2": 0.41, "c3": 0.689, "c4": 0.75}, {"time": 0.05, "angle": 1.41, "curve": 0.25, "c3": 0.75}, {"time": 0.3, "curve": 0.25, "c3": 0.75}, + {"time": 0.7167, "angle": 1.41, "curve": 0.25, "c3": 0.75}, {"time": 1.0667, "angle": -42.25, "curve": 0.25, "c3": 0.144}, {"time": 1.3333, "angle": -20.59} + ] + }, + "body-fur-under-03": { + "translate": [ + {"x": -0.78, "y": 3.19, "curve": 0.338, "c2": 0.35, "c3": 0.672, "c4": 0.69}, {"time": 0.0167, "x": -0.59, "y": 2.43, "curve": 0.379, "c2": 0.6, "c3": 0.724}, + {"time": 0.1, "curve": 0.25, "c3": 0.75}, {"time": 0.4333, "x": 3.59, "y": -11.21, "curve": 0.25, "c3": 0.75}, {"time": 0.6, "x": -14.26, "y": 19.9, "curve": 0.25, "c3": 0.75}, + {"time": 0.7667, "x": 0.07, "y": 10.3, "curve": 0.25, "c3": 0.75}, {"time": 0.9333, "x": -26.35, "y": 20.75, "curve": 0.25, "c3": 0.75}, + {"time": 1.1, "x": -3.2, "y": 13.18, "curve": 0.243, "c3": 0.655, "c4": 0.63}, {"time": 1.3333, "x": -0.78, "y": 3.19} + ], + "shear": [ + {"x": 22.47, "curve": 0.25, "c3": 0.75}, {"time": 0.0833, "curve": 0.25, "c3": 0.75}, {"time": 0.4167, "x": 0.35, "curve": 0.25, "c3": 0.75}, + {"time": 0.5833, "x": 26.04, "y": -7.3, "curve": 0.25, "c3": 0.75}, {"time": 0.75, "x": 47.96, "curve": 0.25, "c3": 0.75}, + {"time": 0.9167, "x": 16.32, "y": -3.94, "curve": 0.25, "c3": 0.75}, {"time": 1.0833, "x": 47.78, "curve": 0.242, "c3": 0.667, "c4": 0.67}, {"time": 1.3333, "x": 22.47} + ] + }, + "body-fur-under-04": { + "translate": [ + {"x": -0.33, "y": 3.2, "curve": 0.348, "c2": 0.39, "c3": 0.683, "c4": 0.73}, {"time": 0.0333, "x": -0.15, "y": 1.46, "curve": 0.369, "c2": 0.63, "c3": 0.706}, + {"time": 0.0833, "curve": 0.25, "c3": 0.75}, {"time": 0.4167, "x": 3.59, "y": -11.21, "curve": 0.25, "c3": 0.75}, {"time": 0.5833, "x": -14.26, "y": 19.9, "curve": 0.25, "c3": 0.75}, + {"time": 0.75, "x": 0.07, "y": 10.3, "curve": 0.25, "c3": 0.75}, {"time": 0.9167, "x": -24.88, "y": 22.21, "curve": 0.25, "c3": 0.75}, + {"time": 1.0833, "x": -1.82, "y": 17.62, "curve": 0.242, "c3": 0.667, "c4": 0.67}, {"time": 1.3333, "x": -0.33, "y": 3.2} + ], + "shear": [ + {"x": 10.24, "curve": 0.36, "c2": 0.64, "c3": 0.695}, {"time": 0.05, "curve": 0.25, "c3": 0.75}, {"time": 0.3833, "x": -0.05, "curve": 0.25, "c3": 0.75}, + {"time": 0.55, "x": 18.75, "curve": 0.25, "c3": 0.75}, {"time": 0.7167, "x": 47.55, "curve": 0.25, "c3": 0.75}, {"time": 0.8833, "x": 9.03, "y": 3.36, "curve": 0.25, "c3": 0.75}, + {"time": 1.05, "x": 47.37, "curve": 0.244, "c3": 0.694, "c4": 0.77}, {"time": 1.3333, "x": 10.24} + ] + }, + "body-fur-under-02": { + "translate": [ + {"x": -2.23, "y": 6.28, "curve": 0.352, "c2": 0.41, "c3": 0.689, "c4": 0.75}, {"time": 0.05, "x": -0.78, "y": 2.18, "curve": 0.369, "c2": 0.63, "c3": 0.706}, + {"time": 0.1, "curve": 0.25, "c3": 0.75}, {"time": 0.4333, "x": 3.59, "y": -11.21, "curve": 0.25, "c3": 0.75}, {"time": 0.6, "x": -14.26, "y": 19.9, "curve": 0.25, "c3": 0.75}, + {"time": 0.7667, "x": 0.07, "y": 10.3, "curve": 0.25, "c3": 0.75}, {"time": 0.9333, "x": -32.26, "y": 17.84, "curve": 0.25, "c3": 0.75}, + {"time": 1.1, "x": -9.35, "y": 26.3, "curve": 0.243, "c3": 0.655, "c4": 0.63}, {"time": 1.3333, "x": -2.23, "y": 6.28} + ], + "shear": [ + {"x": -27.8, "curve": 0.375, "c2": 0.62, "c3": 0.716}, {"time": 0.05, "curve": 0.25, "c3": 0.75}, {"time": 0.3833, "x": -2.26, "curve": 0.25, "c3": 0.75}, + {"time": 0.55, "x": 32.83, "curve": 0.25, "c3": 0.75}, {"time": 0.7167, "x": 45.35, "curve": 0.25, "c3": 0.75}, {"time": 0.8833, "x": 23.11, "y": 3.36, "curve": 0.25, "c3": 0.75}, + {"time": 1.05, "x": 45.16, "curve": 0.244, "c3": 0.694, "c4": 0.77}, {"time": 1.3333, "x": -27.8} + ] + }, + "body-fur-under-01": { + "translate": [ + {"x": -0.14, "y": 0.84, "curve": 0.343, "c2": 0.39, "c3": 0.677, "c4": 0.73}, {"time": 0.0167, "x": -0.07, "y": 0.44, "curve": 0.36, "c2": 0.64, "c3": 0.695}, + {"time": 0.05, "curve": 0.25, "c3": 0.75}, {"time": 0.3833, "x": 3.59, "y": -11.21, "curve": 0.25, "c3": 0.75}, {"time": 0.55, "x": -14.26, "y": 19.9, "curve": 0.25, "c3": 0.75}, + {"time": 0.7167, "x": 0.07, "y": 10.3, "curve": 0.25, "c3": 0.75}, {"time": 0.8833, "x": -11.61, "y": 26.55, "curve": 0.25, "c3": 0.75}, + {"time": 1.05, "x": -1.67, "y": 10.27, "curve": 0.244, "c3": 0.694, "c4": 0.77}, {"time": 1.3333, "x": -0.14, "y": 0.84} + ], + "shear": [ + {"x": -4.09, "curve": 0.375, "c2": 0.5, "c3": 0.75}, {"time": 0.0333, "curve": 0.25, "c3": 0.75}, {"time": 0.3667, "x": -2.74, "y": 10.77, "curve": 0.25, "c3": 0.75}, + {"time": 0.5333, "x": 55.89, "y": -8.05, "curve": 0.25, "c3": 0.75}, {"time": 0.7, "x": 44.86, "y": 10.77, "curve": 0.25, "c3": 0.75}, + {"time": 0.8667, "x": 46.17, "y": -4.69, "curve": 0.25, "c3": 0.75}, {"time": 1.0333, "x": 44.68, "y": 10.77, "curve": 0.245, "c3": 0.711, "c4": 0.83}, {"time": 1.3333, "x": -4.09} + ] + }, + "body-fur-under-05": { + "translate": [ + {"x": 0.53, "y": 14.98, "curve": 0.335, "c2": 0.34, "c3": 0.674, "c4": 0.69}, {"time": 0.0667, "x": 0.29, "y": 8.07, "curve": 0.382, "c2": 0.57, "c3": 0.737}, + {"time": 0.1833, "curve": 0.25, "c3": 0.75}, {"time": 0.5167, "x": 3.59, "y": -11.21, "curve": 0.25, "c3": 0.75}, {"time": 0.6833, "x": -14.26, "y": 19.9, "curve": 0.25, "c3": 0.75}, + {"time": 0.85, "x": 0.07, "y": 10.3, "curve": 0.25, "c3": 0.75}, {"time": 1.0167, "x": -11.61, "y": 26.55, "curve": 0.25, "c3": 0.75}, + {"time": 1.1833, "x": 0.95, "y": 26.5, "curve": 0.253, "c3": 0.621, "c4": 0.48}, {"time": 1.3333, "x": 0.53, "y": 14.98} + ], + "shear": [ + {"x": 3.7, "curve": 0.382, "c2": 0.57, "c3": 0.737}, {"time": 0.1167, "curve": 0.25, "c3": 0.75}, {"time": 0.45, "x": 1.13, "y": -4.12, "curve": 0.25, "c3": 0.75}, + {"time": 0.6167, "x": 23.64, "curve": 0.25, "c3": 0.75}, {"time": 0.7833, "x": 48.74, "y": -4.12, "curve": 0.25, "c3": 0.75}, + {"time": 0.95, "x": 13.91, "y": 3.36, "curve": 0.25, "c3": 0.75}, {"time": 1.1167, "x": 69.84, "y": -4.12, "curve": 0.244, "c3": 0.646, "c4": 0.59}, {"time": 1.3333, "x": 3.7} + ] + }, + "body-braid-01": {"rotate": [{"angle": 2.31}]} + } + }, + "3968125421": { + "slots": { + "eyes": {"attachment": [{"time": 0.0167, "name": "eyes-angry"}, {"time": 0.75, "name": "eyes-shut"}, {"time": 0.8333, "name": "eyes"}]}, + "leg-back-left": {"attachment": [{"time": 0.35, "name": "leg-back-left-long"}, {"time": 0.5833, "name": "leg-back-left"}]}, + "mouth": {"attachment": [{"time": 0.0167, "name": "mouth-bite"}, {"time": 0.2667, "name": "mouth-open"}, {"time": 0.5833, "name": "mouth-bite"}, {"time": 0.8333, "name": "mouth"}]} + }, + "bones": { + "@pivot-back": { + "rotate": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "angle": -3.92, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "angle": 2.51, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.3333, "angle": -6, "curve": "stepped"}, {"time": 0.35, "angle": -16}, {"time": 0.5667, "angle": -16.5, "curve": "stepped"}, {"time": 0.5833, "curve": 0.313, "c3": 0.699}, + {"time": 0.75, "angle": 6, "curve": 0.313, "c3": 0.699}, {"time": 0.9167} + ], + "translate": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "x": 71.93, "y": -12.95, "curve": "stepped"}, {"time": 0.25, "x": 71.93, "y": -12.95, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.3333, "x": -135.5, "curve": "stepped"}, {"time": 0.35, "x": -560.54, "y": 85.29}, {"time": 0.5667, "x": -562.89, "y": 81.57, "curve": "stepped"}, + {"time": 0.5833, "x": -151.24, "curve": 0.313, "c3": 0.699}, {"time": 0.75, "x": -151.24, "y": 4.06, "curve": 0.313, "c3": 0.699}, {"time": 0.9167} + ], + "scale": [{"time": 0.3333, "curve": "stepped"}, {"time": 0.35, "x": -1, "curve": "stepped"}, {"time": 0.5667, "x": -1, "curve": "stepped"}, {"time": 0.5833}] + }, + "@shadow": { + "translate": [ + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 61.96, "curve": "stepped"}, {"time": 0.25, "x": 61.96, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.3333, "x": -143.36, "curve": "stepped"}, {"time": 0.35, "x": -143.36}, {"time": 0.5667, "x": -157.56, "curve": "stepped"}, {"time": 0.5833, "x": -161.35, "curve": "stepped"}, + {"time": 0.75, "x": -161.35, "curve": 0.313, "c3": 0.699}, {"time": 0.9167} + ], + "scale": [ + {"time": 0.0833, "curve": 0, "c2": 0.26, "c3": 0.369, "c4": 0.62}, {"time": 0.25, "x": 1.06, "y": 1.06, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "curve": "stepped"}, + {"time": 0.35}, {"time": 0.5667, "x": 1.08, "y": 1.08, "curve": "stepped"}, {"time": 0.5833, "curve": 0.313, "c3": 0.699}, + {"time": 0.75, "x": 1.08, "y": 1.08, "curve": 0.313, "c3": 0.699}, {"time": 0.9167} + ] + }, + "leg-back-left-IK": { + "translate": [ + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.1333, "x": 80.9, "curve": 0.161, "c3": 0.854}, {"time": 0.25, "x": 62.82, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.3333, "x": -99.34, "y": 18.56, "curve": "stepped"}, {"time": 0.35, "x": -653.9, "y": 153.81}, {"time": 0.5667, "x": -653.9, "y": 167.85, "curve": "stepped"}, + {"time": 0.5833, "x": -134.74, "curve": "stepped"}, {"time": 0.75, "x": -134.74, "curve": 0.313, "c3": 0.699}, {"time": 0.9167} + ] + }, + "leg-front-right-IK": { + "translate": [ + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 22.35, "curve": 0.306, "c3": 0.695}, {"time": 0.25, "x": 42.9, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.3333, "x": -131.73, "y": 44.58, "curve": "stepped"}, {"time": 0.35, "x": 244.36, "y": -4.92, "curve": 0.31, "c4": 0.8}, + {"time": 0.5667, "x": 247.43, "y": -1.85, "curve": "stepped"}, {"time": 0.5833, "x": -180.48, "curve": "stepped"}, {"time": 0.75, "x": -180.48, "curve": 0.313, "c3": 0.699}, + {"time": 0.9167} + ] + }, + "leg-front-left-IK": { + "translate": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "x": 40.76, "y": 5.08, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "x": 49, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.3333, "x": -180.92, "y": 40.32, "curve": "stepped"}, {"time": 0.35, "x": -197.17}, {"time": 0.5667, "x": -230.7, "y": 4.81, "curve": "stepped"}, + {"time": 0.5833, "x": -180.48, "curve": "stepped"}, {"time": 0.75, "x": -180.48, "curve": 0.313, "c3": 0.699}, {"time": 0.9167} + ] + }, + "@leg-front-left": { + "translate": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "x": -2.9, "y": -1.1, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.25, "x": -0.62, "y": -3.44, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "x": -1, "y": -5.53, "curve": "stepped"}, {"time": 0.35, "x": 4.4, "y": -4.91}, + {"time": 0.5667, "x": 7.49, "y": -5.17, "curve": "stepped"}, {"time": 0.5833, "x": 18.69, "y": 1.85, "curve": "stepped"}, + {"time": 0.75, "x": 18.69, "y": 1.85, "curve": 0.306, "c3": 0.695}, {"time": 0.9167} + ] + }, + "@leg-front-right": { + "translate": [ + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 4.31, "y": 11.86, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.25, "x": -10.48, "y": -15.33, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "x": -3.15, "y": 1.33, "curve": "stepped"}, {"time": 0.35, "x": -3.84, "y": 7.68}, + {"time": 0.5667, "x": -3.53, "y": 9.04, "curve": "stepped"}, {"time": 0.5833, "x": -2.24, "y": 13.67, "curve": 0.313, "c3": 0.699}, + {"time": 0.75, "x": -2.69, "y": -18.63, "curve": 0.313, "c3": 0.699}, {"time": 0.9167} + ] + }, + "@leg-back-left": { + "translate": [ + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.1333, "x": 0.67, "y": -7.85, "curve": 0.161, "c3": 0.854}, {"time": 0.25, "x": 0.74, "y": -5.43, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.3333, "x": -0.54, "y": 4.44, "curve": "stepped"}, {"time": 0.35, "x": 10.26, "y": 0.56, "curve": "stepped"}, {"time": 0.5667, "x": 10.26, "y": 0.56, "curve": "stepped"}, + {"time": 0.5833} + ] + }, + "tail": { + "rotate": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "angle": 15.61, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "angle": 20.44, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.3333, "angle": -15.58, "curve": "stepped"}, {"time": 0.35, "angle": 30.35}, {"time": 0.5667, "angle": 35.35, "curve": "stepped"}, + {"time": 0.5833, "angle": -11.84, "curve": 0.313, "c3": 0.699}, {"time": 0.75, "angle": 16.95, "curve": 0.313, "c3": 0.699}, {"time": 0.9167} + ] + }, + "@pivot-main": { + "translate": [{"time": 0.75, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.8333, "y": 31, "curve": 0.315, "c4": 0.8}, {"time": 0.9167}], + "scale": [{"time": 0.5667, "curve": "stepped"}, {"time": 0.75, "y": 0.98, "curve": 0.154, "c4": 0.9}, {"time": 0.9167}] + }, + "body-braid-02": { + "rotate": [ + {"angle": 3.5, "curve": 0.348, "c2": 0.38, "c3": 0.685, "c4": 0.73}, {"time": 0.25, "angle": 2.63, "curve": 0.25, "c3": 0.228, "c4": 0.99}, + {"time": 0.55, "angle": 43.23, "curve": 0.25, "c3": 0.75}, {"time": 0.8667, "curve": 0.284, "c3": 0.625, "c4": 0.38}, {"time": 0.9167, "angle": 3.5} + ] + }, + "body-braid-03": { + "rotate": [ + {"angle": -1.71, "curve": 0.337, "c2": 0.34, "c3": 0.673, "c4": 0.69}, {"time": 0.2833, "angle": 2.63, "curve": 0.25, "c3": 0.228, "c4": 0.99}, + {"time": 0.6, "angle": 23.44, "curve": 0.244, "c3": 0.7, "c4": 0.79}, {"time": 0.8667, "angle": 1.63, "curve": 0.366, "c2": 0.63, "c3": 0.703}, + {"time": 0.9, "curve": 0.313, "c3": 0.648, "c4": 0.35}, {"time": 0.9167, "angle": -1.71} + ] + }, + "body-braid-04": { + "rotate": [ + {"angle": -9.29, "curve": 0.323, "c2": 0.3, "c3": 0.66, "c4": 0.65}, {"time": 0.0333, "curve": 0.25, "c3": 0.75}, {"time": 0.35, "angle": 2.63, "curve": 0.25, "c3": 0.228, "c4": 0.99}, + {"time": 0.65, "angle": 16.91, "curve": 0.243, "c3": 0.649, "c4": 0.6}, {"time": 0.8667, "angle": 4.8, "curve": 0.356, "c2": 0.42, "c3": 0.696, "c4": 0.78}, + {"time": 0.9167, "angle": -9.29} + ] + }, + "body-braid-05": { + "rotate": [ + {"angle": -8.3, "curve": 0.294, "c3": 0.631, "c4": 0.37}, {"time": 0.1167, "curve": 0.25, "c3": 0.75}, {"time": 0.4333, "angle": -10.49, "curve": 0.25, "c3": 0.228, "c4": 0.99}, + {"time": 0.7333, "angle": 8.22, "curve": 0.258, "c3": 0.619, "c4": 0.45}, {"time": 0.8667, "angle": 5.2, "curve": 0.33, "c2": 0.32, "c3": 0.67, "c4": 0.68}, + {"time": 0.9167, "angle": -8.3} + ] + }, + "body-braid-06": { + "rotate": [ + {"angle": -20.59, "curve": 0.352, "c2": 0.41, "c3": 0.689, "c4": 0.75}, {"time": 0.2, "curve": 0.25, "c3": 0.75}, + {"time": 0.5167, "angle": -28.99, "curve": 0.25, "c3": 0.228, "c4": 0.99}, {"time": 0.8167, "angle": 9.53, "curve": 0.297, "c3": 0.634, "c4": 0.37}, + {"time": 0.8667, "angle": 8.86, "curve": 0.304, "c2": 0.22, "c3": 0.644, "c4": 0.58}, {"time": 0.9167, "angle": -20.59} + ] + }, + "body-fur-under-05": { + "translate": [{"x": 0.53, "y": 14.98}], + "shear": [ + {"x": 3.7, "curve": 0.382, "c2": 0.57, "c3": 0.737}, {"time": 0.0333, "x": -12.53, "curve": 0.25, "c3": 0.75}, {"time": 0.35, "x": 6.85, "curve": 0.25, "c3": 0.228, "c4": 0.99}, + {"time": 0.65, "x": -44.3, "curve": 0.248, "c3": 0.628, "c4": 0.52}, {"time": 0.8167, "x": -27.02, "curve": 0.356, "c2": 0.41, "c3": 0.707, "c4": 0.81}, {"time": 0.9167, "x": 3.7} + ] + }, + "body-fur-under-04": { + "translate": [{"x": -0.33, "y": 3.2}], + "shear": [ + {"x": 10.24, "curve": 0.36, "c2": 0.64, "c3": 0.695}, {"time": 0.3, "x": 13.82, "curve": 0.25, "c3": 0.228, "c4": 0.99}, + {"time": 0.6167, "x": -39.88, "curve": 0.243, "c3": 0.649, "c4": 0.6}, {"time": 0.8167, "x": -22.71, "curve": 0.382, "c2": 0.57, "c3": 0.735}, {"time": 0.9167, "x": 10.24} + ] + }, + "body-fur-under-03": { + "translate": [{"x": -0.78, "y": 3.19}], + "shear": [ + {"x": 22.47, "curve": 0.25, "c3": 0.75}, {"time": 0.25, "x": 19.28, "curve": 0.25, "c3": 0.228, "c4": 0.99}, {"time": 0.55, "x": -45.7, "curve": 0.244, "c3": 0.7, "c4": 0.79}, + {"time": 0.8167, "x": -3.18, "curve": 0.366, "c2": 0.63, "c3": 0.703}, {"time": 0.8667, "curve": 0.284, "c3": 0.625, "c4": 0.38}, {"time": 0.9167, "x": 22.47} + ] + }, + "body-fur-under-02": { + "translate": [{"x": -2.23, "y": 6.28}], + "shear": [ + {"x": -27.8, "curve": 0.375, "c2": 0.62, "c3": 0.716}, {"time": 0.2667, "x": 18.72, "curve": 0.25, "c3": 0.228, "c4": 0.99}, + {"time": 0.5667, "x": -43.03, "curve": 0.243, "c3": 0.68, "c4": 0.71}, {"time": 0.8167, "x": -5.6, "curve": 0.375, "c2": 0.62, "c3": 0.716}, + {"time": 0.8833, "curve": 0.297, "c3": 0.634, "c4": 0.37}, {"time": 0.9167, "x": -27.8} + ] + }, + "body-fur-under-01": { + "translate": [{"x": -0.14, "y": 0.84}], + "shear": [ + {"x": -4.09, "curve": 0.375, "c2": 0.5, "c3": 0.75}, {"time": 0.2, "x": 26.91, "curve": 0.25, "c3": 0.228, "c4": 0.99}, {"time": 0.5167, "x": -42.78, "curve": 0.25, "c3": 0.75}, + {"time": 0.8167, "curve": 0.265, "c3": 0.618, "c4": 0.43}, {"time": 0.9167, "x": -4.09} + ] + }, + "body-braid-01": {"rotate": [{"angle": 2.31}]} + }, + "drawOrder": [{"time": 0.35, "offsets": [{"slot": "leg-back-left", "offset": 3}]}, {"time": 0.5833}], + "events": [{"time": 0.35, "name": "start-attack"}, {"time": 0.5667, "name": "start-attack"}] + }, + "3676560492": { + "slots": { + "eyes": { + "attachment": [ + {"time": 0.05, "name": "eyes-angry"}, {"time": 0.55, "name": "eyes-shut"}, {"time": 0.65, "name": "eyes-angry"}, {"time": 0.9, "name": "eyes-shut"}, {"time": 0.9667, "name": "eyes"} + ] + }, + "mouth": { + "attachment": [ + {"time": 0.1167, "name": "mouth-open"}, {"time": 0.3833, "name": "mouth-bite"}, {"time": 0.65, "name": "mouth-open"}, {"time": 0.9, "name": "mouth-bite"}, + {"time": 0.9667, "name": "mouth"} + ] + } + }, + "bones": { + "@pivot-back": { + "rotate": [ + {"curve": 0, "c2": 0.2, "c3": 0.695}, {"time": 0.1, "angle": 6, "curve": 0, "c2": 0.2, "c3": 0.695}, {"time": 0.25, "angle": -10.31, "curve": 0.317, "c4": 0.8}, + {"time": 0.3833, "angle": 5}, {"time": 0.6333, "angle": 6, "curve": 0, "c2": 0.2, "c3": 0.695}, {"time": 0.7667, "angle": -5.94, "curve": 0.317, "c4": 0.8}, + {"time": 0.9, "angle": 6.92, "curve": 0, "c2": 0.2, "c3": 0.695}, {"time": 1} + ], + "translate": [ + {"time": 0.1, "curve": 0, "c2": 0.2, "c3": 0.695}, {"time": 0.25, "y": 82.86, "curve": 0.317, "c4": 0.8}, {"time": 0.3833, "curve": "stepped"}, + {"time": 0.6333, "curve": 0, "c2": 0.2, "c3": 0.695}, {"time": 0.7667, "y": 70.12, "curve": 0.317, "c4": 0.8}, {"time": 0.9} + ] + }, + "@pivot-main": { + "translate": [{"time": 0.1, "curve": 0, "c2": 0.15, "c3": 0.703}, {"time": 0.3833, "x": 542.6}, {"time": 0.6333, "x": 603.73, "curve": 0, "c2": 0.1, "c3": 0.852}, {"time": 0.9}] + }, + "@leg-front-left": { + "translate": [ + {"curve": 0, "c2": 0.2, "c3": 0.695}, {"time": 0.1, "x": -1.93, "y": -18.15, "curve": 0, "c2": 0.3, "c3": 0.62}, {"time": 0.25, "curve": 0.313, "c4": 0.8}, + {"time": 0.3833, "x": -1.93, "y": -18.15}, {"time": 0.6333, "x": -1.68, "y": -15.27, "curve": 0, "c2": 0.2, "c3": 0.691}, {"time": 0.7667, "curve": 0.309, "c4": 0.8}, + {"time": 0.9, "x": -1.93, "y": -18.15, "curve": 0, "c2": 0.19, "c3": 0.695}, {"time": 1} + ] + }, + "@leg-front-right": { + "translate": [ + {"curve": 0, "c2": 0.2, "c3": 0.695}, {"time": 0.1, "x": -3.41, "y": -31.95, "curve": 0, "c2": 0.3, "c3": 0.62}, {"time": 0.25, "curve": 0.313, "c4": 0.8}, + {"time": 0.3833, "x": -3.41, "y": -31.95}, {"time": 0.6333, "x": -3.16, "y": -29.07, "curve": 0, "c2": 0.2, "c3": 0.691}, {"time": 0.7667, "curve": 0.309, "c4": 0.8}, + {"time": 0.9, "x": -3.41, "y": -31.95, "curve": 0, "c2": 0.19, "c3": 0.695}, {"time": 1} + ] + }, + "@leg-back-left": { + "translate": [ + {"curve": 0, "c2": 0.2, "c3": 0.695}, {"time": 0.1, "x": -0.42, "y": -4.72, "curve": 0, "c2": 0.3, "c3": 0.62}, {"time": 0.25, "curve": 0.313, "c4": 0.8}, + {"time": 0.3833, "x": -0.42, "y": -4.72, "curve": "stepped"}, {"time": 0.6333, "x": -0.42, "y": -4.72, "curve": 0, "c2": 0.2, "c3": 0.691}, {"time": 0.7667, "curve": 0.309, "c4": 0.8}, + {"time": 0.9, "x": -0.42, "y": -4.72, "curve": 0, "c2": 0.19, "c3": 0.695}, {"time": 1} + ] + }, + "leg-front-right-IK": { + "translate": [ + {"time": 0.1, "curve": 0, "c2": 0.3, "c3": 0.62}, {"time": 0.2167, "x": -58.81, "y": 174.08, "curve": 0.257, "c3": 0.637, "c4": 0.43}, + {"time": 0.2833, "x": 10.68, "y": 136.08, "curve": 0.518, "c2": 0.35, "c4": 0.83}, {"time": 0.3833, "x": 11}, {"time": 0.6333, "x": -14.37, "curve": 0, "c2": 0.2, "c3": 0.691}, + {"time": 0.7333, "x": 26.13, "y": 111.42, "curve": 0.257, "c3": 0.63, "c4": 0.42}, {"time": 0.8, "x": -44.87, "y": 129.12, "curve": 0.503, "c2": 0.34, "c4": 0.83}, {"time": 0.9} + ] + }, + "leg-front-left-IK": { + "translate": [ + {"time": 0.1, "curve": 0, "c2": 0.3, "c3": 0.62}, {"time": 0.2167, "x": -73.46, "y": 138.38, "curve": 0.257, "c3": 0.637, "c4": 0.43}, + {"time": 0.2833, "x": -0.77, "y": 108.17, "curve": 0.518, "c2": 0.35, "c4": 0.83}, {"time": 0.3833, "x": 11}, {"time": 0.6333, "x": -14.37, "curve": 0, "c2": 0.2, "c3": 0.691}, + {"time": 0.7333, "x": 11.48, "y": 75.71, "curve": 0.257, "c3": 0.63, "c4": 0.42}, {"time": 0.8, "x": -56.77, "y": 100.13, "curve": 0.503, "c2": 0.34, "c4": 0.83}, {"time": 0.9} + ] + }, + "leg-back-left-IK": { + "translate": [ + {"time": 0.1, "curve": 0, "c2": 0.3, "c3": 0.62}, {"time": 0.2, "x": -56.56, "y": 95.34, "curve": 0.257, "c3": 0.637, "c4": 0.43}, + {"time": 0.2667, "x": 21.01, "y": 67.87, "curve": 0.518, "c2": 0.35, "c4": 0.83}, {"time": 0.3833, "x": 0.85}, {"time": 0.6333, "x": -16.87, "curve": 0, "c2": 0.2, "c3": 0.691}, + {"time": 0.7167, "x": 21.01, "y": 67.87, "curve": 0.257, "c3": 0.63, "c4": 0.42}, {"time": 0.7833, "x": -41.39, "y": 75.95, "curve": 0.503, "c2": 0.34, "c4": 0.83}, {"time": 0.9} + ] + }, + "tail": { + "rotate": [ + {"curve": 0, "c2": 0.2, "c3": 0.695}, {"time": 0.1, "angle": 21.16, "curve": 0, "c2": 0.2, "c3": 0.695}, {"time": 0.25, "angle": -27.62, "curve": 0.317, "c4": 0.8}, + {"time": 0.3833, "angle": 17.89}, {"time": 0.6333, "angle": 23.46, "curve": 0, "c2": 0.2, "c3": 0.695}, {"time": 0.7667, "angle": -27.7, "curve": 0.317, "c4": 0.8}, + {"time": 0.9, "angle": 21.16, "curve": 0, "c2": 0.2, "c3": 0.695}, {"time": 1} + ] + }, + "@shadow": { + "translate": [{"time": 0.1}, {"time": 0.3833, "x": 542.6}, {"time": 0.6333, "x": 603.73, "curve": 0, "c2": 0.1, "c3": 0.852}, {"time": 0.9}], + "scale": [ + {}, {"time": 0.1, "x": 1.08, "y": 1.08}, {"time": 0.25, "x": 0.9, "y": 0.9}, {"time": 0.3833, "x": 1.08, "y": 1.08}, {"time": 0.6333, "x": 1.1, "y": 1.1}, + {"time": 0.7833, "x": 0.9, "y": 0.9}, {"time": 0.9, "x": 1.08, "y": 1.08}, {"time": 1} + ] + }, + "body-fur-under-01": { + "shear": [ + {"x": 3.83, "curve": 0.375, "c2": 0.62, "c3": 0.716}, {"time": 0.0167, "curve": 0.25, "c3": 0.75}, {"time": 0.1, "x": 29.22, "curve": 0.25, "c3": 0.75}, + {"time": 0.3333, "x": -53.77, "curve": 0.25, "c3": 0.75}, {"time": 0.5833, "x": 43.54, "curve": 0.25, "c3": 0.75}, {"time": 0.7667, "x": -64.44, "curve": 0.25, "c3": 0.75}, + {"time": 0.9, "x": 29.43, "curve": 0.243, "c3": 0.68, "c4": 0.71}, {"time": 1, "x": 3.83} + ] + }, + "body-fur-under-03": { + "shear": [ + {"x": -14.87, "curve": 0.363, "c2": 0.44, "c3": 0.755}, {"time": 0.0667, "curve": 0.25, "c3": 0.75}, {"time": 0.15, "x": -3.53, "curve": 0.25, "c3": 0.75}, + {"time": 0.3833, "x": 33.65, "curve": 0.25, "c3": 0.75}, {"time": 0.6333, "x": -20.36, "curve": 0.25, "c3": 0.75}, {"time": 0.8167, "x": 43.83, "curve": 0.25, "c3": 0.75}, + {"time": 0.95, "x": -23.52, "curve": 0.258, "c3": 0.619, "c4": 0.45}, {"time": 1, "x": -14.87} + ] + }, + "body-fur-under-04": { + "shear": [ + {"x": -5.22, "curve": 0.375, "c2": 0.62, "c3": 0.716}, {"time": 0.0167, "curve": 0.25, "c3": 0.75}, {"time": 0.1, "x": -30.84, "curve": 0.25, "c3": 0.75}, + {"time": 0.3333, "x": 38.54, "curve": 0.25, "c3": 0.75}, {"time": 0.5833, "x": -50.56, "curve": 0.25, "c3": 0.75}, {"time": 0.7667, "x": 40.49, "curve": 0.25, "c3": 0.75}, + {"time": 0.9, "x": -40.09, "curve": 0.243, "c3": 0.68, "c4": 0.71}, {"time": 1, "x": -5.22} + ] + }, + "body-fur-under-02": { + "shear": [ + {"x": 7.08, "curve": 0.375, "c2": 0.5, "c3": 0.75}, {"time": 0.0333, "x": 14.15, "curve": 0.25, "c3": 0.75}, {"time": 0.2667, "x": -46.5, "curve": 0.25, "c3": 0.75}, + {"time": 0.5167, "x": 37.58, "curve": 0.25, "c3": 0.75}, {"time": 0.7167, "x": -65.53, "curve": 0.25, "c3": 0.75}, {"time": 0.8333, "x": 23.87, "curve": 0.25, "c3": 0.75}, + {"time": 0.9667, "curve": 0.25, "c3": 0.625, "c4": 0.5}, {"time": 1, "x": 7.08} + ] + }, + "body-fur-under-05": { + "shear": [ + {"x": -20.93, "curve": 0.375, "c2": 0.5, "c3": 0.75}, {"time": 0.0667, "curve": 0.25, "c3": 0.75}, {"time": 0.1333, "x": -34.2, "curve": 0.25, "c3": 0.75}, + {"time": 0.3667, "x": 32.44, "curve": 0.25, "c3": 0.75}, {"time": 0.6167, "x": -55.52, "curve": 0.25, "c3": 0.75}, {"time": 0.8167, "x": 35.57, "curve": 0.25, "c3": 0.75}, + {"time": 0.9333, "x": -41.86, "curve": 0.25, "c3": 0.625, "c4": 0.5}, {"time": 1, "x": -20.93} + ] + }, + "body-braid-02": { + "rotate": [ + {"curve": 0.25, "c3": 0.75}, {"time": 0.3167, "angle": 42.01, "curve": 0.25, "c3": 0.75}, {"time": 0.5667, "angle": 8.9, "curve": 0.25, "c3": 0.144}, + {"time": 0.8167, "angle": 57.87, "curve": 0.25, "c3": 0.75}, {"time": 1} + ] + }, + "body-braid-03": { + "rotate": [ + {"angle": 5.93, "curve": 0.375, "c2": 0.62, "c3": 0.716}, {"time": 0.0333, "curve": 0.25, "c3": 0.75}, {"time": 0.35, "angle": 20.46, "curve": 0.25, "c3": 0.75}, + {"time": 0.6167, "angle": -13.49, "curve": 0.25, "c3": 0.144}, {"time": 0.85, "angle": 46.3, "curve": 0.243, "c3": 0.68, "c4": 0.71}, {"time": 1, "angle": 5.93} + ] + }, + "body-braid-04": { + "rotate": [ + {"angle": 16.47, "curve": 0.378, "c2": 0.52, "c3": 0.748}, {"time": 0.0833, "curve": 0.25, "c3": 0.75}, {"time": 0.4, "angle": 36.13, "curve": 0.25, "c3": 0.75}, + {"time": 0.6667, "angle": -30, "curve": 0.25, "c3": 0.144}, {"time": 0.9, "angle": 36.13, "curve": 0.248, "c3": 0.628, "c4": 0.52}, {"time": 1, "angle": 16.47} + ] + }, + "body-braid-05": { + "rotate": [ + {"angle": -6.56, "curve": 0.32, "c2": 0.29, "c3": 0.757}, {"time": 0.15, "curve": 0.25, "c3": 0.75}, {"time": 0.4667, "angle": -7.54, "curve": 0.25, "c3": 0.75}, + {"time": 0.7167, "angle": -31.56, "curve": 0.25, "c3": 0.144}, {"time": 0.9667, "angle": -7.54, "curve": 0.284, "c3": 0.625, "c4": 0.38}, {"time": 1, "angle": -6.56} + ] + }, + "body-braid-06": { + "rotate": [ + {"angle": -2.49, "curve": 0.37, "c2": 0.63, "c3": 0.708}, {"time": 0.0333, "angle": 1.41, "curve": 0.25, "c3": 0.75}, {"time": 0.2167, "curve": 0.25, "c3": 0.75}, + {"time": 0.5333, "angle": 1.41, "curve": 0.25, "c3": 0.75}, {"time": 0.8, "angle": -42.25, "curve": 0.25, "c3": 0.144}, {"time": 1, "angle": -2.49} + ] + } + } + }, + "984729030": { + "slots": {"eyes": {"attachment": [{"time": 0.05, "name": "eyes-happy"}, {"time": 0.7667, "name": "eyes"}]}}, + "bones": { + "@pivot-back": { + "rotate": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "angle": -5.76, "curve": 0.306, "c3": 0.695}, {"time": 0.6667, "angle": -6.67, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.8333, "angle": 2.85, "curve": 0.306, "c3": 0.695}, {"time": 1} + ], + "translate": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": -11.96, "y": -12.91, "curve": 0.306, "c3": 0.695}, + {"time": 0.6667, "x": -17.52, "y": -16.38, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.8333} + ] + }, + "@leg-front-left": { + "translate": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": -20.02, "y": -2.36, "curve": "stepped"}, {"time": 0.6667, "x": -20.02, "y": -2.36, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.8333, "x": 5.31, "y": -7.32, "curve": 0.306, "c3": 0.695}, {"time": 1} + ] + }, + "@leg-front-right": { + "translate": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": -36.67, "y": 20.01, "curve": 0.306, "c3": 0.695}, + {"time": 0.6667, "x": -44.17, "y": 20.3, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.8333, "x": -12.71, "y": -17.14, "curve": 0.306, "c3": 0.695}, {"time": 1} + ] + }, + "@leg-back-left": { + "translate": [ + {"time": 0.1667, "curve": 0.306, "c3": 0.695}, {"time": 0.6667, "x": -4.62, "y": -2.21, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.8333, "x": -0.1, "y": -3.16, "curve": 0.306, "c3": 0.695}, {"time": 1} + ] + }, + "tail": { + "rotate": [ + {"curve": 0, "c2": 0.3, "c3": 0.54}, {"time": 0.1667, "angle": -11.59, "curve": 0.306, "c3": 0.695}, {"time": 0.4167, "angle": 2.75, "curve": 0.306, "c3": 0.695}, + {"time": 0.6667, "angle": -13.32, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.8333, "angle": 15.71, "curve": 0.306, "c3": 0.695}, {"time": 1} + ] + }, + "@shadow": { + "scale": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": 0.96, "y": 0.96}, {"time": 0.6667, "x": 0.94, "y": 0.94, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.8333, "x": 1.06, "y": 1.06, "curve": 0.306, "c3": 0.695}, {"time": 1} + ] + }, + "body-fur-under-05": { + "translate": [{"x": 0.53, "y": 14.98}], + "shear": [ + {"x": 3.7, "curve": 0.382, "c2": 0.57, "c3": 0.737}, {"time": 0.0667, "curve": 0.25, "c3": 0.75}, {"time": 0.1333, "x": -34.2, "curve": 0.25, "c3": 0.75}, + {"time": 0.3833, "x": 32.44, "curve": 0.25, "c3": 0.75}, {"time": 0.6333, "x": -55.52, "curve": 0.25, "c3": 0.75}, {"time": 0.8167, "x": 35.57, "curve": 0.25, "c3": 0.75}, + {"time": 0.95, "x": -41.86, "curve": 0.25, "c3": 0.625, "c4": 0.5}, {"time": 1, "x": 3.7} + ] + }, + "body-fur-under-04": { + "translate": [{"x": -0.33, "y": 3.2}], + "shear": [ + {"x": 10.24, "curve": 0.36, "c2": 0.64, "c3": 0.695}, {"time": 0.0333, "curve": 0.25, "c3": 0.75}, {"time": 0.1, "x": -30.84, "curve": 0.25, "c3": 0.75}, + {"time": 0.3333, "x": 38.54, "curve": 0.25, "c3": 0.75}, {"time": 0.6, "x": -50.56, "curve": 0.25, "c3": 0.75}, {"time": 0.7833, "x": 40.49, "curve": 0.25, "c3": 0.75}, + {"time": 0.9, "x": -40.09, "curve": 0.243, "c3": 0.68, "c4": 0.71}, {"time": 1, "x": 10.24} + ] + }, + "body-fur-under-03": { + "translate": [{"x": -0.78, "y": 3.19}], + "shear": [ + {"x": 22.47, "curve": 0.25, "c3": 0.75}, {"time": 0.0833, "curve": 0.25, "c3": 0.75}, {"time": 0.15, "x": -3.53, "curve": 0.25, "c3": 0.75}, + {"time": 0.3833, "x": 33.65, "curve": 0.25, "c3": 0.75}, {"time": 0.65, "x": -20.36, "curve": 0.25, "c3": 0.75}, {"time": 0.8333, "x": 43.83, "curve": 0.25, "c3": 0.75}, + {"time": 0.95, "x": -23.52, "curve": 0.258, "c3": 0.619, "c4": 0.45}, {"time": 1, "x": 22.47} + ] + }, + "body-fur-under-02": { + "translate": [{"x": -2.23, "y": 6.28}], + "shear": [ + {"x": -27.8, "curve": 0.375, "c2": 0.62, "c3": 0.716}, {"time": 0.0333, "x": 14.15, "curve": 0.25, "c3": 0.75}, {"time": 0.2833, "x": -46.5, "curve": 0.25, "c3": 0.75}, + {"time": 0.5333, "x": 37.58, "curve": 0.25, "c3": 0.75}, {"time": 0.7167, "x": -65.53, "curve": 0.25, "c3": 0.75}, {"time": 0.85, "x": 23.87, "curve": 0.25, "c3": 0.75}, + {"time": 0.9667, "curve": 0.25, "c3": 0.625, "c4": 0.5}, {"time": 1, "x": -27.8} + ] + }, + "body-fur-under-01": { + "translate": [{"x": -0.14, "y": 0.84}], + "shear": [ + {"x": -4.09, "curve": 0.375, "c2": 0.5, "c3": 0.75}, {"time": 0.0333, "curve": 0.25, "c3": 0.75}, {"time": 0.1, "x": 29.22, "curve": 0.25, "c3": 0.75}, + {"time": 0.3333, "x": -53.77, "curve": 0.25, "c3": 0.75}, {"time": 0.6, "x": 43.54, "curve": 0.25, "c3": 0.75}, {"time": 0.7833, "x": -64.44, "curve": 0.25, "c3": 0.75}, + {"time": 0.9, "x": 29.43, "curve": 0.243, "c3": 0.68, "c4": 0.71}, {"time": 1, "x": -4.09} + ] + }, + "body-braid-02": { + "rotate": [ + {"angle": 3.5, "curve": 0.348, "c2": 0.38, "c3": 0.685, "c4": 0.73}, {"time": 0.0167, "angle": 2.63, "curve": 0.25, "c3": 0.228, "c4": 0.99}, + {"time": 0.35, "angle": 25.58, "curve": 0.25, "c3": 0.75}, {"time": 0.6833, "curve": 0.284, "c3": 0.625, "c4": 0.38}, + {"time": 0.75, "angle": 0.34, "curve": 0.315, "c2": 0.27, "c3": 0.738, "c4": 0.92}, {"time": 1, "angle": 3.5} + ] + }, + "body-braid-03": { + "rotate": [ + {"angle": -1.71, "curve": 0.337, "c2": 0.34, "c3": 0.673, "c4": 0.69}, {"time": 0.0667, "angle": 2.63, "curve": 0.25, "c3": 0.228, "c4": 0.99}, + {"time": 0.3833, "angle": 23.44, "curve": 0.244, "c3": 0.7, "c4": 0.79}, {"time": 0.6833, "angle": 1.63, "curve": 0.366, "c2": 0.63, "c3": 0.703}, + {"time": 0.7167, "curve": 0.313, "c3": 0.648, "c4": 0.35}, {"time": 0.75, "angle": 0.06, "curve": 0.268, "c2": 0.1, "c3": 0.687, "c4": 0.74}, {"time": 1, "angle": -1.71} + ] + }, + "body-braid-04": { + "rotate": [ + {"angle": -9.29, "curve": 0.323, "c2": 0.3, "c3": 0.66, "c4": 0.65}, {"time": 0.1333, "angle": 2.63, "curve": 0.25, "c3": 0.228, "c4": 0.99}, + {"time": 0.45, "angle": 16.91, "curve": 0.243, "c3": 0.649, "c4": 0.6}, {"time": 0.6833, "angle": 4.8, "curve": 0.356, "c2": 0.42, "c3": 0.696, "c4": 0.78}, + {"time": 0.75, "angle": 1.11, "curve": 0.366, "c2": 0.63, "c3": 0.703}, {"time": 0.8, "curve": 0.245, "c3": 0.637, "c4": 0.56}, {"time": 1, "angle": -9.29} + ] + }, + "body-braid-05": { + "rotate": [ + {"angle": -8.3, "curve": 0.294, "c3": 0.631, "c4": 0.37}, {"time": 0.2167, "angle": -10.49, "curve": 0.25, "c3": 0.228, "c4": 0.99}, + {"time": 0.55, "angle": 8.22, "curve": 0.258, "c3": 0.619, "c4": 0.45}, {"time": 0.6833, "angle": 5.2, "curve": 0.33, "c2": 0.32, "c3": 0.67, "c4": 0.68}, + {"time": 0.75, "angle": 3.03, "curve": 0.381, "c2": 0.55, "c3": 0.742}, {"time": 0.8833, "curve": 0.263, "c3": 0.618, "c4": 0.43}, {"time": 1, "angle": -8.3} + ] + }, + "body-braid-06": { + "rotate": [ + {"angle": -20.59, "curve": 0.352, "c2": 0.41, "c3": 0.689, "c4": 0.75}, {"time": 0.1667, "curve": 0.25, "c3": 0.75}, + {"time": 0.4167, "angle": -28.99, "curve": 0.25, "c3": 0.228, "c4": 0.99}, {"time": 0.6667, "angle": 9.53, "curve": 0.297, "c3": 0.634, "c4": 0.37}, + {"time": 0.7, "angle": 8.86, "curve": 0.304, "c2": 0.22, "c3": 0.644, "c4": 0.58}, {"time": 0.75, "angle": 6.87, "curve": 0.351, "c2": 0.4, "c3": 0.757}, {"time": 1, "angle": -20.59} + ] + }, + "body-braid-01": {"rotate": [{"angle": 2.31}]} + }, + "events": [{"time": 0.1667, "name": "hit-buff"}] + }, + "2827866347": { + "slots": { + "eyes": {"attachment": [{"time": 0.05, "name": "eyes-shut"}, {"time": 0.7667, "name": "eyes"}]}, + "mouth": {"attachment": [{"time": 0.05, "name": "mouth-bite"}, {"time": 0.7667, "name": "mouth"}]} + }, + "bones": { + "@pivot-back": { + "rotate": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "angle": 3.5}, {"time": 0.6667, "angle": 4, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.8333, "angle": -1.98, "curve": 0.306, "c3": 0.695}, {"time": 1} + ], + "translate": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "y": 2.9}, {"time": 0.6667, "y": 3.91, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.8333, "y": -2.14, "curve": 0.306, "c3": 0.695}, {"time": 1} + ] + }, + "@leg-front-right": { + "translate": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": -0.92, "y": -19.87}, {"time": 0.6667, "x": -1.14, "y": -21.42, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.8333, "x": -0.43, "y": 9.97, "curve": 0.306, "c3": 0.695}, {"time": 1} + ] + }, + "@leg-front-left": { + "translate": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": 7.87, "y": -5.37}, {"time": 0.6667, "x": 9.12, "y": -5.44, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.8333, "x": -0.16, "y": 3.89, "curve": 0.306, "c3": 0.695}, {"time": 1} + ] + }, + "tail": { + "rotate": [ + {"curve": 0, "c2": 0.3, "c3": 0.54}, {"time": 0.1667, "angle": -17.97, "curve": 0.306, "c3": 0.695}, {"time": 0.4167, "angle": -9.96, "curve": 0.306, "c3": 0.695}, + {"time": 0.6667, "angle": -19.79, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.8333, "angle": 6.14, "curve": 0.306, "c3": 0.695}, {"time": 1} + ] + }, + "body-fur-under-01": { + "shear": [ + {"x": 22.06, "curve": 0.199, "c2": 0.17, "c3": 0.254, "c4": 0.99}, {"time": 0.3, "x": -42.78, "curve": 0.25, "c3": 0.75}, {"time": 0.6333, "curve": 0.265, "c3": 0.618, "c4": 0.43}, + {"time": 0.75, "x": 7.64, "curve": 0.351, "c2": 0.4, "c3": 0.757}, {"time": 0.9667, "x": 26.91, "curve": 0.368, "c3": 0.696, "c4": 0.36}, {"time": 1, "x": 22.06} + ] + }, + "body-fur-under-03": { + "shear": [ + {"x": 19.01, "curve": 0.348, "c2": 0.66, "c3": 0.682}, {"time": 0.0167, "x": 19.28, "curve": 0.25, "c3": 0.228, "c4": 0.99}, + {"time": 0.35, "x": -45.7, "curve": 0.244, "c3": 0.7, "c4": 0.79}, {"time": 0.6333, "x": -3.18, "curve": 0.366, "c2": 0.63, "c3": 0.703}, + {"time": 0.6833, "curve": 0.284, "c3": 0.625, "c4": 0.38}, {"time": 0.75, "x": 2.51, "curve": 0.315, "c2": 0.27, "c3": 0.738, "c4": 0.92}, {"time": 1, "x": 19.01} + ] + }, + "body-fur-under-04": { + "shear": [ + {"x": 8.33, "curve": 0.379, "c2": 0.6, "c3": 0.724}, {"time": 0.0833, "x": 13.82, "curve": 0.25, "c3": 0.228, "c4": 0.99}, + {"time": 0.4167, "x": -39.88, "curve": 0.243, "c3": 0.649, "c4": 0.6}, {"time": 0.6333, "x": -22.71, "curve": 0.382, "c2": 0.57, "c3": 0.735}, + {"time": 0.75, "x": -15.91, "curve": 0.242, "c3": 0.667, "c4": 0.67}, {"time": 1, "x": 8.33} + ] + }, + "body-fur-under-02": { + "shear": [ + {"x": 17.87, "curve": 0.36, "c2": 0.64, "c3": 0.696}, {"time": 0.0333, "x": 18.72, "curve": 0.25, "c3": 0.228, "c4": 0.99}, + {"time": 0.3667, "x": -43.03, "curve": 0.243, "c3": 0.68, "c4": 0.71}, {"time": 0.6333, "x": -5.6, "curve": 0.375, "c2": 0.62, "c3": 0.716}, + {"time": 0.7, "curve": 0.297, "c3": 0.634, "c4": 0.37}, {"time": 0.75, "x": 1.3, "curve": 0.293, "c2": 0.19, "c3": 0.719, "c4": 0.85}, {"time": 1, "x": 17.87} + ] + }, + "body-fur-under-05": { + "shear": [ + {"x": -0.28, "curve": 0.381, "c2": 0.55, "c3": 0.742}, {"time": 0.1333, "x": 6.85, "curve": 0.25, "c3": 0.228, "c4": 0.99}, + {"time": 0.45, "x": -44.3, "curve": 0.248, "c3": 0.628, "c4": 0.52}, {"time": 0.6333, "x": -27.02, "curve": 0.356, "c2": 0.41, "c3": 0.707, "c4": 0.81}, + {"time": 0.75, "x": -14.63, "curve": 0.366, "c2": 0.63, "c3": 0.703}, {"time": 0.8, "x": -12.53, "curve": 0.245, "c3": 0.637, "c4": 0.56}, {"time": 1, "x": -0.28} + ] + }, + "body-braid-02": { + "rotate": [ + {"angle": 2.59, "curve": 0.348, "c2": 0.66, "c3": 0.682}, {"time": 0.0167, "angle": 2.63, "curve": 0.25, "c3": 0.228, "c4": 0.99}, + {"time": 0.35, "angle": 20.21, "curve": 0.25, "c3": 0.75}, {"time": 0.6833, "curve": 0.284, "c3": 0.625, "c4": 0.38}, + {"time": 0.75, "angle": 0.34, "curve": 0.315, "c2": 0.27, "c3": 0.738, "c4": 0.92}, {"time": 1, "angle": 2.59} + ] + }, + "body-braid-03": { + "rotate": [ + {"angle": 2.29, "curve": 0.375, "c2": 0.62, "c3": 0.715}, {"time": 0.0667, "angle": 2.63, "curve": 0.25, "c3": 0.228, "c4": 0.99}, + {"time": 0.3833, "angle": 23.44, "curve": 0.244, "c3": 0.7, "c4": 0.79}, {"time": 0.6833, "angle": 1.63, "curve": 0.366, "c2": 0.63, "c3": 0.703}, + {"time": 0.7167, "curve": 0.313, "c3": 0.648, "c4": 0.35}, {"time": 0.75, "angle": 0.06, "curve": 0.268, "c2": 0.1, "c3": 0.687, "c4": 0.74}, {"time": 1, "angle": 2.29} + ] + }, + "body-braid-04": { + "rotate": [ + {"angle": 1.66, "curve": 0.381, "c2": 0.55, "c3": 0.742}, {"time": 0.1333, "angle": 2.63, "curve": 0.25, "c3": 0.228, "c4": 0.99}, + {"time": 0.45, "angle": 16.91, "curve": 0.243, "c3": 0.649, "c4": 0.6}, {"time": 0.6833, "angle": 4.8, "curve": 0.356, "c2": 0.42, "c3": 0.696, "c4": 0.78}, + {"time": 0.75, "angle": 1.11, "curve": 0.366, "c2": 0.63, "c3": 0.703}, {"time": 0.8, "curve": 0.245, "c3": 0.637, "c4": 0.56}, {"time": 1, "angle": 1.66} + ] + }, + "body-braid-05": { + "rotate": [ + {"angle": -3.2, "curve": 0.354, "c2": 0.41, "c3": 0.756}, {"time": 0.2167, "angle": -10.49, "curve": 0.25, "c3": 0.228, "c4": 0.99}, + {"time": 0.55, "angle": 8.22, "curve": 0.258, "c3": 0.619, "c4": 0.45}, {"time": 0.6833, "angle": 5.2, "curve": 0.33, "c2": 0.32, "c3": 0.67, "c4": 0.68}, + {"time": 0.75, "angle": 3.03, "curve": 0.381, "c2": 0.55, "c3": 0.742}, {"time": 0.8833, "curve": 0.263, "c3": 0.618, "c4": 0.43}, {"time": 1, "angle": -3.2} + ] + }, + "body-braid-06": { + "rotate": [ + {"angle": 6.87, "curve": 0.351, "c2": 0.4, "c3": 0.757}, {"time": 0.1667, "curve": 0.25, "c3": 0.75}, {"time": 0.4167, "angle": -28.99, "curve": 0.25, "c3": 0.228, "c4": 0.99}, + {"time": 0.6667, "angle": 9.53, "curve": 0.297, "c3": 0.634, "c4": 0.37}, {"time": 0.7, "angle": 8.86, "curve": 0.304, "c2": 0.22, "c3": 0.644, "c4": 0.58}, {"time": 0.75, "angle": 6.87} + ] + } + }, + "events": [{"time": 0.1667, "name": "hit-buff"}] + }, + "2668995378": { + "slots": { + "eyes": {"attachment": [{"time": 0.0167, "name": "eyes-shut"}, {"time": 0.1833, "name": "eyes-angry"}, {"time": 0.4, "name": "eyes"}]}, + "mouth": {"attachment": [{"time": 0.0167, "name": "mouth-bite"}, {"time": 0.4, "name": "mouth"}]} + }, + "bones": { + "@pivot-back": { + "rotate": [ + {"curve": "stepped"}, {"time": 0.0167, "angle": -20}, {"time": 0.1667, "angle": -22, "curve": 0.464, "c4": 0.7}, {"time": 0.3167, "angle": 5.2, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.4167} + ], + "translate": [{"curve": "stepped"}, {"time": 0.0167, "x": 75, "y": -4.42}, {"time": 0.1667, "x": 80, "y": -7.47, "curve": 0.464, "c4": 0.7}, {"time": 0.3167}] + }, + "@leg-front-left": {"translate": [{"time": 0.1667, "curve": 0.62, "c4": 0.3}, {"time": 0.3167, "x": -1.1, "y": -14.87, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.4167}]}, + "@shadow": { + "translate": [ + {"curve": "stepped"}, {"time": 0.0167, "x": 70.3, "curve": "stepped"}, {"time": 0.1667, "x": 70.3, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.3167, "x": 12.49, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.4167} + ], + "scale": [ + {"curve": "stepped"}, {"time": 0.0167, "x": 0.98, "y": 0.98}, {"time": 0.1667, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.3167, "x": 1.08, "y": 1.08, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.4167} + ] + }, + "leg-back-left-IK": { + "translate": [ + {"curve": "stepped"}, {"time": 0.0167, "x": 20.18, "y": 0.9, "curve": "stepped"}, {"time": 0.1667, "x": 20.18, "y": 0.9, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333} + ] + }, + "@leg-back-left": { + "translate": [ + {"curve": "stepped"}, {"time": 0.0167, "x": -0.94, "y": 4.51, "curve": "stepped"}, {"time": 0.1667, "x": -0.94, "y": 4.51, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3167} + ] + }, + "@pivot-main": {"translate": [{"curve": "stepped"}, {"time": 0.0167, "x": 20, "curve": "stepped"}, {"time": 0.3167, "x": 20, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.4167}]}, + "@leg-front-right": {"translate": [{"time": 0.1667, "curve": 0.62, "c4": 0.3}, {"time": 0.3167, "x": -2.11, "y": -28.46, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.4167}]}, + "tail": { + "rotate": [ + {"curve": "stepped"}, {"time": 0.0167, "angle": 19}, {"time": 0.1667, "angle": 23.91, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.3167, "angle": -21.75, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.4167} + ] + }, + "leg-front-right-IK": { + "translate": [ + {"curve": "stepped"}, {"time": 0.0167, "x": 44.88, "y": 143.25}, {"time": 0.0833, "x": -0.81, "y": 175.84}, {"time": 0.1667, "x": 46.95, "y": 154.35, "curve": 0.306, "c4": 0.8}, + {"time": 0.3167} + ] + }, + "leg-front-left-IK": { + "translate": [ + {"curve": "stepped"}, {"time": 0.0167, "x": -4.98, "y": 86.81}, {"time": 0.0833, "x": 23.52, "y": 63.22}, {"time": 0.1667, "x": -2.69, "y": 90.83, "curve": 0.306, "c4": 0.8}, + {"time": 0.3167} + ] + }, + "body-braid-02": { + "rotate": [ + {"angle": 3.5, "curve": 0.348, "c2": 0.38, "c3": 0.685, "c4": 0.73}, {"time": 0.0333, "angle": 2.63, "curve": 0.25, "c3": 0.228, "c4": 0.99}, + {"time": 0.1667, "angle": 43.23, "curve": 0.25, "c3": 0.75}, {"time": 0.3, "curve": 0.284, "c3": 0.625, "c4": 0.38}, + {"time": 0.3333, "angle": 0.34, "curve": 0.304, "c2": 0.24, "c3": 0.688, "c4": 0.74}, {"time": 0.4167, "angle": 3.5} + ] + }, + "body-braid-03": { + "rotate": [ + {"angle": -1.71, "curve": 0.337, "c2": 0.34, "c3": 0.673, "c4": 0.69}, {"time": 0.05, "angle": 2.63, "curve": 0.25, "c3": 0.228, "c4": 0.99}, + {"time": 0.1833, "angle": 23.44, "curve": 0.244, "c3": 0.7, "c4": 0.79}, {"time": 0.3, "angle": 1.63, "curve": 0.366, "c2": 0.63, "c3": 0.703}, + {"time": 0.3167, "curve": 0.313, "c3": 0.648, "c4": 0.35}, {"time": 0.3333, "angle": 0.06, "curve": 0.267, "c2": 0.1, "c3": 0.654, "c4": 0.62}, {"time": 0.4167, "angle": -1.71} + ] + }, + "body-braid-04": { + "rotate": [ + {"angle": -9.29, "curve": 0.323, "c2": 0.3, "c3": 0.66, "c4": 0.65}, {"time": 0.0667, "angle": 2.63, "curve": 0.25, "c3": 0.228, "c4": 0.99}, + {"time": 0.2167, "angle": 16.91, "curve": 0.243, "c3": 0.649, "c4": 0.6}, {"time": 0.3, "angle": 4.8, "curve": 0.356, "c2": 0.42, "c3": 0.696, "c4": 0.78}, + {"time": 0.3333, "angle": 1.11, "curve": 0.366, "c2": 0.63, "c3": 0.703}, {"time": 0.35, "curve": 0.25, "c3": 0.625, "c4": 0.5}, {"time": 0.4167, "angle": -9.29} + ] + }, + "body-braid-05": { + "rotate": [ + {"angle": -8.3, "curve": 0.294, "c3": 0.631, "c4": 0.37}, {"time": 0.1, "angle": -10.49, "curve": 0.25, "c3": 0.228, "c4": 0.99}, + {"time": 0.25, "angle": 8.22, "curve": 0.258, "c3": 0.619, "c4": 0.45}, {"time": 0.3, "angle": 5.2, "curve": 0.33, "c2": 0.32, "c3": 0.67, "c4": 0.68}, + {"time": 0.3333, "angle": 3.03, "curve": 0.381, "c2": 0.55, "c3": 0.742}, {"time": 0.3833, "curve": 0.276, "c3": 0.621, "c4": 0.4}, {"time": 0.4167, "angle": -8.3} + ] + }, + "body-braid-06": { + "rotate": [ + {"angle": -20.59, "curve": 0.352, "c2": 0.41, "c3": 0.689, "c4": 0.75}, {"time": 0.15, "angle": -28.99, "curve": 0.25, "c3": 0.228, "c4": 0.99}, + {"time": 0.2833, "angle": 9.53, "curve": 0.297, "c3": 0.634, "c4": 0.37}, {"time": 0.3, "angle": 8.86, "curve": 0.304, "c2": 0.22, "c3": 0.644, "c4": 0.58}, + {"time": 0.3333, "angle": 6.87, "curve": 0.351, "c2": 0.4, "c3": 0.757}, {"time": 0.4167, "angle": -20.59} + ] + }, + "body-fur-under-01": { + "translate": [{"x": -0.14, "y": 0.84}], + "shear": [ + {"x": -4.09, "curve": 0.375, "c2": 0.5, "c3": 0.75}, {"time": 0.05, "x": 1.17, "curve": 0.352, "c2": 0.65, "c3": 0.687}, {"time": 0.0667, "curve": 0.25, "c3": 0.75}, + {"time": 0.2333, "x": 51.41, "curve": 0.242, "c3": 0.663, "c4": 0.65}, {"time": 0.4167, "x": -4.09} + ] + }, + "body-fur-under-02": { + "translate": [{"x": -2.23, "y": 6.28}], + "shear": [ + {"x": -27.8, "curve": 0.375, "c2": 0.62, "c3": 0.716}, {"time": 0.05, "x": 14.59, "curve": 0.382, "c2": 0.57, "c3": 0.735}, {"time": 0.1333, "curve": 0.25, "c3": 0.75}, + {"time": 0.3, "x": 51.41, "curve": 0.252, "c3": 0.622, "c4": 0.48}, {"time": 0.4167, "x": -27.8} + ] + }, + "body-fur-under-03": { + "translate": [{"x": -0.78, "y": 3.19}], + "shear": [ + {"x": 22.47, "curve": 0.25, "c3": 0.75}, {"time": 0.05, "x": 3.57, "curve": 0.366, "c2": 0.63, "c3": 0.703}, {"time": 0.0833, "curve": 0.25, "c3": 0.75}, + {"time": 0.25, "x": 51.41, "curve": 0.243, "c3": 0.649, "c4": 0.6}, {"time": 0.4167, "x": 22.47} + ] + }, + "body-fur-under-04": { + "translate": [{"x": -0.33, "y": 3.2}], + "shear": [ + {"x": 10.24, "curve": 0.36, "c2": 0.64, "c3": 0.695}, {"time": 0.05, "x": 10.42, "curve": 0.38, "c2": 0.59, "c3": 0.727}, {"time": 0.1167, "curve": 0.25, "c3": 0.75}, + {"time": 0.2833, "x": 51.41, "curve": 0.248, "c3": 0.628, "c4": 0.52}, {"time": 0.4167, "x": 10.24} + ] + }, + "body-fur-under-05": { + "translate": [{"x": 0.53, "y": 14.98}], + "shear": [ + {"x": 3.7, "curve": 0.382, "c2": 0.57, "c3": 0.737}, {"time": 0.05, "x": 6.69, "curve": 0.375, "c2": 0.62, "c3": 0.716}, {"time": 0.1, "curve": 0.25, "c3": 0.75}, + {"time": 0.2667, "x": 51.41, "curve": 0.245, "c3": 0.637, "c4": 0.56}, {"time": 0.4167, "x": 3.7} + ] + }, + "body-braid-01": {"rotate": [{"angle": 2.31}]} + } + }, + "858481981": { + "slots": { + "eyes": {"attachment": [{"time": 0.0167, "name": "eyes-shut"}, {"time": 0.1833, "name": "eyes-angry"}, {"time": 0.4, "name": "eyes"}]}, + "mouth": {"attachment": [{"time": 0.0167, "name": "mouth-bite"}, {"time": 0.4, "name": "mouth"}]} + }, + "bones": { + "tail": { + "rotate": [ + {"curve": "stepped"}, {"time": 0.0167, "angle": 35.35}, {"time": 0.1667, "angle": 50.35, "curve": 0.315, "c4": 0.8}, {"time": 0.3167, "angle": -21.75, "curve": 0, "c2": 0.1, "c3": 0.85}, + {"time": 0.4167} + ] + }, + "leg-front-right-IK": { + "translate": [{"curve": "stepped"}, {"time": 0.0167, "x": 74.76, "y": 322.04}, {"time": 0.1667, "x": 85.96, "y": 349.35, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3167}] + }, + "@pivot-back": { + "rotate": [ + {"curve": "stepped"}, {"time": 0.0167, "angle": -45}, {"time": 0.1667, "angle": -50, "curve": 0.464, "c4": 0.7}, {"time": 0.3167, "angle": 5.2, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.4167} + ], + "translate": [{"curve": "stepped"}, {"time": 0.0167, "x": 94.99, "y": -21}, {"time": 0.1667, "x": 107, "y": -60, "curve": 0.464, "c4": 0.7}, {"time": 0.3167}] + }, + "@shadow": { + "translate": [ + {"curve": "stepped"}, {"time": 0.0167, "x": 70.3, "curve": "stepped"}, {"time": 0.1667, "x": 70.3, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.3167, "x": 12.49, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.4167} + ], + "scale": [ + {"curve": "stepped"}, {"time": 0.0167, "x": 0.98, "y": 0.98}, {"time": 0.1667, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.3167, "x": 1.08, "y": 1.08, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.4167} + ] + }, + "leg-back-left-IK": { + "translate": [ + {"curve": "stepped"}, {"time": 0.0167, "x": 11.67, "y": 0.9, "curve": "stepped"}, {"time": 0.1667, "x": 11.67, "y": 0.9, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333} + ] + }, + "@leg-back-left": {"translate": [{"curve": "stepped"}, {"time": 0.0167, "x": -2.63, "y": 8.92}, {"time": 0.1667, "x": 18.61, "y": -8.3, "curve": 0.464, "c4": 0.7}, {"time": 0.3167}]}, + "@pivot-main": {"translate": [{"curve": "stepped"}, {"time": 0.0167, "x": 20, "curve": "stepped"}, {"time": 0.3167, "x": 20, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.4167}]}, + "leg-front-left-IK": { + "translate": [{"curve": "stepped"}, {"time": 0.0167, "x": -4.7, "y": 168.09}, {"time": 0.1667, "x": 6.72, "y": 174.87, "curve": 0.306, "c3": 0.695}, {"time": 0.3167}] + }, + "@leg-front-left": {"translate": [{"time": 0.1667, "curve": 0.62, "c4": 0.3}, {"time": 0.3167, "x": -1.1, "y": -14.87, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.4167}]}, + "@leg-front-right": {"translate": [{"time": 0.1667, "curve": 0.62, "c4": 0.3}, {"time": 0.3167, "x": -2.11, "y": -28.46, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.4167}]}, + "body-braid-02": { + "rotate": [ + {"angle": 3.5, "curve": 0.348, "c2": 0.38, "c3": 0.685, "c4": 0.73}, {"time": 0.1167, "angle": 2.63, "curve": 0.25, "c3": 0.228, "c4": 0.99}, + {"time": 0.25, "angle": 43.23, "curve": 0.25, "c3": 0.75}, {"time": 0.4, "curve": 0.284, "c3": 0.625, "c4": 0.38}, {"time": 0.4167, "angle": 3.5} + ] + }, + "body-braid-03": { + "rotate": [ + {"angle": -1.71, "curve": 0.337, "c2": 0.34, "c3": 0.673, "c4": 0.69}, {"time": 0.1333, "angle": 2.63, "curve": 0.25, "c3": 0.228, "c4": 0.99}, + {"time": 0.2667, "angle": 23.44, "curve": 0.244, "c3": 0.7, "c4": 0.79}, {"time": 0.4, "angle": 1.63, "curve": 0.366, "c2": 0.63, "c3": 0.703}, {"time": 0.4167, "angle": -1.71} + ] + }, + "body-braid-04": { + "rotate": [ + {"angle": -9.29, "curve": 0.323, "c2": 0.3, "c3": 0.66, "c4": 0.65}, {"time": 0.0167, "curve": 0.25, "c3": 0.75}, {"time": 0.1667, "angle": 2.63, "curve": 0.25, "c3": 0.228, "c4": 0.99}, + {"time": 0.3, "angle": 16.91, "curve": 0.243, "c3": 0.649, "c4": 0.6}, {"time": 0.4, "angle": 4.8, "curve": 0.356, "c2": 0.42, "c3": 0.696, "c4": 0.78}, {"time": 0.4167, "angle": -9.29} + ] + }, + "body-braid-05": { + "rotate": [ + {"angle": -8.3, "curve": 0.294, "c3": 0.631, "c4": 0.37}, {"time": 0.05, "curve": 0.25, "c3": 0.75}, {"time": 0.2, "angle": -10.49, "curve": 0.25, "c3": 0.228, "c4": 0.99}, + {"time": 0.3333, "angle": 8.22, "curve": 0.258, "c3": 0.619, "c4": 0.45}, {"time": 0.4, "angle": 5.2, "curve": 0.33, "c2": 0.32, "c3": 0.67, "c4": 0.68}, {"time": 0.4167, "angle": -8.3} + ] + }, + "body-braid-06": { + "rotate": [ + {"angle": -20.59, "curve": 0.352, "c2": 0.41, "c3": 0.689, "c4": 0.75}, {"time": 0.1, "curve": 0.25, "c3": 0.75}, + {"time": 0.2333, "angle": -28.99, "curve": 0.25, "c3": 0.228, "c4": 0.99}, {"time": 0.3833, "angle": 9.53, "curve": 0.297, "c3": 0.634, "c4": 0.37}, + {"time": 0.4, "angle": 8.86, "curve": 0.304, "c2": 0.22, "c3": 0.644, "c4": 0.58}, {"time": 0.4167, "angle": -20.59} + ] + }, + "body-fur-under-02": { + "translate": [{"x": -2.23, "y": 6.28}], + "shear": [ + {"x": -27.8, "curve": 0.375, "c2": 0.62, "c3": 0.716}, {"time": 0.05, "x": 14.59, "curve": 0.382, "c2": 0.57, "c3": 0.735}, {"time": 0.1333, "curve": 0.25, "c3": 0.75}, + {"time": 0.3, "x": 51.41, "curve": 0.252, "c3": 0.622, "c4": 0.48}, {"time": 0.4167, "x": -27.8} + ] + }, + "body-fur-under-03": { + "translate": [{"x": -0.78, "y": 3.19}], + "shear": [ + {"x": 22.47, "curve": 0.25, "c3": 0.75}, {"time": 0.05, "x": 3.57, "curve": 0.366, "c2": 0.63, "c3": 0.703}, {"time": 0.0833, "curve": 0.25, "c3": 0.75}, + {"time": 0.25, "x": 51.41, "curve": 0.243, "c3": 0.649, "c4": 0.6}, {"time": 0.4167, "x": 22.47} + ] + }, + "body-fur-under-05": { + "translate": [{"x": 0.53, "y": 14.98}], + "shear": [ + {"x": 3.7, "curve": 0.382, "c2": 0.57, "c3": 0.737}, {"time": 0.05, "x": 6.69, "curve": 0.375, "c2": 0.62, "c3": 0.716}, {"time": 0.1, "curve": 0.25, "c3": 0.75}, + {"time": 0.2667, "x": 51.41, "curve": 0.245, "c3": 0.637, "c4": 0.56}, {"time": 0.4167, "x": 3.7} + ] + }, + "body-fur-under-04": { + "translate": [{"x": -0.33, "y": 3.2}], + "shear": [ + {"x": 10.24, "curve": 0.36, "c2": 0.64, "c3": 0.695}, {"time": 0.05, "x": 10.42, "curve": 0.38, "c2": 0.59, "c3": 0.727}, {"time": 0.1167, "curve": 0.25, "c3": 0.75}, + {"time": 0.2833, "x": 51.41, "curve": 0.248, "c3": 0.628, "c4": 0.52}, {"time": 0.4167, "x": 10.24} + ] + }, + "body-fur-under-01": { + "translate": [{"x": -0.14, "y": 0.84}], + "shear": [ + {"x": -4.09, "curve": 0.375, "c2": 0.5, "c3": 0.75}, {"time": 0.05, "x": 1.17, "curve": 0.352, "c2": 0.65, "c3": 0.687}, {"time": 0.0667, "curve": 0.25, "c3": 0.75}, + {"time": 0.2333, "x": 51.41, "curve": 0.242, "c3": 0.663, "c4": 0.65}, {"time": 0.4167, "x": -4.09} + ] + }, + "body-braid-01": {"rotate": [{"angle": 2.31}]} + } + }, + "1175182584": { + "slots": { + "eyes": {"attachment": [{"time": 0.0167, "name": "eyes-shut"}, {"time": 0.5833, "name": "eyes-angry"}, {"time": 0.8333, "name": "eyes-shut"}, {"time": 0.9167, "name": "eyes"}]}, + "mouth": {"attachment": [{"time": 0.0167, "name": "mouth-bite"}, {"time": 0.6667, "name": "mouth-open"}, {"time": 0.8333, "name": "mouth"}]} + }, + "bones": { + "@pivot-back": { + "rotate": [ + {"curve": "stepped"}, {"time": 0.0167, "angle": -45}, {"time": 0.1, "angle": -85, "curve": "stepped"}, {"time": 0.6667, "angle": -85, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.8333, "angle": 6, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1} + ], + "translate": [ + {"curve": "stepped"}, {"time": 0.0167, "x": 94.99, "y": -21}, {"time": 0.05, "x": 256.42, "y": -60}, {"time": 0.1, "x": 408.25, "y": -188, "curve": "stepped"}, + {"time": 0.6667, "x": 408.25, "y": -188, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.8333, "y": 12.75, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1} + ] + }, + "@shadow": { + "translate": [ + {"curve": "stepped"}, {"time": 0.0167, "x": 144.17}, {"time": 0.1, "x": 589.27, "curve": 0.313, "c3": 0.699}, {"time": 0.25, "x": 627.48, "curve": 0.313, "c3": 0.699}, + {"time": 0.4167, "x": 576.87, "curve": 0.313, "c3": 0.699}, {"time": 0.55, "x": 602.83, "curve": 0.313, "c3": 0.699}, {"time": 0.6667, "x": 576.87, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.8333} + ], + "scale": [ + {"curve": "stepped"}, {"time": 0.0167, "x": 0.92, "y": 0.92}, {"time": 0.1, "curve": 0, "c2": 0.22, "c3": 0.373, "c4": 0.57}, {"time": 0.25, "x": 1.04, "y": 1.04, "curve": "stepped"}, + {"time": 0.6667, "x": 1.04, "y": 1.04, "curve": 0.206, "c2": 0.38, "c3": 0.736}, {"time": 0.8333, "x": 1.1, "y": 1.1, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1} + ] + }, + "@leg-back-left": {"translate": [{"curve": "stepped"}, {"time": 0.0167, "x": 6.4, "y": 0.19}, {"time": 0.1667}]}, + "leg-front-right-IK": { + "translate": [ + {"curve": "stepped"}, {"time": 0.0167, "x": 69.67, "y": 327.04}, {"time": 0.05, "x": 451.04, "y": 582.91}, {"time": 0.0833, "x": 787.85, "y": 470.29}, + {"time": 0.1, "x": 945.09, "y": 394.99, "curve": 0.313, "c3": 0.699}, {"time": 0.25, "x": 1086.85, "y": 338.86, "curve": 0.313, "c3": 0.699}, + {"time": 0.4167, "x": 921.41, "y": 410.91, "curve": 0.313, "c3": 0.699}, {"time": 0.5833, "x": 1028.37, "y": 385.44}, {"time": 0.6667, "x": 914.82, "y": 422.49}, + {"time": 0.7, "x": 413.58, "y": 458.44}, {"time": 0.75, "x": 45.46, "y": 287.09}, {"time": 0.7833, "x": -34.18, "y": 117.59}, {"time": 0.8333} + ] + }, + "tail": { + "rotate": [ + {"curve": "stepped"}, {"time": 0.0167, "angle": 35.35}, {"time": 0.1, "angle": -18.03, "curve": 0.313, "c3": 0.699}, {"time": 0.25, "angle": 12.69, "curve": 0.313, "c3": 0.699}, + {"time": 0.4167, "angle": -15.12, "curve": 0.313, "c3": 0.699}, {"time": 0.6667, "angle": 1.29, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.8333, "angle": 19.35, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1} + ] + }, + "leg-back-left-IK": { + "translate": [ + {"curve": "stepped"}, {"time": 0.0167, "x": -3.7, "y": 19.91}, {"time": 0.05, "x": -86.78, "y": 121.52}, {"time": 0.1, "x": 129.15, "y": 364.61, "curve": 0.313, "c3": 0.699}, + {"time": 0.25, "x": 262.18, "y": 406.7, "curve": 0.313, "c3": 0.699}, {"time": 0.4167, "x": 109.91, "y": 347.96, "curve": 0.313, "c3": 0.699}, {"time": 0.5833, "x": 216.28, "y": 393.95}, + {"time": 0.6667, "x": 118.81, "y": 360.02}, {"time": 0.7, "x": -121.03, "y": 41.31}, {"time": 0.75, "x": -95.31, "y": -47.01}, {"time": 0.7833, "x": 22.31, "y": -53.8}, {"time": 0.8333} + ] + }, + "leg-front-left-IK": { + "translate": [ + {"curve": "stepped"}, {"time": 0.0167, "x": -5.8, "y": 177.99}, {"time": 0.05, "x": 106.35, "y": 306.87}, {"time": 0.0833, "x": 355.94, "y": 424.69}, + {"time": 0.1, "x": 515.46, "y": 408.14, "curve": 0.313, "c3": 0.699}, {"time": 0.25, "x": 536.35, "y": 423.87, "curve": 0.313, "c3": 0.699}, + {"time": 0.4167, "x": 492.39, "y": 405.73, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.6667, "x": 482.36, "y": 419.06}, {"time": 0.7, "x": 97.67, "y": 283.45}, + {"time": 0.75, "x": -12.16, "y": 45.82}, {"time": 0.7833, "x": -31.56, "y": 29.02}, {"time": 0.8333} + ] + }, + "@pivot-center": { + "rotate": [ + {"time": 0.0167, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.1, "angle": -95, "curve": 0.313, "c3": 0.699}, {"time": 0.25, "angle": -105, "curve": 0.313, "c3": 0.699}, + {"time": 0.4167, "angle": -90, "curve": 0.313, "c3": 0.699}, {"time": 0.55, "angle": -100, "curve": 0.313, "c3": 0.699}, + {"time": 0.6667, "angle": -90, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.8333} + ], + "translate": [ + {"time": 0.1, "curve": 0.313, "c3": 0.699}, {"time": 0.25, "x": 1.68, "y": 38.2, "curve": 0.313, "c3": 0.699}, {"time": 0.4167, "x": -2.73, "y": -12.21, "curve": 0.313, "c3": 0.699}, + {"time": 0.55, "x": -0.47, "y": 13.65, "curve": 0.313, "c3": 0.699}, {"time": 0.6667, "x": -2.73, "y": -12.21, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.8333} + ] + }, + "@pivot-main": { + "translate": [{"time": 0.6667, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.75, "y": 150, "curve": 0.315, "c4": 0.8}, {"time": 0.8333}], + "scale": [ + {"time": 0.1, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "y": 0.93, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "curve": "stepped"}, + {"time": 0.5667, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.65, "y": 0.7, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.7333, "curve": "stepped"}, + {"time": 0.8333, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.9167, "y": 0.98, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1} + ] + }, + "@leg-front-right": {"translate": [{"time": 0.75, "curve": 0.306, "c4": 0.8}, {"time": 0.8333, "x": -2.23, "y": -25.27, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1}]}, + "body-fur-under-01": { + "translate": [{"x": -0.14, "y": 0.84}], + "shear": [ + {"x": -4.09, "curve": 0.375, "c2": 0.5, "c3": 0.75}, {"time": 0.0333, "curve": 0.25, "c3": 0.75}, {"time": 0.1, "x": 29.22, "curve": 0.25, "c3": 0.75}, + {"time": 0.3333, "x": -53.77, "curve": 0.25, "c3": 0.75}, {"time": 0.5833, "x": 43.54, "curve": 0.25, "c3": 0.75}, {"time": 0.7833, "x": -64.44, "curve": 0.25, "c3": 0.75}, + {"time": 0.9, "x": 29.43, "curve": 0.243, "c3": 0.68, "c4": 0.71}, {"time": 1, "x": -4.09} + ] + }, + "body-fur-under-03": { + "translate": [{"x": -0.78, "y": 3.19}], + "shear": [ + {"x": 22.47, "curve": 0.25, "c3": 0.75}, {"time": 0.0833, "curve": 0.25, "c3": 0.75}, {"time": 0.15, "x": -3.53, "curve": 0.25, "c3": 0.75}, + {"time": 0.3833, "x": 33.65, "curve": 0.25, "c3": 0.75}, {"time": 0.6333, "x": -20.36, "curve": 0.25, "c3": 0.75}, {"time": 0.8333, "x": 43.83, "curve": 0.25, "c3": 0.75}, + {"time": 0.95, "x": -23.52, "curve": 0.258, "c3": 0.619, "c4": 0.45}, {"time": 1, "x": 22.47} + ] + }, + "body-fur-under-04": { + "translate": [{"x": -0.33, "y": 3.2}], + "shear": [ + {"x": 10.24, "curve": 0.36, "c2": 0.64, "c3": 0.695}, {"time": 0.0333, "curve": 0.25, "c3": 0.75}, {"time": 0.1, "x": -30.84, "curve": 0.25, "c3": 0.75}, + {"time": 0.3333, "x": 38.54, "curve": 0.25, "c3": 0.75}, {"time": 0.5833, "x": -50.56, "curve": 0.25, "c3": 0.75}, {"time": 0.7833, "x": 40.49, "curve": 0.25, "c3": 0.75}, + {"time": 0.9, "x": -40.09, "curve": 0.243, "c3": 0.68, "c4": 0.71}, {"time": 1, "x": 10.24} + ] + }, + "body-fur-under-02": { + "translate": [{"x": -2.23, "y": 6.28}], + "shear": [ + {"x": -27.8, "curve": 0.375, "c2": 0.62, "c3": 0.716}, {"time": 0.0333, "x": 14.15, "curve": 0.25, "c3": 0.75}, {"time": 0.2833, "x": -46.5, "curve": 0.25, "c3": 0.75}, + {"time": 0.5333, "x": 37.58, "curve": 0.25, "c3": 0.75}, {"time": 0.7167, "x": -65.53, "curve": 0.25, "c3": 0.75}, {"time": 0.8333, "x": 23.87, "curve": 0.25, "c3": 0.75}, + {"time": 0.9667, "curve": 0.25, "c3": 0.625, "c4": 0.5}, {"time": 1, "x": -27.8} + ] + }, + "body-fur-under-05": { + "translate": [{"x": 0.53, "y": 14.98}], + "shear": [ + {"x": 3.7, "curve": 0.382, "c2": 0.57, "c3": 0.737}, {"time": 0.0667, "curve": 0.25, "c3": 0.75}, {"time": 0.1333, "x": -34.2, "curve": 0.25, "c3": 0.75}, + {"time": 0.3833, "x": 32.44, "curve": 0.25, "c3": 0.75}, {"time": 0.6333, "x": -55.52, "curve": 0.25, "c3": 0.75}, {"time": 0.8167, "x": 35.57, "curve": 0.25, "c3": 0.75}, + {"time": 0.9333, "x": -41.86, "curve": 0.25, "c3": 0.625, "c4": 0.5}, {"time": 1, "x": 3.7} + ] + }, + "body-braid-02": { + "rotate": [ + {"angle": 3.5, "curve": 0.348, "c2": 0.38, "c3": 0.685, "c4": 0.73}, {"time": 0.2333, "angle": 79.52, "curve": 0.25, "c3": 0.75}, + {"time": 0.5833, "angle": -13.49, "curve": 0.25, "c3": 0.144}, {"time": 0.8167, "angle": 79.52, "curve": 0.25, "c3": 0.75}, {"time": 1, "angle": 3.5} + ] + }, + "body-braid-03": { + "rotate": [ + {"angle": -1.71, "curve": 0.337, "c2": 0.34, "c3": 0.673, "c4": 0.69}, {"time": 0.0333, "curve": 0.25, "c3": 0.75}, {"time": 0.2667, "angle": 45.56, "curve": 0.25, "c3": 0.75}, + {"time": 0.6167, "angle": -13.49, "curve": 0.25, "c3": 0.144}, {"time": 0.85, "angle": 45.56, "curve": 0.243, "c3": 0.68, "c4": 0.71}, {"time": 1, "angle": -1.71} + ] + }, + "body-braid-04": { + "rotate": [ + {"angle": -9.29, "curve": 0.323, "c2": 0.3, "c3": 0.66, "c4": 0.65}, {"time": 0.0833, "curve": 0.25, "c3": 0.75}, {"time": 0.3167, "angle": 36.13, "curve": 0.25, "c3": 0.75}, + {"time": 0.6667, "angle": -30, "curve": 0.25, "c3": 0.144}, {"time": 0.9, "angle": 36.13, "curve": 0.248, "c3": 0.628, "c4": 0.52}, {"time": 1, "angle": -9.29} + ] + }, + "body-braid-05": { + "rotate": [ + {"angle": -8.3, "curve": 0.294, "c3": 0.631, "c4": 0.37}, {"time": 0.15, "curve": 0.25, "c3": 0.75}, {"time": 0.3833, "angle": -7.54, "curve": 0.25, "c3": 0.75}, + {"time": 0.7333, "angle": -31.56, "curve": 0.25, "c3": 0.144}, {"time": 0.9667, "angle": -7.54, "curve": 0.284, "c3": 0.625, "c4": 0.38}, {"time": 1, "angle": -8.3} + ] + }, + "body-braid-06": { + "rotate": [ + {"angle": -20.59, "curve": 0.352, "c2": 0.41, "c3": 0.689, "c4": 0.75}, {"time": 0.0333, "angle": 1.41, "curve": 0.25, "c3": 0.75}, {"time": 0.2333, "curve": 0.25, "c3": 0.75}, + {"time": 0.45, "angle": 1.41, "curve": 0.25, "c3": 0.75}, {"time": 0.8, "angle": -42.25, "curve": 0.25, "c3": 0.144}, {"time": 1, "angle": -20.59} + ] + }, + "body-braid-01": {"rotate": [{"angle": 2.31}]} + } + }, + "2632049379": { + "slots": { + "eyes": {"attachment": [{"time": 0.0167, "name": "eyes-shut"}, {"time": 0.3, "name": "eyes-angry"}, {"time": 0.4833, "name": "eyes"}]}, + "mouth": {"attachment": [{"time": 0.0167, "name": "mouth-bite"}, {"time": 0.4833, "name": "mouth"}]} + }, + "bones": { + "@pivot-back": { + "rotate": [ + {"curve": "stepped"}, {"time": 0.0167, "angle": 8}, {"time": 0.2333, "angle": 10, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "angle": -5, "curve": 0.315, "c4": 0.8}, + {"time": 0.4833, "angle": 5, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5833} + ], + "translate": [ + {"curve": "stepped"}, {"time": 0.0167, "x": 29.16, "y": 6.28}, {"time": 0.2667, "x": 18.48, "y": 18.85, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.3833, "x": -1.17, "y": 18.85, "curve": 0.315, "c4": 0.8}, {"time": 0.4833} + ] + }, + "@shadow": { + "translate": [ + {"curve": "stepped"}, {"time": 0.0167, "x": 33.22}, {"time": 0.2667, "x": 61.08, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3833, "x": 9.02, "curve": 0.315, "c4": 0.8}, + {"time": 0.4833} + ], + "scale": [ + {"curve": "stepped"}, {"time": 0.0167, "x": 1.1, "y": 1.1, "curve": "stepped"}, {"time": 0.2667, "x": 1.1, "y": 1.1, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.3833, "x": 0.98, "y": 0.98, "curve": 0.315, "c4": 0.8}, {"time": 0.4833, "x": 1.1, "y": 1.1, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5833} + ] + }, + "@pivot-main": { + "translate": [ + {"curve": "stepped"}, {"time": 0.0167, "x": 33.18}, {"time": 0.2667, "x": 61.52, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3833, "x": 20.27, "y": 27.91, "curve": 0.315, "c4": 0.8}, + {"time": 0.4833} + ] + }, + "tail": { + "rotate": [ + {"curve": "stepped"}, {"time": 0.0167, "angle": -18.65}, {"time": 0.2333, "angle": -21.65, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.3333, "angle": -13.3, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.45, "angle": 12.04, "curve": 0.154, "c4": 0.9}, + {"time": 0.5167, "angle": -9.14, "curve": 0.161, "c3": 0.854}, {"time": 0.5833} + ] + }, + "leg-front-right-IK": { + "translate": [ + {"time": 0.2333, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "x": 22.26, "y": 54.13}, {"time": 0.3833, "x": 28.04, "y": 49.32, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.45} + ] + }, + "@leg-front-left": { + "translate": [ + {"curve": "stepped"}, {"time": 0.0167, "x": -0.45, "y": -3.93}, {"time": 0.2333, "x": -0.82, "y": -2.61}, {"time": 0.3333, "x": -5.6, "y": -0.89, "curve": 0.617, "c4": 0.6}, + {"time": 0.45, "x": -1.09, "y": -14.69, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5833} + ] + }, + "leg-back-left-IK": { + "translate": [ + {"curve": "stepped"}, {"time": 0.0167, "x": 50.74, "y": 0.9, "curve": "stepped"}, {"time": 0.2, "x": 50.74, "y": 0.9, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.25, "x": 12.5, "y": 6.45, "curve": 0, "c2": 0.8, "c3": 0.15}, {"time": 0.3667, "x": 5.47, "y": 26.12, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.4833} + ] + }, + "@leg-front-right": { + "translate": [ + {"time": 0.0167}, {"time": 0.3333, "x": -7.53, "y": 2.3, "curve": 0, "c2": 0.1, "c3": 0.853}, {"time": 0.45, "x": 0.15, "y": -4.26, "curve": 0.159, "c3": 0.853}, + {"time": 0.4833, "x": -2.34, "y": -28.14, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5833} + ] + }, + "@leg-back-left": { + "translate": [ + {"curve": "stepped"}, {"time": 0.0167, "x": 18.74, "y": 14.65, "curve": "stepped"}, {"time": 0.1667, "x": 18.74, "y": 14.65, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.4833} + ] + }, + "leg-front-left-IK": { + "translate": [ + {"curve": "stepped"}, {"time": 0.0167, "x": 38.52}, {"time": 0.2333, "x": 38.87, "curve": 0, "c2": 0.3, "c3": 0.54}, {"time": 0.3333, "x": 26.12, "y": 38.71}, + {"time": 0.3833, "x": 12.33, "y": 29.93, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.45} + ] + }, + "body-fur-under-01": { + "translate": [{"x": -0.14, "y": 0.84}], + "shear": [ + {"x": -4.09, "curve": 0.375, "c2": 0.5, "c3": 0.75}, {"time": 0.0333, "x": 7.64, "curve": 0.351, "c2": 0.4, "c3": 0.757}, + {"time": 0.1667, "x": 26.91, "curve": 0.25, "c3": 0.228, "c4": 0.99}, {"time": 0.35, "x": -42.78, "curve": 0.25, "c3": 0.75}, {"time": 0.55, "curve": 0.29, "c3": 0.629, "c4": 0.38}, + {"time": 0.5833, "x": -4.09} + ] + }, + "body-fur-under-03": { + "translate": [{"x": -0.78, "y": 3.19}], + "shear": [ + {"x": 22.47, "curve": 0.25, "c3": 0.75}, {"time": 0.0333, "x": 2.51, "curve": 0.32, "c2": 0.29, "c3": 0.757}, {"time": 0.1833, "x": 19.28, "curve": 0.25, "c3": 0.228, "c4": 0.99}, + {"time": 0.3833, "x": -45.7, "curve": 0.244, "c3": 0.7, "c4": 0.79}, {"time": 0.55, "x": -3.18, "curve": 0.366, "c2": 0.63, "c3": 0.703}, + {"time": 0.5667, "curve": 0.313, "c3": 0.648, "c4": 0.35}, {"time": 0.5833, "x": 22.47} + ] + }, + "body-fur-under-04": { + "translate": [{"x": -0.33, "y": 3.2}], + "shear": [ + {"x": 10.24, "curve": 0.36, "c2": 0.64, "c3": 0.695}, {"time": 0.0333, "x": -15.91, "curve": 0.25, "c3": 0.75}, {"time": 0.2333, "x": 13.82, "curve": 0.25, "c3": 0.228, "c4": 0.99}, + {"time": 0.4167, "x": -39.88, "curve": 0.243, "c3": 0.649, "c4": 0.6}, {"time": 0.55, "x": -22.71, "curve": 0.351, "c2": 0.4, "c3": 0.689, "c4": 0.75}, {"time": 0.5833, "x": 10.24} + ] + }, + "body-fur-under-02": { + "translate": [{"x": -2.23, "y": 6.28}], + "shear": [ + {"x": -27.8, "curve": 0.375, "c2": 0.62, "c3": 0.716}, {"time": 0.0333, "x": 1.3, "curve": 0.3, "c2": 0.21, "c3": 0.756}, + {"time": 0.2, "x": 18.72, "curve": 0.25, "c3": 0.228, "c4": 0.99}, {"time": 0.4, "x": -43.03, "curve": 0.243, "c3": 0.68, "c4": 0.71}, + {"time": 0.55, "x": -5.6, "curve": 0.375, "c2": 0.62, "c3": 0.716}, {"time": 0.5833, "x": -27.8} + ] + }, + "body-fur-under-05": { + "translate": [{"x": 0.53, "y": 14.98}], + "shear": [ + {"x": 3.7, "curve": 0.382, "c2": 0.57, "c3": 0.737}, {"time": 0.0333, "x": -14.63, "curve": 0.366, "c2": 0.63, "c3": 0.703}, {"time": 0.0667, "x": -12.53, "curve": 0.25, "c3": 0.75}, + {"time": 0.25, "x": 6.85, "curve": 0.25, "c3": 0.228, "c4": 0.99}, {"time": 0.45, "x": -44.3, "curve": 0.248, "c3": 0.628, "c4": 0.52}, + {"time": 0.55, "x": -27.02, "curve": 0.34, "c2": 0.35, "c3": 0.678, "c4": 0.7}, {"time": 0.5833, "x": 3.7} + ] + }, + "body-braid-02": { + "rotate": [ + {"angle": 3.5, "curve": 0.348, "c2": 0.38, "c3": 0.685, "c4": 0.73}, {"time": 0.0333, "angle": 0.34, "curve": 0.32, "c2": 0.29, "c3": 0.757}, + {"time": 0.1833, "angle": 2.63, "curve": 0.25, "c3": 0.228, "c4": 0.99}, {"time": 0.3833, "angle": 43.23, "curve": 0.25, "c3": 0.75}, + {"time": 0.5667, "curve": 0.313, "c3": 0.648, "c4": 0.35}, {"time": 0.5833, "angle": 3.5} + ] + }, + "body-braid-03": { + "rotate": [ + {"angle": -1.71, "curve": 0.337, "c2": 0.34, "c3": 0.673, "c4": 0.69}, {"time": 0.0167, "curve": 0.313, "c3": 0.648, "c4": 0.35}, + {"time": 0.0333, "angle": 0.06, "curve": 0.277, "c2": 0.12, "c3": 0.754}, {"time": 0.2167, "angle": 2.63, "curve": 0.25, "c3": 0.228, "c4": 0.99}, + {"time": 0.4, "angle": 23.44, "curve": 0.244, "c3": 0.7, "c4": 0.79}, {"time": 0.5667, "angle": 1.63, "curve": 0.348, "c2": 0.43, "c3": 0.682, "c4": 0.77}, + {"time": 0.5833, "angle": -1.71} + ] + }, + "body-braid-04": { + "rotate": [ + {"angle": -9.29, "curve": 0.323, "c2": 0.3, "c3": 0.66, "c4": 0.65}, {"time": 0.0333, "angle": 1.11, "curve": 0.366, "c2": 0.63, "c3": 0.703}, + {"time": 0.0667, "curve": 0.25, "c3": 0.75}, {"time": 0.25, "angle": 2.63, "curve": 0.25, "c3": 0.228, "c4": 0.99}, + {"time": 0.45, "angle": 16.91, "curve": 0.243, "c3": 0.649, "c4": 0.6}, {"time": 0.5667, "angle": 4.8, "curve": 0.339, "c2": 0.35, "c3": 0.673, "c4": 0.69}, + {"time": 0.5833, "angle": -9.29} + ] + }, + "body-braid-05": { + "rotate": [ + {"angle": -8.3, "curve": 0.294, "c3": 0.631, "c4": 0.37}, {"time": 0.0333, "angle": 3.03, "curve": 0.381, "c2": 0.55, "c3": 0.742}, {"time": 0.1167, "curve": 0.25, "c3": 0.75}, + {"time": 0.3, "angle": -10.49, "curve": 0.25, "c3": 0.228, "c4": 0.99}, {"time": 0.5, "angle": 8.22, "curve": 0.258, "c3": 0.619, "c4": 0.45}, + {"time": 0.5667, "angle": 5.2, "curve": 0.331, "c2": 0.33, "c3": 0.665, "c4": 0.66}, {"time": 0.5833, "angle": -8.3} + ] + }, + "body-braid-06": { + "rotate": [ + {"angle": -20.59, "curve": 0.352, "c2": 0.41, "c3": 0.689, "c4": 0.75}, {"time": 0.0333, "angle": 6.87, "curve": 0.351, "c2": 0.4, "c3": 0.757}, + {"time": 0.1667, "curve": 0.25, "c3": 0.75}, {"time": 0.35, "angle": -28.99, "curve": 0.25, "c3": 0.228, "c4": 0.99}, + {"time": 0.55, "angle": 9.53, "curve": 0.297, "c3": 0.634, "c4": 0.37}, {"time": 0.5667, "angle": 8.86, "curve": 0.321, "c2": 0.28, "c3": 0.655, "c4": 0.61}, + {"time": 0.5833, "angle": -20.59} + ] + }, + "body-braid-01": {"rotate": [{"angle": 2.31}]} + } + }, + "2044221994": { + "slots": { + "eyes": {"attachment": [{"time": 0.0167, "name": "eyes-angry"}, {"time": 0.25, "name": "eyes-shut"}, {"time": 0.3, "name": "eyes-angry"}, {"time": 0.4333, "name": "eyes"}]}, + "mouth": {"attachment": [{"time": 0.0167, "name": "mouth-bite"}, {"time": 0.3, "name": "mouth-open"}, {"time": 0.4333, "name": "mouth"}]} + }, + "bones": { + "@pivot-back": { + "rotate": [ + {"curve": "stepped"}, {"time": 0.0167, "angle": 7.5}, {"time": 0.2333, "angle": 10, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "angle": -5, "curve": 0.315, "c4": 0.8}, + {"time": 0.4833, "angle": 5, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5833} + ], + "translate": [ + {"curve": "stepped"}, {"time": 0.0167, "x": 29.16, "y": 18.85, "curve": "stepped"}, {"time": 0.2667, "x": 29.16, "y": 18.85, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.3833, "x": -1.17, "y": 18.85, "curve": 0.315, "c4": 0.8}, {"time": 0.4833} + ] + }, + "leg-back-left-IK": { + "translate": [ + {"curve": "stepped"}, {"time": 0.0167, "x": 50.74, "y": 0.9, "curve": "stepped"}, {"time": 0.2, "x": 50.74, "y": 0.9, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.25, "x": 12.5, "y": 6.45, "curve": 0, "c2": 0.8, "c3": 0.15}, {"time": 0.3667, "x": 5.47, "y": 26.12, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.4833} + ] + }, + "@leg-back-left": { + "translate": [ + {"curve": "stepped"}, {"time": 0.0167, "x": 18.74, "y": 14.65, "curve": "stepped"}, {"time": 0.1667, "x": 18.74, "y": 14.65, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.4833} + ] + }, + "@leg-front-left": { + "translate": [ + {"curve": "stepped"}, {"time": 0.0167, "x": -0.45, "y": -3.93}, {"time": 0.2333, "x": -0.82, "y": -2.61}, {"time": 0.3333, "x": -5.6, "y": -0.89, "curve": 0.617, "c4": 0.6}, + {"time": 0.45, "x": -1.09, "y": -14.69, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5833} + ] + }, + "@leg-front-right": { + "translate": [ + {"time": 0.0167}, {"time": 0.3333, "x": -7.53, "y": 2.3, "curve": 0, "c2": 0.1, "c3": 0.853}, {"time": 0.45, "x": 0.15, "y": -4.26, "curve": 0.159, "c3": 0.853}, + {"time": 0.4833, "x": -2.34, "y": -28.14, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5833} + ] + }, + "@pivot-main": { + "translate": [ + {"curve": "stepped"}, {"time": 0.0167, "x": 33.18}, {"time": 0.2667, "x": 61.52, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3833, "x": 20.27, "y": 27.91, "curve": 0.315, "c4": 0.8}, + {"time": 0.4833} + ] + }, + "leg-front-right-IK": { + "translate": [ + {"time": 0.2333, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "x": 22.26, "y": 54.13}, {"time": 0.3833, "x": 28.04, "y": 49.32, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.45} + ] + }, + "leg-front-left-IK": { + "translate": [ + {"curve": "stepped"}, {"time": 0.0167, "x": 38.52}, {"time": 0.2333, "x": 38.87, "curve": 0, "c2": 0.3, "c3": 0.54}, {"time": 0.3333, "x": 26.12, "y": 38.71}, + {"time": 0.3833, "x": 12.33, "y": 29.93, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.45} + ] + }, + "@shadow": { + "translate": [ + {"curve": "stepped"}, {"time": 0.0167, "x": 33.22}, {"time": 0.2667, "x": 61.08, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3833, "x": 9.02, "curve": 0.315, "c4": 0.8}, + {"time": 0.4833} + ], + "scale": [ + {"curve": "stepped"}, {"time": 0.0167, "x": 1.1, "y": 1.1, "curve": "stepped"}, {"time": 0.2667, "x": 1.1, "y": 1.1, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.3833, "x": 0.98, "y": 0.98, "curve": 0.315, "c4": 0.8}, {"time": 0.4833, "x": 1.1, "y": 1.1, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5833} + ] + }, + "tail": { + "rotate": [ + {"curve": "stepped"}, {"time": 0.0167, "angle": -17.67}, {"time": 0.2333, "angle": -21.07, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.3167, "angle": -20.71, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.45, "angle": 25.83, "curve": 0.154, "c4": 0.9}, + {"time": 0.5167, "angle": -14.3, "curve": 0.161, "c3": 0.854}, {"time": 0.5833} + ] + }, + "body-braid-02": { + "rotate": [ + {"angle": 3.5, "curve": 0.348, "c2": 0.38, "c3": 0.685, "c4": 0.73}, {"time": 0.15, "angle": 2.63, "curve": 0.25, "c3": 0.228, "c4": 0.99}, + {"time": 0.35, "angle": 43.23, "curve": 0.25, "c3": 0.75}, {"time": 0.5333, "curve": 0.284, "c3": 0.625, "c4": 0.38}, {"time": 0.5833, "angle": 3.5} + ] + }, + "body-braid-03": { + "rotate": [ + {"angle": -1.71, "curve": 0.337, "c2": 0.34, "c3": 0.673, "c4": 0.69}, {"time": 0.1833, "angle": 2.63, "curve": 0.25, "c3": 0.228, "c4": 0.99}, + {"time": 0.3667, "angle": 23.44, "curve": 0.244, "c3": 0.7, "c4": 0.79}, {"time": 0.5333, "angle": 1.63, "curve": 0.366, "c2": 0.63, "c3": 0.703}, + {"time": 0.5667, "curve": 0.313, "c3": 0.648, "c4": 0.35}, {"time": 0.5833, "angle": -1.71} + ] + }, + "body-braid-04": { + "rotate": [ + {"angle": -9.29, "curve": 0.323, "c2": 0.3, "c3": 0.66, "c4": 0.65}, {"time": 0.0333, "curve": 0.25, "c3": 0.75}, {"time": 0.2167, "angle": 2.63, "curve": 0.25, "c3": 0.228, "c4": 0.99}, + {"time": 0.4167, "angle": 16.91, "curve": 0.243, "c3": 0.649, "c4": 0.6}, {"time": 0.5333, "angle": 4.8, "curve": 0.356, "c2": 0.42, "c3": 0.696, "c4": 0.78}, + {"time": 0.5833, "angle": -9.29} + ] + }, + "body-braid-05": { + "rotate": [ + {"angle": -8.3, "curve": 0.294, "c3": 0.631, "c4": 0.37}, {"time": 0.0833, "curve": 0.25, "c3": 0.75}, {"time": 0.2667, "angle": -10.49, "curve": 0.25, "c3": 0.228, "c4": 0.99}, + {"time": 0.4667, "angle": 8.22, "curve": 0.258, "c3": 0.619, "c4": 0.45}, {"time": 0.5333, "angle": 5.2, "curve": 0.33, "c2": 0.32, "c3": 0.67, "c4": 0.68}, + {"time": 0.5833, "angle": -8.3} + ] + }, + "body-braid-06": { + "rotate": [ + {"angle": -20.59, "curve": 0.352, "c2": 0.41, "c3": 0.689, "c4": 0.75}, {"time": 0.1333, "curve": 0.25, "c3": 0.75}, + {"time": 0.3167, "angle": -28.99, "curve": 0.25, "c3": 0.228, "c4": 0.99}, {"time": 0.5167, "angle": 9.53, "curve": 0.297, "c3": 0.634, "c4": 0.37}, + {"time": 0.5333, "angle": 8.86, "curve": 0.304, "c2": 0.22, "c3": 0.644, "c4": 0.58}, {"time": 0.5833, "angle": -20.59} + ] + }, + "body-fur-under-02": { + "translate": [{"x": -2.23, "y": 6.28}], + "shear": [ + {"x": -27.8, "curve": 0.375, "c2": 0.62, "c3": 0.716}, {"time": 0.0667, "x": 14.59, "curve": 0.382, "c2": 0.57, "c3": 0.735}, {"time": 0.1833, "curve": 0.25, "c3": 0.75}, + {"time": 0.4167, "x": 51.41, "curve": 0.252, "c3": 0.622, "c4": 0.48}, {"time": 0.5833, "x": -27.8} + ] + }, + "body-fur-under-03": { + "translate": [{"x": -0.78, "y": 3.19}], + "shear": [ + {"x": 22.47, "curve": 0.25, "c3": 0.75}, {"time": 0.0667, "x": 3.57, "curve": 0.366, "c2": 0.63, "c3": 0.703}, {"time": 0.1167, "curve": 0.25, "c3": 0.75}, + {"time": 0.35, "x": 51.41, "curve": 0.243, "c3": 0.649, "c4": 0.6}, {"time": 0.5833, "x": 22.47} + ] + }, + "body-fur-under-05": { + "translate": [{"x": 0.53, "y": 14.98}], + "shear": [ + {"x": 3.7, "curve": 0.382, "c2": 0.57, "c3": 0.737}, {"time": 0.0667, "x": 6.69, "curve": 0.375, "c2": 0.62, "c3": 0.716}, {"time": 0.1333, "curve": 0.25, "c3": 0.75}, + {"time": 0.3833, "x": 51.41, "curve": 0.245, "c3": 0.637, "c4": 0.56}, {"time": 0.5833, "x": 3.7} + ] + }, + "body-fur-under-04": { + "translate": [{"x": -0.33, "y": 3.2}], + "shear": [ + {"x": 10.24, "curve": 0.36, "c2": 0.64, "c3": 0.695}, {"time": 0.0667, "x": 10.42, "curve": 0.38, "c2": 0.59, "c3": 0.727}, {"time": 0.1667, "curve": 0.25, "c3": 0.75}, + {"time": 0.4, "x": 51.41, "curve": 0.248, "c3": 0.628, "c4": 0.52}, {"time": 0.5833, "x": 10.24} + ] + }, + "body-fur-under-01": { + "translate": [{"x": -0.14, "y": 0.84}], + "shear": [ + {"x": -4.09, "curve": 0.375, "c2": 0.5, "c3": 0.75}, {"time": 0.0667, "x": 1.17, "curve": 0.352, "c2": 0.65, "c3": 0.687}, {"time": 0.1, "curve": 0.25, "c3": 0.75}, + {"time": 0.3333, "x": 51.41, "curve": 0.242, "c3": 0.663, "c4": 0.65}, {"time": 0.5833, "x": -4.09} + ] + }, + "body-braid-01": {"rotate": [{"angle": 2.31}]} + } + }, + "2912205675": { + "slots": { + "eyes": {"attachment": [{"time": 0.05, "name": "eyes-angry"}, {"time": 0.7, "name": "eyes"}]}, + "mouth": {"attachment": [{"time": 0.05, "name": "mouth-bite"}, {"time": 0.2833, "name": "mouth-open"}, {"time": 0.4667, "name": "mouth-bite"}, {"time": 0.7, "name": "mouth"}]} + }, + "bones": { + "@pivot-back": { + "rotate": [ + {"curve": 0, "c2": 0.4, "c3": 0.383}, {"time": 0.15, "angle": 4, "curve": 0, "c2": 0.2, "c3": 0.851}, {"time": 0.2833, "angle": 7}, + {"time": 0.4167, "angle": 7.5, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5, "angle": 4, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.5833, "angle": 6, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.75} + ], + "translate": [ + {"curve": 0, "c2": 0.4, "c3": 0.383}, {"time": 0.25, "x": 25, "curve": 1, "c2": -0.1, "c4": 0}, {"time": 0.2833, "x": -136, "y": 25.56}, + {"time": 0.4167, "x": -153.19, "y": 25.56, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5, "x": -176.94, "curve": "stepped"}, + {"time": 0.5833, "x": -176.94, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.75} + ] + }, + "@pivot-main": {"translate": [{"time": 0.5833, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.6667, "y": 45.22, "curve": 0.315, "c4": 0.8}, {"time": 0.75}]}, + "@leg-front-left": { + "translate": [ + {"curve": 0, "c2": 0.4, "c3": 0.383}, {"time": 0.25, "x": -0.72, "y": -6.78}, {"time": 0.5833, "x": -1.48, "y": -14.61, "curve": 0, "c2": 0.17, "c3": 0.45, "c4": 0.61}, + {"time": 0.65, "x": -0.39, "y": 5.91, "curve": 0.345, "c2": 0.53, "c3": 0.751}, {"time": 0.75} + ] + }, + "@leg-front-right": { + "translate": [ + {"curve": 0, "c2": 0.39, "c3": 0.387}, {"time": 0.25, "x": -2.88, "y": -28.54, "curve": "stepped"}, + {"time": 0.5833, "x": -2.88, "y": -28.54, "curve": 0, "c2": 0.17, "c3": 0.45, "c4": 0.61}, {"time": 0.65, "x": -0.83, "y": 1.57, "curve": 0.345, "c2": 0.53, "c3": 0.751}, {"time": 0.75} + ] + }, + "leg-front-left-IK": { + "translate": [ + {"curve": 0, "c2": 0.39, "c3": 0.387}, {"time": 0.25, "x": 19.12, "curve": 0.702, "c4": 0.2}, {"time": 0.2833, "x": -43.29, "y": 59.07}, + {"time": 0.4167, "x": -61.19, "y": 52.81, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5, "x": -184.33, "y": 7.89, "curve": "stepped"}, + {"time": 0.5833, "x": -184.33, "y": 7.89, "curve": 0, "c2": 0.17, "c3": 0.45, "c4": 0.61}, {"time": 0.65, "x": -105.91, "y": -2.82, "curve": 0.345, "c2": 0.53, "c3": 0.751}, + {"time": 0.75} + ] + }, + "leg-front-right-IK": { + "translate": [ + {"time": 0.25, "curve": 0.702, "c4": 0.2}, {"time": 0.2833, "x": -27.95, "y": 28.32}, {"time": 0.4167, "x": -40.48, "y": 34.59, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.5, "x": -191.61, "curve": "stepped"}, {"time": 0.5833, "x": -191.61, "curve": 0, "c2": 0.17, "c3": 0.45, "c4": 0.61}, + {"time": 0.65, "x": -103, "y": 4.15, "curve": 0.345, "c2": 0.53, "c3": 0.751}, {"time": 0.75} + ] + }, + "leg-back-left-IK": { + "translate": [ + {"time": 0.2667, "curve": 0.461, "c4": 0.4}, {"time": 0.2833, "x": -70.51, "y": 98.54}, {"time": 0.4167, "x": -70.51, "y": 101.95, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.5, "x": -189.32, "curve": "stepped"}, {"time": 0.5833, "x": -189.32, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.75} + ] + }, + "@pivot-center": { + "rotate": [ + {"time": 0.25, "curve": 0.779, "c4": 0.3}, {"time": 0.2833, "angle": 10.18, "curve": "stepped"}, {"time": 0.4167, "angle": 10.18, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5} + ] + }, + "tail": { + "rotate": [ + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.25, "angle": 21.98, "curve": 0.851, "c4": 0.1}, {"time": 0.2833, "angle": -15.58}, + {"time": 0.4167, "angle": -20.71, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5, "angle": 19.93, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.5833, "angle": 23.12, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.6667, "angle": -14.25, "curve": 0.313, "c3": 0.699}, {"time": 0.75} + ] + }, + "@shadow": { + "translate": [ + {"time": 0.25, "curve": 0.851, "c4": 0.1}, {"time": 0.2833, "x": -143.36}, {"time": 0.4167, "x": -160.77, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.5, "x": -186.16, "curve": "stepped"}, {"time": 0.5833, "x": -186.16, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.75} + ], + "scale": [ + {"curve": 0, "c2": 0.4, "c3": 0.383}, {"time": 0.25, "x": 1.08, "y": 1.08, "curve": "stepped"}, {"time": 0.5, "x": 1.08, "y": 1.08, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.5833, "x": 1.12, "y": 1.12, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.6667, "x": 0.94, "y": 0.94, "curve": 0.315, "c4": 0.8}, {"time": 0.75} + ] + }, + "@leg-back-left": {"translate": [{"curve": 0, "c2": 0.39, "c3": 0.387}, {"time": 0.25, "x": -7.28, "y": 3.82}]}, + "body-braid-02": { + "rotate": [ + {"angle": 3.5, "curve": 0.348, "c2": 0.38, "c3": 0.685, "c4": 0.73}, {"time": 0.2, "angle": 2.63, "curve": 0.25, "c3": 0.228, "c4": 0.99}, + {"time": 0.45, "angle": 9.21, "curve": 0.25, "c3": 0.75}, {"time": 0.7, "curve": 0.284, "c3": 0.625, "c4": 0.38}, {"time": 0.75, "angle": 3.5} + ] + }, + "body-braid-03": { + "rotate": [ + {"angle": -1.71, "curve": 0.337, "c2": 0.34, "c3": 0.673, "c4": 0.69}, {"time": 0.2333, "angle": 2.63, "curve": 0.25, "c3": 0.228, "c4": 0.99}, + {"time": 0.4833, "angle": 23.44, "curve": 0.244, "c3": 0.7, "c4": 0.79}, {"time": 0.7, "angle": 1.63, "curve": 0.366, "c2": 0.63, "c3": 0.703}, + {"time": 0.7333, "curve": 0.313, "c3": 0.648, "c4": 0.35}, {"time": 0.75, "angle": -1.71} + ] + }, + "body-braid-04": { + "rotate": [ + {"angle": -9.29, "curve": 0.323, "c2": 0.3, "c3": 0.66, "c4": 0.65}, {"time": 0.0333, "curve": 0.25, "c3": 0.75}, {"time": 0.2833, "angle": 2.63, "curve": 0.25, "c3": 0.228, "c4": 0.99}, + {"time": 0.5333, "angle": 16.91, "curve": 0.243, "c3": 0.649, "c4": 0.6}, {"time": 0.7, "angle": 4.8, "curve": 0.356, "c2": 0.42, "c3": 0.696, "c4": 0.78}, {"time": 0.75, "angle": -9.29} + ] + }, + "body-braid-05": { + "rotate": [ + {"angle": -8.3, "curve": 0.294, "c3": 0.631, "c4": 0.37}, {"time": 0.1, "curve": 0.25, "c3": 0.75}, {"time": 0.35, "angle": -10.49, "curve": 0.25, "c3": 0.228, "c4": 0.99}, + {"time": 0.6, "angle": 8.22, "curve": 0.258, "c3": 0.619, "c4": 0.45}, {"time": 0.7, "angle": 5.2, "curve": 0.33, "c2": 0.32, "c3": 0.67, "c4": 0.68}, {"time": 0.75, "angle": -8.3} + ] + }, + "body-braid-06": { + "rotate": [ + {"angle": -20.59, "curve": 0.352, "c2": 0.41, "c3": 0.689, "c4": 0.75}, {"time": 0.1667, "curve": 0.25, "c3": 0.75}, + {"time": 0.4167, "angle": -28.99, "curve": 0.25, "c3": 0.228, "c4": 0.99}, {"time": 0.6667, "angle": 9.53, "curve": 0.297, "c3": 0.634, "c4": 0.37}, + {"time": 0.7, "angle": 8.86, "curve": 0.304, "c2": 0.22, "c3": 0.644, "c4": 0.58}, {"time": 0.75, "angle": -20.59} + ] + }, + "body-fur-under-01": { + "translate": [{"x": -0.14, "y": 0.84}], + "shear": [ + {"x": -4.09, "curve": 0.375, "c2": 0.5, "c3": 0.75}, {"time": 0.1667, "x": 26.91, "curve": 0.25, "c3": 0.228, "c4": 0.99}, {"time": 0.4167, "x": -42.78, "curve": 0.25, "c3": 0.75}, + {"time": 0.6667, "curve": 0.265, "c3": 0.618, "c4": 0.43}, {"time": 0.75, "x": -4.09} + ] + }, + "body-fur-under-02": { + "translate": [{"x": -2.23, "y": 6.28}], + "shear": [ + {"x": -27.8, "curve": 0.375, "c2": 0.62, "c3": 0.716}, {"time": 0.2167, "x": 18.72, "curve": 0.25, "c3": 0.228, "c4": 0.99}, + {"time": 0.4667, "x": -43.03, "curve": 0.243, "c3": 0.68, "c4": 0.71}, {"time": 0.6667, "x": -5.6, "curve": 0.375, "c2": 0.62, "c3": 0.716}, + {"time": 0.7167, "curve": 0.297, "c3": 0.634, "c4": 0.37}, {"time": 0.75, "x": -27.8} + ] + }, + "body-fur-under-03": { + "translate": [{"x": -0.78, "y": 3.19}], + "shear": [ + {"x": 22.47, "curve": 0.25, "c3": 0.75}, {"time": 0.2, "x": 19.28, "curve": 0.25, "c3": 0.228, "c4": 0.99}, {"time": 0.45, "x": -45.7, "curve": 0.244, "c3": 0.7, "c4": 0.79}, + {"time": 0.6667, "x": -3.18, "curve": 0.366, "c2": 0.63, "c3": 0.703}, {"time": 0.7, "curve": 0.284, "c3": 0.625, "c4": 0.38}, {"time": 0.75, "x": 22.47} + ] + }, + "body-fur-under-04": { + "translate": [{"x": -0.33, "y": 3.2}], + "shear": [ + {"x": 10.24, "curve": 0.36, "c2": 0.64, "c3": 0.695}, {"time": 0.25, "x": 13.82, "curve": 0.25, "c3": 0.228, "c4": 0.99}, + {"time": 0.5, "x": -39.88, "curve": 0.243, "c3": 0.649, "c4": 0.6}, {"time": 0.6667, "x": -22.71, "curve": 0.382, "c2": 0.57, "c3": 0.735}, {"time": 0.75, "x": 10.24} + ] + }, + "body-fur-under-05": { + "translate": [{"x": 0.53, "y": 14.98}], + "shear": [ + {"x": 3.7, "curve": 0.382, "c2": 0.57, "c3": 0.737}, {"time": 0.0333, "x": -12.53, "curve": 0.25, "c3": 0.75}, {"time": 0.2833, "x": 6.85, "curve": 0.25, "c3": 0.228, "c4": 0.99}, + {"time": 0.5333, "x": -44.3, "curve": 0.248, "c3": 0.628, "c4": 0.52}, {"time": 0.6667, "x": -27.02, "curve": 0.356, "c2": 0.41, "c3": 0.707, "c4": 0.81}, {"time": 0.75, "x": 3.7} + ] + }, + "body-braid-01": {"rotate": [{"angle": 2.31}]} + }, + "events": [{"time": 0.2167, "name": "start-attack"}, {"time": 0.2833, "name": "hit"}] + }, + "3099909215": { + "slots": { + "eyes": {"attachment": [{"time": 0.1333, "name": "eyes-angry"}, {"time": 0.6667, "name": "eyes"}]}, + "mouth": {"attachment": [{"time": 0.1333, "name": "mouth-bite"}, {"time": 0.2667, "name": "mouth-open"}, {"time": 0.4167, "name": "mouth-bite"}, {"time": 0.6667, "name": "mouth"}]} + }, + "bones": { + "@pivot-back": { + "rotate": [ + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "angle": -3.92, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "angle": 2.51, "curve": 0, "c2": 0.3, "c3": 0.544}, + {"time": 0.35, "angle": -4.74, "curve": 0.7, "c4": 0.3}, {"time": 0.4167, "angle": 2}, {"time": 0.5833, "angle": 4, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.75} + ], + "translate": [ + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 71.93, "y": -12.95, "curve": "stepped"}, {"time": 0.25, "x": 71.93, "y": -12.95, "curve": 0, "c2": 0.3, "c3": 0.544}, + {"time": 0.4167, "x": -144.49, "y": -12.95, "curve": "stepped"}, {"time": 0.5833, "x": -144.49, "y": -12.95, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.75} + ] + }, + "leg-back-left-IK": { + "translate": [ + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.1167, "x": 93.98, "curve": 0.161, "c3": 0.854}, {"time": 0.25, "x": 67.02, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.3333, "x": -65.1, "y": -1.32, "curve": 0.315, "c4": 0.8}, {"time": 0.4167, "x": -131.67, "curve": "stepped"}, {"time": 0.5833, "x": -131.67, "curve": 0.159, "c4": 0.9}, + {"time": 0.75} + ] + }, + "leg-front-right-IK": { + "translate": [ + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 21.56, "y": 4.31, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.25, "x": 42.9, "curve": 0, "c2": 0.3, "c3": 0.544}, + {"time": 0.3667, "x": -104.26, "y": 42.61, "curve": 0.161, "c4": 0.85}, {"time": 0.4167, "x": -153.64, "curve": "stepped"}, {"time": 0.5833, "x": -153.64, "curve": 0.154, "c4": 0.9}, + {"time": 0.7, "x": 13.43, "curve": 0.161, "c3": 0.854}, {"time": 0.75} + ] + }, + "leg-front-left-IK": { + "translate": [ + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 43.11, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "x": 48.71, "y": -1.66, "curve": 0, "c2": 0.3, "c3": 0.544}, + {"time": 0.3667, "x": -87.39, "y": 18.71, "curve": 0.161, "c4": 0.85}, {"time": 0.4167, "x": -150.32, "y": 0.83}, {"time": 0.5833, "x": -142.85, "curve": 0.154, "c4": 0.9}, + {"time": 0.7, "x": 13.43, "curve": 0.161, "c3": 0.854}, {"time": 0.75} + ] + }, + "@leg-front-left": { + "translate": [ + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": -0.28, "y": 3.31, "curve": 0, "c2": 0.3, "c3": 0.544}, + {"time": 0.25, "x": -0.62, "y": -3.21, "curve": 0, "c2": 0.25, "c3": 0.457, "c4": 0.73}, {"time": 0.3667, "x": -15.24, "y": -11.32, "curve": 0.325, "c2": 0.6, "c3": 0.672}, + {"time": 0.4167, "x": -17.97, "y": -3.57, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5833, "x": -18.47, "y": -10.19, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.75} + ] + }, + "@leg-front-right": { + "translate": [ + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 3.63, "y": 19.84, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.25, "x": -10.53, "y": -16.98, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.4167, "x": -10.44, "y": -18.31, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.5833, "x": -10.92, "y": -30.23, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.75} + ] + }, + "@pivot-main": { + "translate": [ + {"time": 0.25, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "y": 26.43, "curve": 0.315, "c4": 0.8}, {"time": 0.4167, "curve": "stepped"}, + {"time": 0.5833, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.6667, "y": 26.43, "curve": 0.315, "c4": 0.8}, {"time": 0.75} + ] + }, + "@leg-back-left": { + "translate": [ + {"time": 0.1167, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "x": -0.25, "y": -9.22, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.3333, "x": -0.44, "y": 4.57, "curve": 0.306, "c4": 0.8}, {"time": 0.4167, "x": -0.58, "y": -9.21}, + {"time": 0.5833, "x": -0.15, "y": -9.98, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.75} + ] + }, + "tail": { + "rotate": [ + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "angle": 12.92, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "angle": 18.48, "curve": 0, "c2": 0.3, "c3": 0.544}, + {"time": 0.35, "angle": -6.88, "curve": 0.7, "c4": 0.3}, {"time": 0.4167, "angle": 14}, {"time": 0.5833, "angle": 19.37, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.6833, "angle": -8.78, "curve": 0.313, "c3": 0.699}, {"time": 0.75} + ] + }, + "@shadow": { + "translate": [ + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 61.96, "curve": "stepped"}, {"time": 0.25, "x": 61.96, "curve": 0, "c2": 0.3, "c3": 0.544}, + {"time": 0.35, "x": -121.98, "curve": 0.7, "c4": 0.3}, {"time": 0.4167, "x": -154.28, "curve": "stepped"}, {"time": 0.5833, "x": -154.28, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.75} + ], + "scale": [ + {"time": 0.0833, "curve": 0, "c2": 0.26, "c3": 0.369, "c4": 0.62}, {"time": 0.25, "x": 1.06, "y": 1.06, "curve": 0.192, "c2": 0.45, "c3": 0.623}, + {"time": 0.35, "x": 0.96, "y": 0.96, "curve": 0.7, "c4": 0.3}, {"time": 0.4167, "x": 1.08, "y": 1.08, "curve": "stepped"}, + {"time": 0.5833, "x": 1.08, "y": 1.08, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.75} + ] + }, + "body-fur-under-01": { + "translate": [{"x": -0.14, "y": 0.84}], + "shear": [ + {"x": -4.09, "curve": 0.375, "c2": 0.5, "c3": 0.75}, {"time": 0.1667, "x": 26.91, "curve": 0.25, "c3": 0.228, "c4": 0.99}, {"time": 0.4167, "x": -42.78, "curve": 0.25, "c3": 0.75}, + {"time": 0.6667, "curve": 0.265, "c3": 0.618, "c4": 0.43}, {"time": 0.75, "x": -4.09} + ] + }, + "body-fur-under-02": { + "translate": [{"x": -2.23, "y": 6.28}], + "shear": [ + {"x": -27.8, "curve": 0.375, "c2": 0.62, "c3": 0.716}, {"time": 0.2167, "x": 18.72, "curve": 0.25, "c3": 0.228, "c4": 0.99}, + {"time": 0.4667, "x": -43.03, "curve": 0.243, "c3": 0.68, "c4": 0.71}, {"time": 0.6667, "x": -5.6, "curve": 0.375, "c2": 0.62, "c3": 0.716}, + {"time": 0.7167, "curve": 0.297, "c3": 0.634, "c4": 0.37}, {"time": 0.75, "x": -27.8} + ] + }, + "body-fur-under-03": { + "translate": [{"x": -0.78, "y": 3.19}], + "shear": [ + {"x": 22.47, "curve": 0.25, "c3": 0.75}, {"time": 0.2, "x": 19.28, "curve": 0.25, "c3": 0.228, "c4": 0.99}, {"time": 0.45, "x": -45.7, "curve": 0.244, "c3": 0.7, "c4": 0.79}, + {"time": 0.6667, "x": -3.18, "curve": 0.366, "c2": 0.63, "c3": 0.703}, {"time": 0.7, "curve": 0.284, "c3": 0.625, "c4": 0.38}, {"time": 0.75, "x": 22.47} + ] + }, + "body-fur-under-04": { + "translate": [{"x": -0.33, "y": 3.2}], + "shear": [ + {"x": 10.24, "curve": 0.36, "c2": 0.64, "c3": 0.695}, {"time": 0.25, "x": 13.82, "curve": 0.25, "c3": 0.228, "c4": 0.99}, + {"time": 0.5, "x": -39.88, "curve": 0.243, "c3": 0.649, "c4": 0.6}, {"time": 0.6667, "x": -22.71, "curve": 0.382, "c2": 0.57, "c3": 0.735}, {"time": 0.75, "x": 10.24} + ] + }, + "body-fur-under-05": { + "translate": [{"x": 0.53, "y": 14.98}], + "shear": [ + {"x": 3.7, "curve": 0.382, "c2": 0.57, "c3": 0.737}, {"time": 0.0333, "x": -12.53, "curve": 0.25, "c3": 0.75}, {"time": 0.2833, "x": 6.85, "curve": 0.25, "c3": 0.228, "c4": 0.99}, + {"time": 0.5333, "x": -44.3, "curve": 0.248, "c3": 0.628, "c4": 0.52}, {"time": 0.6667, "x": -27.02, "curve": 0.356, "c2": 0.41, "c3": 0.707, "c4": 0.81}, {"time": 0.75, "x": 3.7} + ] + }, + "body-braid-06": { + "rotate": [ + {"angle": -20.59, "curve": 0.352, "c2": 0.41, "c3": 0.689, "c4": 0.75}, {"time": 0.1667, "curve": 0.25, "c3": 0.75}, + {"time": 0.4167, "angle": -28.99, "curve": 0.25, "c3": 0.228, "c4": 0.99}, {"time": 0.6667, "angle": 9.53, "curve": 0.297, "c3": 0.634, "c4": 0.37}, + {"time": 0.7, "angle": 8.86, "curve": 0.304, "c2": 0.22, "c3": 0.644, "c4": 0.58}, {"time": 0.75, "angle": -20.59} + ] + }, + "body-braid-05": { + "rotate": [ + {"angle": -8.3, "curve": 0.294, "c3": 0.631, "c4": 0.37}, {"time": 0.1, "curve": 0.25, "c3": 0.75}, {"time": 0.35, "angle": -10.49, "curve": 0.25, "c3": 0.228, "c4": 0.99}, + {"time": 0.6, "angle": 8.22, "curve": 0.258, "c3": 0.619, "c4": 0.45}, {"time": 0.7, "angle": 5.2, "curve": 0.33, "c2": 0.32, "c3": 0.67, "c4": 0.68}, {"time": 0.75, "angle": -8.3} + ] + }, + "body-braid-04": { + "rotate": [ + {"angle": -9.29, "curve": 0.323, "c2": 0.3, "c3": 0.66, "c4": 0.65}, {"time": 0.0333, "curve": 0.25, "c3": 0.75}, {"time": 0.2833, "angle": 2.63, "curve": 0.25, "c3": 0.228, "c4": 0.99}, + {"time": 0.5333, "angle": 16.91, "curve": 0.243, "c3": 0.649, "c4": 0.6}, {"time": 0.7, "angle": 4.8, "curve": 0.356, "c2": 0.42, "c3": 0.696, "c4": 0.78}, {"time": 0.75, "angle": -9.29} + ] + }, + "body-braid-03": { + "rotate": [ + {"angle": -1.71, "curve": 0.337, "c2": 0.34, "c3": 0.673, "c4": 0.69}, {"time": 0.2333, "angle": 2.63, "curve": 0.25, "c3": 0.228, "c4": 0.99}, + {"time": 0.4833, "angle": 23.44, "curve": 0.244, "c3": 0.7, "c4": 0.79}, {"time": 0.7, "angle": 1.63, "curve": 0.366, "c2": 0.63, "c3": 0.703}, + {"time": 0.7333, "curve": 0.313, "c3": 0.648, "c4": 0.35}, {"time": 0.75, "angle": -1.71} + ] + }, + "body-braid-02": { + "rotate": [ + {"angle": 3.5, "curve": 0.348, "c2": 0.38, "c3": 0.685, "c4": 0.73}, {"time": 0.2, "angle": 2.63, "curve": 0.25, "c3": 0.228, "c4": 0.99}, + {"time": 0.45, "angle": 12.36, "curve": 0.25, "c3": 0.75}, {"time": 0.7, "curve": 0.284, "c3": 0.625, "c4": 0.38}, {"time": 0.75, "angle": 3.5} + ] + }, + "body-braid-01": {"rotate": [{"angle": 2.31}]} + }, + "events": [{"time": 0.25, "name": "start-attack"}, {"time": 0.4167, "name": "hit"}] + }, + "3779315145": { + "bones": { + "leg-front-left-IK": { + "translate": [ + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 3.08, "curve": 0.315, "c4": 0.8}, {"time": 0.15, "x": 13.79, "curve": 0, "c2": 0.3, "c3": 0.544}, + {"time": 0.25, "x": -43.09, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.3333, "x": 26.11, "curve": "stepped"}, {"time": 0.5, "x": 26.11, "curve": 0, "c2": 0.3, "c3": 0.544}, + {"time": 0.5833} + ] + }, + "@pivot-back": { + "rotate": [ + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "angle": 5.51, "curve": 0.315, "c4": 0.8}, {"time": 0.2, "angle": -4, "curve": 0.62, "c3": 0.536}, + {"time": 0.5, "angle": 5.83, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5833, "angle": -1.41, "curve": 0.154, "c4": 0.9}, {"time": 0.6667} + ], + "translate": [ + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.1167, "x": 13.63, "y": 1.37, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5, "y": -4.7, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.6667} + ] + }, + "@leg-front-right": { + "translate": [ + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": -1.98, "y": -24.83, "curve": 0.263, "c3": 0.629, "c4": 0.42}, + {"time": 0.1667, "x": -2.18, "y": -3.56, "curve": 0.493, "c2": 0.32, "c4": 0.83}, {"time": 0.3333, "x": -2.18, "y": -2.89, "curve": "stepped"}, + {"time": 0.4833, "x": -2.18, "y": -2.89, "curve": 0, "c2": 0.17, "c3": 0.45, "c4": 0.61}, {"time": 0.5, "x": -1.98, "y": -24.83, "curve": 0, "c2": 0.17, "c3": 0.45, "c4": 0.61}, + {"time": 0.5833, "x": -1.28, "y": 8.38, "curve": 0.345, "c2": 0.53, "c3": 0.751}, {"time": 0.6667} + ] + }, + "tail": { + "rotate": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1167, "angle": 11.6, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "angle": -18.66, "curve": 0.313, "c3": 0.699}, + {"time": 0.4667, "angle": 16.43, "curve": 0.315, "c4": 0.8}, {"time": 0.5833, "angle": -6.67, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.6667} + ] + }, + "leg-back-left-IK": { + "translate": [ + {"time": 0.15, "curve": 0.464, "c4": 0.7}, {"time": 0.25, "x": -43.09, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.4, "x": 34.02, "curve": "stepped"}, + {"time": 0.45, "x": 34.02, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.5833} + ] + }, + "@leg-back-left": { + "translate": [ + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.1333, "x": -0.27, "y": -3.45, "curve": "stepped"}, {"time": 0.5, "x": -0.27, "y": -3.45, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.6667} + ] + }, + "@leg-front-left": { + "translate": [ + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": -1.04, "y": -13.11, "curve": 0.263, "c3": 0.629, "c4": 0.42}, + {"time": 0.1667, "x": -1.14, "y": -2.73, "curve": 0.493, "c2": 0.32, "c4": 0.83}, {"time": 0.3333, "x": -1.16, "y": -1.14, "curve": "stepped"}, + {"time": 0.4833, "x": -1.16, "y": -1.14, "curve": 0, "c2": 0.17, "c3": 0.45, "c4": 0.61}, {"time": 0.5, "x": -1.04, "y": -13.11, "curve": 0, "c2": 0.17, "c3": 0.45, "c4": 0.61}, + {"time": 0.5833, "x": -0.69, "y": 4.65, "curve": 0.345, "c2": 0.53, "c3": 0.751}, {"time": 0.6667} + ] + }, + "leg-front-right-IK": { + "translate": [ + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 3.08, "curve": 0.315, "c4": 0.8}, {"time": 0.15, "x": 13.79, "curve": 0, "c2": 0.3, "c3": 0.544}, + {"time": 0.25, "x": -43.09, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.3333, "x": 26.11, "curve": "stepped"}, {"time": 0.5, "x": 26.11, "curve": 0, "c2": 0.3, "c3": 0.544}, + {"time": 0.5833} + ] + }, + "@shadow": { + "scale": [ + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 1.1, "y": 1.1, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "x": 0.8, "y": 0.8, "curve": 0.315, "c4": 0.8}, + {"time": 0.5, "x": 1.1, "y": 1.1, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.6667} + ] + }, + "@pivot-main": { + "translate": [{"time": 0.1667, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "y": 133.58, "curve": 0.315, "c4": 0.8}, {"time": 0.5}], + "scale": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "y": 0.97, "curve": 0.315, "c4": 0.8}, {"time": 0.1667, "curve": "stepped"}, {"time": 0.4167, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.5, "y": 0.97, "curve": 0.315, "c4": 0.8}, {"time": 0.5833} + ] + }, + "body-fur-under-04": { + "translate": [{"x": -0.33, "y": 3.2}], + "shear": [ + {"x": 10.24, "curve": 0.36, "c2": 0.64, "c3": 0.695}, {"time": 0.0167, "x": 11.47, "curve": 0.25, "c3": 0.75}, {"time": 0.1833, "x": -17.33, "curve": 0.25, "c3": 0.75}, + {"time": 0.35, "x": 11.47, "curve": 0.25, "c3": 0.75}, {"time": 0.5167, "x": -17.33, "curve": 0.245, "c3": 0.711, "c4": 0.83}, {"time": 0.6667, "x": 10.24} + ] + }, + "body-fur-under-02": { + "translate": [{"x": -2.23, "y": 6.28}], + "shear": [ + {"x": -27.8, "curve": 0.375, "c2": 0.62, "c3": 0.716}, {"time": 0.0333, "x": -31.97, "curve": 0.25, "c3": 0.75}, {"time": 0.2, "x": 0.11, "curve": 0.25, "c3": 0.75}, + {"time": 0.3667, "x": -31.97, "curve": 0.25, "c3": 0.75}, {"time": 0.5333, "x": 0.11, "curve": 0.243, "c3": 0.68, "c4": 0.71}, {"time": 0.6667, "x": -27.8} + ] + }, + "body-braid-03": { + "rotate": [ + {"angle": -1.71, "curve": 0.337, "c2": 0.34, "c3": 0.673, "c4": 0.69}, {"time": 0.0333, "angle": 1, "curve": 0.354, "c2": 0.41, "c3": 0.694, "c4": 0.77}, + {"time": 0.0667, "angle": 4, "curve": 0.369, "c2": 0.63, "c3": 0.706}, {"time": 0.0833, "angle": 5.15, "curve": 0.25, "c3": 0.75}, + {"time": 0.25, "angle": -8.41, "curve": 0.25, "c3": 0.75}, {"time": 0.4167, "angle": 5.15, "curve": 0.25, "c3": 0.75}, + {"time": 0.5833, "angle": -8.69, "curve": 0.25, "c3": 0.625, "c4": 0.5}, {"time": 0.6667, "angle": -1.71} + ] + }, + "body-braid-06": { + "rotate": [ + {"angle": -20.59, "curve": 0.352, "c2": 0.41, "c3": 0.689, "c4": 0.75}, {"time": 0.0333, "angle": -24.8, "curve": 0.369, "c2": 0.63, "c3": 0.706}, + {"time": 0.05, "angle": -27.05, "curve": 0.318, "c3": 0.652, "c4": 0.34}, {"time": 0.0667, "angle": -26.59, "curve": 0.271, "c2": 0.09, "c3": 0.753}, + {"time": 0.2167, "curve": 0.25, "c3": 0.75}, {"time": 0.3833, "angle": -26.77, "curve": 0.25, "c3": 0.75}, {"time": 0.55, "curve": 0.243, "c3": 0.655, "c4": 0.63}, + {"time": 0.6667, "angle": -20.59} + ] + }, + "body-braid-05": { + "rotate": [ + {"angle": -8.3, "curve": 0.294, "c3": 0.631, "c4": 0.37}, {"time": 0.0333, "angle": -7.64, "curve": 0.306, "c2": 0.23, "c3": 0.646, "c4": 0.59}, + {"time": 0.0667, "angle": -5.77, "curve": 0.354, "c2": 0.41, "c3": 0.756}, {"time": 0.1667, "curve": 0.25, "c3": 0.75}, {"time": 0.3333, "angle": -8.02, "curve": 0.25, "c3": 0.75}, + {"time": 0.5, "curve": 0.25, "c3": 0.75}, {"time": 0.6667, "angle": -8.3} + ] + }, + "body-braid-02": { + "rotate": [ + {"angle": 3.5, "curve": 0.348, "c2": 0.38, "c3": 0.685, "c4": 0.73}, {"time": 0.0333, "angle": 3.89, "curve": 0.375, "c2": 0.62, "c3": 0.716}, + {"time": 0.0667, "angle": 4.18, "curve": 0.25, "c3": 0.75}, {"time": 0.2333, "angle": 1.94, "curve": 0.25, "c3": 0.75}, {"time": 0.4, "angle": 4.18, "curve": 0.25, "c3": 0.75}, + {"time": 0.5667, "angle": 1.94, "curve": 0.244, "c3": 0.646, "c4": 0.59}, {"time": 0.6667, "angle": 3.5} + ] + }, + "body-braid-04": { + "rotate": [ + {"angle": -9.29, "curve": 0.323, "c2": 0.3, "c3": 0.66, "c4": 0.65}, {"time": 0.0333, "angle": -6.92, "curve": 0.335, "c2": 0.34, "c3": 0.674, "c4": 0.69}, + {"time": 0.0667, "angle": -3.73, "curve": 0.382, "c2": 0.57, "c3": 0.737}, {"time": 0.1167, "curve": 0.25, "c3": 0.75}, {"time": 0.2833, "angle": -11.98, "curve": 0.25, "c3": 0.75}, + {"time": 0.45, "curve": 0.25, "c3": 0.75}, {"time": 0.6167, "angle": -12.25, "curve": 0.269, "c3": 0.618, "c4": 0.42}, {"time": 0.6667, "angle": -9.29} + ] + }, + "body-braid-01": { + "rotate": [ + {"angle": 2.31, "curve": 0.348, "c2": 0.38, "c3": 0.685, "c4": 0.73}, {"time": 0.0333, "angle": 2.87, "curve": 0.375, "c2": 0.62, "c3": 0.716}, + {"time": 0.0667, "angle": 3.3, "curve": 0.25, "c3": 0.75}, {"time": 0.2333, "curve": 0.25, "c3": 0.75}, {"time": 0.4, "angle": 3.3, "curve": 0.25, "c3": 0.75}, + {"time": 0.5667, "curve": 0.244, "c3": 0.646, "c4": 0.59}, {"time": 0.6667, "angle": 2.31} + ] + }, + "body-fur-under-03": { + "translate": [{"x": -0.78, "y": 3.19}], + "shear": [ + {"x": 22.47, "curve": 0.25, "c3": 0.75}, {"time": 0.1667, "curve": 0.25, "c3": 0.75}, {"time": 0.3333, "x": 22.47, "curve": 0.25, "c3": 0.75}, {"time": 0.5, "curve": 0.25, "c3": 0.75}, + {"time": 0.6667, "x": 22.47} + ] + }, + "body-fur-under-01": { + "translate": [{"x": -0.14, "y": 0.84}], + "shear": [ + {"x": -4.09, "curve": 0.375, "c2": 0.5, "c3": 0.75}, {"time": 0.0833, "x": -25.22, "curve": 0.25, "c3": 0.75}, {"time": 0.25, "x": 17.03, "curve": 0.25, "c3": 0.75}, + {"time": 0.4167, "x": -25.22, "curve": 0.25, "c3": 0.75}, {"time": 0.5833, "x": 17.03, "curve": 0.25, "c3": 0.625, "c4": 0.5}, {"time": 0.6667, "x": -4.09} + ] + }, + "body-fur-under-05": { + "translate": [{"x": 0.53, "y": 14.98}], + "shear": [ + {"x": 3.7, "curve": 0.382, "c2": 0.57, "c3": 0.737}, {"time": 0.0667, "x": 13.52, "curve": 0.25, "c3": 0.75}, {"time": 0.2333, "x": -18.7, "curve": 0.25, "c3": 0.75}, + {"time": 0.4, "x": 13.52, "curve": 0.25, "c3": 0.75}, {"time": 0.5667, "x": -18.7, "curve": 0.244, "c3": 0.646, "c4": 0.59}, {"time": 0.6667, "x": 3.7} + ] + } + }, + "events": [{"time": 0.15, "name": "jump"}] + }, + "1392842846": { + "bones": { + "@pivot-back": { + "rotate": [ + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "angle": 5.51, "curve": 0.315, "c4": 0.8}, {"time": 0.2, "angle": -4, "curve": 0.62, "c3": 0.536}, + {"time": 0.5, "angle": 5.83, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5833, "angle": -1.41, "curve": 0.154, "c4": 0.9}, {"time": 0.6667} + ], + "translate": [ + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.1167, "x": 13.63, "y": 1.37, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5, "y": -4.7, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.6667} + ] + }, + "@leg-front-right": { + "translate": [ + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": -1.98, "y": -24.83, "curve": 0.263, "c3": 0.629, "c4": 0.42}, + {"time": 0.1667, "x": -2.18, "y": -3.56, "curve": 0.493, "c2": 0.32, "c4": 0.83}, {"time": 0.3333, "x": -2.18, "y": -2.89, "curve": "stepped"}, + {"time": 0.4833, "x": -2.18, "y": -2.89, "curve": 0, "c2": 0.17, "c3": 0.45, "c4": 0.61}, {"time": 0.5, "x": -1.98, "y": -24.83, "curve": 0, "c2": 0.17, "c3": 0.45, "c4": 0.61}, + {"time": 0.5833, "x": -1.28, "y": 8.38, "curve": 0.345, "c2": 0.53, "c3": 0.751}, {"time": 0.6667} + ] + }, + "leg-front-right-IK": { + "translate": [ + {"time": 0.15, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.25, "x": 26.77, "curve": 0.315, "c4": 0.8}, {"time": 0.35, "x": -20.02, "curve": "stepped"}, + {"time": 0.5, "x": -20.02, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.5833} + ] + }, + "@leg-front-left": { + "translate": [ + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": -1.04, "y": -13.11, "curve": 0.263, "c3": 0.629, "c4": 0.42}, + {"time": 0.1667, "x": -1.14, "y": -2.73, "curve": 0.493, "c2": 0.32, "c4": 0.83}, {"time": 0.3333, "x": -1.16, "y": -1.14, "curve": "stepped"}, + {"time": 0.4833, "x": -1.16, "y": -1.14, "curve": 0, "c2": 0.17, "c3": 0.45, "c4": 0.61}, {"time": 0.5, "x": -1.04, "y": -13.11, "curve": 0, "c2": 0.17, "c3": 0.45, "c4": 0.61}, + {"time": 0.5833, "x": -0.69, "y": 4.65, "curve": 0.345, "c2": 0.53, "c3": 0.751}, {"time": 0.6667} + ] + }, + "leg-front-left-IK": { + "translate": [ + {"time": 0.15, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.25, "x": 26.77, "curve": 0.315, "c4": 0.8}, {"time": 0.35, "x": -20.02, "curve": "stepped"}, + {"time": 0.5, "x": -20.02, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.5833} + ] + }, + "@leg-back-left": { + "translate": [ + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.1333, "x": -0.27, "y": -3.45, "curve": "stepped"}, {"time": 0.5, "x": -0.27, "y": -3.45, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.6667} + ] + }, + "leg-back-left-IK": { + "translate": [ + {"time": 0.15, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.25, "x": 26.77, "curve": "stepped"}, {"time": 0.3, "x": 26.77, "curve": 0.315, "c4": 0.8}, + {"time": 0.4167, "x": -20.02, "curve": "stepped"}, {"time": 0.5, "x": -20.02, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.5833} + ] + }, + "@pivot-main": { + "translate": [{"time": 0.1667, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "y": 133.58, "curve": 0.315, "c4": 0.8}, {"time": 0.5}], + "scale": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "y": 0.97, "curve": 0.315, "c4": 0.8}, {"time": 0.1667, "curve": "stepped"}, {"time": 0.4167, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.5, "y": 0.97, "curve": 0.315, "c4": 0.8}, {"time": 0.5833} + ] + }, + "tail": { + "rotate": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1167, "angle": 11.6, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "angle": -18.66, "curve": 0.313, "c3": 0.699}, + {"time": 0.4667, "angle": 16.43, "curve": 0.315, "c4": 0.8}, {"time": 0.5833, "angle": -6.67, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.6667} + ] + }, + "@shadow": { + "scale": [ + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 1.1, "y": 1.1, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "x": 0.8, "y": 0.8, "curve": 0.315, "c4": 0.8}, + {"time": 0.5, "x": 1.1, "y": 1.1, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.6667} + ] + }, + "body-braid-01": { + "rotate": [ + {"angle": 2.31, "curve": 0.348, "c2": 0.38, "c3": 0.685, "c4": 0.73}, {"time": 0.0333, "angle": 2.87, "curve": 0.375, "c2": 0.62, "c3": 0.716}, + {"time": 0.0667, "angle": 3.3, "curve": 0.25, "c3": 0.75}, {"time": 0.2333, "curve": 0.25, "c3": 0.75}, {"time": 0.4, "angle": 3.3, "curve": 0.25, "c3": 0.75}, + {"time": 0.5667, "curve": 0.244, "c3": 0.646, "c4": 0.59}, {"time": 0.6667, "angle": 2.31} + ] + }, + "body-braid-02": { + "rotate": [ + {"angle": 3.5, "curve": 0.348, "c2": 0.38, "c3": 0.685, "c4": 0.73}, {"time": 0.0333, "angle": 3.89, "curve": 0.375, "c2": 0.62, "c3": 0.716}, + {"time": 0.0667, "angle": 4.18, "curve": 0.25, "c3": 0.75}, {"time": 0.2333, "angle": 1.94, "curve": 0.25, "c3": 0.75}, {"time": 0.4, "angle": 4.18, "curve": 0.25, "c3": 0.75}, + {"time": 0.5667, "angle": 1.94, "curve": 0.244, "c3": 0.646, "c4": 0.59}, {"time": 0.6667, "angle": 3.5} + ] + }, + "body-braid-03": { + "rotate": [ + {"angle": -1.71, "curve": 0.337, "c2": 0.34, "c3": 0.673, "c4": 0.69}, {"time": 0.0333, "angle": 1, "curve": 0.354, "c2": 0.41, "c3": 0.694, "c4": 0.77}, + {"time": 0.0667, "angle": 4, "curve": 0.369, "c2": 0.63, "c3": 0.706}, {"time": 0.0833, "angle": 5.15, "curve": 0.25, "c3": 0.75}, + {"time": 0.25, "angle": -8.41, "curve": 0.25, "c3": 0.75}, {"time": 0.4167, "angle": 5.15, "curve": 0.25, "c3": 0.75}, + {"time": 0.5833, "angle": -8.69, "curve": 0.25, "c3": 0.625, "c4": 0.5}, {"time": 0.6667, "angle": -1.71} + ] + }, + "body-braid-04": { + "rotate": [ + {"angle": -9.29, "curve": 0.323, "c2": 0.3, "c3": 0.66, "c4": 0.65}, {"time": 0.0333, "angle": -6.92, "curve": 0.335, "c2": 0.34, "c3": 0.674, "c4": 0.69}, + {"time": 0.0667, "angle": -3.73, "curve": 0.382, "c2": 0.57, "c3": 0.737}, {"time": 0.1167, "curve": 0.25, "c3": 0.75}, {"time": 0.2833, "angle": -11.98, "curve": 0.25, "c3": 0.75}, + {"time": 0.45, "curve": 0.25, "c3": 0.75}, {"time": 0.6167, "angle": -12.25, "curve": 0.269, "c3": 0.618, "c4": 0.42}, {"time": 0.6667, "angle": -9.29} + ] + }, + "body-braid-05": { + "rotate": [ + {"angle": -8.3, "curve": 0.294, "c3": 0.631, "c4": 0.37}, {"time": 0.0333, "angle": -7.64, "curve": 0.306, "c2": 0.23, "c3": 0.646, "c4": 0.59}, + {"time": 0.0667, "angle": -5.77, "curve": 0.354, "c2": 0.41, "c3": 0.756}, {"time": 0.1667, "curve": 0.25, "c3": 0.75}, {"time": 0.3333, "angle": -8.02, "curve": 0.25, "c3": 0.75}, + {"time": 0.5, "curve": 0.25, "c3": 0.75}, {"time": 0.6667, "angle": -8.3} + ] + }, + "body-braid-06": { + "rotate": [ + {"angle": -20.59, "curve": 0.352, "c2": 0.41, "c3": 0.689, "c4": 0.75}, {"time": 0.0333, "angle": -24.8, "curve": 0.369, "c2": 0.63, "c3": 0.706}, + {"time": 0.05, "angle": -27.05, "curve": 0.318, "c3": 0.652, "c4": 0.34}, {"time": 0.0667, "angle": -26.59, "curve": 0.271, "c2": 0.09, "c3": 0.753}, + {"time": 0.2167, "curve": 0.25, "c3": 0.75}, {"time": 0.3833, "angle": -26.77, "curve": 0.25, "c3": 0.75}, {"time": 0.55, "curve": 0.243, "c3": 0.655, "c4": 0.63}, + {"time": 0.6667, "angle": -20.59} + ] + }, + "body-fur-under-05": { + "translate": [{"x": 0.53, "y": 14.98}], + "shear": [ + {"x": 3.7, "curve": 0.382, "c2": 0.57, "c3": 0.737}, {"time": 0.0667, "x": 13.52, "curve": 0.25, "c3": 0.75}, {"time": 0.2333, "x": -18.7, "curve": 0.25, "c3": 0.75}, + {"time": 0.4, "x": 13.52, "curve": 0.25, "c3": 0.75}, {"time": 0.5667, "x": -18.7, "curve": 0.244, "c3": 0.646, "c4": 0.59}, {"time": 0.6667, "x": 3.7} + ] + }, + "body-fur-under-04": { + "translate": [{"x": -0.33, "y": 3.2}], + "shear": [ + {"x": 10.24, "curve": 0.36, "c2": 0.64, "c3": 0.695}, {"time": 0.0167, "x": 11.47, "curve": 0.25, "c3": 0.75}, {"time": 0.1833, "x": -17.33, "curve": 0.25, "c3": 0.75}, + {"time": 0.35, "x": 11.47, "curve": 0.25, "c3": 0.75}, {"time": 0.5167, "x": -17.33, "curve": 0.245, "c3": 0.711, "c4": 0.83}, {"time": 0.6667, "x": 10.24} + ] + }, + "body-fur-under-03": { + "translate": [{"x": -0.78, "y": 3.19}], + "shear": [ + {"x": 22.47, "curve": 0.25, "c3": 0.75}, {"time": 0.1667, "curve": 0.25, "c3": 0.75}, {"time": 0.3333, "x": 22.47, "curve": 0.25, "c3": 0.75}, {"time": 0.5, "curve": 0.25, "c3": 0.75}, + {"time": 0.6667, "x": 22.47} + ] + }, + "body-fur-under-02": { + "translate": [{"x": -2.23, "y": 6.28}], + "shear": [ + {"x": -27.8, "curve": 0.375, "c2": 0.62, "c3": 0.716}, {"time": 0.0333, "x": -31.97, "curve": 0.25, "c3": 0.75}, {"time": 0.2, "x": 0.11, "curve": 0.25, "c3": 0.75}, + {"time": 0.3667, "x": -31.97, "curve": 0.25, "c3": 0.75}, {"time": 0.5333, "x": 0.11, "curve": 0.243, "c3": 0.68, "c4": 0.71}, {"time": 0.6667, "x": -27.8} + ] + }, + "body-fur-under-01": { + "translate": [{"x": -0.14, "y": 0.84}], + "shear": [ + {"x": -4.09, "curve": 0.375, "c2": 0.5, "c3": 0.75}, {"time": 0.0833, "x": -25.22, "curve": 0.25, "c3": 0.75}, {"time": 0.25, "x": 17.03, "curve": 0.25, "c3": 0.75}, + {"time": 0.4167, "x": -25.22, "curve": 0.25, "c3": 0.75}, {"time": 0.5833, "x": 17.03, "curve": 0.25, "c3": 0.625, "c4": 0.5}, {"time": 0.6667, "x": -4.09} + ] + } + }, + "events": [{"time": 0.15, "name": "jump"}] + }, + "3353545678": { + "slots": { + "eyes": {"attachment": [{"time": 0.0833, "name": "eyes-shut"}, {"time": 0.1667, "name": "eyes-angry"}, {"time": 0.9833, "name": "eyes-shut"}, {"time": 1.0833, "name": "eyes"}]}, + "leg-front-left": { + "attachment": [ + {"time": 0.5, "name": "leg-front-left-stretch"}, {"time": 0.6333, "name": "leg-front-left"}, {"time": 0.7667, "name": "leg-front-left-stretch"}, {"time": 0.9, "name": "leg-front-left"} + ] + }, + "mouth": {"attachment": [{"time": 0.0833, "name": "mouth-bite"}, {"time": 0.3667, "name": "mouth-open"}, {"time": 0.9833, "name": "mouth-bite"}, {"time": 1.0833, "name": "mouth"}]} + }, + "bones": { + "@pivot-back": { + "rotate": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.15, "angle": 3.67, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.3333, "angle": -14.29, "curve": 0.779, "c4": 0.3}, + {"time": 0.3667, "angle": 15.82}, {"time": 0.4667, "angle": 16.67, "curve": 0.779, "c4": 0.3}, {"time": 0.5, "angle": -19.96}, {"time": 0.6, "angle": -21.17, "curve": 0.779, "c4": 0.3}, + {"time": 0.6333, "angle": 15.82}, {"time": 0.7333, "angle": 16.67, "curve": 0.779, "c4": 0.3}, {"time": 0.7667, "angle": -19.96}, + {"time": 0.8667, "angle": -21.17, "curve": 0.779, "c4": 0.3}, {"time": 0.9833, "angle": 4.4, "curve": 0, "c2": 0.1, "c3": 0.85}, + {"time": 1.05, "angle": 6.79, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1.25} + ], + "translate": [ + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.2167, "x": 8.02, "curve": 0, "c2": 0.4, "c3": 0.383}, {"time": 0.3333, "x": -54.3, "y": 61.69, "curve": 0.779, "c4": 0.3}, + {"time": 0.3667, "x": -60.41, "y": 130.13}, {"time": 0.4667, "x": -60.41, "y": 130.01, "curve": 0.779, "c4": 0.3}, {"time": 0.5, "x": -58.41, "y": 9.6}, + {"time": 0.6, "x": -58.41, "y": 9.9, "curve": 0.779, "c4": 0.3}, {"time": 0.6333, "x": -60.41, "y": 130.13}, {"time": 0.7333, "x": -60.41, "y": 130.01, "curve": 0.779, "c4": 0.3}, + {"time": 0.7667, "x": -58.41, "y": 9.6}, {"time": 0.8667, "x": -58.41, "y": 9.9, "curve": 0.779, "c4": 0.3}, {"time": 0.9833} + ] + }, + "@leg-front-right": { + "translate": [ + {"curve": 0, "c2": 0.17, "c3": 0.521, "c4": 0.69}, {"time": 0.15, "x": -16.23, "y": -19.18, "curve": 0.377, "c2": 0.59, "c3": 0.739}, {"time": 0.2167, "x": -18.54, "y": -11.57}, + {"time": 0.25, "x": -22.65, "y": 8.05, "curve": 0, "c2": 0.4, "c3": 0.383}, {"time": 0.3333, "x": 29.92, "y": -4.24, "curve": 0.779, "c4": 0.4}, {"time": 0.3667, "x": 22.95, "y": 2.68}, + {"time": 0.4667, "x": 29.92, "y": -4.24, "curve": 0.779, "c4": 0.4}, {"time": 0.5, "x": 22.95, "y": 2.68}, {"time": 0.6, "x": 29.92, "y": -4.24, "curve": 0.779, "c4": 0.4}, + {"time": 0.6333, "x": 22.95, "y": 2.68}, {"time": 0.7333, "x": 29.92, "y": -4.24, "curve": 0.779, "c4": 0.4}, {"time": 0.7667, "x": 22.95, "y": 2.68, "curve": "stepped"}, + {"time": 0.9167, "x": 22.95, "y": 2.68, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.95, "curve": 0.464, "c4": 0.7}, {"time": 0.9833, "x": -1.45, "y": -24.11}, + {"time": 1.05, "x": -3.72, "y": -46.34, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1.0833} + ], + "scale": [ + {"time": 0.2167}, {"time": 0.25, "x": 1.5}, {"time": 0.3333, "curve": 0.779, "c4": 0.4}, {"time": 0.3667, "x": 1.5}, {"time": 0.4667, "x": 1.51, "curve": 0.157, "c2": 0.33, "c3": 0.727}, + {"time": 0.5, "curve": "stepped"}, {"time": 0.6, "curve": 0.779, "c4": 0.4}, {"time": 0.6333, "x": 1.5}, {"time": 0.7333, "x": 1.51, "curve": 0.157, "c2": 0.33, "c3": 0.727}, + {"time": 0.7667} + ] + }, + "@leg-front-left": { + "translate": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.2167, "x": -6.84, "y": -9.77, "curve": "stepped"}, {"time": 0.9833, "x": -6.84, "y": -9.77, "curve": 0, "c2": 0.1, "c3": 0.85}, + {"time": 1.05, "x": -6.29, "y": -18.69, "curve": 0, "c2": 0.23, "c3": 0.365, "c4": 0.58}, {"time": 1.0833, "x": -3.64, "y": -2.46, "curve": 0.177, "c2": 0.35, "c3": 0.731}, + {"time": 1.25} + ], + "scale": [ + {"time": 0.4667, "curve": 0.779, "c4": 0.4}, {"time": 0.5, "x": 1.5}, {"time": 0.6, "x": 1.51, "curve": 0.157, "c2": 0.33, "c3": 0.727}, {"time": 0.6333, "curve": "stepped"}, + {"time": 0.7333, "curve": 0.779, "c4": 0.4}, {"time": 0.7667, "x": 1.5}, {"time": 0.8667, "x": 1.51, "curve": 0.157, "c2": 0.33, "c3": 0.727}, {"time": 0.9833} + ] + }, + "@leg-back-left": { + "translate": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.2167, "x": -0.11, "y": -2.73, "curve": "stepped"}, {"time": 0.9833, "x": -0.11, "y": -2.73, "curve": 0, "c2": 0.1, "c3": 0.85}, + {"time": 1.05, "x": -0.46, "y": -6.19, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1.25} + ] + }, + "@pivot-main": { + "translate": [ + {"time": 0.15, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "x": -73.35, "y": 43, "curve": "stepped"}, {"time": 0.8667, "x": -73.35, "y": 43, "curve": 0.315, "c4": 0.8}, + {"time": 0.9833, "x": -146.44, "curve": "stepped"}, {"time": 1.05, "x": -146.44, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1.15, "x": -45.61, "y": 50.15, "curve": 0.315, "c4": 0.8}, + {"time": 1.25} + ], + "scale": [{"time": 0.9833, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1.05, "y": 0.98, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1.15}] + }, + "leg-front-right-IK": { + "translate": [ + {"time": 0.15, "curve": 0, "c2": 0.18, "c3": 0.416, "c4": 0.58}, {"time": 0.2167, "x": 19.11, "y": 67.51}, {"time": 0.25, "x": 9.04, "y": 75.61, "curve": 0, "c2": 0.4, "c3": 0.383}, + {"time": 0.3333, "x": -160.66, "y": 272.78, "curve": 0.779, "c4": 0.4}, {"time": 0.3667, "x": -57.38, "y": -16.06}, {"time": 0.4667, "x": -10.1, "y": -16.06, "curve": 0.779, "c4": 0.4}, + {"time": 0.5, "x": -151.82, "y": 190.82}, {"time": 0.6, "x": -168.95, "y": 277.96, "curve": 0.779, "c4": 0.4}, {"time": 0.6333, "x": -54.28, "y": -17.1}, + {"time": 0.7333, "x": -12.17, "y": -17.1, "curve": 0.779, "c4": 0.4}, {"time": 0.7667, "x": -151.82, "y": 190.82}, {"time": 0.8667, "x": -165.84, "y": 271.75, "curve": 0.779, "c4": 0.4}, + {"time": 0.9833, "curve": "stepped"}, {"time": 1.05, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 1.0833, "x": -14.68, "y": -19.57, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1.25} + ] + }, + "leg-front-left-IK": { + "translate": [ + {"time": 0.15, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "x": -54.88, "y": 124.95, "curve": 0.779, "c4": 0.4}, {"time": 0.3667, "x": 37.97, "y": 122.64}, + {"time": 0.4667, "x": 48.96, "y": 138.43, "curve": 0.779, "c4": 0.4}, {"time": 0.5, "x": -142.3, "y": 180.66}, {"time": 0.6, "x": -134.29, "y": 191.98, "curve": 0.779, "c4": 0.4}, + {"time": 0.6333, "x": 37.97, "y": 122.64}, {"time": 0.7333, "x": 48.96, "y": 138.43, "curve": 0.779, "c4": 0.4}, {"time": 0.7667, "x": -142.3, "y": 180.66}, + {"time": 0.8667, "x": -134.29, "y": 191.98, "curve": 0.617, "c4": 0.6}, {"time": 0.9833, "curve": "stepped"}, {"time": 1.05, "curve": 0, "c2": 0.1, "c3": 0.85}, + {"time": 1.0833, "x": -7.79, "y": -10.12, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1.25} + ] + }, + "leg-back-left-IK": { + "translate": [ + {"time": 0.0833, "curve": 0.332, "c3": 0.682, "c4": 0.41}, {"time": 0.2167, "x": 21.57, "y": 4.03, "curve": 0, "c2": 0.4, "c3": 0.383}, + {"time": 0.3333, "x": -50.73, "y": 91.08, "curve": 0.779, "c4": 0.4}, {"time": 0.3667, "x": 19.18, "y": 184.64}, {"time": 0.4667, "x": 25.59, "y": 197.69, "curve": 0.779, "c4": 0.4}, + {"time": 0.5, "x": -145.53, "y": 47.62}, {"time": 0.6, "x": -152.68, "y": 53.34, "curve": 0.779, "c4": 0.4}, {"time": 0.6333, "x": 19.18, "y": 184.64}, + {"time": 0.7333, "x": 25.59, "y": 197.69, "curve": 0.779, "c4": 0.4}, {"time": 0.7667, "x": -145.53, "y": 47.62}, {"time": 0.8667, "x": -153.88, "y": 53.26, "curve": 0.779, "c4": 0.4}, + {"time": 0.9833, "curve": "stepped"}, {"time": 1.05, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 1.1667, "x": 24.35, "y": 13.92, "curve": 0.154, "c4": 0.9}, {"time": 1.25} + ] + }, + "tail": { + "rotate": [ + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.15, "angle": 14.68, "curve": 0.315, "c4": 0.8}, {"time": 0.2167, "angle": -12.57}, + {"time": 0.3333, "angle": -14.89, "curve": 0.779, "c4": 0.4}, {"time": 0.3667, "angle": 20.64}, {"time": 0.4667, "angle": 25.18, "curve": 0.779, "c4": 0.4}, + {"time": 0.5, "angle": -19.72}, {"time": 0.6, "angle": -22.19, "curve": 0.779, "c4": 0.4}, {"time": 0.6333, "angle": 20.64}, {"time": 0.7333, "angle": 25.18, "curve": 0.779, "c4": 0.4}, + {"time": 0.7667, "angle": -19.72}, {"time": 0.8667, "angle": -22.19, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.9833, "angle": 23.3}, + {"time": 1.05, "angle": 26.39, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1.1333, "angle": -14.8, "curve": 0.154, "c4": 0.9}, {"time": 1.25} + ] + }, + "@shadow": { + "translate": [ + {"time": 0.15, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.3333, "x": -132.39, "curve": 0.779, "c4": 0.4}, {"time": 0.3667, "x": -111.3, "curve": "stepped"}, + {"time": 0.8667, "x": -111.3, "curve": 0.315, "c4": 0.8}, {"time": 0.9833, "x": -132.39, "curve": "stepped"}, {"time": 1.05, "x": -132.39, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 1.25} + ], + "scale": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.15, "x": 1.05, "y": 1.05, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.3333, "x": 0.93, "y": 0.93, "curve": 0.779, "c4": 0.4}, + {"time": 0.3667, "x": 0.95, "y": 0.95}, {"time": 0.4667, "x": 0.93, "y": 0.93, "curve": 0.779, "c4": 0.4}, {"time": 0.5}, {"time": 0.6, "x": 1.05, "y": 1.05, "curve": 0.779, "c4": 0.4}, + {"time": 0.6333}, {"time": 0.7333, "x": 0.93, "y": 0.93, "curve": 0.779, "c4": 0.4}, {"time": 0.7667}, {"time": 0.8667, "x": 1.05, "y": 1.05, "curve": 0.315, "c4": 0.8}, + {"time": 0.9833, "x": 1.09, "y": 1.09, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 1.05, "x": 1.11, "y": 1.11, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1.25} + ] + }, + "body-fur-under-01": { + "translate": [{"x": -0.14, "y": 0.84}], + "shear": [ + {"x": -4.09, "curve": 0.375, "c2": 0.5, "c3": 0.75}, {"time": 0.0833, "x": 26.91, "curve": 0.25, "c3": 0.228, "c4": 0.99}, {"time": 0.2167, "x": -42.78, "curve": 0.25, "c3": 0.75}, + {"time": 0.3333, "curve": 0.265, "c3": 0.618, "c4": 0.43}, {"time": 0.3667, "x": 7.64, "curve": 0.351, "c2": 0.4, "c3": 0.757}, + {"time": 0.4, "x": 26.91, "curve": 0.25, "c3": 0.228, "c4": 0.99}, {"time": 0.4333, "x": -42.78, "curve": 0.25, "c3": 0.75}, {"time": 0.4833, "curve": "stepped"}, + {"time": 0.5, "curve": 0.265, "c3": 0.618, "c4": 0.43}, {"time": 0.5167, "x": 7.64, "curve": 0.351, "c2": 0.4, "c3": 0.757}, + {"time": 0.55, "x": 26.91, "curve": 0.25, "c3": 0.228, "c4": 0.99}, {"time": 0.6, "x": -42.78, "curve": 0.25, "c3": 0.75}, {"time": 0.65, "curve": "stepped"}, + {"time": 0.6667, "curve": 0.265, "c3": 0.618, "c4": 0.43}, {"time": 0.6833, "x": 7.64, "curve": 0.351, "c2": 0.4, "c3": 0.757}, + {"time": 0.7167, "x": 26.91, "curve": 0.25, "c3": 0.228, "c4": 0.99}, {"time": 0.75, "x": -42.78, "curve": 0.25, "c3": 0.75}, {"time": 0.8, "curve": 0.265, "c3": 0.618, "c4": 0.43}, + {"time": 0.8167, "x": 7.64, "curve": 0.351, "c2": 0.4, "c3": 0.757}, {"time": 0.8333, "curve": 0.265, "c3": 0.618, "c4": 0.43}, + {"time": 0.8833, "x": 7.64, "curve": 0.351, "c2": 0.4, "c3": 0.757}, {"time": 0.9667, "x": 26.91, "curve": 0.25, "c3": 0.228, "c4": 0.99}, + {"time": 1.0833, "x": -42.78, "curve": 0.25, "c3": 0.75}, {"time": 1.2167, "curve": 0.265, "c3": 0.618, "c4": 0.43}, {"time": 1.25, "x": -4.09} + ] + }, + "body-fur-under-02": { + "translate": [{"x": -2.23, "y": 6.28}], + "shear": [ + {"x": -27.8, "curve": 0.375, "c2": 0.62, "c3": 0.716}, {"time": 0.1167, "x": 18.72, "curve": 0.25, "c3": 0.228, "c4": 0.99}, + {"time": 0.2333, "x": -43.03, "curve": 0.243, "c3": 0.68, "c4": 0.71}, {"time": 0.3333, "x": -5.6, "curve": 0.375, "c2": 0.62, "c3": 0.716}, + {"time": 0.35, "curve": 0.297, "c3": 0.634, "c4": 0.37}, {"time": 0.3667, "x": 1.3, "curve": 0.3, "c2": 0.21, "c3": 0.756}, + {"time": 0.4, "x": 18.72, "curve": 0.25, "c3": 0.228, "c4": 0.99}, {"time": 0.45, "x": -43.03, "curve": 0.243, "c3": 0.68, "c4": 0.71}, {"time": 0.4833, "x": -5.6, "curve": "stepped"}, + {"time": 0.5, "x": -5.6, "curve": 0.375, "c2": 0.62, "c3": 0.716}, {"time": 0.5167, "x": 1.3, "curve": 0.3, "c2": 0.21, "c3": 0.756}, + {"time": 0.5667, "x": 18.72, "curve": 0.25, "c3": 0.228, "c4": 0.99}, {"time": 0.6167, "x": -43.03, "curve": 0.243, "c3": 0.68, "c4": 0.71}, {"time": 0.65, "curve": "stepped"}, + {"time": 0.6667, "curve": 0.297, "c3": 0.634, "c4": 0.37}, {"time": 0.6833, "x": 1.3, "curve": 0.3, "c2": 0.21, "c3": 0.756}, + {"time": 0.7167, "x": 18.72, "curve": 0.25, "c3": 0.228, "c4": 0.99}, {"time": 0.7667, "x": -43.03, "curve": 0.243, "c3": 0.68, "c4": 0.71}, + {"time": 0.8, "x": -5.6, "curve": 0.375, "c2": 0.62, "c3": 0.716}, {"time": 0.8167, "x": 1.3, "curve": 0.3, "c2": 0.21, "c3": 0.756}, + {"time": 0.8333, "x": -5.6, "curve": 0.375, "c2": 0.62, "c3": 0.716}, {"time": 0.8667, "curve": 0.297, "c3": 0.634, "c4": 0.37}, + {"time": 0.8833, "x": 1.3, "curve": 0.3, "c2": 0.21, "c3": 0.756}, {"time": 0.9833, "x": 18.72, "curve": 0.25, "c3": 0.228, "c4": 0.99}, + {"time": 1.1167, "x": -43.03, "curve": 0.243, "c3": 0.68, "c4": 0.71}, {"time": 1.2167, "x": -5.6, "curve": 0.375, "c2": 0.62, "c3": 0.716}, + {"time": 1.2333, "curve": 0.297, "c3": 0.634, "c4": 0.37}, {"time": 1.25, "x": -27.8} + ] + }, + "body-fur-under-03": { + "translate": [{"x": -0.78, "y": 3.19}], + "shear": [ + {"x": 22.47, "curve": 0.25, "c3": 0.75}, {"time": 0.1, "x": 19.28, "curve": 0.25, "c3": 0.228, "c4": 0.99}, {"time": 0.2333, "x": -45.7, "curve": 0.244, "c3": 0.7, "c4": 0.79}, + {"time": 0.3333, "x": -3.18, "curve": 0.366, "c2": 0.63, "c3": 0.703}, {"time": 0.35, "curve": 0.284, "c3": 0.625, "c4": 0.38}, + {"time": 0.3667, "x": 2.51, "curve": 0.32, "c2": 0.29, "c3": 0.757}, {"time": 0.4, "x": 19.28, "curve": 0.25, "c3": 0.228, "c4": 0.99}, + {"time": 0.45, "x": -45.7, "curve": 0.244, "c3": 0.7, "c4": 0.79}, {"time": 0.4833, "x": -3.18, "curve": 0.366, "c2": 0.63, "c3": 0.703}, + {"time": 0.5, "curve": 0.284, "c3": 0.625, "c4": 0.38}, {"time": 0.5167, "x": 2.51, "curve": 0.32, "c2": 0.29, "c3": 0.757}, + {"time": 0.5667, "x": 19.28, "curve": 0.25, "c3": 0.228, "c4": 0.99}, {"time": 0.6, "x": -45.7, "curve": 0.244, "c3": 0.7, "c4": 0.79}, {"time": 0.65, "curve": "stepped"}, + {"time": 0.6667, "curve": 0.284, "c3": 0.625, "c4": 0.38}, {"time": 0.6833, "x": 2.51, "curve": 0.32, "c2": 0.29, "c3": 0.757}, + {"time": 0.7167, "x": 19.28, "curve": 0.25, "c3": 0.228, "c4": 0.99}, {"time": 0.7667, "x": -45.7, "curve": 0.244, "c3": 0.7, "c4": 0.79}, + {"time": 0.8, "x": -3.18, "curve": 0.366, "c2": 0.63, "c3": 0.703}, {"time": 0.8167, "x": 2.51, "curve": 0.32, "c2": 0.29, "c3": 0.757}, + {"time": 0.8333, "x": -3.18, "curve": 0.366, "c2": 0.63, "c3": 0.703}, {"time": 0.85, "curve": 0.284, "c3": 0.625, "c4": 0.38}, + {"time": 0.8833, "x": 2.51, "curve": 0.32, "c2": 0.29, "c3": 0.757}, {"time": 0.9833, "x": 19.28, "curve": 0.25, "c3": 0.228, "c4": 0.99}, + {"time": 1.1, "x": -45.7, "curve": 0.244, "c3": 0.7, "c4": 0.79}, {"time": 1.2167, "x": -3.18, "curve": 0.366, "c2": 0.63, "c3": 0.703}, + {"time": 1.2333, "curve": 0.284, "c3": 0.625, "c4": 0.38}, {"time": 1.25, "x": 22.47} + ] + }, + "body-fur-under-04": { + "translate": [{"x": -0.33, "y": 3.2}], + "shear": [ + {"x": 10.24, "curve": 0.36, "c2": 0.64, "c3": 0.695}, {"time": 0.1333, "x": 13.82, "curve": 0.25, "c3": 0.228, "c4": 0.99}, + {"time": 0.25, "x": -39.88, "curve": 0.243, "c3": 0.649, "c4": 0.6}, {"time": 0.3333, "x": -22.71, "curve": 0.382, "c2": 0.57, "c3": 0.735}, + {"time": 0.3667, "x": -15.91, "curve": 0.25, "c3": 0.75}, {"time": 0.4, "x": 13.82, "curve": 0.25, "c3": 0.228, "c4": 0.99}, + {"time": 0.45, "x": -39.88, "curve": 0.243, "c3": 0.649, "c4": 0.6}, {"time": 0.4833, "x": -22.71, "curve": "stepped"}, + {"time": 0.5, "x": -22.71, "curve": 0.382, "c2": 0.57, "c3": 0.735}, {"time": 0.5167, "x": -15.91, "curve": 0.25, "c3": 0.75}, + {"time": 0.5667, "x": 13.82, "curve": 0.25, "c3": 0.228, "c4": 0.99}, {"time": 0.6167, "x": -39.88, "curve": 0.243, "c3": 0.649, "c4": 0.6}, + {"time": 0.65, "x": -22.71, "curve": "stepped"}, {"time": 0.6667, "x": -22.71, "curve": 0.382, "c2": 0.57, "c3": 0.735}, {"time": 0.6833, "x": -15.91, "curve": 0.25, "c3": 0.75}, + {"time": 0.7167, "x": 13.82, "curve": 0.25, "c3": 0.228, "c4": 0.99}, {"time": 0.7667, "x": -39.88, "curve": 0.243, "c3": 0.649, "c4": 0.6}, + {"time": 0.8, "x": -22.71, "curve": 0.382, "c2": 0.57, "c3": 0.735}, {"time": 0.8167, "x": -15.91, "curve": 0.25, "c3": 0.75}, + {"time": 0.8333, "x": -22.71, "curve": 0.382, "c2": 0.57, "c3": 0.735}, {"time": 0.8833, "x": -15.91, "curve": 0.25, "c3": 0.75}, + {"time": 1, "x": 13.82, "curve": 0.25, "c3": 0.228, "c4": 0.99}, {"time": 1.1333, "x": -39.88, "curve": 0.243, "c3": 0.649, "c4": 0.6}, + {"time": 1.2167, "x": -22.71, "curve": 0.382, "c2": 0.57, "c3": 0.735}, {"time": 1.25, "x": 10.24} + ] + }, + "body-fur-under-05": { + "translate": [{"x": 0.53, "y": 14.98}], + "shear": [ + {"x": 3.7, "curve": 0.382, "c2": 0.57, "c3": 0.737}, {"time": 0.0167, "x": -12.53, "curve": 0.25, "c3": 0.75}, {"time": 0.15, "x": 6.85, "curve": 0.25, "c3": 0.228, "c4": 0.99}, + {"time": 0.2667, "x": -44.3, "curve": 0.248, "c3": 0.628, "c4": 0.52}, {"time": 0.3333, "x": -27.02, "curve": 0.356, "c2": 0.41, "c3": 0.707, "c4": 0.81}, + {"time": 0.3667, "x": -12.53, "curve": 0.25, "c3": 0.75}, {"time": 0.4167, "x": 6.85, "curve": 0.25, "c3": 0.228, "c4": 0.99}, + {"time": 0.4667, "x": -44.3, "curve": 0.248, "c3": 0.628, "c4": 0.52}, {"time": 0.4833, "x": -27.02, "curve": "stepped"}, + {"time": 0.5, "x": -27.02, "curve": 0.356, "c2": 0.41, "c3": 0.707, "c4": 0.81}, {"time": 0.5167, "x": -14.63, "curve": 0.366, "c2": 0.63, "c3": 0.703}, + {"time": 0.5333, "x": -12.53, "curve": 0.25, "c3": 0.75}, {"time": 0.5667, "x": 6.85, "curve": 0.25, "c3": 0.228, "c4": 0.99}, + {"time": 0.6167, "x": -44.3, "curve": 0.248, "c3": 0.628, "c4": 0.52}, {"time": 0.65, "x": -27.02, "curve": "stepped"}, + {"time": 0.6667, "x": -27.02, "curve": 0.356, "c2": 0.41, "c3": 0.707, "c4": 0.81}, {"time": 0.6833, "x": -12.53, "curve": 0.25, "c3": 0.75}, + {"time": 0.7333, "x": 6.85, "curve": 0.25, "c3": 0.228, "c4": 0.99}, {"time": 0.7833, "x": -44.3, "curve": 0.248, "c3": 0.628, "c4": 0.52}, + {"time": 0.8, "x": -27.02, "curve": 0.356, "c2": 0.41, "c3": 0.707, "c4": 0.81}, {"time": 0.8167, "x": -14.63, "curve": 0.366, "c2": 0.63, "c3": 0.703}, + {"time": 0.8333, "x": -27.02, "curve": 0.356, "c2": 0.41, "c3": 0.707, "c4": 0.81}, {"time": 0.8833, "x": -14.63, "curve": 0.366, "c2": 0.63, "c3": 0.703}, + {"time": 0.9, "x": -12.53, "curve": 0.25, "c3": 0.75}, {"time": 1.0167, "x": 6.85, "curve": 0.25, "c3": 0.228, "c4": 0.99}, + {"time": 1.15, "x": -44.3, "curve": 0.248, "c3": 0.628, "c4": 0.52}, {"time": 1.2167, "x": -27.02, "curve": 0.356, "c2": 0.41, "c3": 0.707, "c4": 0.81}, {"time": 1.25, "x": 3.7} + ] + }, + "body-braid-06": { + "rotate": [ + {"angle": -20.59, "curve": 0.352, "c2": 0.41, "c3": 0.689, "c4": 0.75}, {"time": 0.0833, "curve": 0.25, "c3": 0.75}, + {"time": 0.2167, "angle": -28.99, "curve": 0.25, "c3": 0.228, "c4": 0.99}, {"time": 0.3333, "angle": 9.53, "curve": 0.297, "c3": 0.634, "c4": 0.37}, + {"time": 0.35, "angle": 8.86, "curve": 0.304, "c2": 0.22, "c3": 0.644, "c4": 0.58}, {"time": 0.3667, "angle": 6.87, "curve": 0.351, "c2": 0.4, "c3": 0.757}, + {"time": 0.4, "curve": 0.25, "c3": 0.75}, {"time": 0.4333, "angle": -28.99, "curve": 0.25, "c3": 0.228, "c4": 0.99}, + {"time": 0.4833, "angle": 9.53, "curve": 0.297, "c3": 0.634, "c4": 0.37}, {"time": 0.5, "angle": 8.86, "curve": 0.304, "c2": 0.22, "c3": 0.644, "c4": 0.58}, + {"time": 0.5167, "angle": 6.87, "curve": 0.351, "c2": 0.4, "c3": 0.757}, {"time": 0.55, "curve": 0.25, "c3": 0.75}, + {"time": 0.6, "angle": -28.99, "curve": 0.25, "c3": 0.228, "c4": 0.99}, {"time": 0.65, "angle": 8.86, "curve": "stepped"}, + {"time": 0.6667, "angle": 8.86, "curve": 0.304, "c2": 0.22, "c3": 0.644, "c4": 0.58}, {"time": 0.6833, "angle": 6.87, "curve": 0.351, "c2": 0.4, "c3": 0.757}, + {"time": 0.7167, "curve": 0.25, "c3": 0.75}, {"time": 0.75, "angle": -28.99, "curve": 0.25, "c3": 0.228, "c4": 0.99}, + {"time": 0.8, "angle": 9.53, "curve": 0.297, "c3": 0.634, "c4": 0.37}, {"time": 0.8167, "angle": 6.87, "curve": 0.351, "c2": 0.4, "c3": 0.757}, + {"time": 0.8333, "angle": 9.53, "curve": 0.297, "c3": 0.634, "c4": 0.37}, {"time": 0.85, "angle": 8.86, "curve": 0.304, "c2": 0.22, "c3": 0.644, "c4": 0.58}, + {"time": 0.8833, "angle": 6.87, "curve": 0.351, "c2": 0.4, "c3": 0.757}, {"time": 0.9667, "curve": 0.25, "c3": 0.75}, + {"time": 1.0833, "angle": -28.99, "curve": 0.25, "c3": 0.228, "c4": 0.99}, {"time": 1.2167, "angle": 9.53, "curve": 0.297, "c3": 0.634, "c4": 0.37}, + {"time": 1.2333, "angle": 8.86, "curve": 0.304, "c2": 0.22, "c3": 0.644, "c4": 0.58}, {"time": 1.25, "angle": -20.59} + ] + }, + "body-braid-05": { + "rotate": [ + {"angle": -8.3, "curve": 0.294, "c3": 0.631, "c4": 0.37}, {"time": 0.05, "curve": 0.25, "c3": 0.75}, {"time": 0.1833, "angle": -10.49, "curve": 0.25, "c3": 0.228, "c4": 0.99}, + {"time": 0.3, "angle": 8.22, "curve": 0.258, "c3": 0.619, "c4": 0.45}, {"time": 0.35, "angle": 5.2, "curve": 0.33, "c2": 0.32, "c3": 0.67, "c4": 0.68}, + {"time": 0.3667, "angle": 3.03, "curve": 0.381, "c2": 0.55, "c3": 0.742}, {"time": 0.3833, "curve": 0.25, "c3": 0.75}, + {"time": 0.4333, "angle": -10.49, "curve": 0.25, "c3": 0.228, "c4": 0.99}, {"time": 0.4833, "angle": 8.22, "curve": 0.258, "c3": 0.619, "c4": 0.45}, + {"time": 0.5, "angle": 5.2, "curve": 0.33, "c2": 0.32, "c3": 0.67, "c4": 0.68}, {"time": 0.5167, "angle": 3.03, "curve": 0.381, "c2": 0.55, "c3": 0.742}, + {"time": 0.5333, "curve": 0.25, "c3": 0.75}, {"time": 0.5833, "angle": -10.49, "curve": 0.25, "c3": 0.228, "c4": 0.99}, + {"time": 0.6333, "angle": 8.22, "curve": 0.258, "c3": 0.619, "c4": 0.45}, {"time": 0.65, "angle": 5.2, "curve": "stepped"}, + {"time": 0.6667, "angle": 5.2, "curve": 0.33, "c2": 0.32, "c3": 0.67, "c4": 0.68}, {"time": 0.6833, "angle": 3.03, "curve": 0.381, "c2": 0.55, "c3": 0.742}, + {"time": 0.7, "curve": 0.25, "c3": 0.75}, {"time": 0.75, "angle": -10.49, "curve": 0.25, "c3": 0.228, "c4": 0.99}, {"time": 0.8, "angle": 8.22, "curve": 0.258, "c3": 0.619, "c4": 0.45}, + {"time": 0.8167, "angle": 3.03, "curve": 0.381, "c2": 0.55, "c3": 0.742}, {"time": 0.85, "angle": 5.2, "curve": 0.33, "c2": 0.32, "c3": 0.67, "c4": 0.68}, + {"time": 0.8833, "angle": 3.03, "curve": 0.381, "c2": 0.55, "c3": 0.742}, {"time": 0.9333, "curve": 0.25, "c3": 0.75}, + {"time": 1.05, "angle": -10.49, "curve": 0.25, "c3": 0.228, "c4": 0.99}, {"time": 1.1833, "angle": 8.22, "curve": 0.258, "c3": 0.619, "c4": 0.45}, + {"time": 1.2333, "angle": 5.2, "curve": 0.33, "c2": 0.32, "c3": 0.67, "c4": 0.68}, {"time": 1.25, "angle": -8.3} + ] + }, + "body-braid-04": { + "rotate": [ + {"angle": -9.29, "curve": 0.323, "c2": 0.3, "c3": 0.66, "c4": 0.65}, {"time": 0.0167, "curve": 0.25, "c3": 0.75}, {"time": 0.15, "angle": 2.63, "curve": 0.25, "c3": 0.228, "c4": 0.99}, + {"time": 0.2667, "angle": 16.91, "curve": 0.243, "c3": 0.649, "c4": 0.6}, {"time": 0.35, "angle": 4.8, "curve": 0.356, "c2": 0.42, "c3": 0.696, "c4": 0.78}, + {"time": 0.3667, "curve": 0.25, "c3": 0.75}, {"time": 0.4167, "angle": 2.63, "curve": 0.25, "c3": 0.228, "c4": 0.99}, + {"time": 0.4667, "angle": 16.91, "curve": 0.243, "c3": 0.649, "c4": 0.6}, {"time": 0.5, "angle": 4.8, "curve": 0.356, "c2": 0.42, "c3": 0.696, "c4": 0.78}, + {"time": 0.5167, "angle": 1.11, "curve": 0.366, "c2": 0.63, "c3": 0.703}, {"time": 0.5333, "curve": 0.25, "c3": 0.75}, + {"time": 0.5667, "angle": 2.63, "curve": 0.25, "c3": 0.228, "c4": 0.99}, {"time": 0.6167, "angle": 16.91, "curve": 0.243, "c3": 0.649, "c4": 0.6}, + {"time": 0.65, "angle": 4.8, "curve": "stepped"}, {"time": 0.6667, "angle": 4.8, "curve": 0.356, "c2": 0.42, "c3": 0.696, "c4": 0.78}, {"time": 0.6833, "curve": 0.25, "c3": 0.75}, + {"time": 0.7333, "angle": 2.63, "curve": 0.25, "c3": 0.228, "c4": 0.99}, {"time": 0.7833, "angle": 16.91, "curve": 0.243, "c3": 0.649, "c4": 0.6}, + {"time": 0.8167, "angle": 1.11, "curve": 0.366, "c2": 0.63, "c3": 0.703}, {"time": 0.85, "angle": 4.8, "curve": 0.356, "c2": 0.42, "c3": 0.696, "c4": 0.78}, + {"time": 0.8833, "angle": 1.11, "curve": 0.366, "c2": 0.63, "c3": 0.703}, {"time": 0.9, "curve": 0.25, "c3": 0.75}, + {"time": 1.0167, "angle": -35.27, "curve": 0.25, "c3": 0.228, "c4": 0.99}, {"time": 1.15, "angle": 16.91, "curve": 0.243, "c3": 0.649, "c4": 0.6}, + {"time": 1.2333, "angle": 4.8, "curve": 0.356, "c2": 0.42, "c3": 0.696, "c4": 0.78}, {"time": 1.25, "angle": -9.29} + ] + }, + "body-braid-03": { + "rotate": [ + {"angle": -1.71, "curve": 0.337, "c2": 0.34, "c3": 0.673, "c4": 0.69}, {"time": 0.1167, "angle": 2.63, "curve": 0.25, "c3": 0.228, "c4": 0.99}, + {"time": 0.25, "angle": 23.44, "curve": 0.244, "c3": 0.7, "c4": 0.79}, {"time": 0.35, "curve": 0.313, "c3": 0.648, "c4": 0.35}, + {"time": 0.3667, "angle": 0.06, "curve": 0.277, "c2": 0.12, "c3": 0.754}, {"time": 0.4, "angle": 2.63, "curve": 0.25, "c3": 0.228, "c4": 0.99}, + {"time": 0.45, "angle": 23.44, "curve": 0.244, "c3": 0.7, "c4": 0.79}, {"time": 0.5, "angle": 1.63, "curve": 0.366, "c2": 0.63, "c3": 0.703}, + {"time": 0.5167, "angle": 0.06, "curve": 0.277, "c2": 0.12, "c3": 0.754}, {"time": 0.5667, "angle": 2.63, "curve": 0.25, "c3": 0.228, "c4": 0.99}, + {"time": 0.6167, "angle": 23.44, "curve": 0.244, "c3": 0.7, "c4": 0.79}, {"time": 0.65, "angle": 1.63, "curve": 0.366, "c2": 0.63, "c3": 0.703}, + {"time": 0.6667, "curve": 0.313, "c3": 0.648, "c4": 0.35}, {"time": 0.6833, "angle": 0.06, "curve": 0.277, "c2": 0.12, "c3": 0.754}, + {"time": 0.7167, "angle": 2.63, "curve": 0.25, "c3": 0.228, "c4": 0.99}, {"time": 0.7667, "angle": 23.44, "curve": 0.244, "c3": 0.7, "c4": 0.79}, + {"time": 0.8167, "angle": 0.06, "curve": 0.277, "c2": 0.12, "c3": 0.754}, {"time": 0.85, "angle": 1.63, "curve": 0.366, "c2": 0.63, "c3": 0.703}, + {"time": 0.8667, "curve": 0.313, "c3": 0.648, "c4": 0.35}, {"time": 0.8833, "angle": 0.06, "curve": 0.277, "c2": 0.12, "c3": 0.754}, + {"time": 1, "angle": 2.63, "curve": 0.25, "c3": 0.228, "c4": 0.99}, {"time": 1.1167, "angle": 23.44, "curve": 0.244, "c3": 0.7, "c4": 0.79}, + {"time": 1.2333, "angle": 1.63, "curve": 0.366, "c2": 0.63, "c3": 0.703}, {"time": 1.25, "angle": -1.71} + ] + }, + "body-braid-02": { + "rotate": [ + {"angle": 3.5, "curve": 0.348, "c2": 0.38, "c3": 0.685, "c4": 0.73}, {"time": 0.1, "angle": 2.63, "curve": 0.25, "c3": 0.228, "c4": 0.99}, + {"time": 0.2333, "angle": 43.23, "curve": 0.25, "c3": 0.75}, {"time": 0.35, "curve": 0.284, "c3": 0.625, "c4": 0.38}, + {"time": 0.3667, "angle": 0.34, "curve": 0.32, "c2": 0.29, "c3": 0.757}, {"time": 0.4, "angle": 2.63, "curve": 0.25, "c3": 0.228, "c4": 0.99}, + {"time": 0.45, "angle": 43.23, "curve": 0.25, "c3": 0.75}, {"time": 0.5, "curve": 0.284, "c3": 0.625, "c4": 0.38}, + {"time": 0.5167, "angle": 0.34, "curve": 0.32, "c2": 0.29, "c3": 0.757}, {"time": 0.5667, "angle": 2.63, "curve": 0.25, "c3": 0.228, "c4": 0.99}, + {"time": 0.6, "angle": 19.03, "curve": 0.25, "c3": 0.75}, {"time": 0.65, "curve": "stepped"}, {"time": 0.6667, "curve": 0.284, "c3": 0.625, "c4": 0.38}, + {"time": 0.6833, "angle": 0.34, "curve": 0.32, "c2": 0.29, "c3": 0.757}, {"time": 0.7167, "angle": 2.63, "curve": 0.25, "c3": 0.228, "c4": 0.99}, + {"time": 0.7667, "angle": 43.23, "curve": 0.25, "c3": 0.75}, {"time": 0.8167, "angle": 0.34, "curve": 0.32, "c2": 0.29, "c3": 0.757}, + {"time": 0.85, "curve": 0.284, "c3": 0.625, "c4": 0.38}, {"time": 0.8833, "angle": 0.34, "curve": 0.32, "c2": 0.29, "c3": 0.757}, + {"time": 0.9833, "angle": 2.63, "curve": 0.25, "c3": 0.228, "c4": 0.99}, {"time": 1.1, "angle": 25.65, "curve": 0.25, "c3": 0.75}, + {"time": 1.2333, "curve": 0.284, "c3": 0.625, "c4": 0.38}, {"time": 1.25, "angle": 3.5} + ] + }, + "body-braid-01": {"rotate": [{"angle": 2.31}]} + }, + "events": [{"time": 0.3333, "name": "start-attack"}, {"time": 0.3667, "name": "hit"}, {"time": 0.5, "name": "hit"}, {"time": 0.6333, "name": "hit"}, {"time": 0.7667, "name": "hit"}] + }, + "1278187577": { + "slots": {"eyes": {"attachment": [{"time": 1, "name": "eyes-shut"}, {"time": 1.0833, "name": "eyes"}]}}, + "bones": { + "@pivot-back": { + "rotate": [ + {"curve": 0.313, "c3": 0.699}, {"time": 0.3333, "angle": 2.04, "curve": 0.313, "c3": 0.699}, {"time": 0.6667, "curve": 0.313, "c3": 0.699}, + {"time": 1, "angle": 1.79, "curve": 0.313, "c3": 0.699}, {"time": 1.3333} + ], + "translate": [ + {"curve": 0.313, "c3": 0.699}, {"time": 0.3333, "y": -6.53, "curve": 0.313, "c3": 0.699}, {"time": 0.6667, "curve": 0.313, "c3": 0.699}, + {"time": 1, "y": -8.86, "curve": 0.313, "c3": 0.699}, {"time": 1.3333} + ], + "scale": [{"curve": 0.313, "c3": 0.699}, {"time": 0.6667, "y": 0.99, "curve": 0.313, "c3": 0.699}, {"time": 1.3333}] + }, + "@leg-front-right": { + "translate": [ + {"curve": 0.313, "c3": 0.699}, {"time": 0.3333, "x": 0.02, "y": -16.89, "curve": 0.313, "c3": 0.699}, {"time": 0.6667, "x": -0.04, "y": 2.46, "curve": 0.313, "c3": 0.699}, + {"time": 1, "x": -0.02, "y": -18.9, "curve": 0.313, "c3": 0.699}, {"time": 1.3333} + ] + }, + "@leg-front-left": { + "translate": [ + {"curve": 0.313, "c3": 0.699}, {"time": 0.3333, "x": 0.22, "y": -5.13, "curve": 0.313, "c3": 0.699}, {"time": 0.6667, "x": -0.03, "y": 1.81, "curve": 0.313, "c3": 0.699}, + {"time": 1, "x": 0.2, "y": -7.06, "curve": 0.313, "c3": 0.699}, {"time": 1.3333} + ], + "scale": [ + {"curve": 0.313, "c3": 0.699}, {"time": 0.3333, "x": 0.905, "curve": 0.313, "c3": 0.699}, {"time": 0.6667, "curve": 0.313, "c3": 0.699}, + {"time": 1, "x": 0.905, "curve": 0.313, "c3": 0.699}, {"time": 1.3333} + ] + }, + "@leg-back-left": { + "translate": [ + {"curve": 0.313, "c3": 0.699}, {"time": 0.3333, "x": 0.22, "y": -4.11, "curve": 0.313, "c3": 0.699}, {"time": 0.6667, "x": -0.03, "y": 1.69, "curve": 0.313, "c3": 0.699}, + {"time": 1, "x": 0.2, "y": -5.68, "curve": 0.313, "c3": 0.699}, {"time": 1.3333} + ], + "scale": [ + {"curve": 0.313, "c3": 0.699}, {"time": 0.3333, "x": 0.943, "curve": 0.313, "c3": 0.699}, {"time": 0.6667, "curve": 0.313, "c3": 0.699}, + {"time": 1, "x": 0.943, "curve": 0.313, "c3": 0.699}, {"time": 1.3333} + ] + }, + "@pivot-main": { + "scale": [ + {"curve": 0.313, "c3": 0.699}, {"time": 0.3333, "y": 0.98, "curve": 0.313, "c3": 0.699}, {"time": 0.6667, "curve": 0.313, "c3": 0.699}, + {"time": 1, "y": 0.98, "curve": 0.313, "c3": 0.699}, {"time": 1.3333} + ] + }, + "tail": { + "rotate": [{"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "angle": 4.54, "curve": 0.313, "c3": 0.699}, {"time": 1, "angle": -9.06, "curve": 0.313, "c3": 0.699}, {"time": 1.3333}] + }, + "back": { + "rotate": [{"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "angle": -4.27, "curve": 0.313, "c3": 0.699}, {"time": 1, "angle": 2.83, "curve": 0.313, "c3": 0.699}, {"time": 1.3333}] + }, + "ear-right": {"rotate": [{"curve": 0.461, "c3": 0.543}, {"time": 0.6667, "angle": -3.91, "curve": 0.461, "c3": 0.543}, {"time": 1.3333}]}, + "ear-left": {"rotate": [{"curve": 0.461, "c3": 0.543}, {"time": 0.6667, "angle": -3.92, "curve": 0.461, "c3": 0.543}, {"time": 1.3333}]}, + "@shadow": { + "scale": [ + {"curve": 0.306, "c3": 0.695}, {"time": 0.3333, "x": 1.05, "y": 1.05, "curve": 0.306, "c3": 0.695}, {"time": 0.6667, "curve": 0.306, "c3": 0.695}, + {"time": 1, "x": 1.05, "y": 1.05, "curve": 0.306, "c3": 0.695}, {"time": 1.3333} + ] + }, + "body-braid-01": { + "rotate": [ + {"angle": 2.31, "curve": 0.348, "c2": 0.38, "c3": 0.685, "c4": 0.73}, {"time": 0.05, "angle": 2.87, "curve": 0.375, "c2": 0.62, "c3": 0.716}, + {"time": 0.1167, "angle": 3.3, "curve": 0.25, "c3": 0.75}, {"time": 0.45, "curve": 0.244, "c3": 0.646, "c4": 0.59}, + {"time": 0.6667, "angle": 2.29, "curve": 0.382, "c2": 0.57, "c3": 0.737}, {"time": 0.7833, "angle": 3.3, "curve": 0.25, "c3": 0.75}, + {"time": 1.1167, "curve": 0.244, "c3": 0.646, "c4": 0.59}, {"time": 1.3333, "angle": 2.31} + ] + }, + "body-braid-02": { + "rotate": [ + {"angle": 3.5, "curve": 0.348, "c2": 0.38, "c3": 0.685, "c4": 0.73}, {"time": 0.05, "angle": 3.89, "curve": 0.375, "c2": 0.62, "c3": 0.716}, + {"time": 0.1167, "angle": 4.18, "curve": 0.25, "c3": 0.75}, {"time": 0.45, "angle": 1.94, "curve": 0.244, "c3": 0.646, "c4": 0.59}, + {"time": 0.6667, "angle": 3.49, "curve": 0.382, "c2": 0.57, "c3": 0.737}, {"time": 0.7833, "angle": 4.18, "curve": 0.25, "c3": 0.75}, + {"time": 1.1167, "angle": 1.94, "curve": 0.244, "c3": 0.646, "c4": 0.59}, {"time": 1.3333, "angle": 3.5} + ] + }, + "body-braid-03": { + "rotate": [ + {"angle": -1.71, "curve": 0.337, "c2": 0.34, "c3": 0.673, "c4": 0.69}, {"time": 0.05, "angle": 1, "curve": 0.354, "c2": 0.41, "c3": 0.694, "c4": 0.77}, + {"time": 0.1167, "angle": 4, "curve": 0.369, "c2": 0.63, "c3": 0.706}, {"time": 0.1667, "angle": 5.15, "curve": 0.25, "c3": 0.75}, + {"time": 0.5, "angle": -8.41, "curve": 0.25, "c3": 0.625, "c4": 0.5}, {"time": 0.6667, "angle": -1.63, "curve": 0.375, "c2": 0.5, "c3": 0.75}, + {"time": 0.8333, "angle": 5.15, "curve": 0.25, "c3": 0.75}, {"time": 1.1667, "angle": -8.69, "curve": 0.25, "c3": 0.625, "c4": 0.5}, {"time": 1.3333, "angle": -1.71} + ] + }, + "body-braid-04": { + "rotate": [ + {"angle": -9.29, "curve": 0.323, "c2": 0.3, "c3": 0.66, "c4": 0.65}, {"time": 0.05, "angle": -6.92, "curve": 0.335, "c2": 0.34, "c3": 0.674, "c4": 0.69}, + {"time": 0.1167, "angle": -3.73, "curve": 0.382, "c2": 0.57, "c3": 0.737}, {"time": 0.2333, "curve": 0.25, "c3": 0.75}, + {"time": 0.5667, "angle": -11.98, "curve": 0.269, "c3": 0.618, "c4": 0.42}, {"time": 0.6667, "angle": -9.07, "curve": 0.345, "c2": 0.37, "c3": 0.757}, + {"time": 0.9, "curve": 0.25, "c3": 0.75}, {"time": 1.2333, "angle": -12.25, "curve": 0.269, "c3": 0.618, "c4": 0.42}, {"time": 1.3333, "angle": -9.29} + ] + }, + "body-braid-05": { + "rotate": [ + {"angle": -8.3, "curve": 0.294, "c3": 0.631, "c4": 0.37}, {"time": 0.05, "angle": -7.64, "curve": 0.306, "c2": 0.23, "c3": 0.646, "c4": 0.59}, + {"time": 0.1167, "angle": -5.77, "curve": 0.354, "c2": 0.41, "c3": 0.756}, {"time": 0.3333, "curve": 0.25, "c3": 0.75}, {"time": 0.6667, "angle": -8.02, "curve": 0.25, "c3": 0.75}, + {"time": 1, "curve": 0.25, "c3": 0.75}, {"time": 1.3333, "angle": -8.3} + ] + }, + "body-braid-06": { + "rotate": [ + {"angle": -20.59, "curve": 0.352, "c2": 0.41, "c3": 0.689, "c4": 0.75}, {"time": 0.05, "angle": -24.8, "curve": 0.369, "c2": 0.63, "c3": 0.706}, + {"time": 0.1, "angle": -27.05, "curve": 0.318, "c3": 0.652, "c4": 0.34}, {"time": 0.1167, "angle": -26.59, "curve": 0.271, "c2": 0.09, "c3": 0.753}, + {"time": 0.4333, "curve": 0.243, "c3": 0.655, "c4": 0.63}, {"time": 0.6667, "angle": -20.29, "curve": 0.382, "c2": 0.58, "c3": 0.731}, + {"time": 0.7667, "angle": -26.77, "curve": 0.25, "c3": 0.75}, {"time": 1.1, "curve": 0.243, "c3": 0.655, "c4": 0.63}, {"time": 1.3333, "angle": -20.59} + ] + }, + "body-fur-under-01": { + "translate": [{"x": -0.14, "y": 0.84}], + "shear": [ + {"x": -4.09, "curve": 0.375, "c2": 0.5, "c3": 0.75}, {"time": 0.1667, "x": -25.22, "curve": 0.25, "c3": 0.75}, {"time": 0.5, "x": 17.03, "curve": 0.25, "c3": 0.625, "c4": 0.5}, + {"time": 0.6667, "x": -4.09, "curve": 0.375, "c2": 0.5, "c3": 0.75}, {"time": 0.8333, "x": -25.22, "curve": 0.25, "c3": 0.75}, + {"time": 1.1667, "x": 17.03, "curve": 0.25, "c3": 0.625, "c4": 0.5}, {"time": 1.3333, "x": -4.09} + ] + }, + "body-fur-under-02": { + "translate": [{"x": -2.23, "y": 6.28}], + "shear": [ + {"x": -27.8, "curve": 0.375, "c2": 0.62, "c3": 0.716}, {"time": 0.0667, "x": -31.97, "curve": 0.25, "c3": 0.75}, {"time": 0.4, "x": 0.11, "curve": 0.243, "c3": 0.68, "c4": 0.71}, + {"time": 0.6667, "x": -27.8, "curve": 0.375, "c2": 0.62, "c3": 0.716}, {"time": 0.7333, "x": -31.97, "curve": 0.25, "c3": 0.75}, + {"time": 1.0667, "x": 0.11, "curve": 0.243, "c3": 0.68, "c4": 0.71}, {"time": 1.3333, "x": -27.8} + ] + }, + "body-fur-under-03": { + "translate": [{"x": -0.78, "y": 3.19}], + "shear": [ + {"x": 22.47, "curve": 0.25, "c3": 0.75}, {"time": 0.3333, "curve": 0.25, "c3": 0.75}, {"time": 0.6667, "x": 22.47, "curve": 0.25, "c3": 0.75}, {"time": 1, "curve": 0.25, "c3": 0.75}, + {"time": 1.3333, "x": 22.47} + ] + }, + "body-fur-under-04": { + "translate": [{"x": -0.33, "y": 3.2}], + "shear": [ + {"x": 10.24, "curve": 0.36, "c2": 0.64, "c3": 0.695}, {"time": 0.0333, "x": 11.47, "curve": 0.25, "c3": 0.75}, {"time": 0.3667, "x": -17.33, "curve": 0.245, "c3": 0.711, "c4": 0.83}, + {"time": 0.6667, "x": 10.24, "curve": 0.36, "c2": 0.64, "c3": 0.695}, {"time": 0.7, "x": 11.47, "curve": 0.25, "c3": 0.75}, + {"time": 1.0333, "x": -17.33, "curve": 0.245, "c3": 0.711, "c4": 0.83}, {"time": 1.3333, "x": 10.24} + ] + }, + "body-fur-under-05": { + "translate": [{"x": 0.53, "y": 14.98}], + "shear": [ + {"x": 3.7, "curve": 0.382, "c2": 0.57, "c3": 0.737}, {"time": 0.1167, "x": 13.52, "curve": 0.25, "c3": 0.75}, {"time": 0.45, "x": -18.7, "curve": 0.244, "c3": 0.646, "c4": 0.59}, + {"time": 0.6667, "x": 3.7, "curve": 0.382, "c2": 0.57, "c3": 0.737}, {"time": 0.7833, "x": 13.52, "curve": 0.25, "c3": 0.75}, + {"time": 1.1167, "x": -18.7, "curve": 0.244, "c3": 0.646, "c4": 0.59}, {"time": 1.3333, "x": 3.7} + ] + } + } + }, + "3958849146": { + "slots": { + "eyes": {"attachment": [{"time": 0.0833, "name": "eyes-shut"}, {"time": 0.1667, "name": "eyes-angry"}, {"time": 0.5833, "name": "eyes-shut"}, {"time": 0.6667, "name": "eyes"}]}, + "mouth": {"attachment": [{"time": 0.0833, "name": "mouth-bite"}, {"time": 0.3667, "name": "mouth-open"}, {"time": 0.5833, "name": "mouth"}]} + }, + "bones": { + "@pivot-back": { + "rotate": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.15, "angle": 3.67, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.3333, "angle": -14.29, "curve": 0.854, "c4": 0.1}, + {"time": 0.3667, "angle": 15.82}, {"time": 0.45, "angle": 16.67, "curve": 0.315, "c4": 0.8}, {"time": 0.5667, "angle": 4.4, "curve": 0, "c2": 0.1, "c3": 0.85}, + {"time": 0.6333, "angle": 6.79, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.8333} + ], + "translate": [ + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.2167, "x": 8.02, "curve": 0, "c2": 0.4, "c3": 0.383}, {"time": 0.3333, "x": -54.3, "y": 61.69, "curve": 0.854, "c4": 0.1}, + {"time": 0.3667, "x": -60.41, "y": 130.13}, {"time": 0.45, "x": -60.41, "y": 130.01, "curve": 0.315, "c4": 0.8}, {"time": 0.5667} + ] + }, + "@leg-front-right": { + "translate": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.2167, "x": -18.54, "y": -11.57}, {"time": 0.25, "x": -23.07, "y": 10.08, "curve": 0, "c2": 0.4, "c3": 0.383}, + {"time": 0.3333, "x": 29.92, "y": -4.24, "curve": 0.854, "c4": 0.1}, {"time": 0.3667, "x": 22.95, "y": 2.68, "curve": "stepped"}, + {"time": 0.45, "x": 22.95, "y": 2.68, "curve": 0.157, "c2": 0.33, "c3": 0.727}, {"time": 0.5333, "x": 29.92, "y": -4.24, "curve": 0.779, "c4": 0.4}, + {"time": 0.5667, "x": -1.45, "y": -24.11, "curve": "stepped"}, {"time": 0.6333, "x": -1.45, "y": -24.11, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.6667} + ], + "scale": [ + {"time": 0.2, "curve": 0.315, "c4": 0.8}, {"time": 0.25, "x": 1.5, "curve": 0, "c2": 0.3, "c3": 0.539}, {"time": 0.3333, "curve": 0.854, "c4": 0.1}, {"time": 0.3667, "x": 1.5}, + {"time": 0.45, "x": 1.51, "curve": 0.157, "c2": 0.33, "c3": 0.727}, {"time": 0.4833} + ] + }, + "@leg-front-left": { + "translate": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.2167, "x": -6.84, "y": -9.77, "curve": "stepped"}, {"time": 0.5667, "x": -6.84, "y": -9.77, "curve": 0, "c2": 0.1, "c3": 0.85}, + {"time": 0.6333, "x": -6.29, "y": -18.69, "curve": 0, "c2": 0.23, "c3": 0.365, "c4": 0.58}, {"time": 0.6667, "x": -3.64, "y": -2.46, "curve": 0.177, "c2": 0.35, "c3": 0.731}, + {"time": 0.8333} + ] + }, + "@leg-back-left": { + "translate": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.2167, "x": -0.11, "y": -2.73, "curve": "stepped"}, {"time": 0.5667, "x": -0.11, "y": -2.73, "curve": 0, "c2": 0.1, "c3": 0.85}, + {"time": 0.6333, "x": -0.46, "y": -6.19, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.8333} + ] + }, + "@pivot-main": { + "translate": [ + {"time": 0.15, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "x": -73.35, "y": 43, "curve": "stepped"}, {"time": 0.45, "x": -73.35, "y": 43, "curve": 0.315, "c4": 0.8}, + {"time": 0.5667, "x": -146.44, "curve": "stepped"}, {"time": 0.6333, "x": -146.44, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.7333, "x": -45.61, "y": 50.15, "curve": 0.315, "c4": 0.8}, {"time": 0.8333} + ], + "scale": [{"time": 0.5667, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.6333, "y": 0.98, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.7333}] + }, + "leg-front-right-IK": { + "translate": [ + {"time": 0.15, "curve": 0, "c2": 0.18, "c3": 0.416, "c4": 0.58}, {"time": 0.2167, "x": 49.59, "y": 35.17}, {"time": 0.25, "x": -2.16, "y": 99.87, "curve": 0, "c2": 0.6, "c3": 0.237}, + {"time": 0.3333, "x": -158.6, "y": 254.45, "curve": 0.854, "c4": 0.1}, {"time": 0.3667, "x": -48.06, "y": 31.6}, {"time": 0.45, "x": -24.61, "y": 31.6, "curve": 0.315, "c4": 0.8}, + {"time": 0.5667, "curve": "stepped"}, {"time": 0.6333, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.6667, "x": -14.68, "y": -19.57, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.8333} + ] + }, + "leg-front-left-IK": { + "translate": [ + {"time": 0.15, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "x": -54.88, "y": 124.95, "curve": 0.854, "c4": 0.1}, {"time": 0.3667, "x": 37.97, "y": 122.64}, + {"time": 0.45, "x": 48.96, "y": 138.43, "curve": 0.315, "c4": 0.8}, {"time": 0.5667, "curve": "stepped"}, {"time": 0.6333, "curve": 0, "c2": 0.1, "c3": 0.85}, + {"time": 0.6667, "x": -7.79, "y": -10.12, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.8333} + ] + }, + "leg-back-left-IK": { + "translate": [ + {"time": 0.0833, "curve": 0.332, "c3": 0.682, "c4": 0.41}, {"time": 0.2167, "x": 21.57, "y": 4.03, "curve": 0, "c2": 0.4, "c3": 0.383}, + {"time": 0.3333, "x": -50.73, "y": 91.08, "curve": 0.854, "c4": 0.1}, {"time": 0.3667, "x": 19.18, "y": 184.64}, {"time": 0.45, "x": 25.59, "y": 197.69, "curve": 0.315, "c4": 0.8}, + {"time": 0.5667, "curve": "stepped"}, {"time": 0.6333, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.75, "x": 24.35, "y": 13.92, "curve": 0.154, "c4": 0.9}, {"time": 0.8333} + ] + }, + "tail": { + "rotate": [ + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.15, "angle": 14.68, "curve": 0.315, "c4": 0.8}, {"time": 0.2167, "angle": -12.57}, + {"time": 0.3333, "angle": -14.89, "curve": 0.854, "c4": 0.1}, {"time": 0.3667, "angle": 25.96}, {"time": 0.45, "angle": 33.77}, + {"time": 0.6167, "angle": 26.39, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.7167, "angle": -14.8, "curve": 0.154, "c4": 0.9}, {"time": 0.8333} + ] + }, + "@shadow": { + "translate": [ + {"time": 0.15, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.3333, "x": -132.39, "curve": 0.854, "c4": 0.1}, {"time": 0.3667, "x": -111.3, "curve": "stepped"}, + {"time": 0.45, "x": -111.3, "curve": 0.315, "c4": 0.8}, {"time": 0.5667, "x": -132.39, "curve": "stepped"}, {"time": 0.6333, "x": -132.39, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.8333} + ], + "scale": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.15, "x": 1.05, "y": 1.05, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.3333, "x": 0.93, "y": 0.93, "curve": 0.854, "c4": 0.1}, + {"time": 0.3667, "x": 0.95, "y": 0.95}, {"time": 0.45, "x": 0.97, "y": 0.97, "curve": 0.315, "c4": 0.8}, {"time": 0.5667, "x": 1.05, "y": 1.05, "curve": 0, "c2": 0.1, "c3": 0.85}, + {"time": 0.6333, "x": 1.07, "y": 1.07, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.8333} + ] + }, + "body-braid-02": { + "rotate": [ + {"angle": 3.5, "curve": 0.348, "c2": 0.38, "c3": 0.685, "c4": 0.73}, {"time": 0.2167, "angle": 2.63, "curve": 0.25, "c3": 0.228, "c4": 0.99}, + {"time": 0.5, "angle": 9.15, "curve": 0.25, "c3": 0.75}, {"time": 0.7833, "curve": 0.284, "c3": 0.625, "c4": 0.38}, {"time": 0.8333, "angle": 3.5} + ] + }, + "body-braid-03": { + "rotate": [ + {"angle": -1.71, "curve": 0.337, "c2": 0.34, "c3": 0.673, "c4": 0.69}, {"time": 0.2667, "angle": 2.63, "curve": 0.25, "c3": 0.228, "c4": 0.99}, + {"time": 0.5333, "angle": 23.44, "curve": 0.244, "c3": 0.7, "c4": 0.79}, {"time": 0.7833, "angle": 1.63, "curve": 0.366, "c2": 0.63, "c3": 0.703}, + {"time": 0.8167, "curve": 0.313, "c3": 0.648, "c4": 0.35}, {"time": 0.8333, "angle": -1.71} + ] + }, + "body-braid-04": { + "rotate": [ + {"angle": -9.29, "curve": 0.323, "c2": 0.3, "c3": 0.66, "c4": 0.65}, {"time": 0.0333, "curve": 0.25, "c3": 0.75}, {"time": 0.3167, "angle": 2.63, "curve": 0.25, "c3": 0.228, "c4": 0.99}, + {"time": 0.6, "angle": 16.91, "curve": 0.243, "c3": 0.649, "c4": 0.6}, {"time": 0.7833, "angle": 4.8, "curve": 0.356, "c2": 0.42, "c3": 0.696, "c4": 0.78}, + {"time": 0.8333, "angle": -9.29} + ] + }, + "body-braid-05": { + "rotate": [ + {"angle": -8.3, "curve": 0.294, "c3": 0.631, "c4": 0.37}, {"time": 0.1167, "curve": 0.25, "c3": 0.75}, {"time": 0.3833, "angle": -10.49, "curve": 0.25, "c3": 0.228, "c4": 0.99}, + {"time": 0.6667, "angle": 8.22, "curve": 0.258, "c3": 0.619, "c4": 0.45}, {"time": 0.7833, "angle": 5.2, "curve": 0.33, "c2": 0.32, "c3": 0.67, "c4": 0.68}, + {"time": 0.8333, "angle": -8.3} + ] + }, + "body-braid-06": { + "rotate": [ + {"angle": -20.59, "curve": 0.352, "c2": 0.41, "c3": 0.689, "c4": 0.75}, {"time": 0.1833, "curve": 0.25, "c3": 0.75}, + {"time": 0.4667, "angle": -28.99, "curve": 0.25, "c3": 0.228, "c4": 0.99}, {"time": 0.75, "angle": 9.53, "curve": 0.297, "c3": 0.634, "c4": 0.37}, + {"time": 0.7833, "angle": 8.86, "curve": 0.304, "c2": 0.22, "c3": 0.644, "c4": 0.58}, {"time": 0.8333, "angle": -20.59} + ] + }, + "body-fur-under-05": { + "translate": [{"x": 0.53, "y": 14.98}], + "shear": [ + {"x": 3.7, "curve": 0.382, "c2": 0.57, "c3": 0.737}, {"time": 0.0333, "x": -12.53, "curve": 0.25, "c3": 0.75}, {"time": 0.3167, "x": 6.85, "curve": 0.25, "c3": 0.228, "c4": 0.99}, + {"time": 0.6, "x": -44.3, "curve": 0.248, "c3": 0.628, "c4": 0.52}, {"time": 0.75, "x": -27.02, "curve": 0.356, "c2": 0.41, "c3": 0.707, "c4": 0.81}, {"time": 0.8333, "x": 3.7} + ] + }, + "body-fur-under-04": { + "translate": [{"x": -0.33, "y": 3.2}], + "shear": [ + {"x": 10.24, "curve": 0.36, "c2": 0.64, "c3": 0.695}, {"time": 0.2833, "x": 13.82, "curve": 0.25, "c3": 0.228, "c4": 0.99}, + {"time": 0.55, "x": -39.88, "curve": 0.243, "c3": 0.649, "c4": 0.6}, {"time": 0.75, "x": -22.71, "curve": 0.382, "c2": 0.57, "c3": 0.735}, {"time": 0.8333, "x": 10.24} + ] + }, + "body-fur-under-03": { + "translate": [{"x": -0.78, "y": 3.19}], + "shear": [ + {"x": 22.47, "curve": 0.25, "c3": 0.75}, {"time": 0.2167, "x": 19.28, "curve": 0.25, "c3": 0.228, "c4": 0.99}, {"time": 0.5, "x": -45.7, "curve": 0.244, "c3": 0.7, "c4": 0.79}, + {"time": 0.75, "x": -3.18, "curve": 0.366, "c2": 0.63, "c3": 0.703}, {"time": 0.7833, "curve": 0.284, "c3": 0.625, "c4": 0.38}, {"time": 0.8333, "x": 22.47} + ] + }, + "body-fur-under-02": { + "translate": [{"x": -2.23, "y": 6.28}], + "shear": [ + {"x": -27.8, "curve": 0.375, "c2": 0.62, "c3": 0.716}, {"time": 0.25, "x": 18.72, "curve": 0.25, "c3": 0.228, "c4": 0.99}, + {"time": 0.5167, "x": -43.03, "curve": 0.243, "c3": 0.68, "c4": 0.71}, {"time": 0.75, "x": -5.6, "curve": 0.375, "c2": 0.62, "c3": 0.716}, + {"time": 0.8, "curve": 0.297, "c3": 0.634, "c4": 0.37}, {"time": 0.8333, "x": -27.8} + ] + }, + "body-fur-under-01": { + "translate": [{"x": -0.14, "y": 0.84}], + "shear": [ + {"x": -4.09, "curve": 0.375, "c2": 0.5, "c3": 0.75}, {"time": 0.1833, "x": 26.91, "curve": 0.25, "c3": 0.228, "c4": 0.99}, {"time": 0.4667, "x": -42.78, "curve": 0.25, "c3": 0.75}, + {"time": 0.75, "curve": 0.265, "c3": 0.618, "c4": 0.43}, {"time": 0.8333, "x": -4.09} + ] + }, + "body-braid-01": {"rotate": [{"angle": 2.31}]} + }, + "events": [{"time": 0.3333, "name": "start-attack"}, {"time": 0.3667, "name": "hit"}] + }, + "2684952679": { + "slots": { + "ball": { + "color": [ + {"color": "ffffff00", "curve": "stepped"}, {"time": 0.1667, "color": "ffffff00", "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "color": "ffffffff", "curve": "stepped"}, + {"time": 2.9167, "color": "ffffffff", "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 3.0833, "color": "ffffff00"} + ], + "attachment": [{"name": "ball"}] + }, + "eyes": {"attachment": [{"time": 0.5, "name": "eyes-shut"}, {"time": 0.5833, "name": "eyes"}, {"time": 3.0833, "name": "eyes-shut"}, {"time": 3.1667, "name": "eyes"}]}, + "mouth": {"attachment": [{"time": 0.1833, "name": "mouth-open"}, {"time": 0.5, "name": "mouth"}, {"time": 2.7667, "name": "mouth-open"}, {"time": 2.9167, "name": "mouth"}]} + }, + "bones": { + "@pivot-back": { + "rotate": [ + {"curve": 0, "c2": 0.3, "c3": 0.546}, {"time": 0.1667, "angle": 6, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "angle": -6.98, "curve": 0.464, "c4": 0.7}, + {"time": 0.5, "angle": 3, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.6667, "curve": "stepped"}, {"time": 2.5833, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 2.75, "angle": 6, "curve": 0, "c2": 0.3, "c3": 0.546}, {"time": 2.9167, "angle": -6, "curve": 0.464, "c4": 0.7}, + {"time": 3.0833, "angle": 6, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 3.25} + ], + "translate": [ + {"curve": 0, "c2": 0.3, "c3": 0.546}, {"time": 0.1667, "y": 1.78, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "y": 353.14, "curve": 0.464, "c4": 0.7}, + {"time": 0.5, "y": 255, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.6667, "y": 267.67, "curve": 0.156, "c3": 0.693}, + {"time": 1.1667, "x": -30, "y": 267.67, "curve": 0.317, "c3": 0.693}, {"time": 2.1667, "x": 50, "y": 267.67, "curve": 0.317, "c3": 0.693}, + {"time": 2.5833, "y": 267.67, "curve": "stepped"}, {"time": 2.75, "y": 267.67, "curve": 0, "c2": 0.3, "c3": 0.546}, {"time": 2.9167, "y": 310, "curve": 0.464, "c4": 0.7}, + {"time": 3.0833} + ] + }, + "@leg-front-right": { + "translate": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": -2.8, "y": -31.7, "curve": 0, "c2": 0.3, "c3": 0.546}, {"time": 0.25, "curve": "stepped"}, + {"time": 2.5833, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 2.75, "x": -2.8, "y": -31.7, "curve": 0.315, "c4": 0.8}, {"time": 2.8333, "curve": "stepped"}, + {"time": 3, "curve": 0.315, "c4": 0.8}, {"time": 3.0833, "x": -2.86, "y": -32.44, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 3.25} + ] + }, + "@leg-front-left": { + "translate": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": -1.46, "y": -16.59, "curve": 0, "c2": 0.3, "c3": 0.546}, {"time": 0.25, "curve": "stepped"}, + {"time": 2.5833, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 2.75, "x": -1.46, "y": -16.59, "curve": 0.315, "c4": 0.8}, {"time": 2.8333, "curve": "stepped"}, + {"time": 3, "curve": 0.315, "c4": 0.8}, {"time": 3.0833, "x": -1.64, "y": -18.64, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 3.25} + ] + }, + "leg-front-left-IK": { + "translate": [ + {"time": 0.1667, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "x": -6.9, "y": 380.8, "curve": 0.315, "c4": 0.8}, {"time": 0.5, "x": -5.5, "y": 268.35, "curve": "stepped"}, + {"time": 0.6667, "x": -5.5, "y": 268.35, "curve": 0.317, "c3": 0.693}, {"time": 0.9167, "x": -38.87, "y": 268.35, "curve": 0.317, "c3": 0.693}, + {"time": 1.1667, "x": -10.16, "y": 268.35, "curve": 0.317, "c3": 0.693}, {"time": 1.4167, "x": -39.65, "y": 268.35, "curve": 0.317, "c3": 0.693}, + {"time": 1.6667, "x": 23.98, "y": 268.35, "curve": 0.317, "c3": 0.693}, {"time": 1.9167, "x": 5.36, "y": 268.35, "curve": 0.317, "c3": 0.693}, + {"time": 2.1667, "x": 67.44, "y": 268.35, "curve": 0.317, "c3": 0.693}, {"time": 2.4167, "x": -3.95, "y": 268.35, "curve": 0.317, "c3": 0.693}, + {"time": 2.5833, "x": -5.5, "y": 268.35, "curve": "stepped"}, {"time": 2.9167, "x": -5.5, "y": 268.35, "curve": 0.315, "c4": 0.8}, {"time": 3.0833} + ] + }, + "leg-front-right-IK": { + "translate": [ + {"time": 0.1667, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "x": -6.9, "y": 397.8, "curve": 0.315, "c4": 0.8}, {"time": 0.5, "x": 15.4, "y": 268.08, "curve": "stepped"}, + {"time": 0.6667, "x": 15.4, "y": 268.08, "curve": 0.317, "c3": 0.693}, {"time": 0.9167, "x": 24.64, "y": 268.08, "curve": 0.317, "c3": 0.693}, + {"time": 1.1667, "x": -41.71, "y": 268.08, "curve": 0.317, "c3": 0.693}, {"time": 1.4167, "x": 22.12, "y": 268.08, "curve": 0.317, "c3": 0.693}, + {"time": 1.6667, "x": -0.56, "y": 268.08, "curve": 0.317, "c3": 0.693}, {"time": 1.9167, "x": 61.6, "y": 268.08, "curve": 0.317, "c3": 0.693}, + {"time": 2.1667, "x": 33.88, "y": 268.08, "curve": 0.317, "c3": 0.693}, {"time": 2.4167, "x": 49, "y": 268.08, "curve": 0.317, "c3": 0.693}, + {"time": 2.5833, "x": 15.4, "y": 268.08, "curve": "stepped"}, {"time": 2.9167, "x": 15.4, "y": 268.08, "curve": 0.315, "c4": 0.8}, {"time": 3.0833} + ] + }, + "leg-back-left-IK": { + "translate": [ + {"time": 0.1667, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "x": -0.4, "y": 363.25, "curve": 0.315, "c4": 0.8}, {"time": 0.5, "x": -26.16, "y": 267.01}, + {"time": 0.6667, "x": -33.59, "y": 267.01, "curve": 0.317, "c3": 0.693}, {"time": 0.9167, "x": -22.32, "y": 267.01, "curve": 0.317, "c3": 0.693}, + {"time": 1.1667, "x": -63.32, "y": 267.01, "curve": 0.317, "c3": 0.693}, {"time": 1.4167, "x": -28.35, "y": 267.01, "curve": 0.317, "c3": 0.693}, + {"time": 1.6667, "x": -28.02, "y": 267.01, "curve": 0.317, "c3": 0.693}, {"time": 1.9167, "x": 14.36, "y": 267.01, "curve": 0.317, "c3": 0.693}, + {"time": 2.1667, "x": 9.14, "y": 267.01, "curve": 0.317, "c3": 0.693}, {"time": 2.4167, "x": 11.99, "y": 267.01, "curve": 0.317, "c3": 0.693}, + {"time": 2.6667, "x": -33.59, "y": 267.01, "curve": "stepped"}, {"time": 2.9167, "x": -33.59, "y": 267.01, "curve": 0.315, "c4": 0.8}, {"time": 3.0833} + ] + }, + "@ball": { + "rotate": [ + {"time": 0.6667, "curve": 0.156, "c3": 0.693}, {"time": 1.1667, "angle": 18, "curve": 0.317, "c3": 0.693}, {"time": 2.1667, "angle": -18, "curve": 0.317, "c3": 0.693}, {"time": 2.75} + ], + "translate": [ + {"time": 0.6667, "curve": 0.156, "c3": 0.693}, {"time": 1.1667, "x": -32, "curve": 0.317, "c3": 0.693}, {"time": 2.1667, "x": 32, "curve": 0.317, "c3": 0.693}, {"time": 2.75} + ], + "scale": [ + {"x": 0, "y": 0, "curve": "stepped"}, {"time": 0.1667, "x": 0, "y": 0, "curve": 0, "c2": 0.6, "c3": 0.237}, {"time": 0.3333, "x": 1.2, "y": 1.2, "curve": 0.315, "c4": 0.8}, + {"time": 0.5, "curve": "stepped"}, {"time": 2.75, "curve": 0, "c2": 0.3, "c3": 0.546}, {"time": 2.9167, "x": 1.2, "y": 1.2, "curve": 0.315, "c4": 0.8}, {"time": 3.0833, "x": 0, "y": 0} + ] + }, + "ball": { + "scale": [ + {"time": 0.3333, "curve": 0.617, "c4": 0.6}, {"time": 0.5, "x": 1.2, "y": 0.802, "curve": 0, "c2": 0.39, "c3": 0.387}, {"time": 0.6667, "curve": "stepped"}, + {"time": 2.5833, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 2.75, "x": 1.2, "y": 0.9, "curve": 0, "c2": 0.3, "c3": 0.546}, {"time": 2.9167} + ] + }, + "@pivot-center": { + "rotate": [ + {"time": 0.6667, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.9167, "angle": 2, "curve": 0.461, "c3": 0.543}, {"time": 1.4167, "angle": -2, "curve": 0.461, "c3": 0.543}, + {"time": 1.9167, "angle": 2, "curve": 0.461, "c3": 0.543}, {"time": 2.4167, "angle": -2, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 2.75} + ] + }, + "@shadow": { + "translate": [ + {"time": 0.6667, "curve": 0.317, "c3": 0.693}, {"time": 1.1667, "x": -32, "curve": 0.317, "c3": 0.693}, {"time": 2.1667, "x": 32, "curve": 0.317, "c3": 0.693}, {"time": 2.5833} + ], + "scale": [ + {"curve": 0, "c2": 0.3, "c3": 0.546}, {"time": 0.1667, "x": 1.1, "y": 1.1, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "curve": 0.464, "c4": 0.7}, + {"time": 0.5, "x": 1.06, "y": 1.06, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.6667, "curve": "stepped"}, {"time": 2.5833, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 2.75, "x": 1.06, "y": 1.06, "curve": 0, "c2": 0.3, "c3": 0.546}, {"time": 2.9167, "curve": 0.464, "c4": 0.7}, + {"time": 3.0833, "x": 1.1, "y": 1.1, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 3.25} + ] + }, + "tail": { + "rotate": [ + {"curve": 0, "c2": 0.3, "c3": 0.546}, {"time": 0.1667, "angle": 17.35, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "angle": -14.67, "curve": 0.464, "c4": 0.7}, + {"time": 0.5, "angle": 19.12, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.6667, "angle": -10.65, "curve": 0.317, "c3": 0.693}, + {"time": 0.9167, "angle": -0.65, "curve": 0.317, "c3": 0.693}, {"time": 1.1667, "angle": -10.65, "curve": 0.317, "c3": 0.693}, + {"time": 1.4167, "angle": -0.65, "curve": 0.317, "c3": 0.693}, {"time": 1.6667, "angle": -10.65, "curve": 0.317, "c3": 0.693}, + {"time": 1.9167, "angle": -0.65, "curve": 0.317, "c3": 0.693}, {"time": 2.1667, "angle": -10.65, "curve": 0.317, "c3": 0.693}, + {"time": 2.4167, "angle": -0.65, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 2.5833, "angle": -10.65, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 2.75, "angle": 19.35, "curve": 0, "c2": 0.3, "c3": 0.546}, {"time": 2.9167, "angle": -18.65, "curve": 0, "c2": 0.3, "c3": 0.546}, + {"time": 3.0833, "angle": 17.35, "curve": 0.317, "c3": 0.693}, {"time": 3.25} + ] + }, + "body-fur-under-04": { + "translate": [{"x": -0.33, "y": 3.2}], + "shear": [ + {"x": 10.24, "curve": 0.36, "c2": 0.64, "c3": 0.695}, {"time": 0.0333, "x": 11.47, "curve": 0.25, "c3": 0.75}, {"time": 0.3, "x": -17.33, "curve": 0.25, "c3": 0.75}, + {"time": 0.5667, "x": 11.47, "curve": 0.25, "c3": 0.75}, {"time": 0.8333, "x": -17.33, "curve": 0.245, "c3": 0.711, "c4": 0.83}, + {"time": 1.0833, "x": 10.24, "curve": 0.36, "c2": 0.64, "c3": 0.695}, {"time": 1.1167, "x": 11.47, "curve": 0.25, "c3": 0.75}, {"time": 1.3833, "x": -17.33, "curve": 0.25, "c3": 0.75}, + {"time": 1.65, "x": 11.47, "curve": 0.25, "c3": 0.75}, {"time": 1.9333, "x": -17.33, "curve": 0.245, "c3": 0.711, "c4": 0.83}, + {"time": 2.1667, "x": 10.24, "curve": 0.36, "c2": 0.64, "c3": 0.695}, {"time": 2.2, "x": 11.47, "curve": 0.25, "c3": 0.75}, {"time": 2.4667, "x": -17.33, "curve": 0.25, "c3": 0.75}, + {"time": 2.7333, "x": 11.47, "curve": 0.25, "c3": 0.75}, {"time": 3.0167, "x": -17.33, "curve": 0.245, "c3": 0.711, "c4": 0.83}, {"time": 3.25, "x": 10.24} + ] + }, + "body-fur-under-02": { + "translate": [{"x": -2.23, "y": 6.28}], + "shear": [ + {"x": -27.8, "curve": 0.375, "c2": 0.62, "c3": 0.716}, {"time": 0.05, "x": -31.97, "curve": 0.25, "c3": 0.75}, {"time": 0.3333, "x": 0.11, "curve": 0.25, "c3": 0.75}, + {"time": 0.6, "x": -31.97, "curve": 0.25, "c3": 0.75}, {"time": 0.8667, "x": 0.11, "curve": 0.243, "c3": 0.68, "c4": 0.71}, + {"time": 1.0833, "x": -27.8, "curve": 0.375, "c2": 0.62, "c3": 0.716}, {"time": 1.1333, "x": -31.97, "curve": 0.25, "c3": 0.75}, {"time": 1.4167, "x": 0.11, "curve": 0.25, "c3": 0.75}, + {"time": 1.6833, "x": -31.97, "curve": 0.25, "c3": 0.75}, {"time": 1.95, "x": 0.11, "curve": 0.243, "c3": 0.68, "c4": 0.71}, + {"time": 2.1667, "x": -27.8, "curve": 0.375, "c2": 0.62, "c3": 0.716}, {"time": 2.2333, "x": -31.97, "curve": 0.25, "c3": 0.75}, {"time": 2.5, "x": 0.11, "curve": 0.25, "c3": 0.75}, + {"time": 2.7667, "x": -31.97, "curve": 0.25, "c3": 0.75}, {"time": 3.0333, "x": 0.11, "curve": 0.243, "c3": 0.68, "c4": 0.71}, {"time": 3.25, "x": -27.8} + ] + }, + "body-braid-03": { + "rotate": [ + {"angle": -1.71, "curve": 0.337, "c2": 0.34, "c3": 0.673, "c4": 0.69}, {"time": 0.0333, "angle": 1, "curve": 0.354, "c2": 0.41, "c3": 0.694, "c4": 0.77}, + {"time": 0.1, "angle": 4, "curve": 0.369, "c2": 0.63, "c3": 0.706}, {"time": 0.1333, "angle": 5.15, "curve": 0.25, "c3": 0.75}, {"time": 0.4, "angle": -8.41, "curve": 0.25, "c3": 0.75}, + {"time": 0.6833, "angle": 5.15, "curve": 0.25, "c3": 0.75}, {"time": 0.95, "angle": -8.69, "curve": 0.25, "c3": 0.625, "c4": 0.5}, + {"time": 1.0833, "angle": -1.71, "curve": 0.337, "c2": 0.34, "c3": 0.673, "c4": 0.69}, {"time": 1.1333, "angle": 1, "curve": 0.354, "c2": 0.41, "c3": 0.694, "c4": 0.77}, + {"time": 1.1833, "angle": 4, "curve": 0.369, "c2": 0.63, "c3": 0.706}, {"time": 1.2167, "angle": 5.15, "curve": 0.25, "c3": 0.75}, + {"time": 1.5, "angle": -8.41, "curve": 0.25, "c3": 0.75}, {"time": 1.7667, "angle": 5.15, "curve": 0.25, "c3": 0.75}, + {"time": 2.0333, "angle": -8.69, "curve": 0.25, "c3": 0.625, "c4": 0.5}, {"time": 2.1667, "angle": -1.71, "curve": 0.337, "c2": 0.34, "c3": 0.673, "c4": 0.69}, + {"time": 2.2167, "angle": 1, "curve": 0.354, "c2": 0.41, "c3": 0.694, "c4": 0.77}, {"time": 2.2667, "angle": 4, "curve": 0.369, "c2": 0.63, "c3": 0.706}, + {"time": 2.3, "angle": 5.15, "curve": 0.25, "c3": 0.75}, {"time": 2.5833, "angle": -8.41, "curve": 0.25, "c3": 0.75}, {"time": 2.85, "angle": 5.15, "curve": 0.25, "c3": 0.75}, + {"time": 3.1167, "angle": -8.69, "curve": 0.25, "c3": 0.625, "c4": 0.5}, {"time": 3.25, "angle": -1.71} + ] + }, + "body-braid-06": { + "rotate": [ + {"angle": -20.59, "curve": 0.352, "c2": 0.41, "c3": 0.689, "c4": 0.75}, {"time": 0.0333, "angle": -24.8, "curve": 0.369, "c2": 0.63, "c3": 0.706}, + {"time": 0.0833, "angle": -27.05, "curve": 0.318, "c3": 0.652, "c4": 0.34}, {"time": 0.1, "angle": -26.59, "curve": 0.271, "c2": 0.09, "c3": 0.753}, + {"time": 0.35, "curve": 0.25, "c3": 0.75}, {"time": 0.6167, "angle": -26.77, "curve": 0.25, "c3": 0.75}, {"time": 0.9, "curve": 0.243, "c3": 0.655, "c4": 0.63}, + {"time": 1.0833, "angle": -20.59, "curve": 0.352, "c2": 0.41, "c3": 0.689, "c4": 0.75}, {"time": 1.1333, "angle": -24.8, "curve": 0.369, "c2": 0.63, "c3": 0.706}, + {"time": 1.1667, "angle": -27.05, "curve": 0.318, "c3": 0.652, "c4": 0.34}, {"time": 1.1833, "angle": -26.59, "curve": 0.271, "c2": 0.09, "c3": 0.753}, + {"time": 1.4333, "curve": 0.25, "c3": 0.75}, {"time": 1.7167, "angle": -26.77, "curve": 0.25, "c3": 0.75}, {"time": 1.9833, "curve": 0.243, "c3": 0.655, "c4": 0.63}, + {"time": 2.1667, "angle": -20.59, "curve": 0.352, "c2": 0.41, "c3": 0.689, "c4": 0.75}, {"time": 2.2167, "angle": -24.8, "curve": 0.369, "c2": 0.63, "c3": 0.706}, + {"time": 2.25, "angle": -27.05, "curve": 0.318, "c3": 0.652, "c4": 0.34}, {"time": 2.2667, "angle": -26.59, "curve": 0.271, "c2": 0.09, "c3": 0.753}, + {"time": 2.5167, "curve": 0.25, "c3": 0.75}, {"time": 2.8, "angle": -26.77, "curve": 0.25, "c3": 0.75}, {"time": 3.0667, "curve": 0.243, "c3": 0.655, "c4": 0.63}, + {"time": 3.25, "angle": -20.59} + ] + }, + "body-braid-05": { + "rotate": [ + {"angle": -8.3, "curve": 0.294, "c3": 0.631, "c4": 0.37}, {"time": 0.0333, "angle": -7.64, "curve": 0.306, "c2": 0.23, "c3": 0.646, "c4": 0.59}, + {"time": 0.1, "angle": -5.77, "curve": 0.354, "c2": 0.41, "c3": 0.756}, {"time": 0.2667, "curve": 0.25, "c3": 0.75}, {"time": 0.55, "angle": -8.02, "curve": 0.25, "c3": 0.75}, + {"time": 0.8167, "curve": 0.25, "c3": 0.75}, {"time": 1.0833, "angle": -8.3, "curve": 0.294, "c3": 0.631, "c4": 0.37}, + {"time": 1.1333, "angle": -7.64, "curve": 0.306, "c2": 0.23, "c3": 0.646, "c4": 0.59}, {"time": 1.1833, "angle": -5.77, "curve": 0.354, "c2": 0.41, "c3": 0.756}, + {"time": 1.35, "curve": 0.25, "c3": 0.75}, {"time": 1.6333, "angle": -8.02, "curve": 0.25, "c3": 0.75}, {"time": 1.9, "curve": 0.25, "c3": 0.75}, + {"time": 2.1667, "angle": -8.3, "curve": 0.294, "c3": 0.631, "c4": 0.37}, {"time": 2.2167, "angle": -7.64, "curve": 0.306, "c2": 0.23, "c3": 0.646, "c4": 0.59}, + {"time": 2.2667, "angle": -5.77, "curve": 0.354, "c2": 0.41, "c3": 0.756}, {"time": 2.45, "curve": 0.25, "c3": 0.75}, {"time": 2.7167, "angle": -8.02, "curve": 0.25, "c3": 0.75}, + {"time": 2.9833, "curve": 0.25, "c3": 0.75}, {"time": 3.25, "angle": -8.3} + ] + }, + "body-braid-02": { + "rotate": [ + {"angle": 3.5, "curve": 0.348, "c2": 0.38, "c3": 0.685, "c4": 0.73}, {"time": 0.0333, "angle": 3.89, "curve": 0.375, "c2": 0.62, "c3": 0.716}, + {"time": 0.1, "angle": 4.18, "curve": 0.25, "c3": 0.75}, {"time": 0.3667, "angle": 1.94, "curve": 0.25, "c3": 0.75}, {"time": 0.6333, "angle": 4.18, "curve": 0.25, "c3": 0.75}, + {"time": 0.9167, "angle": 1.94, "curve": 0.244, "c3": 0.646, "c4": 0.59}, {"time": 1.0833, "angle": 3.5, "curve": 0.348, "c2": 0.38, "c3": 0.685, "c4": 0.73}, + {"time": 1.1333, "angle": 3.89, "curve": 0.375, "c2": 0.62, "c3": 0.716}, {"time": 1.1833, "angle": 4.18, "curve": 0.25, "c3": 0.75}, + {"time": 1.45, "angle": 1.94, "curve": 0.25, "c3": 0.75}, {"time": 1.7167, "angle": 4.18, "curve": 0.25, "c3": 0.75}, {"time": 2, "angle": 1.94, "curve": 0.244, "c3": 0.646, "c4": 0.59}, + {"time": 2.1667, "angle": 3.5, "curve": 0.348, "c2": 0.38, "c3": 0.685, "c4": 0.73}, {"time": 2.2167, "angle": 3.89, "curve": 0.375, "c2": 0.62, "c3": 0.716}, + {"time": 2.2667, "angle": 4.18, "curve": 0.25, "c3": 0.75}, {"time": 2.5333, "angle": 1.94, "curve": 0.25, "c3": 0.75}, {"time": 2.8167, "angle": 4.18, "curve": 0.25, "c3": 0.75}, + {"time": 3.0833, "angle": 1.94, "curve": 0.244, "c3": 0.646, "c4": 0.59}, {"time": 3.25, "angle": 3.5} + ] + }, + "body-braid-04": { + "rotate": [ + {"angle": -9.29, "curve": 0.323, "c2": 0.3, "c3": 0.66, "c4": 0.65}, {"time": 0.0333, "angle": -6.92, "curve": 0.335, "c2": 0.34, "c3": 0.674, "c4": 0.69}, + {"time": 0.1, "angle": -3.73, "curve": 0.382, "c2": 0.57, "c3": 0.737}, {"time": 0.1833, "curve": 0.25, "c3": 0.75}, {"time": 0.4667, "angle": -11.98, "curve": 0.25, "c3": 0.75}, + {"time": 0.7333, "curve": 0.25, "c3": 0.75}, {"time": 1, "angle": -12.25, "curve": 0.269, "c3": 0.618, "c4": 0.42}, + {"time": 1.0833, "angle": -9.29, "curve": 0.323, "c2": 0.3, "c3": 0.66, "c4": 0.65}, {"time": 1.1333, "angle": -6.92, "curve": 0.335, "c2": 0.34, "c3": 0.674, "c4": 0.69}, + {"time": 1.1833, "angle": -3.73, "curve": 0.382, "c2": 0.57, "c3": 0.737}, {"time": 1.2833, "curve": 0.25, "c3": 0.75}, {"time": 1.55, "angle": -11.98, "curve": 0.25, "c3": 0.75}, + {"time": 1.8167, "curve": 0.25, "c3": 0.75}, {"time": 2.0833, "angle": -12.25, "curve": 0.269, "c3": 0.618, "c4": 0.42}, + {"time": 2.1667, "angle": -9.29, "curve": 0.323, "c2": 0.3, "c3": 0.66, "c4": 0.65}, {"time": 2.2167, "angle": -6.92, "curve": 0.335, "c2": 0.34, "c3": 0.674, "c4": 0.69}, + {"time": 2.2667, "angle": -3.73, "curve": 0.382, "c2": 0.57, "c3": 0.737}, {"time": 2.3667, "curve": 0.25, "c3": 0.75}, {"time": 2.6333, "angle": -11.98, "curve": 0.25, "c3": 0.75}, + {"time": 2.9, "curve": 0.25, "c3": 0.75}, {"time": 3.1833, "angle": -12.25, "curve": 0.269, "c3": 0.618, "c4": 0.42}, {"time": 3.25, "angle": -9.29} + ] + }, + "body-braid-01": { + "rotate": [ + {"angle": 2.31, "curve": 0.348, "c2": 0.38, "c3": 0.685, "c4": 0.73}, {"time": 0.0333, "angle": 2.87, "curve": 0.375, "c2": 0.62, "c3": 0.716}, + {"time": 0.1, "angle": 3.3, "curve": 0.25, "c3": 0.75}, {"time": 0.3667, "curve": 0.25, "c3": 0.75}, {"time": 0.6333, "angle": 3.3, "curve": 0.25, "c3": 0.75}, + {"time": 0.9167, "curve": 0.244, "c3": 0.646, "c4": 0.59}, {"time": 1.0833, "angle": 2.31, "curve": 0.348, "c2": 0.38, "c3": 0.685, "c4": 0.73}, + {"time": 1.1333, "angle": 2.87, "curve": 0.375, "c2": 0.62, "c3": 0.716}, {"time": 1.1833, "angle": 3.3, "curve": 0.25, "c3": 0.75}, {"time": 1.45, "curve": 0.25, "c3": 0.75}, + {"time": 1.7167, "angle": 3.3, "curve": 0.25, "c3": 0.75}, {"time": 2, "curve": 0.244, "c3": 0.646, "c4": 0.59}, + {"time": 2.1667, "angle": 2.31, "curve": 0.348, "c2": 0.38, "c3": 0.685, "c4": 0.73}, {"time": 2.2167, "angle": 2.87, "curve": 0.375, "c2": 0.62, "c3": 0.716}, + {"time": 2.2667, "angle": 3.3, "curve": 0.25, "c3": 0.75}, {"time": 2.5333, "curve": 0.25, "c3": 0.75}, {"time": 2.8167, "angle": 3.3, "curve": 0.25, "c3": 0.75}, + {"time": 3.0833, "curve": 0.244, "c3": 0.646, "c4": 0.59}, {"time": 3.25, "angle": 2.31} + ] + }, + "body-fur-under-03": { + "translate": [{"x": -0.78, "y": 3.19}], + "shear": [ + {"x": 22.47, "curve": 0.25, "c3": 0.75}, {"time": 0.2667, "curve": 0.25, "c3": 0.75}, {"time": 0.55, "x": 22.47, "curve": 0.25, "c3": 0.75}, {"time": 0.8167, "curve": 0.25, "c3": 0.75}, + {"time": 1.0833, "x": 22.47, "curve": 0.25, "c3": 0.75}, {"time": 1.35, "curve": 0.25, "c3": 0.75}, {"time": 1.6333, "x": 22.47, "curve": 0.25, "c3": 0.75}, + {"time": 1.9, "curve": 0.25, "c3": 0.75}, {"time": 2.1667, "x": 22.47, "curve": 0.25, "c3": 0.75}, {"time": 2.45, "curve": 0.25, "c3": 0.75}, + {"time": 2.7167, "x": 22.47, "curve": 0.25, "c3": 0.75}, {"time": 2.9833, "curve": 0.25, "c3": 0.75}, {"time": 3.25, "x": 22.47} + ] + }, + "body-fur-under-01": { + "translate": [{"x": -0.14, "y": 0.84}], + "shear": [ + {"x": -4.09, "curve": 0.375, "c2": 0.5, "c3": 0.75}, {"time": 0.1333, "x": -25.22, "curve": 0.25, "c3": 0.75}, {"time": 0.4, "x": 17.03, "curve": 0.25, "c3": 0.75}, + {"time": 0.6833, "x": -25.22, "curve": 0.25, "c3": 0.75}, {"time": 0.95, "x": 17.03, "curve": 0.25, "c3": 0.625, "c4": 0.5}, + {"time": 1.0833, "x": -4.09, "curve": 0.375, "c2": 0.5, "c3": 0.75}, {"time": 1.2167, "x": -25.22, "curve": 0.25, "c3": 0.75}, {"time": 1.5, "x": 17.03, "curve": 0.25, "c3": 0.75}, + {"time": 1.7667, "x": -25.22, "curve": 0.25, "c3": 0.75}, {"time": 2.0333, "x": 17.03, "curve": 0.25, "c3": 0.625, "c4": 0.5}, + {"time": 2.1667, "x": -4.09, "curve": 0.375, "c2": 0.5, "c3": 0.75}, {"time": 2.3, "x": -25.22, "curve": 0.25, "c3": 0.75}, {"time": 2.5833, "x": 17.03, "curve": 0.25, "c3": 0.75}, + {"time": 2.85, "x": -25.22, "curve": 0.25, "c3": 0.75}, {"time": 3.1167, "x": 17.03, "curve": 0.25, "c3": 0.625, "c4": 0.5}, {"time": 3.25, "x": -4.09} + ] + }, + "body-fur-under-05": { + "translate": [{"x": 0.53, "y": 14.98}], + "shear": [ + {"x": 3.7, "curve": 0.382, "c2": 0.57, "c3": 0.737}, {"time": 0.1, "x": 13.52, "curve": 0.25, "c3": 0.75}, {"time": 0.3667, "x": -18.7, "curve": 0.25, "c3": 0.75}, + {"time": 0.6333, "x": 13.52, "curve": 0.25, "c3": 0.75}, {"time": 0.9167, "x": -18.7, "curve": 0.244, "c3": 0.646, "c4": 0.59}, + {"time": 1.0833, "x": 3.7, "curve": 0.382, "c2": 0.57, "c3": 0.737}, {"time": 1.1833, "x": 13.52, "curve": 0.25, "c3": 0.75}, {"time": 1.45, "x": -18.7, "curve": 0.25, "c3": 0.75}, + {"time": 1.7167, "x": 13.52, "curve": 0.25, "c3": 0.75}, {"time": 2, "x": -18.7, "curve": 0.244, "c3": 0.646, "c4": 0.59}, + {"time": 2.1667, "x": 3.7, "curve": 0.382, "c2": 0.57, "c3": 0.737}, {"time": 2.2667, "x": 13.52, "curve": 0.25, "c3": 0.75}, {"time": 2.5333, "x": -18.7, "curve": 0.25, "c3": 0.75}, + {"time": 2.8167, "x": 13.52, "curve": 0.25, "c3": 0.75}, {"time": 3.0833, "x": -18.7, "curve": 0.244, "c3": 0.646, "c4": 0.59}, {"time": 3.25, "x": 3.7} + ] + } + } + }, + "2106252256": { + "slots": { + "eyes": {"attachment": [{"time": 0.0833, "name": "eyes-happy"}, {"time": 1, "name": "eyes"}]}, + "leg-back-left": {"attachment": [{"time": 0.0667, "name": "leg-back-left-long"}, {"time": 0.9, "name": "leg-back-left"}]}, + "mouth": {"attachment": [{"time": 0.0833, "name": "mouth-smile"}, {"time": 1, "name": "mouth"}]} + }, + "bones": { + "@pivot-back": { + "rotate": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "angle": -18, "curve": 0.317, "c3": 0.693}, {"time": 0.3333, "angle": -17, "curve": 0.317, "c3": 0.693}, + {"time": 0.5, "angle": -18, "curve": 0.317, "c3": 0.693}, {"time": 0.6667, "angle": -17, "curve": 0.317, "c3": 0.693}, {"time": 0.8333, "angle": -18, "curve": 0.317, "c3": 0.693}, + {"time": 1.0833} + ], + "translate": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": 33.94, "y": -52, "curve": "stepped"}, {"time": 0.8333, "x": 33.94, "y": -52, "curve": 0.317, "c3": 0.693}, {"time": 1.0833} + ] + }, + "@leg-front-left": { + "translate": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": -27.99, "y": 1.7, "curve": 0.25, "c3": 0.75}, {"time": 0.3333, "x": -26.93, "y": -1.56, "curve": 0.25, "c3": 0.75}, + {"time": 0.5, "x": -27.99, "y": 1.7, "curve": 0.25, "c3": 0.75}, {"time": 0.6667, "x": -26.93, "y": -1.56, "curve": 0.25, "c3": 0.75}, + {"time": 0.8333, "x": -27.99, "y": 1.7, "curve": 0.317, "c3": 0.693}, {"time": 1.0833} + ] + }, + "@leg-front-right": { + "translate": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": -84.32, "y": 39.72, "curve": 0.317, "c3": 0.693}, {"time": 0.3333, "x": -82.71, "y": 34.75, "curve": 0.317, "c3": 0.693}, + {"time": 0.5, "x": -84.32, "y": 39.72, "curve": 0.317, "c3": 0.693}, {"time": 0.6667, "x": -82.71, "y": 34.75, "curve": 0.317, "c3": 0.693}, + {"time": 0.8333, "x": -84.32, "y": 39.72, "curve": 0.317, "c3": 0.693}, {"time": 1.0833} + ] + }, + "leg-front-right-IK": { + "translate": [{"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": 40.32, "curve": "stepped"}, {"time": 0.8333, "x": 40.32, "curve": 0.317, "c3": 0.693}, {"time": 1.0833}] + }, + "leg-front-left-IK": { + "translate": [{"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": 26.51, "curve": "stepped"}, {"time": 0.8333, "x": 26.51, "curve": 0.317, "c3": 0.693}, {"time": 1.0833}] + }, + "leg-back-left-IK": { + "translate": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": -30.93, "y": 88.63, "curve": 0.617, "c4": 0.6}, {"time": 0.2667, "x": -62.81, "y": 72.23, "curve": 0, "c2": 0.4, "c3": 0.383}, + {"time": 0.35, "x": -28.19, "y": 96.83, "curve": 0.617, "c4": 0.6}, {"time": 0.45, "x": -62.81, "y": 72.23, "curve": 0, "c2": 0.4, "c3": 0.383}, + {"time": 0.55, "x": -28.19, "y": 96.83, "curve": 0.617, "c4": 0.6}, {"time": 0.6333, "x": -62.81, "y": 72.23, "curve": 0, "c2": 0.4, "c3": 0.383}, + {"time": 0.7333, "x": -28.19, "y": 96.83, "curve": 0.434, "c3": 0.739, "c4": 0.4}, {"time": 0.8333, "x": -56.92, "y": 76.7, "curve": 0.223, "c2": 0.33, "c3": 0.336}, {"time": 1.0833} + ] + }, + "tail": { + "rotate": [ + {"curve": 0, "c2": 0.3, "c3": 0.546}, {"time": 0.1667, "angle": 25.35, "curve": 0.317, "c3": 0.693}, {"time": 0.3333, "angle": 33.35, "curve": 0.317, "c3": 0.693}, + {"time": 0.5, "angle": 25.35, "curve": 0.317, "c3": 0.693}, {"time": 0.6667, "angle": 33.35, "curve": 0.317, "c3": 0.693}, + {"time": 0.9167, "angle": 25.35, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 1.0833} + ] + }, + "@shadow": { + "translate": [{"curve": 0, "c2": 0.3, "c3": 0.546}, {"time": 0.1667, "x": 32.73, "curve": "stepped"}, {"time": 0.8333, "x": 32.73, "curve": 0.317, "c3": 0.693}, {"time": 1.0833}], + "scale": [ + {"time": 0.1667, "curve": 0.317, "c3": 0.693}, {"time": 0.25, "x": 1.02, "y": 1.02, "curve": 0.317, "c3": 0.693}, {"time": 0.3333, "curve": 0.317, "c3": 0.693}, + {"time": 0.4167, "x": 1.02, "y": 1.02, "curve": 0.317, "c3": 0.693}, {"time": 0.5, "curve": 0.317, "c3": 0.693}, {"time": 0.5833, "x": 1.02, "y": 1.02, "curve": 0.317, "c3": 0.693}, + {"time": 0.6667, "curve": 0.317, "c3": 0.693}, {"time": 0.8333, "x": 1.02, "y": 1.02, "curve": 0.317, "c3": 0.693}, {"time": 1.0833} + ] + }, + "body-fur-under-04": { + "translate": [{"x": -0.33, "y": 3.2}], + "shear": [ + {"x": 10.24, "curve": 0.36, "c2": 0.64, "c3": 0.695}, {"time": 0.0333, "x": 11.47, "curve": 0.25, "c3": 0.75}, {"time": 0.3, "x": -17.33, "curve": 0.25, "c3": 0.75}, + {"time": 0.5667, "x": 11.47, "curve": 0.25, "c3": 0.75}, {"time": 0.8333, "x": -17.33, "curve": 0.245, "c3": 0.711, "c4": 0.83}, {"time": 1.0833, "x": 10.24} + ] + }, + "body-fur-under-02": { + "translate": [{"x": -2.23, "y": 6.28}], + "shear": [ + {"x": -27.8, "curve": 0.375, "c2": 0.62, "c3": 0.716}, {"time": 0.05, "x": -31.97, "curve": 0.25, "c3": 0.75}, {"time": 0.3167, "x": 0.11, "curve": 0.25, "c3": 0.75}, + {"time": 0.6, "x": -31.97, "curve": 0.25, "c3": 0.75}, {"time": 0.8667, "x": 0.11, "curve": 0.243, "c3": 0.68, "c4": 0.71}, {"time": 1.0833, "x": -27.8} + ] + }, + "body-braid-03": { + "rotate": [ + {"angle": -1.71, "curve": 0.337, "c2": 0.34, "c3": 0.673, "c4": 0.69}, {"time": 0.0333, "angle": 1, "curve": 0.354, "c2": 0.41, "c3": 0.694, "c4": 0.77}, + {"time": 0.1, "angle": 4, "curve": 0.369, "c2": 0.63, "c3": 0.706}, {"time": 0.1333, "angle": 5.15, "curve": 0.25, "c3": 0.75}, {"time": 0.4, "angle": -8.41, "curve": 0.25, "c3": 0.75}, + {"time": 0.6833, "angle": 5.15, "curve": 0.25, "c3": 0.75}, {"time": 0.95, "angle": -8.69, "curve": 0.25, "c3": 0.625, "c4": 0.5}, {"time": 1.0833, "angle": -1.71} + ] + }, + "body-braid-06": { + "rotate": [ + {"angle": -20.59, "curve": 0.352, "c2": 0.41, "c3": 0.689, "c4": 0.75}, {"time": 0.0333, "angle": -24.8, "curve": 0.369, "c2": 0.63, "c3": 0.706}, + {"time": 0.0833, "angle": -27.05, "curve": 0.318, "c3": 0.652, "c4": 0.34}, {"time": 0.1, "angle": -26.59, "curve": 0.271, "c2": 0.09, "c3": 0.753}, + {"time": 0.35, "curve": 0.25, "c3": 0.75}, {"time": 0.6167, "angle": -26.77, "curve": 0.25, "c3": 0.75}, {"time": 0.9, "curve": 0.243, "c3": 0.655, "c4": 0.63}, + {"time": 1.0833, "angle": -20.59} + ] + }, + "body-braid-05": { + "rotate": [ + {"angle": -8.3, "curve": 0.294, "c3": 0.631, "c4": 0.37}, {"time": 0.0333, "angle": -7.64, "curve": 0.306, "c2": 0.23, "c3": 0.646, "c4": 0.59}, + {"time": 0.1, "angle": -5.77, "curve": 0.354, "c2": 0.41, "c3": 0.756}, {"time": 0.2667, "curve": 0.25, "c3": 0.75}, {"time": 0.5333, "angle": -8.02, "curve": 0.25, "c3": 0.75}, + {"time": 0.8167, "curve": 0.25, "c3": 0.75}, {"time": 1.0833, "angle": -8.3} + ] + }, + "body-braid-02": { + "rotate": [ + {"angle": 3.5, "curve": 0.348, "c2": 0.38, "c3": 0.685, "c4": 0.73}, {"time": 0.0333, "angle": 3.89, "curve": 0.375, "c2": 0.62, "c3": 0.716}, + {"time": 0.1, "angle": 4.18, "curve": 0.25, "c3": 0.75}, {"time": 0.3667, "angle": 1.94, "curve": 0.25, "c3": 0.75}, {"time": 0.6333, "angle": 4.18, "curve": 0.25, "c3": 0.75}, + {"time": 0.9, "angle": 1.94, "curve": 0.244, "c3": 0.646, "c4": 0.59}, {"time": 1.0833, "angle": 3.5} + ] + }, + "body-braid-04": { + "rotate": [ + {"angle": -9.29, "curve": 0.323, "c2": 0.3, "c3": 0.66, "c4": 0.65}, {"time": 0.0333, "angle": -6.92, "curve": 0.335, "c2": 0.34, "c3": 0.674, "c4": 0.69}, + {"time": 0.1, "angle": -3.73, "curve": 0.382, "c2": 0.57, "c3": 0.737}, {"time": 0.1833, "curve": 0.25, "c3": 0.75}, {"time": 0.4667, "angle": -11.98, "curve": 0.25, "c3": 0.75}, + {"time": 0.7333, "curve": 0.25, "c3": 0.75}, {"time": 1, "angle": -12.25, "curve": 0.269, "c3": 0.618, "c4": 0.42}, {"time": 1.0833, "angle": -9.29} + ] + }, + "body-braid-01": { + "rotate": [ + {"angle": 2.31, "curve": 0.348, "c2": 0.38, "c3": 0.685, "c4": 0.73}, {"time": 0.0333, "angle": 2.87, "curve": 0.375, "c2": 0.62, "c3": 0.716}, + {"time": 0.1, "angle": 3.3, "curve": 0.25, "c3": 0.75}, {"time": 0.3667, "curve": 0.25, "c3": 0.75}, {"time": 0.6333, "angle": 3.3, "curve": 0.25, "c3": 0.75}, + {"time": 0.9, "curve": 0.244, "c3": 0.646, "c4": 0.59}, {"time": 1.0833, "angle": 2.31} + ] + }, + "body-fur-under-03": { + "translate": [{"x": -0.78, "y": 3.19}], + "shear": [ + {"x": 22.47, "curve": 0.25, "c3": 0.75}, {"time": 0.2667, "curve": 0.25, "c3": 0.75}, {"time": 0.5333, "x": 22.47, "curve": 0.25, "c3": 0.75}, + {"time": 0.8167, "curve": 0.25, "c3": 0.75}, {"time": 1.0833, "x": 22.47} + ] + }, + "body-fur-under-01": { + "translate": [{"x": -0.14, "y": 0.84}], + "shear": [ + {"x": -4.09, "curve": 0.375, "c2": 0.5, "c3": 0.75}, {"time": 0.1333, "x": -25.22, "curve": 0.25, "c3": 0.75}, {"time": 0.4, "x": 17.03, "curve": 0.25, "c3": 0.75}, + {"time": 0.6833, "x": -25.22, "curve": 0.25, "c3": 0.75}, {"time": 0.95, "x": 17.03, "curve": 0.25, "c3": 0.625, "c4": 0.5}, {"time": 1.0833, "x": -4.09} + ] + }, + "body-fur-under-05": { + "translate": [{"x": 0.53, "y": 14.98}], + "shear": [ + {"x": 3.7, "curve": 0.382, "c2": 0.57, "c3": 0.737}, {"time": 0.1, "x": 13.52, "curve": 0.25, "c3": 0.75}, {"time": 0.3667, "x": -18.7, "curve": 0.25, "c3": 0.75}, + {"time": 0.6333, "x": 13.52, "curve": 0.25, "c3": 0.75}, {"time": 0.9, "x": -18.7, "curve": 0.244, "c3": 0.646, "c4": 0.59}, {"time": 1.0833, "x": 3.7} + ] + } + }, + "drawOrder": [{"time": 0.0667, "offsets": [{"slot": "leg-back-left", "offset": 3}]}, {"time": 0.9}] + }, + "2939918937": { + "slots": { + "eyes": {"attachment": [{"time": 0.05, "name": "eyes-happy"}, {"time": 2.0833, "name": "eyes"}]}, + "mouth": {"attachment": [{"time": 0.05, "name": "mouth-bite"}, {"time": 2.0833, "name": "mouth"}]} + }, + "bones": { + "@pivot-back": { + "rotate": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "angle": 6, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.4833, "angle": 7, "curve": 0.317, "c3": 0.693}, + {"time": 0.55, "angle": 6.5, "curve": 0.317, "c3": 0.693}, {"time": 0.6167, "angle": 7, "curve": 0.317, "c3": 0.693}, {"time": 0.6833, "angle": 6.5, "curve": 0, "c2": 0.1, "c3": 0.85}, + {"time": 0.9167, "angle": 8, "curve": 0.317, "c3": 0.693}, {"time": 1.3333, "angle": -7, "curve": 0.461, "c3": 0.543}, {"time": 1.9167, "angle": -9, "curve": 0.154, "c4": 0.9}, + {"time": 2.1667, "angle": 3, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 2.3333} + ], + "translate": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "x": 7, "y": 6, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.9167, "x": 11, "y": 10, "curve": 0.317, "c3": 0.693}, + {"time": 1.3333, "x": -45, "y": -14, "curve": 0.461, "c3": 0.543}, {"time": 1.9167, "x": -45, "y": -18, "curve": 0.154, "c4": 0.9}, + {"time": 2.1667, "y": 4.23, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 2.3333} + ] + }, + "@leg-front-right": { + "translate": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "x": -2.08, "y": -23.58, "curve": "stepped"}, {"time": 0.9167, "x": -2.08, "y": -23.58, "curve": 0.317, "c3": 0.693}, + {"time": 1.3333, "x": -56.51, "y": 25.21, "curve": 0.461, "c3": 0.543}, {"time": 1.9167, "x": -57.58, "y": 31.33, "curve": 0.154, "c4": 0.9}, + {"time": 2.1667, "x": -1.95, "y": -12.95, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 2.3333} + ] + }, + "@leg-front-left": { + "translate": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "x": -0.92, "y": -10.48, "curve": "stepped"}, {"time": 0.9167, "x": -0.92, "y": -10.48, "curve": 0.317, "c3": 0.693}, + {"time": 1.3333, "x": -48.7, "y": 5.49, "curve": 0.461, "c3": 0.543}, {"time": 1.9167, "x": -49.1, "y": 7.78, "curve": 0.154, "c4": 0.9}, + {"time": 2.1667, "x": -0.87, "y": -4.98, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 2.3333} + ] + }, + "@leg-back-left": { + "translate": [ + {"time": 0.25}, {"time": 0.9167, "x": 0.52, "y": 4.2, "curve": 0.317, "c3": 0.693}, {"time": 1.3333, "x": -2.48, "y": -1.61, "curve": "stepped"}, + {"time": 1.9167, "x": -2.48, "y": -1.61, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 2.1667} + ] + }, + "leg-front-left-IK": { + "translate": [ + {"time": 0.9167, "curve": 0.317, "c3": 0.693}, {"time": 1.3333, "x": -11.56, "curve": "stepped"}, {"time": 1.9167, "x": -11.56, "curve": 0.154, "c4": 0.9}, {"time": 2.1667} + ] + }, + "leg-front-right-IK": { + "translate": [{"time": 0.9167, "curve": 0.317, "c3": 0.693}, {"time": 1.3333, "x": -5.65, "curve": "stepped"}, {"time": 1.9167, "x": -5.65, "curve": 0.154, "c4": 0.9}, {"time": 2.1667}] + }, + "leg-back-left-IK": { + "translate": [ + {"time": 0.9167, "curve": 0.317, "c3": 0.693}, {"time": 1.3333, "x": -33.62, "curve": "stepped"}, {"time": 1.9167, "x": -33.62, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 2.1667} + ] + }, + "tail": { + "rotate": [ + {"curve": 0, "c2": 0.3, "c3": 0.546}, {"time": 0.25, "angle": 20.35, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.4167, "angle": 15.85, "curve": 0.317, "c3": 0.693}, + {"time": 0.4833, "angle": 17.35, "curve": 0.317, "c3": 0.693}, {"time": 0.55, "angle": 15.85, "curve": 0.317, "c3": 0.693}, {"time": 0.6167, "angle": 18.35, "curve": 0.317, "c3": 0.693}, + {"time": 0.6833, "angle": 16.85, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.9167, "angle": 18.35, "curve": 0.317, "c3": 0.693}, + {"time": 1.3333, "angle": -9.65, "curve": 0.461, "c3": 0.543}, {"time": 1.9167, "angle": -13.65, "curve": 0.154, "c4": 0.9}, + {"time": 2.1667, "angle": 10.35, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 2.3333} + ] + }, + "body-fur-under-04": { + "translate": [{"x": -0.33, "y": 3.2}], + "shear": [ + {"x": 10.24, "curve": 0.36, "c2": 0.64, "c3": 0.695}, {"time": 0.0333, "x": 11.47, "curve": 0.25, "c3": 0.75}, {"time": 0.3167, "x": -17.33, "curve": 0.25, "c3": 0.75}, + {"time": 0.6167, "x": 11.47, "curve": 0.25, "c3": 0.75}, {"time": 0.9, "x": -17.33, "curve": 0.245, "c3": 0.711, "c4": 0.83}, + {"time": 1.1667, "x": 10.24, "curve": 0.36, "c2": 0.64, "c3": 0.695}, {"time": 1.2, "x": 11.47, "curve": 0.25, "c3": 0.75}, {"time": 1.4833, "x": -17.33, "curve": 0.25, "c3": 0.75}, + {"time": 1.7833, "x": 11.47, "curve": 0.25, "c3": 0.75}, {"time": 2.0833, "x": -17.33, "curve": 0.245, "c3": 0.711, "c4": 0.83}, {"time": 2.3333, "x": 10.24} + ] + }, + "body-fur-under-02": { + "translate": [{"x": -2.23, "y": 6.28}], + "shear": [ + {"x": -27.8, "curve": 0.375, "c2": 0.62, "c3": 0.716}, {"time": 0.0667, "x": -31.97, "curve": 0.25, "c3": 0.75}, {"time": 0.35, "x": 0.11, "curve": 0.25, "c3": 0.75}, + {"time": 0.65, "x": -31.97, "curve": 0.25, "c3": 0.75}, {"time": 0.9333, "x": 0.11, "curve": 0.243, "c3": 0.68, "c4": 0.71}, + {"time": 1.1667, "x": -27.8, "curve": 0.375, "c2": 0.62, "c3": 0.716}, {"time": 1.2333, "x": -31.97, "curve": 0.25, "c3": 0.75}, {"time": 1.5167, "x": 0.11, "curve": 0.25, "c3": 0.75}, + {"time": 1.8167, "x": -31.97, "curve": 0.25, "c3": 0.75}, {"time": 2.1, "x": 0.11, "curve": 0.243, "c3": 0.68, "c4": 0.71}, {"time": 2.3333, "x": -27.8} + ] + }, + "body-braid-03": { + "rotate": [ + {"angle": -1.71, "curve": 0.337, "c2": 0.34, "c3": 0.673, "c4": 0.69}, {"time": 0.05, "angle": 1, "curve": 0.354, "c2": 0.41, "c3": 0.694, "c4": 0.77}, + {"time": 0.1, "angle": 4, "curve": 0.369, "c2": 0.63, "c3": 0.706}, {"time": 0.15, "angle": 5.15, "curve": 0.25, "c3": 0.75}, {"time": 0.4333, "angle": -8.41, "curve": 0.25, "c3": 0.75}, + {"time": 0.7333, "angle": 5.15, "curve": 0.25, "c3": 0.75}, {"time": 1.0167, "angle": -8.69, "curve": 0.25, "c3": 0.625, "c4": 0.5}, + {"time": 1.1667, "angle": -1.71, "curve": 0.337, "c2": 0.34, "c3": 0.673, "c4": 0.69}, {"time": 1.2167, "angle": 1, "curve": 0.354, "c2": 0.41, "c3": 0.694, "c4": 0.77}, + {"time": 1.2667, "angle": 4, "curve": 0.369, "c2": 0.63, "c3": 0.706}, {"time": 1.3167, "angle": 5.15, "curve": 0.25, "c3": 0.75}, + {"time": 1.6, "angle": -8.41, "curve": 0.25, "c3": 0.75}, {"time": 1.9, "angle": 5.15, "curve": 0.25, "c3": 0.75}, {"time": 2.2, "angle": -8.69, "curve": 0.25, "c3": 0.625, "c4": 0.5}, + {"time": 2.3333, "angle": -1.71} + ] + }, + "body-braid-06": { + "rotate": [ + {"angle": -20.59, "curve": 0.352, "c2": 0.41, "c3": 0.689, "c4": 0.75}, {"time": 0.05, "angle": -24.8, "curve": 0.369, "c2": 0.63, "c3": 0.706}, + {"time": 0.0833, "angle": -27.05, "curve": 0.318, "c3": 0.652, "c4": 0.34}, {"time": 0.1, "angle": -26.59, "curve": 0.271, "c2": 0.09, "c3": 0.753}, + {"time": 0.3833, "curve": 0.25, "c3": 0.75}, {"time": 0.6667, "angle": -26.77, "curve": 0.25, "c3": 0.75}, {"time": 0.9667, "curve": 0.243, "c3": 0.655, "c4": 0.63}, + {"time": 1.1667, "angle": -20.59, "curve": 0.352, "c2": 0.41, "c3": 0.689, "c4": 0.75}, {"time": 1.2167, "angle": -24.8, "curve": 0.369, "c2": 0.63, "c3": 0.706}, + {"time": 1.25, "angle": -27.05, "curve": 0.318, "c3": 0.652, "c4": 0.34}, {"time": 1.2667, "angle": -26.59, "curve": 0.271, "c2": 0.09, "c3": 0.753}, + {"time": 1.55, "curve": 0.25, "c3": 0.75}, {"time": 1.85, "angle": -26.77, "curve": 0.25, "c3": 0.75}, {"time": 2.1333, "curve": 0.243, "c3": 0.655, "c4": 0.63}, + {"time": 2.3333, "angle": -20.59} + ] + }, + "body-braid-05": { + "rotate": [ + {"angle": -8.3, "curve": 0.294, "c3": 0.631, "c4": 0.37}, {"time": 0.05, "angle": -7.64, "curve": 0.306, "c2": 0.23, "c3": 0.646, "c4": 0.59}, + {"time": 0.1, "angle": -5.77, "curve": 0.354, "c2": 0.41, "c3": 0.756}, {"time": 0.3, "curve": 0.25, "c3": 0.75}, {"time": 0.5833, "angle": -8.02, "curve": 0.25, "c3": 0.75}, + {"time": 0.8833, "curve": 0.25, "c3": 0.75}, {"time": 1.1667, "angle": -8.3, "curve": 0.294, "c3": 0.631, "c4": 0.37}, + {"time": 1.2167, "angle": -7.64, "curve": 0.306, "c2": 0.23, "c3": 0.646, "c4": 0.59}, {"time": 1.2667, "angle": -5.77, "curve": 0.354, "c2": 0.41, "c3": 0.756}, + {"time": 1.4667, "curve": 0.25, "c3": 0.75}, {"time": 1.75, "angle": -8.02, "curve": 0.25, "c3": 0.75}, {"time": 2.05, "curve": 0.25, "c3": 0.75}, {"time": 2.3333, "angle": -8.3} + ] + }, + "body-braid-02": { + "rotate": [ + {"angle": 3.5, "curve": 0.348, "c2": 0.38, "c3": 0.685, "c4": 0.73}, {"time": 0.05, "angle": 3.89, "curve": 0.375, "c2": 0.62, "c3": 0.716}, + {"time": 0.1, "angle": 4.18, "curve": 0.25, "c3": 0.75}, {"time": 0.4, "angle": 1.94, "curve": 0.25, "c3": 0.75}, {"time": 0.6833, "angle": 4.18, "curve": 0.25, "c3": 0.75}, + {"time": 0.9833, "angle": 1.94, "curve": 0.244, "c3": 0.646, "c4": 0.59}, {"time": 1.1667, "angle": 3.5, "curve": 0.348, "c2": 0.38, "c3": 0.685, "c4": 0.73}, + {"time": 1.2167, "angle": 3.89, "curve": 0.375, "c2": 0.62, "c3": 0.716}, {"time": 1.2667, "angle": 4.18, "curve": 0.25, "c3": 0.75}, + {"time": 1.5667, "angle": 1.94, "curve": 0.25, "c3": 0.75}, {"time": 1.85, "angle": 4.18, "curve": 0.25, "c3": 0.75}, + {"time": 2.15, "angle": 1.94, "curve": 0.244, "c3": 0.646, "c4": 0.59}, {"time": 2.3333, "angle": 3.5} + ] + }, + "body-braid-04": { + "rotate": [ + {"angle": -9.29, "curve": 0.323, "c2": 0.3, "c3": 0.66, "c4": 0.65}, {"time": 0.05, "angle": -6.92, "curve": 0.335, "c2": 0.34, "c3": 0.674, "c4": 0.69}, + {"time": 0.1, "angle": -3.73, "curve": 0.382, "c2": 0.57, "c3": 0.737}, {"time": 0.2, "curve": 0.25, "c3": 0.75}, {"time": 0.5, "angle": -11.98, "curve": 0.25, "c3": 0.75}, + {"time": 0.7833, "curve": 0.25, "c3": 0.75}, {"time": 1.0833, "angle": -12.25, "curve": 0.269, "c3": 0.618, "c4": 0.42}, + {"time": 1.1667, "angle": -9.29, "curve": 0.323, "c2": 0.3, "c3": 0.66, "c4": 0.65}, {"time": 1.2167, "angle": -6.92, "curve": 0.335, "c2": 0.34, "c3": 0.674, "c4": 0.69}, + {"time": 1.2667, "angle": -3.73, "curve": 0.382, "c2": 0.57, "c3": 0.737}, {"time": 1.3667, "curve": 0.25, "c3": 0.75}, {"time": 1.6667, "angle": -11.98, "curve": 0.25, "c3": 0.75}, + {"time": 1.9667, "curve": 0.25, "c3": 0.75}, {"time": 2.25, "angle": -12.25, "curve": 0.269, "c3": 0.618, "c4": 0.42}, {"time": 2.3333, "angle": -9.29} + ] + }, + "body-braid-01": { + "rotate": [ + {"angle": 2.31, "curve": 0.348, "c2": 0.38, "c3": 0.685, "c4": 0.73}, {"time": 0.05, "angle": 2.87, "curve": 0.375, "c2": 0.62, "c3": 0.716}, + {"time": 0.1, "angle": 3.3, "curve": 0.25, "c3": 0.75}, {"time": 0.4, "curve": 0.25, "c3": 0.75}, {"time": 0.6833, "angle": 3.3, "curve": 0.25, "c3": 0.75}, + {"time": 0.9833, "curve": 0.244, "c3": 0.646, "c4": 0.59}, {"time": 1.1667, "angle": 2.31, "curve": 0.348, "c2": 0.38, "c3": 0.685, "c4": 0.73}, + {"time": 1.2167, "angle": 2.87, "curve": 0.375, "c2": 0.62, "c3": 0.716}, {"time": 1.2667, "angle": 3.3, "curve": 0.25, "c3": 0.75}, {"time": 1.5667, "curve": 0.25, "c3": 0.75}, + {"time": 1.85, "angle": 3.3, "curve": 0.25, "c3": 0.75}, {"time": 2.15, "curve": 0.244, "c3": 0.646, "c4": 0.59}, {"time": 2.3333, "angle": 2.31} + ] + }, + "body-fur-under-03": { + "translate": [{"x": -0.78, "y": 3.19}], + "shear": [ + {"x": 22.47, "curve": 0.25, "c3": 0.75}, {"time": 0.3, "curve": 0.25, "c3": 0.75}, {"time": 0.5833, "x": 22.47, "curve": 0.25, "c3": 0.75}, {"time": 0.8833, "curve": 0.25, "c3": 0.75}, + {"time": 1.1667, "x": 22.47, "curve": 0.25, "c3": 0.75}, {"time": 1.4667, "curve": 0.25, "c3": 0.75}, {"time": 1.75, "x": 22.47, "curve": 0.25, "c3": 0.75}, + {"time": 2.05, "curve": 0.25, "c3": 0.75}, {"time": 2.3333, "x": 22.47} + ] + }, + "body-fur-under-01": { + "translate": [{"x": -0.14, "y": 0.84}], + "shear": [ + {"x": -4.09, "curve": 0.375, "c2": 0.5, "c3": 0.75}, {"time": 0.15, "x": -25.22, "curve": 0.25, "c3": 0.75}, {"time": 0.4333, "x": 17.03, "curve": 0.25, "c3": 0.75}, + {"time": 0.7333, "x": -25.22, "curve": 0.25, "c3": 0.75}, {"time": 1.0167, "x": 17.03, "curve": 0.25, "c3": 0.625, "c4": 0.5}, + {"time": 1.1667, "x": -4.09, "curve": 0.375, "c2": 0.5, "c3": 0.75}, {"time": 1.3167, "x": -25.22, "curve": 0.25, "c3": 0.75}, {"time": 1.6, "x": 17.03, "curve": 0.25, "c3": 0.75}, + {"time": 1.9, "x": -25.22, "curve": 0.25, "c3": 0.75}, {"time": 2.2, "x": 17.03, "curve": 0.25, "c3": 0.625, "c4": 0.5}, {"time": 2.3333, "x": -4.09} + ] + }, + "body-fur-under-05": { + "translate": [{"x": 0.53, "y": 14.98}], + "shear": [ + {"x": 3.7, "curve": 0.382, "c2": 0.57, "c3": 0.737}, {"time": 0.1, "x": 13.52, "curve": 0.25, "c3": 0.75}, {"time": 0.4, "x": -18.7, "curve": 0.25, "c3": 0.75}, + {"time": 0.6833, "x": 13.52, "curve": 0.25, "c3": 0.75}, {"time": 0.9833, "x": -18.7, "curve": 0.244, "c3": 0.646, "c4": 0.59}, + {"time": 1.1667, "x": 3.7, "curve": 0.382, "c2": 0.57, "c3": 0.737}, {"time": 1.2667, "x": 13.52, "curve": 0.25, "c3": 0.75}, {"time": 1.5667, "x": -18.7, "curve": 0.25, "c3": 0.75}, + {"time": 1.85, "x": 13.52, "curve": 0.25, "c3": 0.75}, {"time": 2.15, "x": -18.7, "curve": 0.244, "c3": 0.646, "c4": 0.59}, {"time": 2.3333, "x": 3.7} + ] + } + } + }, + "620315410": { + "slots": { + "eyes": {"attachment": [{"time": 0.3, "name": "eyes-angry"}, {"time": 1.2333, "name": "eyes"}]}, + "mouth": {"attachment": [{"time": 0.3, "name": "mouth-bite"}, {"time": 1.2333, "name": "mouth"}]} + }, + "bones": { + "@pivot-back": { + "rotate": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1, "angle": 6, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.2, "angle": -6, "curve": 0.315, "c4": 0.8}, + {"time": 0.3, "angle": 5.5, "curve": 0.317, "c3": 0.693}, {"time": 0.3833, "angle": 4.5, "curve": 0.317, "c3": 0.693}, {"time": 0.4667, "angle": 5.5, "curve": 0.317, "c3": 0.693}, + {"time": 0.55, "angle": 4.5, "curve": 0.317, "c3": 0.693}, {"time": 0.6333, "angle": 5.5, "curve": 0.317, "c3": 0.693}, {"time": 0.7167, "angle": 4.5, "curve": 0.317, "c3": 0.693}, + {"time": 0.8, "angle": 5.5, "curve": 0.317, "c3": 0.693}, {"time": 0.8833, "angle": 4.5, "curve": 0.317, "c3": 0.693}, {"time": 0.9667, "angle": 5.5, "curve": 0.317, "c3": 0.693}, + {"time": 1.05, "angle": 4.5, "curve": 0.317, "c3": 0.693}, {"time": 1.1333, "angle": 5.5, "curve": 0.317, "c3": 0.693}, {"time": 1.2167, "angle": 6, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 1.3167, "angle": -3, "curve": 0.315, "c4": 0.8}, {"time": 1.4167} + ], + "translate": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1, "y": 4.69, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.2, "y": 43.73, "curve": 0.315, "c4": 0.8}, + {"time": 0.3, "y": 3.84, "curve": "stepped"}, {"time": 1.2167, "y": 3.84, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1.3167, "y": 43.73, "curve": 0.315, "c4": 0.8}, {"time": 1.4167} + ] + }, + "@leg-front-left": { + "translate": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1, "x": -1.28, "y": -14.48, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.2, "curve": 0.315, "c4": 0.8}, + {"time": 0.3, "x": -1.28, "y": -14.48, "curve": 0.317, "c3": 0.693}, {"time": 0.3833, "x": -1.02, "y": -10.26, "curve": 0.317, "c3": 0.693}, + {"time": 0.4667, "x": -1.22, "y": -13.05, "curve": 0.317, "c3": 0.693}, {"time": 0.55, "x": -1.02, "y": -10.26, "curve": 0.317, "c3": 0.693}, + {"time": 0.6333, "x": -1.22, "y": -13.05, "curve": 0.317, "c3": 0.693}, {"time": 0.7167, "x": -1.02, "y": -10.26, "curve": 0.317, "c3": 0.693}, + {"time": 0.8, "x": -1.22, "y": -13.05, "curve": 0.317, "c3": 0.693}, {"time": 0.8833, "x": -1.02, "y": -10.26, "curve": 0.317, "c3": 0.693}, + {"time": 0.9667, "x": -1.22, "y": -13.05, "curve": 0.317, "c3": 0.693}, {"time": 1.05, "x": -1.02, "y": -10.26, "curve": 0.317, "c3": 0.693}, + {"time": 1.1333, "x": -1.22, "y": -13.05, "curve": 0.317, "c3": 0.693}, {"time": 1.2167, "x": -1.28, "y": -14.48, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1.3167} + ] + }, + "@leg-front-right": { + "translate": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1, "x": -2.46, "y": -27.93, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.2, "curve": 0.315, "c4": 0.8}, + {"time": 0.3, "x": -2.46, "y": -27.93, "curve": 0.317, "c3": 0.693}, {"time": 0.3833, "x": -2.06, "y": -21.45, "curve": 0.317, "c3": 0.693}, + {"time": 0.4667, "x": -2.44, "y": -26.54, "curve": 0.317, "c3": 0.693}, {"time": 0.55, "x": -2.06, "y": -21.45, "curve": 0.317, "c3": 0.693}, + {"time": 0.6333, "x": -2.44, "y": -26.54, "curve": 0.317, "c3": 0.693}, {"time": 0.7167, "x": -2.06, "y": -21.45, "curve": 0.317, "c3": 0.693}, + {"time": 0.8, "x": -2.44, "y": -26.54, "curve": 0.317, "c3": 0.693}, {"time": 0.8833, "x": -2.06, "y": -21.45, "curve": 0.317, "c3": 0.693}, + {"time": 0.9667, "x": -2.44, "y": -26.54, "curve": 0.317, "c3": 0.693}, {"time": 1.05, "x": -2.06, "y": -21.45, "curve": 0.317, "c3": 0.693}, + {"time": 1.1333, "x": -2.44, "y": -26.54, "curve": 0.317, "c3": 0.693}, {"time": 1.2167, "x": -2.46, "y": -27.93, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1.3167} + ] + }, + "@pivot-main": { + "translate": [ + {"time": 0.1, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.3, "x": -154.22, "curve": "stepped"}, {"time": 1.2167, "x": -154.22, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 1.4167} + ] + }, + "leg-front-left-IK": {"translate": [{"time": 1.2167, "curve": 0.315, "c4": 0.8}, {"time": 1.3167, "x": -61.13, "curve": 0.315, "c4": 0.8}, {"time": 1.4167}]}, + "leg-front-right-IK": {"translate": [{"time": 1.2167, "curve": 0.315, "c4": 0.8}, {"time": 1.3167, "x": -61.13, "curve": 0.315, "c4": 0.8}, {"time": 1.4167}]}, + "@shadow": { + "translate": [ + {"time": 0.1, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.3, "x": -162.84, "curve": "stepped"}, {"time": 1.2167, "x": -162.84, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 1.4167} + ], + "scale": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1, "x": 1.1, "y": 1.1, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.2, "x": 0.92, "y": 0.92, "curve": 0.315, "c4": 0.8}, + {"time": 0.3, "x": 1.1, "y": 1.1, "curve": 0.317, "c3": 0.693}, {"time": 0.3833, "x": 1.06, "y": 1.06, "curve": 0.317, "c3": 0.693}, + {"time": 0.4667, "x": 1.1, "y": 1.1, "curve": 0.317, "c3": 0.693}, {"time": 0.55, "x": 1.06, "y": 1.06, "curve": 0.317, "c3": 0.693}, + {"time": 0.6333, "x": 1.1, "y": 1.1, "curve": 0.317, "c3": 0.693}, {"time": 0.7167, "x": 1.06, "y": 1.06, "curve": 0.317, "c3": 0.693}, + {"time": 0.8, "x": 1.1, "y": 1.1, "curve": 0.317, "c3": 0.693}, {"time": 0.8833, "x": 1.06, "y": 1.06, "curve": 0.317, "c3": 0.693}, + {"time": 0.9667, "x": 1.1, "y": 1.1, "curve": 0.317, "c3": 0.693}, {"time": 1.05, "x": 1.06, "y": 1.06, "curve": 0.317, "c3": 0.693}, + {"time": 1.1333, "x": 1.1, "y": 1.1, "curve": "stepped"}, {"time": 1.2167, "x": 1.1, "y": 1.1, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 1.3167, "x": 0.92, "y": 0.92, "curve": 0.315, "c4": 0.8}, {"time": 1.4167} + ] + }, + "tail": { + "rotate": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1, "angle": 16.7, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.2, "angle": -16.65, "curve": 0.315, "c4": 0.8}, + {"time": 0.3, "angle": 17.85, "curve": 0.317, "c3": 0.693}, {"time": 0.4333, "angle": 15.5, "curve": 0.317, "c3": 0.693}, {"time": 0.5667, "angle": 17.85, "curve": 0.317, "c3": 0.693}, + {"time": 0.7, "angle": 15.5, "curve": 0.317, "c3": 0.693}, {"time": 0.8333, "angle": 17.85, "curve": 0.317, "c3": 0.693}, {"time": 0.95, "angle": 15.5, "curve": 0.317, "c3": 0.693}, + {"time": 1.0833, "angle": 17.85, "curve": 0.317, "c3": 0.693}, {"time": 1.2167, "angle": 15.5, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 1.3167, "angle": -14.65, "curve": 0.315, "c4": 0.8}, {"time": 1.4167} + ] + }, + "back": { + "rotate": [ + {"time": 0.3, "curve": 0.306, "c3": 0.695}, {"time": 0.4833, "angle": 5.93, "curve": 0.306, "c3": 0.695}, {"time": 0.65, "curve": 0.306, "c3": 0.695}, + {"time": 0.8333, "angle": 5.93, "curve": 0.306, "c3": 0.695}, {"time": 1.0167, "curve": 0.306, "c3": 0.695}, {"time": 1.2167, "angle": 5.93, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 1.4167} + ] + }, + "body-fur-under-04": { + "translate": [{"x": -0.33, "y": 3.2}], + "shear": [ + {"x": 10.24, "curve": 0.36, "c2": 0.64, "c3": 0.695}, {"time": 0.0167, "x": 11.47, "curve": 0.25, "c3": 0.75}, {"time": 0.2, "x": -17.33, "curve": 0.25, "c3": 0.75}, + {"time": 0.3667, "x": 11.47, "curve": 0.25, "c3": 0.75}, {"time": 0.55, "x": -17.33, "curve": 0.245, "c3": 0.711, "c4": 0.83}, + {"time": 0.7167, "x": 10.24, "curve": 0.36, "c2": 0.64, "c3": 0.695}, {"time": 0.7333, "x": 11.47, "curve": 0.25, "c3": 0.75}, {"time": 0.9, "x": -17.33, "curve": 0.25, "c3": 0.75}, + {"time": 1.0833, "x": 11.47, "curve": 0.25, "c3": 0.75}, {"time": 1.2667, "x": -17.33, "curve": 0.245, "c3": 0.711, "c4": 0.83}, {"time": 1.4167, "x": 10.24} + ] + }, + "body-fur-under-02": { + "translate": [{"x": -2.23, "y": 6.28}], + "shear": [ + {"x": -27.8, "curve": 0.375, "c2": 0.62, "c3": 0.716}, {"time": 0.0333, "x": -31.97, "curve": 0.25, "c3": 0.75}, {"time": 0.2167, "x": 0.11, "curve": 0.25, "c3": 0.75}, + {"time": 0.3833, "x": -31.97, "curve": 0.25, "c3": 0.75}, {"time": 0.5667, "x": 0.11, "curve": 0.243, "c3": 0.68, "c4": 0.71}, + {"time": 0.7167, "x": -27.8, "curve": 0.375, "c2": 0.62, "c3": 0.716}, {"time": 0.75, "x": -31.97, "curve": 0.25, "c3": 0.75}, {"time": 0.9167, "x": 0.11, "curve": 0.25, "c3": 0.75}, + {"time": 1.1, "x": -31.97, "curve": 0.25, "c3": 0.75}, {"time": 1.2833, "x": 0.11, "curve": 0.243, "c3": 0.68, "c4": 0.71}, {"time": 1.4167, "x": -27.8} + ] + }, + "body-braid-03": { + "rotate": [ + {"angle": -1.71, "curve": 0.337, "c2": 0.34, "c3": 0.673, "c4": 0.69}, {"time": 0.0333, "angle": 1, "curve": 0.354, "c2": 0.41, "c3": 0.694, "c4": 0.77}, + {"time": 0.0667, "angle": 4, "curve": 0.369, "c2": 0.63, "c3": 0.706}, {"time": 0.0833, "angle": 5.15, "curve": 0.25, "c3": 0.75}, + {"time": 0.2667, "angle": -8.41, "curve": 0.25, "c3": 0.75}, {"time": 0.45, "angle": 5.15, "curve": 0.25, "c3": 0.75}, + {"time": 0.6167, "angle": -8.69, "curve": 0.25, "c3": 0.625, "c4": 0.5}, {"time": 0.7167, "angle": -1.71, "curve": 0.337, "c2": 0.34, "c3": 0.673, "c4": 0.69}, + {"time": 0.7333, "angle": 1, "curve": 0.354, "c2": 0.41, "c3": 0.694, "c4": 0.77}, {"time": 0.7667, "angle": 4, "curve": 0.369, "c2": 0.63, "c3": 0.706}, + {"time": 0.8, "angle": 5.15, "curve": 0.25, "c3": 0.75}, {"time": 0.9833, "angle": -8.41, "curve": 0.25, "c3": 0.75}, {"time": 1.15, "angle": 5.15, "curve": 0.25, "c3": 0.75}, + {"time": 1.3333, "angle": -8.69, "curve": 0.25, "c3": 0.625, "c4": 0.5}, {"time": 1.4167, "angle": -1.71} + ] + }, + "body-braid-06": { + "rotate": [ + {"angle": -20.59, "curve": 0.352, "c2": 0.41, "c3": 0.689, "c4": 0.75}, {"time": 0.0333, "angle": -24.8, "curve": 0.369, "c2": 0.63, "c3": 0.706}, + {"time": 0.05, "angle": -27.05, "curve": 0.318, "c3": 0.652, "c4": 0.34}, {"time": 0.0667, "angle": -26.59, "curve": 0.271, "c2": 0.09, "c3": 0.753}, + {"time": 0.2333, "curve": 0.25, "c3": 0.75}, {"time": 0.4167, "angle": -26.77, "curve": 0.25, "c3": 0.75}, {"time": 0.5833, "curve": 0.243, "c3": 0.655, "c4": 0.63}, + {"time": 0.7167, "angle": -20.59, "curve": 0.352, "c2": 0.41, "c3": 0.689, "c4": 0.75}, {"time": 0.7333, "angle": -24.8, "curve": 0.369, "c2": 0.63, "c3": 0.706}, + {"time": 0.7667, "angle": -26.59, "curve": 0.271, "c2": 0.09, "c3": 0.753}, {"time": 0.9333, "curve": 0.25, "c3": 0.75}, {"time": 1.1167, "angle": -26.77, "curve": 0.25, "c3": 0.75}, + {"time": 1.3, "curve": 0.243, "c3": 0.655, "c4": 0.63}, {"time": 1.4167, "angle": -20.59} + ] + }, + "body-braid-05": { + "rotate": [ + {"angle": -8.3, "curve": 0.294, "c3": 0.631, "c4": 0.37}, {"time": 0.0333, "angle": -7.64, "curve": 0.306, "c2": 0.23, "c3": 0.646, "c4": 0.59}, + {"time": 0.0667, "angle": -5.77, "curve": 0.354, "c2": 0.41, "c3": 0.756}, {"time": 0.1833, "curve": 0.25, "c3": 0.75}, {"time": 0.35, "angle": -8.02, "curve": 0.25, "c3": 0.75}, + {"time": 0.5333, "curve": 0.25, "c3": 0.75}, {"time": 0.7167, "angle": -8.3, "curve": 0.294, "c3": 0.631, "c4": 0.37}, + {"time": 0.7333, "angle": -7.64, "curve": 0.306, "c2": 0.23, "c3": 0.646, "c4": 0.59}, {"time": 0.7667, "angle": -5.77, "curve": 0.354, "c2": 0.41, "c3": 0.756}, + {"time": 0.8833, "curve": 0.25, "c3": 0.75}, {"time": 1.0667, "angle": -8.02, "curve": 0.25, "c3": 0.75}, {"time": 1.25, "curve": 0.25, "c3": 0.75}, {"time": 1.4167, "angle": -8.3} + ] + }, + "body-braid-02": { + "rotate": [ + {"angle": 3.5, "curve": 0.348, "c2": 0.38, "c3": 0.685, "c4": 0.73}, {"time": 0.0333, "angle": 3.89, "curve": 0.375, "c2": 0.62, "c3": 0.716}, + {"time": 0.0667, "angle": 4.18, "curve": 0.25, "c3": 0.75}, {"time": 0.2333, "angle": 1.94, "curve": 0.25, "c3": 0.75}, {"time": 0.4167, "angle": 4.18, "curve": 0.25, "c3": 0.75}, + {"time": 0.6, "angle": 1.94, "curve": 0.244, "c3": 0.646, "c4": 0.59}, {"time": 0.7167, "angle": 3.5, "curve": 0.348, "c2": 0.38, "c3": 0.685, "c4": 0.73}, + {"time": 0.7333, "angle": 3.89, "curve": 0.375, "c2": 0.62, "c3": 0.716}, {"time": 0.7667, "angle": 4.18, "curve": 0.25, "c3": 0.75}, + {"time": 0.95, "angle": 1.94, "curve": 0.25, "c3": 0.75}, {"time": 1.1333, "angle": 4.18, "curve": 0.25, "c3": 0.75}, + {"time": 1.3, "angle": 1.94, "curve": 0.244, "c3": 0.646, "c4": 0.59}, {"time": 1.4167, "angle": 3.5} + ] + }, + "body-braid-04": { + "rotate": [ + {"angle": -9.29, "curve": 0.323, "c2": 0.3, "c3": 0.66, "c4": 0.65}, {"time": 0.0333, "angle": -6.92, "curve": 0.335, "c2": 0.34, "c3": 0.674, "c4": 0.69}, + {"time": 0.0667, "angle": -3.73, "curve": 0.382, "c2": 0.57, "c3": 0.737}, {"time": 0.1167, "curve": 0.25, "c3": 0.75}, {"time": 0.3, "angle": -11.98, "curve": 0.25, "c3": 0.75}, + {"time": 0.4833, "curve": 0.25, "c3": 0.75}, {"time": 0.65, "angle": -12.25, "curve": 0.269, "c3": 0.618, "c4": 0.42}, + {"time": 0.7167, "angle": -9.29, "curve": 0.323, "c2": 0.3, "c3": 0.66, "c4": 0.65}, {"time": 0.7333, "angle": -6.92, "curve": 0.335, "c2": 0.34, "c3": 0.674, "c4": 0.69}, + {"time": 0.7667, "angle": -3.73, "curve": 0.382, "c2": 0.57, "c3": 0.737}, {"time": 0.8333, "curve": 0.25, "c3": 0.75}, {"time": 1.0167, "angle": -11.98, "curve": 0.25, "c3": 0.75}, + {"time": 1.1833, "curve": 0.25, "c3": 0.75}, {"time": 1.3667, "angle": -12.25, "curve": 0.269, "c3": 0.618, "c4": 0.42}, {"time": 1.4167, "angle": -9.29} + ] + }, + "body-braid-01": { + "rotate": [ + {"angle": 2.31, "curve": 0.348, "c2": 0.38, "c3": 0.685, "c4": 0.73}, {"time": 0.0333, "angle": 2.87, "curve": 0.375, "c2": 0.62, "c3": 0.716}, + {"time": 0.0667, "angle": 3.3, "curve": 0.25, "c3": 0.75}, {"time": 0.2333, "curve": 0.25, "c3": 0.75}, {"time": 0.4167, "angle": 3.3, "curve": 0.25, "c3": 0.75}, + {"time": 0.6, "curve": 0.244, "c3": 0.646, "c4": 0.59}, {"time": 0.7167, "angle": 2.31, "curve": 0.348, "c2": 0.38, "c3": 0.685, "c4": 0.73}, + {"time": 0.7333, "angle": 2.87, "curve": 0.375, "c2": 0.62, "c3": 0.716}, {"time": 0.7667, "angle": 3.3, "curve": 0.25, "c3": 0.75}, {"time": 0.95, "curve": 0.25, "c3": 0.75}, + {"time": 1.1333, "angle": 3.3, "curve": 0.25, "c3": 0.75}, {"time": 1.3, "curve": 0.244, "c3": 0.646, "c4": 0.59}, {"time": 1.4167, "angle": 2.31} + ] + }, + "body-fur-under-03": { + "translate": [{"x": -0.78, "y": 3.19}], + "shear": [ + {"x": 22.47, "curve": 0.25, "c3": 0.75}, {"time": 0.1833, "curve": 0.25, "c3": 0.75}, {"time": 0.35, "x": 22.47, "curve": 0.25, "c3": 0.75}, {"time": 0.5333, "curve": 0.25, "c3": 0.75}, + {"time": 0.7167, "x": 22.47, "curve": 0.25, "c3": 0.75}, {"time": 0.8833, "curve": 0.25, "c3": 0.75}, {"time": 1.0667, "x": 22.47, "curve": 0.25, "c3": 0.75}, + {"time": 1.25, "curve": 0.25, "c3": 0.75}, {"time": 1.4167, "x": 22.47} + ] + }, + "body-fur-under-01": { + "translate": [{"x": -0.14, "y": 0.84}], + "shear": [ + {"x": -4.09, "curve": 0.375, "c2": 0.5, "c3": 0.75}, {"time": 0.0833, "x": -25.22, "curve": 0.25, "c3": 0.75}, {"time": 0.2667, "x": 17.03, "curve": 0.25, "c3": 0.75}, + {"time": 0.45, "x": -25.22, "curve": 0.25, "c3": 0.75}, {"time": 0.6167, "x": 17.03, "curve": 0.25, "c3": 0.625, "c4": 0.5}, + {"time": 0.7167, "x": -4.09, "curve": 0.375, "c2": 0.5, "c3": 0.75}, {"time": 0.8, "x": -25.22, "curve": 0.25, "c3": 0.75}, {"time": 0.9833, "x": 17.03, "curve": 0.25, "c3": 0.75}, + {"time": 1.15, "x": -25.22, "curve": 0.25, "c3": 0.75}, {"time": 1.3333, "x": 17.03, "curve": 0.25, "c3": 0.625, "c4": 0.5}, {"time": 1.4167, "x": -4.09} + ] + }, + "body-fur-under-05": { + "translate": [{"x": 0.53, "y": 14.98}], + "shear": [ + {"x": 3.7, "curve": 0.382, "c2": 0.57, "c3": 0.737}, {"time": 0.0667, "x": 13.52, "curve": 0.25, "c3": 0.75}, {"time": 0.2333, "x": -18.7, "curve": 0.25, "c3": 0.75}, + {"time": 0.4167, "x": 13.52, "curve": 0.25, "c3": 0.75}, {"time": 0.6, "x": -18.7, "curve": 0.244, "c3": 0.646, "c4": 0.59}, + {"time": 0.7167, "x": 3.7, "curve": 0.382, "c2": 0.57, "c3": 0.737}, {"time": 0.7667, "x": 13.52, "curve": 0.25, "c3": 0.75}, {"time": 0.95, "x": -18.7, "curve": 0.25, "c3": 0.75}, + {"time": 1.1333, "x": 13.52, "curve": 0.25, "c3": 0.75}, {"time": 1.3, "x": -18.7, "curve": 0.244, "c3": 0.646, "c4": 0.59}, {"time": 1.4167, "x": 3.7} + ] + } + } + }, + "4243571983": { + "slots": {"eyes": {"attachment": [{"name": "eyes-happy"}]}, "leg-front-left": {"attachment": [{"time": 0.2, "name": "leg-front-left-stretch"}, {"time": 0.5833, "name": "leg-front-left"}]}}, + "bones": { + "@leg-front-left": { + "translate": [ + {"x": -14.55, "y": -2.39, "curve": 0.374, "c2": 0.33, "c3": 0.72, "c4": 0.68}, {"time": 0.0333, "x": -24.69, "y": -4.71, "curve": 0.37, "c2": 0.57, "c3": 0.746}, + {"time": 0.1667, "x": -24.61, "y": -1.31, "curve": 0.37, "c2": 0.57, "c3": 0.746}, {"time": 0.3333, "x": 13.45, "y": -27.72, "curve": 0.345, "c2": 0.53, "c3": 0.751}, + {"time": 0.4833, "x": 40.66, "y": -4.9, "curve": 0.262, "c3": 0.63, "c4": 0.42}, {"time": 0.5667, "x": 49.25, "y": 8.32, "curve": 0.343, "c2": 0.3, "c3": 0.688, "c4": 0.65}, + {"time": 0.7, "x": 9.23, "y": 17.43, "curve": 0.255, "c3": 0.659, "c4": 0.47}, {"time": 0.75, "x": -14.55, "y": -2.39} + ], + "scale": [ + {"curve": 0.459, "c2": 0.59, "c3": 0.838}, {"time": 0.0333, "x": 0.935, "curve": 0.331, "c3": 0.677, "c4": 0.4}, {"time": 0.0667, "x": 0.87, "curve": 0.464, "c4": 0.7}, {"time": 0.1667} + ] + }, + "leg-front-left-IK": { + "translate": [ + {"x": 0.33, "y": 2.27, "curve": 0.154, "c4": 0.9}, {"time": 0.0833, "x": 32.98, "y": -4.28, "curve": 0.269, "c2": 0.57, "c3": 0.577}, + {"time": 0.1667, "x": 53.3, "y": 2.35, "curve": 0.461, "c3": 0.543}, {"time": 0.4167, "x": -85.44, "y": 106.83, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.5167, "x": -85.78, "y": 86.09, "curve": 0.143, "c3": 0.57, "c4": 0.46}, {"time": 0.7, "x": -26.89, "y": 8.67, "curve": 0, "c2": 0.09, "c3": 0.479, "c4": 0.56}, + {"time": 0.75, "x": 0.33, "y": 2.27} + ] + }, + "leg-back-left-IK": { + "translate": [ + {"x": 17.64, "y": 16.11, "curve": 0.455, "c2": 0.58, "c3": 0.847}, {"time": 0.0333, "curve": 0, "c2": 0.1, "c3": 0.85}, + {"time": 0.2333, "x": -50.37, "curve": 0, "c2": 0.09, "c3": 0.466, "c4": 0.7}, {"time": 0.3, "x": 11.38, "y": 18.2, "curve": 0.177, "c2": 0.44, "c3": 0.617}, + {"time": 0.5333, "x": 56.74, "y": 103.8, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.6667, "x": 71.93, "y": 112.16, "curve": 0.315, "c4": 0.8}, {"time": 0.75, "x": 17.64, "y": 16.11} + ] + }, + "@shadow": { + "scale": [ + {"curve": 0.313, "c3": 0.699}, {"time": 0.25, "x": 0.94, "y": 0.94, "curve": 0.313, "c3": 0.699}, {"time": 0.4333, "x": 0.8, "y": 0.8, "curve": 0.315, "c4": 0.8}, {"time": 0.75} + ] + }, + "tail": { + "rotate": [{"curve": 0.161, "c3": 0.854}, {"time": 0.25, "angle": -20, "curve": 0, "c2": 0.3, "c3": 0.546}, {"time": 0.5, "angle": 4.21, "curve": 0.154, "c4": 0.9}, {"time": 0.75}] + }, + "@leg-front-right": { + "translate": [ + {"x": 7.78, "y": -11.23, "curve": 0.649, "c2": 0.4, "c4": 0.74}, {"time": 0.0167, "x": -0.64, "y": -13.16, "curve": 0.313, "c3": 0.699}, + {"time": 0.1333, "x": -9.39, "y": -16.39, "curve": 0.346, "c2": 0.44, "c3": 0.699}, {"time": 0.3167, "x": -26.29, "y": 12.52, "curve": 0, "c2": 0.18, "c3": 0.424, "c4": 0.59}, + {"time": 0.4333, "x": 7.42, "y": -10.53, "curve": 0.316, "c2": 0.49, "c3": 0.751}, {"time": 0.6, "x": 37.87, "y": -4.31, "curve": 0.289, "c3": 0.884, "c4": 0.7}, + {"time": 0.75, "x": 7.78, "y": -11.23} + ] + }, + "leg-front-right-IK": { + "translate": [ + {"x": -13.57, "y": 17.19, "curve": 0.645, "c2": 0.47, "c4": 0.81}, {"time": 0.0167, "curve": 0.313, "c3": 0.699}, {"time": 0.2667, "x": 52.85, "curve": 0, "c2": 0.3, "c3": 0.544}, + {"time": 0.5, "x": -85.89, "y": 125.19}, {"time": 0.6, "x": -87.57, "y": 110.89, "curve": 0.142, "c3": 0.858, "c4": 0.77}, {"time": 0.75, "x": -13.57, "y": 17.19} + ] + }, + "@leg-back-left": { + "translate": [ + {"x": -4.73, "y": 6.6, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.15, "x": 1.29, "y": -4.22, "curve": 0.44, "c2": 0.55, "c3": 0.858}, + {"time": 0.25, "x": 2.16, "y": 6.49, "curve": 0, "c2": 0.09, "c3": 0.466, "c4": 0.7}, {"time": 0.3, "x": -5.17, "y": 15.67, "curve": 0.218, "c2": 0.39, "c3": 0.738}, + {"time": 0.5333, "x": -14.09, "y": -7.98, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.6667, "x": -12.69, "y": -11.31, "curve": 0.315, "c4": 0.8}, {"time": 0.75, "x": -4.73, "y": 6.6} + ], + "scale": [{"curve": 0, "c2": 0.1, "c3": 0.457, "c4": 0.54}, {"time": 0.0667, "x": 0.837, "curve": 0.395, "c2": 0.49, "c3": 0.868}, {"time": 0.15}] + }, + "@pivot-back": { + "rotate": [ + {"angle": 3.74, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "angle": 1.5, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.25, "angle": -2, "curve": 0, "c2": 0.1, "c3": 0.85}, + {"time": 0.35, "angle": -5, "curve": 0.154, "c4": 0.9}, {"time": 0.6667, "angle": 5, "curve": 0.154, "c4": 0.9}, {"time": 0.75, "angle": 3.74} + ], + "translate": [ + {"y": 8, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "y": -10, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.25, "curve": 0, "c2": 0.1, "c3": 0.85}, + {"time": 0.5667, "y": 80.61, "curve": 0.154, "c4": 0.9}, {"time": 0.75, "y": 8} + ] + }, + "@pivot-main": {"scale": [{"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1333, "y": 0.85, "curve": 0.306, "c4": 0.8}, {"time": 0.25}]}, + "ear-right": { + "rotate": [ + {"angle": 6.45, "curve": 0.306, "c3": 0.695}, {"time": 0.25, "angle": -6.15, "curve": 0.306, "c3": 0.695}, {"time": 0.5, "angle": -7.47, "curve": 0.306, "c3": 0.695}, + {"time": 0.75, "angle": 6.45} + ] + }, + "ear-left": { + "rotate": [ + {"angle": 6.45, "curve": 0.306, "c3": 0.695}, {"time": 0.25, "angle": -6.15, "curve": 0.306, "c3": 0.695}, {"time": 0.5, "angle": -7.47, "curve": 0.306, "c3": 0.695}, + {"time": 0.75, "angle": 6.45} + ] + }, + "back": {"rotate": [{"curve": 0.306, "c3": 0.695}, {"time": 0.25, "angle": 9.32, "curve": 0.306, "c3": 0.695}, {"time": 0.5, "angle": -5.11, "curve": 0.306, "c3": 0.695}, {"time": 0.75}]}, + "body-fur-under-02": { + "translate": [{"x": -2.23, "y": 6.28}], + "shear": [ + {"x": -27.8, "curve": "stepped"}, {"time": 0.2833, "x": -27.8, "curve": 0.375, "c2": 0.62, "c3": 0.716}, {"time": 0.35, "x": -31.97, "curve": 0.25, "c3": 0.75}, + {"time": 0.7333, "x": 0.11, "curve": 0.32, "c3": 0.653, "c4": 0.34}, {"time": 0.75, "x": -27.8} + ] + }, + "body-braid-04": { + "rotate": [ + {"angle": -9.29, "curve": 0.323, "c2": 0.3, "c3": 0.66, "c4": 0.65}, {"time": 0.1667, "angle": -11.98, "curve": 0.269, "c3": 0.618, "c4": 0.42}, + {"time": 0.2833, "angle": -9.29, "curve": 0.323, "c2": 0.3, "c3": 0.66, "c4": 0.65}, {"time": 0.3333, "angle": -6.92, "curve": 0.335, "c2": 0.34, "c3": 0.674, "c4": 0.69}, + {"time": 0.4167, "angle": -3.73, "curve": 0.382, "c2": 0.57, "c3": 0.737}, {"time": 0.55, "curve": 0.247, "c3": 0.63, "c4": 0.52}, {"time": 0.75, "angle": -9.29} + ] + }, + "body-braid-06": { + "rotate": [ + {"angle": -20.59, "curve": 0.352, "c2": 0.41, "c3": 0.689, "c4": 0.75}, {"time": 0.0167, "curve": 0.243, "c3": 0.655, "c4": 0.63}, + {"time": 0.2833, "angle": -20.59, "curve": 0.352, "c2": 0.41, "c3": 0.689, "c4": 0.75}, {"time": 0.3333, "angle": -24.8, "curve": 0.369, "c2": 0.63, "c3": 0.706}, + {"time": 0.4, "angle": -27.05, "curve": 0.318, "c3": 0.652, "c4": 0.34}, {"time": 0.4167, "angle": -26.59, "curve": 0.268, "c2": 0.09, "c3": 0.734, "c4": 0.92}, + {"time": 0.75, "angle": -20.59} + ] + }, + "body-fur-under-03": { + "translate": [{"x": -0.78, "y": 3.19}], + "shear": [{"x": 22.47, "curve": "stepped"}, {"time": 0.2833, "x": 22.47, "curve": 0.25, "c3": 0.75}, {"time": 0.65, "curve": 0.274, "c3": 0.62, "c4": 0.4}, {"time": 0.75, "x": 22.47}] + }, + "body-braid-05": { + "rotate": [ + {"angle": -8.3, "curve": "stepped"}, {"time": 0.2833, "angle": -8.3, "curve": 0.294, "c3": 0.631, "c4": 0.37}, + {"time": 0.3333, "angle": -7.64, "curve": 0.306, "c2": 0.23, "c3": 0.646, "c4": 0.59}, {"time": 0.4167, "angle": -5.77, "curve": 0.354, "c2": 0.41, "c3": 0.756}, + {"time": 0.65, "curve": 0.274, "c3": 0.62, "c4": 0.4}, {"time": 0.75, "angle": -8.3} + ] + }, + "body-fur-under-04": { + "translate": [{"x": -0.33, "y": 3.2}], + "shear": [ + {"x": 10.24, "curve": "stepped"}, {"time": 0.2833, "x": 10.24, "curve": 0.36, "c2": 0.64, "c3": 0.695}, {"time": 0.3167, "x": 11.47, "curve": 0.25, "c3": 0.75}, + {"time": 0.7, "x": -17.33, "curve": 0.297, "c3": 0.634, "c4": 0.37}, {"time": 0.75, "x": 10.24} + ] + }, + "body-braid-02": { + "rotate": [ + {"angle": 3.5, "curve": 0.348, "c2": 0.38, "c3": 0.685, "c4": 0.73}, {"time": 0.0333, "angle": 1.94, "curve": 0.244, "c3": 0.646, "c4": 0.59}, + {"time": 0.2833, "angle": 3.5, "curve": 0.348, "c2": 0.38, "c3": 0.685, "c4": 0.73}, {"time": 0.3333, "angle": 3.89, "curve": 0.375, "c2": 0.62, "c3": 0.716}, + {"time": 0.4167, "angle": 4.18, "curve": 0.245, "c3": 0.714, "c4": 0.85}, {"time": 0.75, "angle": 3.5} + ] + }, + "body-braid-01": { + "rotate": [ + {"angle": 2.31, "curve": 0.348, "c2": 0.38, "c3": 0.685, "c4": 0.73}, {"time": 0.0333, "curve": 0.244, "c3": 0.646, "c4": 0.59}, + {"time": 0.2833, "angle": 2.31, "curve": 0.348, "c2": 0.38, "c3": 0.685, "c4": 0.73}, {"time": 0.3333, "angle": 2.87, "curve": 0.375, "c2": 0.62, "c3": 0.716}, + {"time": 0.4167, "angle": 3.3, "curve": 0.245, "c3": 0.714, "c4": 0.85}, {"time": 0.75, "angle": 2.31} + ] + }, + "body-fur-under-01": { + "translate": [{"x": -0.14, "y": 0.84}], + "shear": [ + {"x": -4.09, "curve": 0.375, "c2": 0.5, "c3": 0.75}, {"time": 0.1, "x": 17.03, "curve": 0.25, "c3": 0.625, "c4": 0.5}, + {"time": 0.2833, "x": -4.09, "curve": 0.375, "c2": 0.5, "c3": 0.75}, {"time": 0.4667, "x": -25.22, "curve": 0.242, "c3": 0.664, "c4": 0.66}, {"time": 0.75, "x": -4.09} + ] + }, + "body-braid-03": { + "rotate": [ + {"angle": -1.71, "curve": 0.337, "c2": 0.34, "c3": 0.673, "c4": 0.69}, {"time": 0.1, "angle": -8.41, "curve": 0.25, "c3": 0.625, "c4": 0.5}, + {"time": 0.2833, "angle": -1.71, "curve": 0.337, "c2": 0.34, "c3": 0.673, "c4": 0.69}, {"time": 0.3333, "angle": 1, "curve": 0.354, "c2": 0.41, "c3": 0.694, "c4": 0.77}, + {"time": 0.4167, "angle": 4, "curve": 0.369, "c2": 0.63, "c3": 0.706}, {"time": 0.4667, "angle": 5.15, "curve": 0.242, "c3": 0.664, "c4": 0.66}, {"time": 0.75, "angle": -1.71} + ] + }, + "body-fur-under-05": { + "translate": [{"x": 0.53, "y": 14.98}], + "shear": [ + {"x": 3.7, "curve": 0.382, "c2": 0.57, "c3": 0.737}, {"time": 0.0333, "x": -18.7, "curve": 0.244, "c3": 0.646, "c4": 0.59}, + {"time": 0.2833, "x": 3.7, "curve": 0.382, "c2": 0.57, "c3": 0.737}, {"time": 0.4167, "x": 13.52, "curve": 0.245, "c3": 0.714, "c4": 0.85}, {"time": 0.75, "x": 3.7} + ] + } + } + }, + "1982530335": { + "slots": { + "eyes": { + "attachment": [ + {"time": 0.05, "name": "eyes-angry"}, {"time": 0.3333, "name": "eyes-shut"}, {"time": 0.4333, "name": "eyes-angry"}, {"time": 1.0833, "name": "eyes-shut"}, + {"time": 1.1667, "name": "eyes-angry"}, {"time": 1.2833, "name": "eyes"} + ] + }, + "mouth": {"attachment": [{"time": 0.05, "name": "mouth-bite"}, {"time": 0.4333, "name": "mouth-open"}, {"time": 0.9167, "name": "mouth-bite"}, {"time": 1.2833, "name": "mouth"}]} + }, + "bones": { + "@pivot-back": { + "rotate": [{"curve": 0, "c2": 0.3, "c3": 0.546}, {"time": 0.0833, "angle": 6, "curve": 0, "c2": 0.2, "c3": 0.828}, {"time": 0.1667}], + "translate": [ + {"curve": 0, "c2": 0.3, "c3": 0.546}, {"time": 0.0833, "y": 5, "curve": 0.313, "c3": 0.699}, {"time": 0.1667, "y": 220, "curve": 0.617, "c4": 0.6}, {"time": 0.3333, "y": 10}, + {"time": 0.4167, "y": 5, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5833, "y": 420, "curve": 0.852, "c4": 0.1}, {"time": 0.9167}, + {"time": 1.0833, "y": -5, "curve": 0, "c2": 0.17, "c3": 0.461, "c4": 0.62}, {"time": 1.2167, "y": 130, "curve": 0.353, "c2": 0.54, "c3": 0.751}, {"time": 1.3333} + ] + }, + "@leg-front-right": {"translate": [{"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "x": -2.46, "y": -27.89, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.1167}]}, + "@leg-front-left": {"translate": [{"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "x": -1.21, "y": -13.68, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.1167}]}, + "@pivot-center": { + "rotate": [ + {"time": 0.1167, "curve": 0.313, "c3": 0.817}, {"time": 0.3333, "angle": 180, "curve": "stepped"}, {"time": 0.4167, "angle": 180, "curve": 0.313, "c3": 0.699}, + {"time": 0.6667, "angle": -1, "curve": 0.837, "c4": 0.2}, {"time": 0.9167, "angle": 178}, {"time": 1.0833, "angle": 180, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1.3333} + ] + }, + "leg-front-left-IK": { + "translate": [ + {"time": 0.0833, "x": 3.28, "y": 8.42, "curve": 0.344, "c3": 0.715, "c4": 0.45}, {"time": 0.1167, "x": 23.89, "y": 74.66, "curve": 0.589, "c2": 0.35, "c4": 0.75}, + {"time": 0.1667, "x": -100.7, "y": 242.98, "curve": 0.306, "c3": 0.695}, {"time": 0.25, "x": -233.21, "y": 406.49, "curve": 0.474, "c3": 0.714, "c4": 0.56}, + {"time": 0.3, "x": -153, "y": 482.64, "curve": 0.306, "c2": 0.39, "c3": 0.628, "c4": 0.74}, {"time": 0.3167, "x": -106.74, "y": 465.65, "curve": 0.287, "c2": 0.62, "c3": 0.612}, + {"time": 0.3333, "x": -79.92, "y": 385}, {"time": 0.4167, "x": -126.28, "y": 392.02, "curve": 0, "c2": 0.17, "c3": 0.45, "c4": 0.61}, + {"time": 0.5, "x": -212.54, "y": 584.25, "curve": 0.323, "c2": 0.4, "c3": 0.681, "c4": 0.77}, {"time": 0.55, "x": -233.91, "y": 520.55, "curve": 0.377, "c2": 0.62, "c3": 0.724}, + {"time": 0.5833, "x": -173.29, "y": 470.76}, {"time": 0.6667, "x": 19.48, "y": 419.84}, {"time": 0.75, "x": 31.74, "y": 414.89, "curve": 0.255, "c3": 0.659, "c4": 0.47}, + {"time": 0.8333, "x": 83.62, "y": 412.28, "curve": 0.41, "c2": 0.34, "c3": 0.774, "c4": 0.71}, + {"time": 0.8833, "x": 116.53, "y": 400.02, "curve": 0.427, "c2": 0.37, "c3": 0.767, "c4": 0.71}, {"time": 0.9, "x": 130.33, "y": 410.53, "curve": 0.649, "c2": 0.4, "c4": 0.74}, + {"time": 0.9167, "x": -78.08, "y": 379.36}, {"time": 1.0833, "x": -92.45, "y": 375.87, "curve": 0, "c2": 0.17, "c3": 0.45, "c4": 0.61}, + {"time": 1.15, "x": 127.37, "y": 350.17, "curve": 0.345, "c2": 0.53, "c3": 0.751}, {"time": 1.2167, "x": 133.62, "y": 244.55, "curve": 0, "c2": 0.1, "c3": 0.769}, {"time": 1.3333} + ] + }, + "leg-front-right-IK": { + "translate": [ + {"time": 0.0833, "curve": 0.344, "c3": 0.715, "c4": 0.45}, {"time": 0.1167, "x": 41.2, "y": 75.27, "curve": 0.589, "c2": 0.35, "c4": 0.75}, + {"time": 0.1667, "x": -103.56, "y": 361.93, "curve": 0.313, "c3": 0.699}, {"time": 0.25, "x": 61.46, "y": 606.37, "curve": 0.474, "c3": 0.714, "c4": 0.56}, + {"time": 0.3, "x": 293.95, "y": 550.17, "curve": 0.306, "c2": 0.39, "c3": 0.628, "c4": 0.74}, {"time": 0.3167, "x": 340.35, "y": 482.44, "curve": 0.287, "c2": 0.62, "c3": 0.612}, + {"time": 0.3333, "x": 426.33, "y": 357.51}, {"time": 0.4167, "x": 340.52, "y": 373.76, "curve": 0, "c2": 0.17, "c3": 0.45, "c4": 0.61}, + {"time": 0.5, "x": 236.72, "y": 764.35, "curve": 0.323, "c2": 0.4, "c3": 0.681, "c4": 0.77}, {"time": 0.55, "x": -18.99, "y": 764.25, "curve": 0.377, "c2": 0.62, "c3": 0.724}, + {"time": 0.5833, "x": -86.72, "y": 646.17}, {"time": 0.6667, "x": 16.1, "y": 426.11}, {"time": 0.75, "x": 19.92, "y": 404.36, "curve": 0.255, "c3": 0.659, "c4": 0.47}, + {"time": 0.8333, "x": 90.31, "y": 343.4, "curve": 0.41, "c2": 0.34, "c3": 0.774, "c4": 0.71}, + {"time": 0.8833, "x": 202.62, "y": 235.31, "curve": 0.427, "c2": 0.37, "c3": 0.767, "c4": 0.71}, {"time": 0.9, "x": 290.37, "y": 171.88, "curve": 0.649, "c2": 0.4, "c4": 0.74}, + {"time": 0.9167, "x": 412.25, "y": 355.41}, {"time": 1.0833, "x": 345.67, "y": 359.46, "curve": 0, "c2": 0.17, "c3": 0.45, "c4": 0.61}, + {"time": 1.15, "x": 400.77, "y": 121.52, "curve": 0.345, "c2": 0.53, "c3": 0.751}, {"time": 1.2167, "x": 172.82, "y": 29.19, "curve": 0.306, "c4": 0.8}, {"time": 1.3333} + ] + }, + "leg-back-left-IK": { + "translate": [ + {"time": 0.0833, "x": 1.05, "y": 4.19, "curve": 0.344, "c3": 0.715, "c4": 0.45}, {"time": 0.1167, "x": 28.54, "y": 87, "curve": 0.589, "c2": 0.35, "c4": 0.75}, + {"time": 0.1667, "x": -101.24, "y": 155.59, "curve": 0.313, "c3": 0.699}, {"time": 0.25, "x": -446.46, "y": 186.66, "curve": 0.474, "c3": 0.714, "c4": 0.56}, + {"time": 0.3, "x": -509.64, "y": 364.51, "curve": 0.306, "c2": 0.39, "c3": 0.628, "c4": 0.74}, {"time": 0.3167, "x": -479.36, "y": 400.3, "curve": 0.287, "c2": 0.62, "c3": 0.612}, + {"time": 0.3333, "x": -473.08, "y": 343.1}, {"time": 0.4167, "x": -421.75, "y": 358.21, "curve": 0, "c2": 0.17, "c3": 0.45, "c4": 0.61}, + {"time": 0.5, "x": -502.28, "y": 409.04, "curve": 0.323, "c2": 0.4, "c3": 0.681, "c4": 0.77}, {"time": 0.55, "x": -357.82, "y": 309.09, "curve": 0.377, "c2": 0.62, "c3": 0.724}, + {"time": 0.5833, "x": -190.14, "y": 299.56}, {"time": 0.6667, "x": 28.01, "y": 424.39}, {"time": 0.75, "x": 15.55, "y": 419.34, "curve": 0.255, "c3": 0.659, "c4": 0.47}, + {"time": 0.8333, "x": 74.85, "y": 472.68, "curve": 0.41, "c2": 0.34, "c3": 0.774, "c4": 0.71}, + {"time": 0.8833, "x": 69.06, "y": 556.5, "curve": 0.427, "c2": 0.37, "c3": 0.767, "c4": 0.71}, {"time": 0.9, "x": 11.02, "y": 617.8, "curve": 0.649, "c2": 0.4, "c4": 0.74}, + {"time": 0.9167, "x": -407.64, "y": 352.01}, {"time": 1.0833, "x": -407.65, "y": 352.01, "curve": 0, "c2": 0.17, "c3": 0.45, "c4": 0.61}, + {"time": 1.15, "x": -101.44, "y": 524.93, "curve": 0.345, "c2": 0.53, "c3": 0.751}, {"time": 1.2167, "x": 63.56, "y": 378.89, "curve": 0, "c2": 0.1, "c3": 0.769}, {"time": 1.3333} + ] + }, + "tail": { + "rotate": [ + {"curve": 0, "c2": 0.3, "c3": 0.546}, {"time": 0.0833, "angle": 19.35, "curve": 0.313, "c3": 0.699}, {"time": 0.1667, "angle": -22.95, "curve": 0.617, "c4": 0.6}, + {"time": 0.3333, "angle": 22.22}, {"time": 0.4167, "angle": 24.08, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5833, "angle": -30.94, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.6667, "angle": 18.1, "curve": 0.313, "c3": 0.699}, {"time": 0.8333, "angle": -20.52, "curve": 0.464, "c4": 0.7}, {"time": 0.9167, "angle": 16.35}, + {"time": 1.0833, "angle": 20.35, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1.2167, "angle": -9.93, "curve": 0.161, "c3": 0.854}, {"time": 1.3333} + ] + }, + "@shadow": { + "scale": [ + {"curve": 0, "c2": 0.3, "c3": 0.546}, {"time": 0.0833, "x": 1.1, "y": 1.1, "curve": 0.313, "c3": 0.699}, {"time": 0.1667, "x": 0.92, "y": 0.92, "curve": 0.617, "c4": 0.6}, + {"time": 0.3333, "x": 1.12, "y": 1.12}, {"time": 0.4167, "x": 1.16, "y": 1.16, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5833, "x": 0.86, "y": 0.86, "curve": 0.752, "c4": 0.2}, + {"time": 0.9167, "x": 1.12, "y": 1.12}, {"time": 1.0833, "x": 1.16, "y": 1.16, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1.3333} + ] + }, + "@pivot-main": {"scale": [{"time": 0.3333, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.4167, "y": 0.9, "curve": 0, "c2": 0.3, "c3": 0.546}, {"time": 0.5}]}, + "body-fur-under-01": { + "translate": [{"x": -0.14, "y": 0.84}], + "shear": [ + {"x": -4.09, "curve": 0.375, "c2": 0.5, "c3": 0.75}, {"time": 0.0333, "curve": 0.25, "c3": 0.75}, {"time": 0.1333, "x": 29.22, "curve": 0.25, "c3": 0.75}, + {"time": 0.45, "x": -53.77, "curve": 0.25, "c3": 0.75}, {"time": 0.7833, "x": 43.54, "curve": 0.25, "c3": 0.75}, {"time": 1.0333, "x": -64.44, "curve": 0.25, "c3": 0.75}, + {"time": 1.2, "x": 29.43, "curve": 0.243, "c3": 0.68, "c4": 0.71}, {"time": 1.3333, "x": -4.09} + ] + }, + "body-fur-under-02": { + "translate": [{"x": -2.23, "y": 6.28}], + "shear": [ + {"x": -27.8, "curve": 0.375, "c2": 0.62, "c3": 0.716}, {"time": 0.05, "x": 14.15, "curve": 0.25, "c3": 0.75}, {"time": 0.3667, "x": -46.5, "curve": 0.25, "c3": 0.75}, + {"time": 0.7, "x": 37.58, "curve": 0.25, "c3": 0.75}, {"time": 0.95, "x": -65.53, "curve": 0.25, "c3": 0.75}, {"time": 1.1167, "x": 23.87, "curve": 0.25, "c3": 0.75}, + {"time": 1.2833, "curve": 0.25, "c3": 0.625, "c4": 0.5}, {"time": 1.3333, "x": -27.8} + ] + }, + "body-fur-under-03": { + "translate": [{"x": -0.78, "y": 3.19}], + "shear": [ + {"x": 22.47, "curve": 0.25, "c3": 0.75}, {"time": 0.1, "curve": 0.25, "c3": 0.75}, {"time": 0.2, "x": -3.53, "curve": 0.25, "c3": 0.75}, + {"time": 0.5167, "x": 33.65, "curve": 0.25, "c3": 0.75}, {"time": 0.85, "x": -20.36, "curve": 0.25, "c3": 0.75}, {"time": 1.1, "x": 43.83, "curve": 0.25, "c3": 0.75}, + {"time": 1.2667, "x": -23.52, "curve": 0.258, "c3": 0.619, "c4": 0.45}, {"time": 1.3333, "x": 22.47} + ] + }, + "body-fur-under-04": { + "translate": [{"x": -0.33, "y": 3.2}], + "shear": [ + {"x": 10.24, "curve": 0.36, "c2": 0.64, "c3": 0.695}, {"time": 0.0333, "curve": 0.25, "c3": 0.75}, {"time": 0.1333, "x": -30.84, "curve": 0.25, "c3": 0.75}, + {"time": 0.45, "x": 38.54, "curve": 0.25, "c3": 0.75}, {"time": 0.7833, "x": -50.56, "curve": 0.25, "c3": 0.75}, {"time": 1.0333, "x": 40.49, "curve": 0.25, "c3": 0.75}, + {"time": 1.2, "x": -40.09, "curve": 0.243, "c3": 0.68, "c4": 0.71}, {"time": 1.3333, "x": 10.24} + ] + }, + "body-fur-under-05": { + "translate": [{"x": 0.53, "y": 14.98}], + "shear": [ + {"x": 3.7, "curve": 0.382, "c2": 0.57, "c3": 0.737}, {"time": 0.0833, "curve": 0.25, "c3": 0.75}, {"time": 0.1833, "x": -34.2, "curve": 0.25, "c3": 0.75}, + {"time": 0.5, "x": 32.44, "curve": 0.25, "c3": 0.75}, {"time": 0.8333, "x": -55.52, "curve": 0.25, "c3": 0.75}, {"time": 1.0833, "x": 35.57, "curve": 0.25, "c3": 0.75}, + {"time": 1.25, "x": -41.86, "curve": 0.25, "c3": 0.625, "c4": 0.5}, {"time": 1.3333, "x": 3.7} + ] + }, + "body-braid-02": { + "rotate": [ + {"angle": 3.5, "curve": 0.348, "c2": 0.38, "c3": 0.685, "c4": 0.73}, {"time": 0.4167, "angle": 79.52, "curve": 0.25, "c3": 0.75}, + {"time": 0.7667, "angle": -13.49, "curve": 0.25, "c3": 0.144}, {"time": 1.0833, "angle": 79.52, "curve": 0.25, "c3": 0.75}, {"time": 1.3333, "angle": 3.5} + ] + }, + "body-braid-03": { + "rotate": [ + {"angle": -1.71, "curve": 0.337, "c2": 0.34, "c3": 0.673, "c4": 0.69}, {"time": 0.05, "curve": 0.25, "c3": 0.75}, {"time": 0.4667, "angle": 45.56, "curve": 0.25, "c3": 0.75}, + {"time": 0.8167, "angle": -13.49, "curve": 0.25, "c3": 0.144}, {"time": 1.1333, "angle": 45.56, "curve": 0.243, "c3": 0.68, "c4": 0.71}, {"time": 1.3333, "angle": -1.71} + ] + }, + "body-braid-04": { + "rotate": [ + {"angle": -9.29, "curve": 0.323, "c2": 0.3, "c3": 0.66, "c4": 0.65}, {"time": 0.1167, "curve": 0.25, "c3": 0.75}, {"time": 0.5333, "angle": 36.13, "curve": 0.25, "c3": 0.75}, + {"time": 0.8833, "angle": -30, "curve": 0.25, "c3": 0.144}, {"time": 1.2, "angle": 36.13, "curve": 0.248, "c3": 0.628, "c4": 0.52}, {"time": 1.3333, "angle": -9.29} + ] + }, + "body-braid-05": { + "rotate": [ + {"angle": -8.3, "curve": 0.294, "c3": 0.631, "c4": 0.37}, {"time": 0.2, "curve": 0.25, "c3": 0.75}, {"time": 0.6167, "angle": -7.54, "curve": 0.25, "c3": 0.75}, + {"time": 0.9667, "angle": -31.56, "curve": 0.25, "c3": 0.144}, {"time": 1.2833, "angle": -7.54, "curve": 0.284, "c3": 0.625, "c4": 0.38}, {"time": 1.3333, "angle": -8.3} + ] + }, + "body-braid-06": { + "rotate": [ + {"angle": -20.59, "curve": 0.352, "c2": 0.41, "c3": 0.689, "c4": 0.75}, {"time": 0.05, "angle": 1.41, "curve": 0.25, "c3": 0.75}, {"time": 0.3, "curve": 0.25, "c3": 0.75}, + {"time": 0.7167, "angle": 1.41, "curve": 0.25, "c3": 0.75}, {"time": 1.0667, "angle": -42.25, "curve": 0.25, "c3": 0.144}, {"time": 1.3333, "angle": -20.59} + ] + }, + "body-braid-01": {"rotate": [{"angle": 2.31}]} + }, + "events": [{"time": 0.4333, "name": "jump"}, {"time": 0.8333, "name": "start-attack"}, {"time": 0.9167, "name": "hit"}] + }, + "323348469": { + "slots": { + "eyes": {"attachment": [{"time": 0.05, "name": "eyes-angry"}, {"time": 0.8333, "name": "eyes-shut"}, {"time": 0.9167, "name": "eyes"}]}, + "mouth": {"attachment": [{"time": 0.05, "name": "mouth-bite"}, {"time": 0.3333, "name": "mouth-open"}, {"time": 0.75, "name": "mouth-bite"}, {"time": 0.9167, "name": "mouth"}]} + }, + "bones": { + "tail": { + "rotate": [ + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.25, "angle": 21.98, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3167, "angle": -15.58, "curve": "stepped"}, + {"time": 0.3333, "angle": -19.65, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.4, "angle": 20.35, "curve": "stepped"}, {"time": 0.4333, "angle": -19.65, "curve": "stepped"}, + {"time": 0.4667, "angle": -19.65, "curve": 0.461, "c3": 0.543}, {"time": 0.5333, "angle": 20.35, "curve": "stepped"}, {"time": 0.5667, "angle": -19.65, "curve": "stepped"}, + {"time": 0.6, "angle": -19.65, "curve": 0.461, "c3": 0.543}, {"time": 0.6667, "angle": 20.35, "curve": "stepped"}, {"time": 0.7, "angle": -19.65, "curve": "stepped"}, + {"time": 0.75, "angle": -11.84, "curve": 0.313, "c3": 0.699}, {"time": 0.8333, "angle": 16.95, "curve": 0.313, "c3": 0.699}, {"time": 1} + ] + }, + "@pivot-back": { + "rotate": [ + {"curve": 0, "c2": 0.4, "c3": 0.383}, {"time": 0.15, "angle": 4, "curve": "stepped"}, {"time": 0.25, "angle": 4, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.3167, "curve": "stepped"}, {"time": 0.3333, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.4, "angle": -2.45, "curve": "stepped"}, {"time": 0.4333, "curve": "stepped"}, + {"time": 0.4667, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.5333, "angle": -2.45, "curve": "stepped"}, {"time": 0.5667, "curve": "stepped"}, + {"time": 0.6, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.6667, "angle": -2.45, "curve": "stepped"}, {"time": 0.7, "curve": "stepped"}, {"time": 0.75, "curve": 0.313, "c3": 0.699}, + {"time": 0.8333, "angle": 6, "curve": 0.313, "c3": 0.699}, {"time": 1} + ], + "translate": [ + {"curve": 0, "c2": 0.4, "c3": 0.383}, {"time": 0.25, "x": 25, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3167, "x": -135.5, "curve": "stepped"}, + {"time": 0.3333, "x": -560.54, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.4, "x": -560.54, "y": 9.3, "curve": "stepped"}, {"time": 0.4333, "x": -560.54, "curve": "stepped"}, + {"time": 0.4667, "x": -560.54, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.5333, "x": -560.54, "y": 9.3, "curve": "stepped"}, {"time": 0.5667, "x": -560.54, "curve": "stepped"}, + {"time": 0.6, "x": -560.54, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.6667, "x": -560.54, "y": 9.3, "curve": "stepped"}, {"time": 0.7, "x": -560.54, "curve": "stepped"}, + {"time": 0.75, "x": -151.24, "curve": 0.313, "c3": 0.699}, {"time": 0.8333, "x": -151.24, "y": 4.06, "curve": 0.313, "c3": 0.699}, {"time": 1} + ], + "scale": [{"time": 0.3167, "curve": "stepped"}, {"time": 0.3333, "x": -1, "curve": "stepped"}, {"time": 0.7, "x": -1, "curve": "stepped"}, {"time": 0.75}] + }, + "@leg-front-right": { + "translate": [ + {"curve": 0, "c2": 0.4, "c3": 0.383}, {"time": 0.25, "x": -1.86, "y": -9.26, "curve": "stepped"}, {"time": 0.3167, "x": -1.86, "y": -9.26, "curve": "stepped"}, + {"time": 0.3333, "x": -2.24, "y": 13.67, "curve": "stepped"}, {"time": 0.75, "x": -2.24, "y": 13.67, "curve": 0.313, "c3": 0.699}, + {"time": 0.8333, "x": -1.86, "y": -9.26, "curve": 0.313, "c3": 0.699}, {"time": 1} + ] + }, + "@leg-front-left": { + "translate": [ + {"curve": 0, "c2": 0.4, "c3": 0.383}, {"time": 0.25, "x": -1, "y": -5.53, "curve": "stepped"}, {"time": 0.3167, "x": -1, "y": -5.53, "curve": "stepped"}, + {"time": 0.3333, "x": -1.12, "y": 1.52, "curve": "stepped"}, {"time": 0.75, "x": -1.12, "y": 1.52, "curve": 0.313, "c3": 0.699}, + {"time": 0.8333, "x": -1, "y": -5.53, "curve": 0.313, "c3": 0.699}, {"time": 1} + ] + }, + "@shadow": { + "translate": [ + {"time": 0.25, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3167, "x": -143.36, "curve": "stepped"}, {"time": 0.7, "x": -143.36, "curve": "stepped"}, + {"time": 0.75, "x": -161.35, "curve": "stepped"}, {"time": 0.8333, "x": -161.35, "curve": 0.313, "c3": 0.699}, {"time": 1} + ], + "scale": [ + {"curve": 0, "c2": 0.4, "c3": 0.383}, {"time": 0.25, "x": 1.08, "y": 1.08, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3167, "curve": "stepped"}, + {"time": 0.3333, "x": 1.02, "y": 1.02, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.4, "x": 0.96, "y": 0.96, "curve": "stepped"}, + {"time": 0.4333, "x": 1.02, "y": 1.02, "curve": "stepped"}, {"time": 0.4667, "x": 1.02, "y": 1.02, "curve": 0, "c2": 0.3, "c3": 0.544}, + {"time": 0.5333, "x": 0.96, "y": 0.96, "curve": "stepped"}, {"time": 0.5667, "x": 1.02, "y": 1.02, "curve": "stepped"}, + {"time": 0.6, "x": 1.02, "y": 1.02, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.6667, "x": 0.96, "y": 0.96, "curve": "stepped"}, + {"time": 0.7, "x": 1.02, "y": 1.02, "curve": "stepped"}, {"time": 0.75, "curve": 0.313, "c3": 0.699}, {"time": 0.8333, "x": 1.08, "y": 1.08, "curve": 0.313, "c3": 0.699}, {"time": 1} + ] + }, + "leg-front-left-IK": { + "translate": [ + {"time": 0.25, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3167, "x": -192.09, "y": 31.17, "curve": "stepped"}, + {"time": 0.3333, "x": -219.56, "y": 3.98, "curve": 0.277, "c3": 0.849, "c4": 0.67}, {"time": 0.65, "x": -219.56, "y": 3.98, "curve": 0.641, "c2": 0.41, "c4": 0.76}, + {"time": 0.7, "x": -226.38, "y": 3.98, "curve": "stepped"}, {"time": 0.75, "x": -157.76, "curve": "stepped"}, {"time": 0.8333, "x": -157.76, "curve": 0.306, "c3": 0.695}, {"time": 1} + ] + }, + "leg-front-right-IK": { + "translate": [ + {"time": 0.25, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3167, "x": -172.87, "y": 28.32, "curve": "stepped"}, {"time": 0.3333, "x": 295.89, "y": 8.85, "curve": "stepped"}, + {"time": 0.7, "x": 295.89, "y": 8.85, "curve": "stepped"}, {"time": 0.75, "x": -180.48, "curve": "stepped"}, {"time": 0.8333, "x": -180.48, "curve": 0.313, "c3": 0.699}, {"time": 1} + ] + }, + "leg-back-left-IK": { + "translate": [ + {"time": 0.25, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3167, "x": -96.78, "y": 27.51, "curve": "stepped"}, {"time": 0.3333, "x": -542.14, "curve": "stepped"}, + {"time": 0.7, "x": -542.14, "curve": "stepped"}, {"time": 0.75, "x": -134.74, "curve": "stepped"}, {"time": 0.8333, "x": -134.74, "curve": 0.313, "c3": 0.699}, {"time": 1} + ] + }, + "@leg-back-left": { + "translate": [{"time": 0.3167, "curve": "stepped"}, {"time": 0.3333, "x": -0.06, "y": 3.33, "curve": "stepped"}, {"time": 0.7, "x": -0.06, "y": 3.33, "curve": "stepped"}, {"time": 0.75}] + }, + "@pivot-main": {"translate": [{"time": 0.8333, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.9167, "y": 31, "curve": 0.315, "c4": 0.8}, {"time": 1}]}, + "body-fur-under-01": { + "translate": [{"x": -0.14, "y": 0.84}], + "shear": [ + {"x": -4.09, "curve": 0.375, "c2": 0.5, "c3": 0.75}, {"time": 0.0667, "x": 26.91, "curve": 0.25, "c3": 0.228, "c4": 0.99}, {"time": 0.1667, "x": -42.78, "curve": 0.25, "c3": 0.75}, + {"time": 0.2667, "curve": 0.265, "c3": 0.618, "c4": 0.43}, {"time": 0.2833, "x": 7.64, "curve": 0.351, "c2": 0.4, "c3": 0.757}, + {"time": 0.3167, "x": 26.91, "curve": 0.25, "c3": 0.228, "c4": 0.99}, {"time": 0.35, "x": -42.78, "curve": 0.25, "c3": 0.75}, {"time": 0.3833, "curve": "stepped"}, + {"time": 0.4, "curve": 0.265, "c3": 0.618, "c4": 0.43}, {"time": 0.4167, "x": 7.64, "curve": 0.351, "c2": 0.4, "c3": 0.757}, + {"time": 0.4333, "x": 26.91, "curve": 0.25, "c3": 0.228, "c4": 0.99}, {"time": 0.4833, "x": -42.78, "curve": 0.25, "c3": 0.75}, {"time": 0.5167, "curve": "stepped"}, + {"time": 0.5333, "curve": 0.265, "c3": 0.618, "c4": 0.43}, {"time": 0.55, "x": 7.64, "curve": 0.351, "c2": 0.4, "c3": 0.757}, + {"time": 0.5667, "x": 26.91, "curve": 0.25, "c3": 0.228, "c4": 0.99}, {"time": 0.6, "x": -42.78, "curve": 0.25, "c3": 0.75}, {"time": 0.6333, "curve": 0.265, "c3": 0.618, "c4": 0.43}, + {"time": 0.65, "x": 7.64, "curve": 0.351, "c2": 0.4, "c3": 0.757}, {"time": 0.6667, "curve": 0.265, "c3": 0.618, "c4": 0.43}, + {"time": 0.7, "x": 7.64, "curve": 0.351, "c2": 0.4, "c3": 0.757}, {"time": 0.7667, "x": 26.91, "curve": 0.25, "c3": 0.228, "c4": 0.99}, + {"time": 0.8667, "x": -42.78, "curve": 0.25, "c3": 0.75}, {"time": 0.9667, "curve": 0.265, "c3": 0.618, "c4": 0.43}, {"time": 1, "x": -4.09} + ] + }, + "body-fur-under-02": { + "translate": [{"x": -2.23, "y": 6.28}], + "shear": [ + {"x": -27.8, "curve": 0.375, "c2": 0.62, "c3": 0.716}, {"time": 0.1, "x": 18.72, "curve": 0.25, "c3": 0.228, "c4": 0.99}, + {"time": 0.1833, "x": -43.03, "curve": 0.243, "c3": 0.68, "c4": 0.71}, {"time": 0.2667, "x": -5.6, "curve": 0.375, "c2": 0.62, "c3": 0.716}, + {"time": 0.2833, "x": 1.3, "curve": 0.3, "c2": 0.21, "c3": 0.756}, {"time": 0.3167, "x": 18.72, "curve": 0.25, "c3": 0.228, "c4": 0.99}, + {"time": 0.35, "x": -43.03, "curve": 0.243, "c3": 0.68, "c4": 0.71}, {"time": 0.3833, "x": -5.6, "curve": "stepped"}, {"time": 0.4, "x": -5.6, "curve": 0.375, "c2": 0.62, "c3": 0.716}, + {"time": 0.4167, "x": 1.3, "curve": 0.3, "c2": 0.21, "c3": 0.756}, {"time": 0.45, "x": 18.72, "curve": 0.25, "c3": 0.228, "c4": 0.99}, + {"time": 0.4833, "x": -43.03, "curve": 0.243, "c3": 0.68, "c4": 0.71}, {"time": 0.5167, "curve": "stepped"}, {"time": 0.5333, "curve": 0.297, "c3": 0.634, "c4": 0.37}, + {"time": 0.55, "x": 1.3, "curve": 0.3, "c2": 0.21, "c3": 0.756}, {"time": 0.5667, "x": 18.72, "curve": 0.25, "c3": 0.228, "c4": 0.99}, + {"time": 0.6167, "x": -43.03, "curve": 0.243, "c3": 0.68, "c4": 0.71}, {"time": 0.6333, "x": -5.6, "curve": 0.375, "c2": 0.62, "c3": 0.716}, + {"time": 0.65, "x": 1.3, "curve": 0.3, "c2": 0.21, "c3": 0.756}, {"time": 0.6667, "x": -5.6, "curve": 0.375, "c2": 0.62, "c3": 0.716}, + {"time": 0.6833, "curve": 0.297, "c3": 0.634, "c4": 0.37}, {"time": 0.7, "x": 1.3, "curve": 0.3, "c2": 0.21, "c3": 0.756}, + {"time": 0.7833, "x": 18.72, "curve": 0.25, "c3": 0.228, "c4": 0.99}, {"time": 0.8833, "x": -43.03, "curve": 0.243, "c3": 0.68, "c4": 0.71}, + {"time": 0.9667, "x": -5.6, "curve": 0.375, "c2": 0.62, "c3": 0.716}, {"time": 0.9833, "curve": 0.297, "c3": 0.634, "c4": 0.37}, {"time": 1, "x": -27.8} + ] + }, + "body-fur-under-03": { + "translate": [{"x": -0.78, "y": 3.19}], + "shear": [ + {"x": 22.47, "curve": 0.25, "c3": 0.75}, {"time": 0.0833, "x": 19.28, "curve": 0.25, "c3": 0.228, "c4": 0.99}, {"time": 0.1833, "x": -45.7, "curve": 0.244, "c3": 0.7, "c4": 0.79}, + {"time": 0.2667, "x": -3.18, "curve": 0.366, "c2": 0.63, "c3": 0.703}, {"time": 0.2833, "x": 2.51, "curve": 0.32, "c2": 0.29, "c3": 0.757}, + {"time": 0.3167, "x": 19.28, "curve": 0.25, "c3": 0.228, "c4": 0.99}, {"time": 0.35, "x": -45.7, "curve": 0.244, "c3": 0.7, "c4": 0.79}, + {"time": 0.3833, "x": -3.18, "curve": 0.366, "c2": 0.63, "c3": 0.703}, {"time": 0.4, "curve": 0.284, "c3": 0.625, "c4": 0.38}, + {"time": 0.4167, "x": 2.51, "curve": 0.32, "c2": 0.29, "c3": 0.757}, {"time": 0.45, "x": 19.28, "curve": 0.25, "c3": 0.228, "c4": 0.99}, + {"time": 0.4833, "x": -45.7, "curve": 0.244, "c3": 0.7, "c4": 0.79}, {"time": 0.5167, "curve": "stepped"}, {"time": 0.5333, "curve": 0.284, "c3": 0.625, "c4": 0.38}, + {"time": 0.55, "x": 2.51, "curve": 0.32, "c2": 0.29, "c3": 0.757}, {"time": 0.5667, "x": 19.28, "curve": 0.25, "c3": 0.228, "c4": 0.99}, + {"time": 0.6167, "x": -45.7, "curve": 0.244, "c3": 0.7, "c4": 0.79}, {"time": 0.6333, "x": -3.18, "curve": 0.366, "c2": 0.63, "c3": 0.703}, + {"time": 0.65, "x": 2.51, "curve": 0.32, "c2": 0.29, "c3": 0.757}, {"time": 0.6667, "x": -3.18, "curve": 0.366, "c2": 0.63, "c3": 0.703}, + {"time": 0.6833, "curve": 0.284, "c3": 0.625, "c4": 0.38}, {"time": 0.7, "x": 2.51, "curve": 0.32, "c2": 0.29, "c3": 0.757}, + {"time": 0.7833, "x": 19.28, "curve": 0.25, "c3": 0.228, "c4": 0.99}, {"time": 0.8667, "x": -45.7, "curve": 0.244, "c3": 0.7, "c4": 0.79}, + {"time": 0.9667, "x": -3.18, "curve": 0.366, "c2": 0.63, "c3": 0.703}, {"time": 0.9833, "curve": 0.284, "c3": 0.625, "c4": 0.38}, {"time": 1, "x": 22.47} + ] + }, + "body-fur-under-04": { + "translate": [{"x": -0.33, "y": 3.2}], + "shear": [ + {"x": 10.24, "curve": 0.36, "c2": 0.64, "c3": 0.695}, {"time": 0.1, "x": 13.82, "curve": 0.25, "c3": 0.228, "c4": 0.99}, + {"time": 0.2, "x": -39.88, "curve": 0.243, "c3": 0.649, "c4": 0.6}, {"time": 0.2667, "x": -22.71, "curve": 0.382, "c2": 0.57, "c3": 0.735}, + {"time": 0.2833, "x": -15.91, "curve": 0.25, "c3": 0.75}, {"time": 0.3167, "x": 13.82, "curve": 0.25, "c3": 0.228, "c4": 0.99}, + {"time": 0.35, "x": -39.88, "curve": 0.243, "c3": 0.649, "c4": 0.6}, {"time": 0.3833, "x": -22.71, "curve": "stepped"}, + {"time": 0.4, "x": -22.71, "curve": 0.382, "c2": 0.57, "c3": 0.735}, {"time": 0.4167, "x": -15.91, "curve": 0.25, "c3": 0.75}, + {"time": 0.45, "x": 13.82, "curve": 0.25, "c3": 0.228, "c4": 0.99}, {"time": 0.4833, "x": -39.88, "curve": 0.243, "c3": 0.649, "c4": 0.6}, + {"time": 0.5167, "x": -22.71, "curve": "stepped"}, {"time": 0.5333, "x": -22.71, "curve": 0.382, "c2": 0.57, "c3": 0.735}, {"time": 0.55, "x": -15.91, "curve": 0.25, "c3": 0.75}, + {"time": 0.5667, "x": 13.82, "curve": 0.25, "c3": 0.228, "c4": 0.99}, {"time": 0.6167, "x": -39.88, "curve": 0.243, "c3": 0.649, "c4": 0.6}, + {"time": 0.6333, "x": -22.71, "curve": 0.382, "c2": 0.57, "c3": 0.735}, {"time": 0.65, "x": -15.91, "curve": 0.25, "c3": 0.75}, + {"time": 0.6667, "x": -22.71, "curve": 0.382, "c2": 0.57, "c3": 0.735}, {"time": 0.7, "x": -15.91, "curve": 0.25, "c3": 0.75}, + {"time": 0.8, "x": 13.82, "curve": 0.25, "c3": 0.228, "c4": 0.99}, {"time": 0.9, "x": -39.88, "curve": 0.243, "c3": 0.649, "c4": 0.6}, + {"time": 0.9667, "x": -22.71, "curve": 0.382, "c2": 0.57, "c3": 0.735}, {"time": 1, "x": 10.24} + ] + }, + "body-fur-under-05": { + "translate": [{"x": 0.53, "y": 14.98}], + "shear": [ + {"x": 3.7, "curve": 0.382, "c2": 0.57, "c3": 0.737}, {"time": 0.0167, "x": -12.53, "curve": 0.25, "c3": 0.75}, {"time": 0.1167, "x": 6.85, "curve": 0.25, "c3": 0.228, "c4": 0.99}, + {"time": 0.2167, "x": -44.3, "curve": 0.248, "c3": 0.628, "c4": 0.52}, {"time": 0.2667, "x": -27.02, "curve": 0.356, "c2": 0.41, "c3": 0.707, "c4": 0.81}, + {"time": 0.2833, "x": -12.53, "curve": 0.25, "c3": 0.75}, {"time": 0.3333, "x": 6.85, "curve": 0.25, "c3": 0.228, "c4": 0.99}, + {"time": 0.3667, "x": -44.3, "curve": 0.248, "c3": 0.628, "c4": 0.52}, {"time": 0.3833, "x": -27.02, "curve": "stepped"}, + {"time": 0.4, "x": -27.02, "curve": 0.356, "c2": 0.41, "c3": 0.707, "c4": 0.81}, {"time": 0.4167, "x": -12.53, "curve": 0.25, "c3": 0.75}, + {"time": 0.45, "x": 6.85, "curve": 0.25, "c3": 0.228, "c4": 0.99}, {"time": 0.4833, "x": -44.3, "curve": 0.248, "c3": 0.628, "c4": 0.52}, + {"time": 0.5167, "x": -27.02, "curve": "stepped"}, {"time": 0.5333, "x": -27.02, "curve": 0.356, "c2": 0.41, "c3": 0.707, "c4": 0.81}, + {"time": 0.55, "x": -12.53, "curve": 0.25, "c3": 0.75}, {"time": 0.5833, "x": 6.85, "curve": 0.25, "c3": 0.228, "c4": 0.99}, + {"time": 0.6167, "x": -44.3, "curve": 0.248, "c3": 0.628, "c4": 0.52}, {"time": 0.6333, "x": -27.02, "curve": 0.356, "c2": 0.41, "c3": 0.707, "c4": 0.81}, + {"time": 0.65, "x": -14.63, "curve": 0.366, "c2": 0.63, "c3": 0.703}, {"time": 0.6667, "x": -27.02, "curve": 0.356, "c2": 0.41, "c3": 0.707, "c4": 0.81}, + {"time": 0.7, "x": -14.63, "curve": 0.366, "c2": 0.63, "c3": 0.703}, {"time": 0.7167, "x": -12.53, "curve": 0.25, "c3": 0.75}, + {"time": 0.8167, "x": 6.85, "curve": 0.25, "c3": 0.228, "c4": 0.99}, {"time": 0.9167, "x": -44.3, "curve": 0.248, "c3": 0.628, "c4": 0.52}, + {"time": 0.9667, "x": -27.02, "curve": 0.356, "c2": 0.41, "c3": 0.707, "c4": 0.81}, {"time": 1, "x": 3.7} + ] + }, + "body-braid-02": { + "rotate": [ + {"angle": 3.5, "curve": 0.348, "c2": 0.38, "c3": 0.685, "c4": 0.73}, {"time": 0.0833, "angle": 2.63, "curve": 0.25, "c3": 0.228, "c4": 0.99}, + {"time": 0.1833, "angle": 43.23, "curve": 0.25, "c3": 0.75}, {"time": 0.2833, "angle": 0.34, "curve": 0.32, "c2": 0.29, "c3": 0.757}, + {"time": 0.3167, "angle": 2.63, "curve": 0.25, "c3": 0.228, "c4": 0.99}, {"time": 0.35, "angle": 43.23, "curve": 0.25, "c3": 0.75}, + {"time": 0.4, "curve": 0.284, "c3": 0.625, "c4": 0.38}, {"time": 0.4167, "angle": 0.34, "curve": 0.32, "c2": 0.29, "c3": 0.757}, + {"time": 0.45, "angle": 2.63, "curve": 0.25, "c3": 0.228, "c4": 0.99}, {"time": 0.4833, "angle": 43.23, "curve": 0.25, "c3": 0.75}, {"time": 0.5167, "curve": "stepped"}, + {"time": 0.5333, "curve": 0.284, "c3": 0.625, "c4": 0.38}, {"time": 0.55, "angle": 0.34, "curve": 0.32, "c2": 0.29, "c3": 0.757}, + {"time": 0.5667, "angle": 2.63, "curve": 0.25, "c3": 0.228, "c4": 0.99}, {"time": 0.6167, "angle": 43.23, "curve": 0.25, "c3": 0.75}, + {"time": 0.65, "angle": 0.34, "curve": 0.32, "c2": 0.29, "c3": 0.757}, {"time": 0.6833, "curve": 0.284, "c3": 0.625, "c4": 0.38}, + {"time": 0.7, "angle": 0.34, "curve": 0.32, "c2": 0.29, "c3": 0.757}, {"time": 0.7833, "angle": 2.63, "curve": 0.25, "c3": 0.228, "c4": 0.99}, + {"time": 0.8667, "angle": 25.65, "curve": 0.25, "c3": 0.75}, {"time": 0.9833, "curve": 0.284, "c3": 0.625, "c4": 0.38}, {"time": 1, "angle": 3.5} + ] + }, + "body-braid-03": { + "rotate": [ + {"angle": -1.71, "curve": 0.337, "c2": 0.34, "c3": 0.673, "c4": 0.69}, {"time": 0.1, "angle": 2.63, "curve": 0.25, "c3": 0.228, "c4": 0.99}, + {"time": 0.2, "angle": 23.44, "curve": 0.244, "c3": 0.7, "c4": 0.79}, {"time": 0.2833, "angle": 0.06, "curve": 0.277, "c2": 0.12, "c3": 0.754}, + {"time": 0.3167, "angle": 2.63, "curve": 0.25, "c3": 0.228, "c4": 0.99}, {"time": 0.35, "angle": 23.44, "curve": 0.244, "c3": 0.7, "c4": 0.79}, + {"time": 0.4, "angle": 1.63, "curve": 0.366, "c2": 0.63, "c3": 0.703}, {"time": 0.4167, "angle": 0.06, "curve": 0.277, "c2": 0.12, "c3": 0.754}, + {"time": 0.45, "angle": 2.63, "curve": 0.25, "c3": 0.228, "c4": 0.99}, {"time": 0.4833, "angle": 23.44, "curve": 0.244, "c3": 0.7, "c4": 0.79}, + {"time": 0.5167, "angle": 1.63, "curve": 0.366, "c2": 0.63, "c3": 0.703}, {"time": 0.5333, "curve": 0.313, "c3": 0.648, "c4": 0.35}, + {"time": 0.55, "angle": 0.06, "curve": 0.277, "c2": 0.12, "c3": 0.754}, {"time": 0.5667, "angle": 2.63, "curve": 0.25, "c3": 0.228, "c4": 0.99}, + {"time": 0.6167, "angle": 23.44, "curve": 0.244, "c3": 0.7, "c4": 0.79}, {"time": 0.65, "angle": 0.06, "curve": 0.277, "c2": 0.12, "c3": 0.754}, + {"time": 0.6833, "curve": 0.313, "c3": 0.648, "c4": 0.35}, {"time": 0.7, "angle": 0.06, "curve": 0.277, "c2": 0.12, "c3": 0.754}, + {"time": 0.8, "angle": 2.63, "curve": 0.25, "c3": 0.228, "c4": 0.99}, {"time": 0.8833, "angle": 23.44, "curve": 0.244, "c3": 0.7, "c4": 0.79}, + {"time": 0.9833, "angle": 1.63, "curve": 0.366, "c2": 0.63, "c3": 0.703}, {"time": 1, "angle": -1.71} + ] + }, + "body-braid-04": { + "rotate": [ + {"angle": -9.29, "curve": 0.323, "c2": 0.3, "c3": 0.66, "c4": 0.65}, {"time": 0.0167, "curve": 0.25, "c3": 0.75}, {"time": 0.1167, "angle": 2.63, "curve": 0.25, "c3": 0.228, "c4": 0.99}, + {"time": 0.2167, "angle": 16.91, "curve": 0.243, "c3": 0.649, "c4": 0.6}, {"time": 0.2833, "curve": 0.25, "c3": 0.75}, + {"time": 0.3333, "angle": 2.63, "curve": 0.25, "c3": 0.228, "c4": 0.99}, {"time": 0.3667, "angle": 16.91, "curve": 0.243, "c3": 0.649, "c4": 0.6}, + {"time": 0.4, "angle": 4.8, "curve": 0.356, "c2": 0.42, "c3": 0.696, "c4": 0.78}, {"time": 0.4167, "curve": 0.25, "c3": 0.75}, + {"time": 0.45, "angle": 2.63, "curve": 0.25, "c3": 0.228, "c4": 0.99}, {"time": 0.4833, "angle": 16.91, "curve": 0.243, "c3": 0.649, "c4": 0.6}, + {"time": 0.5167, "angle": 4.8, "curve": "stepped"}, {"time": 0.5333, "angle": 4.8, "curve": 0.356, "c2": 0.42, "c3": 0.696, "c4": 0.78}, {"time": 0.55, "curve": 0.25, "c3": 0.75}, + {"time": 0.5833, "angle": 2.63, "curve": 0.25, "c3": 0.228, "c4": 0.99}, {"time": 0.6167, "angle": 16.91, "curve": 0.243, "c3": 0.649, "c4": 0.6}, + {"time": 0.65, "angle": 1.11, "curve": 0.366, "c2": 0.63, "c3": 0.703}, {"time": 0.6833, "angle": 4.8, "curve": 0.356, "c2": 0.42, "c3": 0.696, "c4": 0.78}, + {"time": 0.7, "angle": 1.11, "curve": 0.366, "c2": 0.63, "c3": 0.703}, {"time": 0.7167, "curve": 0.25, "c3": 0.75}, + {"time": 0.8167, "angle": -35.27, "curve": 0.25, "c3": 0.228, "c4": 0.99}, {"time": 0.9167, "angle": 16.91, "curve": 0.243, "c3": 0.649, "c4": 0.6}, + {"time": 0.9833, "angle": 4.8, "curve": 0.356, "c2": 0.42, "c3": 0.696, "c4": 0.78}, {"time": 1, "angle": -9.29} + ] + }, + "body-braid-05": { + "rotate": [ + {"angle": -8.3, "curve": 0.294, "c3": 0.631, "c4": 0.37}, {"time": 0.0333, "curve": 0.25, "c3": 0.75}, {"time": 0.15, "angle": -10.49, "curve": 0.25, "c3": 0.228, "c4": 0.99}, + {"time": 0.2333, "angle": 8.22, "curve": 0.258, "c3": 0.619, "c4": 0.45}, {"time": 0.2833, "angle": 3.03, "curve": 0.381, "c2": 0.55, "c3": 0.742}, + {"time": 0.3, "curve": 0.25, "c3": 0.75}, {"time": 0.35, "angle": -10.49, "curve": 0.25, "c3": 0.228, "c4": 0.99}, + {"time": 0.3833, "angle": 8.22, "curve": 0.258, "c3": 0.619, "c4": 0.45}, {"time": 0.4, "angle": 5.2, "curve": 0.33, "c2": 0.32, "c3": 0.67, "c4": 0.68}, + {"time": 0.4167, "curve": 0.25, "c3": 0.75}, {"time": 0.4667, "angle": -10.49, "curve": 0.25, "c3": 0.228, "c4": 0.99}, + {"time": 0.5, "angle": 8.22, "curve": 0.258, "c3": 0.619, "c4": 0.45}, {"time": 0.5167, "angle": 5.2, "curve": "stepped"}, + {"time": 0.5333, "angle": 5.2, "curve": 0.33, "c2": 0.32, "c3": 0.67, "c4": 0.68}, {"time": 0.55, "curve": 0.25, "c3": 0.75}, + {"time": 0.6, "angle": -10.49, "curve": 0.25, "c3": 0.228, "c4": 0.99}, {"time": 0.6333, "angle": 8.22, "curve": 0.258, "c3": 0.619, "c4": 0.45}, + {"time": 0.65, "angle": 3.03, "curve": 0.381, "c2": 0.55, "c3": 0.742}, {"time": 0.6833, "angle": 5.2, "curve": 0.33, "c2": 0.32, "c3": 0.67, "c4": 0.68}, + {"time": 0.7, "angle": 3.03, "curve": 0.381, "c2": 0.55, "c3": 0.742}, {"time": 0.75, "curve": 0.25, "c3": 0.75}, + {"time": 0.8333, "angle": -10.49, "curve": 0.25, "c3": 0.228, "c4": 0.99}, {"time": 0.9333, "angle": 8.22, "curve": 0.258, "c3": 0.619, "c4": 0.45}, + {"time": 0.9833, "angle": 5.2, "curve": 0.33, "c2": 0.32, "c3": 0.67, "c4": 0.68}, {"time": 1, "angle": -8.3} + ] + }, + "body-braid-06": { + "rotate": [ + {"angle": -20.59, "curve": 0.352, "c2": 0.41, "c3": 0.689, "c4": 0.75}, {"time": 0.0667, "curve": 0.25, "c3": 0.75}, + {"time": 0.1667, "angle": -28.99, "curve": 0.25, "c3": 0.228, "c4": 0.99}, {"time": 0.2667, "angle": 9.53, "curve": 0.297, "c3": 0.634, "c4": 0.37}, + {"time": 0.2833, "angle": 6.87, "curve": 0.351, "c2": 0.4, "c3": 0.757}, {"time": 0.3167, "curve": 0.25, "c3": 0.75}, + {"time": 0.35, "angle": -28.99, "curve": 0.25, "c3": 0.228, "c4": 0.99}, {"time": 0.3833, "angle": 9.53, "curve": 0.297, "c3": 0.634, "c4": 0.37}, + {"time": 0.4, "angle": 8.86, "curve": 0.304, "c2": 0.22, "c3": 0.644, "c4": 0.58}, {"time": 0.4167, "angle": 6.87, "curve": 0.351, "c2": 0.4, "c3": 0.757}, + {"time": 0.4333, "curve": 0.25, "c3": 0.75}, {"time": 0.4833, "angle": -28.99, "curve": 0.25, "c3": 0.228, "c4": 0.99}, {"time": 0.5167, "angle": 8.86, "curve": "stepped"}, + {"time": 0.5333, "angle": 8.86, "curve": 0.304, "c2": 0.22, "c3": 0.644, "c4": 0.58}, {"time": 0.55, "angle": 6.87, "curve": 0.351, "c2": 0.4, "c3": 0.757}, + {"time": 0.5667, "curve": 0.25, "c3": 0.75}, {"time": 0.6, "angle": -28.99, "curve": 0.25, "c3": 0.228, "c4": 0.99}, + {"time": 0.6333, "angle": 9.53, "curve": 0.297, "c3": 0.634, "c4": 0.37}, {"time": 0.65, "angle": 6.87, "curve": 0.351, "c2": 0.4, "c3": 0.757}, + {"time": 0.6667, "angle": 9.53, "curve": 0.297, "c3": 0.634, "c4": 0.37}, {"time": 0.6833, "angle": 8.86, "curve": 0.304, "c2": 0.22, "c3": 0.644, "c4": 0.58}, + {"time": 0.7, "angle": 6.87, "curve": 0.351, "c2": 0.4, "c3": 0.757}, {"time": 0.7667, "curve": 0.25, "c3": 0.75}, + {"time": 0.8667, "angle": -28.99, "curve": 0.25, "c3": 0.228, "c4": 0.99}, {"time": 0.9667, "angle": 9.53, "curve": 0.297, "c3": 0.634, "c4": 0.37}, + {"time": 0.9833, "angle": 8.86, "curve": 0.304, "c2": 0.22, "c3": 0.644, "c4": 0.58}, {"time": 1, "angle": -20.59} + ] + }, + "body-braid-01": {"rotate": [{"angle": 2.31}]} + }, + "events": [{"time": 0.3167, "name": "start-attack"}, {"time": 0.4333, "name": "hit"}, {"time": 0.5667, "name": "hit"}, {"time": 0.7, "name": "hit"}] + }, + "2952434131": { + "slots": { + "eyes": {"attachment": [{"time": 0.0167, "name": "eyes-angry"}, {"time": 0.85, "name": "eyes-shut"}, {"time": 0.9333, "name": "eyes"}]}, + "mouth": {"attachment": [{"time": 0.0167, "name": "mouth-bite"}, {"time": 0.1833, "name": "mouth-open"}, {"time": 0.5, "name": "mouth-bite"}, {"time": 0.9333, "name": "mouth"}]} + }, + "bones": { + "@pivot-back": { + "rotate": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "angle": -3.92, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "angle": 2.51, "curve": 0, "c2": 0.2, "c3": 0.858}, + {"time": 0.25, "angle": -6, "curve": "stepped"}, {"time": 0.7167, "angle": -6, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.8333, "angle": 6, "curve": 0.313, "c3": 0.699}, {"time": 1} + ], + "translate": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "x": 71.93, "y": -12.95, "curve": "stepped"}, {"time": 0.1667, "x": 71.93, "y": -12.95, "curve": 0, "c2": 0.2, "c3": 0.858}, + {"time": 0.25, "x": -145.48, "y": 99.8, "curve": 0, "c2": 0.3, "c3": 0.698}, {"time": 0.4167, "x": -145, "y": 149.7, "curve": 1, "c4": 0}, {"time": 0.5, "x": -145}, + {"time": 0.6667, "x": -145, "y": 2.5, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.7167, "y": 48.98, "curve": 0.315, "c4": 0.8}, + {"time": 0.8333, "y": -3.33, "curve": 0.313, "c3": 0.699}, {"time": 1} + ] + }, + "@leg-front-left": { + "translate": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "x": -2.77, "y": -2.64, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.1667, "x": -0.53, "y": 0.11, "curve": 0, "c2": 0.2, "c3": 0.858}, {"time": 0.25, "x": -1, "y": -5.53, "curve": "stepped"}, + {"time": 0.7167, "x": -1, "y": -5.53, "curve": 0.464, "c4": 0.7}, {"time": 0.8333, "x": -2.17, "y": -17.49, "curve": 0.313, "c3": 0.699}, {"time": 1} + ] + }, + "@leg-back-left": { + "translate": [ + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 0.67, "y": -7.85, "curve": 0.161, "c3": 0.854}, {"time": 0.1667, "x": 0.53, "y": -13.09, "curve": 0, "c2": 0.2, "c3": 0.858}, + {"time": 0.25, "curve": "stepped"}, {"time": 0.7167, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.8333, "x": -0.5, "y": -5.23, "curve": 0.313, "c3": 0.699}, {"time": 1} + ] + }, + "@shadow": { + "translate": [ + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 61.96, "curve": "stepped"}, {"time": 0.1667, "x": 61.96, "curve": 0, "c2": 0.2, "c3": 0.858}, + {"time": 0.25, "x": -143.36, "curve": 0, "c2": 0.3, "c3": 0.698}, {"time": 0.4167, "x": -154.48, "curve": "stepped"}, {"time": 0.6667, "x": -154.48, "curve": 0, "c2": 0.3, "c3": 0.544}, + {"time": 0.7167, "x": -9.48, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.8333} + ], + "scale": [ + {"time": 0.0833, "curve": 0, "c2": 0.26, "c3": 0.369, "c4": 0.62}, {"time": 0.1667, "x": 1.06, "y": 1.06, "curve": 0, "c2": 0.2, "c3": 0.858}, + {"time": 0.25, "curve": 0, "c2": 0.3, "c3": 0.698}, {"time": 0.4167, "x": 0.86, "y": 0.86}, {"time": 0.5, "x": 1.16, "y": 1.16}, + {"time": 0.6667, "x": 1.18, "y": 1.18, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.7167, "x": 1.02, "y": 1.02, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.8333, "x": 1.1, "y": 1.1, "curve": 0.313, "c3": 0.699}, {"time": 1} + ] + }, + "leg-front-right-IK": { + "translate": [ + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 30.89, "y": 11.74, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": 42.9, "curve": 0, "c2": 0.2, "c3": 0.858}, + {"time": 0.25, "x": -172.87, "y": 28.32, "curve": 0, "c2": 0.3, "c3": 0.698}, {"time": 0.4667, "x": 261.69, "y": 187.13, "curve": 1, "c4": 0.1}, {"time": 0.5, "x": 166.41, "y": 465.39}, + {"time": 0.6667, "x": 101.69, "y": 451.97, "curve": "stepped"}, {"time": 0.7, "x": -101.81, "y": 172.32, "curve": "stepped"}, {"time": 0.7167} + ] + }, + "leg-back-left-IK": { + "translate": [ + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 80.9, "curve": 0.161, "c3": 0.854}, {"time": 0.1667, "x": 72.25, "curve": 0, "c2": 0.2, "c3": 0.858}, + {"time": 0.25, "x": -96.78, "y": 27.51, "curve": 0, "c2": 0.3, "c3": 0.698}, {"time": 0.4667, "x": -250.56, "y": 568.36, "curve": 1, "c4": 0.1}, {"time": 0.5, "x": -654.65, "y": 234.55}, + {"time": 0.6667, "x": -665.01, "y": 210.09, "curve": "stepped"}, {"time": 0.7, "x": -61.52, "y": -3.55, "curve": "stepped"}, {"time": 0.7167} + ] + }, + "@leg-front-right": { + "translate": [ + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 4.31, "y": 11.86, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.1667, "x": -10.19, "y": -4.67, "curve": 0, "c2": 0.2, "c3": 0.858}, {"time": 0.25, "curve": "stepped"}, {"time": 0.7167, "curve": 0.464, "c4": 0.7}, + {"time": 0.8333, "x": -4.16, "y": -33.18, "curve": 0.313, "c3": 0.699}, {"time": 1} + ] + }, + "leg-front-left-IK": { + "translate": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "x": 42.22, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": 42.9, "curve": 0, "c2": 0.2, "c3": 0.858}, + {"time": 0.25, "x": -192.09, "y": 31.17, "curve": 0, "c2": 0.3, "c3": 0.698}, {"time": 0.4667, "x": -33.07, "y": 448.19, "curve": 1, "c4": 0.1}, {"time": 0.5, "x": -325.8, "y": 359.06}, + {"time": 0.6667, "x": -307.09, "y": 359.93, "curve": "stepped"}, {"time": 0.7, "x": -83.89, "y": 65.11, "curve": "stepped"}, {"time": 0.7167} + ] + }, + "tail": { + "rotate": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "angle": 15.61, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "angle": 20.44, "curve": 0, "c2": 0.2, "c3": 0.858}, + {"time": 0.25, "angle": -14.65, "curve": 0.313, "c3": 0.699}, {"time": 0.4667, "angle": -49.65, "curve": 1, "c4": 0.1}, {"time": 0.5, "angle": -2.15}, + {"time": 0.6667, "angle": -1.85, "curve": 0, "c2": 0.4, "c3": 0.383}, {"time": 0.8333, "angle": 21.05, "curve": 0.313, "c3": 0.699}, {"time": 1} + ] + }, + "@pivot-center": { + "rotate": [ + {"time": 0.25, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.4667, "angle": 112.05, "curve": 1, "c4": 0.1}, {"time": 0.5, "angle": -146.9}, + {"time": 0.6667, "angle": -145.45, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.7167} + ] + }, + "body-fur-under-01": { + "translate": [{"x": -0.14, "y": 0.84}], + "shear": [ + {"x": -4.09, "curve": 0.375, "c2": 0.5, "c3": 0.75}, {"time": 0.0333, "curve": 0.25, "c3": 0.75}, {"time": 0.1, "x": 29.22, "curve": 0.25, "c3": 0.75}, + {"time": 0.3333, "x": -53.77, "curve": 0.25, "c3": 0.75}, {"time": 0.5833, "x": 43.54, "curve": 0.25, "c3": 0.75}, {"time": 0.7833, "x": -64.44, "curve": 0.25, "c3": 0.75}, + {"time": 0.9, "x": 29.43, "curve": 0.243, "c3": 0.68, "c4": 0.71}, {"time": 1, "x": -4.09} + ] + }, + "body-fur-under-02": { + "translate": [{"x": -2.23, "y": 6.28}], + "shear": [ + {"x": -27.8, "curve": 0.375, "c2": 0.62, "c3": 0.716}, {"time": 0.0333, "x": 14.15, "curve": 0.25, "c3": 0.75}, {"time": 0.2833, "x": -46.5, "curve": 0.25, "c3": 0.75}, + {"time": 0.5333, "x": 37.58, "curve": 0.25, "c3": 0.75}, {"time": 0.7167, "x": -65.53, "curve": 0.25, "c3": 0.75}, {"time": 0.8333, "x": 23.87, "curve": 0.25, "c3": 0.75}, + {"time": 0.9667, "curve": 0.25, "c3": 0.625, "c4": 0.5}, {"time": 1, "x": -27.8} + ] + }, + "body-fur-under-03": { + "translate": [{"x": -0.78, "y": 3.19}], + "shear": [ + {"x": 22.47, "curve": 0.25, "c3": 0.75}, {"time": 0.0833, "curve": 0.25, "c3": 0.75}, {"time": 0.15, "x": -3.53, "curve": 0.25, "c3": 0.75}, + {"time": 0.3833, "x": 33.65, "curve": 0.25, "c3": 0.75}, {"time": 0.6333, "x": -20.36, "curve": 0.25, "c3": 0.75}, {"time": 0.8333, "x": 43.83, "curve": 0.25, "c3": 0.75}, + {"time": 0.95, "x": -23.52, "curve": 0.258, "c3": 0.619, "c4": 0.45}, {"time": 1, "x": 22.47} + ] + }, + "body-fur-under-04": { + "translate": [{"x": -0.33, "y": 3.2}], + "shear": [ + {"x": 10.24, "curve": 0.36, "c2": 0.64, "c3": 0.695}, {"time": 0.0333, "curve": 0.25, "c3": 0.75}, {"time": 0.1, "x": -30.84, "curve": 0.25, "c3": 0.75}, + {"time": 0.3333, "x": 38.54, "curve": 0.25, "c3": 0.75}, {"time": 0.5833, "x": -50.56, "curve": 0.25, "c3": 0.75}, {"time": 0.7833, "x": 40.49, "curve": 0.25, "c3": 0.75}, + {"time": 0.9, "x": -40.09, "curve": 0.243, "c3": 0.68, "c4": 0.71}, {"time": 1, "x": 10.24} + ] + }, + "body-fur-under-05": { + "translate": [{"x": 0.53, "y": 14.98}], + "shear": [ + {"x": 3.7, "curve": 0.382, "c2": 0.57, "c3": 0.737}, {"time": 0.0667, "curve": 0.25, "c3": 0.75}, {"time": 0.1333, "x": -34.2, "curve": 0.25, "c3": 0.75}, + {"time": 0.3833, "x": 32.44, "curve": 0.25, "c3": 0.75}, {"time": 0.6333, "x": -55.52, "curve": 0.25, "c3": 0.75}, {"time": 0.8167, "x": 35.57, "curve": 0.25, "c3": 0.75}, + {"time": 0.9333, "x": -41.86, "curve": 0.25, "c3": 0.625, "c4": 0.5}, {"time": 1, "x": 3.7} + ] + }, + "body-braid-02": { + "rotate": [ + {"angle": 3.5, "curve": 0.348, "c2": 0.38, "c3": 0.685, "c4": 0.73}, {"time": 0.2167, "angle": -13.49, "curve": 0.25, "c3": 0.144}, + {"time": 0.45, "angle": 79.52, "curve": 0.25, "c3": 0.75}, {"time": 0.6333, "curve": 0.25, "c3": 0.75}, {"time": 0.95, "angle": 79.52, "curve": 0.286, "c3": 0.626, "c4": 0.38}, + {"time": 1, "angle": 3.5} + ] + }, + "body-braid-03": { + "rotate": [ + {"angle": -1.71, "curve": 0.337, "c2": 0.34, "c3": 0.673, "c4": 0.69}, {"time": 0.25, "angle": -13.49, "curve": 0.25, "c3": 0.144}, + {"time": 0.4833, "angle": 45.56, "curve": 0.243, "c3": 0.68, "c4": 0.71}, {"time": 0.6333, "angle": 5.93, "curve": 0.375, "c2": 0.62, "c3": 0.716}, + {"time": 0.6667, "curve": 0.25, "c3": 0.75}, {"time": 0.9833, "angle": 45.56, "curve": 0.314, "c3": 0.649, "c4": 0.35}, {"time": 1, "angle": -1.71} + ] + }, + "body-braid-04": { + "rotate": [ + {"angle": -9.29, "curve": 0.323, "c2": 0.3, "c3": 0.66, "c4": 0.65}, {"time": 0.0333, "angle": 36.13, "curve": 0.25, "c3": 0.75}, {"time": 0.3, "angle": -30, "curve": 0.25, "c3": 0.144}, + {"time": 0.5333, "angle": 36.13, "curve": 0.248, "c3": 0.628, "c4": 0.52}, {"time": 0.6333, "angle": 16.47, "curve": 0.378, "c2": 0.52, "c3": 0.748}, + {"time": 0.7167, "curve": 0.245, "c3": 0.709, "c4": 0.83}, {"time": 1, "angle": -9.29} + ] + }, + "body-braid-05": { + "rotate": [ + {"angle": -8.3, "curve": 0.294, "c3": 0.631, "c4": 0.37}, {"time": 0.1, "angle": -7.54, "curve": 0.25, "c3": 0.75}, {"time": 0.3667, "angle": -31.56, "curve": 0.25, "c3": 0.144}, + {"time": 0.6, "angle": -7.54, "curve": 0.284, "c3": 0.625, "c4": 0.38}, {"time": 0.6333, "angle": -6.56, "curve": 0.32, "c2": 0.29, "c3": 0.757}, + {"time": 0.7833, "curve": 0.243, "c3": 0.652, "c4": 0.61}, {"time": 1, "angle": -8.3} + ] + }, + "body-braid-06": { + "rotate": [ + {"angle": -20.59, "curve": 0.352, "c2": 0.41, "c3": 0.689, "c4": 0.75}, {"time": 0.1667, "angle": 1.41, "curve": 0.25, "c3": 0.75}, + {"time": 0.4333, "angle": -42.25, "curve": 0.25, "c3": 0.144}, {"time": 0.6333, "angle": -2.49, "curve": 0.37, "c2": 0.63, "c3": 0.708}, + {"time": 0.6667, "angle": 1.41, "curve": 0.25, "c3": 0.75}, {"time": 0.8667, "curve": 0.254, "c3": 0.621, "c4": 0.47}, {"time": 1, "angle": -20.59} + ] + }, + "body-braid-01": {"rotate": [{"angle": 2.31}]} + }, + "events": [{"time": 0.4167, "name": "start-attack"}, {"time": 0.5, "name": "hit"}] + }, + "3155257148": { + "slots": { + "eyes": {"attachment": [{"time": 0.0167, "name": "eyes-angry"}, {"time": 0.9167, "name": "eyes"}]}, + "mouth": {"attachment": [{"time": 0.0167, "name": "mouth-bite"}, {"time": 0.1833, "name": "mouth-open"}, {"time": 0.5, "name": "mouth-bite"}, {"time": 0.9167, "name": "mouth"}]} + }, + "bones": { + "@pivot-back": { + "rotate": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "angle": -3.92, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "angle": 2.51, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.25, "angle": -6, "curve": "stepped"}, {"time": 0.2667, "angle": -20, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.4833, "angle": -22, "curve": "stepped"}, + {"time": 0.5, "angle": 10}, {"time": 0.6667, "angle": 12, "curve": "stepped"}, {"time": 0.7, "angle": 4, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.8333, "angle": 6, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1} + ], + "translate": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "x": 71.93, "y": -12.95, "curve": "stepped"}, {"time": 0.1667, "x": 71.93, "y": -12.95, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.25, "x": -135.5, "curve": "stepped"}, {"time": 0.2667, "x": -551.77, "y": 110, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.4833, "x": -551.77, "y": 120.52, "curve": "stepped"}, {"time": 0.5, "x": -565, "y": -35}, {"time": 0.6667, "x": -565, "y": -40, "curve": "stepped"}, + {"time": 0.7, "x": -135.5, "y": 5, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.8333, "x": -135.5, "y": 10, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1} + ], + "scale": [{"time": 0.25, "curve": "stepped"}, {"time": 0.2667, "x": -1, "curve": "stepped"}, {"time": 0.6667, "x": -1, "curve": "stepped"}, {"time": 0.7}] + }, + "leg-front-right-IK": { + "translate": [ + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 30.89, "y": 11.74, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": 42.9, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.25, "x": -172.87, "y": 28.32, "curve": "stepped"}, {"time": 0.2667, "x": 224.47, "y": -9.31, "curve": "stepped"}, + {"time": 0.4833, "x": 224.47, "y": -9.31, "curve": "stepped"}, {"time": 0.5, "x": 219.47, "curve": "stepped"}, {"time": 0.6667, "x": 219.47, "curve": "stepped"}, + {"time": 0.7, "x": -152.3, "curve": "stepped"}, {"time": 0.8333, "x": -152.3, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1} + ] + }, + "leg-front-left-IK": { + "translate": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "x": 43.18, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": 42.9, "y": -3.49, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.25, "x": -192.09, "y": 31.17, "curve": "stepped"}, {"time": 0.2667, "x": -277.01, "y": 66.37, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.4833, "x": -274.01, "y": 75.85, "curve": "stepped"}, {"time": 0.5, "x": -170.67, "curve": "stepped"}, {"time": 0.6667, "x": -170.67, "curve": "stepped"}, + {"time": 0.7, "x": -151.12, "curve": "stepped"}, {"time": 0.8333, "x": -151.12, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1} + ] + }, + "@leg-front-left": { + "translate": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "x": -2.8, "y": -2.2, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.1667, "x": -0.62, "y": -3.38, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "x": -1, "y": -5.53, "curve": "stepped"}, + {"time": 0.2667, "x": 4, "y": -0.66, "curve": "stepped"}, {"time": 0.4833, "x": 4, "y": -0.66, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.5, "x": 4.53, "y": 2.49, "curve": "stepped"}, {"time": 0.6667, "x": 4.53, "y": 2.49, "curve": "stepped"}, + {"time": 0.7, "x": -1, "y": -5.53, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.8333, "x": -0.91, "y": -4.54, "curve": 0.315, "c4": 0.8}, {"time": 1} + ] + }, + "@leg-back-left": { + "translate": [ + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 0.67, "y": -7.85, "curve": 0.161, "c3": 0.854}, {"time": 0.1667, "x": 0.61, "y": -9.9, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.25, "curve": "stepped"}, {"time": 0.2667, "x": -1.82, "y": 0.09}, {"time": 0.4833, "x": -6.6, "y": 4.03, "curve": "stepped"}, + {"time": 0.5, "x": 10.86, "y": -7.65, "curve": "stepped"}, {"time": 0.6667, "x": 10.86, "y": -7.65, "curve": "stepped"}, {"time": 0.7} + ] + }, + "leg-back-left-IK": { + "translate": [ + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 80.9, "curve": 0.161, "c3": 0.854}, {"time": 0.1667, "x": 72.57, "y": -3.2, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.25, "x": -106.8, "y": 17.49, "curve": "stepped"}, {"time": 0.2667, "x": -654.94, "y": 154.36, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.4833, "x": -669.36, "y": 180.24, "curve": "stepped"}, {"time": 0.5, "x": -541.29, "y": -24.41, "curve": "stepped"}, + {"time": 0.6667, "x": -541.29, "y": -24.41, "curve": "stepped"}, {"time": 0.7, "x": -130.76, "curve": "stepped"}, {"time": 0.8333, "x": -130.76, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 1} + ] + }, + "@leg-front-right": { + "translate": [ + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 4.31, "y": 11.86, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.1667, "x": -10.19, "y": -4.67, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "x": -1.86, "y": -9.26, "curve": "stepped"}, + {"time": 0.2667, "x": -5.58, "y": 2.65, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.4833, "x": -3.84, "y": 7.68, "curve": "stepped"}, + {"time": 0.5, "x": -8.1, "y": 29.66, "curve": "stepped"}, {"time": 0.6667, "x": -8.1, "y": 29.66, "curve": "stepped"}, + {"time": 0.7, "x": -1.86, "y": -9.26, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.8333, "x": -2.25, "y": -13.72, "curve": 0.315, "c4": 0.8}, {"time": 1} + ] + }, + "@shadow": { + "translate": [ + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 61.96, "curve": "stepped"}, {"time": 0.1667, "x": 61.96, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.25, "x": -143.36, "curve": "stepped"}, {"time": 0.2667, "x": -150.21, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.4833, "x": -152.15, "curve": "stepped"}, + {"time": 0.5, "x": -142.78}, {"time": 0.6667, "x": -144.04, "curve": "stepped"}, {"time": 0.7, "x": -144.72, "curve": "stepped"}, + {"time": 0.8333, "x": -144.72, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1} + ], + "scale": [ + {"time": 0.0833, "curve": 0, "c2": 0.26, "c3": 0.369, "c4": 0.62}, {"time": 0.1667, "x": 1.06, "y": 1.06, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "curve": "stepped"}, + {"time": 0.2667, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.4833, "x": 0.9, "y": 0.9, "curve": "stepped"}, {"time": 0.5, "x": 1.06, "y": 1.06}, + {"time": 0.6667, "x": 1.1, "y": 1.1, "curve": "stepped"}, {"time": 0.7, "x": 1.06, "y": 1.06, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.8333, "x": 1.1, "y": 1.1, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1} + ] + }, + "tail": { + "rotate": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "angle": 15.61, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "angle": 20.44, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.25, "angle": -15.58, "curve": "stepped"}, {"time": 0.2667, "angle": 40.35, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.4833, "angle": 41.35, "curve": "stepped"}, + {"time": 0.5, "angle": -14.65}, {"time": 0.6667, "angle": -15.65, "curve": "stepped"}, {"time": 0.7, "angle": -15.58, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.8333, "angle": 19.38, "curve": 0.313, "c3": 0.699}, {"time": 1} + ] + }, + "@pivot-main": {"translate": [{"time": 0.8333, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.9167, "y": 31, "curve": 0.315, "c4": 0.8}, {"time": 1}]}, + "body-braid-02": { + "rotate": [ + {"angle": 3.5, "curve": 0.348, "c2": 0.38, "c3": 0.685, "c4": 0.73}, {"time": 0.3167, "angle": 79.52, "curve": 0.25, "c3": 0.75}, + {"time": 0.5667, "angle": -13.49, "curve": 0.25, "c3": 0.144}, {"time": 0.8, "angle": 79.52, "curve": 0.25, "c3": 0.75}, {"time": 1, "angle": 3.5} + ] + }, + "body-braid-03": { + "rotate": [ + {"angle": -1.71, "curve": 0.337, "c2": 0.34, "c3": 0.673, "c4": 0.69}, {"time": 0.0333, "curve": 0.25, "c3": 0.75}, {"time": 0.35, "angle": 45.56, "curve": 0.25, "c3": 0.75}, + {"time": 0.6167, "angle": -13.49, "curve": 0.25, "c3": 0.144}, {"time": 0.85, "angle": 45.56, "curve": 0.243, "c3": 0.68, "c4": 0.71}, {"time": 1, "angle": -1.71} + ] + }, + "body-braid-04": { + "rotate": [ + {"angle": -9.29, "curve": 0.323, "c2": 0.3, "c3": 0.66, "c4": 0.65}, {"time": 0.0833, "curve": 0.25, "c3": 0.75}, {"time": 0.4, "angle": 36.13, "curve": 0.25, "c3": 0.75}, + {"time": 0.65, "angle": -30, "curve": 0.25, "c3": 0.144}, {"time": 0.9, "angle": 36.13, "curve": 0.248, "c3": 0.628, "c4": 0.52}, {"time": 1, "angle": -9.29} + ] + }, + "body-braid-05": { + "rotate": [ + {"angle": -8.3, "curve": 0.294, "c3": 0.631, "c4": 0.37}, {"time": 0.15, "curve": 0.25, "c3": 0.75}, {"time": 0.4667, "angle": -7.54, "curve": 0.25, "c3": 0.75}, + {"time": 0.7167, "angle": -31.56, "curve": 0.25, "c3": 0.144}, {"time": 0.95, "angle": -7.54, "curve": 0.284, "c3": 0.625, "c4": 0.38}, {"time": 1, "angle": -8.3} + ] + }, + "body-braid-06": { + "rotate": [ + {"angle": -20.59, "curve": 0.352, "c2": 0.41, "c3": 0.689, "c4": 0.75}, {"time": 0.0333, "angle": 1.41, "curve": 0.25, "c3": 0.75}, {"time": 0.2167, "curve": 0.25, "c3": 0.75}, + {"time": 0.5333, "angle": 1.41, "curve": 0.25, "c3": 0.75}, {"time": 0.8, "angle": -42.25, "curve": 0.25, "c3": 0.144}, {"time": 1, "angle": -20.59} + ] + }, + "body-fur-under-05": { + "translate": [{"x": 0.53, "y": 14.98}], + "shear": [ + {"x": 3.7, "curve": 0.382, "c2": 0.57, "c3": 0.737}, {"time": 0.0667, "curve": 0.25, "c3": 0.75}, {"time": 0.1333, "x": -34.2, "curve": 0.25, "c3": 0.75}, + {"time": 0.3667, "x": 32.44, "curve": 0.25, "c3": 0.75}, {"time": 0.6167, "x": -55.52, "curve": 0.25, "c3": 0.75}, {"time": 0.8, "x": 35.57, "curve": 0.25, "c3": 0.75}, + {"time": 0.9333, "x": -41.86, "curve": 0.25, "c3": 0.625, "c4": 0.5}, {"time": 1, "x": 3.7} + ] + }, + "body-fur-under-04": { + "translate": [{"x": -0.33, "y": 3.2}], + "shear": [ + {"x": 10.24, "curve": 0.36, "c2": 0.64, "c3": 0.695}, {"time": 0.0167, "curve": 0.25, "c3": 0.75}, {"time": 0.1, "x": -30.84, "curve": 0.25, "c3": 0.75}, + {"time": 0.3333, "x": 38.54, "curve": 0.25, "c3": 0.75}, {"time": 0.5833, "x": -50.56, "curve": 0.25, "c3": 0.75}, {"time": 0.7667, "x": 40.49, "curve": 0.25, "c3": 0.75}, + {"time": 0.9, "x": -40.09, "curve": 0.243, "c3": 0.68, "c4": 0.71}, {"time": 1, "x": 10.24} + ] + }, + "body-fur-under-03": { + "translate": [{"x": -0.78, "y": 3.19}], + "shear": [ + {"x": 22.47, "curve": 0.25, "c3": 0.75}, {"time": 0.0667, "curve": 0.25, "c3": 0.75}, {"time": 0.15, "x": -3.53, "curve": 0.25, "c3": 0.75}, + {"time": 0.3833, "x": 33.65, "curve": 0.25, "c3": 0.75}, {"time": 0.6333, "x": -20.36, "curve": 0.25, "c3": 0.75}, {"time": 0.8167, "x": 43.83, "curve": 0.25, "c3": 0.75}, + {"time": 0.95, "x": -23.52, "curve": 0.258, "c3": 0.619, "c4": 0.45}, {"time": 1, "x": 22.47} + ] + }, + "body-fur-under-02": { + "translate": [{"x": -2.23, "y": 6.28}], + "shear": [ + {"x": -27.8, "curve": 0.375, "c2": 0.62, "c3": 0.716}, {"time": 0.0333, "x": 14.15, "curve": 0.25, "c3": 0.75}, {"time": 0.2667, "x": -46.5, "curve": 0.25, "c3": 0.75}, + {"time": 0.5167, "x": 37.58, "curve": 0.25, "c3": 0.75}, {"time": 0.7, "x": -65.53, "curve": 0.25, "c3": 0.75}, {"time": 0.8333, "x": 23.87, "curve": 0.25, "c3": 0.75}, + {"time": 0.95, "curve": 0.25, "c3": 0.625, "c4": 0.5}, {"time": 1, "x": -27.8} + ] + }, + "body-fur-under-01": { + "translate": [{"x": -0.14, "y": 0.84}], + "shear": [ + {"x": -4.09, "curve": 0.375, "c2": 0.5, "c3": 0.75}, {"time": 0.0167, "curve": 0.25, "c3": 0.75}, {"time": 0.1, "x": 29.22, "curve": 0.25, "c3": 0.75}, + {"time": 0.3333, "x": -53.77, "curve": 0.25, "c3": 0.75}, {"time": 0.5833, "x": 43.54, "curve": 0.25, "c3": 0.75}, {"time": 0.7667, "x": -64.44, "curve": 0.25, "c3": 0.75}, + {"time": 0.9, "x": 29.43, "curve": 0.243, "c3": 0.68, "c4": 0.71}, {"time": 1, "x": -4.09} + ] + }, + "body-braid-01": {"rotate": [{"angle": 2.31}]} + }, + "events": [{"time": 0.3333, "name": "start-attack"}, {"time": 0.5, "name": "hit"}] + }, + "2338117540": { + "slots": { + "eyes": {"attachment": [{"time": 0.05, "name": "eyes-angry"}, {"time": 0.6667, "name": "eyes-shut"}, {"time": 0.75, "name": "eyes"}]}, + "mouth": {"attachment": [{"time": 0.05, "name": "mouth-bite"}, {"time": 0.2667, "name": "mouth-open"}, {"time": 0.55, "name": "mouth-bite"}, {"time": 0.75, "name": "mouth"}]} + }, + "bones": { + "@leg-front-right": { + "translate": [ + {"curve": 0, "c2": 0.4, "c3": 0.383}, {"time": 0.25, "x": -2.2, "y": -15.65, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3167, "x": -1.86, "y": -9.26, "curve": "stepped"}, + {"time": 0.3333, "x": -2.24, "y": 13.67, "curve": "stepped"}, {"time": 0.5333, "x": -2.24, "y": 13.67, "curve": "stepped"}, + {"time": 0.55, "x": -2.12, "y": 6.47, "curve": 0.313, "c3": 0.699}, {"time": 0.6667, "x": -3.13, "y": -23.62, "curve": 0, "c2": 0.3, "c3": 0.54}, {"time": 0.8333} + ] + }, + "tail": { + "rotate": [ + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.25, "angle": 21.98, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3167, "angle": -15.58, "curve": "stepped"}, + {"time": 0.3333, "angle": 6.35}, {"time": 0.5, "angle": 10.35, "curve": "stepped"}, {"time": 0.55, "angle": -11.84, "curve": 0.313, "c3": 0.699}, + {"time": 0.6667, "angle": 16.95, "curve": 0.313, "c3": 0.699}, {"time": 0.8333} + ] + }, + "@pivot-back": { + "rotate": [ + {"curve": 0, "c2": 0.4, "c3": 0.383}, {"time": 0.15, "angle": 4, "curve": "stepped"}, {"time": 0.25, "angle": 4, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.3167, "curve": "stepped"}, {"time": 0.3333}, {"time": 0.5, "angle": -3, "curve": "stepped"}, {"time": 0.55, "curve": 0.313, "c3": 0.699}, + {"time": 0.6667, "angle": 6, "curve": 0.313, "c3": 0.699}, {"time": 0.8333} + ], + "translate": [ + {"curve": 0, "c2": 0.4, "c3": 0.383}, {"time": 0.25, "x": 25, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3167, "x": -135.5, "curve": "stepped"}, {"time": 0.3333, "x": -560.54}, + {"time": 0.5, "x": -577.1, "curve": "stepped"}, {"time": 0.55, "x": -151.24, "curve": 0.313, "c3": 0.699}, {"time": 0.6667, "x": -151.24, "y": 4.06, "curve": 0.313, "c3": 0.699}, + {"time": 0.8333} + ], + "scale": [{"time": 0.3167, "curve": "stepped"}, {"time": 0.3333, "x": -1, "curve": "stepped"}, {"time": 0.5, "x": -1, "curve": "stepped"}, {"time": 0.55}] + }, + "@leg-front-left": { + "translate": [ + {"curve": 0, "c2": 0.4, "c3": 0.383}, {"time": 0.25, "x": -1, "y": -5.53, "curve": "stepped"}, {"time": 0.3167, "x": -1, "y": -5.53, "curve": "stepped"}, + {"time": 0.3333, "x": -1.12, "y": 1.52, "curve": "stepped"}, {"time": 0.55, "x": -1.12, "y": 1.52, "curve": 0.313, "c3": 0.699}, + {"time": 0.6667, "x": -1, "y": -5.53, "curve": 0.313, "c3": 0.699}, {"time": 0.8333} + ] + }, + "@shadow": { + "translate": [ + {"time": 0.25, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3167, "x": -143.36, "curve": "stepped"}, {"time": 0.3333, "x": -143.36}, {"time": 0.5, "x": -157.56, "curve": "stepped"}, + {"time": 0.55, "x": -161.35, "curve": "stepped"}, {"time": 0.6667, "x": -161.35, "curve": 0.313, "c3": 0.699}, {"time": 0.8333} + ], + "scale": [ + {"curve": 0, "c2": 0.4, "c3": 0.383}, {"time": 0.25, "x": 1.08, "y": 1.08, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3167, "curve": "stepped"}, {"time": 0.3333}, + {"time": 0.5, "x": 1.08, "y": 1.08, "curve": "stepped"}, {"time": 0.55, "curve": 0.313, "c3": 0.699}, {"time": 0.6667, "x": 1.08, "y": 1.08, "curve": 0.313, "c3": 0.699}, + {"time": 0.8333} + ] + }, + "leg-front-left-IK": { + "translate": [ + {"time": 0.25, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3167, "x": -192.09, "y": 31.17, "curve": "stepped"}, {"time": 0.3333, "x": -162.19, "curve": "stepped"}, + {"time": 0.5, "x": -162.19, "curve": "stepped"}, {"time": 0.55, "x": -180.48, "curve": "stepped"}, {"time": 0.6667, "x": -180.48, "curve": 0.313, "c3": 0.699}, {"time": 0.8333} + ] + }, + "leg-front-right-IK": { + "translate": [ + {"time": 0.25, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3167, "x": -172.87, "y": 28.32, "curve": "stepped"}, {"time": 0.3333, "x": 301.16, "y": 16.82, "curve": 0.31, "c4": 0.8}, + {"time": 0.5, "x": 285.54, "y": 12.82, "curve": "stepped"}, {"time": 0.55, "x": -180.48, "curve": "stepped"}, {"time": 0.6667, "x": -180.48, "curve": 0.313, "c3": 0.699}, + {"time": 0.8333} + ] + }, + "leg-back-left-IK": { + "translate": [ + {"time": 0.25, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3167, "x": -91.18, "y": 21.9, "curve": "stepped"}, {"time": 0.3333, "x": -595.64, "y": 5, "curve": 0.31, "c4": 0.8}, + {"time": 0.5, "x": -626.51, "y": 11.36, "curve": "stepped"}, {"time": 0.55, "x": -134.74, "curve": "stepped"}, {"time": 0.6667, "x": -134.74, "curve": 0.313, "c3": 0.699}, + {"time": 0.8333} + ] + }, + "@pivot-main": {"translate": [{"time": 0.6667, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.75, "y": 31, "curve": 0.315, "c4": 0.8}, {"time": 0.8333}]}, + "@leg-back-left": {"translate": [{"time": 0.3167, "curve": "stepped"}, {"time": 0.3333, "x": -0.06, "y": 3.33, "curve": "stepped"}, {"time": 0.5, "x": -0.06, "y": 3.33}, {"time": 0.55}]}, + "body-braid-02": { + "rotate": [ + {"angle": 3.5, "curve": 0.348, "c2": 0.38, "c3": 0.685, "c4": 0.73}, {"time": 0.2833, "angle": 43.23, "curve": 0.25, "c3": 0.75}, + {"time": 0.5667, "curve": 0.284, "c3": 0.625, "c4": 0.38}, {"time": 0.6167, "angle": 0.34, "curve": 0.32, "c2": 0.29, "c3": 0.757}, {"time": 0.8333, "angle": 3.5} + ] + }, + "body-braid-03": { + "rotate": [ + {"angle": -1.71, "curve": 0.337, "c2": 0.34, "c3": 0.673, "c4": 0.69}, {"time": 0.05, "angle": 2.63, "curve": 0.25, "c3": 0.228, "c4": 0.99}, + {"time": 0.3167, "angle": 23.44, "curve": 0.244, "c3": 0.7, "c4": 0.79}, {"time": 0.5667, "angle": 1.63, "curve": 0.366, "c2": 0.63, "c3": 0.703}, + {"time": 0.6, "curve": 0.313, "c3": 0.648, "c4": 0.35}, {"time": 0.6167, "angle": 0.06, "curve": 0.268, "c2": 0.1, "c3": 0.693, "c4": 0.76}, {"time": 0.8333, "angle": -1.71} + ] + }, + "body-braid-04": { + "rotate": [ + {"angle": -9.29, "curve": 0.323, "c2": 0.3, "c3": 0.66, "c4": 0.65}, {"time": 0.1, "angle": 2.63, "curve": 0.25, "c3": 0.228, "c4": 0.99}, + {"time": 0.3833, "angle": 16.91, "curve": 0.243, "c3": 0.649, "c4": 0.6}, {"time": 0.5667, "angle": 4.8, "curve": 0.356, "c2": 0.42, "c3": 0.696, "c4": 0.78}, + {"time": 0.6167, "angle": 1.11, "curve": 0.366, "c2": 0.63, "c3": 0.703}, {"time": 0.65, "curve": 0.244, "c3": 0.645, "c4": 0.59}, {"time": 0.8333, "angle": -9.29} + ] + }, + "body-braid-05": { + "rotate": [ + {"angle": -8.3, "curve": 0.294, "c3": 0.631, "c4": 0.37}, {"time": 0.1667, "angle": -10.49, "curve": 0.25, "c3": 0.228, "c4": 0.99}, + {"time": 0.45, "angle": 8.22, "curve": 0.258, "c3": 0.619, "c4": 0.45}, {"time": 0.5667, "angle": 5.2, "curve": 0.33, "c2": 0.32, "c3": 0.67, "c4": 0.68}, + {"time": 0.6167, "angle": 3.03, "curve": 0.381, "c2": 0.55, "c3": 0.742}, {"time": 0.7333, "curve": 0.26, "c3": 0.618, "c4": 0.44}, {"time": 0.8333, "angle": -8.3} ] }, - "ear-right-dot-17": { - "translate": [ - {"x": 158.62, "y": 2.82, "curve": 0.348, "c2": 0.66, "c3": 0.682}, {"time": 0.1333, "x": 160.87, "y": 2.94, "curve": 0.25, "c3": 0.75}, - {"time": 0.1667, "x": 30.47, "y": -4.19, "curve": 0.247, "c3": 0.729, "c4": 0.91}, {"time": 2.6667, "x": 158.62, "y": 2.82} - ], - "scale": [ - {"x": 1.002, "y": 1.008, "curve": 0.379, "c2": 0.53, "c3": 0.746}, {"time": 0.1333, "curve": "stepped"}, {"time": 0.1667, "curve": 0.25, "c3": 0.75}, - {"time": 0.3333, "x": 1.159, "y": 0.726, "curve": 0.25, "c3": 0.75}, {"time": 0.5, "x": 0.879, "y": 1.128, "curve": 0.25, "c3": 0.75}, - {"time": 0.6667, "x": 1.23, "y": 0.878, "curve": 0.25, "c3": 0.75}, {"time": 0.8333, "x": 1.057, "y": 1.017, "curve": 0.25, "c3": 0.75}, - {"time": 1, "x": 1.209, "y": 0.882, "curve": 0.25, "c3": 0.75}, {"time": 1.1667, "x": 0.956, "y": 1.174, "curve": 0.25, "c3": 0.75}, - {"time": 1.3333, "x": 1.285, "y": 1.001, "curve": 0.25, "c3": 0.75}, {"time": 1.5, "x": 0.97, "y": 1.08, "curve": 0.25, "c3": 0.75}, - {"time": 1.6667, "x": 0.809, "y": 1.228, "curve": 0.25, "c3": 0.75}, {"time": 1.8333, "x": 0.996, "y": 0.995, "curve": 0.25, "c3": 0.75}, - {"time": 2, "x": 1.258, "y": 0.899, "curve": 0.25, "c3": 0.75}, {"time": 2.1667, "x": 1.069, "y": 1.069, "curve": 0.25, "c3": 0.75}, - {"time": 2.3333, "x": 1.187, "y": 0.949, "curve": 0.25, "c3": 0.75}, {"time": 2.5, "x": 1.004, "y": 1.019, "curve": 0.247, "c3": 0.631, "c4": 0.53}, - {"time": 2.6667, "x": 1.002, "y": 1.008} + "body-braid-06": { + "rotate": [ + {"angle": -20.59, "curve": 0.352, "c2": 0.41, "c3": 0.689, "c4": 0.75}, {"time": 0.25, "angle": -28.99, "curve": 0.25, "c3": 0.228, "c4": 0.99}, + {"time": 0.5333, "angle": 9.53, "curve": 0.297, "c3": 0.634, "c4": 0.37}, {"time": 0.5667, "angle": 8.86, "curve": 0.304, "c2": 0.22, "c3": 0.644, "c4": 0.58}, + {"time": 0.6167, "angle": 6.87, "curve": 0.351, "c2": 0.4, "c3": 0.757}, {"time": 0.8, "curve": 0.301, "c3": 0.637, "c4": 0.36}, {"time": 0.8333, "angle": -20.59} ] }, - "ear-right-dot-20": { - "translate": [ - {"x": 137.38, "y": 4.33, "curve": 0.382, "c2": 0.57, "c3": 0.736}, {"time": 0.8833, "x": 172.31, "y": 12.14, "curve": 0.25, "c3": 0.75}, - {"time": 0.9167, "x": 50.37, "y": -15.12, "curve": 0.243, "c3": 0.648, "c4": 0.6}, {"time": 2.6667, "x": 137.38, "y": 4.33} - ], - "scale": [ - {"x": 1.127, "y": 0.947, "curve": 0.375, "c2": 0.5, "c3": 0.75}, {"time": 0.0833, "x": 1.258, "y": 0.899, "curve": 0.25, "c3": 0.75}, - {"time": 0.25, "x": 1.069, "y": 1.069, "curve": 0.25, "c3": 0.75}, {"time": 0.4167, "x": 1.187, "y": 0.949, "curve": 0.25, "c3": 0.75}, - {"time": 0.5833, "x": 1.004, "y": 1.019, "curve": 0.25, "c3": 0.75}, {"time": 0.8833, "curve": "stepped"}, {"time": 0.9167, "curve": 0.25, "c3": 0.75}, - {"time": 1.0833, "x": 1.159, "y": 0.726, "curve": 0.25, "c3": 0.75}, {"time": 1.25, "x": 0.879, "y": 1.128, "curve": 0.25, "c3": 0.75}, - {"time": 1.4167, "x": 1.23, "y": 0.878, "curve": 0.25, "c3": 0.75}, {"time": 1.5833, "x": 1.057, "y": 1.017, "curve": 0.25, "c3": 0.75}, - {"time": 1.75, "x": 1.209, "y": 0.882, "curve": 0.25, "c3": 0.75}, {"time": 1.9167, "x": 0.956, "y": 1.174, "curve": 0.25, "c3": 0.75}, - {"time": 2.0833, "x": 1.285, "y": 1.001, "curve": 0.25, "c3": 0.75}, {"time": 2.25, "x": 0.97, "y": 1.08, "curve": 0.25, "c3": 0.75}, - {"time": 2.4167, "x": 0.809, "y": 1.228, "curve": 0.25, "c3": 0.75}, {"time": 2.5833, "x": 0.996, "y": 0.995, "curve": 0.25, "c3": 0.625, "c4": 0.5}, - {"time": 2.6667, "x": 1.127, "y": 0.947} + "body-fur-under-05": { + "translate": [{"x": 0.53, "y": 14.98}], + "shear": [ + {"x": 3.7, "curve": 0.382, "c2": 0.57, "c3": 0.737}, {"time": 0.1, "x": 6.85, "curve": 0.25, "c3": 0.228, "c4": 0.99}, + {"time": 0.3833, "x": -44.3, "curve": 0.248, "c3": 0.628, "c4": 0.52}, {"time": 0.5333, "x": -27.02, "curve": 0.356, "c2": 0.41, "c3": 0.707, "c4": 0.81}, + {"time": 0.6167, "x": -14.63, "curve": 0.366, "c2": 0.63, "c3": 0.703}, {"time": 0.65, "x": -12.53, "curve": 0.244, "c3": 0.645, "c4": 0.59}, {"time": 0.8333, "x": 3.7} ] }, - "ear-left-dot-07": { - "translate": [{"x": 14.23, "y": 15.75, "curve": 0.25, "c3": 0.75}, {"time": 2.6333, "x": 137.48, "y": 20.63, "curve": 0.25, "c3": 0.75}, {"time": 2.6667, "x": 14.23, "y": 15.75}], - "scale": [ - {"curve": 0.25, "c3": 0.75}, {"time": 0.1667, "x": 1.159, "y": 0.726, "curve": 0.25, "c3": 0.75}, {"time": 0.3333, "x": 0.879, "y": 1.128, "curve": 0.25, "c3": 0.75}, - {"time": 0.5, "x": 1.23, "y": 0.878, "curve": 0.25, "c3": 0.75}, {"time": 0.6667, "x": 1.057, "y": 1.017, "curve": 0.25, "c3": 0.75}, - {"time": 0.8333, "x": 1.209, "y": 0.882, "curve": 0.25, "c3": 0.75}, {"time": 1, "x": 0.956, "y": 1.174, "curve": 0.25, "c3": 0.75}, - {"time": 1.1667, "x": 1.285, "y": 1.001, "curve": 0.25, "c3": 0.75}, {"time": 1.3333, "x": 0.97, "y": 1.08, "curve": 0.25, "c3": 0.75}, - {"time": 1.5, "x": 0.809, "y": 1.228, "curve": 0.25, "c3": 0.75}, {"time": 1.6667, "x": 0.996, "y": 0.995, "curve": 0.25, "c3": 0.75}, - {"time": 1.8333, "x": 1.258, "y": 0.899, "curve": 0.25, "c3": 0.75}, {"time": 2, "x": 1.069, "y": 1.069, "curve": 0.25, "c3": 0.75}, - {"time": 2.1667, "x": 1.187, "y": 0.949, "curve": 0.25, "c3": 0.75}, {"time": 2.3333, "x": 1.004, "y": 1.019, "curve": 0.25, "c3": 0.75}, {"time": 2.6333} + "body-fur-under-04": { + "translate": [{"x": -0.33, "y": 3.2}], + "shear": [ + {"x": 10.24, "curve": 0.36, "c2": 0.64, "c3": 0.695}, {"time": 0.0667, "x": 13.82, "curve": 0.25, "c3": 0.228, "c4": 0.99}, + {"time": 0.3333, "x": -39.88, "curve": 0.243, "c3": 0.649, "c4": 0.6}, {"time": 0.5333, "x": -22.71, "curve": 0.382, "c2": 0.57, "c3": 0.735}, + {"time": 0.6167, "x": -15.91, "curve": 0.242, "c3": 0.67, "c4": 0.68}, {"time": 0.8333, "x": 10.24} ] }, - "ear-right-dot-13": { - "translate": [{"x": 20.82, "y": -6.12, "curve": 0.25, "c3": 0.75}, {"time": 2.6333, "x": 135.26, "y": 39.62, "curve": 0.25, "c3": 0.75}, {"time": 2.6667, "x": 20.82, "y": -6.12}], - "scale": [ - {"curve": 0.25, "c3": 0.75}, {"time": 0.1667, "x": 1.159, "y": 0.726, "curve": 0.25, "c3": 0.75}, {"time": 0.3333, "x": 0.879, "y": 1.128, "curve": 0.25, "c3": 0.75}, - {"time": 0.5, "x": 1.23, "y": 0.878, "curve": 0.25, "c3": 0.75}, {"time": 0.6667, "x": 1.057, "y": 1.017, "curve": 0.25, "c3": 0.75}, - {"time": 0.8333, "x": 1.209, "y": 0.882, "curve": 0.25, "c3": 0.75}, {"time": 1, "x": 0.956, "y": 1.174, "curve": 0.25, "c3": 0.75}, - {"time": 1.1667, "x": 1.285, "y": 1.001, "curve": 0.25, "c3": 0.75}, {"time": 1.3333, "x": 0.97, "y": 1.08, "curve": 0.25, "c3": 0.75}, - {"time": 1.5, "x": 0.809, "y": 1.228, "curve": 0.25, "c3": 0.75}, {"time": 1.6667, "x": 0.996, "y": 0.995, "curve": 0.25, "c3": 0.75}, - {"time": 1.8333, "x": 1.258, "y": 0.899, "curve": 0.25, "c3": 0.75}, {"time": 2, "x": 1.069, "y": 1.069, "curve": 0.25, "c3": 0.75}, - {"time": 2.1667, "x": 1.187, "y": 0.949, "curve": 0.25, "c3": 0.75}, {"time": 2.3333, "x": 1.004, "y": 1.019, "curve": 0.25, "c3": 0.75}, {"time": 2.6333} + "body-fur-under-03": { + "translate": [{"x": -0.78, "y": 3.19}], + "shear": [ + {"x": 22.47, "curve": 0.25, "c3": 0.75}, {"time": 0.2833, "x": -45.7, "curve": 0.244, "c3": 0.7, "c4": 0.79}, {"time": 0.5333, "x": -3.18, "curve": 0.366, "c2": 0.63, "c3": 0.703}, + {"time": 0.5667, "curve": 0.284, "c3": 0.625, "c4": 0.38}, {"time": 0.6167, "x": 2.51, "curve": 0.32, "c2": 0.29, "c3": 0.757}, {"time": 0.8333, "x": 22.47} ] }, - "ear-right-dot-18": { - "translate": [ - {"x": 49.78, "y": 13.74, "curve": 0.339, "c2": 0.35, "c3": 0.758}, {"time": 1.9167, "x": 147.63, "y": 20.29, "curve": 0.25, "c3": 0.75}, - {"time": 1.95, "x": 24, "y": 12.01, "curve": 0.273, "c3": 0.619, "c4": 0.41}, {"time": 2.6667, "x": 49.78, "y": 13.74} - ], - "scale": [ - {"x": 1.094, "y": 0.984, "curve": 0.345, "c2": 0.37, "c3": 0.757}, {"time": 0.1167, "x": 1.209, "y": 0.882, "curve": 0.25, "c3": 0.75}, - {"time": 0.2833, "x": 0.956, "y": 1.174, "curve": 0.25, "c3": 0.75}, {"time": 0.45, "x": 1.285, "y": 1.001, "curve": 0.25, "c3": 0.75}, - {"time": 0.6167, "x": 0.97, "y": 1.08, "curve": 0.25, "c3": 0.75}, {"time": 0.7833, "x": 0.809, "y": 1.228, "curve": 0.25, "c3": 0.75}, - {"time": 0.95, "x": 0.996, "y": 0.995, "curve": 0.25, "c3": 0.75}, {"time": 1.1167, "x": 1.258, "y": 0.899, "curve": 0.25, "c3": 0.75}, - {"time": 1.2833, "x": 1.069, "y": 1.069, "curve": 0.25, "c3": 0.75}, {"time": 1.45, "x": 1.187, "y": 0.949, "curve": 0.25, "c3": 0.75}, - {"time": 1.6167, "x": 1.004, "y": 1.019, "curve": 0.25, "c3": 0.75}, {"time": 1.9167, "curve": "stepped"}, {"time": 1.95, "curve": 0.25, "c3": 0.75}, - {"time": 2.1167, "x": 1.159, "y": 0.726, "curve": 0.25, "c3": 0.75}, {"time": 2.2833, "x": 0.879, "y": 1.128, "curve": 0.25, "c3": 0.75}, - {"time": 2.45, "x": 1.23, "y": 0.878, "curve": 0.25, "c3": 0.75}, {"time": 2.6167, "x": 1.057, "y": 1.017, "curve": 0.269, "c3": 0.618, "c4": 0.42}, - {"time": 2.6667, "x": 1.094, "y": 0.984} + "body-fur-under-02": { + "translate": [{"x": -2.23, "y": 6.28}], + "shear": [ + {"x": -27.8, "curve": 0.375, "c2": 0.62, "c3": 0.716}, {"time": 0.0333, "x": 18.72, "curve": 0.25, "c3": 0.228, "c4": 0.99}, + {"time": 0.3, "x": -43.03, "curve": 0.243, "c3": 0.68, "c4": 0.71}, {"time": 0.5333, "x": -5.6, "curve": 0.375, "c2": 0.62, "c3": 0.716}, + {"time": 0.5833, "curve": 0.297, "c3": 0.634, "c4": 0.37}, {"time": 0.6167, "x": 1.3, "curve": 0.292, "c2": 0.19, "c3": 0.714, "c4": 0.83}, {"time": 0.8333, "x": -27.8} ] - } - } + }, + "body-fur-under-01": { + "translate": [{"x": -0.14, "y": 0.84}], + "shear": [ + {"x": -4.09, "curve": 0.375, "c2": 0.5, "c3": 0.75}, {"time": 0.25, "x": -42.78, "curve": 0.25, "c3": 0.75}, {"time": 0.5333, "curve": 0.265, "c3": 0.618, "c4": 0.43}, + {"time": 0.6167, "x": 7.64, "curve": 0.351, "c2": 0.4, "c3": 0.757}, {"time": 0.8, "x": 26.91, "curve": 0.374, "c3": 0.7, "c4": 0.36}, {"time": 0.8333, "x": -4.09} + ] + }, + "body-braid-01": {"rotate": [{"angle": 2.31}]} + }, + "events": [{"time": 0.25, "name": "start-attack"}, {"time": 0.3333, "name": "hit"}] }, - "568166623": { + "2516301341": { "slots": { - "eyes": {"attachment": [{"time": 1, "name": "eyes-shut"}, {"time": 1.0833, "name": "eyes"}]}, - "mouth": {"attachment": [{"time": 0.2, "name": "mouth-blink"}, {"time": 0.3333, "name": "mouth"}]}, - "tail-glow": {"attachment": [{"time": 0.3333, "name": "tail-glow-01"}, {"time": 0.4667, "name": "tail-glow-02"}, {"time": 0.6, "name": "tail-glow-03"}, {"time": 0.7333, "name": null}]} + "eyes": {"attachment": [{"name": "eyes-shut"}, {"time": 0.2, "name": "eyes"}]}, "mouth": {"attachment": [{"time": 0.0333, "name": "mouth-open"}, {"time": 0.2167, "name": "mouth"}]} }, "bones": { "@pivot-back": { "rotate": [ - {"curve": 0.313, "c3": 0.699}, {"time": 0.3333, "angle": 2.04, "curve": 0.313, "c3": 0.699}, {"time": 0.6667, "curve": 0.313, "c3": 0.699}, - {"time": 1, "angle": 1.79, "curve": 0.313, "c3": 0.699}, {"time": 1.3333} - ], - "translate": [ - {"curve": 0.313, "c3": 0.699}, {"time": 0.3333, "y": -6.53, "curve": 0.313, "c3": 0.699}, {"time": 0.6667, "curve": 0.313, "c3": 0.699}, - {"time": 1, "y": -8.86, "curve": 0.313, "c3": 0.699}, {"time": 1.3333} + {"angle": -8.23, "curve": "stepped"}, {"time": 0.1667, "angle": -8.23, "curve": 0.306, "c4": 0.8}, {"time": 0.3333, "angle": 5.43, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5} ], - "scale": [{"curve": 0.313, "c3": 0.699}, {"time": 0.6667, "y": 0.99, "curve": 0.313, "c3": 0.699}, {"time": 1.3333}] + "translate": [{"y": -0.04, "curve": 0, "c2": 0.3, "c3": 0.534}, {"time": 0.1667, "x": 17.97, "y": 94.25, "curve": 0.315, "c4": 0.8}, {"time": 0.3333, "y": -0.04}] }, - "@leg-front-right": { - "translate": [ - {"curve": 0.313, "c3": 0.699}, {"time": 0.3333, "x": 0.02, "y": -16.89, "curve": 0.313, "c3": 0.699}, {"time": 0.6667, "x": -0.04, "y": 2.46, "curve": 0.313, "c3": 0.699}, - {"time": 1, "x": -0.02, "y": -18.9, "curve": 0.313, "c3": 0.699}, {"time": 1.3333} + "@leg-back-left": {"rotate": [{"angle": 14.26, "curve": "stepped"}, {"time": 0.2167, "angle": 14.26, "curve": 0, "c2": 0.1, "c3": 0.847}, {"time": 0.3333, "angle": -11.75}]}, + "@leg-front-left": {"rotate": [{"angle": 14.58, "curve": "stepped"}, {"time": 0.2167, "angle": 14.58, "curve": 0, "c2": 0.1, "c3": 0.847}, {"time": 0.3333, "angle": 20.14}]}, + "@leg-front-right": {"rotate": [{"angle": 12.31, "curve": "stepped"}, {"time": 0.2167, "angle": 12.31, "curve": 0, "c2": 0.1, "c3": 0.847}, {"time": 0.3333, "angle": -30.3}]}, + "tail": { + "rotate": [ + {"curve": 0, "c2": 0.6, "c3": 0.237}, {"time": 0.1667, "angle": -18.5, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "angle": 4.16, "curve": 0, "c2": 0.3, "c3": 0.54}, + {"time": 0.5} ] }, - "@leg-front-left": { - "translate": [ - {"curve": 0.313, "c3": 0.699}, {"time": 0.3333, "x": 0.22, "y": -5.13, "curve": 0.313, "c3": 0.699}, {"time": 0.6667, "x": -0.03, "y": 1.81, "curve": 0.313, "c3": 0.699}, - {"time": 1, "x": 0.2, "y": -7.06, "curve": 0.313, "c3": 0.699}, {"time": 1.3333} - ], - "scale": [ - {"curve": 0.313, "c3": 0.699}, {"time": 0.3333, "x": 0.905, "curve": 0.313, "c3": 0.699}, {"time": 0.6667, "curve": 0.313, "c3": 0.699}, - {"time": 1, "x": 0.905, "curve": 0.313, "c3": 0.699}, {"time": 1.3333} + "@shadow": {"scale": [{"x": 1.3, "y": 1.3, "curve": 0, "c2": 0.4, "c3": 0.533}, {"time": 0.1667, "x": 0.9, "y": 0.9, "curve": 0.315, "c4": 0.8}, {"time": 0.3333}]}, + "body-fur-01": { + "rotate": [ + {"angle": 13.56, "curve": 0.359, "c2": 0.43, "c3": 0.756}, {"time": 0.0833}, {"time": 0.25, "angle": -36.41, "curve": 0.25, "c3": 0.75}, + {"time": 0.45, "angle": 20.41, "curve": 0.26, "c3": 0.618, "c4": 0.44}, {"time": 0.5, "angle": 10.51} ] }, - "@leg-back-left": { - "translate": [ - {"curve": 0.313, "c3": 0.699}, {"time": 0.3333, "x": 0.22, "y": -4.11, "curve": 0.313, "c3": 0.699}, {"time": 0.6667, "x": -0.03, "y": 1.69, "curve": 0.313, "c3": 0.699}, - {"time": 1, "x": 0.2, "y": -5.68, "curve": 0.313, "c3": 0.699}, {"time": 1.3333} - ], - "scale": [ - {"curve": 0.313, "c3": 0.699}, {"time": 0.3333, "x": 0.943, "curve": 0.313, "c3": 0.699}, {"time": 0.6667, "curve": 0.313, "c3": 0.699}, - {"time": 1, "x": 0.943, "curve": 0.313, "c3": 0.699}, {"time": 1.3333} + "body-fur-02": { + "rotate": [ + {"angle": 18.76, "curve": 0.356, "c2": 0.65, "c3": 0.691}, {"time": 0.0167, "angle": 20.41, "curve": 0.25, "c3": 0.625, "c4": 0.5}, + {"time": 0.0833, "angle": 10.2, "curve": 0.375, "c2": 0.5, "c3": 0.75}, {"time": 0.15}, {"time": 0.3167, "angle": -36.41, "curve": 0.246, "c3": 0.717, "c4": 0.86}, + {"time": 0.5, "angle": 13.84} ] }, - "@pivot-main": { - "scale": [ - {"curve": 0.313, "c3": 0.699}, {"time": 0.3333, "y": 0.98, "curve": 0.313, "c3": 0.699}, {"time": 0.6667, "curve": 0.313, "c3": 0.699}, - {"time": 1, "y": 0.98, "curve": 0.313, "c3": 0.699}, {"time": 1.3333} + "body-fur-03": {"rotate": [{"angle": 20.41, "curve": 0.25, "c3": 0.75}, {"time": 0.1333}, {"time": 0.3, "angle": -36.41, "curve": 0.25, "c3": 0.75}, {"time": 0.5, "angle": 5.54}]}, + "body-fur-04": { + "rotate": [ + {"angle": 4.28, "curve": 0.382, "c2": 0.57, "c3": 0.735}, {"time": 0.0667, "angle": 20.41, "curve": 0.25, "c3": 0.625, "c4": 0.5}, + {"time": 0.1333, "angle": 10.2, "curve": 0.375, "c2": 0.5, "c3": 0.75}, {"time": 0.2}, {"time": 0.3667, "angle": -36.41, "curve": 0.243, "c3": 0.649, "c4": 0.6}, + {"time": 0.5, "angle": 12.53} ] }, - "tail": { - "rotate": [{"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "angle": 4.54, "curve": 0.313, "c3": 0.699}, {"time": 1, "angle": -9.06, "curve": 0.313, "c3": 0.699}, {"time": 1.3333}] + "body-fur-05": { + "rotate": [ + {"angle": 16.64, "curve": 0.333, "c2": 0.33, "c3": 0.758}, {"time": 0.1}, {"time": 0.2667, "angle": -36.41, "curve": 0.25, "c3": 0.75}, + {"time": 0.4667, "angle": 20.41, "curve": 0.276, "c3": 0.621, "c4": 0.4}, {"time": 0.5, "angle": 6.86} + ] }, - "back": { - "rotate": [{"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "angle": -4.27, "curve": 0.313, "c3": 0.699}, {"time": 1, "angle": 2.83, "curve": 0.313, "c3": 0.699}, {"time": 1.3333}] + "body-fur-06": { + "rotate": [ + {"angle": 14.93, "curve": 0.371, "c2": 0.62, "c3": 0.71}, {"time": 0.0333, "angle": 20.41, "curve": 0.25, "c3": 0.625, "c4": 0.5}, + {"time": 0.1, "angle": 10.2, "curve": 0.375, "c2": 0.5, "c3": 0.75}, {"time": 0.1667}, {"time": 0.3333, "angle": -36.41, "curve": 0.243, "c3": 0.689, "c4": 0.75}, + {"time": 0.5, "angle": 13.33} + ] }, - "ear-right": {"rotate": [{"curve": 0.461, "c3": 0.543}, {"time": 0.6667, "angle": -1.95, "curve": 0.461, "c3": 0.543}, {"time": 1.3333}]}, - "ear-left": {"rotate": [{"curve": 0.461, "c3": 0.543}, {"time": 0.6667, "angle": -1.95, "curve": 0.461, "c3": 0.543}, {"time": 1.3333}]}, - "@shadow": { - "scale": [ - {"curve": 0.306, "c3": 0.695}, {"time": 0.3333, "x": 1.05, "y": 1.05, "curve": 0.306, "c3": 0.695}, {"time": 0.6667, "curve": 0.306, "c3": 0.695}, - {"time": 1, "x": 1.05, "y": 1.05, "curve": 0.306, "c3": 0.695}, {"time": 1.3333} + "body-fur-07": { + "rotate": [ + {"angle": 10.2, "curve": 0.375, "c2": 0.5, "c3": 0.75}, {"time": 0.0667, "curve": 0.25, "c3": 0.75}, {"time": 0.2333, "angle": -36.41, "curve": 0.25, "c3": 0.75}, + {"time": 0.4333, "angle": 20.41, "curve": 0.25, "c3": 0.625, "c4": 0.5}, {"time": 0.5, "angle": 2.91} ] }, - "body-bell": { - "rotate": [{"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "angle": -10, "curve": 0.384, "c3": 0.31}, {"time": 1, "angle": 10, "curve": 0.154, "c4": 0.9}, {"time": 1.3333}] - } - } - }, - "3151577093": { - "slots": { - "eyes": {"attachment": [{"time": 0.1, "name": "eyes-shut"}, {"time": 1, "name": "eyes"}]}, - "leg-back-left": {"attachment": [{"time": 0.0667, "name": "xmas-leg-back-left-long"}, {"time": 0.9, "name": "xmas-leg-back-left"}]} - }, - "bones": { - "@pivot-back": { + "body-fur-08": { "rotate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "angle": -18, "curve": 0.317, "c3": 0.693}, {"time": 0.3333, "angle": -17, "curve": 0.317, "c3": 0.693}, - {"time": 0.5, "angle": -18, "curve": 0.317, "c3": 0.693}, {"time": 0.6667, "angle": -17, "curve": 0.317, "c3": 0.693}, {"time": 0.8333, "angle": -18, "curve": 0.317, "c3": 0.693}, - {"time": 1.0833} - ], - "translate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": 33.94, "y": -52, "curve": "stepped"}, {"time": 0.8333, "x": 33.94, "y": -52, "curve": 0.317, "c3": 0.693}, {"time": 1.0833} + {"angle": 3.76, "curve": 0.379, "c2": 0.6, "c3": 0.724}, {"time": 0.0333}, {"time": 0.2, "angle": -36.41, "curve": 0.25, "c3": 0.75}, + {"time": 0.4, "angle": 20.41, "curve": 0.242, "c3": 0.667, "c4": 0.67}, {"time": 0.5, "angle": -0.91} ] }, - "@leg-front-left": { - "translate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": -27.99, "y": 1.7, "curve": 0.25, "c3": 0.75}, {"time": 0.3333, "x": -26.93, "y": -1.56, "curve": 0.25, "c3": 0.75}, - {"time": 0.5, "x": -27.99, "y": 1.7, "curve": 0.25, "c3": 0.75}, {"time": 0.6667, "x": -26.93, "y": -1.56, "curve": 0.25, "c3": 0.75}, - {"time": 0.8333, "x": -27.99, "y": 1.7, "curve": 0.317, "c3": 0.693}, {"time": 1.0833} + "body-fur-09": { + "rotate": [ + {"angle": 16.68, "curve": 0.314, "c2": 0.27, "c3": 0.657, "c4": 0.64}, {"time": 0.0333, "angle": 10.2, "curve": 0.375, "c2": 0.5, "c3": 0.75}, {"time": 0.1}, + {"time": 0.2667, "angle": -36.41, "curve": 0.25, "c3": 0.75}, {"time": 0.4667, "angle": 20.41, "curve": 0.276, "c3": 0.621, "c4": 0.4}, {"time": 0.5, "angle": 6.86} ] }, - "@leg-front-right": { - "translate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": -84.32, "y": 39.72, "curve": 0.317, "c3": 0.693}, {"time": 0.3333, "x": -82.71, "y": 34.75, "curve": 0.317, "c3": 0.693}, - {"time": 0.5, "x": -84.32, "y": 39.72, "curve": 0.317, "c3": 0.693}, {"time": 0.6667, "x": -82.71, "y": 34.75, "curve": 0.317, "c3": 0.693}, - {"time": 0.8333, "x": -84.32, "y": 39.72, "curve": 0.317, "c3": 0.693}, {"time": 1.0833} + "body-fur-10": { + "rotate": [ + {"angle": 6.85, "curve": 0.382, "c2": 0.56, "c3": 0.74}, {"time": 0.05, "curve": 0.25, "c3": 0.75}, {"time": 0.2167, "angle": -36.41, "curve": 0.25, "c3": 0.75}, + {"time": 0.4167, "angle": 20.41, "curve": 0.244, "c3": 0.641, "c4": 0.57}, {"time": 0.5, "angle": 0.34} ] }, - "leg-front-right-IK": { - "translate": [{"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": 40.32, "curve": "stepped"}, {"time": 0.8333, "x": 40.32, "curve": 0.317, "c3": 0.693}, {"time": 1.0833}] + "body-fur-11": { + "rotate": [ + {"angle": 13.56, "curve": 0.359, "c2": 0.43, "c3": 0.756}, {"time": 0.0833, "curve": 0.25, "c3": 0.75}, {"time": 0.25, "angle": -36.41, "curve": 0.25, "c3": 0.75}, + {"time": 0.45, "angle": 20.41, "curve": 0.26, "c3": 0.618, "c4": 0.44}, {"time": 0.5, "angle": 4.23} + ] }, - "leg-front-left-IK": { - "translate": [{"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": 26.51, "curve": "stepped"}, {"time": 0.8333, "x": 26.51, "curve": 0.317, "c3": 0.693}, {"time": 1.0833}] + "body-fur-12": { + "rotate": [ + {"angle": 19.13, "curve": 0.298, "c2": 0.2, "c3": 0.756}, {"time": 0.1167, "curve": 0.25, "c3": 0.75}, {"time": 0.2833, "angle": -36.41, "curve": 0.25, "c3": 0.75}, + {"time": 0.4833, "angle": 20.41, "curve": 0.299, "c3": 0.636, "c4": 0.36}, {"time": 0.5, "angle": 8.12} + ] }, - "leg-back-left-IK": { - "translate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": -30.93, "y": 88.63, "curve": 0.617, "c4": 0.6}, {"time": 0.2667, "x": -62.81, "y": 72.23, "curve": 0, "c2": 0.4, "c3": 0.383}, - {"time": 0.35, "x": -28.19, "y": 96.83, "curve": 0.617, "c4": 0.6}, {"time": 0.45, "x": -62.81, "y": 72.23, "curve": 0, "c2": 0.4, "c3": 0.383}, - {"time": 0.55, "x": -28.19, "y": 96.83, "curve": 0.617, "c4": 0.6}, {"time": 0.6333, "x": -62.81, "y": 72.23, "curve": 0, "c2": 0.4, "c3": 0.383}, - {"time": 0.7333, "x": -28.19, "y": 96.83, "curve": 0.434, "c3": 0.739, "c4": 0.4}, {"time": 0.8333, "x": -56.92, "y": 76.7, "curve": 0.223, "c2": 0.33, "c3": 0.336}, {"time": 1.0833} + "body-fur-13": { + "rotate": [ + {"angle": 18.76, "curve": 0.356, "c2": 0.65, "c3": 0.691}, {"time": 0.0167, "angle": 20.41, "curve": 0.25, "c3": 0.75}, {"time": 0.15, "curve": 0.25, "c3": 0.75}, + {"time": 0.3167, "angle": -36.41, "curve": 0.246, "c3": 0.717, "c4": 0.86}, {"time": 0.5, "angle": 11.59} ] }, - "tail": { + "body-fur-14": { "rotate": [ - {"curve": 0, "c2": 0.3, "c3": 0.546}, {"time": 0.1667, "angle": 25.35, "curve": 0.317, "c3": 0.693}, {"time": 0.3333, "angle": 33.35, "curve": 0.317, "c3": 0.693}, - {"time": 0.5, "angle": 25.35, "curve": 0.317, "c3": 0.693}, {"time": 0.6667, "angle": 33.35, "curve": 0.317, "c3": 0.693}, - {"time": 0.9167, "angle": 25.35, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 1.0833} + {"angle": -1.74, "curve": 0.381, "c2": 0.54, "c3": 0.744}, {"time": 0.0833, "angle": 20.41, "curve": 0.25, "c3": 0.625, "c4": 0.5}, + {"time": 0.15, "angle": 10.2, "curve": 0.375, "c2": 0.5, "c3": 0.75}, {"time": 0.2167, "curve": 0.25, "c3": 0.75}, + {"time": 0.3833, "angle": -36.41, "curve": 0.246, "c3": 0.635, "c4": 0.55}, {"time": 0.5, "angle": 13.33} ] }, - "@shadow": { - "translate": [{"curve": 0, "c2": 0.3, "c3": 0.546}, {"time": 0.1667, "x": 32.73, "curve": "stepped"}, {"time": 0.8333, "x": 32.73, "curve": 0.317, "c3": 0.693}, {"time": 1.0833}], - "scale": [ - {"time": 0.1667, "curve": 0.317, "c3": 0.693}, {"time": 0.25, "x": 1.02, "y": 1.02, "curve": 0.317, "c3": 0.693}, {"time": 0.3333, "curve": 0.317, "c3": 0.693}, - {"time": 0.4167, "x": 1.02, "y": 1.02, "curve": 0.317, "c3": 0.693}, {"time": 0.5, "curve": 0.317, "c3": 0.693}, {"time": 0.5833, "x": 1.02, "y": 1.02, "curve": 0.317, "c3": 0.693}, - {"time": 0.6667, "curve": 0.317, "c3": 0.693}, {"time": 0.8333, "x": 1.02, "y": 1.02, "curve": 0.317, "c3": 0.693}, {"time": 1.0833} + "body-fur-15": { + "rotate": [ + {"angle": 9.93, "curve": 0.379, "c2": 0.6, "c3": 0.724}, {"time": 0.05, "angle": 20.41, "curve": 0.25, "c3": 0.75}, {"time": 0.1833, "curve": 0.25, "c3": 0.75}, + {"time": 0.35, "angle": -36.41, "curve": 0.242, "c3": 0.667, "c4": 0.67}, {"time": 0.5, "angle": 13.33} + ] + }, + "body-fur-16": { + "rotate": [ + {"angle": -1.74, "curve": 0.381, "c2": 0.54, "c3": 0.744}, {"time": 0.0833, "angle": 20.41, "curve": 0.25, "c3": 0.75}, {"time": 0.2167, "curve": 0.25, "c3": 0.75}, + {"time": 0.3833, "angle": -36.41, "curve": 0.246, "c3": 0.635, "c4": 0.55}, {"time": 0.5, "angle": 13.84} ] } - }, - "drawOrder": [{"time": 0.0667, "offsets": [{"slot": "leg-back-left", "offset": 5}]}, {"time": 0.9}] + } }, - "378584637": { - "slots": { - "eyes": {"attachment": [{"name": "eyes-happy"}]}, - "leg-back-left": {"attachment": [{"time": 0.2833, "name": "xmas-leg-back-left-stretch"}, {"time": 0.7167, "name": "xmas-leg-back-left"}]}, - "leg-front-left": {"attachment": [{"time": 0.2833, "name": "xmas-leg-front-left-stretch"}, {"time": 0.6333, "name": "xmas-leg-front-left"}]}, - "leg-front-right": {"attachment": [{"time": 0.2833, "name": "xmas-leg-front-right-stretch"}, {"time": 0.6333, "name": "xmas-leg-front-right"}]} - }, + "3188102483": { + "slots": {"eyes": {"attachment": [{"name": "eyes-shut"}]}}, "bones": { - "@leg-front-left": { + "@pivot-back": { "translate": [ - {"x": -14.55, "y": -2.39, "curve": 0.374, "c2": 0.33, "c3": 0.72, "c4": 0.68}, {"time": 0.0333, "x": -24.69, "y": -4.71, "curve": 0.37, "c2": 0.57, "c3": 0.746}, - {"time": 0.1667, "x": -24.61, "y": -1.31, "curve": 0.37, "c2": 0.57, "c3": 0.746}, {"time": 0.3333, "x": 13.45, "y": -27.72, "curve": 0.345, "c2": 0.53, "c3": 0.751}, - {"time": 0.4833, "x": 40.66, "y": -4.9, "curve": 0.262, "c3": 0.63, "c4": 0.42}, {"time": 0.5667, "x": 49.25, "y": 8.32, "curve": 0.343, "c2": 0.3, "c3": 0.688, "c4": 0.65}, - {"time": 0.7, "x": 9.23, "y": 17.43, "curve": 0.255, "c3": 0.659, "c4": 0.47}, {"time": 0.75, "x": -14.55, "y": -2.39} + {"y": 0.06, "curve": 0.387, "c3": 0.314}, {"time": 0.2167, "y": -17.94, "curve": 0.387, "c3": 0.314}, {"time": 0.45, "y": 0.06, "curve": 0.387, "c3": 0.314}, + {"time": 0.6667, "y": -17.94, "curve": 0.387, "c3": 0.314}, {"time": 0.9, "y": 0.06, "curve": 0.387, "c3": 0.314}, {"time": 1.1167, "y": -17.94, "curve": 0.387, "c3": 0.314}, + {"time": 1.3333, "y": 0.06} ], "scale": [ - {"curve": 0.459, "c2": 0.59, "c3": 0.838}, {"time": 0.0333, "x": 0.935, "curve": 0.331, "c3": 0.677, "c4": 0.4}, {"time": 0.0667, "x": 0.87, "curve": 0.464, "c4": 0.7}, {"time": 0.1667} + {"curve": 0.387, "c3": 0.314}, {"time": 0.2167, "y": 0.98, "curve": 0.387, "c3": 0.314}, {"time": 0.45, "curve": 0.387, "c3": 0.314}, + {"time": 0.6667, "y": 0.98, "curve": 0.387, "c3": 0.314}, {"time": 0.9, "curve": 0.387, "c3": 0.314}, {"time": 1.1167, "y": 0.98, "curve": 0.387, "c3": 0.314}, {"time": 1.3333} ] }, - "leg-front-left-IK": { - "translate": [ - {"x": 0.33, "y": 2.27, "curve": 0.154, "c4": 0.9}, {"time": 0.0833, "x": 32.98, "y": -4.28, "curve": 0.269, "c2": 0.57, "c3": 0.577}, - {"time": 0.1667, "x": 53.3, "y": 2.35, "curve": 0.461, "c3": 0.543}, {"time": 0.4167, "x": -85.44, "y": 106.83, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.5167, "x": -85.78, "y": 86.09, "curve": 0.143, "c3": 0.57, "c4": 0.46}, {"time": 0.7, "x": -26.89, "y": 8.67, "curve": 0, "c2": 0.09, "c3": 0.479, "c4": 0.56}, - {"time": 0.75, "x": 0.33, "y": 2.27} + "@leg-front-left": { + "rotate": [ + {"curve": 0, "c2": 0.1, "c3": 0.843}, {"time": 0.1167, "angle": -12.07, "curve": 0.161, "c3": 0.854}, {"time": 0.2167, "angle": -2.63}, + {"time": 0.3333, "angle": 7.79, "curve": 0.079, "c4": 0.95}, {"time": 0.45, "curve": 0, "c2": 0.1, "c3": 0.843}, {"time": 0.55, "angle": -12.07, "curve": 0.161, "c3": 0.854}, + {"time": 0.6667, "angle": -2.63}, {"time": 0.7667, "angle": 7.79, "curve": 0.079, "c4": 0.95}, {"time": 0.8833, "curve": 0, "c2": 0.1, "c3": 0.843}, + {"time": 1, "angle": -12.07, "curve": 0.161, "c3": 0.854}, {"time": 1.1, "angle": -2.63}, {"time": 1.2167, "angle": 7.79, "curve": 0.079, "c4": 0.95}, {"time": 1.3333} ] }, - "leg-back-left-IK": { - "translate": [ - {"x": 17.64, "y": 16.11, "curve": 0.455, "c2": 0.58, "c3": 0.847}, {"time": 0.0333, "curve": 0, "c2": 0.1, "c3": 0.85}, - {"time": 0.2333, "x": -50.37, "curve": 0, "c2": 0.09, "c3": 0.466, "c4": 0.7}, {"time": 0.3, "x": 11.38, "y": 18.2, "curve": 0.177, "c2": 0.44, "c3": 0.617}, - {"time": 0.5333, "x": 56.74, "y": 103.8, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.6667, "x": 71.93, "y": 112.16, "curve": 0.315, "c4": 0.8}, {"time": 0.75, "x": 17.64, "y": 16.11} + "@leg-front-right": { + "rotate": [ + {"curve": 0, "c2": 0.1, "c3": 0.843}, {"time": 0.1167, "angle": -12.07, "curve": 0.161, "c3": 0.854}, {"time": 0.2167, "angle": -2.63}, + {"time": 0.3333, "angle": 7.79, "curve": 0.079, "c4": 0.95}, {"time": 0.45, "curve": 0, "c2": 0.1, "c3": 0.843}, {"time": 0.55, "angle": -12.07, "curve": 0.161, "c3": 0.854}, + {"time": 0.6667, "angle": -2.63}, {"time": 0.7667, "angle": 7.79, "curve": 0.079, "c4": 0.95}, {"time": 0.8833, "curve": 0, "c2": 0.1, "c3": 0.843}, + {"time": 1, "angle": -12.07, "curve": 0.161, "c3": 0.854}, {"time": 1.1, "angle": -2.63}, {"time": 1.2167, "angle": 7.79, "curve": 0.079, "c4": 0.95}, {"time": 1.3333} + ] + }, + "@leg-back-left": { + "rotate": [ + {"curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.1167, "angle": 8.89, "curve": 0.161, "c3": 0.854}, {"time": 0.2167, "angle": 0.78}, + {"time": 0.3333, "angle": -7.35, "curve": 0.079, "c4": 0.95}, {"time": 0.45, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.55, "angle": 8.89, "curve": 0.161, "c3": 0.854}, + {"time": 0.6667, "angle": 0.78}, {"time": 0.7667, "angle": -7.35, "curve": 0.079, "c4": 0.95}, {"time": 0.8833, "curve": 0, "c2": 0.1, "c3": 0.85}, + {"time": 1, "angle": 8.89, "curve": 0.161, "c3": 0.854}, {"time": 1.1, "angle": 0.78}, {"time": 1.2167, "angle": -7.35, "curve": 0.079, "c4": 0.95}, {"time": 1.3333} + ] + }, + "tail": { + "rotate": [ + {"curve": 0, "c2": 0.05, "c3": 0.658}, {"time": 0.3333, "angle": -10.75, "curve": 0.304, "c3": 0.689}, {"time": 0.7333, "angle": 3.03}, + {"time": 1.05, "angle": 5.39, "curve": 0.234, "c4": 0.9}, {"time": 1.3333} ] }, "@shadow": { "scale": [ - {"curve": 0.313, "c3": 0.699}, {"time": 0.25, "x": 0.94, "y": 0.94, "curve": 0.313, "c3": 0.699}, {"time": 0.4333, "x": 0.8, "y": 0.8, "curve": 0.315, "c4": 0.8}, {"time": 0.75} + {"curve": 0.387, "c3": 0.314}, {"time": 0.2167, "x": 1.1, "y": 1.1, "curve": 0.387, "c3": 0.314}, {"time": 0.45, "curve": 0.387, "c3": 0.314}, + {"time": 0.6667, "x": 1.1, "y": 1.1, "curve": 0.387, "c3": 0.314}, {"time": 0.9, "curve": 0.387, "c3": 0.314}, {"time": 1.1167, "x": 1.1, "y": 1.1, "curve": 0.387, "c3": 0.314}, + {"time": 1.3333} ] }, - "tail": { - "rotate": [{"curve": 0.161, "c3": 0.854}, {"time": 0.25, "angle": -15.26, "curve": 0, "c2": 0.3, "c3": 0.546}, {"time": 0.5, "angle": 3.48, "curve": 0.154, "c4": 0.9}, {"time": 0.75}] + "body-fur-16": { + "rotate": [ + {"angle": -14.56, "curve": 0.354, "c2": 0.65, "c3": 0.688}, {"time": 0.0167, "angle": -15.12, "curve": 0.25, "c3": 0.75}, {"time": 0.2333, "angle": 7.75, "curve": 0.25, "c3": 0.75}, + {"time": 0.45, "angle": -14.99, "curve": 0.25, "c3": 0.75}, {"time": 0.6833, "angle": 7.75, "curve": 0.25, "c3": 0.75}, {"time": 0.9, "angle": -14.48, "curve": 0.25, "c3": 0.75}, + {"time": 1.1167, "angle": 7.75, "curve": 0.246, "c3": 0.721, "c4": 0.87}, {"time": 1.3333, "angle": -14.56} + ] }, - "@leg-front-right": { - "translate": [ - {"x": 7.78, "y": -11.23, "curve": 0.649, "c2": 0.4, "c4": 0.74}, {"time": 0.0167, "x": -0.64, "y": -13.16, "curve": 0.313, "c3": 0.699}, - {"time": 0.1333, "x": -9.39, "y": -16.39, "curve": 0.346, "c2": 0.44, "c3": 0.699}, {"time": 0.3167, "x": -26.29, "y": 12.52, "curve": 0, "c2": 0.18, "c3": 0.424, "c4": 0.59}, - {"time": 0.4333, "x": 7.42, "y": -10.53, "curve": 0.316, "c2": 0.49, "c3": 0.751}, {"time": 0.6, "x": 37.87, "y": -4.31, "curve": 0.289, "c3": 0.884, "c4": 0.7}, - {"time": 0.75, "x": 7.78, "y": -11.23} + "body-fur-15": { + "rotate": [ + {"angle": -11.38, "curve": 0.329, "c2": 0.32, "c3": 0.758}, {"time": 0.1667, "angle": 7.75, "curve": 0.25, "c3": 0.75}, {"time": 0.3833, "angle": -14.99, "curve": 0.25, "c3": 0.75}, + {"time": 0.6167, "angle": 7.75, "curve": 0.25, "c3": 0.75}, {"time": 0.8333, "angle": -14.48, "curve": 0.25, "c3": 0.75}, {"time": 1.05, "angle": 7.75, "curve": 0.25, "c3": 0.75}, + {"time": 1.2833, "angle": -15.12, "curve": 0.279, "c3": 0.622, "c4": 0.39}, {"time": 1.3333, "angle": -11.38} ] }, - "leg-front-right-IK": { - "translate": [ - {"x": -13.57, "y": 17.19, "curve": 0.645, "c2": 0.47, "c4": 0.81}, {"time": 0.0167, "curve": 0.313, "c3": 0.699}, {"time": 0.2667, "x": 52.85, "curve": 0, "c2": 0.3, "c3": 0.544}, - {"time": 0.5, "x": -85.89, "y": 125.19}, {"time": 0.6, "x": -87.57, "y": 110.89, "curve": 0.142, "c3": 0.858, "c4": 0.77}, {"time": 0.75, "x": -13.57, "y": 17.19} + "body-fur-14": { + "rotate": [ + {"angle": -9.98, "curve": 0.381, "c2": 0.59, "c3": 0.729}, {"time": 0.0667, "angle": -15.12, "curve": 0.245, "c3": 0.64, "c4": 0.57}, + {"time": 0.2, "angle": -0.2, "curve": 0.382, "c2": 0.55, "c3": 0.741}, {"time": 0.2833, "angle": 7.75, "curve": 0.25, "c3": 0.75}, + {"time": 0.5, "angle": -14.99, "curve": 0.25, "c3": 0.75}, {"time": 0.7333, "angle": 7.75, "curve": 0.25, "c3": 0.75}, {"time": 0.95, "angle": -14.48, "curve": 0.25, "c3": 0.75}, + {"time": 1.1667, "angle": 7.75, "curve": 0.243, "c3": 0.658, "c4": 0.64}, {"time": 1.3333, "angle": -9.98} ] }, - "@leg-back-left": { - "translate": [ - {"x": -4.73, "y": 6.6, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.15, "x": 1.29, "y": -4.22, "curve": 0.44, "c2": 0.55, "c3": 0.858}, - {"time": 0.25, "x": 2.16, "y": 6.49, "curve": 0, "c2": 0.09, "c3": 0.466, "c4": 0.7}, {"time": 0.3, "x": -5.17, "y": 15.67, "curve": 0.218, "c2": 0.39, "c3": 0.738}, - {"time": 0.5333, "x": -14.09, "y": -7.98, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.6667, "x": -12.69, "y": -11.31, "curve": 0.315, "c4": 0.8}, {"time": 0.75, "x": -4.73, "y": 6.6} - ], - "scale": [{"curve": 0, "c2": 0.1, "c3": 0.457, "c4": 0.54}, {"time": 0.0667, "x": 0.837, "curve": 0.395, "c2": 0.49, "c3": 0.868}, {"time": 0.15}] + "body-fur-13": { + "rotate": [ + {"angle": -14.51, "curve": 0.281, "c2": 0.13, "c3": 0.754}, {"time": 0.2, "angle": 7.75, "curve": 0.25, "c3": 0.75}, {"time": 0.4167, "angle": -14.99, "curve": 0.25, "c3": 0.75}, + {"time": 0.65, "angle": 7.75, "curve": 0.25, "c3": 0.75}, {"time": 0.8667, "angle": -14.48, "curve": 0.25, "c3": 0.75}, {"time": 1.0833, "angle": 7.75, "curve": 0.25, "c3": 0.75}, + {"time": 1.3167, "angle": -15.12, "curve": 0.311, "c3": 0.645, "c4": 0.35}, {"time": 1.3333, "angle": -14.51} + ] }, - "@pivot-back": { + "body-fur-12": { "rotate": [ - {"angle": 3.74, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "angle": 1.5, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.25, "angle": -2, "curve": 0, "c2": 0.1, "c3": 0.85}, - {"time": 0.35, "angle": -5, "curve": 0.154, "c4": 0.9}, {"time": 0.6667, "angle": 5, "curve": 0.154, "c4": 0.9}, {"time": 0.75, "angle": 3.74} - ], - "translate": [ - {"y": 8, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "y": -10, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.25, "curve": 0, "c2": 0.1, "c3": 0.85}, - {"time": 0.5667, "y": 80.61, "curve": 0.154, "c4": 0.9}, {"time": 0.75, "y": 8} + {"angle": -7.16, "curve": 0.36, "c2": 0.43, "c3": 0.755}, {"time": 0.1333, "angle": 7.75, "curve": 0.25, "c3": 0.75}, {"time": 0.35, "angle": -14.99, "curve": 0.25, "c3": 0.75}, + {"time": 0.5833, "angle": 7.75, "curve": 0.25, "c3": 0.75}, {"time": 0.8, "angle": -14.48, "curve": 0.25, "c3": 0.75}, {"time": 1.0167, "angle": 7.75, "curve": 0.25, "c3": 0.75}, + {"time": 1.25, "angle": -15.12, "curve": 0.259, "c3": 0.618, "c4": 0.45}, {"time": 1.3333, "angle": -7.16} ] }, - "@pivot-main": {"scale": [{"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1333, "y": 0.85, "curve": 0.306, "c4": 0.8}, {"time": 0.25}]} - }, - "drawOrder": [ - {"time": 0.2833, "offsets": [{"slot": "leg-front-right", "offset": 6}, {"slot": "leg-front-left", "offset": 6}, {"slot": "leg-back-left", "offset": 2}]}, - {"time": 0.6333, "offsets": [{"slot": "leg-front-right", "offset": 6}, {"slot": "leg-back-left", "offset": 3}]} - ] - }, - "2717938682": { - "slots": {"eyes": {"attachment": [{"time": 1, "name": "eyes-shut"}, {"time": 1.0833, "name": "eyes"}]}}, - "bones": { - "@pivot-back": { + "body-fur-11": { "rotate": [ - {"curve": 0.313, "c3": 0.699}, {"time": 0.3333, "angle": 2.04, "curve": 0.313, "c3": 0.699}, {"time": 0.6667, "curve": 0.313, "c3": 0.699}, - {"time": 1, "angle": 1.79, "curve": 0.313, "c3": 0.699}, {"time": 1.3333} - ], - "translate": [ - {"curve": 0.313, "c3": 0.699}, {"time": 0.3333, "y": -6.53, "curve": 0.313, "c3": 0.699}, {"time": 0.6667, "curve": 0.313, "c3": 0.699}, - {"time": 1, "y": -8.86, "curve": 0.313, "c3": 0.699}, {"time": 1.3333} - ], - "scale": [{"curve": 0.313, "c3": 0.699}, {"time": 0.6667, "y": 0.99, "curve": 0.313, "c3": 0.699}, {"time": 1.3333}] + {"angle": -2.52, "curve": 0.378, "c2": 0.52, "c3": 0.747}, {"time": 0.1, "angle": 7.75, "curve": 0.25, "c3": 0.75}, {"time": 0.3167, "angle": -14.99, "curve": 0.25, "c3": 0.75}, + {"time": 0.55, "angle": 7.75, "curve": 0.25, "c3": 0.75}, {"time": 0.7667, "angle": -14.48, "curve": 0.25, "c3": 0.75}, {"time": 0.9833, "angle": 7.75, "curve": 0.25, "c3": 0.75}, + {"time": 1.2167, "angle": -15.12, "curve": 0.248, "c3": 0.629, "c4": 0.52}, {"time": 1.3333, "angle": -2.52} + ] }, - "@leg-front-right": { - "translate": [ - {"curve": 0.313, "c3": 0.699}, {"time": 0.3333, "x": 0.02, "y": -16.89, "curve": 0.313, "c3": 0.699}, {"time": 0.6667, "x": -0.04, "y": 2.46, "curve": 0.313, "c3": 0.699}, - {"time": 1, "x": -0.02, "y": -18.9, "curve": 0.313, "c3": 0.699}, {"time": 1.3333} + "body-fur-10": { + "rotate": [ + {"angle": 1.99, "curve": 0.382, "c2": 0.58, "c3": 0.732}, {"time": 0.0667, "angle": 7.75, "curve": 0.25, "c3": 0.75}, {"time": 0.2833, "angle": -14.99, "curve": 0.25, "c3": 0.75}, + {"time": 0.5167, "angle": 7.75, "curve": 0.25, "c3": 0.75}, {"time": 0.7333, "angle": -14.48, "curve": 0.25, "c3": 0.75}, {"time": 0.95, "angle": 7.75, "curve": 0.25, "c3": 0.75}, + {"time": 1.1833, "angle": -15.12, "curve": 0.243, "c3": 0.654, "c4": 0.62}, {"time": 1.3333, "angle": 1.99} ] }, - "@leg-front-left": { - "translate": [ - {"curve": 0.313, "c3": 0.699}, {"time": 0.3333, "x": 0.22, "y": -5.13, "curve": 0.313, "c3": 0.699}, {"time": 0.6667, "x": -0.03, "y": 1.81, "curve": 0.313, "c3": 0.699}, - {"time": 1, "x": 0.2, "y": -7.06, "curve": 0.313, "c3": 0.699}, {"time": 1.3333} - ], - "scale": [ - {"curve": 0.313, "c3": 0.699}, {"time": 0.3333, "x": 0.905, "curve": 0.313, "c3": 0.699}, {"time": 0.6667, "curve": 0.313, "c3": 0.699}, - {"time": 1, "x": 0.905, "curve": 0.313, "c3": 0.699}, {"time": 1.3333} + "body-fur-09": { + "rotate": [ + {"angle": -7.12, "curve": 0.329, "c2": 0.32, "c3": 0.671, "c4": 0.68}, {"time": 0.05, "angle": -0.2, "curve": 0.382, "c2": 0.55, "c3": 0.741}, + {"time": 0.1333, "angle": 7.75, "curve": 0.25, "c3": 0.75}, {"time": 0.35, "angle": -14.99, "curve": 0.25, "c3": 0.75}, {"time": 0.5833, "angle": 7.75, "curve": 0.25, "c3": 0.75}, + {"time": 0.8, "angle": -14.48, "curve": 0.25, "c3": 0.75}, {"time": 1.0167, "angle": 7.75, "curve": 0.25, "c3": 0.75}, + {"time": 1.25, "angle": -15.12, "curve": 0.259, "c3": 0.618, "c4": 0.45}, {"time": 1.3333, "angle": -7.12} ] }, - "@leg-back-left": { - "translate": [ - {"curve": 0.313, "c3": 0.699}, {"time": 0.3333, "x": 0.22, "y": -4.11, "curve": 0.313, "c3": 0.699}, {"time": 0.6667, "x": -0.03, "y": 1.69, "curve": 0.313, "c3": 0.699}, - {"time": 1, "x": 0.2, "y": -5.68, "curve": 0.313, "c3": 0.699}, {"time": 1.3333} - ], - "scale": [ - {"curve": 0.313, "c3": 0.699}, {"time": 0.3333, "x": 0.943, "curve": 0.313, "c3": 0.699}, {"time": 0.6667, "curve": 0.313, "c3": 0.699}, - {"time": 1, "x": 0.943, "curve": 0.313, "c3": 0.699}, {"time": 1.3333} + "body-fur-08": { + "rotate": [ + {"angle": 4.01, "curve": 0.378, "c2": 0.61, "c3": 0.721}, {"time": 0.05, "angle": 7.75, "curve": 0.25, "c3": 0.75}, {"time": 0.2667, "angle": -14.99, "curve": 0.25, "c3": 0.75}, + {"time": 0.5, "angle": 7.75, "curve": 0.25, "c3": 0.75}, {"time": 0.7167, "angle": -14.48, "curve": 0.25, "c3": 0.75}, {"time": 0.9333, "angle": 7.75, "curve": 0.25, "c3": 0.75}, + {"time": 1.1667, "angle": -15.12, "curve": 0.242, "c3": 0.671, "c4": 0.68}, {"time": 1.3333, "angle": 4.01} ] }, - "@pivot-main": { - "scale": [ - {"curve": 0.313, "c3": 0.699}, {"time": 0.3333, "y": 0.98, "curve": 0.313, "c3": 0.699}, {"time": 0.6667, "curve": 0.313, "c3": 0.699}, - {"time": 1, "y": 0.98, "curve": 0.313, "c3": 0.699}, {"time": 1.3333} + "body-fur-07": { + "rotate": [ + {"angle": -0.2, "curve": 0.382, "c2": 0.55, "c3": 0.741}, {"time": 0.0833, "angle": 7.75, "curve": 0.25, "c3": 0.75}, {"time": 0.3, "angle": -14.99, "curve": 0.25, "c3": 0.75}, + {"time": 0.5333, "angle": 7.75, "curve": 0.25, "c3": 0.75}, {"time": 0.75, "angle": -14.48, "curve": 0.25, "c3": 0.75}, {"time": 0.9667, "angle": 7.75, "curve": 0.25, "c3": 0.75}, + {"time": 1.2, "angle": -15.12, "curve": 0.245, "c3": 0.64, "c4": 0.57}, {"time": 1.3333, "angle": -0.2} ] }, - "tail": { - "rotate": [{"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "angle": 4.54, "curve": 0.313, "c3": 0.699}, {"time": 1, "angle": -9.06, "curve": 0.313, "c3": 0.699}, {"time": 1.3333}] + "body-fur-06": { + "rotate": [ + {"angle": -14.49, "curve": 0.271, "c2": 0.12, "c3": 0.65, "c4": 0.61}, {"time": 0.1167, "angle": -0.2, "curve": 0.382, "c2": 0.55, "c3": 0.741}, + {"time": 0.2, "angle": 7.75, "curve": 0.25, "c3": 0.75}, {"time": 0.4167, "angle": -14.99, "curve": 0.25, "c3": 0.75}, {"time": 0.65, "angle": 7.75, "curve": 0.25, "c3": 0.75}, + {"time": 0.8667, "angle": -14.48, "curve": 0.25, "c3": 0.75}, {"time": 1.0833, "angle": 7.75, "curve": 0.25, "c3": 0.75}, + {"time": 1.3167, "angle": -15.12, "curve": 0.311, "c3": 0.645, "c4": 0.35}, {"time": 1.3333, "angle": -14.49} + ] }, - "back": { - "rotate": [{"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "angle": -4.27, "curve": 0.313, "c3": 0.699}, {"time": 1, "angle": 2.83, "curve": 0.313, "c3": 0.699}, {"time": 1.3333}] + "body-fur-05": { + "rotate": [ + {"angle": -4.84, "curve": 0.371, "c2": 0.48, "c3": 0.752}, {"time": 0.1167, "angle": 7.75, "curve": 0.25, "c3": 0.75}, {"time": 0.3333, "angle": -14.99, "curve": 0.25, "c3": 0.75}, + {"time": 0.5667, "angle": 7.75, "curve": 0.25, "c3": 0.75}, {"time": 0.7833, "angle": -14.48, "curve": 0.25, "c3": 0.75}, {"time": 1, "angle": 7.75, "curve": 0.25, "c3": 0.75}, + {"time": 1.2333, "angle": -15.12, "curve": 0.253, "c3": 0.622, "c4": 0.48}, {"time": 1.3333, "angle": -4.84} + ] }, - "@shadow": { - "scale": [ - {"curve": 0.306, "c3": 0.695}, {"time": 0.3333, "x": 1.05, "y": 1.05, "curve": 0.306, "c3": 0.695}, {"time": 0.6667, "curve": 0.306, "c3": 0.695}, - {"time": 1, "x": 1.05, "y": 1.05, "curve": 0.306, "c3": 0.695}, {"time": 1.3333} + "body-fur-04": { + "rotate": [ + {"angle": -14.56, "curve": 0.354, "c2": 0.65, "c3": 0.688}, {"time": 0.0167, "angle": -15.12, "curve": 0.245, "c3": 0.64, "c4": 0.57}, + {"time": 0.15, "angle": -0.2, "curve": 0.382, "c2": 0.55, "c3": 0.741}, {"time": 0.2333, "angle": 7.75, "curve": 0.25, "c3": 0.75}, + {"time": 0.45, "angle": -14.99, "curve": 0.25, "c3": 0.75}, {"time": 0.6833, "angle": 7.75, "curve": 0.25, "c3": 0.75}, {"time": 0.9, "angle": -14.48, "curve": 0.25, "c3": 0.75}, + {"time": 1.1167, "angle": 7.75, "curve": 0.246, "c3": 0.721, "c4": 0.87}, {"time": 1.3333, "angle": -14.56} + ] + }, + "body-fur-03": { + "rotate": [ + {"angle": -9.36, "curve": 0.346, "c2": 0.38, "c3": 0.757}, {"time": 0.15, "angle": 7.75, "curve": 0.25, "c3": 0.75}, {"time": 0.3667, "angle": -14.99, "curve": 0.25, "c3": 0.75}, + {"time": 0.6, "angle": 7.75, "curve": 0.25, "c3": 0.75}, {"time": 0.8167, "angle": -14.48, "curve": 0.25, "c3": 0.75}, {"time": 1.0333, "angle": 7.75, "curve": 0.25, "c3": 0.75}, + {"time": 1.2667, "angle": -15.12, "curve": 0.268, "c3": 0.618, "c4": 0.42}, {"time": 1.3333, "angle": -9.36} + ] + }, + "body-fur-02": { + "rotate": [ + {"angle": -11.79, "curve": 0.376, "c2": 0.61, "c3": 0.718}, {"time": 0.05, "angle": -15.12, "curve": 0.245, "c3": 0.64, "c4": 0.57}, + {"time": 0.1833, "angle": -0.2, "curve": 0.382, "c2": 0.55, "c3": 0.741}, {"time": 0.2667, "angle": 7.75, "curve": 0.25, "c3": 0.75}, + {"time": 0.4833, "angle": -14.99, "curve": 0.25, "c3": 0.75}, {"time": 0.7167, "angle": 7.75, "curve": 0.25, "c3": 0.75}, {"time": 0.9333, "angle": -14.48, "curve": 0.25, "c3": 0.75}, + {"time": 1.15, "angle": 7.75, "curve": 0.243, "c3": 0.676, "c4": 0.7}, {"time": 1.3333, "angle": -11.79} + ] + }, + "body-fur-01": { + "rotate": [ + {"angle": -13.15, "curve": 0.307, "c2": 0.24, "c3": 0.756}, {"time": 0.1833, "angle": 7.75, "curve": 0.25, "c3": 0.75}, {"time": 0.4, "angle": -14.99, "curve": 0.25, "c3": 0.75}, + {"time": 0.6333, "angle": 7.75, "curve": 0.25, "c3": 0.75}, {"time": 0.85, "angle": -14.48, "curve": 0.25, "c3": 0.75}, {"time": 1.0667, "angle": 7.75, "curve": 0.25, "c3": 0.75}, + {"time": 1.3, "angle": -15.12, "curve": 0.293, "c3": 0.631, "c4": 0.37}, {"time": 1.3333, "angle": -13.15} ] } } }, - "2557998295": { + "3451796327": { "slots": { "eyes": {"attachment": [{"time": 0.05, "name": "eyes-angry"}, {"time": 0.8833, "name": "eyes"}]}, "mouth": {"attachment": [{"time": 0.05, "name": "mouth-bite"}, {"time": 0.4667, "name": "mouth-open"}, {"time": 0.75, "name": "mouth-bite"}, {"time": 0.8833, "name": "mouth"}]} @@ -19965,105 +28464,123 @@ {"time": 0.6667, "angle": 24.81, "curve": 0.701, "c4": 0.5}, {"time": 0.8833, "angle": -15.84, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 1} ] }, - "body-braid-02": { + "body-fur-16": { "rotate": [ - {"angle": 3.5, "curve": 0.348, "c2": 0.38, "c3": 0.685, "c4": 0.73}, {"time": 0.3167, "angle": 29.04, "curve": 0.25, "c3": 0.75}, - {"time": 0.5667, "angle": 25.88, "curve": 0.25, "c3": 0.144}, {"time": 0.8167, "angle": 41.04, "curve": 0.25, "c3": 0.75}, {"time": 1, "angle": 3.5} + {"angle": -26.19, "curve": 0.25, "c3": 0.75}, {"time": 0.1, "curve": 0.25, "c3": 0.75}, {"time": 0.2667, "angle": 24.86, "curve": 0.25, "c3": 0.75}, + {"time": 0.5333, "angle": -36.65, "curve": 0.25, "c3": 0.75}, {"time": 0.6667, "angle": 38.65, "curve": 0.25, "c3": 0.75}, {"time": 0.8667, "curve": 0.25, "c3": 0.75}, + {"time": 1, "angle": 13.84} ] }, - "body-braid-03": { + "body-fur-15": { "rotate": [ - {"angle": -1.71, "curve": 0.337, "c2": 0.34, "c3": 0.673, "c4": 0.69}, {"time": 0.0333, "curve": 0.25, "c3": 0.75}, {"time": 0.35, "angle": 45.56, "curve": 0.25, "c3": 0.75}, - {"time": 0.6167, "angle": -13.49, "curve": 0.25, "c3": 0.144}, {"time": 0.85, "angle": 45.56, "curve": 0.243, "c3": 0.68, "c4": 0.71}, {"time": 1, "angle": -1.71} + {"angle": -23.67, "curve": 0.311, "c2": 0.25, "c3": 0.757}, {"time": 0.0833, "curve": 0.25, "c3": 0.75}, {"time": 0.25, "angle": 24.86, "curve": 0.25, "c3": 0.75}, + {"time": 0.5167, "angle": -36.65, "curve": 0.25, "c3": 0.75}, {"time": 0.65, "angle": 38.65, "curve": 0.25, "c3": 0.75}, {"time": 0.85, "curve": 0.25, "c3": 0.75}, + {"time": 1, "angle": 13.33} ] }, - "body-braid-04": { + "body-fur-14": { "rotate": [ - {"angle": -9.29, "curve": 0.323, "c2": 0.3, "c3": 0.66, "c4": 0.65}, {"time": 0.0833, "curve": 0.25, "c3": 0.75}, {"time": 0.4, "angle": 36.13, "curve": 0.25, "c3": 0.75}, - {"time": 0.6667, "angle": -30, "curve": 0.25, "c3": 0.144}, {"time": 0.9, "angle": 36.13, "curve": 0.248, "c3": 0.628, "c4": 0.52}, {"time": 1, "angle": -9.29} + {"angle": -24.55, "curve": 0.364, "c2": 0.64, "c3": 0.701}, {"time": 0.0167, "angle": -26.19, "curve": 0.243, "c3": 0.649, "c4": 0.6}, + {"time": 0.0833, "angle": -7.43, "curve": 0.382, "c2": 0.57, "c3": 0.735}, {"time": 0.1167, "curve": 0.25, "c3": 0.75}, {"time": 0.2833, "angle": 24.86, "curve": 0.25, "c3": 0.75}, + {"time": 0.55, "angle": -36.65, "curve": 0.25, "c3": 0.75}, {"time": 0.6833, "angle": 38.65, "curve": 0.25, "c3": 0.75}, {"time": 0.8833, "curve": 0.244, "c3": 0.702, "c4": 0.8}, + {"time": 1, "angle": 13.33} ] }, - "body-braid-05": { + "body-fur-13": { "rotate": [ - {"angle": -8.3, "curve": 0.294, "c3": 0.631, "c4": 0.37}, {"time": 0.15, "curve": 0.25, "c3": 0.75}, {"time": 0.4667, "angle": -7.54, "curve": 0.25, "c3": 0.75}, - {"time": 0.7167, "angle": -31.56, "curve": 0.25, "c3": 0.144}, {"time": 0.9667, "angle": -7.54, "curve": 0.284, "c3": 0.625, "c4": 0.38}, {"time": 1, "angle": -8.3} + {"angle": -23.67, "curve": 0.311, "c2": 0.25, "c3": 0.757}, {"time": 0.0833}, {"time": 0.25, "angle": 24.86, "curve": 0.25, "c3": 0.75}, + {"time": 0.5167, "angle": -36.65, "curve": 0.25, "c3": 0.75}, {"time": 0.65, "angle": 38.65, "curve": 0.25, "c3": 0.75}, {"time": 0.85, "curve": 0.25, "c3": 0.75}, + {"time": 1, "angle": 11.59} ] }, - "body-braid-06": { + "body-fur-12": { "rotate": [ - {"angle": -20.59, "curve": 0.352, "c2": 0.41, "c3": 0.689, "c4": 0.75}, {"time": 0.0333, "angle": 1.41, "curve": 0.25, "c3": 0.75}, {"time": 0.2167, "curve": 0.25, "c3": 0.75}, - {"time": 0.5333, "angle": 1.41, "curve": 0.25, "c3": 0.75}, {"time": 0.8, "angle": -42.25, "curve": 0.25, "c3": 0.144}, {"time": 1, "angle": -20.59} + {"angle": -18.76, "curve": 0.351, "c2": 0.4, "c3": 0.757}, {"time": 0.0667, "curve": 0.25, "c3": 0.75}, {"time": 0.2333, "angle": 24.86, "curve": 0.25, "c3": 0.75}, + {"time": 0.5, "angle": -36.65, "curve": 0.25, "c3": 0.75}, {"time": 0.6333, "angle": 38.65, "curve": 0.25, "c3": 0.75}, {"time": 0.8333, "curve": 0.25, "c3": 0.75}, + {"time": 0.9667, "angle": -26.19, "curve": 0.265, "c3": 0.618, "c4": 0.43}, {"time": 1, "angle": 8.12} ] }, - "body-fur-under-04": { - "translate": [ - {"x": -0.33, "y": 3.2, "curve": 0.348, "c2": 0.39, "c3": 0.683, "c4": 0.73}, {"time": 0.0333, "x": -0.15, "y": 1.46, "curve": 0.369, "c2": 0.63, "c3": 0.706}, - {"time": 0.0667, "curve": 0.25, "c3": 0.75}, {"time": 0.3167, "x": 3.59, "y": -11.21, "curve": 0.25, "c3": 0.75}, {"time": 0.4333, "x": -14.26, "y": 19.9, "curve": 0.25, "c3": 0.75}, - {"time": 0.5667, "x": 0.07, "y": 10.3, "curve": 0.25, "c3": 0.75}, {"time": 0.6833, "x": -24.88, "y": 22.21, "curve": 0.25, "c3": 0.75}, - {"time": 0.8167, "x": -1.82, "y": 17.62, "curve": 0.242, "c3": 0.667, "c4": 0.67}, {"time": 1, "x": -0.33, "y": 3.2} - ], - "shear": [ - {"x": 10.24, "curve": 0.36, "c2": 0.64, "c3": 0.695}, {"time": 0.0333, "curve": 0.25, "c3": 0.75}, {"time": 0.2833, "x": -0.05, "curve": 0.25, "c3": 0.75}, - {"time": 0.4167, "x": 18.75, "curve": 0.25, "c3": 0.75}, {"time": 0.5333, "x": 47.55, "curve": 0.25, "c3": 0.75}, {"time": 0.6667, "x": 9.03, "y": 3.36, "curve": 0.25, "c3": 0.75}, - {"time": 0.7833, "x": 47.37, "curve": 0.244, "c3": 0.694, "c4": 0.77}, {"time": 1, "x": 10.24} + "body-fur-11": { + "rotate": [ + {"angle": -13.1, "curve": 0.375, "c2": 0.5, "c3": 0.75}, {"time": 0.05, "curve": 0.25, "c3": 0.75}, {"time": 0.2167, "angle": 24.86, "curve": 0.25, "c3": 0.75}, + {"time": 0.4833, "angle": -36.65, "curve": 0.25, "c3": 0.75}, {"time": 0.6167, "angle": 38.65, "curve": 0.25, "c3": 0.75}, {"time": 0.8167, "curve": 0.25, "c3": 0.75}, + {"time": 0.95, "angle": -26.19, "curve": 0.25, "c3": 0.625, "c4": 0.5}, {"time": 1, "angle": 4.23} ] }, - "body-fur-under-03": { - "translate": [ - {"x": -0.78, "y": 3.19, "curve": 0.338, "c2": 0.35, "c3": 0.672, "c4": 0.69}, {"time": 0.0167, "x": -0.59, "y": 2.43, "curve": 0.379, "c2": 0.6, "c3": 0.724}, - {"time": 0.0833, "curve": 0.25, "c3": 0.75}, {"time": 0.3333, "x": 3.59, "y": -11.21, "curve": 0.25, "c3": 0.75}, {"time": 0.45, "x": -14.26, "y": 19.9, "curve": 0.25, "c3": 0.75}, - {"time": 0.5833, "x": 0.07, "y": 10.3, "curve": 0.25, "c3": 0.75}, {"time": 0.7, "x": -26.35, "y": 20.75, "curve": 0.25, "c3": 0.75}, - {"time": 0.8333, "x": -3.2, "y": 13.18, "curve": 0.243, "c3": 0.655, "c4": 0.63}, {"time": 1, "x": -0.78, "y": 3.19} - ], - "shear": [ - {"x": 22.47, "curve": 0.25, "c3": 0.75}, {"time": 0.0667, "curve": 0.25, "c3": 0.75}, {"time": 0.3167, "x": 0.35, "curve": 0.25, "c3": 0.75}, - {"time": 0.4333, "x": 26.04, "y": -7.3, "curve": 0.25, "c3": 0.75}, {"time": 0.5667, "x": 47.96, "curve": 0.25, "c3": 0.75}, - {"time": 0.6833, "x": 16.32, "y": -3.94, "curve": 0.25, "c3": 0.75}, {"time": 0.8167, "x": 47.78, "curve": 0.242, "c3": 0.667, "c4": 0.67}, {"time": 1, "x": 22.47} + "body-fur-10": { + "rotate": [ + {"angle": -7.43, "curve": 0.382, "c2": 0.57, "c3": 0.735}, {"time": 0.0333, "curve": 0.25, "c3": 0.75}, {"time": 0.2, "angle": 24.86, "curve": 0.25, "c3": 0.75}, + {"time": 0.4667, "angle": -36.65, "curve": 0.25, "c3": 0.75}, {"time": 0.6, "angle": 38.65, "curve": 0.25, "c3": 0.75}, {"time": 0.8, "curve": 0.25, "c3": 0.75}, + {"time": 0.9333, "angle": -26.19, "curve": 0.243, "c3": 0.649, "c4": 0.6}, {"time": 1, "angle": 0.34} ] }, - "body-fur-under-05": { - "translate": [ - {"x": 0.53, "y": 14.98, "curve": 0.335, "c2": 0.34, "c3": 0.674, "c4": 0.69}, {"time": 0.05, "x": 0.29, "y": 8.07, "curve": 0.382, "c2": 0.57, "c3": 0.737}, - {"time": 0.1333, "curve": 0.25, "c3": 0.75}, {"time": 0.3833, "x": 3.59, "y": -11.21, "curve": 0.25, "c3": 0.75}, {"time": 0.5167, "x": -14.26, "y": 19.9, "curve": 0.25, "c3": 0.75}, - {"time": 0.6333, "x": 0.07, "y": 10.3, "curve": 0.25, "c3": 0.75}, {"time": 0.7667, "x": -11.61, "y": 26.55, "curve": 0.25, "c3": 0.75}, - {"time": 0.8833, "x": 0.95, "y": 26.5, "curve": 0.253, "c3": 0.621, "c4": 0.48}, {"time": 1, "x": 0.53, "y": 14.98} - ], - "shear": [ - {"x": 3.7, "curve": 0.382, "c2": 0.57, "c3": 0.737}, {"time": 0.0833, "curve": 0.25, "c3": 0.75}, {"time": 0.3333, "x": 1.13, "y": -4.12, "curve": 0.25, "c3": 0.75}, - {"time": 0.4667, "x": 23.64, "curve": 0.25, "c3": 0.75}, {"time": 0.5833, "x": 48.74, "y": -4.12, "curve": 0.25, "c3": 0.75}, - {"time": 0.7167, "x": 13.91, "y": 3.36, "curve": 0.25, "c3": 0.75}, {"time": 0.8333, "x": 69.84, "y": -4.12, "curve": 0.244, "c3": 0.646, "c4": 0.59}, {"time": 1, "x": 3.7} + "body-fur-09": { + "rotate": [ + {"angle": -23.66, "curve": 0.295, "c2": 0.21, "c3": 0.667, "c4": 0.67}, {"time": 0.05, "angle": -7.43, "curve": 0.382, "c2": 0.57, "c3": 0.735}, {"time": 0.0833}, + {"time": 0.25, "angle": 24.86, "curve": 0.25, "c3": 0.75}, {"time": 0.5167, "angle": -36.65, "curve": 0.25, "c3": 0.75}, {"time": 0.65, "angle": 38.65, "curve": 0.25, "c3": 0.75}, + {"time": 0.85, "curve": 0.25, "c3": 0.75}, {"time": 1, "angle": 6.86} ] }, - "body-fur-under-02": { - "translate": [ - {"x": -2.23, "y": 6.28, "curve": 0.352, "c2": 0.41, "c3": 0.689, "c4": 0.75}, {"time": 0.0333, "x": -0.78, "y": 2.18, "curve": 0.369, "c2": 0.63, "c3": 0.706}, - {"time": 0.0833, "curve": 0.25, "c3": 0.75}, {"time": 0.3333, "x": 3.59, "y": -11.21, "curve": 0.25, "c3": 0.75}, {"time": 0.45, "x": -14.26, "y": 19.9, "curve": 0.25, "c3": 0.75}, - {"time": 0.5833, "x": 0.07, "y": 10.3, "curve": 0.25, "c3": 0.75}, {"time": 0.7, "x": -32.26, "y": 17.84, "curve": 0.25, "c3": 0.75}, - {"time": 0.8333, "x": -9.35, "y": 26.3, "curve": 0.243, "c3": 0.655, "c4": 0.63}, {"time": 1, "x": -2.23, "y": 6.28} - ], - "shear": [ - {"x": -27.8, "curve": 0.375, "c2": 0.62, "c3": 0.716}, {"time": 0.0333, "curve": 0.25, "c3": 0.75}, {"time": 0.2833, "x": -2.26, "curve": 0.25, "c3": 0.75}, - {"time": 0.4167, "x": 32.83, "curve": 0.25, "c3": 0.75}, {"time": 0.5333, "x": 45.35, "curve": 0.25, "c3": 0.75}, {"time": 0.6667, "x": 23.11, "y": 3.36, "curve": 0.25, "c3": 0.75}, - {"time": 0.7833, "x": 45.16, "curve": 0.244, "c3": 0.694, "c4": 0.77}, {"time": 1, "x": -27.8} + "body-fur-08": { + "rotate": [ + {"angle": -13.1, "curve": 0.375, "c2": 0.5, "c3": 0.75}, {"time": 0.05}, {"time": 0.2167, "angle": 24.86, "curve": 0.25, "c3": 0.75}, + {"time": 0.4833, "angle": -36.65, "curve": 0.25, "c3": 0.75}, {"time": 0.6167, "angle": 38.65, "curve": 0.25, "c3": 0.75}, {"time": 0.8167, "curve": 0.25, "c3": 0.75}, + {"time": 0.95, "angle": -26.19, "curve": 0.25, "c3": 0.625, "c4": 0.5}, {"time": 1, "angle": -0.91} ] }, - "body-fur-under-01": { - "translate": [ - {"x": -0.14, "y": 0.84, "curve": 0.343, "c2": 0.39, "c3": 0.677, "c4": 0.73}, {"time": 0.0167, "x": -0.07, "y": 0.44, "curve": 0.36, "c2": 0.64, "c3": 0.695}, - {"time": 0.0333, "curve": 0.25, "c3": 0.75}, {"time": 0.2833, "x": 3.59, "y": -11.21, "curve": 0.25, "c3": 0.75}, {"time": 0.4167, "x": -14.26, "y": 19.9, "curve": 0.25, "c3": 0.75}, - {"time": 0.5333, "x": 0.07, "y": 10.3, "curve": 0.25, "c3": 0.75}, {"time": 0.6667, "x": -11.61, "y": 26.55, "curve": 0.25, "c3": 0.75}, - {"time": 0.7833, "x": -1.67, "y": 10.27, "curve": 0.244, "c3": 0.694, "c4": 0.77}, {"time": 1, "x": -0.14, "y": 0.84} - ], - "shear": [ - {"x": -4.09, "curve": 0.375, "c2": 0.5, "c3": 0.75}, {"time": 0.0333, "curve": 0.25, "c3": 0.75}, {"time": 0.2833, "x": -2.74, "y": 10.77, "curve": 0.25, "c3": 0.75}, - {"time": 0.4, "x": 55.89, "y": -8.05, "curve": 0.25, "c3": 0.75}, {"time": 0.5333, "x": 44.86, "y": 10.77, "curve": 0.25, "c3": 0.75}, - {"time": 0.65, "x": 46.17, "y": -4.69, "curve": 0.25, "c3": 0.75}, {"time": 0.7833, "x": 44.68, "y": 10.77, "curve": 0.245, "c3": 0.711, "c4": 0.83}, {"time": 1, "x": -4.09} + "body-fur-07": { + "rotate": [ + {"angle": -2.53, "curve": 0.371, "c2": 0.62, "c3": 0.71}, {"time": 0.0167, "curve": 0.25, "c3": 0.75}, {"time": 0.1833, "angle": 24.86, "curve": 0.25, "c3": 0.75}, + {"time": 0.45, "angle": -36.65, "curve": 0.25, "c3": 0.75}, {"time": 0.5833, "angle": 38.65, "curve": 0.25, "c3": 0.75}, {"time": 0.7833, "curve": 0.25, "c3": 0.75}, + {"time": 0.9167, "angle": -26.19, "curve": 0.243, "c3": 0.689, "c4": 0.75}, {"time": 1, "angle": 2.91} ] }, - "body-braid-01": {"rotate": [{"angle": 2.31}]} - } + "body-fur-06": { + "rotate": [ + {"angle": -18.74, "curve": 0.325, "c2": 0.31, "c3": 0.675, "c4": 0.69}, {"time": 0.0333, "angle": -7.43, "curve": 0.382, "c2": 0.57, "c3": 0.735}, {"time": 0.0667}, + {"time": 0.2333, "angle": 24.86, "curve": 0.25, "c3": 0.75}, {"time": 0.5, "angle": -36.65, "curve": 0.25, "c3": 0.75}, {"time": 0.6333, "angle": 38.65, "curve": 0.25, "c3": 0.75}, + {"time": 0.8333, "curve": 0.25, "c3": 0.75}, {"time": 0.9667, "angle": -26.19, "curve": 0.265, "c3": 0.618, "c4": 0.43}, {"time": 1, "angle": 13.33} + ] + }, + "body-fur-05": { + "rotate": [ + {"angle": -7.43, "curve": 0.382, "c2": 0.57, "c3": 0.735}, {"time": 0.0333}, {"time": 0.2, "angle": 24.86, "curve": 0.25, "c3": 0.75}, + {"time": 0.4667, "angle": -36.65, "curve": 0.25, "c3": 0.75}, {"time": 0.6, "angle": 38.65, "curve": 0.25, "c3": 0.75}, {"time": 0.8, "curve": 0.25, "c3": 0.75}, + {"time": 0.9333, "angle": -26.19, "curve": 0.243, "c3": 0.649, "c4": 0.6}, {"time": 1, "angle": 6.86} + ] + }, + "body-fur-04": { + "rotate": [ + {"angle": -23.66, "curve": 0.295, "c2": 0.21, "c3": 0.667, "c4": 0.67}, {"time": 0.05, "angle": -7.43, "curve": 0.382, "c2": 0.57, "c3": 0.735}, {"time": 0.0833}, + {"time": 0.25, "angle": 24.86, "curve": 0.25, "c3": 0.75}, {"time": 0.5167, "angle": -36.65, "curve": 0.25, "c3": 0.75}, {"time": 0.65, "angle": 38.65, "curve": 0.25, "c3": 0.75}, + {"time": 0.85, "curve": 0.25, "c3": 0.75}, {"time": 1, "angle": 12.53} + ] + }, + "body-fur-03": { + "rotate": [ + {"angle": -13.1, "curve": 0.375, "c2": 0.5, "c3": 0.75}, {"time": 0.05}, {"time": 0.2167, "angle": 24.86, "curve": 0.25, "c3": 0.75}, + {"time": 0.4833, "angle": -36.65, "curve": 0.25, "c3": 0.75}, {"time": 0.6167, "angle": 38.65, "curve": 0.25, "c3": 0.75}, {"time": 0.8167, "curve": 0.25, "c3": 0.75}, + {"time": 0.95, "angle": -26.19, "curve": 0.25, "c3": 0.625, "c4": 0.5}, {"time": 1, "angle": 5.54} + ] + }, + "body-fur-02": { + "rotate": [ + {"angle": -26.19, "curve": 0.243, "c3": 0.649, "c4": 0.6}, {"time": 0.0667, "angle": -7.43, "curve": 0.382, "c2": 0.57, "c3": 0.735}, {"time": 0.1}, + {"time": 0.2667, "angle": 24.86, "curve": 0.25, "c3": 0.75}, {"time": 0.5333, "angle": -36.65, "curve": 0.25, "c3": 0.75}, {"time": 0.6667, "angle": 38.65, "curve": 0.25, "c3": 0.75}, + {"time": 0.8667, "curve": 0.25, "c3": 0.75}, {"time": 1, "angle": 13.84} + ] + }, + "body-fur-01": { + "rotate": [ + {"angle": -18.76, "curve": 0.351, "c2": 0.4, "c3": 0.757}, {"time": 0.0667}, {"time": 0.2333, "angle": 24.86, "curve": 0.25, "c3": 0.75}, + {"time": 0.5, "angle": -36.65, "curve": 0.25, "c3": 0.75}, {"time": 0.6333, "angle": 38.65, "curve": 0.25, "c3": 0.75}, {"time": 0.8333, "curve": 0.25, "c3": 0.75}, + {"time": 0.9667, "angle": -26.19, "curve": 0.265, "c3": 0.618, "c4": 0.43}, {"time": 1, "angle": 10.51} + ] + } + }, + "events": [{"time": 0.4667, "name": "start-attack"}] }, - "260375190": { + "2081555660": { "slots": { "eyes": {"attachment": [{"time": 0.0833, "name": "eyes-angry"}, {"time": 0.6667, "name": "eyes-shut"}, {"time": 0.75, "name": "eyes"}]}, "mouth": {"attachment": [{"time": 0.0833, "name": "mouth-bite"}, {"time": 0.35, "name": "mouth-open"}, {"time": 0.55, "name": "mouth-bite"}, {"time": 0.75, "name": "mouth"}]} @@ -20137,87 +28654,127 @@ {"time": 0.7167, "x": 1.1, "y": 1.1, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.9167} ] }, - "body-braid-02": { + "body-fur-01": { "rotate": [ - {"angle": 3.5, "curve": 0.348, "c2": 0.38, "c3": 0.685, "c4": 0.73}, {"time": 0.1667, "angle": 2.2, "curve": 0.378, "c2": 0.61, "c3": 0.721}, - {"time": 0.2333, "angle": 2.63, "curve": 0.25, "c3": 0}, {"time": 0.55, "angle": 20.83, "curve": 0.25, "c3": 0.75}, {"time": 0.85, "curve": 0.284, "c3": 0.625, "c4": 0.38}, - {"time": 0.9167, "angle": 3.5} + {"angle": -7.13, "curve": 0.375, "c2": 0.5, "c3": 0.75}, {"time": 0.0667}, {"time": 0.2333, "angle": 21.78, "curve": 0.25, "c3": 0.75}, + {"time": 0.3667, "angle": -6.87, "curve": 0.25, "c3": 0.75}, {"time": 0.4667, "angle": 28.66, "curve": 0.25, "c3": 0.75}, {"time": 0.5667, "angle": -32.59, "curve": 0.25, "c3": 0.75}, + {"time": 0.7333, "angle": 24.66, "curve": 0.25, "c3": 0.75}, {"time": 0.85, "angle": -14.25, "curve": 0.25, "c3": 0.625, "c4": 0.5}, {"time": 0.9167, "angle": 10.51} ] }, - "body-braid-03": { + "body-fur-02": { "rotate": [ - {"angle": -1.71, "curve": 0.337, "c2": 0.34, "c3": 0.673, "c4": 0.69}, {"time": 0.1667, "angle": 1.7, "curve": 0.352, "c2": 0.4, "c3": 0.693, "c4": 0.76}, - {"time": 0.2333, "angle": 2.35, "curve": 0.372, "c2": 0.62, "c3": 0}, {"time": 0.2833, "angle": 2.63, "curve": 0.25, "c3": 0}, - {"time": 0.5833, "angle": 23.44, "curve": 0.244, "c3": 0.7, "c4": 0.79}, {"time": 0.85, "angle": 1.63, "curve": 0.366, "c2": 0.63, "c3": 0.703}, - {"time": 0.8833, "curve": 0.313, "c3": 0.648, "c4": 0.35}, {"time": 0.9167, "angle": -1.71} + {"angle": -11.6, "curve": 0.314, "c2": 0.27, "c3": 0.686, "c4": 0.73}, {"time": 0.0667, "angle": -2.63, "curve": 0.379, "c2": 0.6, "c3": 0.724}, {"time": 0.1}, + {"time": 0.2667, "angle": 21.78, "curve": 0.25, "c3": 0.75}, {"time": 0.4, "angle": -6.87, "curve": 0.25, "c3": 0.75}, {"time": 0.5, "angle": 28.66, "curve": 0.25, "c3": 0.75}, + {"time": 0.6, "angle": -32.59, "curve": 0.25, "c3": 0.75}, {"time": 0.7667, "angle": 24.66, "curve": 0.25, "c3": 0.75}, + {"time": 0.8833, "angle": -14.25, "curve": 0.276, "c3": 0.621, "c4": 0.4}, {"time": 0.9167, "angle": 13.84} ] }, - "body-braid-04": { + "body-fur-03": { "rotate": [ - {"angle": -9.29, "curve": 0.323, "c2": 0.3, "c3": 0.66, "c4": 0.65}, {"time": 0.0333, "curve": 0.255, "c3": 0.62, "c4": 0.47}, - {"time": 0.1667, "angle": 1.08, "curve": 0.334, "c2": 0.33, "c3": 0.674, "c4": 0.69}, {"time": 0.2333, "angle": 1.82, "curve": 0.382, "c2": 0.56, "c3": 0}, - {"time": 0.35, "angle": 2.63, "curve": 0.25, "c3": 0}, {"time": 0.65, "angle": 16.91, "curve": 0.243, "c3": 0.649, "c4": 0.6}, - {"time": 0.85, "angle": 4.8, "curve": 0.356, "c2": 0.42, "c3": 0.696, "c4": 0.78}, {"time": 0.9167, "angle": -9.29} + {"angle": -4.79, "curve": 0.382, "c2": 0.56, "c3": 0.74}, {"time": 0.05}, {"time": 0.2167, "angle": 21.78, "curve": 0.25, "c3": 0.75}, + {"time": 0.35, "angle": -6.87, "curve": 0.25, "c3": 0.75}, {"time": 0.45, "angle": 28.66, "curve": 0.25, "c3": 0.75}, {"time": 0.55, "angle": -32.59, "curve": 0.25, "c3": 0.75}, + {"time": 0.7167, "angle": 24.66, "curve": 0.25, "c3": 0.75}, {"time": 0.8333, "angle": -14.25, "curve": 0.244, "c3": 0.641, "c4": 0.57}, {"time": 0.9167, "angle": 5.54} ] }, - "body-braid-05": { + "body-fur-04": { "rotate": [ - {"angle": -8.3, "curve": 0.294, "c3": 0.631, "c4": 0.37}, {"time": 0.1167, "curve": 0.292, "c3": 0.63, "c4": 0.37}, - {"time": 0.1667, "angle": -0.94, "curve": 0.306, "c2": 0.23, "c3": 0.646, "c4": 0.59}, {"time": 0.2333, "angle": -3.52, "curve": 0.359, "c2": 0.43, "c3": 0}, - {"time": 0.4167, "angle": -10.49, "curve": 0.25, "c3": 0}, {"time": 0.7333, "angle": 8.22, "curve": 0.258, "c3": 0.619, "c4": 0.45}, - {"time": 0.85, "angle": 5.2, "curve": 0.33, "c2": 0.32, "c3": 0.67, "c4": 0.68}, {"time": 0.9167, "angle": -8.3} + {"angle": -9.42, "curve": 0.333, "c2": 0.33, "c3": 0.688, "c4": 0.73}, {"time": 0.05, "angle": -2.63, "curve": 0.379, "c2": 0.6, "c3": 0.724}, {"time": 0.0833}, + {"time": 0.25, "angle": 21.78, "curve": 0.25, "c3": 0.75}, {"time": 0.3833, "angle": -6.87, "curve": 0.25, "c3": 0.75}, {"time": 0.4833, "angle": 28.66, "curve": 0.25, "c3": 0.75}, + {"time": 0.5833, "angle": -32.59, "curve": 0.25, "c3": 0.75}, {"time": 0.75, "angle": 24.66, "curve": 0.25, "c3": 0.75}, + {"time": 0.8667, "angle": -14.25, "curve": 0.26, "c3": 0.618, "c4": 0.44}, {"time": 0.9167, "angle": 12.53} ] }, - "body-braid-06": { + "body-fur-05": { "rotate": [ - {"angle": -20.59, "curve": 0.352, "c2": 0.41, "c3": 0.689, "c4": 0.75}, {"time": 0.1667, "angle": 0.47, "curve": 0.362, "c2": 0.64, "c3": 0.698}, {"time": 0.2, "curve": 0.301, "c3": 0}, - {"time": 0.2333, "angle": -1.65, "curve": 0.295, "c2": 0.19, "c3": 0}, {"time": 0.5, "angle": -28.99, "curve": 0.25, "c3": 0.228, "c4": 0.99}, - {"time": 0.8167, "angle": 9.53, "curve": 0.297, "c3": 0.634, "c4": 0.37}, {"time": 0.85, "angle": 8.86, "curve": 0.304, "c2": 0.22, "c3": 0.644, "c4": 0.58}, - {"time": 0.9167, "angle": -20.59} + {"angle": -2.63, "curve": 0.379, "c2": 0.6, "c3": 0.724}, {"time": 0.0333, "curve": 0.25, "c3": 0.75}, {"time": 0.2, "angle": 21.78, "curve": 0.25, "c3": 0.75}, + {"time": 0.3333, "angle": -6.87, "curve": 0.25, "c3": 0.75}, {"time": 0.4333, "angle": 28.66, "curve": 0.25, "c3": 0.75}, {"time": 0.5333, "angle": -32.59, "curve": 0.25, "c3": 0.75}, + {"time": 0.7, "angle": 24.66, "curve": 0.25, "c3": 0.75}, {"time": 0.8167, "angle": -14.25, "curve": 0.242, "c3": 0.667, "c4": 0.67}, {"time": 0.9167, "angle": 6.86} ] }, - "body-fur-under-05": { - "shear": [ - {"x": 3.7, "curve": 0.382, "c2": 0.57, "c3": 0.737}, {"time": 0.0667, "x": 0.88, "curve": 0.382, "c2": 0.56, "c3": 0.738}, - {"time": 0.1833, "x": 6.85, "curve": 0.25, "c3": 0.228, "c4": 0.99}, {"time": 0.4833, "x": -44.3, "curve": 0.248, "c3": 0.628, "c4": 0.52}, - {"time": 0.65, "x": -27.02, "curve": 0.356, "c2": 0.41, "c3": 0.707, "c4": 0.81}, {"time": 0.75, "x": -14.63, "curve": 0.366, "c2": 0.63, "c3": 0.703}, - {"time": 0.7833, "x": -12.53, "curve": 0.255, "c3": 0.62, "c4": 0.47}, {"time": 0.9167, "x": 3.7} + "body-fur-06": { + "rotate": [ + {"angle": -7.08, "curve": 0.343, "c2": 0.36, "c3": 0.686, "c4": 0.73}, {"time": 0.0333, "angle": -2.63, "curve": 0.379, "c2": 0.6, "c3": 0.724}, + {"time": 0.0667, "curve": 0.25, "c3": 0.75}, {"time": 0.2333, "angle": 21.78, "curve": 0.25, "c3": 0.75}, {"time": 0.3667, "angle": -6.87, "curve": 0.25, "c3": 0.75}, + {"time": 0.4667, "angle": 28.66, "curve": 0.25, "c3": 0.75}, {"time": 0.5667, "angle": -32.59, "curve": 0.25, "c3": 0.75}, {"time": 0.7333, "angle": 24.66, "curve": 0.25, "c3": 0.75}, + {"time": 0.85, "angle": -14.25, "curve": 0.25, "c3": 0.625, "c4": 0.5}, {"time": 0.9167, "angle": 13.33} ] }, - "body-fur-under-04": { - "shear": [ - {"x": 10.24, "curve": 0.36, "c2": 0.64, "c3": 0.695}, {"time": 0.0667, "x": 8.81, "curve": 0.378, "c2": 0.6, "c3": 0.722}, - {"time": 0.1333, "x": 13.82, "curve": 0.25, "c3": 0.228, "c4": 0.99}, {"time": 0.4333, "x": -39.88, "curve": 0.243, "c3": 0.649, "c4": 0.6}, - {"time": 0.65, "x": -22.71, "curve": 0.382, "c2": 0.57, "c3": 0.735}, {"time": 0.75, "x": -15.91, "curve": 0.247, "c3": 0.63, "c4": 0.52}, {"time": 0.9167, "x": 10.24} + "body-fur-07": { + "rotate": [ + {"angle": -0.89, "curve": 0.364, "c2": 0.64, "c3": 0.701}, {"time": 0.0167, "curve": 0.25, "c3": 0.75}, {"time": 0.1833, "angle": 21.78, "curve": 0.25, "c3": 0.75}, + {"time": 0.3167, "angle": -6.87, "curve": 0.25, "c3": 0.75}, {"time": 0.4167, "angle": 28.66, "curve": 0.25, "c3": 0.75}, {"time": 0.5167, "angle": -32.59, "curve": 0.25, "c3": 0.75}, + {"time": 0.6833, "angle": 24.66, "curve": 0.25, "c3": 0.75}, {"time": 0.8, "angle": -14.25, "curve": 0.244, "c3": 0.702, "c4": 0.8}, {"time": 0.9167, "angle": 2.91} ] }, - "body-fur-under-03": { - "shear": [ - {"x": 22.47, "curve": 0.25, "c3": 0.75}, {"time": 0.0667, "x": 19.28, "curve": 0.25, "c3": 0.228, "c4": 0.99}, {"time": 0.3833, "x": -45.7, "curve": 0.244, "c3": 0.7, "c4": 0.79}, - {"time": 0.65, "x": -3.18, "curve": 0.366, "c2": 0.63, "c3": 0.703}, {"time": 0.6833, "curve": 0.284, "c3": 0.625, "c4": 0.38}, - {"time": 0.75, "x": 2.51, "curve": 0.304, "c2": 0.24, "c3": 0.688, "c4": 0.74}, {"time": 0.9167, "x": 22.47} + "body-fur-08": { + "rotate": [ + {"angle": -4.79, "curve": 0.382, "c2": 0.56, "c3": 0.74}, {"time": 0.05}, {"time": 0.2167, "angle": 21.78, "curve": 0.25, "c3": 0.75}, + {"time": 0.35, "angle": -6.87, "curve": 0.25, "c3": 0.75}, {"time": 0.45, "angle": 28.66, "curve": 0.25, "c3": 0.75}, {"time": 0.55, "angle": -32.59, "curve": 0.25, "c3": 0.75}, + {"time": 0.7167, "angle": 24.66, "curve": 0.25, "c3": 0.75}, {"time": 0.8333, "angle": -14.25, "curve": 0.244, "c3": 0.641, "c4": 0.57}, {"time": 0.9167, "angle": -0.91} ] }, - "body-fur-under-02": { - "shear": [ - {"x": -27.8, "curve": 0.375, "c2": 0.62, "c3": 0.716}, {"time": 0.0667, "x": 17.68, "curve": 0.363, "c2": 0.64, "c3": 0.699}, - {"time": 0.1, "x": 18.72, "curve": 0.25, "c3": 0.228, "c4": 0.99}, {"time": 0.4, "x": -43.03, "curve": 0.243, "c3": 0.68, "c4": 0.71}, - {"time": 0.65, "x": -5.6, "curve": 0.375, "c2": 0.62, "c3": 0.716}, {"time": 0.7, "curve": 0.297, "c3": 0.634, "c4": 0.37}, - {"time": 0.75, "x": 1.3, "curve": 0.286, "c2": 0.18, "c3": 0.664, "c4": 0.66}, {"time": 0.9167, "x": -27.8} + "body-fur-09": { + "rotate": [ + {"angle": -9.42, "curve": 0.333, "c2": 0.33, "c3": 0.688, "c4": 0.73}, {"time": 0.05, "angle": -2.63, "curve": 0.379, "c2": 0.6, "c3": 0.724}, {"time": 0.0833}, + {"time": 0.25, "angle": 21.78, "curve": 0.25, "c3": 0.75}, {"time": 0.3833, "angle": -6.87, "curve": 0.25, "c3": 0.75}, {"time": 0.4833, "angle": 28.66, "curve": 0.25, "c3": 0.75}, + {"time": 0.5833, "angle": -32.59, "curve": 0.25, "c3": 0.75}, {"time": 0.75, "angle": 24.66, "curve": 0.25, "c3": 0.75}, + {"time": 0.8667, "angle": -14.25, "curve": 0.26, "c3": 0.618, "c4": 0.44}, {"time": 0.9167, "angle": 6.86} ] }, - "body-fur-under-01": { - "shear": [ - {"x": -4.09, "curve": 0.375, "c2": 0.5, "c3": 0.75}, {"time": 0.0333, "x": 26.91, "curve": 0.374, "c3": 0.7, "c4": 0.36}, - {"time": 0.0667, "x": 20.46, "curve": 0.192, "c2": 0.19, "c3": 0.26, "c4": 0.99}, {"time": 0.3333, "x": -42.78, "curve": 0.25, "c3": 0.75}, - {"time": 0.65, "curve": 0.265, "c3": 0.618, "c4": 0.43}, {"time": 0.75, "x": 7.64, "curve": 0.338, "c2": 0.35, "c3": 0.72, "c4": 0.84}, {"time": 0.9167, "x": -4.09} + "body-fur-10": { + "rotate": [ + {"angle": -2.63, "curve": 0.379, "c2": 0.6, "c3": 0.724}, {"time": 0.0333, "curve": 0.25, "c3": 0.75}, {"time": 0.2, "angle": 21.78, "curve": 0.25, "c3": 0.75}, + {"time": 0.3333, "angle": -6.87, "curve": 0.25, "c3": 0.75}, {"time": 0.4333, "angle": 28.66, "curve": 0.25, "c3": 0.75}, {"time": 0.5333, "angle": -32.59, "curve": 0.25, "c3": 0.75}, + {"time": 0.7, "angle": 24.66, "curve": 0.25, "c3": 0.75}, {"time": 0.8167, "angle": -14.25, "curve": 0.242, "c3": 0.667, "c4": 0.67}, {"time": 0.9167, "angle": 0.34} ] }, - "body-braid-01": {"rotate": [{"angle": 2.31}]} + "body-fur-11": { + "rotate": [ + {"angle": -4.79, "curve": 0.382, "c2": 0.56, "c3": 0.74}, {"time": 0.05, "curve": 0.25, "c3": 0.75}, {"time": 0.2167, "angle": 21.78, "curve": 0.25, "c3": 0.75}, + {"time": 0.35, "angle": -6.87, "curve": 0.25, "c3": 0.75}, {"time": 0.45, "angle": 28.66, "curve": 0.25, "c3": 0.75}, {"time": 0.55, "angle": -32.59, "curve": 0.25, "c3": 0.75}, + {"time": 0.7167, "angle": 24.66, "curve": 0.25, "c3": 0.75}, {"time": 0.8333, "angle": -14.25, "curve": 0.244, "c3": 0.641, "c4": 0.57}, {"time": 0.9167, "angle": 4.23} + ] + }, + "body-fur-12": { + "rotate": [ + {"angle": -7.13, "curve": 0.375, "c2": 0.5, "c3": 0.75}, {"time": 0.0667, "curve": 0.25, "c3": 0.75}, {"time": 0.2333, "angle": 21.78, "curve": 0.25, "c3": 0.75}, + {"time": 0.3667, "angle": -6.87, "curve": 0.25, "c3": 0.75}, {"time": 0.4667, "angle": 28.66, "curve": 0.25, "c3": 0.75}, {"time": 0.5667, "angle": -32.59, "curve": 0.25, "c3": 0.75}, + {"time": 0.7333, "angle": 24.66, "curve": 0.25, "c3": 0.75}, {"time": 0.85, "angle": -14.25, "curve": 0.25, "c3": 0.625, "c4": 0.5}, {"time": 0.9167, "angle": 8.12} + ] + }, + "body-fur-13": { + "rotate": [ + {"angle": -9.47, "curve": 0.359, "c2": 0.43, "c3": 0.756}, {"time": 0.0833}, {"time": 0.25, "angle": 21.78, "curve": 0.25, "c3": 0.75}, + {"time": 0.3833, "angle": -6.87, "curve": 0.25, "c3": 0.75}, {"time": 0.4833, "angle": 28.66, "curve": 0.25, "c3": 0.75}, {"time": 0.5833, "angle": -32.59, "curve": 0.25, "c3": 0.75}, + {"time": 0.75, "angle": 24.66, "curve": 0.25, "c3": 0.75}, {"time": 0.8667, "angle": -14.25, "curve": 0.26, "c3": 0.618, "c4": 0.44}, {"time": 0.9167, "angle": 11.59} + ] + }, + "body-fur-14": { + "rotate": [ + {"angle": -13.4, "curve": 0.285, "c2": 0.17, "c3": 0.679, "c4": 0.71}, {"time": 0.0833, "angle": -2.63, "curve": 0.379, "c2": 0.6, "c3": 0.724}, {"time": 0.1167}, + {"time": 0.2833, "angle": 21.78, "curve": 0.25, "c3": 0.75}, {"time": 0.4167, "angle": -6.87, "curve": 0.25, "c3": 0.75}, {"time": 0.5167, "angle": 28.66, "curve": 0.25, "c3": 0.75}, + {"time": 0.6167, "angle": -32.59, "curve": 0.25, "c3": 0.75}, {"time": 0.7833, "angle": 24.66, "curve": 0.25, "c3": 0.75}, + {"time": 0.9, "angle": -14.25, "curve": 0.299, "c3": 0.636, "c4": 0.36}, {"time": 0.9167, "angle": 13.33} + ] + }, + "body-fur-15": { + "rotate": [ + {"angle": -9.47, "curve": 0.359, "c2": 0.43, "c3": 0.756}, {"time": 0.0833, "curve": 0.25, "c3": 0.75}, {"time": 0.25, "angle": 21.78, "curve": 0.25, "c3": 0.75}, + {"time": 0.3833, "angle": -6.87, "curve": 0.25, "c3": 0.75}, {"time": 0.4833, "angle": 28.66, "curve": 0.25, "c3": 0.75}, {"time": 0.5833, "angle": -32.59, "curve": 0.25, "c3": 0.75}, + {"time": 0.75, "angle": 24.66, "curve": 0.25, "c3": 0.75}, {"time": 0.8667, "angle": -14.25, "curve": 0.26, "c3": 0.618, "c4": 0.44}, {"time": 0.9167, "angle": 13.33} + ] + }, + "body-fur-16": { + "rotate": [ + {"angle": -11.62, "curve": 0.333, "c2": 0.33, "c3": 0.758}, {"time": 0.1, "curve": 0.25, "c3": 0.75}, {"time": 0.2667, "angle": 21.78, "curve": 0.25, "c3": 0.75}, + {"time": 0.4, "angle": -6.87, "curve": 0.25, "c3": 0.75}, {"time": 0.5, "angle": 28.66, "curve": 0.25, "c3": 0.75}, {"time": 0.6, "angle": -32.59, "curve": 0.25, "c3": 0.75}, + {"time": 0.7667, "angle": 24.66, "curve": 0.25, "c3": 0.75}, {"time": 0.8833, "angle": -14.25, "curve": 0.276, "c3": 0.621, "c4": 0.4}, {"time": 0.9167, "angle": 13.84} + ] + } }, - "events": [{"time": 0.5167, "name": "start-attack"}] + "events": [{"time": 0.35, "name": "start-attack"}] }, - "1610371879": { + "4283524375": { "slots": { "eyes": {"attachment": [{"time": 0.0167, "name": "eyes-angry"}, {"time": 0.5, "name": "eyes-shut"}, {"time": 0.6667, "name": "eyes"}]}, "mouth": {"attachment": [{"time": 0.0167, "name": "mouth-bite"}, {"time": 0.3, "name": "mouth-open"}, {"time": 0.5, "name": "mouth"}]} @@ -20292,79 +28849,123 @@ {"time": 0.3, "angle": -9.4}, {"time": 0.4167, "angle": -13.12, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5833, "angle": 15.47, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.75} ] }, - "body-braid-02": { + "body-fur-16": { "rotate": [ - {"angle": 3.5, "curve": 0.348, "c2": 0.38, "c3": 0.685, "c4": 0.73}, {"time": 0.2, "angle": 2.63, "curve": 0.25, "c3": 0.228, "c4": 0.99}, - {"time": 0.45, "angle": 17.69, "curve": 0.25, "c3": 0.75}, {"time": 0.7, "curve": 0.284, "c3": 0.625, "c4": 0.38}, {"time": 0.75, "angle": 3.5} + {"angle": -13.21, "curve": 0.378, "c2": 0.52, "c3": 0.747}, {"time": 0.1, "curve": 0.25, "c3": 0.75}, {"time": 0.2333, "angle": -35.36, "curve": 0.25, "c3": 0.75}, + {"time": 0.3667, "angle": -1.38, "curve": 0.25, "c3": 0.75}, {"time": 0.4, "angle": -24.8, "curve": 0.25, "c3": 0.75}, {"time": 0.4667, "angle": 38.05, "curve": 0.25, "c3": 0.75}, + {"time": 0.6333, "angle": -29.41, "curve": 0.248, "c3": 0.629, "c4": 0.52}, {"time": 0.75, "angle": 13.84} ] }, - "body-braid-03": { + "body-fur-15": { "rotate": [ - {"angle": -1.71, "curve": 0.337, "c2": 0.34, "c3": 0.673, "c4": 0.69}, {"time": 0.2333, "angle": 2.63, "curve": 0.25, "c3": 0.228, "c4": 0.99}, - {"time": 0.4833, "angle": 23.44, "curve": 0.244, "c3": 0.7, "c4": 0.79}, {"time": 0.7, "angle": 1.63, "curve": 0.366, "c2": 0.63, "c3": 0.703}, - {"time": 0.7333, "curve": 0.313, "c3": 0.648, "c4": 0.35}, {"time": 0.75, "angle": -1.71} + {"angle": -10.23, "curve": 0.382, "c2": 0.55, "c3": 0.741}, {"time": 0.0833}, {"time": 0.2167, "angle": -35.36, "curve": 0.25, "c3": 0.75}, + {"time": 0.35, "angle": -1.38, "curve": 0.25, "c3": 0.75}, {"time": 0.3833, "angle": -24.8, "curve": 0.25, "c3": 0.75}, {"time": 0.45, "angle": 38.05, "curve": 0.25, "c3": 0.75}, + {"time": 0.6167, "angle": -29.41, "curve": 0.245, "c3": 0.64, "c4": 0.57}, {"time": 0.75, "angle": 13.33} ] }, - "body-braid-04": { + "body-fur-14": { "rotate": [ - {"angle": -9.29, "curve": 0.323, "c2": 0.3, "c3": 0.66, "c4": 0.65}, {"time": 0.0333, "curve": 0.25, "c3": 0.75}, {"time": 0.2833, "angle": 2.63, "curve": 0.25, "c3": 0.228, "c4": 0.99}, - {"time": 0.5333, "angle": 16.91, "curve": 0.243, "c3": 0.649, "c4": 0.6}, {"time": 0.7, "angle": 4.8, "curve": 0.356, "c2": 0.42, "c3": 0.696, "c4": 0.78}, {"time": 0.75, "angle": -9.29} + {"angle": -16.05, "curve": 0.349, "c2": 0.39, "c3": 0.706, "c4": 0.8}, {"time": 0.0833, "angle": -2.53, "curve": 0.369, "c2": 0.63, "c3": 0.707}, {"time": 0.1167}, + {"time": 0.25, "angle": -35.36, "curve": 0.25, "c3": 0.75}, {"time": 0.3833, "angle": -1.38, "curve": 0.25, "c3": 0.75}, {"time": 0.4167, "angle": -24.8, "curve": 0.25, "c3": 0.75}, + {"time": 0.4833, "angle": 38.05, "curve": 0.25, "c3": 0.75}, {"time": 0.65, "angle": -29.41, "curve": 0.253, "c3": 0.622, "c4": 0.48}, {"time": 0.75, "angle": 13.33} ] }, - "body-braid-05": { + "body-fur-13": { "rotate": [ - {"angle": -8.3, "curve": 0.294, "c3": 0.631, "c4": 0.37}, {"time": 0.1, "curve": 0.25, "c3": 0.75}, {"time": 0.35, "angle": -10.49, "curve": 0.25, "c3": 0.228, "c4": 0.99}, - {"time": 0.6, "angle": 8.22, "curve": 0.258, "c3": 0.619, "c4": 0.45}, {"time": 0.7, "angle": 5.2, "curve": 0.33, "c2": 0.32, "c3": 0.67, "c4": 0.68}, {"time": 0.75, "angle": -8.3} + {"angle": -10.23, "curve": 0.382, "c2": 0.55, "c3": 0.741}, {"time": 0.0833}, {"time": 0.2167, "angle": -35.36, "curve": 0.25, "c3": 0.75}, + {"time": 0.35, "angle": -1.38, "curve": 0.25, "c3": 0.75}, {"time": 0.3833, "angle": -24.8, "curve": 0.25, "c3": 0.75}, {"time": 0.45, "angle": 38.05, "curve": 0.25, "c3": 0.75}, + {"time": 0.6167, "angle": -29.41, "curve": 0.245, "c3": 0.64, "c4": 0.57}, {"time": 0.75, "angle": 11.59} ] }, - "body-braid-06": { + "body-fur-12": { "rotate": [ - {"angle": -20.59, "curve": 0.352, "c2": 0.41, "c3": 0.689, "c4": 0.75}, {"time": 0.1667, "curve": 0.25, "c3": 0.75}, - {"time": 0.4167, "angle": -28.99, "curve": 0.25, "c3": 0.228, "c4": 0.99}, {"time": 0.6667, "angle": 9.53, "curve": 0.297, "c3": 0.634, "c4": 0.37}, - {"time": 0.7, "angle": 8.86, "curve": 0.304, "c2": 0.22, "c3": 0.644, "c4": 0.58}, {"time": 0.75, "angle": -20.59} + {"angle": -7.41, "curve": 0.382, "c2": 0.58, "c3": 0.732}, {"time": 0.0667, "curve": 0.25, "c3": 0.75}, {"time": 0.2, "angle": -35.36, "curve": 0.25, "c3": 0.75}, + {"time": 0.3333, "angle": -1.38, "curve": 0.25, "c3": 0.75}, {"time": 0.3667, "angle": -24.8, "curve": 0.25, "c3": 0.75}, {"time": 0.4333, "angle": 38.05, "curve": 0.25, "c3": 0.75}, + {"time": 0.6, "angle": -29.41, "curve": 0.243, "c3": 0.654, "c4": 0.62}, {"time": 0.75, "angle": 8.12} ] }, - "body-fur-under-05": { - "translate": [{"x": 0.53, "y": 14.98}], - "shear": [ - {"x": 3.7, "curve": 0.382, "c2": 0.57, "c3": 0.737}, {"time": 0.0333, "x": -12.53, "curve": 0.25, "c3": 0.75}, {"time": 0.2833, "x": 6.85, "curve": 0.25, "c3": 0.228, "c4": 0.99}, - {"time": 0.5333, "x": -44.3, "curve": 0.248, "c3": 0.628, "c4": 0.52}, {"time": 0.6667, "x": -27.02, "curve": 0.356, "c2": 0.41, "c3": 0.707, "c4": 0.81}, {"time": 0.75, "x": 3.7} + "body-fur-11": { + "rotate": [ + {"angle": -4.81, "curve": 0.378, "c2": 0.61, "c3": 0.721}, {"time": 0.05, "curve": 0.25, "c3": 0.75}, {"time": 0.1833, "angle": -35.36, "curve": 0.25, "c3": 0.75}, + {"time": 0.3167, "angle": -1.38, "curve": 0.25, "c3": 0.75}, {"time": 0.35, "angle": -24.8, "curve": 0.25, "c3": 0.75}, {"time": 0.4167, "angle": 38.05, "curve": 0.25, "c3": 0.75}, + {"time": 0.5833, "angle": -29.41, "curve": 0.242, "c3": 0.671, "c4": 0.68}, {"time": 0.75, "angle": 4.23} ] }, - "body-fur-under-04": { - "translate": [{"x": -0.33, "y": 3.2}], - "shear": [ - {"x": 10.24, "curve": 0.36, "c2": 0.64, "c3": 0.695}, {"time": 0.25, "x": 13.82, "curve": 0.25, "c3": 0.228, "c4": 0.99}, - {"time": 0.5, "x": -39.88, "curve": 0.243, "c3": 0.649, "c4": 0.6}, {"time": 0.6667, "x": -22.71, "curve": 0.382, "c2": 0.57, "c3": 0.735}, {"time": 0.75, "x": 10.24} + "body-fur-10": { + "rotate": [ + {"angle": -2.53, "curve": 0.369, "c2": 0.63, "c3": 0.707}, {"time": 0.0333, "curve": 0.25, "c3": 0.75}, {"time": 0.1667, "angle": -35.36, "curve": 0.25, "c3": 0.75}, + {"time": 0.3, "angle": -1.38, "curve": 0.25, "c3": 0.75}, {"time": 0.3333, "angle": -24.8, "curve": 0.25, "c3": 0.75}, {"time": 0.4, "angle": 38.05, "curve": 0.25, "c3": 0.75}, + {"time": 0.5667, "angle": -29.41, "curve": 0.244, "c3": 0.693, "c4": 0.76}, {"time": 0.75, "angle": 0.34} ] }, - "body-fur-under-03": { - "translate": [{"x": -0.78, "y": 3.19}], - "shear": [ - {"x": 22.47, "curve": 0.25, "c3": 0.75}, {"time": 0.2, "x": 19.28, "curve": 0.25, "c3": 0.228, "c4": 0.99}, {"time": 0.45, "x": -45.7, "curve": 0.244, "c3": 0.7, "c4": 0.79}, - {"time": 0.6667, "x": -3.18, "curve": 0.366, "c2": 0.63, "c3": 0.703}, {"time": 0.7, "curve": 0.284, "c3": 0.625, "c4": 0.38}, {"time": 0.75, "x": 22.47} + "body-fur-09": { + "rotate": [ + {"angle": -2.53, "curve": 0.369, "c2": 0.63, "c3": 0.707}, {"time": 0.0333}, {"time": 0.1667, "angle": -35.36, "curve": 0.25, "c3": 0.75}, + {"time": 0.3, "angle": -1.38, "curve": 0.25, "c3": 0.75}, {"time": 0.3333, "angle": -24.8, "curve": 0.25, "c3": 0.75}, {"time": 0.4, "angle": 38.05, "curve": 0.25, "c3": 0.75}, + {"time": 0.5667, "angle": -29.41, "curve": 0.244, "c3": 0.693, "c4": 0.76}, {"time": 0.75, "angle": 6.86} ] }, - "body-fur-under-02": { - "translate": [{"x": -2.23, "y": 6.28}], - "shear": [ - {"x": -27.8, "curve": 0.375, "c2": 0.62, "c3": 0.716}, {"time": 0.2167, "x": 18.72, "curve": 0.25, "c3": 0.228, "c4": 0.99}, - {"time": 0.4667, "x": -43.03, "curve": 0.243, "c3": 0.68, "c4": 0.71}, {"time": 0.6667, "x": -5.6, "curve": 0.375, "c2": 0.62, "c3": 0.716}, - {"time": 0.7167, "curve": 0.297, "c3": 0.634, "c4": 0.37}, {"time": 0.75, "x": -27.8} + "body-fur-08": { + "rotate": [ + {"curve": 0.25, "c3": 0.75}, {"time": 0.1333, "angle": -35.36, "curve": 0.25, "c3": 0.75}, {"time": 0.2667, "angle": -1.38, "curve": 0.25, "c3": 0.75}, + {"time": 0.3, "angle": -24.8, "curve": 0.25, "c3": 0.75}, {"time": 0.3667, "angle": 38.05, "curve": 0.25, "c3": 0.75}, {"time": 0.5333, "angle": -29.41, "curve": 0.25, "c3": 0.75}, + {"time": 0.75, "angle": -0.91} ] }, - "body-fur-under-01": { - "translate": [{"x": -0.14, "y": 0.84}], - "shear": [ - {"x": -4.09, "curve": 0.375, "c2": 0.5, "c3": 0.75}, {"time": 0.1667, "x": 26.91, "curve": 0.25, "c3": 0.228, "c4": 0.99}, {"time": 0.4167, "x": -42.78, "curve": 0.25, "c3": 0.75}, - {"time": 0.6667, "curve": 0.265, "c3": 0.618, "c4": 0.43}, {"time": 0.75, "x": -4.09} + "body-fur-07": { + "rotate": [ + {"angle": -0.77, "curve": 0.355, "c2": 0.65, "c3": 0.689}, {"time": 0.0167, "curve": 0.25, "c3": 0.75}, {"time": 0.15, "angle": -35.36, "curve": 0.25, "c3": 0.75}, + {"time": 0.2833, "angle": -1.38, "curve": 0.25, "c3": 0.75}, {"time": 0.3167, "angle": -24.8, "curve": 0.25, "c3": 0.75}, {"time": 0.3833, "angle": 38.05, "curve": 0.25, "c3": 0.75}, + {"time": 0.55, "angle": -29.41, "curve": 0.246, "c3": 0.719, "c4": 0.87}, {"time": 0.75, "angle": 2.91} ] }, - "body-braid-01": {"rotate": [{"angle": 2.31}]} + "body-fur-06": { + "rotate": [ + {"angle": -7.28, "curve": 0.352, "c2": 0.4, "c3": 0.689, "c4": 0.75}, {"time": 0.0333, "angle": -2.53, "curve": 0.369, "c2": 0.63, "c3": 0.707}, {"time": 0.0667}, + {"time": 0.2, "angle": -35.36, "curve": 0.25, "c3": 0.75}, {"time": 0.3333, "angle": -1.38, "curve": 0.25, "c3": 0.75}, {"time": 0.3667, "angle": -24.8, "curve": 0.25, "c3": 0.75}, + {"time": 0.4333, "angle": 38.05, "curve": 0.25, "c3": 0.75}, {"time": 0.6, "angle": -29.41, "curve": 0.243, "c3": 0.654, "c4": 0.62}, {"time": 0.75, "angle": 13.33} + ] + }, + "body-fur-05": { + "rotate": [ + {"angle": -2.53, "curve": 0.369, "c2": 0.63, "c3": 0.707}, {"time": 0.0333}, {"time": 0.1667, "angle": -35.36, "curve": 0.25, "c3": 0.75}, + {"time": 0.3, "angle": -1.38, "curve": 0.25, "c3": 0.75}, {"time": 0.3333, "angle": -24.8, "curve": 0.25, "c3": 0.75}, {"time": 0.4, "angle": 38.05, "curve": 0.25, "c3": 0.75}, + {"time": 0.5667, "angle": -29.41, "curve": 0.244, "c3": 0.693, "c4": 0.76}, {"time": 0.75, "angle": 6.86} + ] + }, + "body-fur-04": { + "rotate": [ + {"angle": -10.1, "curve": 0.355, "c2": 0.41, "c3": 0.697, "c4": 0.77}, {"time": 0.05, "angle": -2.53, "curve": 0.369, "c2": 0.63, "c3": 0.707}, + {"time": 0.0833, "curve": 0.25, "c3": 0.75}, {"time": 0.2167, "angle": -35.36, "curve": 0.25, "c3": 0.75}, {"time": 0.35, "angle": -1.38, "curve": 0.25, "c3": 0.75}, + {"time": 0.3833, "angle": -24.8, "curve": 0.25, "c3": 0.75}, {"time": 0.45, "angle": 38.05, "curve": 0.25, "c3": 0.75}, + {"time": 0.6167, "angle": -29.41, "curve": 0.245, "c3": 0.64, "c4": 0.57}, {"time": 0.75, "angle": 12.53} + ] + }, + "body-fur-03": { + "rotate": [ + {"angle": -4.81, "curve": 0.378, "c2": 0.61, "c3": 0.721}, {"time": 0.05}, {"time": 0.1833, "angle": -35.36, "curve": 0.25, "c3": 0.75}, + {"time": 0.3167, "angle": -1.38, "curve": 0.25, "c3": 0.75}, {"time": 0.35, "angle": -24.8, "curve": 0.25, "c3": 0.75}, {"time": 0.4167, "angle": 38.05, "curve": 0.25, "c3": 0.75}, + {"time": 0.5833, "angle": -29.41, "curve": 0.242, "c3": 0.671, "c4": 0.68}, {"time": 0.75, "angle": 5.54} + ] + }, + "body-fur-02": { + "rotate": [ + {"angle": -13.05, "curve": 0.354, "c2": 0.4, "c3": 0.702, "c4": 0.79}, {"time": 0.0667, "angle": -2.53, "curve": 0.369, "c2": 0.63, "c3": 0.707}, {"time": 0.1}, + {"time": 0.2333, "angle": -35.36, "curve": 0.25, "c3": 0.75}, {"time": 0.3667, "angle": -1.38, "curve": 0.25, "c3": 0.75}, {"time": 0.4, "angle": -24.8, "curve": 0.25, "c3": 0.75}, + {"time": 0.4667, "angle": 38.05, "curve": 0.25, "c3": 0.75}, {"time": 0.6333, "angle": -29.41, "curve": 0.248, "c3": 0.629, "c4": 0.52}, {"time": 0.75, "angle": 13.84} + ] + }, + "body-fur-01": { + "rotate": [ + {"angle": -7.41, "curve": 0.382, "c2": 0.58, "c3": 0.732}, {"time": 0.0667}, {"time": 0.2, "angle": -35.36, "curve": 0.25, "c3": 0.75}, + {"time": 0.3333, "angle": -1.38, "curve": 0.25, "c3": 0.75}, {"time": 0.3667, "angle": -24.8, "curve": 0.25, "c3": 0.75}, {"time": 0.4333, "angle": 38.05, "curve": 0.25, "c3": 0.75}, + {"time": 0.6, "angle": -29.41, "curve": 0.243, "c3": 0.654, "c4": 0.62}, {"time": 0.75, "angle": 10.51} + ] + } }, "events": [{"time": 0.3, "name": "start-attack"}] }, - "305611055": { + "2979763470": { "slots": { "eyes": {"attachment": [{"time": 0.05, "name": "eyes-angry"}, {"time": 1.2333, "name": "eyes"}]}, "mouth": {"attachment": [{"time": 0.05, "name": "mouth-bite"}, {"time": 0.4667, "name": "mouth-open"}, {"time": 1.0833, "name": "mouth-bite"}, {"time": 1.2333, "name": "mouth"}]} @@ -20409,105 +29010,141 @@ {"time": 1, "angle": 24.81, "curve": 0.701, "c4": 0.5}, {"time": 1.2333, "angle": -15.84, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 1.3333} ] }, - "body-braid-02": { + "body-fur-07": { "rotate": [ - {"angle": 3.5, "curve": 0.348, "c2": 0.38, "c3": 0.685, "c4": 0.73}, {"time": 0.4167, "angle": 50.59, "curve": 0.25, "c3": 0.75}, - {"time": 0.7667, "angle": 16.03, "curve": 0.25, "c3": 0.144}, {"time": 1.0833, "angle": 79.52, "curve": 0.25, "c3": 0.75}, {"time": 1.3333, "angle": 3.5} + {"angle": -41.06, "curve": 0.371, "c2": 0.62, "c3": 0.71}, {"time": 0.0167, "angle": -43.59, "curve": 0.25, "c3": 0.75}, {"time": 0.1833, "angle": -6.75, "curve": 0.25, "c3": 0.75}, + {"time": 0.35, "angle": -48.01, "curve": 0.25, "c3": 0.75}, {"time": 0.5167, "angle": 7.51, "curve": 0.25, "c3": 0.75}, {"time": 0.65, "angle": -50.66, "curve": 0.25, "c3": 0.75}, + {"time": 0.7833, "angle": -8.99, "curve": 0.25, "c3": 0.75}, {"time": 0.9167, "angle": -53.55, "curve": 0.25, "c3": 0.75}, {"time": 1.0333, "angle": -12.01, "curve": 0.25, "c3": 0.75}, + {"time": 1.15, "angle": -48.65, "curve": 0.25, "c3": 0.75}, {"time": 1.25, "angle": -17.36, "curve": 0.243, "c3": 0.689, "c4": 0.75}, {"time": 1.3333, "angle": 2.91} ] }, - "body-braid-03": { + "body-fur-01": { "rotate": [ - {"angle": -1.71, "curve": 0.337, "c2": 0.34, "c3": 0.673, "c4": 0.69}, {"time": 0.05, "curve": 0.25, "c3": 0.75}, {"time": 0.4667, "angle": 45.56, "curve": 0.25, "c3": 0.75}, - {"time": 0.8167, "angle": 11.58, "curve": 0.25, "c3": 0.144}, {"time": 1.1333, "angle": 45.56, "curve": 0.243, "c3": 0.68, "c4": 0.71}, {"time": 1.3333, "angle": -1.71} + {"angle": -1.51, "curve": 0.351, "c2": 0.4, "c3": 0.757}, {"time": 0.0667, "angle": -20.3, "curve": 0.25, "c3": 0.75}, {"time": 0.2333, "angle": 16.54, "curve": 0.25, "c3": 0.75}, + {"time": 0.4, "angle": -24.71, "curve": 0.25, "c3": 0.75}, {"time": 0.5667, "angle": 30.8, "curve": 0.25, "c3": 0.75}, {"time": 0.7, "angle": -27.37, "curve": 0.25, "c3": 0.75}, + {"time": 0.8333, "angle": 14.31, "curve": 0.25, "c3": 0.75}, {"time": 0.9667, "angle": -30.25, "curve": 0.25, "c3": 0.75}, {"time": 1.0833, "angle": 11.28, "curve": 0.25, "c3": 0.75}, + {"time": 1.2, "angle": -25.35, "curve": 0.25, "c3": 0.75}, {"time": 1.3, "angle": 5.94, "curve": 0.265, "c3": 0.618, "c4": 0.43}, {"time": 1.3333, "angle": 10.51} + ] + }, + "body-fur-02": { + "rotate": [ + {"angle": 5.94, "curve": 0.243, "c3": 0.649, "c4": 0.6}, {"time": 0.0667, "angle": -12.85, "curve": 0.382, "c2": 0.57, "c3": 0.735}, {"time": 0.1, "angle": -20.3}, + {"time": 0.2667, "angle": 16.54, "curve": 0.25, "c3": 0.75}, {"time": 0.4333, "angle": -24.71, "curve": 0.25, "c3": 0.75}, {"time": 0.6, "angle": 30.8, "curve": 0.25, "c3": 0.75}, + {"time": 0.7333, "angle": -27.37, "curve": 0.25, "c3": 0.75}, {"time": 0.8667, "angle": 14.31, "curve": 0.25, "c3": 0.75}, {"time": 1, "angle": -30.25, "curve": 0.25, "c3": 0.75}, + {"time": 1.1167, "angle": 11.28, "curve": 0.25, "c3": 0.75}, {"time": 1.2333, "angle": -25.35, "curve": 0.25, "c3": 0.75}, {"time": 1.3333, "angle": 13.84} + ] + }, + "body-fur-03": { + "rotate": [ + {"angle": -7.18, "curve": 0.375, "c2": 0.5, "c3": 0.75}, {"time": 0.05, "angle": -20.3}, {"time": 0.2167, "angle": 16.54, "curve": 0.25, "c3": 0.75}, + {"time": 0.3833, "angle": -24.71, "curve": 0.25, "c3": 0.75}, {"time": 0.55, "angle": 30.8, "curve": 0.25, "c3": 0.75}, {"time": 0.6833, "angle": -27.37, "curve": 0.25, "c3": 0.75}, + {"time": 0.8167, "angle": 14.31, "curve": 0.25, "c3": 0.75}, {"time": 0.95, "angle": -30.25, "curve": 0.25, "c3": 0.75}, {"time": 1.0667, "angle": 11.28, "curve": 0.25, "c3": 0.75}, + {"time": 1.1833, "angle": -25.35, "curve": 0.25, "c3": 0.75}, {"time": 1.2833, "angle": 5.94, "curve": 0.25, "c3": 0.625, "c4": 0.5}, {"time": 1.3333, "angle": 5.54} + ] + }, + "body-fur-04": { + "rotate": [ + {"angle": 3.4, "curve": 0.295, "c2": 0.21, "c3": 0.667, "c4": 0.67}, {"time": 0.05, "angle": -12.85, "curve": 0.382, "c2": 0.57, "c3": 0.735}, + {"time": 0.0833, "angle": -20.3, "curve": 0.25, "c3": 0.75}, {"time": 0.25, "angle": 16.54, "curve": 0.25, "c3": 0.75}, {"time": 0.4167, "angle": -24.71, "curve": 0.25, "c3": 0.75}, + {"time": 0.5833, "angle": 30.8, "curve": 0.25, "c3": 0.75}, {"time": 0.7167, "angle": -27.37, "curve": 0.25, "c3": 0.75}, {"time": 0.85, "angle": 14.31, "curve": 0.25, "c3": 0.75}, + {"time": 0.9833, "angle": -30.25, "curve": 0.25, "c3": 0.75}, {"time": 1.1, "angle": 11.28, "curve": 0.25, "c3": 0.75}, {"time": 1.2167, "angle": -25.35, "curve": 0.25, "c3": 0.75}, + {"time": 1.3333, "angle": 12.53} + ] + }, + "body-fur-05": { + "rotate": [ + {"angle": -12.85, "curve": 0.382, "c2": 0.57, "c3": 0.735}, {"time": 0.0333, "angle": -20.3}, {"time": 0.2, "angle": 16.54, "curve": 0.25, "c3": 0.75}, + {"time": 0.3667, "angle": -24.71, "curve": 0.25, "c3": 0.75}, {"time": 0.5333, "angle": 30.8, "curve": 0.25, "c3": 0.75}, {"time": 0.6667, "angle": -27.37, "curve": 0.25, "c3": 0.75}, + {"time": 0.8, "angle": 14.31, "curve": 0.25, "c3": 0.75}, {"time": 0.9333, "angle": -30.25, "curve": 0.25, "c3": 0.75}, {"time": 1.05, "angle": 11.28, "curve": 0.25, "c3": 0.75}, + {"time": 1.1667, "angle": -25.35, "curve": 0.25, "c3": 0.75}, {"time": 1.2667, "angle": 5.94, "curve": 0.243, "c3": 0.649, "c4": 0.6}, {"time": 1.3333, "angle": 6.86} + ] + }, + "body-fur-06": { + "rotate": [ + {"angle": -1.53, "curve": 0.325, "c2": 0.31, "c3": 0.675, "c4": 0.69}, {"time": 0.0333, "angle": -12.85, "curve": 0.382, "c2": 0.57, "c3": 0.735}, {"time": 0.0667, "angle": -20.3}, + {"time": 0.2333, "angle": 16.54, "curve": 0.25, "c3": 0.75}, {"time": 0.4, "angle": -24.71, "curve": 0.25, "c3": 0.75}, {"time": 0.5667, "angle": 30.8, "curve": 0.25, "c3": 0.75}, + {"time": 0.7, "angle": -27.37, "curve": 0.25, "c3": 0.75}, {"time": 0.8333, "angle": 14.31, "curve": 0.25, "c3": 0.75}, {"time": 0.9667, "angle": -30.25, "curve": 0.25, "c3": 0.75}, + {"time": 1.0833, "angle": 11.28, "curve": 0.25, "c3": 0.75}, {"time": 1.2, "angle": -25.35, "curve": 0.25, "c3": 0.75}, + {"time": 1.3, "angle": 5.94, "curve": 0.265, "c3": 0.618, "c4": 0.43}, {"time": 1.3333, "angle": 13.33} ] }, - "body-braid-04": { + "body-fur-08": { "rotate": [ - {"angle": -9.29, "curve": 0.323, "c2": 0.3, "c3": 0.66, "c4": 0.65}, {"time": 0.1167, "curve": 0.25, "c3": 0.75}, {"time": 0.5333, "angle": 36.13, "curve": 0.25, "c3": 0.75}, - {"time": 0.8833, "angle": -30, "curve": 0.25, "c3": 0.144}, {"time": 1.2, "angle": 36.13, "curve": 0.248, "c3": 0.628, "c4": 0.52}, {"time": 1.3333, "angle": -9.29} + {"angle": -7.18, "curve": 0.375, "c2": 0.5, "c3": 0.75}, {"time": 0.05, "angle": -20.3, "curve": 0.25, "c3": 0.75}, {"time": 0.2167, "angle": 16.54, "curve": 0.25, "c3": 0.75}, + {"time": 0.3833, "angle": -24.71, "curve": 0.25, "c3": 0.75}, {"time": 0.55, "angle": 30.8, "curve": 0.25, "c3": 0.75}, {"time": 0.6833, "angle": -27.37, "curve": 0.25, "c3": 0.75}, + {"time": 0.8167, "angle": 14.31, "curve": 0.25, "c3": 0.75}, {"time": 0.95, "angle": -30.25, "curve": 0.25, "c3": 0.75}, {"time": 1.0667, "angle": 11.28, "curve": 0.25, "c3": 0.75}, + {"time": 1.1833, "angle": -25.35, "curve": 0.25, "c3": 0.75}, {"time": 1.2833, "angle": 5.94, "curve": 0.25, "c3": 0.625, "c4": 0.5}, {"time": 1.3333, "angle": -0.91} ] }, - "body-braid-05": { + "body-fur-09": { "rotate": [ - {"angle": -8.3, "curve": 0.294, "c3": 0.631, "c4": 0.37}, {"time": 0.2, "curve": 0.25, "c3": 0.75}, {"time": 0.6167, "angle": -7.54, "curve": 0.25, "c3": 0.75}, - {"time": 0.9667, "angle": -31.56, "curve": 0.25, "c3": 0.144}, {"time": 1.2833, "angle": -7.54, "curve": 0.284, "c3": 0.625, "c4": 0.38}, {"time": 1.3333, "angle": -8.3} + {"angle": 3.4, "curve": 0.295, "c2": 0.21, "c3": 0.667, "c4": 0.67}, {"time": 0.05, "angle": -12.85, "curve": 0.382, "c2": 0.57, "c3": 0.735}, {"time": 0.0833, "angle": -20.3}, + {"time": 0.25, "angle": 16.54, "curve": 0.25, "c3": 0.75}, {"time": 0.4167, "angle": -24.71, "curve": 0.25, "c3": 0.75}, {"time": 0.5833, "angle": 30.8, "curve": 0.25, "c3": 0.75}, + {"time": 0.7167, "angle": -27.37, "curve": 0.25, "c3": 0.75}, {"time": 0.85, "angle": 14.31, "curve": 0.25, "c3": 0.75}, {"time": 0.9833, "angle": -30.25, "curve": 0.25, "c3": 0.75}, + {"time": 1.1, "angle": 11.28, "curve": 0.25, "c3": 0.75}, {"time": 1.2167, "angle": -25.35, "curve": 0.25, "c3": 0.75}, {"time": 1.3333, "angle": 6.86} ] }, - "body-braid-06": { + "body-fur-10": { "rotate": [ - {"angle": -20.59, "curve": 0.352, "c2": 0.41, "c3": 0.689, "c4": 0.75}, {"time": 0.05, "angle": 1.41, "curve": 0.25, "c3": 0.75}, {"time": 0.3, "curve": 0.25, "c3": 0.75}, - {"time": 0.7167, "angle": 1.41, "curve": 0.25, "c3": 0.75}, {"time": 1.0667, "angle": -42.25, "curve": 0.25, "c3": 0.144}, {"time": 1.3333, "angle": -20.59} + {"angle": -12.85, "curve": 0.382, "c2": 0.57, "c3": 0.735}, {"time": 0.0333, "angle": -20.3, "curve": 0.25, "c3": 0.75}, {"time": 0.2, "angle": 16.54, "curve": 0.25, "c3": 0.75}, + {"time": 0.3667, "angle": -24.71, "curve": 0.25, "c3": 0.75}, {"time": 0.5333, "angle": 30.8, "curve": 0.25, "c3": 0.75}, {"time": 0.6667, "angle": -27.37, "curve": 0.25, "c3": 0.75}, + {"time": 0.8, "angle": 14.31, "curve": 0.25, "c3": 0.75}, {"time": 0.9333, "angle": -30.25, "curve": 0.25, "c3": 0.75}, {"time": 1.05, "angle": 11.28, "curve": 0.25, "c3": 0.75}, + {"time": 1.1667, "angle": -25.35, "curve": 0.25, "c3": 0.75}, {"time": 1.2667, "angle": 5.94, "curve": 0.243, "c3": 0.649, "c4": 0.6}, {"time": 1.3333, "angle": 0.34} ] }, - "body-fur-under-03": { - "translate": [ - {"x": -0.78, "y": 3.19, "curve": 0.338, "c2": 0.35, "c3": 0.672, "c4": 0.69}, {"time": 0.0167, "x": -0.59, "y": 2.43, "curve": 0.379, "c2": 0.6, "c3": 0.724}, - {"time": 0.1, "curve": 0.25, "c3": 0.75}, {"time": 0.4333, "x": 3.59, "y": -11.21, "curve": 0.25, "c3": 0.75}, {"time": 0.6, "x": -14.26, "y": 19.9, "curve": 0.25, "c3": 0.75}, - {"time": 0.7667, "x": 0.07, "y": 10.3, "curve": 0.25, "c3": 0.75}, {"time": 0.9333, "x": -26.35, "y": 20.75, "curve": 0.25, "c3": 0.75}, - {"time": 1.1, "x": -3.2, "y": 13.18, "curve": 0.243, "c3": 0.655, "c4": 0.63}, {"time": 1.3333, "x": -0.78, "y": 3.19} - ], - "shear": [ - {"x": 22.47, "curve": 0.25, "c3": 0.75}, {"time": 0.0833, "curve": 0.25, "c3": 0.75}, {"time": 0.4167, "x": 0.35, "curve": 0.25, "c3": 0.75}, - {"time": 0.5833, "x": 26.04, "y": -7.3, "curve": 0.25, "c3": 0.75}, {"time": 0.75, "x": 47.96, "curve": 0.25, "c3": 0.75}, - {"time": 0.9167, "x": 16.32, "y": -3.94, "curve": 0.25, "c3": 0.75}, {"time": 1.0833, "x": 47.78, "curve": 0.242, "c3": 0.667, "c4": 0.67}, {"time": 1.3333, "x": 22.47} + "body-fur-11": { + "rotate": [ + {"angle": -7.18, "curve": 0.375, "c2": 0.5, "c3": 0.75}, {"time": 0.05, "angle": -20.3, "curve": 0.25, "c3": 0.75}, {"time": 0.2167, "angle": 16.54, "curve": 0.25, "c3": 0.75}, + {"time": 0.3833, "angle": -24.71, "curve": 0.25, "c3": 0.75}, {"time": 0.55, "angle": 30.8, "curve": 0.25, "c3": 0.75}, {"time": 0.6833, "angle": -27.37, "curve": 0.25, "c3": 0.75}, + {"time": 0.8167, "angle": 14.31, "curve": 0.25, "c3": 0.75}, {"time": 0.95, "angle": -30.25, "curve": 0.25, "c3": 0.75}, {"time": 1.0667, "angle": 11.28, "curve": 0.25, "c3": 0.75}, + {"time": 1.1833, "angle": -25.35, "curve": 0.25, "c3": 0.75}, {"time": 1.2833, "angle": 5.94, "curve": 0.25, "c3": 0.625, "c4": 0.5}, {"time": 1.3333, "angle": 4.23} ] }, - "body-fur-under-04": { - "translate": [ - {"x": -0.33, "y": 3.2, "curve": 0.348, "c2": 0.39, "c3": 0.683, "c4": 0.73}, {"time": 0.0333, "x": -0.15, "y": 1.46, "curve": 0.369, "c2": 0.63, "c3": 0.706}, - {"time": 0.0833, "curve": 0.25, "c3": 0.75}, {"time": 0.4167, "x": 3.59, "y": -11.21, "curve": 0.25, "c3": 0.75}, {"time": 0.5833, "x": -14.26, "y": 19.9, "curve": 0.25, "c3": 0.75}, - {"time": 0.75, "x": 0.07, "y": 10.3, "curve": 0.25, "c3": 0.75}, {"time": 0.9167, "x": -24.88, "y": 22.21, "curve": 0.25, "c3": 0.75}, - {"time": 1.0833, "x": -1.82, "y": 17.62, "curve": 0.242, "c3": 0.667, "c4": 0.67}, {"time": 1.3333, "x": -0.33, "y": 3.2} - ], - "shear": [ - {"x": 10.24, "curve": 0.36, "c2": 0.64, "c3": 0.695}, {"time": 0.05, "curve": 0.25, "c3": 0.75}, {"time": 0.3833, "x": -0.05, "curve": 0.25, "c3": 0.75}, - {"time": 0.55, "x": 18.75, "curve": 0.25, "c3": 0.75}, {"time": 0.7167, "x": 47.55, "curve": 0.25, "c3": 0.75}, {"time": 0.8833, "x": 9.03, "y": 3.36, "curve": 0.25, "c3": 0.75}, - {"time": 1.05, "x": 47.37, "curve": 0.244, "c3": 0.694, "c4": 0.77}, {"time": 1.3333, "x": 10.24} + "body-fur-12": { + "rotate": [ + {"angle": -1.51, "curve": 0.351, "c2": 0.4, "c3": 0.757}, {"time": 0.0667, "angle": -20.3, "curve": 0.25, "c3": 0.75}, {"time": 0.2333, "angle": 16.54, "curve": 0.25, "c3": 0.75}, + {"time": 0.4, "angle": -24.71, "curve": 0.25, "c3": 0.75}, {"time": 0.5667, "angle": 30.8, "curve": 0.25, "c3": 0.75}, {"time": 0.7, "angle": -27.37, "curve": 0.25, "c3": 0.75}, + {"time": 0.8333, "angle": 14.31, "curve": 0.25, "c3": 0.75}, {"time": 0.9667, "angle": -30.25, "curve": 0.25, "c3": 0.75}, {"time": 1.0833, "angle": 11.28, "curve": 0.25, "c3": 0.75}, + {"time": 1.2, "angle": -25.35, "curve": 0.25, "c3": 0.75}, {"time": 1.3, "angle": 5.94, "curve": 0.265, "c3": 0.618, "c4": 0.43}, {"time": 1.3333, "angle": 8.12} ] }, - "body-fur-under-02": { - "translate": [ - {"x": -2.23, "y": 6.28, "curve": 0.352, "c2": 0.41, "c3": 0.689, "c4": 0.75}, {"time": 0.05, "x": -0.78, "y": 2.18, "curve": 0.369, "c2": 0.63, "c3": 0.706}, - {"time": 0.1, "curve": 0.25, "c3": 0.75}, {"time": 0.4333, "x": 3.59, "y": -11.21, "curve": 0.25, "c3": 0.75}, {"time": 0.6, "x": -14.26, "y": 19.9, "curve": 0.25, "c3": 0.75}, - {"time": 0.7667, "x": 0.07, "y": 10.3, "curve": 0.25, "c3": 0.75}, {"time": 0.9333, "x": -32.26, "y": 17.84, "curve": 0.25, "c3": 0.75}, - {"time": 1.1, "x": -9.35, "y": 26.3, "curve": 0.243, "c3": 0.655, "c4": 0.63}, {"time": 1.3333, "x": -2.23, "y": 6.28} - ], - "shear": [ - {"x": -27.8, "curve": 0.375, "c2": 0.62, "c3": 0.716}, {"time": 0.05, "curve": 0.25, "c3": 0.75}, {"time": 0.3833, "x": -2.26, "curve": 0.25, "c3": 0.75}, - {"time": 0.55, "x": 32.83, "curve": 0.25, "c3": 0.75}, {"time": 0.7167, "x": 45.35, "curve": 0.25, "c3": 0.75}, {"time": 0.8833, "x": 23.11, "y": 3.36, "curve": 0.25, "c3": 0.75}, - {"time": 1.05, "x": 45.16, "curve": 0.244, "c3": 0.694, "c4": 0.77}, {"time": 1.3333, "x": -27.8} + "body-fur-13": { + "rotate": [ + {"angle": 3.41, "curve": 0.311, "c2": 0.25, "c3": 0.757}, {"time": 0.0833, "angle": -20.3}, {"time": 0.25, "angle": 16.54, "curve": 0.25, "c3": 0.75}, + {"time": 0.4167, "angle": -24.71, "curve": 0.25, "c3": 0.75}, {"time": 0.5833, "angle": 30.8, "curve": 0.25, "c3": 0.75}, {"time": 0.7167, "angle": -27.37, "curve": 0.25, "c3": 0.75}, + {"time": 0.85, "angle": 14.31, "curve": 0.25, "c3": 0.75}, {"time": 0.9833, "angle": -30.25, "curve": 0.25, "c3": 0.75}, {"time": 1.1, "angle": 11.28, "curve": 0.25, "c3": 0.75}, + {"time": 1.2167, "angle": -25.35, "curve": 0.25, "c3": 0.75}, {"time": 1.3333, "angle": 11.59} ] }, - "body-fur-under-01": { - "translate": [ - {"x": -0.14, "y": 0.84, "curve": 0.343, "c2": 0.39, "c3": 0.677, "c4": 0.73}, {"time": 0.0167, "x": -0.07, "y": 0.44, "curve": 0.36, "c2": 0.64, "c3": 0.695}, - {"time": 0.05, "curve": 0.25, "c3": 0.75}, {"time": 0.3833, "x": 3.59, "y": -11.21, "curve": 0.25, "c3": 0.75}, {"time": 0.55, "x": -14.26, "y": 19.9, "curve": 0.25, "c3": 0.75}, - {"time": 0.7167, "x": 0.07, "y": 10.3, "curve": 0.25, "c3": 0.75}, {"time": 0.8833, "x": -11.61, "y": 26.55, "curve": 0.25, "c3": 0.75}, - {"time": 1.05, "x": -1.67, "y": 10.27, "curve": 0.244, "c3": 0.694, "c4": 0.77}, {"time": 1.3333, "x": -0.14, "y": 0.84} - ], - "shear": [ - {"x": -4.09, "curve": 0.375, "c2": 0.5, "c3": 0.75}, {"time": 0.0333, "curve": 0.25, "c3": 0.75}, {"time": 0.3667, "x": -2.74, "y": 10.77, "curve": 0.25, "c3": 0.75}, - {"time": 0.5333, "x": 55.89, "y": -8.05, "curve": 0.25, "c3": 0.75}, {"time": 0.7, "x": 44.86, "y": 10.77, "curve": 0.25, "c3": 0.75}, - {"time": 0.8667, "x": 46.17, "y": -4.69, "curve": 0.25, "c3": 0.75}, {"time": 1.0333, "x": 44.68, "y": 10.77, "curve": 0.245, "c3": 0.711, "c4": 0.83}, {"time": 1.3333, "x": -4.09} + "body-fur-14": { + "rotate": [ + {"angle": 2.92, "curve": 0.371, "c2": 0.62, "c3": 0.71}, {"time": 0.0167, "angle": 5.94, "curve": 0.243, "c3": 0.649, "c4": 0.6}, + {"time": 0.0833, "angle": -12.85, "curve": 0.382, "c2": 0.57, "c3": 0.735}, {"time": 0.1167, "angle": -20.3}, {"time": 0.2833, "angle": 16.54, "curve": 0.25, "c3": 0.75}, + {"time": 0.45, "angle": -24.71, "curve": 0.25, "c3": 0.75}, {"time": 0.6167, "angle": 30.8, "curve": 0.25, "c3": 0.75}, {"time": 0.75, "angle": -27.37, "curve": 0.25, "c3": 0.75}, + {"time": 0.8833, "angle": 14.31, "curve": 0.25, "c3": 0.75}, {"time": 1.0167, "angle": -30.25, "curve": 0.25, "c3": 0.75}, {"time": 1.1333, "angle": 11.28, "curve": 0.25, "c3": 0.75}, + {"time": 1.25, "angle": -25.35, "curve": 0.243, "c3": 0.689, "c4": 0.75}, {"time": 1.3333, "angle": 13.33} ] }, - "body-fur-under-05": { - "translate": [ - {"x": 0.53, "y": 14.98, "curve": 0.335, "c2": 0.34, "c3": 0.674, "c4": 0.69}, {"time": 0.0667, "x": 0.29, "y": 8.07, "curve": 0.382, "c2": 0.57, "c3": 0.737}, - {"time": 0.1833, "curve": 0.25, "c3": 0.75}, {"time": 0.5167, "x": 3.59, "y": -11.21, "curve": 0.25, "c3": 0.75}, {"time": 0.6833, "x": -14.26, "y": 19.9, "curve": 0.25, "c3": 0.75}, - {"time": 0.85, "x": 0.07, "y": 10.3, "curve": 0.25, "c3": 0.75}, {"time": 1.0167, "x": -11.61, "y": 26.55, "curve": 0.25, "c3": 0.75}, - {"time": 1.1833, "x": 0.95, "y": 26.5, "curve": 0.253, "c3": 0.621, "c4": 0.48}, {"time": 1.3333, "x": 0.53, "y": 14.98} - ], - "shear": [ - {"x": 3.7, "curve": 0.382, "c2": 0.57, "c3": 0.737}, {"time": 0.1167, "curve": 0.25, "c3": 0.75}, {"time": 0.45, "x": 1.13, "y": -4.12, "curve": 0.25, "c3": 0.75}, - {"time": 0.6167, "x": 23.64, "curve": 0.25, "c3": 0.75}, {"time": 0.7833, "x": 48.74, "y": -4.12, "curve": 0.25, "c3": 0.75}, - {"time": 0.95, "x": 13.91, "y": 3.36, "curve": 0.25, "c3": 0.75}, {"time": 1.1167, "x": 69.84, "y": -4.12, "curve": 0.244, "c3": 0.646, "c4": 0.59}, {"time": 1.3333, "x": 3.7} + "body-fur-15": { + "rotate": [ + {"angle": 3.41, "curve": 0.311, "c2": 0.25, "c3": 0.757}, {"time": 0.0833, "angle": -20.3, "curve": 0.25, "c3": 0.75}, {"time": 0.25, "angle": 16.54, "curve": 0.25, "c3": 0.75}, + {"time": 0.4167, "angle": -24.71, "curve": 0.25, "c3": 0.75}, {"time": 0.5833, "angle": 30.8, "curve": 0.25, "c3": 0.75}, {"time": 0.7167, "angle": -27.37, "curve": 0.25, "c3": 0.75}, + {"time": 0.85, "angle": 14.31, "curve": 0.25, "c3": 0.75}, {"time": 0.9833, "angle": -30.25, "curve": 0.25, "c3": 0.75}, {"time": 1.1, "angle": 11.28, "curve": 0.25, "c3": 0.75}, + {"time": 1.2167, "angle": -25.35, "curve": 0.25, "c3": 0.75}, {"time": 1.3333, "angle": 13.33} ] }, - "body-braid-01": {"rotate": [{"angle": 2.31}]} - } + "body-fur-16": { + "rotate": [ + {"angle": 5.94, "curve": 0.25, "c3": 0.75}, {"time": 0.1, "angle": -20.3, "curve": 0.25, "c3": 0.75}, {"time": 0.2667, "angle": 16.54, "curve": 0.25, "c3": 0.75}, + {"time": 0.4333, "angle": -24.71, "curve": 0.25, "c3": 0.75}, {"time": 0.6, "angle": 30.8, "curve": 0.25, "c3": 0.75}, {"time": 0.7333, "angle": -27.37, "curve": 0.25, "c3": 0.75}, + {"time": 0.8667, "angle": 14.31, "curve": 0.25, "c3": 0.75}, {"time": 1, "angle": -30.25, "curve": 0.25, "c3": 0.75}, {"time": 1.1167, "angle": 11.28, "curve": 0.25, "c3": 0.75}, + {"time": 1.2333, "angle": -25.35, "curve": 0.25, "c3": 0.75}, {"time": 1.3333, "angle": 13.84} + ] + } + }, + "events": [{"time": 0.4667, "name": "start-attack"}, {"time": 0.7, "name": "start-attack"}, {"time": 0.9333, "name": "start-attack"}] }, - "3968125421": { + "1370524738": { "slots": { "eyes": {"attachment": [{"time": 0.0167, "name": "eyes-angry"}, {"time": 0.75, "name": "eyes-shut"}, {"time": 0.8333, "name": "eyes"}]}, "leg-back-left": {"attachment": [{"time": 0.35, "name": "leg-back-left-long"}, {"time": 0.5833, "name": "leg-back-left"}]}, @@ -20595,6626 +29232,6591 @@ "translate": [{"time": 0.75, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.8333, "y": 31, "curve": 0.315, "c4": 0.8}, {"time": 0.9167}], "scale": [{"time": 0.5667, "curve": "stepped"}, {"time": 0.75, "y": 0.98, "curve": 0.154, "c4": 0.9}, {"time": 0.9167}] }, - "body-braid-02": { + "body-fur-16": { "rotate": [ - {"angle": 3.5, "curve": 0.348, "c2": 0.38, "c3": 0.685, "c4": 0.73}, {"time": 0.25, "angle": 2.63, "curve": 0.25, "c3": 0.228, "c4": 0.99}, - {"time": 0.55, "angle": 43.23, "curve": 0.25, "c3": 0.75}, {"time": 0.8667, "curve": 0.284, "c3": 0.625, "c4": 0.38}, {"time": 0.9167, "angle": 3.5} + {"angle": 8.76, "curve": 0.351, "c2": 0.4, "c3": 0.757}, {"time": 0.1, "curve": 0.25, "c3": 0.75}, {"time": 0.2333, "angle": -31.26, "curve": 0.25, "c3": 0.75}, + {"time": 0.35, "angle": -18.78, "curve": 0.25, "c3": 0.75}, {"time": 0.4, "angle": -38.17, "curve": 0.25, "c3": 0.75}, {"time": 0.4833, "angle": 22.48, "curve": 0.25, "c3": 0.75}, + {"time": 0.7, "angle": -25.91, "curve": 0.25, "c3": 0.75}, {"time": 0.8667, "angle": 12.23, "curve": 0.265, "c3": 0.618, "c4": 0.43}, {"time": 0.9167, "angle": 13.84} ] }, - "body-braid-03": { + "body-fur-15": { "rotate": [ - {"angle": -1.71, "curve": 0.337, "c2": 0.34, "c3": 0.673, "c4": 0.69}, {"time": 0.2833, "angle": 2.63, "curve": 0.25, "c3": 0.228, "c4": 0.99}, - {"time": 0.6, "angle": 23.44, "curve": 0.244, "c3": 0.7, "c4": 0.79}, {"time": 0.8667, "angle": 1.63, "curve": 0.366, "c2": 0.63, "c3": 0.703}, - {"time": 0.9, "curve": 0.313, "c3": 0.648, "c4": 0.35}, {"time": 0.9167, "angle": -1.71} + {"angle": 7.01, "curve": 0.369, "c2": 0.47, "c3": 0.753}, {"time": 0.0833}, {"time": 0.2167, "angle": -31.26, "curve": 0.25, "c3": 0.75}, + {"time": 0.3333, "angle": -18.78, "curve": 0.25, "c3": 0.75}, {"time": 0.3833, "angle": -38.17, "curve": 0.25, "c3": 0.75}, {"time": 0.4667, "angle": 22.48, "curve": 0.25, "c3": 0.75}, + {"time": 0.6833, "angle": -25.91, "curve": 0.25, "c3": 0.75}, {"time": 0.85, "angle": 12.23, "curve": 0.254, "c3": 0.621, "c4": 0.47}, {"time": 0.9167, "angle": 13.33} ] }, - "body-braid-04": { + "body-fur-14": { "rotate": [ - {"angle": -9.29, "curve": 0.323, "c2": 0.3, "c3": 0.66, "c4": 0.65}, {"time": 0.0333, "curve": 0.25, "c3": 0.75}, {"time": 0.35, "angle": 2.63, "curve": 0.25, "c3": 0.228, "c4": 0.99}, - {"time": 0.65, "angle": 16.91, "curve": 0.243, "c3": 0.649, "c4": 0.6}, {"time": 0.8667, "angle": 4.8, "curve": 0.356, "c2": 0.42, "c3": 0.696, "c4": 0.78}, - {"time": 0.9167, "angle": -9.29} + {"angle": 10.34, "curve": 0.31, "c2": 0.26, "c3": 0.69, "c4": 0.74}, {"time": 0.0833, "angle": 1.89, "curve": 0.377, "c2": 0.61, "c3": 0.72}, {"time": 0.1167}, + {"time": 0.25, "angle": -31.26, "curve": 0.25, "c3": 0.75}, {"time": 0.3667, "angle": -18.78, "curve": 0.25, "c3": 0.75}, {"time": 0.4167, "angle": -38.17, "curve": 0.25, "c3": 0.75}, + {"time": 0.5, "angle": 22.48, "curve": 0.25, "c3": 0.75}, {"time": 0.7167, "angle": -25.91, "curve": 0.25, "c3": 0.75}, + {"time": 0.8833, "angle": 12.23, "curve": 0.28, "c3": 0.623, "c4": 0.39}, {"time": 0.9167, "angle": 13.33} ] }, - "body-braid-05": { + "body-fur-13": { "rotate": [ - {"angle": -8.3, "curve": 0.294, "c3": 0.631, "c4": 0.37}, {"time": 0.1167, "curve": 0.25, "c3": 0.75}, {"time": 0.4333, "angle": -10.49, "curve": 0.25, "c3": 0.228, "c4": 0.99}, - {"time": 0.7333, "angle": 8.22, "curve": 0.258, "c3": 0.619, "c4": 0.45}, {"time": 0.8667, "angle": 5.2, "curve": 0.33, "c2": 0.32, "c3": 0.67, "c4": 0.68}, - {"time": 0.9167, "angle": -8.3} + {"angle": 7.01, "curve": 0.369, "c2": 0.47, "c3": 0.753}, {"time": 0.0833}, {"time": 0.2167, "angle": -31.26, "curve": 0.25, "c3": 0.75}, + {"time": 0.3333, "angle": -18.78, "curve": 0.25, "c3": 0.75}, {"time": 0.3833, "angle": -38.17, "curve": 0.25, "c3": 0.75}, {"time": 0.4667, "angle": 22.48, "curve": 0.25, "c3": 0.75}, + {"time": 0.6833, "angle": -25.91, "curve": 0.25, "c3": 0.75}, {"time": 0.85, "angle": 12.23, "curve": 0.254, "c3": 0.621, "c4": 0.47}, {"time": 0.9167, "angle": 11.59} ] }, - "body-braid-06": { + "body-fur-12": { "rotate": [ - {"angle": -20.59, "curve": 0.352, "c2": 0.41, "c3": 0.689, "c4": 0.75}, {"time": 0.2, "curve": 0.25, "c3": 0.75}, - {"time": 0.5167, "angle": -28.99, "curve": 0.25, "c3": 0.228, "c4": 0.99}, {"time": 0.8167, "angle": 9.53, "curve": 0.297, "c3": 0.634, "c4": 0.37}, - {"time": 0.8667, "angle": 8.86, "curve": 0.304, "c2": 0.22, "c3": 0.644, "c4": 0.58}, {"time": 0.9167, "angle": -20.59} - ] - }, - "body-fur-under-05": { - "translate": [{"x": 0.53, "y": 14.98}], - "shear": [ - {"x": 3.7, "curve": 0.382, "c2": 0.57, "c3": 0.737}, {"time": 0.0333, "x": -12.53, "curve": 0.25, "c3": 0.75}, {"time": 0.35, "x": 6.85, "curve": 0.25, "c3": 0.228, "c4": 0.99}, - {"time": 0.65, "x": -44.3, "curve": 0.248, "c3": 0.628, "c4": 0.52}, {"time": 0.8167, "x": -27.02, "curve": 0.356, "c2": 0.41, "c3": 0.707, "c4": 0.81}, {"time": 0.9167, "x": 3.7} - ] - }, - "body-fur-under-04": { - "translate": [{"x": -0.33, "y": 3.2}], - "shear": [ - {"x": 10.24, "curve": 0.36, "c2": 0.64, "c3": 0.695}, {"time": 0.3, "x": 13.82, "curve": 0.25, "c3": 0.228, "c4": 0.99}, - {"time": 0.6167, "x": -39.88, "curve": 0.243, "c3": 0.649, "c4": 0.6}, {"time": 0.8167, "x": -22.71, "curve": 0.382, "c2": 0.57, "c3": 0.735}, {"time": 0.9167, "x": 10.24} - ] - }, - "body-fur-under-03": { - "translate": [{"x": -0.78, "y": 3.19}], - "shear": [ - {"x": 22.47, "curve": 0.25, "c3": 0.75}, {"time": 0.25, "x": 19.28, "curve": 0.25, "c3": 0.228, "c4": 0.99}, {"time": 0.55, "x": -45.7, "curve": 0.244, "c3": 0.7, "c4": 0.79}, - {"time": 0.8167, "x": -3.18, "curve": 0.366, "c2": 0.63, "c3": 0.703}, {"time": 0.8667, "curve": 0.284, "c3": 0.625, "c4": 0.38}, {"time": 0.9167, "x": 22.47} - ] - }, - "body-fur-under-02": { - "translate": [{"x": -2.23, "y": 6.28}], - "shear": [ - {"x": -27.8, "curve": 0.375, "c2": 0.62, "c3": 0.716}, {"time": 0.2667, "x": 18.72, "curve": 0.25, "c3": 0.228, "c4": 0.99}, - {"time": 0.5667, "x": -43.03, "curve": 0.243, "c3": 0.68, "c4": 0.71}, {"time": 0.8167, "x": -5.6, "curve": 0.375, "c2": 0.62, "c3": 0.716}, - {"time": 0.8833, "curve": 0.297, "c3": 0.634, "c4": 0.37}, {"time": 0.9167, "x": -27.8} - ] - }, - "body-fur-under-01": { - "translate": [{"x": -0.14, "y": 0.84}], - "shear": [ - {"x": -4.09, "curve": 0.375, "c2": 0.5, "c3": 0.75}, {"time": 0.2, "x": 26.91, "curve": 0.25, "c3": 0.228, "c4": 0.99}, {"time": 0.5167, "x": -42.78, "curve": 0.25, "c3": 0.75}, - {"time": 0.8167, "curve": 0.265, "c3": 0.618, "c4": 0.43}, {"time": 0.9167, "x": -4.09} - ] - }, - "body-braid-01": {"rotate": [{"angle": 2.31}]} - }, - "drawOrder": [{"time": 0.35, "offsets": [{"slot": "leg-back-left", "offset": 3}]}, {"time": 0.5833}], - "events": [{"time": 0.35, "name": "start-attack"}, {"time": 0.5667, "name": "start-attack"}] - }, - "3676560492": { - "slots": { - "eyes": { - "attachment": [ - {"time": 0.05, "name": "eyes-angry"}, {"time": 0.55, "name": "eyes-shut"}, {"time": 0.65, "name": "eyes-angry"}, {"time": 0.9, "name": "eyes-shut"}, {"time": 0.9667, "name": "eyes"} + {"angle": 5.22, "curve": 0.379, "c2": 0.53, "c3": 0.746}, {"time": 0.0667, "curve": 0.25, "c3": 0.75}, {"time": 0.2, "angle": -31.26, "curve": 0.25, "c3": 0.75}, + {"time": 0.3167, "angle": -18.78, "curve": 0.25, "c3": 0.75}, {"time": 0.3667, "angle": -38.17, "curve": 0.25, "c3": 0.75}, {"time": 0.45, "angle": 22.48, "curve": 0.25, "c3": 0.75}, + {"time": 0.6667, "angle": -25.91, "curve": 0.25, "c3": 0.75}, {"time": 0.8333, "angle": 12.23, "curve": 0.247, "c3": 0.631, "c4": 0.53}, {"time": 0.9167, "angle": 8.12} ] }, - "mouth": { - "attachment": [ - {"time": 0.1167, "name": "mouth-open"}, {"time": 0.3833, "name": "mouth-bite"}, {"time": 0.65, "name": "mouth-open"}, {"time": 0.9, "name": "mouth-bite"}, - {"time": 0.9667, "name": "mouth"} - ] - } - }, - "bones": { - "@pivot-back": { + "body-fur-11": { "rotate": [ - {"curve": 0, "c2": 0.2, "c3": 0.695}, {"time": 0.1, "angle": 6, "curve": 0, "c2": 0.2, "c3": 0.695}, {"time": 0.25, "angle": -10.31, "curve": 0.317, "c4": 0.8}, - {"time": 0.3833, "angle": 5}, {"time": 0.6333, "angle": 6, "curve": 0, "c2": 0.2, "c3": 0.695}, {"time": 0.7667, "angle": -5.94, "curve": 0.317, "c4": 0.8}, - {"time": 0.9, "angle": 6.92, "curve": 0, "c2": 0.2, "c3": 0.695}, {"time": 1} - ], - "translate": [ - {"time": 0.1, "curve": 0, "c2": 0.2, "c3": 0.695}, {"time": 0.25, "y": 82.86, "curve": 0.317, "c4": 0.8}, {"time": 0.3833, "curve": "stepped"}, - {"time": 0.6333, "curve": 0, "c2": 0.2, "c3": 0.695}, {"time": 0.7667, "y": 70.12, "curve": 0.317, "c4": 0.8}, {"time": 0.9} - ] - }, - "@pivot-main": { - "translate": [{"time": 0.1, "curve": 0, "c2": 0.15, "c3": 0.703}, {"time": 0.3833, "x": 542.6}, {"time": 0.6333, "x": 603.73, "curve": 0, "c2": 0.1, "c3": 0.852}, {"time": 0.9}] - }, - "@leg-front-left": { - "translate": [ - {"curve": 0, "c2": 0.2, "c3": 0.695}, {"time": 0.1, "x": -1.93, "y": -18.15, "curve": 0, "c2": 0.3, "c3": 0.62}, {"time": 0.25, "curve": 0.313, "c4": 0.8}, - {"time": 0.3833, "x": -1.93, "y": -18.15}, {"time": 0.6333, "x": -1.68, "y": -15.27, "curve": 0, "c2": 0.2, "c3": 0.691}, {"time": 0.7667, "curve": 0.309, "c4": 0.8}, - {"time": 0.9, "x": -1.93, "y": -18.15, "curve": 0, "c2": 0.19, "c3": 0.695}, {"time": 1} - ] - }, - "@leg-front-right": { - "translate": [ - {"curve": 0, "c2": 0.2, "c3": 0.695}, {"time": 0.1, "x": -3.41, "y": -31.95, "curve": 0, "c2": 0.3, "c3": 0.62}, {"time": 0.25, "curve": 0.313, "c4": 0.8}, - {"time": 0.3833, "x": -3.41, "y": -31.95}, {"time": 0.6333, "x": -3.16, "y": -29.07, "curve": 0, "c2": 0.2, "c3": 0.691}, {"time": 0.7667, "curve": 0.309, "c4": 0.8}, - {"time": 0.9, "x": -3.41, "y": -31.95, "curve": 0, "c2": 0.19, "c3": 0.695}, {"time": 1} - ] - }, - "@leg-back-left": { - "translate": [ - {"curve": 0, "c2": 0.2, "c3": 0.695}, {"time": 0.1, "x": -0.42, "y": -4.72, "curve": 0, "c2": 0.3, "c3": 0.62}, {"time": 0.25, "curve": 0.313, "c4": 0.8}, - {"time": 0.3833, "x": -0.42, "y": -4.72, "curve": "stepped"}, {"time": 0.6333, "x": -0.42, "y": -4.72, "curve": 0, "c2": 0.2, "c3": 0.691}, {"time": 0.7667, "curve": 0.309, "c4": 0.8}, - {"time": 0.9, "x": -0.42, "y": -4.72, "curve": 0, "c2": 0.19, "c3": 0.695}, {"time": 1} - ] - }, - "leg-front-right-IK": { - "translate": [ - {"time": 0.1, "curve": 0, "c2": 0.3, "c3": 0.62}, {"time": 0.2167, "x": -58.81, "y": 174.08, "curve": 0.257, "c3": 0.637, "c4": 0.43}, - {"time": 0.2833, "x": 10.68, "y": 136.08, "curve": 0.518, "c2": 0.35, "c4": 0.83}, {"time": 0.3833, "x": 11}, {"time": 0.6333, "x": -14.37, "curve": 0, "c2": 0.2, "c3": 0.691}, - {"time": 0.7333, "x": 26.13, "y": 111.42, "curve": 0.257, "c3": 0.63, "c4": 0.42}, {"time": 0.8, "x": -44.87, "y": 129.12, "curve": 0.503, "c2": 0.34, "c4": 0.83}, {"time": 0.9} - ] - }, - "leg-front-left-IK": { - "translate": [ - {"time": 0.1, "curve": 0, "c2": 0.3, "c3": 0.62}, {"time": 0.2167, "x": -73.46, "y": 138.38, "curve": 0.257, "c3": 0.637, "c4": 0.43}, - {"time": 0.2833, "x": -0.77, "y": 108.17, "curve": 0.518, "c2": 0.35, "c4": 0.83}, {"time": 0.3833, "x": 11}, {"time": 0.6333, "x": -14.37, "curve": 0, "c2": 0.2, "c3": 0.691}, - {"time": 0.7333, "x": 11.48, "y": 75.71, "curve": 0.257, "c3": 0.63, "c4": 0.42}, {"time": 0.8, "x": -56.77, "y": 100.13, "curve": 0.503, "c2": 0.34, "c4": 0.83}, {"time": 0.9} - ] - }, - "leg-back-left-IK": { - "translate": [ - {"time": 0.1, "curve": 0, "c2": 0.3, "c3": 0.62}, {"time": 0.2, "x": -56.56, "y": 95.34, "curve": 0.257, "c3": 0.637, "c4": 0.43}, - {"time": 0.2667, "x": 21.01, "y": 67.87, "curve": 0.518, "c2": 0.35, "c4": 0.83}, {"time": 0.3833, "x": 0.85}, {"time": 0.6333, "x": -16.87, "curve": 0, "c2": 0.2, "c3": 0.691}, - {"time": 0.7167, "x": 21.01, "y": 67.87, "curve": 0.257, "c3": 0.63, "c4": 0.42}, {"time": 0.7833, "x": -41.39, "y": 75.95, "curve": 0.503, "c2": 0.34, "c4": 0.83}, {"time": 0.9} + {"angle": 3.47, "curve": 0.382, "c2": 0.57, "c3": 0.735}, {"time": 0.05, "curve": 0.25, "c3": 0.75}, {"time": 0.1833, "angle": -31.26, "curve": 0.25, "c3": 0.75}, + {"time": 0.3, "angle": -18.78, "curve": 0.25, "c3": 0.75}, {"time": 0.35, "angle": -38.17, "curve": 0.25, "c3": 0.75}, {"time": 0.4333, "angle": 22.48, "curve": 0.25, "c3": 0.75}, + {"time": 0.65, "angle": -25.91, "curve": 0.25, "c3": 0.75}, {"time": 0.8167, "angle": 12.23, "curve": 0.243, "c3": 0.649, "c4": 0.6}, {"time": 0.9167, "angle": 4.23} ] }, - "tail": { + "body-fur-10": { "rotate": [ - {"curve": 0, "c2": 0.2, "c3": 0.695}, {"time": 0.1, "angle": 21.16, "curve": 0, "c2": 0.2, "c3": 0.695}, {"time": 0.25, "angle": -27.62, "curve": 0.317, "c4": 0.8}, - {"time": 0.3833, "angle": 17.89}, {"time": 0.6333, "angle": 23.46, "curve": 0, "c2": 0.2, "c3": 0.695}, {"time": 0.7667, "angle": -27.7, "curve": 0.317, "c4": 0.8}, - {"time": 0.9, "angle": 21.16, "curve": 0, "c2": 0.2, "c3": 0.695}, {"time": 1} - ] - }, - "@shadow": { - "translate": [{"time": 0.1}, {"time": 0.3833, "x": 542.6}, {"time": 0.6333, "x": 603.73, "curve": 0, "c2": 0.1, "c3": 0.852}, {"time": 0.9}], - "scale": [ - {}, {"time": 0.1, "x": 1.08, "y": 1.08}, {"time": 0.25, "x": 0.9, "y": 0.9}, {"time": 0.3833, "x": 1.08, "y": 1.08}, {"time": 0.6333, "x": 1.1, "y": 1.1}, - {"time": 0.7833, "x": 0.9, "y": 0.9}, {"time": 0.9, "x": 1.08, "y": 1.08}, {"time": 1} - ] - }, - "body-fur-under-01": { - "shear": [ - {"x": 3.83, "curve": 0.375, "c2": 0.62, "c3": 0.716}, {"time": 0.0167, "curve": 0.25, "c3": 0.75}, {"time": 0.1, "x": 29.22, "curve": 0.25, "c3": 0.75}, - {"time": 0.3333, "x": -53.77, "curve": 0.25, "c3": 0.75}, {"time": 0.5833, "x": 43.54, "curve": 0.25, "c3": 0.75}, {"time": 0.7667, "x": -64.44, "curve": 0.25, "c3": 0.75}, - {"time": 0.9, "x": 29.43, "curve": 0.243, "c3": 0.68, "c4": 0.71}, {"time": 1, "x": 3.83} + {"angle": 1.89, "curve": 0.377, "c2": 0.61, "c3": 0.72}, {"time": 0.0333, "curve": 0.25, "c3": 0.75}, {"time": 0.1667, "angle": -31.26, "curve": 0.25, "c3": 0.75}, + {"time": 0.2833, "angle": -18.78, "curve": 0.25, "c3": 0.75}, {"time": 0.3333, "angle": -38.17, "curve": 0.25, "c3": 0.75}, {"time": 0.4167, "angle": 22.48, "curve": 0.25, "c3": 0.75}, + {"time": 0.6333, "angle": -25.91, "curve": 0.25, "c3": 0.75}, {"time": 0.8, "angle": 12.23, "curve": 0.243, "c3": 0.674, "c4": 0.69}, {"time": 0.9167, "angle": 0.34} ] }, - "body-fur-under-03": { - "shear": [ - {"x": -14.87, "curve": 0.363, "c2": 0.44, "c3": 0.755}, {"time": 0.0667, "curve": 0.25, "c3": 0.75}, {"time": 0.15, "x": -3.53, "curve": 0.25, "c3": 0.75}, - {"time": 0.3833, "x": 33.65, "curve": 0.25, "c3": 0.75}, {"time": 0.6333, "x": -20.36, "curve": 0.25, "c3": 0.75}, {"time": 0.8167, "x": 43.83, "curve": 0.25, "c3": 0.75}, - {"time": 0.95, "x": -23.52, "curve": 0.258, "c3": 0.619, "c4": 0.45}, {"time": 1, "x": -14.87} + "body-fur-09": { + "rotate": [ + {"angle": 6.97, "curve": 0.342, "c2": 0.36, "c3": 0.692, "c4": 0.75}, {"time": 0.05, "angle": 1.89, "curve": 0.377, "c2": 0.61, "c3": 0.72}, {"time": 0.0833, "curve": 0.25, "c3": 0.75}, + {"time": 0.2167, "angle": -31.26, "curve": 0.25, "c3": 0.75}, {"time": 0.3333, "angle": -18.78, "curve": 0.25, "c3": 0.75}, {"time": 0.3833, "angle": -38.17, "curve": 0.25, "c3": 0.75}, + {"time": 0.4667, "angle": 22.48, "curve": 0.25, "c3": 0.75}, {"time": 0.6833, "angle": -25.91, "curve": 0.25, "c3": 0.75}, + {"time": 0.85, "angle": 12.23, "curve": 0.254, "c3": 0.621, "c4": 0.47}, {"time": 0.9167, "angle": 6.86} ] }, - "body-fur-under-04": { - "shear": [ - {"x": -5.22, "curve": 0.375, "c2": 0.62, "c3": 0.716}, {"time": 0.0167, "curve": 0.25, "c3": 0.75}, {"time": 0.1, "x": -30.84, "curve": 0.25, "c3": 0.75}, - {"time": 0.3333, "x": 38.54, "curve": 0.25, "c3": 0.75}, {"time": 0.5833, "x": -50.56, "curve": 0.25, "c3": 0.75}, {"time": 0.7667, "x": 40.49, "curve": 0.25, "c3": 0.75}, - {"time": 0.9, "x": -40.09, "curve": 0.243, "c3": 0.68, "c4": 0.71}, {"time": 1, "x": -5.22} + "body-fur-08": { + "rotate": [ + {"angle": 3.47, "curve": 0.382, "c2": 0.57, "c3": 0.735}, {"time": 0.05}, {"time": 0.1833, "angle": -31.26, "curve": 0.25, "c3": 0.75}, + {"time": 0.3, "angle": -18.78, "curve": 0.25, "c3": 0.75}, {"time": 0.35, "angle": -38.17, "curve": 0.25, "c3": 0.75}, {"time": 0.4333, "angle": 22.48, "curve": 0.25, "c3": 0.75}, + {"time": 0.65, "angle": -25.91, "curve": 0.25, "c3": 0.75}, {"time": 0.8167, "angle": 12.23, "curve": 0.243, "c3": 0.649, "c4": 0.6}, {"time": 0.9167, "angle": -0.91} ] }, - "body-fur-under-02": { - "shear": [ - {"x": 7.08, "curve": 0.375, "c2": 0.5, "c3": 0.75}, {"time": 0.0333, "x": 14.15, "curve": 0.25, "c3": 0.75}, {"time": 0.2667, "x": -46.5, "curve": 0.25, "c3": 0.75}, - {"time": 0.5167, "x": 37.58, "curve": 0.25, "c3": 0.75}, {"time": 0.7167, "x": -65.53, "curve": 0.25, "c3": 0.75}, {"time": 0.8333, "x": 23.87, "curve": 0.25, "c3": 0.75}, - {"time": 0.9667, "curve": 0.25, "c3": 0.625, "c4": 0.5}, {"time": 1, "x": 7.08} + "body-fur-07": { + "rotate": [ + {"angle": 0.63, "curve": 0.362, "c2": 0.64, "c3": 0.698}, {"time": 0.0167, "curve": 0.25, "c3": 0.75}, {"time": 0.15, "angle": -31.26, "curve": 0.25, "c3": 0.75}, + {"time": 0.2667, "angle": -18.78, "curve": 0.25, "c3": 0.75}, {"time": 0.3167, "angle": -38.17, "curve": 0.25, "c3": 0.75}, {"time": 0.4, "angle": 22.48, "curve": 0.25, "c3": 0.75}, + {"time": 0.6167, "angle": -25.91, "curve": 0.25, "c3": 0.75}, {"time": 0.7833, "angle": 12.23, "curve": 0.245, "c3": 0.707, "c4": 0.82}, {"time": 0.9167, "angle": 2.91} ] }, - "body-fur-under-05": { - "shear": [ - {"x": -20.93, "curve": 0.375, "c2": 0.5, "c3": 0.75}, {"time": 0.0667, "curve": 0.25, "c3": 0.75}, {"time": 0.1333, "x": -34.2, "curve": 0.25, "c3": 0.75}, - {"time": 0.3667, "x": 32.44, "curve": 0.25, "c3": 0.75}, {"time": 0.6167, "x": -55.52, "curve": 0.25, "c3": 0.75}, {"time": 0.8167, "x": 35.57, "curve": 0.25, "c3": 0.75}, - {"time": 0.9333, "x": -41.86, "curve": 0.25, "c3": 0.625, "c4": 0.5}, {"time": 1, "x": -20.93} + "body-fur-06": { + "rotate": [ + {"angle": 5.17, "curve": 0.347, "c2": 0.38, "c3": 0.688, "c4": 0.74}, {"time": 0.0333, "angle": 1.89, "curve": 0.377, "c2": 0.61, "c3": 0.72}, {"time": 0.0667}, + {"time": 0.2, "angle": -31.26, "curve": 0.25, "c3": 0.75}, {"time": 0.3167, "angle": -18.78, "curve": 0.25, "c3": 0.75}, {"time": 0.3667, "angle": -38.17, "curve": 0.25, "c3": 0.75}, + {"time": 0.45, "angle": 22.48, "curve": 0.25, "c3": 0.75}, {"time": 0.6667, "angle": -25.91, "curve": 0.25, "c3": 0.75}, + {"time": 0.8333, "angle": 12.23, "curve": 0.247, "c3": 0.631, "c4": 0.53}, {"time": 0.9167, "angle": 13.33} ] }, - "body-braid-02": { + "body-fur-05": { "rotate": [ - {"curve": 0.25, "c3": 0.75}, {"time": 0.3167, "angle": 42.01, "curve": 0.25, "c3": 0.75}, {"time": 0.5667, "angle": 8.9, "curve": 0.25, "c3": 0.144}, - {"time": 0.8167, "angle": 57.87, "curve": 0.25, "c3": 0.75}, {"time": 1} + {"angle": 1.89, "curve": 0.377, "c2": 0.61, "c3": 0.72}, {"time": 0.0333}, {"time": 0.1667, "angle": -31.26, "curve": 0.25, "c3": 0.75}, + {"time": 0.2833, "angle": -18.78, "curve": 0.25, "c3": 0.75}, {"time": 0.3333, "angle": -38.17, "curve": 0.25, "c3": 0.75}, {"time": 0.4167, "angle": 22.48, "curve": 0.25, "c3": 0.75}, + {"time": 0.6333, "angle": -25.91, "curve": 0.25, "c3": 0.75}, {"time": 0.8, "angle": 12.23, "curve": 0.243, "c3": 0.674, "c4": 0.69}, {"time": 0.9167, "angle": 6.86} ] }, - "body-braid-03": { + "body-fur-04": { "rotate": [ - {"angle": 5.93, "curve": 0.375, "c2": 0.62, "c3": 0.716}, {"time": 0.0333, "curve": 0.25, "c3": 0.75}, {"time": 0.35, "angle": 20.46, "curve": 0.25, "c3": 0.75}, - {"time": 0.6167, "angle": -13.49, "curve": 0.25, "c3": 0.144}, {"time": 0.85, "angle": 46.3, "curve": 0.243, "c3": 0.68, "c4": 0.71}, {"time": 1, "angle": 5.93} + {"angle": 6.97, "curve": 0.342, "c2": 0.36, "c3": 0.692, "c4": 0.75}, {"time": 0.05, "angle": 1.89, "curve": 0.377, "c2": 0.61, "c3": 0.72}, {"time": 0.0833}, + {"time": 0.2167, "angle": -31.26, "curve": 0.25, "c3": 0.75}, {"time": 0.3333, "angle": -18.78, "curve": 0.25, "c3": 0.75}, {"time": 0.3833, "angle": -38.17, "curve": 0.25, "c3": 0.75}, + {"time": 0.4667, "angle": 22.48, "curve": 0.25, "c3": 0.75}, {"time": 0.6833, "angle": -25.91, "curve": 0.25, "c3": 0.75}, + {"time": 0.85, "angle": 12.23, "curve": 0.254, "c3": 0.621, "c4": 0.47}, {"time": 0.9167, "angle": 12.53} ] }, - "body-braid-04": { + "body-fur-03": { "rotate": [ - {"angle": 16.47, "curve": 0.378, "c2": 0.52, "c3": 0.748}, {"time": 0.0833, "curve": 0.25, "c3": 0.75}, {"time": 0.4, "angle": 36.13, "curve": 0.25, "c3": 0.75}, - {"time": 0.6667, "angle": -30, "curve": 0.25, "c3": 0.144}, {"time": 0.9, "angle": 36.13, "curve": 0.248, "c3": 0.628, "c4": 0.52}, {"time": 1, "angle": 16.47} + {"angle": 3.47, "curve": 0.382, "c2": 0.57, "c3": 0.735}, {"time": 0.05}, {"time": 0.1833, "angle": -31.26, "curve": 0.25, "c3": 0.75}, + {"time": 0.3, "angle": -18.78, "curve": 0.25, "c3": 0.75}, {"time": 0.35, "angle": -38.17, "curve": 0.25, "c3": 0.75}, {"time": 0.4333, "angle": 22.48, "curve": 0.25, "c3": 0.75}, + {"time": 0.65, "angle": -25.91, "curve": 0.25, "c3": 0.75}, {"time": 0.8167, "angle": 12.23, "curve": 0.243, "c3": 0.649, "c4": 0.6}, {"time": 0.9167, "angle": 5.54} ] }, - "body-braid-05": { + "body-fur-02": { "rotate": [ - {"angle": -6.56, "curve": 0.32, "c2": 0.29, "c3": 0.757}, {"time": 0.15, "curve": 0.25, "c3": 0.75}, {"time": 0.4667, "angle": -7.54, "curve": 0.25, "c3": 0.75}, - {"time": 0.7167, "angle": -31.56, "curve": 0.25, "c3": 0.144}, {"time": 0.9667, "angle": -7.54, "curve": 0.284, "c3": 0.625, "c4": 0.38}, {"time": 1, "angle": -6.56} + {"angle": 8.73, "curve": 0.33, "c2": 0.32, "c3": 0.693, "c4": 0.75}, {"time": 0.0667, "angle": 1.89, "curve": 0.377, "c2": 0.61, "c3": 0.72}, {"time": 0.1}, + {"time": 0.2333, "angle": -31.26, "curve": 0.25, "c3": 0.75}, {"time": 0.35, "angle": -18.78, "curve": 0.25, "c3": 0.75}, {"time": 0.4, "angle": -38.17, "curve": 0.25, "c3": 0.75}, + {"time": 0.4833, "angle": 22.48, "curve": 0.25, "c3": 0.75}, {"time": 0.7, "angle": -25.91, "curve": 0.25, "c3": 0.75}, + {"time": 0.8667, "angle": 12.23, "curve": 0.265, "c3": 0.618, "c4": 0.43}, {"time": 0.9167, "angle": 13.84} ] }, - "body-braid-06": { + "body-fur-01": { "rotate": [ - {"angle": -2.49, "curve": 0.37, "c2": 0.63, "c3": 0.708}, {"time": 0.0333, "angle": 1.41, "curve": 0.25, "c3": 0.75}, {"time": 0.2167, "curve": 0.25, "c3": 0.75}, - {"time": 0.5333, "angle": 1.41, "curve": 0.25, "c3": 0.75}, {"time": 0.8, "angle": -42.25, "curve": 0.25, "c3": 0.144}, {"time": 1, "angle": -2.49} + {"angle": 5.22, "curve": 0.379, "c2": 0.53, "c3": 0.746}, {"time": 0.0667}, {"time": 0.2, "angle": -31.26, "curve": 0.25, "c3": 0.75}, + {"time": 0.3167, "angle": -18.78, "curve": 0.25, "c3": 0.75}, {"time": 0.3667, "angle": -38.17, "curve": 0.25, "c3": 0.75}, {"time": 0.45, "angle": 22.48, "curve": 0.25, "c3": 0.75}, + {"time": 0.6667, "angle": -25.91, "curve": 0.25, "c3": 0.75}, {"time": 0.8333, "angle": 12.23, "curve": 0.247, "c3": 0.631, "c4": 0.53}, {"time": 0.9167, "angle": 10.51} ] } - } + }, + "drawOrder": [{"time": 0.35, "offsets": [{"slot": "leg-back-left", "offset": 2}]}, {"time": 0.5833}], + "events": [{"time": 0.35, "name": "start-attack"}, {"time": 0.5667, "name": "start-attack"}] }, - "984729030": { - "slots": {"eyes": {"attachment": [{"time": 0.05, "name": "eyes-happy"}, {"time": 0.7667, "name": "eyes"}]}}, + "3760585416": { + "slots": { + "eyes": {"attachment": [{"time": 0.1333, "name": "eyes-shut"}, {"time": 0.2, "name": "eyes"}, {"time": 0.4667, "name": "eyes-shut"}, {"time": 0.5833, "name": "eyes"}]}, + "mouth": { + "attachment": [ + {"time": 0.0833, "name": "mouth-open"}, {"time": 0.1667, "name": "mouth-bite"}, {"time": 0.3333, "name": "mouth"}, {"time": 0.4167, "name": "mouth-open"}, + {"time": 0.5, "name": "mouth-bite"}, {"time": 0.5833, "name": "mouth"} + ] + } + }, "bones": { - "@pivot-back": { - "rotate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "angle": -5.76, "curve": 0.306, "c3": 0.695}, {"time": 0.6667, "angle": -6.67, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.8333, "angle": 2.85, "curve": 0.306, "c3": 0.695}, {"time": 1} - ], + "@mouth": { "translate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": -11.96, "y": -12.91, "curve": 0.306, "c3": 0.695}, - {"time": 0.6667, "x": -17.52, "y": -16.38, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.8333} + {"time": 0.1667, "curve": 0, "c2": 0.1, "c3": 0.479, "c4": 0.56}, {"time": 0.3333, "x": -0.56, "y": 3.4, "curve": 0.408, "c2": 0.51, "c3": 0.853}, {"time": 0.5, "x": 0.04, "y": 0.05} ] }, - "@leg-front-left": { + "@pivot-back": { + "rotate": [ + {"curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.0667, "angle": -0.59, "curve": 0.075, "c4": 0.95}, {"time": 0.1333, "angle": 1.15, "curve": 0, "c2": 0.1, "c3": 0.85}, + {"time": 0.2167, "curve": "stepped"}, {"time": 0.3333, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.4, "angle": -0.59, "curve": 0.075, "c4": 0.95}, + {"time": 0.4667, "angle": 1.15, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.5833} + ], "translate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": -20.02, "y": -2.36, "curve": "stepped"}, {"time": 0.6667, "x": -20.02, "y": -2.36, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.8333, "x": 5.31, "y": -7.32, "curve": 0.306, "c3": 0.695}, {"time": 1} + {"y": 0.06, "curve": 0.387, "c3": 0.314}, {"time": 0.1333, "x": -13.8, "y": 0.06, "curve": 0.387, "c3": 0.314}, {"time": 0.2167, "x": 0.02, "y": 0.06, "curve": "stepped"}, + {"time": 0.3333, "x": 0.02, "y": 0.06, "curve": 0.387, "c3": 0.314}, {"time": 0.4667, "x": -13.8, "y": 0.06, "curve": 0.387, "c3": 0.314}, {"time": 0.5833, "x": 0.02, "y": 0.06} ] }, "@leg-front-right": { - "translate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": -36.67, "y": 20.01, "curve": 0.306, "c3": 0.695}, - {"time": 0.6667, "x": -44.17, "y": 20.3, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.8333, "x": -12.71, "y": -17.14, "curve": 0.306, "c3": 0.695}, {"time": 1} - ] - }, - "@leg-back-left": { - "translate": [ - {"time": 0.1667, "curve": 0.306, "c3": 0.695}, {"time": 0.6667, "x": -4.62, "y": -2.21, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.8333, "x": -0.1, "y": -3.16, "curve": 0.306, "c3": 0.695}, {"time": 1} - ] - }, - "tail": { "rotate": [ - {"curve": 0, "c2": 0.3, "c3": 0.54}, {"time": 0.1667, "angle": -11.59, "curve": 0.306, "c3": 0.695}, {"time": 0.4167, "angle": 2.75, "curve": 0.306, "c3": 0.695}, - {"time": 0.6667, "angle": -13.32, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.8333, "angle": 15.71, "curve": 0.306, "c3": 0.695}, {"time": 1} - ] - }, - "@shadow": { - "scale": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": 0.96, "y": 0.96}, {"time": 0.6667, "x": 0.94, "y": 0.94, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.8333, "x": 1.06, "y": 1.06, "curve": 0.306, "c3": 0.695}, {"time": 1} - ] - }, - "body-fur-under-05": { - "translate": [{"x": 0.53, "y": 14.98}], - "shear": [ - {"x": 3.7, "curve": 0.382, "c2": 0.57, "c3": 0.737}, {"time": 0.0667, "curve": 0.25, "c3": 0.75}, {"time": 0.1333, "x": -34.2, "curve": 0.25, "c3": 0.75}, - {"time": 0.3833, "x": 32.44, "curve": 0.25, "c3": 0.75}, {"time": 0.6333, "x": -55.52, "curve": 0.25, "c3": 0.75}, {"time": 0.8167, "x": 35.57, "curve": 0.25, "c3": 0.75}, - {"time": 0.95, "x": -41.86, "curve": 0.25, "c3": 0.625, "c4": 0.5}, {"time": 1, "x": 3.7} - ] - }, - "body-fur-under-04": { - "translate": [{"x": -0.33, "y": 3.2}], - "shear": [ - {"x": 10.24, "curve": 0.36, "c2": 0.64, "c3": 0.695}, {"time": 0.0333, "curve": 0.25, "c3": 0.75}, {"time": 0.1, "x": -30.84, "curve": 0.25, "c3": 0.75}, - {"time": 0.3333, "x": 38.54, "curve": 0.25, "c3": 0.75}, {"time": 0.6, "x": -50.56, "curve": 0.25, "c3": 0.75}, {"time": 0.7833, "x": 40.49, "curve": 0.25, "c3": 0.75}, - {"time": 0.9, "x": -40.09, "curve": 0.243, "c3": 0.68, "c4": 0.71}, {"time": 1, "x": 10.24} - ] - }, - "body-fur-under-03": { - "translate": [{"x": -0.78, "y": 3.19}], - "shear": [ - {"x": 22.47, "curve": 0.25, "c3": 0.75}, {"time": 0.0833, "curve": 0.25, "c3": 0.75}, {"time": 0.15, "x": -3.53, "curve": 0.25, "c3": 0.75}, - {"time": 0.3833, "x": 33.65, "curve": 0.25, "c3": 0.75}, {"time": 0.65, "x": -20.36, "curve": 0.25, "c3": 0.75}, {"time": 0.8333, "x": 43.83, "curve": 0.25, "c3": 0.75}, - {"time": 0.95, "x": -23.52, "curve": 0.258, "c3": 0.619, "c4": 0.45}, {"time": 1, "x": 22.47} - ] - }, - "body-fur-under-02": { - "translate": [{"x": -2.23, "y": 6.28}], - "shear": [ - {"x": -27.8, "curve": 0.375, "c2": 0.62, "c3": 0.716}, {"time": 0.0333, "x": 14.15, "curve": 0.25, "c3": 0.75}, {"time": 0.2833, "x": -46.5, "curve": 0.25, "c3": 0.75}, - {"time": 0.5333, "x": 37.58, "curve": 0.25, "c3": 0.75}, {"time": 0.7167, "x": -65.53, "curve": 0.25, "c3": 0.75}, {"time": 0.85, "x": 23.87, "curve": 0.25, "c3": 0.75}, - {"time": 0.9667, "curve": 0.25, "c3": 0.625, "c4": 0.5}, {"time": 1, "x": -27.8} - ] - }, - "body-fur-under-01": { - "translate": [{"x": -0.14, "y": 0.84}], - "shear": [ - {"x": -4.09, "curve": 0.375, "c2": 0.5, "c3": 0.75}, {"time": 0.0333, "curve": 0.25, "c3": 0.75}, {"time": 0.1, "x": 29.22, "curve": 0.25, "c3": 0.75}, - {"time": 0.3333, "x": -53.77, "curve": 0.25, "c3": 0.75}, {"time": 0.6, "x": 43.54, "curve": 0.25, "c3": 0.75}, {"time": 0.7833, "x": -64.44, "curve": 0.25, "c3": 0.75}, - {"time": 0.9, "x": 29.43, "curve": 0.243, "c3": 0.68, "c4": 0.71}, {"time": 1, "x": -4.09} + {"curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.0667, "angle": 10.98, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.2167, "angle": -8.78, "curve": 0.161, "c3": 0.854}, + {"time": 0.3333, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.4, "angle": 10.98, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.55, "angle": -8.78, "curve": 0.161, "c3": 0.854}, + {"time": 0.6667, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.8333, "angle": -9.85, "curve": 0.161, "c3": 0.854}, {"time": 0.9833, "angle": -6.21}, + {"time": 1.15, "angle": 2.69, "curve": 0.075, "c4": 0.95}, {"time": 1.3333, "angle": -30.3} ] }, - "body-braid-02": { + "@leg-front-left": { "rotate": [ - {"angle": 3.5, "curve": 0.348, "c2": 0.38, "c3": 0.685, "c4": 0.73}, {"time": 0.0167, "angle": 2.63, "curve": 0.25, "c3": 0.228, "c4": 0.99}, - {"time": 0.35, "angle": 25.58, "curve": 0.25, "c3": 0.75}, {"time": 0.6833, "curve": 0.284, "c3": 0.625, "c4": 0.38}, - {"time": 0.75, "angle": 0.34, "curve": 0.315, "c2": 0.27, "c3": 0.738, "c4": 0.92}, {"time": 1, "angle": 3.5} + {"curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.0667, "angle": 10.98, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.2167, "angle": -8.78, "curve": 0.161, "c3": 0.854}, + {"time": 0.3333, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.4, "angle": 10.98, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.55, "angle": -8.78, "curve": 0.161, "c3": 0.854}, + {"time": 0.6667, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.8333, "angle": -9.84, "curve": 0.161, "c3": 0.854}, {"time": 0.9833, "angle": -6.21}, + {"time": 1.15, "angle": 2.69, "curve": 0.075, "c4": 0.95}, {"time": 1.3333, "angle": 20.14} ] }, - "body-braid-03": { + "@leg-back-left": { "rotate": [ - {"angle": -1.71, "curve": 0.337, "c2": 0.34, "c3": 0.673, "c4": 0.69}, {"time": 0.0667, "angle": 2.63, "curve": 0.25, "c3": 0.228, "c4": 0.99}, - {"time": 0.3833, "angle": 23.44, "curve": 0.244, "c3": 0.7, "c4": 0.79}, {"time": 0.6833, "angle": 1.63, "curve": 0.366, "c2": 0.63, "c3": 0.703}, - {"time": 0.7167, "curve": 0.313, "c3": 0.648, "c4": 0.35}, {"time": 0.75, "angle": 0.06, "curve": 0.268, "c2": 0.1, "c3": 0.687, "c4": 0.74}, {"time": 1, "angle": -1.71} + {"curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.0667, "angle": 10.98, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.2167, "angle": -8.78, "curve": 0.161, "c3": 0.854}, + {"time": 0.3333, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.4, "angle": 10.98, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.55, "angle": -8.78, "curve": 0.161, "c3": 0.854}, + {"time": 0.6667, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.8333, "angle": 5.93, "curve": 0.161, "c3": 0.854}, {"time": 0.9833}, + {"time": 1.15, "angle": -4.97, "curve": 0.075, "c4": 0.95}, {"time": 1.3333, "angle": -11.75} ] }, - "body-braid-04": { + "@pivot-main": {"translate": [{"curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.0667, "y": 7.88, "curve": 0.078, "c4": 0.94}, {"time": 0.1333}]}, + "@pivot-center": {"translate": [{"curve": 0.387, "c3": 0.314}, {"time": 0.6667, "y": 14.05, "curve": 0.387, "c3": 0.314}, {"time": 1.3333}]}, + "@shadow": { + "translate": [ + {"curve": 0.387, "c3": 0.314}, {"time": 0.1333, "x": -23.3, "curve": 0.387, "c3": 0.314}, {"time": 0.2167, "x": -9.6, "curve": "stepped"}, + {"time": 0.3333, "x": -9.6, "curve": 0.387, "c3": 0.314}, {"time": 0.4667, "x": -23.3, "curve": 0.387, "c3": 0.314}, {"time": 0.5833} + ], + "scale": [{"curve": 0.387, "c3": 0.314}, {"time": 0.6667, "x": 0.95, "y": 0.95, "curve": 0.387, "c3": 0.314}, {"time": 1.3333}] + }, + "tail": { "rotate": [ - {"angle": -9.29, "curve": 0.323, "c2": 0.3, "c3": 0.66, "c4": 0.65}, {"time": 0.1333, "angle": 2.63, "curve": 0.25, "c3": 0.228, "c4": 0.99}, - {"time": 0.45, "angle": 16.91, "curve": 0.243, "c3": 0.649, "c4": 0.6}, {"time": 0.6833, "angle": 4.8, "curve": 0.356, "c2": 0.42, "c3": 0.696, "c4": 0.78}, - {"time": 0.75, "angle": 1.11, "curve": 0.366, "c2": 0.63, "c3": 0.703}, {"time": 0.8, "curve": 0.245, "c3": 0.637, "c4": 0.56}, {"time": 1, "angle": -9.29} + {"curve": 0, "c2": 0.12, "c3": 0.348, "c4": 0.47}, {"time": 0.1, "angle": -6.85, "curve": 0.229, "c2": 0.25, "c3": 0.569, "c4": 0.6}, + {"time": 0.2, "angle": 1.43, "curve": 0.188, "c2": 0.31, "c3": 0.695}, {"time": 0.3333, "angle": 3.02, "curve": 0, "c2": 0.12, "c3": 0.347, "c4": 0.48}, + {"time": 0.4333, "angle": -6.85, "curve": 0.229, "c2": 0.25, "c3": 0.569, "c4": 0.6}, {"time": 0.5333, "angle": 1.2, "curve": 0.155, "c3": 0.85}, + {"time": 0.75, "angle": -5.95, "curve": 0.161, "c3": 0.854}, {"time": 0.95, "angle": -0.94}, {"time": 1.15, "angle": 4.91, "curve": 0.234, "c4": 0.9}, {"time": 1.3333} ] }, - "body-braid-05": { + "body-fur-01": { "rotate": [ - {"angle": -8.3, "curve": 0.294, "c3": 0.631, "c4": 0.37}, {"time": 0.2167, "angle": -10.49, "curve": 0.25, "c3": 0.228, "c4": 0.99}, - {"time": 0.55, "angle": 8.22, "curve": 0.258, "c3": 0.619, "c4": 0.45}, {"time": 0.6833, "angle": 5.2, "curve": 0.33, "c2": 0.32, "c3": 0.67, "c4": 0.68}, - {"time": 0.75, "angle": 3.03, "curve": 0.381, "c2": 0.55, "c3": 0.742}, {"time": 0.8833, "curve": 0.263, "c3": 0.618, "c4": 0.43}, {"time": 1, "angle": -8.3} + {"angle": -2.52, "curve": 0.382, "c2": 0.55, "c3": 0.741}, {"time": 0.0833}, {"time": 0.2, "angle": 21.4, "curve": 0.25, "c3": 0.75}, + {"time": 0.35, "angle": -20.96, "curve": 0.25, "c3": 0.75}, {"time": 0.55, "angle": 22.02, "curve": 0.25, "c3": 0.75}, {"time": 0.75, "angle": -20.96, "curve": 0.25, "c3": 0.75}, + {"time": 0.9833, "angle": 1.24, "curve": 0.25, "c3": 0.75}, {"time": 1.2, "angle": -7.25, "curve": 0.245, "c3": 0.64, "c4": 0.57}, {"time": 1.3333, "angle": -2.52} ] }, - "body-braid-06": { + "body-fur-02": { "rotate": [ - {"angle": -20.59, "curve": 0.352, "c2": 0.41, "c3": 0.689, "c4": 0.75}, {"time": 0.1667, "curve": 0.25, "c3": 0.75}, - {"time": 0.4167, "angle": -28.99, "curve": 0.25, "c3": 0.228, "c4": 0.99}, {"time": 0.6667, "angle": 9.53, "curve": 0.297, "c3": 0.634, "c4": 0.37}, - {"time": 0.7, "angle": 8.86, "curve": 0.304, "c2": 0.22, "c3": 0.644, "c4": 0.58}, {"time": 0.75, "angle": 6.87, "curve": 0.351, "c2": 0.4, "c3": 0.757}, {"time": 1, "angle": -20.59} + {"angle": -4.7, "curve": 0.336, "c2": 0.34, "c3": 0.691, "c4": 0.74}, {"time": 0.0833, "angle": -1.19, "curve": 0.378, "c2": 0.61, "c3": 0.721}, {"time": 0.1333}, + {"time": 0.25, "angle": 21.4, "curve": 0.25, "c3": 0.75}, {"time": 0.4, "angle": -20.96, "curve": 0.25, "c3": 0.75}, {"time": 0.6, "angle": 22.02, "curve": 0.25, "c3": 0.75}, + {"time": 0.8, "angle": -20.96, "curve": 0.25, "c3": 0.75}, {"time": 1.0333, "angle": 1.24, "curve": 0.25, "c3": 0.75}, + {"time": 1.25, "angle": -7.25, "curve": 0.259, "c3": 0.618, "c4": 0.45}, {"time": 1.3333, "angle": -4.7} ] }, - "body-braid-01": {"rotate": [{"angle": 2.31}]} - }, - "events": [{"time": 0.1667, "name": "hit-buff"}] - }, - "2827866347": { - "slots": { - "eyes": {"attachment": [{"time": 0.05, "name": "eyes-shut"}, {"time": 0.7667, "name": "eyes"}]}, - "mouth": {"attachment": [{"time": 0.05, "name": "mouth-bite"}, {"time": 0.7667, "name": "mouth"}]} - }, - "bones": { - "@pivot-back": { + "body-fur-03": { "rotate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "angle": 3.5}, {"time": 0.6667, "angle": 4, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.8333, "angle": -1.98, "curve": 0.306, "c3": 0.695}, {"time": 1} - ], - "translate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "y": 2.9}, {"time": 0.6667, "y": 3.91, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.8333, "y": -2.14, "curve": 0.306, "c3": 0.695}, {"time": 1} + {"angle": -4.73, "curve": 0.36, "c2": 0.43, "c3": 0.755}, {"time": 0.1333}, {"time": 0.25, "angle": 21.4, "curve": 0.25, "c3": 0.75}, + {"time": 0.4, "angle": -20.96, "curve": 0.25, "c3": 0.75}, {"time": 0.6, "angle": 22.02, "curve": 0.25, "c3": 0.75}, {"time": 0.8, "angle": -20.96, "curve": 0.25, "c3": 0.75}, + {"time": 1.0333, "angle": 1.24, "curve": 0.25, "c3": 0.75}, {"time": 1.25, "angle": -7.25, "curve": 0.259, "c3": 0.618, "c4": 0.45}, {"time": 1.3333, "angle": -4.73} ] }, - "@leg-front-right": { - "translate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": -0.92, "y": -19.87}, {"time": 0.6667, "x": -1.14, "y": -21.42, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.8333, "x": -0.43, "y": 9.97, "curve": 0.306, "c3": 0.695}, {"time": 1} + "body-fur-04": { + "rotate": [ + {"angle": -6.62, "curve": 0.293, "c2": 0.2, "c3": 0.685, "c4": 0.73}, {"time": 0.1333, "angle": -1.19, "curve": 0.378, "c2": 0.61, "c3": 0.721}, {"time": 0.1833}, + {"time": 0.3, "angle": 21.4, "curve": 0.25, "c3": 0.75}, {"time": 0.45, "angle": -20.96, "curve": 0.25, "c3": 0.75}, {"time": 0.65, "angle": 22.02, "curve": 0.25, "c3": 0.75}, + {"time": 0.85, "angle": -20.96, "curve": 0.25, "c3": 0.75}, {"time": 1.0833, "angle": 1.24, "curve": 0.25, "c3": 0.75}, + {"time": 1.3, "angle": -7.25, "curve": 0.293, "c3": 0.631, "c4": 0.37}, {"time": 1.3333, "angle": -6.62} ] }, - "@leg-front-left": { - "translate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": 7.87, "y": -5.37}, {"time": 0.6667, "x": 9.12, "y": -5.44, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.8333, "x": -0.16, "y": 3.89, "curve": 0.306, "c3": 0.695}, {"time": 1} + "body-fur-05": { + "rotate": [ + {"angle": -3.26, "curve": 0.378, "c2": 0.52, "c3": 0.747}, {"time": 0.1}, {"time": 0.2167, "angle": 21.4, "curve": 0.25, "c3": 0.75}, + {"time": 0.3667, "angle": -20.96, "curve": 0.25, "c3": 0.75}, {"time": 0.5667, "angle": 22.02, "curve": 0.25, "c3": 0.75}, {"time": 0.7667, "angle": -20.96, "curve": 0.25, "c3": 0.75}, + {"time": 1, "angle": 1.24, "curve": 0.25, "c3": 0.75}, {"time": 1.2167, "angle": -7.25, "curve": 0.248, "c3": 0.629, "c4": 0.52}, {"time": 1.3333, "angle": -3.26} ] }, - "tail": { + "body-fur-06": { "rotate": [ - {"curve": 0, "c2": 0.3, "c3": 0.54}, {"time": 0.1667, "angle": -17.97, "curve": 0.306, "c3": 0.695}, {"time": 0.4167, "angle": -9.96, "curve": 0.306, "c3": 0.695}, - {"time": 0.6667, "angle": -19.79, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.8333, "angle": 6.14, "curve": 0.306, "c3": 0.695}, {"time": 1} + {"angle": -5.41, "curve": 0.325, "c2": 0.31, "c3": 0.691, "c4": 0.74}, {"time": 0.1, "angle": -1.19, "curve": 0.378, "c2": 0.61, "c3": 0.721}, {"time": 0.15}, + {"time": 0.2667, "angle": 21.4, "curve": 0.25, "c3": 0.75}, {"time": 0.4167, "angle": -20.96, "curve": 0.25, "c3": 0.75}, {"time": 0.6167, "angle": 22.02, "curve": 0.25, "c3": 0.75}, + {"time": 0.8167, "angle": -20.96, "curve": 0.25, "c3": 0.75}, {"time": 1.05, "angle": 1.24, "curve": 0.25, "c3": 0.75}, + {"time": 1.2667, "angle": -7.25, "curve": 0.268, "c3": 0.618, "c4": 0.42}, {"time": 1.3333, "angle": -5.41} ] }, - "body-fur-under-01": { - "shear": [ - {"x": 22.06, "curve": 0.199, "c2": 0.17, "c3": 0.254, "c4": 0.99}, {"time": 0.3, "x": -42.78, "curve": 0.25, "c3": 0.75}, {"time": 0.6333, "curve": 0.265, "c3": 0.618, "c4": 0.43}, - {"time": 0.75, "x": 7.64, "curve": 0.351, "c2": 0.4, "c3": 0.757}, {"time": 0.9667, "x": 26.91, "curve": 0.368, "c3": 0.696, "c4": 0.36}, {"time": 1, "x": 22.06} + "body-fur-07": { + "rotate": [ + {"angle": -1.83, "curve": 0.382, "c2": 0.58, "c3": 0.732}, {"time": 0.0667, "curve": 0.25, "c3": 0.75}, {"time": 0.1833, "angle": 21.4, "curve": 0.25, "c3": 0.75}, + {"time": 0.3333, "angle": -20.96, "curve": 0.25, "c3": 0.75}, {"time": 0.5333, "angle": 22.02, "curve": 0.25, "c3": 0.75}, {"time": 0.7333, "angle": -20.96, "curve": 0.25, "c3": 0.75}, + {"time": 0.9667, "angle": 1.24, "curve": 0.25, "c3": 0.75}, {"time": 1.1833, "angle": -7.25, "curve": 0.243, "c3": 0.654, "c4": 0.62}, {"time": 1.3333, "angle": -1.83} ] }, - "body-fur-under-03": { - "shear": [ - {"x": 19.01, "curve": 0.348, "c2": 0.66, "c3": 0.682}, {"time": 0.0167, "x": 19.28, "curve": 0.25, "c3": 0.228, "c4": 0.99}, - {"time": 0.35, "x": -45.7, "curve": 0.244, "c3": 0.7, "c4": 0.79}, {"time": 0.6333, "x": -3.18, "curve": 0.366, "c2": 0.63, "c3": 0.703}, - {"time": 0.6833, "curve": 0.284, "c3": 0.625, "c4": 0.38}, {"time": 0.75, "x": 2.51, "curve": 0.315, "c2": 0.27, "c3": 0.738, "c4": 0.92}, {"time": 1, "x": 19.01} + "body-fur-08": { + "rotate": [ + {"angle": -0.62, "curve": 0.369, "c2": 0.63, "c3": 0.707}, {"time": 0.0333}, {"time": 0.15, "angle": 21.4, "curve": 0.25, "c3": 0.75}, + {"time": 0.3, "angle": -20.96, "curve": 0.25, "c3": 0.75}, {"time": 0.5, "angle": 22.02, "curve": 0.25, "c3": 0.75}, {"time": 0.7, "angle": -20.96, "curve": 0.25, "c3": 0.75}, + {"time": 0.9333, "angle": 1.24, "curve": 0.25, "c3": 0.75}, {"time": 1.15, "angle": -7.25, "curve": 0.244, "c3": 0.693, "c4": 0.76}, {"time": 1.3333, "angle": -0.62} ] }, - "body-fur-under-04": { - "shear": [ - {"x": 8.33, "curve": 0.379, "c2": 0.6, "c3": 0.724}, {"time": 0.0833, "x": 13.82, "curve": 0.25, "c3": 0.228, "c4": 0.99}, - {"time": 0.4167, "x": -39.88, "curve": 0.243, "c3": 0.649, "c4": 0.6}, {"time": 0.6333, "x": -22.71, "curve": 0.382, "c2": 0.57, "c3": 0.735}, - {"time": 0.75, "x": -15.91, "curve": 0.242, "c3": 0.667, "c4": 0.67}, {"time": 1, "x": 8.33} + "body-fur-09": { + "rotate": [ + {"angle": -2.51, "curve": 0.345, "c2": 0.37, "c3": 0.682, "c4": 0.72}, {"time": 0.0333, "angle": -1.19, "curve": 0.378, "c2": 0.61, "c3": 0.721}, {"time": 0.0833}, + {"time": 0.2, "angle": 21.4, "curve": 0.25, "c3": 0.75}, {"time": 0.35, "angle": -20.96, "curve": 0.25, "c3": 0.75}, {"time": 0.55, "angle": 22.02, "curve": 0.25, "c3": 0.75}, + {"time": 0.75, "angle": -20.96, "curve": 0.25, "c3": 0.75}, {"time": 0.9833, "angle": 1.24, "curve": 0.25, "c3": 0.75}, + {"time": 1.2, "angle": -7.25, "curve": 0.245, "c3": 0.64, "c4": 0.57}, {"time": 1.3333, "angle": -2.51} ] }, - "body-fur-under-02": { - "shear": [ - {"x": 17.87, "curve": 0.36, "c2": 0.64, "c3": 0.696}, {"time": 0.0333, "x": 18.72, "curve": 0.25, "c3": 0.228, "c4": 0.99}, - {"time": 0.3667, "x": -43.03, "curve": 0.243, "c3": 0.68, "c4": 0.71}, {"time": 0.6333, "x": -5.6, "curve": 0.375, "c2": 0.62, "c3": 0.716}, - {"time": 0.7, "curve": 0.297, "c3": 0.634, "c4": 0.37}, {"time": 0.75, "x": 1.3, "curve": 0.293, "c2": 0.19, "c3": 0.719, "c4": 0.85}, {"time": 1, "x": 17.87} + "body-fur-10": { + "rotate": [ + {"angle": -1.19, "curve": 0.378, "c2": 0.61, "c3": 0.721}, {"time": 0.05, "curve": 0.25, "c3": 0.75}, {"time": 0.1667, "angle": 21.4, "curve": 0.25, "c3": 0.75}, + {"time": 0.3167, "angle": -20.96, "curve": 0.25, "c3": 0.75}, {"time": 0.5167, "angle": 22.02, "curve": 0.25, "c3": 0.75}, {"time": 0.7167, "angle": -20.96, "curve": 0.25, "c3": 0.75}, + {"time": 0.95, "angle": 1.24, "curve": 0.25, "c3": 0.75}, {"time": 1.1667, "angle": -7.25, "curve": 0.242, "c3": 0.671, "c4": 0.68}, {"time": 1.3333, "angle": -1.19} ] }, - "body-fur-under-05": { - "shear": [ - {"x": -0.28, "curve": 0.381, "c2": 0.55, "c3": 0.742}, {"time": 0.1333, "x": 6.85, "curve": 0.25, "c3": 0.228, "c4": 0.99}, - {"time": 0.45, "x": -44.3, "curve": 0.248, "c3": 0.628, "c4": 0.52}, {"time": 0.6333, "x": -27.02, "curve": 0.356, "c2": 0.41, "c3": 0.707, "c4": 0.81}, - {"time": 0.75, "x": -14.63, "curve": 0.366, "c2": 0.63, "c3": 0.703}, {"time": 0.8, "x": -12.53, "curve": 0.245, "c3": 0.637, "c4": 0.56}, {"time": 1, "x": -0.28} + "body-fur-11": { + "rotate": [ + {"angle": -2.52, "curve": 0.382, "c2": 0.55, "c3": 0.741}, {"time": 0.0833, "curve": 0.25, "c3": 0.75}, {"time": 0.2, "angle": 21.4, "curve": 0.25, "c3": 0.75}, + {"time": 0.35, "angle": -20.96, "curve": 0.25, "c3": 0.75}, {"time": 0.55, "angle": 22.02, "curve": 0.25, "c3": 0.75}, {"time": 0.75, "angle": -20.96, "curve": 0.25, "c3": 0.75}, + {"time": 0.9833, "angle": 1.24, "curve": 0.25, "c3": 0.75}, {"time": 1.2, "angle": -7.25, "curve": 0.245, "c3": 0.64, "c4": 0.57}, {"time": 1.3333, "angle": -2.52} ] }, - "body-braid-02": { + "body-fur-12": { "rotate": [ - {"angle": 2.59, "curve": 0.348, "c2": 0.66, "c3": 0.682}, {"time": 0.0167, "angle": 2.63, "curve": 0.25, "c3": 0.228, "c4": 0.99}, - {"time": 0.35, "angle": 20.21, "curve": 0.25, "c3": 0.75}, {"time": 0.6833, "curve": 0.284, "c3": 0.625, "c4": 0.38}, - {"time": 0.75, "angle": 0.34, "curve": 0.315, "c2": 0.27, "c3": 0.738, "c4": 0.92}, {"time": 1, "angle": 2.59} + {"angle": -4, "curve": 0.371, "c2": 0.48, "c3": 0.752}, {"time": 0.1167, "curve": 0.25, "c3": 0.75}, {"time": 0.2333, "angle": 21.4, "curve": 0.25, "c3": 0.75}, + {"time": 0.3833, "angle": -20.96, "curve": 0.25, "c3": 0.75}, {"time": 0.5833, "angle": 22.02, "curve": 0.25, "c3": 0.75}, {"time": 0.7833, "angle": -20.96, "curve": 0.25, "c3": 0.75}, + {"time": 1.0167, "angle": 1.24, "curve": 0.25, "c3": 0.75}, {"time": 1.2333, "angle": -7.25, "curve": 0.253, "c3": 0.622, "c4": 0.48}, {"time": 1.3333, "angle": -4} ] }, - "body-braid-03": { + "body-fur-13": { "rotate": [ - {"angle": 2.29, "curve": 0.375, "c2": 0.62, "c3": 0.715}, {"time": 0.0667, "angle": 2.63, "curve": 0.25, "c3": 0.228, "c4": 0.99}, - {"time": 0.3833, "angle": 23.44, "curve": 0.244, "c3": 0.7, "c4": 0.79}, {"time": 0.6833, "angle": 1.63, "curve": 0.366, "c2": 0.63, "c3": 0.703}, - {"time": 0.7167, "curve": 0.313, "c3": 0.648, "c4": 0.35}, {"time": 0.75, "angle": 0.06, "curve": 0.268, "c2": 0.1, "c3": 0.687, "c4": 0.74}, {"time": 1, "angle": 2.29} + {"angle": -5.43, "curve": 0.346, "c2": 0.38, "c3": 0.757}, {"time": 0.15, "curve": 0.25, "c3": 0.75}, {"time": 0.2667, "angle": 21.4, "curve": 0.25, "c3": 0.75}, + {"time": 0.4167, "angle": -20.96, "curve": 0.25, "c3": 0.75}, {"time": 0.6167, "angle": 22.02, "curve": 0.25, "c3": 0.75}, {"time": 0.8167, "angle": -20.96, "curve": 0.25, "c3": 0.75}, + {"time": 1.05, "angle": 1.24, "curve": 0.25, "c3": 0.75}, {"time": 1.2667, "angle": -7.25, "curve": 0.268, "c3": 0.618, "c4": 0.42}, {"time": 1.3333, "angle": -5.43} ] }, - "body-braid-04": { + "body-fur-14": { "rotate": [ - {"angle": 1.66, "curve": 0.381, "c2": 0.55, "c3": 0.742}, {"time": 0.1333, "angle": 2.63, "curve": 0.25, "c3": 0.228, "c4": 0.99}, - {"time": 0.45, "angle": 16.91, "curve": 0.243, "c3": 0.649, "c4": 0.6}, {"time": 0.6833, "angle": 4.8, "curve": 0.356, "c2": 0.42, "c3": 0.696, "c4": 0.78}, - {"time": 0.75, "angle": 1.11, "curve": 0.366, "c2": 0.63, "c3": 0.703}, {"time": 0.8, "curve": 0.245, "c3": 0.637, "c4": 0.56}, {"time": 1, "angle": 1.66} + {"angle": -7.05, "curve": 0.27, "c2": 0.12, "c3": 0.679, "c4": 0.71}, {"time": 0.15, "angle": -1.19, "curve": 0.378, "c2": 0.61, "c3": 0.721}, {"time": 0.2, "curve": 0.25, "c3": 0.75}, + {"time": 0.3167, "angle": 21.4, "curve": 0.25, "c3": 0.75}, {"time": 0.4667, "angle": -20.96, "curve": 0.25, "c3": 0.75}, {"time": 0.6667, "angle": 22.02, "curve": 0.25, "c3": 0.75}, + {"time": 0.8667, "angle": -20.96, "curve": 0.25, "c3": 0.75}, {"time": 1.1, "angle": 1.24, "curve": 0.25, "c3": 0.75}, + {"time": 1.3167, "angle": -7.25, "curve": 0.311, "c3": 0.645, "c4": 0.35}, {"time": 1.3333, "angle": -7.05} ] }, - "body-braid-05": { + "body-fur-15": { "rotate": [ - {"angle": -3.2, "curve": 0.354, "c2": 0.41, "c3": 0.756}, {"time": 0.2167, "angle": -10.49, "curve": 0.25, "c3": 0.228, "c4": 0.99}, - {"time": 0.55, "angle": 8.22, "curve": 0.258, "c3": 0.619, "c4": 0.45}, {"time": 0.6833, "angle": 5.2, "curve": 0.33, "c2": 0.32, "c3": 0.67, "c4": 0.68}, - {"time": 0.75, "angle": 3.03, "curve": 0.381, "c2": 0.55, "c3": 0.742}, {"time": 0.8833, "curve": 0.263, "c3": 0.618, "c4": 0.43}, {"time": 1, "angle": -3.2} + {"angle": -6.63, "curve": 0.307, "c2": 0.24, "c3": 0.756}, {"time": 0.1833, "curve": 0.25, "c3": 0.75}, {"time": 0.3, "angle": 21.4, "curve": 0.25, "c3": 0.75}, + {"time": 0.45, "angle": -20.96, "curve": 0.25, "c3": 0.75}, {"time": 0.65, "angle": 22.02, "curve": 0.25, "c3": 0.75}, {"time": 0.85, "angle": -20.96, "curve": 0.25, "c3": 0.75}, + {"time": 1.0833, "angle": 1.24, "curve": 0.25, "c3": 0.75}, {"time": 1.3, "angle": -7.25, "curve": 0.293, "c3": 0.631, "c4": 0.37}, {"time": 1.3333, "angle": -6.63} ] }, - "body-braid-06": { + "body-fur-16": { "rotate": [ - {"angle": 6.87, "curve": 0.351, "c2": 0.4, "c3": 0.757}, {"time": 0.1667, "curve": 0.25, "c3": 0.75}, {"time": 0.4167, "angle": -28.99, "curve": 0.25, "c3": 0.228, "c4": 0.99}, - {"time": 0.6667, "angle": 9.53, "curve": 0.297, "c3": 0.634, "c4": 0.37}, {"time": 0.7, "angle": 8.86, "curve": 0.304, "c2": 0.22, "c3": 0.644, "c4": 0.58}, {"time": 0.75, "angle": 6.87} + {"angle": -7.25, "curve": 0.25, "c3": 0.75}, {"time": 0.2167, "curve": 0.25, "c3": 0.75}, {"time": 0.3333, "angle": 21.4, "curve": 0.25, "c3": 0.75}, + {"time": 0.4833, "angle": -20.96, "curve": 0.25, "c3": 0.75}, {"time": 0.6833, "angle": 22.02, "curve": 0.25, "c3": 0.75}, {"time": 0.8833, "angle": -20.96, "curve": 0.25, "c3": 0.75}, + {"time": 1.1167, "angle": 1.24, "curve": 0.25, "c3": 0.75}, {"time": 1.3333, "angle": -7.25} ] } - }, - "events": [{"time": 0.1667, "name": "hit-buff"}] + } }, - "2668995378": { + "3987941875": { "slots": { - "eyes": {"attachment": [{"time": 0.0167, "name": "eyes-shut"}, {"time": 0.1833, "name": "eyes-angry"}, {"time": 0.4, "name": "eyes"}]}, - "mouth": {"attachment": [{"time": 0.0167, "name": "mouth-bite"}, {"time": 0.4, "name": "mouth"}]} + "eyes": {"attachment": [{"time": 0.1333, "name": "eyes-shut"}, {"time": 0.2, "name": "eyes"}, {"time": 0.4667, "name": "eyes-shut"}]}, + "mouth": {"attachment": [{"time": 0.0833, "name": "mouth-open"}, {"time": 0.3333, "name": "mouth"}, {"time": 0.4167, "name": "mouth-open"}]} }, "bones": { - "@pivot-back": { - "rotate": [ - {"curve": "stepped"}, {"time": 0.0167, "angle": -20}, {"time": 0.1667, "angle": -22, "curve": 0.464, "c4": 0.7}, {"time": 0.3167, "angle": 5.2, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.4167} - ], - "translate": [{"curve": "stepped"}, {"time": 0.0167, "x": 75, "y": -4.42}, {"time": 0.1667, "x": 80, "y": -7.47, "curve": 0.464, "c4": 0.7}, {"time": 0.3167}] - }, - "@leg-front-left": {"translate": [{"time": 0.1667, "curve": 0.62, "c4": 0.3}, {"time": 0.3167, "x": -1.1, "y": -14.87, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.4167}]}, - "@shadow": { + "@mouth": { "translate": [ - {"curve": "stepped"}, {"time": 0.0167, "x": 70.3, "curve": "stepped"}, {"time": 0.1667, "x": 70.3, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.3167, "x": 12.49, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.4167} - ], - "scale": [ - {"curve": "stepped"}, {"time": 0.0167, "x": 0.98, "y": 0.98}, {"time": 0.1667, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.3167, "x": 1.08, "y": 1.08, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.4167} + {"time": 0.1667, "curve": 0, "c2": 0.1, "c3": 0.479, "c4": 0.56}, {"time": 0.3333, "x": -0.56, "y": 3.4, "curve": 0.408, "c2": 0.51, "c3": 0.853}, + {"time": 0.5, "x": 0.04, "y": 0.05, "curve": 0, "c2": 0.27, "c3": 0.314, "c4": 0.8}, {"time": 0.6, "x": 3.03, "y": 2.83, "curve": 0.168, "c2": 0.32, "c3": 0.551, "c4": 0.7}, + {"time": 0.7, "x": -0.51, "y": 3.39, "curve": 0.291, "c2": 0.39, "c3": 0.63, "c4": 0.75}, {"time": 0.8, "x": -3.56, "y": 0.39, "curve": 0.329, "c2": 0.61, "c3": 0.674, "c4": 0.99}, + {"time": 0.9, "x": 0.05, "y": -0.01, "curve": 0, "c2": 0.27, "c3": 0.31, "c4": 0.8}, {"time": 1.0167, "x": 3.05, "y": 2.75, "curve": 0.154, "c2": 0.33, "c3": 0.544, "c4": 0.7}, + {"time": 1.1167, "x": -0.5, "y": 3.35, "curve": 0.298, "c2": 0.38, "c3": 0.643, "c4": 0.74}, {"time": 1.2167, "x": -3.56, "y": 0.37, "curve": 0.326, "c2": 0.61, "c3": 0.671, "c4": 0.99}, + {"time": 1.3333} ] }, - "leg-back-left-IK": { + "@pivot-back": { + "rotate": [ + {"curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.0667, "angle": -0.59, "curve": 0.075, "c4": 0.95}, {"time": 0.1333, "angle": 1.15, "curve": 0, "c2": 0.1, "c3": 0.85}, + {"time": 0.2167, "curve": "stepped"}, {"time": 0.3333, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.4, "angle": -0.59, "curve": 0.075, "c4": 0.95}, + {"time": 0.4667, "angle": 1.15, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.5833} + ], "translate": [ - {"curve": "stepped"}, {"time": 0.0167, "x": 20.18, "y": 0.9, "curve": "stepped"}, {"time": 0.1667, "x": 20.18, "y": 0.9, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333} + {"y": 0.06, "curve": 0.387, "c3": 0.314}, {"time": 0.1333, "x": -13.8, "y": 0.06, "curve": 0.387, "c3": 0.314}, {"time": 0.2167, "x": 0.02, "y": 0.06, "curve": "stepped"}, + {"time": 0.3333, "x": 0.02, "y": 0.06, "curve": 0.387, "c3": 0.314}, {"time": 0.4667, "x": -13.8, "y": 0.06, "curve": 0.387, "c3": 0.314}, {"time": 0.5833, "x": 0.02, "y": 0.06} ] }, - "@leg-back-left": { - "translate": [ - {"curve": "stepped"}, {"time": 0.0167, "x": -0.94, "y": 4.51, "curve": "stepped"}, {"time": 0.1667, "x": -0.94, "y": 4.51, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3167} + "@leg-front-right": { + "rotate": [ + {"curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.0667, "angle": 10.98, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.2167, "angle": -8.78, "curve": 0.161, "c3": 0.854}, + {"time": 0.3333, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.4, "angle": 10.98, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.55, "angle": -8.78, "curve": 0.161, "c3": 0.854}, + {"time": 0.6667, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.8333, "angle": -9.85, "curve": 0.161, "c3": 0.854}, {"time": 0.9833, "angle": -6.21}, + {"time": 1.15, "angle": 2.69, "curve": 0.075, "c4": 0.95}, {"time": 1.3333} ] }, - "@pivot-main": {"translate": [{"curve": "stepped"}, {"time": 0.0167, "x": 20, "curve": "stepped"}, {"time": 0.3167, "x": 20, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.4167}]}, - "@leg-front-right": {"translate": [{"time": 0.1667, "curve": 0.62, "c4": 0.3}, {"time": 0.3167, "x": -2.11, "y": -28.46, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.4167}]}, - "tail": { + "@leg-front-left": { "rotate": [ - {"curve": "stepped"}, {"time": 0.0167, "angle": 19}, {"time": 0.1667, "angle": 23.91, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.3167, "angle": -21.75, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.4167} + {"curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.0667, "angle": 10.98, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.2167, "angle": -8.78, "curve": 0.161, "c3": 0.854}, + {"time": 0.3333, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.4, "angle": 10.98, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.55, "angle": -8.78, "curve": 0.161, "c3": 0.854}, + {"time": 0.6667, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.8333, "angle": -9.84, "curve": 0.161, "c3": 0.854}, {"time": 0.9833, "angle": -6.21}, + {"time": 1.15, "angle": 2.69, "curve": 0.075, "c4": 0.95}, {"time": 1.3333} ] }, - "leg-front-right-IK": { - "translate": [ - {"curve": "stepped"}, {"time": 0.0167, "x": 44.88, "y": 143.25}, {"time": 0.0833, "x": -0.81, "y": 175.84}, {"time": 0.1667, "x": 46.95, "y": 154.35, "curve": 0.306, "c4": 0.8}, - {"time": 0.3167} + "@leg-back-left": { + "rotate": [ + {"curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.0667, "angle": 10.98, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.2167, "angle": -8.78, "curve": 0.161, "c3": 0.854}, + {"time": 0.3333, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.4, "angle": 10.98, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.55, "angle": -8.78, "curve": 0.161, "c3": 0.854}, + {"time": 0.6667, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.8333, "angle": 5.93, "curve": 0.161, "c3": 0.854}, {"time": 0.9833}, + {"time": 1.15, "angle": -4.97, "curve": 0.075, "c4": 0.95}, {"time": 1.3333} ] }, - "leg-front-left-IK": { + "@pivot-main": {"translate": [{"curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.0667, "y": 7.88, "curve": 0.078, "c4": 0.94}, {"time": 0.1333}]}, + "@pivot-center": {"translate": [{"curve": 0.387, "c3": 0.314}, {"time": 0.6667, "y": 14.05, "curve": 0.387, "c3": 0.314}, {"time": 1.3333}]}, + "@shadow": { "translate": [ - {"curve": "stepped"}, {"time": 0.0167, "x": -4.98, "y": 86.81}, {"time": 0.0833, "x": 23.52, "y": 63.22}, {"time": 0.1667, "x": -2.69, "y": 90.83, "curve": 0.306, "c4": 0.8}, - {"time": 0.3167} - ] + {"curve": 0.387, "c3": 0.314}, {"time": 0.1333, "x": -23.3, "curve": 0.387, "c3": 0.314}, {"time": 0.2167, "x": -9.6, "curve": "stepped"}, + {"time": 0.3333, "x": -9.6, "curve": 0.387, "c3": 0.314}, {"time": 0.4667, "x": -23.3, "curve": 0.387, "c3": 0.314}, {"time": 0.5833} + ], + "scale": [{"curve": 0.387, "c3": 0.314}, {"time": 0.6667, "x": 0.95, "y": 0.95, "curve": 0.387, "c3": 0.314}, {"time": 1.3333}] }, - "body-braid-02": { + "tail": { "rotate": [ - {"angle": 3.5, "curve": 0.348, "c2": 0.38, "c3": 0.685, "c4": 0.73}, {"time": 0.0333, "angle": 2.63, "curve": 0.25, "c3": 0.228, "c4": 0.99}, - {"time": 0.1667, "angle": 43.23, "curve": 0.25, "c3": 0.75}, {"time": 0.3, "curve": 0.284, "c3": 0.625, "c4": 0.38}, - {"time": 0.3333, "angle": 0.34, "curve": 0.304, "c2": 0.24, "c3": 0.688, "c4": 0.74}, {"time": 0.4167, "angle": 3.5} + {"curve": 0, "c2": 0.12, "c3": 0.348, "c4": 0.47}, {"time": 0.1, "angle": -6.85, "curve": 0.229, "c2": 0.25, "c3": 0.569, "c4": 0.6}, + {"time": 0.2, "angle": 1.43, "curve": 0.188, "c2": 0.31, "c3": 0.695}, {"time": 0.3333, "angle": 3.02, "curve": 0, "c2": 0.12, "c3": 0.347, "c4": 0.48}, + {"time": 0.4333, "angle": -6.85, "curve": 0.229, "c2": 0.25, "c3": 0.569, "c4": 0.6}, {"time": 0.5333, "angle": 1.2, "curve": 0.155, "c3": 0.85}, + {"time": 0.75, "angle": -5.95, "curve": 0.161, "c3": 0.854}, {"time": 0.95, "angle": -0.94}, {"time": 1.15, "angle": 4.91, "curve": 0.234, "c4": 0.9}, {"time": 1.3333} ] }, - "body-braid-03": { + "body-fur-14": { "rotate": [ - {"angle": -1.71, "curve": 0.337, "c2": 0.34, "c3": 0.673, "c4": 0.69}, {"time": 0.05, "angle": 2.63, "curve": 0.25, "c3": 0.228, "c4": 0.99}, - {"time": 0.1833, "angle": 23.44, "curve": 0.244, "c3": 0.7, "c4": 0.79}, {"time": 0.3, "angle": 1.63, "curve": 0.366, "c2": 0.63, "c3": 0.703}, - {"time": 0.3167, "curve": 0.313, "c3": 0.648, "c4": 0.35}, {"time": 0.3333, "angle": 0.06, "curve": 0.267, "c2": 0.1, "c3": 0.654, "c4": 0.62}, {"time": 0.4167, "angle": -1.71} + {"angle": -7.05, "curve": 0.27, "c2": 0.12, "c3": 0.679, "c4": 0.71}, {"time": 0.15, "angle": -1.19, "curve": 0.378, "c2": 0.61, "c3": 0.721}, {"time": 0.2, "curve": 0.25, "c3": 0.75}, + {"time": 0.3167, "angle": 21.4, "curve": 0.25, "c3": 0.75}, {"time": 0.4667, "angle": -20.96, "curve": 0.25, "c3": 0.75}, {"time": 0.6667, "angle": 22.02, "curve": 0.25, "c3": 0.75}, + {"time": 0.8667, "angle": -20.96, "curve": 0.25, "c3": 0.75}, {"time": 1.1, "angle": 1.24, "curve": 0.25, "c3": 0.75}, + {"time": 1.3167, "angle": -7.25, "curve": 0.311, "c3": 0.645, "c4": 0.35}, {"time": 1.3333, "angle": -7.05} ] }, - "body-braid-04": { + "body-fur-15": { "rotate": [ - {"angle": -9.29, "curve": 0.323, "c2": 0.3, "c3": 0.66, "c4": 0.65}, {"time": 0.0667, "angle": 2.63, "curve": 0.25, "c3": 0.228, "c4": 0.99}, - {"time": 0.2167, "angle": 16.91, "curve": 0.243, "c3": 0.649, "c4": 0.6}, {"time": 0.3, "angle": 4.8, "curve": 0.356, "c2": 0.42, "c3": 0.696, "c4": 0.78}, - {"time": 0.3333, "angle": 1.11, "curve": 0.366, "c2": 0.63, "c3": 0.703}, {"time": 0.35, "curve": 0.25, "c3": 0.625, "c4": 0.5}, {"time": 0.4167, "angle": -9.29} + {"angle": -6.63, "curve": 0.307, "c2": 0.24, "c3": 0.756}, {"time": 0.1833, "curve": 0.25, "c3": 0.75}, {"time": 0.3, "angle": 21.4, "curve": 0.25, "c3": 0.75}, + {"time": 0.45, "angle": -20.96, "curve": 0.25, "c3": 0.75}, {"time": 0.65, "angle": 22.02, "curve": 0.25, "c3": 0.75}, {"time": 0.85, "angle": -20.96, "curve": 0.25, "c3": 0.75}, + {"time": 1.0833, "angle": 1.24, "curve": 0.25, "c3": 0.75}, {"time": 1.3, "angle": -7.25, "curve": 0.293, "c3": 0.631, "c4": 0.37}, {"time": 1.3333, "angle": -6.63} ] }, - "body-braid-05": { + "body-fur-13": { "rotate": [ - {"angle": -8.3, "curve": 0.294, "c3": 0.631, "c4": 0.37}, {"time": 0.1, "angle": -10.49, "curve": 0.25, "c3": 0.228, "c4": 0.99}, - {"time": 0.25, "angle": 8.22, "curve": 0.258, "c3": 0.619, "c4": 0.45}, {"time": 0.3, "angle": 5.2, "curve": 0.33, "c2": 0.32, "c3": 0.67, "c4": 0.68}, - {"time": 0.3333, "angle": 3.03, "curve": 0.381, "c2": 0.55, "c3": 0.742}, {"time": 0.3833, "curve": 0.276, "c3": 0.621, "c4": 0.4}, {"time": 0.4167, "angle": -8.3} + {"angle": -5.43, "curve": 0.346, "c2": 0.38, "c3": 0.757}, {"time": 0.15, "curve": 0.25, "c3": 0.75}, {"time": 0.2667, "angle": 21.4, "curve": 0.25, "c3": 0.75}, + {"time": 0.4167, "angle": -20.96, "curve": 0.25, "c3": 0.75}, {"time": 0.6167, "angle": 22.02, "curve": 0.25, "c3": 0.75}, {"time": 0.8167, "angle": -20.96, "curve": 0.25, "c3": 0.75}, + {"time": 1.05, "angle": 1.24, "curve": 0.25, "c3": 0.75}, {"time": 1.2667, "angle": -7.25, "curve": 0.268, "c3": 0.618, "c4": 0.42}, {"time": 1.3333, "angle": -5.43} ] }, - "body-braid-06": { + "body-fur-04": { "rotate": [ - {"angle": -20.59, "curve": 0.352, "c2": 0.41, "c3": 0.689, "c4": 0.75}, {"time": 0.15, "angle": -28.99, "curve": 0.25, "c3": 0.228, "c4": 0.99}, - {"time": 0.2833, "angle": 9.53, "curve": 0.297, "c3": 0.634, "c4": 0.37}, {"time": 0.3, "angle": 8.86, "curve": 0.304, "c2": 0.22, "c3": 0.644, "c4": 0.58}, - {"time": 0.3333, "angle": 6.87, "curve": 0.351, "c2": 0.4, "c3": 0.757}, {"time": 0.4167, "angle": -20.59} - ] - }, - "body-fur-under-01": { - "translate": [{"x": -0.14, "y": 0.84}], - "shear": [ - {"x": -4.09, "curve": 0.375, "c2": 0.5, "c3": 0.75}, {"time": 0.05, "x": 1.17, "curve": 0.352, "c2": 0.65, "c3": 0.687}, {"time": 0.0667, "curve": 0.25, "c3": 0.75}, - {"time": 0.2333, "x": 51.41, "curve": 0.242, "c3": 0.663, "c4": 0.65}, {"time": 0.4167, "x": -4.09} - ] - }, - "body-fur-under-02": { - "translate": [{"x": -2.23, "y": 6.28}], - "shear": [ - {"x": -27.8, "curve": 0.375, "c2": 0.62, "c3": 0.716}, {"time": 0.05, "x": 14.59, "curve": 0.382, "c2": 0.57, "c3": 0.735}, {"time": 0.1333, "curve": 0.25, "c3": 0.75}, - {"time": 0.3, "x": 51.41, "curve": 0.252, "c3": 0.622, "c4": 0.48}, {"time": 0.4167, "x": -27.8} + {"angle": -6.62, "curve": 0.293, "c2": 0.2, "c3": 0.685, "c4": 0.73}, {"time": 0.1333, "angle": -1.19, "curve": 0.378, "c2": 0.61, "c3": 0.721}, {"time": 0.1833}, + {"time": 0.3, "angle": 21.4, "curve": 0.25, "c3": 0.75}, {"time": 0.45, "angle": -20.96, "curve": 0.25, "c3": 0.75}, {"time": 0.65, "angle": 22.02, "curve": 0.25, "c3": 0.75}, + {"time": 0.85, "angle": -20.96, "curve": 0.25, "c3": 0.75}, {"time": 1.0833, "angle": 1.24, "curve": 0.25, "c3": 0.75}, + {"time": 1.3, "angle": -7.25, "curve": 0.293, "c3": 0.631, "c4": 0.37}, {"time": 1.3333, "angle": -6.62} ] }, - "body-fur-under-03": { - "translate": [{"x": -0.78, "y": 3.19}], - "shear": [ - {"x": 22.47, "curve": 0.25, "c3": 0.75}, {"time": 0.05, "x": 3.57, "curve": 0.366, "c2": 0.63, "c3": 0.703}, {"time": 0.0833, "curve": 0.25, "c3": 0.75}, - {"time": 0.25, "x": 51.41, "curve": 0.243, "c3": 0.649, "c4": 0.6}, {"time": 0.4167, "x": 22.47} + "body-fur-02": { + "rotate": [ + {"angle": -4.7, "curve": 0.336, "c2": 0.34, "c3": 0.691, "c4": 0.74}, {"time": 0.0833, "angle": -1.19, "curve": 0.378, "c2": 0.61, "c3": 0.721}, {"time": 0.1333}, + {"time": 0.25, "angle": 21.4, "curve": 0.25, "c3": 0.75}, {"time": 0.4, "angle": -20.96, "curve": 0.25, "c3": 0.75}, {"time": 0.6, "angle": 22.02, "curve": 0.25, "c3": 0.75}, + {"time": 0.8, "angle": -20.96, "curve": 0.25, "c3": 0.75}, {"time": 1.0333, "angle": 1.24, "curve": 0.25, "c3": 0.75}, + {"time": 1.25, "angle": -7.25, "curve": 0.259, "c3": 0.618, "c4": 0.45}, {"time": 1.3333, "angle": -4.7} ] }, - "body-fur-under-04": { - "translate": [{"x": -0.33, "y": 3.2}], - "shear": [ - {"x": 10.24, "curve": 0.36, "c2": 0.64, "c3": 0.695}, {"time": 0.05, "x": 10.42, "curve": 0.38, "c2": 0.59, "c3": 0.727}, {"time": 0.1167, "curve": 0.25, "c3": 0.75}, - {"time": 0.2833, "x": 51.41, "curve": 0.248, "c3": 0.628, "c4": 0.52}, {"time": 0.4167, "x": 10.24} + "body-fur-05": { + "rotate": [ + {"angle": -3.26, "curve": 0.378, "c2": 0.52, "c3": 0.747}, {"time": 0.1}, {"time": 0.2167, "angle": 21.4, "curve": 0.25, "c3": 0.75}, + {"time": 0.3667, "angle": -20.96, "curve": 0.25, "c3": 0.75}, {"time": 0.5667, "angle": 22.02, "curve": 0.25, "c3": 0.75}, {"time": 0.7667, "angle": -20.96, "curve": 0.25, "c3": 0.75}, + {"time": 1, "angle": 1.24, "curve": 0.25, "c3": 0.75}, {"time": 1.2167, "angle": -7.25, "curve": 0.248, "c3": 0.629, "c4": 0.52}, {"time": 1.3333, "angle": -3.26} ] }, - "body-fur-under-05": { - "translate": [{"x": 0.53, "y": 14.98}], - "shear": [ - {"x": 3.7, "curve": 0.382, "c2": 0.57, "c3": 0.737}, {"time": 0.05, "x": 6.69, "curve": 0.375, "c2": 0.62, "c3": 0.716}, {"time": 0.1, "curve": 0.25, "c3": 0.75}, - {"time": 0.2667, "x": 51.41, "curve": 0.245, "c3": 0.637, "c4": 0.56}, {"time": 0.4167, "x": 3.7} + "body-fur-11": { + "rotate": [ + {"angle": -2.52, "curve": 0.382, "c2": 0.55, "c3": 0.741}, {"time": 0.0833, "curve": 0.25, "c3": 0.75}, {"time": 0.2, "angle": 21.4, "curve": 0.25, "c3": 0.75}, + {"time": 0.35, "angle": -20.96, "curve": 0.25, "c3": 0.75}, {"time": 0.55, "angle": 22.02, "curve": 0.25, "c3": 0.75}, {"time": 0.75, "angle": -20.96, "curve": 0.25, "c3": 0.75}, + {"time": 0.9833, "angle": 1.24, "curve": 0.25, "c3": 0.75}, {"time": 1.2, "angle": -7.25, "curve": 0.245, "c3": 0.64, "c4": 0.57}, {"time": 1.3333, "angle": -2.52} ] }, - "body-braid-01": {"rotate": [{"angle": 2.31}]} - } - }, - "858481981": { - "slots": { - "eyes": {"attachment": [{"time": 0.0167, "name": "eyes-shut"}, {"time": 0.1833, "name": "eyes-angry"}, {"time": 0.4, "name": "eyes"}]}, - "mouth": {"attachment": [{"time": 0.0167, "name": "mouth-bite"}, {"time": 0.4, "name": "mouth"}]} - }, - "bones": { - "tail": { + "body-fur-07": { "rotate": [ - {"curve": "stepped"}, {"time": 0.0167, "angle": 35.35}, {"time": 0.1667, "angle": 50.35, "curve": 0.315, "c4": 0.8}, {"time": 0.3167, "angle": -21.75, "curve": 0, "c2": 0.1, "c3": 0.85}, - {"time": 0.4167} + {"angle": -1.83, "curve": 0.382, "c2": 0.58, "c3": 0.732}, {"time": 0.0667, "curve": 0.25, "c3": 0.75}, {"time": 0.1833, "angle": 21.4, "curve": 0.25, "c3": 0.75}, + {"time": 0.3333, "angle": -20.96, "curve": 0.25, "c3": 0.75}, {"time": 0.5333, "angle": 22.02, "curve": 0.25, "c3": 0.75}, {"time": 0.7333, "angle": -20.96, "curve": 0.25, "c3": 0.75}, + {"time": 0.9667, "angle": 1.24, "curve": 0.25, "c3": 0.75}, {"time": 1.1833, "angle": -7.25, "curve": 0.243, "c3": 0.654, "c4": 0.62}, {"time": 1.3333, "angle": -1.83} ] }, - "leg-front-right-IK": { - "translate": [{"curve": "stepped"}, {"time": 0.0167, "x": 74.76, "y": 322.04}, {"time": 0.1667, "x": 85.96, "y": 349.35, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3167}] - }, - "@pivot-back": { + "body-fur-10": { "rotate": [ - {"curve": "stepped"}, {"time": 0.0167, "angle": -45}, {"time": 0.1667, "angle": -50, "curve": 0.464, "c4": 0.7}, {"time": 0.3167, "angle": 5.2, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.4167} - ], - "translate": [{"curve": "stepped"}, {"time": 0.0167, "x": 94.99, "y": -21}, {"time": 0.1667, "x": 107, "y": -60, "curve": 0.464, "c4": 0.7}, {"time": 0.3167}] - }, - "@shadow": { - "translate": [ - {"curve": "stepped"}, {"time": 0.0167, "x": 70.3, "curve": "stepped"}, {"time": 0.1667, "x": 70.3, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.3167, "x": 12.49, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.4167} - ], - "scale": [ - {"curve": "stepped"}, {"time": 0.0167, "x": 0.98, "y": 0.98}, {"time": 0.1667, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.3167, "x": 1.08, "y": 1.08, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.4167} + {"angle": -1.19, "curve": 0.378, "c2": 0.61, "c3": 0.721}, {"time": 0.05, "curve": 0.25, "c3": 0.75}, {"time": 0.1667, "angle": 21.4, "curve": 0.25, "c3": 0.75}, + {"time": 0.3167, "angle": -20.96, "curve": 0.25, "c3": 0.75}, {"time": 0.5167, "angle": 22.02, "curve": 0.25, "c3": 0.75}, {"time": 0.7167, "angle": -20.96, "curve": 0.25, "c3": 0.75}, + {"time": 0.95, "angle": 1.24, "curve": 0.25, "c3": 0.75}, {"time": 1.1667, "angle": -7.25, "curve": 0.242, "c3": 0.671, "c4": 0.68}, {"time": 1.3333, "angle": -1.19} ] }, - "leg-back-left-IK": { - "translate": [ - {"curve": "stepped"}, {"time": 0.0167, "x": 11.67, "y": 0.9, "curve": "stepped"}, {"time": 0.1667, "x": 11.67, "y": 0.9, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333} + "body-fur-12": { + "rotate": [ + {"angle": -4, "curve": 0.371, "c2": 0.48, "c3": 0.752}, {"time": 0.1167, "curve": 0.25, "c3": 0.75}, {"time": 0.2333, "angle": 21.4, "curve": 0.25, "c3": 0.75}, + {"time": 0.3833, "angle": -20.96, "curve": 0.25, "c3": 0.75}, {"time": 0.5833, "angle": 22.02, "curve": 0.25, "c3": 0.75}, {"time": 0.7833, "angle": -20.96, "curve": 0.25, "c3": 0.75}, + {"time": 1.0167, "angle": 1.24, "curve": 0.25, "c3": 0.75}, {"time": 1.2333, "angle": -7.25, "curve": 0.253, "c3": 0.622, "c4": 0.48}, {"time": 1.3333, "angle": -4} ] }, - "@leg-back-left": {"translate": [{"curve": "stepped"}, {"time": 0.0167, "x": -2.63, "y": 8.92}, {"time": 0.1667, "x": 18.61, "y": -8.3, "curve": 0.464, "c4": 0.7}, {"time": 0.3167}]}, - "@pivot-main": {"translate": [{"curve": "stepped"}, {"time": 0.0167, "x": 20, "curve": "stepped"}, {"time": 0.3167, "x": 20, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.4167}]}, - "leg-front-left-IK": { - "translate": [{"curve": "stepped"}, {"time": 0.0167, "x": -4.7, "y": 168.09}, {"time": 0.1667, "x": 6.72, "y": 174.87, "curve": 0.306, "c3": 0.695}, {"time": 0.3167}] - }, - "@leg-front-left": {"translate": [{"time": 0.1667, "curve": 0.62, "c4": 0.3}, {"time": 0.3167, "x": -1.1, "y": -14.87, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.4167}]}, - "@leg-front-right": {"translate": [{"time": 0.1667, "curve": 0.62, "c4": 0.3}, {"time": 0.3167, "x": -2.11, "y": -28.46, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.4167}]}, - "body-braid-02": { + "body-fur-08": { "rotate": [ - {"angle": 3.5, "curve": 0.348, "c2": 0.38, "c3": 0.685, "c4": 0.73}, {"time": 0.1167, "angle": 2.63, "curve": 0.25, "c3": 0.228, "c4": 0.99}, - {"time": 0.25, "angle": 43.23, "curve": 0.25, "c3": 0.75}, {"time": 0.4, "curve": 0.284, "c3": 0.625, "c4": 0.38}, {"time": 0.4167, "angle": 3.5} + {"angle": -0.62, "curve": 0.369, "c2": 0.63, "c3": 0.707}, {"time": 0.0333}, {"time": 0.15, "angle": 21.4, "curve": 0.25, "c3": 0.75}, + {"time": 0.3, "angle": -20.96, "curve": 0.25, "c3": 0.75}, {"time": 0.5, "angle": 22.02, "curve": 0.25, "c3": 0.75}, {"time": 0.7, "angle": -20.96, "curve": 0.25, "c3": 0.75}, + {"time": 0.9333, "angle": 1.24, "curve": 0.25, "c3": 0.75}, {"time": 1.15, "angle": -7.25, "curve": 0.244, "c3": 0.693, "c4": 0.76}, {"time": 1.3333, "angle": -0.62} ] }, - "body-braid-03": { + "body-fur-09": { "rotate": [ - {"angle": -1.71, "curve": 0.337, "c2": 0.34, "c3": 0.673, "c4": 0.69}, {"time": 0.1333, "angle": 2.63, "curve": 0.25, "c3": 0.228, "c4": 0.99}, - {"time": 0.2667, "angle": 23.44, "curve": 0.244, "c3": 0.7, "c4": 0.79}, {"time": 0.4, "angle": 1.63, "curve": 0.366, "c2": 0.63, "c3": 0.703}, {"time": 0.4167, "angle": -1.71} + {"angle": -2.51, "curve": 0.345, "c2": 0.37, "c3": 0.682, "c4": 0.72}, {"time": 0.0333, "angle": -1.19, "curve": 0.378, "c2": 0.61, "c3": 0.721}, {"time": 0.0833}, + {"time": 0.2, "angle": 21.4, "curve": 0.25, "c3": 0.75}, {"time": 0.35, "angle": -20.96, "curve": 0.25, "c3": 0.75}, {"time": 0.55, "angle": 22.02, "curve": 0.25, "c3": 0.75}, + {"time": 0.75, "angle": -20.96, "curve": 0.25, "c3": 0.75}, {"time": 0.9833, "angle": 1.24, "curve": 0.25, "c3": 0.75}, + {"time": 1.2, "angle": -7.25, "curve": 0.245, "c3": 0.64, "c4": 0.57}, {"time": 1.3333, "angle": -2.51} ] }, - "body-braid-04": { + "body-fur-01": { "rotate": [ - {"angle": -9.29, "curve": 0.323, "c2": 0.3, "c3": 0.66, "c4": 0.65}, {"time": 0.0167, "curve": 0.25, "c3": 0.75}, {"time": 0.1667, "angle": 2.63, "curve": 0.25, "c3": 0.228, "c4": 0.99}, - {"time": 0.3, "angle": 16.91, "curve": 0.243, "c3": 0.649, "c4": 0.6}, {"time": 0.4, "angle": 4.8, "curve": 0.356, "c2": 0.42, "c3": 0.696, "c4": 0.78}, {"time": 0.4167, "angle": -9.29} + {"angle": -2.52, "curve": 0.382, "c2": 0.55, "c3": 0.741}, {"time": 0.0833}, {"time": 0.2, "angle": 21.4, "curve": 0.25, "c3": 0.75}, + {"time": 0.35, "angle": -20.96, "curve": 0.25, "c3": 0.75}, {"time": 0.55, "angle": 22.02, "curve": 0.25, "c3": 0.75}, {"time": 0.75, "angle": -20.96, "curve": 0.25, "c3": 0.75}, + {"time": 0.9833, "angle": 1.24, "curve": 0.25, "c3": 0.75}, {"time": 1.2, "angle": -7.25, "curve": 0.245, "c3": 0.64, "c4": 0.57}, {"time": 1.3333, "angle": -2.52} ] }, - "body-braid-05": { + "body-fur-03": { "rotate": [ - {"angle": -8.3, "curve": 0.294, "c3": 0.631, "c4": 0.37}, {"time": 0.05, "curve": 0.25, "c3": 0.75}, {"time": 0.2, "angle": -10.49, "curve": 0.25, "c3": 0.228, "c4": 0.99}, - {"time": 0.3333, "angle": 8.22, "curve": 0.258, "c3": 0.619, "c4": 0.45}, {"time": 0.4, "angle": 5.2, "curve": 0.33, "c2": 0.32, "c3": 0.67, "c4": 0.68}, {"time": 0.4167, "angle": -8.3} + {"angle": -4.73, "curve": 0.36, "c2": 0.43, "c3": 0.755}, {"time": 0.1333}, {"time": 0.25, "angle": 21.4, "curve": 0.25, "c3": 0.75}, + {"time": 0.4, "angle": -20.96, "curve": 0.25, "c3": 0.75}, {"time": 0.6, "angle": 22.02, "curve": 0.25, "c3": 0.75}, {"time": 0.8, "angle": -20.96, "curve": 0.25, "c3": 0.75}, + {"time": 1.0333, "angle": 1.24, "curve": 0.25, "c3": 0.75}, {"time": 1.25, "angle": -7.25, "curve": 0.259, "c3": 0.618, "c4": 0.45}, {"time": 1.3333, "angle": -4.73} ] }, - "body-braid-06": { + "body-fur-06": { "rotate": [ - {"angle": -20.59, "curve": 0.352, "c2": 0.41, "c3": 0.689, "c4": 0.75}, {"time": 0.1, "curve": 0.25, "c3": 0.75}, - {"time": 0.2333, "angle": -28.99, "curve": 0.25, "c3": 0.228, "c4": 0.99}, {"time": 0.3833, "angle": 9.53, "curve": 0.297, "c3": 0.634, "c4": 0.37}, - {"time": 0.4, "angle": 8.86, "curve": 0.304, "c2": 0.22, "c3": 0.644, "c4": 0.58}, {"time": 0.4167, "angle": -20.59} + {"angle": -5.41, "curve": 0.325, "c2": 0.31, "c3": 0.691, "c4": 0.74}, {"time": 0.1, "angle": -1.19, "curve": 0.378, "c2": 0.61, "c3": 0.721}, {"time": 0.15}, + {"time": 0.2667, "angle": 21.4, "curve": 0.25, "c3": 0.75}, {"time": 0.4167, "angle": -20.96, "curve": 0.25, "c3": 0.75}, {"time": 0.6167, "angle": 22.02, "curve": 0.25, "c3": 0.75}, + {"time": 0.8167, "angle": -20.96, "curve": 0.25, "c3": 0.75}, {"time": 1.05, "angle": 1.24, "curve": 0.25, "c3": 0.75}, + {"time": 1.2667, "angle": -7.25, "curve": 0.268, "c3": 0.618, "c4": 0.42}, {"time": 1.3333, "angle": -5.41} ] }, - "body-fur-under-02": { - "translate": [{"x": -2.23, "y": 6.28}], - "shear": [ - {"x": -27.8, "curve": 0.375, "c2": 0.62, "c3": 0.716}, {"time": 0.05, "x": 14.59, "curve": 0.382, "c2": 0.57, "c3": 0.735}, {"time": 0.1333, "curve": 0.25, "c3": 0.75}, - {"time": 0.3, "x": 51.41, "curve": 0.252, "c3": 0.622, "c4": 0.48}, {"time": 0.4167, "x": -27.8} + "body-fur-16": { + "rotate": [ + {"angle": -7.25, "curve": 0.25, "c3": 0.75}, {"time": 0.2167, "curve": 0.25, "c3": 0.75}, {"time": 0.3333, "angle": 21.4, "curve": 0.25, "c3": 0.75}, + {"time": 0.4833, "angle": -20.96, "curve": 0.25, "c3": 0.75}, {"time": 0.6833, "angle": 22.02, "curve": 0.25, "c3": 0.75}, {"time": 0.8833, "angle": -20.96, "curve": 0.25, "c3": 0.75}, + {"time": 1.1167, "angle": 1.24, "curve": 0.25, "c3": 0.75}, {"time": 1.3333, "angle": -7.25} ] - }, - "body-fur-under-03": { - "translate": [{"x": -0.78, "y": 3.19}], - "shear": [ - {"x": 22.47, "curve": 0.25, "c3": 0.75}, {"time": 0.05, "x": 3.57, "curve": 0.366, "c2": 0.63, "c3": 0.703}, {"time": 0.0833, "curve": 0.25, "c3": 0.75}, - {"time": 0.25, "x": 51.41, "curve": 0.243, "c3": 0.649, "c4": 0.6}, {"time": 0.4167, "x": 22.47} + } + } + }, + "3632603752": { + "slots": {"eyes": {"attachment": [{"time": 0.0167, "name": "eyes-angry"}, {"time": 0.6333, "name": "eyes-shut"}, {"time": 0.7, "name": "eyes-angry"}, {"time": 1.2833, "name": "eyes"}]}}, + "bones": { + "@pivot-back": { + "rotate": [ + {"curve": 0.302, "c4": 0.8}, {"time": 0.1667, "angle": -5.15, "curve": 0, "c2": 0.2, "c3": 0.692}, {"time": 0.3333, "angle": 4.71, "curve": 0, "c2": 0.1, "c3": 0.853}, + {"time": 0.5, "angle": -2.3, "curve": 0.308, "c3": 0.692}, {"time": 0.6667, "angle": 2.84, "curve": 0.314, "c3": 0.701}, + {"time": 0.9167, "angle": -3.66, "curve": 0, "c2": 0.1, "c3": 0.845}, {"time": 1.0833, "angle": -0.77, "curve": 0.311, "c4": 0.8}, {"time": 1.25} + ], + "translate": [ + {"curve": 0.308, "c4": 0.79}, {"time": 0.25, "x": -74.35, "y": -25.83, "curve": 0, "c2": 0.3, "c3": 0.537}, {"time": 0.4167, "x": -74.35, "y": 55.38, "curve": 0, "c2": 0.1, "c3": 0.853}, + {"time": 0.5833, "x": 103.85, "y": -14.97, "curve": 0.308, "c3": 0.692}, {"time": 0.75, "x": 103.82, "y": 55.43, "curve": 0.314, "c3": 0.701}, + {"time": 1, "x": -40.96, "y": -15.97, "curve": 0.314, "c3": 0.701}, {"time": 1.1667, "x": -40.96, "y": 0.03, "curve": 0, "c2": 0.05, "c3": 0.933}, {"time": 1.3333} ] }, - "body-fur-under-05": { - "translate": [{"x": 0.53, "y": 14.98}], - "shear": [ - {"x": 3.7, "curve": 0.382, "c2": 0.57, "c3": 0.737}, {"time": 0.05, "x": 6.69, "curve": 0.375, "c2": 0.62, "c3": 0.716}, {"time": 0.1, "curve": 0.25, "c3": 0.75}, - {"time": 0.2667, "x": 51.41, "curve": 0.245, "c3": 0.637, "c4": 0.56}, {"time": 0.4167, "x": 3.7} + "@leg-front-right": { + "rotate": [ + {"curve": 0.307, "c4": 0.8}, {"time": 0.1667, "angle": 13.08, "curve": 0.302, "c3": 0.695}, {"time": 0.4167, "angle": -24.68, "curve": "stepped"}, + {"time": 0.5833, "angle": -24.68, "curve": 0, "c2": 0.2, "c3": 0.689}, {"time": 0.75, "angle": 8.39, "curve": "stepped"}, {"time": 0.9167, "angle": 8.39, "curve": 0.308, "c4": 0.8}, + {"time": 1.1667, "angle": -16.49, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 1.3333, "angle": -30.3} ] }, - "body-fur-under-04": { - "translate": [{"x": -0.33, "y": 3.2}], - "shear": [ - {"x": 10.24, "curve": 0.36, "c2": 0.64, "c3": 0.695}, {"time": 0.05, "x": 10.42, "curve": 0.38, "c2": 0.59, "c3": 0.727}, {"time": 0.1167, "curve": 0.25, "c3": 0.75}, - {"time": 0.2833, "x": 51.41, "curve": 0.248, "c3": 0.628, "c4": 0.52}, {"time": 0.4167, "x": 10.24} + "@leg-front-left": { + "rotate": [ + {"curve": 0.307, "c4": 0.8}, {"time": 0.1667, "angle": 13.08, "curve": 0.302, "c3": 0.695}, {"time": 0.4167, "angle": -24.68, "curve": "stepped"}, + {"time": 0.5833, "angle": -24.68, "curve": 0, "c2": 0.2, "c3": 0.689}, {"time": 0.75, "angle": 8.39, "curve": "stepped"}, {"time": 0.9167, "angle": 8.39, "curve": 0.308, "c4": 0.8}, + {"time": 1.1667, "angle": -16.49, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 1.3333, "angle": 20.14} ] }, - "body-fur-under-01": { - "translate": [{"x": -0.14, "y": 0.84}], - "shear": [ - {"x": -4.09, "curve": 0.375, "c2": 0.5, "c3": 0.75}, {"time": 0.05, "x": 1.17, "curve": 0.352, "c2": 0.65, "c3": 0.687}, {"time": 0.0667, "curve": 0.25, "c3": 0.75}, - {"time": 0.2333, "x": 51.41, "curve": 0.242, "c3": 0.663, "c4": 0.65}, {"time": 0.4167, "x": -4.09} + "@leg-back-left": { + "rotate": [ + {"curve": 0.307, "c4": 0.8}, {"time": 0.1667, "angle": 13.08}, {"time": 0.3333, "angle": -13.36}, {"time": 0.75, "angle": 11.05, "curve": "stepped"}, + {"time": 0.9167, "angle": 11.05, "curve": 0.308, "c4": 0.8}, {"time": 1.1667, "angle": -13.83, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 1.3333, "angle": -11.75} ] }, - "body-braid-01": {"rotate": [{"angle": 2.31}]} - } - }, - "1175182584": { - "slots": { - "eyes": {"attachment": [{"time": 0.0167, "name": "eyes-shut"}, {"time": 0.5833, "name": "eyes-angry"}, {"time": 0.8333, "name": "eyes-shut"}, {"time": 0.9167, "name": "eyes"}]}, - "mouth": {"attachment": [{"time": 0.0167, "name": "mouth-bite"}, {"time": 0.6667, "name": "mouth-open"}, {"time": 0.8333, "name": "mouth"}]} - }, - "bones": { - "@pivot-back": { + "tail": { "rotate": [ - {"curve": "stepped"}, {"time": 0.0167, "angle": -45}, {"time": 0.1, "angle": -85, "curve": "stepped"}, {"time": 0.6667, "angle": -85, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.8333, "angle": 6, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1} - ], - "translate": [ - {"curve": "stepped"}, {"time": 0.0167, "x": 94.99, "y": -21}, {"time": 0.05, "x": 256.42, "y": -60}, {"time": 0.1, "x": 408.25, "y": -188, "curve": "stepped"}, - {"time": 0.6667, "x": 408.25, "y": -188, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.8333, "y": 12.75, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1} + {"curve": 0, "c2": 0.2, "c3": 0.698}, {"time": 0.1667, "angle": -6, "curve": 0.305, "c3": 0.698}, {"time": 0.25, "angle": 1.14, "curve": 0.301, "c3": 0.698}, + {"time": 0.4167, "angle": -8.39, "curve": 0, "c2": 0.2, "c3": 0.698}, {"time": 0.5833, "angle": 0.59, "curve": 0.305, "c3": 0.698}, + {"time": 0.75, "angle": -10.53, "curve": 0, "c2": 0.2, "c3": 0.692}, {"time": 1, "angle": -2.29, "curve": 0.302, "c3": 0.692}, + {"time": 1.1667, "angle": -9.12, "curve": 0, "c2": 0.1, "c3": 0.844}, {"time": 1.3333} ] }, - "@shadow": { - "translate": [ - {"curve": "stepped"}, {"time": 0.0167, "x": 144.17}, {"time": 0.1, "x": 589.27, "curve": 0.313, "c3": 0.699}, {"time": 0.25, "x": 627.48, "curve": 0.313, "c3": 0.699}, - {"time": 0.4167, "x": 576.87, "curve": 0.313, "c3": 0.699}, {"time": 0.55, "x": 602.83, "curve": 0.313, "c3": 0.699}, {"time": 0.6667, "x": 576.87, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.8333} - ], - "scale": [ - {"curve": "stepped"}, {"time": 0.0167, "x": 0.92, "y": 0.92}, {"time": 0.1, "curve": 0, "c2": 0.22, "c3": 0.373, "c4": 0.57}, {"time": 0.25, "x": 1.04, "y": 1.04, "curve": "stepped"}, - {"time": 0.6667, "x": 1.04, "y": 1.04, "curve": 0.206, "c2": 0.38, "c3": 0.736}, {"time": 0.8333, "x": 1.1, "y": 1.1, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1} + "back": { + "rotate": [ + {"curve": 0, "c2": 0.2, "c3": 0.698}, {"time": 0.1667, "angle": -1.84, "curve": 0.305, "c3": 0.698}, {"time": 0.25, "angle": 3, "curve": 0.301, "c3": 0.698}, + {"time": 0.4167, "angle": 0.04, "curve": 0, "c2": 0.2, "c3": 0.698}, {"time": 0.5833, "angle": 4.01, "curve": 0.305, "c3": 0.698}, + {"time": 0.75, "angle": 0.76, "curve": 0, "c2": 0.2, "c3": 0.692}, {"time": 1, "angle": 4.04, "curve": 0.302, "c3": 0.692}, + {"time": 1.1667, "angle": 1.6, "curve": 0, "c2": 0.1, "c3": 0.844}, {"time": 1.3333} ] }, - "@leg-back-left": {"translate": [{"curve": "stepped"}, {"time": 0.0167, "x": 6.4, "y": 0.19}, {"time": 0.1667}]}, - "leg-front-right-IK": { + "@shadow": { "translate": [ - {"curve": "stepped"}, {"time": 0.0167, "x": 69.67, "y": 327.04}, {"time": 0.05, "x": 451.04, "y": 582.91}, {"time": 0.0833, "x": 787.85, "y": 470.29}, - {"time": 0.1, "x": 945.09, "y": 394.99, "curve": 0.313, "c3": 0.699}, {"time": 0.25, "x": 1086.85, "y": 338.86, "curve": 0.313, "c3": 0.699}, - {"time": 0.4167, "x": 921.41, "y": 410.91, "curve": 0.313, "c3": 0.699}, {"time": 0.5833, "x": 1028.37, "y": 385.44}, {"time": 0.6667, "x": 914.82, "y": 422.49}, - {"time": 0.7, "x": 413.58, "y": 458.44}, {"time": 0.75, "x": 45.46, "y": 287.09}, {"time": 0.7833, "x": -34.18, "y": 117.59}, {"time": 0.8333} + {"curve": 0.315, "c4": 0.8}, {"time": 0.25, "x": -83.7, "curve": 0, "c2": 0.3, "c3": 0.535}, {"time": 0.4167, "x": -83.9, "curve": 0, "c2": 0.1, "c3": 0.85}, + {"time": 0.5833, "x": 94.25, "curve": 0.309, "c3": 0.691}, {"time": 0.75, "x": 94.33, "curve": 0.309, "c3": 0.691}, {"time": 1, "x": -50.6, "curve": "stepped"}, + {"time": 1.1667, "x": -50.6, "curve": 0.082, "c3": 0.928}, {"time": 1.3333} + ], + "scale": [ + {"curve": 0.315, "c4": 0.8}, {"time": 0.25, "x": 1.04, "y": 1.04, "curve": 0, "c2": 0.3, "c3": 0.535}, {"time": 0.4167, "x": 0.95, "y": 0.95, "curve": 0, "c2": 0.1, "c3": 0.85}, + {"time": 0.5833, "x": 1.08, "y": 1.08, "curve": 0.309, "c3": 0.691}, {"time": 0.75, "x": 0.96, "y": 0.96, "curve": 0.309, "c3": 0.691}, + {"time": 1, "x": 1.08, "y": 1.08, "curve": 0.309, "c3": 0.691}, {"time": 1.1667, "x": 1.04, "y": 1.04, "curve": 0.082, "c3": 0.928}, {"time": 1.3333} ] }, - "tail": { + "body-fur-01": { "rotate": [ - {"curve": "stepped"}, {"time": 0.0167, "angle": 35.35}, {"time": 0.1, "angle": -18.03, "curve": 0.313, "c3": 0.699}, {"time": 0.25, "angle": 12.69, "curve": 0.313, "c3": 0.699}, - {"time": 0.4167, "angle": -15.12, "curve": 0.313, "c3": 0.699}, {"time": 0.6667, "angle": 1.29, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.8333, "angle": 19.35, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1} + {"angle": 5.84, "curve": 0.379, "c2": 0.6, "c3": 0.724}, {"time": 0.0833}, {"time": 0.25, "angle": -21.01, "curve": 0.25, "c3": 0.75}, + {"time": 0.4167, "angle": 24.41, "curve": 0.25, "c3": 0.75}, {"time": 0.7, "angle": -33.25, "curve": 0.25, "c3": 0.75}, + {"time": 1.0833, "angle": 31.64, "curve": 0.242, "c3": 0.667, "c4": 0.67}, {"time": 1.3333, "angle": 5.84} ] }, - "leg-back-left-IK": { - "translate": [ - {"curve": "stepped"}, {"time": 0.0167, "x": -3.7, "y": 19.91}, {"time": 0.05, "x": -86.78, "y": 121.52}, {"time": 0.1, "x": 129.15, "y": 364.61, "curve": 0.313, "c3": 0.699}, - {"time": 0.25, "x": 262.18, "y": 406.7, "curve": 0.313, "c3": 0.699}, {"time": 0.4167, "x": 109.91, "y": 347.96, "curve": 0.313, "c3": 0.699}, {"time": 0.5833, "x": 216.28, "y": 393.95}, - {"time": 0.6667, "x": 118.81, "y": 360.02}, {"time": 0.7, "x": -121.03, "y": 41.31}, {"time": 0.75, "x": -95.31, "y": -47.01}, {"time": 0.7833, "x": 22.31, "y": -53.8}, {"time": 0.8333} + "body-fur-02": { + "rotate": [ + {"angle": 11.48, "curve": 0.355, "c2": 0.41, "c3": 0.699, "c4": 0.78}, {"time": 0.0833, "angle": 2.63, "curve": 0.369, "c2": 0.63, "c3": 0.706}, {"time": 0.1333}, + {"time": 0.3, "angle": -21.01, "curve": 0.25, "c3": 0.75}, {"time": 0.4667, "angle": 24.41, "curve": 0.25, "c3": 0.75}, {"time": 0.75, "angle": -33.25, "curve": 0.25, "c3": 0.75}, + {"time": 1.1333, "angle": 31.64, "curve": 0.245, "c3": 0.637, "c4": 0.56}, {"time": 1.3333, "angle": 11.48} ] }, - "leg-front-left-IK": { - "translate": [ - {"curve": "stepped"}, {"time": 0.0167, "x": -5.8, "y": 177.99}, {"time": 0.05, "x": 106.35, "y": 306.87}, {"time": 0.0833, "x": 355.94, "y": 424.69}, - {"time": 0.1, "x": 515.46, "y": 408.14, "curve": 0.313, "c3": 0.699}, {"time": 0.25, "x": 536.35, "y": 423.87, "curve": 0.313, "c3": 0.699}, - {"time": 0.4167, "x": 492.39, "y": 405.73, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.6667, "x": 482.36, "y": 419.06}, {"time": 0.7, "x": 97.67, "y": 283.45}, - {"time": 0.75, "x": -12.16, "y": 45.82}, {"time": 0.7833, "x": -31.56, "y": 29.02}, {"time": 0.8333} + "body-fur-03": { + "rotate": [ + {"angle": 11.64, "curve": 0.381, "c2": 0.55, "c3": 0.742}, {"time": 0.1333, "curve": 0.25, "c3": 0.75}, {"time": 0.3, "angle": -21.01, "curve": 0.25, "c3": 0.75}, + {"time": 0.4667, "angle": 24.41, "curve": 0.25, "c3": 0.75}, {"time": 0.75, "angle": -33.25, "curve": 0.25, "c3": 0.75}, + {"time": 1.1333, "angle": 31.64, "curve": 0.245, "c3": 0.637, "c4": 0.56}, {"time": 1.3333, "angle": 11.64} ] }, - "@pivot-center": { + "body-fur-04": { "rotate": [ - {"time": 0.0167, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.1, "angle": -95, "curve": 0.313, "c3": 0.699}, {"time": 0.25, "angle": -105, "curve": 0.313, "c3": 0.699}, - {"time": 0.4167, "angle": -90, "curve": 0.313, "c3": 0.699}, {"time": 0.55, "angle": -100, "curve": 0.313, "c3": 0.699}, - {"time": 0.6667, "angle": -90, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.8333} - ], - "translate": [ - {"time": 0.1, "curve": 0.313, "c3": 0.699}, {"time": 0.25, "x": 1.68, "y": 38.2, "curve": 0.313, "c3": 0.699}, {"time": 0.4167, "x": -2.73, "y": -12.21, "curve": 0.313, "c3": 0.699}, - {"time": 0.55, "x": -0.47, "y": 13.65, "curve": 0.313, "c3": 0.699}, {"time": 0.6667, "x": -2.73, "y": -12.21, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.8333} + {"angle": 17.76, "curve": 0.349, "c2": 0.39, "c3": 0.707, "c4": 0.8}, {"time": 0.1333, "angle": 2.63, "curve": 0.369, "c2": 0.63, "c3": 0.706}, {"time": 0.1833}, + {"time": 0.35, "angle": -21.01, "curve": 0.25, "c3": 0.75}, {"time": 0.5167, "angle": 24.41, "curve": 0.25, "c3": 0.75}, {"time": 0.8, "angle": -33.25, "curve": 0.25, "c3": 0.75}, + {"time": 1.1833, "angle": 31.64, "curve": 0.253, "c3": 0.621, "c4": 0.48}, {"time": 1.3333, "angle": 17.76} ] }, - "@pivot-main": { - "translate": [{"time": 0.6667, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.75, "y": 150, "curve": 0.315, "c4": 0.8}, {"time": 0.8333}], - "scale": [ - {"time": 0.1, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "y": 0.93, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "curve": "stepped"}, - {"time": 0.5667, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.65, "y": 0.7, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.7333, "curve": "stepped"}, - {"time": 0.8333, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.9167, "y": 0.98, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1} + "body-fur-05": { + "rotate": [ + {"angle": 7.66, "curve": 0.382, "c2": 0.58, "c3": 0.731}, {"time": 0.1, "curve": 0.25, "c3": 0.75}, {"time": 0.2667, "angle": -21.01, "curve": 0.25, "c3": 0.75}, + {"time": 0.4333, "angle": 24.41, "curve": 0.25, "c3": 0.75}, {"time": 0.7167, "angle": -33.25, "curve": 0.25, "c3": 0.75}, + {"time": 1.1, "angle": 31.64, "curve": 0.243, "c3": 0.655, "c4": 0.63}, {"time": 1.3333, "angle": 7.66} ] }, - "@leg-front-right": {"translate": [{"time": 0.75, "curve": 0.306, "c4": 0.8}, {"time": 0.8333, "x": -2.23, "y": -25.27, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1}]}, - "body-fur-under-01": { - "translate": [{"x": -0.14, "y": 0.84}], - "shear": [ - {"x": -4.09, "curve": 0.375, "c2": 0.5, "c3": 0.75}, {"time": 0.0333, "curve": 0.25, "c3": 0.75}, {"time": 0.1, "x": 29.22, "curve": 0.25, "c3": 0.75}, - {"time": 0.3333, "x": -53.77, "curve": 0.25, "c3": 0.75}, {"time": 0.5833, "x": 43.54, "curve": 0.25, "c3": 0.75}, {"time": 0.7833, "x": -64.44, "curve": 0.25, "c3": 0.75}, - {"time": 0.9, "x": 29.43, "curve": 0.243, "c3": 0.68, "c4": 0.71}, {"time": 1, "x": -4.09} + "body-fur-06": { + "rotate": [ + {"angle": 13.56, "curve": 0.355, "c2": 0.41, "c3": 0.702, "c4": 0.79}, {"time": 0.1, "angle": 2.63, "curve": 0.369, "c2": 0.63, "c3": 0.706}, {"time": 0.15}, + {"time": 0.3167, "angle": -21.01, "curve": 0.25, "c3": 0.75}, {"time": 0.4833, "angle": 24.41, "curve": 0.25, "c3": 0.75}, {"time": 0.7667, "angle": -33.25, "curve": 0.25, "c3": 0.75}, + {"time": 1.15, "angle": 31.64, "curve": 0.247, "c3": 0.63, "c4": 0.53}, {"time": 1.3333, "angle": 13.56} ] }, - "body-fur-under-03": { - "translate": [{"x": -0.78, "y": 3.19}], - "shear": [ - {"x": 22.47, "curve": 0.25, "c3": 0.75}, {"time": 0.0833, "curve": 0.25, "c3": 0.75}, {"time": 0.15, "x": -3.53, "curve": 0.25, "c3": 0.75}, - {"time": 0.3833, "x": 33.65, "curve": 0.25, "c3": 0.75}, {"time": 0.6333, "x": -20.36, "curve": 0.25, "c3": 0.75}, {"time": 0.8333, "x": 43.83, "curve": 0.25, "c3": 0.75}, - {"time": 0.95, "x": -23.52, "curve": 0.258, "c3": 0.619, "c4": 0.45}, {"time": 1, "x": 22.47} + "body-fur-07": { + "rotate": [ + {"angle": 4.12, "curve": 0.375, "c2": 0.62, "c3": 0.716}, {"time": 0.0667, "curve": 0.25, "c3": 0.75}, {"time": 0.2333, "angle": -21.01, "curve": 0.25, "c3": 0.75}, + {"time": 0.4, "angle": 24.41, "curve": 0.25, "c3": 0.75}, {"time": 0.6833, "angle": -33.25, "curve": 0.25, "c3": 0.75}, + {"time": 1.0667, "angle": 31.64, "curve": 0.243, "c3": 0.68, "c4": 0.71}, {"time": 1.3333, "angle": 4.12} ] }, - "body-fur-under-04": { - "translate": [{"x": -0.33, "y": 3.2}], - "shear": [ - {"x": 10.24, "curve": 0.36, "c2": 0.64, "c3": 0.695}, {"time": 0.0333, "curve": 0.25, "c3": 0.75}, {"time": 0.1, "x": -30.84, "curve": 0.25, "c3": 0.75}, - {"time": 0.3333, "x": 38.54, "curve": 0.25, "c3": 0.75}, {"time": 0.5833, "x": -50.56, "curve": 0.25, "c3": 0.75}, {"time": 0.7833, "x": 40.49, "curve": 0.25, "c3": 0.75}, - {"time": 0.9, "x": -40.09, "curve": 0.243, "c3": 0.68, "c4": 0.71}, {"time": 1, "x": 10.24} + "body-fur-08": { + "rotate": [ + {"angle": 4.01, "curve": 0.351, "c2": 0.42, "c3": 0.686, "c4": 0.76}, {"time": 0.0333, "angle": 1.35, "curve": 0.36, "c2": 0.64, "c3": 0.695}, {"time": 0.0667}, + {"time": 0.2333, "angle": -21.01, "curve": 0.25, "c3": 0.75}, {"time": 0.4, "angle": 24.41, "curve": 0.25, "c3": 0.75}, {"time": 0.6833, "angle": -33.25, "curve": 0.25, "c3": 0.75}, + {"time": 1.0667, "angle": 31.64, "curve": 0.243, "c3": 0.68, "c4": 0.71}, {"time": 1.3333, "angle": 4.01} ] }, - "body-fur-under-02": { - "translate": [{"x": -2.23, "y": 6.28}], - "shear": [ - {"x": -27.8, "curve": 0.375, "c2": 0.62, "c3": 0.716}, {"time": 0.0333, "x": 14.15, "curve": 0.25, "c3": 0.75}, {"time": 0.2833, "x": -46.5, "curve": 0.25, "c3": 0.75}, - {"time": 0.5333, "x": 37.58, "curve": 0.25, "c3": 0.75}, {"time": 0.7167, "x": -65.53, "curve": 0.25, "c3": 0.75}, {"time": 0.8333, "x": 23.87, "curve": 0.25, "c3": 0.75}, - {"time": 0.9667, "curve": 0.25, "c3": 0.625, "c4": 0.5}, {"time": 1, "x": -27.8} + "body-fur-09": { + "rotate": [ + {"angle": 9.49, "curve": 0.342, "c2": 0.36, "c3": 0.677, "c4": 0.7}, {"time": 0.0333, "angle": 5.74, "curve": 0.348, "c2": 0.39, "c3": 0.683, "c4": 0.73}, + {"time": 0.0667, "angle": 2.63, "curve": 0.369, "c2": 0.63, "c3": 0.706}, {"time": 0.1167, "curve": 0.25, "c3": 0.75}, {"time": 0.2833, "angle": -21.01, "curve": 0.25, "c3": 0.75}, + {"time": 0.45, "angle": 24.41, "curve": 0.25, "c3": 0.75}, {"time": 0.7333, "angle": -33.25, "curve": 0.25, "c3": 0.75}, + {"time": 1.1167, "angle": 31.64, "curve": 0.244, "c3": 0.646, "c4": 0.59}, {"time": 1.3333, "angle": 9.49} ] }, - "body-fur-under-05": { - "translate": [{"x": 0.53, "y": 14.98}], - "shear": [ - {"x": 3.7, "curve": 0.382, "c2": 0.57, "c3": 0.737}, {"time": 0.0667, "curve": 0.25, "c3": 0.75}, {"time": 0.1333, "x": -34.2, "curve": 0.25, "c3": 0.75}, - {"time": 0.3833, "x": 32.44, "curve": 0.25, "c3": 0.75}, {"time": 0.6333, "x": -55.52, "curve": 0.25, "c3": 0.75}, {"time": 0.8167, "x": 35.57, "curve": 0.25, "c3": 0.75}, - {"time": 0.9333, "x": -41.86, "curve": 0.25, "c3": 0.625, "c4": 0.5}, {"time": 1, "x": 3.7} + "body-fur-10": { + "rotate": [ + {"angle": 2.63, "curve": 0.369, "c2": 0.63, "c3": 0.706}, {"time": 0.05, "curve": 0.25, "c3": 0.75}, {"time": 0.2167, "angle": -21.01, "curve": 0.25, "c3": 0.75}, + {"time": 0.3833, "angle": 24.41, "curve": 0.25, "c3": 0.75}, {"time": 0.6667, "angle": -33.25, "curve": 0.25, "c3": 0.75}, + {"time": 1.05, "angle": 31.64, "curve": 0.244, "c3": 0.694, "c4": 0.77}, {"time": 1.3333, "angle": 2.63} ] }, - "body-braid-02": { + "body-fur-11": { "rotate": [ - {"angle": 3.5, "curve": 0.348, "c2": 0.38, "c3": 0.685, "c4": 0.73}, {"time": 0.2333, "angle": 79.52, "curve": 0.25, "c3": 0.75}, - {"time": 0.5833, "angle": -13.49, "curve": 0.25, "c3": 0.144}, {"time": 0.8167, "angle": 79.52, "curve": 0.25, "c3": 0.75}, {"time": 1, "angle": 3.5} + {"angle": 5.84, "curve": 0.379, "c2": 0.6, "c3": 0.724}, {"time": 0.0833, "curve": 0.25, "c3": 0.75}, {"time": 0.25, "angle": -21.01, "curve": 0.25, "c3": 0.75}, + {"time": 0.4167, "angle": 24.41, "curve": 0.25, "c3": 0.75}, {"time": 0.7, "angle": -33.25, "curve": 0.25, "c3": 0.75}, + {"time": 1.0833, "angle": 31.64, "curve": 0.242, "c3": 0.667, "c4": 0.67}, {"time": 1.3333, "angle": 5.84} ] }, - "body-braid-03": { + "body-fur-12": { "rotate": [ - {"angle": -1.71, "curve": 0.337, "c2": 0.34, "c3": 0.673, "c4": 0.69}, {"time": 0.0333, "curve": 0.25, "c3": 0.75}, {"time": 0.2667, "angle": 45.56, "curve": 0.25, "c3": 0.75}, - {"time": 0.6167, "angle": -13.49, "curve": 0.25, "c3": 0.144}, {"time": 0.85, "angle": 45.56, "curve": 0.243, "c3": 0.68, "c4": 0.71}, {"time": 1, "angle": -1.71} + {"angle": 9.64, "curve": 0.382, "c2": 0.57, "c3": 0.737}, {"time": 0.1167, "curve": 0.25, "c3": 0.75}, {"time": 0.2833, "angle": -21.01, "curve": 0.25, "c3": 0.75}, + {"time": 0.45, "angle": 24.41, "curve": 0.25, "c3": 0.75}, {"time": 0.7333, "angle": -33.25, "curve": 0.25, "c3": 0.75}, + {"time": 1.1167, "angle": 31.64, "curve": 0.244, "c3": 0.646, "c4": 0.59}, {"time": 1.3333, "angle": 9.64} ] }, - "body-braid-04": { + "body-fur-13": { "rotate": [ - {"angle": -9.29, "curve": 0.323, "c2": 0.3, "c3": 0.66, "c4": 0.65}, {"time": 0.0833, "curve": 0.25, "c3": 0.75}, {"time": 0.3167, "angle": 36.13, "curve": 0.25, "c3": 0.75}, - {"time": 0.6667, "angle": -30, "curve": 0.25, "c3": 0.144}, {"time": 0.9, "angle": 36.13, "curve": 0.248, "c3": 0.628, "c4": 0.52}, {"time": 1, "angle": -9.29} + {"angle": 13.73, "curve": 0.379, "c2": 0.52, "c3": 0.747}, {"time": 0.15}, {"time": 0.3167, "angle": -21.01, "curve": 0.25, "c3": 0.75}, + {"time": 0.4833, "angle": 24.41, "curve": 0.25, "c3": 0.75}, {"time": 0.7667, "angle": -33.25, "curve": 0.25, "c3": 0.75}, + {"time": 1.15, "angle": 31.64, "curve": 0.247, "c3": 0.63, "c4": 0.53}, {"time": 1.3333, "angle": 13.73} ] }, - "body-braid-05": { + "body-fur-14": { "rotate": [ - {"angle": -8.3, "curve": 0.294, "c3": 0.631, "c4": 0.37}, {"time": 0.15, "curve": 0.25, "c3": 0.75}, {"time": 0.3833, "angle": -7.54, "curve": 0.25, "c3": 0.75}, - {"time": 0.7333, "angle": -31.56, "curve": 0.25, "c3": 0.144}, {"time": 0.9667, "angle": -7.54, "curve": 0.284, "c3": 0.625, "c4": 0.38}, {"time": 1, "angle": -8.3} + {"angle": 19.86, "curve": 0.344, "c2": 0.37, "c3": 0.708, "c4": 0.8}, {"time": 0.15, "angle": 2.63, "curve": 0.369, "c2": 0.63, "c3": 0.706}, {"time": 0.2}, + {"time": 0.3667, "angle": -21.01, "curve": 0.25, "c3": 0.75}, {"time": 0.5333, "angle": 24.41, "curve": 0.25, "c3": 0.75}, {"time": 0.8167, "angle": -33.25, "curve": 0.25, "c3": 0.75}, + {"time": 1.2, "angle": 31.64, "curve": 0.258, "c3": 0.619, "c4": 0.45}, {"time": 1.3333, "angle": 19.86} ] }, - "body-braid-06": { + "body-fur-15": { "rotate": [ - {"angle": -20.59, "curve": 0.352, "c2": 0.41, "c3": 0.689, "c4": 0.75}, {"time": 0.0333, "angle": 1.41, "curve": 0.25, "c3": 0.75}, {"time": 0.2333, "curve": 0.25, "c3": 0.75}, - {"time": 0.45, "angle": 1.41, "curve": 0.25, "c3": 0.75}, {"time": 0.8, "angle": -42.25, "curve": 0.25, "c3": 0.144}, {"time": 1, "angle": -20.59} + {"angle": 17.91, "curve": 0.37, "c2": 0.47, "c3": 0.753}, {"time": 0.1833, "curve": 0.25, "c3": 0.75}, {"time": 0.35, "angle": -21.01, "curve": 0.25, "c3": 0.75}, + {"time": 0.5167, "angle": 24.41, "curve": 0.25, "c3": 0.75}, {"time": 0.8, "angle": -33.25, "curve": 0.25, "c3": 0.75}, + {"time": 1.1833, "angle": 31.64, "curve": 0.253, "c3": 0.621, "c4": 0.48}, {"time": 1.3333, "angle": 17.91} ] }, - "body-braid-01": {"rotate": [{"angle": 2.31}]} + "body-fur-16": { + "rotate": [ + {"angle": 22.01, "curve": 0.354, "c2": 0.41, "c3": 0.756}, {"time": 0.2167, "curve": 0.25, "c3": 0.75}, {"time": 0.3833, "angle": -21.01, "curve": 0.25, "c3": 0.75}, + {"time": 0.55, "angle": 24.41, "curve": 0.25, "c3": 0.75}, {"time": 0.8333, "angle": -33.25, "curve": 0.25, "c3": 0.75}, + {"time": 1.2167, "angle": 31.64, "curve": 0.263, "c3": 0.618, "c4": 0.43}, {"time": 1.3333, "angle": 22.01} + ] + } } }, - "2632049379": { + "1756453214": { "slots": { - "eyes": {"attachment": [{"time": 0.0167, "name": "eyes-shut"}, {"time": 0.3, "name": "eyes-angry"}, {"time": 0.4833, "name": "eyes"}]}, - "mouth": {"attachment": [{"time": 0.0167, "name": "mouth-bite"}, {"time": 0.4833, "name": "mouth"}]} + "eyes": { + "attachment": [ + {"time": 0.05, "name": "eyes-angry"}, {"time": 0.55, "name": "eyes-shut"}, {"time": 0.65, "name": "eyes-angry"}, {"time": 0.9, "name": "eyes-shut"}, {"time": 0.9667, "name": "eyes"} + ] + }, + "mouth": { + "attachment": [ + {"time": 0.1167, "name": "mouth-open"}, {"time": 0.3833, "name": "mouth-bite"}, {"time": 0.65, "name": "mouth-open"}, {"time": 0.9, "name": "mouth-bite"}, + {"time": 0.9667, "name": "mouth"} + ] + } }, "bones": { "@pivot-back": { "rotate": [ - {"curve": "stepped"}, {"time": 0.0167, "angle": 8}, {"time": 0.2333, "angle": 10, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "angle": -5, "curve": 0.315, "c4": 0.8}, - {"time": 0.4833, "angle": 5, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5833} + {"curve": 0, "c2": 0.2, "c3": 0.695}, {"time": 0.1, "angle": 6, "curve": 0, "c2": 0.2, "c3": 0.695}, {"time": 0.25, "angle": -10.31, "curve": 0.317, "c4": 0.8}, + {"time": 0.3833, "angle": 5}, {"time": 0.6333, "angle": 6, "curve": 0, "c2": 0.2, "c3": 0.695}, {"time": 0.7667, "angle": -5.94, "curve": 0.317, "c4": 0.8}, + {"time": 0.9, "angle": 6.92, "curve": 0, "c2": 0.2, "c3": 0.695}, {"time": 1} ], "translate": [ - {"curve": "stepped"}, {"time": 0.0167, "x": 29.16, "y": 6.28}, {"time": 0.2667, "x": 18.48, "y": 18.85, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.3833, "x": -1.17, "y": 18.85, "curve": 0.315, "c4": 0.8}, {"time": 0.4833} + {"time": 0.1, "curve": 0, "c2": 0.2, "c3": 0.695}, {"time": 0.25, "y": 82.86, "curve": 0.317, "c4": 0.8}, {"time": 0.3833, "curve": "stepped"}, + {"time": 0.6333, "curve": 0, "c2": 0.2, "c3": 0.695}, {"time": 0.7667, "y": 70.12, "curve": 0.317, "c4": 0.8}, {"time": 0.9} ] }, - "@shadow": { + "@pivot-main": { + "translate": [{"time": 0.1, "curve": 0, "c2": 0.15, "c3": 0.703}, {"time": 0.3833, "x": 542.6}, {"time": 0.6333, "x": 603.73, "curve": 0, "c2": 0.1, "c3": 0.852}, {"time": 0.9}] + }, + "@leg-front-left": { "translate": [ - {"curve": "stepped"}, {"time": 0.0167, "x": 33.22}, {"time": 0.2667, "x": 61.08, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3833, "x": 9.02, "curve": 0.315, "c4": 0.8}, - {"time": 0.4833} - ], - "scale": [ - {"curve": "stepped"}, {"time": 0.0167, "x": 1.1, "y": 1.1, "curve": "stepped"}, {"time": 0.2667, "x": 1.1, "y": 1.1, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.3833, "x": 0.98, "y": 0.98, "curve": 0.315, "c4": 0.8}, {"time": 0.4833, "x": 1.1, "y": 1.1, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5833} + {"curve": 0, "c2": 0.2, "c3": 0.695}, {"time": 0.1, "x": -1.93, "y": -18.15, "curve": 0, "c2": 0.3, "c3": 0.62}, {"time": 0.25, "curve": 0.313, "c4": 0.8}, + {"time": 0.3833, "x": -1.93, "y": -18.15}, {"time": 0.6333, "x": -1.68, "y": -15.27, "curve": 0, "c2": 0.2, "c3": 0.691}, {"time": 0.7667, "curve": 0.309, "c4": 0.8}, + {"time": 0.9, "x": -1.93, "y": -18.15, "curve": 0, "c2": 0.19, "c3": 0.695}, {"time": 1} ] }, - "@pivot-main": { + "@leg-front-right": { "translate": [ - {"curve": "stepped"}, {"time": 0.0167, "x": 33.18}, {"time": 0.2667, "x": 61.52, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3833, "x": 20.27, "y": 27.91, "curve": 0.315, "c4": 0.8}, - {"time": 0.4833} + {"curve": 0, "c2": 0.2, "c3": 0.695}, {"time": 0.1, "x": -3.41, "y": -31.95, "curve": 0, "c2": 0.3, "c3": 0.62}, {"time": 0.25, "curve": 0.313, "c4": 0.8}, + {"time": 0.3833, "x": -3.41, "y": -31.95}, {"time": 0.6333, "x": -3.16, "y": -29.07, "curve": 0, "c2": 0.2, "c3": 0.691}, {"time": 0.7667, "curve": 0.309, "c4": 0.8}, + {"time": 0.9, "x": -3.41, "y": -31.95, "curve": 0, "c2": 0.19, "c3": 0.695}, {"time": 1} ] }, - "tail": { - "rotate": [ - {"curve": "stepped"}, {"time": 0.0167, "angle": -18.65}, {"time": 0.2333, "angle": -21.65, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.3333, "angle": -13.3, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.45, "angle": 12.04, "curve": 0.154, "c4": 0.9}, - {"time": 0.5167, "angle": -9.14, "curve": 0.161, "c3": 0.854}, {"time": 0.5833} + "@leg-back-left": { + "translate": [ + {"curve": 0, "c2": 0.2, "c3": 0.695}, {"time": 0.1, "x": -0.42, "y": -4.72, "curve": 0, "c2": 0.3, "c3": 0.62}, {"time": 0.25, "curve": 0.313, "c4": 0.8}, + {"time": 0.3833, "x": -0.42, "y": -4.72, "curve": "stepped"}, {"time": 0.6333, "x": -0.42, "y": -4.72, "curve": 0, "c2": 0.2, "c3": 0.691}, {"time": 0.7667, "curve": 0.309, "c4": 0.8}, + {"time": 0.9, "x": -0.42, "y": -4.72, "curve": 0, "c2": 0.19, "c3": 0.695}, {"time": 1} ] }, "leg-front-right-IK": { "translate": [ - {"time": 0.2333, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "x": 22.26, "y": 54.13}, {"time": 0.3833, "x": 28.04, "y": 49.32, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.45} + {"time": 0.1, "curve": 0, "c2": 0.3, "c3": 0.62}, {"time": 0.2167, "x": -58.81, "y": 174.08, "curve": 0.257, "c3": 0.637, "c4": 0.43}, + {"time": 0.2833, "x": 10.68, "y": 136.08, "curve": 0.518, "c2": 0.35, "c4": 0.83}, {"time": 0.3833, "x": 11}, {"time": 0.6333, "x": -14.37, "curve": 0, "c2": 0.2, "c3": 0.691}, + {"time": 0.7333, "x": 26.13, "y": 111.42, "curve": 0.257, "c3": 0.63, "c4": 0.42}, {"time": 0.8, "x": -44.87, "y": 129.12, "curve": 0.503, "c2": 0.34, "c4": 0.83}, {"time": 0.9} ] }, - "@leg-front-left": { + "leg-front-left-IK": { "translate": [ - {"curve": "stepped"}, {"time": 0.0167, "x": -0.45, "y": -3.93}, {"time": 0.2333, "x": -0.82, "y": -2.61}, {"time": 0.3333, "x": -5.6, "y": -0.89, "curve": 0.617, "c4": 0.6}, - {"time": 0.45, "x": -1.09, "y": -14.69, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5833} + {"time": 0.1, "curve": 0, "c2": 0.3, "c3": 0.62}, {"time": 0.2167, "x": -73.46, "y": 138.38, "curve": 0.257, "c3": 0.637, "c4": 0.43}, + {"time": 0.2833, "x": -0.77, "y": 108.17, "curve": 0.518, "c2": 0.35, "c4": 0.83}, {"time": 0.3833, "x": 11}, {"time": 0.6333, "x": -14.37, "curve": 0, "c2": 0.2, "c3": 0.691}, + {"time": 0.7333, "x": 11.48, "y": 75.71, "curve": 0.257, "c3": 0.63, "c4": 0.42}, {"time": 0.8, "x": -56.77, "y": 100.13, "curve": 0.503, "c2": 0.34, "c4": 0.83}, {"time": 0.9} ] }, "leg-back-left-IK": { "translate": [ - {"curve": "stepped"}, {"time": 0.0167, "x": 50.74, "y": 0.9, "curve": "stepped"}, {"time": 0.2, "x": 50.74, "y": 0.9, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.25, "x": 12.5, "y": 6.45, "curve": 0, "c2": 0.8, "c3": 0.15}, {"time": 0.3667, "x": 5.47, "y": 26.12, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.4833} + {"time": 0.1, "curve": 0, "c2": 0.3, "c3": 0.62}, {"time": 0.2, "x": -56.56, "y": 95.34, "curve": 0.257, "c3": 0.637, "c4": 0.43}, + {"time": 0.2667, "x": 21.01, "y": 67.87, "curve": 0.518, "c2": 0.35, "c4": 0.83}, {"time": 0.3833, "x": 0.85}, {"time": 0.6333, "x": -16.87, "curve": 0, "c2": 0.2, "c3": 0.691}, + {"time": 0.7167, "x": 21.01, "y": 67.87, "curve": 0.257, "c3": 0.63, "c4": 0.42}, {"time": 0.7833, "x": -41.39, "y": 75.95, "curve": 0.503, "c2": 0.34, "c4": 0.83}, {"time": 0.9} ] }, - "@leg-front-right": { - "translate": [ - {"time": 0.0167}, {"time": 0.3333, "x": -7.53, "y": 2.3, "curve": 0, "c2": 0.1, "c3": 0.853}, {"time": 0.45, "x": 0.15, "y": -4.26, "curve": 0.159, "c3": 0.853}, - {"time": 0.4833, "x": -2.34, "y": -28.14, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5833} + "tail": { + "rotate": [ + {"curve": 0, "c2": 0.2, "c3": 0.695}, {"time": 0.1, "angle": 21.16, "curve": 0, "c2": 0.2, "c3": 0.695}, {"time": 0.25, "angle": -27.62, "curve": 0.317, "c4": 0.8}, + {"time": 0.3833, "angle": 17.89}, {"time": 0.6333, "angle": 23.46, "curve": 0, "c2": 0.2, "c3": 0.695}, {"time": 0.7667, "angle": -27.7, "curve": 0.317, "c4": 0.8}, + {"time": 0.9, "angle": 21.16, "curve": 0, "c2": 0.2, "c3": 0.695}, {"time": 1} ] }, - "@leg-back-left": { - "translate": [ - {"curve": "stepped"}, {"time": 0.0167, "x": 18.74, "y": 14.65, "curve": "stepped"}, {"time": 0.1667, "x": 18.74, "y": 14.65, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.4833} + "@shadow": { + "translate": [{"time": 0.1}, {"time": 0.3833, "x": 542.6}, {"time": 0.6333, "x": 603.73, "curve": 0, "c2": 0.1, "c3": 0.852}, {"time": 0.9}], + "scale": [ + {}, {"time": 0.1, "x": 1.08, "y": 1.08}, {"time": 0.25, "x": 0.9, "y": 0.9}, {"time": 0.3833, "x": 1.08, "y": 1.08}, {"time": 0.6333, "x": 1.1, "y": 1.1}, + {"time": 0.7833, "x": 0.9, "y": 0.9}, {"time": 0.9, "x": 1.08, "y": 1.08}, {"time": 1} ] }, - "leg-front-left-IK": { - "translate": [ - {"curve": "stepped"}, {"time": 0.0167, "x": 38.52}, {"time": 0.2333, "x": 38.87, "curve": 0, "c2": 0.3, "c3": 0.54}, {"time": 0.3333, "x": 26.12, "y": 38.71}, - {"time": 0.3833, "x": 12.33, "y": 29.93, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.45} + "body-fur-16": { + "rotate": [ + {"angle": 34.91, "curve": 0.36, "c2": 0.64, "c3": 0.695}, {"time": 0.0167, "angle": 37.78, "curve": 0.25, "c3": 0.75}, {"time": 0.1, "curve": 0.25, "c3": 0.75}, + {"time": 0.1833, "angle": -24.62, "curve": 0.25, "c3": 0.75}, {"time": 0.3167, "angle": 43.2, "curve": 0.25, "c3": 0.75}, {"time": 0.4833, "angle": -45.45, "curve": 0.25, "c3": 0.75}, + {"time": 0.7333, "angle": 40.81, "curve": 0.25, "c3": 0.75}, {"time": 0.85, "angle": -29.59, "curve": 0.245, "c3": 0.711, "c4": 0.83}, {"time": 1, "angle": 13.84} ] }, - "body-fur-under-01": { - "translate": [{"x": -0.14, "y": 0.84}], - "shear": [ - {"x": -4.09, "curve": 0.375, "c2": 0.5, "c3": 0.75}, {"time": 0.0333, "x": 7.64, "curve": 0.351, "c2": 0.4, "c3": 0.757}, - {"time": 0.1667, "x": 26.91, "curve": 0.25, "c3": 0.228, "c4": 0.99}, {"time": 0.35, "x": -42.78, "curve": 0.25, "c3": 0.75}, {"time": 0.55, "curve": 0.29, "c3": 0.629, "c4": 0.38}, - {"time": 0.5833, "x": -4.09} + "body-fur-15": { + "rotate": [ + {"angle": 37.78, "curve": 0.25, "c3": 0.75}, {"time": 0.0833}, {"time": 0.1667, "angle": -24.62, "curve": 0.25, "c3": 0.75}, {"time": 0.3, "angle": 43.2, "curve": 0.25, "c3": 0.75}, + {"time": 0.4667, "angle": -45.45, "curve": 0.25, "c3": 0.75}, {"time": 0.7167, "angle": 40.81, "curve": 0.25, "c3": 0.75}, {"time": 0.8333, "angle": -29.59, "curve": 0.25, "c3": 0.75}, + {"time": 1, "angle": 13.33} ] }, - "body-fur-under-03": { - "translate": [{"x": -0.78, "y": 3.19}], - "shear": [ - {"x": 22.47, "curve": 0.25, "c3": 0.75}, {"time": 0.0333, "x": 2.51, "curve": 0.32, "c2": 0.29, "c3": 0.757}, {"time": 0.1833, "x": 19.28, "curve": 0.25, "c3": 0.228, "c4": 0.99}, - {"time": 0.3833, "x": -45.7, "curve": 0.244, "c3": 0.7, "c4": 0.79}, {"time": 0.55, "x": -3.18, "curve": 0.366, "c2": 0.63, "c3": 0.703}, - {"time": 0.5667, "curve": 0.313, "c3": 0.648, "c4": 0.35}, {"time": 0.5833, "x": 22.47} + "body-fur-14": { + "rotate": [ + {"angle": 29.01, "curve": 0.375, "c2": 0.62, "c3": 0.716}, {"time": 0.0333, "angle": 37.78, "curve": 0.245, "c3": 0.637, "c4": 0.56}, + {"time": 0.0833, "angle": 13.9, "curve": 0.381, "c2": 0.55, "c3": 0.742}, {"time": 0.1167}, {"time": 0.2, "angle": -24.62, "curve": 0.25, "c3": 0.75}, + {"time": 0.3333, "angle": 43.2, "curve": 0.25, "c3": 0.75}, {"time": 0.5, "angle": -45.45, "curve": 0.25, "c3": 0.75}, {"time": 0.75, "angle": 40.81, "curve": 0.25, "c3": 0.75}, + {"time": 0.8667, "angle": -29.59, "curve": 0.243, "c3": 0.68, "c4": 0.71}, {"time": 1, "angle": 13.33} ] }, - "body-fur-under-04": { - "translate": [{"x": -0.33, "y": 3.2}], - "shear": [ - {"x": 10.24, "curve": 0.36, "c2": 0.64, "c3": 0.695}, {"time": 0.0333, "x": -15.91, "curve": 0.25, "c3": 0.75}, {"time": 0.2333, "x": 13.82, "curve": 0.25, "c3": 0.228, "c4": 0.99}, - {"time": 0.4167, "x": -39.88, "curve": 0.243, "c3": 0.649, "c4": 0.6}, {"time": 0.55, "x": -22.71, "curve": 0.351, "c2": 0.4, "c3": 0.689, "c4": 0.75}, {"time": 0.5833, "x": 10.24} + "body-fur-13": { + "rotate": [ + {"angle": 37.78, "curve": 0.25, "c3": 0.75}, {"time": 0.0833}, {"time": 0.1667, "angle": -24.62, "curve": 0.25, "c3": 0.75}, {"time": 0.3, "angle": 43.21, "curve": 0.25, "c3": 0.75}, + {"time": 0.4667, "angle": -45.45, "curve": 0.25, "c3": 0.75}, {"time": 0.7167, "angle": 40.81, "curve": 0.25, "c3": 0.75}, {"time": 0.8333, "angle": -29.59, "curve": 0.25, "c3": 0.75}, + {"time": 1, "angle": 11.59} ] }, - "body-fur-under-02": { - "translate": [{"x": -2.23, "y": 6.28}], - "shear": [ - {"x": -27.8, "curve": 0.375, "c2": 0.62, "c3": 0.716}, {"time": 0.0333, "x": 1.3, "curve": 0.3, "c2": 0.21, "c3": 0.756}, - {"time": 0.2, "x": 18.72, "curve": 0.25, "c3": 0.228, "c4": 0.99}, {"time": 0.4, "x": -43.03, "curve": 0.243, "c3": 0.68, "c4": 0.71}, - {"time": 0.55, "x": -5.6, "curve": 0.375, "c2": 0.62, "c3": 0.716}, {"time": 0.5833, "x": -27.8} + "body-fur-12": { + "rotate": [ + {"angle": 32.86, "curve": 0.32, "c2": 0.29, "c3": 0.757}, {"time": 0.0667, "curve": 0.25, "c3": 0.75}, {"time": 0.15, "angle": -24.62, "curve": 0.25, "c3": 0.75}, + {"time": 0.2833, "angle": 43.21, "curve": 0.25, "c3": 0.75}, {"time": 0.45, "angle": -45.45, "curve": 0.25, "c3": 0.75}, {"time": 0.7, "angle": 40.81, "curve": 0.25, "c3": 0.75}, + {"time": 0.8167, "angle": -29.59, "curve": 0.25, "c3": 0.75}, {"time": 1, "angle": 8.12} ] }, - "body-fur-under-05": { - "translate": [{"x": 0.53, "y": 14.98}], - "shear": [ - {"x": 3.7, "curve": 0.382, "c2": 0.57, "c3": 0.737}, {"time": 0.0333, "x": -14.63, "curve": 0.366, "c2": 0.63, "c3": 0.703}, {"time": 0.0667, "x": -12.53, "curve": 0.25, "c3": 0.75}, - {"time": 0.25, "x": 6.85, "curve": 0.25, "c3": 0.228, "c4": 0.99}, {"time": 0.45, "x": -44.3, "curve": 0.248, "c3": 0.628, "c4": 0.52}, - {"time": 0.55, "x": -27.02, "curve": 0.34, "c2": 0.35, "c3": 0.678, "c4": 0.7}, {"time": 0.5833, "x": 3.7} + "body-fur-11": { + "rotate": [ + {"angle": 23.88, "curve": 0.363, "c2": 0.44, "c3": 0.755}, {"time": 0.05, "curve": 0.25, "c3": 0.75}, {"time": 0.1333, "angle": -24.62, "curve": 0.25, "c3": 0.75}, + {"time": 0.2667, "angle": 43.2, "curve": 0.25, "c3": 0.75}, {"time": 0.4333, "angle": -45.45, "curve": 0.25, "c3": 0.75}, {"time": 0.6833, "angle": 40.81, "curve": 0.25, "c3": 0.75}, + {"time": 0.8, "angle": -29.59, "curve": 0.25, "c3": 0.75}, {"time": 0.9667, "angle": 37.78, "curve": 0.258, "c3": 0.619, "c4": 0.45}, {"time": 1, "angle": 4.23} ] }, - "body-braid-02": { + "body-fur-10": { "rotate": [ - {"angle": 3.5, "curve": 0.348, "c2": 0.38, "c3": 0.685, "c4": 0.73}, {"time": 0.0333, "angle": 0.34, "curve": 0.32, "c2": 0.29, "c3": 0.757}, - {"time": 0.1833, "angle": 2.63, "curve": 0.25, "c3": 0.228, "c4": 0.99}, {"time": 0.3833, "angle": 43.23, "curve": 0.25, "c3": 0.75}, - {"time": 0.5667, "curve": 0.313, "c3": 0.648, "c4": 0.35}, {"time": 0.5833, "angle": 3.5} + {"angle": 13.9, "curve": 0.381, "c2": 0.55, "c3": 0.742}, {"time": 0.0333, "curve": 0.25, "c3": 0.75}, {"time": 0.1167, "angle": -24.62, "curve": 0.25, "c3": 0.75}, + {"time": 0.25, "angle": 43.2, "curve": 0.25, "c3": 0.75}, {"time": 0.4167, "angle": -45.45, "curve": 0.25, "c3": 0.75}, {"time": 0.6667, "angle": 40.81, "curve": 0.25, "c3": 0.75}, + {"time": 0.7833, "angle": -29.59, "curve": 0.25, "c3": 0.75}, {"time": 0.95, "angle": 37.78, "curve": 0.245, "c3": 0.637, "c4": 0.56}, {"time": 1, "angle": 0.34} ] }, - "body-braid-03": { + "body-fur-09": { "rotate": [ - {"angle": -1.71, "curve": 0.337, "c2": 0.34, "c3": 0.673, "c4": 0.69}, {"time": 0.0167, "curve": 0.313, "c3": 0.648, "c4": 0.35}, - {"time": 0.0333, "angle": 0.06, "curve": 0.277, "c2": 0.12, "c3": 0.754}, {"time": 0.2167, "angle": 2.63, "curve": 0.25, "c3": 0.228, "c4": 0.99}, - {"time": 0.4, "angle": 23.44, "curve": 0.244, "c3": 0.7, "c4": 0.79}, {"time": 0.5667, "angle": 1.63, "curve": 0.348, "c2": 0.43, "c3": 0.682, "c4": 0.77}, - {"time": 0.5833, "angle": -1.71} + {"angle": 32.88, "curve": 0.303, "c2": 0.24, "c3": 0.661, "c4": 0.65}, {"time": 0.0333, "angle": 13.9, "curve": 0.381, "c2": 0.55, "c3": 0.742}, {"time": 0.0667}, + {"time": 0.15, "angle": -24.62, "curve": 0.25, "c3": 0.75}, {"time": 0.2833, "angle": 43.2, "curve": 0.25, "c3": 0.75}, {"time": 0.45, "angle": -45.45, "curve": 0.25, "c3": 0.75}, + {"time": 0.7, "angle": 40.81, "curve": 0.25, "c3": 0.75}, {"time": 0.8167, "angle": -29.59, "curve": 0.25, "c3": 0.75}, {"time": 1, "angle": 6.86} ] }, - "body-braid-04": { + "body-fur-08": { "rotate": [ - {"angle": -9.29, "curve": 0.323, "c2": 0.3, "c3": 0.66, "c4": 0.65}, {"time": 0.0333, "angle": 1.11, "curve": 0.366, "c2": 0.63, "c3": 0.703}, - {"time": 0.0667, "curve": 0.25, "c3": 0.75}, {"time": 0.25, "angle": 2.63, "curve": 0.25, "c3": 0.228, "c4": 0.99}, - {"time": 0.45, "angle": 16.91, "curve": 0.243, "c3": 0.649, "c4": 0.6}, {"time": 0.5667, "angle": 4.8, "curve": 0.339, "c2": 0.35, "c3": 0.673, "c4": 0.69}, - {"time": 0.5833, "angle": -9.29} + {"angle": 13.9, "curve": 0.381, "c2": 0.55, "c3": 0.742}, {"time": 0.0333}, {"time": 0.1167, "angle": -24.62, "curve": 0.25, "c3": 0.75}, + {"time": 0.25, "angle": 43.2, "curve": 0.25, "c3": 0.75}, {"time": 0.4167, "angle": -45.45, "curve": 0.25, "c3": 0.75}, {"time": 0.6667, "angle": 40.81, "curve": 0.25, "c3": 0.75}, + {"time": 0.7833, "angle": -29.59, "curve": 0.25, "c3": 0.75}, {"time": 0.95, "angle": 37.78, "curve": 0.245, "c3": 0.637, "c4": 0.56}, {"time": 1, "angle": -0.91} ] }, - "body-braid-05": { + "body-fur-07": { "rotate": [ - {"angle": -8.3, "curve": 0.294, "c3": 0.631, "c4": 0.37}, {"time": 0.0333, "angle": 3.03, "curve": 0.381, "c2": 0.55, "c3": 0.742}, {"time": 0.1167, "curve": 0.25, "c3": 0.75}, - {"time": 0.3, "angle": -10.49, "curve": 0.25, "c3": 0.228, "c4": 0.99}, {"time": 0.5, "angle": 8.22, "curve": 0.258, "c3": 0.619, "c4": 0.45}, - {"time": 0.5667, "angle": 5.2, "curve": 0.331, "c2": 0.33, "c3": 0.665, "c4": 0.66}, {"time": 0.5833, "angle": -8.3} + {"angle": 4.91, "curve": 0.375, "c2": 0.62, "c3": 0.716}, {"time": 0.0167, "curve": 0.25, "c3": 0.75}, {"time": 0.1, "angle": -24.62, "curve": 0.25, "c3": 0.75}, + {"time": 0.2333, "angle": 43.2, "curve": 0.25, "c3": 0.75}, {"time": 0.4, "angle": -45.45, "curve": 0.25, "c3": 0.75}, {"time": 0.65, "angle": 40.81, "curve": 0.25, "c3": 0.75}, + {"time": 0.7667, "angle": -29.59, "curve": 0.25, "c3": 0.75}, {"time": 0.9333, "angle": 37.78, "curve": 0.243, "c3": 0.68, "c4": 0.71}, {"time": 1, "angle": 2.91} ] }, - "body-braid-06": { + "body-fur-06": { "rotate": [ - {"angle": -20.59, "curve": 0.352, "c2": 0.41, "c3": 0.689, "c4": 0.75}, {"time": 0.0333, "angle": 6.87, "curve": 0.351, "c2": 0.4, "c3": 0.757}, - {"time": 0.1667, "curve": 0.25, "c3": 0.75}, {"time": 0.35, "angle": -28.99, "curve": 0.25, "c3": 0.228, "c4": 0.99}, - {"time": 0.55, "angle": 9.53, "curve": 0.297, "c3": 0.634, "c4": 0.37}, {"time": 0.5667, "angle": 8.86, "curve": 0.321, "c2": 0.28, "c3": 0.655, "c4": 0.61}, - {"time": 0.5833, "angle": -20.59} + {"angle": 32.88, "curve": 0.303, "c2": 0.24, "c3": 0.661, "c4": 0.65}, {"time": 0.0333, "angle": 13.9, "curve": 0.381, "c2": 0.55, "c3": 0.742}, + {"time": 0.0667, "curve": 0.25, "c3": 0.75}, {"time": 0.15, "angle": -24.62, "curve": 0.25, "c3": 0.75}, {"time": 0.2833, "angle": 43.2, "curve": 0.25, "c3": 0.75}, + {"time": 0.45, "angle": -45.45, "curve": 0.25, "c3": 0.75}, {"time": 0.7, "angle": 40.81, "curve": 0.25, "c3": 0.75}, {"time": 0.8167, "angle": -29.59, "curve": 0.25, "c3": 0.75}, + {"time": 1, "angle": 13.33} ] }, - "body-braid-01": {"rotate": [{"angle": 2.31}]} + "body-fur-05": { + "rotate": [ + {"angle": 13.9, "curve": 0.381, "c2": 0.55, "c3": 0.742}, {"time": 0.0333}, {"time": 0.1167, "angle": -24.62, "curve": 0.25, "c3": 0.75}, + {"time": 0.25, "angle": 43.2, "curve": 0.25, "c3": 0.75}, {"time": 0.4167, "angle": -45.45, "curve": 0.25, "c3": 0.75}, {"time": 0.6667, "angle": 40.81, "curve": 0.25, "c3": 0.75}, + {"time": 0.7833, "angle": -29.59, "curve": 0.25, "c3": 0.75}, {"time": 0.95, "angle": 37.78, "curve": 0.245, "c3": 0.637, "c4": 0.56}, {"time": 1, "angle": 6.86} + ] + }, + "body-fur-04": { + "rotate": [ + {"angle": 37.78, "curve": 0.245, "c3": 0.637, "c4": 0.56}, {"time": 0.05, "angle": 13.9, "curve": 0.381, "c2": 0.55, "c3": 0.742}, {"time": 0.0833}, + {"time": 0.1667, "angle": -24.62, "curve": 0.25, "c3": 0.75}, {"time": 0.3, "angle": 43.2, "curve": 0.25, "c3": 0.75}, {"time": 0.4667, "angle": -45.45, "curve": 0.25, "c3": 0.75}, + {"time": 0.7167, "angle": 40.81, "curve": 0.25, "c3": 0.75}, {"time": 0.8333, "angle": -29.59, "curve": 0.25, "c3": 0.75}, {"time": 1, "angle": 12.53} + ] + }, + "body-fur-03": { + "rotate": [ + {"angle": 23.88, "curve": 0.363, "c2": 0.44, "c3": 0.755}, {"time": 0.05}, {"time": 0.1333, "angle": -24.62, "curve": 0.25, "c3": 0.75}, + {"time": 0.2667, "angle": 43.2, "curve": 0.25, "c3": 0.75}, {"time": 0.4333, "angle": -45.45, "curve": 0.25, "c3": 0.75}, {"time": 0.6833, "angle": 40.81, "curve": 0.25, "c3": 0.75}, + {"time": 0.8, "angle": -29.59, "curve": 0.25, "c3": 0.75}, {"time": 0.9667, "angle": 37.78, "curve": 0.258, "c3": 0.619, "c4": 0.45}, {"time": 1, "angle": 5.54} + ] + }, + "body-fur-02": { + "rotate": [ + {"angle": 34.91, "curve": 0.36, "c2": 0.64, "c3": 0.695}, {"time": 0.0167, "angle": 37.78, "curve": 0.245, "c3": 0.637, "c4": 0.56}, + {"time": 0.0667, "angle": 13.9, "curve": 0.381, "c2": 0.55, "c3": 0.742}, {"time": 0.1}, {"time": 0.1833, "angle": -24.62, "curve": 0.25, "c3": 0.75}, + {"time": 0.3167, "angle": 43.2, "curve": 0.25, "c3": 0.75}, {"time": 0.4833, "angle": -45.45, "curve": 0.25, "c3": 0.75}, {"time": 0.7333, "angle": 40.81, "curve": 0.25, "c3": 0.75}, + {"time": 0.85, "angle": -29.59, "curve": 0.245, "c3": 0.711, "c4": 0.83}, {"time": 1, "angle": 13.84} + ] + }, + "body-fur-01": { + "rotate": [ + {"angle": 32.86, "curve": 0.32, "c2": 0.29, "c3": 0.757}, {"time": 0.0667}, {"time": 0.15, "angle": -24.62, "curve": 0.25, "c3": 0.75}, + {"time": 0.2833, "angle": 43.2, "curve": 0.25, "c3": 0.75}, {"time": 0.45, "angle": -45.45, "curve": 0.25, "c3": 0.75}, {"time": 0.7, "angle": 40.81, "curve": 0.25, "c3": 0.75}, + {"time": 0.8167, "angle": -29.59, "curve": 0.25, "c3": 0.75}, {"time": 1, "angle": 10.51} + ] + } } }, - "2044221994": { + "413498100": { "slots": { - "eyes": {"attachment": [{"time": 0.0167, "name": "eyes-angry"}, {"time": 0.25, "name": "eyes-shut"}, {"time": 0.3, "name": "eyes-angry"}, {"time": 0.4333, "name": "eyes"}]}, - "mouth": {"attachment": [{"time": 0.0167, "name": "mouth-bite"}, {"time": 0.3, "name": "mouth-open"}, {"time": 0.4333, "name": "mouth"}]} + "eyes": { + "attachment": [ + {"time": 0.1333, "name": "eyes-shut"}, {"time": 0.2, "name": "eyes"}, {"time": 0.55, "name": "eyes-shut"}, {"time": 0.6167, "name": "eyes"}, {"time": 0.9667, "name": "eyes-shut"} + ] + }, + "mouth": { + "attachment": [ + {"time": 0.1833, "name": "mouth-open"}, {"time": 0.5, "name": "mouth"}, {"time": 0.6, "name": "mouth-open"}, {"time": 0.9, "name": "mouth"}, {"time": 0.9667, "name": "mouth-bite"} + ] + } }, "bones": { "@pivot-back": { "rotate": [ - {"curve": "stepped"}, {"time": 0.0167, "angle": 7.5}, {"time": 0.2333, "angle": 10, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "angle": -5, "curve": 0.315, "c4": 0.8}, - {"time": 0.4833, "angle": 5, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5833} + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "angle": 3.53, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "angle": -10.14, "curve": 0.315, "c4": 0.8}, + {"time": 0.5, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5833, "angle": 3.53, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.75, "angle": -10.14, "curve": 0.315, "c4": 0.8}, + {"time": 0.9167, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1.0833, "angle": 5.43}, {"time": 1.15, "angle": 3.94}, {"time": 1.2, "angle": 5.43}, {"time": 1.2333, "angle": 3.94}, + {"time": 1.2667, "angle": 5.43}, {"time": 1.3, "angle": 3.94}, {"time": 1.3333, "angle": 5.43}, {"time": 1.3667, "angle": 3.94}, {"time": 1.4, "angle": 5.43}, + {"time": 1.4333, "angle": 3.94}, {"time": 1.4667, "angle": 5.43}, {"time": 1.5, "angle": 3.94} ], "translate": [ - {"curve": "stepped"}, {"time": 0.0167, "x": 29.16, "y": 18.85, "curve": "stepped"}, {"time": 0.2667, "x": 29.16, "y": 18.85, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.3833, "x": -1.17, "y": 18.85, "curve": 0.315, "c4": 0.8}, {"time": 0.4833} + {"y": 44.46, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "y": 12.46, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "y": 209.26, "curve": 0.315, "c4": 0.8}, + {"time": 0.5, "y": 44.46, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5833, "y": 12.46, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.75, "y": 209.26, "curve": 0.315, "c4": 0.8}, + {"time": 0.9167, "y": 44.46} ] }, - "leg-back-left-IK": { - "translate": [ - {"curve": "stepped"}, {"time": 0.0167, "x": 50.74, "y": 0.9, "curve": "stepped"}, {"time": 0.2, "x": 50.74, "y": 0.9, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.25, "x": 12.5, "y": 6.45, "curve": 0, "c2": 0.8, "c3": 0.15}, {"time": 0.3667, "x": 5.47, "y": 26.12, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.4833} + "@leg-front-right": { + "rotate": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "angle": -14.05, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "angle": 13.89, "curve": 0.315, "c4": 0.8}, + {"time": 0.5, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5833, "angle": -12.58, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.75, "angle": 13.89, "curve": 0.315, "c4": 0.8}, + {"time": 0.9167, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1.0833, "angle": -12.58} + ] + }, + "@leg-front-left": { + "rotate": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "angle": -14.05, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "angle": 13.89, "curve": 0.315, "c4": 0.8}, + {"time": 0.5, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5833, "angle": -12.58, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.75, "angle": 13.89, "curve": 0.315, "c4": 0.8}, + {"time": 0.9167, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1.0833, "angle": -12.58} ] }, "@leg-back-left": { - "translate": [ - {"curve": "stepped"}, {"time": 0.0167, "x": 18.74, "y": 14.65, "curve": "stepped"}, {"time": 0.1667, "x": 18.74, "y": 14.65, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.4833} + "rotate": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "angle": -14.05, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "angle": 13.89, "curve": 0.315, "c4": 0.8}, + {"time": 0.5, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5833, "angle": -12.58, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.75, "angle": 13.89, "curve": 0.315, "c4": 0.8}, + {"time": 0.9167, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1.0833, "angle": -12.58} ] }, - "@leg-front-left": { - "translate": [ - {"curve": "stepped"}, {"time": 0.0167, "x": -0.45, "y": -3.93}, {"time": 0.2333, "x": -0.82, "y": -2.61}, {"time": 0.3333, "x": -5.6, "y": -0.89, "curve": 0.617, "c4": 0.6}, - {"time": 0.45, "x": -1.09, "y": -14.69, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5833} + "tail": { + "rotate": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "angle": 14.79, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "angle": -27.83, "curve": "stepped"}, + {"time": 0.3333, "angle": -27.83, "curve": 0.313, "c3": 0.691}, {"time": 0.5, "angle": 14.79, "curve": "stepped"}, {"time": 0.5833, "angle": 14.79, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.6667, "angle": -27.83, "curve": "stepped"}, {"time": 0.75, "angle": -27.83, "curve": 0.313, "c3": 0.691}, {"time": 0.9167, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 1.0833, "angle": 12.48, "curve": 0.313, "c3": 0.691}, {"time": 1.15, "angle": 9.69, "curve": 0.313, "c3": 0.691}, {"time": 1.2, "angle": 12.48, "curve": 0.161, "c3": 0.854}, + {"time": 1.2333, "angle": 9.69, "curve": 0.161, "c3": 0.854}, {"time": 1.2667, "angle": 12.48, "curve": 0.161, "c3": 0.854}, {"time": 1.3, "angle": 9.69, "curve": 0.161, "c3": 0.854}, + {"time": 1.3333, "angle": 12.48, "curve": 0.161, "c3": 0.854}, {"time": 1.3667, "angle": 9.69, "curve": 0.161, "c3": 0.854}, {"time": 1.4, "angle": 12.48, "curve": 0.161, "c3": 0.854}, + {"time": 1.4333, "angle": 9.69, "curve": 0.161, "c3": 0.854}, {"time": 1.4667, "angle": 12.48, "curve": 0.161, "c3": 0.854}, {"time": 1.5, "angle": 9.69} ] }, - "@leg-front-right": { - "translate": [ - {"time": 0.0167}, {"time": 0.3333, "x": -7.53, "y": 2.3, "curve": 0, "c2": 0.1, "c3": 0.853}, {"time": 0.45, "x": 0.15, "y": -4.26, "curve": 0.159, "c3": 0.853}, - {"time": 0.4833, "x": -2.34, "y": -28.14, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5833} + "@shadow": { + "scale": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": 1.1, "y": 1.1, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "x": 0.9, "y": 0.9, "curve": 0.315, "c4": 0.8}, + {"time": 0.5833, "x": 1.1, "y": 1.1, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.75, "x": 0.9, "y": 0.9, "curve": 0.315, "c4": 0.8}, + {"time": 0.9167, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1.0833, "x": 1.05, "y": 1.05}, {"time": 1.15}, {"time": 1.2, "x": 1.05, "y": 1.05}, {"time": 1.25}, + {"time": 1.3, "x": 1.05, "y": 1.05}, {"time": 1.35}, {"time": 1.4, "x": 1.05, "y": 1.05}, {"time": 1.45}, {"time": 1.5, "x": 1.05, "y": 1.05} ] }, - "@pivot-main": { - "translate": [ - {"curve": "stepped"}, {"time": 0.0167, "x": 33.18}, {"time": 0.2667, "x": 61.52, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3833, "x": 20.27, "y": 27.91, "curve": 0.315, "c4": 0.8}, - {"time": 0.4833} + "body-fur-01": { + "rotate": [ + {"angle": 5.95, "curve": 0.375, "c2": 0.5, "c3": 0.75}, {"time": 0.0833}, {"time": 0.25, "angle": 30.26, "curve": 0.25, "c3": 0.75}, + {"time": 0.45, "angle": -24.2, "curve": 0.25, "c3": 0.75}, {"time": 0.6167, "angle": 21.17, "curve": 0.25, "c3": 0.75}, {"time": 0.8167, "angle": -32.4, "curve": 0.25, "c3": 0.75}, + {"time": 1.0833, "angle": 24.01, "curve": 0.25, "c3": 0.75}, {"time": 1.25, "angle": -15.47, "curve": 0.25, "c3": 0.75}, + {"time": 1.4167, "angle": 11.9, "curve": 0.25, "c3": 0.625, "c4": 0.5}, {"time": 1.5, "angle": 5.95} ] }, - "leg-front-right-IK": { - "translate": [ - {"time": 0.2333, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "x": 22.26, "y": 54.13}, {"time": 0.3833, "x": 28.04, "y": 49.32, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.45} + "body-fur-02": { + "rotate": [ + {"angle": 10.34, "curve": 0.303, "c2": 0.24, "c3": 0.674, "c4": 0.69}, {"time": 0.0833, "angle": 2.88, "curve": 0.382, "c2": 0.58, "c3": 0.731}, {"time": 0.1333}, + {"time": 0.3, "angle": 30.26, "curve": 0.25, "c3": 0.75}, {"time": 0.5, "angle": -24.2, "curve": 0.25, "c3": 0.75}, {"time": 0.6667, "angle": 21.17, "curve": 0.25, "c3": 0.75}, + {"time": 0.8667, "angle": -32.4, "curve": 0.25, "c3": 0.75}, {"time": 1.1333, "angle": 24.01, "curve": 0.25, "c3": 0.75}, {"time": 1.3, "angle": -15.47, "curve": 0.25, "c3": 0.75}, + {"time": 1.4667, "angle": 11.9, "curve": 0.284, "c3": 0.625, "c4": 0.38}, {"time": 1.5, "angle": 10.34} ] }, - "leg-front-left-IK": { - "translate": [ - {"curve": "stepped"}, {"time": 0.0167, "x": 38.52}, {"time": 0.2333, "x": 38.87, "curve": 0, "c2": 0.3, "c3": 0.54}, {"time": 0.3333, "x": 26.12, "y": 38.71}, - {"time": 0.3833, "x": 12.33, "y": 29.93, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.45} + "body-fur-03": { + "rotate": [ + {"angle": 10.35, "curve": 0.32, "c2": 0.29, "c3": 0.757}, {"time": 0.1333}, {"time": 0.3, "angle": 30.26, "curve": 0.25, "c3": 0.75}, + {"time": 0.5, "angle": -24.2, "curve": 0.25, "c3": 0.75}, {"time": 0.6667, "angle": 21.17, "curve": 0.25, "c3": 0.75}, {"time": 0.8667, "angle": -32.4, "curve": 0.25, "c3": 0.75}, + {"time": 1.1333, "angle": 24.01, "curve": 0.25, "c3": 0.75}, {"time": 1.3, "angle": -15.47, "curve": 0.25, "c3": 0.75}, + {"time": 1.4667, "angle": 11.9, "curve": 0.284, "c3": 0.625, "c4": 0.38}, {"time": 1.5, "angle": 10.35} ] }, - "@shadow": { - "translate": [ - {"curve": "stepped"}, {"time": 0.0167, "x": 33.22}, {"time": 0.2667, "x": 61.08, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3833, "x": 9.02, "curve": 0.315, "c4": 0.8}, - {"time": 0.4833} - ], - "scale": [ - {"curve": "stepped"}, {"time": 0.0167, "x": 1.1, "y": 1.1, "curve": "stepped"}, {"time": 0.2667, "x": 1.1, "y": 1.1, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.3833, "x": 0.98, "y": 0.98, "curve": 0.315, "c4": 0.8}, {"time": 0.4833, "x": 1.1, "y": 1.1, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5833} + "body-fur-04": { + "rotate": [ + {"angle": 10.73, "curve": 0.36, "c2": 0.64, "c3": 0.695}, {"time": 0.0167, "angle": 11.9, "curve": 0.243, "c3": 0.655, "c4": 0.63}, + {"time": 0.1333, "angle": 2.88, "curve": 0.382, "c2": 0.58, "c3": 0.731}, {"time": 0.1833}, {"time": 0.35, "angle": 30.26, "curve": 0.25, "c3": 0.75}, + {"time": 0.55, "angle": -24.2, "curve": 0.25, "c3": 0.75}, {"time": 0.7167, "angle": 21.17, "curve": 0.25, "c3": 0.75}, {"time": 0.9167, "angle": -32.4, "curve": 0.25, "c3": 0.75}, + {"time": 1.1833, "angle": 24.01, "curve": 0.25, "c3": 0.75}, {"time": 1.35, "angle": -15.47, "curve": 0.245, "c3": 0.711, "c4": 0.83}, {"time": 1.5, "angle": 10.73} ] }, - "tail": { + "body-fur-05": { "rotate": [ - {"curve": "stepped"}, {"time": 0.0167, "angle": -17.67}, {"time": 0.2333, "angle": -21.07, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.3167, "angle": -20.71, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.45, "angle": 25.83, "curve": 0.154, "c4": 0.9}, - {"time": 0.5167, "angle": -14.3, "curve": 0.161, "c3": 0.854}, {"time": 0.5833} + {"angle": 7.52, "curve": 0.363, "c2": 0.44, "c3": 0.755}, {"time": 0.1, "curve": 0.25, "c3": 0.75}, {"time": 0.2667, "angle": 30.26, "curve": 0.25, "c3": 0.75}, + {"time": 0.4667, "angle": -24.2, "curve": 0.25, "c3": 0.75}, {"time": 0.6333, "angle": 21.17, "curve": 0.25, "c3": 0.75}, {"time": 0.8333, "angle": -32.4, "curve": 0.25, "c3": 0.75}, + {"time": 1.1, "angle": 24.01, "curve": 0.25, "c3": 0.75}, {"time": 1.2667, "angle": -15.47, "curve": 0.25, "c3": 0.75}, + {"time": 1.4333, "angle": 11.9, "curve": 0.258, "c3": 0.619, "c4": 0.45}, {"time": 1.5, "angle": 7.52} ] }, - "body-braid-02": { + "body-fur-06": { "rotate": [ - {"angle": 3.5, "curve": 0.348, "c2": 0.38, "c3": 0.685, "c4": 0.73}, {"time": 0.15, "angle": 2.63, "curve": 0.25, "c3": 0.228, "c4": 0.99}, - {"time": 0.35, "angle": 43.23, "curve": 0.25, "c3": 0.75}, {"time": 0.5333, "curve": 0.284, "c3": 0.625, "c4": 0.38}, {"time": 0.5833, "angle": 3.5} + {"angle": 11.4, "curve": 0.277, "c2": 0.14, "c3": 0.667, "c4": 0.67}, {"time": 0.1, "angle": 2.88, "curve": 0.382, "c2": 0.58, "c3": 0.731}, {"time": 0.15, "curve": 0.25, "c3": 0.75}, + {"time": 0.3167, "angle": 30.26, "curve": 0.25, "c3": 0.75}, {"time": 0.5167, "angle": -24.2, "curve": 0.25, "c3": 0.75}, {"time": 0.6833, "angle": 21.17, "curve": 0.25, "c3": 0.75}, + {"time": 0.8833, "angle": -32.4, "curve": 0.25, "c3": 0.75}, {"time": 1.15, "angle": 24.01, "curve": 0.25, "c3": 0.75}, {"time": 1.3167, "angle": -15.47, "curve": 0.25, "c3": 0.75}, + {"time": 1.4833, "angle": 11.9, "curve": 0.305, "c3": 0.64, "c4": 0.36}, {"time": 1.5, "angle": 11.4} ] }, - "body-braid-03": { + "body-fur-07": { "rotate": [ - {"angle": -1.71, "curve": 0.337, "c2": 0.34, "c3": 0.673, "c4": 0.69}, {"time": 0.1833, "angle": 2.63, "curve": 0.25, "c3": 0.228, "c4": 0.99}, - {"time": 0.3667, "angle": 23.44, "curve": 0.244, "c3": 0.7, "c4": 0.79}, {"time": 0.5333, "angle": 1.63, "curve": 0.366, "c2": 0.63, "c3": 0.703}, - {"time": 0.5667, "curve": 0.313, "c3": 0.648, "c4": 0.35}, {"time": 0.5833, "angle": -1.71} + {"angle": 4.38, "curve": 0.381, "c2": 0.55, "c3": 0.742}, {"time": 0.0667, "curve": 0.25, "c3": 0.75}, {"time": 0.2333, "angle": 30.26, "curve": 0.25, "c3": 0.75}, + {"time": 0.4333, "angle": -24.2, "curve": 0.25, "c3": 0.75}, {"time": 0.6, "angle": 21.17, "curve": 0.25, "c3": 0.75}, {"time": 0.8, "angle": -32.4, "curve": 0.25, "c3": 0.75}, + {"time": 1.0667, "angle": 24.01, "curve": 0.25, "c3": 0.75}, {"time": 1.2333, "angle": -15.47, "curve": 0.25, "c3": 0.75}, + {"time": 1.4, "angle": 11.9, "curve": 0.245, "c3": 0.637, "c4": 0.56}, {"time": 1.5, "angle": 4.38} ] }, - "body-braid-04": { + "body-fur-08": { "rotate": [ - {"angle": -9.29, "curve": 0.323, "c2": 0.3, "c3": 0.66, "c4": 0.65}, {"time": 0.0333, "curve": 0.25, "c3": 0.75}, {"time": 0.2167, "angle": 2.63, "curve": 0.25, "c3": 0.228, "c4": 0.99}, - {"time": 0.4167, "angle": 16.91, "curve": 0.243, "c3": 0.649, "c4": 0.6}, {"time": 0.5333, "angle": 4.8, "curve": 0.356, "c2": 0.42, "c3": 0.696, "c4": 0.78}, - {"time": 0.5833, "angle": -9.29} + {"angle": 5.95, "curve": 0.375, "c2": 0.5, "c3": 0.75}, {"time": 0.0833}, {"time": 0.25, "angle": 30.26, "curve": 0.25, "c3": 0.75}, + {"time": 0.45, "angle": -24.2, "curve": 0.25, "c3": 0.75}, {"time": 0.6167, "angle": 21.17, "curve": 0.25, "c3": 0.75}, {"time": 0.8167, "angle": -32.4, "curve": 0.25, "c3": 0.75}, + {"time": 1.0833, "angle": 24.01, "curve": 0.25, "c3": 0.75}, {"time": 1.25, "angle": -15.47, "curve": 0.25, "c3": 0.75}, + {"time": 1.4167, "angle": 11.9, "curve": 0.25, "c3": 0.625, "c4": 0.5}, {"time": 1.5, "angle": 5.95} ] }, - "body-braid-05": { + "body-fur-09": { "rotate": [ - {"angle": -8.3, "curve": 0.294, "c3": 0.631, "c4": 0.37}, {"time": 0.0833, "curve": 0.25, "c3": 0.75}, {"time": 0.2667, "angle": -10.49, "curve": 0.25, "c3": 0.228, "c4": 0.99}, - {"time": 0.4667, "angle": 8.22, "curve": 0.258, "c3": 0.619, "c4": 0.45}, {"time": 0.5333, "angle": 5.2, "curve": 0.33, "c2": 0.32, "c3": 0.67, "c4": 0.68}, - {"time": 0.5833, "angle": -8.3} + {"angle": 10.34, "curve": 0.303, "c2": 0.24, "c3": 0.674, "c4": 0.69}, {"time": 0.0833, "angle": 2.88, "curve": 0.382, "c2": 0.58, "c3": 0.731}, {"time": 0.1333}, + {"time": 0.3, "angle": 30.26, "curve": 0.25, "c3": 0.75}, {"time": 0.5, "angle": -24.2, "curve": 0.25, "c3": 0.75}, {"time": 0.6667, "angle": 21.17, "curve": 0.25, "c3": 0.75}, + {"time": 0.8667, "angle": -32.4, "curve": 0.25, "c3": 0.75}, {"time": 1.1333, "angle": 24.01, "curve": 0.25, "c3": 0.75}, {"time": 1.3, "angle": -15.47, "curve": 0.25, "c3": 0.75}, + {"time": 1.4667, "angle": 11.9, "curve": 0.284, "c3": 0.625, "c4": 0.38}, {"time": 1.5, "angle": 10.34} ] }, - "body-braid-06": { + "body-fur-10": { "rotate": [ - {"angle": -20.59, "curve": 0.352, "c2": 0.41, "c3": 0.689, "c4": 0.75}, {"time": 0.1333, "curve": 0.25, "c3": 0.75}, - {"time": 0.3167, "angle": -28.99, "curve": 0.25, "c3": 0.228, "c4": 0.99}, {"time": 0.5167, "angle": 9.53, "curve": 0.297, "c3": 0.634, "c4": 0.37}, - {"time": 0.5333, "angle": 8.86, "curve": 0.304, "c2": 0.22, "c3": 0.644, "c4": 0.58}, {"time": 0.5833, "angle": -20.59} + {"angle": 2.88, "curve": 0.382, "c2": 0.58, "c3": 0.731}, {"time": 0.05, "curve": 0.25, "c3": 0.75}, {"time": 0.2167, "angle": 30.26, "curve": 0.25, "c3": 0.75}, + {"time": 0.4167, "angle": -24.2, "curve": 0.25, "c3": 0.75}, {"time": 0.5833, "angle": 21.17, "curve": 0.25, "c3": 0.75}, {"time": 0.7833, "angle": -32.4, "curve": 0.25, "c3": 0.75}, + {"time": 1.05, "angle": 24.01, "curve": 0.25, "c3": 0.75}, {"time": 1.2167, "angle": -15.47, "curve": 0.25, "c3": 0.75}, + {"time": 1.3833, "angle": 11.9, "curve": 0.243, "c3": 0.655, "c4": 0.63}, {"time": 1.5, "angle": 2.88} ] }, - "body-fur-under-02": { - "translate": [{"x": -2.23, "y": 6.28}], - "shear": [ - {"x": -27.8, "curve": 0.375, "c2": 0.62, "c3": 0.716}, {"time": 0.0667, "x": 14.59, "curve": 0.382, "c2": 0.57, "c3": 0.735}, {"time": 0.1833, "curve": 0.25, "c3": 0.75}, - {"time": 0.4167, "x": 51.41, "curve": 0.252, "c3": 0.622, "c4": 0.48}, {"time": 0.5833, "x": -27.8} + "body-fur-11": { + "rotate": [ + {"angle": 5.95, "curve": 0.375, "c2": 0.5, "c3": 0.75}, {"time": 0.0833, "curve": 0.25, "c3": 0.75}, {"time": 0.25, "angle": 30.26, "curve": 0.25, "c3": 0.75}, + {"time": 0.45, "angle": -24.2, "curve": 0.25, "c3": 0.75}, {"time": 0.6167, "angle": 21.17, "curve": 0.25, "c3": 0.75}, {"time": 0.8167, "angle": -32.4, "curve": 0.25, "c3": 0.75}, + {"time": 1.0833, "angle": 24.01, "curve": 0.25, "c3": 0.75}, {"time": 1.25, "angle": -15.47, "curve": 0.25, "c3": 0.75}, + {"time": 1.4167, "angle": 11.9, "curve": 0.25, "c3": 0.625, "c4": 0.5}, {"time": 1.5, "angle": 5.95} ] }, - "body-fur-under-03": { - "translate": [{"x": -0.78, "y": 3.19}], - "shear": [ - {"x": 22.47, "curve": 0.25, "c3": 0.75}, {"time": 0.0667, "x": 3.57, "curve": 0.366, "c2": 0.63, "c3": 0.703}, {"time": 0.1167, "curve": 0.25, "c3": 0.75}, - {"time": 0.35, "x": 51.41, "curve": 0.243, "c3": 0.649, "c4": 0.6}, {"time": 0.5833, "x": 22.47} + "body-fur-12": { + "rotate": [ + {"angle": 9.02, "curve": 0.345, "c2": 0.37, "c3": 0.757}, {"time": 0.1167, "curve": 0.25, "c3": 0.75}, {"time": 0.2833, "angle": 30.26, "curve": 0.25, "c3": 0.75}, + {"time": 0.4833, "angle": -24.2, "curve": 0.25, "c3": 0.75}, {"time": 0.65, "angle": 21.17, "curve": 0.25, "c3": 0.75}, {"time": 0.85, "angle": -32.4, "curve": 0.25, "c3": 0.75}, + {"time": 1.1167, "angle": 24.01, "curve": 0.25, "c3": 0.75}, {"time": 1.2833, "angle": -15.47, "curve": 0.25, "c3": 0.75}, + {"time": 1.45, "angle": 11.9, "curve": 0.269, "c3": 0.618, "c4": 0.42}, {"time": 1.5, "angle": 9.02} ] }, - "body-fur-under-05": { - "translate": [{"x": 0.53, "y": 14.98}], - "shear": [ - {"x": 3.7, "curve": 0.382, "c2": 0.57, "c3": 0.737}, {"time": 0.0667, "x": 6.69, "curve": 0.375, "c2": 0.62, "c3": 0.716}, {"time": 0.1333, "curve": 0.25, "c3": 0.75}, - {"time": 0.3833, "x": 51.41, "curve": 0.245, "c3": 0.637, "c4": 0.56}, {"time": 0.5833, "x": 3.7} + "body-fur-13": { + "rotate": [ + {"angle": 11.39, "curve": 0.289, "c2": 0.17, "c3": 0.755}, {"time": 0.15}, {"time": 0.3167, "angle": 30.26, "curve": 0.25, "c3": 0.75}, + {"time": 0.5167, "angle": -24.2, "curve": 0.25, "c3": 0.75}, {"time": 0.6833, "angle": 21.17, "curve": 0.25, "c3": 0.75}, {"time": 0.8833, "angle": -32.4, "curve": 0.25, "c3": 0.75}, + {"time": 1.15, "angle": 24.01, "curve": 0.25, "c3": 0.75}, {"time": 1.3167, "angle": -15.47, "curve": 0.25, "c3": 0.75}, + {"time": 1.4833, "angle": 11.9, "curve": 0.305, "c3": 0.64, "c4": 0.36}, {"time": 1.5, "angle": 11.39} ] }, - "body-fur-under-04": { - "translate": [{"x": -0.33, "y": 3.2}], - "shear": [ - {"x": 10.24, "curve": 0.36, "c2": 0.64, "c3": 0.695}, {"time": 0.0667, "x": 10.42, "curve": 0.38, "c2": 0.59, "c3": 0.727}, {"time": 0.1667, "curve": 0.25, "c3": 0.75}, - {"time": 0.4, "x": 51.41, "curve": 0.248, "c3": 0.628, "c4": 0.52}, {"time": 0.5833, "x": 10.24} + "body-fur-14": { + "rotate": [ + {"angle": 8.34, "curve": 0.375, "c2": 0.62, "c3": 0.716}, {"time": 0.0333, "angle": 11.9, "curve": 0.243, "c3": 0.655, "c4": 0.63}, + {"time": 0.15, "angle": 2.88, "curve": 0.382, "c2": 0.58, "c3": 0.731}, {"time": 0.2}, {"time": 0.3667, "angle": 30.26, "curve": 0.25, "c3": 0.75}, + {"time": 0.5667, "angle": -24.2, "curve": 0.25, "c3": 0.75}, {"time": 0.7333, "angle": 21.17, "curve": 0.25, "c3": 0.75}, {"time": 0.9333, "angle": -32.4, "curve": 0.25, "c3": 0.75}, + {"time": 1.2, "angle": 24.01, "curve": 0.25, "c3": 0.75}, {"time": 1.3667, "angle": -15.47, "curve": 0.243, "c3": 0.68, "c4": 0.71}, {"time": 1.5, "angle": 8.34} ] }, - "body-fur-under-01": { - "translate": [{"x": -0.14, "y": 0.84}], - "shear": [ - {"x": -4.09, "curve": 0.375, "c2": 0.5, "c3": 0.75}, {"time": 0.0667, "x": 1.17, "curve": 0.352, "c2": 0.65, "c3": 0.687}, {"time": 0.1, "curve": 0.25, "c3": 0.75}, - {"time": 0.3333, "x": 51.41, "curve": 0.242, "c3": 0.663, "c4": 0.65}, {"time": 0.5833, "x": -4.09} + "body-fur-15": { + "rotate": [ + {"angle": 10.73, "curve": 0.36, "c2": 0.64, "c3": 0.695}, {"time": 0.0167, "angle": 11.9, "curve": 0.25, "c3": 0.75}, {"time": 0.1833, "curve": 0.25, "c3": 0.75}, + {"time": 0.35, "angle": 30.26, "curve": 0.25, "c3": 0.75}, {"time": 0.55, "angle": -24.2, "curve": 0.25, "c3": 0.75}, {"time": 0.7167, "angle": 21.17, "curve": 0.25, "c3": 0.75}, + {"time": 0.9167, "angle": -32.4, "curve": 0.25, "c3": 0.75}, {"time": 1.1833, "angle": 24.01, "curve": 0.25, "c3": 0.75}, + {"time": 1.35, "angle": -15.47, "curve": 0.245, "c3": 0.711, "c4": 0.83}, {"time": 1.5, "angle": 10.73} ] }, - "body-braid-01": {"rotate": [{"angle": 2.31}]} + "body-fur-16": { + "rotate": [ + {"angle": 5.27, "curve": 0.382, "c2": 0.58, "c3": 0.731}, {"time": 0.05, "angle": 11.9, "curve": 0.25, "c3": 0.75}, {"time": 0.2167, "curve": 0.25, "c3": 0.75}, + {"time": 0.3833, "angle": 30.26, "curve": 0.25, "c3": 0.75}, {"time": 0.5833, "angle": -24.2, "curve": 0.25, "c3": 0.75}, {"time": 0.75, "angle": 21.17, "curve": 0.25, "c3": 0.75}, + {"time": 0.95, "angle": -32.4, "curve": 0.25, "c3": 0.75}, {"time": 1.2167, "angle": 24.01, "curve": 0.25, "c3": 0.75}, + {"time": 1.3833, "angle": -15.47, "curve": 0.243, "c3": 0.655, "c4": 0.63}, {"time": 1.5, "angle": 5.27} + ] + } } }, - "2912205675": { - "slots": { - "eyes": {"attachment": [{"time": 0.05, "name": "eyes-angry"}, {"time": 0.7, "name": "eyes"}]}, - "mouth": {"attachment": [{"time": 0.05, "name": "mouth-bite"}, {"time": 0.2833, "name": "mouth-open"}, {"time": 0.4667, "name": "mouth-bite"}, {"time": 0.7, "name": "mouth"}]} - }, + "545324325": { + "slots": {"eyes": {"attachment": [{"time": 0.05, "name": "eyes-happy"}, {"time": 0.7667, "name": "eyes"}]}}, "bones": { "@pivot-back": { "rotate": [ - {"curve": 0, "c2": 0.4, "c3": 0.383}, {"time": 0.15, "angle": 4, "curve": 0, "c2": 0.2, "c3": 0.851}, {"time": 0.2833, "angle": 7}, - {"time": 0.4167, "angle": 7.5, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5, "angle": 4, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.5833, "angle": 6, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.75} + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "angle": -5.76, "curve": 0.306, "c3": 0.695}, {"time": 0.6667, "angle": -6.67, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.8333, "angle": 2.85, "curve": 0.306, "c3": 0.695}, {"time": 1} ], "translate": [ - {"curve": 0, "c2": 0.4, "c3": 0.383}, {"time": 0.25, "x": 25, "curve": 1, "c2": -0.1, "c4": 0}, {"time": 0.2833, "x": -136, "y": 25.56}, - {"time": 0.4167, "x": -153.19, "y": 25.56, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5, "x": -176.94, "curve": "stepped"}, - {"time": 0.5833, "x": -176.94, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.75} + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": -11.96, "y": -12.91, "curve": 0.306, "c3": 0.695}, + {"time": 0.6667, "x": -17.52, "y": -16.38, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.8333} ] }, - "@pivot-main": {"translate": [{"time": 0.5833, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.6667, "y": 45.22, "curve": 0.315, "c4": 0.8}, {"time": 0.75}]}, "@leg-front-left": { "translate": [ - {"curve": 0, "c2": 0.4, "c3": 0.383}, {"time": 0.25, "x": -0.72, "y": -6.78}, {"time": 0.5833, "x": -1.48, "y": -14.61, "curve": 0, "c2": 0.17, "c3": 0.45, "c4": 0.61}, - {"time": 0.65, "x": -0.39, "y": 5.91, "curve": 0.345, "c2": 0.53, "c3": 0.751}, {"time": 0.75} + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": -20.02, "y": -2.36, "curve": "stepped"}, {"time": 0.6667, "x": -20.02, "y": -2.36, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.8333, "x": 5.31, "y": -7.32, "curve": 0.306, "c3": 0.695}, {"time": 1} ] }, "@leg-front-right": { "translate": [ - {"curve": 0, "c2": 0.39, "c3": 0.387}, {"time": 0.25, "x": -2.88, "y": -28.54, "curve": "stepped"}, - {"time": 0.5833, "x": -2.88, "y": -28.54, "curve": 0, "c2": 0.17, "c3": 0.45, "c4": 0.61}, {"time": 0.65, "x": -0.83, "y": 1.57, "curve": 0.345, "c2": 0.53, "c3": 0.751}, {"time": 0.75} + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": -36.67, "y": 20.01, "curve": 0.306, "c3": 0.695}, + {"time": 0.6667, "x": -44.17, "y": 20.3, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.8333, "x": -12.71, "y": -17.14, "curve": 0.306, "c3": 0.695}, {"time": 1} ] }, - "leg-front-left-IK": { + "@leg-back-left": { "translate": [ - {"curve": 0, "c2": 0.39, "c3": 0.387}, {"time": 0.25, "x": 19.12, "curve": 0.702, "c4": 0.2}, {"time": 0.2833, "x": -43.29, "y": 59.07}, - {"time": 0.4167, "x": -61.19, "y": 52.81, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5, "x": -184.33, "y": 7.89, "curve": "stepped"}, - {"time": 0.5833, "x": -184.33, "y": 7.89, "curve": 0, "c2": 0.17, "c3": 0.45, "c4": 0.61}, {"time": 0.65, "x": -105.91, "y": -2.82, "curve": 0.345, "c2": 0.53, "c3": 0.751}, - {"time": 0.75} + {"time": 0.1667, "curve": 0.306, "c3": 0.695}, {"time": 0.6667, "x": -4.62, "y": -2.21, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.8333, "x": -0.1, "y": -3.16, "curve": 0.306, "c3": 0.695}, {"time": 1} ] }, - "leg-front-right-IK": { - "translate": [ - {"time": 0.25, "curve": 0.702, "c4": 0.2}, {"time": 0.2833, "x": -27.95, "y": 28.32}, {"time": 0.4167, "x": -40.48, "y": 34.59, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.5, "x": -191.61, "curve": "stepped"}, {"time": 0.5833, "x": -191.61, "curve": 0, "c2": 0.17, "c3": 0.45, "c4": 0.61}, - {"time": 0.65, "x": -103, "y": 4.15, "curve": 0.345, "c2": 0.53, "c3": 0.751}, {"time": 0.75} + "tail": { + "rotate": [ + {"curve": 0, "c2": 0.3, "c3": 0.54}, {"time": 0.1667, "angle": -11.59, "curve": 0.306, "c3": 0.695}, {"time": 0.4167, "angle": 2.75, "curve": 0.306, "c3": 0.695}, + {"time": 0.6667, "angle": -13.32, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.8333, "angle": 15.71, "curve": 0.306, "c3": 0.695}, {"time": 1} ] }, - "leg-back-left-IK": { - "translate": [ - {"time": 0.2667, "curve": 0.461, "c4": 0.4}, {"time": 0.2833, "x": -70.51, "y": 98.54}, {"time": 0.4167, "x": -70.51, "y": 101.95, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.5, "x": -189.32, "curve": "stepped"}, {"time": 0.5833, "x": -189.32, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.75} + "@shadow": { + "scale": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": 0.96, "y": 0.96}, {"time": 0.6667, "x": 0.94, "y": 0.94, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.8333, "x": 1.06, "y": 1.06, "curve": 0.306, "c3": 0.695}, {"time": 1} ] }, - "@pivot-center": { + "body-fur-16": { "rotate": [ - {"time": 0.25, "curve": 0.779, "c4": 0.3}, {"time": 0.2833, "angle": 10.18, "curve": "stepped"}, {"time": 0.4167, "angle": 10.18, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5} + {"angle": -12.06, "curve": 0.382, "c2": 0.58, "c3": 0.731}, {"time": 0.05, "angle": -18.47, "curve": 0.25, "c3": 0.75}, {"time": 0.2167, "curve": 0.25, "c3": 0.75}, + {"time": 0.3833, "angle": -21.07, "curve": 0.25, "c3": 0.75}, {"time": 0.55, "angle": 10.1, "curve": 0.25, "c3": 0.75}, {"time": 0.7167, "angle": -22.23, "curve": 0.25, "c3": 0.75}, + {"time": 0.8833, "angle": 8, "curve": 0.243, "c3": 0.655, "c4": 0.63}, {"time": 1, "angle": 13.84} ] }, - "tail": { + "body-fur-15": { "rotate": [ - {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.25, "angle": 21.98, "curve": 0.851, "c4": 0.1}, {"time": 0.2833, "angle": -15.58}, - {"time": 0.4167, "angle": -20.71, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5, "angle": 19.93, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.5833, "angle": 23.12, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.6667, "angle": -14.25, "curve": 0.313, "c3": 0.699}, {"time": 0.75} + {"angle": -17.34, "curve": 0.36, "c2": 0.64, "c3": 0.695}, {"time": 0.0167, "angle": -18.47, "curve": 0.25, "c3": 0.75}, {"time": 0.1833, "curve": 0.25, "c3": 0.75}, + {"time": 0.35, "angle": -21.07, "curve": 0.25, "c3": 0.75}, {"time": 0.5167, "angle": 10.1, "curve": 0.25, "c3": 0.75}, {"time": 0.6833, "angle": -22.23, "curve": 0.25, "c3": 0.75}, + {"time": 0.85, "angle": 8, "curve": 0.245, "c3": 0.711, "c4": 0.83}, {"time": 1, "angle": 13.33} ] }, - "@shadow": { - "translate": [ - {"time": 0.25, "curve": 0.851, "c4": 0.1}, {"time": 0.2833, "x": -143.36}, {"time": 0.4167, "x": -160.77, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.5, "x": -186.16, "curve": "stepped"}, {"time": 0.5833, "x": -186.16, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.75} - ], - "scale": [ - {"curve": 0, "c2": 0.4, "c3": 0.383}, {"time": 0.25, "x": 1.08, "y": 1.08, "curve": "stepped"}, {"time": 0.5, "x": 1.08, "y": 1.08, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.5833, "x": 1.12, "y": 1.12, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.6667, "x": 0.94, "y": 0.94, "curve": 0.315, "c4": 0.8}, {"time": 0.75} + "body-fur-14": { + "rotate": [ + {"angle": -15.02, "curve": 0.375, "c2": 0.62, "c3": 0.716}, {"time": 0.0333, "angle": -18.47, "curve": 0.243, "c3": 0.655, "c4": 0.63}, + {"time": 0.15, "angle": -4.47, "curve": 0.382, "c2": 0.58, "c3": 0.731}, {"time": 0.2}, {"time": 0.3667, "angle": -21.07, "curve": 0.25, "c3": 0.75}, + {"time": 0.5333, "angle": 10.1, "curve": 0.25, "c3": 0.75}, {"time": 0.7, "angle": -22.23, "curve": 0.25, "c3": 0.75}, + {"time": 0.8667, "angle": 8, "curve": 0.243, "c3": 0.68, "c4": 0.71}, {"time": 1, "angle": 13.33} ] }, - "@leg-back-left": {"translate": [{"curve": 0, "c2": 0.39, "c3": 0.387}, {"time": 0.25, "x": -7.28, "y": 3.82}]}, - "body-braid-02": { + "body-fur-13": { "rotate": [ - {"angle": 3.5, "curve": 0.348, "c2": 0.38, "c3": 0.685, "c4": 0.73}, {"time": 0.2, "angle": 2.63, "curve": 0.25, "c3": 0.228, "c4": 0.99}, - {"time": 0.45, "angle": 9.21, "curve": 0.25, "c3": 0.75}, {"time": 0.7, "curve": 0.284, "c3": 0.625, "c4": 0.38}, {"time": 0.75, "angle": 3.5} + {"angle": -17.68, "curve": 0.289, "c2": 0.17, "c3": 0.755}, {"time": 0.15, "curve": 0.25, "c3": 0.75}, {"time": 0.3167, "angle": -21.07, "curve": 0.25, "c3": 0.75}, + {"time": 0.4833, "angle": 10.1, "curve": 0.25, "c3": 0.75}, {"time": 0.65, "angle": -22.23, "curve": 0.25, "c3": 0.75}, {"time": 0.8167, "angle": 8, "curve": 0.25, "c3": 0.75}, + {"time": 1, "angle": 11.59} ] }, - "body-braid-03": { + "body-fur-12": { "rotate": [ - {"angle": -1.71, "curve": 0.337, "c2": 0.34, "c3": 0.673, "c4": 0.69}, {"time": 0.2333, "angle": 2.63, "curve": 0.25, "c3": 0.228, "c4": 0.99}, - {"time": 0.4833, "angle": 23.44, "curve": 0.244, "c3": 0.7, "c4": 0.79}, {"time": 0.7, "angle": 1.63, "curve": 0.366, "c2": 0.63, "c3": 0.703}, - {"time": 0.7333, "curve": 0.313, "c3": 0.648, "c4": 0.35}, {"time": 0.75, "angle": -1.71} + {"angle": -14, "curve": 0.345, "c2": 0.37, "c3": 0.757}, {"time": 0.1167, "curve": 0.25, "c3": 0.75}, {"time": 0.2833, "angle": -21.07, "curve": 0.25, "c3": 0.75}, + {"time": 0.45, "angle": 10.1, "curve": 0.25, "c3": 0.75}, {"time": 0.6167, "angle": -22.23, "curve": 0.25, "c3": 0.75}, {"time": 0.7833, "angle": 8, "curve": 0.25, "c3": 0.75}, + {"time": 0.95, "angle": -18.47, "curve": 0.269, "c3": 0.618, "c4": 0.42}, {"time": 1, "angle": 8.12} ] }, - "body-braid-04": { + "body-fur-11": { "rotate": [ - {"angle": -9.29, "curve": 0.323, "c2": 0.3, "c3": 0.66, "c4": 0.65}, {"time": 0.0333, "curve": 0.25, "c3": 0.75}, {"time": 0.2833, "angle": 2.63, "curve": 0.25, "c3": 0.228, "c4": 0.99}, - {"time": 0.5333, "angle": 16.91, "curve": 0.243, "c3": 0.649, "c4": 0.6}, {"time": 0.7, "angle": 4.8, "curve": 0.356, "c2": 0.42, "c3": 0.696, "c4": 0.78}, {"time": 0.75, "angle": -9.29} + {"angle": -9.23, "curve": 0.375, "c2": 0.5, "c3": 0.75}, {"time": 0.0833, "curve": 0.25, "c3": 0.75}, {"time": 0.25, "angle": -21.07, "curve": 0.25, "c3": 0.75}, + {"time": 0.4167, "angle": 10.1, "curve": 0.25, "c3": 0.75}, {"time": 0.5833, "angle": -22.23, "curve": 0.25, "c3": 0.75}, {"time": 0.75, "angle": 8, "curve": 0.25, "c3": 0.75}, + {"time": 0.9167, "angle": -18.47, "curve": 0.25, "c3": 0.625, "c4": 0.5}, {"time": 1, "angle": 4.23} ] }, - "body-braid-05": { + "body-fur-10": { "rotate": [ - {"angle": -8.3, "curve": 0.294, "c3": 0.631, "c4": 0.37}, {"time": 0.1, "curve": 0.25, "c3": 0.75}, {"time": 0.35, "angle": -10.49, "curve": 0.25, "c3": 0.228, "c4": 0.99}, - {"time": 0.6, "angle": 8.22, "curve": 0.258, "c3": 0.619, "c4": 0.45}, {"time": 0.7, "angle": 5.2, "curve": 0.33, "c2": 0.32, "c3": 0.67, "c4": 0.68}, {"time": 0.75, "angle": -8.3} + {"angle": -4.47, "curve": 0.382, "c2": 0.58, "c3": 0.731}, {"time": 0.05, "curve": 0.25, "c3": 0.75}, {"time": 0.2167, "angle": -21.07, "curve": 0.25, "c3": 0.75}, + {"time": 0.3833, "angle": 10.1, "curve": 0.25, "c3": 0.75}, {"time": 0.55, "angle": -22.23, "curve": 0.25, "c3": 0.75}, {"time": 0.7167, "angle": 8, "curve": 0.25, "c3": 0.75}, + {"time": 0.8833, "angle": -18.47, "curve": 0.243, "c3": 0.655, "c4": 0.63}, {"time": 1, "angle": 0.34} ] }, - "body-braid-06": { + "body-fur-09": { "rotate": [ - {"angle": -20.59, "curve": 0.352, "c2": 0.41, "c3": 0.689, "c4": 0.75}, {"time": 0.1667, "curve": 0.25, "c3": 0.75}, - {"time": 0.4167, "angle": -28.99, "curve": 0.25, "c3": 0.228, "c4": 0.99}, {"time": 0.6667, "angle": 9.53, "curve": 0.297, "c3": 0.634, "c4": 0.37}, - {"time": 0.7, "angle": 8.86, "curve": 0.304, "c2": 0.22, "c3": 0.644, "c4": 0.58}, {"time": 0.75, "angle": -20.59} + {"angle": -16.05, "curve": 0.303, "c2": 0.24, "c3": 0.674, "c4": 0.69}, {"time": 0.0833, "angle": -4.47, "curve": 0.382, "c2": 0.58, "c3": 0.731}, + {"time": 0.1333, "curve": 0.25, "c3": 0.75}, {"time": 0.3, "angle": -21.07, "curve": 0.25, "c3": 0.75}, {"time": 0.4667, "angle": 10.1, "curve": 0.25, "c3": 0.75}, + {"time": 0.6333, "angle": -22.23, "curve": 0.25, "c3": 0.75}, {"time": 0.8, "angle": 8, "curve": 0.25, "c3": 0.75}, + {"time": 0.9667, "angle": -18.47, "curve": 0.284, "c3": 0.625, "c4": 0.38}, {"time": 1, "angle": 6.86} ] }, - "body-fur-under-01": { - "translate": [{"x": -0.14, "y": 0.84}], - "shear": [ - {"x": -4.09, "curve": 0.375, "c2": 0.5, "c3": 0.75}, {"time": 0.1667, "x": 26.91, "curve": 0.25, "c3": 0.228, "c4": 0.99}, {"time": 0.4167, "x": -42.78, "curve": 0.25, "c3": 0.75}, - {"time": 0.6667, "curve": 0.265, "c3": 0.618, "c4": 0.43}, {"time": 0.75, "x": -4.09} + "body-fur-08": { + "rotate": [ + {"angle": -9.23, "curve": 0.375, "c2": 0.5, "c3": 0.75}, {"time": 0.0833}, {"time": 0.25, "angle": -21.07, "curve": 0.25, "c3": 0.75}, + {"time": 0.4167, "angle": 10.1, "curve": 0.25, "c3": 0.75}, {"time": 0.5833, "angle": -22.23, "curve": 0.25, "c3": 0.75}, {"time": 0.75, "angle": 8, "curve": 0.25, "c3": 0.75}, + {"time": 0.9167, "angle": -18.47, "curve": 0.25, "c3": 0.625, "c4": 0.5}, {"time": 1, "angle": -0.91} ] }, - "body-fur-under-02": { - "translate": [{"x": -2.23, "y": 6.28}], - "shear": [ - {"x": -27.8, "curve": 0.375, "c2": 0.62, "c3": 0.716}, {"time": 0.2167, "x": 18.72, "curve": 0.25, "c3": 0.228, "c4": 0.99}, - {"time": 0.4667, "x": -43.03, "curve": 0.243, "c3": 0.68, "c4": 0.71}, {"time": 0.6667, "x": -5.6, "curve": 0.375, "c2": 0.62, "c3": 0.716}, - {"time": 0.7167, "curve": 0.297, "c3": 0.634, "c4": 0.37}, {"time": 0.75, "x": -27.8} + "body-fur-07": { + "rotate": [ + {"angle": -2.4, "curve": 0.375, "c2": 0.62, "c3": 0.716}, {"time": 0.0333, "curve": 0.25, "c3": 0.75}, {"time": 0.2, "angle": -21.07, "curve": 0.25, "c3": 0.75}, + {"time": 0.3667, "angle": 10.1, "curve": 0.25, "c3": 0.75}, {"time": 0.5333, "angle": -22.23, "curve": 0.25, "c3": 0.75}, {"time": 0.7, "angle": 8, "curve": 0.25, "c3": 0.75}, + {"time": 0.8667, "angle": -18.47, "curve": 0.243, "c3": 0.68, "c4": 0.71}, {"time": 1, "angle": 2.91} ] }, - "body-fur-under-03": { - "translate": [{"x": -0.78, "y": 3.19}], - "shear": [ - {"x": 22.47, "curve": 0.25, "c3": 0.75}, {"time": 0.2, "x": 19.28, "curve": 0.25, "c3": 0.228, "c4": 0.99}, {"time": 0.45, "x": -45.7, "curve": 0.244, "c3": 0.7, "c4": 0.79}, - {"time": 0.6667, "x": -3.18, "curve": 0.366, "c2": 0.63, "c3": 0.703}, {"time": 0.7, "curve": 0.284, "c3": 0.625, "c4": 0.38}, {"time": 0.75, "x": 22.47} + "body-fur-06": { + "rotate": [ + {"angle": -13.95, "curve": 0.321, "c2": 0.3, "c3": 0.679, "c4": 0.7}, {"time": 0.0667, "angle": -4.47, "curve": 0.382, "c2": 0.58, "c3": 0.731}, {"time": 0.1167}, + {"time": 0.2833, "angle": -21.07, "curve": 0.25, "c3": 0.75}, {"time": 0.45, "angle": 10.1, "curve": 0.25, "c3": 0.75}, {"time": 0.6167, "angle": -22.23, "curve": 0.25, "c3": 0.75}, + {"time": 0.7833, "angle": 8, "curve": 0.25, "c3": 0.75}, {"time": 0.95, "angle": -18.47, "curve": 0.269, "c3": 0.618, "c4": 0.42}, {"time": 1, "angle": 13.33} ] }, - "body-fur-under-04": { - "translate": [{"x": -0.33, "y": 3.2}], - "shear": [ - {"x": 10.24, "curve": 0.36, "c2": 0.64, "c3": 0.695}, {"time": 0.25, "x": 13.82, "curve": 0.25, "c3": 0.228, "c4": 0.99}, - {"time": 0.5, "x": -39.88, "curve": 0.243, "c3": 0.649, "c4": 0.6}, {"time": 0.6667, "x": -22.71, "curve": 0.382, "c2": 0.57, "c3": 0.735}, {"time": 0.75, "x": 10.24} + "body-fur-05": { + "rotate": [ + {"angle": -6.79, "curve": 0.381, "c2": 0.55, "c3": 0.742}, {"time": 0.0667}, {"time": 0.2333, "angle": -21.07, "curve": 0.25, "c3": 0.75}, + {"time": 0.4, "angle": 10.1, "curve": 0.25, "c3": 0.75}, {"time": 0.5667, "angle": -22.23, "curve": 0.25, "c3": 0.75}, {"time": 0.7333, "angle": 8, "curve": 0.25, "c3": 0.75}, + {"time": 0.9, "angle": -18.47, "curve": 0.245, "c3": 0.637, "c4": 0.56}, {"time": 1, "angle": 6.86} ] }, - "body-fur-under-05": { - "translate": [{"x": 0.53, "y": 14.98}], - "shear": [ - {"x": 3.7, "curve": 0.382, "c2": 0.57, "c3": 0.737}, {"time": 0.0333, "x": -12.53, "curve": 0.25, "c3": 0.75}, {"time": 0.2833, "x": 6.85, "curve": 0.25, "c3": 0.228, "c4": 0.99}, - {"time": 0.5333, "x": -44.3, "curve": 0.248, "c3": 0.628, "c4": 0.52}, {"time": 0.6667, "x": -27.02, "curve": 0.356, "c2": 0.41, "c3": 0.707, "c4": 0.81}, {"time": 0.75, "x": 3.7} + "body-fur-04": { + "rotate": [ + {"angle": -17.69, "curve": 0.277, "c2": 0.14, "c3": 0.667, "c4": 0.67}, {"time": 0.1, "angle": -4.47, "curve": 0.382, "c2": 0.58, "c3": 0.731}, {"time": 0.15}, + {"time": 0.3167, "angle": -21.07, "curve": 0.25, "c3": 0.75}, {"time": 0.4833, "angle": 10.1, "curve": 0.25, "c3": 0.75}, {"time": 0.65, "angle": -22.23, "curve": 0.25, "c3": 0.75}, + {"time": 0.8167, "angle": 8, "curve": 0.25, "c3": 0.75}, {"time": 1, "angle": 12.53} ] }, - "body-braid-01": {"rotate": [{"angle": 2.31}]} + "body-fur-03": { + "rotate": [ + {"angle": -11.67, "curve": 0.363, "c2": 0.44, "c3": 0.755}, {"time": 0.1}, {"time": 0.2667, "angle": -21.07, "curve": 0.25, "c3": 0.75}, + {"time": 0.4333, "angle": 10.1, "curve": 0.25, "c3": 0.75}, {"time": 0.6, "angle": -22.23, "curve": 0.25, "c3": 0.75}, {"time": 0.7667, "angle": 8, "curve": 0.25, "c3": 0.75}, + {"time": 0.9333, "angle": -18.47, "curve": 0.258, "c3": 0.619, "c4": 0.45}, {"time": 1, "angle": 5.54} + ] + }, + "body-fur-02": { + "rotate": [ + {"angle": -17.34, "curve": 0.36, "c2": 0.64, "c3": 0.695}, {"time": 0.0167, "angle": -18.47, "curve": 0.243, "c3": 0.655, "c4": 0.63}, + {"time": 0.1333, "angle": -4.47, "curve": 0.382, "c2": 0.58, "c3": 0.731}, {"time": 0.1833}, {"time": 0.35, "angle": -21.07, "curve": 0.25, "c3": 0.75}, + {"time": 0.5167, "angle": 10.1, "curve": 0.25, "c3": 0.75}, {"time": 0.6833, "angle": -22.23, "curve": 0.25, "c3": 0.75}, + {"time": 0.85, "angle": 8, "curve": 0.245, "c3": 0.711, "c4": 0.83}, {"time": 1, "angle": 13.84} + ] + }, + "body-fur-01": { + "rotate": [ + {"angle": -16.07, "curve": 0.32, "c2": 0.29, "c3": 0.757}, {"time": 0.1333, "curve": 0.25, "c3": 0.75}, {"time": 0.3, "angle": -21.07, "curve": 0.25, "c3": 0.75}, + {"time": 0.4667, "angle": 10.1, "curve": 0.25, "c3": 0.75}, {"time": 0.6333, "angle": -22.23, "curve": 0.25, "c3": 0.75}, {"time": 0.8, "angle": 8, "curve": 0.25, "c3": 0.75}, + {"time": 0.9667, "angle": -18.47, "curve": 0.284, "c3": 0.625, "c4": 0.38}, {"time": 1, "angle": 10.51} + ] + } }, - "events": [{"time": 0.2167, "name": "start-attack"}, {"time": 0.2833, "name": "hit"}] + "events": [{"time": 0.1667, "name": "hit-buff"}] }, - "3099909215": { + "3925968729": { "slots": { - "eyes": {"attachment": [{"time": 0.1333, "name": "eyes-angry"}, {"time": 0.6667, "name": "eyes"}]}, - "mouth": {"attachment": [{"time": 0.1333, "name": "mouth-bite"}, {"time": 0.2667, "name": "mouth-open"}, {"time": 0.4167, "name": "mouth-bite"}, {"time": 0.6667, "name": "mouth"}]} + "eyes": {"attachment": [{"time": 0.05, "name": "eyes-shut"}, {"time": 0.7667, "name": "eyes"}]}, + "mouth": {"attachment": [{"time": 0.05, "name": "mouth-bite"}, {"time": 0.7667, "name": "mouth"}]} }, "bones": { "@pivot-back": { "rotate": [ - {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "angle": -3.92, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "angle": 2.51, "curve": 0, "c2": 0.3, "c3": 0.544}, - {"time": 0.35, "angle": -4.74, "curve": 0.7, "c4": 0.3}, {"time": 0.4167, "angle": 2}, {"time": 0.5833, "angle": 4, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.75} + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "angle": 3.5}, {"time": 0.6667, "angle": 4, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.8333, "angle": -1.98, "curve": 0.306, "c3": 0.695}, {"time": 1} ], "translate": [ - {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 71.93, "y": -12.95, "curve": "stepped"}, {"time": 0.25, "x": 71.93, "y": -12.95, "curve": 0, "c2": 0.3, "c3": 0.544}, - {"time": 0.4167, "x": -144.49, "y": -12.95, "curve": "stepped"}, {"time": 0.5833, "x": -144.49, "y": -12.95, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.75} + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "y": 2.9}, {"time": 0.6667, "y": 3.91, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.8333, "y": -2.14, "curve": 0.306, "c3": 0.695}, {"time": 1} ] }, - "leg-back-left-IK": { + "@leg-front-right": { "translate": [ - {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.1167, "x": 93.98, "curve": 0.161, "c3": 0.854}, {"time": 0.25, "x": 67.02, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.3333, "x": -65.1, "y": -1.32, "curve": 0.315, "c4": 0.8}, {"time": 0.4167, "x": -131.67, "curve": "stepped"}, {"time": 0.5833, "x": -131.67, "curve": 0.159, "c4": 0.9}, - {"time": 0.75} + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": -0.92, "y": -19.87}, {"time": 0.6667, "x": -1.14, "y": -21.42, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.8333, "x": -0.43, "y": 9.97, "curve": 0.306, "c3": 0.695}, {"time": 1} ] }, - "leg-front-right-IK": { + "@leg-front-left": { "translate": [ - {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 21.56, "y": 4.31, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.25, "x": 42.9, "curve": 0, "c2": 0.3, "c3": 0.544}, - {"time": 0.3667, "x": -104.26, "y": 42.61, "curve": 0.161, "c4": 0.85}, {"time": 0.4167, "x": -153.64, "curve": "stepped"}, {"time": 0.5833, "x": -153.64, "curve": 0.154, "c4": 0.9}, - {"time": 0.7, "x": 13.43, "curve": 0.161, "c3": 0.854}, {"time": 0.75} + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": 7.87, "y": -5.37}, {"time": 0.6667, "x": 9.12, "y": -5.44, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.8333, "x": -0.16, "y": 3.89, "curve": 0.306, "c3": 0.695}, {"time": 1} ] }, - "leg-front-left-IK": { - "translate": [ - {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 43.11, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "x": 48.71, "y": -1.66, "curve": 0, "c2": 0.3, "c3": 0.544}, - {"time": 0.3667, "x": -87.39, "y": 18.71, "curve": 0.161, "c4": 0.85}, {"time": 0.4167, "x": -150.32, "y": 0.83}, {"time": 0.5833, "x": -142.85, "curve": 0.154, "c4": 0.9}, - {"time": 0.7, "x": 13.43, "curve": 0.161, "c3": 0.854}, {"time": 0.75} + "tail": { + "rotate": [ + {"curve": 0, "c2": 0.3, "c3": 0.54}, {"time": 0.1667, "angle": -17.97, "curve": 0.306, "c3": 0.695}, {"time": 0.4167, "angle": -9.96, "curve": 0.306, "c3": 0.695}, + {"time": 0.6667, "angle": -19.79, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.8333, "angle": 6.14, "curve": 0.306, "c3": 0.695}, {"time": 1} ] }, - "@leg-front-left": { - "translate": [ - {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": -0.28, "y": 3.31, "curve": 0, "c2": 0.3, "c3": 0.544}, - {"time": 0.25, "x": -0.62, "y": -3.21, "curve": 0, "c2": 0.25, "c3": 0.457, "c4": 0.73}, {"time": 0.3667, "x": -15.24, "y": -11.32, "curve": 0.325, "c2": 0.6, "c3": 0.672}, - {"time": 0.4167, "x": -17.97, "y": -3.57, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5833, "x": -18.47, "y": -10.19, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.75} + "body-fur-16": { + "rotate": [ + {"angle": 12.5, "curve": 0.25, "c3": 0.75}, {"time": 0.25, "curve": 0.25, "c3": 0.75}, {"time": 0.5, "angle": 13.81, "curve": 0.25, "c3": 0.75}, + {"time": 0.75, "angle": -10.1, "curve": 0.25, "c3": 0.75}, {"time": 1, "angle": 13.84} ] }, - "@leg-front-right": { - "translate": [ - {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 3.63, "y": 19.84, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.25, "x": -10.53, "y": -16.98, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.4167, "x": -10.44, "y": -18.31, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.5833, "x": -10.92, "y": -30.23, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.75} + "body-fur-15": { + "rotate": [ + {"angle": 9.97, "curve": 0.337, "c2": 0.35, "c3": 0.758}, {"time": 0.1833, "curve": 0.25, "c3": 0.75}, {"time": 0.4333, "angle": 13.81, "curve": 0.25, "c3": 0.75}, + {"time": 0.6833, "angle": -10.1, "curve": 0.25, "c3": 0.75}, {"time": 0.9333, "angle": 12.5, "curve": 0.273, "c3": 0.62, "c4": 0.41}, {"time": 1, "angle": 13.33} ] }, - "@pivot-main": { - "translate": [ - {"time": 0.25, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "y": 26.43, "curve": 0.315, "c4": 0.8}, {"time": 0.4167, "curve": "stepped"}, - {"time": 0.5833, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.6667, "y": 26.43, "curve": 0.315, "c4": 0.8}, {"time": 0.75} + "body-fur-14": { + "rotate": [ + {"angle": 10.93, "curve": 0.366, "c2": 0.63, "c3": 0.703}, {"time": 0.0333, "angle": 12.5, "curve": 0.243, "c3": 0.649, "c4": 0.6}, + {"time": 0.2, "angle": 3.55, "curve": 0.382, "c2": 0.57, "c3": 0.735}, {"time": 0.2833, "curve": 0.25, "c3": 0.75}, {"time": 0.5333, "angle": 13.81, "curve": 0.25, "c3": 0.75}, + {"time": 0.7833, "angle": -10.1, "curve": 0.244, "c3": 0.7, "c4": 0.79}, {"time": 1, "angle": 13.33} ] }, - "@leg-back-left": { - "translate": [ - {"time": 0.1167, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "x": -0.25, "y": -9.22, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.3333, "x": -0.44, "y": 4.57, "curve": 0.306, "c4": 0.8}, {"time": 0.4167, "x": -0.58, "y": -9.21}, - {"time": 0.5833, "x": -0.15, "y": -9.98, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.75} + "body-fur-13": { + "rotate": [ + {"angle": 10.88, "curve": 0.32, "c2": 0.29, "c3": 0.757}, {"time": 0.2, "curve": 0.25, "c3": 0.75}, {"time": 0.45, "angle": 13.81, "curve": 0.25, "c3": 0.75}, + {"time": 0.7, "angle": -10.1, "curve": 0.25, "c3": 0.75}, {"time": 0.95, "angle": 12.5, "curve": 0.284, "c3": 0.625, "c4": 0.38}, {"time": 1, "angle": 11.59} ] }, - "tail": { + "body-fur-12": { "rotate": [ - {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "angle": 12.92, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "angle": 18.48, "curve": 0, "c2": 0.3, "c3": 0.544}, - {"time": 0.35, "angle": -6.88, "curve": 0.7, "c4": 0.3}, {"time": 0.4167, "angle": 14}, {"time": 0.5833, "angle": 19.37, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.6833, "angle": -8.78, "curve": 0.313, "c3": 0.699}, {"time": 0.75} + {"angle": 6.8, "curve": 0.372, "c2": 0.48, "c3": 0.752}, {"time": 0.1333, "curve": 0.25, "c3": 0.75}, {"time": 0.3833, "angle": 13.81, "curve": 0.25, "c3": 0.75}, + {"time": 0.6333, "angle": -10.1, "curve": 0.25, "c3": 0.75}, {"time": 0.8833, "angle": 12.5, "curve": 0.252, "c3": 0.622, "c4": 0.48}, {"time": 1, "angle": 8.12} ] }, - "@shadow": { - "translate": [ - {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 61.96, "curve": "stepped"}, {"time": 0.25, "x": 61.96, "curve": 0, "c2": 0.3, "c3": 0.544}, - {"time": 0.35, "x": -121.98, "curve": 0.7, "c4": 0.3}, {"time": 0.4167, "x": -154.28, "curve": "stepped"}, {"time": 0.5833, "x": -154.28, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.75} - ], - "scale": [ - {"time": 0.0833, "curve": 0, "c2": 0.26, "c3": 0.369, "c4": 0.62}, {"time": 0.25, "x": 1.06, "y": 1.06, "curve": 0.192, "c2": 0.45, "c3": 0.623}, - {"time": 0.35, "x": 0.96, "y": 0.96, "curve": 0.7, "c4": 0.3}, {"time": 0.4167, "x": 1.08, "y": 1.08, "curve": "stepped"}, - {"time": 0.5833, "x": 1.08, "y": 1.08, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.75} + "body-fur-11": { + "rotate": [ + {"angle": 4.6, "curve": 0.381, "c2": 0.55, "c3": 0.742}, {"time": 0.1, "curve": 0.25, "c3": 0.75}, {"time": 0.35, "angle": 13.81, "curve": 0.25, "c3": 0.75}, + {"time": 0.6, "angle": -10.1, "curve": 0.25, "c3": 0.75}, {"time": 0.85, "angle": 12.5, "curve": 0.245, "c3": 0.637, "c4": 0.56}, {"time": 1, "angle": 4.23} ] }, - "body-fur-under-01": { - "translate": [{"x": -0.14, "y": 0.84}], - "shear": [ - {"x": -4.09, "curve": 0.375, "c2": 0.5, "c3": 0.75}, {"time": 0.1667, "x": 26.91, "curve": 0.25, "c3": 0.228, "c4": 0.99}, {"time": 0.4167, "x": -42.78, "curve": 0.25, "c3": 0.75}, - {"time": 0.6667, "curve": 0.265, "c3": 0.618, "c4": 0.43}, {"time": 0.75, "x": -4.09} + "body-fur-10": { + "rotate": [ + {"angle": 0.87, "curve": 0.366, "c2": 0.63, "c3": 0.703}, {"time": 0.0333, "curve": 0.25, "c3": 0.75}, {"time": 0.2833, "angle": 13.81, "curve": 0.25, "c3": 0.75}, + {"time": 0.5333, "angle": -10.1, "curve": 0.25, "c3": 0.75}, {"time": 0.7833, "angle": 12.5, "curve": 0.244, "c3": 0.7, "c4": 0.79}, {"time": 1, "angle": 0.34} ] }, - "body-fur-under-02": { - "translate": [{"x": -2.23, "y": 6.28}], - "shear": [ - {"x": -27.8, "curve": 0.375, "c2": 0.62, "c3": 0.716}, {"time": 0.2167, "x": 18.72, "curve": 0.25, "c3": 0.228, "c4": 0.99}, - {"time": 0.4667, "x": -43.03, "curve": 0.243, "c3": 0.68, "c4": 0.71}, {"time": 0.6667, "x": -5.6, "curve": 0.375, "c2": 0.62, "c3": 0.716}, - {"time": 0.7167, "curve": 0.297, "c3": 0.634, "c4": 0.37}, {"time": 0.75, "x": -27.8} + "body-fur-09": { + "rotate": [ + {"angle": 9.95, "curve": 0.315, "c2": 0.28, "c3": 0.673, "c4": 0.69}, {"time": 0.1, "angle": 3.55, "curve": 0.382, "c2": 0.57, "c3": 0.735}, {"time": 0.1833, "curve": 0.25, "c3": 0.75}, + {"time": 0.4333, "angle": 13.81, "curve": 0.25, "c3": 0.75}, {"time": 0.6833, "angle": -10.1, "curve": 0.25, "c3": 0.75}, + {"time": 0.9333, "angle": 12.5, "curve": 0.273, "c3": 0.62, "c4": 0.41}, {"time": 1, "angle": 6.86} ] }, - "body-fur-under-03": { - "translate": [{"x": -0.78, "y": 3.19}], - "shear": [ - {"x": 22.47, "curve": 0.25, "c3": 0.75}, {"time": 0.2, "x": 19.28, "curve": 0.25, "c3": 0.228, "c4": 0.99}, {"time": 0.45, "x": -45.7, "curve": 0.244, "c3": 0.7, "c4": 0.79}, - {"time": 0.6667, "x": -3.18, "curve": 0.366, "c2": 0.63, "c3": 0.703}, {"time": 0.7, "curve": 0.284, "c3": 0.625, "c4": 0.38}, {"time": 0.75, "x": 22.47} + "body-fur-08": { + "rotate": [ + {"angle": 4.6, "curve": 0.381, "c2": 0.55, "c3": 0.742}, {"time": 0.1, "curve": 0.25, "c3": 0.75}, {"time": 0.35, "angle": 13.81, "curve": 0.25, "c3": 0.75}, + {"time": 0.6, "angle": -10.1, "curve": 0.25, "c3": 0.75}, {"time": 0.85, "angle": 12.5, "curve": 0.245, "c3": 0.637, "c4": 0.56}, {"time": 1, "angle": -0.91} ] }, - "body-fur-under-04": { - "translate": [{"x": -0.33, "y": 3.2}], - "shear": [ - {"x": 10.24, "curve": 0.36, "c2": 0.64, "c3": 0.695}, {"time": 0.25, "x": 13.82, "curve": 0.25, "c3": 0.228, "c4": 0.99}, - {"time": 0.5, "x": -39.88, "curve": 0.243, "c3": 0.649, "c4": 0.6}, {"time": 0.6667, "x": -22.71, "curve": 0.382, "c2": 0.57, "c3": 0.735}, {"time": 0.75, "x": 10.24} + "body-fur-07": { + "rotate": [ + {"angle": 1.63, "curve": 0.375, "c2": 0.62, "c3": 0.716}, {"time": 0.05, "curve": 0.25, "c3": 0.75}, {"time": 0.3, "angle": 13.81, "curve": 0.25, "c3": 0.75}, + {"time": 0.55, "angle": -10.1, "curve": 0.25, "c3": 0.75}, {"time": 0.8, "angle": 12.5, "curve": 0.243, "c3": 0.68, "c4": 0.71}, {"time": 1, "angle": 2.91} ] }, - "body-fur-under-05": { - "translate": [{"x": 0.53, "y": 14.98}], - "shear": [ - {"x": 3.7, "curve": 0.382, "c2": 0.57, "c3": 0.737}, {"time": 0.0333, "x": -12.53, "curve": 0.25, "c3": 0.75}, {"time": 0.2833, "x": 6.85, "curve": 0.25, "c3": 0.228, "c4": 0.99}, - {"time": 0.5333, "x": -44.3, "curve": 0.248, "c3": 0.628, "c4": 0.52}, {"time": 0.6667, "x": -27.02, "curve": 0.356, "c2": 0.41, "c3": 0.707, "c4": 0.81}, {"time": 0.75, "x": 3.7} + "body-fur-06": { + "rotate": [ + {"angle": 9.95, "curve": 0.315, "c2": 0.28, "c3": 0.673, "c4": 0.69}, {"time": 0.1, "angle": 3.55, "curve": 0.382, "c2": 0.57, "c3": 0.735}, {"time": 0.1833, "curve": 0.25, "c3": 0.75}, + {"time": 0.4333, "angle": 13.81, "curve": 0.25, "c3": 0.75}, {"time": 0.6833, "angle": -10.1, "curve": 0.25, "c3": 0.75}, + {"time": 0.9333, "angle": 12.5, "curve": 0.273, "c3": 0.62, "c4": 0.41}, {"time": 1, "angle": 13.33} ] }, - "body-braid-06": { + "body-fur-05": { "rotate": [ - {"angle": -20.59, "curve": 0.352, "c2": 0.41, "c3": 0.689, "c4": 0.75}, {"time": 0.1667, "curve": 0.25, "c3": 0.75}, - {"time": 0.4167, "angle": -28.99, "curve": 0.25, "c3": 0.228, "c4": 0.99}, {"time": 0.6667, "angle": 9.53, "curve": 0.297, "c3": 0.634, "c4": 0.37}, - {"time": 0.7, "angle": 8.86, "curve": 0.304, "c2": 0.22, "c3": 0.644, "c4": 0.58}, {"time": 0.75, "angle": -20.59} + {"angle": 4.6, "curve": 0.381, "c2": 0.55, "c3": 0.742}, {"time": 0.1, "curve": 0.25, "c3": 0.75}, {"time": 0.35, "angle": 13.81, "curve": 0.25, "c3": 0.75}, + {"time": 0.6, "angle": -10.1, "curve": 0.25, "c3": 0.75}, {"time": 0.85, "angle": 12.5, "curve": 0.245, "c3": 0.637, "c4": 0.56}, {"time": 1, "angle": 6.86} ] }, - "body-braid-05": { + "body-fur-04": { "rotate": [ - {"angle": -8.3, "curve": 0.294, "c3": 0.631, "c4": 0.37}, {"time": 0.1, "curve": 0.25, "c3": 0.75}, {"time": 0.35, "angle": -10.49, "curve": 0.25, "c3": 0.228, "c4": 0.99}, - {"time": 0.6, "angle": 8.22, "curve": 0.258, "c3": 0.619, "c4": 0.45}, {"time": 0.7, "angle": 5.2, "curve": 0.33, "c2": 0.32, "c3": 0.67, "c4": 0.68}, {"time": 0.75, "angle": -8.3} + {"angle": 12.24, "curve": 0.267, "c2": 0.1, "c3": 0.657, "c4": 0.63}, {"time": 0.15, "angle": 3.55, "curve": 0.382, "c2": 0.57, "c3": 0.735}, {"time": 0.2333, "curve": 0.25, "c3": 0.75}, + {"time": 0.4833, "angle": 13.81, "curve": 0.25, "c3": 0.75}, {"time": 0.7333, "angle": -10.1, "curve": 0.25, "c3": 0.75}, {"time": 1, "angle": 12.53} ] }, - "body-braid-04": { + "body-fur-03": { "rotate": [ - {"angle": -9.29, "curve": 0.323, "c2": 0.3, "c3": 0.66, "c4": 0.65}, {"time": 0.0333, "curve": 0.25, "c3": 0.75}, {"time": 0.2833, "angle": 2.63, "curve": 0.25, "c3": 0.228, "c4": 0.99}, - {"time": 0.5333, "angle": 16.91, "curve": 0.243, "c3": 0.649, "c4": 0.6}, {"time": 0.7, "angle": 4.8, "curve": 0.356, "c2": 0.42, "c3": 0.696, "c4": 0.78}, {"time": 0.75, "angle": -9.29} + {"angle": 7.9, "curve": 0.363, "c2": 0.44, "c3": 0.755}, {"time": 0.15, "curve": 0.25, "c3": 0.75}, {"time": 0.4, "angle": 13.81, "curve": 0.25, "c3": 0.75}, + {"time": 0.65, "angle": -10.1, "curve": 0.25, "c3": 0.75}, {"time": 0.9, "angle": 12.5, "curve": 0.258, "c3": 0.619, "c4": 0.45}, {"time": 1, "angle": 5.54} ] }, - "body-braid-03": { + "body-fur-02": { "rotate": [ - {"angle": -1.71, "curve": 0.337, "c2": 0.34, "c3": 0.673, "c4": 0.69}, {"time": 0.2333, "angle": 2.63, "curve": 0.25, "c3": 0.228, "c4": 0.99}, - {"time": 0.4833, "angle": 23.44, "curve": 0.244, "c3": 0.7, "c4": 0.79}, {"time": 0.7, "angle": 1.63, "curve": 0.366, "c2": 0.63, "c3": 0.703}, - {"time": 0.7333, "curve": 0.313, "c3": 0.648, "c4": 0.35}, {"time": 0.75, "angle": -1.71} + {"angle": 10.93, "curve": 0.366, "c2": 0.63, "c3": 0.703}, {"time": 0.0333, "angle": 12.5, "curve": 0.243, "c3": 0.649, "c4": 0.6}, + {"time": 0.2, "angle": 3.55, "curve": 0.382, "c2": 0.57, "c3": 0.735}, {"time": 0.2833, "curve": 0.25, "c3": 0.75}, {"time": 0.5333, "angle": 13.81, "curve": 0.25, "c3": 0.75}, + {"time": 0.7833, "angle": -10.1, "curve": 0.244, "c3": 0.7, "c4": 0.79}, {"time": 1, "angle": 13.84} ] }, - "body-braid-02": { + "body-fur-01": { "rotate": [ - {"angle": 3.5, "curve": 0.348, "c2": 0.38, "c3": 0.685, "c4": 0.73}, {"time": 0.2, "angle": 2.63, "curve": 0.25, "c3": 0.228, "c4": 0.99}, - {"time": 0.45, "angle": 12.36, "curve": 0.25, "c3": 0.75}, {"time": 0.7, "curve": 0.284, "c3": 0.625, "c4": 0.38}, {"time": 0.75, "angle": 3.5} + {"angle": 10.88, "curve": 0.32, "c2": 0.29, "c3": 0.757}, {"time": 0.2, "curve": 0.25, "c3": 0.75}, {"time": 0.45, "angle": 13.81, "curve": 0.25, "c3": 0.75}, + {"time": 0.7, "angle": -10.1, "curve": 0.25, "c3": 0.75}, {"time": 0.95, "angle": 12.5, "curve": 0.284, "c3": 0.625, "c4": 0.38}, {"time": 1, "angle": 10.51} ] - }, - "body-braid-01": {"rotate": [{"angle": 2.31}]} + } }, - "events": [{"time": 0.25, "name": "start-attack"}, {"time": 0.4167, "name": "hit"}] + "events": [{"time": 0.1667, "name": "hit-buff"}] }, - "3779315145": { + "685375493": { + "slots": { + "eyes": {"attachment": [{"time": 0.0167, "name": "eyes-shut"}, {"time": 0.1833, "name": "eyes-angry"}, {"time": 0.4, "name": "eyes"}]}, + "mouth": {"attachment": [{"time": 0.0167, "name": "mouth-bite"}, {"time": 0.4, "name": "mouth"}]} + }, "bones": { - "leg-front-left-IK": { + "@pivot-back": { + "rotate": [ + {"curve": "stepped"}, {"time": 0.0167, "angle": -20}, {"time": 0.1667, "angle": -22, "curve": 0.464, "c4": 0.7}, {"time": 0.3167, "angle": 5.2, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.4167} + ], + "translate": [{"curve": "stepped"}, {"time": 0.0167, "x": 75, "y": -4.42}, {"time": 0.1667, "x": 80, "y": -7.47, "curve": 0.464, "c4": 0.7}, {"time": 0.3167}] + }, + "@leg-front-left": {"translate": [{"time": 0.1667, "curve": 0.62, "c4": 0.3}, {"time": 0.3167, "x": -1.1, "y": -14.87, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.4167}]}, + "@shadow": { "translate": [ - {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 3.08, "curve": 0.315, "c4": 0.8}, {"time": 0.15, "x": 13.79, "curve": 0, "c2": 0.3, "c3": 0.544}, - {"time": 0.25, "x": -43.09, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.3333, "x": 26.11, "curve": "stepped"}, {"time": 0.5, "x": 26.11, "curve": 0, "c2": 0.3, "c3": 0.544}, - {"time": 0.5833} + {"curve": "stepped"}, {"time": 0.0167, "x": 70.3, "curve": "stepped"}, {"time": 0.1667, "x": 70.3, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.3167, "x": 12.49, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.4167} + ], + "scale": [ + {"curve": "stepped"}, {"time": 0.0167, "x": 0.98, "y": 0.98}, {"time": 0.1667, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.3167, "x": 1.08, "y": 1.08, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.4167} ] }, - "@pivot-back": { - "rotate": [ - {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "angle": 5.51, "curve": 0.315, "c4": 0.8}, {"time": 0.2, "angle": -4, "curve": 0.62, "c3": 0.536}, - {"time": 0.5, "angle": 5.83, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5833, "angle": -1.41, "curve": 0.154, "c4": 0.9}, {"time": 0.6667} - ], + "leg-back-left-IK": { "translate": [ - {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.1167, "x": 13.63, "y": 1.37, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5, "y": -4.7, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.6667} + {"curve": "stepped"}, {"time": 0.0167, "x": 20.18, "y": 0.9, "curve": "stepped"}, {"time": 0.1667, "x": 20.18, "y": 0.9, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333} ] }, - "@leg-front-right": { + "@leg-back-left": { "translate": [ - {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": -1.98, "y": -24.83, "curve": 0.263, "c3": 0.629, "c4": 0.42}, - {"time": 0.1667, "x": -2.18, "y": -3.56, "curve": 0.493, "c2": 0.32, "c4": 0.83}, {"time": 0.3333, "x": -2.18, "y": -2.89, "curve": "stepped"}, - {"time": 0.4833, "x": -2.18, "y": -2.89, "curve": 0, "c2": 0.17, "c3": 0.45, "c4": 0.61}, {"time": 0.5, "x": -1.98, "y": -24.83, "curve": 0, "c2": 0.17, "c3": 0.45, "c4": 0.61}, - {"time": 0.5833, "x": -1.28, "y": 8.38, "curve": 0.345, "c2": 0.53, "c3": 0.751}, {"time": 0.6667} + {"curve": "stepped"}, {"time": 0.0167, "x": -0.94, "y": 4.51, "curve": "stepped"}, {"time": 0.1667, "x": -0.94, "y": 4.51, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3167} ] }, + "@pivot-main": {"translate": [{"curve": "stepped"}, {"time": 0.0167, "x": 20, "curve": "stepped"}, {"time": 0.3167, "x": 20, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.4167}]}, + "@leg-front-right": {"translate": [{"time": 0.1667, "curve": 0.62, "c4": 0.3}, {"time": 0.3167, "x": -2.11, "y": -28.46, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.4167}]}, "tail": { "rotate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1167, "angle": 11.6, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "angle": -18.66, "curve": 0.313, "c3": 0.699}, - {"time": 0.4667, "angle": 16.43, "curve": 0.315, "c4": 0.8}, {"time": 0.5833, "angle": -6.67, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.6667} + {"curve": "stepped"}, {"time": 0.0167, "angle": 19}, {"time": 0.1667, "angle": 23.91, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.3167, "angle": -21.75, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.4167} ] }, - "leg-back-left-IK": { + "leg-front-right-IK": { "translate": [ - {"time": 0.15, "curve": 0.464, "c4": 0.7}, {"time": 0.25, "x": -43.09, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.4, "x": 34.02, "curve": "stepped"}, - {"time": 0.45, "x": 34.02, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.5833} + {"curve": "stepped"}, {"time": 0.0167, "x": 44.88, "y": 143.25}, {"time": 0.0833, "x": -0.81, "y": 175.84}, {"time": 0.1667, "x": 46.95, "y": 154.35, "curve": 0.306, "c4": 0.8}, + {"time": 0.3167} ] }, - "@leg-back-left": { + "leg-front-left-IK": { "translate": [ - {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.1333, "x": -0.27, "y": -3.45, "curve": "stepped"}, {"time": 0.5, "x": -0.27, "y": -3.45, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.6667} + {"curve": "stepped"}, {"time": 0.0167, "x": -4.98, "y": 86.81}, {"time": 0.0833, "x": 23.52, "y": 63.22}, {"time": 0.1667, "x": -2.69, "y": 90.83, "curve": 0.306, "c4": 0.8}, + {"time": 0.3167} ] }, - "@leg-front-left": { - "translate": [ - {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": -1.04, "y": -13.11, "curve": 0.263, "c3": 0.629, "c4": 0.42}, - {"time": 0.1667, "x": -1.14, "y": -2.73, "curve": 0.493, "c2": 0.32, "c4": 0.83}, {"time": 0.3333, "x": -1.16, "y": -1.14, "curve": "stepped"}, - {"time": 0.4833, "x": -1.16, "y": -1.14, "curve": 0, "c2": 0.17, "c3": 0.45, "c4": 0.61}, {"time": 0.5, "x": -1.04, "y": -13.11, "curve": 0, "c2": 0.17, "c3": 0.45, "c4": 0.61}, - {"time": 0.5833, "x": -0.69, "y": 4.65, "curve": 0.345, "c2": 0.53, "c3": 0.751}, {"time": 0.6667} + "body-fur-12": { + "rotate": [ + {"angle": -7.37, "curve": 0.379, "c2": 0.53, "c3": 0.746}, {"time": 0.0667, "curve": 0.25, "c3": 0.75}, {"time": 0.15, "angle": 47.21, "curve": 0.384, "c3": 0.75}, + {"time": 0.3333, "angle": -17.29, "curve": 0.247, "c3": 0.631, "c4": 0.53}, {"time": 0.4167, "angle": 8.12} ] }, - "leg-front-right-IK": { - "translate": [ - {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 3.08, "curve": 0.315, "c4": 0.8}, {"time": 0.15, "x": 13.79, "curve": 0, "c2": 0.3, "c3": 0.544}, - {"time": 0.25, "x": -43.09, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.3333, "x": 26.11, "curve": "stepped"}, {"time": 0.5, "x": 26.11, "curve": 0, "c2": 0.3, "c3": 0.544}, - {"time": 0.5833} + "body-fur-13": { + "rotate": [ + {"angle": -10.16, "curve": 0.369, "c2": 0.47, "c3": 0.753}, {"time": 0.0833}, {"time": 0.1667, "angle": 47.21, "curve": 0.384, "c3": 0.75}, + {"time": 0.35, "angle": -17.29, "curve": 0.254, "c3": 0.621, "c4": 0.47}, {"time": 0.4167, "angle": 11.59} ] }, - "@shadow": { - "scale": [ - {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 1.1, "y": 1.1, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "x": 0.8, "y": 0.8, "curve": 0.315, "c4": 0.8}, - {"time": 0.5, "x": 1.1, "y": 1.1, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.6667} + "body-fur-04": { + "rotate": [ + {"angle": -9.85, "curve": 0.342, "c2": 0.36, "c3": 0.692, "c4": 0.75}, {"time": 0.05, "angle": -2.67, "curve": 0.377, "c2": 0.61, "c3": 0.72}, {"time": 0.0833}, + {"time": 0.1667, "angle": 47.21, "curve": 0.384, "c3": 0.75}, {"time": 0.35, "angle": -17.29, "curve": 0.254, "c3": 0.621, "c4": 0.47}, {"time": 0.4167, "angle": 12.53} ] }, - "@pivot-main": { - "translate": [{"time": 0.1667, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "y": 133.58, "curve": 0.315, "c4": 0.8}, {"time": 0.5}], - "scale": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "y": 0.97, "curve": 0.315, "c4": 0.8}, {"time": 0.1667, "curve": "stepped"}, {"time": 0.4167, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.5, "y": 0.97, "curve": 0.315, "c4": 0.8}, {"time": 0.5833} + "body-fur-02": { + "rotate": [ + {"angle": -12.33, "curve": 0.33, "c2": 0.32, "c3": 0.693, "c4": 0.75}, {"time": 0.0667, "angle": -2.67, "curve": 0.377, "c2": 0.61, "c3": 0.72}, {"time": 0.1}, + {"time": 0.1833, "angle": 47.21, "curve": 0.384, "c3": 0.75}, {"time": 0.3667, "angle": -17.29, "curve": 0.265, "c3": 0.618, "c4": 0.43}, {"time": 0.4167, "angle": 13.84} ] }, - "body-fur-under-04": { - "translate": [{"x": -0.33, "y": 3.2}], - "shear": [ - {"x": 10.24, "curve": 0.36, "c2": 0.64, "c3": 0.695}, {"time": 0.0167, "x": 11.47, "curve": 0.25, "c3": 0.75}, {"time": 0.1833, "x": -17.33, "curve": 0.25, "c3": 0.75}, - {"time": 0.35, "x": 11.47, "curve": 0.25, "c3": 0.75}, {"time": 0.5167, "x": -17.33, "curve": 0.245, "c3": 0.711, "c4": 0.83}, {"time": 0.6667, "x": 10.24} + "body-fur-06": { + "rotate": [ + {"angle": -7.31, "curve": 0.347, "c2": 0.38, "c3": 0.688, "c4": 0.74}, {"time": 0.0333, "angle": -2.67, "curve": 0.377, "c2": 0.61, "c3": 0.72}, {"time": 0.0667}, + {"time": 0.15, "angle": 47.21, "curve": 0.384, "c3": 0.75}, {"time": 0.3333, "angle": -17.29, "curve": 0.247, "c3": 0.631, "c4": 0.53}, {"time": 0.4167, "angle": 13.33} ] }, - "body-fur-under-02": { - "translate": [{"x": -2.23, "y": 6.28}], - "shear": [ - {"x": -27.8, "curve": 0.375, "c2": 0.62, "c3": 0.716}, {"time": 0.0333, "x": -31.97, "curve": 0.25, "c3": 0.75}, {"time": 0.2, "x": 0.11, "curve": 0.25, "c3": 0.75}, - {"time": 0.3667, "x": -31.97, "curve": 0.25, "c3": 0.75}, {"time": 0.5333, "x": 0.11, "curve": 0.243, "c3": 0.68, "c4": 0.71}, {"time": 0.6667, "x": -27.8} + "body-fur-15": { + "rotate": [ + {"angle": -10.16, "curve": 0.369, "c2": 0.47, "c3": 0.753}, {"time": 0.0833}, {"time": 0.1667, "angle": 47.21, "curve": 0.384, "c3": 0.75}, + {"time": 0.35, "angle": -17.29, "curve": 0.254, "c3": 0.621, "c4": 0.47}, {"time": 0.4167, "angle": 13.33} ] }, - "body-braid-03": { + "body-fur-07": { "rotate": [ - {"angle": -1.71, "curve": 0.337, "c2": 0.34, "c3": 0.673, "c4": 0.69}, {"time": 0.0333, "angle": 1, "curve": 0.354, "c2": 0.41, "c3": 0.694, "c4": 0.77}, - {"time": 0.0667, "angle": 4, "curve": 0.369, "c2": 0.63, "c3": 0.706}, {"time": 0.0833, "angle": 5.15, "curve": 0.25, "c3": 0.75}, - {"time": 0.25, "angle": -8.41, "curve": 0.25, "c3": 0.75}, {"time": 0.4167, "angle": 5.15, "curve": 0.25, "c3": 0.75}, - {"time": 0.5833, "angle": -8.69, "curve": 0.25, "c3": 0.625, "c4": 0.5}, {"time": 0.6667, "angle": -1.71} + {"angle": -0.89, "curve": 0.362, "c2": 0.64, "c3": 0.698}, {"time": 0.0167, "curve": 0.25, "c3": 0.75}, {"time": 0.1, "angle": 47.21, "curve": 0.384, "c3": 0.75}, + {"time": 0.2833, "angle": -17.29, "curve": 0.245, "c3": 0.707, "c4": 0.82}, {"time": 0.4167, "angle": 2.91} ] }, - "body-braid-06": { + "body-fur-11": { "rotate": [ - {"angle": -20.59, "curve": 0.352, "c2": 0.41, "c3": 0.689, "c4": 0.75}, {"time": 0.0333, "angle": -24.8, "curve": 0.369, "c2": 0.63, "c3": 0.706}, - {"time": 0.05, "angle": -27.05, "curve": 0.318, "c3": 0.652, "c4": 0.34}, {"time": 0.0667, "angle": -26.59, "curve": 0.271, "c2": 0.09, "c3": 0.753}, - {"time": 0.2167, "curve": 0.25, "c3": 0.75}, {"time": 0.3833, "angle": -26.77, "curve": 0.25, "c3": 0.75}, {"time": 0.55, "curve": 0.243, "c3": 0.655, "c4": 0.63}, - {"time": 0.6667, "angle": -20.59} + {"angle": -4.91, "curve": 0.382, "c2": 0.57, "c3": 0.735}, {"time": 0.05, "curve": 0.25, "c3": 0.75}, {"time": 0.1333, "angle": 47.21, "curve": 0.384, "c3": 0.75}, + {"time": 0.3167, "angle": -17.29, "curve": 0.243, "c3": 0.649, "c4": 0.6}, {"time": 0.4167, "angle": 4.23} ] }, - "body-braid-05": { + "body-fur-16": { "rotate": [ - {"angle": -8.3, "curve": 0.294, "c3": 0.631, "c4": 0.37}, {"time": 0.0333, "angle": -7.64, "curve": 0.306, "c2": 0.23, "c3": 0.646, "c4": 0.59}, - {"time": 0.0667, "angle": -5.77, "curve": 0.354, "c2": 0.41, "c3": 0.756}, {"time": 0.1667, "curve": 0.25, "c3": 0.75}, {"time": 0.3333, "angle": -8.02, "curve": 0.25, "c3": 0.75}, - {"time": 0.5, "curve": 0.25, "c3": 0.75}, {"time": 0.6667, "angle": -8.3} + {"angle": -12.38, "curve": 0.351, "c2": 0.4, "c3": 0.757}, {"time": 0.1, "curve": 0.25, "c3": 0.75}, {"time": 0.1833, "angle": 47.21, "curve": 0.384, "c3": 0.75}, + {"time": 0.3667, "angle": -17.29, "curve": 0.265, "c3": 0.618, "c4": 0.43}, {"time": 0.4167, "angle": 13.84} ] }, - "body-braid-02": { + "body-fur-09": { "rotate": [ - {"angle": 3.5, "curve": 0.348, "c2": 0.38, "c3": 0.685, "c4": 0.73}, {"time": 0.0333, "angle": 3.89, "curve": 0.375, "c2": 0.62, "c3": 0.716}, - {"time": 0.0667, "angle": 4.18, "curve": 0.25, "c3": 0.75}, {"time": 0.2333, "angle": 1.94, "curve": 0.25, "c3": 0.75}, {"time": 0.4, "angle": 4.18, "curve": 0.25, "c3": 0.75}, - {"time": 0.5667, "angle": 1.94, "curve": 0.244, "c3": 0.646, "c4": 0.59}, {"time": 0.6667, "angle": 3.5} + {"angle": -9.85, "curve": 0.342, "c2": 0.36, "c3": 0.692, "c4": 0.75}, {"time": 0.05, "angle": -2.67, "curve": 0.377, "c2": 0.61, "c3": 0.72}, + {"time": 0.0833, "curve": 0.25, "c3": 0.75}, {"time": 0.1667, "angle": 47.21, "curve": 0.384, "c3": 0.75}, {"time": 0.35, "angle": -17.29, "curve": 0.254, "c3": 0.621, "c4": 0.47}, + {"time": 0.4167, "angle": 6.86} ] }, - "body-braid-04": { + "body-fur-10": { "rotate": [ - {"angle": -9.29, "curve": 0.323, "c2": 0.3, "c3": 0.66, "c4": 0.65}, {"time": 0.0333, "angle": -6.92, "curve": 0.335, "c2": 0.34, "c3": 0.674, "c4": 0.69}, - {"time": 0.0667, "angle": -3.73, "curve": 0.382, "c2": 0.57, "c3": 0.737}, {"time": 0.1167, "curve": 0.25, "c3": 0.75}, {"time": 0.2833, "angle": -11.98, "curve": 0.25, "c3": 0.75}, - {"time": 0.45, "curve": 0.25, "c3": 0.75}, {"time": 0.6167, "angle": -12.25, "curve": 0.269, "c3": 0.618, "c4": 0.42}, {"time": 0.6667, "angle": -9.29} + {"angle": -2.67, "curve": 0.377, "c2": 0.61, "c3": 0.72}, {"time": 0.0333, "curve": 0.25, "c3": 0.75}, {"time": 0.1167, "angle": 47.21, "curve": 0.384, "c3": 0.75}, + {"time": 0.3, "angle": -17.29, "curve": 0.243, "c3": 0.674, "c4": 0.69}, {"time": 0.4167, "angle": 0.34} ] }, - "body-braid-01": { + "body-fur-14": { "rotate": [ - {"angle": 2.31, "curve": 0.348, "c2": 0.38, "c3": 0.685, "c4": 0.73}, {"time": 0.0333, "angle": 2.87, "curve": 0.375, "c2": 0.62, "c3": 0.716}, - {"time": 0.0667, "angle": 3.3, "curve": 0.25, "c3": 0.75}, {"time": 0.2333, "curve": 0.25, "c3": 0.75}, {"time": 0.4, "angle": 3.3, "curve": 0.25, "c3": 0.75}, - {"time": 0.5667, "curve": 0.244, "c3": 0.646, "c4": 0.59}, {"time": 0.6667, "angle": 2.31} + {"angle": -14.85, "curve": 0.31, "c2": 0.26, "c3": 0.69, "c4": 0.74}, {"time": 0.0833, "angle": -2.67, "curve": 0.377, "c2": 0.61, "c3": 0.72}, {"time": 0.1167}, + {"time": 0.2, "angle": 47.21, "curve": 0.384, "c3": 0.75}, {"time": 0.3833, "angle": -17.29, "curve": 0.28, "c3": 0.623, "c4": 0.39}, {"time": 0.4167, "angle": 13.33} ] }, - "body-fur-under-03": { - "translate": [{"x": -0.78, "y": 3.19}], - "shear": [ - {"x": 22.47, "curve": 0.25, "c3": 0.75}, {"time": 0.1667, "curve": 0.25, "c3": 0.75}, {"time": 0.3333, "x": 22.47, "curve": 0.25, "c3": 0.75}, {"time": 0.5, "curve": 0.25, "c3": 0.75}, - {"time": 0.6667, "x": 22.47} + "body-fur-03": { + "rotate": [ + {"angle": -4.91, "curve": 0.382, "c2": 0.57, "c3": 0.735}, {"time": 0.05}, {"time": 0.1333, "angle": 47.21, "curve": 0.384, "c3": 0.75}, + {"time": 0.3167, "angle": -17.29, "curve": 0.243, "c3": 0.649, "c4": 0.6}, {"time": 0.4167, "angle": 5.54} ] }, - "body-fur-under-01": { - "translate": [{"x": -0.14, "y": 0.84}], - "shear": [ - {"x": -4.09, "curve": 0.375, "c2": 0.5, "c3": 0.75}, {"time": 0.0833, "x": -25.22, "curve": 0.25, "c3": 0.75}, {"time": 0.25, "x": 17.03, "curve": 0.25, "c3": 0.75}, - {"time": 0.4167, "x": -25.22, "curve": 0.25, "c3": 0.75}, {"time": 0.5833, "x": 17.03, "curve": 0.25, "c3": 0.625, "c4": 0.5}, {"time": 0.6667, "x": -4.09} + "body-fur-05": { + "rotate": [ + {"angle": -2.67, "curve": 0.377, "c2": 0.61, "c3": 0.72}, {"time": 0.0333}, {"time": 0.1167, "angle": 47.21, "curve": 0.384, "c3": 0.75}, + {"time": 0.3, "angle": -17.29, "curve": 0.243, "c3": 0.674, "c4": 0.69}, {"time": 0.4167, "angle": 6.86} ] }, - "body-fur-under-05": { - "translate": [{"x": 0.53, "y": 14.98}], - "shear": [ - {"x": 3.7, "curve": 0.382, "c2": 0.57, "c3": 0.737}, {"time": 0.0667, "x": 13.52, "curve": 0.25, "c3": 0.75}, {"time": 0.2333, "x": -18.7, "curve": 0.25, "c3": 0.75}, - {"time": 0.4, "x": 13.52, "curve": 0.25, "c3": 0.75}, {"time": 0.5667, "x": -18.7, "curve": 0.244, "c3": 0.646, "c4": 0.59}, {"time": 0.6667, "x": 3.7} + "body-fur-01": { + "rotate": [ + {"angle": -7.37, "curve": 0.379, "c2": 0.53, "c3": 0.746}, {"time": 0.0667}, {"time": 0.15, "angle": 47.21, "curve": 0.384, "c3": 0.75}, + {"time": 0.3333, "angle": -17.29, "curve": 0.247, "c3": 0.631, "c4": 0.53}, {"time": 0.4167, "angle": 10.51} + ] + }, + "body-fur-08": { + "rotate": [ + {"angle": -4.91, "curve": 0.382, "c2": 0.57, "c3": 0.735}, {"time": 0.05, "curve": 0.25, "c3": 0.75}, {"time": 0.1333, "angle": 47.21, "curve": 0.384, "c3": 0.75}, + {"time": 0.3167, "angle": -17.29, "curve": 0.243, "c3": 0.649, "c4": 0.6}, {"time": 0.4167, "angle": -0.91} ] } - }, - "events": [{"time": 0.15, "name": "jump"}] + } }, - "1392842846": { + "2105733975": { + "slots": { + "eyes": {"attachment": [{"time": 0.0167, "name": "eyes-shut"}, {"time": 0.1833, "name": "eyes-angry"}, {"time": 0.4, "name": "eyes"}]}, + "mouth": {"attachment": [{"time": 0.0167, "name": "mouth-bite"}, {"time": 0.4, "name": "mouth"}]} + }, "bones": { - "@pivot-back": { + "tail": { "rotate": [ - {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "angle": 5.51, "curve": 0.315, "c4": 0.8}, {"time": 0.2, "angle": -4, "curve": 0.62, "c3": 0.536}, - {"time": 0.5, "angle": 5.83, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5833, "angle": -1.41, "curve": 0.154, "c4": 0.9}, {"time": 0.6667} - ], - "translate": [ - {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.1167, "x": 13.63, "y": 1.37, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5, "y": -4.7, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.6667} - ] - }, - "@leg-front-right": { - "translate": [ - {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": -1.98, "y": -24.83, "curve": 0.263, "c3": 0.629, "c4": 0.42}, - {"time": 0.1667, "x": -2.18, "y": -3.56, "curve": 0.493, "c2": 0.32, "c4": 0.83}, {"time": 0.3333, "x": -2.18, "y": -2.89, "curve": "stepped"}, - {"time": 0.4833, "x": -2.18, "y": -2.89, "curve": 0, "c2": 0.17, "c3": 0.45, "c4": 0.61}, {"time": 0.5, "x": -1.98, "y": -24.83, "curve": 0, "c2": 0.17, "c3": 0.45, "c4": 0.61}, - {"time": 0.5833, "x": -1.28, "y": 8.38, "curve": 0.345, "c2": 0.53, "c3": 0.751}, {"time": 0.6667} + {"curve": "stepped"}, {"time": 0.0167, "angle": 35.35}, {"time": 0.1667, "angle": 50.35, "curve": 0.315, "c4": 0.8}, {"time": 0.3167, "angle": -21.75, "curve": 0, "c2": 0.1, "c3": 0.85}, + {"time": 0.4167} ] }, "leg-front-right-IK": { + "translate": [{"curve": "stepped"}, {"time": 0.0167, "x": 74.76, "y": 322.04}, {"time": 0.1667, "x": 85.96, "y": 349.35, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3167}] + }, + "@pivot-back": { + "rotate": [ + {"curve": "stepped"}, {"time": 0.0167, "angle": -45}, {"time": 0.1667, "angle": -50, "curve": 0.464, "c4": 0.7}, {"time": 0.3167, "angle": 5.2, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.4167} + ], + "translate": [{"curve": "stepped"}, {"time": 0.0167, "x": 94.99, "y": -21}, {"time": 0.1667, "x": 107, "y": -60, "curve": 0.464, "c4": 0.7}, {"time": 0.3167}] + }, + "@shadow": { "translate": [ - {"time": 0.15, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.25, "x": 26.77, "curve": 0.315, "c4": 0.8}, {"time": 0.35, "x": -20.02, "curve": "stepped"}, - {"time": 0.5, "x": -20.02, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.5833} + {"curve": "stepped"}, {"time": 0.0167, "x": 70.3, "curve": "stepped"}, {"time": 0.1667, "x": 70.3, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.3167, "x": 12.49, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.4167} + ], + "scale": [ + {"curve": "stepped"}, {"time": 0.0167, "x": 0.98, "y": 0.98}, {"time": 0.1667, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.3167, "x": 1.08, "y": 1.08, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.4167} ] }, - "@leg-front-left": { + "leg-back-left-IK": { "translate": [ - {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": -1.04, "y": -13.11, "curve": 0.263, "c3": 0.629, "c4": 0.42}, - {"time": 0.1667, "x": -1.14, "y": -2.73, "curve": 0.493, "c2": 0.32, "c4": 0.83}, {"time": 0.3333, "x": -1.16, "y": -1.14, "curve": "stepped"}, - {"time": 0.4833, "x": -1.16, "y": -1.14, "curve": 0, "c2": 0.17, "c3": 0.45, "c4": 0.61}, {"time": 0.5, "x": -1.04, "y": -13.11, "curve": 0, "c2": 0.17, "c3": 0.45, "c4": 0.61}, - {"time": 0.5833, "x": -0.69, "y": 4.65, "curve": 0.345, "c2": 0.53, "c3": 0.751}, {"time": 0.6667} + {"curve": "stepped"}, {"time": 0.0167, "x": 11.67, "y": 0.9, "curve": "stepped"}, {"time": 0.1667, "x": 11.67, "y": 0.9, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333} ] }, + "@leg-back-left": {"translate": [{"curve": "stepped"}, {"time": 0.0167, "x": -2.63, "y": 8.92}, {"time": 0.1667, "x": 18.61, "y": -8.3, "curve": 0.464, "c4": 0.7}, {"time": 0.3167}]}, + "@pivot-main": {"translate": [{"curve": "stepped"}, {"time": 0.0167, "x": 20, "curve": "stepped"}, {"time": 0.3167, "x": 20, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.4167}]}, "leg-front-left-IK": { - "translate": [ - {"time": 0.15, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.25, "x": 26.77, "curve": 0.315, "c4": 0.8}, {"time": 0.35, "x": -20.02, "curve": "stepped"}, - {"time": 0.5, "x": -20.02, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.5833} - ] + "translate": [{"curve": "stepped"}, {"time": 0.0167, "x": -4.7, "y": 168.09}, {"time": 0.1667, "x": 6.72, "y": 174.87, "curve": 0.306, "c3": 0.695}, {"time": 0.3167}] }, - "@leg-back-left": { - "translate": [ - {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.1333, "x": -0.27, "y": -3.45, "curve": "stepped"}, {"time": 0.5, "x": -0.27, "y": -3.45, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.6667} + "@leg-front-left": {"translate": [{"time": 0.1667, "curve": 0.62, "c4": 0.3}, {"time": 0.3167, "x": -1.1, "y": -14.87, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.4167}]}, + "@leg-front-right": {"translate": [{"time": 0.1667, "curve": 0.62, "c4": 0.3}, {"time": 0.3167, "x": -2.11, "y": -28.46, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.4167}]}, + "body-fur-01": { + "rotate": [ + {"angle": -10.51, "curve": 0.379, "c2": 0.53, "c3": 0.746}, {"time": 0.0667}, {"time": 0.15, "angle": 55.85, "curve": 0.409, "c2": 0.01, "c3": 0.75}, + {"time": 0.3333, "angle": -24.65, "curve": 0.247, "c3": 0.631, "c4": 0.53}, {"time": 0.4167, "angle": 10.51} ] }, - "leg-back-left-IK": { - "translate": [ - {"time": 0.15, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.25, "x": 26.77, "curve": "stepped"}, {"time": 0.3, "x": 26.77, "curve": 0.315, "c4": 0.8}, - {"time": 0.4167, "x": -20.02, "curve": "stepped"}, {"time": 0.5, "x": -20.02, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.5833} + "body-fur-02": { + "rotate": [ + {"angle": -17.58, "curve": 0.33, "c2": 0.32, "c3": 0.693, "c4": 0.75}, {"time": 0.0667, "angle": -3.8, "curve": 0.377, "c2": 0.61, "c3": 0.72}, {"time": 0.1}, + {"time": 0.1833, "angle": 55.85, "curve": 0.409, "c2": 0.01, "c3": 0.75}, {"time": 0.3667, "angle": -24.65, "curve": 0.265, "c3": 0.618, "c4": 0.43}, {"time": 0.4167, "angle": 13.84} ] }, - "@pivot-main": { - "translate": [{"time": 0.1667, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "y": 133.58, "curve": 0.315, "c4": 0.8}, {"time": 0.5}], - "scale": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "y": 0.97, "curve": 0.315, "c4": 0.8}, {"time": 0.1667, "curve": "stepped"}, {"time": 0.4167, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.5, "y": 0.97, "curve": 0.315, "c4": 0.8}, {"time": 0.5833} + "body-fur-03": { + "rotate": [ + {"angle": -6.99, "curve": 0.382, "c2": 0.57, "c3": 0.735}, {"time": 0.05, "curve": 0.25, "c3": 0.75}, {"time": 0.1333, "angle": 55.85, "curve": 0.409, "c2": 0.01, "c3": 0.75}, + {"time": 0.3167, "angle": -24.65, "curve": 0.243, "c3": 0.649, "c4": 0.6}, {"time": 0.4167, "angle": 5.54} ] }, - "tail": { + "body-fur-04": { "rotate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1167, "angle": 11.6, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "angle": -18.66, "curve": 0.313, "c3": 0.699}, - {"time": 0.4667, "angle": 16.43, "curve": 0.315, "c4": 0.8}, {"time": 0.5833, "angle": -6.67, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.6667} + {"angle": -14.05, "curve": 0.342, "c2": 0.36, "c3": 0.692, "c4": 0.75}, {"time": 0.05, "angle": -3.8, "curve": 0.377, "c2": 0.61, "c3": 0.72}, {"time": 0.0833}, + {"time": 0.1667, "angle": 55.85, "curve": 0.409, "c2": 0.01, "c3": 0.75}, {"time": 0.35, "angle": -24.65, "curve": 0.254, "c3": 0.621, "c4": 0.47}, {"time": 0.4167, "angle": 12.53} ] }, - "@shadow": { - "scale": [ - {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 1.1, "y": 1.1, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "x": 0.8, "y": 0.8, "curve": 0.315, "c4": 0.8}, - {"time": 0.5, "x": 1.1, "y": 1.1, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.6667} + "body-fur-05": { + "rotate": [ + {"angle": -3.8, "curve": 0.377, "c2": 0.61, "c3": 0.72}, {"time": 0.0333, "curve": 0.25, "c3": 0.75}, {"time": 0.1167, "angle": 55.85, "curve": 0.409, "c2": 0.01, "c3": 0.75}, + {"time": 0.3, "angle": -24.65, "curve": 0.243, "c3": 0.674, "c4": 0.69}, {"time": 0.4167, "angle": 6.86} ] }, - "body-braid-01": { + "body-fur-06": { "rotate": [ - {"angle": 2.31, "curve": 0.348, "c2": 0.38, "c3": 0.685, "c4": 0.73}, {"time": 0.0333, "angle": 2.87, "curve": 0.375, "c2": 0.62, "c3": 0.716}, - {"time": 0.0667, "angle": 3.3, "curve": 0.25, "c3": 0.75}, {"time": 0.2333, "curve": 0.25, "c3": 0.75}, {"time": 0.4, "angle": 3.3, "curve": 0.25, "c3": 0.75}, - {"time": 0.5667, "curve": 0.244, "c3": 0.646, "c4": 0.59}, {"time": 0.6667, "angle": 2.31} + {"angle": -10.42, "curve": 0.347, "c2": 0.38, "c3": 0.688, "c4": 0.74}, {"time": 0.0333, "angle": -3.8, "curve": 0.377, "c2": 0.61, "c3": 0.72}, {"time": 0.0667}, + {"time": 0.15, "angle": 55.85, "curve": 0.409, "c2": 0.01, "c3": 0.75}, {"time": 0.3333, "angle": -24.65, "curve": 0.247, "c3": 0.631, "c4": 0.53}, {"time": 0.4167, "angle": 13.33} ] }, - "body-braid-02": { + "body-fur-07": { "rotate": [ - {"angle": 3.5, "curve": 0.348, "c2": 0.38, "c3": 0.685, "c4": 0.73}, {"time": 0.0333, "angle": 3.89, "curve": 0.375, "c2": 0.62, "c3": 0.716}, - {"time": 0.0667, "angle": 4.18, "curve": 0.25, "c3": 0.75}, {"time": 0.2333, "angle": 1.94, "curve": 0.25, "c3": 0.75}, {"time": 0.4, "angle": 4.18, "curve": 0.25, "c3": 0.75}, - {"time": 0.5667, "angle": 1.94, "curve": 0.244, "c3": 0.646, "c4": 0.59}, {"time": 0.6667, "angle": 3.5} + {"angle": -1.27, "curve": 0.362, "c2": 0.64, "c3": 0.698}, {"time": 0.0167, "curve": 0.25, "c3": 0.75}, {"time": 0.1, "angle": 55.85, "curve": 0.409, "c2": 0.01, "c3": 0.75}, + {"time": 0.2833, "angle": -24.65, "curve": 0.245, "c3": 0.707, "c4": 0.82}, {"time": 0.4167, "angle": 2.91} ] }, - "body-braid-03": { + "body-fur-08": { "rotate": [ - {"angle": -1.71, "curve": 0.337, "c2": 0.34, "c3": 0.673, "c4": 0.69}, {"time": 0.0333, "angle": 1, "curve": 0.354, "c2": 0.41, "c3": 0.694, "c4": 0.77}, - {"time": 0.0667, "angle": 4, "curve": 0.369, "c2": 0.63, "c3": 0.706}, {"time": 0.0833, "angle": 5.15, "curve": 0.25, "c3": 0.75}, - {"time": 0.25, "angle": -8.41, "curve": 0.25, "c3": 0.75}, {"time": 0.4167, "angle": 5.15, "curve": 0.25, "c3": 0.75}, - {"time": 0.5833, "angle": -8.69, "curve": 0.25, "c3": 0.625, "c4": 0.5}, {"time": 0.6667, "angle": -1.71} + {"angle": -3.8, "curve": 0.377, "c2": 0.61, "c3": 0.72}, {"time": 0.0333}, {"time": 0.1167, "angle": 55.85, "curve": 0.409, "c2": 0.01, "c3": 0.75}, + {"time": 0.3, "angle": -24.65, "curve": 0.243, "c3": 0.674, "c4": 0.69}, {"time": 0.4167, "angle": -0.91} ] }, - "body-braid-04": { + "body-fur-09": { "rotate": [ - {"angle": -9.29, "curve": 0.323, "c2": 0.3, "c3": 0.66, "c4": 0.65}, {"time": 0.0333, "angle": -6.92, "curve": 0.335, "c2": 0.34, "c3": 0.674, "c4": 0.69}, - {"time": 0.0667, "angle": -3.73, "curve": 0.382, "c2": 0.57, "c3": 0.737}, {"time": 0.1167, "curve": 0.25, "c3": 0.75}, {"time": 0.2833, "angle": -11.98, "curve": 0.25, "c3": 0.75}, - {"time": 0.45, "curve": 0.25, "c3": 0.75}, {"time": 0.6167, "angle": -12.25, "curve": 0.269, "c3": 0.618, "c4": 0.42}, {"time": 0.6667, "angle": -9.29} + {"angle": -10.42, "curve": 0.347, "c2": 0.38, "c3": 0.688, "c4": 0.74}, {"time": 0.0333, "angle": -3.8, "curve": 0.377, "c2": 0.61, "c3": 0.72}, + {"time": 0.0667, "curve": 0.25, "c3": 0.75}, {"time": 0.15, "angle": 55.85, "curve": 0.409, "c2": 0.01, "c3": 0.75}, + {"time": 0.3333, "angle": -24.65, "curve": 0.247, "c3": 0.631, "c4": 0.53}, {"time": 0.4167, "angle": 6.86} ] }, - "body-braid-05": { + "body-fur-10": { "rotate": [ - {"angle": -8.3, "curve": 0.294, "c3": 0.631, "c4": 0.37}, {"time": 0.0333, "angle": -7.64, "curve": 0.306, "c2": 0.23, "c3": 0.646, "c4": 0.59}, - {"time": 0.0667, "angle": -5.77, "curve": 0.354, "c2": 0.41, "c3": 0.756}, {"time": 0.1667, "curve": 0.25, "c3": 0.75}, {"time": 0.3333, "angle": -8.02, "curve": 0.25, "c3": 0.75}, - {"time": 0.5, "curve": 0.25, "c3": 0.75}, {"time": 0.6667, "angle": -8.3} + {"angle": -3.8, "curve": 0.377, "c2": 0.61, "c3": 0.72}, {"time": 0.0333, "curve": 0.25, "c3": 0.75}, {"time": 0.1167, "angle": 55.85, "curve": 0.409, "c2": 0.01, "c3": 0.75}, + {"time": 0.3, "angle": -24.65, "curve": 0.243, "c3": 0.674, "c4": 0.69}, {"time": 0.4167, "angle": 0.34} ] }, - "body-braid-06": { + "body-fur-11": { "rotate": [ - {"angle": -20.59, "curve": 0.352, "c2": 0.41, "c3": 0.689, "c4": 0.75}, {"time": 0.0333, "angle": -24.8, "curve": 0.369, "c2": 0.63, "c3": 0.706}, - {"time": 0.05, "angle": -27.05, "curve": 0.318, "c3": 0.652, "c4": 0.34}, {"time": 0.0667, "angle": -26.59, "curve": 0.271, "c2": 0.09, "c3": 0.753}, - {"time": 0.2167, "curve": 0.25, "c3": 0.75}, {"time": 0.3833, "angle": -26.77, "curve": 0.25, "c3": 0.75}, {"time": 0.55, "curve": 0.243, "c3": 0.655, "c4": 0.63}, - {"time": 0.6667, "angle": -20.59} + {"angle": -6.99, "curve": 0.382, "c2": 0.57, "c3": 0.735}, {"time": 0.05, "curve": 0.25, "c3": 0.75}, {"time": 0.1333, "angle": 55.85, "curve": 0.409, "c2": 0.01, "c3": 0.75}, + {"time": 0.3167, "angle": -24.65, "curve": 0.243, "c3": 0.649, "c4": 0.6}, {"time": 0.4167, "angle": 4.23} ] }, - "body-fur-under-05": { - "translate": [{"x": 0.53, "y": 14.98}], - "shear": [ - {"x": 3.7, "curve": 0.382, "c2": 0.57, "c3": 0.737}, {"time": 0.0667, "x": 13.52, "curve": 0.25, "c3": 0.75}, {"time": 0.2333, "x": -18.7, "curve": 0.25, "c3": 0.75}, - {"time": 0.4, "x": 13.52, "curve": 0.25, "c3": 0.75}, {"time": 0.5667, "x": -18.7, "curve": 0.244, "c3": 0.646, "c4": 0.59}, {"time": 0.6667, "x": 3.7} + "body-fur-12": { + "rotate": [ + {"angle": -10.51, "curve": 0.379, "c2": 0.53, "c3": 0.746}, {"time": 0.0667, "curve": 0.25, "c3": 0.75}, {"time": 0.15, "angle": 55.85, "curve": 0.409, "c2": 0.01, "c3": 0.75}, + {"time": 0.3333, "angle": -24.65, "curve": 0.247, "c3": 0.631, "c4": 0.53}, {"time": 0.4167, "angle": 8.12} ] }, - "body-fur-under-04": { - "translate": [{"x": -0.33, "y": 3.2}], - "shear": [ - {"x": 10.24, "curve": 0.36, "c2": 0.64, "c3": 0.695}, {"time": 0.0167, "x": 11.47, "curve": 0.25, "c3": 0.75}, {"time": 0.1833, "x": -17.33, "curve": 0.25, "c3": 0.75}, - {"time": 0.35, "x": 11.47, "curve": 0.25, "c3": 0.75}, {"time": 0.5167, "x": -17.33, "curve": 0.245, "c3": 0.711, "c4": 0.83}, {"time": 0.6667, "x": 10.24} + "body-fur-13": { + "rotate": [ + {"angle": -14.13, "curve": 0.369, "c2": 0.47, "c3": 0.753}, {"time": 0.0833}, {"time": 0.1667, "angle": 55.85, "curve": 0.409, "c2": 0.01, "c3": 0.75}, + {"time": 0.35, "angle": -24.65, "curve": 0.254, "c3": 0.621, "c4": 0.47}, {"time": 0.4167, "angle": 11.59} ] }, - "body-fur-under-03": { - "translate": [{"x": -0.78, "y": 3.19}], - "shear": [ - {"x": 22.47, "curve": 0.25, "c3": 0.75}, {"time": 0.1667, "curve": 0.25, "c3": 0.75}, {"time": 0.3333, "x": 22.47, "curve": 0.25, "c3": 0.75}, {"time": 0.5, "curve": 0.25, "c3": 0.75}, - {"time": 0.6667, "x": 22.47} + "body-fur-14": { + "rotate": [ + {"angle": -20.83, "curve": 0.31, "c2": 0.26, "c3": 0.69, "c4": 0.74}, {"time": 0.0833, "angle": -3.8, "curve": 0.377, "c2": 0.61, "c3": 0.72}, {"time": 0.1167}, + {"time": 0.2, "angle": 55.85, "curve": 0.409, "c2": 0.01, "c3": 0.75}, {"time": 0.3833, "angle": -24.65, "curve": 0.28, "c3": 0.623, "c4": 0.39}, {"time": 0.4167, "angle": 13.33} ] }, - "body-fur-under-02": { - "translate": [{"x": -2.23, "y": 6.28}], - "shear": [ - {"x": -27.8, "curve": 0.375, "c2": 0.62, "c3": 0.716}, {"time": 0.0333, "x": -31.97, "curve": 0.25, "c3": 0.75}, {"time": 0.2, "x": 0.11, "curve": 0.25, "c3": 0.75}, - {"time": 0.3667, "x": -31.97, "curve": 0.25, "c3": 0.75}, {"time": 0.5333, "x": 0.11, "curve": 0.243, "c3": 0.68, "c4": 0.71}, {"time": 0.6667, "x": -27.8} + "body-fur-15": { + "rotate": [ + {"angle": -14.13, "curve": 0.369, "c2": 0.47, "c3": 0.753}, {"time": 0.0833}, {"time": 0.1667, "angle": 55.85, "curve": 0.409, "c2": 0.01, "c3": 0.75}, + {"time": 0.35, "angle": -24.65, "curve": 0.254, "c3": 0.621, "c4": 0.47}, {"time": 0.4167, "angle": 13.33} ] }, - "body-fur-under-01": { - "translate": [{"x": -0.14, "y": 0.84}], - "shear": [ - {"x": -4.09, "curve": 0.375, "c2": 0.5, "c3": 0.75}, {"time": 0.0833, "x": -25.22, "curve": 0.25, "c3": 0.75}, {"time": 0.25, "x": 17.03, "curve": 0.25, "c3": 0.75}, - {"time": 0.4167, "x": -25.22, "curve": 0.25, "c3": 0.75}, {"time": 0.5833, "x": 17.03, "curve": 0.25, "c3": 0.625, "c4": 0.5}, {"time": 0.6667, "x": -4.09} + "body-fur-16": { + "rotate": [ + {"angle": -17.65, "curve": 0.351, "c2": 0.4, "c3": 0.757}, {"time": 0.1, "curve": 0.25, "c3": 0.75}, {"time": 0.1833, "angle": 55.85, "curve": 0.409, "c2": 0.01, "c3": 0.75}, + {"time": 0.3667, "angle": -24.65, "curve": 0.265, "c3": 0.618, "c4": 0.43}, {"time": 0.4167, "angle": 13.84} ] } - }, - "events": [{"time": 0.15, "name": "jump"}] + } }, - "3353545678": { + "42307048": { "slots": { - "eyes": {"attachment": [{"time": 0.0833, "name": "eyes-shut"}, {"time": 0.1667, "name": "eyes-angry"}, {"time": 0.9833, "name": "eyes-shut"}, {"time": 1.0833, "name": "eyes"}]}, - "leg-front-left": { - "attachment": [ - {"time": 0.5, "name": "leg-front-left-stretch"}, {"time": 0.6333, "name": "leg-front-left"}, {"time": 0.7667, "name": "leg-front-left-stretch"}, {"time": 0.9, "name": "leg-front-left"} - ] - }, - "mouth": {"attachment": [{"time": 0.0833, "name": "mouth-bite"}, {"time": 0.3667, "name": "mouth-open"}, {"time": 0.9833, "name": "mouth-bite"}, {"time": 1.0833, "name": "mouth"}]} + "eyes": {"attachment": [{"time": 0.0167, "name": "eyes-shut"}, {"time": 0.5833, "name": "eyes-angry"}, {"time": 0.8333, "name": "eyes-shut"}, {"time": 0.9167, "name": "eyes"}]}, + "mouth": {"attachment": [{"time": 0.0167, "name": "mouth-bite"}, {"time": 0.6667, "name": "mouth-open"}, {"time": 0.8333, "name": "mouth"}]} }, "bones": { "@pivot-back": { "rotate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.15, "angle": 3.67, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.3333, "angle": -14.29, "curve": 0.779, "c4": 0.3}, - {"time": 0.3667, "angle": 15.82}, {"time": 0.4667, "angle": 16.67, "curve": 0.779, "c4": 0.3}, {"time": 0.5, "angle": -19.96}, {"time": 0.6, "angle": -21.17, "curve": 0.779, "c4": 0.3}, - {"time": 0.6333, "angle": 15.82}, {"time": 0.7333, "angle": 16.67, "curve": 0.779, "c4": 0.3}, {"time": 0.7667, "angle": -19.96}, - {"time": 0.8667, "angle": -21.17, "curve": 0.779, "c4": 0.3}, {"time": 0.9833, "angle": 4.4, "curve": 0, "c2": 0.1, "c3": 0.85}, - {"time": 1.05, "angle": 6.79, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1.25} + {"curve": "stepped"}, {"time": 0.0167, "angle": -45}, {"time": 0.1, "angle": -85, "curve": "stepped"}, {"time": 0.6667, "angle": -85, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.8333, "angle": 6, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1} ], "translate": [ - {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.2167, "x": 8.02, "curve": 0, "c2": 0.4, "c3": 0.383}, {"time": 0.3333, "x": -54.3, "y": 61.69, "curve": 0.779, "c4": 0.3}, - {"time": 0.3667, "x": -60.41, "y": 130.13}, {"time": 0.4667, "x": -60.41, "y": 130.01, "curve": 0.779, "c4": 0.3}, {"time": 0.5, "x": -58.41, "y": 9.6}, - {"time": 0.6, "x": -58.41, "y": 9.9, "curve": 0.779, "c4": 0.3}, {"time": 0.6333, "x": -60.41, "y": 130.13}, {"time": 0.7333, "x": -60.41, "y": 130.01, "curve": 0.779, "c4": 0.3}, - {"time": 0.7667, "x": -58.41, "y": 9.6}, {"time": 0.8667, "x": -58.41, "y": 9.9, "curve": 0.779, "c4": 0.3}, {"time": 0.9833} + {"curve": "stepped"}, {"time": 0.0167, "x": 94.99, "y": -21}, {"time": 0.05, "x": 256.42, "y": -60}, {"time": 0.1, "x": 408.25, "y": -188, "curve": "stepped"}, + {"time": 0.6667, "x": 408.25, "y": -188, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.8333, "y": 12.75, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1} ] }, - "@leg-front-right": { + "@shadow": { "translate": [ - {"curve": 0, "c2": 0.17, "c3": 0.521, "c4": 0.69}, {"time": 0.15, "x": -16.23, "y": -19.18, "curve": 0.377, "c2": 0.59, "c3": 0.739}, {"time": 0.2167, "x": -18.54, "y": -11.57}, - {"time": 0.25, "x": -22.65, "y": 8.05, "curve": 0, "c2": 0.4, "c3": 0.383}, {"time": 0.3333, "x": 29.92, "y": -4.24, "curve": 0.779, "c4": 0.4}, {"time": 0.3667, "x": 22.95, "y": 2.68}, - {"time": 0.4667, "x": 29.92, "y": -4.24, "curve": 0.779, "c4": 0.4}, {"time": 0.5, "x": 22.95, "y": 2.68}, {"time": 0.6, "x": 29.92, "y": -4.24, "curve": 0.779, "c4": 0.4}, - {"time": 0.6333, "x": 22.95, "y": 2.68}, {"time": 0.7333, "x": 29.92, "y": -4.24, "curve": 0.779, "c4": 0.4}, {"time": 0.7667, "x": 22.95, "y": 2.68, "curve": "stepped"}, - {"time": 0.9167, "x": 22.95, "y": 2.68, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.95, "curve": 0.464, "c4": 0.7}, {"time": 0.9833, "x": -1.45, "y": -24.11}, - {"time": 1.05, "x": -3.72, "y": -46.34, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1.0833} + {"curve": "stepped"}, {"time": 0.0167, "x": 144.17}, {"time": 0.1, "x": 589.27, "curve": 0.313, "c3": 0.699}, {"time": 0.25, "x": 627.48, "curve": 0.313, "c3": 0.699}, + {"time": 0.4167, "x": 576.87, "curve": 0.313, "c3": 0.699}, {"time": 0.55, "x": 602.83, "curve": 0.313, "c3": 0.699}, {"time": 0.6667, "x": 576.87, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.8333} ], "scale": [ - {"time": 0.2167}, {"time": 0.25, "x": 1.5}, {"time": 0.3333, "curve": 0.779, "c4": 0.4}, {"time": 0.3667, "x": 1.5}, {"time": 0.4667, "x": 1.51, "curve": 0.157, "c2": 0.33, "c3": 0.727}, - {"time": 0.5, "curve": "stepped"}, {"time": 0.6, "curve": 0.779, "c4": 0.4}, {"time": 0.6333, "x": 1.5}, {"time": 0.7333, "x": 1.51, "curve": 0.157, "c2": 0.33, "c3": 0.727}, - {"time": 0.7667} + {"curve": "stepped"}, {"time": 0.0167, "x": 0.92, "y": 0.92}, {"time": 0.1, "curve": 0, "c2": 0.22, "c3": 0.373, "c4": 0.57}, {"time": 0.25, "x": 1.04, "y": 1.04, "curve": "stepped"}, + {"time": 0.6667, "x": 1.04, "y": 1.04, "curve": 0.206, "c2": 0.38, "c3": 0.736}, {"time": 0.8333, "x": 1.1, "y": 1.1, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1} ] }, - "@leg-front-left": { + "@leg-back-left": {"translate": [{"curve": "stepped"}, {"time": 0.0167, "x": 6.4, "y": 0.19}, {"time": 0.1667}]}, + "leg-front-right-IK": { "translate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.2167, "x": -6.84, "y": -9.77, "curve": "stepped"}, {"time": 0.9833, "x": -6.84, "y": -9.77, "curve": 0, "c2": 0.1, "c3": 0.85}, - {"time": 1.05, "x": -6.29, "y": -18.69, "curve": 0, "c2": 0.23, "c3": 0.365, "c4": 0.58}, {"time": 1.0833, "x": -3.64, "y": -2.46, "curve": 0.177, "c2": 0.35, "c3": 0.731}, - {"time": 1.25} - ], - "scale": [ - {"time": 0.4667, "curve": 0.779, "c4": 0.4}, {"time": 0.5, "x": 1.5}, {"time": 0.6, "x": 1.51, "curve": 0.157, "c2": 0.33, "c3": 0.727}, {"time": 0.6333, "curve": "stepped"}, - {"time": 0.7333, "curve": 0.779, "c4": 0.4}, {"time": 0.7667, "x": 1.5}, {"time": 0.8667, "x": 1.51, "curve": 0.157, "c2": 0.33, "c3": 0.727}, {"time": 0.9833} + {"curve": "stepped"}, {"time": 0.0167, "x": 69.67, "y": 327.04}, {"time": 0.05, "x": 451.04, "y": 582.91}, {"time": 0.0833, "x": 787.85, "y": 470.29}, + {"time": 0.1, "x": 945.09, "y": 394.99, "curve": 0.313, "c3": 0.699}, {"time": 0.25, "x": 1086.85, "y": 338.86, "curve": 0.313, "c3": 0.699}, + {"time": 0.4167, "x": 921.41, "y": 410.91, "curve": 0.313, "c3": 0.699}, {"time": 0.5833, "x": 1028.37, "y": 385.44}, {"time": 0.6667, "x": 914.82, "y": 422.49}, + {"time": 0.7, "x": 413.58, "y": 458.44}, {"time": 0.75, "x": 45.46, "y": 287.09}, {"time": 0.7833, "x": -34.18, "y": 117.59}, {"time": 0.8333} ] }, - "@leg-back-left": { - "translate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.2167, "x": -0.11, "y": -2.73, "curve": "stepped"}, {"time": 0.9833, "x": -0.11, "y": -2.73, "curve": 0, "c2": 0.1, "c3": 0.85}, - {"time": 1.05, "x": -0.46, "y": -6.19, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1.25} + "tail": { + "rotate": [ + {"curve": "stepped"}, {"time": 0.0167, "angle": 35.35}, {"time": 0.1, "angle": -18.03, "curve": 0.313, "c3": 0.699}, {"time": 0.25, "angle": 12.69, "curve": 0.313, "c3": 0.699}, + {"time": 0.4167, "angle": -15.12, "curve": 0.313, "c3": 0.699}, {"time": 0.6667, "angle": 1.29, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.8333, "angle": 19.35, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1} ] }, - "@pivot-main": { - "translate": [ - {"time": 0.15, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "x": -73.35, "y": 43, "curve": "stepped"}, {"time": 0.8667, "x": -73.35, "y": 43, "curve": 0.315, "c4": 0.8}, - {"time": 0.9833, "x": -146.44, "curve": "stepped"}, {"time": 1.05, "x": -146.44, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1.15, "x": -45.61, "y": 50.15, "curve": 0.315, "c4": 0.8}, - {"time": 1.25} - ], - "scale": [{"time": 0.9833, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1.05, "y": 0.98, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1.15}] - }, - "leg-front-right-IK": { + "leg-back-left-IK": { "translate": [ - {"time": 0.15, "curve": 0, "c2": 0.18, "c3": 0.416, "c4": 0.58}, {"time": 0.2167, "x": 19.11, "y": 67.51}, {"time": 0.25, "x": 9.04, "y": 75.61, "curve": 0, "c2": 0.4, "c3": 0.383}, - {"time": 0.3333, "x": -160.66, "y": 272.78, "curve": 0.779, "c4": 0.4}, {"time": 0.3667, "x": -57.38, "y": -16.06}, {"time": 0.4667, "x": -10.1, "y": -16.06, "curve": 0.779, "c4": 0.4}, - {"time": 0.5, "x": -151.82, "y": 190.82}, {"time": 0.6, "x": -168.95, "y": 277.96, "curve": 0.779, "c4": 0.4}, {"time": 0.6333, "x": -54.28, "y": -17.1}, - {"time": 0.7333, "x": -12.17, "y": -17.1, "curve": 0.779, "c4": 0.4}, {"time": 0.7667, "x": -151.82, "y": 190.82}, {"time": 0.8667, "x": -165.84, "y": 271.75, "curve": 0.779, "c4": 0.4}, - {"time": 0.9833, "curve": "stepped"}, {"time": 1.05, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 1.0833, "x": -14.68, "y": -19.57, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1.25} + {"curve": "stepped"}, {"time": 0.0167, "x": -3.7, "y": 19.91}, {"time": 0.05, "x": -86.78, "y": 121.52}, {"time": 0.1, "x": 129.15, "y": 364.61, "curve": 0.313, "c3": 0.699}, + {"time": 0.25, "x": 262.18, "y": 406.7, "curve": 0.313, "c3": 0.699}, {"time": 0.4167, "x": 109.91, "y": 347.96, "curve": 0.313, "c3": 0.699}, {"time": 0.5833, "x": 216.28, "y": 393.95}, + {"time": 0.6667, "x": 118.81, "y": 360.02}, {"time": 0.7, "x": -121.03, "y": 41.31}, {"time": 0.75, "x": -95.31, "y": -47.01}, {"time": 0.7833, "x": 22.31, "y": -53.8}, {"time": 0.8333} ] }, "leg-front-left-IK": { "translate": [ - {"time": 0.15, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "x": -54.88, "y": 124.95, "curve": 0.779, "c4": 0.4}, {"time": 0.3667, "x": 37.97, "y": 122.64}, - {"time": 0.4667, "x": 48.96, "y": 138.43, "curve": 0.779, "c4": 0.4}, {"time": 0.5, "x": -142.3, "y": 180.66}, {"time": 0.6, "x": -134.29, "y": 191.98, "curve": 0.779, "c4": 0.4}, - {"time": 0.6333, "x": 37.97, "y": 122.64}, {"time": 0.7333, "x": 48.96, "y": 138.43, "curve": 0.779, "c4": 0.4}, {"time": 0.7667, "x": -142.3, "y": 180.66}, - {"time": 0.8667, "x": -134.29, "y": 191.98, "curve": 0.617, "c4": 0.6}, {"time": 0.9833, "curve": "stepped"}, {"time": 1.05, "curve": 0, "c2": 0.1, "c3": 0.85}, - {"time": 1.0833, "x": -7.79, "y": -10.12, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1.25} + {"curve": "stepped"}, {"time": 0.0167, "x": -5.8, "y": 177.99}, {"time": 0.05, "x": 106.35, "y": 306.87}, {"time": 0.0833, "x": 355.94, "y": 424.69}, + {"time": 0.1, "x": 515.46, "y": 408.14, "curve": 0.313, "c3": 0.699}, {"time": 0.25, "x": 536.35, "y": 423.87, "curve": 0.313, "c3": 0.699}, + {"time": 0.4167, "x": 492.39, "y": 405.73, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.6667, "x": 482.36, "y": 419.06}, {"time": 0.7, "x": 97.67, "y": 283.45}, + {"time": 0.75, "x": -12.16, "y": 45.82}, {"time": 0.7833, "x": -31.56, "y": 29.02}, {"time": 0.8333} ] }, - "leg-back-left-IK": { + "@pivot-center": { + "rotate": [ + {"time": 0.0167, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.1, "angle": -95, "curve": 0.313, "c3": 0.699}, {"time": 0.25, "angle": -105, "curve": 0.313, "c3": 0.699}, + {"time": 0.4167, "angle": -90, "curve": 0.313, "c3": 0.699}, {"time": 0.55, "angle": -100, "curve": 0.313, "c3": 0.699}, + {"time": 0.6667, "angle": -90, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.8333} + ], "translate": [ - {"time": 0.0833, "curve": 0.332, "c3": 0.682, "c4": 0.41}, {"time": 0.2167, "x": 21.57, "y": 4.03, "curve": 0, "c2": 0.4, "c3": 0.383}, - {"time": 0.3333, "x": -50.73, "y": 91.08, "curve": 0.779, "c4": 0.4}, {"time": 0.3667, "x": 19.18, "y": 184.64}, {"time": 0.4667, "x": 25.59, "y": 197.69, "curve": 0.779, "c4": 0.4}, - {"time": 0.5, "x": -145.53, "y": 47.62}, {"time": 0.6, "x": -152.68, "y": 53.34, "curve": 0.779, "c4": 0.4}, {"time": 0.6333, "x": 19.18, "y": 184.64}, - {"time": 0.7333, "x": 25.59, "y": 197.69, "curve": 0.779, "c4": 0.4}, {"time": 0.7667, "x": -145.53, "y": 47.62}, {"time": 0.8667, "x": -153.88, "y": 53.26, "curve": 0.779, "c4": 0.4}, - {"time": 0.9833, "curve": "stepped"}, {"time": 1.05, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 1.1667, "x": 24.35, "y": 13.92, "curve": 0.154, "c4": 0.9}, {"time": 1.25} + {"time": 0.1, "curve": 0.313, "c3": 0.699}, {"time": 0.25, "x": 1.68, "y": 38.2, "curve": 0.313, "c3": 0.699}, {"time": 0.4167, "x": -2.73, "y": -12.21, "curve": 0.313, "c3": 0.699}, + {"time": 0.55, "x": -0.47, "y": 13.65, "curve": 0.313, "c3": 0.699}, {"time": 0.6667, "x": -2.73, "y": -12.21, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.8333} ] }, - "tail": { + "@pivot-main": { + "translate": [{"time": 0.6667, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.75, "y": 150, "curve": 0.315, "c4": 0.8}, {"time": 0.8333}], + "scale": [ + {"time": 0.1, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "y": 0.93, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "curve": "stepped"}, + {"time": 0.5667, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.65, "y": 0.7, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.7333, "curve": "stepped"}, + {"time": 0.8333, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.9167, "y": 0.98, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1} + ] + }, + "@leg-front-right": {"translate": [{"time": 0.75, "curve": 0.306, "c4": 0.8}, {"time": 0.8333, "x": -2.23, "y": -25.27, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1}]}, + "body-fur-16": { "rotate": [ - {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.15, "angle": 14.68, "curve": 0.315, "c4": 0.8}, {"time": 0.2167, "angle": -12.57}, - {"time": 0.3333, "angle": -14.89, "curve": 0.779, "c4": 0.4}, {"time": 0.3667, "angle": 20.64}, {"time": 0.4667, "angle": 25.18, "curve": 0.779, "c4": 0.4}, - {"time": 0.5, "angle": -19.72}, {"time": 0.6, "angle": -22.19, "curve": 0.779, "c4": 0.4}, {"time": 0.6333, "angle": 20.64}, {"time": 0.7333, "angle": 25.18, "curve": 0.779, "c4": 0.4}, - {"time": 0.7667, "angle": -19.72}, {"time": 0.8667, "angle": -22.19, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.9833, "angle": 23.3}, - {"time": 1.05, "angle": 26.39, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1.1333, "angle": -14.8, "curve": 0.154, "c4": 0.9}, {"time": 1.25} + {"angle": -11.41, "curve": 0.296, "c2": 0.5, "c3": 0.629}, {"time": 0.1, "angle": 10.43, "curve": 0.25, "c3": 0.75}, {"time": 0.2, "angle": 34.88, "curve": 0.25, "c3": 0.579}, + {"time": 0.3167, "angle": -33.9, "curve": 0.25, "c3": 0.75}, {"time": 0.4833, "angle": 4.81, "curve": 0.25, "c3": 0.75}, {"time": 0.6667, "angle": -37.99, "curve": 0.25, "c3": 0.75}, + {"time": 0.7667, "angle": 8.02, "curve": 0.25, "c3": 0.75}, {"time": 0.9, "angle": -42.9, "curve": 0.286, "c3": 0.619, "c4": 0.5}, {"time": 1, "angle": 13.84} + ] + }, + "body-fur-15": { + "rotate": [ + {"angle": -5.4, "curve": 0.303, "c2": 0.54, "c3": 0.636}, {"time": 0.0833, "angle": 10.43, "curve": 0.25, "c3": 0.75}, {"time": 0.1833, "angle": 34.88, "curve": 0.25, "c3": 0.579}, + {"time": 0.3, "angle": -33.9, "curve": 0.25, "c3": 0.75}, {"time": 0.4667, "angle": 4.81, "curve": 0.25, "c3": 0.75}, {"time": 0.65, "angle": -37.99, "curve": 0.25, "c3": 0.75}, + {"time": 0.75, "angle": 8.02, "curve": 0.25, "c3": 0.75}, {"time": 0.8833, "angle": -42.9, "curve": 0.279, "c3": 0.612, "c4": 0.55}, {"time": 1, "angle": 13.33} + ] + }, + "body-fur-14": { + "rotate": [ + {"angle": -18.87, "curve": 0.301, "c2": 0.37, "c3": 0.634, "c4": 0.79}, {"time": 0.0833, "angle": 7.42, "curve": 0.322, "c2": 0.62, "c3": 0.655}, {"time": 0.1167, "angle": 10.43}, + {"time": 0.2167, "angle": 34.88, "curve": 0.25, "c3": 0.579}, {"time": 0.3333, "angle": -33.9, "curve": 0.25, "c3": 0.75}, {"time": 0.5, "angle": 4.81, "curve": 0.25, "c3": 0.75}, + {"time": 0.6833, "angle": -37.99, "curve": 0.25, "c3": 0.75}, {"time": 0.7833, "angle": 8.02, "curve": 0.25, "c3": 0.75}, + {"time": 0.9167, "angle": -42.9, "curve": 0.293, "c3": 0.626, "c4": 0.46}, {"time": 1, "angle": 13.33} + ] + }, + "body-fur-13": { + "rotate": [ + {"angle": -5.4, "curve": 0.303, "c2": 0.54, "c3": 0.636}, {"time": 0.0833, "angle": 10.43}, {"time": 0.1833, "angle": 34.88, "curve": 0.25, "c3": 0.579}, + {"time": 0.3, "angle": -33.9, "curve": 0.25, "c3": 0.75}, {"time": 0.4667, "angle": 4.81, "curve": 0.25, "c3": 0.75}, {"time": 0.65, "angle": -37.99, "curve": 0.25, "c3": 0.75}, + {"time": 0.75, "angle": 8.02, "curve": 0.25, "c3": 0.75}, {"time": 0.8833, "angle": -42.9, "curve": 0.279, "c3": 0.612, "c4": 0.55}, {"time": 1, "angle": 11.59} ] }, - "@shadow": { - "translate": [ - {"time": 0.15, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.3333, "x": -132.39, "curve": 0.779, "c4": 0.4}, {"time": 0.3667, "x": -111.3, "curve": "stepped"}, - {"time": 0.8667, "x": -111.3, "curve": 0.315, "c4": 0.8}, {"time": 0.9833, "x": -132.39, "curve": "stepped"}, {"time": 1.05, "x": -132.39, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 1.25} - ], - "scale": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.15, "x": 1.05, "y": 1.05, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.3333, "x": 0.93, "y": 0.93, "curve": 0.779, "c4": 0.4}, - {"time": 0.3667, "x": 0.95, "y": 0.95}, {"time": 0.4667, "x": 0.93, "y": 0.93, "curve": 0.779, "c4": 0.4}, {"time": 0.5}, {"time": 0.6, "x": 1.05, "y": 1.05, "curve": 0.779, "c4": 0.4}, - {"time": 0.6333}, {"time": 0.7333, "x": 0.93, "y": 0.93, "curve": 0.779, "c4": 0.4}, {"time": 0.7667}, {"time": 0.8667, "x": 1.05, "y": 1.05, "curve": 0.315, "c4": 0.8}, - {"time": 0.9833, "x": 1.09, "y": 1.09, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 1.05, "x": 1.11, "y": 1.11, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1.25} + "body-fur-12": { + "rotate": [ + {"angle": -0.06, "curve": 0.309, "c2": 0.57, "c3": 0.643}, {"time": 0.0667, "angle": 10.43, "curve": 0.25, "c3": 0.75}, {"time": 0.1667, "angle": 34.88, "curve": 0.25, "c3": 0.579}, + {"time": 0.2833, "angle": -33.9, "curve": 0.25, "c3": 0.75}, {"time": 0.45, "angle": 4.81, "curve": 0.25, "c3": 0.75}, {"time": 0.6333, "angle": -37.99, "curve": 0.25, "c3": 0.75}, + {"time": 0.7333, "angle": 8.02, "curve": 0.25, "c3": 0.75}, {"time": 0.8667, "angle": -42.9, "curve": 0.273, "c3": 0.606, "c4": 0.6}, {"time": 1, "angle": 8.12} ] }, - "body-fur-under-01": { - "translate": [{"x": -0.14, "y": 0.84}], - "shear": [ - {"x": -4.09, "curve": 0.375, "c2": 0.5, "c3": 0.75}, {"time": 0.0833, "x": 26.91, "curve": 0.25, "c3": 0.228, "c4": 0.99}, {"time": 0.2167, "x": -42.78, "curve": 0.25, "c3": 0.75}, - {"time": 0.3333, "curve": 0.265, "c3": 0.618, "c4": 0.43}, {"time": 0.3667, "x": 7.64, "curve": 0.351, "c2": 0.4, "c3": 0.757}, - {"time": 0.4, "x": 26.91, "curve": 0.25, "c3": 0.228, "c4": 0.99}, {"time": 0.4333, "x": -42.78, "curve": 0.25, "c3": 0.75}, {"time": 0.4833, "curve": "stepped"}, - {"time": 0.5, "curve": 0.265, "c3": 0.618, "c4": 0.43}, {"time": 0.5167, "x": 7.64, "curve": 0.351, "c2": 0.4, "c3": 0.757}, - {"time": 0.55, "x": 26.91, "curve": 0.25, "c3": 0.228, "c4": 0.99}, {"time": 0.6, "x": -42.78, "curve": 0.25, "c3": 0.75}, {"time": 0.65, "curve": "stepped"}, - {"time": 0.6667, "curve": 0.265, "c3": 0.618, "c4": 0.43}, {"time": 0.6833, "x": 7.64, "curve": 0.351, "c2": 0.4, "c3": 0.757}, - {"time": 0.7167, "x": 26.91, "curve": 0.25, "c3": 0.228, "c4": 0.99}, {"time": 0.75, "x": -42.78, "curve": 0.25, "c3": 0.75}, {"time": 0.8, "curve": 0.265, "c3": 0.618, "c4": 0.43}, - {"time": 0.8167, "x": 7.64, "curve": 0.351, "c2": 0.4, "c3": 0.757}, {"time": 0.8333, "curve": 0.265, "c3": 0.618, "c4": 0.43}, - {"time": 0.8833, "x": 7.64, "curve": 0.351, "c2": 0.4, "c3": 0.757}, {"time": 0.9667, "x": 26.91, "curve": 0.25, "c3": 0.228, "c4": 0.99}, - {"time": 1.0833, "x": -42.78, "curve": 0.25, "c3": 0.75}, {"time": 1.2167, "curve": 0.265, "c3": 0.618, "c4": 0.43}, {"time": 1.25, "x": -4.09} + "body-fur-11": { + "rotate": [ + {"angle": 4.36, "curve": 0.316, "c2": 0.6, "c3": 0.649}, {"time": 0.05, "angle": 10.43, "curve": 0.25, "c3": 0.75}, {"time": 0.15, "angle": 34.88, "curve": 0.25, "c3": 0.579}, + {"time": 0.2667, "angle": -33.9, "curve": 0.25, "c3": 0.75}, {"time": 0.4333, "angle": 4.81, "curve": 0.25, "c3": 0.75}, {"time": 0.6167, "angle": -37.99, "curve": 0.25, "c3": 0.75}, + {"time": 0.7167, "angle": 8.02, "curve": 0.25, "c3": 0.75}, {"time": 0.85, "angle": -42.9, "curve": 0.267, "c3": 0.6, "c4": 0.67}, {"time": 1, "angle": 4.23} ] }, - "body-fur-under-02": { - "translate": [{"x": -2.23, "y": 6.28}], - "shear": [ - {"x": -27.8, "curve": 0.375, "c2": 0.62, "c3": 0.716}, {"time": 0.1167, "x": 18.72, "curve": 0.25, "c3": 0.228, "c4": 0.99}, - {"time": 0.2333, "x": -43.03, "curve": 0.243, "c3": 0.68, "c4": 0.71}, {"time": 0.3333, "x": -5.6, "curve": 0.375, "c2": 0.62, "c3": 0.716}, - {"time": 0.35, "curve": 0.297, "c3": 0.634, "c4": 0.37}, {"time": 0.3667, "x": 1.3, "curve": 0.3, "c2": 0.21, "c3": 0.756}, - {"time": 0.4, "x": 18.72, "curve": 0.25, "c3": 0.228, "c4": 0.99}, {"time": 0.45, "x": -43.03, "curve": 0.243, "c3": 0.68, "c4": 0.71}, {"time": 0.4833, "x": -5.6, "curve": "stepped"}, - {"time": 0.5, "x": -5.6, "curve": 0.375, "c2": 0.62, "c3": 0.716}, {"time": 0.5167, "x": 1.3, "curve": 0.3, "c2": 0.21, "c3": 0.756}, - {"time": 0.5667, "x": 18.72, "curve": 0.25, "c3": 0.228, "c4": 0.99}, {"time": 0.6167, "x": -43.03, "curve": 0.243, "c3": 0.68, "c4": 0.71}, {"time": 0.65, "curve": "stepped"}, - {"time": 0.6667, "curve": 0.297, "c3": 0.634, "c4": 0.37}, {"time": 0.6833, "x": 1.3, "curve": 0.3, "c2": 0.21, "c3": 0.756}, - {"time": 0.7167, "x": 18.72, "curve": 0.25, "c3": 0.228, "c4": 0.99}, {"time": 0.7667, "x": -43.03, "curve": 0.243, "c3": 0.68, "c4": 0.71}, - {"time": 0.8, "x": -5.6, "curve": 0.375, "c2": 0.62, "c3": 0.716}, {"time": 0.8167, "x": 1.3, "curve": 0.3, "c2": 0.21, "c3": 0.756}, - {"time": 0.8333, "x": -5.6, "curve": 0.375, "c2": 0.62, "c3": 0.716}, {"time": 0.8667, "curve": 0.297, "c3": 0.634, "c4": 0.37}, - {"time": 0.8833, "x": 1.3, "curve": 0.3, "c2": 0.21, "c3": 0.756}, {"time": 0.9833, "x": 18.72, "curve": 0.25, "c3": 0.228, "c4": 0.99}, - {"time": 1.1167, "x": -43.03, "curve": 0.243, "c3": 0.68, "c4": 0.71}, {"time": 1.2167, "x": -5.6, "curve": 0.375, "c2": 0.62, "c3": 0.716}, - {"time": 1.2333, "curve": 0.297, "c3": 0.634, "c4": 0.37}, {"time": 1.25, "x": -27.8} + "body-fur-10": { + "rotate": [ + {"angle": 7.42, "curve": 0.322, "c2": 0.62, "c3": 0.655}, {"time": 0.0333, "angle": 10.43, "curve": 0.25, "c3": 0.75}, {"time": 0.1333, "angle": 34.88, "curve": 0.25, "c3": 0.579}, + {"time": 0.25, "angle": -33.9, "curve": 0.25, "c3": 0.75}, {"time": 0.4167, "angle": 4.81, "curve": 0.25, "c3": 0.75}, {"time": 0.6, "angle": -37.99, "curve": 0.25, "c3": 0.75}, + {"time": 0.7, "angle": 8.02, "curve": 0.25, "c3": 0.75}, {"time": 0.8333, "angle": -42.9, "curve": 0.261, "c3": 0.594, "c4": 0.75}, {"time": 1, "angle": 0.34} ] }, - "body-fur-under-03": { - "translate": [{"x": -0.78, "y": 3.19}], - "shear": [ - {"x": 22.47, "curve": 0.25, "c3": 0.75}, {"time": 0.1, "x": 19.28, "curve": 0.25, "c3": 0.228, "c4": 0.99}, {"time": 0.2333, "x": -45.7, "curve": 0.244, "c3": 0.7, "c4": 0.79}, - {"time": 0.3333, "x": -3.18, "curve": 0.366, "c2": 0.63, "c3": 0.703}, {"time": 0.35, "curve": 0.284, "c3": 0.625, "c4": 0.38}, - {"time": 0.3667, "x": 2.51, "curve": 0.32, "c2": 0.29, "c3": 0.757}, {"time": 0.4, "x": 19.28, "curve": 0.25, "c3": 0.228, "c4": 0.99}, - {"time": 0.45, "x": -45.7, "curve": 0.244, "c3": 0.7, "c4": 0.79}, {"time": 0.4833, "x": -3.18, "curve": 0.366, "c2": 0.63, "c3": 0.703}, - {"time": 0.5, "curve": 0.284, "c3": 0.625, "c4": 0.38}, {"time": 0.5167, "x": 2.51, "curve": 0.32, "c2": 0.29, "c3": 0.757}, - {"time": 0.5667, "x": 19.28, "curve": 0.25, "c3": 0.228, "c4": 0.99}, {"time": 0.6, "x": -45.7, "curve": 0.244, "c3": 0.7, "c4": 0.79}, {"time": 0.65, "curve": "stepped"}, - {"time": 0.6667, "curve": 0.284, "c3": 0.625, "c4": 0.38}, {"time": 0.6833, "x": 2.51, "curve": 0.32, "c2": 0.29, "c3": 0.757}, - {"time": 0.7167, "x": 19.28, "curve": 0.25, "c3": 0.228, "c4": 0.99}, {"time": 0.7667, "x": -45.7, "curve": 0.244, "c3": 0.7, "c4": 0.79}, - {"time": 0.8, "x": -3.18, "curve": 0.366, "c2": 0.63, "c3": 0.703}, {"time": 0.8167, "x": 2.51, "curve": 0.32, "c2": 0.29, "c3": 0.757}, - {"time": 0.8333, "x": -3.18, "curve": 0.366, "c2": 0.63, "c3": 0.703}, {"time": 0.85, "curve": 0.284, "c3": 0.625, "c4": 0.38}, - {"time": 0.8833, "x": 2.51, "curve": 0.32, "c2": 0.29, "c3": 0.757}, {"time": 0.9833, "x": 19.28, "curve": 0.25, "c3": 0.228, "c4": 0.99}, - {"time": 1.1, "x": -45.7, "curve": 0.244, "c3": 0.7, "c4": 0.79}, {"time": 1.2167, "x": -3.18, "curve": 0.366, "c2": 0.63, "c3": 0.703}, - {"time": 1.2333, "curve": 0.284, "c3": 0.625, "c4": 0.38}, {"time": 1.25, "x": 22.47} + "body-fur-09": { + "rotate": [ + {"angle": -6.38, "curve": 0.314, "c2": 0.4, "c3": 0.648, "c4": 0.77}, {"time": 0.05, "angle": 7.42, "curve": 0.322, "c2": 0.62, "c3": 0.655}, {"time": 0.0833, "angle": 10.43}, + {"time": 0.1833, "angle": 34.88, "curve": 0.25, "c3": 0.579}, {"time": 0.3, "angle": -33.9, "curve": 0.25, "c3": 0.75}, {"time": 0.4667, "angle": 4.81, "curve": 0.25, "c3": 0.75}, + {"time": 0.65, "angle": -37.99, "curve": 0.25, "c3": 0.75}, {"time": 0.75, "angle": 8.02, "curve": 0.25, "c3": 0.75}, + {"time": 0.8833, "angle": -42.9, "curve": 0.279, "c3": 0.612, "c4": 0.55}, {"time": 1, "angle": 6.86} ] }, - "body-fur-under-04": { - "translate": [{"x": -0.33, "y": 3.2}], - "shear": [ - {"x": 10.24, "curve": 0.36, "c2": 0.64, "c3": 0.695}, {"time": 0.1333, "x": 13.82, "curve": 0.25, "c3": 0.228, "c4": 0.99}, - {"time": 0.25, "x": -39.88, "curve": 0.243, "c3": 0.649, "c4": 0.6}, {"time": 0.3333, "x": -22.71, "curve": 0.382, "c2": 0.57, "c3": 0.735}, - {"time": 0.3667, "x": -15.91, "curve": 0.25, "c3": 0.75}, {"time": 0.4, "x": 13.82, "curve": 0.25, "c3": 0.228, "c4": 0.99}, - {"time": 0.45, "x": -39.88, "curve": 0.243, "c3": 0.649, "c4": 0.6}, {"time": 0.4833, "x": -22.71, "curve": "stepped"}, - {"time": 0.5, "x": -22.71, "curve": 0.382, "c2": 0.57, "c3": 0.735}, {"time": 0.5167, "x": -15.91, "curve": 0.25, "c3": 0.75}, - {"time": 0.5667, "x": 13.82, "curve": 0.25, "c3": 0.228, "c4": 0.99}, {"time": 0.6167, "x": -39.88, "curve": 0.243, "c3": 0.649, "c4": 0.6}, - {"time": 0.65, "x": -22.71, "curve": "stepped"}, {"time": 0.6667, "x": -22.71, "curve": 0.382, "c2": 0.57, "c3": 0.735}, {"time": 0.6833, "x": -15.91, "curve": 0.25, "c3": 0.75}, - {"time": 0.7167, "x": 13.82, "curve": 0.25, "c3": 0.228, "c4": 0.99}, {"time": 0.7667, "x": -39.88, "curve": 0.243, "c3": 0.649, "c4": 0.6}, - {"time": 0.8, "x": -22.71, "curve": 0.382, "c2": 0.57, "c3": 0.735}, {"time": 0.8167, "x": -15.91, "curve": 0.25, "c3": 0.75}, - {"time": 0.8333, "x": -22.71, "curve": 0.382, "c2": 0.57, "c3": 0.735}, {"time": 0.8833, "x": -15.91, "curve": 0.25, "c3": 0.75}, - {"time": 1, "x": 13.82, "curve": 0.25, "c3": 0.228, "c4": 0.99}, {"time": 1.1333, "x": -39.88, "curve": 0.243, "c3": 0.649, "c4": 0.6}, - {"time": 1.2167, "x": -22.71, "curve": 0.382, "c2": 0.57, "c3": 0.735}, {"time": 1.25, "x": 10.24} + "body-fur-08": { + "rotate": [ + {"angle": 4.36, "curve": 0.316, "c2": 0.6, "c3": 0.649}, {"time": 0.05, "angle": 10.43}, {"time": 0.15, "angle": 34.88, "curve": 0.25, "c3": 0.579}, + {"time": 0.2667, "angle": -33.9, "curve": 0.25, "c3": 0.75}, {"time": 0.4333, "angle": 4.81, "curve": 0.25, "c3": 0.75}, {"time": 0.6167, "angle": -37.99, "curve": 0.25, "c3": 0.75}, + {"time": 0.7167, "angle": 8.02, "curve": 0.25, "c3": 0.75}, {"time": 0.85, "angle": -42.9, "curve": 0.267, "c3": 0.6, "c4": 0.67}, {"time": 1, "angle": -0.91} ] }, - "body-fur-under-05": { - "translate": [{"x": 0.53, "y": 14.98}], - "shear": [ - {"x": 3.7, "curve": 0.382, "c2": 0.57, "c3": 0.737}, {"time": 0.0167, "x": -12.53, "curve": 0.25, "c3": 0.75}, {"time": 0.15, "x": 6.85, "curve": 0.25, "c3": 0.228, "c4": 0.99}, - {"time": 0.2667, "x": -44.3, "curve": 0.248, "c3": 0.628, "c4": 0.52}, {"time": 0.3333, "x": -27.02, "curve": 0.356, "c2": 0.41, "c3": 0.707, "c4": 0.81}, - {"time": 0.3667, "x": -12.53, "curve": 0.25, "c3": 0.75}, {"time": 0.4167, "x": 6.85, "curve": 0.25, "c3": 0.228, "c4": 0.99}, - {"time": 0.4667, "x": -44.3, "curve": 0.248, "c3": 0.628, "c4": 0.52}, {"time": 0.4833, "x": -27.02, "curve": "stepped"}, - {"time": 0.5, "x": -27.02, "curve": 0.356, "c2": 0.41, "c3": 0.707, "c4": 0.81}, {"time": 0.5167, "x": -14.63, "curve": 0.366, "c2": 0.63, "c3": 0.703}, - {"time": 0.5333, "x": -12.53, "curve": 0.25, "c3": 0.75}, {"time": 0.5667, "x": 6.85, "curve": 0.25, "c3": 0.228, "c4": 0.99}, - {"time": 0.6167, "x": -44.3, "curve": 0.248, "c3": 0.628, "c4": 0.52}, {"time": 0.65, "x": -27.02, "curve": "stepped"}, - {"time": 0.6667, "x": -27.02, "curve": 0.356, "c2": 0.41, "c3": 0.707, "c4": 0.81}, {"time": 0.6833, "x": -12.53, "curve": 0.25, "c3": 0.75}, - {"time": 0.7333, "x": 6.85, "curve": 0.25, "c3": 0.228, "c4": 0.99}, {"time": 0.7833, "x": -44.3, "curve": 0.248, "c3": 0.628, "c4": 0.52}, - {"time": 0.8, "x": -27.02, "curve": 0.356, "c2": 0.41, "c3": 0.707, "c4": 0.81}, {"time": 0.8167, "x": -14.63, "curve": 0.366, "c2": 0.63, "c3": 0.703}, - {"time": 0.8333, "x": -27.02, "curve": 0.356, "c2": 0.41, "c3": 0.707, "c4": 0.81}, {"time": 0.8833, "x": -14.63, "curve": 0.366, "c2": 0.63, "c3": 0.703}, - {"time": 0.9, "x": -12.53, "curve": 0.25, "c3": 0.75}, {"time": 1.0167, "x": 6.85, "curve": 0.25, "c3": 0.228, "c4": 0.99}, - {"time": 1.15, "x": -44.3, "curve": 0.248, "c3": 0.628, "c4": 0.52}, {"time": 1.2167, "x": -27.02, "curve": 0.356, "c2": 0.41, "c3": 0.707, "c4": 0.81}, {"time": 1.25, "x": 3.7} + "body-fur-07": { + "rotate": [ + {"angle": 9.41, "curve": 0.328, "c2": 0.65, "c3": 0.661}, {"time": 0.0167, "angle": 10.43, "curve": 0.25, "c3": 0.75}, {"time": 0.1167, "angle": 34.88, "curve": 0.25, "c3": 0.579}, + {"time": 0.2333, "angle": -33.9, "curve": 0.25, "c3": 0.75}, {"time": 0.4, "angle": 4.81, "curve": 0.25, "c3": 0.75}, {"time": 0.5833, "angle": -37.99, "curve": 0.25, "c3": 0.75}, + {"time": 0.6833, "angle": 8.02, "curve": 0.25, "c3": 0.75}, {"time": 0.8167, "angle": -42.9, "curve": 0.255, "c3": 0.588, "c4": 0.86}, {"time": 1, "angle": 2.91} ] }, - "body-braid-06": { + "body-fur-06": { "rotate": [ - {"angle": -20.59, "curve": 0.352, "c2": 0.41, "c3": 0.689, "c4": 0.75}, {"time": 0.0833, "curve": 0.25, "c3": 0.75}, - {"time": 0.2167, "angle": -28.99, "curve": 0.25, "c3": 0.228, "c4": 0.99}, {"time": 0.3333, "angle": 9.53, "curve": 0.297, "c3": 0.634, "c4": 0.37}, - {"time": 0.35, "angle": 8.86, "curve": 0.304, "c2": 0.22, "c3": 0.644, "c4": 0.58}, {"time": 0.3667, "angle": 6.87, "curve": 0.351, "c2": 0.4, "c3": 0.757}, - {"time": 0.4, "curve": 0.25, "c3": 0.75}, {"time": 0.4333, "angle": -28.99, "curve": 0.25, "c3": 0.228, "c4": 0.99}, - {"time": 0.4833, "angle": 9.53, "curve": 0.297, "c3": 0.634, "c4": 0.37}, {"time": 0.5, "angle": 8.86, "curve": 0.304, "c2": 0.22, "c3": 0.644, "c4": 0.58}, - {"time": 0.5167, "angle": 6.87, "curve": 0.351, "c2": 0.4, "c3": 0.757}, {"time": 0.55, "curve": 0.25, "c3": 0.75}, - {"time": 0.6, "angle": -28.99, "curve": 0.25, "c3": 0.228, "c4": 0.99}, {"time": 0.65, "angle": 8.86, "curve": "stepped"}, - {"time": 0.6667, "angle": 8.86, "curve": 0.304, "c2": 0.22, "c3": 0.644, "c4": 0.58}, {"time": 0.6833, "angle": 6.87, "curve": 0.351, "c2": 0.4, "c3": 0.757}, - {"time": 0.7167, "curve": 0.25, "c3": 0.75}, {"time": 0.75, "angle": -28.99, "curve": 0.25, "c3": 0.228, "c4": 0.99}, - {"time": 0.8, "angle": 9.53, "curve": 0.297, "c3": 0.634, "c4": 0.37}, {"time": 0.8167, "angle": 6.87, "curve": 0.351, "c2": 0.4, "c3": 0.757}, - {"time": 0.8333, "angle": 9.53, "curve": 0.297, "c3": 0.634, "c4": 0.37}, {"time": 0.85, "angle": 8.86, "curve": 0.304, "c2": 0.22, "c3": 0.644, "c4": 0.58}, - {"time": 0.8833, "angle": 6.87, "curve": 0.351, "c2": 0.4, "c3": 0.757}, {"time": 0.9667, "curve": 0.25, "c3": 0.75}, - {"time": 1.0833, "angle": -28.99, "curve": 0.25, "c3": 0.228, "c4": 0.99}, {"time": 1.2167, "angle": 9.53, "curve": 0.297, "c3": 0.634, "c4": 0.37}, - {"time": 1.2333, "angle": 8.86, "curve": 0.304, "c2": 0.22, "c3": 0.644, "c4": 0.58}, {"time": 1.25, "angle": -20.59} + {"angle": -0.95, "curve": 0.321, "c2": 0.4, "c3": 0.654, "c4": 0.75}, {"time": 0.0333, "angle": 7.42, "curve": 0.322, "c2": 0.62, "c3": 0.655}, {"time": 0.0667, "angle": 10.43}, + {"time": 0.1667, "angle": 34.88, "curve": 0.25, "c3": 0.579}, {"time": 0.2833, "angle": -33.9, "curve": 0.25, "c3": 0.75}, {"time": 0.45, "angle": 4.81, "curve": 0.25, "c3": 0.75}, + {"time": 0.6333, "angle": -37.99, "curve": 0.25, "c3": 0.75}, {"time": 0.7333, "angle": 8.02, "curve": 0.25, "c3": 0.75}, + {"time": 0.8667, "angle": -42.9, "curve": 0.273, "c3": 0.606, "c4": 0.6}, {"time": 1, "angle": 13.33} ] }, - "body-braid-05": { + "body-fur-05": { "rotate": [ - {"angle": -8.3, "curve": 0.294, "c3": 0.631, "c4": 0.37}, {"time": 0.05, "curve": 0.25, "c3": 0.75}, {"time": 0.1833, "angle": -10.49, "curve": 0.25, "c3": 0.228, "c4": 0.99}, - {"time": 0.3, "angle": 8.22, "curve": 0.258, "c3": 0.619, "c4": 0.45}, {"time": 0.35, "angle": 5.2, "curve": 0.33, "c2": 0.32, "c3": 0.67, "c4": 0.68}, - {"time": 0.3667, "angle": 3.03, "curve": 0.381, "c2": 0.55, "c3": 0.742}, {"time": 0.3833, "curve": 0.25, "c3": 0.75}, - {"time": 0.4333, "angle": -10.49, "curve": 0.25, "c3": 0.228, "c4": 0.99}, {"time": 0.4833, "angle": 8.22, "curve": 0.258, "c3": 0.619, "c4": 0.45}, - {"time": 0.5, "angle": 5.2, "curve": 0.33, "c2": 0.32, "c3": 0.67, "c4": 0.68}, {"time": 0.5167, "angle": 3.03, "curve": 0.381, "c2": 0.55, "c3": 0.742}, - {"time": 0.5333, "curve": 0.25, "c3": 0.75}, {"time": 0.5833, "angle": -10.49, "curve": 0.25, "c3": 0.228, "c4": 0.99}, - {"time": 0.6333, "angle": 8.22, "curve": 0.258, "c3": 0.619, "c4": 0.45}, {"time": 0.65, "angle": 5.2, "curve": "stepped"}, - {"time": 0.6667, "angle": 5.2, "curve": 0.33, "c2": 0.32, "c3": 0.67, "c4": 0.68}, {"time": 0.6833, "angle": 3.03, "curve": 0.381, "c2": 0.55, "c3": 0.742}, - {"time": 0.7, "curve": 0.25, "c3": 0.75}, {"time": 0.75, "angle": -10.49, "curve": 0.25, "c3": 0.228, "c4": 0.99}, {"time": 0.8, "angle": 8.22, "curve": 0.258, "c3": 0.619, "c4": 0.45}, - {"time": 0.8167, "angle": 3.03, "curve": 0.381, "c2": 0.55, "c3": 0.742}, {"time": 0.85, "angle": 5.2, "curve": 0.33, "c2": 0.32, "c3": 0.67, "c4": 0.68}, - {"time": 0.8833, "angle": 3.03, "curve": 0.381, "c2": 0.55, "c3": 0.742}, {"time": 0.9333, "curve": 0.25, "c3": 0.75}, - {"time": 1.05, "angle": -10.49, "curve": 0.25, "c3": 0.228, "c4": 0.99}, {"time": 1.1833, "angle": 8.22, "curve": 0.258, "c3": 0.619, "c4": 0.45}, - {"time": 1.2333, "angle": 5.2, "curve": 0.33, "c2": 0.32, "c3": 0.67, "c4": 0.68}, {"time": 1.25, "angle": -8.3} + {"angle": 7.42, "curve": 0.322, "c2": 0.62, "c3": 0.655}, {"time": 0.0333, "angle": 10.43}, {"time": 0.1333, "angle": 34.88, "curve": 0.25, "c3": 0.579}, + {"time": 0.25, "angle": -33.9, "curve": 0.25, "c3": 0.75}, {"time": 0.4167, "angle": 4.81, "curve": 0.25, "c3": 0.75}, {"time": 0.6, "angle": -37.99, "curve": 0.25, "c3": 0.75}, + {"time": 0.7, "angle": 8.02, "curve": 0.25, "c3": 0.75}, {"time": 0.8333, "angle": -42.9, "curve": 0.261, "c3": 0.594, "c4": 0.75}, {"time": 1, "angle": 6.86} ] }, - "body-braid-04": { + "body-fur-04": { "rotate": [ - {"angle": -9.29, "curve": 0.323, "c2": 0.3, "c3": 0.66, "c4": 0.65}, {"time": 0.0167, "curve": 0.25, "c3": 0.75}, {"time": 0.15, "angle": 2.63, "curve": 0.25, "c3": 0.228, "c4": 0.99}, - {"time": 0.2667, "angle": 16.91, "curve": 0.243, "c3": 0.649, "c4": 0.6}, {"time": 0.35, "angle": 4.8, "curve": 0.356, "c2": 0.42, "c3": 0.696, "c4": 0.78}, - {"time": 0.3667, "curve": 0.25, "c3": 0.75}, {"time": 0.4167, "angle": 2.63, "curve": 0.25, "c3": 0.228, "c4": 0.99}, - {"time": 0.4667, "angle": 16.91, "curve": 0.243, "c3": 0.649, "c4": 0.6}, {"time": 0.5, "angle": 4.8, "curve": 0.356, "c2": 0.42, "c3": 0.696, "c4": 0.78}, - {"time": 0.5167, "angle": 1.11, "curve": 0.366, "c2": 0.63, "c3": 0.703}, {"time": 0.5333, "curve": 0.25, "c3": 0.75}, - {"time": 0.5667, "angle": 2.63, "curve": 0.25, "c3": 0.228, "c4": 0.99}, {"time": 0.6167, "angle": 16.91, "curve": 0.243, "c3": 0.649, "c4": 0.6}, - {"time": 0.65, "angle": 4.8, "curve": "stepped"}, {"time": 0.6667, "angle": 4.8, "curve": 0.356, "c2": 0.42, "c3": 0.696, "c4": 0.78}, {"time": 0.6833, "curve": 0.25, "c3": 0.75}, - {"time": 0.7333, "angle": 2.63, "curve": 0.25, "c3": 0.228, "c4": 0.99}, {"time": 0.7833, "angle": 16.91, "curve": 0.243, "c3": 0.649, "c4": 0.6}, - {"time": 0.8167, "angle": 1.11, "curve": 0.366, "c2": 0.63, "c3": 0.703}, {"time": 0.85, "angle": 4.8, "curve": 0.356, "c2": 0.42, "c3": 0.696, "c4": 0.78}, - {"time": 0.8833, "angle": 1.11, "curve": 0.366, "c2": 0.63, "c3": 0.703}, {"time": 0.9, "curve": 0.25, "c3": 0.75}, - {"time": 1.0167, "angle": -35.27, "curve": 0.25, "c3": 0.228, "c4": 0.99}, {"time": 1.15, "angle": 16.91, "curve": 0.243, "c3": 0.649, "c4": 0.6}, - {"time": 1.2333, "angle": 4.8, "curve": 0.356, "c2": 0.42, "c3": 0.696, "c4": 0.78}, {"time": 1.25, "angle": -9.29} + {"angle": -6.38, "curve": 0.314, "c2": 0.4, "c3": 0.648, "c4": 0.77}, {"time": 0.05, "angle": 7.42, "curve": 0.322, "c2": 0.62, "c3": 0.655}, {"time": 0.0833, "angle": 10.43}, + {"time": 0.1833, "angle": 34.88, "curve": 0.25, "c3": 0.579}, {"time": 0.3, "angle": -33.9, "curve": 0.25, "c3": 0.75}, {"time": 0.4667, "angle": 4.81, "curve": 0.25, "c3": 0.75}, + {"time": 0.65, "angle": -37.99, "curve": 0.25, "c3": 0.75}, {"time": 0.75, "angle": 8.02, "curve": 0.25, "c3": 0.75}, + {"time": 0.8833, "angle": -42.9, "curve": 0.279, "c3": 0.612, "c4": 0.55}, {"time": 1, "angle": 12.53} ] }, - "body-braid-03": { + "body-fur-03": { "rotate": [ - {"angle": -1.71, "curve": 0.337, "c2": 0.34, "c3": 0.673, "c4": 0.69}, {"time": 0.1167, "angle": 2.63, "curve": 0.25, "c3": 0.228, "c4": 0.99}, - {"time": 0.25, "angle": 23.44, "curve": 0.244, "c3": 0.7, "c4": 0.79}, {"time": 0.35, "curve": 0.313, "c3": 0.648, "c4": 0.35}, - {"time": 0.3667, "angle": 0.06, "curve": 0.277, "c2": 0.12, "c3": 0.754}, {"time": 0.4, "angle": 2.63, "curve": 0.25, "c3": 0.228, "c4": 0.99}, - {"time": 0.45, "angle": 23.44, "curve": 0.244, "c3": 0.7, "c4": 0.79}, {"time": 0.5, "angle": 1.63, "curve": 0.366, "c2": 0.63, "c3": 0.703}, - {"time": 0.5167, "angle": 0.06, "curve": 0.277, "c2": 0.12, "c3": 0.754}, {"time": 0.5667, "angle": 2.63, "curve": 0.25, "c3": 0.228, "c4": 0.99}, - {"time": 0.6167, "angle": 23.44, "curve": 0.244, "c3": 0.7, "c4": 0.79}, {"time": 0.65, "angle": 1.63, "curve": 0.366, "c2": 0.63, "c3": 0.703}, - {"time": 0.6667, "curve": 0.313, "c3": 0.648, "c4": 0.35}, {"time": 0.6833, "angle": 0.06, "curve": 0.277, "c2": 0.12, "c3": 0.754}, - {"time": 0.7167, "angle": 2.63, "curve": 0.25, "c3": 0.228, "c4": 0.99}, {"time": 0.7667, "angle": 23.44, "curve": 0.244, "c3": 0.7, "c4": 0.79}, - {"time": 0.8167, "angle": 0.06, "curve": 0.277, "c2": 0.12, "c3": 0.754}, {"time": 0.85, "angle": 1.63, "curve": 0.366, "c2": 0.63, "c3": 0.703}, - {"time": 0.8667, "curve": 0.313, "c3": 0.648, "c4": 0.35}, {"time": 0.8833, "angle": 0.06, "curve": 0.277, "c2": 0.12, "c3": 0.754}, - {"time": 1, "angle": 2.63, "curve": 0.25, "c3": 0.228, "c4": 0.99}, {"time": 1.1167, "angle": 23.44, "curve": 0.244, "c3": 0.7, "c4": 0.79}, - {"time": 1.2333, "angle": 1.63, "curve": 0.366, "c2": 0.63, "c3": 0.703}, {"time": 1.25, "angle": -1.71} + {"angle": 4.36, "curve": 0.316, "c2": 0.6, "c3": 0.649}, {"time": 0.05, "angle": 10.43}, {"time": 0.15, "angle": 34.88, "curve": 0.25, "c3": 0.579}, + {"time": 0.2667, "angle": -33.9, "curve": 0.25, "c3": 0.75}, {"time": 0.4333, "angle": 4.81, "curve": 0.25, "c3": 0.75}, {"time": 0.6167, "angle": -37.99, "curve": 0.25, "c3": 0.75}, + {"time": 0.7167, "angle": 8.02, "curve": 0.25, "c3": 0.75}, {"time": 0.85, "angle": -42.9, "curve": 0.267, "c3": 0.6, "c4": 0.67}, {"time": 1, "angle": 5.54} ] }, - "body-braid-02": { + "body-fur-02": { "rotate": [ - {"angle": 3.5, "curve": 0.348, "c2": 0.38, "c3": 0.685, "c4": 0.73}, {"time": 0.1, "angle": 2.63, "curve": 0.25, "c3": 0.228, "c4": 0.99}, - {"time": 0.2333, "angle": 43.23, "curve": 0.25, "c3": 0.75}, {"time": 0.35, "curve": 0.284, "c3": 0.625, "c4": 0.38}, - {"time": 0.3667, "angle": 0.34, "curve": 0.32, "c2": 0.29, "c3": 0.757}, {"time": 0.4, "angle": 2.63, "curve": 0.25, "c3": 0.228, "c4": 0.99}, - {"time": 0.45, "angle": 43.23, "curve": 0.25, "c3": 0.75}, {"time": 0.5, "curve": 0.284, "c3": 0.625, "c4": 0.38}, - {"time": 0.5167, "angle": 0.34, "curve": 0.32, "c2": 0.29, "c3": 0.757}, {"time": 0.5667, "angle": 2.63, "curve": 0.25, "c3": 0.228, "c4": 0.99}, - {"time": 0.6, "angle": 19.03, "curve": 0.25, "c3": 0.75}, {"time": 0.65, "curve": "stepped"}, {"time": 0.6667, "curve": 0.284, "c3": 0.625, "c4": 0.38}, - {"time": 0.6833, "angle": 0.34, "curve": 0.32, "c2": 0.29, "c3": 0.757}, {"time": 0.7167, "angle": 2.63, "curve": 0.25, "c3": 0.228, "c4": 0.99}, - {"time": 0.7667, "angle": 43.23, "curve": 0.25, "c3": 0.75}, {"time": 0.8167, "angle": 0.34, "curve": 0.32, "c2": 0.29, "c3": 0.757}, - {"time": 0.85, "curve": 0.284, "c3": 0.625, "c4": 0.38}, {"time": 0.8833, "angle": 0.34, "curve": 0.32, "c2": 0.29, "c3": 0.757}, - {"time": 0.9833, "angle": 2.63, "curve": 0.25, "c3": 0.228, "c4": 0.99}, {"time": 1.1, "angle": 25.65, "curve": 0.25, "c3": 0.75}, - {"time": 1.2333, "curve": 0.284, "c3": 0.625, "c4": 0.38}, {"time": 1.25, "angle": 3.5} + {"angle": -12.43, "curve": 0.308, "c2": 0.39, "c3": 0.641, "c4": 0.78}, {"time": 0.0667, "angle": 7.42, "curve": 0.322, "c2": 0.62, "c3": 0.655}, + {"time": 0.1, "angle": 10.43, "curve": 0.25, "c3": 0.75}, {"time": 0.2, "angle": 34.88, "curve": 0.25, "c3": 0.579}, {"time": 0.3167, "angle": -33.9, "curve": 0.25, "c3": 0.75}, + {"time": 0.4833, "angle": 4.81, "curve": 0.25, "c3": 0.75}, {"time": 0.6667, "angle": -37.99, "curve": 0.25, "c3": 0.75}, {"time": 0.7667, "angle": 8.02, "curve": 0.25, "c3": 0.75}, + {"time": 0.9, "angle": -42.9, "curve": 0.286, "c3": 0.619, "c4": 0.5}, {"time": 1, "angle": 13.84} ] }, - "body-braid-01": {"rotate": [{"angle": 2.31}]} - }, - "events": [{"time": 0.3333, "name": "start-attack"}, {"time": 0.3667, "name": "hit"}, {"time": 0.5, "name": "hit"}, {"time": 0.6333, "name": "hit"}, {"time": 0.7667, "name": "hit"}] + "body-fur-01": { + "rotate": [ + {"angle": -0.06, "curve": 0.309, "c2": 0.57, "c3": 0.643}, {"time": 0.0667, "angle": 10.43}, {"time": 0.1667, "angle": 34.88, "curve": 0.25, "c3": 0.579}, + {"time": 0.2833, "angle": -33.9, "curve": 0.25, "c3": 0.75}, {"time": 0.45, "angle": 4.81, "curve": 0.25, "c3": 0.75}, {"time": 0.6333, "angle": -37.99, "curve": 0.25, "c3": 0.75}, + {"time": 0.7333, "angle": 8.02, "curve": 0.25, "c3": 0.75}, {"time": 0.8667, "angle": -42.9, "curve": 0.273, "c3": 0.606, "c4": 0.6}, {"time": 1, "angle": 10.51} + ] + } + } }, - "1278187577": { - "slots": {"eyes": {"attachment": [{"time": 1, "name": "eyes-shut"}, {"time": 1.0833, "name": "eyes"}]}}, + "912481638": { + "slots": { + "eyes": {"attachment": [{"time": 0.0167, "name": "eyes-shut"}, {"time": 0.3, "name": "eyes-angry"}, {"time": 0.4833, "name": "eyes"}]}, + "mouth": {"attachment": [{"time": 0.0167, "name": "mouth-bite"}, {"time": 0.4833, "name": "mouth"}]} + }, "bones": { "@pivot-back": { "rotate": [ - {"curve": 0.313, "c3": 0.699}, {"time": 0.3333, "angle": 2.04, "curve": 0.313, "c3": 0.699}, {"time": 0.6667, "curve": 0.313, "c3": 0.699}, - {"time": 1, "angle": 1.79, "curve": 0.313, "c3": 0.699}, {"time": 1.3333} + {"curve": "stepped"}, {"time": 0.0167, "angle": 8}, {"time": 0.2333, "angle": 10, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "angle": -5, "curve": 0.315, "c4": 0.8}, + {"time": 0.4833, "angle": 5, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5833} ], "translate": [ - {"curve": 0.313, "c3": 0.699}, {"time": 0.3333, "y": -6.53, "curve": 0.313, "c3": 0.699}, {"time": 0.6667, "curve": 0.313, "c3": 0.699}, - {"time": 1, "y": -8.86, "curve": 0.313, "c3": 0.699}, {"time": 1.3333} + {"curve": "stepped"}, {"time": 0.0167, "x": 29.16, "y": 6.28}, {"time": 0.2667, "x": 18.48, "y": 18.85, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.3833, "x": -1.17, "y": 18.85, "curve": 0.315, "c4": 0.8}, {"time": 0.4833} + ] + }, + "@shadow": { + "translate": [ + {"curve": "stepped"}, {"time": 0.0167, "x": 33.22}, {"time": 0.2667, "x": 61.08, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3833, "x": 9.02, "curve": 0.315, "c4": 0.8}, + {"time": 0.4833} ], - "scale": [{"curve": 0.313, "c3": 0.699}, {"time": 0.6667, "y": 0.99, "curve": 0.313, "c3": 0.699}, {"time": 1.3333}] + "scale": [ + {"curve": "stepped"}, {"time": 0.0167, "x": 1.1, "y": 1.1, "curve": "stepped"}, {"time": 0.2667, "x": 1.1, "y": 1.1, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.3833, "x": 0.98, "y": 0.98, "curve": 0.315, "c4": 0.8}, {"time": 0.4833, "x": 1.1, "y": 1.1, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5833} + ] }, - "@leg-front-right": { + "@pivot-main": { "translate": [ - {"curve": 0.313, "c3": 0.699}, {"time": 0.3333, "x": 0.02, "y": -16.89, "curve": 0.313, "c3": 0.699}, {"time": 0.6667, "x": -0.04, "y": 2.46, "curve": 0.313, "c3": 0.699}, - {"time": 1, "x": -0.02, "y": -18.9, "curve": 0.313, "c3": 0.699}, {"time": 1.3333} + {"curve": "stepped"}, {"time": 0.0167, "x": 33.18}, {"time": 0.2667, "x": 61.52, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3833, "x": 20.27, "y": 27.91, "curve": 0.315, "c4": 0.8}, + {"time": 0.4833} + ] + }, + "tail": { + "rotate": [ + {"curve": "stepped"}, {"time": 0.0167, "angle": -18.65}, {"time": 0.2333, "angle": -21.65, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.3333, "angle": -13.3, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.45, "angle": 12.04, "curve": 0.154, "c4": 0.9}, + {"time": 0.5167, "angle": -9.14, "curve": 0.161, "c3": 0.854}, {"time": 0.5833} + ] + }, + "leg-front-right-IK": { + "translate": [ + {"time": 0.2333, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "x": 22.26, "y": 54.13}, {"time": 0.3833, "x": 28.04, "y": 49.32, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.45} ] }, "@leg-front-left": { "translate": [ - {"curve": 0.313, "c3": 0.699}, {"time": 0.3333, "x": 0.22, "y": -5.13, "curve": 0.313, "c3": 0.699}, {"time": 0.6667, "x": -0.03, "y": 1.81, "curve": 0.313, "c3": 0.699}, - {"time": 1, "x": 0.2, "y": -7.06, "curve": 0.313, "c3": 0.699}, {"time": 1.3333} - ], - "scale": [ - {"curve": 0.313, "c3": 0.699}, {"time": 0.3333, "x": 0.905, "curve": 0.313, "c3": 0.699}, {"time": 0.6667, "curve": 0.313, "c3": 0.699}, - {"time": 1, "x": 0.905, "curve": 0.313, "c3": 0.699}, {"time": 1.3333} + {"curve": "stepped"}, {"time": 0.0167, "x": -0.45, "y": -3.93}, {"time": 0.2333, "x": -0.82, "y": -2.61}, {"time": 0.3333, "x": -5.6, "y": -0.89, "curve": 0.617, "c4": 0.6}, + {"time": 0.45, "x": -1.09, "y": -14.69, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5833} + ] + }, + "leg-back-left-IK": { + "translate": [ + {"curve": "stepped"}, {"time": 0.0167, "x": 50.74, "y": 0.9, "curve": "stepped"}, {"time": 0.2, "x": 50.74, "y": 0.9, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.25, "x": 12.5, "y": 6.45, "curve": 0, "c2": 0.8, "c3": 0.15}, {"time": 0.3667, "x": 5.47, "y": 26.12, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.4833} + ] + }, + "@leg-front-right": { + "translate": [ + {"time": 0.0167}, {"time": 0.3333, "x": -7.53, "y": 2.3, "curve": 0, "c2": 0.1, "c3": 0.853}, {"time": 0.45, "x": 0.15, "y": -4.26, "curve": 0.159, "c3": 0.853}, + {"time": 0.4833, "x": -2.34, "y": -28.14, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5833} ] }, "@leg-back-left": { "translate": [ - {"curve": 0.313, "c3": 0.699}, {"time": 0.3333, "x": 0.22, "y": -4.11, "curve": 0.313, "c3": 0.699}, {"time": 0.6667, "x": -0.03, "y": 1.69, "curve": 0.313, "c3": 0.699}, - {"time": 1, "x": 0.2, "y": -5.68, "curve": 0.313, "c3": 0.699}, {"time": 1.3333} - ], - "scale": [ - {"curve": 0.313, "c3": 0.699}, {"time": 0.3333, "x": 0.943, "curve": 0.313, "c3": 0.699}, {"time": 0.6667, "curve": 0.313, "c3": 0.699}, - {"time": 1, "x": 0.943, "curve": 0.313, "c3": 0.699}, {"time": 1.3333} + {"curve": "stepped"}, {"time": 0.0167, "x": 18.74, "y": 14.65, "curve": "stepped"}, {"time": 0.1667, "x": 18.74, "y": 14.65, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.4833} ] }, - "@pivot-main": { - "scale": [ - {"curve": 0.313, "c3": 0.699}, {"time": 0.3333, "y": 0.98, "curve": 0.313, "c3": 0.699}, {"time": 0.6667, "curve": 0.313, "c3": 0.699}, - {"time": 1, "y": 0.98, "curve": 0.313, "c3": 0.699}, {"time": 1.3333} + "leg-front-left-IK": { + "translate": [ + {"curve": "stepped"}, {"time": 0.0167, "x": 38.52}, {"time": 0.2333, "x": 38.87, "curve": 0, "c2": 0.3, "c3": 0.54}, {"time": 0.3333, "x": 26.12, "y": 38.71}, + {"time": 0.3833, "x": 12.33, "y": 29.93, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.45} ] }, - "tail": { - "rotate": [{"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "angle": 4.54, "curve": 0.313, "c3": 0.699}, {"time": 1, "angle": -9.06, "curve": 0.313, "c3": 0.699}, {"time": 1.3333}] + "body-fur-16": { + "rotate": [ + {"angle": -12.13, "curve": 0.381, "c2": 0.55, "c3": 0.742}, {"time": 0.1, "curve": 0.25, "c3": 0.75}, {"time": 0.2, "angle": 37.82, "curve": 0.325, "c3": 0.75}, + {"time": 0.4333, "angle": -32.98, "curve": 0.245, "c3": 0.637, "c4": 0.56}, {"time": 0.5833, "angle": 13.84} + ] }, - "back": { - "rotate": [{"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "angle": -4.27, "curve": 0.313, "c3": 0.699}, {"time": 1, "angle": 2.83, "curve": 0.313, "c3": 0.699}, {"time": 1.3333}] + "body-fur-15": { + "rotate": [ + {"angle": -9.36, "curve": 0.382, "c2": 0.57, "c3": 0.735}, {"time": 0.0833, "curve": 0.25, "c3": 0.75}, {"time": 0.1833, "angle": 37.82, "curve": 0.325, "c3": 0.75}, + {"time": 0.4167, "angle": -32.98, "curve": 0.243, "c3": 0.649, "c4": 0.6}, {"time": 0.5833, "angle": 13.33} + ] }, - "ear-right": {"rotate": [{"curve": 0.461, "c3": 0.543}, {"time": 0.6667, "angle": -3.91, "curve": 0.461, "c3": 0.543}, {"time": 1.3333}]}, - "ear-left": {"rotate": [{"curve": 0.461, "c3": 0.543}, {"time": 0.6667, "angle": -3.92, "curve": 0.461, "c3": 0.543}, {"time": 1.3333}]}, - "@shadow": { - "scale": [ - {"curve": 0.306, "c3": 0.695}, {"time": 0.3333, "x": 1.05, "y": 1.05, "curve": 0.306, "c3": 0.695}, {"time": 0.6667, "curve": 0.306, "c3": 0.695}, - {"time": 1, "x": 1.05, "y": 1.05, "curve": 0.306, "c3": 0.695}, {"time": 1.3333} + "body-fur-14": { + "rotate": [ + {"angle": -14.87, "curve": 0.356, "c2": 0.41, "c3": 0.707, "c4": 0.81}, {"time": 0.0833, "angle": -2.29, "curve": 0.366, "c2": 0.63, "c3": 0.703}, + {"time": 0.1167, "curve": 0.25, "c3": 0.75}, {"time": 0.2167, "angle": 37.82, "curve": 0.325, "c3": 0.75}, {"time": 0.45, "angle": -32.98, "curve": 0.248, "c3": 0.628, "c4": 0.52}, + {"time": 0.5833, "angle": 13.33} ] }, - "body-braid-01": { + "body-fur-13": { "rotate": [ - {"angle": 2.31, "curve": 0.348, "c2": 0.38, "c3": 0.685, "c4": 0.73}, {"time": 0.05, "angle": 2.87, "curve": 0.375, "c2": 0.62, "c3": 0.716}, - {"time": 0.1167, "angle": 3.3, "curve": 0.25, "c3": 0.75}, {"time": 0.45, "curve": 0.244, "c3": 0.646, "c4": 0.59}, - {"time": 0.6667, "angle": 2.29, "curve": 0.382, "c2": 0.57, "c3": 0.737}, {"time": 0.7833, "angle": 3.3, "curve": 0.25, "c3": 0.75}, - {"time": 1.1167, "curve": 0.244, "c3": 0.646, "c4": 0.59}, {"time": 1.3333, "angle": 2.31} + {"angle": -9.36, "curve": 0.382, "c2": 0.57, "c3": 0.735}, {"time": 0.0833, "curve": 0.25, "c3": 0.75}, {"time": 0.1833, "angle": 37.82, "curve": 0.325, "c3": 0.75}, + {"time": 0.4167, "angle": -32.98, "curve": 0.243, "c3": 0.649, "c4": 0.6}, {"time": 0.5833, "angle": 11.59} ] }, - "body-braid-02": { + "body-fur-12": { "rotate": [ - {"angle": 3.5, "curve": 0.348, "c2": 0.38, "c3": 0.685, "c4": 0.73}, {"time": 0.05, "angle": 3.89, "curve": 0.375, "c2": 0.62, "c3": 0.716}, - {"time": 0.1167, "angle": 4.18, "curve": 0.25, "c3": 0.75}, {"time": 0.45, "angle": 1.94, "curve": 0.244, "c3": 0.646, "c4": 0.59}, - {"time": 0.6667, "angle": 3.49, "curve": 0.382, "c2": 0.57, "c3": 0.737}, {"time": 0.7833, "angle": 4.18, "curve": 0.25, "c3": 0.75}, - {"time": 1.1167, "angle": 1.94, "curve": 0.244, "c3": 0.646, "c4": 0.59}, {"time": 1.3333, "angle": 3.5} + {"angle": -6.68, "curve": 0.38, "c2": 0.59, "c3": 0.727}, {"time": 0.0667, "curve": 0.25, "c3": 0.75}, {"time": 0.1667, "angle": 37.82, "curve": 0.325, "c3": 0.75}, + {"time": 0.4, "angle": -32.98, "curve": 0.242, "c3": 0.663, "c4": 0.65}, {"time": 0.5833, "angle": 8.12} ] }, - "body-braid-03": { + "body-fur-11": { "rotate": [ - {"angle": -1.71, "curve": 0.337, "c2": 0.34, "c3": 0.673, "c4": 0.69}, {"time": 0.05, "angle": 1, "curve": 0.354, "c2": 0.41, "c3": 0.694, "c4": 0.77}, - {"time": 0.1167, "angle": 4, "curve": 0.369, "c2": 0.63, "c3": 0.706}, {"time": 0.1667, "angle": 5.15, "curve": 0.25, "c3": 0.75}, - {"time": 0.5, "angle": -8.41, "curve": 0.25, "c3": 0.625, "c4": 0.5}, {"time": 0.6667, "angle": -1.63, "curve": 0.375, "c2": 0.5, "c3": 0.75}, - {"time": 0.8333, "angle": 5.15, "curve": 0.25, "c3": 0.75}, {"time": 1.1667, "angle": -8.69, "curve": 0.25, "c3": 0.625, "c4": 0.5}, {"time": 1.3333, "angle": -1.71} + {"angle": -4.29, "curve": 0.375, "c2": 0.62, "c3": 0.716}, {"time": 0.05, "curve": 0.25, "c3": 0.75}, {"time": 0.15, "angle": 37.82, "curve": 0.325, "c3": 0.75}, + {"time": 0.3833, "angle": -32.98, "curve": 0.243, "c3": 0.68, "c4": 0.71}, {"time": 0.5833, "angle": 4.23} ] }, - "body-braid-04": { + "body-fur-10": { "rotate": [ - {"angle": -9.29, "curve": 0.323, "c2": 0.3, "c3": 0.66, "c4": 0.65}, {"time": 0.05, "angle": -6.92, "curve": 0.335, "c2": 0.34, "c3": 0.674, "c4": 0.69}, - {"time": 0.1167, "angle": -3.73, "curve": 0.382, "c2": 0.57, "c3": 0.737}, {"time": 0.2333, "curve": 0.25, "c3": 0.75}, - {"time": 0.5667, "angle": -11.98, "curve": 0.269, "c3": 0.618, "c4": 0.42}, {"time": 0.6667, "angle": -9.07, "curve": 0.345, "c2": 0.37, "c3": 0.757}, - {"time": 0.9, "curve": 0.25, "c3": 0.75}, {"time": 1.2333, "angle": -12.25, "curve": 0.269, "c3": 0.618, "c4": 0.42}, {"time": 1.3333, "angle": -9.29} + {"angle": -2.29, "curve": 0.366, "c2": 0.63, "c3": 0.703}, {"time": 0.0333, "curve": 0.25, "c3": 0.75}, {"time": 0.1333, "angle": 37.82, "curve": 0.325, "c3": 0.75}, + {"time": 0.3667, "angle": -32.98, "curve": 0.244, "c3": 0.7, "c4": 0.79}, {"time": 0.5833, "angle": 0.34} ] }, - "body-braid-05": { + "body-fur-09": { "rotate": [ - {"angle": -8.3, "curve": 0.294, "c3": 0.631, "c4": 0.37}, {"time": 0.05, "angle": -7.64, "curve": 0.306, "c2": 0.23, "c3": 0.646, "c4": 0.59}, - {"time": 0.1167, "angle": -5.77, "curve": 0.354, "c2": 0.41, "c3": 0.756}, {"time": 0.3333, "curve": 0.25, "c3": 0.75}, {"time": 0.6667, "angle": -8.02, "curve": 0.25, "c3": 0.75}, - {"time": 1, "curve": 0.25, "c3": 0.75}, {"time": 1.3333, "angle": -8.3} + {"angle": -9.21, "curve": 0.356, "c2": 0.42, "c3": 0.696, "c4": 0.78}, {"time": 0.05, "angle": -2.29, "curve": 0.366, "c2": 0.63, "c3": 0.703}, {"time": 0.0833}, + {"time": 0.1833, "angle": 37.82, "curve": 0.325, "c3": 0.75}, {"time": 0.4167, "angle": -32.98, "curve": 0.243, "c3": 0.649, "c4": 0.6}, {"time": 0.5833, "angle": 6.86} ] }, - "body-braid-06": { + "body-fur-08": { "rotate": [ - {"angle": -20.59, "curve": 0.352, "c2": 0.41, "c3": 0.689, "c4": 0.75}, {"time": 0.05, "angle": -24.8, "curve": 0.369, "c2": 0.63, "c3": 0.706}, - {"time": 0.1, "angle": -27.05, "curve": 0.318, "c3": 0.652, "c4": 0.34}, {"time": 0.1167, "angle": -26.59, "curve": 0.271, "c2": 0.09, "c3": 0.753}, - {"time": 0.4333, "curve": 0.243, "c3": 0.655, "c4": 0.63}, {"time": 0.6667, "angle": -20.29, "curve": 0.382, "c2": 0.58, "c3": 0.731}, - {"time": 0.7667, "angle": -26.77, "curve": 0.25, "c3": 0.75}, {"time": 1.1, "curve": 0.243, "c3": 0.655, "c4": 0.63}, {"time": 1.3333, "angle": -20.59} + {"angle": -4.29, "curve": 0.375, "c2": 0.62, "c3": 0.716}, {"time": 0.05}, {"time": 0.15, "angle": 37.82, "curve": 0.325, "c3": 0.75}, + {"time": 0.3833, "angle": -32.98, "curve": 0.243, "c3": 0.68, "c4": 0.71}, {"time": 0.5833, "angle": -0.91} ] }, - "body-fur-under-01": { - "translate": [{"x": -0.14, "y": 0.84}], - "shear": [ - {"x": -4.09, "curve": 0.375, "c2": 0.5, "c3": 0.75}, {"time": 0.1667, "x": -25.22, "curve": 0.25, "c3": 0.75}, {"time": 0.5, "x": 17.03, "curve": 0.25, "c3": 0.625, "c4": 0.5}, - {"time": 0.6667, "x": -4.09, "curve": 0.375, "c2": 0.5, "c3": 0.75}, {"time": 0.8333, "x": -25.22, "curve": 0.25, "c3": 0.75}, - {"time": 1.1667, "x": 17.03, "curve": 0.25, "c3": 0.625, "c4": 0.5}, {"time": 1.3333, "x": -4.09} + "body-fur-07": { + "rotate": [ + {"angle": -0.75, "curve": 0.352, "c2": 0.65, "c3": 0.687}, {"time": 0.0167, "curve": 0.25, "c3": 0.75}, {"time": 0.1167, "angle": 37.82, "curve": 0.325, "c3": 0.75}, + {"time": 0.35, "angle": -32.98, "curve": 0.246, "c3": 0.723, "c4": 0.88}, {"time": 0.5833, "angle": 2.91} ] }, - "body-fur-under-02": { - "translate": [{"x": -2.23, "y": 6.28}], - "shear": [ - {"x": -27.8, "curve": 0.375, "c2": 0.62, "c3": 0.716}, {"time": 0.0667, "x": -31.97, "curve": 0.25, "c3": 0.75}, {"time": 0.4, "x": 0.11, "curve": 0.243, "c3": 0.68, "c4": 0.71}, - {"time": 0.6667, "x": -27.8, "curve": 0.375, "c2": 0.62, "c3": 0.716}, {"time": 0.7333, "x": -31.97, "curve": 0.25, "c3": 0.75}, - {"time": 1.0667, "x": 0.11, "curve": 0.243, "c3": 0.68, "c4": 0.71}, {"time": 1.3333, "x": -27.8} + "body-fur-06": { + "rotate": [ + {"angle": -6.62, "curve": 0.352, "c2": 0.41, "c3": 0.688, "c4": 0.76}, {"time": 0.0333, "angle": -2.29, "curve": 0.366, "c2": 0.63, "c3": 0.703}, {"time": 0.0667}, + {"time": 0.1667, "angle": 37.82, "curve": 0.325, "c3": 0.75}, {"time": 0.4, "angle": -32.98, "curve": 0.242, "c3": 0.663, "c4": 0.65}, {"time": 0.5833, "angle": 13.33} ] }, - "body-fur-under-03": { - "translate": [{"x": -0.78, "y": 3.19}], - "shear": [ - {"x": 22.47, "curve": 0.25, "c3": 0.75}, {"time": 0.3333, "curve": 0.25, "c3": 0.75}, {"time": 0.6667, "x": 22.47, "curve": 0.25, "c3": 0.75}, {"time": 1, "curve": 0.25, "c3": 0.75}, - {"time": 1.3333, "x": 22.47} + "body-fur-05": { + "rotate": [ + {"angle": -2.29, "curve": 0.366, "c2": 0.63, "c3": 0.703}, {"time": 0.0333}, {"time": 0.1333, "angle": 37.82, "curve": 0.325, "c3": 0.75}, + {"time": 0.3667, "angle": -32.98, "curve": 0.244, "c3": 0.7, "c4": 0.79}, {"time": 0.5833, "angle": 6.86} ] }, - "body-fur-under-04": { - "translate": [{"x": -0.33, "y": 3.2}], - "shear": [ - {"x": 10.24, "curve": 0.36, "c2": 0.64, "c3": 0.695}, {"time": 0.0333, "x": 11.47, "curve": 0.25, "c3": 0.75}, {"time": 0.3667, "x": -17.33, "curve": 0.245, "c3": 0.711, "c4": 0.83}, - {"time": 0.6667, "x": 10.24, "curve": 0.36, "c2": 0.64, "c3": 0.695}, {"time": 0.7, "x": 11.47, "curve": 0.25, "c3": 0.75}, - {"time": 1.0333, "x": -17.33, "curve": 0.245, "c3": 0.711, "c4": 0.83}, {"time": 1.3333, "x": 10.24} + "body-fur-04": { + "rotate": [ + {"angle": -9.21, "curve": 0.356, "c2": 0.42, "c3": 0.696, "c4": 0.78}, {"time": 0.05, "angle": -2.29, "curve": 0.366, "c2": 0.63, "c3": 0.703}, {"time": 0.0833}, + {"time": 0.1833, "angle": 37.82, "curve": 0.325, "c3": 0.75}, {"time": 0.4167, "angle": -32.98, "curve": 0.243, "c3": 0.649, "c4": 0.6}, {"time": 0.5833, "angle": 12.53} ] }, - "body-fur-under-05": { - "translate": [{"x": 0.53, "y": 14.98}], - "shear": [ - {"x": 3.7, "curve": 0.382, "c2": 0.57, "c3": 0.737}, {"time": 0.1167, "x": 13.52, "curve": 0.25, "c3": 0.75}, {"time": 0.45, "x": -18.7, "curve": 0.244, "c3": 0.646, "c4": 0.59}, - {"time": 0.6667, "x": 3.7, "curve": 0.382, "c2": 0.57, "c3": 0.737}, {"time": 0.7833, "x": 13.52, "curve": 0.25, "c3": 0.75}, - {"time": 1.1167, "x": -18.7, "curve": 0.244, "c3": 0.646, "c4": 0.59}, {"time": 1.3333, "x": 3.7} + "body-fur-03": { + "rotate": [ + {"angle": -4.29, "curve": 0.375, "c2": 0.62, "c3": 0.716}, {"time": 0.05}, {"time": 0.15, "angle": 37.82, "curve": 0.325, "c3": 0.75}, + {"time": 0.3833, "angle": -32.98, "curve": 0.243, "c3": 0.68, "c4": 0.71}, {"time": 0.5833, "angle": 5.54} + ] + }, + "body-fur-02": { + "rotate": [ + {"angle": -11.97, "curve": 0.358, "c2": 0.42, "c3": 0.702, "c4": 0.8}, {"time": 0.0667, "angle": -2.29, "curve": 0.366, "c2": 0.63, "c3": 0.703}, {"time": 0.1}, + {"time": 0.2, "angle": 37.82, "curve": 0.325, "c3": 0.75}, {"time": 0.4333, "angle": -32.98, "curve": 0.245, "c3": 0.637, "c4": 0.56}, {"time": 0.5833, "angle": 13.84} + ] + }, + "body-fur-01": { + "rotate": [ + {"angle": -6.68, "curve": 0.38, "c2": 0.59, "c3": 0.727}, {"time": 0.0667}, {"time": 0.1667, "angle": 37.82, "curve": 0.325, "c3": 0.75}, + {"time": 0.4, "angle": -32.98, "curve": 0.242, "c3": 0.663, "c4": 0.65}, {"time": 0.5833, "angle": 10.51} ] } } }, - "3958849146": { + "2842428225": { "slots": { - "eyes": {"attachment": [{"time": 0.0833, "name": "eyes-shut"}, {"time": 0.1667, "name": "eyes-angry"}, {"time": 0.5833, "name": "eyes-shut"}, {"time": 0.6667, "name": "eyes"}]}, - "mouth": {"attachment": [{"time": 0.0833, "name": "mouth-bite"}, {"time": 0.3667, "name": "mouth-open"}, {"time": 0.5833, "name": "mouth"}]} + "eyes": {"attachment": [{"time": 0.0167, "name": "eyes-angry"}, {"time": 0.25, "name": "eyes-shut"}, {"time": 0.3, "name": "eyes-angry"}, {"time": 0.4333, "name": "eyes"}]}, + "mouth": {"attachment": [{"time": 0.0167, "name": "mouth-bite"}, {"time": 0.3, "name": "mouth-open"}, {"time": 0.4333, "name": "mouth"}]} }, "bones": { "@pivot-back": { "rotate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.15, "angle": 3.67, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.3333, "angle": -14.29, "curve": 0.854, "c4": 0.1}, - {"time": 0.3667, "angle": 15.82}, {"time": 0.45, "angle": 16.67, "curve": 0.315, "c4": 0.8}, {"time": 0.5667, "angle": 4.4, "curve": 0, "c2": 0.1, "c3": 0.85}, - {"time": 0.6333, "angle": 6.79, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.8333} + {"curve": "stepped"}, {"time": 0.0167, "angle": 7.5}, {"time": 0.2333, "angle": 10, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "angle": -5, "curve": 0.315, "c4": 0.8}, + {"time": 0.4833, "angle": 5, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5833} ], "translate": [ - {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.2167, "x": 8.02, "curve": 0, "c2": 0.4, "c3": 0.383}, {"time": 0.3333, "x": -54.3, "y": 61.69, "curve": 0.854, "c4": 0.1}, - {"time": 0.3667, "x": -60.41, "y": 130.13}, {"time": 0.45, "x": -60.41, "y": 130.01, "curve": 0.315, "c4": 0.8}, {"time": 0.5667} + {"curve": "stepped"}, {"time": 0.0167, "x": 29.16, "y": 18.85, "curve": "stepped"}, {"time": 0.2667, "x": 29.16, "y": 18.85, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.3833, "x": -1.17, "y": 18.85, "curve": 0.315, "c4": 0.8}, {"time": 0.4833} ] }, - "@leg-front-right": { + "leg-back-left-IK": { "translate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.2167, "x": -18.54, "y": -11.57}, {"time": 0.25, "x": -23.07, "y": 10.08, "curve": 0, "c2": 0.4, "c3": 0.383}, - {"time": 0.3333, "x": 29.92, "y": -4.24, "curve": 0.854, "c4": 0.1}, {"time": 0.3667, "x": 22.95, "y": 2.68, "curve": "stepped"}, - {"time": 0.45, "x": 22.95, "y": 2.68, "curve": 0.157, "c2": 0.33, "c3": 0.727}, {"time": 0.5333, "x": 29.92, "y": -4.24, "curve": 0.779, "c4": 0.4}, - {"time": 0.5667, "x": -1.45, "y": -24.11, "curve": "stepped"}, {"time": 0.6333, "x": -1.45, "y": -24.11, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.6667} - ], - "scale": [ - {"time": 0.2, "curve": 0.315, "c4": 0.8}, {"time": 0.25, "x": 1.5, "curve": 0, "c2": 0.3, "c3": 0.539}, {"time": 0.3333, "curve": 0.854, "c4": 0.1}, {"time": 0.3667, "x": 1.5}, - {"time": 0.45, "x": 1.51, "curve": 0.157, "c2": 0.33, "c3": 0.727}, {"time": 0.4833} + {"curve": "stepped"}, {"time": 0.0167, "x": 50.74, "y": 0.9, "curve": "stepped"}, {"time": 0.2, "x": 50.74, "y": 0.9, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.25, "x": 12.5, "y": 6.45, "curve": 0, "c2": 0.8, "c3": 0.15}, {"time": 0.3667, "x": 5.47, "y": 26.12, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.4833} + ] + }, + "@leg-back-left": { + "translate": [ + {"curve": "stepped"}, {"time": 0.0167, "x": 18.74, "y": 14.65, "curve": "stepped"}, {"time": 0.1667, "x": 18.74, "y": 14.65, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.4833} ] }, "@leg-front-left": { "translate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.2167, "x": -6.84, "y": -9.77, "curve": "stepped"}, {"time": 0.5667, "x": -6.84, "y": -9.77, "curve": 0, "c2": 0.1, "c3": 0.85}, - {"time": 0.6333, "x": -6.29, "y": -18.69, "curve": 0, "c2": 0.23, "c3": 0.365, "c4": 0.58}, {"time": 0.6667, "x": -3.64, "y": -2.46, "curve": 0.177, "c2": 0.35, "c3": 0.731}, - {"time": 0.8333} + {"curve": "stepped"}, {"time": 0.0167, "x": -0.45, "y": -3.93}, {"time": 0.2333, "x": -0.82, "y": -2.61}, {"time": 0.3333, "x": -5.6, "y": -0.89, "curve": 0.617, "c4": 0.6}, + {"time": 0.45, "x": -1.09, "y": -14.69, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5833} ] }, - "@leg-back-left": { + "@leg-front-right": { "translate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.2167, "x": -0.11, "y": -2.73, "curve": "stepped"}, {"time": 0.5667, "x": -0.11, "y": -2.73, "curve": 0, "c2": 0.1, "c3": 0.85}, - {"time": 0.6333, "x": -0.46, "y": -6.19, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.8333} + {"time": 0.0167}, {"time": 0.3333, "x": -7.53, "y": 2.3, "curve": 0, "c2": 0.1, "c3": 0.853}, {"time": 0.45, "x": 0.15, "y": -4.26, "curve": 0.159, "c3": 0.853}, + {"time": 0.4833, "x": -2.34, "y": -28.14, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5833} ] }, "@pivot-main": { "translate": [ - {"time": 0.15, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "x": -73.35, "y": 43, "curve": "stepped"}, {"time": 0.45, "x": -73.35, "y": 43, "curve": 0.315, "c4": 0.8}, - {"time": 0.5667, "x": -146.44, "curve": "stepped"}, {"time": 0.6333, "x": -146.44, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.7333, "x": -45.61, "y": 50.15, "curve": 0.315, "c4": 0.8}, {"time": 0.8333} - ], - "scale": [{"time": 0.5667, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.6333, "y": 0.98, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.7333}] + {"curve": "stepped"}, {"time": 0.0167, "x": 33.18}, {"time": 0.2667, "x": 61.52, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3833, "x": 20.27, "y": 27.91, "curve": 0.315, "c4": 0.8}, + {"time": 0.4833} + ] }, "leg-front-right-IK": { "translate": [ - {"time": 0.15, "curve": 0, "c2": 0.18, "c3": 0.416, "c4": 0.58}, {"time": 0.2167, "x": 49.59, "y": 35.17}, {"time": 0.25, "x": -2.16, "y": 99.87, "curve": 0, "c2": 0.6, "c3": 0.237}, - {"time": 0.3333, "x": -158.6, "y": 254.45, "curve": 0.854, "c4": 0.1}, {"time": 0.3667, "x": -48.06, "y": 31.6}, {"time": 0.45, "x": -24.61, "y": 31.6, "curve": 0.315, "c4": 0.8}, - {"time": 0.5667, "curve": "stepped"}, {"time": 0.6333, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.6667, "x": -14.68, "y": -19.57, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.8333} + {"time": 0.2333, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "x": 22.26, "y": 54.13}, {"time": 0.3833, "x": 28.04, "y": 49.32, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.45} + ] + }, + "leg-front-left-IK": { + "translate": [ + {"curve": "stepped"}, {"time": 0.0167, "x": 38.52}, {"time": 0.2333, "x": 38.87, "curve": 0, "c2": 0.3, "c3": 0.54}, {"time": 0.3333, "x": 26.12, "y": 38.71}, + {"time": 0.3833, "x": 12.33, "y": 29.93, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.45} + ] + }, + "@shadow": { + "translate": [ + {"curve": "stepped"}, {"time": 0.0167, "x": 33.22}, {"time": 0.2667, "x": 61.08, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3833, "x": 9.02, "curve": 0.315, "c4": 0.8}, + {"time": 0.4833} + ], + "scale": [ + {"curve": "stepped"}, {"time": 0.0167, "x": 1.1, "y": 1.1, "curve": "stepped"}, {"time": 0.2667, "x": 1.1, "y": 1.1, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.3833, "x": 0.98, "y": 0.98, "curve": 0.315, "c4": 0.8}, {"time": 0.4833, "x": 1.1, "y": 1.1, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5833} + ] + }, + "tail": { + "rotate": [ + {"curve": "stepped"}, {"time": 0.0167, "angle": -17.67}, {"time": 0.2333, "angle": -21.07, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.3167, "angle": -20.71, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.45, "angle": 25.83, "curve": 0.154, "c4": 0.9}, + {"time": 0.5167, "angle": -14.3, "curve": 0.161, "c3": 0.854}, {"time": 0.5833} ] }, - "leg-front-left-IK": { - "translate": [ - {"time": 0.15, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "x": -54.88, "y": 124.95, "curve": 0.854, "c4": 0.1}, {"time": 0.3667, "x": 37.97, "y": 122.64}, - {"time": 0.45, "x": 48.96, "y": 138.43, "curve": 0.315, "c4": 0.8}, {"time": 0.5667, "curve": "stepped"}, {"time": 0.6333, "curve": 0, "c2": 0.1, "c3": 0.85}, - {"time": 0.6667, "x": -7.79, "y": -10.12, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.8333} + "body-fur-16": { + "rotate": [ + {"angle": -17.32, "curve": 0.37, "c2": 0.48, "c3": 0.753}, {"time": 0.1, "curve": 0.25, "c3": 0.75}, {"time": 0.1833, "angle": 31.69, "curve": 0.326, "c2": 0.01, "c3": 0.75}, + {"time": 0.35, "angle": 13.72, "curve": 0.25, "c3": 0.75}, {"time": 0.5, "angle": -30.92, "curve": 0.253, "c3": 0.621, "c4": 0.48}, {"time": 0.5833, "angle": 13.84} ] }, - "leg-back-left-IK": { - "translate": [ - {"time": 0.0833, "curve": 0.332, "c3": 0.682, "c4": 0.41}, {"time": 0.2167, "x": 21.57, "y": 4.03, "curve": 0, "c2": 0.4, "c3": 0.383}, - {"time": 0.3333, "x": -50.73, "y": 91.08, "curve": 0.854, "c4": 0.1}, {"time": 0.3667, "x": 19.18, "y": 184.64}, {"time": 0.45, "x": 25.59, "y": 197.69, "curve": 0.315, "c4": 0.8}, - {"time": 0.5667, "curve": "stepped"}, {"time": 0.6333, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.75, "x": 24.35, "y": 13.92, "curve": 0.154, "c4": 0.9}, {"time": 0.8333} + "body-fur-15": { + "rotate": [ + {"angle": -13.6, "curve": 0.379, "c2": 0.52, "c3": 0.747}, {"time": 0.0833}, {"time": 0.1667, "angle": 31.69, "curve": 0.326, "c2": 0.01, "c3": 0.75}, + {"time": 0.3333, "angle": 13.72, "curve": 0.25, "c3": 0.75}, {"time": 0.4833, "angle": -30.92, "curve": 0.247, "c3": 0.63, "c4": 0.52}, {"time": 0.5833, "angle": 13.33} ] }, - "tail": { + "body-fur-14": { "rotate": [ - {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.15, "angle": 14.68, "curve": 0.315, "c4": 0.8}, {"time": 0.2167, "angle": -12.57}, - {"time": 0.3333, "angle": -14.89, "curve": 0.854, "c4": 0.1}, {"time": 0.3667, "angle": 25.96}, {"time": 0.45, "angle": 33.77}, - {"time": 0.6167, "angle": 26.39, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.7167, "angle": -14.8, "curve": 0.154, "c4": 0.9}, {"time": 0.8333} + {"angle": -20.83, "curve": 0.337, "c2": 0.34, "c3": 0.702, "c4": 0.78}, {"time": 0.0833, "angle": -3.41, "curve": 0.373, "c2": 0.62, "c3": 0.713}, {"time": 0.1167}, + {"time": 0.2, "angle": 31.69, "curve": 0.326, "c2": 0.01, "c3": 0.75}, {"time": 0.3667, "angle": 13.72, "curve": 0.25, "c3": 0.75}, + {"time": 0.5167, "angle": -30.92, "curve": 0.261, "c3": 0.618, "c4": 0.44}, {"time": 0.5833, "angle": 13.33} ] }, - "@shadow": { - "translate": [ - {"time": 0.15, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.3333, "x": -132.39, "curve": 0.854, "c4": 0.1}, {"time": 0.3667, "x": -111.3, "curve": "stepped"}, - {"time": 0.45, "x": -111.3, "curve": 0.315, "c4": 0.8}, {"time": 0.5667, "x": -132.39, "curve": "stepped"}, {"time": 0.6333, "x": -132.39, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.8333} - ], - "scale": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.15, "x": 1.05, "y": 1.05, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.3333, "x": 0.93, "y": 0.93, "curve": 0.854, "c4": 0.1}, - {"time": 0.3667, "x": 0.95, "y": 0.95}, {"time": 0.45, "x": 0.97, "y": 0.97, "curve": 0.315, "c4": 0.8}, {"time": 0.5667, "x": 1.05, "y": 1.05, "curve": 0, "c2": 0.1, "c3": 0.85}, - {"time": 0.6333, "x": 1.07, "y": 1.07, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.8333} + "body-fur-13": { + "rotate": [ + {"angle": -13.6, "curve": 0.379, "c2": 0.52, "c3": 0.747}, {"time": 0.0833}, {"time": 0.1667, "angle": 31.69, "curve": 0.326, "c2": 0.01, "c3": 0.75}, + {"time": 0.3333, "angle": 13.72, "curve": 0.25, "c3": 0.75}, {"time": 0.4833, "angle": -30.92, "curve": 0.247, "c3": 0.63, "c4": 0.52}, {"time": 0.5833, "angle": 11.59} ] }, - "body-braid-02": { + "body-fur-12": { "rotate": [ - {"angle": 3.5, "curve": 0.348, "c2": 0.38, "c3": 0.685, "c4": 0.73}, {"time": 0.2167, "angle": 2.63, "curve": 0.25, "c3": 0.228, "c4": 0.99}, - {"time": 0.5, "angle": 9.15, "curve": 0.25, "c3": 0.75}, {"time": 0.7833, "curve": 0.284, "c3": 0.625, "c4": 0.38}, {"time": 0.8333, "angle": 3.5} + {"angle": -9.94, "curve": 0.382, "c2": 0.56, "c3": 0.739}, {"time": 0.0667, "curve": 0.25, "c3": 0.75}, {"time": 0.15, "angle": 31.69, "curve": 0.326, "c2": 0.01, "c3": 0.75}, + {"time": 0.3167, "angle": 13.72, "curve": 0.25, "c3": 0.75}, {"time": 0.4667, "angle": -30.92, "curve": 0.244, "c3": 0.643, "c4": 0.58}, {"time": 0.5833, "angle": 8.12} ] }, - "body-braid-03": { + "body-fur-11": { "rotate": [ - {"angle": -1.71, "curve": 0.337, "c2": 0.34, "c3": 0.673, "c4": 0.69}, {"time": 0.2667, "angle": 2.63, "curve": 0.25, "c3": 0.228, "c4": 0.99}, - {"time": 0.5333, "angle": 23.44, "curve": 0.244, "c3": 0.7, "c4": 0.79}, {"time": 0.7833, "angle": 1.63, "curve": 0.366, "c2": 0.63, "c3": 0.703}, - {"time": 0.8167, "curve": 0.313, "c3": 0.648, "c4": 0.35}, {"time": 0.8333, "angle": -1.71} + {"angle": -6.47, "curve": 0.381, "c2": 0.59, "c3": 0.727}, {"time": 0.05, "curve": 0.25, "c3": 0.75}, {"time": 0.1333, "angle": 31.69, "curve": 0.326, "c2": 0.01, "c3": 0.75}, + {"time": 0.3, "angle": 13.72, "curve": 0.25, "c3": 0.75}, {"time": 0.45, "angle": -30.92, "curve": 0.242, "c3": 0.661, "c4": 0.65}, {"time": 0.5833, "angle": 4.23} ] }, - "body-braid-04": { + "body-fur-10": { "rotate": [ - {"angle": -9.29, "curve": 0.323, "c2": 0.3, "c3": 0.66, "c4": 0.65}, {"time": 0.0333, "curve": 0.25, "c3": 0.75}, {"time": 0.3167, "angle": 2.63, "curve": 0.25, "c3": 0.228, "c4": 0.99}, - {"time": 0.6, "angle": 16.91, "curve": 0.243, "c3": 0.649, "c4": 0.6}, {"time": 0.7833, "angle": 4.8, "curve": 0.356, "c2": 0.42, "c3": 0.696, "c4": 0.78}, - {"time": 0.8333, "angle": -9.29} + {"angle": -3.41, "curve": 0.373, "c2": 0.62, "c3": 0.713}, {"time": 0.0333, "curve": 0.25, "c3": 0.75}, {"time": 0.1167, "angle": 31.69, "curve": 0.326, "c2": 0.01, "c3": 0.75}, + {"time": 0.2833, "angle": 13.72, "curve": 0.25, "c3": 0.75}, {"time": 0.4333, "angle": -30.92, "curve": 0.243, "c3": 0.685, "c4": 0.73}, {"time": 0.5833, "angle": 0.34} ] }, - "body-braid-05": { + "body-fur-09": { "rotate": [ - {"angle": -8.3, "curve": 0.294, "c3": 0.631, "c4": 0.37}, {"time": 0.1167, "curve": 0.25, "c3": 0.75}, {"time": 0.3833, "angle": -10.49, "curve": 0.25, "c3": 0.228, "c4": 0.99}, - {"time": 0.6667, "angle": 8.22, "curve": 0.258, "c3": 0.619, "c4": 0.45}, {"time": 0.7833, "angle": 5.2, "curve": 0.33, "c2": 0.32, "c3": 0.67, "c4": 0.68}, - {"time": 0.8333, "angle": -8.3} + {"angle": -9.76, "curve": 0.35, "c2": 0.39, "c3": 0.689, "c4": 0.75}, {"time": 0.0333, "angle": -3.41, "curve": 0.373, "c2": 0.62, "c3": 0.713}, {"time": 0.0667}, + {"time": 0.15, "angle": 31.69, "curve": 0.326, "c2": 0.01, "c3": 0.75}, {"time": 0.3167, "angle": 13.72, "curve": 0.25, "c3": 0.75}, + {"time": 0.4667, "angle": -30.92, "curve": 0.244, "c3": 0.643, "c4": 0.58}, {"time": 0.5833, "angle": 6.86} ] }, - "body-braid-06": { + "body-fur-08": { "rotate": [ - {"angle": -20.59, "curve": 0.352, "c2": 0.41, "c3": 0.689, "c4": 0.75}, {"time": 0.1833, "curve": 0.25, "c3": 0.75}, - {"time": 0.4667, "angle": -28.99, "curve": 0.25, "c3": 0.228, "c4": 0.99}, {"time": 0.75, "angle": 9.53, "curve": 0.297, "c3": 0.634, "c4": 0.37}, - {"time": 0.7833, "angle": 8.86, "curve": 0.304, "c2": 0.22, "c3": 0.644, "c4": 0.58}, {"time": 0.8333, "angle": -20.59} + {"angle": -3.41, "curve": 0.373, "c2": 0.62, "c3": 0.713}, {"time": 0.0333}, {"time": 0.1167, "angle": 31.69, "curve": 0.326, "c2": 0.01, "c3": 0.75}, + {"time": 0.2833, "angle": 13.72, "curve": 0.25, "c3": 0.75}, {"time": 0.4333, "angle": -30.92, "curve": 0.243, "c3": 0.685, "c4": 0.73}, {"time": 0.5833, "angle": -0.91} ] }, - "body-fur-under-05": { - "translate": [{"x": 0.53, "y": 14.98}], - "shear": [ - {"x": 3.7, "curve": 0.382, "c2": 0.57, "c3": 0.737}, {"time": 0.0333, "x": -12.53, "curve": 0.25, "c3": 0.75}, {"time": 0.3167, "x": 6.85, "curve": 0.25, "c3": 0.228, "c4": 0.99}, - {"time": 0.6, "x": -44.3, "curve": 0.248, "c3": 0.628, "c4": 0.52}, {"time": 0.75, "x": -27.02, "curve": 0.356, "c2": 0.41, "c3": 0.707, "c4": 0.81}, {"time": 0.8333, "x": 3.7} + "body-fur-07": { + "rotate": [ + {"angle": -1.09, "curve": 0.358, "c2": 0.65, "c3": 0.693}, {"time": 0.0167, "curve": 0.25, "c3": 0.75}, {"time": 0.1, "angle": 31.69, "curve": 0.326, "c2": 0.01, "c3": 0.75}, + {"time": 0.2667, "angle": 13.72, "curve": 0.25, "c3": 0.75}, {"time": 0.4167, "angle": -30.92, "curve": 0.245, "c3": 0.714, "c4": 0.85}, {"time": 0.5833, "angle": 2.91} ] }, - "body-fur-under-04": { - "translate": [{"x": -0.33, "y": 3.2}], - "shear": [ - {"x": 10.24, "curve": 0.36, "c2": 0.64, "c3": 0.695}, {"time": 0.2833, "x": 13.82, "curve": 0.25, "c3": 0.228, "c4": 0.99}, - {"time": 0.55, "x": -39.88, "curve": 0.243, "c3": 0.649, "c4": 0.6}, {"time": 0.75, "x": -22.71, "curve": 0.382, "c2": 0.57, "c3": 0.735}, {"time": 0.8333, "x": 10.24} + "body-fur-06": { + "rotate": [ + {"angle": -9.76, "curve": 0.35, "c2": 0.39, "c3": 0.689, "c4": 0.75}, {"time": 0.0333, "angle": -3.41, "curve": 0.373, "c2": 0.62, "c3": 0.713}, {"time": 0.0667}, + {"time": 0.15, "angle": 31.69, "curve": 0.326, "c2": 0.01, "c3": 0.75}, {"time": 0.3167, "angle": 13.72, "curve": 0.25, "c3": 0.75}, + {"time": 0.4667, "angle": -30.92, "curve": 0.244, "c3": 0.643, "c4": 0.58}, {"time": 0.5833, "angle": 13.33} ] }, - "body-fur-under-03": { - "translate": [{"x": -0.78, "y": 3.19}], - "shear": [ - {"x": 22.47, "curve": 0.25, "c3": 0.75}, {"time": 0.2167, "x": 19.28, "curve": 0.25, "c3": 0.228, "c4": 0.99}, {"time": 0.5, "x": -45.7, "curve": 0.244, "c3": 0.7, "c4": 0.79}, - {"time": 0.75, "x": -3.18, "curve": 0.366, "c2": 0.63, "c3": 0.703}, {"time": 0.7833, "curve": 0.284, "c3": 0.625, "c4": 0.38}, {"time": 0.8333, "x": 22.47} + "body-fur-05": { + "rotate": [ + {"angle": -3.41, "curve": 0.373, "c2": 0.62, "c3": 0.713}, {"time": 0.0333}, {"time": 0.1167, "angle": 31.69, "curve": 0.326, "c2": 0.01, "c3": 0.75}, + {"time": 0.2833, "angle": 13.72, "curve": 0.25, "c3": 0.75}, {"time": 0.4333, "angle": -30.92, "curve": 0.243, "c3": 0.685, "c4": 0.73}, {"time": 0.5833, "angle": 6.86} ] }, - "body-fur-under-02": { - "translate": [{"x": -2.23, "y": 6.28}], - "shear": [ - {"x": -27.8, "curve": 0.375, "c2": 0.62, "c3": 0.716}, {"time": 0.25, "x": 18.72, "curve": 0.25, "c3": 0.228, "c4": 0.99}, - {"time": 0.5167, "x": -43.03, "curve": 0.243, "c3": 0.68, "c4": 0.71}, {"time": 0.75, "x": -5.6, "curve": 0.375, "c2": 0.62, "c3": 0.716}, - {"time": 0.8, "curve": 0.297, "c3": 0.634, "c4": 0.37}, {"time": 0.8333, "x": -27.8} + "body-fur-04": { + "rotate": [ + {"angle": -13.41, "curve": 0.351, "c2": 0.39, "c3": 0.696, "c4": 0.76}, {"time": 0.05, "angle": -3.41, "curve": 0.373, "c2": 0.62, "c3": 0.713}, {"time": 0.0833}, + {"time": 0.1667, "angle": 31.69, "curve": 0.326, "c2": 0.01, "c3": 0.75}, {"time": 0.3333, "angle": 13.72, "curve": 0.25, "c3": 0.75}, + {"time": 0.4833, "angle": -30.92, "curve": 0.247, "c3": 0.63, "c4": 0.52}, {"time": 0.5833, "angle": 12.53} ] }, - "body-fur-under-01": { - "translate": [{"x": -0.14, "y": 0.84}], - "shear": [ - {"x": -4.09, "curve": 0.375, "c2": 0.5, "c3": 0.75}, {"time": 0.1833, "x": 26.91, "curve": 0.25, "c3": 0.228, "c4": 0.99}, {"time": 0.4667, "x": -42.78, "curve": 0.25, "c3": 0.75}, - {"time": 0.75, "curve": 0.265, "c3": 0.618, "c4": 0.43}, {"time": 0.8333, "x": -4.09} + "body-fur-03": { + "rotate": [ + {"angle": -6.47, "curve": 0.381, "c2": 0.59, "c3": 0.727}, {"time": 0.05}, {"time": 0.1333, "angle": 31.69, "curve": 0.326, "c2": 0.01, "c3": 0.75}, + {"time": 0.3, "angle": 13.72, "curve": 0.25, "c3": 0.75}, {"time": 0.45, "angle": -30.92, "curve": 0.242, "c3": 0.661, "c4": 0.65}, {"time": 0.5833, "angle": 5.54} ] }, - "body-braid-01": {"rotate": [{"angle": 2.31}]} - }, - "events": [{"time": 0.3333, "name": "start-attack"}, {"time": 0.3667, "name": "hit"}] + "body-fur-02": { + "rotate": [ + {"angle": -17.14, "curve": 0.346, "c2": 0.38, "c3": 0.7, "c4": 0.78}, {"time": 0.0667, "angle": -3.41, "curve": 0.373, "c2": 0.62, "c3": 0.713}, {"time": 0.1, "curve": 0.25, "c3": 0.75}, + {"time": 0.1833, "angle": 31.69, "curve": 0.326, "c2": 0.01, "c3": 0.75}, {"time": 0.35, "angle": 13.72, "curve": 0.25, "c3": 0.75}, + {"time": 0.5, "angle": -30.92, "curve": 0.253, "c3": 0.621, "c4": 0.48}, {"time": 0.5833, "angle": 13.84} + ] + }, + "body-fur-01": { + "rotate": [ + {"angle": -9.94, "curve": 0.382, "c2": 0.56, "c3": 0.739}, {"time": 0.0667}, {"time": 0.15, "angle": 31.69, "curve": 0.326, "c2": 0.01, "c3": 0.75}, + {"time": 0.3167, "angle": 13.72, "curve": 0.25, "c3": 0.75}, {"time": 0.4667, "angle": -30.92, "curve": 0.244, "c3": 0.643, "c4": 0.58}, {"time": 0.5833, "angle": 10.51} + ] + } + } }, - "2684952679": { + "339640524": { "slots": { - "ball": { - "color": [ - {"color": "ffffff00", "curve": "stepped"}, {"time": 0.1667, "color": "ffffff00", "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "color": "ffffffff", "curve": "stepped"}, - {"time": 2.9167, "color": "ffffffff", "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 3.0833, "color": "ffffff00"} - ], - "attachment": [{"name": "ball"}] - }, - "eyes": {"attachment": [{"time": 0.5, "name": "eyes-shut"}, {"time": 0.5833, "name": "eyes"}, {"time": 3.0833, "name": "eyes-shut"}, {"time": 3.1667, "name": "eyes"}]}, - "mouth": {"attachment": [{"time": 0.1833, "name": "mouth-open"}, {"time": 0.5, "name": "mouth"}, {"time": 2.7667, "name": "mouth-open"}, {"time": 2.9167, "name": "mouth"}]} + "eyes": {"attachment": [{"time": 0.05, "name": "eyes-angry"}, {"time": 0.7, "name": "eyes"}]}, + "mouth": {"attachment": [{"time": 0.05, "name": "mouth-bite"}, {"time": 0.2833, "name": "mouth-open"}, {"time": 0.4667, "name": "mouth-bite"}, {"time": 0.7, "name": "mouth"}]} }, "bones": { "@pivot-back": { "rotate": [ - {"curve": 0, "c2": 0.3, "c3": 0.546}, {"time": 0.1667, "angle": 6, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "angle": -6.98, "curve": 0.464, "c4": 0.7}, - {"time": 0.5, "angle": 3, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.6667, "curve": "stepped"}, {"time": 2.5833, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 2.75, "angle": 6, "curve": 0, "c2": 0.3, "c3": 0.546}, {"time": 2.9167, "angle": -6, "curve": 0.464, "c4": 0.7}, - {"time": 3.0833, "angle": 6, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 3.25} + {"curve": 0, "c2": 0.4, "c3": 0.383}, {"time": 0.15, "angle": 4, "curve": 0, "c2": 0.2, "c3": 0.851}, {"time": 0.2833, "angle": 7}, + {"time": 0.4167, "angle": 7.5, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5, "angle": 4, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.5833, "angle": 6, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.75} ], "translate": [ - {"curve": 0, "c2": 0.3, "c3": 0.546}, {"time": 0.1667, "y": 1.78, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "y": 353.14, "curve": 0.464, "c4": 0.7}, - {"time": 0.5, "y": 255, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.6667, "y": 267.67, "curve": 0.156, "c3": 0.693}, - {"time": 1.1667, "x": -30, "y": 267.67, "curve": 0.317, "c3": 0.693}, {"time": 2.1667, "x": 50, "y": 267.67, "curve": 0.317, "c3": 0.693}, - {"time": 2.5833, "y": 267.67, "curve": "stepped"}, {"time": 2.75, "y": 267.67, "curve": 0, "c2": 0.3, "c3": 0.546}, {"time": 2.9167, "y": 310, "curve": 0.464, "c4": 0.7}, - {"time": 3.0833} + {"curve": 0, "c2": 0.4, "c3": 0.383}, {"time": 0.25, "x": 25, "curve": 1, "c2": -0.1, "c4": 0}, {"time": 0.2833, "x": -136, "y": 25.56}, + {"time": 0.4167, "x": -153.19, "y": 25.56, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5, "x": -176.94, "curve": "stepped"}, + {"time": 0.5833, "x": -176.94, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.75} ] }, - "@leg-front-right": { + "@pivot-main": {"translate": [{"time": 0.5833, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.6667, "y": 45.22, "curve": 0.315, "c4": 0.8}, {"time": 0.75}]}, + "@leg-front-left": { "translate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": -2.8, "y": -31.7, "curve": 0, "c2": 0.3, "c3": 0.546}, {"time": 0.25, "curve": "stepped"}, - {"time": 2.5833, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 2.75, "x": -2.8, "y": -31.7, "curve": 0.315, "c4": 0.8}, {"time": 2.8333, "curve": "stepped"}, - {"time": 3, "curve": 0.315, "c4": 0.8}, {"time": 3.0833, "x": -2.86, "y": -32.44, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 3.25} + {"curve": 0, "c2": 0.4, "c3": 0.383}, {"time": 0.25, "x": -0.72, "y": -6.78}, {"time": 0.5833, "x": -1.48, "y": -14.61, "curve": 0, "c2": 0.17, "c3": 0.45, "c4": 0.61}, + {"time": 0.65, "x": -0.39, "y": 5.91, "curve": 0.345, "c2": 0.53, "c3": 0.751}, {"time": 0.75} ] }, - "@leg-front-left": { + "@leg-front-right": { "translate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": -1.46, "y": -16.59, "curve": 0, "c2": 0.3, "c3": 0.546}, {"time": 0.25, "curve": "stepped"}, - {"time": 2.5833, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 2.75, "x": -1.46, "y": -16.59, "curve": 0.315, "c4": 0.8}, {"time": 2.8333, "curve": "stepped"}, - {"time": 3, "curve": 0.315, "c4": 0.8}, {"time": 3.0833, "x": -1.64, "y": -18.64, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 3.25} + {"curve": 0, "c2": 0.39, "c3": 0.387}, {"time": 0.25, "x": -2.88, "y": -28.54, "curve": "stepped"}, + {"time": 0.5833, "x": -2.88, "y": -28.54, "curve": 0, "c2": 0.17, "c3": 0.45, "c4": 0.61}, {"time": 0.65, "x": -0.83, "y": 1.57, "curve": 0.345, "c2": 0.53, "c3": 0.751}, {"time": 0.75} ] }, "leg-front-left-IK": { "translate": [ - {"time": 0.1667, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "x": -6.9, "y": 380.8, "curve": 0.315, "c4": 0.8}, {"time": 0.5, "x": -5.5, "y": 268.35, "curve": "stepped"}, - {"time": 0.6667, "x": -5.5, "y": 268.35, "curve": 0.317, "c3": 0.693}, {"time": 0.9167, "x": -38.87, "y": 268.35, "curve": 0.317, "c3": 0.693}, - {"time": 1.1667, "x": -10.16, "y": 268.35, "curve": 0.317, "c3": 0.693}, {"time": 1.4167, "x": -39.65, "y": 268.35, "curve": 0.317, "c3": 0.693}, - {"time": 1.6667, "x": 23.98, "y": 268.35, "curve": 0.317, "c3": 0.693}, {"time": 1.9167, "x": 5.36, "y": 268.35, "curve": 0.317, "c3": 0.693}, - {"time": 2.1667, "x": 67.44, "y": 268.35, "curve": 0.317, "c3": 0.693}, {"time": 2.4167, "x": -3.95, "y": 268.35, "curve": 0.317, "c3": 0.693}, - {"time": 2.5833, "x": -5.5, "y": 268.35, "curve": "stepped"}, {"time": 2.9167, "x": -5.5, "y": 268.35, "curve": 0.315, "c4": 0.8}, {"time": 3.0833} + {"curve": 0, "c2": 0.39, "c3": 0.387}, {"time": 0.25, "x": 19.12, "curve": 0.702, "c4": 0.2}, {"time": 0.2833, "x": -43.29, "y": 59.07}, + {"time": 0.4167, "x": -61.19, "y": 52.81, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5, "x": -184.33, "y": 7.89, "curve": "stepped"}, + {"time": 0.5833, "x": -184.33, "y": 7.89, "curve": 0, "c2": 0.17, "c3": 0.45, "c4": 0.61}, {"time": 0.65, "x": -105.91, "y": -2.82, "curve": 0.345, "c2": 0.53, "c3": 0.751}, + {"time": 0.75} ] }, "leg-front-right-IK": { "translate": [ - {"time": 0.1667, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "x": -6.9, "y": 397.8, "curve": 0.315, "c4": 0.8}, {"time": 0.5, "x": 15.4, "y": 268.08, "curve": "stepped"}, - {"time": 0.6667, "x": 15.4, "y": 268.08, "curve": 0.317, "c3": 0.693}, {"time": 0.9167, "x": 24.64, "y": 268.08, "curve": 0.317, "c3": 0.693}, - {"time": 1.1667, "x": -41.71, "y": 268.08, "curve": 0.317, "c3": 0.693}, {"time": 1.4167, "x": 22.12, "y": 268.08, "curve": 0.317, "c3": 0.693}, - {"time": 1.6667, "x": -0.56, "y": 268.08, "curve": 0.317, "c3": 0.693}, {"time": 1.9167, "x": 61.6, "y": 268.08, "curve": 0.317, "c3": 0.693}, - {"time": 2.1667, "x": 33.88, "y": 268.08, "curve": 0.317, "c3": 0.693}, {"time": 2.4167, "x": 49, "y": 268.08, "curve": 0.317, "c3": 0.693}, - {"time": 2.5833, "x": 15.4, "y": 268.08, "curve": "stepped"}, {"time": 2.9167, "x": 15.4, "y": 268.08, "curve": 0.315, "c4": 0.8}, {"time": 3.0833} + {"time": 0.25, "curve": 0.702, "c4": 0.2}, {"time": 0.2833, "x": -27.95, "y": 28.32}, {"time": 0.4167, "x": -40.48, "y": 34.59, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.5, "x": -191.61, "curve": "stepped"}, {"time": 0.5833, "x": -191.61, "curve": 0, "c2": 0.17, "c3": 0.45, "c4": 0.61}, + {"time": 0.65, "x": -103, "y": 4.15, "curve": 0.345, "c2": 0.53, "c3": 0.751}, {"time": 0.75} ] }, "leg-back-left-IK": { "translate": [ - {"time": 0.1667, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "x": -0.4, "y": 363.25, "curve": 0.315, "c4": 0.8}, {"time": 0.5, "x": -26.16, "y": 267.01}, - {"time": 0.6667, "x": -33.59, "y": 267.01, "curve": 0.317, "c3": 0.693}, {"time": 0.9167, "x": -22.32, "y": 267.01, "curve": 0.317, "c3": 0.693}, - {"time": 1.1667, "x": -63.32, "y": 267.01, "curve": 0.317, "c3": 0.693}, {"time": 1.4167, "x": -28.35, "y": 267.01, "curve": 0.317, "c3": 0.693}, - {"time": 1.6667, "x": -28.02, "y": 267.01, "curve": 0.317, "c3": 0.693}, {"time": 1.9167, "x": 14.36, "y": 267.01, "curve": 0.317, "c3": 0.693}, - {"time": 2.1667, "x": 9.14, "y": 267.01, "curve": 0.317, "c3": 0.693}, {"time": 2.4167, "x": 11.99, "y": 267.01, "curve": 0.317, "c3": 0.693}, - {"time": 2.6667, "x": -33.59, "y": 267.01, "curve": "stepped"}, {"time": 2.9167, "x": -33.59, "y": 267.01, "curve": 0.315, "c4": 0.8}, {"time": 3.0833} + {"time": 0.2667, "curve": 0.461, "c4": 0.4}, {"time": 0.2833, "x": -70.51, "y": 98.54}, {"time": 0.4167, "x": -70.51, "y": 101.95, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.5, "x": -189.32, "curve": "stepped"}, {"time": 0.5833, "x": -189.32, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.75} ] }, - "@ball": { + "@pivot-center": { "rotate": [ - {"time": 0.6667, "curve": 0.156, "c3": 0.693}, {"time": 1.1667, "angle": 18, "curve": 0.317, "c3": 0.693}, {"time": 2.1667, "angle": -18, "curve": 0.317, "c3": 0.693}, {"time": 2.75} - ], + {"time": 0.25, "curve": 0.779, "c4": 0.3}, {"time": 0.2833, "angle": 10.18, "curve": "stepped"}, {"time": 0.4167, "angle": 10.18, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5} + ] + }, + "tail": { + "rotate": [ + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.25, "angle": 21.98, "curve": 0.851, "c4": 0.1}, {"time": 0.2833, "angle": -15.58}, + {"time": 0.4167, "angle": -20.71, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5, "angle": 19.93, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.5833, "angle": 23.12, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.6667, "angle": -14.25, "curve": 0.313, "c3": 0.699}, {"time": 0.75} + ] + }, + "@shadow": { "translate": [ - {"time": 0.6667, "curve": 0.156, "c3": 0.693}, {"time": 1.1667, "x": -32, "curve": 0.317, "c3": 0.693}, {"time": 2.1667, "x": 32, "curve": 0.317, "c3": 0.693}, {"time": 2.75} + {"time": 0.25, "curve": 0.851, "c4": 0.1}, {"time": 0.2833, "x": -143.36}, {"time": 0.4167, "x": -160.77, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.5, "x": -186.16, "curve": "stepped"}, {"time": 0.5833, "x": -186.16, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.75} ], "scale": [ - {"x": 0, "y": 0, "curve": "stepped"}, {"time": 0.1667, "x": 0, "y": 0, "curve": 0, "c2": 0.6, "c3": 0.237}, {"time": 0.3333, "x": 1.2, "y": 1.2, "curve": 0.315, "c4": 0.8}, - {"time": 0.5, "curve": "stepped"}, {"time": 2.75, "curve": 0, "c2": 0.3, "c3": 0.546}, {"time": 2.9167, "x": 1.2, "y": 1.2, "curve": 0.315, "c4": 0.8}, {"time": 3.0833, "x": 0, "y": 0} + {"curve": 0, "c2": 0.4, "c3": 0.383}, {"time": 0.25, "x": 1.08, "y": 1.08, "curve": "stepped"}, {"time": 0.5, "x": 1.08, "y": 1.08, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.5833, "x": 1.12, "y": 1.12, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.6667, "x": 0.94, "y": 0.94, "curve": 0.315, "c4": 0.8}, {"time": 0.75} ] }, - "ball": { - "scale": [ - {"time": 0.3333, "curve": 0.617, "c4": 0.6}, {"time": 0.5, "x": 1.2, "y": 0.802, "curve": 0, "c2": 0.39, "c3": 0.387}, {"time": 0.6667, "curve": "stepped"}, - {"time": 2.5833, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 2.75, "x": 1.2, "y": 0.9, "curve": 0, "c2": 0.3, "c3": 0.546}, {"time": 2.9167} + "@leg-back-left": {"translate": [{"curve": 0, "c2": 0.39, "c3": 0.387}, {"time": 0.25, "x": -7.28, "y": 3.82}]}, + "body-fur-01": { + "rotate": [ + {"angle": -7.99, "curve": 0.382, "c2": 0.57, "c3": 0.735}, {"time": 0.0667}, {"time": 0.3333, "angle": -23.85, "curve": 0.25, "c3": 0.75}, + {"time": 0.4, "angle": 26.05, "curve": 0.25, "c3": 0.75}, {"time": 0.6167, "angle": -28.16, "curve": 0.243, "c3": 0.649, "c4": 0.6}, {"time": 0.75, "angle": 10.51} ] }, - "@pivot-center": { + "body-fur-02": { "rotate": [ - {"time": 0.6667, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.9167, "angle": 2, "curve": 0.461, "c3": 0.543}, {"time": 1.4167, "angle": -2, "curve": 0.461, "c3": 0.543}, - {"time": 1.9167, "angle": 2, "curve": 0.461, "c3": 0.543}, {"time": 2.4167, "angle": -2, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 2.75} + {"angle": -13.91, "curve": 0.351, "c2": 0.39, "c3": 0.701, "c4": 0.78}, {"time": 0.0667, "angle": -2.72, "curve": 0.371, "c2": 0.62, "c3": 0.71}, {"time": 0.1}, + {"time": 0.3667, "angle": -23.85, "curve": 0.25, "c3": 0.75}, {"time": 0.4333, "angle": 26.05, "curve": 0.25, "c3": 0.75}, + {"time": 0.65, "angle": -28.16, "curve": 0.25, "c3": 0.625, "c4": 0.5}, {"time": 0.75, "angle": 13.84} ] }, - "@shadow": { - "translate": [ - {"time": 0.6667, "curve": 0.317, "c3": 0.693}, {"time": 1.1667, "x": -32, "curve": 0.317, "c3": 0.693}, {"time": 2.1667, "x": 32, "curve": 0.317, "c3": 0.693}, {"time": 2.5833} - ], - "scale": [ - {"curve": 0, "c2": 0.3, "c3": 0.546}, {"time": 0.1667, "x": 1.1, "y": 1.1, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "curve": 0.464, "c4": 0.7}, - {"time": 0.5, "x": 1.06, "y": 1.06, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.6667, "curve": "stepped"}, {"time": 2.5833, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 2.75, "x": 1.06, "y": 1.06, "curve": 0, "c2": 0.3, "c3": 0.546}, {"time": 2.9167, "curve": 0.464, "c4": 0.7}, - {"time": 3.0833, "x": 1.1, "y": 1.1, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 3.25} + "body-fur-03": { + "rotate": [ + {"angle": -5.19, "curve": 0.379, "c2": 0.6, "c3": 0.724}, {"time": 0.05, "curve": 0.25, "c3": 0.75}, {"time": 0.3167, "angle": -23.85, "curve": 0.25, "c3": 0.75}, + {"time": 0.3833, "angle": 26.05, "curve": 0.25, "c3": 0.75}, {"time": 0.6, "angle": -28.16, "curve": 0.242, "c3": 0.667, "c4": 0.67}, {"time": 0.75, "angle": 5.54} ] }, - "tail": { + "body-fur-04": { "rotate": [ - {"curve": 0, "c2": 0.3, "c3": 0.546}, {"time": 0.1667, "angle": 17.35, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "angle": -14.67, "curve": 0.464, "c4": 0.7}, - {"time": 0.5, "angle": 19.12, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.6667, "angle": -10.65, "curve": 0.317, "c3": 0.693}, - {"time": 0.9167, "angle": -0.65, "curve": 0.317, "c3": 0.693}, {"time": 1.1667, "angle": -10.65, "curve": 0.317, "c3": 0.693}, - {"time": 1.4167, "angle": -0.65, "curve": 0.317, "c3": 0.693}, {"time": 1.6667, "angle": -10.65, "curve": 0.317, "c3": 0.693}, - {"time": 1.9167, "angle": -0.65, "curve": 0.317, "c3": 0.693}, {"time": 2.1667, "angle": -10.65, "curve": 0.317, "c3": 0.693}, - {"time": 2.4167, "angle": -0.65, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 2.5833, "angle": -10.65, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 2.75, "angle": 19.35, "curve": 0, "c2": 0.3, "c3": 0.546}, {"time": 2.9167, "angle": -18.65, "curve": 0, "c2": 0.3, "c3": 0.546}, - {"time": 3.0833, "angle": 17.35, "curve": 0.317, "c3": 0.693}, {"time": 3.25} + {"angle": -10.8, "curve": 0.353, "c2": 0.4, "c3": 0.696, "c4": 0.77}, {"time": 0.05, "angle": -2.72, "curve": 0.371, "c2": 0.62, "c3": 0.71}, {"time": 0.0833, "curve": 0.25, "c3": 0.75}, + {"time": 0.35, "angle": -23.85, "curve": 0.25, "c3": 0.75}, {"time": 0.4167, "angle": 26.05, "curve": 0.25, "c3": 0.75}, + {"time": 0.6333, "angle": -28.16, "curve": 0.246, "c3": 0.635, "c4": 0.55}, {"time": 0.75, "angle": 12.53} ] }, - "body-fur-under-04": { - "translate": [{"x": -0.33, "y": 3.2}], - "shear": [ - {"x": 10.24, "curve": 0.36, "c2": 0.64, "c3": 0.695}, {"time": 0.0333, "x": 11.47, "curve": 0.25, "c3": 0.75}, {"time": 0.3, "x": -17.33, "curve": 0.25, "c3": 0.75}, - {"time": 0.5667, "x": 11.47, "curve": 0.25, "c3": 0.75}, {"time": 0.8333, "x": -17.33, "curve": 0.245, "c3": 0.711, "c4": 0.83}, - {"time": 1.0833, "x": 10.24, "curve": 0.36, "c2": 0.64, "c3": 0.695}, {"time": 1.1167, "x": 11.47, "curve": 0.25, "c3": 0.75}, {"time": 1.3833, "x": -17.33, "curve": 0.25, "c3": 0.75}, - {"time": 1.65, "x": 11.47, "curve": 0.25, "c3": 0.75}, {"time": 1.9333, "x": -17.33, "curve": 0.245, "c3": 0.711, "c4": 0.83}, - {"time": 2.1667, "x": 10.24, "curve": 0.36, "c2": 0.64, "c3": 0.695}, {"time": 2.2, "x": 11.47, "curve": 0.25, "c3": 0.75}, {"time": 2.4667, "x": -17.33, "curve": 0.25, "c3": 0.75}, - {"time": 2.7333, "x": 11.47, "curve": 0.25, "c3": 0.75}, {"time": 3.0167, "x": -17.33, "curve": 0.245, "c3": 0.711, "c4": 0.83}, {"time": 3.25, "x": 10.24} + "body-fur-05": { + "rotate": [ + {"angle": -2.72, "curve": 0.371, "c2": 0.62, "c3": 0.71}, {"time": 0.0333}, {"time": 0.3, "angle": -23.85, "curve": 0.25, "c3": 0.75}, + {"time": 0.3667, "angle": 26.05, "curve": 0.25, "c3": 0.75}, {"time": 0.5833, "angle": -28.16, "curve": 0.243, "c3": 0.689, "c4": 0.75}, {"time": 0.75, "angle": 6.86} ] }, - "body-fur-under-02": { - "translate": [{"x": -2.23, "y": 6.28}], - "shear": [ - {"x": -27.8, "curve": 0.375, "c2": 0.62, "c3": 0.716}, {"time": 0.05, "x": -31.97, "curve": 0.25, "c3": 0.75}, {"time": 0.3333, "x": 0.11, "curve": 0.25, "c3": 0.75}, - {"time": 0.6, "x": -31.97, "curve": 0.25, "c3": 0.75}, {"time": 0.8667, "x": 0.11, "curve": 0.243, "c3": 0.68, "c4": 0.71}, - {"time": 1.0833, "x": -27.8, "curve": 0.375, "c2": 0.62, "c3": 0.716}, {"time": 1.1333, "x": -31.97, "curve": 0.25, "c3": 0.75}, {"time": 1.4167, "x": 0.11, "curve": 0.25, "c3": 0.75}, - {"time": 1.6833, "x": -31.97, "curve": 0.25, "c3": 0.75}, {"time": 1.95, "x": 0.11, "curve": 0.243, "c3": 0.68, "c4": 0.71}, - {"time": 2.1667, "x": -27.8, "curve": 0.375, "c2": 0.62, "c3": 0.716}, {"time": 2.2333, "x": -31.97, "curve": 0.25, "c3": 0.75}, {"time": 2.5, "x": 0.11, "curve": 0.25, "c3": 0.75}, - {"time": 2.7667, "x": -31.97, "curve": 0.25, "c3": 0.75}, {"time": 3.0333, "x": 0.11, "curve": 0.243, "c3": 0.68, "c4": 0.71}, {"time": 3.25, "x": -27.8} + "body-fur-06": { + "rotate": [ + {"angle": -7.8, "curve": 0.351, "c2": 0.4, "c3": 0.689, "c4": 0.75}, {"time": 0.0333, "angle": -2.72, "curve": 0.371, "c2": 0.62, "c3": 0.71}, {"time": 0.0667}, + {"time": 0.3333, "angle": -23.85, "curve": 0.25, "c3": 0.75}, {"time": 0.4, "angle": 26.05, "curve": 0.25, "c3": 0.75}, + {"time": 0.6167, "angle": -28.16, "curve": 0.243, "c3": 0.649, "c4": 0.6}, {"time": 0.75, "angle": 13.33} ] }, - "body-braid-03": { + "body-fur-07": { "rotate": [ - {"angle": -1.71, "curve": 0.337, "c2": 0.34, "c3": 0.673, "c4": 0.69}, {"time": 0.0333, "angle": 1, "curve": 0.354, "c2": 0.41, "c3": 0.694, "c4": 0.77}, - {"time": 0.1, "angle": 4, "curve": 0.369, "c2": 0.63, "c3": 0.706}, {"time": 0.1333, "angle": 5.15, "curve": 0.25, "c3": 0.75}, {"time": 0.4, "angle": -8.41, "curve": 0.25, "c3": 0.75}, - {"time": 0.6833, "angle": 5.15, "curve": 0.25, "c3": 0.75}, {"time": 0.95, "angle": -8.69, "curve": 0.25, "c3": 0.625, "c4": 0.5}, - {"time": 1.0833, "angle": -1.71, "curve": 0.337, "c2": 0.34, "c3": 0.673, "c4": 0.69}, {"time": 1.1333, "angle": 1, "curve": 0.354, "c2": 0.41, "c3": 0.694, "c4": 0.77}, - {"time": 1.1833, "angle": 4, "curve": 0.369, "c2": 0.63, "c3": 0.706}, {"time": 1.2167, "angle": 5.15, "curve": 0.25, "c3": 0.75}, - {"time": 1.5, "angle": -8.41, "curve": 0.25, "c3": 0.75}, {"time": 1.7667, "angle": 5.15, "curve": 0.25, "c3": 0.75}, - {"time": 2.0333, "angle": -8.69, "curve": 0.25, "c3": 0.625, "c4": 0.5}, {"time": 2.1667, "angle": -1.71, "curve": 0.337, "c2": 0.34, "c3": 0.673, "c4": 0.69}, - {"time": 2.2167, "angle": 1, "curve": 0.354, "c2": 0.41, "c3": 0.694, "c4": 0.77}, {"time": 2.2667, "angle": 4, "curve": 0.369, "c2": 0.63, "c3": 0.706}, - {"time": 2.3, "angle": 5.15, "curve": 0.25, "c3": 0.75}, {"time": 2.5833, "angle": -8.41, "curve": 0.25, "c3": 0.75}, {"time": 2.85, "angle": 5.15, "curve": 0.25, "c3": 0.75}, - {"time": 3.1167, "angle": -8.69, "curve": 0.25, "c3": 0.625, "c4": 0.5}, {"time": 3.25, "angle": -1.71} + {"angle": -0.82, "curve": 0.356, "c2": 0.65, "c3": 0.691}, {"time": 0.0167, "curve": 0.25, "c3": 0.75}, {"time": 0.2833, "angle": -23.85, "curve": 0.25, "c3": 0.75}, + {"time": 0.35, "angle": 26.05, "curve": 0.25, "c3": 0.75}, {"time": 0.5667, "angle": -28.16, "curve": 0.246, "c3": 0.717, "c4": 0.86}, {"time": 0.75, "angle": 2.91} ] }, - "body-braid-06": { + "body-fur-08": { "rotate": [ - {"angle": -20.59, "curve": 0.352, "c2": 0.41, "c3": 0.689, "c4": 0.75}, {"time": 0.0333, "angle": -24.8, "curve": 0.369, "c2": 0.63, "c3": 0.706}, - {"time": 0.0833, "angle": -27.05, "curve": 0.318, "c3": 0.652, "c4": 0.34}, {"time": 0.1, "angle": -26.59, "curve": 0.271, "c2": 0.09, "c3": 0.753}, - {"time": 0.35, "curve": 0.25, "c3": 0.75}, {"time": 0.6167, "angle": -26.77, "curve": 0.25, "c3": 0.75}, {"time": 0.9, "curve": 0.243, "c3": 0.655, "c4": 0.63}, - {"time": 1.0833, "angle": -20.59, "curve": 0.352, "c2": 0.41, "c3": 0.689, "c4": 0.75}, {"time": 1.1333, "angle": -24.8, "curve": 0.369, "c2": 0.63, "c3": 0.706}, - {"time": 1.1667, "angle": -27.05, "curve": 0.318, "c3": 0.652, "c4": 0.34}, {"time": 1.1833, "angle": -26.59, "curve": 0.271, "c2": 0.09, "c3": 0.753}, - {"time": 1.4333, "curve": 0.25, "c3": 0.75}, {"time": 1.7167, "angle": -26.77, "curve": 0.25, "c3": 0.75}, {"time": 1.9833, "curve": 0.243, "c3": 0.655, "c4": 0.63}, - {"time": 2.1667, "angle": -20.59, "curve": 0.352, "c2": 0.41, "c3": 0.689, "c4": 0.75}, {"time": 2.2167, "angle": -24.8, "curve": 0.369, "c2": 0.63, "c3": 0.706}, - {"time": 2.25, "angle": -27.05, "curve": 0.318, "c3": 0.652, "c4": 0.34}, {"time": 2.2667, "angle": -26.59, "curve": 0.271, "c2": 0.09, "c3": 0.753}, - {"time": 2.5167, "curve": 0.25, "c3": 0.75}, {"time": 2.8, "angle": -26.77, "curve": 0.25, "c3": 0.75}, {"time": 3.0667, "curve": 0.243, "c3": 0.655, "c4": 0.63}, - {"time": 3.25, "angle": -20.59} + {"angle": -2.72, "curve": 0.371, "c2": 0.62, "c3": 0.71}, {"time": 0.0333}, {"time": 0.3, "angle": -23.85, "curve": 0.25, "c3": 0.75}, + {"time": 0.3667, "angle": 26.05, "curve": 0.25, "c3": 0.75}, {"time": 0.5833, "angle": -28.16, "curve": 0.243, "c3": 0.689, "c4": 0.75}, {"time": 0.75, "angle": -0.91} ] }, - "body-braid-05": { + "body-fur-09": { "rotate": [ - {"angle": -8.3, "curve": 0.294, "c3": 0.631, "c4": 0.37}, {"time": 0.0333, "angle": -7.64, "curve": 0.306, "c2": 0.23, "c3": 0.646, "c4": 0.59}, - {"time": 0.1, "angle": -5.77, "curve": 0.354, "c2": 0.41, "c3": 0.756}, {"time": 0.2667, "curve": 0.25, "c3": 0.75}, {"time": 0.55, "angle": -8.02, "curve": 0.25, "c3": 0.75}, - {"time": 0.8167, "curve": 0.25, "c3": 0.75}, {"time": 1.0833, "angle": -8.3, "curve": 0.294, "c3": 0.631, "c4": 0.37}, - {"time": 1.1333, "angle": -7.64, "curve": 0.306, "c2": 0.23, "c3": 0.646, "c4": 0.59}, {"time": 1.1833, "angle": -5.77, "curve": 0.354, "c2": 0.41, "c3": 0.756}, - {"time": 1.35, "curve": 0.25, "c3": 0.75}, {"time": 1.6333, "angle": -8.02, "curve": 0.25, "c3": 0.75}, {"time": 1.9, "curve": 0.25, "c3": 0.75}, - {"time": 2.1667, "angle": -8.3, "curve": 0.294, "c3": 0.631, "c4": 0.37}, {"time": 2.2167, "angle": -7.64, "curve": 0.306, "c2": 0.23, "c3": 0.646, "c4": 0.59}, - {"time": 2.2667, "angle": -5.77, "curve": 0.354, "c2": 0.41, "c3": 0.756}, {"time": 2.45, "curve": 0.25, "c3": 0.75}, {"time": 2.7167, "angle": -8.02, "curve": 0.25, "c3": 0.75}, - {"time": 2.9833, "curve": 0.25, "c3": 0.75}, {"time": 3.25, "angle": -8.3} + {"angle": -7.8, "curve": 0.351, "c2": 0.4, "c3": 0.689, "c4": 0.75}, {"time": 0.0333, "angle": -2.72, "curve": 0.371, "c2": 0.62, "c3": 0.71}, {"time": 0.0667}, + {"time": 0.3333, "angle": -23.85, "curve": 0.25, "c3": 0.75}, {"time": 0.4, "angle": 26.05, "curve": 0.25, "c3": 0.75}, + {"time": 0.6167, "angle": -28.16, "curve": 0.243, "c3": 0.649, "c4": 0.6}, {"time": 0.75, "angle": 6.86} ] }, - "body-braid-02": { + "body-fur-10": { "rotate": [ - {"angle": 3.5, "curve": 0.348, "c2": 0.38, "c3": 0.685, "c4": 0.73}, {"time": 0.0333, "angle": 3.89, "curve": 0.375, "c2": 0.62, "c3": 0.716}, - {"time": 0.1, "angle": 4.18, "curve": 0.25, "c3": 0.75}, {"time": 0.3667, "angle": 1.94, "curve": 0.25, "c3": 0.75}, {"time": 0.6333, "angle": 4.18, "curve": 0.25, "c3": 0.75}, - {"time": 0.9167, "angle": 1.94, "curve": 0.244, "c3": 0.646, "c4": 0.59}, {"time": 1.0833, "angle": 3.5, "curve": 0.348, "c2": 0.38, "c3": 0.685, "c4": 0.73}, - {"time": 1.1333, "angle": 3.89, "curve": 0.375, "c2": 0.62, "c3": 0.716}, {"time": 1.1833, "angle": 4.18, "curve": 0.25, "c3": 0.75}, - {"time": 1.45, "angle": 1.94, "curve": 0.25, "c3": 0.75}, {"time": 1.7167, "angle": 4.18, "curve": 0.25, "c3": 0.75}, {"time": 2, "angle": 1.94, "curve": 0.244, "c3": 0.646, "c4": 0.59}, - {"time": 2.1667, "angle": 3.5, "curve": 0.348, "c2": 0.38, "c3": 0.685, "c4": 0.73}, {"time": 2.2167, "angle": 3.89, "curve": 0.375, "c2": 0.62, "c3": 0.716}, - {"time": 2.2667, "angle": 4.18, "curve": 0.25, "c3": 0.75}, {"time": 2.5333, "angle": 1.94, "curve": 0.25, "c3": 0.75}, {"time": 2.8167, "angle": 4.18, "curve": 0.25, "c3": 0.75}, - {"time": 3.0833, "angle": 1.94, "curve": 0.244, "c3": 0.646, "c4": 0.59}, {"time": 3.25, "angle": 3.5} + {"angle": -2.72, "curve": 0.371, "c2": 0.62, "c3": 0.71}, {"time": 0.0333, "curve": 0.25, "c3": 0.75}, {"time": 0.3, "angle": -23.85, "curve": 0.25, "c3": 0.75}, + {"time": 0.3667, "angle": 26.05, "curve": 0.25, "c3": 0.75}, {"time": 0.5833, "angle": -28.16, "curve": 0.243, "c3": 0.689, "c4": 0.75}, {"time": 0.75, "angle": 0.34} ] }, - "body-braid-04": { + "body-fur-11": { "rotate": [ - {"angle": -9.29, "curve": 0.323, "c2": 0.3, "c3": 0.66, "c4": 0.65}, {"time": 0.0333, "angle": -6.92, "curve": 0.335, "c2": 0.34, "c3": 0.674, "c4": 0.69}, - {"time": 0.1, "angle": -3.73, "curve": 0.382, "c2": 0.57, "c3": 0.737}, {"time": 0.1833, "curve": 0.25, "c3": 0.75}, {"time": 0.4667, "angle": -11.98, "curve": 0.25, "c3": 0.75}, - {"time": 0.7333, "curve": 0.25, "c3": 0.75}, {"time": 1, "angle": -12.25, "curve": 0.269, "c3": 0.618, "c4": 0.42}, - {"time": 1.0833, "angle": -9.29, "curve": 0.323, "c2": 0.3, "c3": 0.66, "c4": 0.65}, {"time": 1.1333, "angle": -6.92, "curve": 0.335, "c2": 0.34, "c3": 0.674, "c4": 0.69}, - {"time": 1.1833, "angle": -3.73, "curve": 0.382, "c2": 0.57, "c3": 0.737}, {"time": 1.2833, "curve": 0.25, "c3": 0.75}, {"time": 1.55, "angle": -11.98, "curve": 0.25, "c3": 0.75}, - {"time": 1.8167, "curve": 0.25, "c3": 0.75}, {"time": 2.0833, "angle": -12.25, "curve": 0.269, "c3": 0.618, "c4": 0.42}, - {"time": 2.1667, "angle": -9.29, "curve": 0.323, "c2": 0.3, "c3": 0.66, "c4": 0.65}, {"time": 2.2167, "angle": -6.92, "curve": 0.335, "c2": 0.34, "c3": 0.674, "c4": 0.69}, - {"time": 2.2667, "angle": -3.73, "curve": 0.382, "c2": 0.57, "c3": 0.737}, {"time": 2.3667, "curve": 0.25, "c3": 0.75}, {"time": 2.6333, "angle": -11.98, "curve": 0.25, "c3": 0.75}, - {"time": 2.9, "curve": 0.25, "c3": 0.75}, {"time": 3.1833, "angle": -12.25, "curve": 0.269, "c3": 0.618, "c4": 0.42}, {"time": 3.25, "angle": -9.29} + {"angle": -5.19, "curve": 0.379, "c2": 0.6, "c3": 0.724}, {"time": 0.05, "curve": 0.25, "c3": 0.75}, {"time": 0.3167, "angle": -23.85, "curve": 0.25, "c3": 0.75}, + {"time": 0.3833, "angle": 26.05, "curve": 0.25, "c3": 0.75}, {"time": 0.6, "angle": -28.16, "curve": 0.242, "c3": 0.667, "c4": 0.67}, {"time": 0.75, "angle": 4.23} ] }, - "body-braid-01": { + "body-fur-12": { "rotate": [ - {"angle": 2.31, "curve": 0.348, "c2": 0.38, "c3": 0.685, "c4": 0.73}, {"time": 0.0333, "angle": 2.87, "curve": 0.375, "c2": 0.62, "c3": 0.716}, - {"time": 0.1, "angle": 3.3, "curve": 0.25, "c3": 0.75}, {"time": 0.3667, "curve": 0.25, "c3": 0.75}, {"time": 0.6333, "angle": 3.3, "curve": 0.25, "c3": 0.75}, - {"time": 0.9167, "curve": 0.244, "c3": 0.646, "c4": 0.59}, {"time": 1.0833, "angle": 2.31, "curve": 0.348, "c2": 0.38, "c3": 0.685, "c4": 0.73}, - {"time": 1.1333, "angle": 2.87, "curve": 0.375, "c2": 0.62, "c3": 0.716}, {"time": 1.1833, "angle": 3.3, "curve": 0.25, "c3": 0.75}, {"time": 1.45, "curve": 0.25, "c3": 0.75}, - {"time": 1.7167, "angle": 3.3, "curve": 0.25, "c3": 0.75}, {"time": 2, "curve": 0.244, "c3": 0.646, "c4": 0.59}, - {"time": 2.1667, "angle": 2.31, "curve": 0.348, "c2": 0.38, "c3": 0.685, "c4": 0.73}, {"time": 2.2167, "angle": 2.87, "curve": 0.375, "c2": 0.62, "c3": 0.716}, - {"time": 2.2667, "angle": 3.3, "curve": 0.25, "c3": 0.75}, {"time": 2.5333, "curve": 0.25, "c3": 0.75}, {"time": 2.8167, "angle": 3.3, "curve": 0.25, "c3": 0.75}, - {"time": 3.0833, "curve": 0.244, "c3": 0.646, "c4": 0.59}, {"time": 3.25, "angle": 2.31} + {"angle": -7.99, "curve": 0.382, "c2": 0.57, "c3": 0.735}, {"time": 0.0667, "curve": 0.25, "c3": 0.75}, {"time": 0.3333, "angle": -23.85, "curve": 0.25, "c3": 0.75}, + {"time": 0.4, "angle": 26.05, "curve": 0.25, "c3": 0.75}, {"time": 0.6167, "angle": -28.16, "curve": 0.243, "c3": 0.649, "c4": 0.6}, {"time": 0.75, "angle": 8.12} ] }, - "body-fur-under-03": { - "translate": [{"x": -0.78, "y": 3.19}], - "shear": [ - {"x": 22.47, "curve": 0.25, "c3": 0.75}, {"time": 0.2667, "curve": 0.25, "c3": 0.75}, {"time": 0.55, "x": 22.47, "curve": 0.25, "c3": 0.75}, {"time": 0.8167, "curve": 0.25, "c3": 0.75}, - {"time": 1.0833, "x": 22.47, "curve": 0.25, "c3": 0.75}, {"time": 1.35, "curve": 0.25, "c3": 0.75}, {"time": 1.6333, "x": 22.47, "curve": 0.25, "c3": 0.75}, - {"time": 1.9, "curve": 0.25, "c3": 0.75}, {"time": 2.1667, "x": 22.47, "curve": 0.25, "c3": 0.75}, {"time": 2.45, "curve": 0.25, "c3": 0.75}, - {"time": 2.7167, "x": 22.47, "curve": 0.25, "c3": 0.75}, {"time": 2.9833, "curve": 0.25, "c3": 0.75}, {"time": 3.25, "x": 22.47} + "body-fur-13": { + "rotate": [ + {"angle": -10.98, "curve": 0.381, "c2": 0.54, "c3": 0.744}, {"time": 0.0833}, {"time": 0.35, "angle": -23.85, "curve": 0.25, "c3": 0.75}, + {"time": 0.4167, "angle": 26.05, "curve": 0.25, "c3": 0.75}, {"time": 0.6333, "angle": -28.16, "curve": 0.246, "c3": 0.635, "c4": 0.55}, {"time": 0.75, "angle": 11.59} ] }, - "body-fur-under-01": { - "translate": [{"x": -0.14, "y": 0.84}], - "shear": [ - {"x": -4.09, "curve": 0.375, "c2": 0.5, "c3": 0.75}, {"time": 0.1333, "x": -25.22, "curve": 0.25, "c3": 0.75}, {"time": 0.4, "x": 17.03, "curve": 0.25, "c3": 0.75}, - {"time": 0.6833, "x": -25.22, "curve": 0.25, "c3": 0.75}, {"time": 0.95, "x": 17.03, "curve": 0.25, "c3": 0.625, "c4": 0.5}, - {"time": 1.0833, "x": -4.09, "curve": 0.375, "c2": 0.5, "c3": 0.75}, {"time": 1.2167, "x": -25.22, "curve": 0.25, "c3": 0.75}, {"time": 1.5, "x": 17.03, "curve": 0.25, "c3": 0.75}, - {"time": 1.7667, "x": -25.22, "curve": 0.25, "c3": 0.75}, {"time": 2.0333, "x": 17.03, "curve": 0.25, "c3": 0.625, "c4": 0.5}, - {"time": 2.1667, "x": -4.09, "curve": 0.375, "c2": 0.5, "c3": 0.75}, {"time": 2.3, "x": -25.22, "curve": 0.25, "c3": 0.75}, {"time": 2.5833, "x": 17.03, "curve": 0.25, "c3": 0.75}, - {"time": 2.85, "x": -25.22, "curve": 0.25, "c3": 0.75}, {"time": 3.1167, "x": 17.03, "curve": 0.25, "c3": 0.625, "c4": 0.5}, {"time": 3.25, "x": -4.09} + "body-fur-14": { + "rotate": [ + {"angle": -17.03, "curve": 0.344, "c2": 0.37, "c3": 0.704, "c4": 0.79}, {"time": 0.0833, "angle": -2.72, "curve": 0.371, "c2": 0.62, "c3": 0.71}, {"time": 0.1167}, + {"time": 0.3833, "angle": -23.85, "curve": 0.25, "c3": 0.75}, {"time": 0.45, "angle": 26.05, "curve": 0.25, "c3": 0.75}, + {"time": 0.6667, "angle": -28.16, "curve": 0.256, "c3": 0.619, "c4": 0.46}, {"time": 0.75, "angle": 13.33} ] }, - "body-fur-under-05": { - "translate": [{"x": 0.53, "y": 14.98}], - "shear": [ - {"x": 3.7, "curve": 0.382, "c2": 0.57, "c3": 0.737}, {"time": 0.1, "x": 13.52, "curve": 0.25, "c3": 0.75}, {"time": 0.3667, "x": -18.7, "curve": 0.25, "c3": 0.75}, - {"time": 0.6333, "x": 13.52, "curve": 0.25, "c3": 0.75}, {"time": 0.9167, "x": -18.7, "curve": 0.244, "c3": 0.646, "c4": 0.59}, - {"time": 1.0833, "x": 3.7, "curve": 0.382, "c2": 0.57, "c3": 0.737}, {"time": 1.1833, "x": 13.52, "curve": 0.25, "c3": 0.75}, {"time": 1.45, "x": -18.7, "curve": 0.25, "c3": 0.75}, - {"time": 1.7167, "x": 13.52, "curve": 0.25, "c3": 0.75}, {"time": 2, "x": -18.7, "curve": 0.244, "c3": 0.646, "c4": 0.59}, - {"time": 2.1667, "x": 3.7, "curve": 0.382, "c2": 0.57, "c3": 0.737}, {"time": 2.2667, "x": 13.52, "curve": 0.25, "c3": 0.75}, {"time": 2.5333, "x": -18.7, "curve": 0.25, "c3": 0.75}, - {"time": 2.8167, "x": 13.52, "curve": 0.25, "c3": 0.75}, {"time": 3.0833, "x": -18.7, "curve": 0.244, "c3": 0.646, "c4": 0.59}, {"time": 3.25, "x": 3.7} + "body-fur-15": { + "rotate": [ + {"angle": -5.19, "curve": 0.379, "c2": 0.6, "c3": 0.724}, {"time": 0.05, "curve": 0.25, "c3": 0.75}, {"time": 0.3167, "angle": -23.85, "curve": 0.25, "c3": 0.75}, + {"time": 0.3833, "angle": 26.05, "curve": 0.25, "c3": 0.75}, {"time": 0.6, "angle": -28.16, "curve": 0.242, "c3": 0.667, "c4": 0.67}, {"time": 0.75, "angle": 13.33} + ] + }, + "body-fur-16": { + "rotate": [ + {"angle": -10.98, "curve": 0.381, "c2": 0.54, "c3": 0.744}, {"time": 0.0833, "curve": 0.25, "c3": 0.75}, {"time": 0.35, "angle": -23.85, "curve": 0.25, "c3": 0.75}, + {"time": 0.4167, "angle": 26.05, "curve": 0.25, "c3": 0.75}, {"time": 0.6333, "angle": -28.16, "curve": 0.246, "c3": 0.635, "c4": 0.55}, {"time": 0.75, "angle": 13.84} ] } - } + }, + "events": [{"time": 0.2167, "name": "start-attack"}, {"time": 0.2833, "name": "hit"}] }, - "2106252256": { + "1963086355": { "slots": { - "eyes": {"attachment": [{"time": 0.0833, "name": "eyes-happy"}, {"time": 1, "name": "eyes"}]}, - "leg-back-left": {"attachment": [{"time": 0.0667, "name": "leg-back-left-long"}, {"time": 0.9, "name": "leg-back-left"}]}, - "mouth": {"attachment": [{"time": 0.0833, "name": "mouth-smile"}, {"time": 1, "name": "mouth"}]} + "eyes": {"attachment": [{"time": 0.1333, "name": "eyes-angry"}, {"time": 0.6667, "name": "eyes"}]}, + "mouth": {"attachment": [{"time": 0.1333, "name": "mouth-bite"}, {"time": 0.2667, "name": "mouth-open"}, {"time": 0.4167, "name": "mouth-bite"}, {"time": 0.6667, "name": "mouth"}]} }, "bones": { "@pivot-back": { "rotate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "angle": -18, "curve": 0.317, "c3": 0.693}, {"time": 0.3333, "angle": -17, "curve": 0.317, "c3": 0.693}, - {"time": 0.5, "angle": -18, "curve": 0.317, "c3": 0.693}, {"time": 0.6667, "angle": -17, "curve": 0.317, "c3": 0.693}, {"time": 0.8333, "angle": -18, "curve": 0.317, "c3": 0.693}, - {"time": 1.0833} + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "angle": -3.92, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "angle": 2.51, "curve": 0, "c2": 0.3, "c3": 0.544}, + {"time": 0.35, "angle": -4.74, "curve": 0.7, "c4": 0.3}, {"time": 0.4167, "angle": 2}, {"time": 0.5833, "angle": 4, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.75} ], "translate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": 33.94, "y": -52, "curve": "stepped"}, {"time": 0.8333, "x": 33.94, "y": -52, "curve": 0.317, "c3": 0.693}, {"time": 1.0833} + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 71.93, "y": -12.95, "curve": "stepped"}, {"time": 0.25, "x": 71.93, "y": -12.95, "curve": 0, "c2": 0.3, "c3": 0.544}, + {"time": 0.4167, "x": -144.49, "y": -12.95, "curve": "stepped"}, {"time": 0.5833, "x": -144.49, "y": -12.95, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.75} + ] + }, + "leg-back-left-IK": { + "translate": [ + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.1167, "x": 93.98, "curve": 0.161, "c3": 0.854}, {"time": 0.25, "x": 67.02, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.3333, "x": -65.1, "y": -1.32, "curve": 0.315, "c4": 0.8}, {"time": 0.4167, "x": -131.67, "curve": "stepped"}, {"time": 0.5833, "x": -131.67, "curve": 0.159, "c4": 0.9}, + {"time": 0.75} + ] + }, + "leg-front-right-IK": { + "translate": [ + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 21.56, "y": 4.31, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.25, "x": 42.9, "curve": 0, "c2": 0.3, "c3": 0.544}, + {"time": 0.3667, "x": -104.26, "y": 42.61, "curve": 0.161, "c4": 0.85}, {"time": 0.4167, "x": -153.64, "curve": "stepped"}, {"time": 0.5833, "x": -153.64, "curve": 0.154, "c4": 0.9}, + {"time": 0.7, "x": 13.43, "curve": 0.161, "c3": 0.854}, {"time": 0.75} + ] + }, + "leg-front-left-IK": { + "translate": [ + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 43.11, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "x": 48.71, "y": -1.66, "curve": 0, "c2": 0.3, "c3": 0.544}, + {"time": 0.3667, "x": -87.39, "y": 18.71, "curve": 0.161, "c4": 0.85}, {"time": 0.4167, "x": -150.32, "y": 0.83}, {"time": 0.5833, "x": -142.85, "curve": 0.154, "c4": 0.9}, + {"time": 0.7, "x": 13.43, "curve": 0.161, "c3": 0.854}, {"time": 0.75} ] }, "@leg-front-left": { "translate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": -27.99, "y": 1.7, "curve": 0.25, "c3": 0.75}, {"time": 0.3333, "x": -26.93, "y": -1.56, "curve": 0.25, "c3": 0.75}, - {"time": 0.5, "x": -27.99, "y": 1.7, "curve": 0.25, "c3": 0.75}, {"time": 0.6667, "x": -26.93, "y": -1.56, "curve": 0.25, "c3": 0.75}, - {"time": 0.8333, "x": -27.99, "y": 1.7, "curve": 0.317, "c3": 0.693}, {"time": 1.0833} + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": -0.28, "y": 3.31, "curve": 0, "c2": 0.3, "c3": 0.544}, + {"time": 0.25, "x": -0.62, "y": -3.21, "curve": 0, "c2": 0.25, "c3": 0.457, "c4": 0.73}, {"time": 0.3667, "x": -15.24, "y": -11.32, "curve": 0.325, "c2": 0.6, "c3": 0.672}, + {"time": 0.4167, "x": -17.97, "y": -3.57, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5833, "x": -18.47, "y": -10.19, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.75} ] }, "@leg-front-right": { "translate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": -84.32, "y": 39.72, "curve": 0.317, "c3": 0.693}, {"time": 0.3333, "x": -82.71, "y": 34.75, "curve": 0.317, "c3": 0.693}, - {"time": 0.5, "x": -84.32, "y": 39.72, "curve": 0.317, "c3": 0.693}, {"time": 0.6667, "x": -82.71, "y": 34.75, "curve": 0.317, "c3": 0.693}, - {"time": 0.8333, "x": -84.32, "y": 39.72, "curve": 0.317, "c3": 0.693}, {"time": 1.0833} + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 3.63, "y": 19.84, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.25, "x": -10.53, "y": -16.98, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.4167, "x": -10.44, "y": -18.31, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.5833, "x": -10.92, "y": -30.23, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.75} + ] + }, + "@pivot-main": { + "translate": [ + {"time": 0.25, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "y": 26.43, "curve": 0.315, "c4": 0.8}, {"time": 0.4167, "curve": "stepped"}, + {"time": 0.5833, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.6667, "y": 26.43, "curve": 0.315, "c4": 0.8}, {"time": 0.75} + ] + }, + "@leg-back-left": { + "translate": [ + {"time": 0.1167, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "x": -0.25, "y": -9.22, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.3333, "x": -0.44, "y": 4.57, "curve": 0.306, "c4": 0.8}, {"time": 0.4167, "x": -0.58, "y": -9.21}, + {"time": 0.5833, "x": -0.15, "y": -9.98, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.75} + ] + }, + "tail": { + "rotate": [ + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "angle": 12.92, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "angle": 18.48, "curve": 0, "c2": 0.3, "c3": 0.544}, + {"time": 0.35, "angle": -6.88, "curve": 0.7, "c4": 0.3}, {"time": 0.4167, "angle": 14}, {"time": 0.5833, "angle": 19.37, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.6833, "angle": -8.78, "curve": 0.313, "c3": 0.699}, {"time": 0.75} + ] + }, + "@shadow": { + "translate": [ + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 61.96, "curve": "stepped"}, {"time": 0.25, "x": 61.96, "curve": 0, "c2": 0.3, "c3": 0.544}, + {"time": 0.35, "x": -121.98, "curve": 0.7, "c4": 0.3}, {"time": 0.4167, "x": -154.28, "curve": "stepped"}, {"time": 0.5833, "x": -154.28, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.75} + ], + "scale": [ + {"time": 0.0833, "curve": 0, "c2": 0.26, "c3": 0.369, "c4": 0.62}, {"time": 0.25, "x": 1.06, "y": 1.06, "curve": 0.192, "c2": 0.45, "c3": 0.623}, + {"time": 0.35, "x": 0.96, "y": 0.96, "curve": 0.7, "c4": 0.3}, {"time": 0.4167, "x": 1.08, "y": 1.08, "curve": "stepped"}, + {"time": 0.5833, "x": 1.08, "y": 1.08, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.75} + ] + }, + "body-fur-15": { + "rotate": [ + {"angle": -5.19, "curve": 0.379, "c2": 0.6, "c3": 0.724}, {"time": 0.05, "curve": 0.25, "c3": 0.75}, {"time": 0.3167, "angle": -23.85, "curve": 0.25, "c3": 0.75}, + {"time": 0.3833, "angle": 26.05, "curve": 0.25, "c3": 0.75}, {"time": 0.6, "angle": -28.16, "curve": 0.242, "c3": 0.667, "c4": 0.67}, {"time": 0.75, "angle": 13.33} ] }, - "leg-front-right-IK": { - "translate": [{"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": 40.32, "curve": "stepped"}, {"time": 0.8333, "x": 40.32, "curve": 0.317, "c3": 0.693}, {"time": 1.0833}] - }, - "leg-front-left-IK": { - "translate": [{"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": 26.51, "curve": "stepped"}, {"time": 0.8333, "x": 26.51, "curve": 0.317, "c3": 0.693}, {"time": 1.0833}] + "body-fur-14": { + "rotate": [ + {"angle": -17.03, "curve": 0.344, "c2": 0.37, "c3": 0.704, "c4": 0.79}, {"time": 0.0833, "angle": -2.72, "curve": 0.371, "c2": 0.62, "c3": 0.71}, {"time": 0.1167}, + {"time": 0.3833, "angle": -23.85, "curve": 0.25, "c3": 0.75}, {"time": 0.45, "angle": 26.05, "curve": 0.25, "c3": 0.75}, + {"time": 0.6667, "angle": -28.16, "curve": 0.256, "c3": 0.619, "c4": 0.46}, {"time": 0.75, "angle": 13.33} + ] }, - "leg-back-left-IK": { - "translate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": -30.93, "y": 88.63, "curve": 0.617, "c4": 0.6}, {"time": 0.2667, "x": -62.81, "y": 72.23, "curve": 0, "c2": 0.4, "c3": 0.383}, - {"time": 0.35, "x": -28.19, "y": 96.83, "curve": 0.617, "c4": 0.6}, {"time": 0.45, "x": -62.81, "y": 72.23, "curve": 0, "c2": 0.4, "c3": 0.383}, - {"time": 0.55, "x": -28.19, "y": 96.83, "curve": 0.617, "c4": 0.6}, {"time": 0.6333, "x": -62.81, "y": 72.23, "curve": 0, "c2": 0.4, "c3": 0.383}, - {"time": 0.7333, "x": -28.19, "y": 96.83, "curve": 0.434, "c3": 0.739, "c4": 0.4}, {"time": 0.8333, "x": -56.92, "y": 76.7, "curve": 0.223, "c2": 0.33, "c3": 0.336}, {"time": 1.0833} + "body-fur-04": { + "rotate": [ + {"angle": -10.8, "curve": 0.353, "c2": 0.4, "c3": 0.696, "c4": 0.77}, {"time": 0.05, "angle": -2.72, "curve": 0.371, "c2": 0.62, "c3": 0.71}, {"time": 0.0833, "curve": 0.25, "c3": 0.75}, + {"time": 0.35, "angle": -23.85, "curve": 0.25, "c3": 0.75}, {"time": 0.4167, "angle": 26.05, "curve": 0.25, "c3": 0.75}, + {"time": 0.6333, "angle": -28.16, "curve": 0.246, "c3": 0.635, "c4": 0.55}, {"time": 0.75, "angle": 12.53} ] }, - "tail": { + "body-fur-13": { "rotate": [ - {"curve": 0, "c2": 0.3, "c3": 0.546}, {"time": 0.1667, "angle": 25.35, "curve": 0.317, "c3": 0.693}, {"time": 0.3333, "angle": 33.35, "curve": 0.317, "c3": 0.693}, - {"time": 0.5, "angle": 25.35, "curve": 0.317, "c3": 0.693}, {"time": 0.6667, "angle": 33.35, "curve": 0.317, "c3": 0.693}, - {"time": 0.9167, "angle": 25.35, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 1.0833} + {"angle": -10.98, "curve": 0.381, "c2": 0.54, "c3": 0.744}, {"time": 0.0833}, {"time": 0.35, "angle": -23.85, "curve": 0.25, "c3": 0.75}, + {"time": 0.4167, "angle": 26.05, "curve": 0.25, "c3": 0.75}, {"time": 0.6333, "angle": -28.16, "curve": 0.246, "c3": 0.635, "c4": 0.55}, {"time": 0.75, "angle": 11.59} ] }, - "@shadow": { - "translate": [{"curve": 0, "c2": 0.3, "c3": 0.546}, {"time": 0.1667, "x": 32.73, "curve": "stepped"}, {"time": 0.8333, "x": 32.73, "curve": 0.317, "c3": 0.693}, {"time": 1.0833}], - "scale": [ - {"time": 0.1667, "curve": 0.317, "c3": 0.693}, {"time": 0.25, "x": 1.02, "y": 1.02, "curve": 0.317, "c3": 0.693}, {"time": 0.3333, "curve": 0.317, "c3": 0.693}, - {"time": 0.4167, "x": 1.02, "y": 1.02, "curve": 0.317, "c3": 0.693}, {"time": 0.5, "curve": 0.317, "c3": 0.693}, {"time": 0.5833, "x": 1.02, "y": 1.02, "curve": 0.317, "c3": 0.693}, - {"time": 0.6667, "curve": 0.317, "c3": 0.693}, {"time": 0.8333, "x": 1.02, "y": 1.02, "curve": 0.317, "c3": 0.693}, {"time": 1.0833} + "body-fur-07": { + "rotate": [ + {"angle": -0.82, "curve": 0.356, "c2": 0.65, "c3": 0.691}, {"time": 0.0167, "curve": 0.25, "c3": 0.75}, {"time": 0.2833, "angle": -23.85, "curve": 0.25, "c3": 0.75}, + {"time": 0.35, "angle": 26.05, "curve": 0.25, "c3": 0.75}, {"time": 0.5667, "angle": -28.16, "curve": 0.246, "c3": 0.717, "c4": 0.86}, {"time": 0.75, "angle": 2.91} ] }, - "body-fur-under-04": { - "translate": [{"x": -0.33, "y": 3.2}], - "shear": [ - {"x": 10.24, "curve": 0.36, "c2": 0.64, "c3": 0.695}, {"time": 0.0333, "x": 11.47, "curve": 0.25, "c3": 0.75}, {"time": 0.3, "x": -17.33, "curve": 0.25, "c3": 0.75}, - {"time": 0.5667, "x": 11.47, "curve": 0.25, "c3": 0.75}, {"time": 0.8333, "x": -17.33, "curve": 0.245, "c3": 0.711, "c4": 0.83}, {"time": 1.0833, "x": 10.24} + "body-fur-08": { + "rotate": [ + {"angle": -2.72, "curve": 0.371, "c2": 0.62, "c3": 0.71}, {"time": 0.0333}, {"time": 0.3, "angle": -23.85, "curve": 0.25, "c3": 0.75}, + {"time": 0.3667, "angle": 26.05, "curve": 0.25, "c3": 0.75}, {"time": 0.5833, "angle": -28.16, "curve": 0.243, "c3": 0.689, "c4": 0.75}, {"time": 0.75, "angle": -0.91} ] }, - "body-fur-under-02": { - "translate": [{"x": -2.23, "y": 6.28}], - "shear": [ - {"x": -27.8, "curve": 0.375, "c2": 0.62, "c3": 0.716}, {"time": 0.05, "x": -31.97, "curve": 0.25, "c3": 0.75}, {"time": 0.3167, "x": 0.11, "curve": 0.25, "c3": 0.75}, - {"time": 0.6, "x": -31.97, "curve": 0.25, "c3": 0.75}, {"time": 0.8667, "x": 0.11, "curve": 0.243, "c3": 0.68, "c4": 0.71}, {"time": 1.0833, "x": -27.8} + "body-fur-09": { + "rotate": [ + {"angle": -7.8, "curve": 0.351, "c2": 0.4, "c3": 0.689, "c4": 0.75}, {"time": 0.0333, "angle": -2.72, "curve": 0.371, "c2": 0.62, "c3": 0.71}, {"time": 0.0667}, + {"time": 0.3333, "angle": -23.85, "curve": 0.25, "c3": 0.75}, {"time": 0.4, "angle": 26.05, "curve": 0.25, "c3": 0.75}, + {"time": 0.6167, "angle": -28.16, "curve": 0.243, "c3": 0.649, "c4": 0.6}, {"time": 0.75, "angle": 6.86} ] }, - "body-braid-03": { + "body-fur-10": { "rotate": [ - {"angle": -1.71, "curve": 0.337, "c2": 0.34, "c3": 0.673, "c4": 0.69}, {"time": 0.0333, "angle": 1, "curve": 0.354, "c2": 0.41, "c3": 0.694, "c4": 0.77}, - {"time": 0.1, "angle": 4, "curve": 0.369, "c2": 0.63, "c3": 0.706}, {"time": 0.1333, "angle": 5.15, "curve": 0.25, "c3": 0.75}, {"time": 0.4, "angle": -8.41, "curve": 0.25, "c3": 0.75}, - {"time": 0.6833, "angle": 5.15, "curve": 0.25, "c3": 0.75}, {"time": 0.95, "angle": -8.69, "curve": 0.25, "c3": 0.625, "c4": 0.5}, {"time": 1.0833, "angle": -1.71} + {"angle": -2.72, "curve": 0.371, "c2": 0.62, "c3": 0.71}, {"time": 0.0333, "curve": 0.25, "c3": 0.75}, {"time": 0.3, "angle": -23.85, "curve": 0.25, "c3": 0.75}, + {"time": 0.3667, "angle": 26.05, "curve": 0.25, "c3": 0.75}, {"time": 0.5833, "angle": -28.16, "curve": 0.243, "c3": 0.689, "c4": 0.75}, {"time": 0.75, "angle": 0.34} ] }, - "body-braid-06": { + "body-fur-06": { "rotate": [ - {"angle": -20.59, "curve": 0.352, "c2": 0.41, "c3": 0.689, "c4": 0.75}, {"time": 0.0333, "angle": -24.8, "curve": 0.369, "c2": 0.63, "c3": 0.706}, - {"time": 0.0833, "angle": -27.05, "curve": 0.318, "c3": 0.652, "c4": 0.34}, {"time": 0.1, "angle": -26.59, "curve": 0.271, "c2": 0.09, "c3": 0.753}, - {"time": 0.35, "curve": 0.25, "c3": 0.75}, {"time": 0.6167, "angle": -26.77, "curve": 0.25, "c3": 0.75}, {"time": 0.9, "curve": 0.243, "c3": 0.655, "c4": 0.63}, - {"time": 1.0833, "angle": -20.59} + {"angle": -7.8, "curve": 0.351, "c2": 0.4, "c3": 0.689, "c4": 0.75}, {"time": 0.0333, "angle": -2.72, "curve": 0.371, "c2": 0.62, "c3": 0.71}, {"time": 0.0667}, + {"time": 0.3333, "angle": -23.85, "curve": 0.25, "c3": 0.75}, {"time": 0.4, "angle": 26.05, "curve": 0.25, "c3": 0.75}, + {"time": 0.6167, "angle": -28.16, "curve": 0.243, "c3": 0.649, "c4": 0.6}, {"time": 0.75, "angle": 13.33} ] }, - "body-braid-05": { + "body-fur-12": { "rotate": [ - {"angle": -8.3, "curve": 0.294, "c3": 0.631, "c4": 0.37}, {"time": 0.0333, "angle": -7.64, "curve": 0.306, "c2": 0.23, "c3": 0.646, "c4": 0.59}, - {"time": 0.1, "angle": -5.77, "curve": 0.354, "c2": 0.41, "c3": 0.756}, {"time": 0.2667, "curve": 0.25, "c3": 0.75}, {"time": 0.5333, "angle": -8.02, "curve": 0.25, "c3": 0.75}, - {"time": 0.8167, "curve": 0.25, "c3": 0.75}, {"time": 1.0833, "angle": -8.3} + {"angle": -7.99, "curve": 0.382, "c2": 0.57, "c3": 0.735}, {"time": 0.0667, "curve": 0.25, "c3": 0.75}, {"time": 0.3333, "angle": -23.85, "curve": 0.25, "c3": 0.75}, + {"time": 0.4, "angle": 26.05, "curve": 0.25, "c3": 0.75}, {"time": 0.6167, "angle": -28.16, "curve": 0.243, "c3": 0.649, "c4": 0.6}, {"time": 0.75, "angle": 8.12} ] }, - "body-braid-02": { + "body-fur-01": { "rotate": [ - {"angle": 3.5, "curve": 0.348, "c2": 0.38, "c3": 0.685, "c4": 0.73}, {"time": 0.0333, "angle": 3.89, "curve": 0.375, "c2": 0.62, "c3": 0.716}, - {"time": 0.1, "angle": 4.18, "curve": 0.25, "c3": 0.75}, {"time": 0.3667, "angle": 1.94, "curve": 0.25, "c3": 0.75}, {"time": 0.6333, "angle": 4.18, "curve": 0.25, "c3": 0.75}, - {"time": 0.9, "angle": 1.94, "curve": 0.244, "c3": 0.646, "c4": 0.59}, {"time": 1.0833, "angle": 3.5} + {"angle": -7.99, "curve": 0.382, "c2": 0.57, "c3": 0.735}, {"time": 0.0667}, {"time": 0.3333, "angle": -23.85, "curve": 0.25, "c3": 0.75}, + {"time": 0.4, "angle": 26.05, "curve": 0.25, "c3": 0.75}, {"time": 0.6167, "angle": -28.16, "curve": 0.243, "c3": 0.649, "c4": 0.6}, {"time": 0.75, "angle": 10.51} ] }, - "body-braid-04": { + "body-fur-11": { "rotate": [ - {"angle": -9.29, "curve": 0.323, "c2": 0.3, "c3": 0.66, "c4": 0.65}, {"time": 0.0333, "angle": -6.92, "curve": 0.335, "c2": 0.34, "c3": 0.674, "c4": 0.69}, - {"time": 0.1, "angle": -3.73, "curve": 0.382, "c2": 0.57, "c3": 0.737}, {"time": 0.1833, "curve": 0.25, "c3": 0.75}, {"time": 0.4667, "angle": -11.98, "curve": 0.25, "c3": 0.75}, - {"time": 0.7333, "curve": 0.25, "c3": 0.75}, {"time": 1, "angle": -12.25, "curve": 0.269, "c3": 0.618, "c4": 0.42}, {"time": 1.0833, "angle": -9.29} + {"angle": -5.19, "curve": 0.379, "c2": 0.6, "c3": 0.724}, {"time": 0.05, "curve": 0.25, "c3": 0.75}, {"time": 0.3167, "angle": -23.85, "curve": 0.25, "c3": 0.75}, + {"time": 0.3833, "angle": 26.05, "curve": 0.25, "c3": 0.75}, {"time": 0.6, "angle": -28.16, "curve": 0.242, "c3": 0.667, "c4": 0.67}, {"time": 0.75, "angle": 4.23} ] }, - "body-braid-01": { + "body-fur-02": { "rotate": [ - {"angle": 2.31, "curve": 0.348, "c2": 0.38, "c3": 0.685, "c4": 0.73}, {"time": 0.0333, "angle": 2.87, "curve": 0.375, "c2": 0.62, "c3": 0.716}, - {"time": 0.1, "angle": 3.3, "curve": 0.25, "c3": 0.75}, {"time": 0.3667, "curve": 0.25, "c3": 0.75}, {"time": 0.6333, "angle": 3.3, "curve": 0.25, "c3": 0.75}, - {"time": 0.9, "curve": 0.244, "c3": 0.646, "c4": 0.59}, {"time": 1.0833, "angle": 2.31} + {"angle": -13.91, "curve": 0.351, "c2": 0.39, "c3": 0.701, "c4": 0.78}, {"time": 0.0667, "angle": -2.72, "curve": 0.371, "c2": 0.62, "c3": 0.71}, {"time": 0.1}, + {"time": 0.3667, "angle": -23.85, "curve": 0.25, "c3": 0.75}, {"time": 0.4333, "angle": 26.05, "curve": 0.25, "c3": 0.75}, + {"time": 0.65, "angle": -28.16, "curve": 0.25, "c3": 0.625, "c4": 0.5}, {"time": 0.75, "angle": 13.84} ] }, - "body-fur-under-03": { - "translate": [{"x": -0.78, "y": 3.19}], - "shear": [ - {"x": 22.47, "curve": 0.25, "c3": 0.75}, {"time": 0.2667, "curve": 0.25, "c3": 0.75}, {"time": 0.5333, "x": 22.47, "curve": 0.25, "c3": 0.75}, - {"time": 0.8167, "curve": 0.25, "c3": 0.75}, {"time": 1.0833, "x": 22.47} + "body-fur-05": { + "rotate": [ + {"angle": -2.72, "curve": 0.371, "c2": 0.62, "c3": 0.71}, {"time": 0.0333}, {"time": 0.3, "angle": -23.85, "curve": 0.25, "c3": 0.75}, + {"time": 0.3667, "angle": 26.05, "curve": 0.25, "c3": 0.75}, {"time": 0.5833, "angle": -28.16, "curve": 0.243, "c3": 0.689, "c4": 0.75}, {"time": 0.75, "angle": 6.86} ] }, - "body-fur-under-01": { - "translate": [{"x": -0.14, "y": 0.84}], - "shear": [ - {"x": -4.09, "curve": 0.375, "c2": 0.5, "c3": 0.75}, {"time": 0.1333, "x": -25.22, "curve": 0.25, "c3": 0.75}, {"time": 0.4, "x": 17.03, "curve": 0.25, "c3": 0.75}, - {"time": 0.6833, "x": -25.22, "curve": 0.25, "c3": 0.75}, {"time": 0.95, "x": 17.03, "curve": 0.25, "c3": 0.625, "c4": 0.5}, {"time": 1.0833, "x": -4.09} + "body-fur-03": { + "rotate": [ + {"angle": -5.19, "curve": 0.379, "c2": 0.6, "c3": 0.724}, {"time": 0.05, "curve": 0.25, "c3": 0.75}, {"time": 0.3167, "angle": -23.85, "curve": 0.25, "c3": 0.75}, + {"time": 0.3833, "angle": 26.05, "curve": 0.25, "c3": 0.75}, {"time": 0.6, "angle": -28.16, "curve": 0.242, "c3": 0.667, "c4": 0.67}, {"time": 0.75, "angle": 5.54} ] }, - "body-fur-under-05": { - "translate": [{"x": 0.53, "y": 14.98}], - "shear": [ - {"x": 3.7, "curve": 0.382, "c2": 0.57, "c3": 0.737}, {"time": 0.1, "x": 13.52, "curve": 0.25, "c3": 0.75}, {"time": 0.3667, "x": -18.7, "curve": 0.25, "c3": 0.75}, - {"time": 0.6333, "x": 13.52, "curve": 0.25, "c3": 0.75}, {"time": 0.9, "x": -18.7, "curve": 0.244, "c3": 0.646, "c4": 0.59}, {"time": 1.0833, "x": 3.7} + "body-fur-16": { + "rotate": [ + {"angle": -10.98, "curve": 0.381, "c2": 0.54, "c3": 0.744}, {"time": 0.0833, "curve": 0.25, "c3": 0.75}, {"time": 0.35, "angle": -23.85, "curve": 0.25, "c3": 0.75}, + {"time": 0.4167, "angle": 26.05, "curve": 0.25, "c3": 0.75}, {"time": 0.6333, "angle": -28.16, "curve": 0.246, "c3": 0.635, "c4": 0.55}, {"time": 0.75, "angle": 13.84} ] } }, - "drawOrder": [{"time": 0.0667, "offsets": [{"slot": "leg-back-left", "offset": 3}]}, {"time": 0.9}] + "events": [{"time": 0.25, "name": "start-attack"}, {"time": 0.4167, "name": "hit"}] }, - "2939918937": { - "slots": { - "eyes": {"attachment": [{"time": 0.05, "name": "eyes-happy"}, {"time": 2.0833, "name": "eyes"}]}, - "mouth": {"attachment": [{"time": 0.05, "name": "mouth-bite"}, {"time": 2.0833, "name": "mouth"}]} - }, + "2980215034": { "bones": { + "leg-front-left-IK": { + "translate": [ + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 3.08, "curve": 0.315, "c4": 0.8}, {"time": 0.15, "x": 13.79, "curve": 0, "c2": 0.3, "c3": 0.544}, + {"time": 0.25, "x": -43.09, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.3333, "x": 26.11, "curve": "stepped"}, {"time": 0.5, "x": 26.11, "curve": 0, "c2": 0.3, "c3": 0.544}, + {"time": 0.5833} + ] + }, "@pivot-back": { "rotate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "angle": 6, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.4833, "angle": 7, "curve": 0.317, "c3": 0.693}, - {"time": 0.55, "angle": 6.5, "curve": 0.317, "c3": 0.693}, {"time": 0.6167, "angle": 7, "curve": 0.317, "c3": 0.693}, {"time": 0.6833, "angle": 6.5, "curve": 0, "c2": 0.1, "c3": 0.85}, - {"time": 0.9167, "angle": 8, "curve": 0.317, "c3": 0.693}, {"time": 1.3333, "angle": -7, "curve": 0.461, "c3": 0.543}, {"time": 1.9167, "angle": -9, "curve": 0.154, "c4": 0.9}, - {"time": 2.1667, "angle": 3, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 2.3333} + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "angle": 5.51, "curve": 0.315, "c4": 0.8}, {"time": 0.2, "angle": -4, "curve": 0.62, "c3": 0.536}, + {"time": 0.5, "angle": 5.83, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5833, "angle": -1.41, "curve": 0.154, "c4": 0.9}, {"time": 0.6667} ], "translate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "x": 7, "y": 6, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.9167, "x": 11, "y": 10, "curve": 0.317, "c3": 0.693}, - {"time": 1.3333, "x": -45, "y": -14, "curve": 0.461, "c3": 0.543}, {"time": 1.9167, "x": -45, "y": -18, "curve": 0.154, "c4": 0.9}, - {"time": 2.1667, "y": 4.23, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 2.3333} + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.1167, "x": 13.63, "y": 1.37, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5, "y": -4.7, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.6667} ] }, "@leg-front-right": { "translate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "x": -2.08, "y": -23.58, "curve": "stepped"}, {"time": 0.9167, "x": -2.08, "y": -23.58, "curve": 0.317, "c3": 0.693}, - {"time": 1.3333, "x": -56.51, "y": 25.21, "curve": 0.461, "c3": 0.543}, {"time": 1.9167, "x": -57.58, "y": 31.33, "curve": 0.154, "c4": 0.9}, - {"time": 2.1667, "x": -1.95, "y": -12.95, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 2.3333} + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": -1.98, "y": -24.83, "curve": 0.263, "c3": 0.629, "c4": 0.42}, + {"time": 0.1667, "x": -2.18, "y": -3.56, "curve": 0.493, "c2": 0.32, "c4": 0.83}, {"time": 0.3333, "x": -2.18, "y": -2.89, "curve": "stepped"}, + {"time": 0.4833, "x": -2.18, "y": -2.89, "curve": 0, "c2": 0.17, "c3": 0.45, "c4": 0.61}, {"time": 0.5, "x": -1.98, "y": -24.83, "curve": 0, "c2": 0.17, "c3": 0.45, "c4": 0.61}, + {"time": 0.5833, "x": -1.28, "y": 8.38, "curve": 0.345, "c2": 0.53, "c3": 0.751}, {"time": 0.6667} ] }, - "@leg-front-left": { + "tail": { + "rotate": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1167, "angle": 11.6, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "angle": -18.66, "curve": 0.313, "c3": 0.699}, + {"time": 0.4667, "angle": 16.43, "curve": 0.315, "c4": 0.8}, {"time": 0.5833, "angle": -6.67, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.6667} + ] + }, + "leg-back-left-IK": { "translate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "x": -0.92, "y": -10.48, "curve": "stepped"}, {"time": 0.9167, "x": -0.92, "y": -10.48, "curve": 0.317, "c3": 0.693}, - {"time": 1.3333, "x": -48.7, "y": 5.49, "curve": 0.461, "c3": 0.543}, {"time": 1.9167, "x": -49.1, "y": 7.78, "curve": 0.154, "c4": 0.9}, - {"time": 2.1667, "x": -0.87, "y": -4.98, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 2.3333} + {"time": 0.15, "curve": 0.464, "c4": 0.7}, {"time": 0.25, "x": -43.09, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.4, "x": 34.02, "curve": "stepped"}, + {"time": 0.45, "x": 34.02, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.5833} ] }, "@leg-back-left": { "translate": [ - {"time": 0.25}, {"time": 0.9167, "x": 0.52, "y": 4.2, "curve": 0.317, "c3": 0.693}, {"time": 1.3333, "x": -2.48, "y": -1.61, "curve": "stepped"}, - {"time": 1.9167, "x": -2.48, "y": -1.61, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 2.1667} + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.1333, "x": -0.27, "y": -3.45, "curve": "stepped"}, {"time": 0.5, "x": -0.27, "y": -3.45, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.6667} ] }, - "leg-front-left-IK": { + "@leg-front-left": { "translate": [ - {"time": 0.9167, "curve": 0.317, "c3": 0.693}, {"time": 1.3333, "x": -11.56, "curve": "stepped"}, {"time": 1.9167, "x": -11.56, "curve": 0.154, "c4": 0.9}, {"time": 2.1667} + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": -1.04, "y": -13.11, "curve": 0.263, "c3": 0.629, "c4": 0.42}, + {"time": 0.1667, "x": -1.14, "y": -2.73, "curve": 0.493, "c2": 0.32, "c4": 0.83}, {"time": 0.3333, "x": -1.16, "y": -1.14, "curve": "stepped"}, + {"time": 0.4833, "x": -1.16, "y": -1.14, "curve": 0, "c2": 0.17, "c3": 0.45, "c4": 0.61}, {"time": 0.5, "x": -1.04, "y": -13.11, "curve": 0, "c2": 0.17, "c3": 0.45, "c4": 0.61}, + {"time": 0.5833, "x": -0.69, "y": 4.65, "curve": 0.345, "c2": 0.53, "c3": 0.751}, {"time": 0.6667} ] }, "leg-front-right-IK": { - "translate": [{"time": 0.9167, "curve": 0.317, "c3": 0.693}, {"time": 1.3333, "x": -5.65, "curve": "stepped"}, {"time": 1.9167, "x": -5.65, "curve": 0.154, "c4": 0.9}, {"time": 2.1667}] - }, - "leg-back-left-IK": { "translate": [ - {"time": 0.9167, "curve": 0.317, "c3": 0.693}, {"time": 1.3333, "x": -33.62, "curve": "stepped"}, {"time": 1.9167, "x": -33.62, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 2.1667} + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 3.08, "curve": 0.315, "c4": 0.8}, {"time": 0.15, "x": 13.79, "curve": 0, "c2": 0.3, "c3": 0.544}, + {"time": 0.25, "x": -43.09, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.3333, "x": 26.11, "curve": "stepped"}, {"time": 0.5, "x": 26.11, "curve": 0, "c2": 0.3, "c3": 0.544}, + {"time": 0.5833} ] }, - "tail": { + "@shadow": { + "scale": [ + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 1.1, "y": 1.1, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "x": 0.8, "y": 0.8, "curve": 0.315, "c4": 0.8}, + {"time": 0.5, "x": 1.1, "y": 1.1, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.6667} + ] + }, + "@pivot-main": { + "translate": [{"time": 0.1667, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "y": 133.58, "curve": 0.315, "c4": 0.8}, {"time": 0.5}], + "scale": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "y": 0.97, "curve": 0.315, "c4": 0.8}, {"time": 0.1667, "curve": "stepped"}, {"time": 0.4167, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.5, "y": 0.97, "curve": 0.315, "c4": 0.8}, {"time": 0.5833} + ] + }, + "body-fur-16": { "rotate": [ - {"curve": 0, "c2": 0.3, "c3": 0.546}, {"time": 0.25, "angle": 20.35, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.4167, "angle": 15.85, "curve": 0.317, "c3": 0.693}, - {"time": 0.4833, "angle": 17.35, "curve": 0.317, "c3": 0.693}, {"time": 0.55, "angle": 15.85, "curve": 0.317, "c3": 0.693}, {"time": 0.6167, "angle": 18.35, "curve": 0.317, "c3": 0.693}, - {"time": 0.6833, "angle": 16.85, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.9167, "angle": 18.35, "curve": 0.317, "c3": 0.693}, - {"time": 1.3333, "angle": -9.65, "curve": 0.461, "c3": 0.543}, {"time": 1.9167, "angle": -13.65, "curve": 0.154, "c4": 0.9}, - {"time": 2.1667, "angle": 10.35, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 2.3333} + {"angle": -30.09, "curve": 0.352, "c2": 0.65, "c3": 0.687}, {"time": 0.0167, "angle": -31.42, "curve": 0.25, "c3": 0.75}, {"time": 0.1833, "angle": 10.37, "curve": 0.25, "c3": 0.75}, + {"time": 0.2667, "angle": -19.33, "curve": 0.25, "c3": 0.75}, {"time": 0.4333, "angle": 26.76, "curve": 0.246, "c3": 0.723, "c4": 0.88}, {"time": 0.6667, "angle": 13.84} ] }, - "body-fur-under-04": { - "translate": [{"x": -0.33, "y": 3.2}], - "shear": [ - {"x": 10.24, "curve": 0.36, "c2": 0.64, "c3": 0.695}, {"time": 0.0333, "x": 11.47, "curve": 0.25, "c3": 0.75}, {"time": 0.3167, "x": -17.33, "curve": 0.25, "c3": 0.75}, - {"time": 0.6167, "x": 11.47, "curve": 0.25, "c3": 0.75}, {"time": 0.9, "x": -17.33, "curve": 0.245, "c3": 0.711, "c4": 0.83}, - {"time": 1.1667, "x": 10.24, "curve": 0.36, "c2": 0.64, "c3": 0.695}, {"time": 1.2, "x": 11.47, "curve": 0.25, "c3": 0.75}, {"time": 1.4833, "x": -17.33, "curve": 0.25, "c3": 0.75}, - {"time": 1.7833, "x": 11.47, "curve": 0.25, "c3": 0.75}, {"time": 2.0833, "x": -17.33, "curve": 0.245, "c3": 0.711, "c4": 0.83}, {"time": 2.3333, "x": 10.24} + "body-fur-15": { + "rotate": [ + {"angle": -29.64, "curve": 0.289, "c2": 0.17, "c3": 0.755}, {"time": 0.15, "angle": 10.37, "curve": 0.25, "c3": 0.75}, {"time": 0.2333, "angle": -19.33, "curve": 0.25, "c3": 0.75}, + {"time": 0.4, "angle": 26.76, "curve": 0.25, "c3": 0.75}, {"time": 0.6667, "angle": 13.33} ] }, - "body-fur-under-02": { - "translate": [{"x": -2.23, "y": 6.28}], - "shear": [ - {"x": -27.8, "curve": 0.375, "c2": 0.62, "c3": 0.716}, {"time": 0.0667, "x": -31.97, "curve": 0.25, "c3": 0.75}, {"time": 0.35, "x": 0.11, "curve": 0.25, "c3": 0.75}, - {"time": 0.65, "x": -31.97, "curve": 0.25, "c3": 0.75}, {"time": 0.9333, "x": 0.11, "curve": 0.243, "c3": 0.68, "c4": 0.71}, - {"time": 1.1667, "x": -27.8, "curve": 0.375, "c2": 0.62, "c3": 0.716}, {"time": 1.2333, "x": -31.97, "curve": 0.25, "c3": 0.75}, {"time": 1.5167, "x": 0.11, "curve": 0.25, "c3": 0.75}, - {"time": 1.8167, "x": -31.97, "curve": 0.25, "c3": 0.75}, {"time": 2.1, "x": 0.11, "curve": 0.243, "c3": 0.68, "c4": 0.71}, {"time": 2.3333, "x": -27.8} + "body-fur-14": { + "rotate": [ + {"angle": -27.38, "curve": 0.366, "c2": 0.63, "c3": 0.703}, {"time": 0.0333, "angle": -31.42, "curve": 0.243, "c3": 0.655, "c4": 0.63}, + {"time": 0.15, "angle": 0.25, "curve": 0.382, "c2": 0.58, "c3": 0.731}, {"time": 0.2, "angle": 10.37}, {"time": 0.2833, "angle": -19.33, "curve": 0.25, "c3": 0.75}, + {"time": 0.45, "angle": 26.76, "curve": 0.244, "c3": 0.7, "c4": 0.79}, {"time": 0.6667, "angle": 13.33} ] }, - "body-braid-03": { + "body-fur-13": { "rotate": [ - {"angle": -1.71, "curve": 0.337, "c2": 0.34, "c3": 0.673, "c4": 0.69}, {"time": 0.05, "angle": 1, "curve": 0.354, "c2": 0.41, "c3": 0.694, "c4": 0.77}, - {"time": 0.1, "angle": 4, "curve": 0.369, "c2": 0.63, "c3": 0.706}, {"time": 0.15, "angle": 5.15, "curve": 0.25, "c3": 0.75}, {"time": 0.4333, "angle": -8.41, "curve": 0.25, "c3": 0.75}, - {"time": 0.7333, "angle": 5.15, "curve": 0.25, "c3": 0.75}, {"time": 1.0167, "angle": -8.69, "curve": 0.25, "c3": 0.625, "c4": 0.5}, - {"time": 1.1667, "angle": -1.71, "curve": 0.337, "c2": 0.34, "c3": 0.673, "c4": 0.69}, {"time": 1.2167, "angle": 1, "curve": 0.354, "c2": 0.41, "c3": 0.694, "c4": 0.77}, - {"time": 1.2667, "angle": 4, "curve": 0.369, "c2": 0.63, "c3": 0.706}, {"time": 1.3167, "angle": 5.15, "curve": 0.25, "c3": 0.75}, - {"time": 1.6, "angle": -8.41, "curve": 0.25, "c3": 0.75}, {"time": 1.9, "angle": 5.15, "curve": 0.25, "c3": 0.75}, {"time": 2.2, "angle": -8.69, "curve": 0.25, "c3": 0.625, "c4": 0.5}, - {"time": 2.3333, "angle": -1.71} + {"angle": -29.64, "curve": 0.289, "c2": 0.17, "c3": 0.755}, {"time": 0.15, "angle": 10.37}, {"time": 0.2333, "angle": -19.33, "curve": 0.25, "c3": 0.75}, + {"time": 0.4, "angle": 26.76, "curve": 0.25, "c3": 0.75}, {"time": 0.6667, "angle": 11.59} ] }, - "body-braid-06": { + "body-fur-12": { "rotate": [ - {"angle": -20.59, "curve": 0.352, "c2": 0.41, "c3": 0.689, "c4": 0.75}, {"time": 0.05, "angle": -24.8, "curve": 0.369, "c2": 0.63, "c3": 0.706}, - {"time": 0.0833, "angle": -27.05, "curve": 0.318, "c3": 0.652, "c4": 0.34}, {"time": 0.1, "angle": -26.59, "curve": 0.271, "c2": 0.09, "c3": 0.753}, - {"time": 0.3833, "curve": 0.25, "c3": 0.75}, {"time": 0.6667, "angle": -26.77, "curve": 0.25, "c3": 0.75}, {"time": 0.9667, "curve": 0.243, "c3": 0.655, "c4": 0.63}, - {"time": 1.1667, "angle": -20.59, "curve": 0.352, "c2": 0.41, "c3": 0.689, "c4": 0.75}, {"time": 1.2167, "angle": -24.8, "curve": 0.369, "c2": 0.63, "c3": 0.706}, - {"time": 1.25, "angle": -27.05, "curve": 0.318, "c3": 0.652, "c4": 0.34}, {"time": 1.2667, "angle": -26.59, "curve": 0.271, "c2": 0.09, "c3": 0.753}, - {"time": 1.55, "curve": 0.25, "c3": 0.75}, {"time": 1.85, "angle": -26.77, "curve": 0.25, "c3": 0.75}, {"time": 2.1333, "curve": 0.243, "c3": 0.655, "c4": 0.63}, - {"time": 2.3333, "angle": -20.59} + {"angle": -21.3, "curve": 0.345, "c2": 0.37, "c3": 0.757}, {"time": 0.1167, "angle": 10.37, "curve": 0.25, "c3": 0.75}, {"time": 0.2, "angle": -19.33, "curve": 0.25, "c3": 0.75}, + {"time": 0.3667, "angle": 26.76, "curve": 0.25, "c3": 0.75}, {"time": 0.6167, "angle": -31.42, "curve": 0.269, "c3": 0.618, "c4": 0.42}, {"time": 0.6667, "angle": 8.12} ] }, - "body-braid-05": { + "body-fur-11": { "rotate": [ - {"angle": -8.3, "curve": 0.294, "c3": 0.631, "c4": 0.37}, {"time": 0.05, "angle": -7.64, "curve": 0.306, "c2": 0.23, "c3": 0.646, "c4": 0.59}, - {"time": 0.1, "angle": -5.77, "curve": 0.354, "c2": 0.41, "c3": 0.756}, {"time": 0.3, "curve": 0.25, "c3": 0.75}, {"time": 0.5833, "angle": -8.02, "curve": 0.25, "c3": 0.75}, - {"time": 0.8833, "curve": 0.25, "c3": 0.75}, {"time": 1.1667, "angle": -8.3, "curve": 0.294, "c3": 0.631, "c4": 0.37}, - {"time": 1.2167, "angle": -7.64, "curve": 0.306, "c2": 0.23, "c3": 0.646, "c4": 0.59}, {"time": 1.2667, "angle": -5.77, "curve": 0.354, "c2": 0.41, "c3": 0.756}, - {"time": 1.4667, "curve": 0.25, "c3": 0.75}, {"time": 1.75, "angle": -8.02, "curve": 0.25, "c3": 0.75}, {"time": 2.05, "curve": 0.25, "c3": 0.75}, {"time": 2.3333, "angle": -8.3} + {"angle": -10.53, "curve": 0.375, "c2": 0.5, "c3": 0.75}, {"time": 0.0833, "angle": 10.37, "curve": 0.25, "c3": 0.75}, {"time": 0.1667, "angle": -19.33, "curve": 0.25, "c3": 0.75}, + {"time": 0.3333, "angle": 26.76, "curve": 0.25, "c3": 0.75}, {"time": 0.5833, "angle": -31.42, "curve": 0.25, "c3": 0.625, "c4": 0.5}, {"time": 0.6667, "angle": 4.23} ] }, - "body-braid-02": { + "body-fur-10": { "rotate": [ - {"angle": 3.5, "curve": 0.348, "c2": 0.38, "c3": 0.685, "c4": 0.73}, {"time": 0.05, "angle": 3.89, "curve": 0.375, "c2": 0.62, "c3": 0.716}, - {"time": 0.1, "angle": 4.18, "curve": 0.25, "c3": 0.75}, {"time": 0.4, "angle": 1.94, "curve": 0.25, "c3": 0.75}, {"time": 0.6833, "angle": 4.18, "curve": 0.25, "c3": 0.75}, - {"time": 0.9833, "angle": 1.94, "curve": 0.244, "c3": 0.646, "c4": 0.59}, {"time": 1.1667, "angle": 3.5, "curve": 0.348, "c2": 0.38, "c3": 0.685, "c4": 0.73}, - {"time": 1.2167, "angle": 3.89, "curve": 0.375, "c2": 0.62, "c3": 0.716}, {"time": 1.2667, "angle": 4.18, "curve": 0.25, "c3": 0.75}, - {"time": 1.5667, "angle": 1.94, "curve": 0.25, "c3": 0.75}, {"time": 1.85, "angle": 4.18, "curve": 0.25, "c3": 0.75}, - {"time": 2.15, "angle": 1.94, "curve": 0.244, "c3": 0.646, "c4": 0.59}, {"time": 2.3333, "angle": 3.5} + {"angle": 0.25, "curve": 0.382, "c2": 0.58, "c3": 0.731}, {"time": 0.05, "angle": 10.37, "curve": 0.25, "c3": 0.75}, {"time": 0.1333, "angle": -19.33, "curve": 0.25, "c3": 0.75}, + {"time": 0.3, "angle": 26.76, "curve": 0.25, "c3": 0.75}, {"time": 0.55, "angle": -31.42, "curve": 0.243, "c3": 0.655, "c4": 0.63}, {"time": 0.6667, "angle": 0.34} ] }, - "body-braid-04": { + "body-fur-09": { "rotate": [ - {"angle": -9.29, "curve": 0.323, "c2": 0.3, "c3": 0.66, "c4": 0.65}, {"time": 0.05, "angle": -6.92, "curve": 0.335, "c2": 0.34, "c3": 0.674, "c4": 0.69}, - {"time": 0.1, "angle": -3.73, "curve": 0.382, "c2": 0.57, "c3": 0.737}, {"time": 0.2, "curve": 0.25, "c3": 0.75}, {"time": 0.5, "angle": -11.98, "curve": 0.25, "c3": 0.75}, - {"time": 0.7833, "curve": 0.25, "c3": 0.75}, {"time": 1.0833, "angle": -12.25, "curve": 0.269, "c3": 0.618, "c4": 0.42}, - {"time": 1.1667, "angle": -9.29, "curve": 0.323, "c2": 0.3, "c3": 0.66, "c4": 0.65}, {"time": 1.2167, "angle": -6.92, "curve": 0.335, "c2": 0.34, "c3": 0.674, "c4": 0.69}, - {"time": 1.2667, "angle": -3.73, "curve": 0.382, "c2": 0.57, "c3": 0.737}, {"time": 1.3667, "curve": 0.25, "c3": 0.75}, {"time": 1.6667, "angle": -11.98, "curve": 0.25, "c3": 0.75}, - {"time": 1.9667, "curve": 0.25, "c3": 0.75}, {"time": 2.25, "angle": -12.25, "curve": 0.269, "c3": 0.618, "c4": 0.42}, {"time": 2.3333, "angle": -9.29} + {"angle": -10.42, "curve": 0.339, "c2": 0.35, "c3": 0.679, "c4": 0.7}, {"time": 0.0333, "angle": 0.25, "curve": 0.382, "c2": 0.58, "c3": 0.731}, {"time": 0.0833, "angle": 10.37}, + {"time": 0.1667, "angle": -19.33, "curve": 0.25, "c3": 0.75}, {"time": 0.3333, "angle": 26.76, "curve": 0.25, "c3": 0.75}, + {"time": 0.5833, "angle": -31.42, "curve": 0.25, "c3": 0.625, "c4": 0.5}, {"time": 0.6667, "angle": 6.86} ] }, - "body-braid-01": { + "body-fur-08": { "rotate": [ - {"angle": 2.31, "curve": 0.348, "c2": 0.38, "c3": 0.685, "c4": 0.73}, {"time": 0.05, "angle": 2.87, "curve": 0.375, "c2": 0.62, "c3": 0.716}, - {"time": 0.1, "angle": 3.3, "curve": 0.25, "c3": 0.75}, {"time": 0.4, "curve": 0.25, "c3": 0.75}, {"time": 0.6833, "angle": 3.3, "curve": 0.25, "c3": 0.75}, - {"time": 0.9833, "curve": 0.244, "c3": 0.646, "c4": 0.59}, {"time": 1.1667, "angle": 2.31, "curve": 0.348, "c2": 0.38, "c3": 0.685, "c4": 0.73}, - {"time": 1.2167, "angle": 2.87, "curve": 0.375, "c2": 0.62, "c3": 0.716}, {"time": 1.2667, "angle": 3.3, "curve": 0.25, "c3": 0.75}, {"time": 1.5667, "curve": 0.25, "c3": 0.75}, - {"time": 1.85, "angle": 3.3, "curve": 0.25, "c3": 0.75}, {"time": 2.15, "curve": 0.244, "c3": 0.646, "c4": 0.59}, {"time": 2.3333, "angle": 2.31} + {"angle": 4.93, "curve": 0.375, "c2": 0.62, "c3": 0.716}, {"time": 0.0333, "angle": 10.37}, {"time": 0.1167, "angle": -19.33, "curve": 0.25, "c3": 0.75}, + {"time": 0.2833, "angle": 26.76, "curve": 0.25, "c3": 0.75}, {"time": 0.5333, "angle": -31.42, "curve": 0.243, "c3": 0.68, "c4": 0.71}, {"time": 0.6667, "angle": -0.91} ] }, - "body-fur-under-03": { - "translate": [{"x": -0.78, "y": 3.19}], - "shear": [ - {"x": 22.47, "curve": 0.25, "c3": 0.75}, {"time": 0.3, "curve": 0.25, "c3": 0.75}, {"time": 0.5833, "x": 22.47, "curve": 0.25, "c3": 0.75}, {"time": 0.8833, "curve": 0.25, "c3": 0.75}, - {"time": 1.1667, "x": 22.47, "curve": 0.25, "c3": 0.75}, {"time": 1.4667, "curve": 0.25, "c3": 0.75}, {"time": 1.75, "x": 22.47, "curve": 0.25, "c3": 0.75}, - {"time": 2.05, "curve": 0.25, "c3": 0.75}, {"time": 2.3333, "x": 22.47} + "body-fur-07": { + "rotate": [ + {"angle": -5, "curve": 0.381, "c2": 0.55, "c3": 0.742}, {"time": 0.0667, "angle": 10.37, "curve": 0.25, "c3": 0.75}, {"time": 0.15, "angle": -19.33, "curve": 0.25, "c3": 0.75}, + {"time": 0.3167, "angle": 26.76, "curve": 0.25, "c3": 0.75}, {"time": 0.5667, "angle": -31.42, "curve": 0.245, "c3": 0.637, "c4": 0.56}, {"time": 0.6667, "angle": 2.91} ] }, - "body-fur-under-01": { - "translate": [{"x": -0.14, "y": 0.84}], - "shear": [ - {"x": -4.09, "curve": 0.375, "c2": 0.5, "c3": 0.75}, {"time": 0.15, "x": -25.22, "curve": 0.25, "c3": 0.75}, {"time": 0.4333, "x": 17.03, "curve": 0.25, "c3": 0.75}, - {"time": 0.7333, "x": -25.22, "curve": 0.25, "c3": 0.75}, {"time": 1.0167, "x": 17.03, "curve": 0.25, "c3": 0.625, "c4": 0.5}, - {"time": 1.1667, "x": -4.09, "curve": 0.375, "c2": 0.5, "c3": 0.75}, {"time": 1.3167, "x": -25.22, "curve": 0.25, "c3": 0.75}, {"time": 1.6, "x": 17.03, "curve": 0.25, "c3": 0.75}, - {"time": 1.9, "x": -25.22, "curve": 0.25, "c3": 0.75}, {"time": 2.2, "x": 17.03, "curve": 0.25, "c3": 0.625, "c4": 0.5}, {"time": 2.3333, "x": -4.09} + "body-fur-06": { + "rotate": [ + {"angle": -29.66, "curve": 0.277, "c2": 0.14, "c3": 0.667, "c4": 0.67}, {"time": 0.1, "angle": 0.25, "curve": 0.382, "c2": 0.58, "c3": 0.731}, {"time": 0.15, "angle": 10.37}, + {"time": 0.2333, "angle": -19.33, "curve": 0.25, "c3": 0.75}, {"time": 0.4, "angle": 26.76, "curve": 0.25, "c3": 0.75}, {"time": 0.6667, "angle": 13.33} ] }, - "body-fur-under-05": { - "translate": [{"x": 0.53, "y": 14.98}], - "shear": [ - {"x": 3.7, "curve": 0.382, "c2": 0.57, "c3": 0.737}, {"time": 0.1, "x": 13.52, "curve": 0.25, "c3": 0.75}, {"time": 0.4, "x": -18.7, "curve": 0.25, "c3": 0.75}, - {"time": 0.6833, "x": 13.52, "curve": 0.25, "c3": 0.75}, {"time": 0.9833, "x": -18.7, "curve": 0.244, "c3": 0.646, "c4": 0.59}, - {"time": 1.1667, "x": 3.7, "curve": 0.382, "c2": 0.57, "c3": 0.737}, {"time": 1.2667, "x": 13.52, "curve": 0.25, "c3": 0.75}, {"time": 1.5667, "x": -18.7, "curve": 0.25, "c3": 0.75}, - {"time": 1.85, "x": 13.52, "curve": 0.25, "c3": 0.75}, {"time": 2.15, "x": -18.7, "curve": 0.244, "c3": 0.646, "c4": 0.59}, {"time": 2.3333, "x": 3.7} + "body-fur-05": { + "rotate": [ + {"angle": -16.05, "curve": 0.363, "c2": 0.44, "c3": 0.755}, {"time": 0.1, "angle": 10.37}, {"time": 0.1833, "angle": -19.33, "curve": 0.25, "c3": 0.75}, + {"time": 0.35, "angle": 26.76, "curve": 0.25, "c3": 0.75}, {"time": 0.6, "angle": -31.42, "curve": 0.258, "c3": 0.619, "c4": 0.45}, {"time": 0.6667, "angle": 6.86} + ] + }, + "body-fur-04": { + "rotate": [ + {"angle": -30.09, "curve": 0.352, "c2": 0.65, "c3": 0.687}, {"time": 0.0167, "angle": -31.42, "curve": 0.243, "c3": 0.655, "c4": 0.63}, + {"time": 0.1333, "angle": 0.25, "curve": 0.382, "c2": 0.58, "c3": 0.731}, {"time": 0.1833, "angle": 10.37}, {"time": 0.2667, "angle": -19.33, "curve": 0.25, "c3": 0.75}, + {"time": 0.4333, "angle": 26.76, "curve": 0.246, "c3": 0.723, "c4": 0.88}, {"time": 0.6667, "angle": 12.53} + ] + }, + "body-fur-03": { + "rotate": [ + {"angle": -25.98, "curve": 0.32, "c2": 0.29, "c3": 0.757}, {"time": 0.1333, "angle": 10.37, "curve": 0.25, "c3": 0.75}, {"time": 0.2167, "angle": -19.33, "curve": 0.25, "c3": 0.75}, + {"time": 0.3833, "angle": 26.76, "curve": 0.25, "c3": 0.75}, {"time": 0.6333, "angle": -31.42, "curve": 0.284, "c3": 0.625, "c4": 0.38}, {"time": 0.6667, "angle": 5.54} + ] + }, + "body-fur-02": { + "rotate": [ + {"angle": -25.95, "curve": 0.303, "c2": 0.24, "c3": 0.674, "c4": 0.69}, {"time": 0.0833, "angle": 0.25, "curve": 0.382, "c2": 0.58, "c3": 0.731}, + {"time": 0.1333, "angle": 10.37, "curve": 0.25, "c3": 0.75}, {"time": 0.2167, "angle": -19.33, "curve": 0.25, "c3": 0.75}, {"time": 0.3833, "angle": 26.76, "curve": 0.25, "c3": 0.75}, + {"time": 0.6333, "angle": -31.42, "curve": 0.284, "c3": 0.625, "c4": 0.38}, {"time": 0.6667, "angle": 13.84} + ] + }, + "body-fur-01": { + "rotate": [ + {"angle": -10.53, "curve": 0.375, "c2": 0.5, "c3": 0.75}, {"time": 0.0833, "angle": 10.37}, {"time": 0.1667, "angle": -19.33, "curve": 0.25, "c3": 0.75}, + {"time": 0.3333, "angle": 26.76, "curve": 0.25, "c3": 0.75}, {"time": 0.5833, "angle": -31.42, "curve": 0.25, "c3": 0.625, "c4": 0.5}, {"time": 0.6667, "angle": 10.51} ] } - } - }, - "620315410": { - "slots": { - "eyes": {"attachment": [{"time": 0.3, "name": "eyes-angry"}, {"time": 1.2333, "name": "eyes"}]}, - "mouth": {"attachment": [{"time": 0.3, "name": "mouth-bite"}, {"time": 1.2333, "name": "mouth"}]} }, + "events": [{"time": 0.15, "name": "jump"}] + }, + "160094506": { "bones": { "@pivot-back": { "rotate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1, "angle": 6, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.2, "angle": -6, "curve": 0.315, "c4": 0.8}, - {"time": 0.3, "angle": 5.5, "curve": 0.317, "c3": 0.693}, {"time": 0.3833, "angle": 4.5, "curve": 0.317, "c3": 0.693}, {"time": 0.4667, "angle": 5.5, "curve": 0.317, "c3": 0.693}, - {"time": 0.55, "angle": 4.5, "curve": 0.317, "c3": 0.693}, {"time": 0.6333, "angle": 5.5, "curve": 0.317, "c3": 0.693}, {"time": 0.7167, "angle": 4.5, "curve": 0.317, "c3": 0.693}, - {"time": 0.8, "angle": 5.5, "curve": 0.317, "c3": 0.693}, {"time": 0.8833, "angle": 4.5, "curve": 0.317, "c3": 0.693}, {"time": 0.9667, "angle": 5.5, "curve": 0.317, "c3": 0.693}, - {"time": 1.05, "angle": 4.5, "curve": 0.317, "c3": 0.693}, {"time": 1.1333, "angle": 5.5, "curve": 0.317, "c3": 0.693}, {"time": 1.2167, "angle": 6, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 1.3167, "angle": -3, "curve": 0.315, "c4": 0.8}, {"time": 1.4167} + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "angle": 5.51, "curve": 0.315, "c4": 0.8}, {"time": 0.2, "angle": -4, "curve": 0.62, "c3": 0.536}, + {"time": 0.5, "angle": 5.83, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5833, "angle": -1.41, "curve": 0.154, "c4": 0.9}, {"time": 0.6667} ], "translate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1, "y": 4.69, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.2, "y": 43.73, "curve": 0.315, "c4": 0.8}, - {"time": 0.3, "y": 3.84, "curve": "stepped"}, {"time": 1.2167, "y": 3.84, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1.3167, "y": 43.73, "curve": 0.315, "c4": 0.8}, {"time": 1.4167} + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.1167, "x": 13.63, "y": 1.37, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5, "y": -4.7, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.6667} + ] + }, + "@leg-front-right": { + "translate": [ + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": -1.98, "y": -24.83, "curve": 0.263, "c3": 0.629, "c4": 0.42}, + {"time": 0.1667, "x": -2.18, "y": -3.56, "curve": 0.493, "c2": 0.32, "c4": 0.83}, {"time": 0.3333, "x": -2.18, "y": -2.89, "curve": "stepped"}, + {"time": 0.4833, "x": -2.18, "y": -2.89, "curve": 0, "c2": 0.17, "c3": 0.45, "c4": 0.61}, {"time": 0.5, "x": -1.98, "y": -24.83, "curve": 0, "c2": 0.17, "c3": 0.45, "c4": 0.61}, + {"time": 0.5833, "x": -1.28, "y": 8.38, "curve": 0.345, "c2": 0.53, "c3": 0.751}, {"time": 0.6667} + ] + }, + "leg-front-right-IK": { + "translate": [ + {"time": 0.15, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.25, "x": 26.77, "curve": 0.315, "c4": 0.8}, {"time": 0.35, "x": -20.02, "curve": "stepped"}, + {"time": 0.5, "x": -20.02, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.5833} ] }, "@leg-front-left": { "translate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1, "x": -1.28, "y": -14.48, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.2, "curve": 0.315, "c4": 0.8}, - {"time": 0.3, "x": -1.28, "y": -14.48, "curve": 0.317, "c3": 0.693}, {"time": 0.3833, "x": -1.02, "y": -10.26, "curve": 0.317, "c3": 0.693}, - {"time": 0.4667, "x": -1.22, "y": -13.05, "curve": 0.317, "c3": 0.693}, {"time": 0.55, "x": -1.02, "y": -10.26, "curve": 0.317, "c3": 0.693}, - {"time": 0.6333, "x": -1.22, "y": -13.05, "curve": 0.317, "c3": 0.693}, {"time": 0.7167, "x": -1.02, "y": -10.26, "curve": 0.317, "c3": 0.693}, - {"time": 0.8, "x": -1.22, "y": -13.05, "curve": 0.317, "c3": 0.693}, {"time": 0.8833, "x": -1.02, "y": -10.26, "curve": 0.317, "c3": 0.693}, - {"time": 0.9667, "x": -1.22, "y": -13.05, "curve": 0.317, "c3": 0.693}, {"time": 1.05, "x": -1.02, "y": -10.26, "curve": 0.317, "c3": 0.693}, - {"time": 1.1333, "x": -1.22, "y": -13.05, "curve": 0.317, "c3": 0.693}, {"time": 1.2167, "x": -1.28, "y": -14.48, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1.3167} + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": -1.04, "y": -13.11, "curve": 0.263, "c3": 0.629, "c4": 0.42}, + {"time": 0.1667, "x": -1.14, "y": -2.73, "curve": 0.493, "c2": 0.32, "c4": 0.83}, {"time": 0.3333, "x": -1.16, "y": -1.14, "curve": "stepped"}, + {"time": 0.4833, "x": -1.16, "y": -1.14, "curve": 0, "c2": 0.17, "c3": 0.45, "c4": 0.61}, {"time": 0.5, "x": -1.04, "y": -13.11, "curve": 0, "c2": 0.17, "c3": 0.45, "c4": 0.61}, + {"time": 0.5833, "x": -0.69, "y": 4.65, "curve": 0.345, "c2": 0.53, "c3": 0.751}, {"time": 0.6667} ] }, - "@leg-front-right": { + "leg-front-left-IK": { "translate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1, "x": -2.46, "y": -27.93, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.2, "curve": 0.315, "c4": 0.8}, - {"time": 0.3, "x": -2.46, "y": -27.93, "curve": 0.317, "c3": 0.693}, {"time": 0.3833, "x": -2.06, "y": -21.45, "curve": 0.317, "c3": 0.693}, - {"time": 0.4667, "x": -2.44, "y": -26.54, "curve": 0.317, "c3": 0.693}, {"time": 0.55, "x": -2.06, "y": -21.45, "curve": 0.317, "c3": 0.693}, - {"time": 0.6333, "x": -2.44, "y": -26.54, "curve": 0.317, "c3": 0.693}, {"time": 0.7167, "x": -2.06, "y": -21.45, "curve": 0.317, "c3": 0.693}, - {"time": 0.8, "x": -2.44, "y": -26.54, "curve": 0.317, "c3": 0.693}, {"time": 0.8833, "x": -2.06, "y": -21.45, "curve": 0.317, "c3": 0.693}, - {"time": 0.9667, "x": -2.44, "y": -26.54, "curve": 0.317, "c3": 0.693}, {"time": 1.05, "x": -2.06, "y": -21.45, "curve": 0.317, "c3": 0.693}, - {"time": 1.1333, "x": -2.44, "y": -26.54, "curve": 0.317, "c3": 0.693}, {"time": 1.2167, "x": -2.46, "y": -27.93, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1.3167} + {"time": 0.15, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.25, "x": 26.77, "curve": 0.315, "c4": 0.8}, {"time": 0.35, "x": -20.02, "curve": "stepped"}, + {"time": 0.5, "x": -20.02, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.5833} ] }, - "@pivot-main": { + "@leg-back-left": { "translate": [ - {"time": 0.1, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.3, "x": -154.22, "curve": "stepped"}, {"time": 1.2167, "x": -154.22, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 1.4167} + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.1333, "x": -0.27, "y": -3.45, "curve": "stepped"}, {"time": 0.5, "x": -0.27, "y": -3.45, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.6667} ] }, - "leg-front-left-IK": {"translate": [{"time": 1.2167, "curve": 0.315, "c4": 0.8}, {"time": 1.3167, "x": -61.13, "curve": 0.315, "c4": 0.8}, {"time": 1.4167}]}, - "leg-front-right-IK": {"translate": [{"time": 1.2167, "curve": 0.315, "c4": 0.8}, {"time": 1.3167, "x": -61.13, "curve": 0.315, "c4": 0.8}, {"time": 1.4167}]}, - "@shadow": { + "leg-back-left-IK": { "translate": [ - {"time": 0.1, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.3, "x": -162.84, "curve": "stepped"}, {"time": 1.2167, "x": -162.84, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 1.4167} - ], + {"time": 0.15, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.25, "x": 26.77, "curve": "stepped"}, {"time": 0.3, "x": 26.77, "curve": 0.315, "c4": 0.8}, + {"time": 0.4167, "x": -20.02, "curve": "stepped"}, {"time": 0.5, "x": -20.02, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.5833} + ] + }, + "@pivot-main": { + "translate": [{"time": 0.1667, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "y": 133.58, "curve": 0.315, "c4": 0.8}, {"time": 0.5}], "scale": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1, "x": 1.1, "y": 1.1, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.2, "x": 0.92, "y": 0.92, "curve": 0.315, "c4": 0.8}, - {"time": 0.3, "x": 1.1, "y": 1.1, "curve": 0.317, "c3": 0.693}, {"time": 0.3833, "x": 1.06, "y": 1.06, "curve": 0.317, "c3": 0.693}, - {"time": 0.4667, "x": 1.1, "y": 1.1, "curve": 0.317, "c3": 0.693}, {"time": 0.55, "x": 1.06, "y": 1.06, "curve": 0.317, "c3": 0.693}, - {"time": 0.6333, "x": 1.1, "y": 1.1, "curve": 0.317, "c3": 0.693}, {"time": 0.7167, "x": 1.06, "y": 1.06, "curve": 0.317, "c3": 0.693}, - {"time": 0.8, "x": 1.1, "y": 1.1, "curve": 0.317, "c3": 0.693}, {"time": 0.8833, "x": 1.06, "y": 1.06, "curve": 0.317, "c3": 0.693}, - {"time": 0.9667, "x": 1.1, "y": 1.1, "curve": 0.317, "c3": 0.693}, {"time": 1.05, "x": 1.06, "y": 1.06, "curve": 0.317, "c3": 0.693}, - {"time": 1.1333, "x": 1.1, "y": 1.1, "curve": "stepped"}, {"time": 1.2167, "x": 1.1, "y": 1.1, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 1.3167, "x": 0.92, "y": 0.92, "curve": 0.315, "c4": 0.8}, {"time": 1.4167} + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "y": 0.97, "curve": 0.315, "c4": 0.8}, {"time": 0.1667, "curve": "stepped"}, {"time": 0.4167, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.5, "y": 0.97, "curve": 0.315, "c4": 0.8}, {"time": 0.5833} ] }, "tail": { "rotate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1, "angle": 16.7, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.2, "angle": -16.65, "curve": 0.315, "c4": 0.8}, - {"time": 0.3, "angle": 17.85, "curve": 0.317, "c3": 0.693}, {"time": 0.4333, "angle": 15.5, "curve": 0.317, "c3": 0.693}, {"time": 0.5667, "angle": 17.85, "curve": 0.317, "c3": 0.693}, - {"time": 0.7, "angle": 15.5, "curve": 0.317, "c3": 0.693}, {"time": 0.8333, "angle": 17.85, "curve": 0.317, "c3": 0.693}, {"time": 0.95, "angle": 15.5, "curve": 0.317, "c3": 0.693}, - {"time": 1.0833, "angle": 17.85, "curve": 0.317, "c3": 0.693}, {"time": 1.2167, "angle": 15.5, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 1.3167, "angle": -14.65, "curve": 0.315, "c4": 0.8}, {"time": 1.4167} + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1167, "angle": 11.6, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "angle": -18.66, "curve": 0.313, "c3": 0.699}, + {"time": 0.4667, "angle": 16.43, "curve": 0.315, "c4": 0.8}, {"time": 0.5833, "angle": -6.67, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.6667} ] }, - "back": { + "@shadow": { + "scale": [ + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 1.1, "y": 1.1, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "x": 0.8, "y": 0.8, "curve": 0.315, "c4": 0.8}, + {"time": 0.5, "x": 1.1, "y": 1.1, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.6667} + ] + }, + "body-fur-16": { "rotate": [ - {"time": 0.3, "curve": 0.306, "c3": 0.695}, {"time": 0.4833, "angle": 5.93, "curve": 0.306, "c3": 0.695}, {"time": 0.65, "curve": 0.306, "c3": 0.695}, - {"time": 0.8333, "angle": 5.93, "curve": 0.306, "c3": 0.695}, {"time": 1.0167, "curve": 0.306, "c3": 0.695}, {"time": 1.2167, "angle": 5.93, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 1.4167} + {"angle": 17.78, "curve": 0.352, "c2": 0.65, "c3": 0.687}, {"time": 0.0167, "angle": 18.96, "curve": 0.25, "c3": 0.75}, {"time": 0.1833, "angle": -16.75, "curve": 0.25, "c3": 0.75}, + {"time": 0.2667, "angle": 6.13, "curve": 0.25, "c3": 0.75}, {"time": 0.4333, "angle": -32.74, "curve": 0.246, "c3": 0.723, "c4": 0.88}, {"time": 0.6667, "angle": 13.84} ] }, - "body-fur-under-04": { - "translate": [{"x": -0.33, "y": 3.2}], - "shear": [ - {"x": 10.24, "curve": 0.36, "c2": 0.64, "c3": 0.695}, {"time": 0.0167, "x": 11.47, "curve": 0.25, "c3": 0.75}, {"time": 0.2, "x": -17.33, "curve": 0.25, "c3": 0.75}, - {"time": 0.3667, "x": 11.47, "curve": 0.25, "c3": 0.75}, {"time": 0.55, "x": -17.33, "curve": 0.245, "c3": 0.711, "c4": 0.83}, - {"time": 0.7167, "x": 10.24, "curve": 0.36, "c2": 0.64, "c3": 0.695}, {"time": 0.7333, "x": 11.47, "curve": 0.25, "c3": 0.75}, {"time": 0.9, "x": -17.33, "curve": 0.25, "c3": 0.75}, - {"time": 1.0833, "x": 11.47, "curve": 0.25, "c3": 0.75}, {"time": 1.2667, "x": -17.33, "curve": 0.245, "c3": 0.711, "c4": 0.83}, {"time": 1.4167, "x": 10.24} + "body-fur-15": { + "rotate": [ + {"angle": 17.44, "curve": 0.289, "c2": 0.17, "c3": 0.755}, {"time": 0.15, "angle": -16.75, "curve": 0.25, "c3": 0.75}, {"time": 0.2333, "angle": 6.13, "curve": 0.25, "c3": 0.75}, + {"time": 0.4, "angle": -32.74, "curve": 0.25, "c3": 0.75}, {"time": 0.65, "angle": 18.96, "curve": 0.305, "c3": 0.64, "c4": 0.36}, {"time": 0.6667, "angle": 13.33} ] }, - "body-fur-under-02": { - "translate": [{"x": -2.23, "y": 6.28}], - "shear": [ - {"x": -27.8, "curve": 0.375, "c2": 0.62, "c3": 0.716}, {"time": 0.0333, "x": -31.97, "curve": 0.25, "c3": 0.75}, {"time": 0.2167, "x": 0.11, "curve": 0.25, "c3": 0.75}, - {"time": 0.3833, "x": -31.97, "curve": 0.25, "c3": 0.75}, {"time": 0.5667, "x": 0.11, "curve": 0.243, "c3": 0.68, "c4": 0.71}, - {"time": 0.7167, "x": -27.8, "curve": 0.375, "c2": 0.62, "c3": 0.716}, {"time": 0.75, "x": -31.97, "curve": 0.25, "c3": 0.75}, {"time": 0.9167, "x": 0.11, "curve": 0.25, "c3": 0.75}, - {"time": 1.1, "x": -31.97, "curve": 0.25, "c3": 0.75}, {"time": 1.2833, "x": 0.11, "curve": 0.243, "c3": 0.68, "c4": 0.71}, {"time": 1.4167, "x": -27.8} + "body-fur-14": { + "rotate": [ + {"angle": 15.36, "curve": 0.366, "c2": 0.63, "c3": 0.703}, {"time": 0.0333, "angle": 18.96, "curve": 0.243, "c3": 0.655, "c4": 0.63}, + {"time": 0.15, "angle": -8.1, "curve": 0.382, "c2": 0.58, "c3": 0.731}, {"time": 0.2, "angle": -16.75}, {"time": 0.2833, "angle": 6.13, "curve": 0.25, "c3": 0.75}, + {"time": 0.45, "angle": -32.74, "curve": 0.244, "c3": 0.7, "c4": 0.79}, {"time": 0.6667, "angle": 13.33} ] }, - "body-braid-03": { + "body-fur-13": { + "rotate": [ + {"angle": 17.44, "curve": 0.289, "c2": 0.17, "c3": 0.755}, {"time": 0.15, "angle": -16.75}, {"time": 0.2333, "angle": 6.13, "curve": 0.25, "c3": 0.75}, + {"time": 0.4, "angle": -32.74, "curve": 0.25, "c3": 0.75}, {"time": 0.65, "angle": 18.96, "curve": 0.305, "c3": 0.64, "c4": 0.36}, {"time": 0.6667, "angle": 11.59} + ] + }, + "body-fur-12": { + "rotate": [ + {"angle": 10.31, "curve": 0.345, "c2": 0.37, "c3": 0.757}, {"time": 0.1167, "angle": -16.75, "curve": 0.25, "c3": 0.75}, {"time": 0.2, "angle": 6.13, "curve": 0.25, "c3": 0.75}, + {"time": 0.3667, "angle": -32.74, "curve": 0.25, "c3": 0.75}, {"time": 0.6167, "angle": 18.96, "curve": 0.269, "c3": 0.618, "c4": 0.42}, {"time": 0.6667, "angle": 8.12} + ] + }, + "body-fur-11": { + "rotate": [ + {"angle": 1.1, "curve": 0.375, "c2": 0.5, "c3": 0.75}, {"time": 0.0833, "angle": -16.75, "curve": 0.25, "c3": 0.75}, {"time": 0.1667, "angle": 6.13, "curve": 0.25, "c3": 0.75}, + {"time": 0.3333, "angle": -32.74, "curve": 0.25, "c3": 0.75}, {"time": 0.5833, "angle": 18.96, "curve": 0.25, "c3": 0.625, "c4": 0.5}, {"time": 0.6667, "angle": 4.23} + ] + }, + "body-fur-10": { + "rotate": [ + {"angle": -8.1, "curve": 0.382, "c2": 0.58, "c3": 0.731}, {"time": 0.05, "angle": -16.75, "curve": 0.25, "c3": 0.75}, {"time": 0.1333, "angle": 6.13, "curve": 0.25, "c3": 0.75}, + {"time": 0.3, "angle": -32.74, "curve": 0.25, "c3": 0.75}, {"time": 0.55, "angle": 18.96, "curve": 0.243, "c3": 0.655, "c4": 0.63}, {"time": 0.6667, "angle": 0.34} + ] + }, + "body-fur-09": { "rotate": [ - {"angle": -1.71, "curve": 0.337, "c2": 0.34, "c3": 0.673, "c4": 0.69}, {"time": 0.0333, "angle": 1, "curve": 0.354, "c2": 0.41, "c3": 0.694, "c4": 0.77}, - {"time": 0.0667, "angle": 4, "curve": 0.369, "c2": 0.63, "c3": 0.706}, {"time": 0.0833, "angle": 5.15, "curve": 0.25, "c3": 0.75}, - {"time": 0.2667, "angle": -8.41, "curve": 0.25, "c3": 0.75}, {"time": 0.45, "angle": 5.15, "curve": 0.25, "c3": 0.75}, - {"time": 0.6167, "angle": -8.69, "curve": 0.25, "c3": 0.625, "c4": 0.5}, {"time": 0.7167, "angle": -1.71, "curve": 0.337, "c2": 0.34, "c3": 0.673, "c4": 0.69}, - {"time": 0.7333, "angle": 1, "curve": 0.354, "c2": 0.41, "c3": 0.694, "c4": 0.77}, {"time": 0.7667, "angle": 4, "curve": 0.369, "c2": 0.63, "c3": 0.706}, - {"time": 0.8, "angle": 5.15, "curve": 0.25, "c3": 0.75}, {"time": 0.9833, "angle": -8.41, "curve": 0.25, "c3": 0.75}, {"time": 1.15, "angle": 5.15, "curve": 0.25, "c3": 0.75}, - {"time": 1.3333, "angle": -8.69, "curve": 0.25, "c3": 0.625, "c4": 0.5}, {"time": 1.4167, "angle": -1.71} + {"angle": 1.01, "curve": 0.339, "c2": 0.35, "c3": 0.679, "c4": 0.7}, {"time": 0.0333, "angle": -8.1, "curve": 0.382, "c2": 0.58, "c3": 0.731}, {"time": 0.0833, "angle": -16.75}, + {"time": 0.1667, "angle": 6.13, "curve": 0.25, "c3": 0.75}, {"time": 0.3333, "angle": -32.74, "curve": 0.25, "c3": 0.75}, + {"time": 0.5833, "angle": 18.96, "curve": 0.25, "c3": 0.625, "c4": 0.5}, {"time": 0.6667, "angle": 6.86} ] }, - "body-braid-06": { + "body-fur-08": { "rotate": [ - {"angle": -20.59, "curve": 0.352, "c2": 0.41, "c3": 0.689, "c4": 0.75}, {"time": 0.0333, "angle": -24.8, "curve": 0.369, "c2": 0.63, "c3": 0.706}, - {"time": 0.05, "angle": -27.05, "curve": 0.318, "c3": 0.652, "c4": 0.34}, {"time": 0.0667, "angle": -26.59, "curve": 0.271, "c2": 0.09, "c3": 0.753}, - {"time": 0.2333, "curve": 0.25, "c3": 0.75}, {"time": 0.4167, "angle": -26.77, "curve": 0.25, "c3": 0.75}, {"time": 0.5833, "curve": 0.243, "c3": 0.655, "c4": 0.63}, - {"time": 0.7167, "angle": -20.59, "curve": 0.352, "c2": 0.41, "c3": 0.689, "c4": 0.75}, {"time": 0.7333, "angle": -24.8, "curve": 0.369, "c2": 0.63, "c3": 0.706}, - {"time": 0.7667, "angle": -26.59, "curve": 0.271, "c2": 0.09, "c3": 0.753}, {"time": 0.9333, "curve": 0.25, "c3": 0.75}, {"time": 1.1167, "angle": -26.77, "curve": 0.25, "c3": 0.75}, - {"time": 1.3, "curve": 0.243, "c3": 0.655, "c4": 0.63}, {"time": 1.4167, "angle": -20.59} + {"angle": -12.1, "curve": 0.375, "c2": 0.62, "c3": 0.716}, {"time": 0.0333, "angle": -16.75}, {"time": 0.1167, "angle": 6.13, "curve": 0.25, "c3": 0.75}, + {"time": 0.2833, "angle": -32.74, "curve": 0.25, "c3": 0.75}, {"time": 0.5333, "angle": 18.96, "curve": 0.243, "c3": 0.68, "c4": 0.71}, {"time": 0.6667, "angle": -0.91} ] }, - "body-braid-05": { + "body-fur-07": { "rotate": [ - {"angle": -8.3, "curve": 0.294, "c3": 0.631, "c4": 0.37}, {"time": 0.0333, "angle": -7.64, "curve": 0.306, "c2": 0.23, "c3": 0.646, "c4": 0.59}, - {"time": 0.0667, "angle": -5.77, "curve": 0.354, "c2": 0.41, "c3": 0.756}, {"time": 0.1833, "curve": 0.25, "c3": 0.75}, {"time": 0.35, "angle": -8.02, "curve": 0.25, "c3": 0.75}, - {"time": 0.5333, "curve": 0.25, "c3": 0.75}, {"time": 0.7167, "angle": -8.3, "curve": 0.294, "c3": 0.631, "c4": 0.37}, - {"time": 0.7333, "angle": -7.64, "curve": 0.306, "c2": 0.23, "c3": 0.646, "c4": 0.59}, {"time": 0.7667, "angle": -5.77, "curve": 0.354, "c2": 0.41, "c3": 0.756}, - {"time": 0.8833, "curve": 0.25, "c3": 0.75}, {"time": 1.0667, "angle": -8.02, "curve": 0.25, "c3": 0.75}, {"time": 1.25, "curve": 0.25, "c3": 0.75}, {"time": 1.4167, "angle": -8.3} + {"angle": -3.61, "curve": 0.381, "c2": 0.55, "c3": 0.742}, {"time": 0.0667, "angle": -16.75, "curve": 0.25, "c3": 0.75}, {"time": 0.15, "angle": 6.13, "curve": 0.25, "c3": 0.75}, + {"time": 0.3167, "angle": -32.74, "curve": 0.25, "c3": 0.75}, {"time": 0.5667, "angle": 18.96, "curve": 0.245, "c3": 0.637, "c4": 0.56}, {"time": 0.6667, "angle": 2.91} ] }, - "body-braid-02": { + "body-fur-06": { "rotate": [ - {"angle": 3.5, "curve": 0.348, "c2": 0.38, "c3": 0.685, "c4": 0.73}, {"time": 0.0333, "angle": 3.89, "curve": 0.375, "c2": 0.62, "c3": 0.716}, - {"time": 0.0667, "angle": 4.18, "curve": 0.25, "c3": 0.75}, {"time": 0.2333, "angle": 1.94, "curve": 0.25, "c3": 0.75}, {"time": 0.4167, "angle": 4.18, "curve": 0.25, "c3": 0.75}, - {"time": 0.6, "angle": 1.94, "curve": 0.244, "c3": 0.646, "c4": 0.59}, {"time": 0.7167, "angle": 3.5, "curve": 0.348, "c2": 0.38, "c3": 0.685, "c4": 0.73}, - {"time": 0.7333, "angle": 3.89, "curve": 0.375, "c2": 0.62, "c3": 0.716}, {"time": 0.7667, "angle": 4.18, "curve": 0.25, "c3": 0.75}, - {"time": 0.95, "angle": 1.94, "curve": 0.25, "c3": 0.75}, {"time": 1.1333, "angle": 4.18, "curve": 0.25, "c3": 0.75}, - {"time": 1.3, "angle": 1.94, "curve": 0.244, "c3": 0.646, "c4": 0.59}, {"time": 1.4167, "angle": 3.5} + {"angle": 17.45, "curve": 0.277, "c2": 0.14, "c3": 0.667, "c4": 0.67}, {"time": 0.1, "angle": -8.1, "curve": 0.382, "c2": 0.58, "c3": 0.731}, + {"time": 0.15, "angle": -16.75, "curve": 0.25, "c3": 0.75}, {"time": 0.2333, "angle": 6.13, "curve": 0.25, "c3": 0.75}, {"time": 0.4, "angle": -32.74, "curve": 0.25, "c3": 0.75}, + {"time": 0.65, "angle": 18.96, "curve": 0.305, "c3": 0.64, "c4": 0.36}, {"time": 0.6667, "angle": 13.33} ] }, - "body-braid-04": { + "body-fur-05": { "rotate": [ - {"angle": -9.29, "curve": 0.323, "c2": 0.3, "c3": 0.66, "c4": 0.65}, {"time": 0.0333, "angle": -6.92, "curve": 0.335, "c2": 0.34, "c3": 0.674, "c4": 0.69}, - {"time": 0.0667, "angle": -3.73, "curve": 0.382, "c2": 0.57, "c3": 0.737}, {"time": 0.1167, "curve": 0.25, "c3": 0.75}, {"time": 0.3, "angle": -11.98, "curve": 0.25, "c3": 0.75}, - {"time": 0.4833, "curve": 0.25, "c3": 0.75}, {"time": 0.65, "angle": -12.25, "curve": 0.269, "c3": 0.618, "c4": 0.42}, - {"time": 0.7167, "angle": -9.29, "curve": 0.323, "c2": 0.3, "c3": 0.66, "c4": 0.65}, {"time": 0.7333, "angle": -6.92, "curve": 0.335, "c2": 0.34, "c3": 0.674, "c4": 0.69}, - {"time": 0.7667, "angle": -3.73, "curve": 0.382, "c2": 0.57, "c3": 0.737}, {"time": 0.8333, "curve": 0.25, "c3": 0.75}, {"time": 1.0167, "angle": -11.98, "curve": 0.25, "c3": 0.75}, - {"time": 1.1833, "curve": 0.25, "c3": 0.75}, {"time": 1.3667, "angle": -12.25, "curve": 0.269, "c3": 0.618, "c4": 0.42}, {"time": 1.4167, "angle": -9.29} + {"angle": 5.82, "curve": 0.363, "c2": 0.44, "c3": 0.755}, {"time": 0.1, "angle": -16.75, "curve": 0.25, "c3": 0.75}, {"time": 0.1833, "angle": 6.13, "curve": 0.25, "c3": 0.75}, + {"time": 0.35, "angle": -32.74, "curve": 0.25, "c3": 0.75}, {"time": 0.6, "angle": 18.96, "curve": 0.258, "c3": 0.619, "c4": 0.45}, {"time": 0.6667, "angle": 6.86} ] }, - "body-braid-01": { + "body-fur-04": { "rotate": [ - {"angle": 2.31, "curve": 0.348, "c2": 0.38, "c3": 0.685, "c4": 0.73}, {"time": 0.0333, "angle": 2.87, "curve": 0.375, "c2": 0.62, "c3": 0.716}, - {"time": 0.0667, "angle": 3.3, "curve": 0.25, "c3": 0.75}, {"time": 0.2333, "curve": 0.25, "c3": 0.75}, {"time": 0.4167, "angle": 3.3, "curve": 0.25, "c3": 0.75}, - {"time": 0.6, "curve": 0.244, "c3": 0.646, "c4": 0.59}, {"time": 0.7167, "angle": 2.31, "curve": 0.348, "c2": 0.38, "c3": 0.685, "c4": 0.73}, - {"time": 0.7333, "angle": 2.87, "curve": 0.375, "c2": 0.62, "c3": 0.716}, {"time": 0.7667, "angle": 3.3, "curve": 0.25, "c3": 0.75}, {"time": 0.95, "curve": 0.25, "c3": 0.75}, - {"time": 1.1333, "angle": 3.3, "curve": 0.25, "c3": 0.75}, {"time": 1.3, "curve": 0.244, "c3": 0.646, "c4": 0.59}, {"time": 1.4167, "angle": 2.31} + {"angle": 17.78, "curve": 0.352, "c2": 0.65, "c3": 0.687}, {"time": 0.0167, "angle": 18.96, "curve": 0.243, "c3": 0.655, "c4": 0.63}, + {"time": 0.1333, "angle": -8.1, "curve": 0.382, "c2": 0.58, "c3": 0.731}, {"time": 0.1833, "angle": -16.75}, {"time": 0.2667, "angle": 6.13, "curve": 0.25, "c3": 0.75}, + {"time": 0.4333, "angle": -32.74, "curve": 0.246, "c3": 0.723, "c4": 0.88}, {"time": 0.6667, "angle": 12.53} ] }, - "body-fur-under-03": { - "translate": [{"x": -0.78, "y": 3.19}], - "shear": [ - {"x": 22.47, "curve": 0.25, "c3": 0.75}, {"time": 0.1833, "curve": 0.25, "c3": 0.75}, {"time": 0.35, "x": 22.47, "curve": 0.25, "c3": 0.75}, {"time": 0.5333, "curve": 0.25, "c3": 0.75}, - {"time": 0.7167, "x": 22.47, "curve": 0.25, "c3": 0.75}, {"time": 0.8833, "curve": 0.25, "c3": 0.75}, {"time": 1.0667, "x": 22.47, "curve": 0.25, "c3": 0.75}, - {"time": 1.25, "curve": 0.25, "c3": 0.75}, {"time": 1.4167, "x": 22.47} + "body-fur-03": { + "rotate": [ + {"angle": 14.31, "curve": 0.32, "c2": 0.29, "c3": 0.757}, {"time": 0.1333, "angle": -16.75}, {"time": 0.2167, "angle": 6.13, "curve": 0.25, "c3": 0.75}, + {"time": 0.3833, "angle": -32.74, "curve": 0.25, "c3": 0.75}, {"time": 0.6333, "angle": 18.96, "curve": 0.284, "c3": 0.625, "c4": 0.38}, {"time": 0.6667, "angle": 5.54} ] }, - "body-fur-under-01": { - "translate": [{"x": -0.14, "y": 0.84}], - "shear": [ - {"x": -4.09, "curve": 0.375, "c2": 0.5, "c3": 0.75}, {"time": 0.0833, "x": -25.22, "curve": 0.25, "c3": 0.75}, {"time": 0.2667, "x": 17.03, "curve": 0.25, "c3": 0.75}, - {"time": 0.45, "x": -25.22, "curve": 0.25, "c3": 0.75}, {"time": 0.6167, "x": 17.03, "curve": 0.25, "c3": 0.625, "c4": 0.5}, - {"time": 0.7167, "x": -4.09, "curve": 0.375, "c2": 0.5, "c3": 0.75}, {"time": 0.8, "x": -25.22, "curve": 0.25, "c3": 0.75}, {"time": 0.9833, "x": 17.03, "curve": 0.25, "c3": 0.75}, - {"time": 1.15, "x": -25.22, "curve": 0.25, "c3": 0.75}, {"time": 1.3333, "x": 17.03, "curve": 0.25, "c3": 0.625, "c4": 0.5}, {"time": 1.4167, "x": -4.09} + "body-fur-02": { + "rotate": [ + {"angle": 14.28, "curve": 0.303, "c2": 0.24, "c3": 0.674, "c4": 0.69}, {"time": 0.0833, "angle": -8.1, "curve": 0.382, "c2": 0.58, "c3": 0.731}, {"time": 0.1333, "angle": -16.75}, + {"time": 0.2167, "angle": 6.13, "curve": 0.25, "c3": 0.75}, {"time": 0.3833, "angle": -32.74, "curve": 0.25, "c3": 0.75}, + {"time": 0.6333, "angle": 18.96, "curve": 0.284, "c3": 0.625, "c4": 0.38}, {"time": 0.6667, "angle": 13.84} ] }, - "body-fur-under-05": { - "translate": [{"x": 0.53, "y": 14.98}], - "shear": [ - {"x": 3.7, "curve": 0.382, "c2": 0.57, "c3": 0.737}, {"time": 0.0667, "x": 13.52, "curve": 0.25, "c3": 0.75}, {"time": 0.2333, "x": -18.7, "curve": 0.25, "c3": 0.75}, - {"time": 0.4167, "x": 13.52, "curve": 0.25, "c3": 0.75}, {"time": 0.6, "x": -18.7, "curve": 0.244, "c3": 0.646, "c4": 0.59}, - {"time": 0.7167, "x": 3.7, "curve": 0.382, "c2": 0.57, "c3": 0.737}, {"time": 0.7667, "x": 13.52, "curve": 0.25, "c3": 0.75}, {"time": 0.95, "x": -18.7, "curve": 0.25, "c3": 0.75}, - {"time": 1.1333, "x": 13.52, "curve": 0.25, "c3": 0.75}, {"time": 1.3, "x": -18.7, "curve": 0.244, "c3": 0.646, "c4": 0.59}, {"time": 1.4167, "x": 3.7} + "body-fur-01": { + "rotate": [ + {"angle": 1.1, "curve": 0.375, "c2": 0.5, "c3": 0.75}, {"time": 0.0833, "angle": -16.75}, {"time": 0.1667, "angle": 6.13, "curve": 0.25, "c3": 0.75}, + {"time": 0.3333, "angle": -32.74, "curve": 0.25, "c3": 0.75}, {"time": 0.5833, "angle": 18.96, "curve": 0.25, "c3": 0.625, "c4": 0.5}, {"time": 0.6667, "angle": 10.51} ] } - } + }, + "events": [{"time": 0.15, "name": "jump"}] }, - "4243571983": { - "slots": {"eyes": {"attachment": [{"name": "eyes-happy"}]}, "leg-front-left": {"attachment": [{"time": 0.2, "name": "leg-front-left-stretch"}, {"time": 0.5833, "name": "leg-front-left"}]}}, + "2847851775": { + "slots": { + "eyes": {"attachment": [{"time": 0.0833, "name": "eyes-shut"}, {"time": 0.1667, "name": "eyes-angry"}, {"time": 0.9833, "name": "eyes-shut"}, {"time": 1.0833, "name": "eyes"}]}, + "leg-front-left": { + "attachment": [ + {"time": 0.5, "name": "leg-front-left-stretch"}, {"time": 0.6333, "name": "leg-front-left"}, {"time": 0.7667, "name": "leg-front-left-stretch"}, {"time": 0.9, "name": "leg-front-left"} + ] + }, + "mouth": {"attachment": [{"time": 0.0833, "name": "mouth-bite"}, {"time": 0.3667, "name": "mouth-open"}, {"time": 0.9833, "name": "mouth-bite"}, {"time": 1.0833, "name": "mouth"}]} + }, "bones": { - "@leg-front-left": { + "@pivot-back": { + "rotate": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.15, "angle": 3.67, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.3333, "angle": -14.29, "curve": 0.779, "c4": 0.3}, + {"time": 0.3667, "angle": 15.82}, {"time": 0.4667, "angle": 16.67, "curve": 0.779, "c4": 0.3}, {"time": 0.5, "angle": -19.96}, {"time": 0.6, "angle": -21.17, "curve": 0.779, "c4": 0.3}, + {"time": 0.6333, "angle": 15.82}, {"time": 0.7333, "angle": 16.67, "curve": 0.779, "c4": 0.3}, {"time": 0.7667, "angle": -19.96}, + {"time": 0.8667, "angle": -21.17, "curve": 0.779, "c4": 0.3}, {"time": 0.9833, "angle": 4.4, "curve": 0, "c2": 0.1, "c3": 0.85}, + {"time": 1.05, "angle": 6.79, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1.25} + ], "translate": [ - {"x": -14.55, "y": -2.39, "curve": 0.374, "c2": 0.33, "c3": 0.72, "c4": 0.68}, {"time": 0.0333, "x": -24.69, "y": -4.71, "curve": 0.37, "c2": 0.57, "c3": 0.746}, - {"time": 0.1667, "x": -24.61, "y": -1.31, "curve": 0.37, "c2": 0.57, "c3": 0.746}, {"time": 0.3333, "x": 13.45, "y": -27.72, "curve": 0.345, "c2": 0.53, "c3": 0.751}, - {"time": 0.4833, "x": 40.66, "y": -4.9, "curve": 0.262, "c3": 0.63, "c4": 0.42}, {"time": 0.5667, "x": 49.25, "y": 8.32, "curve": 0.343, "c2": 0.3, "c3": 0.688, "c4": 0.65}, - {"time": 0.7, "x": 9.23, "y": 17.43, "curve": 0.255, "c3": 0.659, "c4": 0.47}, {"time": 0.75, "x": -14.55, "y": -2.39} + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.2167, "x": 8.02, "curve": 0, "c2": 0.4, "c3": 0.383}, {"time": 0.3333, "x": -54.3, "y": 61.69, "curve": 0.779, "c4": 0.3}, + {"time": 0.3667, "x": -60.41, "y": 130.13}, {"time": 0.4667, "x": -60.41, "y": 130.01, "curve": 0.779, "c4": 0.3}, {"time": 0.5, "x": -58.41, "y": 9.6}, + {"time": 0.6, "x": -58.41, "y": 9.9, "curve": 0.779, "c4": 0.3}, {"time": 0.6333, "x": -60.41, "y": 130.13}, {"time": 0.7333, "x": -60.41, "y": 130.01, "curve": 0.779, "c4": 0.3}, + {"time": 0.7667, "x": -58.41, "y": 9.6}, {"time": 0.8667, "x": -58.41, "y": 9.9, "curve": 0.779, "c4": 0.3}, {"time": 0.9833} + ] + }, + "@leg-front-right": { + "translate": [ + {"curve": 0, "c2": 0.17, "c3": 0.521, "c4": 0.69}, {"time": 0.15, "x": -16.23, "y": -19.18, "curve": 0.377, "c2": 0.59, "c3": 0.739}, {"time": 0.2167, "x": -18.54, "y": -11.57}, + {"time": 0.25, "x": -22.65, "y": 8.05, "curve": 0, "c2": 0.4, "c3": 0.383}, {"time": 0.3333, "x": 29.92, "y": -4.24, "curve": 0.779, "c4": 0.4}, {"time": 0.3667, "x": 22.95, "y": 2.68}, + {"time": 0.4667, "x": 29.92, "y": -4.24, "curve": 0.779, "c4": 0.4}, {"time": 0.5, "x": 22.95, "y": 2.68}, {"time": 0.6, "x": 29.92, "y": -4.24, "curve": 0.779, "c4": 0.4}, + {"time": 0.6333, "x": 22.95, "y": 2.68}, {"time": 0.7333, "x": 29.92, "y": -4.24, "curve": 0.779, "c4": 0.4}, {"time": 0.7667, "x": 22.95, "y": 2.68, "curve": "stepped"}, + {"time": 0.9167, "x": 22.95, "y": 2.68, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.95, "curve": 0.464, "c4": 0.7}, {"time": 0.9833, "x": -1.45, "y": -24.11}, + {"time": 1.05, "x": -3.72, "y": -46.34, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1.0833} ], "scale": [ - {"curve": 0.459, "c2": 0.59, "c3": 0.838}, {"time": 0.0333, "x": 0.935, "curve": 0.331, "c3": 0.677, "c4": 0.4}, {"time": 0.0667, "x": 0.87, "curve": 0.464, "c4": 0.7}, {"time": 0.1667} + {"time": 0.2167}, {"time": 0.25, "x": 1.5}, {"time": 0.3333, "curve": 0.779, "c4": 0.4}, {"time": 0.3667, "x": 1.5}, {"time": 0.4667, "x": 1.51, "curve": 0.157, "c2": 0.33, "c3": 0.727}, + {"time": 0.5, "curve": "stepped"}, {"time": 0.6, "curve": 0.779, "c4": 0.4}, {"time": 0.6333, "x": 1.5}, {"time": 0.7333, "x": 1.51, "curve": 0.157, "c2": 0.33, "c3": 0.727}, + {"time": 0.7667} ] }, - "leg-front-left-IK": { + "@leg-front-left": { "translate": [ - {"x": 0.33, "y": 2.27, "curve": 0.154, "c4": 0.9}, {"time": 0.0833, "x": 32.98, "y": -4.28, "curve": 0.269, "c2": 0.57, "c3": 0.577}, - {"time": 0.1667, "x": 53.3, "y": 2.35, "curve": 0.461, "c3": 0.543}, {"time": 0.4167, "x": -85.44, "y": 106.83, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.5167, "x": -85.78, "y": 86.09, "curve": 0.143, "c3": 0.57, "c4": 0.46}, {"time": 0.7, "x": -26.89, "y": 8.67, "curve": 0, "c2": 0.09, "c3": 0.479, "c4": 0.56}, - {"time": 0.75, "x": 0.33, "y": 2.27} + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.2167, "x": -6.84, "y": -9.77, "curve": "stepped"}, {"time": 0.9833, "x": -6.84, "y": -9.77, "curve": 0, "c2": 0.1, "c3": 0.85}, + {"time": 1.05, "x": -6.29, "y": -18.69, "curve": 0, "c2": 0.23, "c3": 0.365, "c4": 0.58}, {"time": 1.0833, "x": -3.64, "y": -2.46, "curve": 0.177, "c2": 0.35, "c3": 0.731}, + {"time": 1.25} + ], + "scale": [ + {"time": 0.4667, "curve": 0.779, "c4": 0.4}, {"time": 0.5, "x": 1.5}, {"time": 0.6, "x": 1.51, "curve": 0.157, "c2": 0.33, "c3": 0.727}, {"time": 0.6333, "curve": "stepped"}, + {"time": 0.7333, "curve": 0.779, "c4": 0.4}, {"time": 0.7667, "x": 1.5}, {"time": 0.8667, "x": 1.51, "curve": 0.157, "c2": 0.33, "c3": 0.727}, {"time": 0.9833} ] }, - "leg-back-left-IK": { + "@leg-back-left": { "translate": [ - {"x": 17.64, "y": 16.11, "curve": 0.455, "c2": 0.58, "c3": 0.847}, {"time": 0.0333, "curve": 0, "c2": 0.1, "c3": 0.85}, - {"time": 0.2333, "x": -50.37, "curve": 0, "c2": 0.09, "c3": 0.466, "c4": 0.7}, {"time": 0.3, "x": 11.38, "y": 18.2, "curve": 0.177, "c2": 0.44, "c3": 0.617}, - {"time": 0.5333, "x": 56.74, "y": 103.8, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.6667, "x": 71.93, "y": 112.16, "curve": 0.315, "c4": 0.8}, {"time": 0.75, "x": 17.64, "y": 16.11} + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.2167, "x": -0.11, "y": -2.73, "curve": "stepped"}, {"time": 0.9833, "x": -0.11, "y": -2.73, "curve": 0, "c2": 0.1, "c3": 0.85}, + {"time": 1.05, "x": -0.46, "y": -6.19, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1.25} ] }, - "@shadow": { - "scale": [ - {"curve": 0.313, "c3": 0.699}, {"time": 0.25, "x": 0.94, "y": 0.94, "curve": 0.313, "c3": 0.699}, {"time": 0.4333, "x": 0.8, "y": 0.8, "curve": 0.315, "c4": 0.8}, {"time": 0.75} - ] + "@pivot-main": { + "translate": [ + {"time": 0.15, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "x": -73.35, "y": 43, "curve": "stepped"}, {"time": 0.8667, "x": -73.35, "y": 43, "curve": 0.315, "c4": 0.8}, + {"time": 0.9833, "x": -146.44, "curve": "stepped"}, {"time": 1.05, "x": -146.44, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1.15, "x": -45.61, "y": 50.15, "curve": 0.315, "c4": 0.8}, + {"time": 1.25} + ], + "scale": [{"time": 0.9833, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1.05, "y": 0.98, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1.15}] }, - "tail": { - "rotate": [{"curve": 0.161, "c3": 0.854}, {"time": 0.25, "angle": -20, "curve": 0, "c2": 0.3, "c3": 0.546}, {"time": 0.5, "angle": 4.21, "curve": 0.154, "c4": 0.9}, {"time": 0.75}] + "leg-front-right-IK": { + "translate": [ + {"time": 0.15, "curve": 0, "c2": 0.18, "c3": 0.416, "c4": 0.58}, {"time": 0.2167, "x": 19.11, "y": 67.51}, {"time": 0.25, "x": 9.04, "y": 75.61, "curve": 0, "c2": 0.4, "c3": 0.383}, + {"time": 0.3333, "x": -160.66, "y": 272.78, "curve": 0.779, "c4": 0.4}, {"time": 0.3667, "x": -57.38, "y": -16.06}, {"time": 0.4667, "x": -10.1, "y": -16.06, "curve": 0.779, "c4": 0.4}, + {"time": 0.5, "x": -151.82, "y": 190.82}, {"time": 0.6, "x": -168.95, "y": 277.96, "curve": 0.779, "c4": 0.4}, {"time": 0.6333, "x": -54.28, "y": -17.1}, + {"time": 0.7333, "x": -12.17, "y": -17.1, "curve": 0.779, "c4": 0.4}, {"time": 0.7667, "x": -151.82, "y": 190.82}, {"time": 0.8667, "x": -165.84, "y": 271.75, "curve": 0.779, "c4": 0.4}, + {"time": 0.9833, "curve": "stepped"}, {"time": 1.05, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 1.0833, "x": -14.68, "y": -19.57, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1.25} + ] }, - "@leg-front-right": { + "leg-front-left-IK": { "translate": [ - {"x": 7.78, "y": -11.23, "curve": 0.649, "c2": 0.4, "c4": 0.74}, {"time": 0.0167, "x": -0.64, "y": -13.16, "curve": 0.313, "c3": 0.699}, - {"time": 0.1333, "x": -9.39, "y": -16.39, "curve": 0.346, "c2": 0.44, "c3": 0.699}, {"time": 0.3167, "x": -26.29, "y": 12.52, "curve": 0, "c2": 0.18, "c3": 0.424, "c4": 0.59}, - {"time": 0.4333, "x": 7.42, "y": -10.53, "curve": 0.316, "c2": 0.49, "c3": 0.751}, {"time": 0.6, "x": 37.87, "y": -4.31, "curve": 0.289, "c3": 0.884, "c4": 0.7}, - {"time": 0.75, "x": 7.78, "y": -11.23} + {"time": 0.15, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "x": -54.88, "y": 124.95, "curve": 0.779, "c4": 0.4}, {"time": 0.3667, "x": 37.97, "y": 122.64}, + {"time": 0.4667, "x": 48.96, "y": 138.43, "curve": 0.779, "c4": 0.4}, {"time": 0.5, "x": -142.3, "y": 180.66}, {"time": 0.6, "x": -134.29, "y": 191.98, "curve": 0.779, "c4": 0.4}, + {"time": 0.6333, "x": 37.97, "y": 122.64}, {"time": 0.7333, "x": 48.96, "y": 138.43, "curve": 0.779, "c4": 0.4}, {"time": 0.7667, "x": -142.3, "y": 180.66}, + {"time": 0.8667, "x": -134.29, "y": 191.98, "curve": 0.617, "c4": 0.6}, {"time": 0.9833, "curve": "stepped"}, {"time": 1.05, "curve": 0, "c2": 0.1, "c3": 0.85}, + {"time": 1.0833, "x": -7.79, "y": -10.12, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1.25} ] }, - "leg-front-right-IK": { + "leg-back-left-IK": { "translate": [ - {"x": -13.57, "y": 17.19, "curve": 0.645, "c2": 0.47, "c4": 0.81}, {"time": 0.0167, "curve": 0.313, "c3": 0.699}, {"time": 0.2667, "x": 52.85, "curve": 0, "c2": 0.3, "c3": 0.544}, - {"time": 0.5, "x": -85.89, "y": 125.19}, {"time": 0.6, "x": -87.57, "y": 110.89, "curve": 0.142, "c3": 0.858, "c4": 0.77}, {"time": 0.75, "x": -13.57, "y": 17.19} + {"time": 0.0833, "curve": 0.332, "c3": 0.682, "c4": 0.41}, {"time": 0.2167, "x": 21.57, "y": 4.03, "curve": 0, "c2": 0.4, "c3": 0.383}, + {"time": 0.3333, "x": -50.73, "y": 91.08, "curve": 0.779, "c4": 0.4}, {"time": 0.3667, "x": 19.18, "y": 184.64}, {"time": 0.4667, "x": 25.59, "y": 197.69, "curve": 0.779, "c4": 0.4}, + {"time": 0.5, "x": -145.53, "y": 47.62}, {"time": 0.6, "x": -152.68, "y": 53.34, "curve": 0.779, "c4": 0.4}, {"time": 0.6333, "x": 19.18, "y": 184.64}, + {"time": 0.7333, "x": 25.59, "y": 197.69, "curve": 0.779, "c4": 0.4}, {"time": 0.7667, "x": -145.53, "y": 47.62}, {"time": 0.8667, "x": -153.88, "y": 53.26, "curve": 0.779, "c4": 0.4}, + {"time": 0.9833, "curve": "stepped"}, {"time": 1.05, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 1.1667, "x": 24.35, "y": 13.92, "curve": 0.154, "c4": 0.9}, {"time": 1.25} ] }, - "@leg-back-left": { + "tail": { + "rotate": [ + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.15, "angle": 14.68, "curve": 0.315, "c4": 0.8}, {"time": 0.2167, "angle": -12.57}, + {"time": 0.3333, "angle": -14.89, "curve": 0.779, "c4": 0.4}, {"time": 0.3667, "angle": 20.64}, {"time": 0.4667, "angle": 25.18, "curve": 0.779, "c4": 0.4}, + {"time": 0.5, "angle": -19.72}, {"time": 0.6, "angle": -22.19, "curve": 0.779, "c4": 0.4}, {"time": 0.6333, "angle": 20.64}, {"time": 0.7333, "angle": 25.18, "curve": 0.779, "c4": 0.4}, + {"time": 0.7667, "angle": -19.72}, {"time": 0.8667, "angle": -22.19, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.9833, "angle": 23.3}, + {"time": 1.05, "angle": 26.39, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1.1333, "angle": -14.8, "curve": 0.154, "c4": 0.9}, {"time": 1.25} + ] + }, + "@shadow": { "translate": [ - {"x": -4.73, "y": 6.6, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.15, "x": 1.29, "y": -4.22, "curve": 0.44, "c2": 0.55, "c3": 0.858}, - {"time": 0.25, "x": 2.16, "y": 6.49, "curve": 0, "c2": 0.09, "c3": 0.466, "c4": 0.7}, {"time": 0.3, "x": -5.17, "y": 15.67, "curve": 0.218, "c2": 0.39, "c3": 0.738}, - {"time": 0.5333, "x": -14.09, "y": -7.98, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.6667, "x": -12.69, "y": -11.31, "curve": 0.315, "c4": 0.8}, {"time": 0.75, "x": -4.73, "y": 6.6} + {"time": 0.15, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.3333, "x": -132.39, "curve": 0.779, "c4": 0.4}, {"time": 0.3667, "x": -111.3, "curve": "stepped"}, + {"time": 0.8667, "x": -111.3, "curve": 0.315, "c4": 0.8}, {"time": 0.9833, "x": -132.39, "curve": "stepped"}, {"time": 1.05, "x": -132.39, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 1.25} ], - "scale": [{"curve": 0, "c2": 0.1, "c3": 0.457, "c4": 0.54}, {"time": 0.0667, "x": 0.837, "curve": 0.395, "c2": 0.49, "c3": 0.868}, {"time": 0.15}] + "scale": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.15, "x": 1.05, "y": 1.05, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.3333, "x": 0.93, "y": 0.93, "curve": 0.779, "c4": 0.4}, + {"time": 0.3667, "x": 0.95, "y": 0.95}, {"time": 0.4667, "x": 0.93, "y": 0.93, "curve": 0.779, "c4": 0.4}, {"time": 0.5}, {"time": 0.6, "x": 1.05, "y": 1.05, "curve": 0.779, "c4": 0.4}, + {"time": 0.6333}, {"time": 0.7333, "x": 0.93, "y": 0.93, "curve": 0.779, "c4": 0.4}, {"time": 0.7667}, {"time": 0.8667, "x": 1.05, "y": 1.05, "curve": 0.315, "c4": 0.8}, + {"time": 0.9833, "x": 1.09, "y": 1.09, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 1.05, "x": 1.11, "y": 1.11, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1.25} + ] }, - "@pivot-back": { + "body-fur-01": { "rotate": [ - {"angle": 3.74, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "angle": 1.5, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.25, "angle": -2, "curve": 0, "c2": 0.1, "c3": 0.85}, - {"time": 0.35, "angle": -5, "curve": 0.154, "c4": 0.9}, {"time": 0.6667, "angle": 5, "curve": 0.154, "c4": 0.9}, {"time": 0.75, "angle": 3.74} - ], - "translate": [ - {"y": 8, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "y": -10, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.25, "curve": 0, "c2": 0.1, "c3": 0.85}, - {"time": 0.5667, "y": 80.61, "curve": 0.154, "c4": 0.9}, {"time": 0.75, "y": 8} + {"angle": 8.98, "curve": 0.382, "c2": 0.56, "c3": 0.739}, {"time": 0.0667}, {"time": 0.2167, "angle": 22.69, "curve": 0.25, "c3": 0.75}, + {"time": 0.4167, "angle": -25.47, "curve": 0.25, "c3": 0.75}, {"time": 0.5167, "angle": 30.13, "curve": 0.25, "c3": 0.75}, {"time": 0.6833, "angle": -32.6, "curve": 0.25, "c3": 0.75}, + {"time": 0.7833, "angle": 29.93, "curve": 0.25, "c3": 0.75}, {"time": 0.9667, "angle": -31.51, "curve": 0.25, "c3": 0.75}, + {"time": 1.1333, "angle": 27.92, "curve": 0.244, "c3": 0.643, "c4": 0.58}, {"time": 1.25, "angle": 10.51} ] }, - "@pivot-main": {"scale": [{"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1333, "y": 0.85, "curve": 0.306, "c4": 0.8}, {"time": 0.25}]}, - "ear-right": { + "body-fur-02": { "rotate": [ - {"angle": 6.45, "curve": 0.306, "c3": 0.695}, {"time": 0.25, "angle": -6.15, "curve": 0.306, "c3": 0.695}, {"time": 0.5, "angle": -7.47, "curve": 0.306, "c3": 0.695}, - {"time": 0.75, "angle": 6.45} + {"angle": 15.48, "curve": 0.346, "c2": 0.38, "c3": 0.7, "c4": 0.78}, {"time": 0.0667, "angle": 3.08, "curve": 0.373, "c2": 0.62, "c3": 0.713}, {"time": 0.1, "curve": 0.25, "c3": 0.75}, + {"time": 0.25, "angle": 22.69, "curve": 0.25, "c3": 0.75}, {"time": 0.45, "angle": -25.47, "curve": 0.25, "c3": 0.75}, {"time": 0.55, "angle": 30.13, "curve": 0.25, "c3": 0.75}, + {"time": 0.7167, "angle": -32.6, "curve": 0.25, "c3": 0.75}, {"time": 0.8167, "angle": 29.93, "curve": 0.25, "c3": 0.75}, {"time": 1, "angle": -31.51, "curve": 0.25, "c3": 0.75}, + {"time": 1.1667, "angle": 27.92, "curve": 0.253, "c3": 0.621, "c4": 0.48}, {"time": 1.25, "angle": 13.84} ] }, - "ear-left": { + "body-fur-03": { "rotate": [ - {"angle": 6.45, "curve": 0.306, "c3": 0.695}, {"time": 0.25, "angle": -6.15, "curve": 0.306, "c3": 0.695}, {"time": 0.5, "angle": -7.47, "curve": 0.306, "c3": 0.695}, - {"time": 0.75, "angle": 6.45} + {"angle": 5.84, "curve": 0.381, "c2": 0.59, "c3": 0.727}, {"time": 0.05}, {"time": 0.2, "angle": 22.69, "curve": 0.25, "c3": 0.75}, + {"time": 0.4, "angle": -25.47, "curve": 0.25, "c3": 0.75}, {"time": 0.5, "angle": 30.13, "curve": 0.25, "c3": 0.75}, {"time": 0.6667, "angle": -32.6, "curve": 0.25, "c3": 0.75}, + {"time": 0.7667, "angle": 29.93, "curve": 0.25, "c3": 0.75}, {"time": 0.95, "angle": -31.51, "curve": 0.25, "c3": 0.75}, + {"time": 1.1167, "angle": 27.92, "curve": 0.242, "c3": 0.661, "c4": 0.65}, {"time": 1.25, "angle": 5.54} ] }, - "back": {"rotate": [{"curve": 0.306, "c3": 0.695}, {"time": 0.25, "angle": 9.32, "curve": 0.306, "c3": 0.695}, {"time": 0.5, "angle": -5.11, "curve": 0.306, "c3": 0.695}, {"time": 0.75}]}, - "body-fur-under-02": { - "translate": [{"x": -2.23, "y": 6.28}], - "shear": [ - {"x": -27.8, "curve": "stepped"}, {"time": 0.2833, "x": -27.8, "curve": 0.375, "c2": 0.62, "c3": 0.716}, {"time": 0.35, "x": -31.97, "curve": 0.25, "c3": 0.75}, - {"time": 0.7333, "x": 0.11, "curve": 0.32, "c3": 0.653, "c4": 0.34}, {"time": 0.75, "x": -27.8} + "body-fur-04": { + "rotate": [ + {"angle": 12.1, "curve": 0.351, "c2": 0.39, "c3": 0.696, "c4": 0.76}, {"time": 0.05, "angle": 3.08, "curve": 0.373, "c2": 0.62, "c3": 0.713}, {"time": 0.0833}, + {"time": 0.2333, "angle": 22.69, "curve": 0.25, "c3": 0.75}, {"time": 0.4333, "angle": -25.47, "curve": 0.25, "c3": 0.75}, {"time": 0.5333, "angle": 30.13, "curve": 0.25, "c3": 0.75}, + {"time": 0.7, "angle": -32.6, "curve": 0.25, "c3": 0.75}, {"time": 0.8, "angle": 29.93, "curve": 0.25, "c3": 0.75}, {"time": 0.9833, "angle": -31.51, "curve": 0.25, "c3": 0.75}, + {"time": 1.15, "angle": 27.92, "curve": 0.247, "c3": 0.63, "c4": 0.52}, {"time": 1.25, "angle": 12.53} ] }, - "body-braid-04": { + "body-fur-05": { "rotate": [ - {"angle": -9.29, "curve": 0.323, "c2": 0.3, "c3": 0.66, "c4": 0.65}, {"time": 0.1667, "angle": -11.98, "curve": 0.269, "c3": 0.618, "c4": 0.42}, - {"time": 0.2833, "angle": -9.29, "curve": 0.323, "c2": 0.3, "c3": 0.66, "c4": 0.65}, {"time": 0.3333, "angle": -6.92, "curve": 0.335, "c2": 0.34, "c3": 0.674, "c4": 0.69}, - {"time": 0.4167, "angle": -3.73, "curve": 0.382, "c2": 0.57, "c3": 0.737}, {"time": 0.55, "curve": 0.247, "c3": 0.63, "c4": 0.52}, {"time": 0.75, "angle": -9.29} + {"angle": 3.08, "curve": 0.373, "c2": 0.62, "c3": 0.713}, {"time": 0.0333}, {"time": 0.1833, "angle": 22.69, "curve": 0.25, "c3": 0.75}, + {"time": 0.3833, "angle": -25.47, "curve": 0.25, "c3": 0.75}, {"time": 0.4833, "angle": 30.13, "curve": 0.25, "c3": 0.75}, {"time": 0.65, "angle": -32.6, "curve": 0.25, "c3": 0.75}, + {"time": 0.75, "angle": 29.93, "curve": 0.25, "c3": 0.75}, {"time": 0.9333, "angle": -31.51, "curve": 0.25, "c3": 0.75}, + {"time": 1.1, "angle": 27.92, "curve": 0.243, "c3": 0.685, "c4": 0.73}, {"time": 1.25, "angle": 6.86} ] }, - "body-braid-06": { + "body-fur-06": { "rotate": [ - {"angle": -20.59, "curve": 0.352, "c2": 0.41, "c3": 0.689, "c4": 0.75}, {"time": 0.0167, "curve": 0.243, "c3": 0.655, "c4": 0.63}, - {"time": 0.2833, "angle": -20.59, "curve": 0.352, "c2": 0.41, "c3": 0.689, "c4": 0.75}, {"time": 0.3333, "angle": -24.8, "curve": 0.369, "c2": 0.63, "c3": 0.706}, - {"time": 0.4, "angle": -27.05, "curve": 0.318, "c3": 0.652, "c4": 0.34}, {"time": 0.4167, "angle": -26.59, "curve": 0.268, "c2": 0.09, "c3": 0.734, "c4": 0.92}, - {"time": 0.75, "angle": -20.59} + {"angle": 8.81, "curve": 0.35, "c2": 0.39, "c3": 0.689, "c4": 0.75}, {"time": 0.0333, "angle": 3.08, "curve": 0.373, "c2": 0.62, "c3": 0.713}, {"time": 0.0667}, + {"time": 0.2167, "angle": 22.69, "curve": 0.25, "c3": 0.75}, {"time": 0.4167, "angle": -25.47, "curve": 0.25, "c3": 0.75}, {"time": 0.5167, "angle": 30.13, "curve": 0.25, "c3": 0.75}, + {"time": 0.6833, "angle": -32.6, "curve": 0.25, "c3": 0.75}, {"time": 0.7833, "angle": 29.93, "curve": 0.25, "c3": 0.75}, {"time": 0.9667, "angle": -31.51, "curve": 0.25, "c3": 0.75}, + {"time": 1.1333, "angle": 27.92, "curve": 0.244, "c3": 0.643, "c4": 0.58}, {"time": 1.25, "angle": 13.33} ] }, - "body-fur-under-03": { - "translate": [{"x": -0.78, "y": 3.19}], - "shear": [{"x": 22.47, "curve": "stepped"}, {"time": 0.2833, "x": 22.47, "curve": 0.25, "c3": 0.75}, {"time": 0.65, "curve": 0.274, "c3": 0.62, "c4": 0.4}, {"time": 0.75, "x": 22.47}] + "body-fur-07": { + "rotate": [ + {"angle": 0.98, "curve": 0.358, "c2": 0.65, "c3": 0.693}, {"time": 0.0167, "curve": 0.25, "c3": 0.75}, {"time": 0.1667, "angle": 22.69, "curve": 0.25, "c3": 0.75}, + {"time": 0.3667, "angle": -25.47, "curve": 0.25, "c3": 0.75}, {"time": 0.4667, "angle": 30.13, "curve": 0.25, "c3": 0.75}, {"time": 0.6333, "angle": -32.6, "curve": 0.25, "c3": 0.75}, + {"time": 0.7333, "angle": 29.93, "curve": 0.25, "c3": 0.75}, {"time": 0.9167, "angle": -31.51, "curve": 0.25, "c3": 0.75}, + {"time": 1.0833, "angle": 27.92, "curve": 0.245, "c3": 0.714, "c4": 0.85}, {"time": 1.25, "angle": 2.91} + ] }, - "body-braid-05": { + "body-fur-08": { "rotate": [ - {"angle": -8.3, "curve": "stepped"}, {"time": 0.2833, "angle": -8.3, "curve": 0.294, "c3": 0.631, "c4": 0.37}, - {"time": 0.3333, "angle": -7.64, "curve": 0.306, "c2": 0.23, "c3": 0.646, "c4": 0.59}, {"time": 0.4167, "angle": -5.77, "curve": 0.354, "c2": 0.41, "c3": 0.756}, - {"time": 0.65, "curve": 0.274, "c3": 0.62, "c4": 0.4}, {"time": 0.75, "angle": -8.3} + {"angle": 5.84, "curve": 0.381, "c2": 0.59, "c3": 0.727}, {"time": 0.05}, {"time": 0.2, "angle": 22.69, "curve": 0.25, "c3": 0.75}, + {"time": 0.4, "angle": -25.47, "curve": 0.25, "c3": 0.75}, {"time": 0.5, "angle": 30.13, "curve": 0.25, "c3": 0.75}, {"time": 0.6667, "angle": -32.6, "curve": 0.25, "c3": 0.75}, + {"time": 0.7667, "angle": 29.93, "curve": 0.25, "c3": 0.75}, {"time": 0.95, "angle": -31.51, "curve": 0.25, "c3": 0.75}, + {"time": 1.1167, "angle": 27.92, "curve": 0.242, "c3": 0.661, "c4": 0.65}, {"time": 1.25, "angle": -0.91} ] }, - "body-fur-under-04": { - "translate": [{"x": -0.33, "y": 3.2}], - "shear": [ - {"x": 10.24, "curve": "stepped"}, {"time": 0.2833, "x": 10.24, "curve": 0.36, "c2": 0.64, "c3": 0.695}, {"time": 0.3167, "x": 11.47, "curve": 0.25, "c3": 0.75}, - {"time": 0.7, "x": -17.33, "curve": 0.297, "c3": 0.634, "c4": 0.37}, {"time": 0.75, "x": 10.24} + "body-fur-09": { + "rotate": [ + {"angle": 12.1, "curve": 0.351, "c2": 0.39, "c3": 0.696, "c4": 0.76}, {"time": 0.05, "angle": 3.08, "curve": 0.373, "c2": 0.62, "c3": 0.713}, {"time": 0.0833}, + {"time": 0.2333, "angle": 22.69, "curve": 0.25, "c3": 0.75}, {"time": 0.4333, "angle": -25.47, "curve": 0.25, "c3": 0.75}, {"time": 0.5333, "angle": 30.13, "curve": 0.25, "c3": 0.75}, + {"time": 0.7, "angle": -32.6, "curve": 0.25, "c3": 0.75}, {"time": 0.8, "angle": 29.93, "curve": 0.25, "c3": 0.75}, {"time": 0.9833, "angle": -31.51, "curve": 0.25, "c3": 0.75}, + {"time": 1.15, "angle": 27.92, "curve": 0.247, "c3": 0.63, "c4": 0.52}, {"time": 1.25, "angle": 6.86} ] }, - "body-braid-02": { + "body-fur-10": { "rotate": [ - {"angle": 3.5, "curve": 0.348, "c2": 0.38, "c3": 0.685, "c4": 0.73}, {"time": 0.0333, "angle": 1.94, "curve": 0.244, "c3": 0.646, "c4": 0.59}, - {"time": 0.2833, "angle": 3.5, "curve": 0.348, "c2": 0.38, "c3": 0.685, "c4": 0.73}, {"time": 0.3333, "angle": 3.89, "curve": 0.375, "c2": 0.62, "c3": 0.716}, - {"time": 0.4167, "angle": 4.18, "curve": 0.245, "c3": 0.714, "c4": 0.85}, {"time": 0.75, "angle": 3.5} + {"angle": 3.08, "curve": 0.373, "c2": 0.62, "c3": 0.713}, {"time": 0.0333, "curve": 0.25, "c3": 0.75}, {"time": 0.1833, "angle": 22.69, "curve": 0.25, "c3": 0.75}, + {"time": 0.3833, "angle": -25.47, "curve": 0.25, "c3": 0.75}, {"time": 0.4833, "angle": 30.13, "curve": 0.25, "c3": 0.75}, {"time": 0.65, "angle": -32.6, "curve": 0.25, "c3": 0.75}, + {"time": 0.75, "angle": 29.93, "curve": 0.25, "c3": 0.75}, {"time": 0.9333, "angle": -31.51, "curve": 0.25, "c3": 0.75}, + {"time": 1.1, "angle": 27.92, "curve": 0.243, "c3": 0.685, "c4": 0.73}, {"time": 1.25, "angle": 0.34} ] }, - "body-braid-01": { + "body-fur-11": { "rotate": [ - {"angle": 2.31, "curve": 0.348, "c2": 0.38, "c3": 0.685, "c4": 0.73}, {"time": 0.0333, "curve": 0.244, "c3": 0.646, "c4": 0.59}, - {"time": 0.2833, "angle": 2.31, "curve": 0.348, "c2": 0.38, "c3": 0.685, "c4": 0.73}, {"time": 0.3333, "angle": 2.87, "curve": 0.375, "c2": 0.62, "c3": 0.716}, - {"time": 0.4167, "angle": 3.3, "curve": 0.245, "c3": 0.714, "c4": 0.85}, {"time": 0.75, "angle": 2.31} + {"angle": 5.84, "curve": 0.381, "c2": 0.59, "c3": 0.727}, {"time": 0.05, "curve": 0.25, "c3": 0.75}, {"time": 0.2, "angle": 22.69, "curve": 0.25, "c3": 0.75}, + {"time": 0.4, "angle": -25.47, "curve": 0.25, "c3": 0.75}, {"time": 0.5, "angle": 30.13, "curve": 0.25, "c3": 0.75}, {"time": 0.6667, "angle": -32.6, "curve": 0.25, "c3": 0.75}, + {"time": 0.7667, "angle": 29.93, "curve": 0.25, "c3": 0.75}, {"time": 0.95, "angle": -31.51, "curve": 0.25, "c3": 0.75}, + {"time": 1.1167, "angle": 27.92, "curve": 0.242, "c3": 0.661, "c4": 0.65}, {"time": 1.25, "angle": 4.23} ] }, - "body-fur-under-01": { - "translate": [{"x": -0.14, "y": 0.84}], - "shear": [ - {"x": -4.09, "curve": 0.375, "c2": 0.5, "c3": 0.75}, {"time": 0.1, "x": 17.03, "curve": 0.25, "c3": 0.625, "c4": 0.5}, - {"time": 0.2833, "x": -4.09, "curve": 0.375, "c2": 0.5, "c3": 0.75}, {"time": 0.4667, "x": -25.22, "curve": 0.242, "c3": 0.664, "c4": 0.66}, {"time": 0.75, "x": -4.09} + "body-fur-12": { + "rotate": [ + {"angle": 8.98, "curve": 0.382, "c2": 0.56, "c3": 0.739}, {"time": 0.0667, "curve": 0.25, "c3": 0.75}, {"time": 0.2167, "angle": 22.69, "curve": 0.25, "c3": 0.75}, + {"time": 0.4167, "angle": -25.47, "curve": 0.25, "c3": 0.75}, {"time": 0.5167, "angle": 30.13, "curve": 0.25, "c3": 0.75}, {"time": 0.6833, "angle": -32.6, "curve": 0.25, "c3": 0.75}, + {"time": 0.7833, "angle": 29.93, "curve": 0.25, "c3": 0.75}, {"time": 0.9667, "angle": -31.51, "curve": 0.25, "c3": 0.75}, + {"time": 1.1333, "angle": 27.92, "curve": 0.244, "c3": 0.643, "c4": 0.58}, {"time": 1.25, "angle": 8.12} ] }, - "body-braid-03": { + "body-fur-13": { "rotate": [ - {"angle": -1.71, "curve": 0.337, "c2": 0.34, "c3": 0.673, "c4": 0.69}, {"time": 0.1, "angle": -8.41, "curve": 0.25, "c3": 0.625, "c4": 0.5}, - {"time": 0.2833, "angle": -1.71, "curve": 0.337, "c2": 0.34, "c3": 0.673, "c4": 0.69}, {"time": 0.3333, "angle": 1, "curve": 0.354, "c2": 0.41, "c3": 0.694, "c4": 0.77}, - {"time": 0.4167, "angle": 4, "curve": 0.369, "c2": 0.63, "c3": 0.706}, {"time": 0.4667, "angle": 5.15, "curve": 0.242, "c3": 0.664, "c4": 0.66}, {"time": 0.75, "angle": -1.71} + {"angle": 12.28, "curve": 0.379, "c2": 0.52, "c3": 0.747}, {"time": 0.0833, "curve": 0.25, "c3": 0.75}, {"time": 0.2333, "angle": 22.69, "curve": 0.25, "c3": 0.75}, + {"time": 0.4333, "angle": -25.47, "curve": 0.25, "c3": 0.75}, {"time": 0.5333, "angle": 30.13, "curve": 0.25, "c3": 0.75}, {"time": 0.7, "angle": -32.6, "curve": 0.25, "c3": 0.75}, + {"time": 0.8, "angle": 29.93, "curve": 0.25, "c3": 0.75}, {"time": 0.9833, "angle": -31.51, "curve": 0.25, "c3": 0.75}, + {"time": 1.15, "angle": 27.92, "curve": 0.247, "c3": 0.63, "c4": 0.52}, {"time": 1.25, "angle": 11.59} ] }, - "body-fur-under-05": { - "translate": [{"x": 0.53, "y": 14.98}], - "shear": [ - {"x": 3.7, "curve": 0.382, "c2": 0.57, "c3": 0.737}, {"time": 0.0333, "x": -18.7, "curve": 0.244, "c3": 0.646, "c4": 0.59}, - {"time": 0.2833, "x": 3.7, "curve": 0.382, "c2": 0.57, "c3": 0.737}, {"time": 0.4167, "x": 13.52, "curve": 0.245, "c3": 0.714, "c4": 0.85}, {"time": 0.75, "x": 3.7} + "body-fur-14": { + "rotate": [ + {"angle": 18.81, "curve": 0.337, "c2": 0.34, "c3": 0.702, "c4": 0.78}, {"time": 0.0833, "angle": 3.08, "curve": 0.373, "c2": 0.62, "c3": 0.713}, {"time": 0.1167}, + {"time": 0.2667, "angle": 22.69, "curve": 0.25, "c3": 0.75}, {"time": 0.4667, "angle": -25.47, "curve": 0.25, "c3": 0.75}, {"time": 0.5667, "angle": 30.13, "curve": 0.25, "c3": 0.75}, + {"time": 0.7333, "angle": -32.6, "curve": 0.25, "c3": 0.75}, {"time": 0.8333, "angle": 29.93, "curve": 0.25, "c3": 0.75}, {"time": 1.0167, "angle": -31.51, "curve": 0.25, "c3": 0.75}, + {"time": 1.1833, "angle": 27.92, "curve": 0.261, "c3": 0.618, "c4": 0.44}, {"time": 1.25, "angle": 13.33} ] - } - } - }, - "1982530335": { - "slots": { - "eyes": { - "attachment": [ - {"time": 0.05, "name": "eyes-angry"}, {"time": 0.3333, "name": "eyes-shut"}, {"time": 0.4333, "name": "eyes-angry"}, {"time": 1.0833, "name": "eyes-shut"}, - {"time": 1.1667, "name": "eyes-angry"}, {"time": 1.2833, "name": "eyes"} + }, + "body-fur-15": { + "rotate": [ + {"angle": 12.28, "curve": 0.379, "c2": 0.52, "c3": 0.747}, {"time": 0.0833, "curve": 0.25, "c3": 0.75}, {"time": 0.2333, "angle": 22.69, "curve": 0.25, "c3": 0.75}, + {"time": 0.4333, "angle": -25.47, "curve": 0.25, "c3": 0.75}, {"time": 0.5333, "angle": 30.13, "curve": 0.25, "c3": 0.75}, {"time": 0.7, "angle": -32.6, "curve": 0.25, "c3": 0.75}, + {"time": 0.8, "angle": 29.93, "curve": 0.25, "c3": 0.75}, {"time": 0.9833, "angle": -31.51, "curve": 0.25, "c3": 0.75}, + {"time": 1.15, "angle": 27.92, "curve": 0.247, "c3": 0.63, "c4": 0.52}, {"time": 1.25, "angle": 13.33} ] }, - "mouth": {"attachment": [{"time": 0.05, "name": "mouth-bite"}, {"time": 0.4333, "name": "mouth-open"}, {"time": 0.9167, "name": "mouth-bite"}, {"time": 1.2833, "name": "mouth"}]} + "body-fur-16": { + "rotate": [ + {"angle": 15.63, "curve": 0.37, "c2": 0.48, "c3": 0.753}, {"time": 0.1, "curve": 0.25, "c3": 0.75}, {"time": 0.25, "angle": 22.69, "curve": 0.25, "c3": 0.75}, + {"time": 0.45, "angle": -25.47, "curve": 0.25, "c3": 0.75}, {"time": 0.55, "angle": 30.13, "curve": 0.25, "c3": 0.75}, {"time": 0.7167, "angle": -32.6, "curve": 0.25, "c3": 0.75}, + {"time": 0.8167, "angle": 29.93, "curve": 0.25, "c3": 0.75}, {"time": 1, "angle": -31.51, "curve": 0.25, "c3": 0.75}, + {"time": 1.1667, "angle": 27.92, "curve": 0.253, "c3": 0.621, "c4": 0.48}, {"time": 1.25, "angle": 13.84} + ] + } }, + "events": [{"time": 0.3333, "name": "start-attack"}, {"time": 0.3667, "name": "hit"}, {"time": 0.5, "name": "hit"}, {"time": 0.6333, "name": "hit"}, {"time": 0.7667, "name": "hit"}] + }, + "1279050865": { + "slots": {"eyes": {"attachment": [{"time": 1, "name": "eyes-shut"}, {"time": 1.0833, "name": "eyes"}]}}, "bones": { "@pivot-back": { - "rotate": [{"curve": 0, "c2": 0.3, "c3": 0.546}, {"time": 0.0833, "angle": 6, "curve": 0, "c2": 0.2, "c3": 0.828}, {"time": 0.1667}], + "rotate": [ + {"curve": 0.313, "c3": 0.699}, {"time": 0.3333, "angle": 2.04, "curve": 0.313, "c3": 0.699}, {"time": 0.6667, "curve": 0.313, "c3": 0.699}, + {"time": 1, "angle": 1.79, "curve": 0.313, "c3": 0.699}, {"time": 1.3333} + ], "translate": [ - {"curve": 0, "c2": 0.3, "c3": 0.546}, {"time": 0.0833, "y": 5, "curve": 0.313, "c3": 0.699}, {"time": 0.1667, "y": 220, "curve": 0.617, "c4": 0.6}, {"time": 0.3333, "y": 10}, - {"time": 0.4167, "y": 5, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5833, "y": 420, "curve": 0.852, "c4": 0.1}, {"time": 0.9167}, - {"time": 1.0833, "y": -5, "curve": 0, "c2": 0.17, "c3": 0.461, "c4": 0.62}, {"time": 1.2167, "y": 130, "curve": 0.353, "c2": 0.54, "c3": 0.751}, {"time": 1.3333} - ] + {"curve": 0.313, "c3": 0.699}, {"time": 0.3333, "y": -6.53, "curve": 0.313, "c3": 0.699}, {"time": 0.6667, "curve": 0.313, "c3": 0.699}, + {"time": 1, "y": -8.86, "curve": 0.313, "c3": 0.699}, {"time": 1.3333} + ], + "scale": [{"curve": 0.313, "c3": 0.699}, {"time": 0.6667, "y": 0.99, "curve": 0.313, "c3": 0.699}, {"time": 1.3333}] }, - "@leg-front-right": {"translate": [{"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "x": -2.46, "y": -27.89, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.1167}]}, - "@leg-front-left": {"translate": [{"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "x": -1.21, "y": -13.68, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.1167}]}, - "@pivot-center": { - "rotate": [ - {"time": 0.1167, "curve": 0.313, "c3": 0.817}, {"time": 0.3333, "angle": 180, "curve": "stepped"}, {"time": 0.4167, "angle": 180, "curve": 0.313, "c3": 0.699}, - {"time": 0.6667, "angle": -1, "curve": 0.837, "c4": 0.2}, {"time": 0.9167, "angle": 178}, {"time": 1.0833, "angle": 180, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1.3333} + "@leg-front-right": { + "translate": [ + {"curve": 0.313, "c3": 0.699}, {"time": 0.3333, "x": 0.02, "y": -16.89, "curve": 0.313, "c3": 0.699}, {"time": 0.6667, "x": -0.04, "y": 2.46, "curve": 0.313, "c3": 0.699}, + {"time": 1, "x": -0.02, "y": -18.9, "curve": 0.313, "c3": 0.699}, {"time": 1.3333} ] }, - "leg-front-left-IK": { + "@leg-front-left": { "translate": [ - {"time": 0.0833, "x": 3.28, "y": 8.42, "curve": 0.344, "c3": 0.715, "c4": 0.45}, {"time": 0.1167, "x": 23.89, "y": 74.66, "curve": 0.589, "c2": 0.35, "c4": 0.75}, - {"time": 0.1667, "x": -100.7, "y": 242.98, "curve": 0.306, "c3": 0.695}, {"time": 0.25, "x": -233.21, "y": 406.49, "curve": 0.474, "c3": 0.714, "c4": 0.56}, - {"time": 0.3, "x": -153, "y": 482.64, "curve": 0.306, "c2": 0.39, "c3": 0.628, "c4": 0.74}, {"time": 0.3167, "x": -106.74, "y": 465.65, "curve": 0.287, "c2": 0.62, "c3": 0.612}, - {"time": 0.3333, "x": -79.92, "y": 385}, {"time": 0.4167, "x": -126.28, "y": 392.02, "curve": 0, "c2": 0.17, "c3": 0.45, "c4": 0.61}, - {"time": 0.5, "x": -212.54, "y": 584.25, "curve": 0.323, "c2": 0.4, "c3": 0.681, "c4": 0.77}, {"time": 0.55, "x": -233.91, "y": 520.55, "curve": 0.377, "c2": 0.62, "c3": 0.724}, - {"time": 0.5833, "x": -173.29, "y": 470.76}, {"time": 0.6667, "x": 19.48, "y": 419.84}, {"time": 0.75, "x": 31.74, "y": 414.89, "curve": 0.255, "c3": 0.659, "c4": 0.47}, - {"time": 0.8333, "x": 83.62, "y": 412.28, "curve": 0.41, "c2": 0.34, "c3": 0.774, "c4": 0.71}, - {"time": 0.8833, "x": 116.53, "y": 400.02, "curve": 0.427, "c2": 0.37, "c3": 0.767, "c4": 0.71}, {"time": 0.9, "x": 130.33, "y": 410.53, "curve": 0.649, "c2": 0.4, "c4": 0.74}, - {"time": 0.9167, "x": -78.08, "y": 379.36}, {"time": 1.0833, "x": -92.45, "y": 375.87, "curve": 0, "c2": 0.17, "c3": 0.45, "c4": 0.61}, - {"time": 1.15, "x": 127.37, "y": 350.17, "curve": 0.345, "c2": 0.53, "c3": 0.751}, {"time": 1.2167, "x": 133.62, "y": 244.55, "curve": 0, "c2": 0.1, "c3": 0.769}, {"time": 1.3333} + {"curve": 0.313, "c3": 0.699}, {"time": 0.3333, "x": 0.22, "y": -5.13, "curve": 0.313, "c3": 0.699}, {"time": 0.6667, "x": -0.03, "y": 1.81, "curve": 0.313, "c3": 0.699}, + {"time": 1, "x": 0.2, "y": -7.06, "curve": 0.313, "c3": 0.699}, {"time": 1.3333} + ], + "scale": [ + {"curve": 0.313, "c3": 0.699}, {"time": 0.3333, "x": 0.905, "curve": 0.313, "c3": 0.699}, {"time": 0.6667, "curve": 0.313, "c3": 0.699}, + {"time": 1, "x": 0.905, "curve": 0.313, "c3": 0.699}, {"time": 1.3333} ] }, - "leg-front-right-IK": { + "@leg-back-left": { "translate": [ - {"time": 0.0833, "curve": 0.344, "c3": 0.715, "c4": 0.45}, {"time": 0.1167, "x": 41.2, "y": 75.27, "curve": 0.589, "c2": 0.35, "c4": 0.75}, - {"time": 0.1667, "x": -103.56, "y": 361.93, "curve": 0.313, "c3": 0.699}, {"time": 0.25, "x": 61.46, "y": 606.37, "curve": 0.474, "c3": 0.714, "c4": 0.56}, - {"time": 0.3, "x": 293.95, "y": 550.17, "curve": 0.306, "c2": 0.39, "c3": 0.628, "c4": 0.74}, {"time": 0.3167, "x": 340.35, "y": 482.44, "curve": 0.287, "c2": 0.62, "c3": 0.612}, - {"time": 0.3333, "x": 426.33, "y": 357.51}, {"time": 0.4167, "x": 340.52, "y": 373.76, "curve": 0, "c2": 0.17, "c3": 0.45, "c4": 0.61}, - {"time": 0.5, "x": 236.72, "y": 764.35, "curve": 0.323, "c2": 0.4, "c3": 0.681, "c4": 0.77}, {"time": 0.55, "x": -18.99, "y": 764.25, "curve": 0.377, "c2": 0.62, "c3": 0.724}, - {"time": 0.5833, "x": -86.72, "y": 646.17}, {"time": 0.6667, "x": 16.1, "y": 426.11}, {"time": 0.75, "x": 19.92, "y": 404.36, "curve": 0.255, "c3": 0.659, "c4": 0.47}, - {"time": 0.8333, "x": 90.31, "y": 343.4, "curve": 0.41, "c2": 0.34, "c3": 0.774, "c4": 0.71}, - {"time": 0.8833, "x": 202.62, "y": 235.31, "curve": 0.427, "c2": 0.37, "c3": 0.767, "c4": 0.71}, {"time": 0.9, "x": 290.37, "y": 171.88, "curve": 0.649, "c2": 0.4, "c4": 0.74}, - {"time": 0.9167, "x": 412.25, "y": 355.41}, {"time": 1.0833, "x": 345.67, "y": 359.46, "curve": 0, "c2": 0.17, "c3": 0.45, "c4": 0.61}, - {"time": 1.15, "x": 400.77, "y": 121.52, "curve": 0.345, "c2": 0.53, "c3": 0.751}, {"time": 1.2167, "x": 172.82, "y": 29.19, "curve": 0.306, "c4": 0.8}, {"time": 1.3333} + {"curve": 0.313, "c3": 0.699}, {"time": 0.3333, "x": 0.22, "y": -4.11, "curve": 0.313, "c3": 0.699}, {"time": 0.6667, "x": -0.03, "y": 1.69, "curve": 0.313, "c3": 0.699}, + {"time": 1, "x": 0.2, "y": -5.68, "curve": 0.313, "c3": 0.699}, {"time": 1.3333} + ], + "scale": [ + {"curve": 0.313, "c3": 0.699}, {"time": 0.3333, "x": 0.943, "curve": 0.313, "c3": 0.699}, {"time": 0.6667, "curve": 0.313, "c3": 0.699}, + {"time": 1, "x": 0.943, "curve": 0.313, "c3": 0.699}, {"time": 1.3333} ] }, - "leg-back-left-IK": { - "translate": [ - {"time": 0.0833, "x": 1.05, "y": 4.19, "curve": 0.344, "c3": 0.715, "c4": 0.45}, {"time": 0.1167, "x": 28.54, "y": 87, "curve": 0.589, "c2": 0.35, "c4": 0.75}, - {"time": 0.1667, "x": -101.24, "y": 155.59, "curve": 0.313, "c3": 0.699}, {"time": 0.25, "x": -446.46, "y": 186.66, "curve": 0.474, "c3": 0.714, "c4": 0.56}, - {"time": 0.3, "x": -509.64, "y": 364.51, "curve": 0.306, "c2": 0.39, "c3": 0.628, "c4": 0.74}, {"time": 0.3167, "x": -479.36, "y": 400.3, "curve": 0.287, "c2": 0.62, "c3": 0.612}, - {"time": 0.3333, "x": -473.08, "y": 343.1}, {"time": 0.4167, "x": -421.75, "y": 358.21, "curve": 0, "c2": 0.17, "c3": 0.45, "c4": 0.61}, - {"time": 0.5, "x": -502.28, "y": 409.04, "curve": 0.323, "c2": 0.4, "c3": 0.681, "c4": 0.77}, {"time": 0.55, "x": -357.82, "y": 309.09, "curve": 0.377, "c2": 0.62, "c3": 0.724}, - {"time": 0.5833, "x": -190.14, "y": 299.56}, {"time": 0.6667, "x": 28.01, "y": 424.39}, {"time": 0.75, "x": 15.55, "y": 419.34, "curve": 0.255, "c3": 0.659, "c4": 0.47}, - {"time": 0.8333, "x": 74.85, "y": 472.68, "curve": 0.41, "c2": 0.34, "c3": 0.774, "c4": 0.71}, - {"time": 0.8833, "x": 69.06, "y": 556.5, "curve": 0.427, "c2": 0.37, "c3": 0.767, "c4": 0.71}, {"time": 0.9, "x": 11.02, "y": 617.8, "curve": 0.649, "c2": 0.4, "c4": 0.74}, - {"time": 0.9167, "x": -407.64, "y": 352.01}, {"time": 1.0833, "x": -407.65, "y": 352.01, "curve": 0, "c2": 0.17, "c3": 0.45, "c4": 0.61}, - {"time": 1.15, "x": -101.44, "y": 524.93, "curve": 0.345, "c2": 0.53, "c3": 0.751}, {"time": 1.2167, "x": 63.56, "y": 378.89, "curve": 0, "c2": 0.1, "c3": 0.769}, {"time": 1.3333} + "@pivot-main": { + "scale": [ + {"curve": 0.313, "c3": 0.699}, {"time": 0.3333, "y": 0.98, "curve": 0.313, "c3": 0.699}, {"time": 0.6667, "curve": 0.313, "c3": 0.699}, + {"time": 1, "y": 0.98, "curve": 0.313, "c3": 0.699}, {"time": 1.3333} + ] + }, + "tail": { + "rotate": [{"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "angle": 4.54, "curve": 0.313, "c3": 0.699}, {"time": 1, "angle": -9.06, "curve": 0.313, "c3": 0.699}, {"time": 1.3333}] + }, + "back": { + "rotate": [{"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "angle": -4.27, "curve": 0.313, "c3": 0.699}, {"time": 1, "angle": 2.83, "curve": 0.313, "c3": 0.699}, {"time": 1.3333}] + }, + "ear-right": {"rotate": [{"curve": 0.461, "c3": 0.543}, {"time": 0.6667, "angle": -3.91, "curve": 0.461, "c3": 0.543}, {"time": 1.3333}]}, + "ear-left": {"rotate": [{"curve": 0.461, "c3": 0.543}, {"time": 0.6667, "angle": -3.92, "curve": 0.461, "c3": 0.543}, {"time": 1.3333}]}, + "@shadow": { + "scale": [ + {"curve": 0.306, "c3": 0.695}, {"time": 0.3333, "x": 1.05, "y": 1.05, "curve": 0.306, "c3": 0.695}, {"time": 0.6667, "curve": 0.306, "c3": 0.695}, + {"time": 1, "x": 1.05, "y": 1.05, "curve": 0.306, "c3": 0.695}, {"time": 1.3333} + ] + }, + "body-fur-01": { + "rotate": [ + {"angle": 10.51, "curve": 0.333, "c2": 0.33, "c3": 0.758}, {"time": 0.25, "angle": -5.73, "curve": 0.25, "c3": 0.75}, + {"time": 0.5833, "angle": 14.18, "curve": 0.276, "c3": 0.621, "c4": 0.4}, {"time": 0.6667, "angle": 10.51, "curve": 0.333, "c2": 0.33, "c3": 0.758}, + {"time": 0.9167, "angle": -5.73, "curve": 0.25, "c3": 0.75}, {"time": 1.25, "angle": 14.18, "curve": 0.276, "c3": 0.621, "c4": 0.4}, {"time": 1.3333, "angle": 10.51} + ] + }, + "body-fur-02": { + "rotate": [ + {"angle": 13.84, "curve": 0.348, "c2": 0.66, "c3": 0.682}, {"time": 0.0167, "angle": 14.18, "curve": 0.25, "c3": 0.75}, + {"time": 0.35, "angle": -5.73, "curve": 0.247, "c3": 0.729, "c4": 0.91}, {"time": 0.6667, "angle": 13.84, "curve": 0.348, "c2": 0.66, "c3": 0.682}, + {"time": 0.6833, "angle": 14.18, "curve": 0.243, "c3": 0.655, "c4": 0.63}, {"time": 0.9167, "angle": -0.91, "curve": 0.382, "c2": 0.58, "c3": 0.731}, + {"time": 1.0167, "angle": -5.73, "curve": 0.247, "c3": 0.729, "c4": 0.91}, {"time": 1.3333, "angle": 13.84} + ] + }, + "body-fur-03": { + "rotate": [ + {"angle": 5.54, "curve": 0.37, "c2": 0.47, "c3": 0.753}, {"time": 0.1833, "angle": -5.73, "curve": 0.25, "c3": 0.75}, + {"time": 0.5167, "angle": 14.18, "curve": 0.253, "c3": 0.621, "c4": 0.48}, {"time": 0.6667, "angle": 5.54, "curve": 0.37, "c2": 0.47, "c3": 0.753}, + {"time": 0.85, "angle": -5.73, "curve": 0.25, "c3": 0.75}, {"time": 1.1833, "angle": 14.18, "curve": 0.253, "c3": 0.621, "c4": 0.48}, {"time": 1.3333, "angle": 5.54} + ] + }, + "body-fur-04": { + "rotate": [ + {"angle": 12.53, "curve": 0.306, "c2": 0.23, "c3": 0.756}, {"time": 0.2833, "angle": -5.73, "curve": 0.25, "c3": 0.75}, + {"time": 0.6167, "angle": 14.18, "curve": 0.294, "c3": 0.631, "c4": 0.37}, {"time": 0.6667, "angle": 12.53, "curve": 0.291, "c2": 0.19, "c3": 0.671, "c4": 0.68}, + {"time": 0.85, "angle": -0.91, "curve": 0.382, "c2": 0.58, "c3": 0.731}, {"time": 0.95, "angle": -5.73, "curve": 0.25, "c3": 0.75}, + {"time": 1.2833, "angle": 14.18, "curve": 0.294, "c3": 0.631, "c4": 0.37}, {"time": 1.3333, "angle": 12.53} ] }, - "tail": { + "body-fur-05": { "rotate": [ - {"curve": 0, "c2": 0.3, "c3": 0.546}, {"time": 0.0833, "angle": 19.35, "curve": 0.313, "c3": 0.699}, {"time": 0.1667, "angle": -22.95, "curve": 0.617, "c4": 0.6}, - {"time": 0.3333, "angle": 22.22}, {"time": 0.4167, "angle": 24.08, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5833, "angle": -30.94, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.6667, "angle": 18.1, "curve": 0.313, "c3": 0.699}, {"time": 0.8333, "angle": -20.52, "curve": 0.464, "c4": 0.7}, {"time": 0.9167, "angle": 16.35}, - {"time": 1.0833, "angle": 20.35, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1.2167, "angle": -9.93, "curve": 0.161, "c3": 0.854}, {"time": 1.3333} + {"angle": 6.86, "curve": 0.363, "c2": 0.44, "c3": 0.755}, {"time": 0.2, "angle": -5.73, "curve": 0.25, "c3": 0.75}, + {"time": 0.5333, "angle": 14.18, "curve": 0.258, "c3": 0.619, "c4": 0.45}, {"time": 0.6667, "angle": 6.86, "curve": 0.363, "c2": 0.44, "c3": 0.755}, + {"time": 0.8667, "angle": -5.73, "curve": 0.25, "c3": 0.75}, {"time": 1.2, "angle": 14.18, "curve": 0.258, "c3": 0.619, "c4": 0.45}, {"time": 1.3333, "angle": 6.86} ] }, - "@shadow": { - "scale": [ - {"curve": 0, "c2": 0.3, "c3": 0.546}, {"time": 0.0833, "x": 1.1, "y": 1.1, "curve": 0.313, "c3": 0.699}, {"time": 0.1667, "x": 0.92, "y": 0.92, "curve": 0.617, "c4": 0.6}, - {"time": 0.3333, "x": 1.12, "y": 1.12}, {"time": 0.4167, "x": 1.16, "y": 1.16, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5833, "x": 0.86, "y": 0.86, "curve": 0.752, "c4": 0.2}, - {"time": 0.9167, "x": 1.12, "y": 1.12}, {"time": 1.0833, "x": 1.16, "y": 1.16, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1.3333} + "body-fur-06": { + "rotate": [ + {"angle": 13.33, "curve": 0.289, "c2": 0.17, "c3": 0.755}, {"time": 0.3, "angle": -5.73, "curve": 0.25, "c3": 0.75}, + {"time": 0.6333, "angle": 14.18, "curve": 0.305, "c3": 0.64, "c4": 0.36}, {"time": 0.6667, "angle": 13.34, "curve": 0.277, "c2": 0.14, "c3": 0.667, "c4": 0.67}, + {"time": 0.8667, "angle": -0.91, "curve": 0.382, "c2": 0.58, "c3": 0.731}, {"time": 0.9667, "angle": -5.73, "curve": 0.25, "c3": 0.75}, + {"time": 1.3, "angle": 14.18, "curve": 0.305, "c3": 0.64, "c4": 0.36}, {"time": 1.3333, "angle": 13.33} ] }, - "@pivot-main": {"scale": [{"time": 0.3333, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.4167, "y": 0.9, "curve": 0, "c2": 0.3, "c3": 0.546}, {"time": 0.5}]}, - "body-fur-under-01": { - "translate": [{"x": -0.14, "y": 0.84}], - "shear": [ - {"x": -4.09, "curve": 0.375, "c2": 0.5, "c3": 0.75}, {"time": 0.0333, "curve": 0.25, "c3": 0.75}, {"time": 0.1333, "x": 29.22, "curve": 0.25, "c3": 0.75}, - {"time": 0.45, "x": -53.77, "curve": 0.25, "c3": 0.75}, {"time": 0.7833, "x": 43.54, "curve": 0.25, "c3": 0.75}, {"time": 1.0333, "x": -64.44, "curve": 0.25, "c3": 0.75}, - {"time": 1.2, "x": 29.43, "curve": 0.243, "c3": 0.68, "c4": 0.71}, {"time": 1.3333, "x": -4.09} + "body-fur-07": { + "rotate": [ + {"angle": 2.91, "curve": 0.379, "c2": 0.52, "c3": 0.747}, {"time": 0.15, "angle": -5.73, "curve": 0.25, "c3": 0.75}, + {"time": 0.4833, "angle": 14.18, "curve": 0.247, "c3": 0.63, "c4": 0.53}, {"time": 0.6667, "angle": 2.91, "curve": 0.379, "c2": 0.52, "c3": 0.747}, + {"time": 0.8167, "angle": -5.73, "curve": 0.25, "c3": 0.75}, {"time": 1.15, "angle": 14.18, "curve": 0.247, "c3": 0.63, "c4": 0.53}, {"time": 1.3333, "angle": 2.91} ] }, - "body-fur-under-02": { - "translate": [{"x": -2.23, "y": 6.28}], - "shear": [ - {"x": -27.8, "curve": 0.375, "c2": 0.62, "c3": 0.716}, {"time": 0.05, "x": 14.15, "curve": 0.25, "c3": 0.75}, {"time": 0.3667, "x": -46.5, "curve": 0.25, "c3": 0.75}, - {"time": 0.7, "x": 37.58, "curve": 0.25, "c3": 0.75}, {"time": 0.95, "x": -65.53, "curve": 0.25, "c3": 0.75}, {"time": 1.1167, "x": 23.87, "curve": 0.25, "c3": 0.75}, - {"time": 1.2833, "curve": 0.25, "c3": 0.625, "c4": 0.5}, {"time": 1.3333, "x": -27.8} + "body-fur-08": { + "rotate": [ + {"angle": -0.91, "curve": 0.382, "c2": 0.58, "c3": 0.731}, {"time": 0.1, "angle": -5.73, "curve": 0.25, "c3": 0.75}, + {"time": 0.4333, "angle": 14.18, "curve": 0.243, "c3": 0.655, "c4": 0.63}, {"time": 0.6667, "angle": -0.91, "curve": 0.382, "c2": 0.58, "c3": 0.731}, + {"time": 0.7667, "angle": -5.73, "curve": 0.25, "c3": 0.75}, {"time": 1.1, "angle": 14.18, "curve": 0.243, "c3": 0.655, "c4": 0.63}, {"time": 1.3333, "angle": -0.91} ] }, - "body-fur-under-03": { - "translate": [{"x": -0.78, "y": 3.19}], - "shear": [ - {"x": 22.47, "curve": 0.25, "c3": 0.75}, {"time": 0.1, "curve": 0.25, "c3": 0.75}, {"time": 0.2, "x": -3.53, "curve": 0.25, "c3": 0.75}, - {"time": 0.5167, "x": 33.65, "curve": 0.25, "c3": 0.75}, {"time": 0.85, "x": -20.36, "curve": 0.25, "c3": 0.75}, {"time": 1.1, "x": 43.83, "curve": 0.25, "c3": 0.75}, - {"time": 1.2667, "x": -23.52, "curve": 0.258, "c3": 0.619, "c4": 0.45}, {"time": 1.3333, "x": 22.47} + "body-fur-09": { + "rotate": [ + {"angle": 6.86, "curve": 0.363, "c2": 0.44, "c3": 0.755}, {"time": 0.2, "angle": -5.73, "curve": 0.25, "c3": 0.75}, + {"time": 0.5333, "angle": 14.18, "curve": 0.258, "c3": 0.619, "c4": 0.45}, {"time": 0.6667, "angle": 6.8, "curve": 0.333, "c2": 0.33, "c3": 0.68, "c4": 0.71}, + {"time": 0.7667, "angle": -0.91, "curve": 0.382, "c2": 0.58, "c3": 0.731}, {"time": 0.8667, "angle": -5.73, "curve": 0.25, "c3": 0.75}, + {"time": 1.2, "angle": 14.18, "curve": 0.258, "c3": 0.619, "c4": 0.45}, {"time": 1.3333, "angle": 6.86} ] }, - "body-fur-under-04": { - "translate": [{"x": -0.33, "y": 3.2}], - "shear": [ - {"x": 10.24, "curve": 0.36, "c2": 0.64, "c3": 0.695}, {"time": 0.0333, "curve": 0.25, "c3": 0.75}, {"time": 0.1333, "x": -30.84, "curve": 0.25, "c3": 0.75}, - {"time": 0.45, "x": 38.54, "curve": 0.25, "c3": 0.75}, {"time": 0.7833, "x": -50.56, "curve": 0.25, "c3": 0.75}, {"time": 1.0333, "x": 40.49, "curve": 0.25, "c3": 0.75}, - {"time": 1.2, "x": -40.09, "curve": 0.243, "c3": 0.68, "c4": 0.71}, {"time": 1.3333, "x": 10.24} + "body-fur-10": { + "rotate": [ + {"angle": 0.34, "curve": 0.382, "c2": 0.57, "c3": 0.737}, {"time": 0.1167, "angle": -5.73, "curve": 0.25, "c3": 0.75}, + {"time": 0.45, "angle": 14.18, "curve": 0.244, "c3": 0.646, "c4": 0.59}, {"time": 0.6667, "angle": 0.34, "curve": 0.382, "c2": 0.57, "c3": 0.737}, + {"time": 0.7833, "angle": -5.73, "curve": 0.25, "c3": 0.75}, {"time": 1.1167, "angle": 14.18, "curve": 0.244, "c3": 0.646, "c4": 0.59}, {"time": 1.3333, "angle": 0.34} ] }, - "body-fur-under-05": { - "translate": [{"x": 0.53, "y": 14.98}], - "shear": [ - {"x": 3.7, "curve": 0.382, "c2": 0.57, "c3": 0.737}, {"time": 0.0833, "curve": 0.25, "c3": 0.75}, {"time": 0.1833, "x": -34.2, "curve": 0.25, "c3": 0.75}, - {"time": 0.5, "x": 32.44, "curve": 0.25, "c3": 0.75}, {"time": 0.8333, "x": -55.52, "curve": 0.25, "c3": 0.75}, {"time": 1.0833, "x": 35.57, "curve": 0.25, "c3": 0.75}, - {"time": 1.25, "x": -41.86, "curve": 0.25, "c3": 0.625, "c4": 0.5}, {"time": 1.3333, "x": 3.7} + "body-fur-11": { + "rotate": [ + {"angle": 4.23, "curve": 0.375, "c2": 0.5, "c3": 0.75}, {"time": 0.1667, "angle": -5.73, "curve": 0.25, "c3": 0.75}, {"time": 0.5, "angle": 14.18, "curve": 0.25, "c3": 0.625, "c4": 0.5}, + {"time": 0.6667, "angle": 4.23, "curve": 0.375, "c2": 0.5, "c3": 0.75}, {"time": 0.8333, "angle": -5.73, "curve": 0.25, "c3": 0.75}, + {"time": 1.1667, "angle": 14.18, "curve": 0.25, "c3": 0.625, "c4": 0.5}, {"time": 1.3333, "angle": 4.23} ] }, - "body-braid-02": { + "body-fur-12": { "rotate": [ - {"angle": 3.5, "curve": 0.348, "c2": 0.38, "c3": 0.685, "c4": 0.73}, {"time": 0.4167, "angle": 79.52, "curve": 0.25, "c3": 0.75}, - {"time": 0.7667, "angle": -13.49, "curve": 0.25, "c3": 0.144}, {"time": 1.0833, "angle": 79.52, "curve": 0.25, "c3": 0.75}, {"time": 1.3333, "angle": 3.5} + {"angle": 8.12, "curve": 0.354, "c2": 0.41, "c3": 0.756}, {"time": 0.2167, "angle": -5.73, "curve": 0.25, "c3": 0.75}, + {"time": 0.55, "angle": 14.18, "curve": 0.263, "c3": 0.618, "c4": 0.43}, {"time": 0.6667, "angle": 8.12, "curve": 0.354, "c2": 0.41, "c3": 0.756}, + {"time": 0.8833, "angle": -5.73, "curve": 0.25, "c3": 0.75}, {"time": 1.2167, "angle": 14.18, "curve": 0.263, "c3": 0.618, "c4": 0.43}, {"time": 1.3333, "angle": 8.12} ] }, - "body-braid-03": { + "body-fur-13": { "rotate": [ - {"angle": -1.71, "curve": 0.337, "c2": 0.34, "c3": 0.673, "c4": 0.69}, {"time": 0.05, "curve": 0.25, "c3": 0.75}, {"time": 0.4667, "angle": 45.56, "curve": 0.25, "c3": 0.75}, - {"time": 0.8167, "angle": -13.49, "curve": 0.25, "c3": 0.144}, {"time": 1.1333, "angle": 45.56, "curve": 0.243, "c3": 0.68, "c4": 0.71}, {"time": 1.3333, "angle": -1.71} + {"angle": 11.59, "curve": 0.32, "c2": 0.29, "c3": 0.757}, {"time": 0.2667, "angle": -5.73, "curve": 0.25, "c3": 0.75}, + {"time": 0.6, "angle": 14.18, "curve": 0.284, "c3": 0.625, "c4": 0.38}, {"time": 0.6667, "angle": 11.59, "curve": 0.32, "c2": 0.29, "c3": 0.757}, + {"time": 0.9333, "angle": -5.73, "curve": 0.25, "c3": 0.75}, {"time": 1.2667, "angle": 14.18, "curve": 0.284, "c3": 0.625, "c4": 0.38}, {"time": 1.3333, "angle": 11.59} ] }, - "body-braid-04": { + "body-fur-14": { "rotate": [ - {"angle": -9.29, "curve": 0.323, "c2": 0.3, "c3": 0.66, "c4": 0.65}, {"time": 0.1167, "curve": 0.25, "c3": 0.75}, {"time": 0.5333, "angle": 36.13, "curve": 0.25, "c3": 0.75}, - {"time": 0.8833, "angle": -30, "curve": 0.25, "c3": 0.144}, {"time": 1.2, "angle": 36.13, "curve": 0.248, "c3": 0.628, "c4": 0.52}, {"time": 1.3333, "angle": -9.29} + {"angle": 13.33, "curve": 0.36, "c2": 0.64, "c3": 0.695}, {"time": 0.0333, "angle": 14.18, "curve": 0.25, "c3": 0.75}, + {"time": 0.3667, "angle": -5.73, "curve": 0.245, "c3": 0.711, "c4": 0.83}, {"time": 0.6667, "angle": 13.33, "curve": 0.36, "c2": 0.64, "c3": 0.695}, + {"time": 0.7, "angle": 14.18, "curve": 0.243, "c3": 0.655, "c4": 0.63}, {"time": 0.9333, "angle": -0.91, "curve": 0.382, "c2": 0.58, "c3": 0.731}, + {"time": 1.0333, "angle": -5.73, "curve": 0.245, "c3": 0.711, "c4": 0.83}, {"time": 1.3333, "angle": 13.33} ] }, - "body-braid-05": { + "body-fur-15": { "rotate": [ - {"angle": -8.3, "curve": 0.294, "c3": 0.631, "c4": 0.37}, {"time": 0.2, "curve": 0.25, "c3": 0.75}, {"time": 0.6167, "angle": -7.54, "curve": 0.25, "c3": 0.75}, - {"time": 0.9667, "angle": -31.56, "curve": 0.25, "c3": 0.144}, {"time": 1.2833, "angle": -7.54, "curve": 0.284, "c3": 0.625, "c4": 0.38}, {"time": 1.3333, "angle": -8.3} + {"angle": 13.33, "curve": 0.289, "c2": 0.17, "c3": 0.755}, {"time": 0.3, "angle": -5.73, "curve": 0.25, "c3": 0.75}, + {"time": 0.6333, "angle": 14.18, "curve": 0.305, "c3": 0.64, "c4": 0.36}, {"time": 0.6667, "angle": 13.33, "curve": 0.289, "c2": 0.17, "c3": 0.755}, + {"time": 0.9667, "angle": -5.73, "curve": 0.25, "c3": 0.75}, {"time": 1.3, "angle": 14.18, "curve": 0.305, "c3": 0.64, "c4": 0.36}, {"time": 1.3333, "angle": 13.33} ] }, - "body-braid-06": { + "body-fur-16": { "rotate": [ - {"angle": -20.59, "curve": 0.352, "c2": 0.41, "c3": 0.689, "c4": 0.75}, {"time": 0.05, "angle": 1.41, "curve": 0.25, "c3": 0.75}, {"time": 0.3, "curve": 0.25, "c3": 0.75}, - {"time": 0.7167, "angle": 1.41, "curve": 0.25, "c3": 0.75}, {"time": 1.0667, "angle": -42.25, "curve": 0.25, "c3": 0.144}, {"time": 1.3333, "angle": -20.59} + {"angle": 13.84, "curve": 0.348, "c2": 0.66, "c3": 0.682}, {"time": 0.0167, "angle": 14.18, "curve": 0.25, "c3": 0.75}, + {"time": 0.35, "angle": -5.73, "curve": 0.247, "c3": 0.729, "c4": 0.91}, {"time": 0.6667, "angle": 13.84, "curve": 0.348, "c2": 0.66, "c3": 0.682}, + {"time": 0.6833, "angle": 14.18, "curve": 0.25, "c3": 0.75}, {"time": 1.0167, "angle": -5.73, "curve": 0.247, "c3": 0.729, "c4": 0.91}, {"time": 1.3333, "angle": 13.84} ] - }, - "body-braid-01": {"rotate": [{"angle": 2.31}]} - }, - "events": [{"time": 0.4333, "name": "jump"}, {"time": 0.8333, "name": "start-attack"}, {"time": 0.9167, "name": "hit"}] + } + } }, - "323348469": { + "2307702827": { "slots": { - "eyes": {"attachment": [{"time": 0.05, "name": "eyes-angry"}, {"time": 0.8333, "name": "eyes-shut"}, {"time": 0.9167, "name": "eyes"}]}, - "mouth": {"attachment": [{"time": 0.05, "name": "mouth-bite"}, {"time": 0.3333, "name": "mouth-open"}, {"time": 0.75, "name": "mouth-bite"}, {"time": 0.9167, "name": "mouth"}]} + "eyes": {"attachment": [{"time": 0.0833, "name": "eyes-shut"}, {"time": 0.1667, "name": "eyes-angry"}, {"time": 0.5833, "name": "eyes-shut"}, {"time": 0.6667, "name": "eyes"}]}, + "mouth": {"attachment": [{"time": 0.0833, "name": "mouth-bite"}, {"time": 0.3667, "name": "mouth-open"}, {"time": 0.5833, "name": "mouth"}]} }, "bones": { - "tail": { - "rotate": [ - {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.25, "angle": 21.98, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3167, "angle": -15.58, "curve": "stepped"}, - {"time": 0.3333, "angle": -19.65, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.4, "angle": 20.35, "curve": "stepped"}, {"time": 0.4333, "angle": -19.65, "curve": "stepped"}, - {"time": 0.4667, "angle": -19.65, "curve": 0.461, "c3": 0.543}, {"time": 0.5333, "angle": 20.35, "curve": "stepped"}, {"time": 0.5667, "angle": -19.65, "curve": "stepped"}, - {"time": 0.6, "angle": -19.65, "curve": 0.461, "c3": 0.543}, {"time": 0.6667, "angle": 20.35, "curve": "stepped"}, {"time": 0.7, "angle": -19.65, "curve": "stepped"}, - {"time": 0.75, "angle": -11.84, "curve": 0.313, "c3": 0.699}, {"time": 0.8333, "angle": 16.95, "curve": 0.313, "c3": 0.699}, {"time": 1} - ] - }, "@pivot-back": { "rotate": [ - {"curve": 0, "c2": 0.4, "c3": 0.383}, {"time": 0.15, "angle": 4, "curve": "stepped"}, {"time": 0.25, "angle": 4, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.3167, "curve": "stepped"}, {"time": 0.3333, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.4, "angle": -2.45, "curve": "stepped"}, {"time": 0.4333, "curve": "stepped"}, - {"time": 0.4667, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.5333, "angle": -2.45, "curve": "stepped"}, {"time": 0.5667, "curve": "stepped"}, - {"time": 0.6, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.6667, "angle": -2.45, "curve": "stepped"}, {"time": 0.7, "curve": "stepped"}, {"time": 0.75, "curve": 0.313, "c3": 0.699}, - {"time": 0.8333, "angle": 6, "curve": 0.313, "c3": 0.699}, {"time": 1} + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.15, "angle": 3.67, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.3333, "angle": -14.29, "curve": 0.854, "c4": 0.1}, + {"time": 0.3667, "angle": 15.82}, {"time": 0.45, "angle": 16.67, "curve": 0.315, "c4": 0.8}, {"time": 0.5667, "angle": 4.4, "curve": 0, "c2": 0.1, "c3": 0.85}, + {"time": 0.6333, "angle": 6.79, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.8333} ], "translate": [ - {"curve": 0, "c2": 0.4, "c3": 0.383}, {"time": 0.25, "x": 25, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3167, "x": -135.5, "curve": "stepped"}, - {"time": 0.3333, "x": -560.54, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.4, "x": -560.54, "y": 9.3, "curve": "stepped"}, {"time": 0.4333, "x": -560.54, "curve": "stepped"}, - {"time": 0.4667, "x": -560.54, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.5333, "x": -560.54, "y": 9.3, "curve": "stepped"}, {"time": 0.5667, "x": -560.54, "curve": "stepped"}, - {"time": 0.6, "x": -560.54, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.6667, "x": -560.54, "y": 9.3, "curve": "stepped"}, {"time": 0.7, "x": -560.54, "curve": "stepped"}, - {"time": 0.75, "x": -151.24, "curve": 0.313, "c3": 0.699}, {"time": 0.8333, "x": -151.24, "y": 4.06, "curve": 0.313, "c3": 0.699}, {"time": 1} - ], - "scale": [{"time": 0.3167, "curve": "stepped"}, {"time": 0.3333, "x": -1, "curve": "stepped"}, {"time": 0.7, "x": -1, "curve": "stepped"}, {"time": 0.75}] + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.2167, "x": 8.02, "curve": 0, "c2": 0.4, "c3": 0.383}, {"time": 0.3333, "x": -54.3, "y": 61.69, "curve": 0.854, "c4": 0.1}, + {"time": 0.3667, "x": -60.41, "y": 130.13}, {"time": 0.45, "x": -60.41, "y": 130.01, "curve": 0.315, "c4": 0.8}, {"time": 0.5667} + ] }, "@leg-front-right": { "translate": [ - {"curve": 0, "c2": 0.4, "c3": 0.383}, {"time": 0.25, "x": -1.86, "y": -9.26, "curve": "stepped"}, {"time": 0.3167, "x": -1.86, "y": -9.26, "curve": "stepped"}, - {"time": 0.3333, "x": -2.24, "y": 13.67, "curve": "stepped"}, {"time": 0.75, "x": -2.24, "y": 13.67, "curve": 0.313, "c3": 0.699}, - {"time": 0.8333, "x": -1.86, "y": -9.26, "curve": 0.313, "c3": 0.699}, {"time": 1} + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.2167, "x": -18.54, "y": -11.57}, {"time": 0.25, "x": -23.07, "y": 10.08, "curve": 0, "c2": 0.4, "c3": 0.383}, + {"time": 0.3333, "x": 29.92, "y": -4.24, "curve": 0.854, "c4": 0.1}, {"time": 0.3667, "x": 22.95, "y": 2.68, "curve": "stepped"}, + {"time": 0.45, "x": 22.95, "y": 2.68, "curve": 0.157, "c2": 0.33, "c3": 0.727}, {"time": 0.5333, "x": 29.92, "y": -4.24, "curve": 0.779, "c4": 0.4}, + {"time": 0.5667, "x": -1.45, "y": -24.11, "curve": "stepped"}, {"time": 0.6333, "x": -1.45, "y": -24.11, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.6667} + ], + "scale": [ + {"time": 0.2, "curve": 0.315, "c4": 0.8}, {"time": 0.25, "x": 1.5, "curve": 0, "c2": 0.3, "c3": 0.539}, {"time": 0.3333, "curve": 0.854, "c4": 0.1}, {"time": 0.3667, "x": 1.5}, + {"time": 0.45, "x": 1.51, "curve": 0.157, "c2": 0.33, "c3": 0.727}, {"time": 0.4833} ] }, "@leg-front-left": { "translate": [ - {"curve": 0, "c2": 0.4, "c3": 0.383}, {"time": 0.25, "x": -1, "y": -5.53, "curve": "stepped"}, {"time": 0.3167, "x": -1, "y": -5.53, "curve": "stepped"}, - {"time": 0.3333, "x": -1.12, "y": 1.52, "curve": "stepped"}, {"time": 0.75, "x": -1.12, "y": 1.52, "curve": 0.313, "c3": 0.699}, - {"time": 0.8333, "x": -1, "y": -5.53, "curve": 0.313, "c3": 0.699}, {"time": 1} + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.2167, "x": -6.84, "y": -9.77, "curve": "stepped"}, {"time": 0.5667, "x": -6.84, "y": -9.77, "curve": 0, "c2": 0.1, "c3": 0.85}, + {"time": 0.6333, "x": -6.29, "y": -18.69, "curve": 0, "c2": 0.23, "c3": 0.365, "c4": 0.58}, {"time": 0.6667, "x": -3.64, "y": -2.46, "curve": 0.177, "c2": 0.35, "c3": 0.731}, + {"time": 0.8333} ] }, - "@shadow": { + "@leg-back-left": { "translate": [ - {"time": 0.25, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3167, "x": -143.36, "curve": "stepped"}, {"time": 0.7, "x": -143.36, "curve": "stepped"}, - {"time": 0.75, "x": -161.35, "curve": "stepped"}, {"time": 0.8333, "x": -161.35, "curve": 0.313, "c3": 0.699}, {"time": 1} + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.2167, "x": -0.11, "y": -2.73, "curve": "stepped"}, {"time": 0.5667, "x": -0.11, "y": -2.73, "curve": 0, "c2": 0.1, "c3": 0.85}, + {"time": 0.6333, "x": -0.46, "y": -6.19, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.8333} + ] + }, + "@pivot-main": { + "translate": [ + {"time": 0.15, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "x": -73.35, "y": 43, "curve": "stepped"}, {"time": 0.45, "x": -73.35, "y": 43, "curve": 0.315, "c4": 0.8}, + {"time": 0.5667, "x": -146.44, "curve": "stepped"}, {"time": 0.6333, "x": -146.44, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.7333, "x": -45.61, "y": 50.15, "curve": 0.315, "c4": 0.8}, {"time": 0.8333} ], - "scale": [ - {"curve": 0, "c2": 0.4, "c3": 0.383}, {"time": 0.25, "x": 1.08, "y": 1.08, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3167, "curve": "stepped"}, - {"time": 0.3333, "x": 1.02, "y": 1.02, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.4, "x": 0.96, "y": 0.96, "curve": "stepped"}, - {"time": 0.4333, "x": 1.02, "y": 1.02, "curve": "stepped"}, {"time": 0.4667, "x": 1.02, "y": 1.02, "curve": 0, "c2": 0.3, "c3": 0.544}, - {"time": 0.5333, "x": 0.96, "y": 0.96, "curve": "stepped"}, {"time": 0.5667, "x": 1.02, "y": 1.02, "curve": "stepped"}, - {"time": 0.6, "x": 1.02, "y": 1.02, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.6667, "x": 0.96, "y": 0.96, "curve": "stepped"}, - {"time": 0.7, "x": 1.02, "y": 1.02, "curve": "stepped"}, {"time": 0.75, "curve": 0.313, "c3": 0.699}, {"time": 0.8333, "x": 1.08, "y": 1.08, "curve": 0.313, "c3": 0.699}, {"time": 1} + "scale": [{"time": 0.5667, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.6333, "y": 0.98, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.7333}] + }, + "leg-front-right-IK": { + "translate": [ + {"time": 0.15, "curve": 0, "c2": 0.18, "c3": 0.416, "c4": 0.58}, {"time": 0.2167, "x": 49.59, "y": 35.17}, {"time": 0.25, "x": -2.16, "y": 99.87, "curve": 0, "c2": 0.6, "c3": 0.237}, + {"time": 0.3333, "x": -158.6, "y": 254.45, "curve": 0.854, "c4": 0.1}, {"time": 0.3667, "x": -48.06, "y": 31.6}, {"time": 0.45, "x": -24.61, "y": 31.6, "curve": 0.315, "c4": 0.8}, + {"time": 0.5667, "curve": "stepped"}, {"time": 0.6333, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.6667, "x": -14.68, "y": -19.57, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.8333} ] }, "leg-front-left-IK": { "translate": [ - {"time": 0.25, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3167, "x": -192.09, "y": 31.17, "curve": "stepped"}, - {"time": 0.3333, "x": -219.56, "y": 3.98, "curve": 0.277, "c3": 0.849, "c4": 0.67}, {"time": 0.65, "x": -219.56, "y": 3.98, "curve": 0.641, "c2": 0.41, "c4": 0.76}, - {"time": 0.7, "x": -226.38, "y": 3.98, "curve": "stepped"}, {"time": 0.75, "x": -157.76, "curve": "stepped"}, {"time": 0.8333, "x": -157.76, "curve": 0.306, "c3": 0.695}, {"time": 1} + {"time": 0.15, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "x": -54.88, "y": 124.95, "curve": 0.854, "c4": 0.1}, {"time": 0.3667, "x": 37.97, "y": 122.64}, + {"time": 0.45, "x": 48.96, "y": 138.43, "curve": 0.315, "c4": 0.8}, {"time": 0.5667, "curve": "stepped"}, {"time": 0.6333, "curve": 0, "c2": 0.1, "c3": 0.85}, + {"time": 0.6667, "x": -7.79, "y": -10.12, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.8333} ] }, - "leg-front-right-IK": { + "leg-back-left-IK": { "translate": [ - {"time": 0.25, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3167, "x": -172.87, "y": 28.32, "curve": "stepped"}, {"time": 0.3333, "x": 295.89, "y": 8.85, "curve": "stepped"}, - {"time": 0.7, "x": 295.89, "y": 8.85, "curve": "stepped"}, {"time": 0.75, "x": -180.48, "curve": "stepped"}, {"time": 0.8333, "x": -180.48, "curve": 0.313, "c3": 0.699}, {"time": 1} + {"time": 0.0833, "curve": 0.332, "c3": 0.682, "c4": 0.41}, {"time": 0.2167, "x": 21.57, "y": 4.03, "curve": 0, "c2": 0.4, "c3": 0.383}, + {"time": 0.3333, "x": -50.73, "y": 91.08, "curve": 0.854, "c4": 0.1}, {"time": 0.3667, "x": 19.18, "y": 184.64}, {"time": 0.45, "x": 25.59, "y": 197.69, "curve": 0.315, "c4": 0.8}, + {"time": 0.5667, "curve": "stepped"}, {"time": 0.6333, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.75, "x": 24.35, "y": 13.92, "curve": 0.154, "c4": 0.9}, {"time": 0.8333} ] }, - "leg-back-left-IK": { + "tail": { + "rotate": [ + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.15, "angle": 14.68, "curve": 0.315, "c4": 0.8}, {"time": 0.2167, "angle": -12.57}, + {"time": 0.3333, "angle": -14.89, "curve": 0.854, "c4": 0.1}, {"time": 0.3667, "angle": 25.96}, {"time": 0.45, "angle": 33.77}, + {"time": 0.6167, "angle": 26.39, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.7167, "angle": -14.8, "curve": 0.154, "c4": 0.9}, {"time": 0.8333} + ] + }, + "@shadow": { "translate": [ - {"time": 0.25, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3167, "x": -96.78, "y": 27.51, "curve": "stepped"}, {"time": 0.3333, "x": -542.14, "curve": "stepped"}, - {"time": 0.7, "x": -542.14, "curve": "stepped"}, {"time": 0.75, "x": -134.74, "curve": "stepped"}, {"time": 0.8333, "x": -134.74, "curve": 0.313, "c3": 0.699}, {"time": 1} + {"time": 0.15, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.3333, "x": -132.39, "curve": 0.854, "c4": 0.1}, {"time": 0.3667, "x": -111.3, "curve": "stepped"}, + {"time": 0.45, "x": -111.3, "curve": 0.315, "c4": 0.8}, {"time": 0.5667, "x": -132.39, "curve": "stepped"}, {"time": 0.6333, "x": -132.39, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.8333} + ], + "scale": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.15, "x": 1.05, "y": 1.05, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.3333, "x": 0.93, "y": 0.93, "curve": 0.854, "c4": 0.1}, + {"time": 0.3667, "x": 0.95, "y": 0.95}, {"time": 0.45, "x": 0.97, "y": 0.97, "curve": 0.315, "c4": 0.8}, {"time": 0.5667, "x": 1.05, "y": 1.05, "curve": 0, "c2": 0.1, "c3": 0.85}, + {"time": 0.6333, "x": 1.07, "y": 1.07, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.8333} ] }, - "@leg-back-left": { - "translate": [{"time": 0.3167, "curve": "stepped"}, {"time": 0.3333, "x": -0.06, "y": 3.33, "curve": "stepped"}, {"time": 0.7, "x": -0.06, "y": 3.33, "curve": "stepped"}, {"time": 0.75}] + "body-fur-01": { + "rotate": [ + {"angle": 8.53, "curve": 0.375, "c2": 0.5, "c3": 0.75}, {"time": 0.0667, "curve": 0.25, "c3": 0.75}, {"time": 0.2167, "angle": 18.8, "curve": 0.25, "c3": 0.75}, + {"time": 0.4167, "angle": -26.83, "curve": 0.25, "c3": 0.75}, {"time": 0.5, "angle": 37.79, "curve": 0.25, "c3": 0.75}, {"time": 0.6667, "angle": -23.11, "curve": 0.25, "c3": 0.75}, + {"time": 0.7667, "angle": 17.07, "curve": 0.25, "c3": 0.625, "c4": 0.5}, {"time": 0.8333, "angle": 10.51} + ] }, - "@pivot-main": {"translate": [{"time": 0.8333, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.9167, "y": 31, "curve": 0.315, "c4": 0.8}, {"time": 1}]}, - "body-fur-under-01": { - "translate": [{"x": -0.14, "y": 0.84}], - "shear": [ - {"x": -4.09, "curve": 0.375, "c2": 0.5, "c3": 0.75}, {"time": 0.0667, "x": 26.91, "curve": 0.25, "c3": 0.228, "c4": 0.99}, {"time": 0.1667, "x": -42.78, "curve": 0.25, "c3": 0.75}, - {"time": 0.2667, "curve": 0.265, "c3": 0.618, "c4": 0.43}, {"time": 0.2833, "x": 7.64, "curve": 0.351, "c2": 0.4, "c3": 0.757}, - {"time": 0.3167, "x": 26.91, "curve": 0.25, "c3": 0.228, "c4": 0.99}, {"time": 0.35, "x": -42.78, "curve": 0.25, "c3": 0.75}, {"time": 0.3833, "curve": "stepped"}, - {"time": 0.4, "curve": 0.265, "c3": 0.618, "c4": 0.43}, {"time": 0.4167, "x": 7.64, "curve": 0.351, "c2": 0.4, "c3": 0.757}, - {"time": 0.4333, "x": 26.91, "curve": 0.25, "c3": 0.228, "c4": 0.99}, {"time": 0.4833, "x": -42.78, "curve": 0.25, "c3": 0.75}, {"time": 0.5167, "curve": "stepped"}, - {"time": 0.5333, "curve": 0.265, "c3": 0.618, "c4": 0.43}, {"time": 0.55, "x": 7.64, "curve": 0.351, "c2": 0.4, "c3": 0.757}, - {"time": 0.5667, "x": 26.91, "curve": 0.25, "c3": 0.228, "c4": 0.99}, {"time": 0.6, "x": -42.78, "curve": 0.25, "c3": 0.75}, {"time": 0.6333, "curve": 0.265, "c3": 0.618, "c4": 0.43}, - {"time": 0.65, "x": 7.64, "curve": 0.351, "c2": 0.4, "c3": 0.757}, {"time": 0.6667, "curve": 0.265, "c3": 0.618, "c4": 0.43}, - {"time": 0.7, "x": 7.64, "curve": 0.351, "c2": 0.4, "c3": 0.757}, {"time": 0.7667, "x": 26.91, "curve": 0.25, "c3": 0.228, "c4": 0.99}, - {"time": 0.8667, "x": -42.78, "curve": 0.25, "c3": 0.75}, {"time": 0.9667, "curve": 0.265, "c3": 0.618, "c4": 0.43}, {"time": 1, "x": -4.09} + "body-fur-02": { + "rotate": [ + {"angle": 13.89, "curve": 0.314, "c2": 0.27, "c3": 0.686, "c4": 0.73}, {"time": 0.0667, "angle": 3.15, "curve": 0.379, "c2": 0.6, "c3": 0.724}, {"time": 0.1, "curve": 0.25, "c3": 0.75}, + {"time": 0.25, "angle": 18.8, "curve": 0.25, "c3": 0.75}, {"time": 0.45, "angle": -26.83, "curve": 0.25, "c3": 0.75}, {"time": 0.5333, "angle": 37.79, "curve": 0.25, "c3": 0.75}, + {"time": 0.7, "angle": -23.11, "curve": 0.25, "c3": 0.75}, {"time": 0.8, "angle": 17.07, "curve": 0.276, "c3": 0.621, "c4": 0.4}, {"time": 0.8333, "angle": 13.84} ] }, - "body-fur-under-02": { - "translate": [{"x": -2.23, "y": 6.28}], - "shear": [ - {"x": -27.8, "curve": 0.375, "c2": 0.62, "c3": 0.716}, {"time": 0.1, "x": 18.72, "curve": 0.25, "c3": 0.228, "c4": 0.99}, - {"time": 0.1833, "x": -43.03, "curve": 0.243, "c3": 0.68, "c4": 0.71}, {"time": 0.2667, "x": -5.6, "curve": 0.375, "c2": 0.62, "c3": 0.716}, - {"time": 0.2833, "x": 1.3, "curve": 0.3, "c2": 0.21, "c3": 0.756}, {"time": 0.3167, "x": 18.72, "curve": 0.25, "c3": 0.228, "c4": 0.99}, - {"time": 0.35, "x": -43.03, "curve": 0.243, "c3": 0.68, "c4": 0.71}, {"time": 0.3833, "x": -5.6, "curve": "stepped"}, {"time": 0.4, "x": -5.6, "curve": 0.375, "c2": 0.62, "c3": 0.716}, - {"time": 0.4167, "x": 1.3, "curve": 0.3, "c2": 0.21, "c3": 0.756}, {"time": 0.45, "x": 18.72, "curve": 0.25, "c3": 0.228, "c4": 0.99}, - {"time": 0.4833, "x": -43.03, "curve": 0.243, "c3": 0.68, "c4": 0.71}, {"time": 0.5167, "curve": "stepped"}, {"time": 0.5333, "curve": 0.297, "c3": 0.634, "c4": 0.37}, - {"time": 0.55, "x": 1.3, "curve": 0.3, "c2": 0.21, "c3": 0.756}, {"time": 0.5667, "x": 18.72, "curve": 0.25, "c3": 0.228, "c4": 0.99}, - {"time": 0.6167, "x": -43.03, "curve": 0.243, "c3": 0.68, "c4": 0.71}, {"time": 0.6333, "x": -5.6, "curve": 0.375, "c2": 0.62, "c3": 0.716}, - {"time": 0.65, "x": 1.3, "curve": 0.3, "c2": 0.21, "c3": 0.756}, {"time": 0.6667, "x": -5.6, "curve": 0.375, "c2": 0.62, "c3": 0.716}, - {"time": 0.6833, "curve": 0.297, "c3": 0.634, "c4": 0.37}, {"time": 0.7, "x": 1.3, "curve": 0.3, "c2": 0.21, "c3": 0.756}, - {"time": 0.7833, "x": 18.72, "curve": 0.25, "c3": 0.228, "c4": 0.99}, {"time": 0.8833, "x": -43.03, "curve": 0.243, "c3": 0.68, "c4": 0.71}, - {"time": 0.9667, "x": -5.6, "curve": 0.375, "c2": 0.62, "c3": 0.716}, {"time": 0.9833, "curve": 0.297, "c3": 0.634, "c4": 0.37}, {"time": 1, "x": -27.8} + "body-fur-03": { + "rotate": [ + {"angle": 5.73, "curve": 0.382, "c2": 0.56, "c3": 0.74}, {"time": 0.05, "curve": 0.25, "c3": 0.75}, {"time": 0.2, "angle": 18.8, "curve": 0.25, "c3": 0.75}, + {"time": 0.4, "angle": -26.83, "curve": 0.25, "c3": 0.75}, {"time": 0.4833, "angle": 37.79, "curve": 0.25, "c3": 0.75}, {"time": 0.65, "angle": -23.11, "curve": 0.25, "c3": 0.75}, + {"time": 0.75, "angle": 17.07, "curve": 0.244, "c3": 0.641, "c4": 0.57}, {"time": 0.8333, "angle": 5.54} ] }, - "body-fur-under-03": { - "translate": [{"x": -0.78, "y": 3.19}], - "shear": [ - {"x": 22.47, "curve": 0.25, "c3": 0.75}, {"time": 0.0833, "x": 19.28, "curve": 0.25, "c3": 0.228, "c4": 0.99}, {"time": 0.1833, "x": -45.7, "curve": 0.244, "c3": 0.7, "c4": 0.79}, - {"time": 0.2667, "x": -3.18, "curve": 0.366, "c2": 0.63, "c3": 0.703}, {"time": 0.2833, "x": 2.51, "curve": 0.32, "c2": 0.29, "c3": 0.757}, - {"time": 0.3167, "x": 19.28, "curve": 0.25, "c3": 0.228, "c4": 0.99}, {"time": 0.35, "x": -45.7, "curve": 0.244, "c3": 0.7, "c4": 0.79}, - {"time": 0.3833, "x": -3.18, "curve": 0.366, "c2": 0.63, "c3": 0.703}, {"time": 0.4, "curve": 0.284, "c3": 0.625, "c4": 0.38}, - {"time": 0.4167, "x": 2.51, "curve": 0.32, "c2": 0.29, "c3": 0.757}, {"time": 0.45, "x": 19.28, "curve": 0.25, "c3": 0.228, "c4": 0.99}, - {"time": 0.4833, "x": -45.7, "curve": 0.244, "c3": 0.7, "c4": 0.79}, {"time": 0.5167, "curve": "stepped"}, {"time": 0.5333, "curve": 0.284, "c3": 0.625, "c4": 0.38}, - {"time": 0.55, "x": 2.51, "curve": 0.32, "c2": 0.29, "c3": 0.757}, {"time": 0.5667, "x": 19.28, "curve": 0.25, "c3": 0.228, "c4": 0.99}, - {"time": 0.6167, "x": -45.7, "curve": 0.244, "c3": 0.7, "c4": 0.79}, {"time": 0.6333, "x": -3.18, "curve": 0.366, "c2": 0.63, "c3": 0.703}, - {"time": 0.65, "x": 2.51, "curve": 0.32, "c2": 0.29, "c3": 0.757}, {"time": 0.6667, "x": -3.18, "curve": 0.366, "c2": 0.63, "c3": 0.703}, - {"time": 0.6833, "curve": 0.284, "c3": 0.625, "c4": 0.38}, {"time": 0.7, "x": 2.51, "curve": 0.32, "c2": 0.29, "c3": 0.757}, - {"time": 0.7833, "x": 19.28, "curve": 0.25, "c3": 0.228, "c4": 0.99}, {"time": 0.8667, "x": -45.7, "curve": 0.244, "c3": 0.7, "c4": 0.79}, - {"time": 0.9667, "x": -3.18, "curve": 0.366, "c2": 0.63, "c3": 0.703}, {"time": 0.9833, "curve": 0.284, "c3": 0.625, "c4": 0.38}, {"time": 1, "x": 22.47} + "body-fur-04": { + "rotate": [ + {"angle": 11.28, "curve": 0.333, "c2": 0.33, "c3": 0.688, "c4": 0.73}, {"time": 0.05, "angle": 3.15, "curve": 0.379, "c2": 0.6, "c3": 0.724}, {"time": 0.0833, "curve": 0.25, "c3": 0.75}, + {"time": 0.2333, "angle": 18.8, "curve": 0.25, "c3": 0.75}, {"time": 0.4333, "angle": -26.83, "curve": 0.25, "c3": 0.75}, {"time": 0.5167, "angle": 37.79, "curve": 0.25, "c3": 0.75}, + {"time": 0.6833, "angle": -23.11, "curve": 0.25, "c3": 0.75}, {"time": 0.7833, "angle": 17.07, "curve": 0.26, "c3": 0.618, "c4": 0.44}, {"time": 0.8333, "angle": 12.53} ] }, - "body-fur-under-04": { - "translate": [{"x": -0.33, "y": 3.2}], - "shear": [ - {"x": 10.24, "curve": 0.36, "c2": 0.64, "c3": 0.695}, {"time": 0.1, "x": 13.82, "curve": 0.25, "c3": 0.228, "c4": 0.99}, - {"time": 0.2, "x": -39.88, "curve": 0.243, "c3": 0.649, "c4": 0.6}, {"time": 0.2667, "x": -22.71, "curve": 0.382, "c2": 0.57, "c3": 0.735}, - {"time": 0.2833, "x": -15.91, "curve": 0.25, "c3": 0.75}, {"time": 0.3167, "x": 13.82, "curve": 0.25, "c3": 0.228, "c4": 0.99}, - {"time": 0.35, "x": -39.88, "curve": 0.243, "c3": 0.649, "c4": 0.6}, {"time": 0.3833, "x": -22.71, "curve": "stepped"}, - {"time": 0.4, "x": -22.71, "curve": 0.382, "c2": 0.57, "c3": 0.735}, {"time": 0.4167, "x": -15.91, "curve": 0.25, "c3": 0.75}, - {"time": 0.45, "x": 13.82, "curve": 0.25, "c3": 0.228, "c4": 0.99}, {"time": 0.4833, "x": -39.88, "curve": 0.243, "c3": 0.649, "c4": 0.6}, - {"time": 0.5167, "x": -22.71, "curve": "stepped"}, {"time": 0.5333, "x": -22.71, "curve": 0.382, "c2": 0.57, "c3": 0.735}, {"time": 0.55, "x": -15.91, "curve": 0.25, "c3": 0.75}, - {"time": 0.5667, "x": 13.82, "curve": 0.25, "c3": 0.228, "c4": 0.99}, {"time": 0.6167, "x": -39.88, "curve": 0.243, "c3": 0.649, "c4": 0.6}, - {"time": 0.6333, "x": -22.71, "curve": 0.382, "c2": 0.57, "c3": 0.735}, {"time": 0.65, "x": -15.91, "curve": 0.25, "c3": 0.75}, - {"time": 0.6667, "x": -22.71, "curve": 0.382, "c2": 0.57, "c3": 0.735}, {"time": 0.7, "x": -15.91, "curve": 0.25, "c3": 0.75}, - {"time": 0.8, "x": 13.82, "curve": 0.25, "c3": 0.228, "c4": 0.99}, {"time": 0.9, "x": -39.88, "curve": 0.243, "c3": 0.649, "c4": 0.6}, - {"time": 0.9667, "x": -22.71, "curve": 0.382, "c2": 0.57, "c3": 0.735}, {"time": 1, "x": 10.24} + "body-fur-05": { + "rotate": [ + {"angle": 3.15, "curve": 0.379, "c2": 0.6, "c3": 0.724}, {"time": 0.0333, "curve": 0.25, "c3": 0.75}, {"time": 0.1833, "angle": 18.8, "curve": 0.25, "c3": 0.75}, + {"time": 0.3833, "angle": -26.83, "curve": 0.25, "c3": 0.75}, {"time": 0.4667, "angle": 37.79, "curve": 0.25, "c3": 0.75}, {"time": 0.6333, "angle": -23.11, "curve": 0.25, "c3": 0.75}, + {"time": 0.7333, "angle": 17.07, "curve": 0.242, "c3": 0.667, "c4": 0.67}, {"time": 0.8333, "angle": 6.86} ] }, - "body-fur-under-05": { - "translate": [{"x": 0.53, "y": 14.98}], - "shear": [ - {"x": 3.7, "curve": 0.382, "c2": 0.57, "c3": 0.737}, {"time": 0.0167, "x": -12.53, "curve": 0.25, "c3": 0.75}, {"time": 0.1167, "x": 6.85, "curve": 0.25, "c3": 0.228, "c4": 0.99}, - {"time": 0.2167, "x": -44.3, "curve": 0.248, "c3": 0.628, "c4": 0.52}, {"time": 0.2667, "x": -27.02, "curve": 0.356, "c2": 0.41, "c3": 0.707, "c4": 0.81}, - {"time": 0.2833, "x": -12.53, "curve": 0.25, "c3": 0.75}, {"time": 0.3333, "x": 6.85, "curve": 0.25, "c3": 0.228, "c4": 0.99}, - {"time": 0.3667, "x": -44.3, "curve": 0.248, "c3": 0.628, "c4": 0.52}, {"time": 0.3833, "x": -27.02, "curve": "stepped"}, - {"time": 0.4, "x": -27.02, "curve": 0.356, "c2": 0.41, "c3": 0.707, "c4": 0.81}, {"time": 0.4167, "x": -12.53, "curve": 0.25, "c3": 0.75}, - {"time": 0.45, "x": 6.85, "curve": 0.25, "c3": 0.228, "c4": 0.99}, {"time": 0.4833, "x": -44.3, "curve": 0.248, "c3": 0.628, "c4": 0.52}, - {"time": 0.5167, "x": -27.02, "curve": "stepped"}, {"time": 0.5333, "x": -27.02, "curve": 0.356, "c2": 0.41, "c3": 0.707, "c4": 0.81}, - {"time": 0.55, "x": -12.53, "curve": 0.25, "c3": 0.75}, {"time": 0.5833, "x": 6.85, "curve": 0.25, "c3": 0.228, "c4": 0.99}, - {"time": 0.6167, "x": -44.3, "curve": 0.248, "c3": 0.628, "c4": 0.52}, {"time": 0.6333, "x": -27.02, "curve": 0.356, "c2": 0.41, "c3": 0.707, "c4": 0.81}, - {"time": 0.65, "x": -14.63, "curve": 0.366, "c2": 0.63, "c3": 0.703}, {"time": 0.6667, "x": -27.02, "curve": 0.356, "c2": 0.41, "c3": 0.707, "c4": 0.81}, - {"time": 0.7, "x": -14.63, "curve": 0.366, "c2": 0.63, "c3": 0.703}, {"time": 0.7167, "x": -12.53, "curve": 0.25, "c3": 0.75}, - {"time": 0.8167, "x": 6.85, "curve": 0.25, "c3": 0.228, "c4": 0.99}, {"time": 0.9167, "x": -44.3, "curve": 0.248, "c3": 0.628, "c4": 0.52}, - {"time": 0.9667, "x": -27.02, "curve": 0.356, "c2": 0.41, "c3": 0.707, "c4": 0.81}, {"time": 1, "x": 3.7} + "body-fur-06": { + "rotate": [ + {"angle": 8.47, "curve": 0.343, "c2": 0.36, "c3": 0.686, "c4": 0.73}, {"time": 0.0333, "angle": 3.15, "curve": 0.379, "c2": 0.6, "c3": 0.724}, + {"time": 0.0667, "curve": 0.25, "c3": 0.75}, {"time": 0.2167, "angle": 18.8, "curve": 0.25, "c3": 0.75}, {"time": 0.4167, "angle": -26.83, "curve": 0.25, "c3": 0.75}, + {"time": 0.5, "angle": 37.79, "curve": 0.25, "c3": 0.75}, {"time": 0.6667, "angle": -23.11, "curve": 0.25, "c3": 0.75}, + {"time": 0.7667, "angle": 17.07, "curve": 0.25, "c3": 0.625, "c4": 0.5}, {"time": 0.8333, "angle": 13.33} ] }, - "body-braid-02": { + "body-fur-07": { "rotate": [ - {"angle": 3.5, "curve": 0.348, "c2": 0.38, "c3": 0.685, "c4": 0.73}, {"time": 0.0833, "angle": 2.63, "curve": 0.25, "c3": 0.228, "c4": 0.99}, - {"time": 0.1833, "angle": 43.23, "curve": 0.25, "c3": 0.75}, {"time": 0.2833, "angle": 0.34, "curve": 0.32, "c2": 0.29, "c3": 0.757}, - {"time": 0.3167, "angle": 2.63, "curve": 0.25, "c3": 0.228, "c4": 0.99}, {"time": 0.35, "angle": 43.23, "curve": 0.25, "c3": 0.75}, - {"time": 0.4, "curve": 0.284, "c3": 0.625, "c4": 0.38}, {"time": 0.4167, "angle": 0.34, "curve": 0.32, "c2": 0.29, "c3": 0.757}, - {"time": 0.45, "angle": 2.63, "curve": 0.25, "c3": 0.228, "c4": 0.99}, {"time": 0.4833, "angle": 43.23, "curve": 0.25, "c3": 0.75}, {"time": 0.5167, "curve": "stepped"}, - {"time": 0.5333, "curve": 0.284, "c3": 0.625, "c4": 0.38}, {"time": 0.55, "angle": 0.34, "curve": 0.32, "c2": 0.29, "c3": 0.757}, - {"time": 0.5667, "angle": 2.63, "curve": 0.25, "c3": 0.228, "c4": 0.99}, {"time": 0.6167, "angle": 43.23, "curve": 0.25, "c3": 0.75}, - {"time": 0.65, "angle": 0.34, "curve": 0.32, "c2": 0.29, "c3": 0.757}, {"time": 0.6833, "curve": 0.284, "c3": 0.625, "c4": 0.38}, - {"time": 0.7, "angle": 0.34, "curve": 0.32, "c2": 0.29, "c3": 0.757}, {"time": 0.7833, "angle": 2.63, "curve": 0.25, "c3": 0.228, "c4": 0.99}, - {"time": 0.8667, "angle": 25.65, "curve": 0.25, "c3": 0.75}, {"time": 0.9833, "curve": 0.284, "c3": 0.625, "c4": 0.38}, {"time": 1, "angle": 3.5} + {"angle": 1.07, "curve": 0.364, "c2": 0.64, "c3": 0.701}, {"time": 0.0167, "curve": 0.25, "c3": 0.75}, {"time": 0.1667, "angle": 18.8, "curve": 0.25, "c3": 0.75}, + {"time": 0.3667, "angle": -26.83, "curve": 0.25, "c3": 0.75}, {"time": 0.45, "angle": 37.79, "curve": 0.25, "c3": 0.75}, {"time": 0.6167, "angle": -23.11, "curve": 0.25, "c3": 0.75}, + {"time": 0.7167, "angle": 17.07, "curve": 0.244, "c3": 0.702, "c4": 0.8}, {"time": 0.8333, "angle": 2.91} ] }, - "body-braid-03": { + "body-fur-08": { "rotate": [ - {"angle": -1.71, "curve": 0.337, "c2": 0.34, "c3": 0.673, "c4": 0.69}, {"time": 0.1, "angle": 2.63, "curve": 0.25, "c3": 0.228, "c4": 0.99}, - {"time": 0.2, "angle": 23.44, "curve": 0.244, "c3": 0.7, "c4": 0.79}, {"time": 0.2833, "angle": 0.06, "curve": 0.277, "c2": 0.12, "c3": 0.754}, - {"time": 0.3167, "angle": 2.63, "curve": 0.25, "c3": 0.228, "c4": 0.99}, {"time": 0.35, "angle": 23.44, "curve": 0.244, "c3": 0.7, "c4": 0.79}, - {"time": 0.4, "angle": 1.63, "curve": 0.366, "c2": 0.63, "c3": 0.703}, {"time": 0.4167, "angle": 0.06, "curve": 0.277, "c2": 0.12, "c3": 0.754}, - {"time": 0.45, "angle": 2.63, "curve": 0.25, "c3": 0.228, "c4": 0.99}, {"time": 0.4833, "angle": 23.44, "curve": 0.244, "c3": 0.7, "c4": 0.79}, - {"time": 0.5167, "angle": 1.63, "curve": 0.366, "c2": 0.63, "c3": 0.703}, {"time": 0.5333, "curve": 0.313, "c3": 0.648, "c4": 0.35}, - {"time": 0.55, "angle": 0.06, "curve": 0.277, "c2": 0.12, "c3": 0.754}, {"time": 0.5667, "angle": 2.63, "curve": 0.25, "c3": 0.228, "c4": 0.99}, - {"time": 0.6167, "angle": 23.44, "curve": 0.244, "c3": 0.7, "c4": 0.79}, {"time": 0.65, "angle": 0.06, "curve": 0.277, "c2": 0.12, "c3": 0.754}, - {"time": 0.6833, "curve": 0.313, "c3": 0.648, "c4": 0.35}, {"time": 0.7, "angle": 0.06, "curve": 0.277, "c2": 0.12, "c3": 0.754}, - {"time": 0.8, "angle": 2.63, "curve": 0.25, "c3": 0.228, "c4": 0.99}, {"time": 0.8833, "angle": 23.44, "curve": 0.244, "c3": 0.7, "c4": 0.79}, - {"time": 0.9833, "angle": 1.63, "curve": 0.366, "c2": 0.63, "c3": 0.703}, {"time": 1, "angle": -1.71} + {"angle": 5.73, "curve": 0.382, "c2": 0.56, "c3": 0.74}, {"time": 0.05, "curve": 0.25, "c3": 0.75}, {"time": 0.2, "angle": 18.8, "curve": 0.25, "c3": 0.75}, + {"time": 0.4, "angle": -26.83, "curve": 0.25, "c3": 0.75}, {"time": 0.4833, "angle": 37.79, "curve": 0.25, "c3": 0.75}, {"time": 0.65, "angle": -23.11, "curve": 0.25, "c3": 0.75}, + {"time": 0.75, "angle": 17.07, "curve": 0.244, "c3": 0.641, "c4": 0.57}, {"time": 0.8333, "angle": -0.91} ] }, - "body-braid-04": { + "body-fur-09": { "rotate": [ - {"angle": -9.29, "curve": 0.323, "c2": 0.3, "c3": 0.66, "c4": 0.65}, {"time": 0.0167, "curve": 0.25, "c3": 0.75}, {"time": 0.1167, "angle": 2.63, "curve": 0.25, "c3": 0.228, "c4": 0.99}, - {"time": 0.2167, "angle": 16.91, "curve": 0.243, "c3": 0.649, "c4": 0.6}, {"time": 0.2833, "curve": 0.25, "c3": 0.75}, - {"time": 0.3333, "angle": 2.63, "curve": 0.25, "c3": 0.228, "c4": 0.99}, {"time": 0.3667, "angle": 16.91, "curve": 0.243, "c3": 0.649, "c4": 0.6}, - {"time": 0.4, "angle": 4.8, "curve": 0.356, "c2": 0.42, "c3": 0.696, "c4": 0.78}, {"time": 0.4167, "curve": 0.25, "c3": 0.75}, - {"time": 0.45, "angle": 2.63, "curve": 0.25, "c3": 0.228, "c4": 0.99}, {"time": 0.4833, "angle": 16.91, "curve": 0.243, "c3": 0.649, "c4": 0.6}, - {"time": 0.5167, "angle": 4.8, "curve": "stepped"}, {"time": 0.5333, "angle": 4.8, "curve": 0.356, "c2": 0.42, "c3": 0.696, "c4": 0.78}, {"time": 0.55, "curve": 0.25, "c3": 0.75}, - {"time": 0.5833, "angle": 2.63, "curve": 0.25, "c3": 0.228, "c4": 0.99}, {"time": 0.6167, "angle": 16.91, "curve": 0.243, "c3": 0.649, "c4": 0.6}, - {"time": 0.65, "angle": 1.11, "curve": 0.366, "c2": 0.63, "c3": 0.703}, {"time": 0.6833, "angle": 4.8, "curve": 0.356, "c2": 0.42, "c3": 0.696, "c4": 0.78}, - {"time": 0.7, "angle": 1.11, "curve": 0.366, "c2": 0.63, "c3": 0.703}, {"time": 0.7167, "curve": 0.25, "c3": 0.75}, - {"time": 0.8167, "angle": -35.27, "curve": 0.25, "c3": 0.228, "c4": 0.99}, {"time": 0.9167, "angle": 16.91, "curve": 0.243, "c3": 0.649, "c4": 0.6}, - {"time": 0.9833, "angle": 4.8, "curve": 0.356, "c2": 0.42, "c3": 0.696, "c4": 0.78}, {"time": 1, "angle": -9.29} + {"angle": 11.28, "curve": 0.333, "c2": 0.33, "c3": 0.688, "c4": 0.73}, {"time": 0.05, "angle": 3.15, "curve": 0.379, "c2": 0.6, "c3": 0.724}, {"time": 0.0833, "curve": 0.25, "c3": 0.75}, + {"time": 0.2333, "angle": 18.8, "curve": 0.25, "c3": 0.75}, {"time": 0.4333, "angle": -26.83, "curve": 0.25, "c3": 0.75}, {"time": 0.5167, "angle": 37.79, "curve": 0.25, "c3": 0.75}, + {"time": 0.6833, "angle": -23.11, "curve": 0.25, "c3": 0.75}, {"time": 0.7833, "angle": 17.07, "curve": 0.26, "c3": 0.618, "c4": 0.44}, {"time": 0.8333, "angle": 6.86} ] }, - "body-braid-05": { + "body-fur-10": { "rotate": [ - {"angle": -8.3, "curve": 0.294, "c3": 0.631, "c4": 0.37}, {"time": 0.0333, "curve": 0.25, "c3": 0.75}, {"time": 0.15, "angle": -10.49, "curve": 0.25, "c3": 0.228, "c4": 0.99}, - {"time": 0.2333, "angle": 8.22, "curve": 0.258, "c3": 0.619, "c4": 0.45}, {"time": 0.2833, "angle": 3.03, "curve": 0.381, "c2": 0.55, "c3": 0.742}, - {"time": 0.3, "curve": 0.25, "c3": 0.75}, {"time": 0.35, "angle": -10.49, "curve": 0.25, "c3": 0.228, "c4": 0.99}, - {"time": 0.3833, "angle": 8.22, "curve": 0.258, "c3": 0.619, "c4": 0.45}, {"time": 0.4, "angle": 5.2, "curve": 0.33, "c2": 0.32, "c3": 0.67, "c4": 0.68}, - {"time": 0.4167, "curve": 0.25, "c3": 0.75}, {"time": 0.4667, "angle": -10.49, "curve": 0.25, "c3": 0.228, "c4": 0.99}, - {"time": 0.5, "angle": 8.22, "curve": 0.258, "c3": 0.619, "c4": 0.45}, {"time": 0.5167, "angle": 5.2, "curve": "stepped"}, - {"time": 0.5333, "angle": 5.2, "curve": 0.33, "c2": 0.32, "c3": 0.67, "c4": 0.68}, {"time": 0.55, "curve": 0.25, "c3": 0.75}, - {"time": 0.6, "angle": -10.49, "curve": 0.25, "c3": 0.228, "c4": 0.99}, {"time": 0.6333, "angle": 8.22, "curve": 0.258, "c3": 0.619, "c4": 0.45}, - {"time": 0.65, "angle": 3.03, "curve": 0.381, "c2": 0.55, "c3": 0.742}, {"time": 0.6833, "angle": 5.2, "curve": 0.33, "c2": 0.32, "c3": 0.67, "c4": 0.68}, - {"time": 0.7, "angle": 3.03, "curve": 0.381, "c2": 0.55, "c3": 0.742}, {"time": 0.75, "curve": 0.25, "c3": 0.75}, - {"time": 0.8333, "angle": -10.49, "curve": 0.25, "c3": 0.228, "c4": 0.99}, {"time": 0.9333, "angle": 8.22, "curve": 0.258, "c3": 0.619, "c4": 0.45}, - {"time": 0.9833, "angle": 5.2, "curve": 0.33, "c2": 0.32, "c3": 0.67, "c4": 0.68}, {"time": 1, "angle": -8.3} + {"angle": 3.15, "curve": 0.379, "c2": 0.6, "c3": 0.724}, {"time": 0.0333, "curve": 0.25, "c3": 0.75}, {"time": 0.1833, "angle": 18.8, "curve": 0.25, "c3": 0.75}, + {"time": 0.3833, "angle": -26.83, "curve": 0.25, "c3": 0.75}, {"time": 0.4667, "angle": 37.79, "curve": 0.25, "c3": 0.75}, {"time": 0.6333, "angle": -23.11, "curve": 0.25, "c3": 0.75}, + {"time": 0.7333, "angle": 17.07, "curve": 0.242, "c3": 0.667, "c4": 0.67}, {"time": 0.8333, "angle": 0.34} ] }, - "body-braid-06": { + "body-fur-11": { "rotate": [ - {"angle": -20.59, "curve": 0.352, "c2": 0.41, "c3": 0.689, "c4": 0.75}, {"time": 0.0667, "curve": 0.25, "c3": 0.75}, - {"time": 0.1667, "angle": -28.99, "curve": 0.25, "c3": 0.228, "c4": 0.99}, {"time": 0.2667, "angle": 9.53, "curve": 0.297, "c3": 0.634, "c4": 0.37}, - {"time": 0.2833, "angle": 6.87, "curve": 0.351, "c2": 0.4, "c3": 0.757}, {"time": 0.3167, "curve": 0.25, "c3": 0.75}, - {"time": 0.35, "angle": -28.99, "curve": 0.25, "c3": 0.228, "c4": 0.99}, {"time": 0.3833, "angle": 9.53, "curve": 0.297, "c3": 0.634, "c4": 0.37}, - {"time": 0.4, "angle": 8.86, "curve": 0.304, "c2": 0.22, "c3": 0.644, "c4": 0.58}, {"time": 0.4167, "angle": 6.87, "curve": 0.351, "c2": 0.4, "c3": 0.757}, - {"time": 0.4333, "curve": 0.25, "c3": 0.75}, {"time": 0.4833, "angle": -28.99, "curve": 0.25, "c3": 0.228, "c4": 0.99}, {"time": 0.5167, "angle": 8.86, "curve": "stepped"}, - {"time": 0.5333, "angle": 8.86, "curve": 0.304, "c2": 0.22, "c3": 0.644, "c4": 0.58}, {"time": 0.55, "angle": 6.87, "curve": 0.351, "c2": 0.4, "c3": 0.757}, - {"time": 0.5667, "curve": 0.25, "c3": 0.75}, {"time": 0.6, "angle": -28.99, "curve": 0.25, "c3": 0.228, "c4": 0.99}, - {"time": 0.6333, "angle": 9.53, "curve": 0.297, "c3": 0.634, "c4": 0.37}, {"time": 0.65, "angle": 6.87, "curve": 0.351, "c2": 0.4, "c3": 0.757}, - {"time": 0.6667, "angle": 9.53, "curve": 0.297, "c3": 0.634, "c4": 0.37}, {"time": 0.6833, "angle": 8.86, "curve": 0.304, "c2": 0.22, "c3": 0.644, "c4": 0.58}, - {"time": 0.7, "angle": 6.87, "curve": 0.351, "c2": 0.4, "c3": 0.757}, {"time": 0.7667, "curve": 0.25, "c3": 0.75}, - {"time": 0.8667, "angle": -28.99, "curve": 0.25, "c3": 0.228, "c4": 0.99}, {"time": 0.9667, "angle": 9.53, "curve": 0.297, "c3": 0.634, "c4": 0.37}, - {"time": 0.9833, "angle": 8.86, "curve": 0.304, "c2": 0.22, "c3": 0.644, "c4": 0.58}, {"time": 1, "angle": -20.59} + {"angle": 5.73, "curve": 0.382, "c2": 0.56, "c3": 0.74}, {"time": 0.05, "curve": 0.25, "c3": 0.75}, {"time": 0.2, "angle": 18.8, "curve": 0.25, "c3": 0.75}, + {"time": 0.4, "angle": -26.83, "curve": 0.25, "c3": 0.75}, {"time": 0.4833, "angle": 37.79, "curve": 0.25, "c3": 0.75}, {"time": 0.65, "angle": -23.11, "curve": 0.25, "c3": 0.75}, + {"time": 0.75, "angle": 17.07, "curve": 0.244, "c3": 0.641, "c4": 0.57}, {"time": 0.8333, "angle": 4.23} ] }, - "body-braid-01": {"rotate": [{"angle": 2.31}]} + "body-fur-12": { + "rotate": [ + {"angle": 8.53, "curve": 0.375, "c2": 0.5, "c3": 0.75}, {"time": 0.0667, "curve": 0.25, "c3": 0.75}, {"time": 0.2167, "angle": 18.8, "curve": 0.25, "c3": 0.75}, + {"time": 0.4167, "angle": -26.83, "curve": 0.25, "c3": 0.75}, {"time": 0.5, "angle": 37.79, "curve": 0.25, "c3": 0.75}, {"time": 0.6667, "angle": -23.11, "curve": 0.25, "c3": 0.75}, + {"time": 0.7667, "angle": 17.07, "curve": 0.25, "c3": 0.625, "c4": 0.5}, {"time": 0.8333, "angle": 8.12} + ] + }, + "body-fur-13": { + "rotate": [ + {"angle": 11.34, "curve": 0.359, "c2": 0.43, "c3": 0.756}, {"time": 0.0833, "curve": 0.25, "c3": 0.75}, {"time": 0.2333, "angle": 18.8, "curve": 0.25, "c3": 0.75}, + {"time": 0.4333, "angle": -26.83, "curve": 0.25, "c3": 0.75}, {"time": 0.5167, "angle": 37.79, "curve": 0.25, "c3": 0.75}, {"time": 0.6833, "angle": -23.11, "curve": 0.25, "c3": 0.75}, + {"time": 0.7833, "angle": 17.07, "curve": 0.26, "c3": 0.618, "c4": 0.44}, {"time": 0.8333, "angle": 11.59} + ] + }, + "body-fur-14": { + "rotate": [ + {"angle": 16.05, "curve": 0.285, "c2": 0.17, "c3": 0.679, "c4": 0.71}, {"time": 0.0833, "angle": 3.15, "curve": 0.379, "c2": 0.6, "c3": 0.724}, + {"time": 0.1167, "curve": 0.25, "c3": 0.75}, {"time": 0.2667, "angle": 18.8, "curve": 0.25, "c3": 0.75}, {"time": 0.4667, "angle": -26.83, "curve": 0.25, "c3": 0.75}, + {"time": 0.55, "angle": 37.79, "curve": 0.25, "c3": 0.75}, {"time": 0.7167, "angle": -23.11, "curve": 0.25, "c3": 0.75}, + {"time": 0.8167, "angle": 17.07, "curve": 0.299, "c3": 0.636, "c4": 0.36}, {"time": 0.8333, "angle": 13.33} + ] + }, + "body-fur-15": { + "rotate": [ + {"angle": 11.34, "curve": 0.359, "c2": 0.43, "c3": 0.756}, {"time": 0.0833, "curve": 0.25, "c3": 0.75}, {"time": 0.2333, "angle": 18.8, "curve": 0.25, "c3": 0.75}, + {"time": 0.4333, "angle": -26.83, "curve": 0.25, "c3": 0.75}, {"time": 0.5167, "angle": 37.79, "curve": 0.25, "c3": 0.75}, {"time": 0.6833, "angle": -23.11, "curve": 0.25, "c3": 0.75}, + {"time": 0.7833, "angle": 17.07, "curve": 0.26, "c3": 0.618, "c4": 0.44}, {"time": 0.8333, "angle": 13.33} + ] + }, + "body-fur-16": { + "rotate": [ + {"angle": 13.92, "curve": 0.333, "c2": 0.33, "c3": 0.758}, {"time": 0.1, "curve": 0.25, "c3": 0.75}, {"time": 0.25, "angle": 18.8, "curve": 0.25, "c3": 0.75}, + {"time": 0.45, "angle": -26.83, "curve": 0.25, "c3": 0.75}, {"time": 0.5333, "angle": 37.79, "curve": 0.25, "c3": 0.75}, {"time": 0.7, "angle": -23.11, "curve": 0.25, "c3": 0.75}, + {"time": 0.8, "angle": 17.07, "curve": 0.276, "c3": 0.621, "c4": 0.4}, {"time": 0.8333, "angle": 13.84} + ] + } }, - "events": [{"time": 0.3167, "name": "start-attack"}, {"time": 0.4333, "name": "hit"}, {"time": 0.5667, "name": "hit"}, {"time": 0.7, "name": "hit"}] + "events": [{"time": 0.3333, "name": "start-attack"}, {"time": 0.3667, "name": "hit"}] }, - "2952434131": { - "slots": { - "eyes": {"attachment": [{"time": 0.0167, "name": "eyes-angry"}, {"time": 0.85, "name": "eyes-shut"}, {"time": 0.9333, "name": "eyes"}]}, - "mouth": {"attachment": [{"time": 0.0167, "name": "mouth-bite"}, {"time": 0.1833, "name": "mouth-open"}, {"time": 0.5, "name": "mouth-bite"}, {"time": 0.9333, "name": "mouth"}]} - }, + "3515345276": { + "slots": {"eyes": {"attachment": [{"time": 0.9167, "name": "eyes-shut"}, {"time": 1, "name": "eyes"}]}}, "bones": { - "@pivot-back": { + "@pivot-back": {"translate": [{"y": -97.74, "curve": 0.393, "c3": 0.303}, {"time": 0.6667, "y": -82.74, "curve": 0.387, "c3": 0.309}, {"time": 1.3333, "y": -97.74}]}, + "@leg-front-left": { "rotate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "angle": -3.92, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "angle": 2.51, "curve": 0, "c2": 0.2, "c3": 0.858}, - {"time": 0.25, "angle": -6, "curve": "stepped"}, {"time": 0.7167, "angle": -6, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.8333, "angle": 6, "curve": 0.313, "c3": 0.699}, {"time": 1} - ], - "translate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "x": 71.93, "y": -12.95, "curve": "stepped"}, {"time": 0.1667, "x": 71.93, "y": -12.95, "curve": 0, "c2": 0.2, "c3": 0.858}, - {"time": 0.25, "x": -145.48, "y": 99.8, "curve": 0, "c2": 0.3, "c3": 0.698}, {"time": 0.4167, "x": -145, "y": 149.7, "curve": 1, "c4": 0}, {"time": 0.5, "x": -145}, - {"time": 0.6667, "x": -145, "y": 2.5, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.7167, "y": 48.98, "curve": 0.315, "c4": 0.8}, - {"time": 0.8333, "y": -3.33, "curve": 0.313, "c3": 0.699}, {"time": 1} + {"curve": 0, "c2": 0.1, "c3": 0.856}, {"time": 0.3333, "angle": -17.48, "curve": 0.15, "c3": 0.926}, {"time": 0.7333, "curve": 0, "c2": 0.05, "c3": 0.692}, + {"time": 1.05, "angle": 8.38, "curve": 0.24, "c3": 0.769}, {"time": 1.3333} ] }, - "@leg-front-left": { - "translate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "x": -2.77, "y": -2.64, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.1667, "x": -0.53, "y": 0.11, "curve": 0, "c2": 0.2, "c3": 0.858}, {"time": 0.25, "x": -1, "y": -5.53, "curve": "stepped"}, - {"time": 0.7167, "x": -1, "y": -5.53, "curve": 0.464, "c4": 0.7}, {"time": 0.8333, "x": -2.17, "y": -17.49, "curve": 0.313, "c3": 0.699}, {"time": 1} + "@leg-front-right": { + "rotate": [ + {"curve": 0, "c2": 0.1, "c3": 0.856}, {"time": 0.3333, "angle": 9.43, "curve": 0.15, "c3": 0.926}, {"time": 0.7333, "curve": 0, "c2": 0.05, "c3": 0.692}, + {"time": 1.05, "angle": -11.74, "curve": 0.24, "c3": 0.769}, {"time": 1.3333} ] }, "@leg-back-left": { - "translate": [ - {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 0.67, "y": -7.85, "curve": 0.161, "c3": 0.854}, {"time": 0.1667, "x": 0.53, "y": -13.09, "curve": 0, "c2": 0.2, "c3": 0.858}, - {"time": 0.25, "curve": "stepped"}, {"time": 0.7167, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.8333, "x": -0.5, "y": -5.23, "curve": 0.313, "c3": 0.699}, {"time": 1} - ] - }, - "@shadow": { - "translate": [ - {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 61.96, "curve": "stepped"}, {"time": 0.1667, "x": 61.96, "curve": 0, "c2": 0.2, "c3": 0.858}, - {"time": 0.25, "x": -143.36, "curve": 0, "c2": 0.3, "c3": 0.698}, {"time": 0.4167, "x": -154.48, "curve": "stepped"}, {"time": 0.6667, "x": -154.48, "curve": 0, "c2": 0.3, "c3": 0.544}, - {"time": 0.7167, "x": -9.48, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.8333} - ], - "scale": [ - {"time": 0.0833, "curve": 0, "c2": 0.26, "c3": 0.369, "c4": 0.62}, {"time": 0.1667, "x": 1.06, "y": 1.06, "curve": 0, "c2": 0.2, "c3": 0.858}, - {"time": 0.25, "curve": 0, "c2": 0.3, "c3": 0.698}, {"time": 0.4167, "x": 0.86, "y": 0.86}, {"time": 0.5, "x": 1.16, "y": 1.16}, - {"time": 0.6667, "x": 1.18, "y": 1.18, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.7167, "x": 1.02, "y": 1.02, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.8333, "x": 1.1, "y": 1.1, "curve": 0.313, "c3": 0.699}, {"time": 1} + "rotate": [ + {"curve": 0, "c2": 0.1, "c3": 0.856}, {"time": 0.3333, "angle": -12.53, "curve": 0.15, "c3": 0.926}, {"time": 0.7333, "curve": 0, "c2": 0.05, "c3": 0.692}, + {"time": 1.05, "angle": 9.41, "curve": 0.24, "c3": 0.769}, {"time": 1.3333} ] }, - "leg-front-right-IK": { - "translate": [ - {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 30.89, "y": 11.74, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": 42.9, "curve": 0, "c2": 0.2, "c3": 0.858}, - {"time": 0.25, "x": -172.87, "y": 28.32, "curve": 0, "c2": 0.3, "c3": 0.698}, {"time": 0.4667, "x": 261.69, "y": 187.13, "curve": 1, "c4": 0.1}, {"time": 0.5, "x": 166.41, "y": 465.39}, - {"time": 0.6667, "x": 101.69, "y": 451.97, "curve": "stepped"}, {"time": 0.7, "x": -101.81, "y": 172.32, "curve": "stepped"}, {"time": 0.7167} + "tail": { + "rotate": [ + {"curve": 0, "c2": 0.05, "c3": 0.691}, {"time": 0.3333, "angle": -5.06, "curve": 0.304, "c3": 0.689}, {"time": 0.7333, "angle": -0.77}, + {"time": 1.05, "angle": 2.12, "curve": 0.234, "c4": 0.9}, {"time": 1.3333} ] }, - "leg-back-left-IK": { - "translate": [ - {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 80.9, "curve": 0.161, "c3": 0.854}, {"time": 0.1667, "x": 72.25, "curve": 0, "c2": 0.2, "c3": 0.858}, - {"time": 0.25, "x": -96.78, "y": 27.51, "curve": 0, "c2": 0.3, "c3": 0.698}, {"time": 0.4667, "x": -250.56, "y": 568.36, "curve": 1, "c4": 0.1}, {"time": 0.5, "x": -654.65, "y": 234.55}, - {"time": 0.6667, "x": -665.01, "y": 210.09, "curve": "stepped"}, {"time": 0.7, "x": -61.52, "y": -3.55, "curve": "stepped"}, {"time": 0.7167} + "@shadow": {"scale": [{"x": 1.3, "y": 1.3, "curve": 0.387, "c3": 0.314}, {"time": 0.6667, "x": 1.25, "y": 1.25, "curve": 0.387, "c3": 0.314}, {"time": 1.3333, "x": 1.3, "y": 1.3}]}, + "body-fur-01": { + "rotate": [ + {"angle": -3.86, "curve": 0.381, "c2": 0.55, "c3": 0.742}, {"time": 0.2667, "angle": -14.41, "curve": 0.25, "c3": 0.75}, + {"time": 0.9333, "angle": 14.27, "curve": 0.245, "c3": 0.637, "c4": 0.56}, {"time": 1.3333, "angle": -3.86} ] }, - "@leg-front-right": { - "translate": [ - {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 4.31, "y": 11.86, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.1667, "x": -10.19, "y": -4.67, "curve": 0, "c2": 0.2, "c3": 0.858}, {"time": 0.25, "curve": "stepped"}, {"time": 0.7167, "curve": 0.464, "c4": 0.7}, - {"time": 0.8333, "x": -4.16, "y": -33.18, "curve": 0.313, "c3": 0.699}, {"time": 1} + "body-fur-02": { + "rotate": [ + {"angle": 1.69, "curve": 0.349, "c2": 0.39, "c3": 0.707, "c4": 0.8}, {"time": 0.2667, "angle": -12.03, "curve": 0.369, "c2": 0.63, "c3": 0.706}, + {"time": 0.3667, "angle": -14.41, "curve": 0.25, "c3": 0.75}, {"time": 1.0333, "angle": 14.27, "curve": 0.253, "c3": 0.621, "c4": 0.48}, {"time": 1.3333, "angle": 1.69} ] }, - "leg-front-left-IK": { - "translate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "x": 42.22, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": 42.9, "curve": 0, "c2": 0.2, "c3": 0.858}, - {"time": 0.25, "x": -192.09, "y": 31.17, "curve": 0, "c2": 0.3, "c3": 0.698}, {"time": 0.4667, "x": -33.07, "y": 448.19, "curve": 1, "c4": 0.1}, {"time": 0.5, "x": -325.8, "y": 359.06}, - {"time": 0.6667, "x": -307.09, "y": 359.93, "curve": "stepped"}, {"time": 0.7, "x": -83.89, "y": 65.11, "curve": "stepped"}, {"time": 0.7167} + "body-fur-03": { + "rotate": [ + {"angle": -7.46, "curve": 0.382, "c2": 0.58, "c3": 0.731}, {"time": 0.2, "angle": -14.41, "curve": 0.25, "c3": 0.75}, + {"time": 0.8667, "angle": 14.27, "curve": 0.243, "c3": 0.655, "c4": 0.63}, {"time": 1.3333, "angle": -7.46} ] }, - "tail": { + "body-fur-04": { "rotate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "angle": 15.61, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "angle": 20.44, "curve": 0, "c2": 0.2, "c3": 0.858}, - {"time": 0.25, "angle": -14.65, "curve": 0.313, "c3": 0.699}, {"time": 0.4667, "angle": -49.65, "curve": 1, "c4": 0.1}, {"time": 0.5, "angle": -2.15}, - {"time": 0.6667, "angle": -1.85, "curve": 0, "c2": 0.4, "c3": 0.383}, {"time": 0.8333, "angle": 21.05, "curve": 0.313, "c3": 0.699}, {"time": 1} + {"angle": -2.12, "curve": 0.355, "c2": 0.41, "c3": 0.702, "c4": 0.79}, {"time": 0.2, "angle": -12.03, "curve": 0.369, "c2": 0.63, "c3": 0.706}, + {"time": 0.3, "angle": -14.41, "curve": 0.25, "c3": 0.75}, {"time": 0.9667, "angle": 14.27, "curve": 0.247, "c3": 0.63, "c4": 0.53}, {"time": 1.3333, "angle": -2.12} ] }, - "@pivot-center": { + "body-fur-05": { "rotate": [ - {"time": 0.25, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.4667, "angle": 112.05, "curve": 1, "c4": 0.1}, {"time": 0.5, "angle": -146.9}, - {"time": 0.6667, "angle": -145.45, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.7167} + {"angle": -10.68, "curve": 0.375, "c2": 0.62, "c3": 0.716}, {"time": 0.1333, "angle": -14.41, "curve": 0.25, "c3": 0.75}, + {"time": 0.8, "angle": 14.27, "curve": 0.243, "c3": 0.68, "c4": 0.71}, {"time": 1.3333, "angle": -10.68} ] }, - "body-fur-under-01": { - "translate": [{"x": -0.14, "y": 0.84}], - "shear": [ - {"x": -4.09, "curve": 0.375, "c2": 0.5, "c3": 0.75}, {"time": 0.0333, "curve": 0.25, "c3": 0.75}, {"time": 0.1, "x": 29.22, "curve": 0.25, "c3": 0.75}, - {"time": 0.3333, "x": -53.77, "curve": 0.25, "c3": 0.75}, {"time": 0.5833, "x": 43.54, "curve": 0.25, "c3": 0.75}, {"time": 0.7833, "x": -64.44, "curve": 0.25, "c3": 0.75}, - {"time": 0.9, "x": 29.43, "curve": 0.243, "c3": 0.68, "c4": 0.71}, {"time": 1, "x": -4.09} + "body-fur-06": { + "rotate": [ + {"angle": -5.81, "curve": 0.354, "c2": 0.41, "c3": 0.694, "c4": 0.77}, {"time": 0.1333, "angle": -12.03, "curve": 0.369, "c2": 0.63, "c3": 0.706}, + {"time": 0.2333, "angle": -14.41, "curve": 0.25, "c3": 0.75}, {"time": 0.9, "angle": 14.27, "curve": 0.244, "c3": 0.646, "c4": 0.59}, {"time": 1.3333, "angle": -5.81} ] }, - "body-fur-under-02": { - "translate": [{"x": -2.23, "y": 6.28}], - "shear": [ - {"x": -27.8, "curve": 0.375, "c2": 0.62, "c3": 0.716}, {"time": 0.0333, "x": 14.15, "curve": 0.25, "c3": 0.75}, {"time": 0.2833, "x": -46.5, "curve": 0.25, "c3": 0.75}, - {"time": 0.5333, "x": 37.58, "curve": 0.25, "c3": 0.75}, {"time": 0.7167, "x": -65.53, "curve": 0.25, "c3": 0.75}, {"time": 0.8333, "x": 23.87, "curve": 0.25, "c3": 0.75}, - {"time": 0.9667, "curve": 0.25, "c3": 0.625, "c4": 0.5}, {"time": 1, "x": -27.8} + "body-fur-07": { + "rotate": [ + {"angle": -13.19, "curve": 0.36, "c2": 0.64, "c3": 0.695}, {"time": 0.0667, "angle": -14.41, "curve": 0.25, "c3": 0.75}, + {"time": 0.7333, "angle": 14.27, "curve": 0.245, "c3": 0.711, "c4": 0.83}, {"time": 1.3333, "angle": -13.19} ] }, - "body-fur-under-03": { - "translate": [{"x": -0.78, "y": 3.19}], - "shear": [ - {"x": 22.47, "curve": 0.25, "c3": 0.75}, {"time": 0.0833, "curve": 0.25, "c3": 0.75}, {"time": 0.15, "x": -3.53, "curve": 0.25, "c3": 0.75}, - {"time": 0.3833, "x": 33.65, "curve": 0.25, "c3": 0.75}, {"time": 0.6333, "x": -20.36, "curve": 0.25, "c3": 0.75}, {"time": 0.8333, "x": 43.83, "curve": 0.25, "c3": 0.75}, - {"time": 0.95, "x": -23.52, "curve": 0.258, "c3": 0.619, "c4": 0.45}, {"time": 1, "x": 22.47} + "body-fur-08": { + "rotate": [ + {"angle": -12.61, "curve": 0.364, "c2": 0.64, "c3": 0.701}, {"time": 0.0833, "angle": -14.41, "curve": 0.25, "c3": 0.75}, + {"time": 0.75, "angle": 14.27, "curve": 0.244, "c3": 0.702, "c4": 0.8}, {"time": 1.3333, "angle": -12.61} ] }, - "body-fur-under-04": { - "translate": [{"x": -0.33, "y": 3.2}], - "shear": [ - {"x": 10.24, "curve": 0.36, "c2": 0.64, "c3": 0.695}, {"time": 0.0333, "curve": 0.25, "c3": 0.75}, {"time": 0.1, "x": -30.84, "curve": 0.25, "c3": 0.75}, - {"time": 0.3333, "x": 38.54, "curve": 0.25, "c3": 0.75}, {"time": 0.5833, "x": -50.56, "curve": 0.25, "c3": 0.75}, {"time": 0.7833, "x": 40.49, "curve": 0.25, "c3": 0.75}, - {"time": 0.9, "x": -40.09, "curve": 0.243, "c3": 0.68, "c4": 0.71}, {"time": 1, "x": 10.24} + "body-fur-09": { + "rotate": [ + {"angle": -8.38, "curve": 0.35, "c2": 0.4, "c3": 0.686, "c4": 0.74}, {"time": 0.0833, "angle": -12.03, "curve": 0.369, "c2": 0.63, "c3": 0.706}, + {"time": 0.1833, "angle": -14.41, "curve": 0.25, "c3": 0.75}, {"time": 0.85, "angle": 14.27, "curve": 0.242, "c3": 0.661, "c4": 0.65}, {"time": 1.3333, "angle": -8.38} ] }, - "body-fur-under-05": { - "translate": [{"x": 0.53, "y": 14.98}], - "shear": [ - {"x": 3.7, "curve": 0.382, "c2": 0.57, "c3": 0.737}, {"time": 0.0667, "curve": 0.25, "c3": 0.75}, {"time": 0.1333, "x": -34.2, "curve": 0.25, "c3": 0.75}, - {"time": 0.3833, "x": 32.44, "curve": 0.25, "c3": 0.75}, {"time": 0.6333, "x": -55.52, "curve": 0.25, "c3": 0.75}, {"time": 0.8167, "x": 35.57, "curve": 0.25, "c3": 0.75}, - {"time": 0.9333, "x": -41.86, "curve": 0.25, "c3": 0.625, "c4": 0.5}, {"time": 1, "x": 3.7} + "body-fur-10": { + "rotate": [ + {"angle": -12.61, "curve": 0.364, "c2": 0.64, "c3": 0.701}, {"time": 0.0833, "angle": -14.41, "curve": 0.25, "c3": 0.75}, + {"time": 0.75, "angle": 14.27, "curve": 0.244, "c3": 0.702, "c4": 0.8}, {"time": 1.3333, "angle": -12.61} ] }, - "body-braid-02": { + "body-fur-11": { "rotate": [ - {"angle": 3.5, "curve": 0.348, "c2": 0.38, "c3": 0.685, "c4": 0.73}, {"time": 0.2167, "angle": -13.49, "curve": 0.25, "c3": 0.144}, - {"time": 0.45, "angle": 79.52, "curve": 0.25, "c3": 0.75}, {"time": 0.6333, "curve": 0.25, "c3": 0.75}, {"time": 0.95, "angle": 79.52, "curve": 0.286, "c3": 0.626, "c4": 0.38}, - {"time": 1, "angle": 3.5} + {"angle": -9.9, "curve": 0.377, "c2": 0.61, "c3": 0.72}, {"time": 0.15, "angle": -14.41, "curve": 0.25, "c3": 0.75}, + {"time": 0.8167, "angle": 14.27, "curve": 0.242, "c3": 0.673, "c4": 0.69}, {"time": 1.3333, "angle": -9.9} ] }, - "body-braid-03": { + "body-fur-12": { "rotate": [ - {"angle": -1.71, "curve": 0.337, "c2": 0.34, "c3": 0.673, "c4": 0.69}, {"time": 0.25, "angle": -13.49, "curve": 0.25, "c3": 0.144}, - {"time": 0.4833, "angle": 45.56, "curve": 0.243, "c3": 0.68, "c4": 0.71}, {"time": 0.6333, "angle": 5.93, "curve": 0.375, "c2": 0.62, "c3": 0.716}, - {"time": 0.6667, "curve": 0.25, "c3": 0.75}, {"time": 0.9833, "angle": 45.56, "curve": 0.314, "c3": 0.649, "c4": 0.35}, {"time": 1, "angle": -1.71} + {"angle": -6.57, "curve": 0.382, "c2": 0.57, "c3": 0.734}, {"time": 0.2167, "angle": -14.41, "curve": 0.25, "c3": 0.75}, + {"time": 0.8833, "angle": 14.27, "curve": 0.243, "c3": 0.65, "c4": 0.61}, {"time": 1.3333, "angle": -6.57} ] }, - "body-braid-04": { + "body-fur-13": { "rotate": [ - {"angle": -9.29, "curve": 0.323, "c2": 0.3, "c3": 0.66, "c4": 0.65}, {"time": 0.0333, "angle": 36.13, "curve": 0.25, "c3": 0.75}, {"time": 0.3, "angle": -30, "curve": 0.25, "c3": 0.144}, - {"time": 0.5333, "angle": 36.13, "curve": 0.248, "c3": 0.628, "c4": 0.52}, {"time": 0.6333, "angle": 16.47, "curve": 0.378, "c2": 0.52, "c3": 0.748}, - {"time": 0.7167, "curve": 0.245, "c3": 0.709, "c4": 0.83}, {"time": 1, "angle": -9.29} + {"angle": -2.91, "curve": 0.38, "c2": 0.53, "c3": 0.744}, {"time": 0.2833, "angle": -14.41, "curve": 0.25, "c3": 0.75}, + {"time": 0.95, "angle": 14.27, "curve": 0.246, "c3": 0.634, "c4": 0.54}, {"time": 1.3333, "angle": -2.91} ] }, - "body-braid-05": { + "body-fur-14": { "rotate": [ - {"angle": -8.3, "curve": 0.294, "c3": 0.631, "c4": 0.37}, {"time": 0.1, "angle": -7.54, "curve": 0.25, "c3": 0.75}, {"time": 0.3667, "angle": -31.56, "curve": 0.25, "c3": 0.144}, - {"time": 0.6, "angle": -7.54, "curve": 0.284, "c3": 0.625, "c4": 0.38}, {"time": 0.6333, "angle": -6.56, "curve": 0.32, "c2": 0.29, "c3": 0.757}, - {"time": 0.7833, "curve": 0.243, "c3": 0.652, "c4": 0.61}, {"time": 1, "angle": -8.3} + {"angle": 2.64, "curve": 0.347, "c2": 0.38, "c3": 0.708, "c4": 0.8}, {"time": 0.2833, "angle": -12.03, "curve": 0.369, "c2": 0.63, "c3": 0.706}, + {"time": 0.3833, "angle": -14.41, "curve": 0.25, "c3": 0.75}, {"time": 1.05, "angle": 14.27, "curve": 0.256, "c3": 0.62, "c4": 0.47}, {"time": 1.3333, "angle": 2.64} ] }, - "body-braid-06": { + "body-fur-15": { "rotate": [ - {"angle": -20.59, "curve": 0.352, "c2": 0.41, "c3": 0.689, "c4": 0.75}, {"time": 0.1667, "angle": 1.41, "curve": 0.25, "c3": 0.75}, - {"time": 0.4333, "angle": -42.25, "curve": 0.25, "c3": 0.144}, {"time": 0.6333, "angle": -2.49, "curve": 0.37, "c2": 0.63, "c3": 0.708}, - {"time": 0.6667, "angle": 1.41, "curve": 0.25, "c3": 0.75}, {"time": 0.8667, "curve": 0.254, "c3": 0.621, "c4": 0.47}, {"time": 1, "angle": -20.59} + {"angle": -8.34, "curve": 0.381, "c2": 0.59, "c3": 0.728}, {"time": 0.1833, "angle": -14.41, "curve": 0.25, "c3": 0.75}, + {"time": 0.85, "angle": 14.27, "curve": 0.242, "c3": 0.661, "c4": 0.65}, {"time": 1.3333, "angle": -8.34} ] }, - "body-braid-01": {"rotate": [{"angle": 2.31}]} - }, - "events": [{"time": 0.4167, "name": "start-attack"}, {"time": 0.5, "name": "hit"}] + "body-fur-16": { + "rotate": [ + {"angle": -4.78, "curve": 0.382, "c2": 0.56, "c3": 0.74}, {"time": 0.25, "angle": -14.41, "curve": 0.25, "c3": 0.75}, + {"time": 0.9167, "angle": 14.27, "curve": 0.244, "c3": 0.641, "c4": 0.57}, {"time": 1.3333, "angle": -4.78} + ] + } + } }, - "3155257148": { + "4102515873": { "slots": { - "eyes": {"attachment": [{"time": 0.0167, "name": "eyes-angry"}, {"time": 0.9167, "name": "eyes"}]}, - "mouth": {"attachment": [{"time": 0.0167, "name": "mouth-bite"}, {"time": 0.1833, "name": "mouth-open"}, {"time": 0.5, "name": "mouth-bite"}, {"time": 0.9167, "name": "mouth"}]} + "ball": { + "color": [ + {"color": "ffffff00", "curve": "stepped"}, {"time": 0.1667, "color": "ffffff00", "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "color": "ffffffff", "curve": "stepped"}, + {"time": 2.9167, "color": "ffffffff", "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 3.0833, "color": "ffffff00"} + ], + "attachment": [{"name": "ball"}] + }, + "eyes": {"attachment": [{"time": 0.5, "name": "eyes-shut"}, {"time": 0.5833, "name": "eyes"}, {"time": 3.0833, "name": "eyes-shut"}, {"time": 3.1667, "name": "eyes"}]}, + "mouth": {"attachment": [{"time": 0.1833, "name": "mouth-open"}, {"time": 0.5, "name": "mouth"}, {"time": 2.7667, "name": "mouth-open"}, {"time": 2.9167, "name": "mouth"}]} }, "bones": { "@pivot-back": { "rotate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "angle": -3.92, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "angle": 2.51, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.25, "angle": -6, "curve": "stepped"}, {"time": 0.2667, "angle": -20, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.4833, "angle": -22, "curve": "stepped"}, - {"time": 0.5, "angle": 10}, {"time": 0.6667, "angle": 12, "curve": "stepped"}, {"time": 0.7, "angle": 4, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.8333, "angle": 6, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1} + {"curve": 0, "c2": 0.3, "c3": 0.546}, {"time": 0.1667, "angle": 6, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "angle": -6.98, "curve": 0.464, "c4": 0.7}, + {"time": 0.5, "angle": 3, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.6667, "curve": "stepped"}, {"time": 2.5833, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 2.75, "angle": 6, "curve": 0, "c2": 0.3, "c3": 0.546}, {"time": 2.9167, "angle": -6, "curve": 0.464, "c4": 0.7}, + {"time": 3.0833, "angle": 6, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 3.25} ], "translate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "x": 71.93, "y": -12.95, "curve": "stepped"}, {"time": 0.1667, "x": 71.93, "y": -12.95, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.25, "x": -135.5, "curve": "stepped"}, {"time": 0.2667, "x": -551.77, "y": 110, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.4833, "x": -551.77, "y": 120.52, "curve": "stepped"}, {"time": 0.5, "x": -565, "y": -35}, {"time": 0.6667, "x": -565, "y": -40, "curve": "stepped"}, - {"time": 0.7, "x": -135.5, "y": 5, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.8333, "x": -135.5, "y": 10, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1} - ], - "scale": [{"time": 0.25, "curve": "stepped"}, {"time": 0.2667, "x": -1, "curve": "stepped"}, {"time": 0.6667, "x": -1, "curve": "stepped"}, {"time": 0.7}] + {"curve": 0, "c2": 0.3, "c3": 0.546}, {"time": 0.1667, "y": 1.78, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "y": 353.14, "curve": 0.464, "c4": 0.7}, + {"time": 0.5, "y": 255, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.6667, "y": 267.67, "curve": 0.156, "c3": 0.693}, + {"time": 1.1667, "x": -30, "y": 267.67, "curve": 0.317, "c3": 0.693}, {"time": 2.1667, "x": 50, "y": 267.67, "curve": 0.317, "c3": 0.693}, + {"time": 2.5833, "y": 267.67, "curve": "stepped"}, {"time": 2.75, "y": 267.67, "curve": 0, "c2": 0.3, "c3": 0.546}, {"time": 2.9167, "y": 310, "curve": 0.464, "c4": 0.7}, + {"time": 3.0833} + ] }, - "leg-front-right-IK": { + "@leg-front-right": { "translate": [ - {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 30.89, "y": 11.74, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": 42.9, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.25, "x": -172.87, "y": 28.32, "curve": "stepped"}, {"time": 0.2667, "x": 224.47, "y": -9.31, "curve": "stepped"}, - {"time": 0.4833, "x": 224.47, "y": -9.31, "curve": "stepped"}, {"time": 0.5, "x": 219.47, "curve": "stepped"}, {"time": 0.6667, "x": 219.47, "curve": "stepped"}, - {"time": 0.7, "x": -152.3, "curve": "stepped"}, {"time": 0.8333, "x": -152.3, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1} + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": -2.8, "y": -31.7, "curve": 0, "c2": 0.3, "c3": 0.546}, {"time": 0.25, "curve": "stepped"}, + {"time": 2.5833, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 2.75, "x": -2.8, "y": -31.7, "curve": 0.315, "c4": 0.8}, {"time": 2.8333, "curve": "stepped"}, + {"time": 3, "curve": 0.315, "c4": 0.8}, {"time": 3.0833, "x": -2.86, "y": -32.44, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 3.25} ] }, - "leg-front-left-IK": { + "@leg-front-left": { "translate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "x": 43.18, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": 42.9, "y": -3.49, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.25, "x": -192.09, "y": 31.17, "curve": "stepped"}, {"time": 0.2667, "x": -277.01, "y": 66.37, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.4833, "x": -274.01, "y": 75.85, "curve": "stepped"}, {"time": 0.5, "x": -170.67, "curve": "stepped"}, {"time": 0.6667, "x": -170.67, "curve": "stepped"}, - {"time": 0.7, "x": -151.12, "curve": "stepped"}, {"time": 0.8333, "x": -151.12, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1} + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": -1.46, "y": -16.59, "curve": 0, "c2": 0.3, "c3": 0.546}, {"time": 0.25, "curve": "stepped"}, + {"time": 2.5833, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 2.75, "x": -1.46, "y": -16.59, "curve": 0.315, "c4": 0.8}, {"time": 2.8333, "curve": "stepped"}, + {"time": 3, "curve": 0.315, "c4": 0.8}, {"time": 3.0833, "x": -1.64, "y": -18.64, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 3.25} ] }, - "@leg-front-left": { + "leg-front-left-IK": { "translate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "x": -2.8, "y": -2.2, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.1667, "x": -0.62, "y": -3.38, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "x": -1, "y": -5.53, "curve": "stepped"}, - {"time": 0.2667, "x": 4, "y": -0.66, "curve": "stepped"}, {"time": 0.4833, "x": 4, "y": -0.66, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.5, "x": 4.53, "y": 2.49, "curve": "stepped"}, {"time": 0.6667, "x": 4.53, "y": 2.49, "curve": "stepped"}, - {"time": 0.7, "x": -1, "y": -5.53, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.8333, "x": -0.91, "y": -4.54, "curve": 0.315, "c4": 0.8}, {"time": 1} + {"time": 0.1667, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "x": -6.9, "y": 380.8, "curve": 0.315, "c4": 0.8}, {"time": 0.5, "x": -5.5, "y": 268.35, "curve": "stepped"}, + {"time": 0.6667, "x": -5.5, "y": 268.35, "curve": 0.317, "c3": 0.693}, {"time": 0.9167, "x": -38.87, "y": 268.35, "curve": 0.317, "c3": 0.693}, + {"time": 1.1667, "x": -10.16, "y": 268.35, "curve": 0.317, "c3": 0.693}, {"time": 1.4167, "x": -39.65, "y": 268.35, "curve": 0.317, "c3": 0.693}, + {"time": 1.6667, "x": 23.98, "y": 268.35, "curve": 0.317, "c3": 0.693}, {"time": 1.9167, "x": 5.36, "y": 268.35, "curve": 0.317, "c3": 0.693}, + {"time": 2.1667, "x": 67.44, "y": 268.35, "curve": 0.317, "c3": 0.693}, {"time": 2.4167, "x": -3.95, "y": 268.35, "curve": 0.317, "c3": 0.693}, + {"time": 2.5833, "x": -5.5, "y": 268.35, "curve": "stepped"}, {"time": 2.9167, "x": -5.5, "y": 268.35, "curve": 0.315, "c4": 0.8}, {"time": 3.0833} ] }, - "@leg-back-left": { + "leg-front-right-IK": { "translate": [ - {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 0.67, "y": -7.85, "curve": 0.161, "c3": 0.854}, {"time": 0.1667, "x": 0.61, "y": -9.9, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.25, "curve": "stepped"}, {"time": 0.2667, "x": -1.82, "y": 0.09}, {"time": 0.4833, "x": -6.6, "y": 4.03, "curve": "stepped"}, - {"time": 0.5, "x": 10.86, "y": -7.65, "curve": "stepped"}, {"time": 0.6667, "x": 10.86, "y": -7.65, "curve": "stepped"}, {"time": 0.7} + {"time": 0.1667, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "x": -6.9, "y": 397.8, "curve": 0.315, "c4": 0.8}, {"time": 0.5, "x": 15.4, "y": 268.08, "curve": "stepped"}, + {"time": 0.6667, "x": 15.4, "y": 268.08, "curve": 0.317, "c3": 0.693}, {"time": 0.9167, "x": 24.64, "y": 268.08, "curve": 0.317, "c3": 0.693}, + {"time": 1.1667, "x": -41.71, "y": 268.08, "curve": 0.317, "c3": 0.693}, {"time": 1.4167, "x": 22.12, "y": 268.08, "curve": 0.317, "c3": 0.693}, + {"time": 1.6667, "x": -0.56, "y": 268.08, "curve": 0.317, "c3": 0.693}, {"time": 1.9167, "x": 61.6, "y": 268.08, "curve": 0.317, "c3": 0.693}, + {"time": 2.1667, "x": 33.88, "y": 268.08, "curve": 0.317, "c3": 0.693}, {"time": 2.4167, "x": 49, "y": 268.08, "curve": 0.317, "c3": 0.693}, + {"time": 2.5833, "x": 15.4, "y": 268.08, "curve": "stepped"}, {"time": 2.9167, "x": 15.4, "y": 268.08, "curve": 0.315, "c4": 0.8}, {"time": 3.0833} ] }, "leg-back-left-IK": { "translate": [ - {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 80.9, "curve": 0.161, "c3": 0.854}, {"time": 0.1667, "x": 72.57, "y": -3.2, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.25, "x": -106.8, "y": 17.49, "curve": "stepped"}, {"time": 0.2667, "x": -654.94, "y": 154.36, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.4833, "x": -669.36, "y": 180.24, "curve": "stepped"}, {"time": 0.5, "x": -541.29, "y": -24.41, "curve": "stepped"}, - {"time": 0.6667, "x": -541.29, "y": -24.41, "curve": "stepped"}, {"time": 0.7, "x": -130.76, "curve": "stepped"}, {"time": 0.8333, "x": -130.76, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 1} + {"time": 0.1667, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "x": -0.4, "y": 363.25, "curve": 0.315, "c4": 0.8}, {"time": 0.5, "x": -26.16, "y": 267.01}, + {"time": 0.6667, "x": -33.59, "y": 267.01, "curve": 0.317, "c3": 0.693}, {"time": 0.9167, "x": -22.32, "y": 267.01, "curve": 0.317, "c3": 0.693}, + {"time": 1.1667, "x": -63.32, "y": 267.01, "curve": 0.317, "c3": 0.693}, {"time": 1.4167, "x": -28.35, "y": 267.01, "curve": 0.317, "c3": 0.693}, + {"time": 1.6667, "x": -28.02, "y": 267.01, "curve": 0.317, "c3": 0.693}, {"time": 1.9167, "x": 14.36, "y": 267.01, "curve": 0.317, "c3": 0.693}, + {"time": 2.1667, "x": 9.14, "y": 267.01, "curve": 0.317, "c3": 0.693}, {"time": 2.4167, "x": 11.99, "y": 267.01, "curve": 0.317, "c3": 0.693}, + {"time": 2.6667, "x": -33.59, "y": 267.01, "curve": "stepped"}, {"time": 2.9167, "x": -33.59, "y": 267.01, "curve": 0.315, "c4": 0.8}, {"time": 3.0833} ] }, - "@leg-front-right": { + "@ball": { + "rotate": [ + {"time": 0.6667, "curve": 0.156, "c3": 0.693}, {"time": 1.1667, "angle": 18, "curve": 0.317, "c3": 0.693}, {"time": 2.1667, "angle": -18, "curve": 0.317, "c3": 0.693}, {"time": 2.75} + ], "translate": [ - {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 4.31, "y": 11.86, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.1667, "x": -10.19, "y": -4.67, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "x": -1.86, "y": -9.26, "curve": "stepped"}, - {"time": 0.2667, "x": -5.58, "y": 2.65, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.4833, "x": -3.84, "y": 7.68, "curve": "stepped"}, - {"time": 0.5, "x": -8.1, "y": 29.66, "curve": "stepped"}, {"time": 0.6667, "x": -8.1, "y": 29.66, "curve": "stepped"}, - {"time": 0.7, "x": -1.86, "y": -9.26, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.8333, "x": -2.25, "y": -13.72, "curve": 0.315, "c4": 0.8}, {"time": 1} + {"time": 0.6667, "curve": 0.156, "c3": 0.693}, {"time": 1.1667, "x": -32, "curve": 0.317, "c3": 0.693}, {"time": 2.1667, "x": 32, "curve": 0.317, "c3": 0.693}, {"time": 2.75} + ], + "scale": [ + {"x": 0, "y": 0, "curve": "stepped"}, {"time": 0.1667, "x": 0, "y": 0, "curve": 0, "c2": 0.6, "c3": 0.237}, {"time": 0.3333, "x": 1.2, "y": 1.2, "curve": 0.315, "c4": 0.8}, + {"time": 0.5, "curve": "stepped"}, {"time": 2.75, "curve": 0, "c2": 0.3, "c3": 0.546}, {"time": 2.9167, "x": 1.2, "y": 1.2, "curve": 0.315, "c4": 0.8}, {"time": 3.0833, "x": 0, "y": 0} + ] + }, + "ball": { + "scale": [ + {"time": 0.3333, "curve": 0.617, "c4": 0.6}, {"time": 0.5, "x": 1.2, "y": 0.802, "curve": 0, "c2": 0.39, "c3": 0.387}, {"time": 0.6667, "curve": "stepped"}, + {"time": 2.5833, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 2.75, "x": 1.2, "y": 0.9, "curve": 0, "c2": 0.3, "c3": 0.546}, {"time": 2.9167} + ] + }, + "@pivot-center": { + "rotate": [ + {"time": 0.6667, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.9167, "angle": 2, "curve": 0.461, "c3": 0.543}, {"time": 1.4167, "angle": -2, "curve": 0.461, "c3": 0.543}, + {"time": 1.9167, "angle": 2, "curve": 0.461, "c3": 0.543}, {"time": 2.4167, "angle": -2, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 2.75} ] }, "@shadow": { "translate": [ - {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 61.96, "curve": "stepped"}, {"time": 0.1667, "x": 61.96, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.25, "x": -143.36, "curve": "stepped"}, {"time": 0.2667, "x": -150.21, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.4833, "x": -152.15, "curve": "stepped"}, - {"time": 0.5, "x": -142.78}, {"time": 0.6667, "x": -144.04, "curve": "stepped"}, {"time": 0.7, "x": -144.72, "curve": "stepped"}, - {"time": 0.8333, "x": -144.72, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1} + {"time": 0.6667, "curve": 0.317, "c3": 0.693}, {"time": 1.1667, "x": -32, "curve": 0.317, "c3": 0.693}, {"time": 2.1667, "x": 32, "curve": 0.317, "c3": 0.693}, {"time": 2.5833} ], "scale": [ - {"time": 0.0833, "curve": 0, "c2": 0.26, "c3": 0.369, "c4": 0.62}, {"time": 0.1667, "x": 1.06, "y": 1.06, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "curve": "stepped"}, - {"time": 0.2667, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.4833, "x": 0.9, "y": 0.9, "curve": "stepped"}, {"time": 0.5, "x": 1.06, "y": 1.06}, - {"time": 0.6667, "x": 1.1, "y": 1.1, "curve": "stepped"}, {"time": 0.7, "x": 1.06, "y": 1.06, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.8333, "x": 1.1, "y": 1.1, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1} + {"curve": 0, "c2": 0.3, "c3": 0.546}, {"time": 0.1667, "x": 1.1, "y": 1.1, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "curve": 0.464, "c4": 0.7}, + {"time": 0.5, "x": 1.06, "y": 1.06, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.6667, "curve": "stepped"}, {"time": 2.5833, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 2.75, "x": 1.06, "y": 1.06, "curve": 0, "c2": 0.3, "c3": 0.546}, {"time": 2.9167, "curve": 0.464, "c4": 0.7}, + {"time": 3.0833, "x": 1.1, "y": 1.1, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 3.25} ] }, "tail": { "rotate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "angle": 15.61, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "angle": 20.44, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.25, "angle": -15.58, "curve": "stepped"}, {"time": 0.2667, "angle": 40.35, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.4833, "angle": 41.35, "curve": "stepped"}, - {"time": 0.5, "angle": -14.65}, {"time": 0.6667, "angle": -15.65, "curve": "stepped"}, {"time": 0.7, "angle": -15.58, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.8333, "angle": 19.38, "curve": 0.313, "c3": 0.699}, {"time": 1} + {"curve": 0, "c2": 0.3, "c3": 0.546}, {"time": 0.1667, "angle": 17.35, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "angle": -14.67, "curve": 0.464, "c4": 0.7}, + {"time": 0.5, "angle": 19.12, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.6667, "angle": -10.65, "curve": 0.317, "c3": 0.693}, + {"time": 0.9167, "angle": -0.65, "curve": 0.317, "c3": 0.693}, {"time": 1.1667, "angle": -10.65, "curve": 0.317, "c3": 0.693}, + {"time": 1.4167, "angle": -0.65, "curve": 0.317, "c3": 0.693}, {"time": 1.6667, "angle": -10.65, "curve": 0.317, "c3": 0.693}, + {"time": 1.9167, "angle": -0.65, "curve": 0.317, "c3": 0.693}, {"time": 2.1667, "angle": -10.65, "curve": 0.317, "c3": 0.693}, + {"time": 2.4167, "angle": -0.65, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 2.5833, "angle": -10.65, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 2.75, "angle": 19.35, "curve": 0, "c2": 0.3, "c3": 0.546}, {"time": 2.9167, "angle": -18.65, "curve": 0, "c2": 0.3, "c3": 0.546}, + {"time": 3.0833, "angle": 17.35, "curve": 0.317, "c3": 0.693}, {"time": 3.25} ] }, - "@pivot-main": {"translate": [{"time": 0.8333, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.9167, "y": 31, "curve": 0.315, "c4": 0.8}, {"time": 1}]}, - "body-braid-02": { + "body-fur-16": { "rotate": [ - {"angle": 3.5, "curve": 0.348, "c2": 0.38, "c3": 0.685, "c4": 0.73}, {"time": 0.3167, "angle": 79.52, "curve": 0.25, "c3": 0.75}, - {"time": 0.5667, "angle": -13.49, "curve": 0.25, "c3": 0.144}, {"time": 0.8, "angle": 79.52, "curve": 0.25, "c3": 0.75}, {"time": 1, "angle": 3.5} + {"angle": 28.39, "curve": 0.25, "c3": 0.75}, {"time": 0.1667, "curve": 0.25, "c3": 0.75}, {"time": 0.3333, "angle": 15.51, "curve": 0.25, "c3": 0.75}, + {"time": 0.5, "angle": -26.6, "curve": 0.25, "c3": 0.75}, {"time": 0.6667, "angle": 14.77, "curve": 0.25, "c3": 0.75}, {"time": 0.8333, "angle": -12.34, "curve": 0.25, "c3": 0.75}, + {"time": 1.1333, "curve": 0.25, "c3": 0.75}, {"time": 1.5, "angle": -19.09, "curve": 0.25, "c3": 0.75}, {"time": 2.1667, "angle": 15.18, "curve": 0.25, "c3": 0.75}, + {"time": 2.75, "curve": 0.25, "c3": 0.75}, {"time": 2.9167, "angle": 24.34, "curve": 0.25, "c3": 0.75}, {"time": 3.0833, "angle": -25.03, "curve": 0.25, "c3": 0.75}, + {"time": 3.25, "angle": 13.84} ] }, - "body-braid-03": { + "body-fur-15": { "rotate": [ - {"angle": -1.71, "curve": 0.337, "c2": 0.34, "c3": 0.673, "c4": 0.69}, {"time": 0.0333, "curve": 0.25, "c3": 0.75}, {"time": 0.35, "angle": 45.56, "curve": 0.25, "c3": 0.75}, - {"time": 0.6167, "angle": -13.49, "curve": 0.25, "c3": 0.144}, {"time": 0.85, "angle": 45.56, "curve": 0.243, "c3": 0.68, "c4": 0.71}, {"time": 1, "angle": -1.71} + {"angle": 21.51, "curve": 0.345, "c2": 0.37, "c3": 0.757}, {"time": 0.1167, "curve": 0.25, "c3": 0.75}, {"time": 0.2833, "angle": 15.51, "curve": 0.25, "c3": 0.75}, + {"time": 0.45, "angle": -26.6, "curve": 0.25, "c3": 0.75}, {"time": 0.6167, "angle": 14.77, "curve": 0.25, "c3": 0.75}, {"time": 0.7833, "angle": -12.34, "curve": 0.25, "c3": 0.75}, + {"time": 1.0833, "curve": 0.25, "c3": 0.75}, {"time": 1.45, "angle": -19.09, "curve": 0.25, "c3": 0.75}, {"time": 2.1167, "angle": 15.18, "curve": 0.25, "c3": 0.75}, + {"time": 2.7, "curve": 0.25, "c3": 0.75}, {"time": 2.8667, "angle": 24.34, "curve": 0.25, "c3": 0.75}, {"time": 3.0333, "angle": -25.03, "curve": 0.25, "c3": 0.75}, + {"time": 3.2, "angle": 28.39, "curve": 0.269, "c3": 0.618, "c4": 0.42}, {"time": 3.25, "angle": 13.33} ] }, - "body-braid-04": { + "body-fur-14": { "rotate": [ - {"angle": -9.29, "curve": 0.323, "c2": 0.3, "c3": 0.66, "c4": 0.65}, {"time": 0.0833, "curve": 0.25, "c3": 0.75}, {"time": 0.4, "angle": 36.13, "curve": 0.25, "c3": 0.75}, - {"time": 0.65, "angle": -30, "curve": 0.25, "c3": 0.144}, {"time": 0.9, "angle": 36.13, "curve": 0.248, "c3": 0.628, "c4": 0.52}, {"time": 1, "angle": -9.29} + {"angle": -5.38, "curve": 0.363, "c2": 0.44, "c3": 0.755}, {"time": 0.1, "angle": 28.39, "curve": 0.25, "c3": 0.625, "c4": 0.5}, + {"time": 0.1833, "angle": 14.2, "curve": 0.375, "c2": 0.5, "c3": 0.75}, {"time": 0.2667, "curve": 0.25, "c3": 0.75}, {"time": 0.4333, "angle": 15.51, "curve": 0.25, "c3": 0.75}, + {"time": 0.6, "angle": -26.6, "curve": 0.25, "c3": 0.75}, {"time": 0.7667, "angle": 14.77, "curve": 0.25, "c3": 0.75}, {"time": 0.9333, "angle": -12.34, "curve": 0.25, "c3": 0.75}, + {"time": 1.2333, "curve": 0.25, "c3": 0.75}, {"time": 1.6, "angle": -19.09, "curve": 0.25, "c3": 0.75}, {"time": 2.2667, "angle": 15.18, "curve": 0.25, "c3": 0.75}, + {"time": 2.85, "curve": 0.25, "c3": 0.75}, {"time": 3.0167, "angle": 24.34, "curve": 0.25, "c3": 0.75}, {"time": 3.1833, "angle": -25.03, "curve": 0.258, "c3": 0.619, "c4": 0.45}, + {"time": 3.25, "angle": 13.33} ] }, - "body-braid-05": { + "body-fur-13": { "rotate": [ - {"angle": -8.3, "curve": 0.294, "c3": 0.631, "c4": 0.37}, {"time": 0.15, "curve": 0.25, "c3": 0.75}, {"time": 0.4667, "angle": -7.54, "curve": 0.25, "c3": 0.75}, - {"time": 0.7167, "angle": -31.56, "curve": 0.25, "c3": 0.144}, {"time": 0.95, "angle": -7.54, "curve": 0.284, "c3": 0.625, "c4": 0.38}, {"time": 1, "angle": -8.3} + {"angle": 26.12, "curve": 0.36, "c2": 0.64, "c3": 0.695}, {"time": 0.0167, "angle": 28.39, "curve": 0.25, "c3": 0.75}, {"time": 0.1833, "curve": 0.25, "c3": 0.75}, + {"time": 0.35, "angle": 15.51, "curve": 0.25, "c3": 0.75}, {"time": 0.5167, "angle": -26.6, "curve": 0.25, "c3": 0.75}, {"time": 0.6833, "angle": 14.77, "curve": 0.25, "c3": 0.75}, + {"time": 0.85, "angle": -12.34, "curve": 0.25, "c3": 0.75}, {"time": 1.15, "curve": 0.25, "c3": 0.75}, {"time": 1.5167, "angle": -19.09, "curve": 0.25, "c3": 0.75}, + {"time": 2.1833, "angle": 15.18, "curve": 0.25, "c3": 0.75}, {"time": 2.7667, "curve": 0.25, "c3": 0.75}, {"time": 2.9333, "angle": 24.34, "curve": 0.25, "c3": 0.75}, + {"time": 3.1, "angle": -25.03, "curve": 0.245, "c3": 0.711, "c4": 0.83}, {"time": 3.25, "angle": 11.59} ] }, - "body-braid-06": { + "body-fur-12": { "rotate": [ - {"angle": -20.59, "curve": 0.352, "c2": 0.41, "c3": 0.689, "c4": 0.75}, {"time": 0.0333, "angle": 1.41, "curve": 0.25, "c3": 0.75}, {"time": 0.2167, "curve": 0.25, "c3": 0.75}, - {"time": 0.5333, "angle": 1.41, "curve": 0.25, "c3": 0.75}, {"time": 0.8, "angle": -42.25, "curve": 0.25, "c3": 0.144}, {"time": 1, "angle": -20.59} + {"angle": 27.18, "curve": 0.289, "c2": 0.17, "c3": 0.755}, {"time": 0.15, "curve": 0.25, "c3": 0.75}, {"time": 0.3167, "angle": 15.51, "curve": 0.25, "c3": 0.75}, + {"time": 0.4833, "angle": -26.6, "curve": 0.25, "c3": 0.75}, {"time": 0.65, "angle": 14.77, "curve": 0.25, "c3": 0.75}, {"time": 0.8167, "angle": -12.34, "curve": 0.25, "c3": 0.75}, + {"time": 1.1167, "curve": 0.25, "c3": 0.75}, {"time": 1.4833, "angle": -19.09, "curve": 0.25, "c3": 0.75}, {"time": 2.15, "angle": 15.18, "curve": 0.25, "c3": 0.75}, + {"time": 2.7333, "curve": 0.25, "c3": 0.75}, {"time": 2.9, "angle": 24.34, "curve": 0.25, "c3": 0.75}, {"time": 3.0667, "angle": -25.03, "curve": 0.25, "c3": 0.75}, + {"time": 3.2333, "angle": 28.39, "curve": 0.305, "c3": 0.64, "c4": 0.36}, {"time": 3.25, "angle": 8.12} ] }, - "body-fur-under-05": { - "translate": [{"x": 0.53, "y": 14.98}], - "shear": [ - {"x": 3.7, "curve": 0.382, "c2": 0.57, "c3": 0.737}, {"time": 0.0667, "curve": 0.25, "c3": 0.75}, {"time": 0.1333, "x": -34.2, "curve": 0.25, "c3": 0.75}, - {"time": 0.3667, "x": 32.44, "curve": 0.25, "c3": 0.75}, {"time": 0.6167, "x": -55.52, "curve": 0.25, "c3": 0.75}, {"time": 0.8, "x": 35.57, "curve": 0.25, "c3": 0.75}, - {"time": 0.9333, "x": -41.86, "curve": 0.25, "c3": 0.625, "c4": 0.5}, {"time": 1, "x": 3.7} + "body-fur-11": { + "rotate": [ + {"angle": 21.52, "curve": 0.345, "c2": 0.37, "c3": 0.757}, {"time": 0.1167, "curve": 0.25, "c3": 0.75}, {"time": 0.2833, "angle": 15.51, "curve": 0.25, "c3": 0.75}, + {"time": 0.45, "angle": -26.6, "curve": 0.25, "c3": 0.75}, {"time": 0.6167, "angle": 14.77, "curve": 0.25, "c3": 0.75}, {"time": 0.7833, "angle": -12.34, "curve": 0.25, "c3": 0.75}, + {"time": 1.0833, "curve": 0.25, "c3": 0.75}, {"time": 1.45, "angle": -19.09, "curve": 0.25, "c3": 0.75}, {"time": 2.1167, "angle": 15.18, "curve": 0.25, "c3": 0.75}, + {"time": 2.7, "curve": 0.25, "c3": 0.75}, {"time": 2.8667, "angle": 24.34, "curve": 0.25, "c3": 0.75}, {"time": 3.0333, "angle": -25.03, "curve": 0.25, "c3": 0.75}, + {"time": 3.2, "angle": 28.39, "curve": 0.269, "c3": 0.618, "c4": 0.42}, {"time": 3.25, "angle": 4.23} ] }, - "body-fur-under-04": { - "translate": [{"x": -0.33, "y": 3.2}], - "shear": [ - {"x": 10.24, "curve": 0.36, "c2": 0.64, "c3": 0.695}, {"time": 0.0167, "curve": 0.25, "c3": 0.75}, {"time": 0.1, "x": -30.84, "curve": 0.25, "c3": 0.75}, - {"time": 0.3333, "x": 38.54, "curve": 0.25, "c3": 0.75}, {"time": 0.5833, "x": -50.56, "curve": 0.25, "c3": 0.75}, {"time": 0.7667, "x": 40.49, "curve": 0.25, "c3": 0.75}, - {"time": 0.9, "x": -40.09, "curve": 0.243, "c3": 0.68, "c4": 0.71}, {"time": 1, "x": 10.24} + "body-fur-10": { + "rotate": [ + {"angle": 14.2, "curve": 0.375, "c2": 0.5, "c3": 0.75}, {"time": 0.0833, "curve": 0.25, "c3": 0.75}, {"time": 0.25, "angle": 15.51, "curve": 0.25, "c3": 0.75}, + {"time": 0.4167, "angle": -26.6, "curve": 0.25, "c3": 0.75}, {"time": 0.5833, "angle": 14.77, "curve": 0.25, "c3": 0.75}, {"time": 0.75, "angle": -12.34, "curve": 0.25, "c3": 0.75}, + {"time": 1.05, "curve": 0.25, "c3": 0.75}, {"time": 1.4167, "angle": -19.09, "curve": 0.25, "c3": 0.75}, {"time": 2.0833, "angle": 15.18, "curve": 0.25, "c3": 0.75}, + {"time": 2.6667, "curve": 0.25, "c3": 0.75}, {"time": 2.8333, "angle": 24.34, "curve": 0.25, "c3": 0.75}, {"time": 3, "angle": -25.03, "curve": 0.25, "c3": 0.75}, + {"time": 3.1667, "angle": 28.39, "curve": 0.25, "c3": 0.625, "c4": 0.5}, {"time": 3.25, "angle": 0.34} ] }, - "body-fur-under-03": { - "translate": [{"x": -0.78, "y": 3.19}], - "shear": [ - {"x": 22.47, "curve": 0.25, "c3": 0.75}, {"time": 0.0667, "curve": 0.25, "c3": 0.75}, {"time": 0.15, "x": -3.53, "curve": 0.25, "c3": 0.75}, - {"time": 0.3833, "x": 33.65, "curve": 0.25, "c3": 0.75}, {"time": 0.6333, "x": -20.36, "curve": 0.25, "c3": 0.75}, {"time": 0.8167, "x": 43.83, "curve": 0.25, "c3": 0.75}, - {"time": 0.95, "x": -23.52, "curve": 0.258, "c3": 0.619, "c4": 0.45}, {"time": 1, "x": 22.47} + "body-fur-09": { + "rotate": [ + {"angle": 21.53, "curve": 0.321, "c2": 0.3, "c3": 0.661, "c4": 0.65}, {"time": 0.0333, "angle": 14.2, "curve": 0.375, "c2": 0.5, "c3": 0.75}, {"time": 0.1167}, + {"time": 0.2833, "angle": 15.51, "curve": 0.25, "c3": 0.75}, {"time": 0.45, "angle": -26.6, "curve": 0.25, "c3": 0.75}, {"time": 0.6167, "angle": 14.77, "curve": 0.25, "c3": 0.75}, + {"time": 0.7833, "angle": -12.34, "curve": 0.25, "c3": 0.75}, {"time": 1.0833, "curve": 0.25, "c3": 0.75}, {"time": 1.45, "angle": -19.09, "curve": 0.25, "c3": 0.75}, + {"time": 2.1167, "angle": 15.18, "curve": 0.25, "c3": 0.75}, {"time": 2.7, "curve": 0.25, "c3": 0.75}, {"time": 2.8667, "angle": 24.34, "curve": 0.25, "c3": 0.75}, + {"time": 3.0333, "angle": -25.03, "curve": 0.25, "c3": 0.75}, {"time": 3.2, "angle": 28.39, "curve": 0.269, "c3": 0.618, "c4": 0.42}, {"time": 3.25, "angle": 6.86} ] }, - "body-fur-under-02": { - "translate": [{"x": -2.23, "y": 6.28}], - "shear": [ - {"x": -27.8, "curve": 0.375, "c2": 0.62, "c3": 0.716}, {"time": 0.0333, "x": 14.15, "curve": 0.25, "c3": 0.75}, {"time": 0.2667, "x": -46.5, "curve": 0.25, "c3": 0.75}, - {"time": 0.5167, "x": 37.58, "curve": 0.25, "c3": 0.75}, {"time": 0.7, "x": -65.53, "curve": 0.25, "c3": 0.75}, {"time": 0.8333, "x": 23.87, "curve": 0.25, "c3": 0.75}, - {"time": 0.95, "curve": 0.25, "c3": 0.625, "c4": 0.5}, {"time": 1, "x": -27.8} + "body-fur-08": { + "rotate": [ + {"angle": 3.69, "curve": 0.375, "c2": 0.62, "c3": 0.716}, {"time": 0.0333}, {"time": 0.2, "angle": 15.51, "curve": 0.25, "c3": 0.75}, + {"time": 0.3667, "angle": -26.6, "curve": 0.25, "c3": 0.75}, {"time": 0.5333, "angle": 14.77, "curve": 0.25, "c3": 0.75}, {"time": 0.7, "angle": -12.34, "curve": 0.25, "c3": 0.75}, + {"time": 1, "curve": 0.25, "c3": 0.75}, {"time": 1.3667, "angle": -19.09, "curve": 0.25, "c3": 0.75}, {"time": 2.0333, "angle": 15.18, "curve": 0.25, "c3": 0.75}, + {"time": 2.6167, "curve": 0.25, "c3": 0.75}, {"time": 2.7833, "angle": 24.34, "curve": 0.25, "c3": 0.75}, {"time": 2.95, "angle": -25.03, "curve": 0.25, "c3": 0.75}, + {"time": 3.1167, "angle": 28.39, "curve": 0.243, "c3": 0.68, "c4": 0.71}, {"time": 3.25, "angle": -0.91} ] }, - "body-fur-under-01": { - "translate": [{"x": -0.14, "y": 0.84}], - "shear": [ - {"x": -4.09, "curve": 0.375, "c2": 0.5, "c3": 0.75}, {"time": 0.0167, "curve": 0.25, "c3": 0.75}, {"time": 0.1, "x": 29.22, "curve": 0.25, "c3": 0.75}, - {"time": 0.3333, "x": -53.77, "curve": 0.25, "c3": 0.75}, {"time": 0.5833, "x": 43.54, "curve": 0.25, "c3": 0.75}, {"time": 0.7667, "x": -64.44, "curve": 0.25, "c3": 0.75}, - {"time": 0.9, "x": 29.43, "curve": 0.243, "c3": 0.68, "c4": 0.71}, {"time": 1, "x": -4.09} + "body-fur-07": { + "rotate": [ + {"angle": 6.88, "curve": 0.382, "c2": 0.58, "c3": 0.731}, {"time": 0.05, "curve": 0.25, "c3": 0.75}, {"time": 0.2167, "angle": 15.51, "curve": 0.25, "c3": 0.75}, + {"time": 0.3833, "angle": -26.6, "curve": 0.25, "c3": 0.75}, {"time": 0.55, "angle": 14.77, "curve": 0.25, "c3": 0.75}, {"time": 0.7167, "angle": -12.34, "curve": 0.25, "c3": 0.75}, + {"time": 1.0167, "curve": 0.25, "c3": 0.75}, {"time": 1.3833, "angle": -19.09, "curve": 0.25, "c3": 0.75}, {"time": 2.05, "angle": 15.18, "curve": 0.25, "c3": 0.75}, + {"time": 2.6333, "curve": 0.25, "c3": 0.75}, {"time": 2.8, "angle": 24.34, "curve": 0.25, "c3": 0.75}, {"time": 2.9667, "angle": -25.03, "curve": 0.25, "c3": 0.75}, + {"time": 3.1333, "angle": 28.39, "curve": 0.243, "c3": 0.655, "c4": 0.63}, {"time": 3.25, "angle": 2.91} ] }, - "body-braid-01": {"rotate": [{"angle": 2.31}]} - }, - "events": [{"time": 0.3333, "name": "start-attack"}, {"time": 0.5, "name": "hit"}] - }, - "2338117540": { - "slots": { - "eyes": {"attachment": [{"time": 0.05, "name": "eyes-angry"}, {"time": 0.6667, "name": "eyes-shut"}, {"time": 0.75, "name": "eyes"}]}, - "mouth": {"attachment": [{"time": 0.05, "name": "mouth-bite"}, {"time": 0.2667, "name": "mouth-open"}, {"time": 0.55, "name": "mouth-bite"}, {"time": 0.75, "name": "mouth"}]} - }, - "bones": { - "@leg-front-right": { - "translate": [ - {"curve": 0, "c2": 0.4, "c3": 0.383}, {"time": 0.25, "x": -2.2, "y": -15.65, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3167, "x": -1.86, "y": -9.26, "curve": "stepped"}, - {"time": 0.3333, "x": -2.24, "y": 13.67, "curve": "stepped"}, {"time": 0.5333, "x": -2.24, "y": 13.67, "curve": "stepped"}, - {"time": 0.55, "x": -2.12, "y": 6.47, "curve": 0.313, "c3": 0.699}, {"time": 0.6667, "x": -3.13, "y": -23.62, "curve": 0, "c2": 0.3, "c3": 0.54}, {"time": 0.8333} + "body-fur-06": { + "rotate": [ + {"angle": 27.23, "curve": 0.282, "c2": 0.15, "c3": 0.641, "c4": 0.58}, {"time": 0.0667, "angle": 14.2, "curve": 0.375, "c2": 0.5, "c3": 0.75}, {"time": 0.15}, + {"time": 0.3167, "angle": 15.51, "curve": 0.25, "c3": 0.75}, {"time": 0.4833, "angle": -26.6, "curve": 0.25, "c3": 0.75}, {"time": 0.65, "angle": 14.77, "curve": 0.25, "c3": 0.75}, + {"time": 0.8167, "angle": -12.34, "curve": 0.25, "c3": 0.75}, {"time": 1.1167, "curve": 0.25, "c3": 0.75}, {"time": 1.4833, "angle": -19.09, "curve": 0.25, "c3": 0.75}, + {"time": 2.15, "angle": 15.18, "curve": 0.25, "c3": 0.75}, {"time": 2.7333, "curve": 0.25, "c3": 0.75}, {"time": 2.9, "angle": 24.34, "curve": 0.25, "c3": 0.75}, + {"time": 3.0667, "angle": -25.03, "curve": 0.25, "c3": 0.75}, {"time": 3.2333, "angle": 28.39, "curve": 0.305, "c3": 0.64, "c4": 0.36}, {"time": 3.25, "angle": 13.33} ] }, - "tail": { + "body-fur-05": { "rotate": [ - {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.25, "angle": 21.98, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3167, "angle": -15.58, "curve": "stepped"}, - {"time": 0.3333, "angle": 6.35}, {"time": 0.5, "angle": 10.35, "curve": "stepped"}, {"time": 0.55, "angle": -11.84, "curve": 0.313, "c3": 0.699}, - {"time": 0.6667, "angle": 16.95, "curve": 0.313, "c3": 0.699}, {"time": 0.8333} + {"angle": 10.44, "curve": 0.381, "c2": 0.55, "c3": 0.742}, {"time": 0.0667}, {"time": 0.2333, "angle": 15.51, "curve": 0.25, "c3": 0.75}, + {"time": 0.4, "angle": -26.6, "curve": 0.25, "c3": 0.75}, {"time": 0.5667, "angle": 14.77, "curve": 0.25, "c3": 0.75}, {"time": 0.7333, "angle": -12.34, "curve": 0.25, "c3": 0.75}, + {"time": 1.0333, "curve": 0.25, "c3": 0.75}, {"time": 1.4, "angle": -19.09, "curve": 0.25, "c3": 0.75}, {"time": 2.0667, "angle": 15.18, "curve": 0.25, "c3": 0.75}, + {"time": 2.65, "curve": 0.25, "c3": 0.75}, {"time": 2.8167, "angle": 24.34, "curve": 0.25, "c3": 0.75}, {"time": 2.9833, "angle": -25.03, "curve": 0.25, "c3": 0.75}, + {"time": 3.15, "angle": 28.39, "curve": 0.245, "c3": 0.637, "c4": 0.56}, {"time": 3.25, "angle": 6.86} + ] + }, + "body-fur-04": { + "rotate": [ + {"angle": 26.12, "curve": 0.36, "c2": 0.64, "c3": 0.695}, {"time": 0.0167, "angle": 28.39, "curve": 0.25, "c3": 0.625, "c4": 0.5}, + {"time": 0.1, "angle": 14.2, "curve": 0.375, "c2": 0.5, "c3": 0.75}, {"time": 0.1833}, {"time": 0.35, "angle": 15.51, "curve": 0.25, "c3": 0.75}, + {"time": 0.5167, "angle": -26.6, "curve": 0.25, "c3": 0.75}, {"time": 0.6833, "angle": 14.77, "curve": 0.25, "c3": 0.75}, {"time": 0.85, "angle": -12.34, "curve": 0.25, "c3": 0.75}, + {"time": 1.15, "curve": 0.25, "c3": 0.75}, {"time": 1.5167, "angle": -19.09, "curve": 0.25, "c3": 0.75}, {"time": 2.1833, "angle": 15.18, "curve": 0.25, "c3": 0.75}, + {"time": 2.7667, "curve": 0.25, "c3": 0.75}, {"time": 2.9333, "angle": 24.34, "curve": 0.25, "c3": 0.75}, {"time": 3.1, "angle": -25.03, "curve": 0.245, "c3": 0.711, "c4": 0.83}, + {"time": 3.25, "angle": 12.53} + ] + }, + "body-fur-03": { + "rotate": [ + {"angle": 17.95, "curve": 0.363, "c2": 0.44, "c3": 0.755}, {"time": 0.1}, {"time": 0.2667, "angle": 15.51, "curve": 0.25, "c3": 0.75}, + {"time": 0.4333, "angle": -26.6, "curve": 0.25, "c3": 0.75}, {"time": 0.6, "angle": 14.77, "curve": 0.25, "c3": 0.75}, {"time": 0.7667, "angle": -12.34, "curve": 0.25, "c3": 0.75}, + {"time": 1.0667, "curve": 0.25, "c3": 0.75}, {"time": 1.4333, "angle": -19.09, "curve": 0.25, "c3": 0.75}, {"time": 2.1, "angle": 15.18, "curve": 0.25, "c3": 0.75}, + {"time": 2.6833, "curve": 0.25, "c3": 0.75}, {"time": 2.85, "angle": 24.34, "curve": 0.25, "c3": 0.75}, {"time": 3.0167, "angle": -25.03, "curve": 0.25, "c3": 0.75}, + {"time": 3.1833, "angle": 28.39, "curve": 0.258, "c3": 0.619, "c4": 0.45}, {"time": 3.25, "angle": 5.54} + ] + }, + "body-fur-02": { + "rotate": [ + {"angle": 15.45, "curve": 0.382, "c2": 0.58, "c3": 0.731}, {"time": 0.05, "angle": 28.39, "curve": 0.25, "c3": 0.625, "c4": 0.5}, + {"time": 0.1333, "angle": 14.2, "curve": 0.375, "c2": 0.5, "c3": 0.75}, {"time": 0.2167}, {"time": 0.3833, "angle": 15.51, "curve": 0.25, "c3": 0.75}, + {"time": 0.55, "angle": -26.6, "curve": 0.25, "c3": 0.75}, {"time": 0.7167, "angle": 14.77, "curve": 0.25, "c3": 0.75}, {"time": 0.8833, "angle": -12.34, "curve": 0.25, "c3": 0.75}, + {"time": 1.1833, "curve": 0.25, "c3": 0.75}, {"time": 1.55, "angle": -19.09, "curve": 0.25, "c3": 0.75}, {"time": 2.2167, "angle": 15.18, "curve": 0.25, "c3": 0.75}, + {"time": 2.8, "curve": 0.25, "c3": 0.75}, {"time": 2.9667, "angle": 24.34, "curve": 0.25, "c3": 0.75}, {"time": 3.1333, "angle": -25.03, "curve": 0.243, "c3": 0.655, "c4": 0.63}, + {"time": 3.25, "angle": 13.84} ] }, + "body-fur-01": { + "rotate": [ + {"angle": 24.7, "curve": 0.32, "c2": 0.29, "c3": 0.757}, {"time": 0.1333}, {"time": 0.3, "angle": 15.51, "curve": 0.25, "c3": 0.75}, + {"time": 0.4667, "angle": -26.6, "curve": 0.25, "c3": 0.75}, {"time": 0.6333, "angle": 14.77, "curve": 0.25, "c3": 0.75}, {"time": 0.8, "angle": -12.34, "curve": 0.25, "c3": 0.75}, + {"time": 1.1, "curve": 0.25, "c3": 0.75}, {"time": 1.4667, "angle": -19.09, "curve": 0.25, "c3": 0.75}, {"time": 2.1333, "angle": 15.18, "curve": 0.25, "c3": 0.75}, + {"time": 2.7167, "curve": 0.25, "c3": 0.75}, {"time": 2.8833, "angle": 24.34, "curve": 0.25, "c3": 0.75}, {"time": 3.05, "angle": -25.03, "curve": 0.25, "c3": 0.75}, + {"time": 3.2167, "angle": 28.39, "curve": 0.284, "c3": 0.625, "c4": 0.38}, {"time": 3.25, "angle": 10.51} + ] + } + } + }, + "4047015022": { + "slots": { + "eyes": {"attachment": [{"time": 0.0833, "name": "eyes-happy"}, {"time": 1, "name": "eyes"}]}, + "leg-back-left": {"attachment": [{"time": 0.0667, "name": "leg-back-left-long"}, {"time": 0.9, "name": "leg-back-left"}]}, + "mouth": {"attachment": [{"time": 0.0833, "name": "mouth-smile"}, {"time": 1, "name": "mouth"}]} + }, + "bones": { "@pivot-back": { "rotate": [ - {"curve": 0, "c2": 0.4, "c3": 0.383}, {"time": 0.15, "angle": 4, "curve": "stepped"}, {"time": 0.25, "angle": 4, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.3167, "curve": "stepped"}, {"time": 0.3333}, {"time": 0.5, "angle": -3, "curve": "stepped"}, {"time": 0.55, "curve": 0.313, "c3": 0.699}, - {"time": 0.6667, "angle": 6, "curve": 0.313, "c3": 0.699}, {"time": 0.8333} + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "angle": -18, "curve": 0.317, "c3": 0.693}, {"time": 0.3333, "angle": -17, "curve": 0.317, "c3": 0.693}, + {"time": 0.5, "angle": -18, "curve": 0.317, "c3": 0.693}, {"time": 0.6667, "angle": -17, "curve": 0.317, "c3": 0.693}, {"time": 0.8333, "angle": -18, "curve": 0.317, "c3": 0.693}, + {"time": 1.0833} ], "translate": [ - {"curve": 0, "c2": 0.4, "c3": 0.383}, {"time": 0.25, "x": 25, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3167, "x": -135.5, "curve": "stepped"}, {"time": 0.3333, "x": -560.54}, - {"time": 0.5, "x": -577.1, "curve": "stepped"}, {"time": 0.55, "x": -151.24, "curve": 0.313, "c3": 0.699}, {"time": 0.6667, "x": -151.24, "y": 4.06, "curve": 0.313, "c3": 0.699}, - {"time": 0.8333} - ], - "scale": [{"time": 0.3167, "curve": "stepped"}, {"time": 0.3333, "x": -1, "curve": "stepped"}, {"time": 0.5, "x": -1, "curve": "stepped"}, {"time": 0.55}] + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": 33.94, "y": -52, "curve": "stepped"}, {"time": 0.8333, "x": 33.94, "y": -52, "curve": 0.317, "c3": 0.693}, {"time": 1.0833} + ] }, "@leg-front-left": { "translate": [ - {"curve": 0, "c2": 0.4, "c3": 0.383}, {"time": 0.25, "x": -1, "y": -5.53, "curve": "stepped"}, {"time": 0.3167, "x": -1, "y": -5.53, "curve": "stepped"}, - {"time": 0.3333, "x": -1.12, "y": 1.52, "curve": "stepped"}, {"time": 0.55, "x": -1.12, "y": 1.52, "curve": 0.313, "c3": 0.699}, - {"time": 0.6667, "x": -1, "y": -5.53, "curve": 0.313, "c3": 0.699}, {"time": 0.8333} + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": -27.99, "y": 1.7, "curve": 0.25, "c3": 0.75}, {"time": 0.3333, "x": -26.93, "y": -1.56, "curve": 0.25, "c3": 0.75}, + {"time": 0.5, "x": -27.99, "y": 1.7, "curve": 0.25, "c3": 0.75}, {"time": 0.6667, "x": -26.93, "y": -1.56, "curve": 0.25, "c3": 0.75}, + {"time": 0.8333, "x": -27.99, "y": 1.7, "curve": 0.317, "c3": 0.693}, {"time": 1.0833} + ] + }, + "@leg-front-right": { + "translate": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": -84.32, "y": 39.72, "curve": 0.317, "c3": 0.693}, {"time": 0.3333, "x": -82.71, "y": 34.75, "curve": 0.317, "c3": 0.693}, + {"time": 0.5, "x": -84.32, "y": 39.72, "curve": 0.317, "c3": 0.693}, {"time": 0.6667, "x": -82.71, "y": 34.75, "curve": 0.317, "c3": 0.693}, + {"time": 0.8333, "x": -84.32, "y": 39.72, "curve": 0.317, "c3": 0.693}, {"time": 1.0833} + ] + }, + "leg-front-right-IK": { + "translate": [{"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": 40.32, "curve": "stepped"}, {"time": 0.8333, "x": 40.32, "curve": 0.317, "c3": 0.693}, {"time": 1.0833}] + }, + "leg-front-left-IK": { + "translate": [{"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": 26.51, "curve": "stepped"}, {"time": 0.8333, "x": 26.51, "curve": 0.317, "c3": 0.693}, {"time": 1.0833}] + }, + "leg-back-left-IK": { + "translate": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": -30.93, "y": 88.63, "curve": 0.617, "c4": 0.6}, {"time": 0.2667, "x": -62.81, "y": 72.23, "curve": 0, "c2": 0.4, "c3": 0.383}, + {"time": 0.35, "x": -28.19, "y": 96.83, "curve": 0.617, "c4": 0.6}, {"time": 0.45, "x": -62.81, "y": 72.23, "curve": 0, "c2": 0.4, "c3": 0.383}, + {"time": 0.55, "x": -28.19, "y": 96.83, "curve": 0.617, "c4": 0.6}, {"time": 0.6333, "x": -62.81, "y": 72.23, "curve": 0, "c2": 0.4, "c3": 0.383}, + {"time": 0.7333, "x": -28.19, "y": 96.83, "curve": 0.434, "c3": 0.739, "c4": 0.4}, {"time": 0.8333, "x": -56.92, "y": 76.7, "curve": 0.223, "c2": 0.33, "c3": 0.336}, {"time": 1.0833} + ] + }, + "tail": { + "rotate": [ + {"curve": 0, "c2": 0.3, "c3": 0.546}, {"time": 0.1667, "angle": 25.35, "curve": 0.317, "c3": 0.693}, {"time": 0.3333, "angle": 33.35, "curve": 0.317, "c3": 0.693}, + {"time": 0.5, "angle": 25.35, "curve": 0.317, "c3": 0.693}, {"time": 0.6667, "angle": 33.35, "curve": 0.317, "c3": 0.693}, + {"time": 0.9167, "angle": 25.35, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 1.0833} ] }, "@shadow": { - "translate": [ - {"time": 0.25, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3167, "x": -143.36, "curve": "stepped"}, {"time": 0.3333, "x": -143.36}, {"time": 0.5, "x": -157.56, "curve": "stepped"}, - {"time": 0.55, "x": -161.35, "curve": "stepped"}, {"time": 0.6667, "x": -161.35, "curve": 0.313, "c3": 0.699}, {"time": 0.8333} - ], + "translate": [{"curve": 0, "c2": 0.3, "c3": 0.546}, {"time": 0.1667, "x": 32.73, "curve": "stepped"}, {"time": 0.8333, "x": 32.73, "curve": 0.317, "c3": 0.693}, {"time": 1.0833}], "scale": [ - {"curve": 0, "c2": 0.4, "c3": 0.383}, {"time": 0.25, "x": 1.08, "y": 1.08, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3167, "curve": "stepped"}, {"time": 0.3333}, - {"time": 0.5, "x": 1.08, "y": 1.08, "curve": "stepped"}, {"time": 0.55, "curve": 0.313, "c3": 0.699}, {"time": 0.6667, "x": 1.08, "y": 1.08, "curve": 0.313, "c3": 0.699}, - {"time": 0.8333} + {"time": 0.1667, "curve": 0.317, "c3": 0.693}, {"time": 0.25, "x": 1.02, "y": 1.02, "curve": 0.317, "c3": 0.693}, {"time": 0.3333, "curve": 0.317, "c3": 0.693}, + {"time": 0.4167, "x": 1.02, "y": 1.02, "curve": 0.317, "c3": 0.693}, {"time": 0.5, "curve": 0.317, "c3": 0.693}, {"time": 0.5833, "x": 1.02, "y": 1.02, "curve": 0.317, "c3": 0.693}, + {"time": 0.6667, "curve": 0.317, "c3": 0.693}, {"time": 0.8333, "x": 1.02, "y": 1.02, "curve": 0.317, "c3": 0.693}, {"time": 1.0833} ] }, - "leg-front-left-IK": { - "translate": [ - {"time": 0.25, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3167, "x": -192.09, "y": 31.17, "curve": "stepped"}, {"time": 0.3333, "x": -162.19, "curve": "stepped"}, - {"time": 0.5, "x": -162.19, "curve": "stepped"}, {"time": 0.55, "x": -180.48, "curve": "stepped"}, {"time": 0.6667, "x": -180.48, "curve": 0.313, "c3": 0.699}, {"time": 0.8333} + "body-fur-01": { + "rotate": [ + {"angle": -2.09, "curve": 0.372, "c2": 0.48, "c3": 0.752}, {"time": 0.1333, "angle": 6.14, "curve": 0.25, "c3": 0.75}, {"time": 0.3, "angle": -20.35, "curve": 0.25, "c3": 0.75}, + {"time": 0.6333, "angle": 10.82, "curve": 0.25, "c3": 0.75}, {"time": 0.9667, "angle": -8.98, "curve": 0.252, "c3": 0.622, "c4": 0.48}, {"time": 1.0833, "angle": 10.51} ] }, - "leg-front-right-IK": { - "translate": [ - {"time": 0.25, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3167, "x": -172.87, "y": 28.32, "curve": "stepped"}, {"time": 0.3333, "x": 301.16, "y": 16.82, "curve": 0.31, "c4": 0.8}, - {"time": 0.5, "x": 285.54, "y": 12.82, "curve": "stepped"}, {"time": 0.55, "x": -180.48, "curve": "stepped"}, {"time": 0.6667, "x": -180.48, "curve": 0.313, "c3": 0.699}, - {"time": 0.8333} + "body-fur-02": { + "rotate": [ + {"angle": -7, "curve": 0.303, "c2": 0.24, "c3": 0.68, "c4": 0.71}, {"time": 0.1333, "angle": 3.08, "curve": 0.38, "c2": 0.59, "c3": 0.727}, {"time": 0.2, "angle": 6.14}, + {"time": 0.3667, "angle": -20.35, "curve": 0.25, "c3": 0.75}, {"time": 0.7, "angle": 10.82, "curve": 0.25, "c3": 0.75}, + {"time": 1.0333, "angle": -8.98, "curve": 0.284, "c3": 0.625, "c4": 0.38}, {"time": 1.0833, "angle": 13.84} ] }, - "leg-back-left-IK": { - "translate": [ - {"time": 0.25, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3167, "x": -91.18, "y": 21.9, "curve": "stepped"}, {"time": 0.3333, "x": -595.64, "y": 5, "curve": 0.31, "c4": 0.8}, - {"time": 0.5, "x": -626.51, "y": 11.36, "curve": "stepped"}, {"time": 0.55, "x": -134.74, "curve": "stepped"}, {"time": 0.6667, "x": -134.74, "curve": 0.313, "c3": 0.699}, - {"time": 0.8333} + "body-fur-03": { + "rotate": [ + {"angle": 0.58, "curve": 0.381, "c2": 0.55, "c3": 0.742}, {"time": 0.1, "angle": 6.14, "curve": 0.25, "c3": 0.75}, {"time": 0.2667, "angle": -20.35, "curve": 0.25, "c3": 0.75}, + {"time": 0.6, "angle": 10.82, "curve": 0.25, "c3": 0.75}, {"time": 0.9333, "angle": -8.98, "curve": 0.245, "c3": 0.637, "c4": 0.56}, {"time": 1.0833, "angle": 5.54} ] }, - "@pivot-main": {"translate": [{"time": 0.6667, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.75, "y": 31, "curve": 0.315, "c4": 0.8}, {"time": 0.8333}]}, - "@leg-back-left": {"translate": [{"time": 0.3167, "curve": "stepped"}, {"time": 0.3333, "x": -0.06, "y": 3.33, "curve": "stepped"}, {"time": 0.5, "x": -0.06, "y": 3.33}, {"time": 0.55}]}, - "body-braid-02": { + "body-fur-04": { "rotate": [ - {"angle": 3.5, "curve": 0.348, "c2": 0.38, "c3": 0.685, "c4": 0.73}, {"time": 0.2833, "angle": 43.23, "curve": 0.25, "c3": 0.75}, - {"time": 0.5667, "curve": 0.284, "c3": 0.625, "c4": 0.38}, {"time": 0.6167, "angle": 0.34, "curve": 0.32, "c2": 0.29, "c3": 0.757}, {"time": 0.8333, "angle": 3.5} + {"angle": -4.66, "curve": 0.327, "c2": 0.31, "c3": 0.685, "c4": 0.72}, {"time": 0.1, "angle": 3.08, "curve": 0.38, "c2": 0.59, "c3": 0.727}, + {"time": 0.1667, "angle": 6.14, "curve": 0.25, "c3": 0.75}, {"time": 0.3333, "angle": -20.35, "curve": 0.25, "c3": 0.75}, {"time": 0.6667, "angle": 10.82, "curve": 0.25, "c3": 0.75}, + {"time": 1, "angle": -8.98, "curve": 0.265, "c3": 0.618, "c4": 0.43}, {"time": 1.0833, "angle": 12.53} ] }, - "body-braid-03": { + "body-fur-05": { "rotate": [ - {"angle": -1.71, "curve": 0.337, "c2": 0.34, "c3": 0.673, "c4": 0.69}, {"time": 0.05, "angle": 2.63, "curve": 0.25, "c3": 0.228, "c4": 0.99}, - {"time": 0.3167, "angle": 23.44, "curve": 0.244, "c3": 0.7, "c4": 0.79}, {"time": 0.5667, "angle": 1.63, "curve": 0.366, "c2": 0.63, "c3": 0.703}, - {"time": 0.6, "curve": 0.313, "c3": 0.648, "c4": 0.35}, {"time": 0.6167, "angle": 0.06, "curve": 0.268, "c2": 0.1, "c3": 0.693, "c4": 0.76}, {"time": 0.8333, "angle": -1.71} + {"angle": 3.08, "curve": 0.38, "c2": 0.59, "c3": 0.727}, {"time": 0.0667, "angle": 6.14, "curve": 0.25, "c3": 0.75}, {"time": 0.2333, "angle": -20.35, "curve": 0.25, "c3": 0.75}, + {"time": 0.5667, "angle": 10.82, "curve": 0.25, "c3": 0.75}, {"time": 0.9, "angle": -8.98, "curve": 0.242, "c3": 0.663, "c4": 0.65}, {"time": 1.0833, "angle": 6.86} ] }, - "body-braid-04": { + "body-fur-06": { "rotate": [ - {"angle": -9.29, "curve": 0.323, "c2": 0.3, "c3": 0.66, "c4": 0.65}, {"time": 0.1, "angle": 2.63, "curve": 0.25, "c3": 0.228, "c4": 0.99}, - {"time": 0.3833, "angle": 16.91, "curve": 0.243, "c3": 0.649, "c4": 0.6}, {"time": 0.5667, "angle": 4.8, "curve": 0.356, "c2": 0.42, "c3": 0.696, "c4": 0.78}, - {"time": 0.6167, "angle": 1.11, "curve": 0.366, "c2": 0.63, "c3": 0.703}, {"time": 0.65, "curve": 0.244, "c3": 0.645, "c4": 0.59}, {"time": 0.8333, "angle": -9.29} + {"angle": -2.03, "curve": 0.34, "c2": 0.35, "c3": 0.684, "c4": 0.72}, {"time": 0.0667, "angle": 3.08, "curve": 0.38, "c2": 0.59, "c3": 0.727}, {"time": 0.1333, "angle": 6.14}, + {"time": 0.3, "angle": -20.35, "curve": 0.25, "c3": 0.75}, {"time": 0.6333, "angle": 10.82, "curve": 0.25, "c3": 0.75}, + {"time": 0.9667, "angle": -8.98, "curve": 0.252, "c3": 0.622, "c4": 0.48}, {"time": 1.0833, "angle": 13.33} ] }, - "body-braid-05": { + "body-fur-07": { "rotate": [ - {"angle": -8.3, "curve": 0.294, "c3": 0.631, "c4": 0.37}, {"time": 0.1667, "angle": -10.49, "curve": 0.25, "c3": 0.228, "c4": 0.99}, - {"time": 0.45, "angle": 8.22, "curve": 0.258, "c3": 0.619, "c4": 0.45}, {"time": 0.5667, "angle": 5.2, "curve": 0.33, "c2": 0.32, "c3": 0.67, "c4": 0.68}, - {"time": 0.6167, "angle": 3.03, "curve": 0.381, "c2": 0.55, "c3": 0.742}, {"time": 0.7333, "curve": 0.26, "c3": 0.618, "c4": 0.44}, {"time": 0.8333, "angle": -8.3} + {"angle": 5.09, "curve": 0.366, "c2": 0.63, "c3": 0.703}, {"time": 0.0333, "angle": 6.14, "curve": 0.25, "c3": 0.75}, {"time": 0.2, "angle": -20.35, "curve": 0.25, "c3": 0.75}, + {"time": 0.5333, "angle": 10.82, "curve": 0.25, "c3": 0.75}, {"time": 0.8667, "angle": -8.98, "curve": 0.244, "c3": 0.7, "c4": 0.79}, {"time": 1.0833, "angle": 2.91} ] }, - "body-braid-06": { + "body-fur-08": { "rotate": [ - {"angle": -20.59, "curve": 0.352, "c2": 0.41, "c3": 0.689, "c4": 0.75}, {"time": 0.25, "angle": -28.99, "curve": 0.25, "c3": 0.228, "c4": 0.99}, - {"time": 0.5333, "angle": 9.53, "curve": 0.297, "c3": 0.634, "c4": 0.37}, {"time": 0.5667, "angle": 8.86, "curve": 0.304, "c2": 0.22, "c3": 0.644, "c4": 0.58}, - {"time": 0.6167, "angle": 6.87, "curve": 0.351, "c2": 0.4, "c3": 0.757}, {"time": 0.8, "curve": 0.301, "c3": 0.637, "c4": 0.36}, {"time": 0.8333, "angle": -20.59} + {"angle": 1.85, "curve": 0.382, "c2": 0.57, "c3": 0.735}, {"time": 0.0833, "angle": 6.14, "curve": 0.25, "c3": 0.75}, {"time": 0.25, "angle": -20.35, "curve": 0.25, "c3": 0.75}, + {"time": 0.5833, "angle": 10.82, "curve": 0.25, "c3": 0.75}, {"time": 0.9167, "angle": -8.98, "curve": 0.243, "c3": 0.649, "c4": 0.6}, {"time": 1.0833, "angle": -0.91} ] }, - "body-fur-under-05": { - "translate": [{"x": 0.53, "y": 14.98}], - "shear": [ - {"x": 3.7, "curve": 0.382, "c2": 0.57, "c3": 0.737}, {"time": 0.1, "x": 6.85, "curve": 0.25, "c3": 0.228, "c4": 0.99}, - {"time": 0.3833, "x": -44.3, "curve": 0.248, "c3": 0.628, "c4": 0.52}, {"time": 0.5333, "x": -27.02, "curve": 0.356, "c2": 0.41, "c3": 0.707, "c4": 0.81}, - {"time": 0.6167, "x": -14.63, "curve": 0.366, "c2": 0.63, "c3": 0.703}, {"time": 0.65, "x": -12.53, "curve": 0.244, "c3": 0.645, "c4": 0.59}, {"time": 0.8333, "x": 3.7} + "body-fur-09": { + "rotate": [ + {"angle": -3.36, "curve": 0.335, "c2": 0.34, "c3": 0.685, "c4": 0.72}, {"time": 0.0833, "angle": 3.08, "curve": 0.38, "c2": 0.59, "c3": 0.727}, {"time": 0.15, "angle": 6.14}, + {"time": 0.3167, "angle": -20.35, "curve": 0.25, "c3": 0.75}, {"time": 0.65, "angle": 10.82, "curve": 0.25, "c3": 0.75}, + {"time": 0.9833, "angle": -8.98, "curve": 0.258, "c3": 0.619, "c4": 0.45}, {"time": 1.0833, "angle": 6.86} ] }, - "body-fur-under-04": { - "translate": [{"x": -0.33, "y": 3.2}], - "shear": [ - {"x": 10.24, "curve": 0.36, "c2": 0.64, "c3": 0.695}, {"time": 0.0667, "x": 13.82, "curve": 0.25, "c3": 0.228, "c4": 0.99}, - {"time": 0.3333, "x": -39.88, "curve": 0.243, "c3": 0.649, "c4": 0.6}, {"time": 0.5333, "x": -22.71, "curve": 0.382, "c2": 0.57, "c3": 0.735}, - {"time": 0.6167, "x": -15.91, "curve": 0.242, "c3": 0.67, "c4": 0.68}, {"time": 0.8333, "x": 10.24} + "body-fur-10": { + "rotate": [ + {"angle": 4.17, "curve": 0.375, "c2": 0.62, "c3": 0.716}, {"time": 0.05, "angle": 6.14, "curve": 0.25, "c3": 0.75}, {"time": 0.2167, "angle": -20.35, "curve": 0.25, "c3": 0.75}, + {"time": 0.55, "angle": 10.82, "curve": 0.25, "c3": 0.75}, {"time": 0.8833, "angle": -8.98, "curve": 0.243, "c3": 0.68, "c4": 0.71}, {"time": 1.0833, "angle": 0.34} ] }, - "body-fur-under-03": { - "translate": [{"x": -0.78, "y": 3.19}], - "shear": [ - {"x": 22.47, "curve": 0.25, "c3": 0.75}, {"time": 0.2833, "x": -45.7, "curve": 0.244, "c3": 0.7, "c4": 0.79}, {"time": 0.5333, "x": -3.18, "curve": 0.366, "c2": 0.63, "c3": 0.703}, - {"time": 0.5667, "curve": 0.284, "c3": 0.625, "c4": 0.38}, {"time": 0.6167, "x": 2.51, "curve": 0.32, "c2": 0.29, "c3": 0.757}, {"time": 0.8333, "x": 22.47} + "body-fur-11": { + "rotate": [ + {"angle": 1.85, "curve": 0.382, "c2": 0.57, "c3": 0.735}, {"time": 0.0833, "angle": 6.14, "curve": 0.25, "c3": 0.75}, {"time": 0.25, "angle": -20.35, "curve": 0.25, "c3": 0.75}, + {"time": 0.5833, "angle": 10.82, "curve": 0.25, "c3": 0.75}, {"time": 0.9167, "angle": -8.98, "curve": 0.243, "c3": 0.649, "c4": 0.6}, {"time": 1.0833, "angle": 4.23} ] }, - "body-fur-under-02": { - "translate": [{"x": -2.23, "y": 6.28}], - "shear": [ - {"x": -27.8, "curve": 0.375, "c2": 0.62, "c3": 0.716}, {"time": 0.0333, "x": 18.72, "curve": 0.25, "c3": 0.228, "c4": 0.99}, - {"time": 0.3, "x": -43.03, "curve": 0.243, "c3": 0.68, "c4": 0.71}, {"time": 0.5333, "x": -5.6, "curve": 0.375, "c2": 0.62, "c3": 0.716}, - {"time": 0.5833, "curve": 0.297, "c3": 0.634, "c4": 0.37}, {"time": 0.6167, "x": 1.3, "curve": 0.292, "c2": 0.19, "c3": 0.714, "c4": 0.83}, {"time": 0.8333, "x": -27.8} + "body-fur-12": { + "rotate": [ + {"angle": -0.75, "curve": 0.378, "c2": 0.52, "c3": 0.748}, {"time": 0.1167, "angle": 6.14, "curve": 0.25, "c3": 0.75}, {"time": 0.2833, "angle": -20.35, "curve": 0.25, "c3": 0.75}, + {"time": 0.6167, "angle": 10.82, "curve": 0.25, "c3": 0.75}, {"time": 0.95, "angle": -8.98, "curve": 0.248, "c3": 0.628, "c4": 0.52}, {"time": 1.0833, "angle": 8.12} ] }, - "body-fur-under-01": { - "translate": [{"x": -0.14, "y": 0.84}], - "shear": [ - {"x": -4.09, "curve": 0.375, "c2": 0.5, "c3": 0.75}, {"time": 0.25, "x": -42.78, "curve": 0.25, "c3": 0.75}, {"time": 0.5333, "curve": 0.265, "c3": 0.618, "c4": 0.43}, - {"time": 0.6167, "x": 7.64, "curve": 0.351, "c2": 0.4, "c3": 0.757}, {"time": 0.8, "x": 26.91, "curve": 0.374, "c3": 0.7, "c4": 0.36}, {"time": 0.8333, "x": -4.09} + "body-fur-13": { + "rotate": [ + {"angle": -3.42, "curve": 0.363, "c2": 0.44, "c3": 0.755}, {"time": 0.15, "angle": 6.14, "curve": 0.25, "c3": 0.75}, {"time": 0.3167, "angle": -20.35, "curve": 0.25, "c3": 0.75}, + {"time": 0.65, "angle": 10.82, "curve": 0.25, "c3": 0.75}, {"time": 0.9833, "angle": -8.98, "curve": 0.258, "c3": 0.619, "c4": 0.45}, {"time": 1.0833, "angle": 11.59} ] }, - "body-braid-01": {"rotate": [{"angle": 2.31}]} + "body-fur-14": { + "rotate": [ + {"angle": -7.96, "curve": 0.287, "c2": 0.18, "c3": 0.676, "c4": 0.7}, {"time": 0.15, "angle": 3.08, "curve": 0.38, "c2": 0.59, "c3": 0.727}, {"time": 0.2167, "angle": 6.14}, + {"time": 0.3833, "angle": -20.35, "curve": 0.25, "c3": 0.75}, {"time": 0.7167, "angle": 10.82, "curve": 0.25, "c3": 0.75}, + {"time": 1.05, "angle": -8.98, "curve": 0.297, "c3": 0.634, "c4": 0.37}, {"time": 1.0833, "angle": 13.33} + ] + }, + "body-fur-15": { + "rotate": [ + {"angle": -5.92, "curve": 0.337, "c2": 0.35, "c3": 0.758}, {"time": 0.1833, "angle": 6.14, "curve": 0.25, "c3": 0.75}, {"time": 0.35, "angle": -20.35, "curve": 0.25, "c3": 0.75}, + {"time": 0.6833, "angle": 10.82, "curve": 0.25, "c3": 0.75}, {"time": 1.0167, "angle": -8.98, "curve": 0.273, "c3": 0.62, "c4": 0.41}, {"time": 1.0833, "angle": 13.33} + ] + }, + "body-fur-16": { + "rotate": [ + {"angle": -7.93, "curve": 0.3, "c2": 0.21, "c3": 0.756}, {"time": 0.2167, "angle": 6.14, "curve": 0.25, "c3": 0.75}, {"time": 0.3833, "angle": -20.35, "curve": 0.25, "c3": 0.75}, + {"time": 0.7167, "angle": 10.82, "curve": 0.25, "c3": 0.75}, {"time": 1.05, "angle": -8.98, "curve": 0.297, "c3": 0.634, "c4": 0.37}, {"time": 1.0833, "angle": 13.84} + ] + } }, - "events": [{"time": 0.25, "name": "start-attack"}, {"time": 0.3333, "name": "hit"}] + "drawOrder": [{"time": 0.0667, "offsets": [{"slot": "leg-back-left", "offset": 2}]}, {"time": 0.9}] }, - "2516301341": { + "1772223510": { "slots": { - "eyes": {"attachment": [{"name": "eyes-shut"}, {"time": 0.2, "name": "eyes"}]}, "mouth": {"attachment": [{"time": 0.0333, "name": "mouth-open"}, {"time": 0.2167, "name": "mouth"}]} + "eyes": {"attachment": [{"time": 0.05, "name": "eyes-happy"}, {"time": 2.0833, "name": "eyes"}]}, + "mouth": {"attachment": [{"time": 0.05, "name": "mouth-bite"}, {"time": 2.0833, "name": "mouth"}]} }, "bones": { "@pivot-back": { "rotate": [ - {"angle": -8.23, "curve": "stepped"}, {"time": 0.1667, "angle": -8.23, "curve": 0.306, "c4": 0.8}, {"time": 0.3333, "angle": 5.43, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5} + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "angle": 6, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.4833, "angle": 7, "curve": 0.317, "c3": 0.693}, + {"time": 0.55, "angle": 6.5, "curve": 0.317, "c3": 0.693}, {"time": 0.6167, "angle": 7, "curve": 0.317, "c3": 0.693}, {"time": 0.6833, "angle": 6.5, "curve": 0, "c2": 0.1, "c3": 0.85}, + {"time": 0.9167, "angle": 8, "curve": 0.317, "c3": 0.693}, {"time": 1.3333, "angle": -7, "curve": 0.461, "c3": 0.543}, {"time": 1.9167, "angle": -9, "curve": 0.154, "c4": 0.9}, + {"time": 2.1667, "angle": 3, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 2.3333} ], - "translate": [{"y": -0.04, "curve": 0, "c2": 0.3, "c3": 0.534}, {"time": 0.1667, "x": 17.97, "y": 94.25, "curve": 0.315, "c4": 0.8}, {"time": 0.3333, "y": -0.04}] + "translate": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "x": 7, "y": 6, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.9167, "x": 11, "y": 10, "curve": 0.317, "c3": 0.693}, + {"time": 1.3333, "x": -45, "y": -14, "curve": 0.461, "c3": 0.543}, {"time": 1.9167, "x": -45, "y": -18, "curve": 0.154, "c4": 0.9}, + {"time": 2.1667, "y": 4.23, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 2.3333} + ] + }, + "@leg-front-right": { + "translate": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "x": -2.08, "y": -23.58, "curve": "stepped"}, {"time": 0.9167, "x": -2.08, "y": -23.58, "curve": 0.317, "c3": 0.693}, + {"time": 1.3333, "x": -56.51, "y": 25.21, "curve": 0.461, "c3": 0.543}, {"time": 1.9167, "x": -57.58, "y": 31.33, "curve": 0.154, "c4": 0.9}, + {"time": 2.1667, "x": -1.95, "y": -12.95, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 2.3333} + ] + }, + "@leg-front-left": { + "translate": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "x": -0.92, "y": -10.48, "curve": "stepped"}, {"time": 0.9167, "x": -0.92, "y": -10.48, "curve": 0.317, "c3": 0.693}, + {"time": 1.3333, "x": -48.7, "y": 5.49, "curve": 0.461, "c3": 0.543}, {"time": 1.9167, "x": -49.1, "y": 7.78, "curve": 0.154, "c4": 0.9}, + {"time": 2.1667, "x": -0.87, "y": -4.98, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 2.3333} + ] + }, + "@leg-back-left": { + "translate": [ + {"time": 0.25}, {"time": 0.9167, "x": 0.52, "y": 4.2, "curve": 0.317, "c3": 0.693}, {"time": 1.3333, "x": -2.48, "y": -1.61, "curve": "stepped"}, + {"time": 1.9167, "x": -2.48, "y": -1.61, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 2.1667} + ] + }, + "leg-front-left-IK": { + "translate": [ + {"time": 0.9167, "curve": 0.317, "c3": 0.693}, {"time": 1.3333, "x": -11.56, "curve": "stepped"}, {"time": 1.9167, "x": -11.56, "curve": 0.154, "c4": 0.9}, {"time": 2.1667} + ] + }, + "leg-front-right-IK": { + "translate": [{"time": 0.9167, "curve": 0.317, "c3": 0.693}, {"time": 1.3333, "x": -5.65, "curve": "stepped"}, {"time": 1.9167, "x": -5.65, "curve": 0.154, "c4": 0.9}, {"time": 2.1667}] + }, + "leg-back-left-IK": { + "translate": [ + {"time": 0.9167, "curve": 0.317, "c3": 0.693}, {"time": 1.3333, "x": -33.62, "curve": "stepped"}, {"time": 1.9167, "x": -33.62, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 2.1667} + ] }, - "@leg-back-left": {"rotate": [{"angle": 14.26, "curve": "stepped"}, {"time": 0.2167, "angle": 14.26, "curve": 0, "c2": 0.1, "c3": 0.847}, {"time": 0.3333, "angle": -11.75}]}, - "@leg-front-left": {"rotate": [{"angle": 14.58, "curve": "stepped"}, {"time": 0.2167, "angle": 14.58, "curve": 0, "c2": 0.1, "c3": 0.847}, {"time": 0.3333, "angle": 20.14}]}, - "@leg-front-right": {"rotate": [{"angle": 12.31, "curve": "stepped"}, {"time": 0.2167, "angle": 12.31, "curve": 0, "c2": 0.1, "c3": 0.847}, {"time": 0.3333, "angle": -30.3}]}, "tail": { "rotate": [ - {"curve": 0, "c2": 0.6, "c3": 0.237}, {"time": 0.1667, "angle": -18.5, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "angle": 4.16, "curve": 0, "c2": 0.3, "c3": 0.54}, - {"time": 0.5} + {"curve": 0, "c2": 0.3, "c3": 0.546}, {"time": 0.25, "angle": 20.35, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.4167, "angle": 15.85, "curve": 0.317, "c3": 0.693}, + {"time": 0.4833, "angle": 17.35, "curve": 0.317, "c3": 0.693}, {"time": 0.55, "angle": 15.85, "curve": 0.317, "c3": 0.693}, {"time": 0.6167, "angle": 18.35, "curve": 0.317, "c3": 0.693}, + {"time": 0.6833, "angle": 16.85, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.9167, "angle": 18.35, "curve": 0.317, "c3": 0.693}, + {"time": 1.3333, "angle": -9.65, "curve": 0.461, "c3": 0.543}, {"time": 1.9167, "angle": -13.65, "curve": 0.154, "c4": 0.9}, + {"time": 2.1667, "angle": 10.35, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 2.3333} ] }, - "@shadow": {"scale": [{"x": 1.3, "y": 1.3, "curve": 0, "c2": 0.4, "c3": 0.533}, {"time": 0.1667, "x": 0.9, "y": 0.9, "curve": 0.315, "c4": 0.8}, {"time": 0.3333}]}, - "body-fur-01": { + "body-fur-16": { "rotate": [ - {"angle": 13.56, "curve": 0.359, "c2": 0.43, "c3": 0.756}, {"time": 0.0833}, {"time": 0.25, "angle": -36.41, "curve": 0.25, "c3": 0.75}, - {"time": 0.45, "angle": 20.41, "curve": 0.26, "c3": 0.618, "c4": 0.44}, {"time": 0.5, "angle": 10.51} + {"angle": 3.47, "curve": 0.38, "c2": 0.53, "c3": 0.745}, {"time": 0.2167, "curve": 0.25, "c3": 0.75}, {"time": 0.55, "angle": 26.02, "curve": 0.25, "c3": 0.75}, + {"time": 1.05, "angle": -3.84, "curve": 0.25, "c3": 0.75}, {"time": 1.2167, "angle": 5.97, "curve": 0.25, "c3": 0.75}, {"time": 1.55, "angle": -24.66, "curve": 0.25, "c3": 0.75}, + {"time": 2.05, "angle": 8.43, "curve": 0.246, "c3": 0.633, "c4": 0.54}, {"time": 2.3333, "angle": 13.84} ] }, - "body-fur-02": { + "body-fur-15": { "rotate": [ - {"angle": 18.76, "curve": 0.356, "c2": 0.65, "c3": 0.691}, {"time": 0.0167, "angle": 20.41, "curve": 0.25, "c3": 0.625, "c4": 0.5}, - {"time": 0.0833, "angle": 10.2, "curve": 0.375, "c2": 0.5, "c3": 0.75}, {"time": 0.15}, {"time": 0.3167, "angle": -36.41, "curve": 0.246, "c3": 0.717, "c4": 0.86}, - {"time": 0.5, "angle": 13.84} + {"angle": 2.74, "curve": 0.382, "c2": 0.56, "c3": 0.739}, {"time": 0.1833, "curve": 0.25, "c3": 0.75}, {"time": 0.5167, "angle": 26.02, "curve": 0.25, "c3": 0.75}, + {"time": 1.0167, "angle": -3.84, "curve": 0.25, "c3": 0.75}, {"time": 1.1833, "angle": 5.97, "curve": 0.25, "c3": 0.75}, {"time": 1.5167, "angle": -24.66, "curve": 0.25, "c3": 0.75}, + {"time": 2.0167, "angle": 8.43, "curve": 0.244, "c3": 0.643, "c4": 0.58}, {"time": 2.3333, "angle": 13.33} ] }, - "body-fur-03": {"rotate": [{"angle": 20.41, "curve": 0.25, "c3": 0.75}, {"time": 0.1333}, {"time": 0.3, "angle": -36.41, "curve": 0.25, "c3": 0.75}, {"time": 0.5, "angle": 5.54}]}, - "body-fur-04": { + "body-fur-14": { "rotate": [ - {"angle": 4.28, "curve": 0.382, "c2": 0.57, "c3": 0.735}, {"time": 0.0667, "angle": 20.41, "curve": 0.25, "c3": 0.625, "c4": 0.5}, - {"time": 0.1333, "angle": 10.2, "curve": 0.375, "c2": 0.5, "c3": 0.75}, {"time": 0.2}, {"time": 0.3667, "angle": -36.41, "curve": 0.243, "c3": 0.649, "c4": 0.6}, - {"time": 0.5, "angle": 12.53} + {"angle": 3.43, "curve": 0.357, "c2": 0.42, "c3": 0.705, "c4": 0.8}, {"time": 0.15, "angle": 0.59, "curve": 0.366, "c2": 0.63, "c3": 0.703}, {"time": 0.2167}, + {"time": 0.55, "angle": 26.02, "curve": 0.25, "c3": 0.75}, {"time": 1.05, "angle": -3.84, "curve": 0.25, "c3": 0.75}, {"time": 1.2167, "angle": 5.97, "curve": 0.25, "c3": 0.75}, + {"time": 1.55, "angle": -24.66, "curve": 0.25, "c3": 0.75}, {"time": 2.05, "angle": 8.43, "curve": 0.246, "c3": 0.633, "c4": 0.54}, {"time": 2.3333, "angle": 13.33} ] }, - "body-fur-05": { + "body-fur-13": { "rotate": [ - {"angle": 16.64, "curve": 0.333, "c2": 0.33, "c3": 0.758}, {"time": 0.1}, {"time": 0.2667, "angle": -36.41, "curve": 0.25, "c3": 0.75}, - {"time": 0.4667, "angle": 20.41, "curve": 0.276, "c3": 0.621, "c4": 0.4}, {"time": 0.5, "angle": 6.86} + {"angle": 2.04, "curve": 0.382, "c2": 0.58, "c3": 0.731}, {"time": 0.15}, {"time": 0.4833, "angle": 26.02, "curve": 0.25, "c3": 0.75}, + {"time": 0.9833, "angle": -3.84, "curve": 0.25, "c3": 0.75}, {"time": 1.15, "angle": 5.97, "curve": 0.25, "c3": 0.75}, {"time": 1.4833, "angle": -24.66, "curve": 0.25, "c3": 0.75}, + {"time": 1.9833, "angle": 8.43, "curve": 0.243, "c3": 0.655, "c4": 0.63}, {"time": 2.3333, "angle": 11.59} ] }, - "body-fur-06": { + "body-fur-12": { "rotate": [ - {"angle": 14.93, "curve": 0.371, "c2": 0.62, "c3": 0.71}, {"time": 0.0333, "angle": 20.41, "curve": 0.25, "c3": 0.625, "c4": 0.5}, - {"time": 0.1, "angle": 10.2, "curve": 0.375, "c2": 0.5, "c3": 0.75}, {"time": 0.1667}, {"time": 0.3333, "angle": -36.41, "curve": 0.243, "c3": 0.689, "c4": 0.75}, - {"time": 0.5, "angle": 13.33} + {"angle": 1.4, "curve": 0.378, "c2": 0.61, "c3": 0.722}, {"time": 0.1167, "curve": 0.25, "c3": 0.75}, {"time": 0.45, "angle": 26.02, "curve": 0.25, "c3": 0.75}, + {"time": 0.95, "angle": -3.84, "curve": 0.25, "c3": 0.75}, {"time": 1.1167, "angle": 5.97, "curve": 0.25, "c3": 0.75}, {"time": 1.45, "angle": -24.66, "curve": 0.25, "c3": 0.75}, + {"time": 1.95, "angle": 8.43, "curve": 0.242, "c3": 0.671, "c4": 0.68}, {"time": 2.3333, "angle": 8.12} ] }, - "body-fur-07": { + "body-fur-11": { "rotate": [ - {"angle": 10.2, "curve": 0.375, "c2": 0.5, "c3": 0.75}, {"time": 0.0667, "curve": 0.25, "c3": 0.75}, {"time": 0.2333, "angle": -36.41, "curve": 0.25, "c3": 0.75}, - {"time": 0.4333, "angle": 20.41, "curve": 0.25, "c3": 0.625, "c4": 0.5}, {"time": 0.5, "angle": 2.91} + {"angle": 0.81, "curve": 0.371, "c2": 0.62, "c3": 0.71}, {"time": 0.0833, "curve": 0.25, "c3": 0.75}, {"time": 0.4167, "angle": 26.02, "curve": 0.25, "c3": 0.75}, + {"time": 0.9167, "angle": -3.84, "curve": 0.25, "c3": 0.75}, {"time": 1.0833, "angle": 5.97, "curve": 0.25, "c3": 0.75}, {"time": 1.4167, "angle": -24.66, "curve": 0.25, "c3": 0.75}, + {"time": 1.9167, "angle": 8.43, "curve": 0.243, "c3": 0.689, "c4": 0.75}, {"time": 2.3333, "angle": 4.23} ] }, - "body-fur-08": { + "body-fur-10": { "rotate": [ - {"angle": 3.76, "curve": 0.379, "c2": 0.6, "c3": 0.724}, {"time": 0.0333}, {"time": 0.2, "angle": -36.41, "curve": 0.25, "c3": 0.75}, - {"time": 0.4, "angle": 20.41, "curve": 0.242, "c3": 0.667, "c4": 0.67}, {"time": 0.5, "angle": -0.91} + {"angle": 0.36, "curve": 0.36, "c2": 0.64, "c3": 0.695}, {"time": 0.05, "curve": 0.25, "c3": 0.75}, {"time": 0.3833, "angle": 26.02, "curve": 0.25, "c3": 0.75}, + {"time": 0.8833, "angle": -3.84, "curve": 0.25, "c3": 0.75}, {"time": 1.05, "angle": 5.97, "curve": 0.25, "c3": 0.75}, {"time": 1.3833, "angle": -24.66, "curve": 0.25, "c3": 0.75}, + {"time": 1.8833, "angle": 8.43, "curve": 0.245, "c3": 0.711, "c4": 0.83}, {"time": 2.3333, "angle": 0.34} ] }, "body-fur-09": { "rotate": [ - {"angle": 16.68, "curve": 0.314, "c2": 0.27, "c3": 0.657, "c4": 0.64}, {"time": 0.0333, "angle": 10.2, "curve": 0.375, "c2": 0.5, "c3": 0.75}, {"time": 0.1}, - {"time": 0.2667, "angle": -36.41, "curve": 0.25, "c3": 0.75}, {"time": 0.4667, "angle": 20.41, "curve": 0.276, "c3": 0.621, "c4": 0.4}, {"time": 0.5, "angle": 6.86} + {"angle": 2.01, "curve": 0.355, "c2": 0.42, "c3": 0.693, "c4": 0.77}, {"time": 0.0833, "angle": 0.59, "curve": 0.366, "c2": 0.63, "c3": 0.703}, {"time": 0.15}, + {"time": 0.4833, "angle": 26.02, "curve": 0.25, "c3": 0.75}, {"time": 0.9833, "angle": -3.84, "curve": 0.25, "c3": 0.75}, {"time": 1.15, "angle": 5.97, "curve": 0.25, "c3": 0.75}, + {"time": 1.4833, "angle": -24.66, "curve": 0.25, "c3": 0.75}, {"time": 1.9833, "angle": 8.43, "curve": 0.243, "c3": 0.655, "c4": 0.63}, {"time": 2.3333, "angle": 6.86} ] }, - "body-fur-10": { + "body-fur-08": { "rotate": [ - {"angle": 6.85, "curve": 0.382, "c2": 0.56, "c3": 0.74}, {"time": 0.05, "curve": 0.25, "c3": 0.75}, {"time": 0.2167, "angle": -36.41, "curve": 0.25, "c3": 0.75}, - {"time": 0.4167, "angle": 20.41, "curve": 0.244, "c3": 0.641, "c4": 0.57}, {"time": 0.5, "angle": 0.34} + {"angle": 0.81, "curve": 0.371, "c2": 0.62, "c3": 0.71}, {"time": 0.0833}, {"time": 0.4167, "angle": 26.02, "curve": 0.25, "c3": 0.75}, + {"time": 0.9167, "angle": -3.84, "curve": 0.25, "c3": 0.75}, {"time": 1.0833, "angle": 5.97, "curve": 0.25, "c3": 0.75}, {"time": 1.4167, "angle": -24.66, "curve": 0.25, "c3": 0.75}, + {"time": 1.9167, "angle": 8.43, "curve": 0.243, "c3": 0.689, "c4": 0.75}, {"time": 2.3333, "angle": -0.91} ] }, - "body-fur-11": { + "body-fur-07": { "rotate": [ - {"angle": 13.56, "curve": 0.359, "c2": 0.43, "c3": 0.756}, {"time": 0.0833, "curve": 0.25, "c3": 0.75}, {"time": 0.25, "angle": -36.41, "curve": 0.25, "c3": 0.75}, - {"time": 0.45, "angle": 20.41, "curve": 0.26, "c3": 0.618, "c4": 0.44}, {"time": 0.5, "angle": 4.23} + {"angle": 0.19, "curve": 0.352, "c2": 0.65, "c3": 0.687}, {"time": 0.0333, "curve": 0.25, "c3": 0.75}, {"time": 0.3667, "angle": 26.02, "curve": 0.25, "c3": 0.75}, + {"time": 0.8667, "angle": -3.84, "curve": 0.25, "c3": 0.75}, {"time": 1.0333, "angle": 5.97, "curve": 0.25, "c3": 0.75}, {"time": 1.3667, "angle": -24.66, "curve": 0.25, "c3": 0.75}, + {"time": 1.8667, "angle": 8.43, "curve": 0.246, "c3": 0.723, "c4": 0.88}, {"time": 2.3333, "angle": 2.91} ] }, - "body-fur-12": { + "body-fur-06": { "rotate": [ - {"angle": 19.13, "curve": 0.298, "c2": 0.2, "c3": 0.756}, {"time": 0.1167, "curve": 0.25, "c3": 0.75}, {"time": 0.2833, "angle": -36.41, "curve": 0.25, "c3": 0.75}, - {"time": 0.4833, "angle": 20.41, "curve": 0.299, "c3": 0.636, "c4": 0.36}, {"time": 0.5, "angle": 8.12} + {"angle": 1.69, "curve": 0.352, "c2": 0.41, "c3": 0.688, "c4": 0.76}, {"time": 0.0667, "angle": 0.59, "curve": 0.366, "c2": 0.63, "c3": 0.703}, {"time": 0.1333}, + {"time": 0.4667, "angle": 26.02, "curve": 0.25, "c3": 0.75}, {"time": 0.9667, "angle": -3.84, "curve": 0.25, "c3": 0.75}, {"time": 1.1333, "angle": 5.97, "curve": 0.25, "c3": 0.75}, + {"time": 1.4667, "angle": -24.66, "curve": 0.25, "c3": 0.75}, {"time": 1.9667, "angle": 8.43, "curve": 0.242, "c3": 0.663, "c4": 0.65}, {"time": 2.3333, "angle": 13.33} ] }, - "body-fur-13": { + "body-fur-05": { "rotate": [ - {"angle": 18.76, "curve": 0.356, "c2": 0.65, "c3": 0.691}, {"time": 0.0167, "angle": 20.41, "curve": 0.25, "c3": 0.75}, {"time": 0.15, "curve": 0.25, "c3": 0.75}, - {"time": 0.3167, "angle": -36.41, "curve": 0.246, "c3": 0.717, "c4": 0.86}, {"time": 0.5, "angle": 11.59} + {"angle": 0.59, "curve": 0.366, "c2": 0.63, "c3": 0.703}, {"time": 0.0667}, {"time": 0.4, "angle": 26.02, "curve": 0.25, "c3": 0.75}, + {"time": 0.9, "angle": -3.84, "curve": 0.25, "c3": 0.75}, {"time": 1.0667, "angle": 5.97, "curve": 0.25, "c3": 0.75}, {"time": 1.4, "angle": -24.66, "curve": 0.25, "c3": 0.75}, + {"time": 1.9, "angle": 8.43, "curve": 0.244, "c3": 0.7, "c4": 0.79}, {"time": 2.3333, "angle": 6.86} ] }, - "body-fur-14": { + "body-fur-04": { "rotate": [ - {"angle": -1.74, "curve": 0.381, "c2": 0.54, "c3": 0.744}, {"time": 0.0833, "angle": 20.41, "curve": 0.25, "c3": 0.625, "c4": 0.5}, - {"time": 0.15, "angle": 10.2, "curve": 0.375, "c2": 0.5, "c3": 0.75}, {"time": 0.2167, "curve": 0.25, "c3": 0.75}, - {"time": 0.3833, "angle": -36.41, "curve": 0.246, "c3": 0.635, "c4": 0.55}, {"time": 0.5, "angle": 13.33} + {"angle": 2.35, "curve": 0.356, "c2": 0.42, "c3": 0.696, "c4": 0.78}, {"time": 0.1, "angle": 0.59, "curve": 0.366, "c2": 0.63, "c3": 0.703}, {"time": 0.1667}, + {"time": 0.5, "angle": 26.02, "curve": 0.25, "c3": 0.75}, {"time": 1, "angle": -3.84, "curve": 0.25, "c3": 0.75}, {"time": 1.1667, "angle": 5.97, "curve": 0.25, "c3": 0.75}, + {"time": 1.5, "angle": -24.66, "curve": 0.25, "c3": 0.75}, {"time": 2, "angle": 8.43, "curve": 0.243, "c3": 0.649, "c4": 0.6}, {"time": 2.3333, "angle": 12.53} ] }, - "body-fur-15": { + "body-fur-03": { "rotate": [ - {"angle": 9.93, "curve": 0.379, "c2": 0.6, "c3": 0.724}, {"time": 0.05, "angle": 20.41, "curve": 0.25, "c3": 0.75}, {"time": 0.1833, "curve": 0.25, "c3": 0.75}, - {"time": 0.35, "angle": -36.41, "curve": 0.242, "c3": 0.667, "c4": 0.67}, {"time": 0.5, "angle": 13.33} + {"angle": 1.1, "curve": 0.375, "c2": 0.62, "c3": 0.716}, {"time": 0.1}, {"time": 0.4333, "angle": 26.02, "curve": 0.25, "c3": 0.75}, + {"time": 0.9333, "angle": -3.84, "curve": 0.25, "c3": 0.75}, {"time": 1.1, "angle": 5.97, "curve": 0.25, "c3": 0.75}, {"time": 1.4333, "angle": -24.66, "curve": 0.25, "c3": 0.75}, + {"time": 1.9333, "angle": 8.43, "curve": 0.243, "c3": 0.68, "c4": 0.71}, {"time": 2.3333, "angle": 5.54} ] }, - "body-fur-16": { + "body-fur-02": { "rotate": [ - {"angle": -1.74, "curve": 0.381, "c2": 0.54, "c3": 0.744}, {"time": 0.0833, "angle": 20.41, "curve": 0.25, "c3": 0.75}, {"time": 0.2167, "curve": 0.25, "c3": 0.75}, - {"time": 0.3833, "angle": -36.41, "curve": 0.246, "c3": 0.635, "c4": 0.55}, {"time": 0.5, "angle": 13.84} + {"angle": 3.06, "curve": 0.358, "c2": 0.42, "c3": 0.702, "c4": 0.8}, {"time": 0.1333, "angle": 0.59, "curve": 0.366, "c2": 0.63, "c3": 0.703}, {"time": 0.2, "curve": 0.25, "c3": 0.75}, + {"time": 0.5333, "angle": 26.02, "curve": 0.25, "c3": 0.75}, {"time": 1.0333, "angle": -3.84, "curve": 0.25, "c3": 0.75}, {"time": 1.2, "angle": 5.97, "curve": 0.25, "c3": 0.75}, + {"time": 1.5333, "angle": -24.66, "curve": 0.25, "c3": 0.75}, {"time": 2.0333, "angle": 8.43, "curve": 0.245, "c3": 0.637, "c4": 0.56}, {"time": 2.3333, "angle": 13.84} + ] + }, + "body-fur-01": { + "rotate": [ + {"angle": 1.71, "curve": 0.38, "c2": 0.59, "c3": 0.727}, {"time": 0.1333, "curve": 0.25, "c3": 0.75}, {"time": 0.4667, "angle": 26.02, "curve": 0.25, "c3": 0.75}, + {"time": 0.9667, "angle": -3.84, "curve": 0.25, "c3": 0.75}, {"time": 1.1333, "angle": 5.97, "curve": 0.25, "c3": 0.75}, {"time": 1.4667, "angle": -24.66, "curve": 0.25, "c3": 0.75}, + {"time": 1.9667, "angle": 8.43, "curve": 0.242, "c3": 0.663, "c4": 0.65}, {"time": 2.3333, "angle": 10.51} ] } } }, - "3188102483": { - "slots": {"eyes": {"attachment": [{"name": "eyes-shut"}]}}, + "1055348841": { + "slots": { + "eyes": {"attachment": [{"time": 0.3, "name": "eyes-angry"}, {"time": 1.2333, "name": "eyes"}]}, + "mouth": {"attachment": [{"time": 0.3, "name": "mouth-bite"}, {"time": 1.2333, "name": "mouth"}]} + }, "bones": { "@pivot-back": { - "translate": [ - {"y": 0.06, "curve": 0.387, "c3": 0.314}, {"time": 0.2167, "y": -17.94, "curve": 0.387, "c3": 0.314}, {"time": 0.45, "y": 0.06, "curve": 0.387, "c3": 0.314}, - {"time": 0.6667, "y": -17.94, "curve": 0.387, "c3": 0.314}, {"time": 0.9, "y": 0.06, "curve": 0.387, "c3": 0.314}, {"time": 1.1167, "y": -17.94, "curve": 0.387, "c3": 0.314}, - {"time": 1.3333, "y": 0.06} + "rotate": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1, "angle": 6, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.2, "angle": -6, "curve": 0.315, "c4": 0.8}, + {"time": 0.3, "angle": 5.5, "curve": 0.317, "c3": 0.693}, {"time": 0.3833, "angle": 4.5, "curve": 0.317, "c3": 0.693}, {"time": 0.4667, "angle": 5.5, "curve": 0.317, "c3": 0.693}, + {"time": 0.55, "angle": 4.5, "curve": 0.317, "c3": 0.693}, {"time": 0.6333, "angle": 5.5, "curve": 0.317, "c3": 0.693}, {"time": 0.7167, "angle": 4.5, "curve": 0.317, "c3": 0.693}, + {"time": 0.8, "angle": 5.5, "curve": 0.317, "c3": 0.693}, {"time": 0.8833, "angle": 4.5, "curve": 0.317, "c3": 0.693}, {"time": 0.9667, "angle": 5.5, "curve": 0.317, "c3": 0.693}, + {"time": 1.05, "angle": 4.5, "curve": 0.317, "c3": 0.693}, {"time": 1.1333, "angle": 5.5, "curve": 0.317, "c3": 0.693}, {"time": 1.2167, "angle": 6, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 1.3167, "angle": -3, "curve": 0.315, "c4": 0.8}, {"time": 1.4167} ], - "scale": [ - {"curve": 0.387, "c3": 0.314}, {"time": 0.2167, "y": 0.98, "curve": 0.387, "c3": 0.314}, {"time": 0.45, "curve": 0.387, "c3": 0.314}, - {"time": 0.6667, "y": 0.98, "curve": 0.387, "c3": 0.314}, {"time": 0.9, "curve": 0.387, "c3": 0.314}, {"time": 1.1167, "y": 0.98, "curve": 0.387, "c3": 0.314}, {"time": 1.3333} + "translate": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1, "y": 4.69, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.2, "y": 43.73, "curve": 0.315, "c4": 0.8}, + {"time": 0.3, "y": 3.84, "curve": "stepped"}, {"time": 1.2167, "y": 3.84, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1.3167, "y": 43.73, "curve": 0.315, "c4": 0.8}, {"time": 1.4167} ] }, "@leg-front-left": { - "rotate": [ - {"curve": 0, "c2": 0.1, "c3": 0.843}, {"time": 0.1167, "angle": -12.07, "curve": 0.161, "c3": 0.854}, {"time": 0.2167, "angle": -2.63}, - {"time": 0.3333, "angle": 7.79, "curve": 0.079, "c4": 0.95}, {"time": 0.45, "curve": 0, "c2": 0.1, "c3": 0.843}, {"time": 0.55, "angle": -12.07, "curve": 0.161, "c3": 0.854}, - {"time": 0.6667, "angle": -2.63}, {"time": 0.7667, "angle": 7.79, "curve": 0.079, "c4": 0.95}, {"time": 0.8833, "curve": 0, "c2": 0.1, "c3": 0.843}, - {"time": 1, "angle": -12.07, "curve": 0.161, "c3": 0.854}, {"time": 1.1, "angle": -2.63}, {"time": 1.2167, "angle": 7.79, "curve": 0.079, "c4": 0.95}, {"time": 1.3333} + "translate": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1, "x": -1.28, "y": -14.48, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.2, "curve": 0.315, "c4": 0.8}, + {"time": 0.3, "x": -1.28, "y": -14.48, "curve": 0.317, "c3": 0.693}, {"time": 0.3833, "x": -1.02, "y": -10.26, "curve": 0.317, "c3": 0.693}, + {"time": 0.4667, "x": -1.22, "y": -13.05, "curve": 0.317, "c3": 0.693}, {"time": 0.55, "x": -1.02, "y": -10.26, "curve": 0.317, "c3": 0.693}, + {"time": 0.6333, "x": -1.22, "y": -13.05, "curve": 0.317, "c3": 0.693}, {"time": 0.7167, "x": -1.02, "y": -10.26, "curve": 0.317, "c3": 0.693}, + {"time": 0.8, "x": -1.22, "y": -13.05, "curve": 0.317, "c3": 0.693}, {"time": 0.8833, "x": -1.02, "y": -10.26, "curve": 0.317, "c3": 0.693}, + {"time": 0.9667, "x": -1.22, "y": -13.05, "curve": 0.317, "c3": 0.693}, {"time": 1.05, "x": -1.02, "y": -10.26, "curve": 0.317, "c3": 0.693}, + {"time": 1.1333, "x": -1.22, "y": -13.05, "curve": 0.317, "c3": 0.693}, {"time": 1.2167, "x": -1.28, "y": -14.48, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1.3167} ] }, "@leg-front-right": { - "rotate": [ - {"curve": 0, "c2": 0.1, "c3": 0.843}, {"time": 0.1167, "angle": -12.07, "curve": 0.161, "c3": 0.854}, {"time": 0.2167, "angle": -2.63}, - {"time": 0.3333, "angle": 7.79, "curve": 0.079, "c4": 0.95}, {"time": 0.45, "curve": 0, "c2": 0.1, "c3": 0.843}, {"time": 0.55, "angle": -12.07, "curve": 0.161, "c3": 0.854}, - {"time": 0.6667, "angle": -2.63}, {"time": 0.7667, "angle": 7.79, "curve": 0.079, "c4": 0.95}, {"time": 0.8833, "curve": 0, "c2": 0.1, "c3": 0.843}, - {"time": 1, "angle": -12.07, "curve": 0.161, "c3": 0.854}, {"time": 1.1, "angle": -2.63}, {"time": 1.2167, "angle": 7.79, "curve": 0.079, "c4": 0.95}, {"time": 1.3333} + "translate": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1, "x": -2.46, "y": -27.93, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.2, "curve": 0.315, "c4": 0.8}, + {"time": 0.3, "x": -2.46, "y": -27.93, "curve": 0.317, "c3": 0.693}, {"time": 0.3833, "x": -2.06, "y": -21.45, "curve": 0.317, "c3": 0.693}, + {"time": 0.4667, "x": -2.44, "y": -26.54, "curve": 0.317, "c3": 0.693}, {"time": 0.55, "x": -2.06, "y": -21.45, "curve": 0.317, "c3": 0.693}, + {"time": 0.6333, "x": -2.44, "y": -26.54, "curve": 0.317, "c3": 0.693}, {"time": 0.7167, "x": -2.06, "y": -21.45, "curve": 0.317, "c3": 0.693}, + {"time": 0.8, "x": -2.44, "y": -26.54, "curve": 0.317, "c3": 0.693}, {"time": 0.8833, "x": -2.06, "y": -21.45, "curve": 0.317, "c3": 0.693}, + {"time": 0.9667, "x": -2.44, "y": -26.54, "curve": 0.317, "c3": 0.693}, {"time": 1.05, "x": -2.06, "y": -21.45, "curve": 0.317, "c3": 0.693}, + {"time": 1.1333, "x": -2.44, "y": -26.54, "curve": 0.317, "c3": 0.693}, {"time": 1.2167, "x": -2.46, "y": -27.93, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1.3167} ] }, - "@leg-back-left": { - "rotate": [ - {"curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.1167, "angle": 8.89, "curve": 0.161, "c3": 0.854}, {"time": 0.2167, "angle": 0.78}, - {"time": 0.3333, "angle": -7.35, "curve": 0.079, "c4": 0.95}, {"time": 0.45, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.55, "angle": 8.89, "curve": 0.161, "c3": 0.854}, - {"time": 0.6667, "angle": 0.78}, {"time": 0.7667, "angle": -7.35, "curve": 0.079, "c4": 0.95}, {"time": 0.8833, "curve": 0, "c2": 0.1, "c3": 0.85}, - {"time": 1, "angle": 8.89, "curve": 0.161, "c3": 0.854}, {"time": 1.1, "angle": 0.78}, {"time": 1.2167, "angle": -7.35, "curve": 0.079, "c4": 0.95}, {"time": 1.3333} + "@pivot-main": { + "translate": [ + {"time": 0.1, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.3, "x": -154.22, "curve": "stepped"}, {"time": 1.2167, "x": -154.22, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 1.4167} + ] + }, + "leg-front-left-IK": {"translate": [{"time": 1.2167, "curve": 0.315, "c4": 0.8}, {"time": 1.3167, "x": -61.13, "curve": 0.315, "c4": 0.8}, {"time": 1.4167}]}, + "leg-front-right-IK": {"translate": [{"time": 1.2167, "curve": 0.315, "c4": 0.8}, {"time": 1.3167, "x": -61.13, "curve": 0.315, "c4": 0.8}, {"time": 1.4167}]}, + "@shadow": { + "translate": [ + {"time": 0.1, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.3, "x": -162.84, "curve": "stepped"}, {"time": 1.2167, "x": -162.84, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 1.4167} + ], + "scale": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1, "x": 1.1, "y": 1.1, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.2, "x": 0.92, "y": 0.92, "curve": 0.315, "c4": 0.8}, + {"time": 0.3, "x": 1.1, "y": 1.1, "curve": 0.317, "c3": 0.693}, {"time": 0.3833, "x": 1.06, "y": 1.06, "curve": 0.317, "c3": 0.693}, + {"time": 0.4667, "x": 1.1, "y": 1.1, "curve": 0.317, "c3": 0.693}, {"time": 0.55, "x": 1.06, "y": 1.06, "curve": 0.317, "c3": 0.693}, + {"time": 0.6333, "x": 1.1, "y": 1.1, "curve": 0.317, "c3": 0.693}, {"time": 0.7167, "x": 1.06, "y": 1.06, "curve": 0.317, "c3": 0.693}, + {"time": 0.8, "x": 1.1, "y": 1.1, "curve": 0.317, "c3": 0.693}, {"time": 0.8833, "x": 1.06, "y": 1.06, "curve": 0.317, "c3": 0.693}, + {"time": 0.9667, "x": 1.1, "y": 1.1, "curve": 0.317, "c3": 0.693}, {"time": 1.05, "x": 1.06, "y": 1.06, "curve": 0.317, "c3": 0.693}, + {"time": 1.1333, "x": 1.1, "y": 1.1, "curve": "stepped"}, {"time": 1.2167, "x": 1.1, "y": 1.1, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 1.3167, "x": 0.92, "y": 0.92, "curve": 0.315, "c4": 0.8}, {"time": 1.4167} ] }, "tail": { "rotate": [ - {"curve": 0, "c2": 0.05, "c3": 0.658}, {"time": 0.3333, "angle": -10.75, "curve": 0.304, "c3": 0.689}, {"time": 0.7333, "angle": 3.03}, - {"time": 1.05, "angle": 5.39, "curve": 0.234, "c4": 0.9}, {"time": 1.3333} + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1, "angle": 16.7, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.2, "angle": -16.65, "curve": 0.315, "c4": 0.8}, + {"time": 0.3, "angle": 17.85, "curve": 0.317, "c3": 0.693}, {"time": 0.4333, "angle": 15.5, "curve": 0.317, "c3": 0.693}, {"time": 0.5667, "angle": 17.85, "curve": 0.317, "c3": 0.693}, + {"time": 0.7, "angle": 15.5, "curve": 0.317, "c3": 0.693}, {"time": 0.8333, "angle": 17.85, "curve": 0.317, "c3": 0.693}, {"time": 0.95, "angle": 15.5, "curve": 0.317, "c3": 0.693}, + {"time": 1.0833, "angle": 17.85, "curve": 0.317, "c3": 0.693}, {"time": 1.2167, "angle": 15.5, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 1.3167, "angle": -14.65, "curve": 0.315, "c4": 0.8}, {"time": 1.4167} ] }, - "@shadow": { - "scale": [ - {"curve": 0.387, "c3": 0.314}, {"time": 0.2167, "x": 1.1, "y": 1.1, "curve": 0.387, "c3": 0.314}, {"time": 0.45, "curve": 0.387, "c3": 0.314}, - {"time": 0.6667, "x": 1.1, "y": 1.1, "curve": 0.387, "c3": 0.314}, {"time": 0.9, "curve": 0.387, "c3": 0.314}, {"time": 1.1167, "x": 1.1, "y": 1.1, "curve": 0.387, "c3": 0.314}, - {"time": 1.3333} + "back": { + "rotate": [ + {"time": 0.3, "curve": 0.306, "c3": 0.695}, {"time": 0.4833, "angle": 5.93, "curve": 0.306, "c3": 0.695}, {"time": 0.65, "curve": 0.306, "c3": 0.695}, + {"time": 0.8333, "angle": 5.93, "curve": 0.306, "c3": 0.695}, {"time": 1.0167, "curve": 0.306, "c3": 0.695}, {"time": 1.2167, "angle": 5.93, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 1.4167} ] }, "body-fur-16": { "rotate": [ - {"angle": -14.56, "curve": 0.354, "c2": 0.65, "c3": 0.688}, {"time": 0.0167, "angle": -15.12, "curve": 0.25, "c3": 0.75}, {"time": 0.2333, "angle": 7.75, "curve": 0.25, "c3": 0.75}, - {"time": 0.45, "angle": -14.99, "curve": 0.25, "c3": 0.75}, {"time": 0.6833, "angle": 7.75, "curve": 0.25, "c3": 0.75}, {"time": 0.9, "angle": -14.48, "curve": 0.25, "c3": 0.75}, - {"time": 1.1167, "angle": 7.75, "curve": 0.246, "c3": 0.721, "c4": 0.87}, {"time": 1.3333, "angle": -14.56} + {"angle": -0.44, "curve": 0.283, "c2": 0.14, "c3": 0.754}, {"time": 0.1833, "angle": -15.12, "curve": 0.25, "c3": 0.75}, {"time": 0.2667, "angle": 13.82, "curve": 0.25, "c3": 0.75}, + {"time": 0.3833, "angle": -26.73, "curve": 0.25, "c3": 0.75}, {"time": 0.5167, "angle": 21.85, "curve": 0.25, "c3": 0.75}, {"time": 0.75, "angle": -18.74, "curve": 0.25, "c3": 0.75}, + {"time": 0.9833, "angle": 0.46, "curve": 0.25, "c3": 0.75}, {"time": 1.2, "angle": -18.54, "curve": 0.25, "c3": 0.75}, {"time": 1.4167, "angle": 13.84} ] }, "body-fur-15": { "rotate": [ - {"angle": -11.38, "curve": 0.329, "c2": 0.32, "c3": 0.758}, {"time": 0.1667, "angle": 7.75, "curve": 0.25, "c3": 0.75}, {"time": 0.3833, "angle": -14.99, "curve": 0.25, "c3": 0.75}, - {"time": 0.6167, "angle": 7.75, "curve": 0.25, "c3": 0.75}, {"time": 0.8333, "angle": -14.48, "curve": 0.25, "c3": 0.75}, {"time": 1.05, "angle": 7.75, "curve": 0.25, "c3": 0.75}, - {"time": 1.2833, "angle": -15.12, "curve": 0.279, "c3": 0.622, "c4": 0.39}, {"time": 1.3333, "angle": -11.38} + {"angle": -2.79, "curve": 0.333, "c2": 0.33, "c3": 0.758}, {"time": 0.15, "angle": -15.12, "curve": 0.25, "c3": 0.75}, {"time": 0.2333, "angle": 13.82, "curve": 0.25, "c3": 0.75}, + {"time": 0.35, "angle": -26.73, "curve": 0.25, "c3": 0.75}, {"time": 0.4833, "angle": 21.85, "curve": 0.25, "c3": 0.75}, {"time": 0.7167, "angle": -18.74, "curve": 0.25, "c3": 0.75}, + {"time": 0.95, "angle": 0.46, "curve": 0.25, "c3": 0.75}, {"time": 1.1667, "angle": -18.54, "curve": 0.25, "c3": 0.75}, {"time": 1.3667, "curve": 0.276, "c3": 0.621, "c4": 0.4}, + {"time": 1.4167, "angle": 13.33} ] }, "body-fur-14": { "rotate": [ - {"angle": -9.98, "curve": 0.381, "c2": 0.59, "c3": 0.729}, {"time": 0.0667, "angle": -15.12, "curve": 0.245, "c3": 0.64, "c4": 0.57}, - {"time": 0.2, "angle": -0.2, "curve": 0.382, "c2": 0.55, "c3": 0.741}, {"time": 0.2833, "angle": 7.75, "curve": 0.25, "c3": 0.75}, - {"time": 0.5, "angle": -14.99, "curve": 0.25, "c3": 0.75}, {"time": 0.7333, "angle": 7.75, "curve": 0.25, "c3": 0.75}, {"time": 0.95, "angle": -14.48, "curve": 0.25, "c3": 0.75}, - {"time": 1.1667, "angle": 7.75, "curve": 0.243, "c3": 0.658, "c4": 0.64}, {"time": 1.3333, "angle": -9.98} + {"curve": 0.242, "c3": 0.667, "c4": 0.67}, {"time": 0.15, "angle": -12.33, "curve": 0.379, "c2": 0.6, "c3": 0.724}, {"time": 0.2, "angle": -15.12}, + {"time": 0.2833, "angle": 13.82, "curve": 0.25, "c3": 0.75}, {"time": 0.4, "angle": -26.73, "curve": 0.25, "c3": 0.75}, {"time": 0.5333, "angle": 21.85, "curve": 0.25, "c3": 0.75}, + {"time": 0.7667, "angle": -18.74, "curve": 0.25, "c3": 0.75}, {"time": 1, "angle": 0.46, "curve": 0.25, "c3": 0.75}, {"time": 1.2167, "angle": -18.54, "curve": 0.25, "c3": 0.75}, + {"time": 1.4167, "angle": 13.33} ] }, "body-fur-13": { "rotate": [ - {"angle": -14.51, "curve": 0.281, "c2": 0.13, "c3": 0.754}, {"time": 0.2, "angle": 7.75, "curve": 0.25, "c3": 0.75}, {"time": 0.4167, "angle": -14.99, "curve": 0.25, "c3": 0.75}, - {"time": 0.65, "angle": 7.75, "curve": 0.25, "c3": 0.75}, {"time": 0.8667, "angle": -14.48, "curve": 0.25, "c3": 0.75}, {"time": 1.0833, "angle": 7.75, "curve": 0.25, "c3": 0.75}, - {"time": 1.3167, "angle": -15.12, "curve": 0.311, "c3": 0.645, "c4": 0.35}, {"time": 1.3333, "angle": -14.51} + {"angle": -2.79, "curve": 0.333, "c2": 0.33, "c3": 0.758}, {"time": 0.15, "angle": -15.12}, {"time": 0.2333, "angle": 13.82, "curve": 0.25, "c3": 0.75}, + {"time": 0.35, "angle": -26.73, "curve": 0.25, "c3": 0.75}, {"time": 0.4833, "angle": 21.85, "curve": 0.25, "c3": 0.75}, {"time": 0.7167, "angle": -18.74, "curve": 0.25, "c3": 0.75}, + {"time": 0.95, "angle": 0.46, "curve": 0.25, "c3": 0.75}, {"time": 1.1667, "angle": -18.54, "curve": 0.25, "c3": 0.75}, {"time": 1.3667, "curve": 0.276, "c3": 0.621, "c4": 0.4}, + {"time": 1.4167, "angle": 11.59} ] }, "body-fur-12": { "rotate": [ - {"angle": -7.16, "curve": 0.36, "c2": 0.43, "c3": 0.755}, {"time": 0.1333, "angle": 7.75, "curve": 0.25, "c3": 0.75}, {"time": 0.35, "angle": -14.99, "curve": 0.25, "c3": 0.75}, - {"time": 0.5833, "angle": 7.75, "curve": 0.25, "c3": 0.75}, {"time": 0.8, "angle": -14.48, "curve": 0.25, "c3": 0.75}, {"time": 1.0167, "angle": 7.75, "curve": 0.25, "c3": 0.75}, - {"time": 1.25, "angle": -15.12, "curve": 0.259, "c3": 0.618, "c4": 0.45}, {"time": 1.3333, "angle": -7.16} + {"angle": -5.89, "curve": 0.365, "c2": 0.45, "c3": 0.754}, {"time": 0.1167, "angle": -15.12, "curve": 0.25, "c3": 0.75}, {"time": 0.2, "angle": 13.82, "curve": 0.25, "c3": 0.75}, + {"time": 0.3167, "angle": -26.73, "curve": 0.25, "c3": 0.75}, {"time": 0.45, "angle": 21.85, "curve": 0.25, "c3": 0.75}, {"time": 0.6833, "angle": -18.74, "curve": 0.25, "c3": 0.75}, + {"time": 0.9167, "angle": 0.46, "curve": 0.25, "c3": 0.75}, {"time": 1.1333, "angle": -18.54, "curve": 0.25, "c3": 0.75}, {"time": 1.3333, "curve": 0.256, "c3": 0.619, "c4": 0.46}, + {"time": 1.4167, "angle": 8.12} ] }, "body-fur-11": { "rotate": [ - {"angle": -2.52, "curve": 0.378, "c2": 0.52, "c3": 0.747}, {"time": 0.1, "angle": 7.75, "curve": 0.25, "c3": 0.75}, {"time": 0.3167, "angle": -14.99, "curve": 0.25, "c3": 0.75}, - {"time": 0.55, "angle": 7.75, "curve": 0.25, "c3": 0.75}, {"time": 0.7667, "angle": -14.48, "curve": 0.25, "c3": 0.75}, {"time": 0.9833, "angle": 7.75, "curve": 0.25, "c3": 0.75}, - {"time": 1.2167, "angle": -15.12, "curve": 0.248, "c3": 0.629, "c4": 0.52}, {"time": 1.3333, "angle": -2.52} + {"angle": -9.22, "curve": 0.381, "c2": 0.54, "c3": 0.744}, {"time": 0.0833, "angle": -15.12, "curve": 0.25, "c3": 0.75}, {"time": 0.1667, "angle": 13.82, "curve": 0.25, "c3": 0.75}, + {"time": 0.2833, "angle": -26.73, "curve": 0.25, "c3": 0.75}, {"time": 0.4167, "angle": 21.85, "curve": 0.25, "c3": 0.75}, {"time": 0.65, "angle": -18.74, "curve": 0.25, "c3": 0.75}, + {"time": 0.8833, "angle": 0.46, "curve": 0.25, "c3": 0.75}, {"time": 1.1, "angle": -18.54, "curve": 0.25, "c3": 0.75}, {"time": 1.3, "curve": 0.246, "c3": 0.635, "c4": 0.55}, + {"time": 1.4167, "angle": 4.23} ] }, "body-fur-10": { "rotate": [ - {"angle": 1.99, "curve": 0.382, "c2": 0.58, "c3": 0.732}, {"time": 0.0667, "angle": 7.75, "curve": 0.25, "c3": 0.75}, {"time": 0.2833, "angle": -14.99, "curve": 0.25, "c3": 0.75}, - {"time": 0.5167, "angle": 7.75, "curve": 0.25, "c3": 0.75}, {"time": 0.7333, "angle": -14.48, "curve": 0.25, "c3": 0.75}, {"time": 0.95, "angle": 7.75, "curve": 0.25, "c3": 0.75}, - {"time": 1.1833, "angle": -15.12, "curve": 0.243, "c3": 0.654, "c4": 0.62}, {"time": 1.3333, "angle": 1.99} + {"angle": -12.33, "curve": 0.379, "c2": 0.6, "c3": 0.724}, {"time": 0.05, "angle": -15.12, "curve": 0.25, "c3": 0.75}, {"time": 0.1333, "angle": 13.82, "curve": 0.25, "c3": 0.75}, + {"time": 0.25, "angle": -26.73, "curve": 0.25, "c3": 0.75}, {"time": 0.3833, "angle": 21.85, "curve": 0.25, "c3": 0.75}, {"time": 0.6167, "angle": -18.74, "curve": 0.25, "c3": 0.75}, + {"time": 0.85, "angle": 0.46, "curve": 0.25, "c3": 0.75}, {"time": 1.0667, "angle": -18.54, "curve": 0.25, "c3": 0.75}, {"time": 1.2667, "curve": 0.242, "c3": 0.667, "c4": 0.67}, + {"time": 1.4167, "angle": 0.34} ] }, "body-fur-09": { "rotate": [ - {"angle": -7.12, "curve": 0.329, "c2": 0.32, "c3": 0.671, "c4": 0.68}, {"time": 0.05, "angle": -0.2, "curve": 0.382, "c2": 0.55, "c3": 0.741}, - {"time": 0.1333, "angle": 7.75, "curve": 0.25, "c3": 0.75}, {"time": 0.35, "angle": -14.99, "curve": 0.25, "c3": 0.75}, {"time": 0.5833, "angle": 7.75, "curve": 0.25, "c3": 0.75}, - {"time": 0.8, "angle": -14.48, "curve": 0.25, "c3": 0.75}, {"time": 1.0167, "angle": 7.75, "curve": 0.25, "c3": 0.75}, - {"time": 1.25, "angle": -15.12, "curve": 0.259, "c3": 0.618, "c4": 0.45}, {"time": 1.3333, "angle": -7.12} + {"angle": -9.27, "curve": 0.344, "c2": 0.37, "c3": 0.682, "c4": 0.72}, {"time": 0.0333, "angle": -12.33, "curve": 0.379, "c2": 0.6, "c3": 0.724}, + {"time": 0.0833, "angle": -15.12, "curve": 0.25, "c3": 0.75}, {"time": 0.1667, "angle": 13.82, "curve": 0.25, "c3": 0.75}, {"time": 0.2833, "angle": -26.73, "curve": 0.25, "c3": 0.75}, + {"time": 0.4167, "angle": 21.85, "curve": 0.25, "c3": 0.75}, {"time": 0.65, "angle": -18.74, "curve": 0.25, "c3": 0.75}, {"time": 0.8833, "angle": 0.46, "curve": 0.25, "c3": 0.75}, + {"time": 1.1, "angle": -18.54, "curve": 0.25, "c3": 0.75}, {"time": 1.3, "curve": 0.246, "c3": 0.635, "c4": 0.55}, {"time": 1.4167, "angle": 6.86} ] }, "body-fur-08": { "rotate": [ - {"angle": 4.01, "curve": 0.378, "c2": 0.61, "c3": 0.721}, {"time": 0.05, "angle": 7.75, "curve": 0.25, "c3": 0.75}, {"time": 0.2667, "angle": -14.99, "curve": 0.25, "c3": 0.75}, - {"time": 0.5, "angle": 7.75, "curve": 0.25, "c3": 0.75}, {"time": 0.7167, "angle": -14.48, "curve": 0.25, "c3": 0.75}, {"time": 0.9333, "angle": 7.75, "curve": 0.25, "c3": 0.75}, - {"time": 1.1667, "angle": -15.12, "curve": 0.242, "c3": 0.671, "c4": 0.68}, {"time": 1.3333, "angle": 4.01} + {"angle": -13.66, "curve": 0.371, "c2": 0.62, "c3": 0.71}, {"time": 0.0333, "angle": -15.12}, {"time": 0.1167, "angle": 13.82, "curve": 0.25, "c3": 0.75}, + {"time": 0.2333, "angle": -26.73, "curve": 0.25, "c3": 0.75}, {"time": 0.3667, "angle": 21.85, "curve": 0.25, "c3": 0.75}, {"time": 0.6, "angle": -18.74, "curve": 0.25, "c3": 0.75}, + {"time": 0.8333, "angle": 0.46, "curve": 0.25, "c3": 0.75}, {"time": 1.05, "angle": -18.54, "curve": 0.25, "c3": 0.75}, {"time": 1.25, "curve": 0.243, "c3": 0.689, "c4": 0.75}, + {"time": 1.4167, "angle": -0.91} ] }, "body-fur-07": { "rotate": [ - {"angle": -0.2, "curve": 0.382, "c2": 0.55, "c3": 0.741}, {"time": 0.0833, "angle": 7.75, "curve": 0.25, "c3": 0.75}, {"time": 0.3, "angle": -14.99, "curve": 0.25, "c3": 0.75}, - {"time": 0.5333, "angle": 7.75, "curve": 0.25, "c3": 0.75}, {"time": 0.75, "angle": -14.48, "curve": 0.25, "c3": 0.75}, {"time": 0.9667, "angle": 7.75, "curve": 0.25, "c3": 0.75}, - {"time": 1.2, "angle": -15.12, "curve": 0.245, "c3": 0.64, "c4": 0.57}, {"time": 1.3333, "angle": -0.2} + {"angle": -10.83, "curve": 0.382, "c2": 0.57, "c3": 0.735}, {"time": 0.0667, "angle": -15.12, "curve": 0.25, "c3": 0.75}, {"time": 0.15, "angle": 13.82, "curve": 0.25, "c3": 0.75}, + {"time": 0.2667, "angle": -26.73, "curve": 0.25, "c3": 0.75}, {"time": 0.4, "angle": 21.85, "curve": 0.25, "c3": 0.75}, {"time": 0.6333, "angle": -18.74, "curve": 0.25, "c3": 0.75}, + {"time": 0.8667, "angle": 0.46, "curve": 0.25, "c3": 0.75}, {"time": 1.0833, "angle": -18.54, "curve": 0.25, "c3": 0.75}, {"time": 1.2833, "curve": 0.243, "c3": 0.649, "c4": 0.6}, + {"time": 1.4167, "angle": 2.91} ] }, "body-fur-06": { "rotate": [ - {"angle": -14.49, "curve": 0.271, "c2": 0.12, "c3": 0.65, "c4": 0.61}, {"time": 0.1167, "angle": -0.2, "curve": 0.382, "c2": 0.55, "c3": 0.741}, - {"time": 0.2, "angle": 7.75, "curve": 0.25, "c3": 0.75}, {"time": 0.4167, "angle": -14.99, "curve": 0.25, "c3": 0.75}, {"time": 0.65, "angle": 7.75, "curve": 0.25, "c3": 0.75}, - {"time": 0.8667, "angle": -14.48, "curve": 0.25, "c3": 0.75}, {"time": 1.0833, "angle": 7.75, "curve": 0.25, "c3": 0.75}, - {"time": 1.3167, "angle": -15.12, "curve": 0.311, "c3": 0.645, "c4": 0.35}, {"time": 1.3333, "angle": -14.49} + {"angle": -2.81, "curve": 0.314, "c2": 0.27, "c3": 0.686, "c4": 0.73}, {"time": 0.1, "angle": -12.33, "curve": 0.379, "c2": 0.6, "c3": 0.724}, {"time": 0.15, "angle": -15.12}, + {"time": 0.2333, "angle": 13.82, "curve": 0.25, "c3": 0.75}, {"time": 0.35, "angle": -26.73, "curve": 0.25, "c3": 0.75}, {"time": 0.4833, "angle": 21.85, "curve": 0.25, "c3": 0.75}, + {"time": 0.7167, "angle": -18.74, "curve": 0.25, "c3": 0.75}, {"time": 0.95, "angle": 0.46, "curve": 0.25, "c3": 0.75}, {"time": 1.1667, "angle": -18.54, "curve": 0.25, "c3": 0.75}, + {"time": 1.3667, "curve": 0.276, "c3": 0.621, "c4": 0.4}, {"time": 1.4167, "angle": 13.33} ] }, "body-fur-05": { "rotate": [ - {"angle": -4.84, "curve": 0.371, "c2": 0.48, "c3": 0.752}, {"time": 0.1167, "angle": 7.75, "curve": 0.25, "c3": 0.75}, {"time": 0.3333, "angle": -14.99, "curve": 0.25, "c3": 0.75}, - {"time": 0.5667, "angle": 7.75, "curve": 0.25, "c3": 0.75}, {"time": 0.7833, "angle": -14.48, "curve": 0.25, "c3": 0.75}, {"time": 1, "angle": 7.75, "curve": 0.25, "c3": 0.75}, - {"time": 1.2333, "angle": -15.12, "curve": 0.253, "c3": 0.622, "c4": 0.48}, {"time": 1.3333, "angle": -4.84} + {"angle": -7.56, "curve": 0.375, "c2": 0.5, "c3": 0.75}, {"time": 0.1, "angle": -15.12}, {"time": 0.1833, "angle": 13.82, "curve": 0.25, "c3": 0.75}, + {"time": 0.3, "angle": -26.73, "curve": 0.25, "c3": 0.75}, {"time": 0.4333, "angle": 21.85, "curve": 0.25, "c3": 0.75}, {"time": 0.6667, "angle": -18.74, "curve": 0.25, "c3": 0.75}, + {"time": 0.9, "angle": 0.46, "curve": 0.25, "c3": 0.75}, {"time": 1.1167, "angle": -18.54, "curve": 0.25, "c3": 0.75}, {"time": 1.3167, "curve": 0.25, "c3": 0.625, "c4": 0.5}, + {"time": 1.4167, "angle": 6.86} ] }, "body-fur-04": { "rotate": [ - {"angle": -14.56, "curve": 0.354, "c2": 0.65, "c3": 0.688}, {"time": 0.0167, "angle": -15.12, "curve": 0.245, "c3": 0.64, "c4": 0.57}, - {"time": 0.15, "angle": -0.2, "curve": 0.382, "c2": 0.55, "c3": 0.741}, {"time": 0.2333, "angle": 7.75, "curve": 0.25, "c3": 0.75}, - {"time": 0.45, "angle": -14.99, "curve": 0.25, "c3": 0.75}, {"time": 0.6833, "angle": 7.75, "curve": 0.25, "c3": 0.75}, {"time": 0.9, "angle": -14.48, "curve": 0.25, "c3": 0.75}, - {"time": 1.1167, "angle": 7.75, "curve": 0.246, "c3": 0.721, "c4": 0.87}, {"time": 1.3333, "angle": -14.56} + {"angle": -0.48, "curve": 0.272, "c2": 0.12, "c3": 0.675, "c4": 0.7}, {"time": 0.1333, "angle": -12.33, "curve": 0.379, "c2": 0.6, "c3": 0.724}, {"time": 0.1833, "angle": -15.12}, + {"time": 0.2667, "angle": 13.82, "curve": 0.25, "c3": 0.75}, {"time": 0.3833, "angle": -26.73, "curve": 0.25, "c3": 0.75}, {"time": 0.5167, "angle": 21.85, "curve": 0.25, "c3": 0.75}, + {"time": 0.75, "angle": -18.74, "curve": 0.25, "c3": 0.75}, {"time": 0.9833, "angle": 0.46, "curve": 0.25, "c3": 0.75}, {"time": 1.2, "angle": -18.54, "curve": 0.25, "c3": 0.75}, + {"time": 1.4167, "angle": 12.53} ] }, "body-fur-03": { "rotate": [ - {"angle": -9.36, "curve": 0.346, "c2": 0.38, "c3": 0.757}, {"time": 0.15, "angle": 7.75, "curve": 0.25, "c3": 0.75}, {"time": 0.3667, "angle": -14.99, "curve": 0.25, "c3": 0.75}, - {"time": 0.6, "angle": 7.75, "curve": 0.25, "c3": 0.75}, {"time": 0.8167, "angle": -14.48, "curve": 0.25, "c3": 0.75}, {"time": 1.0333, "angle": 7.75, "curve": 0.25, "c3": 0.75}, - {"time": 1.2667, "angle": -15.12, "curve": 0.268, "c3": 0.618, "c4": 0.42}, {"time": 1.3333, "angle": -9.36} + {"angle": -4.29, "curve": 0.351, "c2": 0.4, "c3": 0.757}, {"time": 0.1333, "angle": -15.12}, {"time": 0.2167, "angle": 13.82, "curve": 0.25, "c3": 0.75}, + {"time": 0.3333, "angle": -26.73, "curve": 0.25, "c3": 0.75}, {"time": 0.4667, "angle": 21.85, "curve": 0.25, "c3": 0.75}, {"time": 0.7, "angle": -18.74, "curve": 0.25, "c3": 0.75}, + {"time": 0.9333, "angle": 0.46, "curve": 0.25, "c3": 0.75}, {"time": 1.15, "angle": -18.54, "curve": 0.25, "c3": 0.75}, {"time": 1.35, "curve": 0.265, "c3": 0.618, "c4": 0.43}, + {"time": 1.4167, "angle": 5.54} ] }, "body-fur-02": { "rotate": [ - {"angle": -11.79, "curve": 0.376, "c2": 0.61, "c3": 0.718}, {"time": 0.05, "angle": -15.12, "curve": 0.245, "c3": 0.64, "c4": 0.57}, - {"time": 0.1833, "angle": -0.2, "curve": 0.382, "c2": 0.55, "c3": 0.741}, {"time": 0.2667, "angle": 7.75, "curve": 0.25, "c3": 0.75}, - {"time": 0.4833, "angle": -14.99, "curve": 0.25, "c3": 0.75}, {"time": 0.7167, "angle": 7.75, "curve": 0.25, "c3": 0.75}, {"time": 0.9333, "angle": -14.48, "curve": 0.25, "c3": 0.75}, - {"time": 1.15, "angle": 7.75, "curve": 0.243, "c3": 0.676, "c4": 0.7}, {"time": 1.3333, "angle": -11.79} + {"angle": -5.94, "curve": 0.338, "c2": 0.35, "c3": 0.688, "c4": 0.73}, {"time": 0.0667, "angle": -12.33, "curve": 0.379, "c2": 0.6, "c3": 0.724}, {"time": 0.1167, "angle": -15.12}, + {"time": 0.2, "angle": 13.82, "curve": 0.25, "c3": 0.75}, {"time": 0.3167, "angle": -26.73, "curve": 0.25, "c3": 0.75}, {"time": 0.45, "angle": 21.85, "curve": 0.25, "c3": 0.75}, + {"time": 0.6833, "angle": -18.74, "curve": 0.25, "c3": 0.75}, {"time": 0.9167, "angle": 0.46, "curve": 0.25, "c3": 0.75}, {"time": 1.1333, "angle": -18.54, "curve": 0.25, "c3": 0.75}, + {"time": 1.3333, "curve": 0.256, "c3": 0.619, "c4": 0.46}, {"time": 1.4167, "angle": 13.84} ] }, "body-fur-01": { "rotate": [ - {"angle": -13.15, "curve": 0.307, "c2": 0.24, "c3": 0.756}, {"time": 0.1833, "angle": 7.75, "curve": 0.25, "c3": 0.75}, {"time": 0.4, "angle": -14.99, "curve": 0.25, "c3": 0.75}, - {"time": 0.6333, "angle": 7.75, "curve": 0.25, "c3": 0.75}, {"time": 0.85, "angle": -14.48, "curve": 0.25, "c3": 0.75}, {"time": 1.0667, "angle": 7.75, "curve": 0.25, "c3": 0.75}, - {"time": 1.3, "angle": -15.12, "curve": 0.293, "c3": 0.631, "c4": 0.37}, {"time": 1.3333, "angle": -13.15} + {"angle": -10.83, "curve": 0.382, "c2": 0.57, "c3": 0.735}, {"time": 0.0667, "angle": -15.12, "curve": 0.25, "c3": 0.75}, {"time": 0.15, "angle": 13.82, "curve": 0.25, "c3": 0.75}, + {"time": 0.2667, "angle": -26.73, "curve": 0.25, "c3": 0.75}, {"time": 0.4, "angle": 21.85, "curve": 0.25, "c3": 0.75}, {"time": 0.6333, "angle": -18.74, "curve": 0.25, "c3": 0.75}, + {"time": 0.8667, "angle": 0.46, "curve": 0.25, "c3": 0.75}, {"time": 1.0833, "angle": -18.54, "curve": 0.25, "c3": 0.75}, {"time": 1.2833, "curve": 0.243, "c3": 0.649, "c4": 0.6}, + {"time": 1.4167, "angle": 10.51} ] } } }, - "3451796327": { - "slots": { - "eyes": {"attachment": [{"time": 0.05, "name": "eyes-angry"}, {"time": 0.8833, "name": "eyes"}]}, - "mouth": {"attachment": [{"time": 0.05, "name": "mouth-bite"}, {"time": 0.4667, "name": "mouth-open"}, {"time": 0.75, "name": "mouth-bite"}, {"time": 0.8833, "name": "mouth"}]} - }, + "765106252": { "bones": { - "@pivot-back": { - "rotate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "angle": 4, "curve": 0, "c2": 0.6, "c3": 0.237}, {"time": 0.3333, "angle": -8.88, "curve": 0.621, "c3": 0, "c4": 1.6}, - {"time": 0.6667, "angle": 8.17, "curve": 0.701, "c4": 0.5}, {"time": 0.8833, "angle": 5, "curve": 0.461, "c3": 0.543}, {"time": 1} + "body-fur-01": {"rotate": [{"angle": 10.51}]}, + "body-fur-02": {"rotate": [{"angle": 13.84}]}, + "body-fur-03": {"rotate": [{"angle": 5.54}]}, + "body-fur-04": {"rotate": [{"angle": 12.53}]}, + "body-fur-05": {"rotate": [{"angle": 6.86}]}, + "body-fur-06": {"rotate": [{"angle": 13.33}]}, + "body-fur-07": {"rotate": [{"angle": 2.91}]}, + "body-fur-08": {"rotate": [{"angle": -0.91}]}, + "body-fur-09": {"rotate": [{"angle": 6.86}]}, + "body-fur-10": {"rotate": [{"angle": 0.34}]}, + "body-fur-11": {"rotate": [{"angle": 4.23}]}, + "body-fur-12": {"rotate": [{"angle": 8.12}]}, + "body-fur-13": {"rotate": [{"angle": 11.59}]}, + "body-fur-14": {"rotate": [{"angle": 13.33}]}, + "body-fur-15": {"rotate": [{"angle": 13.33}]}, + "body-fur-16": {"rotate": [{"angle": 13.84}]} + } + }, + "3746342726": { + "slots": {"eyes": {"attachment": [{"name": "eyes-happy"}]}, "leg-front-left": {"attachment": [{"time": 0.2, "name": "leg-front-left-stretch"}, {"time": 0.5833, "name": "leg-front-left"}]}}, + "bones": { + "@leg-front-left": { + "translate": [ + {"x": -14.55, "y": -2.39, "curve": 0.374, "c2": 0.33, "c3": 0.72, "c4": 0.68}, {"time": 0.0333, "x": -24.69, "y": -4.71, "curve": 0.37, "c2": 0.57, "c3": 0.746}, + {"time": 0.1667, "x": -24.61, "y": -1.31, "curve": 0.37, "c2": 0.57, "c3": 0.746}, {"time": 0.3333, "x": 13.45, "y": -27.72, "curve": 0.345, "c2": 0.53, "c3": 0.751}, + {"time": 0.4833, "x": 40.66, "y": -4.9, "curve": 0.262, "c3": 0.63, "c4": 0.42}, {"time": 0.5667, "x": 49.25, "y": 8.32, "curve": 0.343, "c2": 0.3, "c3": 0.688, "c4": 0.65}, + {"time": 0.7, "x": 9.23, "y": 17.43, "curve": 0.255, "c3": 0.659, "c4": 0.47}, {"time": 0.75, "x": -14.55, "y": -2.39} ], + "scale": [ + {"curve": 0.459, "c2": 0.59, "c3": 0.838}, {"time": 0.0333, "x": 0.935, "curve": 0.331, "c3": 0.677, "c4": 0.4}, {"time": 0.0667, "x": 0.87, "curve": 0.464, "c4": 0.7}, {"time": 0.1667} + ] + }, + "leg-front-left-IK": { "translate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": 33.65, "y": -5, "curve": 0, "c2": 0.6, "c3": 0.237}, - {"time": 0.3333, "x": -62.54, "y": 309.16, "curve": 0.621, "c3": 0, "c4": 1.6}, {"time": 0.6667, "x": 12.32, "y": 268.04, "curve": 0.701, "c4": 0.5}, {"time": 0.8833} + {"x": 0.33, "y": 2.27, "curve": 0.154, "c4": 0.9}, {"time": 0.0833, "x": 32.98, "y": -4.28, "curve": 0.269, "c2": 0.57, "c3": 0.577}, + {"time": 0.1667, "x": 53.3, "y": 2.35, "curve": 0.461, "c3": 0.543}, {"time": 0.4167, "x": -85.44, "y": 106.83, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.5167, "x": -85.78, "y": 86.09, "curve": 0.143, "c3": 0.57, "c4": 0.46}, {"time": 0.7, "x": -26.89, "y": 8.67, "curve": 0, "c2": 0.09, "c3": 0.479, "c4": 0.56}, + {"time": 0.75, "x": 0.33, "y": 2.27} ] }, - "@leg-front-left": { + "leg-back-left-IK": { "translate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": -0.29, "y": -5.47, "curve": 0, "c2": 0.6, "c3": 0.237}, {"time": 0.3333, "curve": "stepped"}, - {"time": 0.6667, "curve": 0.701, "c4": 0.5}, {"time": 0.8833, "x": -0.95, "y": -14.45, "curve": 0.461, "c3": 0.543}, {"time": 1} + {"x": 17.64, "y": 16.11, "curve": 0.455, "c2": 0.58, "c3": 0.847}, {"time": 0.0333, "curve": 0, "c2": 0.1, "c3": 0.85}, + {"time": 0.2333, "x": -50.37, "curve": 0, "c2": 0.09, "c3": 0.466, "c4": 0.7}, {"time": 0.3, "x": 11.38, "y": 18.2, "curve": 0.177, "c2": 0.44, "c3": 0.617}, + {"time": 0.5333, "x": 56.74, "y": 103.8, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.6667, "x": 71.93, "y": 112.16, "curve": 0.315, "c4": 0.8}, {"time": 0.75, "x": 17.64, "y": 16.11} + ] + }, + "@shadow": { + "scale": [ + {"curve": 0.313, "c3": 0.699}, {"time": 0.25, "x": 0.94, "y": 0.94, "curve": 0.313, "c3": 0.699}, {"time": 0.4333, "x": 0.8, "y": 0.8, "curve": 0.315, "c4": 0.8}, {"time": 0.75} ] }, + "tail": { + "rotate": [{"curve": 0.161, "c3": 0.854}, {"time": 0.25, "angle": -20, "curve": 0, "c2": 0.3, "c3": 0.546}, {"time": 0.5, "angle": 4.21, "curve": 0.154, "c4": 0.9}, {"time": 0.75}] + }, "@leg-front-right": { "translate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": -1.07, "y": -20.09, "curve": 0, "c2": 0.6, "c3": 0.237}, {"time": 0.3333, "curve": "stepped"}, - {"time": 0.6667, "curve": 0.701, "c4": 0.5}, {"time": 0.8833, "x": -1.66, "y": -25.29, "curve": 0.461, "c3": 0.543}, {"time": 1} + {"x": 7.78, "y": -11.23, "curve": 0.649, "c2": 0.4, "c4": 0.74}, {"time": 0.0167, "x": -0.64, "y": -13.16, "curve": 0.313, "c3": 0.699}, + {"time": 0.1333, "x": -9.39, "y": -16.39, "curve": 0.346, "c2": 0.44, "c3": 0.699}, {"time": 0.3167, "x": -26.29, "y": 12.52, "curve": 0, "c2": 0.18, "c3": 0.424, "c4": 0.59}, + {"time": 0.4333, "x": 7.42, "y": -10.53, "curve": 0.316, "c2": 0.49, "c3": 0.751}, {"time": 0.6, "x": 37.87, "y": -4.31, "curve": 0.289, "c3": 0.884, "c4": 0.7}, + {"time": 0.75, "x": 7.78, "y": -11.23} ] }, - "@shadow": { + "leg-front-right-IK": { "translate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": 24.43, "curve": 0, "c2": 0.6, "c3": 0.237}, {"time": 0.3333, "x": -70.38, "curve": 0.621, "c3": 0, "c4": 1.4}, - {"time": 0.6667, "x": 5.15, "curve": 0.701, "c4": 0.5}, {"time": 0.8833, "x": -8.95, "curve": 0.461, "c3": 0.543}, {"time": 1} + {"x": -13.57, "y": 17.19, "curve": 0.645, "c2": 0.47, "c4": 0.81}, {"time": 0.0167, "curve": 0.313, "c3": 0.699}, {"time": 0.2667, "x": 52.85, "curve": 0, "c2": 0.3, "c3": 0.544}, + {"time": 0.5, "x": -85.89, "y": 125.19}, {"time": 0.6, "x": -87.57, "y": 110.89, "curve": 0.142, "c3": 0.858, "c4": 0.77}, {"time": 0.75, "x": -13.57, "y": 17.19} + ] + }, + "@leg-back-left": { + "translate": [ + {"x": -4.73, "y": 6.6, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.15, "x": 1.29, "y": -4.22, "curve": 0.44, "c2": 0.55, "c3": 0.858}, + {"time": 0.25, "x": 2.16, "y": 6.49, "curve": 0, "c2": 0.09, "c3": 0.466, "c4": 0.7}, {"time": 0.3, "x": -5.17, "y": 15.67, "curve": 0.218, "c2": 0.39, "c3": 0.738}, + {"time": 0.5333, "x": -14.09, "y": -7.98, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.6667, "x": -12.69, "y": -11.31, "curve": 0.315, "c4": 0.8}, {"time": 0.75, "x": -4.73, "y": 6.6} ], - "scale": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": 1.08, "y": 1.08, "curve": 0, "c2": 0.6, "c3": 0.237}, - {"time": 0.3333, "x": 0.85, "y": 0.85, "curve": 0.621, "c3": 0, "c4": 1.4}, {"time": 0.6667, "x": 0.9, "y": 0.9, "curve": 0.701, "c4": 0.5}, - {"time": 0.8833, "x": 1.1, "y": 1.1, "curve": 0.461, "c3": 0.543}, {"time": 1} + "scale": [{"curve": 0, "c2": 0.1, "c3": 0.457, "c4": 0.54}, {"time": 0.0667, "x": 0.837, "curve": 0.395, "c2": 0.49, "c3": 0.868}, {"time": 0.15}] + }, + "@pivot-back": { + "rotate": [ + {"angle": 3.74, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "angle": 1.5, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.25, "angle": -2, "curve": 0, "c2": 0.1, "c3": 0.85}, + {"time": 0.35, "angle": -5, "curve": 0.154, "c4": 0.9}, {"time": 0.6667, "angle": 5, "curve": 0.154, "c4": 0.9}, {"time": 0.75, "angle": 3.74} + ], + "translate": [ + {"y": 8, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "y": -10, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.25, "curve": 0, "c2": 0.1, "c3": 0.85}, + {"time": 0.5667, "y": 80.61, "curve": 0.154, "c4": 0.9}, {"time": 0.75, "y": 8} ] }, - "tail": { + "@pivot-main": {"scale": [{"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1333, "y": 0.85, "curve": 0.306, "c4": 0.8}, {"time": 0.25}]}, + "ear-right": { "rotate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "angle": 17.93, "curve": 0, "c2": 0.6, "c3": 0.237}, {"time": 0.3333, "angle": -15.3, "curve": 0.621, "c3": 0, "c4": 1.4}, - {"time": 0.6667, "angle": 24.81, "curve": 0.701, "c4": 0.5}, {"time": 0.8833, "angle": -15.84, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 1} + {"angle": 6.45, "curve": 0.306, "c3": 0.695}, {"time": 0.25, "angle": -6.15, "curve": 0.306, "c3": 0.695}, {"time": 0.5, "angle": -7.47, "curve": 0.306, "c3": 0.695}, + {"time": 0.75, "angle": 6.45} ] }, - "body-fur-16": { + "ear-left": { "rotate": [ - {"angle": -26.19, "curve": 0.25, "c3": 0.75}, {"time": 0.1, "curve": 0.25, "c3": 0.75}, {"time": 0.2667, "angle": 24.86, "curve": 0.25, "c3": 0.75}, - {"time": 0.5333, "angle": -36.65, "curve": 0.25, "c3": 0.75}, {"time": 0.6667, "angle": 38.65, "curve": 0.25, "c3": 0.75}, {"time": 0.8667, "curve": 0.25, "c3": 0.75}, - {"time": 1, "angle": 13.84} + {"angle": 6.45, "curve": 0.306, "c3": 0.695}, {"time": 0.25, "angle": -6.15, "curve": 0.306, "c3": 0.695}, {"time": 0.5, "angle": -7.47, "curve": 0.306, "c3": 0.695}, + {"time": 0.75, "angle": 6.45} ] }, - "body-fur-15": { + "back": {"rotate": [{"curve": 0.306, "c3": 0.695}, {"time": 0.25, "angle": 9.32, "curve": 0.306, "c3": 0.695}, {"time": 0.5, "angle": -5.11, "curve": 0.306, "c3": 0.695}, {"time": 0.75}]}, + "body-fur-01": { "rotate": [ - {"angle": -23.67, "curve": 0.311, "c2": 0.25, "c3": 0.757}, {"time": 0.0833, "curve": 0.25, "c3": 0.75}, {"time": 0.25, "angle": 24.86, "curve": 0.25, "c3": 0.75}, - {"time": 0.5167, "angle": -36.65, "curve": 0.25, "c3": 0.75}, {"time": 0.65, "angle": 38.65, "curve": 0.25, "c3": 0.75}, {"time": 0.85, "curve": 0.25, "c3": 0.75}, - {"time": 1, "angle": 13.33} + {"angle": 5.91, "curve": 0.389, "c2": 0.48, "c3": 0.708}, {"time": 0.2, "angle": -35.49}, {"time": 0.5833, "angle": 26.07, "curve": 0.389, "c2": 0.01, "c3": 0.715, "c4": 0.48}, + {"time": 0.75, "angle": 5.91} ] }, - "body-fur-14": { + "body-fur-02": { "rotate": [ - {"angle": -24.55, "curve": 0.364, "c2": 0.64, "c3": 0.701}, {"time": 0.0167, "angle": -26.19, "curve": 0.243, "c3": 0.649, "c4": 0.6}, - {"time": 0.0833, "angle": -7.43, "curve": 0.382, "c2": 0.57, "c3": 0.735}, {"time": 0.1167, "curve": 0.25, "c3": 0.75}, {"time": 0.2833, "angle": 24.86, "curve": 0.25, "c3": 0.75}, - {"time": 0.55, "angle": -36.65, "curve": 0.25, "c3": 0.75}, {"time": 0.6833, "angle": 38.65, "curve": 0.25, "c3": 0.75}, {"time": 0.8833, "curve": 0.244, "c3": 0.702, "c4": 0.8}, - {"time": 1, "angle": 13.33} + {"angle": 22.47, "curve": 0.397, "c2": 0.23, "c3": 0.719, "c4": 0.71}, {"time": 0.2, "angle": -19.23, "curve": 0.356, "c2": 0.59, "c3": 0.686}, {"time": 0.3, "angle": -35.49}, + {"time": 0.6833, "angle": 26.07, "curve": 0.355, "c2": 0.02, "c3": 0.687, "c4": 0.39}, {"time": 0.75, "angle": 22.47} ] }, - "body-fur-13": { + "body-fur-03": { "rotate": [ - {"angle": -23.67, "curve": 0.311, "c2": 0.25, "c3": 0.757}, {"time": 0.0833}, {"time": 0.25, "angle": 24.86, "curve": 0.25, "c3": 0.75}, - {"time": 0.5167, "angle": -36.65, "curve": 0.25, "c3": 0.75}, {"time": 0.65, "angle": 38.65, "curve": 0.25, "c3": 0.75}, {"time": 0.85, "curve": 0.25, "c3": 0.75}, - {"time": 1, "angle": 11.59} + {"angle": -6.24, "curve": 0.371, "c2": 0.54, "c3": 0.697}, {"time": 0.15, "angle": -35.49}, {"time": 0.5333, "angle": 26.07, "curve": 0.406, "c2": 0.01, "c3": 0.727, "c4": 0.55}, + {"time": 0.75, "angle": -6.24} ] }, - "body-fur-12": { + "body-fur-04": { "rotate": [ - {"angle": -18.76, "curve": 0.351, "c2": 0.4, "c3": 0.757}, {"time": 0.0667, "curve": 0.25, "c3": 0.75}, {"time": 0.2333, "angle": 24.86, "curve": 0.25, "c3": 0.75}, - {"time": 0.5, "angle": -36.65, "curve": 0.25, "c3": 0.75}, {"time": 0.6333, "angle": 38.65, "curve": 0.25, "c3": 0.75}, {"time": 0.8333, "curve": 0.25, "c3": 0.75}, - {"time": 0.9667, "angle": -26.19, "curve": 0.265, "c3": 0.618, "c4": 0.43}, {"time": 1, "angle": 8.12} + {"angle": 15.47, "curve": 0.379, "c2": 0.31, "c3": 0.706, "c4": 0.72}, {"time": 0.15, "angle": -19.23, "curve": 0.356, "c2": 0.59, "c3": 0.686}, {"time": 0.25, "angle": -35.49}, + {"time": 0.6333, "angle": 26.07, "curve": 0.372, "c2": 0.01, "c3": 0.702, "c4": 0.43}, {"time": 0.75, "angle": 15.47} ] }, - "body-fur-11": { + "body-fur-05": { "rotate": [ - {"angle": -13.1, "curve": 0.375, "c2": 0.5, "c3": 0.75}, {"time": 0.05, "curve": 0.25, "c3": 0.75}, {"time": 0.2167, "angle": 24.86, "curve": 0.25, "c3": 0.75}, - {"time": 0.4833, "angle": -36.65, "curve": 0.25, "c3": 0.75}, {"time": 0.6167, "angle": 38.65, "curve": 0.25, "c3": 0.75}, {"time": 0.8167, "curve": 0.25, "c3": 0.75}, - {"time": 0.95, "angle": -26.19, "curve": 0.25, "c3": 0.625, "c4": 0.5}, {"time": 1, "angle": 4.23} + {"angle": -19.23, "curve": 0.356, "c2": 0.59, "c3": 0.686}, {"time": 0.1, "angle": -35.49}, {"time": 0.4833, "angle": 26.07, "curve": 0.423, "c2": 0.01, "c3": 0.737, "c4": 0.65}, + {"time": 0.75, "angle": -19.23} ] }, - "body-fur-10": { + "body-fur-06": { "rotate": [ - {"angle": -7.43, "curve": 0.382, "c2": 0.57, "c3": 0.735}, {"time": 0.0333, "curve": 0.25, "c3": 0.75}, {"time": 0.2, "angle": 24.86, "curve": 0.25, "c3": 0.75}, - {"time": 0.4667, "angle": -36.65, "curve": 0.25, "c3": 0.75}, {"time": 0.6, "angle": 38.65, "curve": 0.25, "c3": 0.75}, {"time": 0.8, "curve": 0.25, "c3": 0.75}, - {"time": 0.9333, "angle": -26.19, "curve": 0.243, "c3": 0.649, "c4": 0.6}, {"time": 1, "angle": 0.34} + {"angle": 5.34, "curve": 0.362, "c2": 0.35, "c3": 0.692, "c4": 0.72}, {"time": 0.1, "angle": -19.23, "curve": 0.356, "c2": 0.59, "c3": 0.686}, + {"time": 0.2, "angle": -35.49, "curve": 0.25, "c3": 0.75}, {"time": 0.5833, "angle": 26.07, "curve": 0.389, "c2": 0.01, "c3": 0.715, "c4": 0.48}, {"time": 0.75, "angle": 5.34} ] }, - "body-fur-09": { + "body-fur-07": { "rotate": [ - {"angle": -23.66, "curve": 0.295, "c2": 0.21, "c3": 0.667, "c4": 0.67}, {"time": 0.05, "angle": -7.43, "curve": 0.382, "c2": 0.57, "c3": 0.735}, {"time": 0.0833}, - {"time": 0.25, "angle": 24.86, "curve": 0.25, "c3": 0.75}, {"time": 0.5167, "angle": -36.65, "curve": 0.25, "c3": 0.75}, {"time": 0.65, "angle": 38.65, "curve": 0.25, "c3": 0.75}, - {"time": 0.85, "curve": 0.25, "c3": 0.75}, {"time": 1, "angle": 6.86} + {"angle": -30.29, "curve": 0.343, "c2": 0.63, "c3": 0.676}, {"time": 0.05, "angle": -35.49, "curve": 0.25, "c3": 0.75}, + {"time": 0.4333, "angle": 26.07, "curve": 0.439, "c2": 0.01, "c3": 0.745, "c4": 0.79}, {"time": 0.75, "angle": -30.29} ] }, "body-fur-08": { + "rotate": [{"angle": -35.49, "curve": 0.455, "c2": 0.01, "c3": 0.75}, {"time": 0.3833, "angle": 26.07, "curve": 0.455, "c2": 0.01, "c3": 0.75}, {"time": 0.75, "angle": -35.49}] + }, + "body-fur-09": { "rotate": [ - {"angle": -13.1, "curve": 0.375, "c2": 0.5, "c3": 0.75}, {"time": 0.05}, {"time": 0.2167, "angle": 24.86, "curve": 0.25, "c3": 0.75}, - {"time": 0.4833, "angle": -36.65, "curve": 0.25, "c3": 0.75}, {"time": 0.6167, "angle": 38.65, "curve": 0.25, "c3": 0.75}, {"time": 0.8167, "curve": 0.25, "c3": 0.75}, - {"time": 0.95, "angle": -26.19, "curve": 0.25, "c3": 0.625, "c4": 0.5}, {"time": 1, "angle": -0.91} + {"angle": -19.23, "curve": 0.356, "c2": 0.59, "c3": 0.686}, {"time": 0.1, "angle": -35.49}, {"time": 0.4833, "angle": 26.07, "curve": 0.423, "c2": 0.01, "c3": 0.737, "c4": 0.65}, + {"time": 0.75, "angle": -19.23} ] }, - "body-fur-07": { + "body-fur-10": { "rotate": [ - {"angle": -2.53, "curve": 0.371, "c2": 0.62, "c3": 0.71}, {"time": 0.0167, "curve": 0.25, "c3": 0.75}, {"time": 0.1833, "angle": 24.86, "curve": 0.25, "c3": 0.75}, - {"time": 0.45, "angle": -36.65, "curve": 0.25, "c3": 0.75}, {"time": 0.5833, "angle": 38.65, "curve": 0.25, "c3": 0.75}, {"time": 0.7833, "curve": 0.25, "c3": 0.75}, - {"time": 0.9167, "angle": -26.19, "curve": 0.243, "c3": 0.689, "c4": 0.75}, {"time": 1, "angle": 2.91} + {"angle": -15.74, "curve": 0.346, "c2": 0.39, "c3": 0.678, "c4": 0.73}, {"time": 0.05, "angle": -27.05, "curve": 0.347, "c2": 0.62, "c3": 0.679}, + {"time": 0.1167, "angle": -35.49, "curve": 0.25, "c3": 0.75}, {"time": 0.5, "angle": 26.07, "curve": 0.417, "c2": 0.01, "c3": 0.734, "c4": 0.61}, {"time": 0.75, "angle": -15.74} ] }, - "body-fur-06": { + "body-fur-11": { "rotate": [ - {"angle": -18.74, "curve": 0.325, "c2": 0.31, "c3": 0.675, "c4": 0.69}, {"time": 0.0333, "angle": -7.43, "curve": 0.382, "c2": 0.57, "c3": 0.735}, {"time": 0.0667}, - {"time": 0.2333, "angle": 24.86, "curve": 0.25, "c3": 0.75}, {"time": 0.5, "angle": -36.65, "curve": 0.25, "c3": 0.75}, {"time": 0.6333, "angle": 38.65, "curve": 0.25, "c3": 0.75}, - {"time": 0.8333, "curve": 0.25, "c3": 0.75}, {"time": 0.9667, "angle": -26.19, "curve": 0.265, "c3": 0.618, "c4": 0.43}, {"time": 1, "angle": 13.33} + {"angle": -19.23, "curve": 0.356, "c2": 0.59, "c3": 0.686}, {"time": 0.1, "angle": -35.49, "curve": 0.25, "c3": 0.75}, + {"time": 0.4833, "angle": 26.07, "curve": 0.423, "c2": 0.01, "c3": 0.737, "c4": 0.65}, {"time": 0.75, "angle": -19.23} ] }, - "body-fur-05": { + "body-fur-12": { "rotate": [ - {"angle": -7.43, "curve": 0.382, "c2": 0.57, "c3": 0.735}, {"time": 0.0333}, {"time": 0.2, "angle": 24.86, "curve": 0.25, "c3": 0.75}, - {"time": 0.4667, "angle": -36.65, "curve": 0.25, "c3": 0.75}, {"time": 0.6, "angle": 38.65, "curve": 0.25, "c3": 0.75}, {"time": 0.8, "curve": 0.25, "c3": 0.75}, - {"time": 0.9333, "angle": -26.19, "curve": 0.243, "c3": 0.649, "c4": 0.6}, {"time": 1, "angle": 6.86} + {"angle": -2.04, "curve": 0.377, "c2": 0.52, "c3": 0.701}, {"time": 0.1667, "angle": -35.49, "curve": 0.25, "c3": 0.75}, + {"time": 0.55, "angle": 26.07, "curve": 0.4, "c2": 0.01, "c3": 0.723, "c4": 0.53}, {"time": 0.75, "angle": -2.04} ] }, - "body-fur-04": { + "body-fur-13": { "rotate": [ - {"angle": -23.66, "curve": 0.295, "c2": 0.21, "c3": 0.667, "c4": 0.67}, {"time": 0.05, "angle": -7.43, "curve": 0.382, "c2": 0.57, "c3": 0.735}, {"time": 0.0833}, - {"time": 0.25, "angle": 24.86, "curve": 0.25, "c3": 0.75}, {"time": 0.5167, "angle": -36.65, "curve": 0.25, "c3": 0.75}, {"time": 0.65, "angle": 38.65, "curve": 0.25, "c3": 0.75}, - {"time": 0.85, "curve": 0.25, "c3": 0.75}, {"time": 1, "angle": 12.53} + {"angle": 15.71, "curve": 0.349, "c2": 0.31, "c3": 0.681, "c4": 0.65}, {"time": 0.05, "angle": 5.91, "curve": 0.389, "c2": 0.48, "c3": 0.708}, + {"time": 0.25, "angle": -35.49, "curve": 0.25, "c3": 0.75}, {"time": 0.6333, "angle": 26.07, "curve": 0.372, "c2": 0.01, "c3": 0.702, "c4": 0.43}, {"time": 0.75, "angle": 15.71} ] }, - "body-fur-03": { + "body-fur-14": { "rotate": [ - {"angle": -13.1, "curve": 0.375, "c2": 0.5, "c3": 0.75}, {"time": 0.05}, {"time": 0.2167, "angle": 24.86, "curve": 0.25, "c3": 0.75}, - {"time": 0.4833, "angle": -36.65, "curve": 0.25, "c3": 0.75}, {"time": 0.6167, "angle": 38.65, "curve": 0.25, "c3": 0.75}, {"time": 0.8167, "curve": 0.25, "c3": 0.75}, - {"time": 0.95, "angle": -26.19, "curve": 0.25, "c3": 0.625, "c4": 0.5}, {"time": 1, "angle": 5.54} + {"angle": 25.81, "curve": 0.35, "c2": 0.15, "c3": 0.682, "c4": 0.51}, {"time": 0.05, "angle": 22.47, "curve": 0.397, "c2": 0.23, "c3": 0.719, "c4": 0.71}, + {"time": 0.25, "angle": -19.23, "curve": 0.356, "c2": 0.59, "c3": 0.686}, {"time": 0.35, "angle": -35.49}, + {"time": 0.7333, "angle": 26.07, "curve": 0.339, "c2": 0.05, "c3": 0.672, "c4": 0.4}, {"time": 0.75, "angle": 25.81} ] }, - "body-fur-02": { + "body-fur-15": { "rotate": [ - {"angle": -26.19, "curve": 0.243, "c3": 0.649, "c4": 0.6}, {"time": 0.0667, "angle": -7.43, "curve": 0.382, "c2": 0.57, "c3": 0.735}, {"time": 0.1}, - {"time": 0.2667, "angle": 24.86, "curve": 0.25, "c3": 0.75}, {"time": 0.5333, "angle": -36.65, "curve": 0.25, "c3": 0.75}, {"time": 0.6667, "angle": 38.65, "curve": 0.25, "c3": 0.75}, - {"time": 0.8667, "curve": 0.25, "c3": 0.75}, {"time": 1, "angle": 13.84} + {"angle": 12.91, "curve": 0.401, "c2": 0.42, "c3": 0.717}, {"time": 0.2333, "angle": -35.49, "curve": 0.25, "c3": 0.75}, + {"time": 0.6167, "angle": 26.07, "curve": 0.378, "c2": 0.01, "c3": 0.707, "c4": 0.45}, {"time": 0.75, "angle": 12.91} ] }, - "body-fur-01": { + "body-fur-16": { "rotate": [ - {"angle": -18.76, "curve": 0.351, "c2": 0.4, "c3": 0.757}, {"time": 0.0667}, {"time": 0.2333, "angle": 24.86, "curve": 0.25, "c3": 0.75}, - {"time": 0.5, "angle": -36.65, "curve": 0.25, "c3": 0.75}, {"time": 0.6333, "angle": 38.65, "curve": 0.25, "c3": 0.75}, {"time": 0.8333, "curve": 0.25, "c3": 0.75}, - {"time": 0.9667, "angle": -26.19, "curve": 0.265, "c3": 0.618, "c4": 0.43}, {"time": 1, "angle": 10.51} + {"angle": 20.54, "curve": 0.421, "c2": 0.32, "c3": 0.729}, {"time": 0.2833, "angle": -35.49, "curve": 0.25, "c3": 0.75}, + {"time": 0.6667, "angle": 26.07, "curve": 0.361, "c2": 0.01, "c3": 0.692, "c4": 0.4}, {"time": 0.75, "angle": 20.54} ] } - }, - "events": [{"time": 0.4667, "name": "start-attack"}] + } }, - "2081555660": { - "slots": { - "eyes": {"attachment": [{"time": 0.0833, "name": "eyes-angry"}, {"time": 0.6667, "name": "eyes-shut"}, {"time": 0.75, "name": "eyes"}]}, - "mouth": {"attachment": [{"time": 0.0833, "name": "mouth-bite"}, {"time": 0.35, "name": "mouth-open"}, {"time": 0.55, "name": "mouth-bite"}, {"time": 0.75, "name": "mouth"}]} - }, + "2477462439": { + "slots": {"leg-front-left": {"attachment": [{"time": 0.2, "name": "leg-front-left-stretch"}, {"time": 0.6667, "name": "leg-front-left"}]}}, "bones": { "@pivot-back": { - "rotate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "angle": 4, "curve": 0, "c2": 0.5, "c3": 0.3}, {"time": 0.3333, "angle": -23.77, "curve": "stepped"}, - {"time": 0.35, "angle": -29.82, "curve": 0.698, "c3": 0.541}, {"time": 0.5833, "angle": 3}, {"time": 0.7167, "angle": 4, "curve": 0, "c2": 0.09, "c3": 0.479, "c4": 0.56}, - {"time": 0.8167, "angle": -5.09, "curve": 0.416, "c2": 0.51, "c3": 0.865}, {"time": 0.9167} - ], "translate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": 33.65, "y": -5, "curve": 0, "c2": 0.5, "c3": 0.3}, {"time": 0.3333, "x": 80.56, "y": 137.85, "curve": "stepped"}, - {"time": 0.35, "x": 147.57, "y": 42.83, "curve": 0, "c2": 0.2, "c3": 0.686}, {"time": 0.5, "x": 206.93, "y": -26.82, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.5833, "x": 226.09}, - {"time": 0.7167, "x": 237.58, "y": 2, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.9167} + {"y": 8, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "y": -10, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.25, "curve": 0, "c2": 0.1, "c3": 0.85}, + {"time": 0.5833, "y": 80.61, "curve": 0.154, "c4": 0.9}, {"time": 0.75, "y": 8} ] }, - "@pivot-main": { + "@leg-front-left": { "translate": [ - {"time": 0.5833, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.7167, "x": 15, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.8167, "x": 7.5, "y": 59.4, "curve": 0.315, "c4": 0.8}, - {"time": 0.9167} + {"x": -14.55, "y": -2.39, "curve": 0.374, "c2": 0.33, "c3": 0.72, "c4": 0.68}, {"time": 0.0333, "x": -24.61, "y": -1.31, "curve": "stepped"}, + {"time": 0.1667, "x": -24.61, "y": -1.31, "curve": 0.37, "c2": 0.57, "c3": 0.746}, {"time": 0.3333, "x": 13.45, "y": -27.72, "curve": 0.345, "c2": 0.53, "c3": 0.751}, + {"time": 0.4833, "x": 40.66, "y": -4.9, "curve": 0.255, "c3": 0.673, "c4": 0.49}, {"time": 0.5833, "x": 39.16, "y": 14.5, "curve": 0.565, "c2": 0.41, "c4": 0.82}, + {"time": 0.6667, "x": 1.05, "y": 16.15, "curve": 0.255, "c3": 0.659, "c4": 0.47}, {"time": 0.75, "x": -14.55, "y": -2.39} + ], + "scale": [ + {"x": 0.969, "curve": 0.459, "c2": 0.59, "c3": 0.838}, {"time": 0.0333, "x": 0.961, "curve": 0.154, "c4": 0.9}, {"time": 0.1667, "x": 1.075, "curve": 0, "c2": 0.1, "c3": 0.85}, + {"time": 0.3333, "curve": "stepped"}, {"time": 0.6667, "curve": 0, "c2": 0.09, "c3": 0.589, "c4": 0.67}, {"time": 0.75, "x": 0.969} ] }, "leg-front-left-IK": { "translate": [ - {"time": 0.1667, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.3333, "x": 27.04, "y": 216.41, "curve": "stepped"}, {"time": 0.35, "x": 51.7, "y": 178.19, "curve": 0.384, "c3": 0.537}, - {"time": 0.5833, "x": 202.93}, {"time": 0.7, "x": 218.86, "y": 2.61, "curve": 0.315, "c4": 0.8}, {"time": 0.7667, "x": 145.27, "curve": 0.237, "c4": 0.8}, {"time": 0.9167} - ] - }, - "leg-front-right-IK": { - "translate": [ - {"time": 0.1667, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.3333, "x": 54.35, "y": 310.88, "curve": "stepped"}, {"time": 0.35, "x": 67.2, "y": 319.96, "curve": 0.384, "c3": 0.537}, - {"time": 0.5833, "x": 199.77}, {"time": 0.7, "x": 187.66, "curve": 0.315, "c4": 0.8}, {"time": 0.7667, "x": 143.69, "curve": 0.237, "c4": 0.8}, {"time": 0.9167} + {"x": 4.88, "y": 20.49, "curve": 0.416, "c2": 0.51, "c3": 0.865}, {"time": 0.0833, "x": 28.75, "y": 34.52, "curve": 0.269, "c2": 0.57, "c3": 0.577}, + {"time": 0.1667, "x": 31.44, "y": 44.28, "curve": 0.461, "c3": 0.543}, {"time": 0.4167, "x": -85.44, "y": 106.83}, + {"time": 0.5167, "x": -87.18, "y": 81.5, "curve": 0.143, "c3": 0.57, "c4": 0.46}, {"time": 0.6667, "x": -21.75, "y": 25.36, "curve": 0, "c2": 0.09, "c3": 0.479, "c4": 0.56}, + {"time": 0.75, "x": 4.88, "y": 20.49} ] }, "leg-back-left-IK": { "translate": [ - {"time": 0.1667, "curve": 0, "c2": 0.4, "c3": 0.383}, {"time": 0.3333, "x": 50.37, "y": 150.84, "curve": "stepped"}, {"time": 0.35, "x": 34.64, "y": 81.96, "curve": 0.306, "c4": 0.8}, - {"time": 0.5, "x": 185.62, "y": 1.08, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.7167, "x": 244.18, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.8167, "x": 108.59, "y": 18.82, "curve": 0.306, "c4": 0.8}, {"time": 0.9167} + {"x": 17.64, "y": 16.11, "curve": 0.455, "c2": 0.58, "c3": 0.847}, {"time": 0.0333, "curve": 0, "c2": 0.1, "c3": 0.85}, + {"time": 0.2333, "x": -50.37, "curve": 0, "c2": 0.09, "c3": 0.466, "c4": 0.7}, {"time": 0.3, "x": 11.38, "y": 18.2, "curve": 0.177, "c2": 0.44, "c3": 0.617}, + {"time": 0.5333, "x": 56.74, "y": 103.8, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.6667, "x": 71.93, "y": 112.16, "curve": 0.139, "c3": 0.671, "c4": 0.58}, + {"time": 0.75, "x": 17.64, "y": 16.11} ] }, - "@leg-front-right": { - "translate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": -1.03, "y": -19.32}, {"time": 0.3333, "curve": "stepped"}, {"time": 0.5833, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.7167, "x": 9.38, "y": 7.22}, {"time": 0.9167} + "@shadow": { + "scale": [ + {"curve": 0.313, "c3": 0.699}, {"time": 0.25, "x": 0.94, "y": 0.94, "curve": 0.313, "c3": 0.699}, {"time": 0.4333, "x": 0.8, "y": 0.8, "curve": 0.315, "c4": 0.8}, {"time": 0.75} ] }, - "@leg-front-left": { + "@pivot-main": {"scale": [{"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "y": 0.98, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.25}]}, + "@leg-front-right": { "translate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": -0.29, "y": -5.47}, {"time": 0.3333, "curve": "stepped"}, {"time": 0.5833, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.7167, "x": 6.3, "y": -2.41}, {"time": 0.9167} - ] - }, - "tail": { - "rotate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "angle": 19.35, "curve": 0, "c2": 0.4, "c3": 0.383}, {"time": 0.3333, "angle": -0.88, "curve": "stepped"}, - {"time": 0.35, "angle": -13.56, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.5, "angle": 0.52, "curve": 0, "c2": 0.3, "c3": 0.544}, - {"time": 0.7167, "angle": 19.32, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.8, "angle": -9.3, "curve": 0.313, "c3": 0.699}, {"time": 0.9167} + {"x": -0.64, "y": -13.16, "curve": 0.313, "c3": 0.654, "c4": 0.45}, {"time": 0.1167, "x": -9.39, "y": -16.39, "curve": 0.346, "c2": 0.44, "c3": 0.699}, + {"time": 0.3, "x": -26.29, "y": 12.52, "curve": 0, "c2": 0.18, "c3": 0.424, "c4": 0.59}, {"time": 0.4167, "x": 7.42, "y": -10.53, "curve": 0.316, "c2": 0.49, "c3": 0.751}, + {"time": 0.5833, "x": 37.87, "y": -4.31, "curve": 0.315, "c4": 0.8}, {"time": 0.75, "x": -0.64, "y": -13.16} ] }, - "@shadow": { + "@leg-back-left": { "translate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": 24.43, "curve": 0, "c2": 0.4, "c3": 0.383}, {"time": 0.3333, "x": 86.58, "curve": "stepped"}, - {"time": 0.35, "x": 154.34, "curve": 0.315, "c4": 0.8}, {"time": 0.5, "x": 208.2, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.5833, "x": 216.55}, - {"time": 0.7167, "x": 243.36, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.9167} + {"x": -4.73, "y": 6.6, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.15, "x": 1.29, "y": -4.22, "curve": 0.44, "c2": 0.55, "c3": 0.858}, + {"time": 0.25, "x": 2.16, "y": 6.49, "curve": 0, "c2": 0.09, "c3": 0.466, "c4": 0.7}, {"time": 0.3, "x": -5.17, "y": 15.67, "curve": 0.218, "c2": 0.39, "c3": 0.738}, + {"time": 0.5333, "x": -14.09, "y": -7.98, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.6667, "x": -12.69, "y": -11.31, "curve": 0.139, "c3": 0.671, "c4": 0.58}, + {"time": 0.75, "x": -4.73, "y": 6.6} ], - "scale": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": 1.08, "y": 1.08, "curve": 0, "c2": 0.4, "c3": 0.383}, {"time": 0.3333, "x": 0.92, "y": 0.92, "curve": "stepped"}, - {"time": 0.35, "x": 0.9, "y": 0.9, "curve": 0.315, "c4": 0.8}, {"time": 0.5, "x": 1.02, "y": 1.02, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.5833, "x": 1.08, "y": 1.08}, - {"time": 0.7167, "x": 1.1, "y": 1.1, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.9167} - ] + "scale": [{"curve": 0, "c2": 0.1, "c3": 0.457, "c4": 0.54}, {"time": 0.0667, "x": 0.837, "curve": 0.395, "c2": 0.49, "c3": 0.868}, {"time": 0.15}] }, - "body-fur-01": { - "rotate": [ - {"angle": -7.13, "curve": 0.375, "c2": 0.5, "c3": 0.75}, {"time": 0.0667}, {"time": 0.2333, "angle": 21.78, "curve": 0.25, "c3": 0.75}, - {"time": 0.3667, "angle": -6.87, "curve": 0.25, "c3": 0.75}, {"time": 0.4667, "angle": 28.66, "curve": 0.25, "c3": 0.75}, {"time": 0.5667, "angle": -32.59, "curve": 0.25, "c3": 0.75}, - {"time": 0.7333, "angle": 24.66, "curve": 0.25, "c3": 0.75}, {"time": 0.85, "angle": -14.25, "curve": 0.25, "c3": 0.625, "c4": 0.5}, {"time": 0.9167, "angle": 10.51} + "leg-front-right-IK": { + "translate": [ + {"curve": 0.313, "c3": 0.699}, {"time": 0.25, "x": 52.85, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.4833, "x": -85.89, "y": 125.19}, + {"time": 0.5833, "x": -87.57, "y": 110.89, "curve": 0.154, "c4": 0.9}, {"time": 0.75} ] }, - "body-fur-02": { + "body-fur-15": { "rotate": [ - {"angle": -11.6, "curve": 0.314, "c2": 0.27, "c3": 0.686, "c4": 0.73}, {"time": 0.0667, "angle": -2.63, "curve": 0.379, "c2": 0.6, "c3": 0.724}, {"time": 0.1}, - {"time": 0.2667, "angle": 21.78, "curve": 0.25, "c3": 0.75}, {"time": 0.4, "angle": -6.87, "curve": 0.25, "c3": 0.75}, {"time": 0.5, "angle": 28.66, "curve": 0.25, "c3": 0.75}, - {"time": 0.6, "angle": -32.59, "curve": 0.25, "c3": 0.75}, {"time": 0.7667, "angle": 24.66, "curve": 0.25, "c3": 0.75}, - {"time": 0.8833, "angle": -14.25, "curve": 0.276, "c3": 0.621, "c4": 0.4}, {"time": 0.9167, "angle": 13.84} + {"angle": 12.91, "curve": 0.401, "c2": 0.42, "c3": 0.717}, {"time": 0.2333, "angle": -35.49, "curve": 0.25, "c3": 0.75}, + {"time": 0.6167, "angle": 26.07, "curve": 0.378, "c2": 0.01, "c3": 0.707, "c4": 0.45}, {"time": 0.75, "angle": 12.91} ] }, - "body-fur-03": { + "body-fur-14": { "rotate": [ - {"angle": -4.79, "curve": 0.382, "c2": 0.56, "c3": 0.74}, {"time": 0.05}, {"time": 0.2167, "angle": 21.78, "curve": 0.25, "c3": 0.75}, - {"time": 0.35, "angle": -6.87, "curve": 0.25, "c3": 0.75}, {"time": 0.45, "angle": 28.66, "curve": 0.25, "c3": 0.75}, {"time": 0.55, "angle": -32.59, "curve": 0.25, "c3": 0.75}, - {"time": 0.7167, "angle": 24.66, "curve": 0.25, "c3": 0.75}, {"time": 0.8333, "angle": -14.25, "curve": 0.244, "c3": 0.641, "c4": 0.57}, {"time": 0.9167, "angle": 5.54} + {"angle": 25.81, "curve": 0.35, "c2": 0.15, "c3": 0.682, "c4": 0.51}, {"time": 0.05, "angle": 22.47, "curve": 0.397, "c2": 0.23, "c3": 0.719, "c4": 0.71}, + {"time": 0.25, "angle": -19.23, "curve": 0.356, "c2": 0.59, "c3": 0.686}, {"time": 0.35, "angle": -35.49}, + {"time": 0.7333, "angle": 26.07, "curve": 0.339, "c2": 0.05, "c3": 0.672, "c4": 0.4}, {"time": 0.75, "angle": 25.81} ] }, - "body-fur-04": { + "body-fur-11": { "rotate": [ - {"angle": -9.42, "curve": 0.333, "c2": 0.33, "c3": 0.688, "c4": 0.73}, {"time": 0.05, "angle": -2.63, "curve": 0.379, "c2": 0.6, "c3": 0.724}, {"time": 0.0833}, - {"time": 0.25, "angle": 21.78, "curve": 0.25, "c3": 0.75}, {"time": 0.3833, "angle": -6.87, "curve": 0.25, "c3": 0.75}, {"time": 0.4833, "angle": 28.66, "curve": 0.25, "c3": 0.75}, - {"time": 0.5833, "angle": -32.59, "curve": 0.25, "c3": 0.75}, {"time": 0.75, "angle": 24.66, "curve": 0.25, "c3": 0.75}, - {"time": 0.8667, "angle": -14.25, "curve": 0.26, "c3": 0.618, "c4": 0.44}, {"time": 0.9167, "angle": 12.53} + {"angle": -19.23, "curve": 0.356, "c2": 0.59, "c3": 0.686}, {"time": 0.1, "angle": -35.49, "curve": 0.25, "c3": 0.75}, + {"time": 0.4833, "angle": 26.07, "curve": 0.423, "c2": 0.01, "c3": 0.737, "c4": 0.65}, {"time": 0.75, "angle": -19.23} ] }, - "body-fur-05": { + "body-fur-09": { "rotate": [ - {"angle": -2.63, "curve": 0.379, "c2": 0.6, "c3": 0.724}, {"time": 0.0333, "curve": 0.25, "c3": 0.75}, {"time": 0.2, "angle": 21.78, "curve": 0.25, "c3": 0.75}, - {"time": 0.3333, "angle": -6.87, "curve": 0.25, "c3": 0.75}, {"time": 0.4333, "angle": 28.66, "curve": 0.25, "c3": 0.75}, {"time": 0.5333, "angle": -32.59, "curve": 0.25, "c3": 0.75}, - {"time": 0.7, "angle": 24.66, "curve": 0.25, "c3": 0.75}, {"time": 0.8167, "angle": -14.25, "curve": 0.242, "c3": 0.667, "c4": 0.67}, {"time": 0.9167, "angle": 6.86} + {"angle": -19.23, "curve": 0.356, "c2": 0.59, "c3": 0.686}, {"time": 0.1, "angle": -35.49}, {"time": 0.4833, "angle": 26.07, "curve": 0.423, "c2": 0.01, "c3": 0.737, "c4": 0.65}, + {"time": 0.75, "angle": -19.23} ] }, - "body-fur-06": { + "body-fur-12": { "rotate": [ - {"angle": -7.08, "curve": 0.343, "c2": 0.36, "c3": 0.686, "c4": 0.73}, {"time": 0.0333, "angle": -2.63, "curve": 0.379, "c2": 0.6, "c3": 0.724}, - {"time": 0.0667, "curve": 0.25, "c3": 0.75}, {"time": 0.2333, "angle": 21.78, "curve": 0.25, "c3": 0.75}, {"time": 0.3667, "angle": -6.87, "curve": 0.25, "c3": 0.75}, - {"time": 0.4667, "angle": 28.66, "curve": 0.25, "c3": 0.75}, {"time": 0.5667, "angle": -32.59, "curve": 0.25, "c3": 0.75}, {"time": 0.7333, "angle": 24.66, "curve": 0.25, "c3": 0.75}, - {"time": 0.85, "angle": -14.25, "curve": 0.25, "c3": 0.625, "c4": 0.5}, {"time": 0.9167, "angle": 13.33} + {"angle": -2.04, "curve": 0.377, "c2": 0.52, "c3": 0.701}, {"time": 0.1667, "angle": -35.49, "curve": 0.25, "c3": 0.75}, + {"time": 0.55, "angle": 26.07, "curve": 0.4, "c2": 0.01, "c3": 0.723, "c4": 0.53}, {"time": 0.75, "angle": -2.04} ] }, "body-fur-07": { "rotate": [ - {"angle": -0.89, "curve": 0.364, "c2": 0.64, "c3": 0.701}, {"time": 0.0167, "curve": 0.25, "c3": 0.75}, {"time": 0.1833, "angle": 21.78, "curve": 0.25, "c3": 0.75}, - {"time": 0.3167, "angle": -6.87, "curve": 0.25, "c3": 0.75}, {"time": 0.4167, "angle": 28.66, "curve": 0.25, "c3": 0.75}, {"time": 0.5167, "angle": -32.59, "curve": 0.25, "c3": 0.75}, - {"time": 0.6833, "angle": 24.66, "curve": 0.25, "c3": 0.75}, {"time": 0.8, "angle": -14.25, "curve": 0.244, "c3": 0.702, "c4": 0.8}, {"time": 0.9167, "angle": 2.91} + {"angle": -30.29, "curve": 0.343, "c2": 0.63, "c3": 0.676}, {"time": 0.05, "angle": -35.49, "curve": 0.25, "c3": 0.75}, + {"time": 0.4333, "angle": 26.07, "curve": 0.439, "c2": 0.01, "c3": 0.745, "c4": 0.79}, {"time": 0.75, "angle": -30.29} ] }, - "body-fur-08": { + "body-fur-01": { "rotate": [ - {"angle": -4.79, "curve": 0.382, "c2": 0.56, "c3": 0.74}, {"time": 0.05}, {"time": 0.2167, "angle": 21.78, "curve": 0.25, "c3": 0.75}, - {"time": 0.35, "angle": -6.87, "curve": 0.25, "c3": 0.75}, {"time": 0.45, "angle": 28.66, "curve": 0.25, "c3": 0.75}, {"time": 0.55, "angle": -32.59, "curve": 0.25, "c3": 0.75}, - {"time": 0.7167, "angle": 24.66, "curve": 0.25, "c3": 0.75}, {"time": 0.8333, "angle": -14.25, "curve": 0.244, "c3": 0.641, "c4": 0.57}, {"time": 0.9167, "angle": -0.91} + {"angle": 5.91, "curve": 0.389, "c2": 0.48, "c3": 0.708}, {"time": 0.2, "angle": -35.49}, {"time": 0.5833, "angle": 26.07, "curve": 0.389, "c2": 0.01, "c3": 0.715, "c4": 0.48}, + {"time": 0.75, "angle": 5.91} ] }, - "body-fur-09": { + "body-fur-03": { "rotate": [ - {"angle": -9.42, "curve": 0.333, "c2": 0.33, "c3": 0.688, "c4": 0.73}, {"time": 0.05, "angle": -2.63, "curve": 0.379, "c2": 0.6, "c3": 0.724}, {"time": 0.0833}, - {"time": 0.25, "angle": 21.78, "curve": 0.25, "c3": 0.75}, {"time": 0.3833, "angle": -6.87, "curve": 0.25, "c3": 0.75}, {"time": 0.4833, "angle": 28.66, "curve": 0.25, "c3": 0.75}, - {"time": 0.5833, "angle": -32.59, "curve": 0.25, "c3": 0.75}, {"time": 0.75, "angle": 24.66, "curve": 0.25, "c3": 0.75}, - {"time": 0.8667, "angle": -14.25, "curve": 0.26, "c3": 0.618, "c4": 0.44}, {"time": 0.9167, "angle": 6.86} + {"angle": -6.24, "curve": 0.371, "c2": 0.54, "c3": 0.697}, {"time": 0.15, "angle": -35.49}, {"time": 0.5333, "angle": 26.07, "curve": 0.406, "c2": 0.01, "c3": 0.727, "c4": 0.55}, + {"time": 0.75, "angle": -6.24} ] }, - "body-fur-10": { + "body-fur-08": { + "rotate": [{"angle": -35.49, "curve": 0.455, "c2": 0.01, "c3": 0.75}, {"time": 0.3833, "angle": 26.07, "curve": 0.455, "c2": 0.01, "c3": 0.75}, {"time": 0.75, "angle": -35.49}] + }, + "body-fur-04": { "rotate": [ - {"angle": -2.63, "curve": 0.379, "c2": 0.6, "c3": 0.724}, {"time": 0.0333, "curve": 0.25, "c3": 0.75}, {"time": 0.2, "angle": 21.78, "curve": 0.25, "c3": 0.75}, - {"time": 0.3333, "angle": -6.87, "curve": 0.25, "c3": 0.75}, {"time": 0.4333, "angle": 28.66, "curve": 0.25, "c3": 0.75}, {"time": 0.5333, "angle": -32.59, "curve": 0.25, "c3": 0.75}, - {"time": 0.7, "angle": 24.66, "curve": 0.25, "c3": 0.75}, {"time": 0.8167, "angle": -14.25, "curve": 0.242, "c3": 0.667, "c4": 0.67}, {"time": 0.9167, "angle": 0.34} + {"angle": 15.47, "curve": 0.379, "c2": 0.31, "c3": 0.706, "c4": 0.72}, {"time": 0.15, "angle": -19.23, "curve": 0.356, "c2": 0.59, "c3": 0.686}, {"time": 0.25, "angle": -35.49}, + {"time": 0.6333, "angle": 26.07, "curve": 0.372, "c2": 0.01, "c3": 0.702, "c4": 0.43}, {"time": 0.75, "angle": 15.47} ] }, - "body-fur-11": { + "body-fur-13": { "rotate": [ - {"angle": -4.79, "curve": 0.382, "c2": 0.56, "c3": 0.74}, {"time": 0.05, "curve": 0.25, "c3": 0.75}, {"time": 0.2167, "angle": 21.78, "curve": 0.25, "c3": 0.75}, - {"time": 0.35, "angle": -6.87, "curve": 0.25, "c3": 0.75}, {"time": 0.45, "angle": 28.66, "curve": 0.25, "c3": 0.75}, {"time": 0.55, "angle": -32.59, "curve": 0.25, "c3": 0.75}, - {"time": 0.7167, "angle": 24.66, "curve": 0.25, "c3": 0.75}, {"time": 0.8333, "angle": -14.25, "curve": 0.244, "c3": 0.641, "c4": 0.57}, {"time": 0.9167, "angle": 4.23} + {"angle": 15.71, "curve": 0.349, "c2": 0.31, "c3": 0.681, "c4": 0.65}, {"time": 0.05, "angle": 5.91, "curve": 0.389, "c2": 0.48, "c3": 0.708}, + {"time": 0.25, "angle": -35.49, "curve": 0.25, "c3": 0.75}, {"time": 0.6333, "angle": 26.07, "curve": 0.372, "c2": 0.01, "c3": 0.702, "c4": 0.43}, {"time": 0.75, "angle": 15.71} ] }, - "body-fur-12": { + "body-fur-02": { "rotate": [ - {"angle": -7.13, "curve": 0.375, "c2": 0.5, "c3": 0.75}, {"time": 0.0667, "curve": 0.25, "c3": 0.75}, {"time": 0.2333, "angle": 21.78, "curve": 0.25, "c3": 0.75}, - {"time": 0.3667, "angle": -6.87, "curve": 0.25, "c3": 0.75}, {"time": 0.4667, "angle": 28.66, "curve": 0.25, "c3": 0.75}, {"time": 0.5667, "angle": -32.59, "curve": 0.25, "c3": 0.75}, - {"time": 0.7333, "angle": 24.66, "curve": 0.25, "c3": 0.75}, {"time": 0.85, "angle": -14.25, "curve": 0.25, "c3": 0.625, "c4": 0.5}, {"time": 0.9167, "angle": 8.12} + {"angle": 22.47, "curve": 0.397, "c2": 0.23, "c3": 0.719, "c4": 0.71}, {"time": 0.2, "angle": -19.23, "curve": 0.356, "c2": 0.59, "c3": 0.686}, {"time": 0.3, "angle": -35.49}, + {"time": 0.6833, "angle": 26.07, "curve": 0.355, "c2": 0.02, "c3": 0.687, "c4": 0.39}, {"time": 0.75, "angle": 22.47} ] }, - "body-fur-13": { + "body-fur-05": { "rotate": [ - {"angle": -9.47, "curve": 0.359, "c2": 0.43, "c3": 0.756}, {"time": 0.0833}, {"time": 0.25, "angle": 21.78, "curve": 0.25, "c3": 0.75}, - {"time": 0.3833, "angle": -6.87, "curve": 0.25, "c3": 0.75}, {"time": 0.4833, "angle": 28.66, "curve": 0.25, "c3": 0.75}, {"time": 0.5833, "angle": -32.59, "curve": 0.25, "c3": 0.75}, - {"time": 0.75, "angle": 24.66, "curve": 0.25, "c3": 0.75}, {"time": 0.8667, "angle": -14.25, "curve": 0.26, "c3": 0.618, "c4": 0.44}, {"time": 0.9167, "angle": 11.59} + {"angle": -19.23, "curve": 0.356, "c2": 0.59, "c3": 0.686}, {"time": 0.1, "angle": -35.49}, {"time": 0.4833, "angle": 26.07, "curve": 0.423, "c2": 0.01, "c3": 0.737, "c4": 0.65}, + {"time": 0.75, "angle": -19.23} ] }, - "body-fur-14": { + "body-fur-06": { "rotate": [ - {"angle": -13.4, "curve": 0.285, "c2": 0.17, "c3": 0.679, "c4": 0.71}, {"time": 0.0833, "angle": -2.63, "curve": 0.379, "c2": 0.6, "c3": 0.724}, {"time": 0.1167}, - {"time": 0.2833, "angle": 21.78, "curve": 0.25, "c3": 0.75}, {"time": 0.4167, "angle": -6.87, "curve": 0.25, "c3": 0.75}, {"time": 0.5167, "angle": 28.66, "curve": 0.25, "c3": 0.75}, - {"time": 0.6167, "angle": -32.59, "curve": 0.25, "c3": 0.75}, {"time": 0.7833, "angle": 24.66, "curve": 0.25, "c3": 0.75}, - {"time": 0.9, "angle": -14.25, "curve": 0.299, "c3": 0.636, "c4": 0.36}, {"time": 0.9167, "angle": 13.33} + {"angle": 5.34, "curve": 0.362, "c2": 0.35, "c3": 0.692, "c4": 0.72}, {"time": 0.1, "angle": -19.23, "curve": 0.356, "c2": 0.59, "c3": 0.686}, + {"time": 0.2, "angle": -35.49, "curve": 0.25, "c3": 0.75}, {"time": 0.5833, "angle": 26.07, "curve": 0.389, "c2": 0.01, "c3": 0.715, "c4": 0.48}, {"time": 0.75, "angle": 5.34} ] }, - "body-fur-15": { + "body-fur-10": { "rotate": [ - {"angle": -9.47, "curve": 0.359, "c2": 0.43, "c3": 0.756}, {"time": 0.0833, "curve": 0.25, "c3": 0.75}, {"time": 0.25, "angle": 21.78, "curve": 0.25, "c3": 0.75}, - {"time": 0.3833, "angle": -6.87, "curve": 0.25, "c3": 0.75}, {"time": 0.4833, "angle": 28.66, "curve": 0.25, "c3": 0.75}, {"time": 0.5833, "angle": -32.59, "curve": 0.25, "c3": 0.75}, - {"time": 0.75, "angle": 24.66, "curve": 0.25, "c3": 0.75}, {"time": 0.8667, "angle": -14.25, "curve": 0.26, "c3": 0.618, "c4": 0.44}, {"time": 0.9167, "angle": 13.33} + {"angle": -15.74, "curve": 0.346, "c2": 0.39, "c3": 0.678, "c4": 0.73}, {"time": 0.05, "angle": -27.05, "curve": 0.347, "c2": 0.62, "c3": 0.679}, + {"time": 0.1167, "angle": -35.49, "curve": 0.25, "c3": 0.75}, {"time": 0.5, "angle": 26.07, "curve": 0.417, "c2": 0.01, "c3": 0.734, "c4": 0.61}, {"time": 0.75, "angle": -15.74} ] }, "body-fur-16": { "rotate": [ - {"angle": -11.62, "curve": 0.333, "c2": 0.33, "c3": 0.758}, {"time": 0.1, "curve": 0.25, "c3": 0.75}, {"time": 0.2667, "angle": 21.78, "curve": 0.25, "c3": 0.75}, - {"time": 0.4, "angle": -6.87, "curve": 0.25, "c3": 0.75}, {"time": 0.5, "angle": 28.66, "curve": 0.25, "c3": 0.75}, {"time": 0.6, "angle": -32.59, "curve": 0.25, "c3": 0.75}, - {"time": 0.7667, "angle": 24.66, "curve": 0.25, "c3": 0.75}, {"time": 0.8833, "angle": -14.25, "curve": 0.276, "c3": 0.621, "c4": 0.4}, {"time": 0.9167, "angle": 13.84} + {"angle": 20.54, "curve": 0.421, "c2": 0.32, "c3": 0.729}, {"time": 0.2833, "angle": -35.49, "curve": 0.25, "c3": 0.75}, + {"time": 0.6667, "angle": 26.07, "curve": 0.361, "c2": 0.01, "c3": 0.692, "c4": 0.4}, {"time": 0.75, "angle": 20.54} ] } - }, - "events": [{"time": 0.35, "name": "start-attack"}] + } }, - "4283524375": { + "2456423644": { "slots": { - "eyes": {"attachment": [{"time": 0.0167, "name": "eyes-angry"}, {"time": 0.5, "name": "eyes-shut"}, {"time": 0.6667, "name": "eyes"}]}, - "mouth": {"attachment": [{"time": 0.0167, "name": "mouth-bite"}, {"time": 0.3, "name": "mouth-open"}, {"time": 0.5, "name": "mouth"}]} + "eyes": { + "attachment": [ + {"time": 0.05, "name": "eyes-angry"}, {"time": 0.3333, "name": "eyes-shut"}, {"time": 0.4333, "name": "eyes-angry"}, {"time": 1.0833, "name": "eyes-shut"}, + {"time": 1.1667, "name": "eyes-angry"}, {"time": 1.2833, "name": "eyes"} + ] + }, + "mouth": {"attachment": [{"time": 0.05, "name": "mouth-bite"}, {"time": 0.4333, "name": "mouth-open"}, {"time": 0.9167, "name": "mouth-bite"}, {"time": 1.2833, "name": "mouth"}]} }, "bones": { "@pivot-back": { - "rotate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "angle": -3.92, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "angle": 2.51, "curve": 0.697, "c4": 0.3}, - {"time": 0.3, "angle": -2}, {"time": 0.4167, "angle": -3, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5833, "angle": 3, "curve": 0, "c2": 0.17, "c3": 0.45, "c4": 0.61}, - {"time": 0.6667, "angle": -2.47, "curve": 0.345, "c2": 0.53, "c3": 0.751}, {"time": 0.75} - ], - "translate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "x": 71.93, "y": -12.95, "curve": "stepped"}, {"time": 0.25, "x": 71.93, "y": -12.95, "curve": 0.697, "c4": 0.3}, - {"time": 0.3, "x": -65}, {"time": 0.4167, "x": -67, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5833, "x": -74.25, "y": -5.2, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.75} - ] - }, - "leg-back-left-IK": { + "rotate": [{"curve": 0, "c2": 0.3, "c3": 0.546}, {"time": 0.0833, "angle": 6, "curve": 0, "c2": 0.2, "c3": 0.828}, {"time": 0.1667}], "translate": [ - {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.1333, "x": 80.9, "curve": 0.161, "c3": 0.854}, {"time": 0.25, "x": 72.25, "curve": 0.25, "c4": 0.3}, - {"time": 0.3, "x": -24.7, "y": 18.44, "curve": "stepped"}, {"time": 0.4167, "x": -24.7, "y": 18.44, "curve": 0.306, "c3": 0.695}, - {"time": 0.5833, "x": -90.91, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.75} + {"curve": 0, "c2": 0.3, "c3": 0.546}, {"time": 0.0833, "y": 5, "curve": 0.313, "c3": 0.699}, {"time": 0.1667, "y": 220, "curve": 0.617, "c4": 0.6}, {"time": 0.3333, "y": 10}, + {"time": 0.4167, "y": 5, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5833, "y": 420, "curve": 0.852, "c4": 0.1}, {"time": 0.9167}, + {"time": 1.0833, "y": -5, "curve": 0, "c2": 0.17, "c3": 0.461, "c4": 0.62}, {"time": 1.2167, "y": 130, "curve": 0.353, "c2": 0.54, "c3": 0.751}, {"time": 1.3333} ] }, - "leg-front-right-IK": { - "translate": [ - {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 30.89, "y": 11.74, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "x": 42.9, "curve": 0.697, "c4": 0.3}, - {"time": 0.3, "x": 11.08, "y": 2.13, "curve": "stepped"}, {"time": 0.4167, "x": 11.08, "y": 2.13, "curve": 0.306, "c3": 0.695}, - {"time": 0.5833, "x": -87.1, "curve": 0, "c2": 0.17, "c3": 0.45, "c4": 0.61}, {"time": 0.6667, "x": -39.4, "curve": 0.345, "c2": 0.53, "c3": 0.751}, {"time": 0.75} + "@leg-front-right": {"translate": [{"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "x": -2.46, "y": -27.89, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.1167}]}, + "@leg-front-left": {"translate": [{"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "x": -1.21, "y": -13.68, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.1167}]}, + "@pivot-center": { + "rotate": [ + {"time": 0.1167, "curve": 0.313, "c3": 0.817}, {"time": 0.3333, "angle": 180, "curve": "stepped"}, {"time": 0.4167, "angle": 180, "curve": 0.313, "c3": 0.699}, + {"time": 0.6667, "angle": -1, "curve": 0.837, "c4": 0.2}, {"time": 0.9167, "angle": 178}, {"time": 1.0833, "angle": 180, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1.3333} ] }, "leg-front-left-IK": { "translate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "x": 52.52, "y": 6.57, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "x": 44.73, "y": 1.83, "curve": 0.697, "c4": 0.3}, - {"time": 0.3, "x": -28.02, "y": 20.97}, {"time": 0.4167, "x": -31.01, "y": 31.21, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.5833, "x": -82.62, "curve": 0, "c2": 0.17, "c3": 0.45, "c4": 0.61}, {"time": 0.6667, "x": -55.81, "curve": 0.345, "c2": 0.53, "c3": 0.751}, {"time": 0.75} - ] - }, - "@leg-front-left": { - "translate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "x": -2.59, "y": -4.65, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "x": -0.61, "y": -2.94, "curve": 0.697, "c4": 0.3}, - {"time": 0.3, "x": 0.47, "y": -9.15, "curve": "stepped"}, {"time": 0.4167, "x": 0.47, "y": -9.15, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5833} - ] - }, - "@leg-front-right": { - "translate": [ - {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 4.31, "y": 11.86, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "x": -10.4, "y": -12.15, "curve": 0.697, "c4": 0.3}, - {"time": 0.3, "x": -48.45, "y": 18.12, "curve": "stepped"}, {"time": 0.4167, "x": -48.45, "y": 18.12, "curve": 0, "c2": 0.3, "c3": 0.54}, - {"time": 0.5833, "x": -10.7, "y": -18.88, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.75} + {"time": 0.0833, "x": 3.28, "y": 8.42, "curve": 0.344, "c3": 0.715, "c4": 0.45}, {"time": 0.1167, "x": 23.89, "y": 74.66, "curve": 0.589, "c2": 0.35, "c4": 0.75}, + {"time": 0.1667, "x": -100.7, "y": 242.98, "curve": 0.306, "c3": 0.695}, {"time": 0.25, "x": -233.21, "y": 406.49, "curve": 0.474, "c3": 0.714, "c4": 0.56}, + {"time": 0.3, "x": -153, "y": 482.64, "curve": 0.306, "c2": 0.39, "c3": 0.628, "c4": 0.74}, {"time": 0.3167, "x": -106.74, "y": 465.65, "curve": 0.287, "c2": 0.62, "c3": 0.612}, + {"time": 0.3333, "x": -79.92, "y": 385}, {"time": 0.4167, "x": -126.28, "y": 392.02, "curve": 0, "c2": 0.17, "c3": 0.45, "c4": 0.61}, + {"time": 0.5, "x": -212.54, "y": 584.25, "curve": 0.323, "c2": 0.4, "c3": 0.681, "c4": 0.77}, {"time": 0.55, "x": -233.91, "y": 520.55, "curve": 0.377, "c2": 0.62, "c3": 0.724}, + {"time": 0.5833, "x": -173.29, "y": 470.76}, {"time": 0.6667, "x": 19.48, "y": 419.84}, {"time": 0.75, "x": 31.74, "y": 414.89, "curve": 0.255, "c3": 0.659, "c4": 0.47}, + {"time": 0.8333, "x": 83.62, "y": 412.28, "curve": 0.41, "c2": 0.34, "c3": 0.774, "c4": 0.71}, + {"time": 0.8833, "x": 116.53, "y": 400.02, "curve": 0.427, "c2": 0.37, "c3": 0.767, "c4": 0.71}, {"time": 0.9, "x": 130.33, "y": 410.53, "curve": 0.649, "c2": 0.4, "c4": 0.74}, + {"time": 0.9167, "x": -78.08, "y": 379.36}, {"time": 1.0833, "x": -92.45, "y": 375.87, "curve": 0, "c2": 0.17, "c3": 0.45, "c4": 0.61}, + {"time": 1.15, "x": 127.37, "y": 350.17, "curve": 0.345, "c2": 0.53, "c3": 0.751}, {"time": 1.2167, "x": 133.62, "y": 244.55, "curve": 0, "c2": 0.1, "c3": 0.769}, {"time": 1.3333} ] }, - "@leg-back-left": { + "leg-front-right-IK": { "translate": [ - {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.1333, "x": 0.67, "y": -7.85, "curve": 0.161, "c3": 0.854}, {"time": 0.25, "x": 0.53, "y": -13.09, "curve": 0.25, "c4": 0.3}, - {"time": 0.3, "x": -0.22, "y": 1.34, "curve": "stepped"}, {"time": 0.4167, "x": -0.22, "y": 1.34, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.5833, "x": -0.28, "y": -7.87, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.75} + {"time": 0.0833, "curve": 0.344, "c3": 0.715, "c4": 0.45}, {"time": 0.1167, "x": 41.2, "y": 75.27, "curve": 0.589, "c2": 0.35, "c4": 0.75}, + {"time": 0.1667, "x": -103.56, "y": 361.93, "curve": 0.313, "c3": 0.699}, {"time": 0.25, "x": 61.46, "y": 606.37, "curve": 0.474, "c3": 0.714, "c4": 0.56}, + {"time": 0.3, "x": 293.95, "y": 550.17, "curve": 0.306, "c2": 0.39, "c3": 0.628, "c4": 0.74}, {"time": 0.3167, "x": 340.35, "y": 482.44, "curve": 0.287, "c2": 0.62, "c3": 0.612}, + {"time": 0.3333, "x": 426.33, "y": 357.51}, {"time": 0.4167, "x": 340.52, "y": 373.76, "curve": 0, "c2": 0.17, "c3": 0.45, "c4": 0.61}, + {"time": 0.5, "x": 236.72, "y": 764.35, "curve": 0.323, "c2": 0.4, "c3": 0.681, "c4": 0.77}, {"time": 0.55, "x": -18.99, "y": 764.25, "curve": 0.377, "c2": 0.62, "c3": 0.724}, + {"time": 0.5833, "x": -86.72, "y": 646.17}, {"time": 0.6667, "x": 16.1, "y": 426.11}, {"time": 0.75, "x": 19.92, "y": 404.36, "curve": 0.255, "c3": 0.659, "c4": 0.47}, + {"time": 0.8333, "x": 90.31, "y": 343.4, "curve": 0.41, "c2": 0.34, "c3": 0.774, "c4": 0.71}, + {"time": 0.8833, "x": 202.62, "y": 235.31, "curve": 0.427, "c2": 0.37, "c3": 0.767, "c4": 0.71}, {"time": 0.9, "x": 290.37, "y": 171.88, "curve": 0.649, "c2": 0.4, "c4": 0.74}, + {"time": 0.9167, "x": 412.25, "y": 355.41}, {"time": 1.0833, "x": 345.67, "y": 359.46, "curve": 0, "c2": 0.17, "c3": 0.45, "c4": 0.61}, + {"time": 1.15, "x": 400.77, "y": 121.52, "curve": 0.345, "c2": 0.53, "c3": 0.751}, {"time": 1.2167, "x": 172.82, "y": 29.19, "curve": 0.306, "c4": 0.8}, {"time": 1.3333} ] }, - "@shadow": { + "leg-back-left-IK": { "translate": [ - {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 61.96, "curve": "stepped"}, {"time": 0.25, "x": 61.96, "curve": 0.697, "c4": 0.3}, {"time": 0.3, "x": -50.16}, - {"time": 0.4167, "x": -53.09, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5833, "x": -83.79, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.75} - ], - "scale": [ - {"time": 0.0833, "curve": 0, "c2": 0.26, "c3": 0.369, "c4": 0.62}, {"time": 0.25, "x": 1.06, "y": 1.06, "curve": 0.697, "c4": 0.3}, - {"time": 0.3, "x": 0.96, "y": 0.96, "curve": "stepped"}, {"time": 0.4167, "x": 0.96, "y": 0.96, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.5833, "x": 1.08, "y": 1.08, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.75} + {"time": 0.0833, "x": 1.05, "y": 4.19, "curve": 0.344, "c3": 0.715, "c4": 0.45}, {"time": 0.1167, "x": 28.54, "y": 87, "curve": 0.589, "c2": 0.35, "c4": 0.75}, + {"time": 0.1667, "x": -101.24, "y": 155.59, "curve": 0.313, "c3": 0.699}, {"time": 0.25, "x": -446.46, "y": 186.66, "curve": 0.474, "c3": 0.714, "c4": 0.56}, + {"time": 0.3, "x": -509.64, "y": 364.51, "curve": 0.306, "c2": 0.39, "c3": 0.628, "c4": 0.74}, {"time": 0.3167, "x": -479.36, "y": 400.3, "curve": 0.287, "c2": 0.62, "c3": 0.612}, + {"time": 0.3333, "x": -473.08, "y": 343.1}, {"time": 0.4167, "x": -421.75, "y": 358.21, "curve": 0, "c2": 0.17, "c3": 0.45, "c4": 0.61}, + {"time": 0.5, "x": -502.28, "y": 409.04, "curve": 0.323, "c2": 0.4, "c3": 0.681, "c4": 0.77}, {"time": 0.55, "x": -357.82, "y": 309.09, "curve": 0.377, "c2": 0.62, "c3": 0.724}, + {"time": 0.5833, "x": -190.14, "y": 299.56}, {"time": 0.6667, "x": 28.01, "y": 424.39}, {"time": 0.75, "x": 15.55, "y": 419.34, "curve": 0.255, "c3": 0.659, "c4": 0.47}, + {"time": 0.8333, "x": 74.85, "y": 472.68, "curve": 0.41, "c2": 0.34, "c3": 0.774, "c4": 0.71}, + {"time": 0.8833, "x": 69.06, "y": 556.5, "curve": 0.427, "c2": 0.37, "c3": 0.767, "c4": 0.71}, {"time": 0.9, "x": 11.02, "y": 617.8, "curve": 0.649, "c2": 0.4, "c4": 0.74}, + {"time": 0.9167, "x": -407.64, "y": 352.01}, {"time": 1.0833, "x": -407.65, "y": 352.01, "curve": 0, "c2": 0.17, "c3": 0.45, "c4": 0.61}, + {"time": 1.15, "x": -101.44, "y": 524.93, "curve": 0.345, "c2": 0.53, "c3": 0.751}, {"time": 1.2167, "x": 63.56, "y": 378.89, "curve": 0, "c2": 0.1, "c3": 0.769}, {"time": 1.3333} ] }, "tail": { "rotate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "angle": 15.61, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "angle": 20.44, "curve": 0.697, "c4": 0.3}, - {"time": 0.3, "angle": -9.4}, {"time": 0.4167, "angle": -13.12, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5833, "angle": 15.47, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.75} + {"curve": 0, "c2": 0.3, "c3": 0.546}, {"time": 0.0833, "angle": 19.35, "curve": 0.313, "c3": 0.699}, {"time": 0.1667, "angle": -22.95, "curve": 0.617, "c4": 0.6}, + {"time": 0.3333, "angle": 22.22}, {"time": 0.4167, "angle": 24.08, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5833, "angle": -30.94, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.6667, "angle": 18.1, "curve": 0.313, "c3": 0.699}, {"time": 0.8333, "angle": -20.52, "curve": 0.464, "c4": 0.7}, {"time": 0.9167, "angle": 16.35}, + {"time": 1.0833, "angle": 20.35, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1.2167, "angle": -9.93, "curve": 0.161, "c3": 0.854}, {"time": 1.3333} + ] + }, + "@shadow": { + "scale": [ + {"curve": 0, "c2": 0.3, "c3": 0.546}, {"time": 0.0833, "x": 1.1, "y": 1.1, "curve": 0.313, "c3": 0.699}, {"time": 0.1667, "x": 0.92, "y": 0.92, "curve": 0.617, "c4": 0.6}, + {"time": 0.3333, "x": 1.12, "y": 1.12}, {"time": 0.4167, "x": 1.16, "y": 1.16, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5833, "x": 0.86, "y": 0.86, "curve": 0.752, "c4": 0.2}, + {"time": 0.9167, "x": 1.12, "y": 1.12}, {"time": 1.0833, "x": 1.16, "y": 1.16, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1.3333} ] }, + "@pivot-main": {"scale": [{"time": 0.3333, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.4167, "y": 0.9, "curve": 0, "c2": 0.3, "c3": 0.546}, {"time": 0.5}]}, "body-fur-16": { "rotate": [ - {"angle": -13.21, "curve": 0.378, "c2": 0.52, "c3": 0.747}, {"time": 0.1, "curve": 0.25, "c3": 0.75}, {"time": 0.2333, "angle": -35.36, "curve": 0.25, "c3": 0.75}, - {"time": 0.3667, "angle": -1.38, "curve": 0.25, "c3": 0.75}, {"time": 0.4, "angle": -24.8, "curve": 0.25, "c3": 0.75}, {"time": 0.4667, "angle": 38.05, "curve": 0.25, "c3": 0.75}, - {"time": 0.6333, "angle": -29.41, "curve": 0.248, "c3": 0.629, "c4": 0.52}, {"time": 0.75, "angle": 13.84} + {"angle": 19.97, "curve": 0.303, "c2": 0.22, "c3": 0.756}, {"time": 0.1, "curve": 0.25, "c3": 0.75}, {"time": 0.1833, "angle": 15.16, "curve": 0.25, "c3": 0.75}, + {"time": 0.2667, "angle": -17.09, "curve": 0.25, "c3": 0.75}, {"time": 0.4333, "angle": 34.22, "curve": 0.25, "c3": 0.75}, {"time": 0.5, "angle": -32.46, "curve": 0.25, "c3": 0.75}, + {"time": 0.6333, "angle": -37.23, "curve": 0.25, "c3": 0.75}, {"time": 0.8, "angle": 24.78, "curve": 0.25, "c3": 0.75}, {"time": 1.0167, "angle": -47.33, "curve": 0.25, "c3": 0.75}, + {"time": 1.1, "angle": -3.05, "curve": 0.25, "c3": 0.75}, {"time": 1.1833, "angle": -15.24, "curve": 0.25, "c3": 0.75}, + {"time": 1.3167, "angle": 21.64, "curve": 0.295, "c3": 0.633, "c4": 0.37}, {"time": 1.3333, "angle": 13.84} ] }, "body-fur-15": { "rotate": [ - {"angle": -10.23, "curve": 0.382, "c2": 0.55, "c3": 0.741}, {"time": 0.0833}, {"time": 0.2167, "angle": -35.36, "curve": 0.25, "c3": 0.75}, - {"time": 0.35, "angle": -1.38, "curve": 0.25, "c3": 0.75}, {"time": 0.3833, "angle": -24.8, "curve": 0.25, "c3": 0.75}, {"time": 0.45, "angle": 38.05, "curve": 0.25, "c3": 0.75}, - {"time": 0.6167, "angle": -29.41, "curve": 0.245, "c3": 0.64, "c4": 0.57}, {"time": 0.75, "angle": 13.33} + {"angle": 16.78, "curve": 0.342, "c2": 0.36, "c3": 0.757}, {"time": 0.0833, "curve": 0.25, "c3": 0.75}, {"time": 0.1667, "angle": 15.16, "curve": 0.25, "c3": 0.75}, + {"time": 0.25, "angle": -17.09, "curve": 0.25, "c3": 0.75}, {"time": 0.4167, "angle": 34.22, "curve": 0.25, "c3": 0.75}, {"time": 0.4833, "angle": -32.46, "curve": 0.25, "c3": 0.75}, + {"time": 0.6167, "angle": -37.23, "curve": 0.25, "c3": 0.75}, {"time": 0.7833, "angle": 24.78, "curve": 0.25, "c3": 0.75}, {"time": 1, "angle": -47.33, "curve": 0.25, "c3": 0.75}, + {"time": 1.0833, "angle": -3.05, "curve": 0.25, "c3": 0.75}, {"time": 1.1667, "angle": -15.24, "curve": 0.25, "c3": 0.75}, + {"time": 1.3, "angle": 21.64, "curve": 0.271, "c3": 0.619, "c4": 0.41}, {"time": 1.3333, "angle": 13.33} ] }, "body-fur-14": { "rotate": [ - {"angle": -16.05, "curve": 0.349, "c2": 0.39, "c3": 0.706, "c4": 0.8}, {"time": 0.0833, "angle": -2.53, "curve": 0.369, "c2": 0.63, "c3": 0.707}, {"time": 0.1167}, - {"time": 0.25, "angle": -35.36, "curve": 0.25, "c3": 0.75}, {"time": 0.3833, "angle": -1.38, "curve": 0.25, "c3": 0.75}, {"time": 0.4167, "angle": -24.8, "curve": 0.25, "c3": 0.75}, - {"time": 0.4833, "angle": 38.05, "curve": 0.25, "c3": 0.75}, {"time": 0.65, "angle": -29.41, "curve": 0.253, "c3": 0.622, "c4": 0.48}, {"time": 0.75, "angle": 13.33} + {"angle": 21.64, "curve": 0.243, "c3": 0.658, "c4": 0.64}, {"time": 0.0833, "angle": 4.86, "curve": 0.381, "c2": 0.59, "c3": 0.729}, {"time": 0.1167, "curve": 0.25, "c3": 0.75}, + {"time": 0.2, "angle": 15.16, "curve": 0.25, "c3": 0.75}, {"time": 0.2833, "angle": -17.09, "curve": 0.25, "c3": 0.75}, {"time": 0.45, "angle": 34.22, "curve": 0.25, "c3": 0.75}, + {"time": 0.5167, "angle": -32.46, "curve": 0.25, "c3": 0.75}, {"time": 0.65, "angle": -37.23, "curve": 0.25, "c3": 0.75}, {"time": 0.8167, "angle": 24.78, "curve": 0.25, "c3": 0.75}, + {"time": 1.0333, "angle": -47.33, "curve": 0.25, "c3": 0.75}, {"time": 1.1167, "angle": -3.05, "curve": 0.25, "c3": 0.75}, {"time": 1.2, "angle": -15.24, "curve": 0.25, "c3": 0.75}, + {"time": 1.3333, "angle": 13.33} ] }, "body-fur-13": { "rotate": [ - {"angle": -10.23, "curve": 0.382, "c2": 0.55, "c3": 0.741}, {"time": 0.0833}, {"time": 0.2167, "angle": -35.36, "curve": 0.25, "c3": 0.75}, - {"time": 0.35, "angle": -1.38, "curve": 0.25, "c3": 0.75}, {"time": 0.3833, "angle": -24.8, "curve": 0.25, "c3": 0.75}, {"time": 0.45, "angle": 38.05, "curve": 0.25, "c3": 0.75}, - {"time": 0.6167, "angle": -29.41, "curve": 0.245, "c3": 0.64, "c4": 0.57}, {"time": 0.75, "angle": 11.59} + {"angle": 16.78, "curve": 0.342, "c2": 0.36, "c3": 0.757}, {"time": 0.0833, "curve": 0.25, "c3": 0.75}, {"time": 0.1667, "angle": 15.16, "curve": 0.25, "c3": 0.75}, + {"time": 0.25, "angle": -17.09, "curve": 0.25, "c3": 0.75}, {"time": 0.4167, "angle": 34.22, "curve": 0.25, "c3": 0.75}, {"time": 0.4833, "angle": -32.46, "curve": 0.25, "c3": 0.75}, + {"time": 0.6167, "angle": -37.23, "curve": 0.25, "c3": 0.75}, {"time": 0.7833, "angle": 24.78, "curve": 0.25, "c3": 0.75}, {"time": 1, "angle": -47.33, "curve": 0.25, "c3": 0.75}, + {"time": 1.0833, "angle": -3.05, "curve": 0.25, "c3": 0.75}, {"time": 1.1667, "angle": -15.24, "curve": 0.25, "c3": 0.75}, + {"time": 1.3, "angle": 21.64, "curve": 0.271, "c3": 0.619, "c4": 0.41}, {"time": 1.3333, "angle": 11.59} ] }, "body-fur-12": { "rotate": [ - {"angle": -7.41, "curve": 0.382, "c2": 0.58, "c3": 0.732}, {"time": 0.0667, "curve": 0.25, "c3": 0.75}, {"time": 0.2, "angle": -35.36, "curve": 0.25, "c3": 0.75}, - {"time": 0.3333, "angle": -1.38, "curve": 0.25, "c3": 0.75}, {"time": 0.3667, "angle": -24.8, "curve": 0.25, "c3": 0.75}, {"time": 0.4333, "angle": 38.05, "curve": 0.25, "c3": 0.75}, - {"time": 0.6, "angle": -29.41, "curve": 0.243, "c3": 0.654, "c4": 0.62}, {"time": 0.75, "angle": 8.12} + {"angle": 12.86, "curve": 0.367, "c2": 0.46, "c3": 0.754}, {"time": 0.0667, "curve": 0.25, "c3": 0.75}, {"time": 0.15, "angle": 15.16, "curve": 0.25, "c3": 0.75}, + {"time": 0.2333, "angle": -17.09, "curve": 0.25, "c3": 0.75}, {"time": 0.4, "angle": 34.22, "curve": 0.25, "c3": 0.75}, {"time": 0.4667, "angle": -32.46, "curve": 0.25, "c3": 0.75}, + {"time": 0.6, "angle": -37.23, "curve": 0.25, "c3": 0.75}, {"time": 0.7667, "angle": 24.78, "curve": 0.25, "c3": 0.75}, {"time": 0.9833, "angle": -47.33, "curve": 0.25, "c3": 0.75}, + {"time": 1.0667, "angle": -3.05, "curve": 0.25, "c3": 0.75}, {"time": 1.15, "angle": -15.24, "curve": 0.25, "c3": 0.75}, + {"time": 1.2833, "angle": 21.64, "curve": 0.255, "c3": 0.62, "c4": 0.47}, {"time": 1.3333, "angle": 8.12} ] }, "body-fur-11": { "rotate": [ - {"angle": -4.81, "curve": 0.378, "c2": 0.61, "c3": 0.721}, {"time": 0.05, "curve": 0.25, "c3": 0.75}, {"time": 0.1833, "angle": -35.36, "curve": 0.25, "c3": 0.75}, - {"time": 0.3167, "angle": -1.38, "curve": 0.25, "c3": 0.75}, {"time": 0.35, "angle": -24.8, "curve": 0.25, "c3": 0.75}, {"time": 0.4167, "angle": 38.05, "curve": 0.25, "c3": 0.75}, - {"time": 0.5833, "angle": -29.41, "curve": 0.242, "c3": 0.671, "c4": 0.68}, {"time": 0.75, "angle": 4.23} + {"angle": 8.78, "curve": 0.38, "c2": 0.53, "c3": 0.745}, {"time": 0.05, "curve": 0.25, "c3": 0.75}, {"time": 0.1333, "angle": 15.16, "curve": 0.25, "c3": 0.75}, + {"time": 0.2167, "angle": -17.09, "curve": 0.25, "c3": 0.75}, {"time": 0.3833, "angle": 34.22, "curve": 0.25, "c3": 0.75}, {"time": 0.45, "angle": -32.46, "curve": 0.25, "c3": 0.75}, + {"time": 0.5833, "angle": -37.23, "curve": 0.25, "c3": 0.75}, {"time": 0.75, "angle": 24.78, "curve": 0.25, "c3": 0.75}, {"time": 0.9667, "angle": -47.33, "curve": 0.25, "c3": 0.75}, + {"time": 1.05, "angle": -3.05, "curve": 0.25, "c3": 0.75}, {"time": 1.1333, "angle": -15.24, "curve": 0.25, "c3": 0.75}, + {"time": 1.2667, "angle": 21.64, "curve": 0.246, "c3": 0.633, "c4": 0.54}, {"time": 1.3333, "angle": 4.23} ] }, "body-fur-10": { "rotate": [ - {"angle": -2.53, "curve": 0.369, "c2": 0.63, "c3": 0.707}, {"time": 0.0333, "curve": 0.25, "c3": 0.75}, {"time": 0.1667, "angle": -35.36, "curve": 0.25, "c3": 0.75}, - {"time": 0.3, "angle": -1.38, "curve": 0.25, "c3": 0.75}, {"time": 0.3333, "angle": -24.8, "curve": 0.25, "c3": 0.75}, {"time": 0.4, "angle": 38.05, "curve": 0.25, "c3": 0.75}, - {"time": 0.5667, "angle": -29.41, "curve": 0.244, "c3": 0.693, "c4": 0.76}, {"time": 0.75, "angle": 0.34} + {"angle": 4.86, "curve": 0.381, "c2": 0.59, "c3": 0.729}, {"time": 0.0333, "curve": 0.25, "c3": 0.75}, {"time": 0.1167, "angle": 15.16, "curve": 0.25, "c3": 0.75}, + {"time": 0.2, "angle": -17.09, "curve": 0.25, "c3": 0.75}, {"time": 0.3667, "angle": 34.22, "curve": 0.25, "c3": 0.75}, {"time": 0.4333, "angle": -32.46, "curve": 0.25, "c3": 0.75}, + {"time": 0.5667, "angle": -37.23, "curve": 0.25, "c3": 0.75}, {"time": 0.7333, "angle": 24.78, "curve": 0.25, "c3": 0.75}, {"time": 0.95, "angle": -47.33, "curve": 0.25, "c3": 0.75}, + {"time": 1.0333, "angle": -3.05, "curve": 0.25, "c3": 0.75}, {"time": 1.1167, "angle": -15.24, "curve": 0.25, "c3": 0.75}, + {"time": 1.25, "angle": 21.64, "curve": 0.243, "c3": 0.658, "c4": 0.64}, {"time": 1.3333, "angle": 0.34} ] }, "body-fur-09": { "rotate": [ - {"angle": -2.53, "curve": 0.369, "c2": 0.63, "c3": 0.707}, {"time": 0.0333}, {"time": 0.1667, "angle": -35.36, "curve": 0.25, "c3": 0.75}, - {"time": 0.3, "angle": -1.38, "curve": 0.25, "c3": 0.75}, {"time": 0.3333, "angle": -24.8, "curve": 0.25, "c3": 0.75}, {"time": 0.4, "angle": 38.05, "curve": 0.25, "c3": 0.75}, - {"time": 0.5667, "angle": -29.41, "curve": 0.244, "c3": 0.693, "c4": 0.76}, {"time": 0.75, "angle": 6.86} + {"angle": 16.71, "curve": 0.319, "c2": 0.29, "c3": 0.681, "c4": 0.71}, {"time": 0.05, "angle": 4.86, "curve": 0.381, "c2": 0.59, "c3": 0.729}, {"time": 0.0833}, + {"time": 0.1667, "angle": 15.16, "curve": 0.25, "c3": 0.75}, {"time": 0.25, "angle": -17.09, "curve": 0.25, "c3": 0.75}, {"time": 0.4167, "angle": 34.22, "curve": 0.25, "c3": 0.75}, + {"time": 0.4833, "angle": -32.46, "curve": 0.25, "c3": 0.75}, {"time": 0.6167, "angle": -37.23, "curve": 0.25, "c3": 0.75}, {"time": 0.7833, "angle": 24.78, "curve": 0.25, "c3": 0.75}, + {"time": 1, "angle": -47.33, "curve": 0.25, "c3": 0.75}, {"time": 1.0833, "angle": -3.05, "curve": 0.25, "c3": 0.75}, {"time": 1.1667, "angle": -15.24, "curve": 0.25, "c3": 0.75}, + {"time": 1.3, "angle": 21.64, "curve": 0.271, "c3": 0.619, "c4": 0.41}, {"time": 1.3333, "angle": 6.86} ] }, "body-fur-08": { "rotate": [ - {"curve": 0.25, "c3": 0.75}, {"time": 0.1333, "angle": -35.36, "curve": 0.25, "c3": 0.75}, {"time": 0.2667, "angle": -1.38, "curve": 0.25, "c3": 0.75}, - {"time": 0.3, "angle": -24.8, "curve": 0.25, "c3": 0.75}, {"time": 0.3667, "angle": 38.05, "curve": 0.25, "c3": 0.75}, {"time": 0.5333, "angle": -29.41, "curve": 0.25, "c3": 0.75}, - {"time": 0.75, "angle": -0.91} + {"angle": 8.78, "curve": 0.38, "c2": 0.53, "c3": 0.745}, {"time": 0.05}, {"time": 0.1333, "angle": 15.16, "curve": 0.25, "c3": 0.75}, + {"time": 0.2167, "angle": -17.09, "curve": 0.25, "c3": 0.75}, {"time": 0.3833, "angle": 34.22, "curve": 0.25, "c3": 0.75}, {"time": 0.45, "angle": -32.46, "curve": 0.25, "c3": 0.75}, + {"time": 0.5833, "angle": -37.23, "curve": 0.25, "c3": 0.75}, {"time": 0.75, "angle": 24.78, "curve": 0.25, "c3": 0.75}, {"time": 0.9667, "angle": -47.33, "curve": 0.25, "c3": 0.75}, + {"time": 1.05, "angle": -3.05, "curve": 0.25, "c3": 0.75}, {"time": 1.1333, "angle": -15.24, "curve": 0.25, "c3": 0.75}, + {"time": 1.2667, "angle": 21.64, "curve": 0.246, "c3": 0.633, "c4": 0.54}, {"time": 1.3333, "angle": -0.91} ] }, "body-fur-07": { "rotate": [ - {"angle": -0.77, "curve": 0.355, "c2": 0.65, "c3": 0.689}, {"time": 0.0167, "curve": 0.25, "c3": 0.75}, {"time": 0.15, "angle": -35.36, "curve": 0.25, "c3": 0.75}, - {"time": 0.2833, "angle": -1.38, "curve": 0.25, "c3": 0.75}, {"time": 0.3167, "angle": -24.8, "curve": 0.25, "c3": 0.75}, {"time": 0.3833, "angle": 38.05, "curve": 0.25, "c3": 0.75}, - {"time": 0.55, "angle": -29.41, "curve": 0.246, "c3": 0.719, "c4": 0.87}, {"time": 0.75, "angle": 2.91} + {"angle": 1.67, "curve": 0.367, "c2": 0.63, "c3": 0.705}, {"time": 0.0167, "curve": 0.25, "c3": 0.75}, {"time": 0.1, "angle": 15.16, "curve": 0.25, "c3": 0.75}, + {"time": 0.1833, "angle": -17.09, "curve": 0.25, "c3": 0.75}, {"time": 0.35, "angle": 34.22, "curve": 0.25, "c3": 0.75}, {"time": 0.4167, "angle": -32.46, "curve": 0.25, "c3": 0.75}, + {"time": 0.55, "angle": -37.23, "curve": 0.25, "c3": 0.75}, {"time": 0.7167, "angle": 24.78, "curve": 0.25, "c3": 0.75}, {"time": 0.9333, "angle": -47.33, "curve": 0.25, "c3": 0.75}, + {"time": 1.0167, "angle": -3.05, "curve": 0.25, "c3": 0.75}, {"time": 1.1, "angle": -15.24, "curve": 0.25, "c3": 0.75}, + {"time": 1.2333, "angle": 21.64, "curve": 0.244, "c3": 0.697, "c4": 0.78}, {"time": 1.3333, "angle": 2.91} ] }, "body-fur-06": { "rotate": [ - {"angle": -7.28, "curve": 0.352, "c2": 0.4, "c3": 0.689, "c4": 0.75}, {"time": 0.0333, "angle": -2.53, "curve": 0.369, "c2": 0.63, "c3": 0.707}, {"time": 0.0667}, - {"time": 0.2, "angle": -35.36, "curve": 0.25, "c3": 0.75}, {"time": 0.3333, "angle": -1.38, "curve": 0.25, "c3": 0.75}, {"time": 0.3667, "angle": -24.8, "curve": 0.25, "c3": 0.75}, - {"time": 0.4333, "angle": 38.05, "curve": 0.25, "c3": 0.75}, {"time": 0.6, "angle": -29.41, "curve": 0.243, "c3": 0.654, "c4": 0.62}, {"time": 0.75, "angle": 13.33} + {"angle": 12.79, "curve": 0.336, "c2": 0.34, "c3": 0.682, "c4": 0.71}, {"time": 0.0333, "angle": 4.86, "curve": 0.381, "c2": 0.59, "c3": 0.729}, {"time": 0.0667}, + {"time": 0.15, "angle": 15.16, "curve": 0.25, "c3": 0.75}, {"time": 0.2333, "angle": -17.09, "curve": 0.25, "c3": 0.75}, {"time": 0.4, "angle": 34.22, "curve": 0.25, "c3": 0.75}, + {"time": 0.4667, "angle": -32.46, "curve": 0.25, "c3": 0.75}, {"time": 0.6, "angle": -37.23, "curve": 0.25, "c3": 0.75}, {"time": 0.7667, "angle": 24.78, "curve": 0.25, "c3": 0.75}, + {"time": 0.9833, "angle": -47.33, "curve": 0.25, "c3": 0.75}, {"time": 1.0667, "angle": -3.05, "curve": 0.25, "c3": 0.75}, {"time": 1.15, "angle": -15.24, "curve": 0.25, "c3": 0.75}, + {"time": 1.2833, "angle": 21.64, "curve": 0.255, "c3": 0.62, "c4": 0.47}, {"time": 1.3333, "angle": 13.33} ] }, "body-fur-05": { "rotate": [ - {"angle": -2.53, "curve": 0.369, "c2": 0.63, "c3": 0.707}, {"time": 0.0333}, {"time": 0.1667, "angle": -35.36, "curve": 0.25, "c3": 0.75}, - {"time": 0.3, "angle": -1.38, "curve": 0.25, "c3": 0.75}, {"time": 0.3333, "angle": -24.8, "curve": 0.25, "c3": 0.75}, {"time": 0.4, "angle": 38.05, "curve": 0.25, "c3": 0.75}, - {"time": 0.5667, "angle": -29.41, "curve": 0.244, "c3": 0.693, "c4": 0.76}, {"time": 0.75, "angle": 6.86} + {"angle": 4.86, "curve": 0.381, "c2": 0.59, "c3": 0.729}, {"time": 0.0333}, {"time": 0.1167, "angle": 15.16, "curve": 0.25, "c3": 0.75}, + {"time": 0.2, "angle": -17.09, "curve": 0.25, "c3": 0.75}, {"time": 0.3667, "angle": 34.22, "curve": 0.25, "c3": 0.75}, {"time": 0.4333, "angle": -32.46, "curve": 0.25, "c3": 0.75}, + {"time": 0.5667, "angle": -37.23, "curve": 0.25, "c3": 0.75}, {"time": 0.7333, "angle": 24.78, "curve": 0.25, "c3": 0.75}, {"time": 0.95, "angle": -47.33, "curve": 0.25, "c3": 0.75}, + {"time": 1.0333, "angle": -3.05, "curve": 0.25, "c3": 0.75}, {"time": 1.1167, "angle": -15.24, "curve": 0.25, "c3": 0.75}, + {"time": 1.25, "angle": 21.64, "curve": 0.243, "c3": 0.658, "c4": 0.64}, {"time": 1.3333, "angle": 6.86} ] }, "body-fur-04": { "rotate": [ - {"angle": -10.1, "curve": 0.355, "c2": 0.41, "c3": 0.697, "c4": 0.77}, {"time": 0.05, "angle": -2.53, "curve": 0.369, "c2": 0.63, "c3": 0.707}, - {"time": 0.0833, "curve": 0.25, "c3": 0.75}, {"time": 0.2167, "angle": -35.36, "curve": 0.25, "c3": 0.75}, {"time": 0.35, "angle": -1.38, "curve": 0.25, "c3": 0.75}, - {"time": 0.3833, "angle": -24.8, "curve": 0.25, "c3": 0.75}, {"time": 0.45, "angle": 38.05, "curve": 0.25, "c3": 0.75}, - {"time": 0.6167, "angle": -29.41, "curve": 0.245, "c3": 0.64, "c4": 0.57}, {"time": 0.75, "angle": 12.53} + {"angle": 16.71, "curve": 0.319, "c2": 0.29, "c3": 0.681, "c4": 0.71}, {"time": 0.05, "angle": 4.86, "curve": 0.381, "c2": 0.59, "c3": 0.729}, {"time": 0.0833}, + {"time": 0.1667, "angle": 15.16, "curve": 0.25, "c3": 0.75}, {"time": 0.25, "angle": -17.09, "curve": 0.25, "c3": 0.75}, {"time": 0.4167, "angle": 34.22, "curve": 0.25, "c3": 0.75}, + {"time": 0.4833, "angle": -32.46, "curve": 0.25, "c3": 0.75}, {"time": 0.6167, "angle": -37.23, "curve": 0.25, "c3": 0.75}, {"time": 0.7833, "angle": 24.78, "curve": 0.25, "c3": 0.75}, + {"time": 1, "angle": -47.33, "curve": 0.25, "c3": 0.75}, {"time": 1.0833, "angle": -3.05, "curve": 0.25, "c3": 0.75}, {"time": 1.1667, "angle": -15.24, "curve": 0.25, "c3": 0.75}, + {"time": 1.3, "angle": 21.64, "curve": 0.271, "c3": 0.619, "c4": 0.41}, {"time": 1.3333, "angle": 12.53} ] }, "body-fur-03": { "rotate": [ - {"angle": -4.81, "curve": 0.378, "c2": 0.61, "c3": 0.721}, {"time": 0.05}, {"time": 0.1833, "angle": -35.36, "curve": 0.25, "c3": 0.75}, - {"time": 0.3167, "angle": -1.38, "curve": 0.25, "c3": 0.75}, {"time": 0.35, "angle": -24.8, "curve": 0.25, "c3": 0.75}, {"time": 0.4167, "angle": 38.05, "curve": 0.25, "c3": 0.75}, - {"time": 0.5833, "angle": -29.41, "curve": 0.242, "c3": 0.671, "c4": 0.68}, {"time": 0.75, "angle": 5.54} + {"angle": 8.78, "curve": 0.38, "c2": 0.53, "c3": 0.745}, {"time": 0.05}, {"time": 0.1333, "angle": 15.16, "curve": 0.25, "c3": 0.75}, + {"time": 0.2167, "angle": -17.09, "curve": 0.25, "c3": 0.75}, {"time": 0.3833, "angle": 34.22, "curve": 0.25, "c3": 0.75}, {"time": 0.45, "angle": -32.46, "curve": 0.25, "c3": 0.75}, + {"time": 0.5833, "angle": -37.23, "curve": 0.25, "c3": 0.75}, {"time": 0.75, "angle": 24.78, "curve": 0.25, "c3": 0.75}, {"time": 0.9667, "angle": -47.33, "curve": 0.25, "c3": 0.75}, + {"time": 1.05, "angle": -3.05, "curve": 0.25, "c3": 0.75}, {"time": 1.1333, "angle": -15.24, "curve": 0.25, "c3": 0.75}, + {"time": 1.2667, "angle": 21.64, "curve": 0.246, "c3": 0.633, "c4": 0.54}, {"time": 1.3333, "angle": 5.54} ] }, "body-fur-02": { "rotate": [ - {"angle": -13.05, "curve": 0.354, "c2": 0.4, "c3": 0.702, "c4": 0.79}, {"time": 0.0667, "angle": -2.53, "curve": 0.369, "c2": 0.63, "c3": 0.707}, {"time": 0.1}, - {"time": 0.2333, "angle": -35.36, "curve": 0.25, "c3": 0.75}, {"time": 0.3667, "angle": -1.38, "curve": 0.25, "c3": 0.75}, {"time": 0.4, "angle": -24.8, "curve": 0.25, "c3": 0.75}, - {"time": 0.4667, "angle": 38.05, "curve": 0.25, "c3": 0.75}, {"time": 0.6333, "angle": -29.41, "curve": 0.248, "c3": 0.629, "c4": 0.52}, {"time": 0.75, "angle": 13.84} + {"angle": 19.98, "curve": 0.289, "c2": 0.19, "c3": 0.673, "c4": 0.69}, {"time": 0.0667, "angle": 4.86, "curve": 0.381, "c2": 0.59, "c3": 0.729}, {"time": 0.1}, + {"time": 0.1833, "angle": 15.16, "curve": 0.25, "c3": 0.75}, {"time": 0.2667, "angle": -17.09, "curve": 0.25, "c3": 0.75}, {"time": 0.4333, "angle": 34.22, "curve": 0.25, "c3": 0.75}, + {"time": 0.5, "angle": -32.46, "curve": 0.25, "c3": 0.75}, {"time": 0.6333, "angle": -37.23, "curve": 0.25, "c3": 0.75}, {"time": 0.8, "angle": 24.78, "curve": 0.25, "c3": 0.75}, + {"time": 1.0167, "angle": -47.33, "curve": 0.25, "c3": 0.75}, {"time": 1.1, "angle": -3.05, "curve": 0.25, "c3": 0.75}, {"time": 1.1833, "angle": -15.24, "curve": 0.25, "c3": 0.75}, + {"time": 1.3167, "angle": 21.64, "curve": 0.295, "c3": 0.633, "c4": 0.37}, {"time": 1.3333, "angle": 13.84} ] }, "body-fur-01": { "rotate": [ - {"angle": -7.41, "curve": 0.382, "c2": 0.58, "c3": 0.732}, {"time": 0.0667}, {"time": 0.2, "angle": -35.36, "curve": 0.25, "c3": 0.75}, - {"time": 0.3333, "angle": -1.38, "curve": 0.25, "c3": 0.75}, {"time": 0.3667, "angle": -24.8, "curve": 0.25, "c3": 0.75}, {"time": 0.4333, "angle": 38.05, "curve": 0.25, "c3": 0.75}, - {"time": 0.6, "angle": -29.41, "curve": 0.243, "c3": 0.654, "c4": 0.62}, {"time": 0.75, "angle": 10.51} + {"angle": 12.86, "curve": 0.367, "c2": 0.46, "c3": 0.754}, {"time": 0.0667, "curve": 0.25, "c3": 0.75}, {"time": 0.15, "angle": 15.16, "curve": 0.25, "c3": 0.75}, + {"time": 0.2333, "angle": -17.09, "curve": 0.25, "c3": 0.75}, {"time": 0.4, "angle": 34.22, "curve": 0.25, "c3": 0.75}, {"time": 0.4667, "angle": -32.46, "curve": 0.25, "c3": 0.75}, + {"time": 0.6, "angle": -37.23, "curve": 0.25, "c3": 0.75}, {"time": 0.7667, "angle": 24.78, "curve": 0.25, "c3": 0.75}, {"time": 0.9833, "angle": -47.33, "curve": 0.25, "c3": 0.75}, + {"time": 1.0667, "angle": -3.05, "curve": 0.25, "c3": 0.75}, {"time": 1.15, "angle": -15.24, "curve": 0.25, "c3": 0.75}, + {"time": 1.2833, "angle": 21.64, "curve": 0.255, "c3": 0.62, "c4": 0.47}, {"time": 1.3333, "angle": 10.51} ] } }, - "events": [{"time": 0.3, "name": "start-attack"}] + "events": [{"time": 0.4333, "name": "jump"}, {"time": 0.8333, "name": "start-attack"}, {"time": 0.9167, "name": "hit"}] }, - "2979763470": { - "slots": { - "eyes": {"attachment": [{"time": 0.05, "name": "eyes-angry"}, {"time": 1.2333, "name": "eyes"}]}, - "mouth": {"attachment": [{"time": 0.05, "name": "mouth-bite"}, {"time": 0.4667, "name": "mouth-open"}, {"time": 1.0833, "name": "mouth-bite"}, {"time": 1.2333, "name": "mouth"}]} - }, + "3386570360": { + "slots": {"eyes": {"attachment": [{"name": "eyes-shut"}]}}, "bones": { - "@pivot-back": { - "rotate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "angle": 4, "curve": 0, "c2": 0.6, "c3": 0.237}, {"time": 0.4167, "angle": -8.88, "curve": 0, "c2": 0.6, "c3": 0, "c4": 1.4}, - {"time": 1, "angle": 8.17, "curve": 0.701, "c4": 0.5}, {"time": 1.2333, "angle": 5, "curve": 0.461, "c3": 0.543}, {"time": 1.3333} - ], - "translate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": 33.65, "y": -5, "curve": 0, "c2": 0.6, "c3": 0.237}, - {"time": 0.4167, "x": -62.54, "y": 309.16, "curve": 0, "c2": 0.6, "c3": 0, "c4": 1.4}, {"time": 1, "x": 12.32, "y": 268.04, "curve": 0.701, "c4": 0.5}, {"time": 1.2333} - ] - }, - "@shadow": { - "translate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": 24.43, "curve": 0, "c2": 0.6, "c3": 0.237}, {"time": 0.4167, "x": -70.38, "curve": 0, "c2": 0.6, "c3": 0, "c4": 1.4}, - {"time": 1, "x": 5.15, "curve": 0.701, "c4": 0.5}, {"time": 1.2333, "x": -8.95, "curve": 0.461, "c3": 0.543}, {"time": 1.3333} - ], - "scale": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": 1.08, "y": 1.08, "curve": 0, "c2": 0.6, "c3": 0.237}, - {"time": 0.4167, "x": 0.85, "y": 0.85, "curve": 0, "c2": 0.6, "c3": 0, "c4": 1.4}, {"time": 1, "x": 0.9, "y": 0.9, "curve": 0.701, "c4": 0.5}, - {"time": 1.2333, "x": 1.1, "y": 1.1, "curve": 0.461, "c3": 0.543}, {"time": 1.3333} - ] - }, - "@leg-front-left": { - "translate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": -0.29, "y": -5.47, "curve": 0, "c2": 0.6, "c3": 0.237}, {"time": 0.4167, "curve": "stepped"}, - {"time": 1, "curve": 0.701, "c4": 0.5}, {"time": 1.2333, "x": -0.95, "y": -14.45, "curve": 0.461, "c3": 0.543}, {"time": 1.3333} - ] - }, - "@leg-front-right": { - "translate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": -0.29, "y": -5.47, "curve": 0, "c2": 0.6, "c3": 0.237}, {"time": 0.4167, "curve": "stepped"}, - {"time": 1, "curve": 0.701, "c4": 0.5}, {"time": 1.2333, "x": -1.66, "y": -25.29, "curve": 0.461, "c3": 0.543}, {"time": 1.3333} - ] - }, + "@pivot-back": {"translate": [{"curve": 0.384, "c3": 0.312}, {"time": 0.6667, "y": 22.76, "curve": 0.384, "c3": 0.306}, {"time": 1.3333}]}, "tail": { "rotate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "angle": 17.93, "curve": 0, "c2": 0.6, "c3": 0.237}, {"time": 0.4167, "angle": -15.3, "curve": 0, "c2": 0.6, "c3": 0, "c4": 1.4}, - {"time": 1, "angle": 24.81, "curve": 0.701, "c4": 0.5}, {"time": 1.2333, "angle": -15.84, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 1.3333} + {"curve": 0, "c2": 0.05, "c3": 0.658}, {"time": 0.3333, "angle": -5.21, "curve": 0.304, "c3": 0.689}, {"time": 0.7333, "angle": -0.27}, + {"time": 1.05, "angle": 1.75, "curve": 0.234, "c4": 0.9}, {"time": 1.3333} ] }, - "body-fur-07": { + "@shadow": {"scale": [{"curve": 0.387, "c3": 0.314}, {"time": 0.6667, "x": 0.9, "y": 0.9, "curve": 0.387, "c3": 0.314}, {"time": 1.3333}]}, + "body-fur-16": { "rotate": [ - {"angle": -41.06, "curve": 0.371, "c2": 0.62, "c3": 0.71}, {"time": 0.0167, "angle": -43.59, "curve": 0.25, "c3": 0.75}, {"time": 0.1833, "angle": -6.75, "curve": 0.25, "c3": 0.75}, - {"time": 0.35, "angle": -48.01, "curve": 0.25, "c3": 0.75}, {"time": 0.5167, "angle": 7.51, "curve": 0.25, "c3": 0.75}, {"time": 0.65, "angle": -50.66, "curve": 0.25, "c3": 0.75}, - {"time": 0.7833, "angle": -8.99, "curve": 0.25, "c3": 0.75}, {"time": 0.9167, "angle": -53.55, "curve": 0.25, "c3": 0.75}, {"time": 1.0333, "angle": -12.01, "curve": 0.25, "c3": 0.75}, - {"time": 1.15, "angle": -48.65, "curve": 0.25, "c3": 0.75}, {"time": 1.25, "angle": -17.36, "curve": 0.243, "c3": 0.689, "c4": 0.75}, {"time": 1.3333, "angle": 2.91} + {"angle": -0.76, "curve": 0.38, "c2": 0.53, "c3": 0.744}, {"time": 0.2833, "angle": -13.03, "curve": 0.25, "c3": 0.75}, + {"time": 0.95, "angle": 17.57, "curve": 0.246, "c3": 0.634, "c4": 0.54}, {"time": 1.3333, "angle": -0.76} ] }, - "body-fur-01": { + "body-fur-15": { "rotate": [ - {"angle": -1.51, "curve": 0.351, "c2": 0.4, "c3": 0.757}, {"time": 0.0667, "angle": -20.3, "curve": 0.25, "c3": 0.75}, {"time": 0.2333, "angle": 16.54, "curve": 0.25, "c3": 0.75}, - {"time": 0.4, "angle": -24.71, "curve": 0.25, "c3": 0.75}, {"time": 0.5667, "angle": 30.8, "curve": 0.25, "c3": 0.75}, {"time": 0.7, "angle": -27.37, "curve": 0.25, "c3": 0.75}, - {"time": 0.8333, "angle": 14.31, "curve": 0.25, "c3": 0.75}, {"time": 0.9667, "angle": -30.25, "curve": 0.25, "c3": 0.75}, {"time": 1.0833, "angle": 11.28, "curve": 0.25, "c3": 0.75}, - {"time": 1.2, "angle": -25.35, "curve": 0.25, "c3": 0.75}, {"time": 1.3, "angle": 5.94, "curve": 0.265, "c3": 0.618, "c4": 0.43}, {"time": 1.3333, "angle": 10.51} + {"angle": -4.67, "curve": 0.382, "c2": 0.57, "c3": 0.734}, {"time": 0.2167, "angle": -13.03, "curve": 0.25, "c3": 0.75}, + {"time": 0.8833, "angle": 17.57, "curve": 0.243, "c3": 0.65, "c4": 0.61}, {"time": 1.3333, "angle": -4.67} ] }, - "body-fur-02": { + "body-fur-14": { "rotate": [ - {"angle": 5.94, "curve": 0.243, "c3": 0.649, "c4": 0.6}, {"time": 0.0667, "angle": -12.85, "curve": 0.382, "c2": 0.57, "c3": 0.735}, {"time": 0.1, "angle": -20.3}, - {"time": 0.2667, "angle": 16.54, "curve": 0.25, "c3": 0.75}, {"time": 0.4333, "angle": -24.71, "curve": 0.25, "c3": 0.75}, {"time": 0.6, "angle": 30.8, "curve": 0.25, "c3": 0.75}, - {"time": 0.7333, "angle": -27.37, "curve": 0.25, "c3": 0.75}, {"time": 0.8667, "angle": 14.31, "curve": 0.25, "c3": 0.75}, {"time": 1, "angle": -30.25, "curve": 0.25, "c3": 0.75}, - {"time": 1.1167, "angle": 11.28, "curve": 0.25, "c3": 0.75}, {"time": 1.2333, "angle": -25.35, "curve": 0.25, "c3": 0.75}, {"time": 1.3333, "angle": 13.84} + {"angle": 3.13, "curve": 0.351, "c2": 0.39, "c3": 0.706, "c4": 0.8}, {"time": 0.25, "angle": -10.49, "curve": 0.369, "c2": 0.63, "c3": 0.706}, + {"time": 0.35, "angle": -13.03, "curve": 0.25, "c3": 0.75}, {"time": 1.0167, "angle": 17.57, "curve": 0.252, "c3": 0.623, "c4": 0.49}, {"time": 1.3333, "angle": 3.13} ] }, - "body-fur-03": { + "body-fur-13": { "rotate": [ - {"angle": -7.18, "curve": 0.375, "c2": 0.5, "c3": 0.75}, {"time": 0.05, "angle": -20.3}, {"time": 0.2167, "angle": 16.54, "curve": 0.25, "c3": 0.75}, - {"time": 0.3833, "angle": -24.71, "curve": 0.25, "c3": 0.75}, {"time": 0.55, "angle": 30.8, "curve": 0.25, "c3": 0.75}, {"time": 0.6833, "angle": -27.37, "curve": 0.25, "c3": 0.75}, - {"time": 0.8167, "angle": 14.31, "curve": 0.25, "c3": 0.75}, {"time": 0.95, "angle": -30.25, "curve": 0.25, "c3": 0.75}, {"time": 1.0667, "angle": 11.28, "curve": 0.25, "c3": 0.75}, - {"time": 1.1833, "angle": -25.35, "curve": 0.25, "c3": 0.75}, {"time": 1.2833, "angle": 5.94, "curve": 0.25, "c3": 0.625, "c4": 0.5}, {"time": 1.3333, "angle": 5.54} + {"angle": -2.76, "curve": 0.382, "c2": 0.56, "c3": 0.74}, {"time": 0.25, "angle": -13.03, "curve": 0.25, "c3": 0.75}, + {"time": 0.9167, "angle": 17.57, "curve": 0.244, "c3": 0.641, "c4": 0.57}, {"time": 1.3333, "angle": -2.76} ] }, - "body-fur-04": { + "body-fur-12": { "rotate": [ - {"angle": 3.4, "curve": 0.295, "c2": 0.21, "c3": 0.667, "c4": 0.67}, {"time": 0.05, "angle": -12.85, "curve": 0.382, "c2": 0.57, "c3": 0.735}, - {"time": 0.0833, "angle": -20.3, "curve": 0.25, "c3": 0.75}, {"time": 0.25, "angle": 16.54, "curve": 0.25, "c3": 0.75}, {"time": 0.4167, "angle": -24.71, "curve": 0.25, "c3": 0.75}, - {"time": 0.5833, "angle": 30.8, "curve": 0.25, "c3": 0.75}, {"time": 0.7167, "angle": -27.37, "curve": 0.25, "c3": 0.75}, {"time": 0.85, "angle": 14.31, "curve": 0.25, "c3": 0.75}, - {"time": 0.9833, "angle": -30.25, "curve": 0.25, "c3": 0.75}, {"time": 1.1, "angle": 11.28, "curve": 0.25, "c3": 0.75}, {"time": 1.2167, "angle": -25.35, "curve": 0.25, "c3": 0.75}, - {"time": 1.3333, "angle": 12.53} + {"angle": -6.56, "curve": 0.381, "c2": 0.59, "c3": 0.728}, {"time": 0.1833, "angle": -13.03, "curve": 0.25, "c3": 0.75}, + {"time": 0.85, "angle": 17.57, "curve": 0.242, "c3": 0.661, "c4": 0.65}, {"time": 1.3333, "angle": -6.56} ] }, - "body-fur-05": { + "body-fur-11": { "rotate": [ - {"angle": -12.85, "curve": 0.382, "c2": 0.57, "c3": 0.735}, {"time": 0.0333, "angle": -20.3}, {"time": 0.2, "angle": 16.54, "curve": 0.25, "c3": 0.75}, - {"time": 0.3667, "angle": -24.71, "curve": 0.25, "c3": 0.75}, {"time": 0.5333, "angle": 30.8, "curve": 0.25, "c3": 0.75}, {"time": 0.6667, "angle": -27.37, "curve": 0.25, "c3": 0.75}, - {"time": 0.8, "angle": 14.31, "curve": 0.25, "c3": 0.75}, {"time": 0.9333, "angle": -30.25, "curve": 0.25, "c3": 0.75}, {"time": 1.05, "angle": 11.28, "curve": 0.25, "c3": 0.75}, - {"time": 1.1667, "angle": -25.35, "curve": 0.25, "c3": 0.75}, {"time": 1.2667, "angle": 5.94, "curve": 0.243, "c3": 0.649, "c4": 0.6}, {"time": 1.3333, "angle": 6.86} + {"angle": -9.88, "curve": 0.372, "c2": 0.62, "c3": 0.711}, {"time": 0.1167, "angle": -13.03, "curve": 0.25, "c3": 0.75}, + {"time": 0.7833, "angle": 17.57, "curve": 0.243, "c3": 0.687, "c4": 0.74}, {"time": 1.3333, "angle": -9.88} ] }, - "body-fur-06": { + "body-fur-10": { "rotate": [ - {"angle": -1.53, "curve": 0.325, "c2": 0.31, "c3": 0.675, "c4": 0.69}, {"time": 0.0333, "angle": -12.85, "curve": 0.382, "c2": 0.57, "c3": 0.735}, {"time": 0.0667, "angle": -20.3}, - {"time": 0.2333, "angle": 16.54, "curve": 0.25, "c3": 0.75}, {"time": 0.4, "angle": -24.71, "curve": 0.25, "c3": 0.75}, {"time": 0.5667, "angle": 30.8, "curve": 0.25, "c3": 0.75}, - {"time": 0.7, "angle": -27.37, "curve": 0.25, "c3": 0.75}, {"time": 0.8333, "angle": 14.31, "curve": 0.25, "c3": 0.75}, {"time": 0.9667, "angle": -30.25, "curve": 0.25, "c3": 0.75}, - {"time": 1.0833, "angle": 11.28, "curve": 0.25, "c3": 0.75}, {"time": 1.2, "angle": -25.35, "curve": 0.25, "c3": 0.75}, - {"time": 1.3, "angle": 5.94, "curve": 0.265, "c3": 0.618, "c4": 0.43}, {"time": 1.3333, "angle": 13.33} + {"angle": -12.25, "curve": 0.354, "c2": 0.65, "c3": 0.689}, {"time": 0.05, "angle": -13.03, "curve": 0.25, "c3": 0.75}, + {"time": 0.7167, "angle": 17.57, "curve": 0.246, "c3": 0.72, "c4": 0.87}, {"time": 1.3333, "angle": -12.25} ] }, - "body-fur-08": { + "body-fur-09": { "rotate": [ - {"angle": -7.18, "curve": 0.375, "c2": 0.5, "c3": 0.75}, {"time": 0.05, "angle": -20.3, "curve": 0.25, "c3": 0.75}, {"time": 0.2167, "angle": 16.54, "curve": 0.25, "c3": 0.75}, - {"time": 0.3833, "angle": -24.71, "curve": 0.25, "c3": 0.75}, {"time": 0.55, "angle": 30.8, "curve": 0.25, "c3": 0.75}, {"time": 0.6833, "angle": -27.37, "curve": 0.25, "c3": 0.75}, - {"time": 0.8167, "angle": 14.31, "curve": 0.25, "c3": 0.75}, {"time": 0.95, "angle": -30.25, "curve": 0.25, "c3": 0.75}, {"time": 1.0667, "angle": 11.28, "curve": 0.25, "c3": 0.75}, - {"time": 1.1833, "angle": -25.35, "curve": 0.25, "c3": 0.75}, {"time": 1.2833, "angle": 5.94, "curve": 0.25, "c3": 0.625, "c4": 0.5}, {"time": 1.3333, "angle": -0.91} + {"angle": -6.6, "curve": 0.35, "c2": 0.4, "c3": 0.686, "c4": 0.74}, {"time": 0.0833, "angle": -10.49, "curve": 0.369, "c2": 0.63, "c3": 0.706}, + {"time": 0.1833, "angle": -13.03, "curve": 0.25, "c3": 0.75}, {"time": 0.85, "angle": 17.57, "curve": 0.242, "c3": 0.661, "c4": 0.65}, {"time": 1.3333, "angle": -6.6} ] }, - "body-fur-09": { + "body-fur-08": { "rotate": [ - {"angle": 3.4, "curve": 0.295, "c2": 0.21, "c3": 0.667, "c4": 0.67}, {"time": 0.05, "angle": -12.85, "curve": 0.382, "c2": 0.57, "c3": 0.735}, {"time": 0.0833, "angle": -20.3}, - {"time": 0.25, "angle": 16.54, "curve": 0.25, "c3": 0.75}, {"time": 0.4167, "angle": -24.71, "curve": 0.25, "c3": 0.75}, {"time": 0.5833, "angle": 30.8, "curve": 0.25, "c3": 0.75}, - {"time": 0.7167, "angle": -27.37, "curve": 0.25, "c3": 0.75}, {"time": 0.85, "angle": 14.31, "curve": 0.25, "c3": 0.75}, {"time": 0.9833, "angle": -30.25, "curve": 0.25, "c3": 0.75}, - {"time": 1.1, "angle": 11.28, "curve": 0.25, "c3": 0.75}, {"time": 1.2167, "angle": -25.35, "curve": 0.25, "c3": 0.75}, {"time": 1.3333, "angle": 6.86} + {"angle": -11.11, "curve": 0.364, "c2": 0.64, "c3": 0.701}, {"time": 0.0833, "angle": -13.03, "curve": 0.25, "c3": 0.75}, + {"time": 0.75, "angle": 17.57, "curve": 0.244, "c3": 0.702, "c4": 0.8}, {"time": 1.3333, "angle": -11.11} ] }, - "body-fur-10": { + "body-fur-07": { "rotate": [ - {"angle": -12.85, "curve": 0.382, "c2": 0.57, "c3": 0.735}, {"time": 0.0333, "angle": -20.3, "curve": 0.25, "c3": 0.75}, {"time": 0.2, "angle": 16.54, "curve": 0.25, "c3": 0.75}, - {"time": 0.3667, "angle": -24.71, "curve": 0.25, "c3": 0.75}, {"time": 0.5333, "angle": 30.8, "curve": 0.25, "c3": 0.75}, {"time": 0.6667, "angle": -27.37, "curve": 0.25, "c3": 0.75}, - {"time": 0.8, "angle": 14.31, "curve": 0.25, "c3": 0.75}, {"time": 0.9333, "angle": -30.25, "curve": 0.25, "c3": 0.75}, {"time": 1.05, "angle": 11.28, "curve": 0.25, "c3": 0.75}, - {"time": 1.1667, "angle": -25.35, "curve": 0.25, "c3": 0.75}, {"time": 1.2667, "angle": 5.94, "curve": 0.243, "c3": 0.649, "c4": 0.6}, {"time": 1.3333, "angle": 0.34} + {"angle": -11.73, "curve": 0.36, "c2": 0.64, "c3": 0.695}, {"time": 0.0667, "angle": -13.03, "curve": 0.25, "c3": 0.75}, + {"time": 0.7333, "angle": 17.57, "curve": 0.245, "c3": 0.711, "c4": 0.83}, {"time": 1.3333, "angle": -11.73} ] }, - "body-fur-11": { + "body-fur-06": { "rotate": [ - {"angle": -7.18, "curve": 0.375, "c2": 0.5, "c3": 0.75}, {"time": 0.05, "angle": -20.3, "curve": 0.25, "c3": 0.75}, {"time": 0.2167, "angle": 16.54, "curve": 0.25, "c3": 0.75}, - {"time": 0.3833, "angle": -24.71, "curve": 0.25, "c3": 0.75}, {"time": 0.55, "angle": 30.8, "curve": 0.25, "c3": 0.75}, {"time": 0.6833, "angle": -27.37, "curve": 0.25, "c3": 0.75}, - {"time": 0.8167, "angle": 14.31, "curve": 0.25, "c3": 0.75}, {"time": 0.95, "angle": -30.25, "curve": 0.25, "c3": 0.75}, {"time": 1.0667, "angle": 11.28, "curve": 0.25, "c3": 0.75}, - {"time": 1.1833, "angle": -25.35, "curve": 0.25, "c3": 0.75}, {"time": 1.2833, "angle": 5.94, "curve": 0.25, "c3": 0.625, "c4": 0.5}, {"time": 1.3333, "angle": 4.23} + {"angle": -3.86, "curve": 0.354, "c2": 0.41, "c3": 0.694, "c4": 0.77}, {"time": 0.1333, "angle": -10.49, "curve": 0.369, "c2": 0.63, "c3": 0.706}, + {"time": 0.2333, "angle": -13.03, "curve": 0.25, "c3": 0.75}, {"time": 0.9, "angle": 17.57, "curve": 0.244, "c3": 0.646, "c4": 0.59}, {"time": 1.3333, "angle": -3.86} ] }, - "body-fur-12": { + "body-fur-05": { "rotate": [ - {"angle": -1.51, "curve": 0.351, "c2": 0.4, "c3": 0.757}, {"time": 0.0667, "angle": -20.3, "curve": 0.25, "c3": 0.75}, {"time": 0.2333, "angle": 16.54, "curve": 0.25, "c3": 0.75}, - {"time": 0.4, "angle": -24.71, "curve": 0.25, "c3": 0.75}, {"time": 0.5667, "angle": 30.8, "curve": 0.25, "c3": 0.75}, {"time": 0.7, "angle": -27.37, "curve": 0.25, "c3": 0.75}, - {"time": 0.8333, "angle": 14.31, "curve": 0.25, "c3": 0.75}, {"time": 0.9667, "angle": -30.25, "curve": 0.25, "c3": 0.75}, {"time": 1.0833, "angle": 11.28, "curve": 0.25, "c3": 0.75}, - {"time": 1.2, "angle": -25.35, "curve": 0.25, "c3": 0.75}, {"time": 1.3, "angle": 5.94, "curve": 0.265, "c3": 0.618, "c4": 0.43}, {"time": 1.3333, "angle": 8.12} + {"angle": -9.05, "curve": 0.375, "c2": 0.62, "c3": 0.716}, {"time": 0.1333, "angle": -13.03, "curve": 0.25, "c3": 0.75}, + {"time": 0.8, "angle": 17.57, "curve": 0.243, "c3": 0.68, "c4": 0.71}, {"time": 1.3333, "angle": -9.05} ] }, - "body-fur-13": { + "body-fur-04": { "rotate": [ - {"angle": 3.41, "curve": 0.311, "c2": 0.25, "c3": 0.757}, {"time": 0.0833, "angle": -20.3}, {"time": 0.25, "angle": 16.54, "curve": 0.25, "c3": 0.75}, - {"time": 0.4167, "angle": -24.71, "curve": 0.25, "c3": 0.75}, {"time": 0.5833, "angle": 30.8, "curve": 0.25, "c3": 0.75}, {"time": 0.7167, "angle": -27.37, "curve": 0.25, "c3": 0.75}, - {"time": 0.85, "angle": 14.31, "curve": 0.25, "c3": 0.75}, {"time": 0.9833, "angle": -30.25, "curve": 0.25, "c3": 0.75}, {"time": 1.1, "angle": 11.28, "curve": 0.25, "c3": 0.75}, - {"time": 1.2167, "angle": -25.35, "curve": 0.25, "c3": 0.75}, {"time": 1.3333, "angle": 11.59} + {"angle": 0.08, "curve": 0.355, "c2": 0.41, "c3": 0.702, "c4": 0.79}, {"time": 0.2, "angle": -10.49, "curve": 0.369, "c2": 0.63, "c3": 0.706}, + {"time": 0.3, "angle": -13.03, "curve": 0.25, "c3": 0.75}, {"time": 0.9667, "angle": 17.57, "curve": 0.247, "c3": 0.63, "c4": 0.53}, {"time": 1.3333, "angle": 0.08} ] }, - "body-fur-14": { + "body-fur-03": { "rotate": [ - {"angle": 2.92, "curve": 0.371, "c2": 0.62, "c3": 0.71}, {"time": 0.0167, "angle": 5.94, "curve": 0.243, "c3": 0.649, "c4": 0.6}, - {"time": 0.0833, "angle": -12.85, "curve": 0.382, "c2": 0.57, "c3": 0.735}, {"time": 0.1167, "angle": -20.3}, {"time": 0.2833, "angle": 16.54, "curve": 0.25, "c3": 0.75}, - {"time": 0.45, "angle": -24.71, "curve": 0.25, "c3": 0.75}, {"time": 0.6167, "angle": 30.8, "curve": 0.25, "c3": 0.75}, {"time": 0.75, "angle": -27.37, "curve": 0.25, "c3": 0.75}, - {"time": 0.8833, "angle": 14.31, "curve": 0.25, "c3": 0.75}, {"time": 1.0167, "angle": -30.25, "curve": 0.25, "c3": 0.75}, {"time": 1.1333, "angle": 11.28, "curve": 0.25, "c3": 0.75}, - {"time": 1.25, "angle": -25.35, "curve": 0.243, "c3": 0.689, "c4": 0.75}, {"time": 1.3333, "angle": 13.33} + {"angle": -5.62, "curve": 0.382, "c2": 0.58, "c3": 0.731}, {"time": 0.2, "angle": -13.03, "curve": 0.25, "c3": 0.75}, + {"time": 0.8667, "angle": 17.57, "curve": 0.243, "c3": 0.655, "c4": 0.63}, {"time": 1.3333, "angle": -5.62} ] }, - "body-fur-15": { + "body-fur-02": { "rotate": [ - {"angle": 3.41, "curve": 0.311, "c2": 0.25, "c3": 0.757}, {"time": 0.0833, "angle": -20.3, "curve": 0.25, "c3": 0.75}, {"time": 0.25, "angle": 16.54, "curve": 0.25, "c3": 0.75}, - {"time": 0.4167, "angle": -24.71, "curve": 0.25, "c3": 0.75}, {"time": 0.5833, "angle": 30.8, "curve": 0.25, "c3": 0.75}, {"time": 0.7167, "angle": -27.37, "curve": 0.25, "c3": 0.75}, - {"time": 0.85, "angle": 14.31, "curve": 0.25, "c3": 0.75}, {"time": 0.9833, "angle": -30.25, "curve": 0.25, "c3": 0.75}, {"time": 1.1, "angle": 11.28, "curve": 0.25, "c3": 0.75}, - {"time": 1.2167, "angle": -25.35, "curve": 0.25, "c3": 0.75}, {"time": 1.3333, "angle": 13.33} + {"angle": 4.14, "curve": 0.349, "c2": 0.39, "c3": 0.707, "c4": 0.8}, {"time": 0.2667, "angle": -10.49, "curve": 0.369, "c2": 0.63, "c3": 0.706}, + {"time": 0.3667, "angle": -13.03, "curve": 0.25, "c3": 0.75}, {"time": 1.0333, "angle": 17.57, "curve": 0.253, "c3": 0.621, "c4": 0.48}, {"time": 1.3333, "angle": 4.14} ] }, - "body-fur-16": { + "body-fur-01": { "rotate": [ - {"angle": 5.94, "curve": 0.25, "c3": 0.75}, {"time": 0.1, "angle": -20.3, "curve": 0.25, "c3": 0.75}, {"time": 0.2667, "angle": 16.54, "curve": 0.25, "c3": 0.75}, - {"time": 0.4333, "angle": -24.71, "curve": 0.25, "c3": 0.75}, {"time": 0.6, "angle": 30.8, "curve": 0.25, "c3": 0.75}, {"time": 0.7333, "angle": -27.37, "curve": 0.25, "c3": 0.75}, - {"time": 0.8667, "angle": 14.31, "curve": 0.25, "c3": 0.75}, {"time": 1, "angle": -30.25, "curve": 0.25, "c3": 0.75}, {"time": 1.1167, "angle": 11.28, "curve": 0.25, "c3": 0.75}, - {"time": 1.2333, "angle": -25.35, "curve": 0.25, "c3": 0.75}, {"time": 1.3333, "angle": 13.84} + {"angle": -1.77, "curve": 0.381, "c2": 0.55, "c3": 0.742}, {"time": 0.2667, "angle": -13.03, "curve": 0.25, "c3": 0.75}, + {"time": 0.9333, "angle": 17.57, "curve": 0.245, "c3": 0.637, "c4": 0.56}, {"time": 1.3333, "angle": -1.77} ] } - }, - "events": [{"time": 0.4667, "name": "start-attack"}, {"time": 0.7, "name": "start-attack"}, {"time": 0.9333, "name": "start-attack"}] + } }, - "1370524738": { + "3650044337": { "slots": { - "eyes": {"attachment": [{"time": 0.0167, "name": "eyes-angry"}, {"time": 0.75, "name": "eyes-shut"}, {"time": 0.8333, "name": "eyes"}]}, - "leg-back-left": {"attachment": [{"time": 0.35, "name": "leg-back-left-long"}, {"time": 0.5833, "name": "leg-back-left"}]}, - "mouth": {"attachment": [{"time": 0.0167, "name": "mouth-bite"}, {"time": 0.2667, "name": "mouth-open"}, {"time": 0.5833, "name": "mouth-bite"}, {"time": 0.8333, "name": "mouth"}]} + "eyes": {"attachment": [{"time": 0.05, "name": "eyes-angry"}, {"time": 0.8333, "name": "eyes-shut"}, {"time": 0.9167, "name": "eyes"}]}, + "mouth": {"attachment": [{"time": 0.05, "name": "mouth-bite"}, {"time": 0.3333, "name": "mouth-open"}, {"time": 0.75, "name": "mouth-bite"}, {"time": 0.9167, "name": "mouth"}]} }, "bones": { + "tail": { + "rotate": [ + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.25, "angle": 21.98, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3167, "angle": -15.58, "curve": "stepped"}, + {"time": 0.3333, "angle": -19.65, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.4, "angle": 20.35, "curve": "stepped"}, {"time": 0.4333, "angle": -19.65, "curve": "stepped"}, + {"time": 0.4667, "angle": -19.65, "curve": 0.461, "c3": 0.543}, {"time": 0.5333, "angle": 20.35, "curve": "stepped"}, {"time": 0.5667, "angle": -19.65, "curve": "stepped"}, + {"time": 0.6, "angle": -19.65, "curve": 0.461, "c3": 0.543}, {"time": 0.6667, "angle": 20.35, "curve": "stepped"}, {"time": 0.7, "angle": -19.65, "curve": "stepped"}, + {"time": 0.75, "angle": -11.84, "curve": 0.313, "c3": 0.699}, {"time": 0.8333, "angle": 16.95, "curve": 0.313, "c3": 0.699}, {"time": 1} + ] + }, "@pivot-back": { "rotate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "angle": -3.92, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "angle": 2.51, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.3333, "angle": -6, "curve": "stepped"}, {"time": 0.35, "angle": -16}, {"time": 0.5667, "angle": -16.5, "curve": "stepped"}, {"time": 0.5833, "curve": 0.313, "c3": 0.699}, - {"time": 0.75, "angle": 6, "curve": 0.313, "c3": 0.699}, {"time": 0.9167} + {"curve": 0, "c2": 0.4, "c3": 0.383}, {"time": 0.15, "angle": 4, "curve": "stepped"}, {"time": 0.25, "angle": 4, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.3167, "curve": "stepped"}, {"time": 0.3333, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.4, "angle": -2.45, "curve": "stepped"}, {"time": 0.4333, "curve": "stepped"}, + {"time": 0.4667, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.5333, "angle": -2.45, "curve": "stepped"}, {"time": 0.5667, "curve": "stepped"}, + {"time": 0.6, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.6667, "angle": -2.45, "curve": "stepped"}, {"time": 0.7, "curve": "stepped"}, {"time": 0.75, "curve": 0.313, "c3": 0.699}, + {"time": 0.8333, "angle": 6, "curve": 0.313, "c3": 0.699}, {"time": 1} ], "translate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "x": 71.93, "y": -12.95, "curve": "stepped"}, {"time": 0.25, "x": 71.93, "y": -12.95, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.3333, "x": -135.5, "curve": "stepped"}, {"time": 0.35, "x": -560.54, "y": 85.29}, {"time": 0.5667, "x": -562.89, "y": 81.57, "curve": "stepped"}, - {"time": 0.5833, "x": -151.24, "curve": 0.313, "c3": 0.699}, {"time": 0.75, "x": -151.24, "y": 4.06, "curve": 0.313, "c3": 0.699}, {"time": 0.9167} + {"curve": 0, "c2": 0.4, "c3": 0.383}, {"time": 0.25, "x": 25, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3167, "x": -135.5, "curve": "stepped"}, + {"time": 0.3333, "x": -560.54, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.4, "x": -560.54, "y": 9.3, "curve": "stepped"}, {"time": 0.4333, "x": -560.54, "curve": "stepped"}, + {"time": 0.4667, "x": -560.54, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.5333, "x": -560.54, "y": 9.3, "curve": "stepped"}, {"time": 0.5667, "x": -560.54, "curve": "stepped"}, + {"time": 0.6, "x": -560.54, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.6667, "x": -560.54, "y": 9.3, "curve": "stepped"}, {"time": 0.7, "x": -560.54, "curve": "stepped"}, + {"time": 0.75, "x": -151.24, "curve": 0.313, "c3": 0.699}, {"time": 0.8333, "x": -151.24, "y": 4.06, "curve": 0.313, "c3": 0.699}, {"time": 1} ], - "scale": [{"time": 0.3333, "curve": "stepped"}, {"time": 0.35, "x": -1, "curve": "stepped"}, {"time": 0.5667, "x": -1, "curve": "stepped"}, {"time": 0.5833}] + "scale": [{"time": 0.3167, "curve": "stepped"}, {"time": 0.3333, "x": -1, "curve": "stepped"}, {"time": 0.7, "x": -1, "curve": "stepped"}, {"time": 0.75}] }, - "@shadow": { + "@leg-front-right": { "translate": [ - {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 61.96, "curve": "stepped"}, {"time": 0.25, "x": 61.96, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.3333, "x": -143.36, "curve": "stepped"}, {"time": 0.35, "x": -143.36}, {"time": 0.5667, "x": -157.56, "curve": "stepped"}, {"time": 0.5833, "x": -161.35, "curve": "stepped"}, - {"time": 0.75, "x": -161.35, "curve": 0.313, "c3": 0.699}, {"time": 0.9167} - ], - "scale": [ - {"time": 0.0833, "curve": 0, "c2": 0.26, "c3": 0.369, "c4": 0.62}, {"time": 0.25, "x": 1.06, "y": 1.06, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "curve": "stepped"}, - {"time": 0.35}, {"time": 0.5667, "x": 1.08, "y": 1.08, "curve": "stepped"}, {"time": 0.5833, "curve": 0.313, "c3": 0.699}, - {"time": 0.75, "x": 1.08, "y": 1.08, "curve": 0.313, "c3": 0.699}, {"time": 0.9167} + {"curve": 0, "c2": 0.4, "c3": 0.383}, {"time": 0.25, "x": -1.86, "y": -9.26, "curve": "stepped"}, {"time": 0.3167, "x": -1.86, "y": -9.26, "curve": "stepped"}, + {"time": 0.3333, "x": -2.24, "y": 13.67, "curve": "stepped"}, {"time": 0.75, "x": -2.24, "y": 13.67, "curve": 0.313, "c3": 0.699}, + {"time": 0.8333, "x": -1.86, "y": -9.26, "curve": 0.313, "c3": 0.699}, {"time": 1} ] }, - "leg-back-left-IK": { + "@leg-front-left": { "translate": [ - {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.1333, "x": 80.9, "curve": 0.161, "c3": 0.854}, {"time": 0.25, "x": 62.82, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.3333, "x": -99.34, "y": 18.56, "curve": "stepped"}, {"time": 0.35, "x": -653.9, "y": 153.81}, {"time": 0.5667, "x": -653.9, "y": 167.85, "curve": "stepped"}, - {"time": 0.5833, "x": -134.74, "curve": "stepped"}, {"time": 0.75, "x": -134.74, "curve": 0.313, "c3": 0.699}, {"time": 0.9167} + {"curve": 0, "c2": 0.4, "c3": 0.383}, {"time": 0.25, "x": -1, "y": -5.53, "curve": "stepped"}, {"time": 0.3167, "x": -1, "y": -5.53, "curve": "stepped"}, + {"time": 0.3333, "x": -1.12, "y": 1.52, "curve": "stepped"}, {"time": 0.75, "x": -1.12, "y": 1.52, "curve": 0.313, "c3": 0.699}, + {"time": 0.8333, "x": -1, "y": -5.53, "curve": 0.313, "c3": 0.699}, {"time": 1} ] }, - "leg-front-right-IK": { + "@shadow": { "translate": [ - {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 22.35, "curve": 0.306, "c3": 0.695}, {"time": 0.25, "x": 42.9, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.3333, "x": -131.73, "y": 44.58, "curve": "stepped"}, {"time": 0.35, "x": 244.36, "y": -4.92, "curve": 0.31, "c4": 0.8}, - {"time": 0.5667, "x": 247.43, "y": -1.85, "curve": "stepped"}, {"time": 0.5833, "x": -180.48, "curve": "stepped"}, {"time": 0.75, "x": -180.48, "curve": 0.313, "c3": 0.699}, - {"time": 0.9167} + {"time": 0.25, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3167, "x": -143.36, "curve": "stepped"}, {"time": 0.7, "x": -143.36, "curve": "stepped"}, + {"time": 0.75, "x": -161.35, "curve": "stepped"}, {"time": 0.8333, "x": -161.35, "curve": 0.313, "c3": 0.699}, {"time": 1} + ], + "scale": [ + {"curve": 0, "c2": 0.4, "c3": 0.383}, {"time": 0.25, "x": 1.08, "y": 1.08, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3167, "curve": "stepped"}, + {"time": 0.3333, "x": 1.02, "y": 1.02, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.4, "x": 0.96, "y": 0.96, "curve": "stepped"}, + {"time": 0.4333, "x": 1.02, "y": 1.02, "curve": "stepped"}, {"time": 0.4667, "x": 1.02, "y": 1.02, "curve": 0, "c2": 0.3, "c3": 0.544}, + {"time": 0.5333, "x": 0.96, "y": 0.96, "curve": "stepped"}, {"time": 0.5667, "x": 1.02, "y": 1.02, "curve": "stepped"}, + {"time": 0.6, "x": 1.02, "y": 1.02, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.6667, "x": 0.96, "y": 0.96, "curve": "stepped"}, + {"time": 0.7, "x": 1.02, "y": 1.02, "curve": "stepped"}, {"time": 0.75, "curve": 0.313, "c3": 0.699}, {"time": 0.8333, "x": 1.08, "y": 1.08, "curve": 0.313, "c3": 0.699}, {"time": 1} ] }, "leg-front-left-IK": { "translate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "x": 40.76, "y": 5.08, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "x": 49, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.3333, "x": -180.92, "y": 40.32, "curve": "stepped"}, {"time": 0.35, "x": -197.17}, {"time": 0.5667, "x": -230.7, "y": 4.81, "curve": "stepped"}, - {"time": 0.5833, "x": -180.48, "curve": "stepped"}, {"time": 0.75, "x": -180.48, "curve": 0.313, "c3": 0.699}, {"time": 0.9167} + {"time": 0.25, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3167, "x": -192.09, "y": 31.17, "curve": "stepped"}, + {"time": 0.3333, "x": -219.56, "y": 3.98, "curve": 0.277, "c3": 0.849, "c4": 0.67}, {"time": 0.65, "x": -219.56, "y": 3.98, "curve": 0.641, "c2": 0.41, "c4": 0.76}, + {"time": 0.7, "x": -226.38, "y": 3.98, "curve": "stepped"}, {"time": 0.75, "x": -157.76, "curve": "stepped"}, {"time": 0.8333, "x": -157.76, "curve": 0.306, "c3": 0.695}, {"time": 1} ] }, - "@leg-front-left": { + "leg-front-right-IK": { "translate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "x": -2.9, "y": -1.1, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.25, "x": -0.62, "y": -3.44, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "x": -1, "y": -5.53, "curve": "stepped"}, {"time": 0.35, "x": 4.4, "y": -4.91}, - {"time": 0.5667, "x": 7.49, "y": -5.17, "curve": "stepped"}, {"time": 0.5833, "x": 18.69, "y": 1.85, "curve": "stepped"}, - {"time": 0.75, "x": 18.69, "y": 1.85, "curve": 0.306, "c3": 0.695}, {"time": 0.9167} + {"time": 0.25, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3167, "x": -172.87, "y": 28.32, "curve": "stepped"}, {"time": 0.3333, "x": 295.89, "y": 8.85, "curve": "stepped"}, + {"time": 0.7, "x": 295.89, "y": 8.85, "curve": "stepped"}, {"time": 0.75, "x": -180.48, "curve": "stepped"}, {"time": 0.8333, "x": -180.48, "curve": 0.313, "c3": 0.699}, {"time": 1} ] }, - "@leg-front-right": { + "leg-back-left-IK": { "translate": [ - {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 4.31, "y": 11.86, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.25, "x": -10.48, "y": -15.33, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "x": -3.15, "y": 1.33, "curve": "stepped"}, {"time": 0.35, "x": -3.84, "y": 7.68}, - {"time": 0.5667, "x": -3.53, "y": 9.04, "curve": "stepped"}, {"time": 0.5833, "x": -2.24, "y": 13.67, "curve": 0.313, "c3": 0.699}, - {"time": 0.75, "x": -2.69, "y": -18.63, "curve": 0.313, "c3": 0.699}, {"time": 0.9167} + {"time": 0.25, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3167, "x": -96.78, "y": 27.51, "curve": "stepped"}, {"time": 0.3333, "x": -542.14, "curve": "stepped"}, + {"time": 0.7, "x": -542.14, "curve": "stepped"}, {"time": 0.75, "x": -134.74, "curve": "stepped"}, {"time": 0.8333, "x": -134.74, "curve": 0.313, "c3": 0.699}, {"time": 1} ] }, "@leg-back-left": { - "translate": [ - {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.1333, "x": 0.67, "y": -7.85, "curve": 0.161, "c3": 0.854}, {"time": 0.25, "x": 0.74, "y": -5.43, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.3333, "x": -0.54, "y": 4.44, "curve": "stepped"}, {"time": 0.35, "x": 10.26, "y": 0.56, "curve": "stepped"}, {"time": 0.5667, "x": 10.26, "y": 0.56, "curve": "stepped"}, - {"time": 0.5833} - ] - }, - "tail": { - "rotate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "angle": 15.61, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "angle": 20.44, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.3333, "angle": -15.58, "curve": "stepped"}, {"time": 0.35, "angle": 30.35}, {"time": 0.5667, "angle": 35.35, "curve": "stepped"}, - {"time": 0.5833, "angle": -11.84, "curve": 0.313, "c3": 0.699}, {"time": 0.75, "angle": 16.95, "curve": 0.313, "c3": 0.699}, {"time": 0.9167} - ] - }, - "@pivot-main": { - "translate": [{"time": 0.75, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.8333, "y": 31, "curve": 0.315, "c4": 0.8}, {"time": 0.9167}], - "scale": [{"time": 0.5667, "curve": "stepped"}, {"time": 0.75, "y": 0.98, "curve": 0.154, "c4": 0.9}, {"time": 0.9167}] + "translate": [{"time": 0.3167, "curve": "stepped"}, {"time": 0.3333, "x": -0.06, "y": 3.33, "curve": "stepped"}, {"time": 0.7, "x": -0.06, "y": 3.33, "curve": "stepped"}, {"time": 0.75}] }, + "@pivot-main": {"translate": [{"time": 0.8333, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.9167, "y": 31, "curve": 0.315, "c4": 0.8}, {"time": 1}]}, "body-fur-16": { "rotate": [ - {"angle": 8.76, "curve": 0.351, "c2": 0.4, "c3": 0.757}, {"time": 0.1, "curve": 0.25, "c3": 0.75}, {"time": 0.2333, "angle": -31.26, "curve": 0.25, "c3": 0.75}, - {"time": 0.35, "angle": -18.78, "curve": 0.25, "c3": 0.75}, {"time": 0.4, "angle": -38.17, "curve": 0.25, "c3": 0.75}, {"time": 0.4833, "angle": 22.48, "curve": 0.25, "c3": 0.75}, - {"time": 0.7, "angle": -25.91, "curve": 0.25, "c3": 0.75}, {"time": 0.8667, "angle": 12.23, "curve": 0.265, "c3": 0.618, "c4": 0.43}, {"time": 0.9167, "angle": 13.84} + {"angle": 14.21, "curve": 0.37, "c2": 0.48, "c3": 0.753}, {"time": 0.1, "angle": -9.97}, {"time": 0.2333, "angle": 18.26, "curve": 0.25, "c3": 0.75}, + {"time": 0.4167, "angle": -20.51, "curve": 0.25, "c3": 0.75}, {"time": 0.5, "angle": 32.13, "curve": 0.25, "c3": 0.75}, {"time": 0.6167, "angle": -10.59, "curve": 0.25, "c3": 0.75}, + {"time": 0.7167, "angle": 18.01, "curve": 0.25, "c3": 0.75}, {"time": 0.8167, "angle": -14.98, "curve": 0.25, "c3": 0.75}, + {"time": 0.9167, "angle": 33.21, "curve": 0.253, "c3": 0.621, "c4": 0.48}, {"time": 1, "angle": 13.84} ] }, "body-fur-15": { "rotate": [ - {"angle": 7.01, "curve": 0.369, "c2": 0.47, "c3": 0.753}, {"time": 0.0833}, {"time": 0.2167, "angle": -31.26, "curve": 0.25, "c3": 0.75}, - {"time": 0.3333, "angle": -18.78, "curve": 0.25, "c3": 0.75}, {"time": 0.3833, "angle": -38.17, "curve": 0.25, "c3": 0.75}, {"time": 0.4667, "angle": 22.48, "curve": 0.25, "c3": 0.75}, - {"time": 0.6833, "angle": -25.91, "curve": 0.25, "c3": 0.75}, {"time": 0.85, "angle": 12.23, "curve": 0.254, "c3": 0.621, "c4": 0.47}, {"time": 0.9167, "angle": 13.33} + {"angle": 9.02, "curve": 0.379, "c2": 0.52, "c3": 0.747}, {"time": 0.0833, "angle": -9.97}, {"time": 0.2167, "angle": 18.26, "curve": 0.25, "c3": 0.75}, + {"time": 0.4, "angle": -20.51, "curve": 0.25, "c3": 0.75}, {"time": 0.4833, "angle": 32.13, "curve": 0.25, "c3": 0.75}, {"time": 0.6, "angle": -10.59, "curve": 0.25, "c3": 0.75}, + {"time": 0.7, "angle": 18.01, "curve": 0.25, "c3": 0.75}, {"time": 0.8, "angle": -14.98, "curve": 0.25, "c3": 0.75}, {"time": 0.9, "angle": 33.2, "curve": 0.247, "c3": 0.63, "c4": 0.52}, + {"time": 1, "angle": 13.33} ] }, "body-fur-14": { "rotate": [ - {"angle": 10.34, "curve": 0.31, "c2": 0.26, "c3": 0.69, "c4": 0.74}, {"time": 0.0833, "angle": 1.89, "curve": 0.377, "c2": 0.61, "c3": 0.72}, {"time": 0.1167}, - {"time": 0.25, "angle": -31.26, "curve": 0.25, "c3": 0.75}, {"time": 0.3667, "angle": -18.78, "curve": 0.25, "c3": 0.75}, {"time": 0.4167, "angle": -38.17, "curve": 0.25, "c3": 0.75}, - {"time": 0.5, "angle": 22.48, "curve": 0.25, "c3": 0.75}, {"time": 0.7167, "angle": -25.91, "curve": 0.25, "c3": 0.75}, - {"time": 0.8833, "angle": 12.23, "curve": 0.28, "c3": 0.623, "c4": 0.39}, {"time": 0.9167, "angle": 13.33} + {"angle": 19.12, "curve": 0.337, "c2": 0.34, "c3": 0.702, "c4": 0.78}, {"time": 0.0833, "angle": -5.21, "curve": 0.373, "c2": 0.62, "c3": 0.713}, {"time": 0.1167, "angle": -9.97}, + {"time": 0.25, "angle": 18.26, "curve": 0.25, "c3": 0.75}, {"time": 0.4333, "angle": -20.51, "curve": 0.25, "c3": 0.75}, {"time": 0.5167, "angle": 32.13, "curve": 0.25, "c3": 0.75}, + {"time": 0.6333, "angle": -10.59, "curve": 0.25, "c3": 0.75}, {"time": 0.7333, "angle": 18.01, "curve": 0.25, "c3": 0.75}, {"time": 0.8333, "angle": -14.98, "curve": 0.25, "c3": 0.75}, + {"time": 0.9333, "angle": 33.21, "curve": 0.261, "c3": 0.618, "c4": 0.44}, {"time": 1, "angle": 13.33} ] }, "body-fur-13": { "rotate": [ - {"angle": 7.01, "curve": 0.369, "c2": 0.47, "c3": 0.753}, {"time": 0.0833}, {"time": 0.2167, "angle": -31.26, "curve": 0.25, "c3": 0.75}, - {"time": 0.3333, "angle": -18.78, "curve": 0.25, "c3": 0.75}, {"time": 0.3833, "angle": -38.17, "curve": 0.25, "c3": 0.75}, {"time": 0.4667, "angle": 22.48, "curve": 0.25, "c3": 0.75}, - {"time": 0.6833, "angle": -25.91, "curve": 0.25, "c3": 0.75}, {"time": 0.85, "angle": 12.23, "curve": 0.254, "c3": 0.621, "c4": 0.47}, {"time": 0.9167, "angle": 11.59} + {"angle": 9.02, "curve": 0.379, "c2": 0.52, "c3": 0.747}, {"time": 0.0833, "angle": -9.97, "curve": 0.25, "c3": 0.75}, {"time": 0.2167, "angle": 18.26, "curve": 0.25, "c3": 0.75}, + {"time": 0.4, "angle": -20.51, "curve": 0.25, "c3": 0.75}, {"time": 0.4833, "angle": 32.13, "curve": 0.25, "c3": 0.75}, {"time": 0.6, "angle": -10.59, "curve": 0.25, "c3": 0.75}, + {"time": 0.7, "angle": 18.01, "curve": 0.25, "c3": 0.75}, {"time": 0.8, "angle": -14.98, "curve": 0.25, "c3": 0.75}, {"time": 0.9, "angle": 33.2, "curve": 0.247, "c3": 0.63, "c4": 0.52}, + {"time": 1, "angle": 11.59} ] }, "body-fur-12": { "rotate": [ - {"angle": 5.22, "curve": 0.379, "c2": 0.53, "c3": 0.746}, {"time": 0.0667, "curve": 0.25, "c3": 0.75}, {"time": 0.2, "angle": -31.26, "curve": 0.25, "c3": 0.75}, - {"time": 0.3167, "angle": -18.78, "curve": 0.25, "c3": 0.75}, {"time": 0.3667, "angle": -38.17, "curve": 0.25, "c3": 0.75}, {"time": 0.45, "angle": 22.48, "curve": 0.25, "c3": 0.75}, - {"time": 0.6667, "angle": -25.91, "curve": 0.25, "c3": 0.75}, {"time": 0.8333, "angle": 12.23, "curve": 0.247, "c3": 0.631, "c4": 0.53}, {"time": 0.9167, "angle": 8.12} + {"angle": 3.91, "curve": 0.382, "c2": 0.56, "c3": 0.739}, {"time": 0.0667, "angle": -9.97}, {"time": 0.2, "angle": 18.26, "curve": 0.25, "c3": 0.75}, + {"time": 0.3833, "angle": -20.51, "curve": 0.25, "c3": 0.75}, {"time": 0.4667, "angle": 32.13, "curve": 0.25, "c3": 0.75}, {"time": 0.5833, "angle": -10.59, "curve": 0.25, "c3": 0.75}, + {"time": 0.6833, "angle": 18.01, "curve": 0.25, "c3": 0.75}, {"time": 0.7833, "angle": -14.98, "curve": 0.25, "c3": 0.75}, + {"time": 0.8833, "angle": 33.21, "curve": 0.244, "c3": 0.643, "c4": 0.58}, {"time": 1, "angle": 8.12} ] }, "body-fur-11": { "rotate": [ - {"angle": 3.47, "curve": 0.382, "c2": 0.57, "c3": 0.735}, {"time": 0.05, "curve": 0.25, "c3": 0.75}, {"time": 0.1833, "angle": -31.26, "curve": 0.25, "c3": 0.75}, - {"time": 0.3, "angle": -18.78, "curve": 0.25, "c3": 0.75}, {"time": 0.35, "angle": -38.17, "curve": 0.25, "c3": 0.75}, {"time": 0.4333, "angle": 22.48, "curve": 0.25, "c3": 0.75}, - {"time": 0.65, "angle": -25.91, "curve": 0.25, "c3": 0.75}, {"time": 0.8167, "angle": 12.23, "curve": 0.243, "c3": 0.649, "c4": 0.6}, {"time": 0.9167, "angle": 4.23} + {"angle": -0.94, "curve": 0.381, "c2": 0.59, "c3": 0.727}, {"time": 0.05, "angle": -9.97}, {"time": 0.1833, "angle": 18.26, "curve": 0.25, "c3": 0.75}, + {"time": 0.3667, "angle": -20.51, "curve": 0.25, "c3": 0.75}, {"time": 0.45, "angle": 32.13, "curve": 0.25, "c3": 0.75}, {"time": 0.5667, "angle": -10.59, "curve": 0.25, "c3": 0.75}, + {"time": 0.6667, "angle": 18.01, "curve": 0.25, "c3": 0.75}, {"time": 0.7667, "angle": -14.98, "curve": 0.25, "c3": 0.75}, + {"time": 0.8667, "angle": 33.21, "curve": 0.242, "c3": 0.661, "c4": 0.65}, {"time": 1, "angle": 4.23} ] }, "body-fur-10": { "rotate": [ - {"angle": 1.89, "curve": 0.377, "c2": 0.61, "c3": 0.72}, {"time": 0.0333, "curve": 0.25, "c3": 0.75}, {"time": 0.1667, "angle": -31.26, "curve": 0.25, "c3": 0.75}, - {"time": 0.2833, "angle": -18.78, "curve": 0.25, "c3": 0.75}, {"time": 0.3333, "angle": -38.17, "curve": 0.25, "c3": 0.75}, {"time": 0.4167, "angle": 22.48, "curve": 0.25, "c3": 0.75}, - {"time": 0.6333, "angle": -25.91, "curve": 0.25, "c3": 0.75}, {"time": 0.8, "angle": 12.23, "curve": 0.243, "c3": 0.674, "c4": 0.69}, {"time": 0.9167, "angle": 0.34} + {"angle": -5.21, "curve": 0.373, "c2": 0.62, "c3": 0.713}, {"time": 0.0333, "angle": -9.97}, {"time": 0.1667, "angle": 18.26, "curve": 0.25, "c3": 0.75}, + {"time": 0.35, "angle": -20.51, "curve": 0.25, "c3": 0.75}, {"time": 0.4333, "angle": 32.13, "curve": 0.25, "c3": 0.75}, {"time": 0.55, "angle": -10.59, "curve": 0.25, "c3": 0.75}, + {"time": 0.65, "angle": 18.01, "curve": 0.25, "c3": 0.75}, {"time": 0.75, "angle": -14.98, "curve": 0.25, "c3": 0.75}, + {"time": 0.85, "angle": 33.21, "curve": 0.243, "c3": 0.685, "c4": 0.73}, {"time": 1, "angle": 0.34} ] }, "body-fur-09": { "rotate": [ - {"angle": 6.97, "curve": 0.342, "c2": 0.36, "c3": 0.692, "c4": 0.75}, {"time": 0.05, "angle": 1.89, "curve": 0.377, "c2": 0.61, "c3": 0.72}, {"time": 0.0833, "curve": 0.25, "c3": 0.75}, - {"time": 0.2167, "angle": -31.26, "curve": 0.25, "c3": 0.75}, {"time": 0.3333, "angle": -18.78, "curve": 0.25, "c3": 0.75}, {"time": 0.3833, "angle": -38.17, "curve": 0.25, "c3": 0.75}, - {"time": 0.4667, "angle": 22.48, "curve": 0.25, "c3": 0.75}, {"time": 0.6833, "angle": -25.91, "curve": 0.25, "c3": 0.75}, - {"time": 0.85, "angle": 12.23, "curve": 0.254, "c3": 0.621, "c4": 0.47}, {"time": 0.9167, "angle": 6.86} + {"angle": 8.75, "curve": 0.351, "c2": 0.39, "c3": 0.696, "c4": 0.76}, {"time": 0.05, "angle": -5.21}, {"time": 0.0833, "angle": -9.97}, + {"time": 0.2167, "angle": 18.26, "curve": 0.25, "c3": 0.75}, {"time": 0.4, "angle": -20.51, "curve": 0.25, "c3": 0.75}, {"time": 0.4833, "angle": 32.13, "curve": 0.25, "c3": 0.75}, + {"time": 0.6, "angle": -10.59, "curve": 0.25, "c3": 0.75}, {"time": 0.7, "angle": 18.01, "curve": 0.25, "c3": 0.75}, {"time": 0.8, "angle": -14.98, "curve": 0.25, "c3": 0.75}, + {"time": 0.9, "angle": 33.21, "curve": 0.247, "c3": 0.63, "c4": 0.52}, {"time": 1, "angle": 6.86} ] }, "body-fur-08": { "rotate": [ - {"angle": 3.47, "curve": 0.382, "c2": 0.57, "c3": 0.735}, {"time": 0.05}, {"time": 0.1833, "angle": -31.26, "curve": 0.25, "c3": 0.75}, - {"time": 0.3, "angle": -18.78, "curve": 0.25, "c3": 0.75}, {"time": 0.35, "angle": -38.17, "curve": 0.25, "c3": 0.75}, {"time": 0.4333, "angle": 22.48, "curve": 0.25, "c3": 0.75}, - {"time": 0.65, "angle": -25.91, "curve": 0.25, "c3": 0.75}, {"time": 0.8167, "angle": 12.23, "curve": 0.243, "c3": 0.649, "c4": 0.6}, {"time": 0.9167, "angle": -0.91} + {"angle": -0.94, "curve": 0.381, "c2": 0.59, "c3": 0.727}, {"time": 0.05, "angle": -9.97}, {"time": 0.1833, "angle": 18.26, "curve": 0.25, "c3": 0.75}, + {"time": 0.3667, "angle": -20.51, "curve": 0.25, "c3": 0.75}, {"time": 0.45, "angle": 32.13, "curve": 0.25, "c3": 0.75}, {"time": 0.5667, "angle": -10.59, "curve": 0.25, "c3": 0.75}, + {"time": 0.6667, "angle": 18.01, "curve": 0.25, "c3": 0.75}, {"time": 0.7667, "angle": -14.98, "curve": 0.25, "c3": 0.75}, + {"time": 0.8667, "angle": 33.21, "curve": 0.242, "c3": 0.661, "c4": 0.65}, {"time": 1, "angle": -0.91} ] }, "body-fur-07": { "rotate": [ - {"angle": 0.63, "curve": 0.362, "c2": 0.64, "c3": 0.698}, {"time": 0.0167, "curve": 0.25, "c3": 0.75}, {"time": 0.15, "angle": -31.26, "curve": 0.25, "c3": 0.75}, - {"time": 0.2667, "angle": -18.78, "curve": 0.25, "c3": 0.75}, {"time": 0.3167, "angle": -38.17, "curve": 0.25, "c3": 0.75}, {"time": 0.4, "angle": 22.48, "curve": 0.25, "c3": 0.75}, - {"time": 0.6167, "angle": -25.91, "curve": 0.25, "c3": 0.75}, {"time": 0.7833, "angle": 12.23, "curve": 0.245, "c3": 0.707, "c4": 0.82}, {"time": 0.9167, "angle": 2.91} + {"angle": -8.45, "curve": 0.358, "c2": 0.65, "c3": 0.693}, {"time": 0.0167, "angle": -9.97}, {"time": 0.15, "angle": 18.26, "curve": 0.25, "c3": 0.75}, + {"time": 0.3333, "angle": -20.51, "curve": 0.25, "c3": 0.75}, {"time": 0.4167, "angle": 32.13, "curve": 0.25, "c3": 0.75}, {"time": 0.5333, "angle": -10.59, "curve": 0.25, "c3": 0.75}, + {"time": 0.6333, "angle": 18.01, "curve": 0.25, "c3": 0.75}, {"time": 0.7333, "angle": -14.98, "curve": 0.25, "c3": 0.75}, + {"time": 0.8333, "angle": 33.21, "curve": 0.245, "c3": 0.714, "c4": 0.85}, {"time": 1, "angle": 2.91} ] }, "body-fur-06": { "rotate": [ - {"angle": 5.17, "curve": 0.347, "c2": 0.38, "c3": 0.688, "c4": 0.74}, {"time": 0.0333, "angle": 1.89, "curve": 0.377, "c2": 0.61, "c3": 0.72}, {"time": 0.0667}, - {"time": 0.2, "angle": -31.26, "curve": 0.25, "c3": 0.75}, {"time": 0.3167, "angle": -18.78, "curve": 0.25, "c3": 0.75}, {"time": 0.3667, "angle": -38.17, "curve": 0.25, "c3": 0.75}, - {"time": 0.45, "angle": 22.48, "curve": 0.25, "c3": 0.75}, {"time": 0.6667, "angle": -25.91, "curve": 0.25, "c3": 0.75}, - {"time": 0.8333, "angle": 12.23, "curve": 0.247, "c3": 0.631, "c4": 0.53}, {"time": 0.9167, "angle": 13.33} + {"angle": 3.65, "curve": 0.35, "c2": 0.39, "c3": 0.689, "c4": 0.75}, {"time": 0.0333, "angle": -5.21}, {"time": 0.0667, "angle": -9.97}, + {"time": 0.2, "angle": 18.26, "curve": 0.25, "c3": 0.75}, {"time": 0.3833, "angle": -20.51, "curve": 0.25, "c3": 0.75}, {"time": 0.4667, "angle": 32.13, "curve": 0.25, "c3": 0.75}, + {"time": 0.5833, "angle": -10.59, "curve": 0.25, "c3": 0.75}, {"time": 0.6833, "angle": 18.01, "curve": 0.25, "c3": 0.75}, {"time": 0.7833, "angle": -14.98, "curve": 0.25, "c3": 0.75}, + {"time": 0.8833, "angle": 33.21, "curve": 0.244, "c3": 0.643, "c4": 0.58}, {"time": 1, "angle": 13.33} ] }, "body-fur-05": { "rotate": [ - {"angle": 1.89, "curve": 0.377, "c2": 0.61, "c3": 0.72}, {"time": 0.0333}, {"time": 0.1667, "angle": -31.26, "curve": 0.25, "c3": 0.75}, - {"time": 0.2833, "angle": -18.78, "curve": 0.25, "c3": 0.75}, {"time": 0.3333, "angle": -38.17, "curve": 0.25, "c3": 0.75}, {"time": 0.4167, "angle": 22.48, "curve": 0.25, "c3": 0.75}, - {"time": 0.6333, "angle": -25.91, "curve": 0.25, "c3": 0.75}, {"time": 0.8, "angle": 12.23, "curve": 0.243, "c3": 0.674, "c4": 0.69}, {"time": 0.9167, "angle": 6.86} + {"angle": -5.21, "curve": 0.373, "c2": 0.62, "c3": 0.713}, {"time": 0.0333, "angle": -9.97}, {"time": 0.1667, "angle": 18.26, "curve": 0.25, "c3": 0.75}, + {"time": 0.35, "angle": -20.51, "curve": 0.25, "c3": 0.75}, {"time": 0.4333, "angle": 32.13, "curve": 0.25, "c3": 0.75}, {"time": 0.55, "angle": -10.59, "curve": 0.25, "c3": 0.75}, + {"time": 0.65, "angle": 18.01, "curve": 0.25, "c3": 0.75}, {"time": 0.75, "angle": -14.98, "curve": 0.25, "c3": 0.75}, + {"time": 0.85, "angle": 33.21, "curve": 0.243, "c3": 0.685, "c4": 0.73}, {"time": 1, "angle": 6.86} ] }, "body-fur-04": { "rotate": [ - {"angle": 6.97, "curve": 0.342, "c2": 0.36, "c3": 0.692, "c4": 0.75}, {"time": 0.05, "angle": 1.89, "curve": 0.377, "c2": 0.61, "c3": 0.72}, {"time": 0.0833}, - {"time": 0.2167, "angle": -31.26, "curve": 0.25, "c3": 0.75}, {"time": 0.3333, "angle": -18.78, "curve": 0.25, "c3": 0.75}, {"time": 0.3833, "angle": -38.17, "curve": 0.25, "c3": 0.75}, - {"time": 0.4667, "angle": 22.48, "curve": 0.25, "c3": 0.75}, {"time": 0.6833, "angle": -25.91, "curve": 0.25, "c3": 0.75}, - {"time": 0.85, "angle": 12.23, "curve": 0.254, "c3": 0.621, "c4": 0.47}, {"time": 0.9167, "angle": 12.53} + {"angle": 8.75, "curve": 0.351, "c2": 0.39, "c3": 0.696, "c4": 0.76}, {"time": 0.05, "angle": -5.21, "curve": 0.373, "c2": 0.62, "c3": 0.713}, {"time": 0.0833, "angle": -9.97}, + {"time": 0.2167, "angle": 18.26, "curve": 0.25, "c3": 0.75}, {"time": 0.4, "angle": -20.51, "curve": 0.25, "c3": 0.75}, {"time": 0.4833, "angle": 32.13, "curve": 0.25, "c3": 0.75}, + {"time": 0.6, "angle": -10.59, "curve": 0.25, "c3": 0.75}, {"time": 0.7, "angle": 18.01, "curve": 0.25, "c3": 0.75}, {"time": 0.8, "angle": -14.98, "curve": 0.25, "c3": 0.75}, + {"time": 0.9, "angle": 33.21, "curve": 0.247, "c3": 0.63, "c4": 0.52}, {"time": 1, "angle": 12.53} ] }, "body-fur-03": { "rotate": [ - {"angle": 3.47, "curve": 0.382, "c2": 0.57, "c3": 0.735}, {"time": 0.05}, {"time": 0.1833, "angle": -31.26, "curve": 0.25, "c3": 0.75}, - {"time": 0.3, "angle": -18.78, "curve": 0.25, "c3": 0.75}, {"time": 0.35, "angle": -38.17, "curve": 0.25, "c3": 0.75}, {"time": 0.4333, "angle": 22.48, "curve": 0.25, "c3": 0.75}, - {"time": 0.65, "angle": -25.91, "curve": 0.25, "c3": 0.75}, {"time": 0.8167, "angle": 12.23, "curve": 0.243, "c3": 0.649, "c4": 0.6}, {"time": 0.9167, "angle": 5.54} + {"angle": -0.94, "curve": 0.381, "c2": 0.59, "c3": 0.727}, {"time": 0.05, "angle": -9.97, "curve": 0.25, "c3": 0.75}, {"time": 0.1833, "angle": 18.26, "curve": 0.25, "c3": 0.75}, + {"time": 0.3667, "angle": -20.51, "curve": 0.25, "c3": 0.75}, {"time": 0.45, "angle": 32.13, "curve": 0.25, "c3": 0.75}, {"time": 0.5667, "angle": -10.59, "curve": 0.25, "c3": 0.75}, + {"time": 0.6667, "angle": 18.01, "curve": 0.25, "c3": 0.75}, {"time": 0.7667, "angle": -14.98, "curve": 0.25, "c3": 0.75}, + {"time": 0.8667, "angle": 33.21, "curve": 0.242, "c3": 0.661, "c4": 0.65}, {"time": 1, "angle": 5.54} ] }, "body-fur-02": { "rotate": [ - {"angle": 8.73, "curve": 0.33, "c2": 0.32, "c3": 0.693, "c4": 0.75}, {"time": 0.0667, "angle": 1.89, "curve": 0.377, "c2": 0.61, "c3": 0.72}, {"time": 0.1}, - {"time": 0.2333, "angle": -31.26, "curve": 0.25, "c3": 0.75}, {"time": 0.35, "angle": -18.78, "curve": 0.25, "c3": 0.75}, {"time": 0.4, "angle": -38.17, "curve": 0.25, "c3": 0.75}, - {"time": 0.4833, "angle": 22.48, "curve": 0.25, "c3": 0.75}, {"time": 0.7, "angle": -25.91, "curve": 0.25, "c3": 0.75}, - {"time": 0.8667, "angle": 12.23, "curve": 0.265, "c3": 0.618, "c4": 0.43}, {"time": 0.9167, "angle": 13.84} + {"angle": 13.97, "curve": 0.346, "c2": 0.38, "c3": 0.7, "c4": 0.78}, {"time": 0.0667, "angle": -5.21, "curve": 0.373, "c2": 0.62, "c3": 0.713}, {"time": 0.1, "angle": -9.97}, + {"time": 0.2333, "angle": 18.26, "curve": 0.25, "c3": 0.75}, {"time": 0.4167, "angle": -20.51, "curve": 0.25, "c3": 0.75}, {"time": 0.5, "angle": 32.13, "curve": 0.25, "c3": 0.75}, + {"time": 0.6167, "angle": -10.59, "curve": 0.25, "c3": 0.75}, {"time": 0.7167, "angle": 18.01, "curve": 0.25, "c3": 0.75}, {"time": 0.8167, "angle": -14.98, "curve": 0.25, "c3": 0.75}, + {"time": 0.9167, "angle": 33.21, "curve": 0.253, "c3": 0.621, "c4": 0.48}, {"time": 1, "angle": 13.84} ] }, "body-fur-01": { "rotate": [ - {"angle": 5.22, "curve": 0.379, "c2": 0.53, "c3": 0.746}, {"time": 0.0667}, {"time": 0.2, "angle": -31.26, "curve": 0.25, "c3": 0.75}, - {"time": 0.3167, "angle": -18.78, "curve": 0.25, "c3": 0.75}, {"time": 0.3667, "angle": -38.17, "curve": 0.25, "c3": 0.75}, {"time": 0.45, "angle": 22.48, "curve": 0.25, "c3": 0.75}, - {"time": 0.6667, "angle": -25.91, "curve": 0.25, "c3": 0.75}, {"time": 0.8333, "angle": 12.23, "curve": 0.247, "c3": 0.631, "c4": 0.53}, {"time": 0.9167, "angle": 10.51} + {"angle": 3.91, "curve": 0.382, "c2": 0.56, "c3": 0.739}, {"time": 0.0667, "angle": -9.97, "curve": 0.25, "c3": 0.75}, {"time": 0.2, "angle": 18.26, "curve": 0.25, "c3": 0.75}, + {"time": 0.3833, "angle": -20.51, "curve": 0.25, "c3": 0.75}, {"time": 0.4667, "angle": 32.13, "curve": 0.25, "c3": 0.75}, {"time": 0.5833, "angle": -10.59, "curve": 0.25, "c3": 0.75}, + {"time": 0.6833, "angle": 18.01, "curve": 0.25, "c3": 0.75}, {"time": 0.7833, "angle": -14.98, "curve": 0.25, "c3": 0.75}, + {"time": 0.8833, "angle": 33.21, "curve": 0.244, "c3": 0.643, "c4": 0.58}, {"time": 1, "angle": 10.51} ] } }, - "drawOrder": [{"time": 0.35, "offsets": [{"slot": "leg-back-left", "offset": 2}]}, {"time": 0.5833}], - "events": [{"time": 0.35, "name": "start-attack"}, {"time": 0.5667, "name": "start-attack"}] + "events": [{"time": 0.3167, "name": "start-attack"}, {"time": 0.4333, "name": "hit"}, {"time": 0.5667, "name": "hit"}, {"time": 0.7, "name": "hit"}] }, - "3760585416": { + "3237083422": { "slots": { - "eyes": {"attachment": [{"time": 0.1333, "name": "eyes-shut"}, {"time": 0.2, "name": "eyes"}, {"time": 0.4667, "name": "eyes-shut"}, {"time": 0.5833, "name": "eyes"}]}, - "mouth": { - "attachment": [ - {"time": 0.0833, "name": "mouth-open"}, {"time": 0.1667, "name": "mouth-bite"}, {"time": 0.3333, "name": "mouth"}, {"time": 0.4167, "name": "mouth-open"}, - {"time": 0.5, "name": "mouth-bite"}, {"time": 0.5833, "name": "mouth"} - ] - } + "eyes": {"attachment": [{"time": 0.0167, "name": "eyes-angry"}, {"time": 0.85, "name": "eyes-shut"}, {"time": 0.9333, "name": "eyes"}]}, + "mouth": {"attachment": [{"time": 0.0167, "name": "mouth-bite"}, {"time": 0.1833, "name": "mouth-open"}, {"time": 0.5, "name": "mouth-bite"}, {"time": 0.9333, "name": "mouth"}]} }, "bones": { - "@mouth": { - "translate": [ - {"time": 0.1667, "curve": 0, "c2": 0.1, "c3": 0.479, "c4": 0.56}, {"time": 0.3333, "x": -0.56, "y": 3.4, "curve": 0.408, "c2": 0.51, "c3": 0.853}, {"time": 0.5, "x": 0.04, "y": 0.05} - ] - }, "@pivot-back": { "rotate": [ - {"curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.0667, "angle": -0.59, "curve": 0.075, "c4": 0.95}, {"time": 0.1333, "angle": 1.15, "curve": 0, "c2": 0.1, "c3": 0.85}, - {"time": 0.2167, "curve": "stepped"}, {"time": 0.3333, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.4, "angle": -0.59, "curve": 0.075, "c4": 0.95}, - {"time": 0.4667, "angle": 1.15, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.5833} + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "angle": -3.92, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "angle": 2.51, "curve": 0, "c2": 0.2, "c3": 0.858}, + {"time": 0.25, "angle": -6, "curve": "stepped"}, {"time": 0.7167, "angle": -6, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.8333, "angle": 6, "curve": 0.313, "c3": 0.699}, {"time": 1} ], "translate": [ - {"y": 0.06, "curve": 0.387, "c3": 0.314}, {"time": 0.1333, "x": -13.8, "y": 0.06, "curve": 0.387, "c3": 0.314}, {"time": 0.2167, "x": 0.02, "y": 0.06, "curve": "stepped"}, - {"time": 0.3333, "x": 0.02, "y": 0.06, "curve": 0.387, "c3": 0.314}, {"time": 0.4667, "x": -13.8, "y": 0.06, "curve": 0.387, "c3": 0.314}, {"time": 0.5833, "x": 0.02, "y": 0.06} - ] - }, - "@leg-front-right": { - "rotate": [ - {"curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.0667, "angle": 10.98, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.2167, "angle": -8.78, "curve": 0.161, "c3": 0.854}, - {"time": 0.3333, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.4, "angle": 10.98, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.55, "angle": -8.78, "curve": 0.161, "c3": 0.854}, - {"time": 0.6667, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.8333, "angle": -9.85, "curve": 0.161, "c3": 0.854}, {"time": 0.9833, "angle": -6.21}, - {"time": 1.15, "angle": 2.69, "curve": 0.075, "c4": 0.95}, {"time": 1.3333, "angle": -30.3} + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "x": 71.93, "y": -12.95, "curve": "stepped"}, {"time": 0.1667, "x": 71.93, "y": -12.95, "curve": 0, "c2": 0.2, "c3": 0.858}, + {"time": 0.25, "x": -145.48, "y": 99.8, "curve": 0, "c2": 0.3, "c3": 0.698}, {"time": 0.4167, "x": -145, "y": 149.7, "curve": 1, "c4": 0}, {"time": 0.5, "x": -145}, + {"time": 0.6667, "x": -145, "y": 2.5, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.7167, "y": 48.98, "curve": 0.315, "c4": 0.8}, + {"time": 0.8333, "y": -3.33, "curve": 0.313, "c3": 0.699}, {"time": 1} ] }, "@leg-front-left": { - "rotate": [ - {"curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.0667, "angle": 10.98, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.2167, "angle": -8.78, "curve": 0.161, "c3": 0.854}, - {"time": 0.3333, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.4, "angle": 10.98, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.55, "angle": -8.78, "curve": 0.161, "c3": 0.854}, - {"time": 0.6667, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.8333, "angle": -9.84, "curve": 0.161, "c3": 0.854}, {"time": 0.9833, "angle": -6.21}, - {"time": 1.15, "angle": 2.69, "curve": 0.075, "c4": 0.95}, {"time": 1.3333, "angle": 20.14} + "translate": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "x": -2.77, "y": -2.64, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.1667, "x": -0.53, "y": 0.11, "curve": 0, "c2": 0.2, "c3": 0.858}, {"time": 0.25, "x": -1, "y": -5.53, "curve": "stepped"}, + {"time": 0.7167, "x": -1, "y": -5.53, "curve": 0.464, "c4": 0.7}, {"time": 0.8333, "x": -2.17, "y": -17.49, "curve": 0.313, "c3": 0.699}, {"time": 1} ] }, "@leg-back-left": { - "rotate": [ - {"curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.0667, "angle": 10.98, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.2167, "angle": -8.78, "curve": 0.161, "c3": 0.854}, - {"time": 0.3333, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.4, "angle": 10.98, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.55, "angle": -8.78, "curve": 0.161, "c3": 0.854}, - {"time": 0.6667, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.8333, "angle": 5.93, "curve": 0.161, "c3": 0.854}, {"time": 0.9833}, - {"time": 1.15, "angle": -4.97, "curve": 0.075, "c4": 0.95}, {"time": 1.3333, "angle": -11.75} + "translate": [ + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 0.67, "y": -7.85, "curve": 0.161, "c3": 0.854}, {"time": 0.1667, "x": 0.53, "y": -13.09, "curve": 0, "c2": 0.2, "c3": 0.858}, + {"time": 0.25, "curve": "stepped"}, {"time": 0.7167, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.8333, "x": -0.5, "y": -5.23, "curve": 0.313, "c3": 0.699}, {"time": 1} ] }, - "@pivot-main": {"translate": [{"curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.0667, "y": 7.88, "curve": 0.078, "c4": 0.94}, {"time": 0.1333}]}, - "@pivot-center": {"translate": [{"curve": 0.387, "c3": 0.314}, {"time": 0.6667, "y": 14.05, "curve": 0.387, "c3": 0.314}, {"time": 1.3333}]}, "@shadow": { "translate": [ - {"curve": 0.387, "c3": 0.314}, {"time": 0.1333, "x": -23.3, "curve": 0.387, "c3": 0.314}, {"time": 0.2167, "x": -9.6, "curve": "stepped"}, - {"time": 0.3333, "x": -9.6, "curve": 0.387, "c3": 0.314}, {"time": 0.4667, "x": -23.3, "curve": 0.387, "c3": 0.314}, {"time": 0.5833} + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 61.96, "curve": "stepped"}, {"time": 0.1667, "x": 61.96, "curve": 0, "c2": 0.2, "c3": 0.858}, + {"time": 0.25, "x": -143.36, "curve": 0, "c2": 0.3, "c3": 0.698}, {"time": 0.4167, "x": -154.48, "curve": "stepped"}, {"time": 0.6667, "x": -154.48, "curve": 0, "c2": 0.3, "c3": 0.544}, + {"time": 0.7167, "x": -9.48, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.8333} ], - "scale": [{"curve": 0.387, "c3": 0.314}, {"time": 0.6667, "x": 0.95, "y": 0.95, "curve": 0.387, "c3": 0.314}, {"time": 1.3333}] + "scale": [ + {"time": 0.0833, "curve": 0, "c2": 0.26, "c3": 0.369, "c4": 0.62}, {"time": 0.1667, "x": 1.06, "y": 1.06, "curve": 0, "c2": 0.2, "c3": 0.858}, + {"time": 0.25, "curve": 0, "c2": 0.3, "c3": 0.698}, {"time": 0.4167, "x": 0.86, "y": 0.86}, {"time": 0.5, "x": 1.16, "y": 1.16}, + {"time": 0.6667, "x": 1.18, "y": 1.18, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.7167, "x": 1.02, "y": 1.02, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.8333, "x": 1.1, "y": 1.1, "curve": 0.313, "c3": 0.699}, {"time": 1} + ] + }, + "leg-front-right-IK": { + "translate": [ + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 30.89, "y": 11.74, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": 42.9, "curve": 0, "c2": 0.2, "c3": 0.858}, + {"time": 0.25, "x": -172.87, "y": 28.32, "curve": 0, "c2": 0.3, "c3": 0.698}, {"time": 0.4667, "x": 261.69, "y": 187.13, "curve": 1, "c4": 0.1}, {"time": 0.5, "x": 166.41, "y": 465.39}, + {"time": 0.6667, "x": 101.69, "y": 451.97, "curve": "stepped"}, {"time": 0.7, "x": -101.81, "y": 172.32, "curve": "stepped"}, {"time": 0.7167} + ] + }, + "leg-back-left-IK": { + "translate": [ + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 80.9, "curve": 0.161, "c3": 0.854}, {"time": 0.1667, "x": 72.25, "curve": 0, "c2": 0.2, "c3": 0.858}, + {"time": 0.25, "x": -96.78, "y": 27.51, "curve": 0, "c2": 0.3, "c3": 0.698}, {"time": 0.4667, "x": -250.56, "y": 568.36, "curve": 1, "c4": 0.1}, {"time": 0.5, "x": -654.65, "y": 234.55}, + {"time": 0.6667, "x": -665.01, "y": 210.09, "curve": "stepped"}, {"time": 0.7, "x": -61.52, "y": -3.55, "curve": "stepped"}, {"time": 0.7167} + ] + }, + "@leg-front-right": { + "translate": [ + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 4.31, "y": 11.86, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.1667, "x": -10.19, "y": -4.67, "curve": 0, "c2": 0.2, "c3": 0.858}, {"time": 0.25, "curve": "stepped"}, {"time": 0.7167, "curve": 0.464, "c4": 0.7}, + {"time": 0.8333, "x": -4.16, "y": -33.18, "curve": 0.313, "c3": 0.699}, {"time": 1} + ] + }, + "leg-front-left-IK": { + "translate": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "x": 42.22, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": 42.9, "curve": 0, "c2": 0.2, "c3": 0.858}, + {"time": 0.25, "x": -192.09, "y": 31.17, "curve": 0, "c2": 0.3, "c3": 0.698}, {"time": 0.4667, "x": -33.07, "y": 448.19, "curve": 1, "c4": 0.1}, {"time": 0.5, "x": -325.8, "y": 359.06}, + {"time": 0.6667, "x": -307.09, "y": 359.93, "curve": "stepped"}, {"time": 0.7, "x": -83.89, "y": 65.11, "curve": "stepped"}, {"time": 0.7167} + ] }, "tail": { "rotate": [ - {"curve": 0, "c2": 0.12, "c3": 0.348, "c4": 0.47}, {"time": 0.1, "angle": -6.85, "curve": 0.229, "c2": 0.25, "c3": 0.569, "c4": 0.6}, - {"time": 0.2, "angle": 1.43, "curve": 0.188, "c2": 0.31, "c3": 0.695}, {"time": 0.3333, "angle": 3.02, "curve": 0, "c2": 0.12, "c3": 0.347, "c4": 0.48}, - {"time": 0.4333, "angle": -6.85, "curve": 0.229, "c2": 0.25, "c3": 0.569, "c4": 0.6}, {"time": 0.5333, "angle": 1.2, "curve": 0.155, "c3": 0.85}, - {"time": 0.75, "angle": -5.95, "curve": 0.161, "c3": 0.854}, {"time": 0.95, "angle": -0.94}, {"time": 1.15, "angle": 4.91, "curve": 0.234, "c4": 0.9}, {"time": 1.3333} + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "angle": 15.61, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "angle": 20.44, "curve": 0, "c2": 0.2, "c3": 0.858}, + {"time": 0.25, "angle": -14.65, "curve": 0.313, "c3": 0.699}, {"time": 0.4667, "angle": -49.65, "curve": 1, "c4": 0.1}, {"time": 0.5, "angle": -2.15}, + {"time": 0.6667, "angle": -1.85, "curve": 0, "c2": 0.4, "c3": 0.383}, {"time": 0.8333, "angle": 21.05, "curve": 0.313, "c3": 0.699}, {"time": 1} + ] + }, + "@pivot-center": { + "rotate": [ + {"time": 0.25, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.4667, "angle": 112.05, "curve": 1, "c4": 0.1}, {"time": 0.5, "angle": -146.9}, + {"time": 0.6667, "angle": -145.45, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.7167} ] }, "body-fur-01": { "rotate": [ - {"angle": -2.52, "curve": 0.382, "c2": 0.55, "c3": 0.741}, {"time": 0.0833}, {"time": 0.2, "angle": 21.4, "curve": 0.25, "c3": 0.75}, - {"time": 0.35, "angle": -20.96, "curve": 0.25, "c3": 0.75}, {"time": 0.55, "angle": 22.02, "curve": 0.25, "c3": 0.75}, {"time": 0.75, "angle": -20.96, "curve": 0.25, "c3": 0.75}, - {"time": 0.9833, "angle": 1.24, "curve": 0.25, "c3": 0.75}, {"time": 1.2, "angle": -7.25, "curve": 0.245, "c3": 0.64, "c4": 0.57}, {"time": 1.3333, "angle": -2.52} + {"angle": 8.55, "curve": 0.381, "c2": 0.55, "c3": 0.742}, {"time": 0.0667}, {"time": 0.2, "angle": -31.39, "curve": 0.25, "c3": 0.75}, + {"time": 0.5667, "angle": -44.12, "curve": 0.25, "c3": 0.75}, {"time": 0.7333, "angle": 19.76, "curve": 0.25, "c3": 0.75}, {"time": 0.8, "angle": -17.51, "curve": 0.25, "c3": 0.75}, + {"time": 0.9, "angle": 23.24, "curve": 0.245, "c3": 0.637, "c4": 0.56}, {"time": 1, "angle": 10.51} ] }, "body-fur-02": { "rotate": [ - {"angle": -4.7, "curve": 0.336, "c2": 0.34, "c3": 0.691, "c4": 0.74}, {"time": 0.0833, "angle": -1.19, "curve": 0.378, "c2": 0.61, "c3": 0.721}, {"time": 0.1333}, - {"time": 0.25, "angle": 21.4, "curve": 0.25, "c3": 0.75}, {"time": 0.4, "angle": -20.96, "curve": 0.25, "c3": 0.75}, {"time": 0.6, "angle": 22.02, "curve": 0.25, "c3": 0.75}, - {"time": 0.8, "angle": -20.96, "curve": 0.25, "c3": 0.75}, {"time": 1.0333, "angle": 1.24, "curve": 0.25, "c3": 0.75}, - {"time": 1.25, "angle": -7.25, "curve": 0.259, "c3": 0.618, "c4": 0.45}, {"time": 1.3333, "angle": -4.7} + {"angle": 14.58, "curve": 0.339, "c2": 0.35, "c3": 0.697, "c4": 0.76}, {"time": 0.0667, "angle": 3.02, "curve": 0.375, "c2": 0.62, "c3": 0.716}, {"time": 0.1}, + {"time": 0.2333, "angle": -44.52, "curve": 0.25, "c3": 0.75}, {"time": 0.6, "angle": -44.12, "curve": 0.25, "c3": 0.75}, {"time": 0.7667, "angle": 19.76, "curve": 0.25, "c3": 0.75}, + {"time": 0.8333, "angle": -17.51, "curve": 0.25, "c3": 0.75}, {"time": 0.9333, "angle": 23.24, "curve": 0.258, "c3": 0.619, "c4": 0.45}, {"time": 1, "angle": 13.84} ] }, "body-fur-03": { "rotate": [ - {"angle": -4.73, "curve": 0.36, "c2": 0.43, "c3": 0.755}, {"time": 0.1333}, {"time": 0.25, "angle": 21.4, "curve": 0.25, "c3": 0.75}, - {"time": 0.4, "angle": -20.96, "curve": 0.25, "c3": 0.75}, {"time": 0.6, "angle": 22.02, "curve": 0.25, "c3": 0.75}, {"time": 0.8, "angle": -20.96, "curve": 0.25, "c3": 0.75}, - {"time": 1.0333, "angle": 1.24, "curve": 0.25, "c3": 0.75}, {"time": 1.25, "angle": -7.25, "curve": 0.259, "c3": 0.618, "c4": 0.45}, {"time": 1.3333, "angle": -4.73} + {"angle": 5.63, "curve": 0.382, "c2": 0.58, "c3": 0.731}, {"time": 0.05}, {"time": 0.1833, "angle": -25.75, "curve": 0.25, "c3": 0.75}, + {"time": 0.55, "angle": -44.12, "curve": 0.25, "c3": 0.75}, {"time": 0.7167, "angle": 19.76, "curve": 0.25, "c3": 0.75}, {"time": 0.7833, "angle": -17.51, "curve": 0.25, "c3": 0.75}, + {"time": 0.8833, "angle": 23.24, "curve": 0.243, "c3": 0.655, "c4": 0.63}, {"time": 1, "angle": 5.54} ] }, "body-fur-04": { "rotate": [ - {"angle": -6.62, "curve": 0.293, "c2": 0.2, "c3": 0.685, "c4": 0.73}, {"time": 0.1333, "angle": -1.19, "curve": 0.378, "c2": 0.61, "c3": 0.721}, {"time": 0.1833}, - {"time": 0.3, "angle": 21.4, "curve": 0.25, "c3": 0.75}, {"time": 0.45, "angle": -20.96, "curve": 0.25, "c3": 0.75}, {"time": 0.65, "angle": 22.02, "curve": 0.25, "c3": 0.75}, - {"time": 0.85, "angle": -20.96, "curve": 0.25, "c3": 0.75}, {"time": 1.0833, "angle": 1.24, "curve": 0.25, "c3": 0.75}, - {"time": 1.3, "angle": -7.25, "curve": 0.293, "c3": 0.631, "c4": 0.37}, {"time": 1.3333, "angle": -6.62} + {"angle": 11.51, "curve": 0.347, "c2": 0.38, "c3": 0.694, "c4": 0.76}, {"time": 0.05, "angle": 3.02, "curve": 0.375, "c2": 0.62, "c3": 0.716}, {"time": 0.0833}, + {"time": 0.2167, "angle": -25.75, "curve": 0.25, "c3": 0.75}, {"time": 0.5833, "angle": -44.12, "curve": 0.25, "c3": 0.75}, {"time": 0.75, "angle": 19.76, "curve": 0.25, "c3": 0.75}, + {"time": 0.8167, "angle": -17.51, "curve": 0.25, "c3": 0.75}, {"time": 0.9167, "angle": 23.24, "curve": 0.25, "c3": 0.625, "c4": 0.5}, {"time": 1, "angle": 12.53} ] }, "body-fur-05": { "rotate": [ - {"angle": -3.26, "curve": 0.378, "c2": 0.52, "c3": 0.747}, {"time": 0.1}, {"time": 0.2167, "angle": 21.4, "curve": 0.25, "c3": 0.75}, - {"time": 0.3667, "angle": -20.96, "curve": 0.25, "c3": 0.75}, {"time": 0.5667, "angle": 22.02, "curve": 0.25, "c3": 0.75}, {"time": 0.7667, "angle": -20.96, "curve": 0.25, "c3": 0.75}, - {"time": 1, "angle": 1.24, "curve": 0.25, "c3": 0.75}, {"time": 1.2167, "angle": -7.25, "curve": 0.248, "c3": 0.629, "c4": 0.52}, {"time": 1.3333, "angle": -3.26} + {"angle": 3.02, "curve": 0.375, "c2": 0.62, "c3": 0.716}, {"time": 0.0333}, {"time": 0.1667, "angle": -25.75, "curve": 0.25, "c3": 0.75}, + {"time": 0.5333, "angle": -44.12, "curve": 0.25, "c3": 0.75}, {"time": 0.7, "angle": 19.76, "curve": 0.25, "c3": 0.75}, {"time": 0.7667, "angle": -17.51, "curve": 0.25, "c3": 0.75}, + {"time": 0.8667, "angle": 23.24, "curve": 0.243, "c3": 0.68, "c4": 0.71}, {"time": 1, "angle": 6.86} ] }, "body-fur-06": { "rotate": [ - {"angle": -5.41, "curve": 0.325, "c2": 0.31, "c3": 0.691, "c4": 0.74}, {"time": 0.1, "angle": -1.19, "curve": 0.378, "c2": 0.61, "c3": 0.721}, {"time": 0.15}, - {"time": 0.2667, "angle": 21.4, "curve": 0.25, "c3": 0.75}, {"time": 0.4167, "angle": -20.96, "curve": 0.25, "c3": 0.75}, {"time": 0.6167, "angle": 22.02, "curve": 0.25, "c3": 0.75}, - {"time": 0.8167, "angle": -20.96, "curve": 0.25, "c3": 0.75}, {"time": 1.05, "angle": 1.24, "curve": 0.25, "c3": 0.75}, - {"time": 1.2667, "angle": -7.25, "curve": 0.268, "c3": 0.618, "c4": 0.42}, {"time": 1.3333, "angle": -5.41} + {"angle": 8.46, "curve": 0.349, "c2": 0.39, "c3": 0.689, "c4": 0.74}, {"time": 0.0333, "angle": 3.02, "curve": 0.375, "c2": 0.62, "c3": 0.716}, {"time": 0.0667}, + {"time": 0.2, "angle": -25.75, "curve": 0.25, "c3": 0.75}, {"time": 0.5667, "angle": -44.12, "curve": 0.25, "c3": 0.75}, {"time": 0.7333, "angle": 19.76, "curve": 0.25, "c3": 0.75}, + {"time": 0.8, "angle": -17.51, "curve": 0.25, "c3": 0.75}, {"time": 0.9, "angle": 23.24, "curve": 0.245, "c3": 0.637, "c4": 0.56}, {"time": 1, "angle": 13.33} ] }, "body-fur-07": { "rotate": [ - {"angle": -1.83, "curve": 0.382, "c2": 0.58, "c3": 0.732}, {"time": 0.0667, "curve": 0.25, "c3": 0.75}, {"time": 0.1833, "angle": 21.4, "curve": 0.25, "c3": 0.75}, - {"time": 0.3333, "angle": -20.96, "curve": 0.25, "c3": 0.75}, {"time": 0.5333, "angle": 22.02, "curve": 0.25, "c3": 0.75}, {"time": 0.7333, "angle": -20.96, "curve": 0.25, "c3": 0.75}, - {"time": 0.9667, "angle": 1.24, "curve": 0.25, "c3": 0.75}, {"time": 1.1833, "angle": -7.25, "curve": 0.243, "c3": 0.654, "c4": 0.62}, {"time": 1.3333, "angle": -1.83} + {"angle": 0.99, "curve": 0.36, "c2": 0.64, "c3": 0.695}, {"time": 0.0167, "curve": 0.25, "c3": 0.75}, {"time": 0.15, "angle": -25.75, "curve": 0.25, "c3": 0.75}, + {"time": 0.5167, "angle": -44.12, "curve": 0.25, "c3": 0.75}, {"time": 0.6833, "angle": 19.76, "curve": 0.25, "c3": 0.75}, {"time": 0.75, "angle": -17.51, "curve": 0.25, "c3": 0.75}, + {"time": 0.85, "angle": 23.24, "curve": 0.245, "c3": 0.711, "c4": 0.83}, {"time": 1, "angle": 2.91} ] }, "body-fur-08": { "rotate": [ - {"angle": -0.62, "curve": 0.369, "c2": 0.63, "c3": 0.707}, {"time": 0.0333}, {"time": 0.15, "angle": 21.4, "curve": 0.25, "c3": 0.75}, - {"time": 0.3, "angle": -20.96, "curve": 0.25, "c3": 0.75}, {"time": 0.5, "angle": 22.02, "curve": 0.25, "c3": 0.75}, {"time": 0.7, "angle": -20.96, "curve": 0.25, "c3": 0.75}, - {"time": 0.9333, "angle": 1.24, "curve": 0.25, "c3": 0.75}, {"time": 1.15, "angle": -7.25, "curve": 0.244, "c3": 0.693, "c4": 0.76}, {"time": 1.3333, "angle": -0.62} + {"angle": 5.63, "curve": 0.382, "c2": 0.58, "c3": 0.731}, {"time": 0.05}, {"time": 0.1833, "angle": -25.75, "curve": 0.25, "c3": 0.75}, + {"time": 0.55, "angle": -44.12, "curve": 0.25, "c3": 0.75}, {"time": 0.7167, "angle": 19.76, "curve": 0.25, "c3": 0.75}, {"time": 0.7833, "angle": -17.51, "curve": 0.25, "c3": 0.75}, + {"time": 0.8833, "angle": 23.24, "curve": 0.243, "c3": 0.655, "c4": 0.63}, {"time": 1, "angle": -0.91} ] }, "body-fur-09": { "rotate": [ - {"angle": -2.51, "curve": 0.345, "c2": 0.37, "c3": 0.682, "c4": 0.72}, {"time": 0.0333, "angle": -1.19, "curve": 0.378, "c2": 0.61, "c3": 0.721}, {"time": 0.0833}, - {"time": 0.2, "angle": 21.4, "curve": 0.25, "c3": 0.75}, {"time": 0.35, "angle": -20.96, "curve": 0.25, "c3": 0.75}, {"time": 0.55, "angle": 22.02, "curve": 0.25, "c3": 0.75}, - {"time": 0.75, "angle": -20.96, "curve": 0.25, "c3": 0.75}, {"time": 0.9833, "angle": 1.24, "curve": 0.25, "c3": 0.75}, - {"time": 1.2, "angle": -7.25, "curve": 0.245, "c3": 0.64, "c4": 0.57}, {"time": 1.3333, "angle": -2.51} + {"angle": 11.51, "curve": 0.347, "c2": 0.38, "c3": 0.694, "c4": 0.76}, {"time": 0.05, "angle": 3.02, "curve": 0.375, "c2": 0.62, "c3": 0.716}, + {"time": 0.0833, "curve": 0.25, "c3": 0.75}, {"time": 0.2167, "angle": -25.75, "curve": 0.25, "c3": 0.75}, {"time": 0.5833, "angle": -44.12, "curve": 0.25, "c3": 0.75}, + {"time": 0.75, "angle": 19.76, "curve": 0.25, "c3": 0.75}, {"time": 0.8167, "angle": -17.51, "curve": 0.25, "c3": 0.75}, + {"time": 0.9167, "angle": 23.24, "curve": 0.25, "c3": 0.625, "c4": 0.5}, {"time": 1, "angle": 6.86} ] }, "body-fur-10": { "rotate": [ - {"angle": -1.19, "curve": 0.378, "c2": 0.61, "c3": 0.721}, {"time": 0.05, "curve": 0.25, "c3": 0.75}, {"time": 0.1667, "angle": 21.4, "curve": 0.25, "c3": 0.75}, - {"time": 0.3167, "angle": -20.96, "curve": 0.25, "c3": 0.75}, {"time": 0.5167, "angle": 22.02, "curve": 0.25, "c3": 0.75}, {"time": 0.7167, "angle": -20.96, "curve": 0.25, "c3": 0.75}, - {"time": 0.95, "angle": 1.24, "curve": 0.25, "c3": 0.75}, {"time": 1.1667, "angle": -7.25, "curve": 0.242, "c3": 0.671, "c4": 0.68}, {"time": 1.3333, "angle": -1.19} + {"angle": 3.02, "curve": 0.375, "c2": 0.62, "c3": 0.716}, {"time": 0.0333, "curve": 0.25, "c3": 0.75}, {"time": 0.1667, "angle": -25.75, "curve": 0.25, "c3": 0.75}, + {"time": 0.5333, "angle": -44.12, "curve": 0.25, "c3": 0.75}, {"time": 0.7, "angle": 19.76, "curve": 0.25, "c3": 0.75}, {"time": 0.7667, "angle": -17.51, "curve": 0.25, "c3": 0.75}, + {"time": 0.8667, "angle": 23.24, "curve": 0.243, "c3": 0.68, "c4": 0.71}, {"time": 1, "angle": 0.34} ] }, "body-fur-11": { "rotate": [ - {"angle": -2.52, "curve": 0.382, "c2": 0.55, "c3": 0.741}, {"time": 0.0833, "curve": 0.25, "c3": 0.75}, {"time": 0.2, "angle": 21.4, "curve": 0.25, "c3": 0.75}, - {"time": 0.35, "angle": -20.96, "curve": 0.25, "c3": 0.75}, {"time": 0.55, "angle": 22.02, "curve": 0.25, "c3": 0.75}, {"time": 0.75, "angle": -20.96, "curve": 0.25, "c3": 0.75}, - {"time": 0.9833, "angle": 1.24, "curve": 0.25, "c3": 0.75}, {"time": 1.2, "angle": -7.25, "curve": 0.245, "c3": 0.64, "c4": 0.57}, {"time": 1.3333, "angle": -2.52} + {"angle": 5.63, "curve": 0.382, "c2": 0.58, "c3": 0.731}, {"time": 0.05, "curve": 0.25, "c3": 0.75}, {"time": 0.1833, "angle": -25.75, "curve": 0.25, "c3": 0.75}, + {"time": 0.55, "angle": -44.12, "curve": 0.25, "c3": 0.75}, {"time": 0.7167, "angle": 19.76, "curve": 0.25, "c3": 0.75}, {"time": 0.7833, "angle": -17.51, "curve": 0.25, "c3": 0.75}, + {"time": 0.8833, "angle": 23.24, "curve": 0.243, "c3": 0.655, "c4": 0.63}, {"time": 1, "angle": 4.23} ] }, "body-fur-12": { "rotate": [ - {"angle": -4, "curve": 0.371, "c2": 0.48, "c3": 0.752}, {"time": 0.1167, "curve": 0.25, "c3": 0.75}, {"time": 0.2333, "angle": 21.4, "curve": 0.25, "c3": 0.75}, - {"time": 0.3833, "angle": -20.96, "curve": 0.25, "c3": 0.75}, {"time": 0.5833, "angle": 22.02, "curve": 0.25, "c3": 0.75}, {"time": 0.7833, "angle": -20.96, "curve": 0.25, "c3": 0.75}, - {"time": 1.0167, "angle": 1.24, "curve": 0.25, "c3": 0.75}, {"time": 1.2333, "angle": -7.25, "curve": 0.253, "c3": 0.622, "c4": 0.48}, {"time": 1.3333, "angle": -4} + {"angle": 8.55, "curve": 0.381, "c2": 0.55, "c3": 0.742}, {"time": 0.0667, "curve": 0.25, "c3": 0.75}, {"time": 0.2, "angle": -25.75, "curve": 0.25, "c3": 0.75}, + {"time": 0.5667, "angle": -44.12, "curve": 0.25, "c3": 0.75}, {"time": 0.7333, "angle": 19.76, "curve": 0.25, "c3": 0.75}, {"time": 0.8, "angle": -17.51, "curve": 0.25, "c3": 0.75}, + {"time": 0.9, "angle": 23.24, "curve": 0.245, "c3": 0.637, "c4": 0.56}, {"time": 1, "angle": 8.12} ] }, "body-fur-13": { "rotate": [ - {"angle": -5.43, "curve": 0.346, "c2": 0.38, "c3": 0.757}, {"time": 0.15, "curve": 0.25, "c3": 0.75}, {"time": 0.2667, "angle": 21.4, "curve": 0.25, "c3": 0.75}, - {"time": 0.4167, "angle": -20.96, "curve": 0.25, "c3": 0.75}, {"time": 0.6167, "angle": 22.02, "curve": 0.25, "c3": 0.75}, {"time": 0.8167, "angle": -20.96, "curve": 0.25, "c3": 0.75}, - {"time": 1.05, "angle": 1.24, "curve": 0.25, "c3": 0.75}, {"time": 1.2667, "angle": -7.25, "curve": 0.268, "c3": 0.618, "c4": 0.42}, {"time": 1.3333, "angle": -5.43} + {"angle": 11.62, "curve": 0.375, "c2": 0.5, "c3": 0.75}, {"time": 0.0833}, {"time": 0.2167, "angle": -25.75, "curve": 0.25, "c3": 0.75}, + {"time": 0.5833, "angle": -44.12, "curve": 0.25, "c3": 0.75}, {"time": 0.75, "angle": 19.76, "curve": 0.25, "c3": 0.75}, {"time": 0.8167, "angle": -17.51, "curve": 0.25, "c3": 0.75}, + {"time": 0.9167, "angle": 23.24, "curve": 0.25, "c3": 0.625, "c4": 0.5}, {"time": 1, "angle": 11.59} ] }, "body-fur-14": { "rotate": [ - {"angle": -7.05, "curve": 0.27, "c2": 0.12, "c3": 0.679, "c4": 0.71}, {"time": 0.15, "angle": -1.19, "curve": 0.378, "c2": 0.61, "c3": 0.721}, {"time": 0.2, "curve": 0.25, "c3": 0.75}, - {"time": 0.3167, "angle": 21.4, "curve": 0.25, "c3": 0.75}, {"time": 0.4667, "angle": -20.96, "curve": 0.25, "c3": 0.75}, {"time": 0.6667, "angle": 22.02, "curve": 0.25, "c3": 0.75}, - {"time": 0.8667, "angle": -20.96, "curve": 0.25, "c3": 0.75}, {"time": 1.1, "angle": 1.24, "curve": 0.25, "c3": 0.75}, - {"time": 1.3167, "angle": -7.25, "curve": 0.311, "c3": 0.645, "c4": 0.35}, {"time": 1.3333, "angle": -7.05} + {"angle": 17.54, "curve": 0.326, "c2": 0.31, "c3": 0.697, "c4": 0.76}, {"time": 0.0833, "angle": 3.02, "curve": 0.375, "c2": 0.62, "c3": 0.716}, {"time": 0.1167}, + {"time": 0.25, "angle": -25.75, "curve": 0.25, "c3": 0.75}, {"time": 0.6167, "angle": -44.12, "curve": 0.25, "c3": 0.75}, {"time": 0.7833, "angle": 19.76, "curve": 0.25, "c3": 0.75}, + {"time": 0.85, "angle": -17.51, "curve": 0.25, "c3": 0.75}, {"time": 0.95, "angle": 23.24, "curve": 0.269, "c3": 0.618, "c4": 0.42}, {"time": 1, "angle": 13.33} ] }, "body-fur-15": { "rotate": [ - {"angle": -6.63, "curve": 0.307, "c2": 0.24, "c3": 0.756}, {"time": 0.1833, "curve": 0.25, "c3": 0.75}, {"time": 0.3, "angle": 21.4, "curve": 0.25, "c3": 0.75}, - {"time": 0.45, "angle": -20.96, "curve": 0.25, "c3": 0.75}, {"time": 0.65, "angle": 22.02, "curve": 0.25, "c3": 0.75}, {"time": 0.85, "angle": -20.96, "curve": 0.25, "c3": 0.75}, - {"time": 1.0833, "angle": 1.24, "curve": 0.25, "c3": 0.75}, {"time": 1.3, "angle": -7.25, "curve": 0.293, "c3": 0.631, "c4": 0.37}, {"time": 1.3333, "angle": -6.63} + {"angle": 11.62, "curve": 0.375, "c2": 0.5, "c3": 0.75}, {"time": 0.0833}, {"time": 0.2167, "angle": -25.75, "curve": 0.25, "c3": 0.75}, + {"time": 0.5833, "angle": -44.12, "curve": 0.25, "c3": 0.75}, {"time": 0.75, "angle": 19.76, "curve": 0.25, "c3": 0.75}, {"time": 0.8167, "angle": -17.51, "curve": 0.25, "c3": 0.75}, + {"time": 0.9167, "angle": 23.24, "curve": 0.25, "c3": 0.625, "c4": 0.5}, {"time": 1, "angle": 13.33} ] }, "body-fur-16": { "rotate": [ - {"angle": -7.25, "curve": 0.25, "c3": 0.75}, {"time": 0.2167, "curve": 0.25, "c3": 0.75}, {"time": 0.3333, "angle": 21.4, "curve": 0.25, "c3": 0.75}, - {"time": 0.4833, "angle": -20.96, "curve": 0.25, "c3": 0.75}, {"time": 0.6833, "angle": 22.02, "curve": 0.25, "c3": 0.75}, {"time": 0.8833, "angle": -20.96, "curve": 0.25, "c3": 0.75}, - {"time": 1.1167, "angle": 1.24, "curve": 0.25, "c3": 0.75}, {"time": 1.3333, "angle": -7.25} + {"angle": 14.69, "curve": 0.363, "c2": 0.44, "c3": 0.755}, {"time": 0.1, "curve": 0.25, "c3": 0.75}, {"time": 0.2333, "angle": -25.75, "curve": 0.25, "c3": 0.75}, + {"time": 0.6, "angle": -44.12, "curve": 0.25, "c3": 0.75}, {"time": 0.7667, "angle": 19.76, "curve": 0.25, "c3": 0.75}, {"time": 0.8333, "angle": -17.51, "curve": 0.25, "c3": 0.75}, + {"time": 0.9333, "angle": 23.24, "curve": 0.258, "c3": 0.619, "c4": 0.45}, {"time": 1, "angle": 13.84} ] } - } + }, + "events": [{"time": 0.4167, "name": "start-attack"}, {"time": 0.5, "name": "hit"}] }, - "3987941875": { + "3603559322": { "slots": { - "eyes": {"attachment": [{"time": 0.1333, "name": "eyes-shut"}, {"time": 0.2, "name": "eyes"}, {"time": 0.4667, "name": "eyes-shut"}]}, - "mouth": {"attachment": [{"time": 0.0833, "name": "mouth-open"}, {"time": 0.3333, "name": "mouth"}, {"time": 0.4167, "name": "mouth-open"}]} + "eyes": {"attachment": [{"time": 0.0167, "name": "eyes-angry"}, {"time": 0.9167, "name": "eyes"}]}, + "mouth": {"attachment": [{"time": 0.0167, "name": "mouth-bite"}, {"time": 0.1833, "name": "mouth-open"}, {"time": 0.5, "name": "mouth-bite"}, {"time": 0.9167, "name": "mouth"}]} }, "bones": { - "@mouth": { - "translate": [ - {"time": 0.1667, "curve": 0, "c2": 0.1, "c3": 0.479, "c4": 0.56}, {"time": 0.3333, "x": -0.56, "y": 3.4, "curve": 0.408, "c2": 0.51, "c3": 0.853}, - {"time": 0.5, "x": 0.04, "y": 0.05, "curve": 0, "c2": 0.27, "c3": 0.314, "c4": 0.8}, {"time": 0.6, "x": 3.03, "y": 2.83, "curve": 0.168, "c2": 0.32, "c3": 0.551, "c4": 0.7}, - {"time": 0.7, "x": -0.51, "y": 3.39, "curve": 0.291, "c2": 0.39, "c3": 0.63, "c4": 0.75}, {"time": 0.8, "x": -3.56, "y": 0.39, "curve": 0.329, "c2": 0.61, "c3": 0.674, "c4": 0.99}, - {"time": 0.9, "x": 0.05, "y": -0.01, "curve": 0, "c2": 0.27, "c3": 0.31, "c4": 0.8}, {"time": 1.0167, "x": 3.05, "y": 2.75, "curve": 0.154, "c2": 0.33, "c3": 0.544, "c4": 0.7}, - {"time": 1.1167, "x": -0.5, "y": 3.35, "curve": 0.298, "c2": 0.38, "c3": 0.643, "c4": 0.74}, {"time": 1.2167, "x": -3.56, "y": 0.37, "curve": 0.326, "c2": 0.61, "c3": 0.671, "c4": 0.99}, - {"time": 1.3333} - ] - }, "@pivot-back": { "rotate": [ - {"curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.0667, "angle": -0.59, "curve": 0.075, "c4": 0.95}, {"time": 0.1333, "angle": 1.15, "curve": 0, "c2": 0.1, "c3": 0.85}, - {"time": 0.2167, "curve": "stepped"}, {"time": 0.3333, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.4, "angle": -0.59, "curve": 0.075, "c4": 0.95}, - {"time": 0.4667, "angle": 1.15, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.5833} + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "angle": -3.92, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "angle": 2.51, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.25, "angle": -6, "curve": "stepped"}, {"time": 0.2667, "angle": -20, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.4833, "angle": -22, "curve": "stepped"}, + {"time": 0.5, "angle": 10}, {"time": 0.6667, "angle": 12, "curve": "stepped"}, {"time": 0.7, "angle": 4, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.8333, "angle": 6, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1} ], "translate": [ - {"y": 0.06, "curve": 0.387, "c3": 0.314}, {"time": 0.1333, "x": -13.8, "y": 0.06, "curve": 0.387, "c3": 0.314}, {"time": 0.2167, "x": 0.02, "y": 0.06, "curve": "stepped"}, - {"time": 0.3333, "x": 0.02, "y": 0.06, "curve": 0.387, "c3": 0.314}, {"time": 0.4667, "x": -13.8, "y": 0.06, "curve": 0.387, "c3": 0.314}, {"time": 0.5833, "x": 0.02, "y": 0.06} - ] - }, - "@leg-front-right": { - "rotate": [ - {"curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.0667, "angle": 10.98, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.2167, "angle": -8.78, "curve": 0.161, "c3": 0.854}, - {"time": 0.3333, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.4, "angle": 10.98, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.55, "angle": -8.78, "curve": 0.161, "c3": 0.854}, - {"time": 0.6667, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.8333, "angle": -9.85, "curve": 0.161, "c3": 0.854}, {"time": 0.9833, "angle": -6.21}, - {"time": 1.15, "angle": 2.69, "curve": 0.075, "c4": 0.95}, {"time": 1.3333} - ] - }, - "@leg-front-left": { - "rotate": [ - {"curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.0667, "angle": 10.98, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.2167, "angle": -8.78, "curve": 0.161, "c3": 0.854}, - {"time": 0.3333, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.4, "angle": 10.98, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.55, "angle": -8.78, "curve": 0.161, "c3": 0.854}, - {"time": 0.6667, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.8333, "angle": -9.84, "curve": 0.161, "c3": 0.854}, {"time": 0.9833, "angle": -6.21}, - {"time": 1.15, "angle": 2.69, "curve": 0.075, "c4": 0.95}, {"time": 1.3333} - ] - }, - "@leg-back-left": { - "rotate": [ - {"curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.0667, "angle": 10.98, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.2167, "angle": -8.78, "curve": 0.161, "c3": 0.854}, - {"time": 0.3333, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.4, "angle": 10.98, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.55, "angle": -8.78, "curve": 0.161, "c3": 0.854}, - {"time": 0.6667, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.8333, "angle": 5.93, "curve": 0.161, "c3": 0.854}, {"time": 0.9833}, - {"time": 1.15, "angle": -4.97, "curve": 0.075, "c4": 0.95}, {"time": 1.3333} - ] - }, - "@pivot-main": {"translate": [{"curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.0667, "y": 7.88, "curve": 0.078, "c4": 0.94}, {"time": 0.1333}]}, - "@pivot-center": {"translate": [{"curve": 0.387, "c3": 0.314}, {"time": 0.6667, "y": 14.05, "curve": 0.387, "c3": 0.314}, {"time": 1.3333}]}, - "@shadow": { - "translate": [ - {"curve": 0.387, "c3": 0.314}, {"time": 0.1333, "x": -23.3, "curve": 0.387, "c3": 0.314}, {"time": 0.2167, "x": -9.6, "curve": "stepped"}, - {"time": 0.3333, "x": -9.6, "curve": 0.387, "c3": 0.314}, {"time": 0.4667, "x": -23.3, "curve": 0.387, "c3": 0.314}, {"time": 0.5833} + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "x": 71.93, "y": -12.95, "curve": "stepped"}, {"time": 0.1667, "x": 71.93, "y": -12.95, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.25, "x": -135.5, "curve": "stepped"}, {"time": 0.2667, "x": -551.77, "y": 110, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.4833, "x": -551.77, "y": 120.52, "curve": "stepped"}, {"time": 0.5, "x": -565, "y": -35}, {"time": 0.6667, "x": -565, "y": -40, "curve": "stepped"}, + {"time": 0.7, "x": -135.5, "y": 5, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.8333, "x": -135.5, "y": 10, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1} ], - "scale": [{"curve": 0.387, "c3": 0.314}, {"time": 0.6667, "x": 0.95, "y": 0.95, "curve": 0.387, "c3": 0.314}, {"time": 1.3333}] - }, - "tail": { - "rotate": [ - {"curve": 0, "c2": 0.12, "c3": 0.348, "c4": 0.47}, {"time": 0.1, "angle": -6.85, "curve": 0.229, "c2": 0.25, "c3": 0.569, "c4": 0.6}, - {"time": 0.2, "angle": 1.43, "curve": 0.188, "c2": 0.31, "c3": 0.695}, {"time": 0.3333, "angle": 3.02, "curve": 0, "c2": 0.12, "c3": 0.347, "c4": 0.48}, - {"time": 0.4333, "angle": -6.85, "curve": 0.229, "c2": 0.25, "c3": 0.569, "c4": 0.6}, {"time": 0.5333, "angle": 1.2, "curve": 0.155, "c3": 0.85}, - {"time": 0.75, "angle": -5.95, "curve": 0.161, "c3": 0.854}, {"time": 0.95, "angle": -0.94}, {"time": 1.15, "angle": 4.91, "curve": 0.234, "c4": 0.9}, {"time": 1.3333} - ] - }, - "body-fur-14": { - "rotate": [ - {"angle": -7.05, "curve": 0.27, "c2": 0.12, "c3": 0.679, "c4": 0.71}, {"time": 0.15, "angle": -1.19, "curve": 0.378, "c2": 0.61, "c3": 0.721}, {"time": 0.2, "curve": 0.25, "c3": 0.75}, - {"time": 0.3167, "angle": 21.4, "curve": 0.25, "c3": 0.75}, {"time": 0.4667, "angle": -20.96, "curve": 0.25, "c3": 0.75}, {"time": 0.6667, "angle": 22.02, "curve": 0.25, "c3": 0.75}, - {"time": 0.8667, "angle": -20.96, "curve": 0.25, "c3": 0.75}, {"time": 1.1, "angle": 1.24, "curve": 0.25, "c3": 0.75}, - {"time": 1.3167, "angle": -7.25, "curve": 0.311, "c3": 0.645, "c4": 0.35}, {"time": 1.3333, "angle": -7.05} - ] - }, - "body-fur-15": { - "rotate": [ - {"angle": -6.63, "curve": 0.307, "c2": 0.24, "c3": 0.756}, {"time": 0.1833, "curve": 0.25, "c3": 0.75}, {"time": 0.3, "angle": 21.4, "curve": 0.25, "c3": 0.75}, - {"time": 0.45, "angle": -20.96, "curve": 0.25, "c3": 0.75}, {"time": 0.65, "angle": 22.02, "curve": 0.25, "c3": 0.75}, {"time": 0.85, "angle": -20.96, "curve": 0.25, "c3": 0.75}, - {"time": 1.0833, "angle": 1.24, "curve": 0.25, "c3": 0.75}, {"time": 1.3, "angle": -7.25, "curve": 0.293, "c3": 0.631, "c4": 0.37}, {"time": 1.3333, "angle": -6.63} - ] - }, - "body-fur-13": { - "rotate": [ - {"angle": -5.43, "curve": 0.346, "c2": 0.38, "c3": 0.757}, {"time": 0.15, "curve": 0.25, "c3": 0.75}, {"time": 0.2667, "angle": 21.4, "curve": 0.25, "c3": 0.75}, - {"time": 0.4167, "angle": -20.96, "curve": 0.25, "c3": 0.75}, {"time": 0.6167, "angle": 22.02, "curve": 0.25, "c3": 0.75}, {"time": 0.8167, "angle": -20.96, "curve": 0.25, "c3": 0.75}, - {"time": 1.05, "angle": 1.24, "curve": 0.25, "c3": 0.75}, {"time": 1.2667, "angle": -7.25, "curve": 0.268, "c3": 0.618, "c4": 0.42}, {"time": 1.3333, "angle": -5.43} - ] - }, - "body-fur-04": { - "rotate": [ - {"angle": -6.62, "curve": 0.293, "c2": 0.2, "c3": 0.685, "c4": 0.73}, {"time": 0.1333, "angle": -1.19, "curve": 0.378, "c2": 0.61, "c3": 0.721}, {"time": 0.1833}, - {"time": 0.3, "angle": 21.4, "curve": 0.25, "c3": 0.75}, {"time": 0.45, "angle": -20.96, "curve": 0.25, "c3": 0.75}, {"time": 0.65, "angle": 22.02, "curve": 0.25, "c3": 0.75}, - {"time": 0.85, "angle": -20.96, "curve": 0.25, "c3": 0.75}, {"time": 1.0833, "angle": 1.24, "curve": 0.25, "c3": 0.75}, - {"time": 1.3, "angle": -7.25, "curve": 0.293, "c3": 0.631, "c4": 0.37}, {"time": 1.3333, "angle": -6.62} - ] - }, - "body-fur-02": { - "rotate": [ - {"angle": -4.7, "curve": 0.336, "c2": 0.34, "c3": 0.691, "c4": 0.74}, {"time": 0.0833, "angle": -1.19, "curve": 0.378, "c2": 0.61, "c3": 0.721}, {"time": 0.1333}, - {"time": 0.25, "angle": 21.4, "curve": 0.25, "c3": 0.75}, {"time": 0.4, "angle": -20.96, "curve": 0.25, "c3": 0.75}, {"time": 0.6, "angle": 22.02, "curve": 0.25, "c3": 0.75}, - {"time": 0.8, "angle": -20.96, "curve": 0.25, "c3": 0.75}, {"time": 1.0333, "angle": 1.24, "curve": 0.25, "c3": 0.75}, - {"time": 1.25, "angle": -7.25, "curve": 0.259, "c3": 0.618, "c4": 0.45}, {"time": 1.3333, "angle": -4.7} - ] - }, - "body-fur-05": { - "rotate": [ - {"angle": -3.26, "curve": 0.378, "c2": 0.52, "c3": 0.747}, {"time": 0.1}, {"time": 0.2167, "angle": 21.4, "curve": 0.25, "c3": 0.75}, - {"time": 0.3667, "angle": -20.96, "curve": 0.25, "c3": 0.75}, {"time": 0.5667, "angle": 22.02, "curve": 0.25, "c3": 0.75}, {"time": 0.7667, "angle": -20.96, "curve": 0.25, "c3": 0.75}, - {"time": 1, "angle": 1.24, "curve": 0.25, "c3": 0.75}, {"time": 1.2167, "angle": -7.25, "curve": 0.248, "c3": 0.629, "c4": 0.52}, {"time": 1.3333, "angle": -3.26} - ] - }, - "body-fur-11": { - "rotate": [ - {"angle": -2.52, "curve": 0.382, "c2": 0.55, "c3": 0.741}, {"time": 0.0833, "curve": 0.25, "c3": 0.75}, {"time": 0.2, "angle": 21.4, "curve": 0.25, "c3": 0.75}, - {"time": 0.35, "angle": -20.96, "curve": 0.25, "c3": 0.75}, {"time": 0.55, "angle": 22.02, "curve": 0.25, "c3": 0.75}, {"time": 0.75, "angle": -20.96, "curve": 0.25, "c3": 0.75}, - {"time": 0.9833, "angle": 1.24, "curve": 0.25, "c3": 0.75}, {"time": 1.2, "angle": -7.25, "curve": 0.245, "c3": 0.64, "c4": 0.57}, {"time": 1.3333, "angle": -2.52} - ] - }, - "body-fur-07": { - "rotate": [ - {"angle": -1.83, "curve": 0.382, "c2": 0.58, "c3": 0.732}, {"time": 0.0667, "curve": 0.25, "c3": 0.75}, {"time": 0.1833, "angle": 21.4, "curve": 0.25, "c3": 0.75}, - {"time": 0.3333, "angle": -20.96, "curve": 0.25, "c3": 0.75}, {"time": 0.5333, "angle": 22.02, "curve": 0.25, "c3": 0.75}, {"time": 0.7333, "angle": -20.96, "curve": 0.25, "c3": 0.75}, - {"time": 0.9667, "angle": 1.24, "curve": 0.25, "c3": 0.75}, {"time": 1.1833, "angle": -7.25, "curve": 0.243, "c3": 0.654, "c4": 0.62}, {"time": 1.3333, "angle": -1.83} - ] - }, - "body-fur-10": { - "rotate": [ - {"angle": -1.19, "curve": 0.378, "c2": 0.61, "c3": 0.721}, {"time": 0.05, "curve": 0.25, "c3": 0.75}, {"time": 0.1667, "angle": 21.4, "curve": 0.25, "c3": 0.75}, - {"time": 0.3167, "angle": -20.96, "curve": 0.25, "c3": 0.75}, {"time": 0.5167, "angle": 22.02, "curve": 0.25, "c3": 0.75}, {"time": 0.7167, "angle": -20.96, "curve": 0.25, "c3": 0.75}, - {"time": 0.95, "angle": 1.24, "curve": 0.25, "c3": 0.75}, {"time": 1.1667, "angle": -7.25, "curve": 0.242, "c3": 0.671, "c4": 0.68}, {"time": 1.3333, "angle": -1.19} - ] - }, - "body-fur-12": { - "rotate": [ - {"angle": -4, "curve": 0.371, "c2": 0.48, "c3": 0.752}, {"time": 0.1167, "curve": 0.25, "c3": 0.75}, {"time": 0.2333, "angle": 21.4, "curve": 0.25, "c3": 0.75}, - {"time": 0.3833, "angle": -20.96, "curve": 0.25, "c3": 0.75}, {"time": 0.5833, "angle": 22.02, "curve": 0.25, "c3": 0.75}, {"time": 0.7833, "angle": -20.96, "curve": 0.25, "c3": 0.75}, - {"time": 1.0167, "angle": 1.24, "curve": 0.25, "c3": 0.75}, {"time": 1.2333, "angle": -7.25, "curve": 0.253, "c3": 0.622, "c4": 0.48}, {"time": 1.3333, "angle": -4} - ] - }, - "body-fur-08": { - "rotate": [ - {"angle": -0.62, "curve": 0.369, "c2": 0.63, "c3": 0.707}, {"time": 0.0333}, {"time": 0.15, "angle": 21.4, "curve": 0.25, "c3": 0.75}, - {"time": 0.3, "angle": -20.96, "curve": 0.25, "c3": 0.75}, {"time": 0.5, "angle": 22.02, "curve": 0.25, "c3": 0.75}, {"time": 0.7, "angle": -20.96, "curve": 0.25, "c3": 0.75}, - {"time": 0.9333, "angle": 1.24, "curve": 0.25, "c3": 0.75}, {"time": 1.15, "angle": -7.25, "curve": 0.244, "c3": 0.693, "c4": 0.76}, {"time": 1.3333, "angle": -0.62} - ] - }, - "body-fur-09": { - "rotate": [ - {"angle": -2.51, "curve": 0.345, "c2": 0.37, "c3": 0.682, "c4": 0.72}, {"time": 0.0333, "angle": -1.19, "curve": 0.378, "c2": 0.61, "c3": 0.721}, {"time": 0.0833}, - {"time": 0.2, "angle": 21.4, "curve": 0.25, "c3": 0.75}, {"time": 0.35, "angle": -20.96, "curve": 0.25, "c3": 0.75}, {"time": 0.55, "angle": 22.02, "curve": 0.25, "c3": 0.75}, - {"time": 0.75, "angle": -20.96, "curve": 0.25, "c3": 0.75}, {"time": 0.9833, "angle": 1.24, "curve": 0.25, "c3": 0.75}, - {"time": 1.2, "angle": -7.25, "curve": 0.245, "c3": 0.64, "c4": 0.57}, {"time": 1.3333, "angle": -2.51} - ] - }, - "body-fur-01": { - "rotate": [ - {"angle": -2.52, "curve": 0.382, "c2": 0.55, "c3": 0.741}, {"time": 0.0833}, {"time": 0.2, "angle": 21.4, "curve": 0.25, "c3": 0.75}, - {"time": 0.35, "angle": -20.96, "curve": 0.25, "c3": 0.75}, {"time": 0.55, "angle": 22.02, "curve": 0.25, "c3": 0.75}, {"time": 0.75, "angle": -20.96, "curve": 0.25, "c3": 0.75}, - {"time": 0.9833, "angle": 1.24, "curve": 0.25, "c3": 0.75}, {"time": 1.2, "angle": -7.25, "curve": 0.245, "c3": 0.64, "c4": 0.57}, {"time": 1.3333, "angle": -2.52} - ] - }, - "body-fur-03": { - "rotate": [ - {"angle": -4.73, "curve": 0.36, "c2": 0.43, "c3": 0.755}, {"time": 0.1333}, {"time": 0.25, "angle": 21.4, "curve": 0.25, "c3": 0.75}, - {"time": 0.4, "angle": -20.96, "curve": 0.25, "c3": 0.75}, {"time": 0.6, "angle": 22.02, "curve": 0.25, "c3": 0.75}, {"time": 0.8, "angle": -20.96, "curve": 0.25, "c3": 0.75}, - {"time": 1.0333, "angle": 1.24, "curve": 0.25, "c3": 0.75}, {"time": 1.25, "angle": -7.25, "curve": 0.259, "c3": 0.618, "c4": 0.45}, {"time": 1.3333, "angle": -4.73} - ] - }, - "body-fur-06": { - "rotate": [ - {"angle": -5.41, "curve": 0.325, "c2": 0.31, "c3": 0.691, "c4": 0.74}, {"time": 0.1, "angle": -1.19, "curve": 0.378, "c2": 0.61, "c3": 0.721}, {"time": 0.15}, - {"time": 0.2667, "angle": 21.4, "curve": 0.25, "c3": 0.75}, {"time": 0.4167, "angle": -20.96, "curve": 0.25, "c3": 0.75}, {"time": 0.6167, "angle": 22.02, "curve": 0.25, "c3": 0.75}, - {"time": 0.8167, "angle": -20.96, "curve": 0.25, "c3": 0.75}, {"time": 1.05, "angle": 1.24, "curve": 0.25, "c3": 0.75}, - {"time": 1.2667, "angle": -7.25, "curve": 0.268, "c3": 0.618, "c4": 0.42}, {"time": 1.3333, "angle": -5.41} - ] + "scale": [{"time": 0.25, "curve": "stepped"}, {"time": 0.2667, "x": -1, "curve": "stepped"}, {"time": 0.6667, "x": -1, "curve": "stepped"}, {"time": 0.7}] }, - "body-fur-16": { - "rotate": [ - {"angle": -7.25, "curve": 0.25, "c3": 0.75}, {"time": 0.2167, "curve": 0.25, "c3": 0.75}, {"time": 0.3333, "angle": 21.4, "curve": 0.25, "c3": 0.75}, - {"time": 0.4833, "angle": -20.96, "curve": 0.25, "c3": 0.75}, {"time": 0.6833, "angle": 22.02, "curve": 0.25, "c3": 0.75}, {"time": 0.8833, "angle": -20.96, "curve": 0.25, "c3": 0.75}, - {"time": 1.1167, "angle": 1.24, "curve": 0.25, "c3": 0.75}, {"time": 1.3333, "angle": -7.25} - ] - } - } - }, - "3632603752": { - "slots": {"eyes": {"attachment": [{"time": 0.0167, "name": "eyes-angry"}, {"time": 0.6333, "name": "eyes-shut"}, {"time": 0.7, "name": "eyes-angry"}, {"time": 1.2833, "name": "eyes"}]}}, - "bones": { - "@pivot-back": { - "rotate": [ - {"curve": 0.302, "c4": 0.8}, {"time": 0.1667, "angle": -5.15, "curve": 0, "c2": 0.2, "c3": 0.692}, {"time": 0.3333, "angle": 4.71, "curve": 0, "c2": 0.1, "c3": 0.853}, - {"time": 0.5, "angle": -2.3, "curve": 0.308, "c3": 0.692}, {"time": 0.6667, "angle": 2.84, "curve": 0.314, "c3": 0.701}, - {"time": 0.9167, "angle": -3.66, "curve": 0, "c2": 0.1, "c3": 0.845}, {"time": 1.0833, "angle": -0.77, "curve": 0.311, "c4": 0.8}, {"time": 1.25} - ], + "leg-front-right-IK": { "translate": [ - {"curve": 0.308, "c4": 0.79}, {"time": 0.25, "x": -74.35, "y": -25.83, "curve": 0, "c2": 0.3, "c3": 0.537}, {"time": 0.4167, "x": -74.35, "y": 55.38, "curve": 0, "c2": 0.1, "c3": 0.853}, - {"time": 0.5833, "x": 103.85, "y": -14.97, "curve": 0.308, "c3": 0.692}, {"time": 0.75, "x": 103.82, "y": 55.43, "curve": 0.314, "c3": 0.701}, - {"time": 1, "x": -40.96, "y": -15.97, "curve": 0.314, "c3": 0.701}, {"time": 1.1667, "x": -40.96, "y": 0.03, "curve": 0, "c2": 0.05, "c3": 0.933}, {"time": 1.3333} + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 30.89, "y": 11.74, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": 42.9, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.25, "x": -172.87, "y": 28.32, "curve": "stepped"}, {"time": 0.2667, "x": 224.47, "y": -9.31, "curve": "stepped"}, + {"time": 0.4833, "x": 224.47, "y": -9.31, "curve": "stepped"}, {"time": 0.5, "x": 219.47, "curve": "stepped"}, {"time": 0.6667, "x": 219.47, "curve": "stepped"}, + {"time": 0.7, "x": -152.3, "curve": "stepped"}, {"time": 0.8333, "x": -152.3, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1} ] }, - "@leg-front-right": { - "rotate": [ - {"curve": 0.307, "c4": 0.8}, {"time": 0.1667, "angle": 13.08, "curve": 0.302, "c3": 0.695}, {"time": 0.4167, "angle": -24.68, "curve": "stepped"}, - {"time": 0.5833, "angle": -24.68, "curve": 0, "c2": 0.2, "c3": 0.689}, {"time": 0.75, "angle": 8.39, "curve": "stepped"}, {"time": 0.9167, "angle": 8.39, "curve": 0.308, "c4": 0.8}, - {"time": 1.1667, "angle": -16.49, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 1.3333, "angle": -30.3} + "leg-front-left-IK": { + "translate": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "x": 43.18, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": 42.9, "y": -3.49, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.25, "x": -192.09, "y": 31.17, "curve": "stepped"}, {"time": 0.2667, "x": -277.01, "y": 66.37, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.4833, "x": -274.01, "y": 75.85, "curve": "stepped"}, {"time": 0.5, "x": -170.67, "curve": "stepped"}, {"time": 0.6667, "x": -170.67, "curve": "stepped"}, + {"time": 0.7, "x": -151.12, "curve": "stepped"}, {"time": 0.8333, "x": -151.12, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1} ] }, "@leg-front-left": { - "rotate": [ - {"curve": 0.307, "c4": 0.8}, {"time": 0.1667, "angle": 13.08, "curve": 0.302, "c3": 0.695}, {"time": 0.4167, "angle": -24.68, "curve": "stepped"}, - {"time": 0.5833, "angle": -24.68, "curve": 0, "c2": 0.2, "c3": 0.689}, {"time": 0.75, "angle": 8.39, "curve": "stepped"}, {"time": 0.9167, "angle": 8.39, "curve": 0.308, "c4": 0.8}, - {"time": 1.1667, "angle": -16.49, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 1.3333, "angle": 20.14} + "translate": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "x": -2.8, "y": -2.2, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.1667, "x": -0.62, "y": -3.38, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "x": -1, "y": -5.53, "curve": "stepped"}, + {"time": 0.2667, "x": 4, "y": -0.66, "curve": "stepped"}, {"time": 0.4833, "x": 4, "y": -0.66, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.5, "x": 4.53, "y": 2.49, "curve": "stepped"}, {"time": 0.6667, "x": 4.53, "y": 2.49, "curve": "stepped"}, + {"time": 0.7, "x": -1, "y": -5.53, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.8333, "x": -0.91, "y": -4.54, "curve": 0.315, "c4": 0.8}, {"time": 1} ] }, "@leg-back-left": { - "rotate": [ - {"curve": 0.307, "c4": 0.8}, {"time": 0.1667, "angle": 13.08}, {"time": 0.3333, "angle": -13.36}, {"time": 0.75, "angle": 11.05, "curve": "stepped"}, - {"time": 0.9167, "angle": 11.05, "curve": 0.308, "c4": 0.8}, {"time": 1.1667, "angle": -13.83, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 1.3333, "angle": -11.75} + "translate": [ + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 0.67, "y": -7.85, "curve": 0.161, "c3": 0.854}, {"time": 0.1667, "x": 0.61, "y": -9.9, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.25, "curve": "stepped"}, {"time": 0.2667, "x": -1.82, "y": 0.09}, {"time": 0.4833, "x": -6.6, "y": 4.03, "curve": "stepped"}, + {"time": 0.5, "x": 10.86, "y": -7.65, "curve": "stepped"}, {"time": 0.6667, "x": 10.86, "y": -7.65, "curve": "stepped"}, {"time": 0.7} ] }, - "tail": { - "rotate": [ - {"curve": 0, "c2": 0.2, "c3": 0.698}, {"time": 0.1667, "angle": -6, "curve": 0.305, "c3": 0.698}, {"time": 0.25, "angle": 1.14, "curve": 0.301, "c3": 0.698}, - {"time": 0.4167, "angle": -8.39, "curve": 0, "c2": 0.2, "c3": 0.698}, {"time": 0.5833, "angle": 0.59, "curve": 0.305, "c3": 0.698}, - {"time": 0.75, "angle": -10.53, "curve": 0, "c2": 0.2, "c3": 0.692}, {"time": 1, "angle": -2.29, "curve": 0.302, "c3": 0.692}, - {"time": 1.1667, "angle": -9.12, "curve": 0, "c2": 0.1, "c3": 0.844}, {"time": 1.3333} + "leg-back-left-IK": { + "translate": [ + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 80.9, "curve": 0.161, "c3": 0.854}, {"time": 0.1667, "x": 72.57, "y": -3.2, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.25, "x": -106.8, "y": 17.49, "curve": "stepped"}, {"time": 0.2667, "x": -654.94, "y": 154.36, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.4833, "x": -669.36, "y": 180.24, "curve": "stepped"}, {"time": 0.5, "x": -541.29, "y": -24.41, "curve": "stepped"}, + {"time": 0.6667, "x": -541.29, "y": -24.41, "curve": "stepped"}, {"time": 0.7, "x": -130.76, "curve": "stepped"}, {"time": 0.8333, "x": -130.76, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 1} ] }, - "back": { - "rotate": [ - {"curve": 0, "c2": 0.2, "c3": 0.698}, {"time": 0.1667, "angle": -1.84, "curve": 0.305, "c3": 0.698}, {"time": 0.25, "angle": 3, "curve": 0.301, "c3": 0.698}, - {"time": 0.4167, "angle": 0.04, "curve": 0, "c2": 0.2, "c3": 0.698}, {"time": 0.5833, "angle": 4.01, "curve": 0.305, "c3": 0.698}, - {"time": 0.75, "angle": 0.76, "curve": 0, "c2": 0.2, "c3": 0.692}, {"time": 1, "angle": 4.04, "curve": 0.302, "c3": 0.692}, - {"time": 1.1667, "angle": 1.6, "curve": 0, "c2": 0.1, "c3": 0.844}, {"time": 1.3333} + "@leg-front-right": { + "translate": [ + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 4.31, "y": 11.86, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.1667, "x": -10.19, "y": -4.67, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "x": -1.86, "y": -9.26, "curve": "stepped"}, + {"time": 0.2667, "x": -5.58, "y": 2.65, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.4833, "x": -3.84, "y": 7.68, "curve": "stepped"}, + {"time": 0.5, "x": -8.1, "y": 29.66, "curve": "stepped"}, {"time": 0.6667, "x": -8.1, "y": 29.66, "curve": "stepped"}, + {"time": 0.7, "x": -1.86, "y": -9.26, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.8333, "x": -2.25, "y": -13.72, "curve": 0.315, "c4": 0.8}, {"time": 1} ] }, "@shadow": { "translate": [ - {"curve": 0.315, "c4": 0.8}, {"time": 0.25, "x": -83.7, "curve": 0, "c2": 0.3, "c3": 0.535}, {"time": 0.4167, "x": -83.9, "curve": 0, "c2": 0.1, "c3": 0.85}, - {"time": 0.5833, "x": 94.25, "curve": 0.309, "c3": 0.691}, {"time": 0.75, "x": 94.33, "curve": 0.309, "c3": 0.691}, {"time": 1, "x": -50.6, "curve": "stepped"}, - {"time": 1.1667, "x": -50.6, "curve": 0.082, "c3": 0.928}, {"time": 1.3333} + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 61.96, "curve": "stepped"}, {"time": 0.1667, "x": 61.96, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.25, "x": -143.36, "curve": "stepped"}, {"time": 0.2667, "x": -150.21, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.4833, "x": -152.15, "curve": "stepped"}, + {"time": 0.5, "x": -142.78}, {"time": 0.6667, "x": -144.04, "curve": "stepped"}, {"time": 0.7, "x": -144.72, "curve": "stepped"}, + {"time": 0.8333, "x": -144.72, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1} ], "scale": [ - {"curve": 0.315, "c4": 0.8}, {"time": 0.25, "x": 1.04, "y": 1.04, "curve": 0, "c2": 0.3, "c3": 0.535}, {"time": 0.4167, "x": 0.95, "y": 0.95, "curve": 0, "c2": 0.1, "c3": 0.85}, - {"time": 0.5833, "x": 1.08, "y": 1.08, "curve": 0.309, "c3": 0.691}, {"time": 0.75, "x": 0.96, "y": 0.96, "curve": 0.309, "c3": 0.691}, - {"time": 1, "x": 1.08, "y": 1.08, "curve": 0.309, "c3": 0.691}, {"time": 1.1667, "x": 1.04, "y": 1.04, "curve": 0.082, "c3": 0.928}, {"time": 1.3333} + {"time": 0.0833, "curve": 0, "c2": 0.26, "c3": 0.369, "c4": 0.62}, {"time": 0.1667, "x": 1.06, "y": 1.06, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "curve": "stepped"}, + {"time": 0.2667, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.4833, "x": 0.9, "y": 0.9, "curve": "stepped"}, {"time": 0.5, "x": 1.06, "y": 1.06}, + {"time": 0.6667, "x": 1.1, "y": 1.1, "curve": "stepped"}, {"time": 0.7, "x": 1.06, "y": 1.06, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.8333, "x": 1.1, "y": 1.1, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1} ] }, - "body-fur-01": { + "tail": { "rotate": [ - {"angle": 5.84, "curve": 0.379, "c2": 0.6, "c3": 0.724}, {"time": 0.0833}, {"time": 0.25, "angle": -21.01, "curve": 0.25, "c3": 0.75}, - {"time": 0.4167, "angle": 24.41, "curve": 0.25, "c3": 0.75}, {"time": 0.7, "angle": -33.25, "curve": 0.25, "c3": 0.75}, - {"time": 1.0833, "angle": 31.64, "curve": 0.242, "c3": 0.667, "c4": 0.67}, {"time": 1.3333, "angle": 5.84} + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "angle": 15.61, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "angle": 20.44, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.25, "angle": -15.58, "curve": "stepped"}, {"time": 0.2667, "angle": 40.35, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.4833, "angle": 41.35, "curve": "stepped"}, + {"time": 0.5, "angle": -14.65}, {"time": 0.6667, "angle": -15.65, "curve": "stepped"}, {"time": 0.7, "angle": -15.58, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.8333, "angle": 19.38, "curve": 0.313, "c3": 0.699}, {"time": 1} ] }, - "body-fur-02": { + "@pivot-main": {"translate": [{"time": 0.8333, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.9167, "y": 31, "curve": 0.315, "c4": 0.8}, {"time": 1}]}, + "body-fur-16": { "rotate": [ - {"angle": 11.48, "curve": 0.355, "c2": 0.41, "c3": 0.699, "c4": 0.78}, {"time": 0.0833, "angle": 2.63, "curve": 0.369, "c2": 0.63, "c3": 0.706}, {"time": 0.1333}, - {"time": 0.3, "angle": -21.01, "curve": 0.25, "c3": 0.75}, {"time": 0.4667, "angle": 24.41, "curve": 0.25, "c3": 0.75}, {"time": 0.75, "angle": -33.25, "curve": 0.25, "c3": 0.75}, - {"time": 1.1333, "angle": 31.64, "curve": 0.245, "c3": 0.637, "c4": 0.56}, {"time": 1.3333, "angle": 11.48} + {"angle": -14.32, "curve": 0.381, "c2": 0.55, "c3": 0.742}, {"time": 0.1, "curve": 0.25, "c3": 0.75}, {"time": 0.2667, "angle": -25.37, "curve": 0.571, "c2": 0.01, "c3": 0.75}, + {"time": 0.4333, "angle": 31.07, "curve": 0.752, "c2": 0.01, "c3": 0.75}, {"time": 0.6, "angle": -34.51, "curve": 0.25, "c3": 0.75}, + {"time": 0.7667, "angle": -3.25, "curve": 0.25, "c3": 0.75}, {"time": 0.85, "angle": -38.93, "curve": 0.245, "c3": 0.637, "c4": 0.56}, {"time": 1, "angle": 13.84} ] }, - "body-fur-03": { + "body-fur-15": { "rotate": [ - {"angle": 11.64, "curve": 0.381, "c2": 0.55, "c3": 0.742}, {"time": 0.1333, "curve": 0.25, "c3": 0.75}, {"time": 0.3, "angle": -21.01, "curve": 0.25, "c3": 0.75}, - {"time": 0.4667, "angle": 24.41, "curve": 0.25, "c3": 0.75}, {"time": 0.75, "angle": -33.25, "curve": 0.25, "c3": 0.75}, - {"time": 1.1333, "angle": 31.64, "curve": 0.245, "c3": 0.637, "c4": 0.56}, {"time": 1.3333, "angle": 11.64} + {"angle": -11.05, "curve": 0.382, "c2": 0.57, "c3": 0.735}, {"time": 0.0833, "curve": 0.25, "c3": 0.75}, {"time": 0.25, "angle": -25.37, "curve": 0.571, "c2": 0.01, "c3": 0.75}, + {"time": 0.4167, "angle": 31.07, "curve": 0.752, "c2": 0.01, "c3": 0.75}, {"time": 0.5833, "angle": -34.51, "curve": 0.25, "c3": 0.75}, + {"time": 0.75, "angle": -3.25, "curve": 0.25, "c3": 0.75}, {"time": 0.8333, "angle": -38.93, "curve": 0.243, "c3": 0.649, "c4": 0.6}, {"time": 1, "angle": 13.33} ] }, - "body-fur-04": { + "body-fur-14": { "rotate": [ - {"angle": 17.76, "curve": 0.349, "c2": 0.39, "c3": 0.707, "c4": 0.8}, {"time": 0.1333, "angle": 2.63, "curve": 0.369, "c2": 0.63, "c3": 0.706}, {"time": 0.1833}, - {"time": 0.35, "angle": -21.01, "curve": 0.25, "c3": 0.75}, {"time": 0.5167, "angle": 24.41, "curve": 0.25, "c3": 0.75}, {"time": 0.8, "angle": -33.25, "curve": 0.25, "c3": 0.75}, - {"time": 1.1833, "angle": 31.64, "curve": 0.253, "c3": 0.621, "c4": 0.48}, {"time": 1.3333, "angle": 17.76} + {"angle": -17.56, "curve": 0.356, "c2": 0.41, "c3": 0.707, "c4": 0.81}, {"time": 0.0833, "angle": -2.71, "curve": 0.366, "c2": 0.63, "c3": 0.703}, {"time": 0.1167}, + {"time": 0.2833, "angle": -25.37, "curve": 0.571, "c2": 0.01, "c3": 0.75}, {"time": 0.45, "angle": 31.07, "curve": 0.752, "c2": 0.01, "c3": 0.75}, + {"time": 0.6167, "angle": -34.51, "curve": 0.25, "c3": 0.75}, {"time": 0.7833, "angle": -3.25, "curve": 0.25, "c3": 0.75}, + {"time": 0.8667, "angle": -38.93, "curve": 0.248, "c3": 0.628, "c4": 0.52}, {"time": 1, "angle": 13.33} ] }, - "body-fur-05": { + "body-fur-13": { "rotate": [ - {"angle": 7.66, "curve": 0.382, "c2": 0.58, "c3": 0.731}, {"time": 0.1, "curve": 0.25, "c3": 0.75}, {"time": 0.2667, "angle": -21.01, "curve": 0.25, "c3": 0.75}, - {"time": 0.4333, "angle": 24.41, "curve": 0.25, "c3": 0.75}, {"time": 0.7167, "angle": -33.25, "curve": 0.25, "c3": 0.75}, - {"time": 1.1, "angle": 31.64, "curve": 0.243, "c3": 0.655, "c4": 0.63}, {"time": 1.3333, "angle": 7.66} + {"angle": -11.05, "curve": 0.382, "c2": 0.57, "c3": 0.735}, {"time": 0.0833}, {"time": 0.25, "angle": -25.37, "curve": 0.571, "c2": 0.01, "c3": 0.75}, + {"time": 0.4167, "angle": 31.07, "curve": 0.752, "c2": 0.01, "c3": 0.75}, {"time": 0.5833, "angle": -34.51, "curve": 0.25, "c3": 0.75}, + {"time": 0.75, "angle": -3.25, "curve": 0.25, "c3": 0.75}, {"time": 0.8333, "angle": -38.93, "curve": 0.243, "c3": 0.649, "c4": 0.6}, {"time": 1, "angle": 11.59} ] }, - "body-fur-06": { + "body-fur-12": { "rotate": [ - {"angle": 13.56, "curve": 0.355, "c2": 0.41, "c3": 0.702, "c4": 0.79}, {"time": 0.1, "angle": 2.63, "curve": 0.369, "c2": 0.63, "c3": 0.706}, {"time": 0.15}, - {"time": 0.3167, "angle": -21.01, "curve": 0.25, "c3": 0.75}, {"time": 0.4833, "angle": 24.41, "curve": 0.25, "c3": 0.75}, {"time": 0.7667, "angle": -33.25, "curve": 0.25, "c3": 0.75}, - {"time": 1.15, "angle": 31.64, "curve": 0.247, "c3": 0.63, "c4": 0.53}, {"time": 1.3333, "angle": 13.56} + {"angle": -7.89, "curve": 0.38, "c2": 0.59, "c3": 0.727}, {"time": 0.0667, "curve": 0.25, "c3": 0.75}, {"time": 0.2333, "angle": -25.37, "curve": 0.571, "c2": 0.01, "c3": 0.75}, + {"time": 0.4, "angle": 31.07, "curve": 0.752, "c2": 0.01, "c3": 0.75}, {"time": 0.5667, "angle": -34.51, "curve": 0.25, "c3": 0.75}, + {"time": 0.7333, "angle": -3.25, "curve": 0.25, "c3": 0.75}, {"time": 0.8167, "angle": -38.93, "curve": 0.242, "c3": 0.663, "c4": 0.65}, {"time": 1, "angle": 8.12} ] }, - "body-fur-07": { + "body-fur-11": { "rotate": [ - {"angle": 4.12, "curve": 0.375, "c2": 0.62, "c3": 0.716}, {"time": 0.0667, "curve": 0.25, "c3": 0.75}, {"time": 0.2333, "angle": -21.01, "curve": 0.25, "c3": 0.75}, - {"time": 0.4, "angle": 24.41, "curve": 0.25, "c3": 0.75}, {"time": 0.6833, "angle": -33.25, "curve": 0.25, "c3": 0.75}, - {"time": 1.0667, "angle": 31.64, "curve": 0.243, "c3": 0.68, "c4": 0.71}, {"time": 1.3333, "angle": 4.12} + {"angle": -5.07, "curve": 0.375, "c2": 0.62, "c3": 0.716}, {"time": 0.05, "curve": 0.25, "c3": 0.75}, {"time": 0.2167, "angle": -25.37, "curve": 0.571, "c2": 0.01, "c3": 0.75}, + {"time": 0.3833, "angle": 31.07, "curve": 0.752, "c2": 0.01, "c3": 0.75}, {"time": 0.55, "angle": -34.51, "curve": 0.25, "c3": 0.75}, + {"time": 0.7167, "angle": -3.25, "curve": 0.25, "c3": 0.75}, {"time": 0.8, "angle": -38.93, "curve": 0.243, "c3": 0.68, "c4": 0.71}, {"time": 1, "angle": 4.23} ] }, - "body-fur-08": { + "body-fur-10": { "rotate": [ - {"angle": 4.01, "curve": 0.351, "c2": 0.42, "c3": 0.686, "c4": 0.76}, {"time": 0.0333, "angle": 1.35, "curve": 0.36, "c2": 0.64, "c3": 0.695}, {"time": 0.0667}, - {"time": 0.2333, "angle": -21.01, "curve": 0.25, "c3": 0.75}, {"time": 0.4, "angle": 24.41, "curve": 0.25, "c3": 0.75}, {"time": 0.6833, "angle": -33.25, "curve": 0.25, "c3": 0.75}, - {"time": 1.0667, "angle": 31.64, "curve": 0.243, "c3": 0.68, "c4": 0.71}, {"time": 1.3333, "angle": 4.01} + {"angle": -2.71, "curve": 0.366, "c2": 0.63, "c3": 0.703}, {"time": 0.0333, "curve": 0.25, "c3": 0.75}, {"time": 0.2, "angle": -25.37, "curve": 0.571, "c2": 0.01, "c3": 0.75}, + {"time": 0.3667, "angle": 31.07, "curve": 0.752, "c2": 0.01, "c3": 0.75}, {"time": 0.5333, "angle": -34.51, "curve": 0.25, "c3": 0.75}, + {"time": 0.7, "angle": -3.25, "curve": 0.25, "c3": 0.75}, {"time": 0.7833, "angle": -38.93, "curve": 0.244, "c3": 0.7, "c4": 0.79}, {"time": 1, "angle": 0.34} ] }, "body-fur-09": { "rotate": [ - {"angle": 9.49, "curve": 0.342, "c2": 0.36, "c3": 0.677, "c4": 0.7}, {"time": 0.0333, "angle": 5.74, "curve": 0.348, "c2": 0.39, "c3": 0.683, "c4": 0.73}, - {"time": 0.0667, "angle": 2.63, "curve": 0.369, "c2": 0.63, "c3": 0.706}, {"time": 0.1167, "curve": 0.25, "c3": 0.75}, {"time": 0.2833, "angle": -21.01, "curve": 0.25, "c3": 0.75}, - {"time": 0.45, "angle": 24.41, "curve": 0.25, "c3": 0.75}, {"time": 0.7333, "angle": -33.25, "curve": 0.25, "c3": 0.75}, - {"time": 1.1167, "angle": 31.64, "curve": 0.244, "c3": 0.646, "c4": 0.59}, {"time": 1.3333, "angle": 9.49} + {"angle": -7.82, "curve": 0.352, "c2": 0.41, "c3": 0.688, "c4": 0.76}, {"time": 0.0333, "angle": -2.71, "curve": 0.366, "c2": 0.63, "c3": 0.703}, + {"time": 0.0667, "curve": 0.25, "c3": 0.75}, {"time": 0.2333, "angle": -25.37, "curve": 0.571, "c2": 0.01, "c3": 0.75}, + {"time": 0.4, "angle": 31.07, "curve": 0.752, "c2": 0.01, "c3": 0.75}, {"time": 0.5667, "angle": -34.51, "curve": 0.25, "c3": 0.75}, + {"time": 0.7333, "angle": -3.25, "curve": 0.25, "c3": 0.75}, {"time": 0.8167, "angle": -38.93, "curve": 0.242, "c3": 0.663, "c4": 0.65}, {"time": 1, "angle": 6.86} ] }, - "body-fur-10": { + "body-fur-08": { "rotate": [ - {"angle": 2.63, "curve": 0.369, "c2": 0.63, "c3": 0.706}, {"time": 0.05, "curve": 0.25, "c3": 0.75}, {"time": 0.2167, "angle": -21.01, "curve": 0.25, "c3": 0.75}, - {"time": 0.3833, "angle": 24.41, "curve": 0.25, "c3": 0.75}, {"time": 0.6667, "angle": -33.25, "curve": 0.25, "c3": 0.75}, - {"time": 1.05, "angle": 31.64, "curve": 0.244, "c3": 0.694, "c4": 0.77}, {"time": 1.3333, "angle": 2.63} + {"angle": -2.71, "curve": 0.366, "c2": 0.63, "c3": 0.703}, {"time": 0.0333, "curve": 0.25, "c3": 0.75}, {"time": 0.2, "angle": -25.37, "curve": 0.571, "c2": 0.01, "c3": 0.75}, + {"time": 0.3667, "angle": 31.07, "curve": 0.752, "c2": 0.01, "c3": 0.75}, {"time": 0.5333, "angle": -34.51, "curve": 0.25, "c3": 0.75}, + {"time": 0.7, "angle": -3.25, "curve": 0.25, "c3": 0.75}, {"time": 0.7833, "angle": -38.93, "curve": 0.244, "c3": 0.7, "c4": 0.79}, {"time": 1, "angle": -0.91} ] }, - "body-fur-11": { + "body-fur-07": { "rotate": [ - {"angle": 5.84, "curve": 0.379, "c2": 0.6, "c3": 0.724}, {"time": 0.0833, "curve": 0.25, "c3": 0.75}, {"time": 0.25, "angle": -21.01, "curve": 0.25, "c3": 0.75}, - {"time": 0.4167, "angle": 24.41, "curve": 0.25, "c3": 0.75}, {"time": 0.7, "angle": -33.25, "curve": 0.25, "c3": 0.75}, - {"time": 1.0833, "angle": 31.64, "curve": 0.242, "c3": 0.667, "c4": 0.67}, {"time": 1.3333, "angle": 5.84} + {"angle": -0.89, "curve": 0.352, "c2": 0.65, "c3": 0.687}, {"time": 0.0167, "curve": 0.25, "c3": 0.75}, {"time": 0.1833, "angle": -25.37, "curve": 0.571, "c2": 0.01, "c3": 0.75}, + {"time": 0.35, "angle": 31.07, "curve": 0.752, "c2": 0.01, "c3": 0.75}, {"time": 0.5167, "angle": -34.51, "curve": 0.25, "c3": 0.75}, + {"time": 0.6833, "angle": -3.25, "curve": 0.25, "c3": 0.75}, {"time": 0.7667, "angle": -38.93, "curve": 0.246, "c3": 0.723, "c4": 0.88}, {"time": 1, "angle": 2.91} ] }, - "body-fur-12": { + "body-fur-06": { "rotate": [ - {"angle": 9.64, "curve": 0.382, "c2": 0.57, "c3": 0.737}, {"time": 0.1167, "curve": 0.25, "c3": 0.75}, {"time": 0.2833, "angle": -21.01, "curve": 0.25, "c3": 0.75}, - {"time": 0.45, "angle": 24.41, "curve": 0.25, "c3": 0.75}, {"time": 0.7333, "angle": -33.25, "curve": 0.25, "c3": 0.75}, - {"time": 1.1167, "angle": 31.64, "curve": 0.244, "c3": 0.646, "c4": 0.59}, {"time": 1.3333, "angle": 9.64} + {"angle": -7.82, "curve": 0.352, "c2": 0.41, "c3": 0.688, "c4": 0.76}, {"time": 0.0333, "angle": -2.71, "curve": 0.366, "c2": 0.63, "c3": 0.703}, {"time": 0.0667}, + {"time": 0.2333, "angle": -25.37, "curve": 0.571, "c2": 0.01, "c3": 0.75}, {"time": 0.4, "angle": 31.07, "curve": 0.752, "c2": 0.01, "c3": 0.75}, + {"time": 0.5667, "angle": -34.51, "curve": 0.25, "c3": 0.75}, {"time": 0.7333, "angle": -3.25, "curve": 0.25, "c3": 0.75}, + {"time": 0.8167, "angle": -38.93, "curve": 0.242, "c3": 0.663, "c4": 0.65}, {"time": 1, "angle": 13.33} ] }, - "body-fur-13": { + "body-fur-05": { "rotate": [ - {"angle": 13.73, "curve": 0.379, "c2": 0.52, "c3": 0.747}, {"time": 0.15}, {"time": 0.3167, "angle": -21.01, "curve": 0.25, "c3": 0.75}, - {"time": 0.4833, "angle": 24.41, "curve": 0.25, "c3": 0.75}, {"time": 0.7667, "angle": -33.25, "curve": 0.25, "c3": 0.75}, - {"time": 1.15, "angle": 31.64, "curve": 0.247, "c3": 0.63, "c4": 0.53}, {"time": 1.3333, "angle": 13.73} + {"angle": -2.71, "curve": 0.366, "c2": 0.63, "c3": 0.703}, {"time": 0.0333}, {"time": 0.2, "angle": -25.37, "curve": 0.571, "c2": 0.01, "c3": 0.75}, + {"time": 0.3667, "angle": 31.07, "curve": 0.752, "c2": 0.01, "c3": 0.75}, {"time": 0.5333, "angle": -34.51, "curve": 0.25, "c3": 0.75}, + {"time": 0.7, "angle": -3.25, "curve": 0.25, "c3": 0.75}, {"time": 0.7833, "angle": -38.93, "curve": 0.244, "c3": 0.7, "c4": 0.79}, {"time": 1, "angle": 6.86} ] }, - "body-fur-14": { + "body-fur-04": { "rotate": [ - {"angle": 19.86, "curve": 0.344, "c2": 0.37, "c3": 0.708, "c4": 0.8}, {"time": 0.15, "angle": 2.63, "curve": 0.369, "c2": 0.63, "c3": 0.706}, {"time": 0.2}, - {"time": 0.3667, "angle": -21.01, "curve": 0.25, "c3": 0.75}, {"time": 0.5333, "angle": 24.41, "curve": 0.25, "c3": 0.75}, {"time": 0.8167, "angle": -33.25, "curve": 0.25, "c3": 0.75}, - {"time": 1.2, "angle": 31.64, "curve": 0.258, "c3": 0.619, "c4": 0.45}, {"time": 1.3333, "angle": 19.86} + {"angle": -10.87, "curve": 0.356, "c2": 0.42, "c3": 0.696, "c4": 0.78}, {"time": 0.05, "angle": -2.71, "curve": 0.366, "c2": 0.63, "c3": 0.703}, {"time": 0.0833}, + {"time": 0.25, "angle": -25.37, "curve": 0.571, "c2": 0.01, "c3": 0.75}, {"time": 0.4167, "angle": 31.07, "curve": 0.752, "c2": 0.01, "c3": 0.75}, + {"time": 0.5833, "angle": -34.51, "curve": 0.25, "c3": 0.75}, {"time": 0.75, "angle": -3.25, "curve": 0.25, "c3": 0.75}, + {"time": 0.8333, "angle": -38.93, "curve": 0.243, "c3": 0.649, "c4": 0.6}, {"time": 1, "angle": 12.53} ] }, - "body-fur-15": { + "body-fur-03": { "rotate": [ - {"angle": 17.91, "curve": 0.37, "c2": 0.47, "c3": 0.753}, {"time": 0.1833, "curve": 0.25, "c3": 0.75}, {"time": 0.35, "angle": -21.01, "curve": 0.25, "c3": 0.75}, - {"time": 0.5167, "angle": 24.41, "curve": 0.25, "c3": 0.75}, {"time": 0.8, "angle": -33.25, "curve": 0.25, "c3": 0.75}, - {"time": 1.1833, "angle": 31.64, "curve": 0.253, "c3": 0.621, "c4": 0.48}, {"time": 1.3333, "angle": 17.91} + {"angle": -5.07, "curve": 0.375, "c2": 0.62, "c3": 0.716}, {"time": 0.05}, {"time": 0.2167, "angle": -25.37, "curve": 0.571, "c2": 0.01, "c3": 0.75}, + {"time": 0.3833, "angle": 31.07, "curve": 0.752, "c2": 0.01, "c3": 0.75}, {"time": 0.55, "angle": -34.51, "curve": 0.25, "c3": 0.75}, + {"time": 0.7167, "angle": -3.25, "curve": 0.25, "c3": 0.75}, {"time": 0.8, "angle": -38.93, "curve": 0.243, "c3": 0.68, "c4": 0.71}, {"time": 1, "angle": 5.54} ] }, - "body-fur-16": { + "body-fur-02": { "rotate": [ - {"angle": 22.01, "curve": 0.354, "c2": 0.41, "c3": 0.756}, {"time": 0.2167, "curve": 0.25, "c3": 0.75}, {"time": 0.3833, "angle": -21.01, "curve": 0.25, "c3": 0.75}, - {"time": 0.55, "angle": 24.41, "curve": 0.25, "c3": 0.75}, {"time": 0.8333, "angle": -33.25, "curve": 0.25, "c3": 0.75}, - {"time": 1.2167, "angle": 31.64, "curve": 0.263, "c3": 0.618, "c4": 0.43}, {"time": 1.3333, "angle": 22.01} + {"angle": -14.13, "curve": 0.358, "c2": 0.42, "c3": 0.702, "c4": 0.8}, {"time": 0.0667, "angle": -2.71, "curve": 0.366, "c2": 0.63, "c3": 0.703}, {"time": 0.1}, + {"time": 0.2667, "angle": -25.37, "curve": 0.571, "c2": 0.01, "c3": 0.75}, {"time": 0.4333, "angle": 31.07, "curve": 0.752, "c2": 0.01, "c3": 0.75}, + {"time": 0.6, "angle": -34.51, "curve": 0.25, "c3": 0.75}, {"time": 0.7667, "angle": -3.25, "curve": 0.25, "c3": 0.75}, + {"time": 0.85, "angle": -38.93, "curve": 0.245, "c3": 0.637, "c4": 0.56}, {"time": 1, "angle": 13.84} + ] + }, + "body-fur-01": { + "rotate": [ + {"angle": -7.89, "curve": 0.38, "c2": 0.59, "c3": 0.727}, {"time": 0.0667}, {"time": 0.2333, "angle": -25.37, "curve": 0.571, "c2": 0.01, "c3": 0.75}, + {"time": 0.4, "angle": 31.07, "curve": 0.752, "c2": 0.01, "c3": 0.75}, {"time": 0.5667, "angle": -34.51, "curve": 0.25, "c3": 0.75}, + {"time": 0.7333, "angle": -3.25, "curve": 0.25, "c3": 0.75}, {"time": 0.8167, "angle": -38.93, "curve": 0.242, "c3": 0.663, "c4": 0.65}, {"time": 1, "angle": 10.51} ] } - } + }, + "events": [{"time": 0.3333, "name": "start-attack"}, {"time": 0.5, "name": "hit"}] }, - "1756453214": { + "2168073331": { "slots": { - "eyes": { - "attachment": [ - {"time": 0.05, "name": "eyes-angry"}, {"time": 0.55, "name": "eyes-shut"}, {"time": 0.65, "name": "eyes-angry"}, {"time": 0.9, "name": "eyes-shut"}, {"time": 0.9667, "name": "eyes"} + "eyes": {"attachment": [{"time": 0.05, "name": "eyes-angry"}, {"time": 0.6667, "name": "eyes-shut"}, {"time": 0.75, "name": "eyes"}]}, + "mouth": {"attachment": [{"time": 0.05, "name": "mouth-bite"}, {"time": 0.2667, "name": "mouth-open"}, {"time": 0.55, "name": "mouth-bite"}, {"time": 0.75, "name": "mouth"}]} + }, + "bones": { + "@leg-front-right": { + "translate": [ + {"curve": 0, "c2": 0.4, "c3": 0.383}, {"time": 0.25, "x": -2.2, "y": -15.65, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3167, "x": -1.86, "y": -9.26, "curve": "stepped"}, + {"time": 0.3333, "x": -2.24, "y": 13.67, "curve": "stepped"}, {"time": 0.5333, "x": -2.24, "y": 13.67, "curve": "stepped"}, + {"time": 0.55, "x": -2.12, "y": 6.47, "curve": 0.313, "c3": 0.699}, {"time": 0.6667, "x": -3.13, "y": -23.62, "curve": 0, "c2": 0.3, "c3": 0.54}, {"time": 0.8333} ] }, - "mouth": { - "attachment": [ - {"time": 0.1167, "name": "mouth-open"}, {"time": 0.3833, "name": "mouth-bite"}, {"time": 0.65, "name": "mouth-open"}, {"time": 0.9, "name": "mouth-bite"}, - {"time": 0.9667, "name": "mouth"} + "tail": { + "rotate": [ + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.25, "angle": 21.98, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3167, "angle": -15.58, "curve": "stepped"}, + {"time": 0.3333, "angle": 6.35}, {"time": 0.5, "angle": 10.35, "curve": "stepped"}, {"time": 0.55, "angle": -11.84, "curve": 0.313, "c3": 0.699}, + {"time": 0.6667, "angle": 16.95, "curve": 0.313, "c3": 0.699}, {"time": 0.8333} ] - } - }, - "bones": { + }, "@pivot-back": { "rotate": [ - {"curve": 0, "c2": 0.2, "c3": 0.695}, {"time": 0.1, "angle": 6, "curve": 0, "c2": 0.2, "c3": 0.695}, {"time": 0.25, "angle": -10.31, "curve": 0.317, "c4": 0.8}, - {"time": 0.3833, "angle": 5}, {"time": 0.6333, "angle": 6, "curve": 0, "c2": 0.2, "c3": 0.695}, {"time": 0.7667, "angle": -5.94, "curve": 0.317, "c4": 0.8}, - {"time": 0.9, "angle": 6.92, "curve": 0, "c2": 0.2, "c3": 0.695}, {"time": 1} + {"curve": 0, "c2": 0.4, "c3": 0.383}, {"time": 0.15, "angle": 4, "curve": "stepped"}, {"time": 0.25, "angle": 4, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.3167, "curve": "stepped"}, {"time": 0.3333}, {"time": 0.5, "angle": -3, "curve": "stepped"}, {"time": 0.55, "curve": 0.313, "c3": 0.699}, + {"time": 0.6667, "angle": 6, "curve": 0.313, "c3": 0.699}, {"time": 0.8333} ], "translate": [ - {"time": 0.1, "curve": 0, "c2": 0.2, "c3": 0.695}, {"time": 0.25, "y": 82.86, "curve": 0.317, "c4": 0.8}, {"time": 0.3833, "curve": "stepped"}, - {"time": 0.6333, "curve": 0, "c2": 0.2, "c3": 0.695}, {"time": 0.7667, "y": 70.12, "curve": 0.317, "c4": 0.8}, {"time": 0.9} - ] - }, - "@pivot-main": { - "translate": [{"time": 0.1, "curve": 0, "c2": 0.15, "c3": 0.703}, {"time": 0.3833, "x": 542.6}, {"time": 0.6333, "x": 603.73, "curve": 0, "c2": 0.1, "c3": 0.852}, {"time": 0.9}] + {"curve": 0, "c2": 0.4, "c3": 0.383}, {"time": 0.25, "x": 25, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3167, "x": -135.5, "curve": "stepped"}, {"time": 0.3333, "x": -560.54}, + {"time": 0.5, "x": -577.1, "curve": "stepped"}, {"time": 0.55, "x": -151.24, "curve": 0.313, "c3": 0.699}, {"time": 0.6667, "x": -151.24, "y": 4.06, "curve": 0.313, "c3": 0.699}, + {"time": 0.8333} + ], + "scale": [{"time": 0.3167, "curve": "stepped"}, {"time": 0.3333, "x": -1, "curve": "stepped"}, {"time": 0.5, "x": -1, "curve": "stepped"}, {"time": 0.55}] }, "@leg-front-left": { "translate": [ - {"curve": 0, "c2": 0.2, "c3": 0.695}, {"time": 0.1, "x": -1.93, "y": -18.15, "curve": 0, "c2": 0.3, "c3": 0.62}, {"time": 0.25, "curve": 0.313, "c4": 0.8}, - {"time": 0.3833, "x": -1.93, "y": -18.15}, {"time": 0.6333, "x": -1.68, "y": -15.27, "curve": 0, "c2": 0.2, "c3": 0.691}, {"time": 0.7667, "curve": 0.309, "c4": 0.8}, - {"time": 0.9, "x": -1.93, "y": -18.15, "curve": 0, "c2": 0.19, "c3": 0.695}, {"time": 1} + {"curve": 0, "c2": 0.4, "c3": 0.383}, {"time": 0.25, "x": -1, "y": -5.53, "curve": "stepped"}, {"time": 0.3167, "x": -1, "y": -5.53, "curve": "stepped"}, + {"time": 0.3333, "x": -1.12, "y": 1.52, "curve": "stepped"}, {"time": 0.55, "x": -1.12, "y": 1.52, "curve": 0.313, "c3": 0.699}, + {"time": 0.6667, "x": -1, "y": -5.53, "curve": 0.313, "c3": 0.699}, {"time": 0.8333} ] }, - "@leg-front-right": { + "@shadow": { "translate": [ - {"curve": 0, "c2": 0.2, "c3": 0.695}, {"time": 0.1, "x": -3.41, "y": -31.95, "curve": 0, "c2": 0.3, "c3": 0.62}, {"time": 0.25, "curve": 0.313, "c4": 0.8}, - {"time": 0.3833, "x": -3.41, "y": -31.95}, {"time": 0.6333, "x": -3.16, "y": -29.07, "curve": 0, "c2": 0.2, "c3": 0.691}, {"time": 0.7667, "curve": 0.309, "c4": 0.8}, - {"time": 0.9, "x": -3.41, "y": -31.95, "curve": 0, "c2": 0.19, "c3": 0.695}, {"time": 1} + {"time": 0.25, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3167, "x": -143.36, "curve": "stepped"}, {"time": 0.3333, "x": -143.36}, {"time": 0.5, "x": -157.56, "curve": "stepped"}, + {"time": 0.55, "x": -161.35, "curve": "stepped"}, {"time": 0.6667, "x": -161.35, "curve": 0.313, "c3": 0.699}, {"time": 0.8333} + ], + "scale": [ + {"curve": 0, "c2": 0.4, "c3": 0.383}, {"time": 0.25, "x": 1.08, "y": 1.08, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3167, "curve": "stepped"}, {"time": 0.3333}, + {"time": 0.5, "x": 1.08, "y": 1.08, "curve": "stepped"}, {"time": 0.55, "curve": 0.313, "c3": 0.699}, {"time": 0.6667, "x": 1.08, "y": 1.08, "curve": 0.313, "c3": 0.699}, + {"time": 0.8333} ] }, - "@leg-back-left": { + "leg-front-left-IK": { "translate": [ - {"curve": 0, "c2": 0.2, "c3": 0.695}, {"time": 0.1, "x": -0.42, "y": -4.72, "curve": 0, "c2": 0.3, "c3": 0.62}, {"time": 0.25, "curve": 0.313, "c4": 0.8}, - {"time": 0.3833, "x": -0.42, "y": -4.72, "curve": "stepped"}, {"time": 0.6333, "x": -0.42, "y": -4.72, "curve": 0, "c2": 0.2, "c3": 0.691}, {"time": 0.7667, "curve": 0.309, "c4": 0.8}, - {"time": 0.9, "x": -0.42, "y": -4.72, "curve": 0, "c2": 0.19, "c3": 0.695}, {"time": 1} + {"time": 0.25, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3167, "x": -192.09, "y": 31.17, "curve": "stepped"}, {"time": 0.3333, "x": -162.19, "curve": "stepped"}, + {"time": 0.5, "x": -162.19, "curve": "stepped"}, {"time": 0.55, "x": -180.48, "curve": "stepped"}, {"time": 0.6667, "x": -180.48, "curve": 0.313, "c3": 0.699}, {"time": 0.8333} ] }, "leg-front-right-IK": { "translate": [ - {"time": 0.1, "curve": 0, "c2": 0.3, "c3": 0.62}, {"time": 0.2167, "x": -58.81, "y": 174.08, "curve": 0.257, "c3": 0.637, "c4": 0.43}, - {"time": 0.2833, "x": 10.68, "y": 136.08, "curve": 0.518, "c2": 0.35, "c4": 0.83}, {"time": 0.3833, "x": 11}, {"time": 0.6333, "x": -14.37, "curve": 0, "c2": 0.2, "c3": 0.691}, - {"time": 0.7333, "x": 26.13, "y": 111.42, "curve": 0.257, "c3": 0.63, "c4": 0.42}, {"time": 0.8, "x": -44.87, "y": 129.12, "curve": 0.503, "c2": 0.34, "c4": 0.83}, {"time": 0.9} - ] - }, - "leg-front-left-IK": { - "translate": [ - {"time": 0.1, "curve": 0, "c2": 0.3, "c3": 0.62}, {"time": 0.2167, "x": -73.46, "y": 138.38, "curve": 0.257, "c3": 0.637, "c4": 0.43}, - {"time": 0.2833, "x": -0.77, "y": 108.17, "curve": 0.518, "c2": 0.35, "c4": 0.83}, {"time": 0.3833, "x": 11}, {"time": 0.6333, "x": -14.37, "curve": 0, "c2": 0.2, "c3": 0.691}, - {"time": 0.7333, "x": 11.48, "y": 75.71, "curve": 0.257, "c3": 0.63, "c4": 0.42}, {"time": 0.8, "x": -56.77, "y": 100.13, "curve": 0.503, "c2": 0.34, "c4": 0.83}, {"time": 0.9} + {"time": 0.25, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3167, "x": -172.87, "y": 28.32, "curve": "stepped"}, {"time": 0.3333, "x": 301.16, "y": 16.82, "curve": 0.31, "c4": 0.8}, + {"time": 0.5, "x": 285.54, "y": 12.82, "curve": "stepped"}, {"time": 0.55, "x": -180.48, "curve": "stepped"}, {"time": 0.6667, "x": -180.48, "curve": 0.313, "c3": 0.699}, + {"time": 0.8333} ] }, "leg-back-left-IK": { "translate": [ - {"time": 0.1, "curve": 0, "c2": 0.3, "c3": 0.62}, {"time": 0.2, "x": -56.56, "y": 95.34, "curve": 0.257, "c3": 0.637, "c4": 0.43}, - {"time": 0.2667, "x": 21.01, "y": 67.87, "curve": 0.518, "c2": 0.35, "c4": 0.83}, {"time": 0.3833, "x": 0.85}, {"time": 0.6333, "x": -16.87, "curve": 0, "c2": 0.2, "c3": 0.691}, - {"time": 0.7167, "x": 21.01, "y": 67.87, "curve": 0.257, "c3": 0.63, "c4": 0.42}, {"time": 0.7833, "x": -41.39, "y": 75.95, "curve": 0.503, "c2": 0.34, "c4": 0.83}, {"time": 0.9} - ] - }, - "tail": { - "rotate": [ - {"curve": 0, "c2": 0.2, "c3": 0.695}, {"time": 0.1, "angle": 21.16, "curve": 0, "c2": 0.2, "c3": 0.695}, {"time": 0.25, "angle": -27.62, "curve": 0.317, "c4": 0.8}, - {"time": 0.3833, "angle": 17.89}, {"time": 0.6333, "angle": 23.46, "curve": 0, "c2": 0.2, "c3": 0.695}, {"time": 0.7667, "angle": -27.7, "curve": 0.317, "c4": 0.8}, - {"time": 0.9, "angle": 21.16, "curve": 0, "c2": 0.2, "c3": 0.695}, {"time": 1} - ] - }, - "@shadow": { - "translate": [{"time": 0.1}, {"time": 0.3833, "x": 542.6}, {"time": 0.6333, "x": 603.73, "curve": 0, "c2": 0.1, "c3": 0.852}, {"time": 0.9}], - "scale": [ - {}, {"time": 0.1, "x": 1.08, "y": 1.08}, {"time": 0.25, "x": 0.9, "y": 0.9}, {"time": 0.3833, "x": 1.08, "y": 1.08}, {"time": 0.6333, "x": 1.1, "y": 1.1}, - {"time": 0.7833, "x": 0.9, "y": 0.9}, {"time": 0.9, "x": 1.08, "y": 1.08}, {"time": 1} + {"time": 0.25, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3167, "x": -91.18, "y": 21.9, "curve": "stepped"}, {"time": 0.3333, "x": -595.64, "y": 5, "curve": 0.31, "c4": 0.8}, + {"time": 0.5, "x": -626.51, "y": 11.36, "curve": "stepped"}, {"time": 0.55, "x": -134.74, "curve": "stepped"}, {"time": 0.6667, "x": -134.74, "curve": 0.313, "c3": 0.699}, + {"time": 0.8333} ] }, + "@pivot-main": {"translate": [{"time": 0.6667, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.75, "y": 31, "curve": 0.315, "c4": 0.8}, {"time": 0.8333}]}, + "@leg-back-left": {"translate": [{"time": 0.3167, "curve": "stepped"}, {"time": 0.3333, "x": -0.06, "y": 3.33, "curve": "stepped"}, {"time": 0.5, "x": -0.06, "y": 3.33}, {"time": 0.55}]}, "body-fur-16": { "rotate": [ - {"angle": 34.91, "curve": 0.36, "c2": 0.64, "c3": 0.695}, {"time": 0.0167, "angle": 37.78, "curve": 0.25, "c3": 0.75}, {"time": 0.1, "curve": 0.25, "c3": 0.75}, - {"time": 0.1833, "angle": -24.62, "curve": 0.25, "c3": 0.75}, {"time": 0.3167, "angle": 43.2, "curve": 0.25, "c3": 0.75}, {"time": 0.4833, "angle": -45.45, "curve": 0.25, "c3": 0.75}, - {"time": 0.7333, "angle": 40.81, "curve": 0.25, "c3": 0.75}, {"time": 0.85, "angle": -29.59, "curve": 0.245, "c3": 0.711, "c4": 0.83}, {"time": 1, "angle": 13.84} + {"angle": -19.38, "curve": 0.351, "c2": 0.4, "c3": 0.757}, {"time": 0.1, "curve": 0.25, "c3": 0.75}, {"time": 0.2333, "angle": 21.88, "curve": 0.25, "c3": 0.75}, + {"time": 0.4167, "angle": -28.05, "curve": 0.25, "c3": 0.75}, {"time": 0.5, "angle": 25.5, "curve": 0.25, "c3": 0.75}, {"time": 0.65, "curve": 0.25, "c3": 0.75}, + {"time": 0.7833, "angle": -27.06, "curve": 0.265, "c3": 0.618, "c4": 0.43}, {"time": 0.8333, "angle": 13.84} ] }, "body-fur-15": { "rotate": [ - {"angle": 37.78, "curve": 0.25, "c3": 0.75}, {"time": 0.0833}, {"time": 0.1667, "angle": -24.62, "curve": 0.25, "c3": 0.75}, {"time": 0.3, "angle": 43.2, "curve": 0.25, "c3": 0.75}, - {"time": 0.4667, "angle": -45.45, "curve": 0.25, "c3": 0.75}, {"time": 0.7167, "angle": 40.81, "curve": 0.25, "c3": 0.75}, {"time": 0.8333, "angle": -29.59, "curve": 0.25, "c3": 0.75}, - {"time": 1, "angle": 13.33} + {"angle": -15.52, "curve": 0.369, "c2": 0.47, "c3": 0.753}, {"time": 0.0833}, {"time": 0.2167, "angle": 21.88, "curve": 0.25, "c3": 0.75}, + {"time": 0.4, "angle": -28.05, "curve": 0.25, "c3": 0.75}, {"time": 0.4833, "angle": 25.5, "curve": 0.25, "c3": 0.75}, {"time": 0.6333, "curve": 0.25, "c3": 0.75}, + {"time": 0.7667, "angle": -27.06, "curve": 0.254, "c3": 0.621, "c4": 0.47}, {"time": 0.8333, "angle": 13.33} ] }, "body-fur-14": { "rotate": [ - {"angle": 29.01, "curve": 0.375, "c2": 0.62, "c3": 0.716}, {"time": 0.0333, "angle": 37.78, "curve": 0.245, "c3": 0.637, "c4": 0.56}, - {"time": 0.0833, "angle": 13.9, "curve": 0.381, "c2": 0.55, "c3": 0.742}, {"time": 0.1167}, {"time": 0.2, "angle": -24.62, "curve": 0.25, "c3": 0.75}, - {"time": 0.3333, "angle": 43.2, "curve": 0.25, "c3": 0.75}, {"time": 0.5, "angle": -45.45, "curve": 0.25, "c3": 0.75}, {"time": 0.75, "angle": 40.81, "curve": 0.25, "c3": 0.75}, - {"time": 0.8667, "angle": -29.59, "curve": 0.243, "c3": 0.68, "c4": 0.71}, {"time": 1, "angle": 13.33} + {"angle": -22.87, "curve": 0.31, "c2": 0.26, "c3": 0.69, "c4": 0.74}, {"time": 0.0833, "angle": -4.17, "curve": 0.377, "c2": 0.61, "c3": 0.72}, {"time": 0.1167}, + {"time": 0.25, "angle": 21.88, "curve": 0.25, "c3": 0.75}, {"time": 0.4333, "angle": -28.05, "curve": 0.25, "c3": 0.75}, {"time": 0.5167, "angle": 25.5, "curve": 0.25, "c3": 0.75}, + {"time": 0.6667, "curve": 0.25, "c3": 0.75}, {"time": 0.8, "angle": -27.06, "curve": 0.28, "c3": 0.623, "c4": 0.39}, {"time": 0.8333, "angle": 13.33} ] }, "body-fur-13": { "rotate": [ - {"angle": 37.78, "curve": 0.25, "c3": 0.75}, {"time": 0.0833}, {"time": 0.1667, "angle": -24.62, "curve": 0.25, "c3": 0.75}, {"time": 0.3, "angle": 43.21, "curve": 0.25, "c3": 0.75}, - {"time": 0.4667, "angle": -45.45, "curve": 0.25, "c3": 0.75}, {"time": 0.7167, "angle": 40.81, "curve": 0.25, "c3": 0.75}, {"time": 0.8333, "angle": -29.59, "curve": 0.25, "c3": 0.75}, - {"time": 1, "angle": 11.59} + {"angle": -15.52, "curve": 0.369, "c2": 0.47, "c3": 0.753}, {"time": 0.0833}, {"time": 0.2167, "angle": 21.88, "curve": 0.25, "c3": 0.75}, + {"time": 0.4, "angle": -28.05, "curve": 0.25, "c3": 0.75}, {"time": 0.4833, "angle": 25.5, "curve": 0.25, "c3": 0.75}, {"time": 0.6333, "curve": 0.25, "c3": 0.75}, + {"time": 0.7667, "angle": -27.06, "curve": 0.254, "c3": 0.621, "c4": 0.47}, {"time": 0.8333, "angle": 11.59} ] }, "body-fur-12": { "rotate": [ - {"angle": 32.86, "curve": 0.32, "c2": 0.29, "c3": 0.757}, {"time": 0.0667, "curve": 0.25, "c3": 0.75}, {"time": 0.15, "angle": -24.62, "curve": 0.25, "c3": 0.75}, - {"time": 0.2833, "angle": 43.21, "curve": 0.25, "c3": 0.75}, {"time": 0.45, "angle": -45.45, "curve": 0.25, "c3": 0.75}, {"time": 0.7, "angle": 40.81, "curve": 0.25, "c3": 0.75}, - {"time": 0.8167, "angle": -29.59, "curve": 0.25, "c3": 0.75}, {"time": 1, "angle": 8.12} + {"angle": -11.54, "curve": 0.379, "c2": 0.53, "c3": 0.746}, {"time": 0.0667, "curve": 0.25, "c3": 0.75}, {"time": 0.2, "angle": 21.88, "curve": 0.25, "c3": 0.75}, + {"time": 0.3833, "angle": -28.05, "curve": 0.25, "c3": 0.75}, {"time": 0.4667, "angle": 25.5, "curve": 0.25, "c3": 0.75}, {"time": 0.6167, "curve": 0.25, "c3": 0.75}, + {"time": 0.75, "angle": -27.06, "curve": 0.247, "c3": 0.631, "c4": 0.53}, {"time": 0.8333, "angle": 8.12} ] }, "body-fur-11": { "rotate": [ - {"angle": 23.88, "curve": 0.363, "c2": 0.44, "c3": 0.755}, {"time": 0.05, "curve": 0.25, "c3": 0.75}, {"time": 0.1333, "angle": -24.62, "curve": 0.25, "c3": 0.75}, - {"time": 0.2667, "angle": 43.2, "curve": 0.25, "c3": 0.75}, {"time": 0.4333, "angle": -45.45, "curve": 0.25, "c3": 0.75}, {"time": 0.6833, "angle": 40.81, "curve": 0.25, "c3": 0.75}, - {"time": 0.8, "angle": -29.59, "curve": 0.25, "c3": 0.75}, {"time": 0.9667, "angle": 37.78, "curve": 0.258, "c3": 0.619, "c4": 0.45}, {"time": 1, "angle": 4.23} + {"angle": -7.68, "curve": 0.382, "c2": 0.57, "c3": 0.735}, {"time": 0.05, "curve": 0.25, "c3": 0.75}, {"time": 0.1833, "angle": 21.88, "curve": 0.25, "c3": 0.75}, + {"time": 0.3667, "angle": -28.05, "curve": 0.25, "c3": 0.75}, {"time": 0.45, "angle": 25.5, "curve": 0.25, "c3": 0.75}, {"time": 0.6, "curve": 0.25, "c3": 0.75}, + {"time": 0.7333, "angle": -27.06, "curve": 0.243, "c3": 0.649, "c4": 0.6}, {"time": 0.8333, "angle": 4.23} ] }, "body-fur-10": { "rotate": [ - {"angle": 13.9, "curve": 0.381, "c2": 0.55, "c3": 0.742}, {"time": 0.0333, "curve": 0.25, "c3": 0.75}, {"time": 0.1167, "angle": -24.62, "curve": 0.25, "c3": 0.75}, - {"time": 0.25, "angle": 43.2, "curve": 0.25, "c3": 0.75}, {"time": 0.4167, "angle": -45.45, "curve": 0.25, "c3": 0.75}, {"time": 0.6667, "angle": 40.81, "curve": 0.25, "c3": 0.75}, - {"time": 0.7833, "angle": -29.59, "curve": 0.25, "c3": 0.75}, {"time": 0.95, "angle": 37.78, "curve": 0.245, "c3": 0.637, "c4": 0.56}, {"time": 1, "angle": 0.34} + {"angle": -4.17, "curve": 0.377, "c2": 0.61, "c3": 0.72}, {"time": 0.0333, "curve": 0.25, "c3": 0.75}, {"time": 0.1667, "angle": 21.88, "curve": 0.25, "c3": 0.75}, + {"time": 0.35, "angle": -28.05, "curve": 0.25, "c3": 0.75}, {"time": 0.4333, "angle": 25.5, "curve": 0.25, "c3": 0.75}, {"time": 0.5833, "curve": 0.25, "c3": 0.75}, + {"time": 0.7167, "angle": -27.06, "curve": 0.243, "c3": 0.674, "c4": 0.69}, {"time": 0.8333, "angle": 0.34} ] }, "body-fur-09": { "rotate": [ - {"angle": 32.88, "curve": 0.303, "c2": 0.24, "c3": 0.661, "c4": 0.65}, {"time": 0.0333, "angle": 13.9, "curve": 0.381, "c2": 0.55, "c3": 0.742}, {"time": 0.0667}, - {"time": 0.15, "angle": -24.62, "curve": 0.25, "c3": 0.75}, {"time": 0.2833, "angle": 43.2, "curve": 0.25, "c3": 0.75}, {"time": 0.45, "angle": -45.45, "curve": 0.25, "c3": 0.75}, - {"time": 0.7, "angle": 40.81, "curve": 0.25, "c3": 0.75}, {"time": 0.8167, "angle": -29.59, "curve": 0.25, "c3": 0.75}, {"time": 1, "angle": 6.86} + {"angle": -15.42, "curve": 0.342, "c2": 0.36, "c3": 0.692, "c4": 0.75}, {"time": 0.05, "angle": -4.17, "curve": 0.377, "c2": 0.61, "c3": 0.72}, {"time": 0.0833}, + {"time": 0.2167, "angle": 21.88, "curve": 0.25, "c3": 0.75}, {"time": 0.4, "angle": -28.05, "curve": 0.25, "c3": 0.75}, {"time": 0.4833, "angle": 25.5, "curve": 0.25, "c3": 0.75}, + {"time": 0.6333, "curve": 0.25, "c3": 0.75}, {"time": 0.7667, "angle": -27.06, "curve": 0.254, "c3": 0.621, "c4": 0.47}, {"time": 0.8333, "angle": 6.86} ] }, "body-fur-08": { "rotate": [ - {"angle": 13.9, "curve": 0.381, "c2": 0.55, "c3": 0.742}, {"time": 0.0333}, {"time": 0.1167, "angle": -24.62, "curve": 0.25, "c3": 0.75}, - {"time": 0.25, "angle": 43.2, "curve": 0.25, "c3": 0.75}, {"time": 0.4167, "angle": -45.45, "curve": 0.25, "c3": 0.75}, {"time": 0.6667, "angle": 40.81, "curve": 0.25, "c3": 0.75}, - {"time": 0.7833, "angle": -29.59, "curve": 0.25, "c3": 0.75}, {"time": 0.95, "angle": 37.78, "curve": 0.245, "c3": 0.637, "c4": 0.56}, {"time": 1, "angle": -0.91} + {"angle": -7.68, "curve": 0.382, "c2": 0.57, "c3": 0.735}, {"time": 0.05}, {"time": 0.1833, "angle": 21.88, "curve": 0.25, "c3": 0.75}, + {"time": 0.3667, "angle": -28.05, "curve": 0.25, "c3": 0.75}, {"time": 0.45, "angle": 25.5, "curve": 0.25, "c3": 0.75}, {"time": 0.6, "curve": 0.25, "c3": 0.75}, + {"time": 0.7333, "angle": -27.06, "curve": 0.243, "c3": 0.649, "c4": 0.6}, {"time": 0.8333, "angle": -0.91} ] }, "body-fur-07": { "rotate": [ - {"angle": 4.91, "curve": 0.375, "c2": 0.62, "c3": 0.716}, {"time": 0.0167, "curve": 0.25, "c3": 0.75}, {"time": 0.1, "angle": -24.62, "curve": 0.25, "c3": 0.75}, - {"time": 0.2333, "angle": 43.2, "curve": 0.25, "c3": 0.75}, {"time": 0.4, "angle": -45.45, "curve": 0.25, "c3": 0.75}, {"time": 0.65, "angle": 40.81, "curve": 0.25, "c3": 0.75}, - {"time": 0.7667, "angle": -29.59, "curve": 0.25, "c3": 0.75}, {"time": 0.9333, "angle": 37.78, "curve": 0.243, "c3": 0.68, "c4": 0.71}, {"time": 1, "angle": 2.91} + {"angle": -1.39, "curve": 0.362, "c2": 0.64, "c3": 0.698}, {"time": 0.0167, "curve": 0.25, "c3": 0.75}, {"time": 0.15, "angle": 21.88, "curve": 0.25, "c3": 0.75}, + {"time": 0.3333, "angle": -28.05, "curve": 0.25, "c3": 0.75}, {"time": 0.4167, "angle": 25.5, "curve": 0.25, "c3": 0.75}, {"time": 0.5667, "curve": 0.25, "c3": 0.75}, + {"time": 0.7, "angle": -27.06, "curve": 0.245, "c3": 0.707, "c4": 0.82}, {"time": 0.8333, "angle": 2.91} ] }, "body-fur-06": { "rotate": [ - {"angle": 32.88, "curve": 0.303, "c2": 0.24, "c3": 0.661, "c4": 0.65}, {"time": 0.0333, "angle": 13.9, "curve": 0.381, "c2": 0.55, "c3": 0.742}, - {"time": 0.0667, "curve": 0.25, "c3": 0.75}, {"time": 0.15, "angle": -24.62, "curve": 0.25, "c3": 0.75}, {"time": 0.2833, "angle": 43.2, "curve": 0.25, "c3": 0.75}, - {"time": 0.45, "angle": -45.45, "curve": 0.25, "c3": 0.75}, {"time": 0.7, "angle": 40.81, "curve": 0.25, "c3": 0.75}, {"time": 0.8167, "angle": -29.59, "curve": 0.25, "c3": 0.75}, - {"time": 1, "angle": 13.33} + {"angle": -11.45, "curve": 0.347, "c2": 0.38, "c3": 0.688, "c4": 0.74}, {"time": 0.0333, "angle": -4.17, "curve": 0.377, "c2": 0.61, "c3": 0.72}, {"time": 0.0667}, + {"time": 0.2, "angle": 21.88, "curve": 0.25, "c3": 0.75}, {"time": 0.3833, "angle": -28.05, "curve": 0.25, "c3": 0.75}, {"time": 0.4667, "angle": 25.5, "curve": 0.25, "c3": 0.75}, + {"time": 0.6167, "curve": 0.25, "c3": 0.75}, {"time": 0.75, "angle": -27.06, "curve": 0.247, "c3": 0.631, "c4": 0.53}, {"time": 0.8333, "angle": 13.33} ] }, "body-fur-05": { "rotate": [ - {"angle": 13.9, "curve": 0.381, "c2": 0.55, "c3": 0.742}, {"time": 0.0333}, {"time": 0.1167, "angle": -24.62, "curve": 0.25, "c3": 0.75}, - {"time": 0.25, "angle": 43.2, "curve": 0.25, "c3": 0.75}, {"time": 0.4167, "angle": -45.45, "curve": 0.25, "c3": 0.75}, {"time": 0.6667, "angle": 40.81, "curve": 0.25, "c3": 0.75}, - {"time": 0.7833, "angle": -29.59, "curve": 0.25, "c3": 0.75}, {"time": 0.95, "angle": 37.78, "curve": 0.245, "c3": 0.637, "c4": 0.56}, {"time": 1, "angle": 6.86} + {"angle": -4.17, "curve": 0.377, "c2": 0.61, "c3": 0.72}, {"time": 0.0333}, {"time": 0.1667, "angle": 21.88, "curve": 0.25, "c3": 0.75}, + {"time": 0.35, "angle": -28.05, "curve": 0.25, "c3": 0.75}, {"time": 0.4333, "angle": 25.5, "curve": 0.25, "c3": 0.75}, {"time": 0.5833, "curve": 0.25, "c3": 0.75}, + {"time": 0.7167, "angle": -27.06, "curve": 0.243, "c3": 0.674, "c4": 0.69}, {"time": 0.8333, "angle": 6.86} ] }, "body-fur-04": { "rotate": [ - {"angle": 37.78, "curve": 0.245, "c3": 0.637, "c4": 0.56}, {"time": 0.05, "angle": 13.9, "curve": 0.381, "c2": 0.55, "c3": 0.742}, {"time": 0.0833}, - {"time": 0.1667, "angle": -24.62, "curve": 0.25, "c3": 0.75}, {"time": 0.3, "angle": 43.2, "curve": 0.25, "c3": 0.75}, {"time": 0.4667, "angle": -45.45, "curve": 0.25, "c3": 0.75}, - {"time": 0.7167, "angle": 40.81, "curve": 0.25, "c3": 0.75}, {"time": 0.8333, "angle": -29.59, "curve": 0.25, "c3": 0.75}, {"time": 1, "angle": 12.53} + {"angle": -15.42, "curve": 0.342, "c2": 0.36, "c3": 0.692, "c4": 0.75}, {"time": 0.05, "angle": -4.17, "curve": 0.377, "c2": 0.61, "c3": 0.72}, {"time": 0.0833}, + {"time": 0.2167, "angle": 21.88, "curve": 0.25, "c3": 0.75}, {"time": 0.4, "angle": -28.05, "curve": 0.25, "c3": 0.75}, {"time": 0.4833, "angle": 25.5, "curve": 0.25, "c3": 0.75}, + {"time": 0.6333, "curve": 0.25, "c3": 0.75}, {"time": 0.7667, "angle": -27.06, "curve": 0.254, "c3": 0.621, "c4": 0.47}, {"time": 0.8333, "angle": 12.53} ] }, "body-fur-03": { "rotate": [ - {"angle": 23.88, "curve": 0.363, "c2": 0.44, "c3": 0.755}, {"time": 0.05}, {"time": 0.1333, "angle": -24.62, "curve": 0.25, "c3": 0.75}, - {"time": 0.2667, "angle": 43.2, "curve": 0.25, "c3": 0.75}, {"time": 0.4333, "angle": -45.45, "curve": 0.25, "c3": 0.75}, {"time": 0.6833, "angle": 40.81, "curve": 0.25, "c3": 0.75}, - {"time": 0.8, "angle": -29.59, "curve": 0.25, "c3": 0.75}, {"time": 0.9667, "angle": 37.78, "curve": 0.258, "c3": 0.619, "c4": 0.45}, {"time": 1, "angle": 5.54} + {"angle": -7.68, "curve": 0.382, "c2": 0.57, "c3": 0.735}, {"time": 0.05}, {"time": 0.1833, "angle": 21.88, "curve": 0.25, "c3": 0.75}, + {"time": 0.3667, "angle": -28.05, "curve": 0.25, "c3": 0.75}, {"time": 0.45, "angle": 25.5, "curve": 0.25, "c3": 0.75}, {"time": 0.6, "curve": 0.25, "c3": 0.75}, + {"time": 0.7333, "angle": -27.06, "curve": 0.243, "c3": 0.649, "c4": 0.6}, {"time": 0.8333, "angle": 5.54} ] }, "body-fur-02": { "rotate": [ - {"angle": 34.91, "curve": 0.36, "c2": 0.64, "c3": 0.695}, {"time": 0.0167, "angle": 37.78, "curve": 0.245, "c3": 0.637, "c4": 0.56}, - {"time": 0.0667, "angle": 13.9, "curve": 0.381, "c2": 0.55, "c3": 0.742}, {"time": 0.1}, {"time": 0.1833, "angle": -24.62, "curve": 0.25, "c3": 0.75}, - {"time": 0.3167, "angle": 43.2, "curve": 0.25, "c3": 0.75}, {"time": 0.4833, "angle": -45.45, "curve": 0.25, "c3": 0.75}, {"time": 0.7333, "angle": 40.81, "curve": 0.25, "c3": 0.75}, - {"time": 0.85, "angle": -29.59, "curve": 0.245, "c3": 0.711, "c4": 0.83}, {"time": 1, "angle": 13.84} + {"angle": -19.31, "curve": 0.33, "c2": 0.32, "c3": 0.693, "c4": 0.75}, {"time": 0.0667, "angle": -4.17, "curve": 0.377, "c2": 0.61, "c3": 0.72}, {"time": 0.1, "curve": 0.25, "c3": 0.75}, + {"time": 0.2333, "angle": 21.88, "curve": 0.25, "c3": 0.75}, {"time": 0.4167, "angle": -28.05, "curve": 0.25, "c3": 0.75}, {"time": 0.5, "angle": 25.5, "curve": 0.25, "c3": 0.75}, + {"time": 0.65, "curve": 0.25, "c3": 0.75}, {"time": 0.7833, "angle": -27.06, "curve": 0.265, "c3": 0.618, "c4": 0.43}, {"time": 0.8333, "angle": 13.84} ] }, "body-fur-01": { "rotate": [ - {"angle": 32.86, "curve": 0.32, "c2": 0.29, "c3": 0.757}, {"time": 0.0667}, {"time": 0.15, "angle": -24.62, "curve": 0.25, "c3": 0.75}, - {"time": 0.2833, "angle": 43.2, "curve": 0.25, "c3": 0.75}, {"time": 0.45, "angle": -45.45, "curve": 0.25, "c3": 0.75}, {"time": 0.7, "angle": 40.81, "curve": 0.25, "c3": 0.75}, - {"time": 0.8167, "angle": -29.59, "curve": 0.25, "c3": 0.75}, {"time": 1, "angle": 10.51} - ] - } - } - }, - "413498100": { - "slots": { - "eyes": { - "attachment": [ - {"time": 0.1333, "name": "eyes-shut"}, {"time": 0.2, "name": "eyes"}, {"time": 0.55, "name": "eyes-shut"}, {"time": 0.6167, "name": "eyes"}, {"time": 0.9667, "name": "eyes-shut"} - ] - }, - "mouth": { - "attachment": [ - {"time": 0.1833, "name": "mouth-open"}, {"time": 0.5, "name": "mouth"}, {"time": 0.6, "name": "mouth-open"}, {"time": 0.9, "name": "mouth"}, {"time": 0.9667, "name": "mouth-bite"} + {"angle": -11.54, "curve": 0.379, "c2": 0.53, "c3": 0.746}, {"time": 0.0667, "curve": 0.25, "c3": 0.75}, {"time": 0.2, "angle": 21.88, "curve": 0.25, "c3": 0.75}, + {"time": 0.3833, "angle": -28.05, "curve": 0.25, "c3": 0.75}, {"time": 0.4667, "angle": 25.5, "curve": 0.25, "c3": 0.75}, {"time": 0.6167, "curve": 0.25, "c3": 0.75}, + {"time": 0.75, "angle": -27.06, "curve": 0.247, "c3": 0.631, "c4": 0.53}, {"time": 0.8333, "angle": 10.51} ] } }, + "events": [{"time": 0.25, "name": "start-attack"}, {"time": 0.3333, "name": "hit"}] + }, + "2029961928": { "bones": { "@pivot-back": { "rotate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "angle": 3.53, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "angle": -10.14, "curve": 0.315, "c4": 0.8}, - {"time": 0.5, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5833, "angle": 3.53, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.75, "angle": -10.14, "curve": 0.315, "c4": 0.8}, - {"time": 0.9167, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1.0833, "angle": 5.43}, {"time": 1.15, "angle": 3.94}, {"time": 1.2, "angle": 5.43}, {"time": 1.2333, "angle": 3.94}, - {"time": 1.2667, "angle": 5.43}, {"time": 1.3, "angle": 3.94}, {"time": 1.3333, "angle": 5.43}, {"time": 1.3667, "angle": 3.94}, {"time": 1.4, "angle": 5.43}, - {"time": 1.4333, "angle": 3.94}, {"time": 1.4667, "angle": 5.43}, {"time": 1.5, "angle": 3.94} + {"curve": 0, "c2": 0.34, "c3": 0.465}, {"time": 0.1667, "angle": 8.43, "curve": 0.614, "c4": 0.29}, {"time": 0.4167, "angle": -69.48, "curve": 0, "c2": 0.1, "c4": 0.9}, + {"time": 0.5833, "angle": 151.42, "curve": 0, "c2": 0.3, "c3": 0.535}, {"time": 0.8333, "angle": -5.75, "curve": 0, "c2": 0.15, "c4": 0.85}, + {"time": 1, "angle": -7.09, "curve": 0, "c2": 0.3, "c3": 0.542}, {"time": 1.25, "angle": 7.21, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1.5} ], "translate": [ - {"y": 44.46, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "y": 12.46, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "y": 209.26, "curve": 0.315, "c4": 0.8}, - {"time": 0.5, "y": 44.46, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5833, "y": 12.46, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.75, "y": 209.26, "curve": 0.315, "c4": 0.8}, - {"time": 0.9167, "y": 44.46} + {"x": 0.02, "y": 44.43, "curve": 0, "c2": 0.34, "c3": 0.465}, {"time": 0.1667, "x": 25.79, "y": 23.82, "curve": 0.614, "c4": 0.29}, + {"time": 0.4167, "x": -156.83, "y": 231.34, "curve": 0, "c2": 0.1, "c4": 0.9}, {"time": 0.5833, "x": -1.88, "y": 372.46, "curve": 0, "c2": 0.19, "c3": 0.403, "c4": 0.57}, + {"time": 0.6667, "x": 196.15, "y": 317.74, "curve": 0.282, "c2": 0.45, "c3": 0.748}, {"time": 0.8333, "x": 558.6, "y": 68.09, "curve": 0, "c2": 0.15, "c4": 0.85}, + {"time": 1, "x": 586.58, "y": 68.09, "curve": 0, "c2": 0.3, "c3": 0.542}, {"time": 1.25, "x": 594.57, "y": 68.09, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 1.5, "x": 0.02, "y": 44.43} ] }, - "@leg-front-right": { + "tail": { "rotate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "angle": -14.05, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "angle": 13.89, "curve": 0.315, "c4": 0.8}, - {"time": 0.5, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5833, "angle": -12.58, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.75, "angle": 13.89, "curve": 0.315, "c4": 0.8}, - {"time": 0.9167, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1.0833, "angle": -12.58} + {"curve": 0, "c2": 0.34, "c3": 0.465}, {"time": 0.1667, "angle": 16.63, "curve": 0.622, "c4": 0.3}, {"time": 0.4167, "angle": -38.13, "curve": 0, "c2": 0.1, "c4": 0.9}, + {"time": 0.6667, "angle": 21.47, "curve": 0, "c2": 0.2, "c3": 0.698}, {"time": 1, "angle": -14.5, "curve": 0, "c2": 0.3, "c3": 0.549}, + {"time": 1.25, "angle": 17, "curve": 0, "c2": 0.2, "c3": 0.7}, {"time": 1.5} ] }, - "@leg-front-left": { + "@leg-back-left": { "rotate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "angle": -14.05, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "angle": 13.89, "curve": 0.315, "c4": 0.8}, - {"time": 0.5, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5833, "angle": -12.58, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.75, "angle": 13.89, "curve": 0.315, "c4": 0.8}, - {"time": 0.9167, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1.0833, "angle": -12.58} + {"curve": 0, "c2": 0.34, "c3": 0.465}, {"time": 0.1667, "angle": -14.34, "curve": 0.619, "c4": 0.3}, {"time": 0.4167, "angle": 14.4, "curve": 0, "c2": 0.1, "c4": 0.9}, + {"time": 0.6667, "angle": -14.29, "curve": "stepped"}, {"time": 1, "angle": -14.29, "curve": 0, "c2": 0.3, "c3": 0.542}, + {"time": 1.25, "angle": 14.99, "curve": 0, "c2": 0.2, "c3": 0.693}, {"time": 1.5} ] }, - "@leg-back-left": { + "@leg-front-left": { "rotate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "angle": -14.05, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "angle": 13.89, "curve": 0.315, "c4": 0.8}, - {"time": 0.5, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5833, "angle": -12.58, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.75, "angle": 13.89, "curve": 0.315, "c4": 0.8}, - {"time": 0.9167, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1.0833, "angle": -12.58} + {"curve": 0, "c2": 0.34, "c3": 0.465}, {"time": 0.1667, "angle": -18.49, "curve": 0.619, "c4": 0.3}, {"time": 0.4167, "angle": 10.25, "curve": 0, "c2": 0.1, "c4": 0.9}, + {"time": 0.6667, "angle": -18.44}, {"time": 1, "angle": -22.13, "curve": 0, "c2": 0.3, "c3": 0.542}, {"time": 1.25, "angle": 7.14, "curve": 0, "c2": 0.2, "c3": 0.693}, {"time": 1.5} ] }, - "tail": { + "@leg-front-right": { "rotate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "angle": 14.79, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "angle": -27.83, "curve": "stepped"}, - {"time": 0.3333, "angle": -27.83, "curve": 0.313, "c3": 0.691}, {"time": 0.5, "angle": 14.79, "curve": "stepped"}, {"time": 0.5833, "angle": 14.79, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.6667, "angle": -27.83, "curve": "stepped"}, {"time": 0.75, "angle": -27.83, "curve": 0.313, "c3": 0.691}, {"time": 0.9167, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 1.0833, "angle": 12.48, "curve": 0.313, "c3": 0.691}, {"time": 1.15, "angle": 9.69, "curve": 0.313, "c3": 0.691}, {"time": 1.2, "angle": 12.48, "curve": 0.161, "c3": 0.854}, - {"time": 1.2333, "angle": 9.69, "curve": 0.161, "c3": 0.854}, {"time": 1.2667, "angle": 12.48, "curve": 0.161, "c3": 0.854}, {"time": 1.3, "angle": 9.69, "curve": 0.161, "c3": 0.854}, - {"time": 1.3333, "angle": 12.48, "curve": 0.161, "c3": 0.854}, {"time": 1.3667, "angle": 9.69, "curve": 0.161, "c3": 0.854}, {"time": 1.4, "angle": 12.48, "curve": 0.161, "c3": 0.854}, - {"time": 1.4333, "angle": 9.69, "curve": 0.161, "c3": 0.854}, {"time": 1.4667, "angle": 12.48, "curve": 0.161, "c3": 0.854}, {"time": 1.5, "angle": 9.69} + {"curve": 0, "c2": 0.34, "c3": 0.465}, {"time": 0.1667, "angle": -18.49, "curve": 0.619, "c4": 0.3}, {"time": 0.4167, "angle": 10.25, "curve": 0, "c2": 0.1, "c4": 0.9}, + {"time": 0.6667, "angle": -18.44}, {"time": 1, "angle": -22.13, "curve": 0, "c2": 0.3, "c3": 0.542}, {"time": 1.25, "angle": 7.14, "curve": 0, "c2": 0.2, "c3": 0.693}, {"time": 1.5} ] }, "@shadow": { + "translate": [ + {"curve": 0, "c2": 0.34, "c3": 0.465}, {"time": 0.1667, "x": 19.25, "curve": 0.622, "c4": 0.3}, {"time": 0.4167, "x": -31.7, "curve": 0, "c2": 0.1, "c4": 0.9}, + {"time": 0.5833, "x": 395, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.8333, "x": 549.5, "curve": 0, "c2": 0.15, "c4": 0.85}, + {"time": 1, "x": 577.9, "curve": 0, "c2": 0.3, "c3": 0.549}, {"time": 1.25, "x": 587.3, "curve": 0, "c2": 0.2, "c3": 0.7}, {"time": 1.5} + ], "scale": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": 1.1, "y": 1.1, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "x": 0.9, "y": 0.9, "curve": 0.315, "c4": 0.8}, - {"time": 0.5833, "x": 1.1, "y": 1.1, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.75, "x": 0.9, "y": 0.9, "curve": 0.315, "c4": 0.8}, - {"time": 0.9167, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1.0833, "x": 1.05, "y": 1.05}, {"time": 1.15}, {"time": 1.2, "x": 1.05, "y": 1.05}, {"time": 1.25}, - {"time": 1.3, "x": 1.05, "y": 1.05}, {"time": 1.35}, {"time": 1.4, "x": 1.05, "y": 1.05}, {"time": 1.45}, {"time": 1.5, "x": 1.05, "y": 1.05} + {"curve": 0, "c2": 0.34, "c3": 0.465}, {"time": 0.1667, "x": 1.12, "y": 1.12, "curve": 0.622, "c4": 0.3}, {"time": 0.4167, "x": 0.84, "y": 0.84, "curve": 0, "c2": 0.1, "c4": 0.9}, + {"time": 0.5833, "x": 0.9, "y": 0.9, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.8333, "x": 0.98, "y": 0.98, "curve": 0, "c2": 0.15, "c4": 0.85}, + {"time": 1, "x": 0.94, "y": 0.94, "curve": 0, "c2": 0.3, "c3": 0.549}, {"time": 1.25, "x": 1.02, "y": 1.02, "curve": 0, "c2": 0.2, "c3": 0.7}, {"time": 1.5} ] }, "body-fur-01": { "rotate": [ - {"angle": 5.95, "curve": 0.375, "c2": 0.5, "c3": 0.75}, {"time": 0.0833}, {"time": 0.25, "angle": 30.26, "curve": 0.25, "c3": 0.75}, - {"time": 0.45, "angle": -24.2, "curve": 0.25, "c3": 0.75}, {"time": 0.6167, "angle": 21.17, "curve": 0.25, "c3": 0.75}, {"time": 0.8167, "angle": -32.4, "curve": 0.25, "c3": 0.75}, - {"time": 1.0833, "angle": 24.01, "curve": 0.25, "c3": 0.75}, {"time": 1.25, "angle": -15.47, "curve": 0.25, "c3": 0.75}, - {"time": 1.4167, "angle": 11.9, "curve": 0.25, "c3": 0.625, "c4": 0.5}, {"time": 1.5, "angle": 5.95} + {"angle": -11.71, "curve": 0.359, "c2": 0.43, "c3": 0.756}, {"time": 0.0833}, {"time": 0.25, "angle": 34.44, "curve": 0.25, "c3": 0.75}, + {"time": 0.4167, "angle": 15.7, "curve": 0.25, "c3": 0.75}, {"time": 0.75, "angle": 43.18, "curve": 0.361, "c2": 0.01, "c3": 0.75}, + {"time": 0.9833, "angle": -39.28, "curve": 0.25, "c3": 0.75}, {"time": 1.2833, "angle": 22.14, "curve": 0.25, "c3": 0.75}, + {"time": 1.45, "angle": -17.63, "curve": 0.26, "c3": 0.618, "c4": 0.44}, {"time": 1.5, "angle": -11.71} ] }, "body-fur-02": { "rotate": [ - {"angle": 10.34, "curve": 0.303, "c2": 0.24, "c3": 0.674, "c4": 0.69}, {"time": 0.0833, "angle": 2.88, "curve": 0.382, "c2": 0.58, "c3": 0.731}, {"time": 0.1333}, - {"time": 0.3, "angle": 30.26, "curve": 0.25, "c3": 0.75}, {"time": 0.5, "angle": -24.2, "curve": 0.25, "c3": 0.75}, {"time": 0.6667, "angle": 21.17, "curve": 0.25, "c3": 0.75}, - {"time": 0.8667, "angle": -32.4, "curve": 0.25, "c3": 0.75}, {"time": 1.1333, "angle": 24.01, "curve": 0.25, "c3": 0.75}, {"time": 1.3, "angle": -15.47, "curve": 0.25, "c3": 0.75}, - {"time": 1.4667, "angle": 11.9, "curve": 0.284, "c3": 0.625, "c4": 0.38}, {"time": 1.5, "angle": 10.34} + {"angle": -17.63, "curve": 0.244, "c3": 0.641, "c4": 0.57}, {"time": 0.0833, "angle": -5.92, "curve": 0.382, "c2": 0.56, "c3": 0.74}, {"time": 0.1333}, + {"time": 0.3, "angle": 34.44, "curve": 0.25, "c3": 0.75}, {"time": 0.4667, "angle": 15.7, "curve": 0.25, "c3": 0.75}, + {"time": 0.8, "angle": 43.18, "curve": 0.361, "c2": 0.01, "c3": 0.75}, {"time": 1.0333, "angle": -39.28, "curve": 0.25, "c3": 0.75}, + {"time": 1.3333, "angle": 22.14, "curve": 0.25, "c3": 0.75}, {"time": 1.5, "angle": -17.63} ] }, "body-fur-03": { "rotate": [ - {"angle": 10.35, "curve": 0.32, "c2": 0.29, "c3": 0.757}, {"time": 0.1333}, {"time": 0.3, "angle": 30.26, "curve": 0.25, "c3": 0.75}, - {"time": 0.5, "angle": -24.2, "curve": 0.25, "c3": 0.75}, {"time": 0.6667, "angle": 21.17, "curve": 0.25, "c3": 0.75}, {"time": 0.8667, "angle": -32.4, "curve": 0.25, "c3": 0.75}, - {"time": 1.1333, "angle": 24.01, "curve": 0.25, "c3": 0.75}, {"time": 1.3, "angle": -15.47, "curve": 0.25, "c3": 0.75}, - {"time": 1.4667, "angle": 11.9, "curve": 0.284, "c3": 0.625, "c4": 0.38}, {"time": 1.5, "angle": 10.35} + {"angle": -17.63, "curve": 0.25, "c3": 0.75}, {"time": 0.1333, "curve": 0.25, "c3": 0.75}, {"time": 0.3, "angle": 34.44, "curve": 0.25, "c3": 0.75}, + {"time": 0.4667, "angle": 15.7, "curve": 0.25, "c3": 0.75}, {"time": 0.8, "angle": 43.18, "curve": 0.361, "c2": 0.01, "c3": 0.75}, + {"time": 1.0333, "angle": -39.28, "curve": 0.25, "c3": 0.75}, {"time": 1.3333, "angle": 22.14, "curve": 0.25, "c3": 0.75}, {"time": 1.5, "angle": -17.63} ] }, "body-fur-04": { "rotate": [ - {"angle": 10.73, "curve": 0.36, "c2": 0.64, "c3": 0.695}, {"time": 0.0167, "angle": 11.9, "curve": 0.243, "c3": 0.655, "c4": 0.63}, - {"time": 0.1333, "angle": 2.88, "curve": 0.382, "c2": 0.58, "c3": 0.731}, {"time": 0.1833}, {"time": 0.35, "angle": 30.26, "curve": 0.25, "c3": 0.75}, - {"time": 0.55, "angle": -24.2, "curve": 0.25, "c3": 0.75}, {"time": 0.7167, "angle": 21.17, "curve": 0.25, "c3": 0.75}, {"time": 0.9167, "angle": -32.4, "curve": 0.25, "c3": 0.75}, - {"time": 1.1833, "angle": 24.01, "curve": 0.25, "c3": 0.75}, {"time": 1.35, "angle": -15.47, "curve": 0.245, "c3": 0.711, "c4": 0.83}, {"time": 1.5, "angle": 10.73} + {"angle": -7.99, "curve": 0.382, "c2": 0.58, "c3": 0.731}, {"time": 0.05, "angle": -17.63, "curve": 0.244, "c3": 0.641, "c4": 0.57}, + {"time": 0.1333, "angle": -5.92, "curve": 0.382, "c2": 0.56, "c3": 0.74}, {"time": 0.1833, "curve": 0.25, "c3": 0.75}, {"time": 0.35, "angle": 34.44, "curve": 0.25, "c3": 0.75}, + {"time": 0.5167, "angle": 15.7, "curve": 0.25, "c3": 0.75}, {"time": 0.85, "angle": 43.18, "curve": 0.361, "c2": 0.01, "c3": 0.75}, + {"time": 1.0833, "angle": -39.28, "curve": 0.25, "c3": 0.75}, {"time": 1.3833, "angle": 22.14, "curve": 0.243, "c3": 0.655, "c4": 0.63}, {"time": 1.5, "angle": -7.99} ] }, "body-fur-05": { "rotate": [ - {"angle": 7.52, "curve": 0.363, "c2": 0.44, "c3": 0.755}, {"time": 0.1, "curve": 0.25, "c3": 0.75}, {"time": 0.2667, "angle": 30.26, "curve": 0.25, "c3": 0.75}, - {"time": 0.4667, "angle": -24.2, "curve": 0.25, "c3": 0.75}, {"time": 0.6333, "angle": 21.17, "curve": 0.25, "c3": 0.75}, {"time": 0.8333, "angle": -32.4, "curve": 0.25, "c3": 0.75}, - {"time": 1.1, "angle": 24.01, "curve": 0.25, "c3": 0.75}, {"time": 1.2667, "angle": -15.47, "curve": 0.25, "c3": 0.75}, - {"time": 1.4333, "angle": 11.9, "curve": 0.258, "c3": 0.619, "c4": 0.45}, {"time": 1.5, "angle": 7.52} + {"angle": -14.37, "curve": 0.333, "c2": 0.33, "c3": 0.758}, {"time": 0.1}, {"time": 0.2667, "angle": 34.44, "curve": 0.25, "c3": 0.75}, + {"time": 0.4333, "angle": 15.7, "curve": 0.25, "c3": 0.75}, {"time": 0.7667, "angle": 43.18, "curve": 0.361, "c2": 0.01, "c3": 0.75}, + {"time": 1, "angle": -39.28, "curve": 0.25, "c3": 0.75}, {"time": 1.3, "angle": 22.14, "curve": 0.25, "c3": 0.75}, + {"time": 1.4667, "angle": -17.63, "curve": 0.276, "c3": 0.621, "c4": 0.4}, {"time": 1.5, "angle": -14.37} ] }, "body-fur-06": { "rotate": [ - {"angle": 11.4, "curve": 0.277, "c2": 0.14, "c3": 0.667, "c4": 0.67}, {"time": 0.1, "angle": 2.88, "curve": 0.382, "c2": 0.58, "c3": 0.731}, {"time": 0.15, "curve": 0.25, "c3": 0.75}, - {"time": 0.3167, "angle": 30.26, "curve": 0.25, "c3": 0.75}, {"time": 0.5167, "angle": -24.2, "curve": 0.25, "c3": 0.75}, {"time": 0.6833, "angle": 21.17, "curve": 0.25, "c3": 0.75}, - {"time": 0.8833, "angle": -32.4, "curve": 0.25, "c3": 0.75}, {"time": 1.15, "angle": 24.01, "curve": 0.25, "c3": 0.75}, {"time": 1.3167, "angle": -15.47, "curve": 0.25, "c3": 0.75}, - {"time": 1.4833, "angle": 11.9, "curve": 0.305, "c3": 0.64, "c4": 0.36}, {"time": 1.5, "angle": 11.4} + {"angle": -15.93, "curve": 0.36, "c2": 0.64, "c3": 0.695}, {"time": 0.0167, "angle": -17.63, "curve": 0.244, "c3": 0.641, "c4": 0.57}, + {"time": 0.1, "angle": -5.92, "curve": 0.382, "c2": 0.56, "c3": 0.74}, {"time": 0.15}, {"time": 0.3167, "angle": 34.44, "curve": 0.25, "c3": 0.75}, + {"time": 0.4833, "angle": 15.7, "curve": 0.25, "c3": 0.75}, {"time": 0.8167, "angle": 43.18, "curve": 0.361, "c2": 0.01, "c3": 0.75}, + {"time": 1.05, "angle": -39.28, "curve": 0.25, "c3": 0.75}, {"time": 1.35, "angle": 22.14, "curve": 0.245, "c3": 0.711, "c4": 0.83}, {"time": 1.5, "angle": -15.93} ] }, "body-fur-07": { "rotate": [ - {"angle": 4.38, "curve": 0.381, "c2": 0.55, "c3": 0.742}, {"time": 0.0667, "curve": 0.25, "c3": 0.75}, {"time": 0.2333, "angle": 30.26, "curve": 0.25, "c3": 0.75}, - {"time": 0.4333, "angle": -24.2, "curve": 0.25, "c3": 0.75}, {"time": 0.6, "angle": 21.17, "curve": 0.25, "c3": 0.75}, {"time": 0.8, "angle": -32.4, "curve": 0.25, "c3": 0.75}, - {"time": 1.0667, "angle": 24.01, "curve": 0.25, "c3": 0.75}, {"time": 1.2333, "angle": -15.47, "curve": 0.25, "c3": 0.75}, - {"time": 1.4, "angle": 11.9, "curve": 0.245, "c3": 0.637, "c4": 0.56}, {"time": 1.5, "angle": 4.38} + {"angle": -8.81, "curve": 0.375, "c2": 0.5, "c3": 0.75}, {"time": 0.0667, "curve": 0.25, "c3": 0.75}, {"time": 0.2333, "angle": 34.44, "curve": 0.25, "c3": 0.75}, + {"time": 0.4, "angle": 15.7, "curve": 0.25, "c3": 0.75}, {"time": 0.7333, "angle": 43.18, "curve": 0.361, "c2": 0.01, "c3": 0.75}, + {"time": 0.9667, "angle": -39.28, "curve": 0.25, "c3": 0.75}, {"time": 1.2667, "angle": 22.14, "curve": 0.25, "c3": 0.75}, + {"time": 1.4333, "angle": -17.63, "curve": 0.25, "c3": 0.625, "c4": 0.5}, {"time": 1.5, "angle": -8.81} ] }, "body-fur-08": { "rotate": [ - {"angle": 5.95, "curve": 0.375, "c2": 0.5, "c3": 0.75}, {"time": 0.0833}, {"time": 0.25, "angle": 30.26, "curve": 0.25, "c3": 0.75}, - {"time": 0.45, "angle": -24.2, "curve": 0.25, "c3": 0.75}, {"time": 0.6167, "angle": 21.17, "curve": 0.25, "c3": 0.75}, {"time": 0.8167, "angle": -32.4, "curve": 0.25, "c3": 0.75}, - {"time": 1.0833, "angle": 24.01, "curve": 0.25, "c3": 0.75}, {"time": 1.25, "angle": -15.47, "curve": 0.25, "c3": 0.75}, - {"time": 1.4167, "angle": 11.9, "curve": 0.25, "c3": 0.625, "c4": 0.5}, {"time": 1.5, "angle": 5.95} + {"angle": -8.81, "curve": 0.375, "c2": 0.5, "c3": 0.75}, {"time": 0.0667}, {"time": 0.2333, "angle": 34.44, "curve": 0.25, "c3": 0.75}, + {"time": 0.4, "angle": 15.7, "curve": 0.25, "c3": 0.75}, {"time": 0.7333, "angle": 43.18, "curve": 0.361, "c2": 0.01, "c3": 0.75}, + {"time": 0.9667, "angle": -39.28, "curve": 0.25, "c3": 0.75}, {"time": 1.2667, "angle": 22.14, "curve": 0.25, "c3": 0.75}, + {"time": 1.4333, "angle": -17.63, "curve": 0.25, "c3": 0.625, "c4": 0.5}, {"time": 1.5, "angle": -8.81} ] }, "body-fur-09": { "rotate": [ - {"angle": 10.34, "curve": 0.303, "c2": 0.24, "c3": 0.674, "c4": 0.69}, {"time": 0.0833, "angle": 2.88, "curve": 0.382, "c2": 0.58, "c3": 0.731}, {"time": 0.1333}, - {"time": 0.3, "angle": 30.26, "curve": 0.25, "c3": 0.75}, {"time": 0.5, "angle": -24.2, "curve": 0.25, "c3": 0.75}, {"time": 0.6667, "angle": 21.17, "curve": 0.25, "c3": 0.75}, - {"time": 0.8667, "angle": -32.4, "curve": 0.25, "c3": 0.75}, {"time": 1.1333, "angle": 24.01, "curve": 0.25, "c3": 0.75}, {"time": 1.3, "angle": -15.47, "curve": 0.25, "c3": 0.75}, - {"time": 1.4667, "angle": 11.9, "curve": 0.284, "c3": 0.625, "c4": 0.38}, {"time": 1.5, "angle": 10.34} + {"angle": -16.56, "curve": 0.285, "c2": 0.17, "c3": 0.657, "c4": 0.63}, {"time": 0.0667, "angle": -5.92, "curve": 0.382, "c2": 0.56, "c3": 0.74}, {"time": 0.1167}, + {"time": 0.2833, "angle": 34.44, "curve": 0.25, "c3": 0.75}, {"time": 0.45, "angle": 15.7, "curve": 0.25, "c3": 0.75}, + {"time": 0.7833, "angle": 43.18, "curve": 0.361, "c2": 0.01, "c3": 0.75}, {"time": 1.0167, "angle": -39.28, "curve": 0.25, "c3": 0.75}, + {"time": 1.3167, "angle": 22.14, "curve": 0.25, "c3": 0.75}, {"time": 1.4833, "angle": -17.63, "curve": 0.299, "c3": 0.636, "c4": 0.36}, {"time": 1.5, "angle": -16.56} ] }, "body-fur-10": { "rotate": [ - {"angle": 2.88, "curve": 0.382, "c2": 0.58, "c3": 0.731}, {"time": 0.05, "curve": 0.25, "c3": 0.75}, {"time": 0.2167, "angle": 30.26, "curve": 0.25, "c3": 0.75}, - {"time": 0.4167, "angle": -24.2, "curve": 0.25, "c3": 0.75}, {"time": 0.5833, "angle": 21.17, "curve": 0.25, "c3": 0.75}, {"time": 0.7833, "angle": -32.4, "curve": 0.25, "c3": 0.75}, - {"time": 1.05, "angle": 24.01, "curve": 0.25, "c3": 0.75}, {"time": 1.2167, "angle": -15.47, "curve": 0.25, "c3": 0.75}, - {"time": 1.3833, "angle": 11.9, "curve": 0.243, "c3": 0.655, "c4": 0.63}, {"time": 1.5, "angle": 2.88} + {"angle": -5.92, "curve": 0.382, "c2": 0.56, "c3": 0.74}, {"time": 0.05, "curve": 0.25, "c3": 0.75}, {"time": 0.2167, "angle": 34.44, "curve": 0.25, "c3": 0.75}, + {"time": 0.3833, "angle": 15.7, "curve": 0.25, "c3": 0.75}, {"time": 0.7167, "angle": 43.18, "curve": 0.361, "c2": 0.01, "c3": 0.75}, + {"time": 0.95, "angle": -39.28, "curve": 0.25, "c3": 0.75}, {"time": 1.25, "angle": 22.14, "curve": 0.25, "c3": 0.75}, + {"time": 1.4167, "angle": -17.63, "curve": 0.244, "c3": 0.641, "c4": 0.57}, {"time": 1.5, "angle": -5.92} ] }, "body-fur-11": { "rotate": [ - {"angle": 5.95, "curve": 0.375, "c2": 0.5, "c3": 0.75}, {"time": 0.0833, "curve": 0.25, "c3": 0.75}, {"time": 0.25, "angle": 30.26, "curve": 0.25, "c3": 0.75}, - {"time": 0.45, "angle": -24.2, "curve": 0.25, "c3": 0.75}, {"time": 0.6167, "angle": 21.17, "curve": 0.25, "c3": 0.75}, {"time": 0.8167, "angle": -32.4, "curve": 0.25, "c3": 0.75}, - {"time": 1.0833, "angle": 24.01, "curve": 0.25, "c3": 0.75}, {"time": 1.25, "angle": -15.47, "curve": 0.25, "c3": 0.75}, - {"time": 1.4167, "angle": 11.9, "curve": 0.25, "c3": 0.625, "c4": 0.5}, {"time": 1.5, "angle": 5.95} + {"angle": -11.71, "curve": 0.359, "c2": 0.43, "c3": 0.756}, {"time": 0.0833, "curve": 0.25, "c3": 0.75}, {"time": 0.25, "angle": 34.44, "curve": 0.25, "c3": 0.75}, + {"time": 0.4167, "angle": 15.7, "curve": 0.25, "c3": 0.75}, {"time": 0.75, "angle": 43.18, "curve": 0.361, "c2": 0.01, "c3": 0.75}, + {"time": 0.9833, "angle": -39.28, "curve": 0.25, "c3": 0.75}, {"time": 1.2833, "angle": 22.14, "curve": 0.25, "c3": 0.75}, + {"time": 1.45, "angle": -17.63, "curve": 0.26, "c3": 0.618, "c4": 0.44}, {"time": 1.5, "angle": -11.71} ] }, "body-fur-12": { "rotate": [ - {"angle": 9.02, "curve": 0.345, "c2": 0.37, "c3": 0.757}, {"time": 0.1167, "curve": 0.25, "c3": 0.75}, {"time": 0.2833, "angle": 30.26, "curve": 0.25, "c3": 0.75}, - {"time": 0.4833, "angle": -24.2, "curve": 0.25, "c3": 0.75}, {"time": 0.65, "angle": 21.17, "curve": 0.25, "c3": 0.75}, {"time": 0.85, "angle": -32.4, "curve": 0.25, "c3": 0.75}, - {"time": 1.1167, "angle": 24.01, "curve": 0.25, "c3": 0.75}, {"time": 1.2833, "angle": -15.47, "curve": 0.25, "c3": 0.75}, - {"time": 1.45, "angle": 11.9, "curve": 0.269, "c3": 0.618, "c4": 0.42}, {"time": 1.5, "angle": 9.02} + {"angle": -16.52, "curve": 0.298, "c2": 0.2, "c3": 0.756}, {"time": 0.1167, "curve": 0.25, "c3": 0.75}, {"time": 0.2833, "angle": 34.44, "curve": 0.25, "c3": 0.75}, + {"time": 0.45, "angle": 15.7, "curve": 0.25, "c3": 0.75}, {"time": 0.7833, "angle": 43.18, "curve": 0.361, "c2": 0.01, "c3": 0.75}, + {"time": 1.0167, "angle": -39.28, "curve": 0.25, "c3": 0.75}, {"time": 1.3167, "angle": 22.14, "curve": 0.25, "c3": 0.75}, + {"time": 1.4833, "angle": -17.63, "curve": 0.299, "c3": 0.636, "c4": 0.36}, {"time": 1.5, "angle": -16.52} ] }, "body-fur-13": { "rotate": [ - {"angle": 11.39, "curve": 0.289, "c2": 0.17, "c3": 0.755}, {"time": 0.15}, {"time": 0.3167, "angle": 30.26, "curve": 0.25, "c3": 0.75}, - {"time": 0.5167, "angle": -24.2, "curve": 0.25, "c3": 0.75}, {"time": 0.6833, "angle": 21.17, "curve": 0.25, "c3": 0.75}, {"time": 0.8833, "angle": -32.4, "curve": 0.25, "c3": 0.75}, - {"time": 1.15, "angle": 24.01, "curve": 0.25, "c3": 0.75}, {"time": 1.3167, "angle": -15.47, "curve": 0.25, "c3": 0.75}, - {"time": 1.4833, "angle": 11.9, "curve": 0.305, "c3": 0.64, "c4": 0.36}, {"time": 1.5, "angle": 11.39} + {"angle": -15.93, "curve": 0.36, "c2": 0.64, "c3": 0.695}, {"time": 0.0167, "angle": -17.63, "curve": 0.25, "c3": 0.75}, {"time": 0.15}, + {"time": 0.3167, "angle": 34.44, "curve": 0.25, "c3": 0.75}, {"time": 0.4833, "angle": 15.7, "curve": 0.25, "c3": 0.75}, + {"time": 0.8167, "angle": 43.18, "curve": 0.361, "c2": 0.01, "c3": 0.75}, {"time": 1.05, "angle": -39.28, "curve": 0.25, "c3": 0.75}, + {"time": 1.35, "angle": 22.14, "curve": 0.245, "c3": 0.711, "c4": 0.83}, {"time": 1.5, "angle": -15.93} ] }, "body-fur-14": { "rotate": [ - {"angle": 8.34, "curve": 0.375, "c2": 0.62, "c3": 0.716}, {"time": 0.0333, "angle": 11.9, "curve": 0.243, "c3": 0.655, "c4": 0.63}, - {"time": 0.15, "angle": 2.88, "curve": 0.382, "c2": 0.58, "c3": 0.731}, {"time": 0.2}, {"time": 0.3667, "angle": 30.26, "curve": 0.25, "c3": 0.75}, - {"time": 0.5667, "angle": -24.2, "curve": 0.25, "c3": 0.75}, {"time": 0.7333, "angle": 21.17, "curve": 0.25, "c3": 0.75}, {"time": 0.9333, "angle": -32.4, "curve": 0.25, "c3": 0.75}, - {"time": 1.2, "angle": 24.01, "curve": 0.25, "c3": 0.75}, {"time": 1.3667, "angle": -15.47, "curve": 0.243, "c3": 0.68, "c4": 0.71}, {"time": 1.5, "angle": 8.34} + {"angle": -3, "curve": 0.381, "c2": 0.55, "c3": 0.742}, {"time": 0.0667, "angle": -17.63, "curve": 0.244, "c3": 0.641, "c4": 0.57}, + {"time": 0.15, "angle": -5.92, "curve": 0.382, "c2": 0.56, "c3": 0.74}, {"time": 0.2}, {"time": 0.3667, "angle": 34.44, "curve": 0.25, "c3": 0.75}, + {"time": 0.5333, "angle": 15.7, "curve": 0.25, "c3": 0.75}, {"time": 0.8667, "angle": 43.18, "curve": 0.361, "c2": 0.01, "c3": 0.75}, + {"time": 1.1, "angle": -39.28, "curve": 0.25, "c3": 0.75}, {"time": 1.4, "angle": 22.14, "curve": 0.245, "c3": 0.637, "c4": 0.56}, {"time": 1.5, "angle": -3} ] }, "body-fur-15": { "rotate": [ - {"angle": 10.73, "curve": 0.36, "c2": 0.64, "c3": 0.695}, {"time": 0.0167, "angle": 11.9, "curve": 0.25, "c3": 0.75}, {"time": 0.1833, "curve": 0.25, "c3": 0.75}, - {"time": 0.35, "angle": 30.26, "curve": 0.25, "c3": 0.75}, {"time": 0.55, "angle": -24.2, "curve": 0.25, "c3": 0.75}, {"time": 0.7167, "angle": 21.17, "curve": 0.25, "c3": 0.75}, - {"time": 0.9167, "angle": -32.4, "curve": 0.25, "c3": 0.75}, {"time": 1.1833, "angle": 24.01, "curve": 0.25, "c3": 0.75}, - {"time": 1.35, "angle": -15.47, "curve": 0.245, "c3": 0.711, "c4": 0.83}, {"time": 1.5, "angle": 10.73} + {"angle": -7.99, "curve": 0.382, "c2": 0.58, "c3": 0.731}, {"time": 0.05, "angle": -17.63, "curve": 0.25, "c3": 0.75}, {"time": 0.1833, "curve": 0.25, "c3": 0.75}, + {"time": 0.35, "angle": 34.44, "curve": 0.25, "c3": 0.75}, {"time": 0.5167, "angle": 15.7, "curve": 0.25, "c3": 0.75}, + {"time": 0.85, "angle": 43.18, "curve": 0.361, "c2": 0.01, "c3": 0.75}, {"time": 1.0833, "angle": -39.28, "curve": 0.25, "c3": 0.75}, + {"time": 1.3833, "angle": 22.14, "curve": 0.243, "c3": 0.655, "c4": 0.63}, {"time": 1.5, "angle": -7.99} ] }, "body-fur-16": { "rotate": [ - {"angle": 5.27, "curve": 0.382, "c2": 0.58, "c3": 0.731}, {"time": 0.05, "angle": 11.9, "curve": 0.25, "c3": 0.75}, {"time": 0.2167, "curve": 0.25, "c3": 0.75}, - {"time": 0.3833, "angle": 30.26, "curve": 0.25, "c3": 0.75}, {"time": 0.5833, "angle": -24.2, "curve": 0.25, "c3": 0.75}, {"time": 0.75, "angle": 21.17, "curve": 0.25, "c3": 0.75}, - {"time": 0.95, "angle": -32.4, "curve": 0.25, "c3": 0.75}, {"time": 1.2167, "angle": 24.01, "curve": 0.25, "c3": 0.75}, - {"time": 1.3833, "angle": -15.47, "curve": 0.243, "c3": 0.655, "c4": 0.63}, {"time": 1.5, "angle": 5.27} + {"angle": 2.26, "curve": 0.375, "c2": 0.5, "c3": 0.75}, {"time": 0.0833, "angle": -17.63, "curve": 0.25, "c3": 0.75}, {"time": 0.2167, "curve": 0.25, "c3": 0.75}, + {"time": 0.3833, "angle": 34.44, "curve": 0.25, "c3": 0.75}, {"time": 0.55, "angle": 15.7, "curve": 0.25, "c3": 0.75}, + {"time": 0.8833, "angle": 43.18, "curve": 0.361, "c2": 0.01, "c3": 0.75}, {"time": 1.1167, "angle": -39.28, "curve": 0.25, "c3": 0.75}, + {"time": 1.4167, "angle": 22.14, "curve": 0.25, "c3": 0.625, "c4": 0.5}, {"time": 1.5, "angle": 2.26} ] } } }, - "545324325": { - "slots": {"eyes": {"attachment": [{"time": 0.05, "name": "eyes-happy"}, {"time": 0.7667, "name": "eyes"}]}}, + "640070672": { + "slots": { + "eyes": {"attachment": [{"time": 0.05, "name": "eyes-angry"}, {"time": 0.8833, "name": "eyes"}]}, + "mouth": {"attachment": [{"time": 0.05, "name": "mouth-bite"}, {"time": 0.4667, "name": "mouth-open"}, {"time": 0.8333, "name": "mouth-bite"}, {"time": 0.8833, "name": "mouth"}]} + }, "bones": { "@pivot-back": { "rotate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "angle": -5.76, "curve": 0.306, "c3": 0.695}, {"time": 0.6667, "angle": -6.67, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.8333, "angle": 2.85, "curve": 0.306, "c3": 0.695}, {"time": 1} + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "angle": 4, "curve": 0, "c2": 0.6, "c3": 0.237}, {"time": 0.3333, "angle": -8.88, "curve": 0.621, "c3": 0, "c4": 1.6}, + {"time": 0.6667, "angle": 8.17, "curve": 0.701, "c4": 0.5}, {"time": 0.8833, "angle": 5, "curve": 0.461, "c3": 0.543}, {"time": 1} ], "translate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": -11.96, "y": -12.91, "curve": 0.306, "c3": 0.695}, - {"time": 0.6667, "x": -17.52, "y": -16.38, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.8333} + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": 33.65, "y": -5, "curve": 0, "c2": 0.6, "c3": 0.237}, + {"time": 0.3333, "x": -62.54, "y": 309.16, "curve": 0.621, "c3": 0, "c4": 1.6}, {"time": 0.6667, "x": 12.32, "y": 268.04, "curve": 0.701, "c4": 0.5}, {"time": 0.8833} ] }, "@leg-front-left": { "translate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": -20.02, "y": -2.36, "curve": "stepped"}, {"time": 0.6667, "x": -20.02, "y": -2.36, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.8333, "x": 5.31, "y": -7.32, "curve": 0.306, "c3": 0.695}, {"time": 1} + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": -0.29, "y": -5.47, "curve": 0, "c2": 0.6, "c3": 0.237}, {"time": 0.3333, "curve": "stepped"}, + {"time": 0.6667, "curve": 0.701, "c4": 0.5}, {"time": 0.8833, "x": -0.95, "y": -14.45, "curve": 0.461, "c3": 0.543}, {"time": 1} ] }, "@leg-front-right": { "translate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": -36.67, "y": 20.01, "curve": 0.306, "c3": 0.695}, - {"time": 0.6667, "x": -44.17, "y": 20.3, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.8333, "x": -12.71, "y": -17.14, "curve": 0.306, "c3": 0.695}, {"time": 1} + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": -0.29, "y": -5.47, "curve": 0, "c2": 0.6, "c3": 0.237}, {"time": 0.3333, "curve": "stepped"}, + {"time": 0.6667, "curve": 0.701, "c4": 0.5}, {"time": 0.8833, "x": -1.66, "y": -25.29, "curve": 0.461, "c3": 0.543}, {"time": 1} ] }, - "@leg-back-left": { + "@shadow": { "translate": [ - {"time": 0.1667, "curve": 0.306, "c3": 0.695}, {"time": 0.6667, "x": -4.62, "y": -2.21, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.8333, "x": -0.1, "y": -3.16, "curve": 0.306, "c3": 0.695}, {"time": 1} + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": 24.43, "curve": 0, "c2": 0.6, "c3": 0.237}, {"time": 0.3333, "x": -70.38, "curve": 0.621, "c3": 0, "c4": 1.4}, + {"time": 0.6667, "x": 5.15, "curve": 0.701, "c4": 0.5}, {"time": 0.8833, "x": -8.95, "curve": 0.461, "c3": 0.543}, {"time": 1} + ], + "scale": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": 1.08, "y": 1.08, "curve": 0, "c2": 0.6, "c3": 0.237}, + {"time": 0.3333, "x": 0.85, "y": 0.85, "curve": 0.621, "c3": 0, "c4": 1.4}, {"time": 0.6667, "x": 0.9, "y": 0.9, "curve": 0.701, "c4": 0.5}, + {"time": 0.8833, "x": 1.1, "y": 1.1, "curve": 0.461, "c3": 0.543}, {"time": 1} ] }, "tail": { "rotate": [ - {"curve": 0, "c2": 0.3, "c3": 0.54}, {"time": 0.1667, "angle": -11.59, "curve": 0.306, "c3": 0.695}, {"time": 0.4167, "angle": 2.75, "curve": 0.306, "c3": 0.695}, - {"time": 0.6667, "angle": -13.32, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.8333, "angle": 15.71, "curve": 0.306, "c3": 0.695}, {"time": 1} + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "angle": 17.93, "curve": 0, "c2": 0.6, "c3": 0.237}, {"time": 0.3333, "angle": -15.3, "curve": 0.621, "c3": 0, "c4": 1.4}, + {"time": 0.6667, "angle": 24.81, "curve": 0.701, "c4": 0.5}, {"time": 0.8833, "angle": -15.84, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 1} ] - }, - "@shadow": { - "scale": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": 0.96, "y": 0.96}, {"time": 0.6667, "x": 0.94, "y": 0.94, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.8333, "x": 1.06, "y": 1.06, "curve": 0.306, "c3": 0.695}, {"time": 1} + } + }, + "events": [{"time": 0.4667, "name": "start-attack"}] + }, + "3530118163": { + "slots": { + "eyes": {"attachment": [{"time": 0.0833, "name": "eyes-angry"}, {"time": 0.6667, "name": "eyes-shut"}, {"time": 0.75, "name": "eyes"}]}, + "mouth": {"attachment": [{"time": 0.0833, "name": "mouth-bite"}, {"time": 0.35, "name": "mouth-open"}, {"time": 0.55, "name": "mouth-bite"}, {"time": 0.75, "name": "mouth"}]} + }, + "bones": { + "@pivot-back": { + "rotate": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "angle": 4, "curve": 0, "c2": 0.5, "c3": 0.3}, {"time": 0.3333, "angle": -23.77, "curve": "stepped"}, + {"time": 0.35, "angle": -29.82, "curve": 0.698, "c3": 0.541}, {"time": 0.5833, "angle": 3}, {"time": 0.7167, "angle": 4, "curve": 0, "c2": 0.09, "c3": 0.479, "c4": 0.56}, + {"time": 0.8167, "angle": -5.09, "curve": 0.416, "c2": 0.51, "c3": 0.865}, {"time": 0.9167} + ], + "translate": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": 33.65, "y": -5, "curve": 0, "c2": 0.5, "c3": 0.3}, {"time": 0.3333, "x": 80.56, "y": 137.85, "curve": "stepped"}, + {"time": 0.35, "x": 147.57, "y": 42.83, "curve": 0, "c2": 0.2, "c3": 0.686}, {"time": 0.5, "x": 206.93, "y": -26.82, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.5833, "x": 226.09}, + {"time": 0.7167, "x": 237.58, "y": 2, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.9167} ] }, - "body-fur-16": { - "rotate": [ - {"angle": -12.06, "curve": 0.382, "c2": 0.58, "c3": 0.731}, {"time": 0.05, "angle": -18.47, "curve": 0.25, "c3": 0.75}, {"time": 0.2167, "curve": 0.25, "c3": 0.75}, - {"time": 0.3833, "angle": -21.07, "curve": 0.25, "c3": 0.75}, {"time": 0.55, "angle": 10.1, "curve": 0.25, "c3": 0.75}, {"time": 0.7167, "angle": -22.23, "curve": 0.25, "c3": 0.75}, - {"time": 0.8833, "angle": 8, "curve": 0.243, "c3": 0.655, "c4": 0.63}, {"time": 1, "angle": 13.84} + "@pivot-main": { + "translate": [ + {"time": 0.5833, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.7167, "x": 15, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.8167, "x": 7.5, "y": 59.4, "curve": 0.315, "c4": 0.8}, + {"time": 0.9167} ] }, - "body-fur-15": { - "rotate": [ - {"angle": -17.34, "curve": 0.36, "c2": 0.64, "c3": 0.695}, {"time": 0.0167, "angle": -18.47, "curve": 0.25, "c3": 0.75}, {"time": 0.1833, "curve": 0.25, "c3": 0.75}, - {"time": 0.35, "angle": -21.07, "curve": 0.25, "c3": 0.75}, {"time": 0.5167, "angle": 10.1, "curve": 0.25, "c3": 0.75}, {"time": 0.6833, "angle": -22.23, "curve": 0.25, "c3": 0.75}, - {"time": 0.85, "angle": 8, "curve": 0.245, "c3": 0.711, "c4": 0.83}, {"time": 1, "angle": 13.33} + "leg-front-left-IK": { + "translate": [ + {"time": 0.1667, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.3333, "x": 31.94, "y": 229.47, "curve": "stepped"}, {"time": 0.35, "x": 6.23, "y": 175.34, "curve": 0.384, "c3": 0.537}, + {"time": 0.5833, "x": 202.93}, {"time": 0.7, "x": 190.82, "curve": 0.315, "c4": 0.8}, {"time": 0.7667, "x": 145.27, "curve": 0.237, "c4": 0.8}, {"time": 0.9167} ] }, - "body-fur-14": { - "rotate": [ - {"angle": -15.02, "curve": 0.375, "c2": 0.62, "c3": 0.716}, {"time": 0.0333, "angle": -18.47, "curve": 0.243, "c3": 0.655, "c4": 0.63}, - {"time": 0.15, "angle": -4.47, "curve": 0.382, "c2": 0.58, "c3": 0.731}, {"time": 0.2}, {"time": 0.3667, "angle": -21.07, "curve": 0.25, "c3": 0.75}, - {"time": 0.5333, "angle": 10.1, "curve": 0.25, "c3": 0.75}, {"time": 0.7, "angle": -22.23, "curve": 0.25, "c3": 0.75}, - {"time": 0.8667, "angle": 8, "curve": 0.243, "c3": 0.68, "c4": 0.71}, {"time": 1, "angle": 13.33} + "leg-front-right-IK": { + "translate": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": 9.33, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.3333, "x": 54.35, "y": 345.22, "curve": "stepped"}, + {"time": 0.35, "x": 63.69, "y": 345.57, "curve": 0.384, "c3": 0.537}, {"time": 0.5833, "x": 199.77}, {"time": 0.7, "x": 187.66, "curve": 0.315, "c4": 0.8}, + {"time": 0.7667, "x": 143.69, "curve": 0.237, "c4": 0.8}, {"time": 0.9167} ] }, - "body-fur-13": { - "rotate": [ - {"angle": -17.68, "curve": 0.289, "c2": 0.17, "c3": 0.755}, {"time": 0.15, "curve": 0.25, "c3": 0.75}, {"time": 0.3167, "angle": -21.07, "curve": 0.25, "c3": 0.75}, - {"time": 0.4833, "angle": 10.1, "curve": 0.25, "c3": 0.75}, {"time": 0.65, "angle": -22.23, "curve": 0.25, "c3": 0.75}, {"time": 0.8167, "angle": 8, "curve": 0.25, "c3": 0.75}, - {"time": 1, "angle": 11.59} + "leg-back-left-IK": { + "translate": [ + {"time": 0.1667, "curve": 0, "c2": 0.4, "c3": 0.383}, {"time": 0.3333, "x": -8.28, "y": 157.2, "curve": "stepped"}, {"time": 0.35, "x": 22.27, "y": 70.62, "curve": 0.312, "c4": 0.8}, + {"time": 0.5, "x": 185.62, "y": 1.08, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.7167, "x": 244.18, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.8167, "x": 141.99, "y": 26.46, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.9167} ] }, - "body-fur-12": { - "rotate": [ - {"angle": -14, "curve": 0.345, "c2": 0.37, "c3": 0.757}, {"time": 0.1167, "curve": 0.25, "c3": 0.75}, {"time": 0.2833, "angle": -21.07, "curve": 0.25, "c3": 0.75}, - {"time": 0.45, "angle": 10.1, "curve": 0.25, "c3": 0.75}, {"time": 0.6167, "angle": -22.23, "curve": 0.25, "c3": 0.75}, {"time": 0.7833, "angle": 8, "curve": 0.25, "c3": 0.75}, - {"time": 0.95, "angle": -18.47, "curve": 0.269, "c3": 0.618, "c4": 0.42}, {"time": 1, "angle": 8.12} + "@leg-front-right": { + "translate": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": 6.95, "y": -25.59, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "curve": "stepped"}, + {"time": 0.5833, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.7167, "x": 8.43, "y": -10.83}, {"time": 0.9167} ] }, - "body-fur-11": { - "rotate": [ - {"angle": -9.23, "curve": 0.375, "c2": 0.5, "c3": 0.75}, {"time": 0.0833, "curve": 0.25, "c3": 0.75}, {"time": 0.25, "angle": -21.07, "curve": 0.25, "c3": 0.75}, - {"time": 0.4167, "angle": 10.1, "curve": 0.25, "c3": 0.75}, {"time": 0.5833, "angle": -22.23, "curve": 0.25, "c3": 0.75}, {"time": 0.75, "angle": 8, "curve": 0.25, "c3": 0.75}, - {"time": 0.9167, "angle": -18.47, "curve": 0.25, "c3": 0.625, "c4": 0.5}, {"time": 1, "angle": 4.23} + "@leg-front-left": { + "translate": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": -0.29, "y": -5.47}, {"time": 0.3333, "curve": "stepped"}, {"time": 0.5833, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.7167, "x": 6.82, "y": 7.35}, {"time": 0.9167} ] }, - "body-fur-10": { + "tail": { "rotate": [ - {"angle": -4.47, "curve": 0.382, "c2": 0.58, "c3": 0.731}, {"time": 0.05, "curve": 0.25, "c3": 0.75}, {"time": 0.2167, "angle": -21.07, "curve": 0.25, "c3": 0.75}, - {"time": 0.3833, "angle": 10.1, "curve": 0.25, "c3": 0.75}, {"time": 0.55, "angle": -22.23, "curve": 0.25, "c3": 0.75}, {"time": 0.7167, "angle": 8, "curve": 0.25, "c3": 0.75}, - {"time": 0.8833, "angle": -18.47, "curve": 0.243, "c3": 0.655, "c4": 0.63}, {"time": 1, "angle": 0.34} + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "angle": 19.35, "curve": 0, "c2": 0.4, "c3": 0.383}, {"time": 0.3333, "angle": -0.88, "curve": "stepped"}, + {"time": 0.35, "angle": -13.56, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.5, "angle": 0.52, "curve": 0, "c2": 0.3, "c3": 0.544}, + {"time": 0.7167, "angle": 19.32, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.8, "angle": -9.3, "curve": 0.313, "c3": 0.699}, {"time": 0.9167} ] }, - "body-fur-09": { + "@shadow": { + "translate": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": 24.43, "curve": 0, "c2": 0.4, "c3": 0.383}, {"time": 0.3333, "x": 86.58, "curve": "stepped"}, + {"time": 0.35, "x": 154.34, "curve": 0.315, "c4": 0.8}, {"time": 0.5, "x": 208.2, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.5833, "x": 216.55}, + {"time": 0.7167, "x": 243.36, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.9167} + ], + "scale": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": 1.08, "y": 1.08, "curve": 0, "c2": 0.4, "c3": 0.383}, {"time": 0.3333, "x": 0.92, "y": 0.92, "curve": "stepped"}, + {"time": 0.35, "x": 0.9, "y": 0.9, "curve": 0.315, "c4": 0.8}, {"time": 0.5, "x": 1.02, "y": 1.02, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.5833, "x": 1.08, "y": 1.08}, + {"time": 0.7167, "x": 1.1, "y": 1.1, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.9167} + ] + } + }, + "events": [{"time": 0.35, "name": "start-attack"}] + }, + "2870090226": { + "slots": { + "eyes": {"attachment": [{"time": 0.0167, "name": "eyes-angry"}, {"time": 0.5, "name": "eyes-shut"}, {"time": 0.6667, "name": "eyes"}]}, + "mouth": {"attachment": [{"time": 0.0167, "name": "mouth-bite"}, {"time": 0.3, "name": "mouth-open"}, {"time": 0.5, "name": "mouth"}]} + }, + "bones": { + "@pivot-back": { "rotate": [ - {"angle": -16.05, "curve": 0.303, "c2": 0.24, "c3": 0.674, "c4": 0.69}, {"time": 0.0833, "angle": -4.47, "curve": 0.382, "c2": 0.58, "c3": 0.731}, - {"time": 0.1333, "curve": 0.25, "c3": 0.75}, {"time": 0.3, "angle": -21.07, "curve": 0.25, "c3": 0.75}, {"time": 0.4667, "angle": 10.1, "curve": 0.25, "c3": 0.75}, - {"time": 0.6333, "angle": -22.23, "curve": 0.25, "c3": 0.75}, {"time": 0.8, "angle": 8, "curve": 0.25, "c3": 0.75}, - {"time": 0.9667, "angle": -18.47, "curve": 0.284, "c3": 0.625, "c4": 0.38}, {"time": 1, "angle": 6.86} + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "angle": -3.92, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "angle": 2.51, "curve": 0.697, "c4": 0.3}, + {"time": 0.3, "angle": -2}, {"time": 0.4167, "angle": -3, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5833, "angle": 3, "curve": 0, "c2": 0.17, "c3": 0.45, "c4": 0.61}, + {"time": 0.6667, "angle": -2.47, "curve": 0.345, "c2": 0.53, "c3": 0.751}, {"time": 0.75} + ], + "translate": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "x": 71.93, "y": -12.95, "curve": "stepped"}, {"time": 0.25, "x": 71.93, "y": -12.95, "curve": 0.697, "c4": 0.3}, + {"time": 0.3, "x": -65}, {"time": 0.4167, "x": -67, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5833, "x": -74.25, "y": -5.2, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.75} ] }, - "body-fur-08": { - "rotate": [ - {"angle": -9.23, "curve": 0.375, "c2": 0.5, "c3": 0.75}, {"time": 0.0833}, {"time": 0.25, "angle": -21.07, "curve": 0.25, "c3": 0.75}, - {"time": 0.4167, "angle": 10.1, "curve": 0.25, "c3": 0.75}, {"time": 0.5833, "angle": -22.23, "curve": 0.25, "c3": 0.75}, {"time": 0.75, "angle": 8, "curve": 0.25, "c3": 0.75}, - {"time": 0.9167, "angle": -18.47, "curve": 0.25, "c3": 0.625, "c4": 0.5}, {"time": 1, "angle": -0.91} + "leg-back-left-IK": { + "translate": [ + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.1333, "x": 80.9, "curve": 0.161, "c3": 0.854}, {"time": 0.25, "x": 49.4, "curve": 0.25, "c4": 0.3}, + {"time": 0.3, "x": -1.03, "y": 44.55}, {"time": 0.4167, "x": -2.69, "y": 48.98, "curve": 0.313, "c3": 0.699}, {"time": 0.5833, "x": -90.91, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.75} ] }, - "body-fur-07": { - "rotate": [ - {"angle": -2.4, "curve": 0.375, "c2": 0.62, "c3": 0.716}, {"time": 0.0333, "curve": 0.25, "c3": 0.75}, {"time": 0.2, "angle": -21.07, "curve": 0.25, "c3": 0.75}, - {"time": 0.3667, "angle": 10.1, "curve": 0.25, "c3": 0.75}, {"time": 0.5333, "angle": -22.23, "curve": 0.25, "c3": 0.75}, {"time": 0.7, "angle": 8, "curve": 0.25, "c3": 0.75}, - {"time": 0.8667, "angle": -18.47, "curve": 0.243, "c3": 0.68, "c4": 0.71}, {"time": 1, "angle": 2.91} + "leg-front-right-IK": { + "translate": [ + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 44.25, "y": 4.66, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "x": 42.9, "curve": 0.697, "c4": 0.3}, + {"time": 0.3, "x": 12.5}, {"time": 0.4167, "x": 2.32, "curve": 0.313, "c3": 0.699}, {"time": 0.5833, "x": -87.1, "curve": 0, "c2": 0.17, "c3": 0.45, "c4": 0.61}, + {"time": 0.6667, "x": -39.4, "curve": 0.345, "c2": 0.53, "c3": 0.751}, {"time": 0.75} ] }, - "body-fur-06": { - "rotate": [ - {"angle": -13.95, "curve": 0.321, "c2": 0.3, "c3": 0.679, "c4": 0.7}, {"time": 0.0667, "angle": -4.47, "curve": 0.382, "c2": 0.58, "c3": 0.731}, {"time": 0.1167}, - {"time": 0.2833, "angle": -21.07, "curve": 0.25, "c3": 0.75}, {"time": 0.45, "angle": 10.1, "curve": 0.25, "c3": 0.75}, {"time": 0.6167, "angle": -22.23, "curve": 0.25, "c3": 0.75}, - {"time": 0.7833, "angle": 8, "curve": 0.25, "c3": 0.75}, {"time": 0.95, "angle": -18.47, "curve": 0.269, "c3": 0.618, "c4": 0.42}, {"time": 1, "angle": 13.33} + "leg-front-left-IK": { + "translate": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "x": 8.25, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "x": 42.9, "curve": 0.697, "c4": 0.3}, + {"time": 0.3, "x": -18.24, "y": 8.75}, {"time": 0.4167, "x": -28.22, "y": 30.68, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.5833, "x": -112.56, "curve": 0, "c2": 0.17, "c3": 0.45, "c4": 0.61}, {"time": 0.6667, "x": -55.81, "curve": 0.345, "c2": 0.53, "c3": 0.751}, {"time": 0.75} ] }, - "body-fur-05": { - "rotate": [ - {"angle": -6.79, "curve": 0.381, "c2": 0.55, "c3": 0.742}, {"time": 0.0667}, {"time": 0.2333, "angle": -21.07, "curve": 0.25, "c3": 0.75}, - {"time": 0.4, "angle": 10.1, "curve": 0.25, "c3": 0.75}, {"time": 0.5667, "angle": -22.23, "curve": 0.25, "c3": 0.75}, {"time": 0.7333, "angle": 8, "curve": 0.25, "c3": 0.75}, - {"time": 0.9, "angle": -18.47, "curve": 0.245, "c3": 0.637, "c4": 0.56}, {"time": 1, "angle": 6.86} + "@leg-front-left": { + "translate": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "x": -4.8, "y": 21.17, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "x": -0.53, "y": 0.11, "curve": 0.697, "c4": 0.3}, + {"time": 0.3} ] }, - "body-fur-04": { - "rotate": [ - {"angle": -17.69, "curve": 0.277, "c2": 0.14, "c3": 0.667, "c4": 0.67}, {"time": 0.1, "angle": -4.47, "curve": 0.382, "c2": 0.58, "c3": 0.731}, {"time": 0.15}, - {"time": 0.3167, "angle": -21.07, "curve": 0.25, "c3": 0.75}, {"time": 0.4833, "angle": 10.1, "curve": 0.25, "c3": 0.75}, {"time": 0.65, "angle": -22.23, "curve": 0.25, "c3": 0.75}, - {"time": 0.8167, "angle": 8, "curve": 0.25, "c3": 0.75}, {"time": 1, "angle": 12.53} + "@leg-front-right": { + "translate": [ + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 3.37, "y": 22.83, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "x": 12.06, "y": -24.92, "curve": 0.697, "c4": 0.3}, + {"time": 0.3, "x": -30.7, "y": 11.75, "curve": "stepped"}, {"time": 0.4167, "x": -30.7, "y": 11.75, "curve": 0, "c2": 0.3, "c3": 0.544}, + {"time": 0.5833, "x": -10.19, "y": -4.67, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.75} ] }, - "body-fur-03": { - "rotate": [ - {"angle": -11.67, "curve": 0.363, "c2": 0.44, "c3": 0.755}, {"time": 0.1}, {"time": 0.2667, "angle": -21.07, "curve": 0.25, "c3": 0.75}, - {"time": 0.4333, "angle": 10.1, "curve": 0.25, "c3": 0.75}, {"time": 0.6, "angle": -22.23, "curve": 0.25, "c3": 0.75}, {"time": 0.7667, "angle": 8, "curve": 0.25, "c3": 0.75}, - {"time": 0.9333, "angle": -18.47, "curve": 0.258, "c3": 0.619, "c4": 0.45}, {"time": 1, "angle": 5.54} + "@leg-back-left": { + "translate": [ + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.1333, "x": 0.67, "y": -7.85, "curve": 0.161, "c3": 0.854}, {"time": 0.25, "x": 0.53, "y": -13.09, "curve": 0.25, "c4": 0.3}, + {"time": 0.3, "x": 0.58, "y": -14.14, "curve": "stepped"}, {"time": 0.4167, "x": 0.58, "y": -14.14, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.5833, "x": -0.28, "y": -7.87, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.75} ] }, - "body-fur-02": { - "rotate": [ - {"angle": -17.34, "curve": 0.36, "c2": 0.64, "c3": 0.695}, {"time": 0.0167, "angle": -18.47, "curve": 0.243, "c3": 0.655, "c4": 0.63}, - {"time": 0.1333, "angle": -4.47, "curve": 0.382, "c2": 0.58, "c3": 0.731}, {"time": 0.1833}, {"time": 0.35, "angle": -21.07, "curve": 0.25, "c3": 0.75}, - {"time": 0.5167, "angle": 10.1, "curve": 0.25, "c3": 0.75}, {"time": 0.6833, "angle": -22.23, "curve": 0.25, "c3": 0.75}, - {"time": 0.85, "angle": 8, "curve": 0.245, "c3": 0.711, "c4": 0.83}, {"time": 1, "angle": 13.84} + "@shadow": { + "translate": [ + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 61.96, "curve": "stepped"}, {"time": 0.25, "x": 61.96, "curve": 0.697, "c4": 0.3}, {"time": 0.3, "x": -50.16}, + {"time": 0.4167, "x": -53.09, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5833, "x": -83.79, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.75} + ], + "scale": [ + {"time": 0.0833, "curve": 0, "c2": 0.26, "c3": 0.369, "c4": 0.62}, {"time": 0.25, "x": 1.06, "y": 1.06, "curve": 0.697, "c4": 0.3}, + {"time": 0.3, "x": 0.96, "y": 0.96, "curve": "stepped"}, {"time": 0.4167, "x": 0.96, "y": 0.96, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.5833, "x": 1.08, "y": 1.08, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.75} ] }, - "body-fur-01": { + "tail": { "rotate": [ - {"angle": -16.07, "curve": 0.32, "c2": 0.29, "c3": 0.757}, {"time": 0.1333, "curve": 0.25, "c3": 0.75}, {"time": 0.3, "angle": -21.07, "curve": 0.25, "c3": 0.75}, - {"time": 0.4667, "angle": 10.1, "curve": 0.25, "c3": 0.75}, {"time": 0.6333, "angle": -22.23, "curve": 0.25, "c3": 0.75}, {"time": 0.8, "angle": 8, "curve": 0.25, "c3": 0.75}, - {"time": 0.9667, "angle": -18.47, "curve": 0.284, "c3": 0.625, "c4": 0.38}, {"time": 1, "angle": 10.51} + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "angle": 15.61, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "angle": 20.44, "curve": 0.697, "c4": 0.3}, + {"time": 0.3, "angle": -9.4}, {"time": 0.4167, "angle": -13.12, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5833, "angle": 15.47, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.75} ] } }, - "events": [{"time": 0.1667, "name": "hit-buff"}] + "events": [{"time": 0.3, "name": "start-attack"}] }, - "3925968729": { + "1771510038": { "slots": { - "eyes": {"attachment": [{"time": 0.05, "name": "eyes-shut"}, {"time": 0.7667, "name": "eyes"}]}, - "mouth": {"attachment": [{"time": 0.05, "name": "mouth-bite"}, {"time": 0.7667, "name": "mouth"}]} + "eyes": {"attachment": [{"time": 0.0167, "name": "eyes-angry"}, {"time": 0.75, "name": "eyes-shut"}, {"time": 0.8333, "name": "eyes"}]}, + "leg-back-left": {"attachment": [{"time": 0.35, "name": "sumo-leg-back-left-long"}, {"time": 0.5833, "name": "sumo-leg-back-left"}]}, + "mouth": {"attachment": [{"time": 0.0167, "name": "mouth-bite"}, {"time": 0.2667, "name": "mouth-open"}, {"time": 0.5833, "name": "mouth-bite"}, {"time": 0.8333, "name": "mouth"}]} }, "bones": { "@pivot-back": { "rotate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "angle": 3.5}, {"time": 0.6667, "angle": 4, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.8333, "angle": -1.98, "curve": 0.306, "c3": 0.695}, {"time": 1} + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "angle": -3.92, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "angle": 2.51, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.3333, "angle": -6, "curve": "stepped"}, {"time": 0.35, "angle": -16}, {"time": 0.5667, "angle": -16.5, "curve": "stepped"}, {"time": 0.5833, "curve": 0.313, "c3": 0.699}, + {"time": 0.75, "angle": 6, "curve": 0.313, "c3": 0.699}, {"time": 0.9167} ], "translate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "y": 2.9}, {"time": 0.6667, "y": 3.91, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.8333, "y": -2.14, "curve": 0.306, "c3": 0.695}, {"time": 1} - ] + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "x": 71.93, "y": -12.95, "curve": "stepped"}, {"time": 0.25, "x": 71.93, "y": -12.95, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.3333, "x": -135.5, "curve": "stepped"}, {"time": 0.35, "x": -560.54, "y": 85.29}, {"time": 0.5667, "x": -562.89, "y": 81.57, "curve": "stepped"}, + {"time": 0.5833, "x": -151.24, "curve": 0.313, "c3": 0.699}, {"time": 0.75, "x": -151.24, "y": 4.06, "curve": 0.313, "c3": 0.699}, {"time": 0.9167} + ], + "scale": [{"time": 0.3333, "curve": "stepped"}, {"time": 0.35, "x": -1, "curve": "stepped"}, {"time": 0.5667, "x": -1, "curve": "stepped"}, {"time": 0.5833}] }, - "@leg-front-right": { + "@shadow": { "translate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": -0.92, "y": -19.87}, {"time": 0.6667, "x": -1.14, "y": -21.42, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.8333, "x": -0.43, "y": 9.97, "curve": 0.306, "c3": 0.695}, {"time": 1} + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 61.96, "curve": "stepped"}, {"time": 0.25, "x": 61.96, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.3333, "x": -143.36, "curve": "stepped"}, {"time": 0.35, "x": -143.36}, {"time": 0.5667, "x": -157.56, "curve": "stepped"}, {"time": 0.5833, "x": -161.35, "curve": "stepped"}, + {"time": 0.75, "x": -161.35, "curve": 0.313, "c3": 0.699}, {"time": 0.9167} + ], + "scale": [ + {"time": 0.0833, "curve": 0, "c2": 0.26, "c3": 0.369, "c4": 0.62}, {"time": 0.25, "x": 1.06, "y": 1.06, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "curve": "stepped"}, + {"time": 0.35}, {"time": 0.5667, "x": 1.08, "y": 1.08, "curve": "stepped"}, {"time": 0.5833, "curve": 0.313, "c3": 0.699}, + {"time": 0.75, "x": 1.08, "y": 1.08, "curve": 0.313, "c3": 0.699}, {"time": 0.9167} ] }, - "@leg-front-left": { + "leg-back-left-IK": { "translate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": 7.87, "y": -5.37}, {"time": 0.6667, "x": 9.12, "y": -5.44, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.8333, "x": -0.16, "y": 3.89, "curve": 0.306, "c3": 0.695}, {"time": 1} - ] - }, - "tail": { - "rotate": [ - {"curve": 0, "c2": 0.3, "c3": 0.54}, {"time": 0.1667, "angle": -17.97, "curve": 0.306, "c3": 0.695}, {"time": 0.4167, "angle": -9.96, "curve": 0.306, "c3": 0.695}, - {"time": 0.6667, "angle": -19.79, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.8333, "angle": 6.14, "curve": 0.306, "c3": 0.695}, {"time": 1} + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.1333, "x": 80.9, "curve": 0.161, "c3": 0.854}, {"time": 0.25, "x": 49.4, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.3333, "x": -113.37, "y": 35.8, "curve": "stepped"}, {"time": 0.35, "x": -685.28, "y": 163.59}, {"time": 0.5667, "x": -686.48, "y": 176.51, "curve": "stepped"}, + {"time": 0.5833, "x": -134.74, "curve": "stepped"}, {"time": 0.75, "x": -134.74, "curve": 0.313, "c3": 0.699}, {"time": 0.9167} ] }, - "body-fur-16": { - "rotate": [ - {"angle": 12.5, "curve": 0.25, "c3": 0.75}, {"time": 0.25, "curve": 0.25, "c3": 0.75}, {"time": 0.5, "angle": 13.81, "curve": 0.25, "c3": 0.75}, - {"time": 0.75, "angle": -10.1, "curve": 0.25, "c3": 0.75}, {"time": 1, "angle": 13.84} + "leg-front-right-IK": { + "translate": [ + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 30.89, "y": 11.74, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "x": 42.9, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.3333, "x": -172.87, "y": 28.32, "curve": "stepped"}, {"time": 0.35, "x": 425.15, "curve": "stepped"}, {"time": 0.5667, "x": 425.15, "curve": "stepped"}, + {"time": 0.5833, "x": -180.48, "curve": "stepped"}, {"time": 0.75, "x": -180.48, "curve": 0.313, "c3": 0.699}, {"time": 0.9167} ] }, - "body-fur-15": { - "rotate": [ - {"angle": 9.97, "curve": 0.337, "c2": 0.35, "c3": 0.758}, {"time": 0.1833, "curve": 0.25, "c3": 0.75}, {"time": 0.4333, "angle": 13.81, "curve": 0.25, "c3": 0.75}, - {"time": 0.6833, "angle": -10.1, "curve": 0.25, "c3": 0.75}, {"time": 0.9333, "angle": 12.5, "curve": 0.273, "c3": 0.62, "c4": 0.41}, {"time": 1, "angle": 13.33} + "leg-front-left-IK": { + "translate": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "x": 8.25, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "x": 42.9, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.3333, "x": -192.09, "y": 31.17, "curve": "stepped"}, {"time": 0.35, "x": -197.17}, {"time": 0.5667, "x": -192.36, "y": 4.81, "curve": "stepped"}, + {"time": 0.5833, "x": -180.48, "curve": "stepped"}, {"time": 0.75, "x": -180.48, "curve": 0.313, "c3": 0.699}, {"time": 0.9167} ] }, - "body-fur-14": { - "rotate": [ - {"angle": 10.93, "curve": 0.366, "c2": 0.63, "c3": 0.703}, {"time": 0.0333, "angle": 12.5, "curve": 0.243, "c3": 0.649, "c4": 0.6}, - {"time": 0.2, "angle": 3.55, "curve": 0.382, "c2": 0.57, "c3": 0.735}, {"time": 0.2833, "curve": 0.25, "c3": 0.75}, {"time": 0.5333, "angle": 13.81, "curve": 0.25, "c3": 0.75}, - {"time": 0.7833, "angle": -10.1, "curve": 0.244, "c3": 0.7, "c4": 0.79}, {"time": 1, "angle": 13.33} + "@leg-front-left": { + "translate": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "x": -4.8, "y": 21.17, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.25, "x": -0.53, "y": 0.11, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "x": -1, "y": -5.53, "curve": "stepped"}, + {"time": 0.35, "x": 2.26, "y": 14.19, "curve": "stepped"}, {"time": 0.5667, "x": 2.26, "y": 14.19, "curve": "stepped"}, + {"time": 0.5833, "x": -1.12, "y": 1.52, "curve": 0.313, "c3": 0.699}, {"time": 0.75, "x": -1, "y": -5.53, "curve": 0.313, "c3": 0.699}, {"time": 0.9167} ] }, - "body-fur-13": { - "rotate": [ - {"angle": 10.88, "curve": 0.32, "c2": 0.29, "c3": 0.757}, {"time": 0.2, "curve": 0.25, "c3": 0.75}, {"time": 0.45, "angle": 13.81, "curve": 0.25, "c3": 0.75}, - {"time": 0.7, "angle": -10.1, "curve": 0.25, "c3": 0.75}, {"time": 0.95, "angle": 12.5, "curve": 0.284, "c3": 0.625, "c4": 0.38}, {"time": 1, "angle": 11.59} + "@leg-front-right": { + "translate": [ + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 4.31, "y": 11.86, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.25, "x": -10.19, "y": -4.67, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "x": -1.86, "y": -9.26, "curve": "stepped"}, + {"time": 0.35, "x": 11.1, "y": -20.22, "curve": "stepped"}, {"time": 0.5667, "x": 11.1, "y": -20.22, "curve": "stepped"}, + {"time": 0.5833, "x": -2.24, "y": 13.67, "curve": 0.313, "c3": 0.699}, {"time": 0.75, "x": -1.86, "y": -9.26, "curve": 0.313, "c3": 0.699}, {"time": 0.9167} ] }, - "body-fur-12": { - "rotate": [ - {"angle": 6.8, "curve": 0.372, "c2": 0.48, "c3": 0.752}, {"time": 0.1333, "curve": 0.25, "c3": 0.75}, {"time": 0.3833, "angle": 13.81, "curve": 0.25, "c3": 0.75}, - {"time": 0.6333, "angle": -10.1, "curve": 0.25, "c3": 0.75}, {"time": 0.8833, "angle": 12.5, "curve": 0.252, "c3": 0.622, "c4": 0.48}, {"time": 1, "angle": 8.12} + "@leg-back-left": { + "translate": [ + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.1333, "x": 0.67, "y": -7.85, "curve": 0.161, "c3": 0.854}, {"time": 0.25, "x": 0.53, "y": -13.09, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.3333, "curve": "stepped"}, {"time": 0.35, "x": 10.26, "y": 0.56, "curve": "stepped"}, {"time": 0.5667, "x": 10.26, "y": 0.56, "curve": "stepped"}, {"time": 0.5833} ] }, - "body-fur-11": { + "tail": { "rotate": [ - {"angle": 4.6, "curve": 0.381, "c2": 0.55, "c3": 0.742}, {"time": 0.1, "curve": 0.25, "c3": 0.75}, {"time": 0.35, "angle": 13.81, "curve": 0.25, "c3": 0.75}, - {"time": 0.6, "angle": -10.1, "curve": 0.25, "c3": 0.75}, {"time": 0.85, "angle": 12.5, "curve": 0.245, "c3": 0.637, "c4": 0.56}, {"time": 1, "angle": 4.23} + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "angle": 15.61, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "angle": 20.44, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.3333, "angle": -15.58, "curve": "stepped"}, {"time": 0.35, "angle": 30.35}, {"time": 0.5667, "angle": 35.35, "curve": "stepped"}, + {"time": 0.5833, "angle": -11.84, "curve": 0.313, "c3": 0.699}, {"time": 0.75, "angle": 16.95, "curve": 0.313, "c3": 0.699}, {"time": 0.9167} ] }, - "body-fur-10": { + "@pivot-main": { + "translate": [{"time": 0.75, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.8333, "y": 31, "curve": 0.315, "c4": 0.8}, {"time": 0.9167}], + "scale": [{"time": 0.5667, "curve": "stepped"}, {"time": 0.75, "y": 0.98, "curve": 0.154, "c4": 0.9}, {"time": 0.9167}] + } + }, + "events": [{"time": 0.35, "name": "start-attack"}] + }, + "3957953988": { + "slots": {"eyes": {"attachment": [{"time": 0.05, "name": "eyes-happy"}, {"time": 0.7667, "name": "eyes"}]}}, + "bones": { + "@pivot-back": { "rotate": [ - {"angle": 0.87, "curve": 0.366, "c2": 0.63, "c3": 0.703}, {"time": 0.0333, "curve": 0.25, "c3": 0.75}, {"time": 0.2833, "angle": 13.81, "curve": 0.25, "c3": 0.75}, - {"time": 0.5333, "angle": -10.1, "curve": 0.25, "c3": 0.75}, {"time": 0.7833, "angle": 12.5, "curve": 0.244, "c3": 0.7, "c4": 0.79}, {"time": 1, "angle": 0.34} + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "angle": -5.76, "curve": 0.306, "c3": 0.695}, {"time": 0.6667, "angle": -6.67, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.8333, "angle": 2.85, "curve": 0.306, "c3": 0.695}, {"time": 1} + ], + "translate": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": -11.96, "y": -12.91, "curve": 0.306, "c3": 0.695}, + {"time": 0.6667, "x": -17.52, "y": -16.38, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.8333} ] }, - "body-fur-09": { - "rotate": [ - {"angle": 9.95, "curve": 0.315, "c2": 0.28, "c3": 0.673, "c4": 0.69}, {"time": 0.1, "angle": 3.55, "curve": 0.382, "c2": 0.57, "c3": 0.735}, {"time": 0.1833, "curve": 0.25, "c3": 0.75}, - {"time": 0.4333, "angle": 13.81, "curve": 0.25, "c3": 0.75}, {"time": 0.6833, "angle": -10.1, "curve": 0.25, "c3": 0.75}, - {"time": 0.9333, "angle": 12.5, "curve": 0.273, "c3": 0.62, "c4": 0.41}, {"time": 1, "angle": 6.86} + "@leg-front-left": { + "translate": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": -22.08, "y": 3.82, "curve": 0.306, "c3": 0.695}, {"time": 0.6667, "x": -27.67, "y": 3.91, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.8333, "x": -16.19, "y": -6.62, "curve": 0.306, "c3": 0.695}, {"time": 1} ] }, - "body-fur-08": { - "rotate": [ - {"angle": 4.6, "curve": 0.381, "c2": 0.55, "c3": 0.742}, {"time": 0.1, "curve": 0.25, "c3": 0.75}, {"time": 0.35, "angle": 13.81, "curve": 0.25, "c3": 0.75}, - {"time": 0.6, "angle": -10.1, "curve": 0.25, "c3": 0.75}, {"time": 0.85, "angle": 12.5, "curve": 0.245, "c3": 0.637, "c4": 0.56}, {"time": 1, "angle": -0.91} + "@leg-front-right": { + "translate": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": -32.02, "y": 30.99, "curve": 0.306, "c3": 0.695}, + {"time": 0.6667, "x": -43.95, "y": 33.64, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.8333, "x": 1.17, "y": -19.99, "curve": 0.306, "c3": 0.695}, {"time": 1} ] }, - "body-fur-07": { - "rotate": [ - {"angle": 1.63, "curve": 0.375, "c2": 0.62, "c3": 0.716}, {"time": 0.05, "curve": 0.25, "c3": 0.75}, {"time": 0.3, "angle": 13.81, "curve": 0.25, "c3": 0.75}, - {"time": 0.55, "angle": -10.1, "curve": 0.25, "c3": 0.75}, {"time": 0.8, "angle": 12.5, "curve": 0.243, "c3": 0.68, "c4": 0.71}, {"time": 1, "angle": 2.91} + "@leg-back-left": { + "translate": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": -18.26, "y": -5.66, "curve": 0.306, "c3": 0.695}, + {"time": 0.6667, "x": -24.49, "y": -9.09, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.8333, "x": -0.1, "y": -3.16, "curve": 0.306, "c3": 0.695}, {"time": 1} ] }, - "body-fur-06": { + "tail": { "rotate": [ - {"angle": 9.95, "curve": 0.315, "c2": 0.28, "c3": 0.673, "c4": 0.69}, {"time": 0.1, "angle": 3.55, "curve": 0.382, "c2": 0.57, "c3": 0.735}, {"time": 0.1833, "curve": 0.25, "c3": 0.75}, - {"time": 0.4333, "angle": 13.81, "curve": 0.25, "c3": 0.75}, {"time": 0.6833, "angle": -10.1, "curve": 0.25, "c3": 0.75}, - {"time": 0.9333, "angle": 12.5, "curve": 0.273, "c3": 0.62, "c4": 0.41}, {"time": 1, "angle": 13.33} + {"curve": 0, "c2": 0.3, "c3": 0.54}, {"time": 0.1667, "angle": -11.59, "curve": 0.306, "c3": 0.695}, {"time": 0.4167, "angle": 2.75, "curve": 0.306, "c3": 0.695}, + {"time": 0.6667, "angle": -13.32, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.8333, "angle": 15.71, "curve": 0.306, "c3": 0.695}, {"time": 1} ] }, - "body-fur-05": { - "rotate": [ - {"angle": 4.6, "curve": 0.381, "c2": 0.55, "c3": 0.742}, {"time": 0.1, "curve": 0.25, "c3": 0.75}, {"time": 0.35, "angle": 13.81, "curve": 0.25, "c3": 0.75}, - {"time": 0.6, "angle": -10.1, "curve": 0.25, "c3": 0.75}, {"time": 0.85, "angle": 12.5, "curve": 0.245, "c3": 0.637, "c4": 0.56}, {"time": 1, "angle": 6.86} + "@shadow": { + "scale": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": 0.96, "y": 0.96}, {"time": 0.6667, "x": 0.94, "y": 0.94, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.8333, "x": 1.06, "y": 1.06, "curve": 0.306, "c3": 0.695}, {"time": 1} ] - }, - "body-fur-04": { + } + }, + "events": [{"time": 0.1667, "name": "hit-buff"}] + }, + "336700057": { + "slots": { + "eyes": {"attachment": [{"time": 0.05, "name": "eyes-shut"}, {"time": 0.7667, "name": "eyes"}]}, + "mouth": {"attachment": [{"time": 0.05, "name": "mouth-bite"}, {"time": 0.7667, "name": "mouth"}]} + }, + "bones": { + "@pivot-back": { "rotate": [ - {"angle": 12.24, "curve": 0.267, "c2": 0.1, "c3": 0.657, "c4": 0.63}, {"time": 0.15, "angle": 3.55, "curve": 0.382, "c2": 0.57, "c3": 0.735}, {"time": 0.2333, "curve": 0.25, "c3": 0.75}, - {"time": 0.4833, "angle": 13.81, "curve": 0.25, "c3": 0.75}, {"time": 0.7333, "angle": -10.1, "curve": 0.25, "c3": 0.75}, {"time": 1, "angle": 12.53} + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "angle": 3.5}, {"time": 0.6667, "angle": 4, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.8333, "angle": -1.98, "curve": 0.306, "c3": 0.695}, {"time": 1} + ], + "translate": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "y": 2.9}, {"time": 0.6667, "y": 3.91, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.8333, "y": -2.14, "curve": 0.306, "c3": 0.695}, {"time": 1} ] }, - "body-fur-03": { - "rotate": [ - {"angle": 7.9, "curve": 0.363, "c2": 0.44, "c3": 0.755}, {"time": 0.15, "curve": 0.25, "c3": 0.75}, {"time": 0.4, "angle": 13.81, "curve": 0.25, "c3": 0.75}, - {"time": 0.65, "angle": -10.1, "curve": 0.25, "c3": 0.75}, {"time": 0.9, "angle": 12.5, "curve": 0.258, "c3": 0.619, "c4": 0.45}, {"time": 1, "angle": 5.54} + "@leg-front-right": { + "translate": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": -0.75, "y": -16.02}, {"time": 0.6667, "x": -1.01, "y": -19.02, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.8333, "x": -0.43, "y": 9.97, "curve": 0.306, "c3": 0.695}, {"time": 1} ] }, - "body-fur-02": { - "rotate": [ - {"angle": 10.93, "curve": 0.366, "c2": 0.63, "c3": 0.703}, {"time": 0.0333, "angle": 12.5, "curve": 0.243, "c3": 0.649, "c4": 0.6}, - {"time": 0.2, "angle": 3.55, "curve": 0.382, "c2": 0.57, "c3": 0.735}, {"time": 0.2833, "curve": 0.25, "c3": 0.75}, {"time": 0.5333, "angle": 13.81, "curve": 0.25, "c3": 0.75}, - {"time": 0.7833, "angle": -10.1, "curve": 0.244, "c3": 0.7, "c4": 0.79}, {"time": 1, "angle": 13.84} + "@leg-front-left": { + "translate": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": -0.36, "y": -7.76}, {"time": 0.6667, "x": -0.47, "y": -8.85, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.8333, "x": -0.23, "y": 5.14, "curve": 0.306, "c3": 0.695}, {"time": 1} ] }, - "body-fur-01": { + "tail": { "rotate": [ - {"angle": 10.88, "curve": 0.32, "c2": 0.29, "c3": 0.757}, {"time": 0.2, "curve": 0.25, "c3": 0.75}, {"time": 0.45, "angle": 13.81, "curve": 0.25, "c3": 0.75}, - {"time": 0.7, "angle": -10.1, "curve": 0.25, "c3": 0.75}, {"time": 0.95, "angle": 12.5, "curve": 0.284, "c3": 0.625, "c4": 0.38}, {"time": 1, "angle": 10.51} + {"curve": 0, "c2": 0.3, "c3": 0.54}, {"time": 0.1667, "angle": -17.97, "curve": 0.306, "c3": 0.695}, {"time": 0.4167, "angle": -9.96, "curve": 0.306, "c3": 0.695}, + {"time": 0.6667, "angle": -19.79, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.8333, "angle": 6.14, "curve": 0.306, "c3": 0.695}, {"time": 1} ] } }, "events": [{"time": 0.1667, "name": "hit-buff"}] }, - "685375493": { + "4129179734": { "slots": { "eyes": {"attachment": [{"time": 0.0167, "name": "eyes-shut"}, {"time": 0.1833, "name": "eyes-angry"}, {"time": 0.4, "name": "eyes"}]}, "mouth": {"attachment": [{"time": 0.0167, "name": "mouth-bite"}, {"time": 0.4, "name": "mouth"}]} @@ -27240,14 +35842,11 @@ }, "leg-back-left-IK": { "translate": [ - {"curve": "stepped"}, {"time": 0.0167, "x": 20.18, "y": 0.9, "curve": "stepped"}, {"time": 0.1667, "x": 20.18, "y": 0.9, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333} - ] - }, - "@leg-back-left": { - "translate": [ - {"curve": "stepped"}, {"time": 0.0167, "x": -0.94, "y": 4.51, "curve": "stepped"}, {"time": 0.1667, "x": -0.94, "y": 4.51, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3167} + {"curve": "stepped"}, {"time": 0.0167, "x": -5.88, "y": 0.9, "curve": "stepped"}, {"time": 0.1667, "x": -5.88, "y": 0.9, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.3167, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.3695, "x": -5.88, "y": 0.9} ] }, + "@leg-back-left": {"translate": [{"curve": "stepped"}, {"time": 0.0167, "x": -2.22, "y": 7.86}, {"time": 0.1667, "x": -2.63, "y": 8.92, "curve": 0.306, "c4": 0.8}, {"time": 0.3167}]}, "@pivot-main": {"translate": [{"curve": "stepped"}, {"time": 0.0167, "x": 20, "curve": "stepped"}, {"time": 0.3167, "x": 20, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.4167}]}, "@leg-front-right": {"translate": [{"time": 0.1667, "curve": 0.62, "c4": 0.3}, {"time": 0.3167, "x": -2.11, "y": -28.46, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.4167}]}, "tail": { @@ -27258,116 +35857,19 @@ }, "leg-front-right-IK": { "translate": [ - {"curve": "stepped"}, {"time": 0.0167, "x": 44.88, "y": 143.25}, {"time": 0.0833, "x": -0.81, "y": 175.84}, {"time": 0.1667, "x": 46.95, "y": 154.35, "curve": 0.306, "c4": 0.8}, + {"curve": "stepped"}, {"time": 0.0167, "x": 49.22, "y": 169.28}, {"time": 0.0833, "x": -4.05, "y": 205.79}, {"time": 0.1667, "x": 52, "y": 184.62, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3167} ] }, "leg-front-left-IK": { "translate": [ - {"curve": "stepped"}, {"time": 0.0167, "x": -4.98, "y": 86.81}, {"time": 0.0833, "x": 23.52, "y": 63.22}, {"time": 0.1667, "x": -2.69, "y": 90.83, "curve": 0.306, "c4": 0.8}, + {"curve": "stepped"}, {"time": 0.0167, "x": -29.76, "y": 76.11}, {"time": 0.0833, "x": 8.1, "y": 65.84}, {"time": 0.1667, "x": -35.9, "y": 81.82, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3167} ] - }, - "body-fur-12": { - "rotate": [ - {"angle": -7.37, "curve": 0.379, "c2": 0.53, "c3": 0.746}, {"time": 0.0667, "curve": 0.25, "c3": 0.75}, {"time": 0.15, "angle": 47.21, "curve": 0.384, "c3": 0.75}, - {"time": 0.3333, "angle": -17.29, "curve": 0.247, "c3": 0.631, "c4": 0.53}, {"time": 0.4167, "angle": 8.12} - ] - }, - "body-fur-13": { - "rotate": [ - {"angle": -10.16, "curve": 0.369, "c2": 0.47, "c3": 0.753}, {"time": 0.0833}, {"time": 0.1667, "angle": 47.21, "curve": 0.384, "c3": 0.75}, - {"time": 0.35, "angle": -17.29, "curve": 0.254, "c3": 0.621, "c4": 0.47}, {"time": 0.4167, "angle": 11.59} - ] - }, - "body-fur-04": { - "rotate": [ - {"angle": -9.85, "curve": 0.342, "c2": 0.36, "c3": 0.692, "c4": 0.75}, {"time": 0.05, "angle": -2.67, "curve": 0.377, "c2": 0.61, "c3": 0.72}, {"time": 0.0833}, - {"time": 0.1667, "angle": 47.21, "curve": 0.384, "c3": 0.75}, {"time": 0.35, "angle": -17.29, "curve": 0.254, "c3": 0.621, "c4": 0.47}, {"time": 0.4167, "angle": 12.53} - ] - }, - "body-fur-02": { - "rotate": [ - {"angle": -12.33, "curve": 0.33, "c2": 0.32, "c3": 0.693, "c4": 0.75}, {"time": 0.0667, "angle": -2.67, "curve": 0.377, "c2": 0.61, "c3": 0.72}, {"time": 0.1}, - {"time": 0.1833, "angle": 47.21, "curve": 0.384, "c3": 0.75}, {"time": 0.3667, "angle": -17.29, "curve": 0.265, "c3": 0.618, "c4": 0.43}, {"time": 0.4167, "angle": 13.84} - ] - }, - "body-fur-06": { - "rotate": [ - {"angle": -7.31, "curve": 0.347, "c2": 0.38, "c3": 0.688, "c4": 0.74}, {"time": 0.0333, "angle": -2.67, "curve": 0.377, "c2": 0.61, "c3": 0.72}, {"time": 0.0667}, - {"time": 0.15, "angle": 47.21, "curve": 0.384, "c3": 0.75}, {"time": 0.3333, "angle": -17.29, "curve": 0.247, "c3": 0.631, "c4": 0.53}, {"time": 0.4167, "angle": 13.33} - ] - }, - "body-fur-15": { - "rotate": [ - {"angle": -10.16, "curve": 0.369, "c2": 0.47, "c3": 0.753}, {"time": 0.0833}, {"time": 0.1667, "angle": 47.21, "curve": 0.384, "c3": 0.75}, - {"time": 0.35, "angle": -17.29, "curve": 0.254, "c3": 0.621, "c4": 0.47}, {"time": 0.4167, "angle": 13.33} - ] - }, - "body-fur-07": { - "rotate": [ - {"angle": -0.89, "curve": 0.362, "c2": 0.64, "c3": 0.698}, {"time": 0.0167, "curve": 0.25, "c3": 0.75}, {"time": 0.1, "angle": 47.21, "curve": 0.384, "c3": 0.75}, - {"time": 0.2833, "angle": -17.29, "curve": 0.245, "c3": 0.707, "c4": 0.82}, {"time": 0.4167, "angle": 2.91} - ] - }, - "body-fur-11": { - "rotate": [ - {"angle": -4.91, "curve": 0.382, "c2": 0.57, "c3": 0.735}, {"time": 0.05, "curve": 0.25, "c3": 0.75}, {"time": 0.1333, "angle": 47.21, "curve": 0.384, "c3": 0.75}, - {"time": 0.3167, "angle": -17.29, "curve": 0.243, "c3": 0.649, "c4": 0.6}, {"time": 0.4167, "angle": 4.23} - ] - }, - "body-fur-16": { - "rotate": [ - {"angle": -12.38, "curve": 0.351, "c2": 0.4, "c3": 0.757}, {"time": 0.1, "curve": 0.25, "c3": 0.75}, {"time": 0.1833, "angle": 47.21, "curve": 0.384, "c3": 0.75}, - {"time": 0.3667, "angle": -17.29, "curve": 0.265, "c3": 0.618, "c4": 0.43}, {"time": 0.4167, "angle": 13.84} - ] - }, - "body-fur-09": { - "rotate": [ - {"angle": -9.85, "curve": 0.342, "c2": 0.36, "c3": 0.692, "c4": 0.75}, {"time": 0.05, "angle": -2.67, "curve": 0.377, "c2": 0.61, "c3": 0.72}, - {"time": 0.0833, "curve": 0.25, "c3": 0.75}, {"time": 0.1667, "angle": 47.21, "curve": 0.384, "c3": 0.75}, {"time": 0.35, "angle": -17.29, "curve": 0.254, "c3": 0.621, "c4": 0.47}, - {"time": 0.4167, "angle": 6.86} - ] - }, - "body-fur-10": { - "rotate": [ - {"angle": -2.67, "curve": 0.377, "c2": 0.61, "c3": 0.72}, {"time": 0.0333, "curve": 0.25, "c3": 0.75}, {"time": 0.1167, "angle": 47.21, "curve": 0.384, "c3": 0.75}, - {"time": 0.3, "angle": -17.29, "curve": 0.243, "c3": 0.674, "c4": 0.69}, {"time": 0.4167, "angle": 0.34} - ] - }, - "body-fur-14": { - "rotate": [ - {"angle": -14.85, "curve": 0.31, "c2": 0.26, "c3": 0.69, "c4": 0.74}, {"time": 0.0833, "angle": -2.67, "curve": 0.377, "c2": 0.61, "c3": 0.72}, {"time": 0.1167}, - {"time": 0.2, "angle": 47.21, "curve": 0.384, "c3": 0.75}, {"time": 0.3833, "angle": -17.29, "curve": 0.28, "c3": 0.623, "c4": 0.39}, {"time": 0.4167, "angle": 13.33} - ] - }, - "body-fur-03": { - "rotate": [ - {"angle": -4.91, "curve": 0.382, "c2": 0.57, "c3": 0.735}, {"time": 0.05}, {"time": 0.1333, "angle": 47.21, "curve": 0.384, "c3": 0.75}, - {"time": 0.3167, "angle": -17.29, "curve": 0.243, "c3": 0.649, "c4": 0.6}, {"time": 0.4167, "angle": 5.54} - ] - }, - "body-fur-05": { - "rotate": [ - {"angle": -2.67, "curve": 0.377, "c2": 0.61, "c3": 0.72}, {"time": 0.0333}, {"time": 0.1167, "angle": 47.21, "curve": 0.384, "c3": 0.75}, - {"time": 0.3, "angle": -17.29, "curve": 0.243, "c3": 0.674, "c4": 0.69}, {"time": 0.4167, "angle": 6.86} - ] - }, - "body-fur-01": { - "rotate": [ - {"angle": -7.37, "curve": 0.379, "c2": 0.53, "c3": 0.746}, {"time": 0.0667}, {"time": 0.15, "angle": 47.21, "curve": 0.384, "c3": 0.75}, - {"time": 0.3333, "angle": -17.29, "curve": 0.247, "c3": 0.631, "c4": 0.53}, {"time": 0.4167, "angle": 10.51} - ] - }, - "body-fur-08": { - "rotate": [ - {"angle": -4.91, "curve": 0.382, "c2": 0.57, "c3": 0.735}, {"time": 0.05, "curve": 0.25, "c3": 0.75}, {"time": 0.1333, "angle": 47.21, "curve": 0.384, "c3": 0.75}, - {"time": 0.3167, "angle": -17.29, "curve": 0.243, "c3": 0.649, "c4": 0.6}, {"time": 0.4167, "angle": -0.91} - ] } } }, - "2105733975": { + "3123502684": { "slots": { "eyes": {"attachment": [{"time": 0.0167, "name": "eyes-shut"}, {"time": 0.1833, "name": "eyes-angry"}, {"time": 0.4, "name": "eyes"}]}, "mouth": {"attachment": [{"time": 0.0167, "name": "mouth-bite"}, {"time": 0.4, "name": "mouth"}]} @@ -27380,7 +35882,7 @@ ] }, "leg-front-right-IK": { - "translate": [{"curve": "stepped"}, {"time": 0.0167, "x": 74.76, "y": 322.04}, {"time": 0.1667, "x": 85.96, "y": 349.35, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3167}] + "translate": [{"curve": "stepped"}, {"time": 0.0167, "x": 48.52, "y": 414.3}, {"time": 0.1667, "x": 69.52, "y": 458.5, "curve": 0.306, "c4": 0.8}, {"time": 0.3167}] }, "@pivot-back": { "rotate": [ @@ -27400,117 +35902,22 @@ ] }, "leg-back-left-IK": { + "translate": [{"curve": "stepped"}, {"time": 0.0167, "x": -126.78, "y": 61.47}, {"time": 0.1667, "x": -117.91, "y": 26.67, "curve": 0.306, "c3": 0.695}, {"time": 0.3333}] + }, + "@leg-back-left": { "translate": [ - {"curve": "stepped"}, {"time": 0.0167, "x": 11.67, "y": 0.9, "curve": "stepped"}, {"time": 0.1667, "x": 11.67, "y": 0.9, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333} + {"curve": "stepped"}, {"time": 0.0167, "x": -2.63, "y": 8.92, "curve": "stepped"}, {"time": 0.1667, "x": -2.63, "y": 8.92, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3167} ] }, - "@leg-back-left": {"translate": [{"curve": "stepped"}, {"time": 0.0167, "x": -2.63, "y": 8.92}, {"time": 0.1667, "x": 18.61, "y": -8.3, "curve": 0.464, "c4": 0.7}, {"time": 0.3167}]}, "@pivot-main": {"translate": [{"curve": "stepped"}, {"time": 0.0167, "x": 20, "curve": "stepped"}, {"time": 0.3167, "x": 20, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.4167}]}, "leg-front-left-IK": { - "translate": [{"curve": "stepped"}, {"time": 0.0167, "x": -4.7, "y": 168.09}, {"time": 0.1667, "x": 6.72, "y": 174.87, "curve": 0.306, "c3": 0.695}, {"time": 0.3167}] + "translate": [{"curve": "stepped"}, {"time": 0.0167, "x": -81.6, "y": 219.75}, {"time": 0.1667, "x": -70.97, "y": 228.81, "curve": 0.306, "c4": 0.8}, {"time": 0.3167}] }, "@leg-front-left": {"translate": [{"time": 0.1667, "curve": 0.62, "c4": 0.3}, {"time": 0.3167, "x": -1.1, "y": -14.87, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.4167}]}, - "@leg-front-right": {"translate": [{"time": 0.1667, "curve": 0.62, "c4": 0.3}, {"time": 0.3167, "x": -2.11, "y": -28.46, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.4167}]}, - "body-fur-01": { - "rotate": [ - {"angle": -10.51, "curve": 0.379, "c2": 0.53, "c3": 0.746}, {"time": 0.0667}, {"time": 0.15, "angle": 55.85, "curve": 0.409, "c2": 0.01, "c3": 0.75}, - {"time": 0.3333, "angle": -24.65, "curve": 0.247, "c3": 0.631, "c4": 0.53}, {"time": 0.4167, "angle": 10.51} - ] - }, - "body-fur-02": { - "rotate": [ - {"angle": -17.58, "curve": 0.33, "c2": 0.32, "c3": 0.693, "c4": 0.75}, {"time": 0.0667, "angle": -3.8, "curve": 0.377, "c2": 0.61, "c3": 0.72}, {"time": 0.1}, - {"time": 0.1833, "angle": 55.85, "curve": 0.409, "c2": 0.01, "c3": 0.75}, {"time": 0.3667, "angle": -24.65, "curve": 0.265, "c3": 0.618, "c4": 0.43}, {"time": 0.4167, "angle": 13.84} - ] - }, - "body-fur-03": { - "rotate": [ - {"angle": -6.99, "curve": 0.382, "c2": 0.57, "c3": 0.735}, {"time": 0.05, "curve": 0.25, "c3": 0.75}, {"time": 0.1333, "angle": 55.85, "curve": 0.409, "c2": 0.01, "c3": 0.75}, - {"time": 0.3167, "angle": -24.65, "curve": 0.243, "c3": 0.649, "c4": 0.6}, {"time": 0.4167, "angle": 5.54} - ] - }, - "body-fur-04": { - "rotate": [ - {"angle": -14.05, "curve": 0.342, "c2": 0.36, "c3": 0.692, "c4": 0.75}, {"time": 0.05, "angle": -3.8, "curve": 0.377, "c2": 0.61, "c3": 0.72}, {"time": 0.0833}, - {"time": 0.1667, "angle": 55.85, "curve": 0.409, "c2": 0.01, "c3": 0.75}, {"time": 0.35, "angle": -24.65, "curve": 0.254, "c3": 0.621, "c4": 0.47}, {"time": 0.4167, "angle": 12.53} - ] - }, - "body-fur-05": { - "rotate": [ - {"angle": -3.8, "curve": 0.377, "c2": 0.61, "c3": 0.72}, {"time": 0.0333, "curve": 0.25, "c3": 0.75}, {"time": 0.1167, "angle": 55.85, "curve": 0.409, "c2": 0.01, "c3": 0.75}, - {"time": 0.3, "angle": -24.65, "curve": 0.243, "c3": 0.674, "c4": 0.69}, {"time": 0.4167, "angle": 6.86} - ] - }, - "body-fur-06": { - "rotate": [ - {"angle": -10.42, "curve": 0.347, "c2": 0.38, "c3": 0.688, "c4": 0.74}, {"time": 0.0333, "angle": -3.8, "curve": 0.377, "c2": 0.61, "c3": 0.72}, {"time": 0.0667}, - {"time": 0.15, "angle": 55.85, "curve": 0.409, "c2": 0.01, "c3": 0.75}, {"time": 0.3333, "angle": -24.65, "curve": 0.247, "c3": 0.631, "c4": 0.53}, {"time": 0.4167, "angle": 13.33} - ] - }, - "body-fur-07": { - "rotate": [ - {"angle": -1.27, "curve": 0.362, "c2": 0.64, "c3": 0.698}, {"time": 0.0167, "curve": 0.25, "c3": 0.75}, {"time": 0.1, "angle": 55.85, "curve": 0.409, "c2": 0.01, "c3": 0.75}, - {"time": 0.2833, "angle": -24.65, "curve": 0.245, "c3": 0.707, "c4": 0.82}, {"time": 0.4167, "angle": 2.91} - ] - }, - "body-fur-08": { - "rotate": [ - {"angle": -3.8, "curve": 0.377, "c2": 0.61, "c3": 0.72}, {"time": 0.0333}, {"time": 0.1167, "angle": 55.85, "curve": 0.409, "c2": 0.01, "c3": 0.75}, - {"time": 0.3, "angle": -24.65, "curve": 0.243, "c3": 0.674, "c4": 0.69}, {"time": 0.4167, "angle": -0.91} - ] - }, - "body-fur-09": { - "rotate": [ - {"angle": -10.42, "curve": 0.347, "c2": 0.38, "c3": 0.688, "c4": 0.74}, {"time": 0.0333, "angle": -3.8, "curve": 0.377, "c2": 0.61, "c3": 0.72}, - {"time": 0.0667, "curve": 0.25, "c3": 0.75}, {"time": 0.15, "angle": 55.85, "curve": 0.409, "c2": 0.01, "c3": 0.75}, - {"time": 0.3333, "angle": -24.65, "curve": 0.247, "c3": 0.631, "c4": 0.53}, {"time": 0.4167, "angle": 6.86} - ] - }, - "body-fur-10": { - "rotate": [ - {"angle": -3.8, "curve": 0.377, "c2": 0.61, "c3": 0.72}, {"time": 0.0333, "curve": 0.25, "c3": 0.75}, {"time": 0.1167, "angle": 55.85, "curve": 0.409, "c2": 0.01, "c3": 0.75}, - {"time": 0.3, "angle": -24.65, "curve": 0.243, "c3": 0.674, "c4": 0.69}, {"time": 0.4167, "angle": 0.34} - ] - }, - "body-fur-11": { - "rotate": [ - {"angle": -6.99, "curve": 0.382, "c2": 0.57, "c3": 0.735}, {"time": 0.05, "curve": 0.25, "c3": 0.75}, {"time": 0.1333, "angle": 55.85, "curve": 0.409, "c2": 0.01, "c3": 0.75}, - {"time": 0.3167, "angle": -24.65, "curve": 0.243, "c3": 0.649, "c4": 0.6}, {"time": 0.4167, "angle": 4.23} - ] - }, - "body-fur-12": { - "rotate": [ - {"angle": -10.51, "curve": 0.379, "c2": 0.53, "c3": 0.746}, {"time": 0.0667, "curve": 0.25, "c3": 0.75}, {"time": 0.15, "angle": 55.85, "curve": 0.409, "c2": 0.01, "c3": 0.75}, - {"time": 0.3333, "angle": -24.65, "curve": 0.247, "c3": 0.631, "c4": 0.53}, {"time": 0.4167, "angle": 8.12} - ] - }, - "body-fur-13": { - "rotate": [ - {"angle": -14.13, "curve": 0.369, "c2": 0.47, "c3": 0.753}, {"time": 0.0833}, {"time": 0.1667, "angle": 55.85, "curve": 0.409, "c2": 0.01, "c3": 0.75}, - {"time": 0.35, "angle": -24.65, "curve": 0.254, "c3": 0.621, "c4": 0.47}, {"time": 0.4167, "angle": 11.59} - ] - }, - "body-fur-14": { - "rotate": [ - {"angle": -20.83, "curve": 0.31, "c2": 0.26, "c3": 0.69, "c4": 0.74}, {"time": 0.0833, "angle": -3.8, "curve": 0.377, "c2": 0.61, "c3": 0.72}, {"time": 0.1167}, - {"time": 0.2, "angle": 55.85, "curve": 0.409, "c2": 0.01, "c3": 0.75}, {"time": 0.3833, "angle": -24.65, "curve": 0.28, "c3": 0.623, "c4": 0.39}, {"time": 0.4167, "angle": 13.33} - ] - }, - "body-fur-15": { - "rotate": [ - {"angle": -14.13, "curve": 0.369, "c2": 0.47, "c3": 0.753}, {"time": 0.0833}, {"time": 0.1667, "angle": 55.85, "curve": 0.409, "c2": 0.01, "c3": 0.75}, - {"time": 0.35, "angle": -24.65, "curve": 0.254, "c3": 0.621, "c4": 0.47}, {"time": 0.4167, "angle": 13.33} - ] - }, - "body-fur-16": { - "rotate": [ - {"angle": -17.65, "curve": 0.351, "c2": 0.4, "c3": 0.757}, {"time": 0.1, "curve": 0.25, "c3": 0.75}, {"time": 0.1833, "angle": 55.85, "curve": 0.409, "c2": 0.01, "c3": 0.75}, - {"time": 0.3667, "angle": -24.65, "curve": 0.265, "c3": 0.618, "c4": 0.43}, {"time": 0.4167, "angle": 13.84} - ] - } + "@leg-front-right": {"translate": [{"time": 0.1667, "curve": 0.62, "c4": 0.3}, {"time": 0.3167, "x": -2.11, "y": -28.46, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.4167}]} } }, - "42307048": { + "439534949": { "slots": { "eyes": {"attachment": [{"time": 0.0167, "name": "eyes-shut"}, {"time": 0.5833, "name": "eyes-angry"}, {"time": 0.8333, "name": "eyes-shut"}, {"time": 0.9167, "name": "eyes"}]}, "mouth": {"attachment": [{"time": 0.0167, "name": "mouth-bite"}, {"time": 0.6667, "name": "mouth-open"}, {"time": 0.8333, "name": "mouth"}]} @@ -27540,10 +35947,10 @@ "@leg-back-left": {"translate": [{"curve": "stepped"}, {"time": 0.0167, "x": 6.4, "y": 0.19}, {"time": 0.1667}]}, "leg-front-right-IK": { "translate": [ - {"curve": "stepped"}, {"time": 0.0167, "x": 69.67, "y": 327.04}, {"time": 0.05, "x": 451.04, "y": 582.91}, {"time": 0.0833, "x": 787.85, "y": 470.29}, - {"time": 0.1, "x": 945.09, "y": 394.99, "curve": 0.313, "c3": 0.699}, {"time": 0.25, "x": 1086.85, "y": 338.86, "curve": 0.313, "c3": 0.699}, - {"time": 0.4167, "x": 921.41, "y": 410.91, "curve": 0.313, "c3": 0.699}, {"time": 0.5833, "x": 1028.37, "y": 385.44}, {"time": 0.6667, "x": 914.82, "y": 422.49}, - {"time": 0.7, "x": 413.58, "y": 458.44}, {"time": 0.75, "x": 45.46, "y": 287.09}, {"time": 0.7833, "x": -34.18, "y": 117.59}, {"time": 0.8333} + {"curve": "stepped"}, {"time": 0.0167, "x": 85.72, "y": 376.6}, {"time": 0.05, "x": 470.49, "y": 757.6}, {"time": 0.1, "x": 1081.69, "y": 580.29, "curve": 0.313, "c3": 0.699}, + {"time": 0.25, "x": 1237.6, "y": 518.07, "curve": 0.313, "c3": 0.699}, {"time": 0.4167, "x": 1055.02, "y": 601.3, "curve": 0.313, "c3": 0.699}, + {"time": 0.5833, "x": 1168.88, "y": 568.7}, {"time": 0.6667, "x": 1116.08, "y": 602.91}, {"time": 0.7, "x": 479.71, "y": 713.72}, {"time": 0.75, "x": 20.63, "y": 378.32}, + {"time": 0.7833, "x": 1.29, "y": 116.66}, {"time": 0.8333} ] }, "tail": { @@ -27555,17 +35962,18 @@ }, "leg-back-left-IK": { "translate": [ - {"curve": "stepped"}, {"time": 0.0167, "x": -3.7, "y": 19.91}, {"time": 0.05, "x": -86.78, "y": 121.52}, {"time": 0.1, "x": 129.15, "y": 364.61, "curve": 0.313, "c3": 0.699}, - {"time": 0.25, "x": 262.18, "y": 406.7, "curve": 0.313, "c3": 0.699}, {"time": 0.4167, "x": 109.91, "y": 347.96, "curve": 0.313, "c3": 0.699}, {"time": 0.5833, "x": 216.28, "y": 393.95}, - {"time": 0.6667, "x": 118.81, "y": 360.02}, {"time": 0.7, "x": -121.03, "y": 41.31}, {"time": 0.75, "x": -95.31, "y": -47.01}, {"time": 0.7833, "x": 22.31, "y": -53.8}, {"time": 0.8333} + {"curve": "stepped"}, {"time": 0.0167, "x": -93.26, "y": 48.74}, {"time": 0.05, "x": -202.5, "y": 254.02}, {"time": 0.1, "x": 91.88, "y": 560.34, "curve": 0.313, "c3": 0.699}, + {"time": 0.25, "x": 236.84, "y": 611.48, "curve": 0.313, "c3": 0.699}, {"time": 0.4167, "x": 87.84, "y": 555.49, "curve": 0.313, "c3": 0.699}, {"time": 0.5833, "x": 186.18, "y": 586.78}, + {"time": 0.6667, "x": 77.94, "y": 549.13}, {"time": 0.7, "x": -231.86, "y": 221.08}, {"time": 0.75, "x": -168.84, "y": -46.99}, {"time": 0.7833, "x": -16.48, "y": -52.12}, + {"time": 0.8333} ] }, "leg-front-left-IK": { "translate": [ - {"curve": "stepped"}, {"time": 0.0167, "x": -5.8, "y": 177.99}, {"time": 0.05, "x": 106.35, "y": 306.87}, {"time": 0.0833, "x": 355.94, "y": 424.69}, - {"time": 0.1, "x": 515.46, "y": 408.14, "curve": 0.313, "c3": 0.699}, {"time": 0.25, "x": 536.35, "y": 423.87, "curve": 0.313, "c3": 0.699}, - {"time": 0.4167, "x": 492.39, "y": 405.73, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.6667, "x": 482.36, "y": 419.06}, {"time": 0.7, "x": 97.67, "y": 283.45}, - {"time": 0.75, "x": -12.16, "y": 45.82}, {"time": 0.7833, "x": -31.56, "y": 29.02}, {"time": 0.8333} + {"curve": "stepped"}, {"time": 0.0167, "x": -74.92, "y": 201.25}, {"time": 0.05, "x": 21.38, "y": 446.05}, {"time": 0.1, "x": 511.28, "y": 580.46, "curve": 0.313, "c3": 0.699}, + {"time": 0.25, "x": 517.43, "y": 602.17, "curve": 0.313, "c3": 0.699}, {"time": 0.4167, "x": 470.08, "y": 581.27, "curve": 0.313, "c3": 0.699}, + {"time": 0.5833, "x": 451.59, "y": 595.4, "curve": 0.375, "c2": 0.58, "c3": 0.742}, {"time": 0.6667, "x": 445.33, "y": 594.73}, {"time": 0.7, "x": 8.58, "y": 408.19}, + {"time": 0.75, "x": -93.16, "y": 70.64}, {"time": 0.7833, "x": -81.13, "y": 23.88}, {"time": 0.8333} ] }, "@pivot-center": { @@ -27583,131 +35991,14 @@ "translate": [{"time": 0.6667, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.75, "y": 150, "curve": 0.315, "c4": 0.8}, {"time": 0.8333}], "scale": [ {"time": 0.1, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "y": 0.93, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "curve": "stepped"}, - {"time": 0.5667, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.65, "y": 0.7, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.7333, "curve": "stepped"}, + {"time": 0.5667, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.65, "y": 0.7, "curve": 0.464, "c4": 0.7}, {"time": 0.7333, "curve": "stepped"}, {"time": 0.8333, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.9167, "y": 0.98, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1} ] }, - "@leg-front-right": {"translate": [{"time": 0.75, "curve": 0.306, "c4": 0.8}, {"time": 0.8333, "x": -2.23, "y": -25.27, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1}]}, - "body-fur-16": { - "rotate": [ - {"angle": -11.41, "curve": 0.296, "c2": 0.5, "c3": 0.629}, {"time": 0.1, "angle": 10.43, "curve": 0.25, "c3": 0.75}, {"time": 0.2, "angle": 34.88, "curve": 0.25, "c3": 0.579}, - {"time": 0.3167, "angle": -33.9, "curve": 0.25, "c3": 0.75}, {"time": 0.4833, "angle": 4.81, "curve": 0.25, "c3": 0.75}, {"time": 0.6667, "angle": -37.99, "curve": 0.25, "c3": 0.75}, - {"time": 0.7667, "angle": 8.02, "curve": 0.25, "c3": 0.75}, {"time": 0.9, "angle": -42.9, "curve": 0.286, "c3": 0.619, "c4": 0.5}, {"time": 1, "angle": 13.84} - ] - }, - "body-fur-15": { - "rotate": [ - {"angle": -5.4, "curve": 0.303, "c2": 0.54, "c3": 0.636}, {"time": 0.0833, "angle": 10.43, "curve": 0.25, "c3": 0.75}, {"time": 0.1833, "angle": 34.88, "curve": 0.25, "c3": 0.579}, - {"time": 0.3, "angle": -33.9, "curve": 0.25, "c3": 0.75}, {"time": 0.4667, "angle": 4.81, "curve": 0.25, "c3": 0.75}, {"time": 0.65, "angle": -37.99, "curve": 0.25, "c3": 0.75}, - {"time": 0.75, "angle": 8.02, "curve": 0.25, "c3": 0.75}, {"time": 0.8833, "angle": -42.9, "curve": 0.279, "c3": 0.612, "c4": 0.55}, {"time": 1, "angle": 13.33} - ] - }, - "body-fur-14": { - "rotate": [ - {"angle": -18.87, "curve": 0.301, "c2": 0.37, "c3": 0.634, "c4": 0.79}, {"time": 0.0833, "angle": 7.42, "curve": 0.322, "c2": 0.62, "c3": 0.655}, {"time": 0.1167, "angle": 10.43}, - {"time": 0.2167, "angle": 34.88, "curve": 0.25, "c3": 0.579}, {"time": 0.3333, "angle": -33.9, "curve": 0.25, "c3": 0.75}, {"time": 0.5, "angle": 4.81, "curve": 0.25, "c3": 0.75}, - {"time": 0.6833, "angle": -37.99, "curve": 0.25, "c3": 0.75}, {"time": 0.7833, "angle": 8.02, "curve": 0.25, "c3": 0.75}, - {"time": 0.9167, "angle": -42.9, "curve": 0.293, "c3": 0.626, "c4": 0.46}, {"time": 1, "angle": 13.33} - ] - }, - "body-fur-13": { - "rotate": [ - {"angle": -5.4, "curve": 0.303, "c2": 0.54, "c3": 0.636}, {"time": 0.0833, "angle": 10.43}, {"time": 0.1833, "angle": 34.88, "curve": 0.25, "c3": 0.579}, - {"time": 0.3, "angle": -33.9, "curve": 0.25, "c3": 0.75}, {"time": 0.4667, "angle": 4.81, "curve": 0.25, "c3": 0.75}, {"time": 0.65, "angle": -37.99, "curve": 0.25, "c3": 0.75}, - {"time": 0.75, "angle": 8.02, "curve": 0.25, "c3": 0.75}, {"time": 0.8833, "angle": -42.9, "curve": 0.279, "c3": 0.612, "c4": 0.55}, {"time": 1, "angle": 11.59} - ] - }, - "body-fur-12": { - "rotate": [ - {"angle": -0.06, "curve": 0.309, "c2": 0.57, "c3": 0.643}, {"time": 0.0667, "angle": 10.43, "curve": 0.25, "c3": 0.75}, {"time": 0.1667, "angle": 34.88, "curve": 0.25, "c3": 0.579}, - {"time": 0.2833, "angle": -33.9, "curve": 0.25, "c3": 0.75}, {"time": 0.45, "angle": 4.81, "curve": 0.25, "c3": 0.75}, {"time": 0.6333, "angle": -37.99, "curve": 0.25, "c3": 0.75}, - {"time": 0.7333, "angle": 8.02, "curve": 0.25, "c3": 0.75}, {"time": 0.8667, "angle": -42.9, "curve": 0.273, "c3": 0.606, "c4": 0.6}, {"time": 1, "angle": 8.12} - ] - }, - "body-fur-11": { - "rotate": [ - {"angle": 4.36, "curve": 0.316, "c2": 0.6, "c3": 0.649}, {"time": 0.05, "angle": 10.43, "curve": 0.25, "c3": 0.75}, {"time": 0.15, "angle": 34.88, "curve": 0.25, "c3": 0.579}, - {"time": 0.2667, "angle": -33.9, "curve": 0.25, "c3": 0.75}, {"time": 0.4333, "angle": 4.81, "curve": 0.25, "c3": 0.75}, {"time": 0.6167, "angle": -37.99, "curve": 0.25, "c3": 0.75}, - {"time": 0.7167, "angle": 8.02, "curve": 0.25, "c3": 0.75}, {"time": 0.85, "angle": -42.9, "curve": 0.267, "c3": 0.6, "c4": 0.67}, {"time": 1, "angle": 4.23} - ] - }, - "body-fur-10": { - "rotate": [ - {"angle": 7.42, "curve": 0.322, "c2": 0.62, "c3": 0.655}, {"time": 0.0333, "angle": 10.43, "curve": 0.25, "c3": 0.75}, {"time": 0.1333, "angle": 34.88, "curve": 0.25, "c3": 0.579}, - {"time": 0.25, "angle": -33.9, "curve": 0.25, "c3": 0.75}, {"time": 0.4167, "angle": 4.81, "curve": 0.25, "c3": 0.75}, {"time": 0.6, "angle": -37.99, "curve": 0.25, "c3": 0.75}, - {"time": 0.7, "angle": 8.02, "curve": 0.25, "c3": 0.75}, {"time": 0.8333, "angle": -42.9, "curve": 0.261, "c3": 0.594, "c4": 0.75}, {"time": 1, "angle": 0.34} - ] - }, - "body-fur-09": { - "rotate": [ - {"angle": -6.38, "curve": 0.314, "c2": 0.4, "c3": 0.648, "c4": 0.77}, {"time": 0.05, "angle": 7.42, "curve": 0.322, "c2": 0.62, "c3": 0.655}, {"time": 0.0833, "angle": 10.43}, - {"time": 0.1833, "angle": 34.88, "curve": 0.25, "c3": 0.579}, {"time": 0.3, "angle": -33.9, "curve": 0.25, "c3": 0.75}, {"time": 0.4667, "angle": 4.81, "curve": 0.25, "c3": 0.75}, - {"time": 0.65, "angle": -37.99, "curve": 0.25, "c3": 0.75}, {"time": 0.75, "angle": 8.02, "curve": 0.25, "c3": 0.75}, - {"time": 0.8833, "angle": -42.9, "curve": 0.279, "c3": 0.612, "c4": 0.55}, {"time": 1, "angle": 6.86} - ] - }, - "body-fur-08": { - "rotate": [ - {"angle": 4.36, "curve": 0.316, "c2": 0.6, "c3": 0.649}, {"time": 0.05, "angle": 10.43}, {"time": 0.15, "angle": 34.88, "curve": 0.25, "c3": 0.579}, - {"time": 0.2667, "angle": -33.9, "curve": 0.25, "c3": 0.75}, {"time": 0.4333, "angle": 4.81, "curve": 0.25, "c3": 0.75}, {"time": 0.6167, "angle": -37.99, "curve": 0.25, "c3": 0.75}, - {"time": 0.7167, "angle": 8.02, "curve": 0.25, "c3": 0.75}, {"time": 0.85, "angle": -42.9, "curve": 0.267, "c3": 0.6, "c4": 0.67}, {"time": 1, "angle": -0.91} - ] - }, - "body-fur-07": { - "rotate": [ - {"angle": 9.41, "curve": 0.328, "c2": 0.65, "c3": 0.661}, {"time": 0.0167, "angle": 10.43, "curve": 0.25, "c3": 0.75}, {"time": 0.1167, "angle": 34.88, "curve": 0.25, "c3": 0.579}, - {"time": 0.2333, "angle": -33.9, "curve": 0.25, "c3": 0.75}, {"time": 0.4, "angle": 4.81, "curve": 0.25, "c3": 0.75}, {"time": 0.5833, "angle": -37.99, "curve": 0.25, "c3": 0.75}, - {"time": 0.6833, "angle": 8.02, "curve": 0.25, "c3": 0.75}, {"time": 0.8167, "angle": -42.9, "curve": 0.255, "c3": 0.588, "c4": 0.86}, {"time": 1, "angle": 2.91} - ] - }, - "body-fur-06": { - "rotate": [ - {"angle": -0.95, "curve": 0.321, "c2": 0.4, "c3": 0.654, "c4": 0.75}, {"time": 0.0333, "angle": 7.42, "curve": 0.322, "c2": 0.62, "c3": 0.655}, {"time": 0.0667, "angle": 10.43}, - {"time": 0.1667, "angle": 34.88, "curve": 0.25, "c3": 0.579}, {"time": 0.2833, "angle": -33.9, "curve": 0.25, "c3": 0.75}, {"time": 0.45, "angle": 4.81, "curve": 0.25, "c3": 0.75}, - {"time": 0.6333, "angle": -37.99, "curve": 0.25, "c3": 0.75}, {"time": 0.7333, "angle": 8.02, "curve": 0.25, "c3": 0.75}, - {"time": 0.8667, "angle": -42.9, "curve": 0.273, "c3": 0.606, "c4": 0.6}, {"time": 1, "angle": 13.33} - ] - }, - "body-fur-05": { - "rotate": [ - {"angle": 7.42, "curve": 0.322, "c2": 0.62, "c3": 0.655}, {"time": 0.0333, "angle": 10.43}, {"time": 0.1333, "angle": 34.88, "curve": 0.25, "c3": 0.579}, - {"time": 0.25, "angle": -33.9, "curve": 0.25, "c3": 0.75}, {"time": 0.4167, "angle": 4.81, "curve": 0.25, "c3": 0.75}, {"time": 0.6, "angle": -37.99, "curve": 0.25, "c3": 0.75}, - {"time": 0.7, "angle": 8.02, "curve": 0.25, "c3": 0.75}, {"time": 0.8333, "angle": -42.9, "curve": 0.261, "c3": 0.594, "c4": 0.75}, {"time": 1, "angle": 6.86} - ] - }, - "body-fur-04": { - "rotate": [ - {"angle": -6.38, "curve": 0.314, "c2": 0.4, "c3": 0.648, "c4": 0.77}, {"time": 0.05, "angle": 7.42, "curve": 0.322, "c2": 0.62, "c3": 0.655}, {"time": 0.0833, "angle": 10.43}, - {"time": 0.1833, "angle": 34.88, "curve": 0.25, "c3": 0.579}, {"time": 0.3, "angle": -33.9, "curve": 0.25, "c3": 0.75}, {"time": 0.4667, "angle": 4.81, "curve": 0.25, "c3": 0.75}, - {"time": 0.65, "angle": -37.99, "curve": 0.25, "c3": 0.75}, {"time": 0.75, "angle": 8.02, "curve": 0.25, "c3": 0.75}, - {"time": 0.8833, "angle": -42.9, "curve": 0.279, "c3": 0.612, "c4": 0.55}, {"time": 1, "angle": 12.53} - ] - }, - "body-fur-03": { - "rotate": [ - {"angle": 4.36, "curve": 0.316, "c2": 0.6, "c3": 0.649}, {"time": 0.05, "angle": 10.43}, {"time": 0.15, "angle": 34.88, "curve": 0.25, "c3": 0.579}, - {"time": 0.2667, "angle": -33.9, "curve": 0.25, "c3": 0.75}, {"time": 0.4333, "angle": 4.81, "curve": 0.25, "c3": 0.75}, {"time": 0.6167, "angle": -37.99, "curve": 0.25, "c3": 0.75}, - {"time": 0.7167, "angle": 8.02, "curve": 0.25, "c3": 0.75}, {"time": 0.85, "angle": -42.9, "curve": 0.267, "c3": 0.6, "c4": 0.67}, {"time": 1, "angle": 5.54} - ] - }, - "body-fur-02": { - "rotate": [ - {"angle": -12.43, "curve": 0.308, "c2": 0.39, "c3": 0.641, "c4": 0.78}, {"time": 0.0667, "angle": 7.42, "curve": 0.322, "c2": 0.62, "c3": 0.655}, - {"time": 0.1, "angle": 10.43, "curve": 0.25, "c3": 0.75}, {"time": 0.2, "angle": 34.88, "curve": 0.25, "c3": 0.579}, {"time": 0.3167, "angle": -33.9, "curve": 0.25, "c3": 0.75}, - {"time": 0.4833, "angle": 4.81, "curve": 0.25, "c3": 0.75}, {"time": 0.6667, "angle": -37.99, "curve": 0.25, "c3": 0.75}, {"time": 0.7667, "angle": 8.02, "curve": 0.25, "c3": 0.75}, - {"time": 0.9, "angle": -42.9, "curve": 0.286, "c3": 0.619, "c4": 0.5}, {"time": 1, "angle": 13.84} - ] - }, - "body-fur-01": { - "rotate": [ - {"angle": -0.06, "curve": 0.309, "c2": 0.57, "c3": 0.643}, {"time": 0.0667, "angle": 10.43}, {"time": 0.1667, "angle": 34.88, "curve": 0.25, "c3": 0.579}, - {"time": 0.2833, "angle": -33.9, "curve": 0.25, "c3": 0.75}, {"time": 0.45, "angle": 4.81, "curve": 0.25, "c3": 0.75}, {"time": 0.6333, "angle": -37.99, "curve": 0.25, "c3": 0.75}, - {"time": 0.7333, "angle": 8.02, "curve": 0.25, "c3": 0.75}, {"time": 0.8667, "angle": -42.9, "curve": 0.273, "c3": 0.606, "c4": 0.6}, {"time": 1, "angle": 10.51} - ] - } + "@leg-front-right": {"translate": [{"time": 0.75}, {"time": 0.8333, "x": -2.35, "y": -26.66, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1}]} } }, - "912481638": { + "3352800463": { "slots": { "eyes": {"attachment": [{"time": 0.0167, "name": "eyes-shut"}, {"time": 0.3, "name": "eyes-angry"}, {"time": 0.4833, "name": "eyes"}]}, "mouth": {"attachment": [{"time": 0.0167, "name": "mouth-bite"}, {"time": 0.4833, "name": "mouth"}]} @@ -27715,172 +36006,75 @@ "bones": { "@pivot-back": { "rotate": [ - {"curve": "stepped"}, {"time": 0.0167, "angle": 8}, {"time": 0.2333, "angle": 10, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "angle": -5, "curve": 0.315, "c4": 0.8}, - {"time": 0.4833, "angle": 5, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5833} - ], - "translate": [ - {"curve": "stepped"}, {"time": 0.0167, "x": 29.16, "y": 6.28}, {"time": 0.2667, "x": 18.48, "y": 18.85, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.3833, "x": -1.17, "y": 18.85, "curve": 0.315, "c4": 0.8}, {"time": 0.4833} - ] - }, - "@shadow": { - "translate": [ - {"curve": "stepped"}, {"time": 0.0167, "x": 33.22}, {"time": 0.2667, "x": 61.08, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3833, "x": 9.02, "curve": 0.315, "c4": 0.8}, - {"time": 0.4833} - ], - "scale": [ - {"curve": "stepped"}, {"time": 0.0167, "x": 1.1, "y": 1.1, "curve": "stepped"}, {"time": 0.2667, "x": 1.1, "y": 1.1, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.3833, "x": 0.98, "y": 0.98, "curve": 0.315, "c4": 0.8}, {"time": 0.4833, "x": 1.1, "y": 1.1, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5833} - ] - }, - "@pivot-main": { - "translate": [ - {"curve": "stepped"}, {"time": 0.0167, "x": 33.18}, {"time": 0.2667, "x": 61.52, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3833, "x": 20.27, "y": 27.91, "curve": 0.315, "c4": 0.8}, - {"time": 0.4833} - ] - }, - "tail": { - "rotate": [ - {"curve": "stepped"}, {"time": 0.0167, "angle": -18.65}, {"time": 0.2333, "angle": -21.65, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.3333, "angle": -13.3, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.45, "angle": 12.04, "curve": 0.154, "c4": 0.9}, - {"time": 0.5167, "angle": -9.14, "curve": 0.161, "c3": 0.854}, {"time": 0.5833} - ] - }, - "leg-front-right-IK": { - "translate": [ - {"time": 0.2333, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "x": 22.26, "y": 54.13}, {"time": 0.3833, "x": 28.04, "y": 49.32, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.45} - ] - }, - "@leg-front-left": { - "translate": [ - {"curve": "stepped"}, {"time": 0.0167, "x": -0.45, "y": -3.93}, {"time": 0.2333, "x": -0.82, "y": -2.61}, {"time": 0.3333, "x": -5.6, "y": -0.89, "curve": 0.617, "c4": 0.6}, - {"time": 0.45, "x": -1.09, "y": -14.69, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5833} - ] - }, - "leg-back-left-IK": { - "translate": [ - {"curve": "stepped"}, {"time": 0.0167, "x": 50.74, "y": 0.9, "curve": "stepped"}, {"time": 0.2, "x": 50.74, "y": 0.9, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.25, "x": 12.5, "y": 6.45, "curve": 0, "c2": 0.8, "c3": 0.15}, {"time": 0.3667, "x": 5.47, "y": 26.12, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.4833} - ] - }, - "@leg-front-right": { - "translate": [ - {"time": 0.0167}, {"time": 0.3333, "x": -7.53, "y": 2.3, "curve": 0, "c2": 0.1, "c3": 0.853}, {"time": 0.45, "x": 0.15, "y": -4.26, "curve": 0.159, "c3": 0.853}, - {"time": 0.4833, "x": -2.34, "y": -28.14, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5833} - ] - }, - "@leg-back-left": { - "translate": [ - {"curve": "stepped"}, {"time": 0.0167, "x": 18.74, "y": 14.65, "curve": "stepped"}, {"time": 0.1667, "x": 18.74, "y": 14.65, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.4833} - ] - }, - "leg-front-left-IK": { - "translate": [ - {"curve": "stepped"}, {"time": 0.0167, "x": 38.52}, {"time": 0.2333, "x": 38.87, "curve": 0, "c2": 0.3, "c3": 0.54}, {"time": 0.3333, "x": 26.12, "y": 38.71}, - {"time": 0.3833, "x": 12.33, "y": 29.93, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.45} - ] - }, - "body-fur-16": { - "rotate": [ - {"angle": -12.13, "curve": 0.381, "c2": 0.55, "c3": 0.742}, {"time": 0.1, "curve": 0.25, "c3": 0.75}, {"time": 0.2, "angle": 37.82, "curve": 0.325, "c3": 0.75}, - {"time": 0.4333, "angle": -32.98, "curve": 0.245, "c3": 0.637, "c4": 0.56}, {"time": 0.5833, "angle": 13.84} - ] - }, - "body-fur-15": { - "rotate": [ - {"angle": -9.36, "curve": 0.382, "c2": 0.57, "c3": 0.735}, {"time": 0.0833, "curve": 0.25, "c3": 0.75}, {"time": 0.1833, "angle": 37.82, "curve": 0.325, "c3": 0.75}, - {"time": 0.4167, "angle": -32.98, "curve": 0.243, "c3": 0.649, "c4": 0.6}, {"time": 0.5833, "angle": 13.33} - ] - }, - "body-fur-14": { - "rotate": [ - {"angle": -14.87, "curve": 0.356, "c2": 0.41, "c3": 0.707, "c4": 0.81}, {"time": 0.0833, "angle": -2.29, "curve": 0.366, "c2": 0.63, "c3": 0.703}, - {"time": 0.1167, "curve": 0.25, "c3": 0.75}, {"time": 0.2167, "angle": 37.82, "curve": 0.325, "c3": 0.75}, {"time": 0.45, "angle": -32.98, "curve": 0.248, "c3": 0.628, "c4": 0.52}, - {"time": 0.5833, "angle": 13.33} - ] - }, - "body-fur-13": { - "rotate": [ - {"angle": -9.36, "curve": 0.382, "c2": 0.57, "c3": 0.735}, {"time": 0.0833, "curve": 0.25, "c3": 0.75}, {"time": 0.1833, "angle": 37.82, "curve": 0.325, "c3": 0.75}, - {"time": 0.4167, "angle": -32.98, "curve": 0.243, "c3": 0.649, "c4": 0.6}, {"time": 0.5833, "angle": 11.59} - ] - }, - "body-fur-12": { - "rotate": [ - {"angle": -6.68, "curve": 0.38, "c2": 0.59, "c3": 0.727}, {"time": 0.0667, "curve": 0.25, "c3": 0.75}, {"time": 0.1667, "angle": 37.82, "curve": 0.325, "c3": 0.75}, - {"time": 0.4, "angle": -32.98, "curve": 0.242, "c3": 0.663, "c4": 0.65}, {"time": 0.5833, "angle": 8.12} - ] - }, - "body-fur-11": { - "rotate": [ - {"angle": -4.29, "curve": 0.375, "c2": 0.62, "c3": 0.716}, {"time": 0.05, "curve": 0.25, "c3": 0.75}, {"time": 0.15, "angle": 37.82, "curve": 0.325, "c3": 0.75}, - {"time": 0.3833, "angle": -32.98, "curve": 0.243, "c3": 0.68, "c4": 0.71}, {"time": 0.5833, "angle": 4.23} - ] - }, - "body-fur-10": { - "rotate": [ - {"angle": -2.29, "curve": 0.366, "c2": 0.63, "c3": 0.703}, {"time": 0.0333, "curve": 0.25, "c3": 0.75}, {"time": 0.1333, "angle": 37.82, "curve": 0.325, "c3": 0.75}, - {"time": 0.3667, "angle": -32.98, "curve": 0.244, "c3": 0.7, "c4": 0.79}, {"time": 0.5833, "angle": 0.34} + {"curve": "stepped"}, {"time": 0.0167, "angle": 8}, {"time": 0.2333, "angle": 10, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "angle": -5, "curve": 0.315, "c4": 0.8}, + {"time": 0.4833, "angle": 5, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5833} + ], + "translate": [ + {"curve": "stepped"}, {"time": 0.0167, "x": 29.16, "y": 6.28}, {"time": 0.2667, "x": 18.48, "y": 18.85, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.3833, "x": -1.17, "y": 18.85, "curve": 0.315, "c4": 0.8}, {"time": 0.4833} ] }, - "body-fur-09": { - "rotate": [ - {"angle": -9.21, "curve": 0.356, "c2": 0.42, "c3": 0.696, "c4": 0.78}, {"time": 0.05, "angle": -2.29, "curve": 0.366, "c2": 0.63, "c3": 0.703}, {"time": 0.0833}, - {"time": 0.1833, "angle": 37.82, "curve": 0.325, "c3": 0.75}, {"time": 0.4167, "angle": -32.98, "curve": 0.243, "c3": 0.649, "c4": 0.6}, {"time": 0.5833, "angle": 6.86} + "leg-front-right-IK": { + "translate": [ + {"time": 0.0167}, {"time": 0.2333, "x": -21.51, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "x": 6.83, "y": 84.78}, + {"time": 0.3833, "x": -2.72, "y": 58.18, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.45} ] }, - "body-fur-08": { - "rotate": [ - {"angle": -4.29, "curve": 0.375, "c2": 0.62, "c3": 0.716}, {"time": 0.05}, {"time": 0.15, "angle": 37.82, "curve": 0.325, "c3": 0.75}, - {"time": 0.3833, "angle": -32.98, "curve": 0.243, "c3": 0.68, "c4": 0.71}, {"time": 0.5833, "angle": -0.91} + "@shadow": { + "translate": [ + {"curve": "stepped"}, {"time": 0.0167, "x": 33.22}, {"time": 0.2667, "x": 61.08, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3833, "x": 9.02, "curve": 0.315, "c4": 0.8}, + {"time": 0.4833} + ], + "scale": [ + {"curve": "stepped"}, {"time": 0.0167, "x": 1.1, "y": 1.1, "curve": "stepped"}, {"time": 0.2667, "x": 1.1, "y": 1.1, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.3833, "x": 0.98, "y": 0.98, "curve": 0.315, "c4": 0.8}, {"time": 0.4833, "x": 1.1, "y": 1.1, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5833} ] }, - "body-fur-07": { - "rotate": [ - {"angle": -0.75, "curve": 0.352, "c2": 0.65, "c3": 0.687}, {"time": 0.0167, "curve": 0.25, "c3": 0.75}, {"time": 0.1167, "angle": 37.82, "curve": 0.325, "c3": 0.75}, - {"time": 0.35, "angle": -32.98, "curve": 0.246, "c3": 0.723, "c4": 0.88}, {"time": 0.5833, "angle": 2.91} + "@leg-front-left": { + "translate": [ + {"curve": "stepped"}, {"time": 0.0167, "x": 0.77, "y": 3.87}, {"time": 0.3667, "x": 1.05, "y": 9.15, "curve": 0.617, "c4": 0.6}, + {"time": 0.4833, "x": -1.09, "y": -14.69, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5833} ] }, - "body-fur-06": { - "rotate": [ - {"angle": -6.62, "curve": 0.352, "c2": 0.41, "c3": 0.688, "c4": 0.76}, {"time": 0.0333, "angle": -2.29, "curve": 0.366, "c2": 0.63, "c3": 0.703}, {"time": 0.0667}, - {"time": 0.1667, "angle": 37.82, "curve": 0.325, "c3": 0.75}, {"time": 0.4, "angle": -32.98, "curve": 0.242, "c3": 0.663, "c4": 0.65}, {"time": 0.5833, "angle": 13.33} + "@leg-front-right": { + "translate": [ + {"curve": "stepped"}, {"time": 0.0167, "x": 27.88, "y": -51.35}, {"time": 0.2333, "x": 31.13, "y": -45.76}, {"time": 0.45, "x": 0.18, "y": 4.24}, + {"time": 0.4833, "x": -2.72, "y": -33.58, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5833} ] }, - "body-fur-05": { - "rotate": [ - {"angle": -2.29, "curve": 0.366, "c2": 0.63, "c3": 0.703}, {"time": 0.0333}, {"time": 0.1333, "angle": 37.82, "curve": 0.325, "c3": 0.75}, - {"time": 0.3667, "angle": -32.98, "curve": 0.244, "c3": 0.7, "c4": 0.79}, {"time": 0.5833, "angle": 6.86} + "@pivot-main": { + "translate": [ + {"curve": "stepped"}, {"time": 0.0167, "x": 33.18}, {"time": 0.2667, "x": 61.52, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3833, "x": 20.27, "y": 27.91, "curve": 0.315, "c4": 0.8}, + {"time": 0.4833} ] }, - "body-fur-04": { + "tail": { "rotate": [ - {"angle": -9.21, "curve": 0.356, "c2": 0.42, "c3": 0.696, "c4": 0.78}, {"time": 0.05, "angle": -2.29, "curve": 0.366, "c2": 0.63, "c3": 0.703}, {"time": 0.0833}, - {"time": 0.1833, "angle": 37.82, "curve": 0.325, "c3": 0.75}, {"time": 0.4167, "angle": -32.98, "curve": 0.243, "c3": 0.649, "c4": 0.6}, {"time": 0.5833, "angle": 12.53} + {"curve": "stepped"}, {"time": 0.0167, "angle": -18.65}, {"time": 0.2333, "angle": -21.65, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.3333, "angle": -13.3, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.45, "angle": 12.04, "curve": 0.154, "c4": 0.9}, + {"time": 0.5167, "angle": -9.14, "curve": 0.161, "c3": 0.854}, {"time": 0.5833} ] }, - "body-fur-03": { - "rotate": [ - {"angle": -4.29, "curve": 0.375, "c2": 0.62, "c3": 0.716}, {"time": 0.05}, {"time": 0.15, "angle": 37.82, "curve": 0.325, "c3": 0.75}, - {"time": 0.3833, "angle": -32.98, "curve": 0.243, "c3": 0.68, "c4": 0.71}, {"time": 0.5833, "angle": 5.54} + "leg-front-left-IK": { + "translate": [ + {"time": 0.2333, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "x": 12.33, "y": 29.93}, {"time": 0.3833, "x": 13.61, "y": 28.01, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.45} ] }, - "body-fur-02": { - "rotate": [ - {"angle": -11.97, "curve": 0.358, "c2": 0.42, "c3": 0.702, "c4": 0.8}, {"time": 0.0667, "angle": -2.29, "curve": 0.366, "c2": 0.63, "c3": 0.703}, {"time": 0.1}, - {"time": 0.2, "angle": 37.82, "curve": 0.325, "c3": 0.75}, {"time": 0.4333, "angle": -32.98, "curve": 0.245, "c3": 0.637, "c4": 0.56}, {"time": 0.5833, "angle": 13.84} + "leg-back-left-IK": { + "translate": [ + {"curve": "stepped"}, {"time": 0.0167, "x": 50.74, "y": 0.9, "curve": "stepped"}, {"time": 0.2, "x": 50.74, "y": 0.9, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.25, "x": 12.5, "y": 6.45, "curve": 0, "c2": 0.8, "c3": 0.15}, {"time": 0.3667, "x": 5.47, "y": 26.12, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.4833} ] }, - "body-fur-01": { - "rotate": [ - {"angle": -6.68, "curve": 0.38, "c2": 0.59, "c3": 0.727}, {"time": 0.0667}, {"time": 0.1667, "angle": 37.82, "curve": 0.325, "c3": 0.75}, - {"time": 0.4, "angle": -32.98, "curve": 0.242, "c3": 0.663, "c4": 0.65}, {"time": 0.5833, "angle": 10.51} + "@leg-back-left": { + "translate": [ + {"curve": "stepped"}, {"time": 0.0167, "x": 18.74, "y": 14.65, "curve": "stepped"}, {"time": 0.1667, "x": 18.74, "y": 14.65, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.4833} ] } } }, - "2842428225": { + "3911401836": { "slots": { "eyes": {"attachment": [{"time": 0.0167, "name": "eyes-angry"}, {"time": 0.25, "name": "eyes-shut"}, {"time": 0.3, "name": "eyes-angry"}, {"time": 0.4333, "name": "eyes"}]}, "mouth": {"attachment": [{"time": 0.0167, "name": "mouth-bite"}, {"time": 0.3, "name": "mouth-open"}, {"time": 0.4333, "name": "mouth"}]} @@ -27907,36 +36101,12 @@ {"curve": "stepped"}, {"time": 0.0167, "x": 18.74, "y": 14.65, "curve": "stepped"}, {"time": 0.1667, "x": 18.74, "y": 14.65, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.4833} ] }, - "@leg-front-left": { - "translate": [ - {"curve": "stepped"}, {"time": 0.0167, "x": -0.45, "y": -3.93}, {"time": 0.2333, "x": -0.82, "y": -2.61}, {"time": 0.3333, "x": -5.6, "y": -0.89, "curve": 0.617, "c4": 0.6}, - {"time": 0.45, "x": -1.09, "y": -14.69, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5833} - ] - }, - "@leg-front-right": { - "translate": [ - {"time": 0.0167}, {"time": 0.3333, "x": -7.53, "y": 2.3, "curve": 0, "c2": 0.1, "c3": 0.853}, {"time": 0.45, "x": 0.15, "y": -4.26, "curve": 0.159, "c3": 0.853}, - {"time": 0.4833, "x": -2.34, "y": -28.14, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5833} - ] - }, "@pivot-main": { "translate": [ {"curve": "stepped"}, {"time": 0.0167, "x": 33.18}, {"time": 0.2667, "x": 61.52, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3833, "x": 20.27, "y": 27.91, "curve": 0.315, "c4": 0.8}, {"time": 0.4833} ] }, - "leg-front-right-IK": { - "translate": [ - {"time": 0.2333, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "x": 22.26, "y": 54.13}, {"time": 0.3833, "x": 28.04, "y": 49.32, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.45} - ] - }, - "leg-front-left-IK": { - "translate": [ - {"curve": "stepped"}, {"time": 0.0167, "x": 38.52}, {"time": 0.2333, "x": 38.87, "curve": 0, "c2": 0.3, "c3": 0.54}, {"time": 0.3333, "x": 26.12, "y": 38.71}, - {"time": 0.3833, "x": 12.33, "y": 29.93, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.45} - ] - }, "@shadow": { "translate": [ {"curve": "stepped"}, {"time": 0.0167, "x": 33.22}, {"time": 0.2667, "x": 61.08, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3833, "x": 9.02, "curve": 0.315, "c4": 0.8}, @@ -27954,110 +36124,33 @@ {"time": 0.5167, "angle": -14.3, "curve": 0.161, "c3": 0.854}, {"time": 0.5833} ] }, - "body-fur-16": { - "rotate": [ - {"angle": -17.32, "curve": 0.37, "c2": 0.48, "c3": 0.753}, {"time": 0.1, "curve": 0.25, "c3": 0.75}, {"time": 0.1833, "angle": 31.69, "curve": 0.326, "c2": 0.01, "c3": 0.75}, - {"time": 0.35, "angle": 13.72, "curve": 0.25, "c3": 0.75}, {"time": 0.5, "angle": -30.92, "curve": 0.253, "c3": 0.621, "c4": 0.48}, {"time": 0.5833, "angle": 13.84} - ] - }, - "body-fur-15": { - "rotate": [ - {"angle": -13.6, "curve": 0.379, "c2": 0.52, "c3": 0.747}, {"time": 0.0833}, {"time": 0.1667, "angle": 31.69, "curve": 0.326, "c2": 0.01, "c3": 0.75}, - {"time": 0.3333, "angle": 13.72, "curve": 0.25, "c3": 0.75}, {"time": 0.4833, "angle": -30.92, "curve": 0.247, "c3": 0.63, "c4": 0.52}, {"time": 0.5833, "angle": 13.33} - ] - }, - "body-fur-14": { - "rotate": [ - {"angle": -20.83, "curve": 0.337, "c2": 0.34, "c3": 0.702, "c4": 0.78}, {"time": 0.0833, "angle": -3.41, "curve": 0.373, "c2": 0.62, "c3": 0.713}, {"time": 0.1167}, - {"time": 0.2, "angle": 31.69, "curve": 0.326, "c2": 0.01, "c3": 0.75}, {"time": 0.3667, "angle": 13.72, "curve": 0.25, "c3": 0.75}, - {"time": 0.5167, "angle": -30.92, "curve": 0.261, "c3": 0.618, "c4": 0.44}, {"time": 0.5833, "angle": 13.33} - ] - }, - "body-fur-13": { - "rotate": [ - {"angle": -13.6, "curve": 0.379, "c2": 0.52, "c3": 0.747}, {"time": 0.0833}, {"time": 0.1667, "angle": 31.69, "curve": 0.326, "c2": 0.01, "c3": 0.75}, - {"time": 0.3333, "angle": 13.72, "curve": 0.25, "c3": 0.75}, {"time": 0.4833, "angle": -30.92, "curve": 0.247, "c3": 0.63, "c4": 0.52}, {"time": 0.5833, "angle": 11.59} - ] - }, - "body-fur-12": { - "rotate": [ - {"angle": -9.94, "curve": 0.382, "c2": 0.56, "c3": 0.739}, {"time": 0.0667, "curve": 0.25, "c3": 0.75}, {"time": 0.15, "angle": 31.69, "curve": 0.326, "c2": 0.01, "c3": 0.75}, - {"time": 0.3167, "angle": 13.72, "curve": 0.25, "c3": 0.75}, {"time": 0.4667, "angle": -30.92, "curve": 0.244, "c3": 0.643, "c4": 0.58}, {"time": 0.5833, "angle": 8.12} - ] - }, - "body-fur-11": { - "rotate": [ - {"angle": -6.47, "curve": 0.381, "c2": 0.59, "c3": 0.727}, {"time": 0.05, "curve": 0.25, "c3": 0.75}, {"time": 0.1333, "angle": 31.69, "curve": 0.326, "c2": 0.01, "c3": 0.75}, - {"time": 0.3, "angle": 13.72, "curve": 0.25, "c3": 0.75}, {"time": 0.45, "angle": -30.92, "curve": 0.242, "c3": 0.661, "c4": 0.65}, {"time": 0.5833, "angle": 4.23} - ] - }, - "body-fur-10": { - "rotate": [ - {"angle": -3.41, "curve": 0.373, "c2": 0.62, "c3": 0.713}, {"time": 0.0333, "curve": 0.25, "c3": 0.75}, {"time": 0.1167, "angle": 31.69, "curve": 0.326, "c2": 0.01, "c3": 0.75}, - {"time": 0.2833, "angle": 13.72, "curve": 0.25, "c3": 0.75}, {"time": 0.4333, "angle": -30.92, "curve": 0.243, "c3": 0.685, "c4": 0.73}, {"time": 0.5833, "angle": 0.34} - ] - }, - "body-fur-09": { - "rotate": [ - {"angle": -9.76, "curve": 0.35, "c2": 0.39, "c3": 0.689, "c4": 0.75}, {"time": 0.0333, "angle": -3.41, "curve": 0.373, "c2": 0.62, "c3": 0.713}, {"time": 0.0667}, - {"time": 0.15, "angle": 31.69, "curve": 0.326, "c2": 0.01, "c3": 0.75}, {"time": 0.3167, "angle": 13.72, "curve": 0.25, "c3": 0.75}, - {"time": 0.4667, "angle": -30.92, "curve": 0.244, "c3": 0.643, "c4": 0.58}, {"time": 0.5833, "angle": 6.86} - ] - }, - "body-fur-08": { - "rotate": [ - {"angle": -3.41, "curve": 0.373, "c2": 0.62, "c3": 0.713}, {"time": 0.0333}, {"time": 0.1167, "angle": 31.69, "curve": 0.326, "c2": 0.01, "c3": 0.75}, - {"time": 0.2833, "angle": 13.72, "curve": 0.25, "c3": 0.75}, {"time": 0.4333, "angle": -30.92, "curve": 0.243, "c3": 0.685, "c4": 0.73}, {"time": 0.5833, "angle": -0.91} - ] - }, - "body-fur-07": { - "rotate": [ - {"angle": -1.09, "curve": 0.358, "c2": 0.65, "c3": 0.693}, {"time": 0.0167, "curve": 0.25, "c3": 0.75}, {"time": 0.1, "angle": 31.69, "curve": 0.326, "c2": 0.01, "c3": 0.75}, - {"time": 0.2667, "angle": 13.72, "curve": 0.25, "c3": 0.75}, {"time": 0.4167, "angle": -30.92, "curve": 0.245, "c3": 0.714, "c4": 0.85}, {"time": 0.5833, "angle": 2.91} - ] - }, - "body-fur-06": { - "rotate": [ - {"angle": -9.76, "curve": 0.35, "c2": 0.39, "c3": 0.689, "c4": 0.75}, {"time": 0.0333, "angle": -3.41, "curve": 0.373, "c2": 0.62, "c3": 0.713}, {"time": 0.0667}, - {"time": 0.15, "angle": 31.69, "curve": 0.326, "c2": 0.01, "c3": 0.75}, {"time": 0.3167, "angle": 13.72, "curve": 0.25, "c3": 0.75}, - {"time": 0.4667, "angle": -30.92, "curve": 0.244, "c3": 0.643, "c4": 0.58}, {"time": 0.5833, "angle": 13.33} - ] - }, - "body-fur-05": { - "rotate": [ - {"angle": -3.41, "curve": 0.373, "c2": 0.62, "c3": 0.713}, {"time": 0.0333}, {"time": 0.1167, "angle": 31.69, "curve": 0.326, "c2": 0.01, "c3": 0.75}, - {"time": 0.2833, "angle": 13.72, "curve": 0.25, "c3": 0.75}, {"time": 0.4333, "angle": -30.92, "curve": 0.243, "c3": 0.685, "c4": 0.73}, {"time": 0.5833, "angle": 6.86} - ] - }, - "body-fur-04": { - "rotate": [ - {"angle": -13.41, "curve": 0.351, "c2": 0.39, "c3": 0.696, "c4": 0.76}, {"time": 0.05, "angle": -3.41, "curve": 0.373, "c2": 0.62, "c3": 0.713}, {"time": 0.0833}, - {"time": 0.1667, "angle": 31.69, "curve": 0.326, "c2": 0.01, "c3": 0.75}, {"time": 0.3333, "angle": 13.72, "curve": 0.25, "c3": 0.75}, - {"time": 0.4833, "angle": -30.92, "curve": 0.247, "c3": 0.63, "c4": 0.52}, {"time": 0.5833, "angle": 12.53} + "@leg-front-right": { + "translate": [ + {"curve": "stepped"}, {"time": 0.0167, "x": 27.88, "y": -51.35}, {"time": 0.2333, "x": 31.13, "y": -45.76}, {"time": 0.45, "x": 0.18, "y": 4.24}, + {"time": 0.4833, "x": -2.72, "y": -33.58, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5833} ] }, - "body-fur-03": { - "rotate": [ - {"angle": -6.47, "curve": 0.381, "c2": 0.59, "c3": 0.727}, {"time": 0.05}, {"time": 0.1333, "angle": 31.69, "curve": 0.326, "c2": 0.01, "c3": 0.75}, - {"time": 0.3, "angle": 13.72, "curve": 0.25, "c3": 0.75}, {"time": 0.45, "angle": -30.92, "curve": 0.242, "c3": 0.661, "c4": 0.65}, {"time": 0.5833, "angle": 5.54} + "@leg-front-left": { + "translate": [ + {"curve": "stepped"}, {"time": 0.0167, "x": 0.77, "y": 3.87}, {"time": 0.3667, "x": 1.05, "y": 9.15, "curve": 0.617, "c4": 0.6}, + {"time": 0.4833, "x": -1.09, "y": -14.69, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5833} ] }, - "body-fur-02": { - "rotate": [ - {"angle": -17.14, "curve": 0.346, "c2": 0.38, "c3": 0.7, "c4": 0.78}, {"time": 0.0667, "angle": -3.41, "curve": 0.373, "c2": 0.62, "c3": 0.713}, {"time": 0.1, "curve": 0.25, "c3": 0.75}, - {"time": 0.1833, "angle": 31.69, "curve": 0.326, "c2": 0.01, "c3": 0.75}, {"time": 0.35, "angle": 13.72, "curve": 0.25, "c3": 0.75}, - {"time": 0.5, "angle": -30.92, "curve": 0.253, "c3": 0.621, "c4": 0.48}, {"time": 0.5833, "angle": 13.84} + "leg-front-right-IK": { + "translate": [ + {"time": 0.0167}, {"time": 0.2333, "x": -21.51, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "x": 6.83, "y": 84.78}, + {"time": 0.3833, "x": -2.72, "y": 58.18, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.45} ] }, - "body-fur-01": { - "rotate": [ - {"angle": -9.94, "curve": 0.382, "c2": 0.56, "c3": 0.739}, {"time": 0.0667}, {"time": 0.15, "angle": 31.69, "curve": 0.326, "c2": 0.01, "c3": 0.75}, - {"time": 0.3167, "angle": 13.72, "curve": 0.25, "c3": 0.75}, {"time": 0.4667, "angle": -30.92, "curve": 0.244, "c3": 0.643, "c4": 0.58}, {"time": 0.5833, "angle": 10.51} + "leg-front-left-IK": { + "translate": [ + {"time": 0.2333, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "x": 12.33, "y": 29.93}, {"time": 0.3833, "x": 13.61, "y": 28.01, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.45} ] } } }, - "339640524": { + "2824479785": { "slots": { "eyes": {"attachment": [{"time": 0.05, "name": "eyes-angry"}, {"time": 0.7, "name": "eyes"}]}, "mouth": {"attachment": [{"time": 0.05, "name": "mouth-bite"}, {"time": 0.2833, "name": "mouth-open"}, {"time": 0.4667, "name": "mouth-bite"}, {"time": 0.7, "name": "mouth"}]} @@ -28078,35 +36171,35 @@ "@pivot-main": {"translate": [{"time": 0.5833, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.6667, "y": 45.22, "curve": 0.315, "c4": 0.8}, {"time": 0.75}]}, "@leg-front-left": { "translate": [ - {"curve": 0, "c2": 0.4, "c3": 0.383}, {"time": 0.25, "x": -0.72, "y": -6.78}, {"time": 0.5833, "x": -1.48, "y": -14.61, "curve": 0, "c2": 0.17, "c3": 0.45, "c4": 0.61}, - {"time": 0.65, "x": -0.39, "y": 5.91, "curve": 0.345, "c2": 0.53, "c3": 0.751}, {"time": 0.75} + {"curve": 0, "c2": 0.4, "c3": 0.383}, {"time": 0.25, "x": -0.37, "y": -3.19, "curve": "stepped"}, + {"time": 0.5833, "x": -0.37, "y": -3.19, "curve": 0, "c2": 0.17, "c3": 0.45, "c4": 0.61}, {"time": 0.65, "x": -0.39, "y": 5.91, "curve": 0.345, "c2": 0.53, "c3": 0.751}, {"time": 0.75} ] }, "@leg-front-right": { "translate": [ - {"curve": 0, "c2": 0.39, "c3": 0.387}, {"time": 0.25, "x": -2.88, "y": -28.54, "curve": "stepped"}, - {"time": 0.5833, "x": -2.88, "y": -28.54, "curve": 0, "c2": 0.17, "c3": 0.45, "c4": 0.61}, {"time": 0.65, "x": -0.83, "y": 1.57, "curve": 0.345, "c2": 0.53, "c3": 0.751}, {"time": 0.75} + {"curve": 0.617, "c4": 0.6}, {"time": 0.25, "x": -5.35, "y": -53.74}, {"time": 0.5833, "x": -2.3, "y": -22.53, "curve": 0, "c2": 0.17, "c3": 0.45, "c4": 0.61}, + {"time": 0.65, "x": -0.83, "y": 1.57, "curve": 0.345, "c2": 0.53, "c3": 0.751}, {"time": 0.75} ] }, "leg-front-left-IK": { "translate": [ - {"curve": 0, "c2": 0.39, "c3": 0.387}, {"time": 0.25, "x": 19.12, "curve": 0.702, "c4": 0.2}, {"time": 0.2833, "x": -43.29, "y": 59.07}, - {"time": 0.4167, "x": -61.19, "y": 52.81, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5, "x": -184.33, "y": 7.89, "curve": "stepped"}, - {"time": 0.5833, "x": -184.33, "y": 7.89, "curve": 0, "c2": 0.17, "c3": 0.45, "c4": 0.61}, {"time": 0.65, "x": -105.91, "y": -2.82, "curve": 0.345, "c2": 0.53, "c3": 0.751}, - {"time": 0.75} + {"curve": 0.462, "c3": 0.543}, {"time": 0.25, "x": 61.73, "curve": 0.702, "c4": 0.2}, {"time": 0.2833, "x": -43.29, "y": 59.07}, + {"time": 0.4167, "x": -61.19, "y": 52.81, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5, "x": -191.61, "curve": "stepped"}, + {"time": 0.5833, "x": -191.61, "curve": 0, "c2": 0.17, "c3": 0.45, "c4": 0.61}, {"time": 0.65, "x": -105.91, "y": -2.82, "curve": 0.345, "c2": 0.53, "c3": 0.751}, {"time": 0.75} ] }, "leg-front-right-IK": { "translate": [ - {"time": 0.25, "curve": 0.702, "c4": 0.2}, {"time": 0.2833, "x": -27.95, "y": 28.32}, {"time": 0.4167, "x": -40.48, "y": 34.59, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.5, "x": -191.61, "curve": "stepped"}, {"time": 0.5833, "x": -191.61, "curve": 0, "c2": 0.17, "c3": 0.45, "c4": 0.61}, - {"time": 0.65, "x": -103, "y": 4.15, "curve": 0.345, "c2": 0.53, "c3": 0.751}, {"time": 0.75} + {"curve": 0.617, "c4": 0.6}, {"time": 0.25, "x": 73.82, "curve": 0.702, "c4": 0.2}, {"time": 0.2833, "x": -27.95, "y": 28.32}, + {"time": 0.4167, "x": -40.48, "y": 34.59, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5, "x": -191.61, "curve": "stepped"}, + {"time": 0.5833, "x": -191.61, "curve": 0, "c2": 0.17, "c3": 0.45, "c4": 0.61}, {"time": 0.65, "x": -103, "y": 4.15, "curve": 0.345, "c2": 0.53, "c3": 0.751}, {"time": 0.75} ] }, "leg-back-left-IK": { "translate": [ - {"time": 0.2667, "curve": 0.461, "c4": 0.4}, {"time": 0.2833, "x": -70.51, "y": 98.54}, {"time": 0.4167, "x": -70.51, "y": 101.95, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.5, "x": -189.32, "curve": "stepped"}, {"time": 0.5833, "x": -189.32, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.75} + {"curve": 0.306, "c3": 0.695}, {"time": 0.25, "x": 44.44, "curve": 0.25, "c4": 0.2}, {"time": 0.2833, "x": -70.51, "y": 98.54}, + {"time": 0.4167, "x": -70.51, "y": 101.95, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5, "x": -197.17, "curve": "stepped"}, + {"time": 0.5833, "x": -197.17, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.75} ] }, "@pivot-center": { @@ -28130,2595 +36223,3133 @@ {"curve": 0, "c2": 0.4, "c3": 0.383}, {"time": 0.25, "x": 1.08, "y": 1.08, "curve": "stepped"}, {"time": 0.5, "x": 1.08, "y": 1.08, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5833, "x": 1.12, "y": 1.12, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.6667, "x": 0.94, "y": 0.94, "curve": 0.315, "c4": 0.8}, {"time": 0.75} ] - }, - "@leg-back-left": {"translate": [{"curve": 0, "c2": 0.39, "c3": 0.387}, {"time": 0.25, "x": -7.28, "y": 3.82}]}, - "body-fur-01": { + } + }, + "events": [{"time": 0.2167, "name": "start-attack"}, {"time": 0.2833, "name": "hit"}] + }, + "137987643": { + "slots": { + "eyes": {"attachment": [{"time": 0.1333, "name": "eyes-angry"}, {"time": 0.6667, "name": "eyes"}]}, + "mouth": {"attachment": [{"time": 0.1333, "name": "mouth-bite"}, {"time": 0.2667, "name": "mouth-open"}, {"time": 0.4167, "name": "mouth-bite"}, {"time": 0.6667, "name": "mouth"}]} + }, + "bones": { + "@pivot-back": { "rotate": [ - {"angle": -7.99, "curve": 0.382, "c2": 0.57, "c3": 0.735}, {"time": 0.0667}, {"time": 0.3333, "angle": -23.85, "curve": 0.25, "c3": 0.75}, - {"time": 0.4, "angle": 26.05, "curve": 0.25, "c3": 0.75}, {"time": 0.6167, "angle": -28.16, "curve": 0.243, "c3": 0.649, "c4": 0.6}, {"time": 0.75, "angle": 10.51} + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "angle": -3.92, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "angle": 2.51, "curve": 0, "c2": 0.3, "c3": 0.544}, + {"time": 0.35, "angle": -4.74, "curve": 0.7, "c4": 0.3}, {"time": 0.4167, "angle": 2}, {"time": 0.5833, "angle": 4, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.75} + ], + "translate": [ + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 71.93, "y": -12.95, "curve": "stepped"}, {"time": 0.25, "x": 71.93, "y": -12.95, "curve": 0, "c2": 0.3, "c3": 0.544}, + {"time": 0.4167, "x": -144.49, "y": -12.95, "curve": "stepped"}, {"time": 0.5833, "x": -144.49, "y": -12.95, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.75} ] }, - "body-fur-02": { - "rotate": [ - {"angle": -13.91, "curve": 0.351, "c2": 0.39, "c3": 0.701, "c4": 0.78}, {"time": 0.0667, "angle": -2.72, "curve": 0.371, "c2": 0.62, "c3": 0.71}, {"time": 0.1}, - {"time": 0.3667, "angle": -23.85, "curve": 0.25, "c3": 0.75}, {"time": 0.4333, "angle": 26.05, "curve": 0.25, "c3": 0.75}, - {"time": 0.65, "angle": -28.16, "curve": 0.25, "c3": 0.625, "c4": 0.5}, {"time": 0.75, "angle": 13.84} + "leg-back-left-IK": { + "translate": [ + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.1333, "x": 80.9, "curve": 0.161, "c3": 0.854}, {"time": 0.25, "x": 49.4}, + {"time": 0.3333, "x": -52.84, "y": 44.64, "curve": 0.315, "c4": 0.8}, {"time": 0.4167, "x": -131.67, "curve": "stepped"}, {"time": 0.5833, "x": -131.67}, {"time": 0.75} ] }, - "body-fur-03": { - "rotate": [ - {"angle": -5.19, "curve": 0.379, "c2": 0.6, "c3": 0.724}, {"time": 0.05, "curve": 0.25, "c3": 0.75}, {"time": 0.3167, "angle": -23.85, "curve": 0.25, "c3": 0.75}, - {"time": 0.3833, "angle": 26.05, "curve": 0.25, "c3": 0.75}, {"time": 0.6, "angle": -28.16, "curve": 0.242, "c3": 0.667, "c4": 0.67}, {"time": 0.75, "angle": 5.54} + "leg-front-right-IK": { + "translate": [ + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 30.89, "y": 11.74, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "x": 42.9, "curve": 0, "c2": 0.3, "c3": 0.544}, + {"time": 0.3667, "x": -61.28, "y": 38.08, "curve": 0.161, "c4": 0.85}, {"time": 0.4167, "x": -153.64, "curve": "stepped"}, {"time": 0.5833, "x": -153.64, "curve": 0.154, "c4": 0.9}, + {"time": 0.7, "x": 13.43, "curve": 0.161, "c3": 0.854}, {"time": 0.75} ] }, - "body-fur-04": { - "rotate": [ - {"angle": -10.8, "curve": 0.353, "c2": 0.4, "c3": 0.696, "c4": 0.77}, {"time": 0.05, "angle": -2.72, "curve": 0.371, "c2": 0.62, "c3": 0.71}, {"time": 0.0833, "curve": 0.25, "c3": 0.75}, - {"time": 0.35, "angle": -23.85, "curve": 0.25, "c3": 0.75}, {"time": 0.4167, "angle": 26.05, "curve": 0.25, "c3": 0.75}, - {"time": 0.6333, "angle": -28.16, "curve": 0.246, "c3": 0.635, "c4": 0.55}, {"time": 0.75, "angle": 12.53} + "leg-front-left-IK": { + "translate": [ + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 65.04, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "x": 75.35, "curve": 0, "c2": 0.3, "c3": 0.544}, + {"time": 0.3667, "x": -62.49, "y": 8.75, "curve": 0.161, "c4": 0.85}, {"time": 0.4167, "x": -141.78, "curve": "stepped"}, {"time": 0.5833, "x": -141.78, "curve": 0.159, "c4": 0.9}, + {"time": 0.7, "x": 13.43, "curve": 0.161, "c3": 0.854}, {"time": 0.75} ] }, - "body-fur-05": { - "rotate": [ - {"angle": -2.72, "curve": 0.371, "c2": 0.62, "c3": 0.71}, {"time": 0.0333}, {"time": 0.3, "angle": -23.85, "curve": 0.25, "c3": 0.75}, - {"time": 0.3667, "angle": 26.05, "curve": 0.25, "c3": 0.75}, {"time": 0.5833, "angle": -28.16, "curve": 0.243, "c3": 0.689, "c4": 0.75}, {"time": 0.75, "angle": 6.86} + "@leg-front-left": { + "translate": [ + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": -0.15, "y": 1.81, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.25, "x": -0.94, "y": -15.09, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.4167, "x": -18.05, "y": -7.89, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.5833, "x": -15.37, "y": -13.49, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.75} ] }, - "body-fur-06": { - "rotate": [ - {"angle": -7.8, "curve": 0.351, "c2": 0.4, "c3": 0.689, "c4": 0.75}, {"time": 0.0333, "angle": -2.72, "curve": 0.371, "c2": 0.62, "c3": 0.71}, {"time": 0.0667}, - {"time": 0.3333, "angle": -23.85, "curve": 0.25, "c3": 0.75}, {"time": 0.4, "angle": 26.05, "curve": 0.25, "c3": 0.75}, - {"time": 0.6167, "angle": -28.16, "curve": 0.243, "c3": 0.649, "c4": 0.6}, {"time": 0.75, "angle": 13.33} + "@leg-front-right": { + "translate": [ + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 4.31, "y": 11.86, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.25, "x": -10.19, "y": -4.67, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.4167, "x": -10.43, "y": -17.77, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.5833, "x": -11.41, "y": -27.57, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.75} ] }, - "body-fur-07": { - "rotate": [ - {"angle": -0.82, "curve": 0.356, "c2": 0.65, "c3": 0.691}, {"time": 0.0167, "curve": 0.25, "c3": 0.75}, {"time": 0.2833, "angle": -23.85, "curve": 0.25, "c3": 0.75}, - {"time": 0.35, "angle": 26.05, "curve": 0.25, "c3": 0.75}, {"time": 0.5667, "angle": -28.16, "curve": 0.246, "c3": 0.717, "c4": 0.86}, {"time": 0.75, "angle": 2.91} + "@pivot-main": { + "translate": [ + {"time": 0.25, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "y": 26.43, "curve": 0.315, "c4": 0.8}, {"time": 0.4167, "curve": "stepped"}, + {"time": 0.5833, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.6667, "y": 26.43, "curve": 0.315, "c4": 0.8}, {"time": 0.75} ] }, - "body-fur-08": { - "rotate": [ - {"angle": -2.72, "curve": 0.371, "c2": 0.62, "c3": 0.71}, {"time": 0.0333}, {"time": 0.3, "angle": -23.85, "curve": 0.25, "c3": 0.75}, - {"time": 0.3667, "angle": 26.05, "curve": 0.25, "c3": 0.75}, {"time": 0.5833, "angle": -28.16, "curve": 0.243, "c3": 0.689, "c4": 0.75}, {"time": 0.75, "angle": -0.91} + "@leg-back-left": { + "translate": [ + {"time": 0.0833, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "x": -0.35, "y": -13.05, "curve": "stepped"}, {"time": 0.3333, "x": -0.35, "y": -13.05}, + {"time": 0.5833, "x": -0.47, "y": -16.1, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.75} ] }, - "body-fur-09": { + "tail": { "rotate": [ - {"angle": -7.8, "curve": 0.351, "c2": 0.4, "c3": 0.689, "c4": 0.75}, {"time": 0.0333, "angle": -2.72, "curve": 0.371, "c2": 0.62, "c3": 0.71}, {"time": 0.0667}, - {"time": 0.3333, "angle": -23.85, "curve": 0.25, "c3": 0.75}, {"time": 0.4, "angle": 26.05, "curve": 0.25, "c3": 0.75}, - {"time": 0.6167, "angle": -28.16, "curve": 0.243, "c3": 0.649, "c4": 0.6}, {"time": 0.75, "angle": 6.86} + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "angle": 12.92, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "angle": 18.48, "curve": 0, "c2": 0.3, "c3": 0.544}, + {"time": 0.35, "angle": -6.88, "curve": 0.7, "c4": 0.3}, {"time": 0.4167, "angle": 14}, {"time": 0.5833, "angle": 19.37, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.6833, "angle": -8.78, "curve": 0.313, "c3": 0.699}, {"time": 0.75} ] }, - "body-fur-10": { - "rotate": [ - {"angle": -2.72, "curve": 0.371, "c2": 0.62, "c3": 0.71}, {"time": 0.0333, "curve": 0.25, "c3": 0.75}, {"time": 0.3, "angle": -23.85, "curve": 0.25, "c3": 0.75}, - {"time": 0.3667, "angle": 26.05, "curve": 0.25, "c3": 0.75}, {"time": 0.5833, "angle": -28.16, "curve": 0.243, "c3": 0.689, "c4": 0.75}, {"time": 0.75, "angle": 0.34} + "@shadow": { + "translate": [ + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 61.96, "curve": "stepped"}, {"time": 0.25, "x": 61.96, "curve": 0, "c2": 0.3, "c3": 0.544}, + {"time": 0.35, "x": -121.98, "curve": 0.7, "c4": 0.3}, {"time": 0.4167, "x": -154.28, "curve": "stepped"}, {"time": 0.5833, "x": -154.28, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.75} + ], + "scale": [ + {"time": 0.0833, "curve": 0, "c2": 0.26, "c3": 0.369, "c4": 0.62}, {"time": 0.25, "x": 1.06, "y": 1.06, "curve": 0.192, "c2": 0.45, "c3": 0.623}, + {"time": 0.35, "x": 0.96, "y": 0.96, "curve": 0.7, "c4": 0.3}, {"time": 0.4167, "x": 1.08, "y": 1.08, "curve": "stepped"}, + {"time": 0.5833, "x": 1.08, "y": 1.08, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.75} + ] + } + }, + "events": [{"time": 0.25, "name": "start-attack"}, {"time": 0.4167, "name": "hit"}] + }, + "1873246458": { + "slots": { + "eyes": {"attachment": [{"time": 0.0833, "name": "eyes-shut"}, {"time": 0.1667, "name": "eyes-angry"}, {"time": 0.9833, "name": "eyes-shut"}, {"time": 1.0833, "name": "eyes"}]}, + "leg-front-left": { + "attachment": [ + {"time": 0.5, "name": "sumo-leg-front-left-stretch"}, {"time": 0.6333, "name": "sumo-leg-front-left"}, {"time": 0.7667, "name": "sumo-leg-front-left-stretch"}, + {"time": 0.9, "name": "sumo-leg-front-left"} ] }, - "body-fur-11": { + "mouth": {"attachment": [{"time": 0.0833, "name": "mouth-bite"}, {"time": 0.3667, "name": "mouth-open"}, {"time": 0.9833, "name": "mouth-bite"}, {"time": 1.0833, "name": "mouth"}]} + }, + "bones": { + "@pivot-back": { "rotate": [ - {"angle": -5.19, "curve": 0.379, "c2": 0.6, "c3": 0.724}, {"time": 0.05, "curve": 0.25, "c3": 0.75}, {"time": 0.3167, "angle": -23.85, "curve": 0.25, "c3": 0.75}, - {"time": 0.3833, "angle": 26.05, "curve": 0.25, "c3": 0.75}, {"time": 0.6, "angle": -28.16, "curve": 0.242, "c3": 0.667, "c4": 0.67}, {"time": 0.75, "angle": 4.23} + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.15, "angle": 3.67, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.3333, "angle": -14.29, "curve": 0.779, "c4": 0.3}, + {"time": 0.3667, "angle": 15.82}, {"time": 0.4667, "angle": 16.67, "curve": 0.779, "c4": 0.3}, {"time": 0.5, "angle": -19.96}, {"time": 0.6, "angle": -21.17, "curve": 0.779, "c4": 0.3}, + {"time": 0.6333, "angle": 15.82}, {"time": 0.7333, "angle": 16.67, "curve": 0.779, "c4": 0.3}, {"time": 0.7667, "angle": -19.96}, + {"time": 0.8667, "angle": -21.17, "curve": 0.779, "c4": 0.3}, {"time": 0.9833, "angle": 4.4, "curve": 0, "c2": 0.1, "c3": 0.85}, + {"time": 1.05, "angle": 6.79, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1.25} + ], + "translate": [ + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.2167, "x": 8.02, "curve": 0, "c2": 0.4, "c3": 0.383}, {"time": 0.3333, "x": -54.3, "y": 61.69, "curve": 0.779, "c4": 0.3}, + {"time": 0.3667, "x": -60.41, "y": 130.13}, {"time": 0.4667, "x": -60.41, "y": 130.01, "curve": 0.779, "c4": 0.3}, {"time": 0.5, "x": -58.41, "y": 9.6}, + {"time": 0.6, "x": -58.41, "y": 9.9, "curve": 0.779, "c4": 0.3}, {"time": 0.6333, "x": -60.41, "y": 130.13}, {"time": 0.7333, "x": -60.41, "y": 130.01, "curve": 0.779, "c4": 0.3}, + {"time": 0.7667, "x": -58.41, "y": 9.6}, {"time": 0.8667, "x": -58.41, "y": 9.9, "curve": 0.779, "c4": 0.3}, {"time": 0.9833} ] }, - "body-fur-12": { + "@leg-front-right": { + "translate": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.2167, "x": -18.54, "y": -11.57}, {"time": 0.25, "x": -23.07, "y": 10.08, "curve": 0, "c2": 0.4, "c3": 0.383}, + {"time": 0.3333, "x": 47.55, "y": -24.33, "curve": 0.779, "c4": 0.4}, {"time": 0.3667, "x": 22.95, "y": 2.68}, {"time": 0.4667, "x": 29.92, "y": -4.24, "curve": 0.779, "c4": 0.4}, + {"time": 0.5, "x": 30.08, "y": -11.86, "curve": "stepped"}, {"time": 0.6, "x": 30.08, "y": -11.86, "curve": 0.774, "c4": 0.4}, {"time": 0.6333, "x": 22.95, "y": 2.68}, + {"time": 0.7333, "x": 29.92, "y": -4.24, "curve": 0.779, "c4": 0.4}, {"time": 0.7667, "x": 22.95, "y": 2.68, "curve": "stepped"}, + {"time": 0.9167, "x": 22.95, "y": 2.68, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.95, "curve": 0.464, "c4": 0.7}, {"time": 0.9833, "x": -1.45, "y": -24.11}, + {"time": 1.05, "x": 1.91, "y": -42.48, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1.0833} + ], + "scale": [ + {"time": 0.2167}, {"time": 0.25, "x": 1.5}, {"time": 0.3333, "curve": 0.779, "c4": 0.4}, {"time": 0.3667, "x": 1.5}, {"time": 0.4667, "x": 1.51, "curve": 0.157, "c2": 0.33, "c3": 0.727}, + {"time": 0.5, "curve": "stepped"}, {"time": 0.6, "curve": 0.779, "c4": 0.4}, {"time": 0.6333, "x": 1.5}, {"time": 0.7333, "x": 1.51, "curve": 0.157, "c2": 0.33, "c3": 0.727}, + {"time": 0.7667} + ] + }, + "@leg-front-left": { + "translate": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.2167, "x": -6.84, "y": -9.77, "curve": "stepped"}, {"time": 0.9833, "x": -6.84, "y": -9.77, "curve": 0, "c2": 0.1, "c3": 0.85}, + {"time": 1.05, "x": -6.29, "y": -18.69, "curve": 0, "c2": 0.23, "c3": 0.365, "c4": 0.58}, {"time": 1.0833, "x": -3.64, "y": -2.46, "curve": 0.177, "c2": 0.35, "c3": 0.731}, + {"time": 1.25} + ], + "scale": [ + {"time": 0.4667, "curve": 0.779, "c4": 0.4}, {"time": 0.5, "x": 1.5}, {"time": 0.6, "x": 1.51, "curve": 0.157, "c2": 0.33, "c3": 0.727}, {"time": 0.6333, "curve": "stepped"}, + {"time": 0.7333, "curve": 0.779, "c4": 0.4}, {"time": 0.7667, "x": 1.5}, {"time": 0.8667, "x": 1.51, "curve": 0.157, "c2": 0.33, "c3": 0.727}, {"time": 0.9833} + ] + }, + "@leg-back-left": { + "translate": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.2167, "x": -0.11, "y": -2.73, "curve": 0, "c2": 0.1, "c3": 0.853}, {"time": 0.3333, "x": 1.43, "y": -8.39, "curve": "stepped"}, + {"time": 0.75, "x": 1.43, "y": -8.39, "curve": 0, "c2": 0.1, "c3": 0.853}, {"time": 0.9833, "x": -0.11, "y": -2.73, "curve": 0, "c2": 0.1, "c3": 0.85}, + {"time": 1.05, "x": -0.46, "y": -6.19, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1.25} + ] + }, + "@pivot-main": { + "translate": [ + {"time": 0.15, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "x": -73.35, "y": 43, "curve": "stepped"}, {"time": 0.8667, "x": -73.35, "y": 43, "curve": 0.315, "c4": 0.8}, + {"time": 0.9833, "x": -146.44, "curve": "stepped"}, {"time": 1.05, "x": -146.44, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1.15, "x": -45.61, "y": 50.15, "curve": 0.315, "c4": 0.8}, + {"time": 1.25} + ], + "scale": [{"time": 0.9833, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1.05, "y": 0.98, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1.15}] + }, + "leg-front-right-IK": { + "translate": [ + {"time": 0.15, "curve": 0, "c2": 0.18, "c3": 0.416, "c4": 0.58}, {"time": 0.2167, "x": 40.05, "y": 75.1}, {"time": 0.25, "x": 6.78, "y": 74.83, "curve": 0, "c2": 0.4, "c3": 0.383}, + {"time": 0.3333, "x": -193.39, "y": 304.19, "curve": 0.779, "c4": 0.4}, {"time": 0.3667, "x": -21.84, "y": -45.29}, {"time": 0.4667, "x": 11.75, "y": -48.86, "curve": 0.779, "c4": 0.4}, + {"time": 0.5, "x": -180.19, "y": 260.8}, {"time": 0.6, "x": -183.12, "y": 295.33, "curve": 0.774, "c4": 0.4}, {"time": 0.6333, "x": 7.37, "y": -47.08}, + {"time": 0.7333, "x": 28.44, "y": -46.48, "curve": 0.779, "c4": 0.4}, {"time": 0.7667, "x": -165.57, "y": 223.23}, {"time": 0.8667, "x": -174.41, "y": 246.27, "curve": 0.779, "c4": 0.4}, + {"time": 0.9833, "x": 1.3, "y": -4.56}, {"time": 1.05, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 1.0833, "x": -14.68, "y": -19.57, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1.25} + ] + }, + "leg-front-left-IK": { + "translate": [ + {"time": 0.15, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "x": -54.88, "y": 124.95, "curve": 0.779, "c4": 0.4}, {"time": 0.3667, "x": 37.97, "y": 122.64}, + {"time": 0.4667, "x": 48.96, "y": 138.43, "curve": 0.779, "c4": 0.4}, {"time": 0.5, "x": -227.16, "y": 232.48}, {"time": 0.6, "x": -213.15, "y": 265.57, "curve": 0.779, "c4": 0.4}, + {"time": 0.6333, "x": 37.97, "y": 122.64}, {"time": 0.7333, "x": 58.73, "y": 130.92, "curve": 0.779, "c4": 0.4}, {"time": 0.7667, "x": -229.42, "y": 225.72}, + {"time": 0.8667, "x": -218.4, "y": 260.32, "curve": 0.617, "c4": 0.6}, {"time": 0.9833, "curve": "stepped"}, {"time": 1.05, "curve": 0, "c2": 0.1, "c3": 0.85}, + {"time": 1.0833, "x": -7.79, "y": -10.12, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1.25} + ] + }, + "leg-back-left-IK": { + "translate": [ + {"time": 0.0833, "curve": 0.332, "c3": 0.682, "c4": 0.41}, {"time": 0.2167, "x": 6.07, "y": 22.48, "curve": 0, "c2": 0.4, "c3": 0.383}, + {"time": 0.3333, "x": -66.23, "y": 98.46, "curve": 0.779, "c4": 0.4}, {"time": 0.3667, "x": 32.46, "y": 177.26}, {"time": 0.4667, "x": 42.56, "y": 194, "curve": 0.779, "c4": 0.4}, + {"time": 0.5, "x": -143.31, "y": 25.48}, {"time": 0.6, "x": -161.53, "y": 28.25, "curve": 0.779, "c4": 0.4}, {"time": 0.6333, "x": 39.84, "y": 189.07}, + {"time": 0.7333, "x": 43.3, "y": 201.38, "curve": 0.779, "c4": 0.4}, {"time": 0.7667, "x": -147, "y": 26.22}, {"time": 0.8667, "x": -162.73, "y": 28.16, "curve": 0.779, "c4": 0.4}, + {"time": 0.9833, "curve": "stepped"}, {"time": 1.05, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 1.1667, "x": 24.35, "y": 13.92, "curve": 0.154, "c4": 0.9}, {"time": 1.25} + ] + }, + "tail": { "rotate": [ - {"angle": -7.99, "curve": 0.382, "c2": 0.57, "c3": 0.735}, {"time": 0.0667, "curve": 0.25, "c3": 0.75}, {"time": 0.3333, "angle": -23.85, "curve": 0.25, "c3": 0.75}, - {"time": 0.4, "angle": 26.05, "curve": 0.25, "c3": 0.75}, {"time": 0.6167, "angle": -28.16, "curve": 0.243, "c3": 0.649, "c4": 0.6}, {"time": 0.75, "angle": 8.12} + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.15, "angle": 14.68, "curve": 0.315, "c4": 0.8}, {"time": 0.2167, "angle": -12.57}, + {"time": 0.3333, "angle": -14.89, "curve": 0.779, "c4": 0.4}, {"time": 0.3667, "angle": 20.64}, {"time": 0.4667, "angle": 25.18, "curve": 0.779, "c4": 0.4}, + {"time": 0.5, "angle": -19.72}, {"time": 0.6, "angle": -22.19, "curve": 0.779, "c4": 0.4}, {"time": 0.6333, "angle": 20.64}, {"time": 0.7333, "angle": 25.18, "curve": 0.779, "c4": 0.4}, + {"time": 0.7667, "angle": -19.72}, {"time": 0.8667, "angle": -22.19, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.9833, "angle": 23.3}, + {"time": 1.05, "angle": 26.39, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1.1333, "angle": -14.8, "curve": 0.154, "c4": 0.9}, {"time": 1.25} ] }, - "body-fur-13": { + "@shadow": { + "translate": [ + {"time": 0.15, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.3333, "x": -132.39, "curve": 0.779, "c4": 0.4}, {"time": 0.3667, "x": -111.3, "curve": "stepped"}, + {"time": 0.8667, "x": -111.3, "curve": 0.315, "c4": 0.8}, {"time": 0.9833, "x": -132.39, "curve": "stepped"}, {"time": 1.05, "x": -132.39, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 1.25} + ], + "scale": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.15, "x": 1.05, "y": 1.05, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.3333, "x": 0.93, "y": 0.93, "curve": 0.779, "c4": 0.4}, + {"time": 0.3667, "x": 0.95, "y": 0.95}, {"time": 0.4667, "x": 0.93, "y": 0.93, "curve": 0.779, "c4": 0.4}, {"time": 0.5}, {"time": 0.6, "x": 1.05, "y": 1.05, "curve": 0.779, "c4": 0.4}, + {"time": 0.6333}, {"time": 0.7333, "x": 0.93, "y": 0.93, "curve": 0.779, "c4": 0.4}, {"time": 0.7667}, {"time": 0.8667, "x": 1.05, "y": 1.05, "curve": 0.315, "c4": 0.8}, + {"time": 0.9833, "x": 1.09, "y": 1.09, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 1.05, "x": 1.11, "y": 1.11, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1.25} + ] + } + }, + "events": [{"time": 0.3333, "name": "start-attack"}, {"time": 0.3667, "name": "hit"}, {"time": 0.5, "name": "hit"}, {"time": 0.6333, "name": "hit"}, {"time": 0.7667, "name": "hit"}] + }, + "3518390074": { + "slots": {"eyes": {"attachment": [{"time": 1, "name": "eyes-shut"}, {"time": 1.0833, "name": "eyes"}]}}, + "bones": { + "@pivot-back": { "rotate": [ - {"angle": -10.98, "curve": 0.381, "c2": 0.54, "c3": 0.744}, {"time": 0.0833}, {"time": 0.35, "angle": -23.85, "curve": 0.25, "c3": 0.75}, - {"time": 0.4167, "angle": 26.05, "curve": 0.25, "c3": 0.75}, {"time": 0.6333, "angle": -28.16, "curve": 0.246, "c3": 0.635, "c4": 0.55}, {"time": 0.75, "angle": 11.59} + {"curve": 0.313, "c3": 0.699}, {"time": 0.3333, "angle": 2.04, "curve": 0.313, "c3": 0.699}, {"time": 0.6667, "curve": 0.313, "c3": 0.699}, + {"time": 1, "angle": 1.79, "curve": 0.313, "c3": 0.699}, {"time": 1.3333} + ], + "translate": [ + {"curve": 0.313, "c3": 0.699}, {"time": 0.3333, "y": -6.53, "curve": 0.313, "c3": 0.699}, {"time": 0.6667, "curve": 0.313, "c3": 0.699}, + {"time": 1, "y": -8.86, "curve": 0.313, "c3": 0.699}, {"time": 1.3333} + ], + "scale": [{"curve": 0.313, "c3": 0.699}, {"time": 0.6667, "y": 0.99, "curve": 0.313, "c3": 0.699}, {"time": 1.3333}] + }, + "@leg-front-right": { + "translate": [ + {"curve": 0.313, "c3": 0.699}, {"time": 0.3333, "x": -0.08, "y": -22.35, "curve": 0.313, "c3": 0.699}, {"time": 0.6667, "x": -0.04, "y": 2.46, "curve": 0.313, "c3": 0.699}, + {"time": 1, "x": -0.08, "y": -22.35, "curve": 0.313, "c3": 0.699}, {"time": 1.3333} + ] + }, + "@leg-front-left": { + "translate": [ + {"curve": 0.313, "c3": 0.699}, {"time": 0.3333, "x": 5.41, "y": -6.53, "curve": 0.313, "c3": 0.699}, {"time": 0.6667, "x": -0.03, "y": 1.81, "curve": 0.313, "c3": 0.699}, + {"time": 1, "x": 4.51, "y": -7.88, "curve": 0.313, "c3": 0.699}, {"time": 1.3333} + ], + "scale": [ + {"curve": 0.313, "c3": 0.699}, {"time": 0.3333, "x": 0.92, "curve": 0.313, "c3": 0.699}, {"time": 0.6667, "curve": 0.313, "c3": 0.699}, + {"time": 1, "x": 0.92, "curve": 0.313, "c3": 0.699}, {"time": 1.3333} + ] + }, + "@leg-back-left": { + "translate": [ + {"curve": 0.313, "c3": 0.699}, {"time": 0.3333, "x": 3.28, "y": -4.61, "curve": 0.313, "c3": 0.699}, {"time": 0.6667, "x": -0.03, "y": 1.69, "curve": 0.313, "c3": 0.699}, + {"time": 1, "x": 3.25, "y": -6.37, "curve": 0.313, "c3": 0.699}, {"time": 1.3333} + ], + "scale": [ + {"curve": 0.313, "c3": 0.699}, {"time": 0.3333, "x": 0.952, "curve": 0.313, "c3": 0.699}, {"time": 0.6667, "curve": 0.313, "c3": 0.699}, + {"time": 1, "x": 0.951, "curve": 0.313, "c3": 0.699}, {"time": 1.3333} ] }, - "body-fur-14": { - "rotate": [ - {"angle": -17.03, "curve": 0.344, "c2": 0.37, "c3": 0.704, "c4": 0.79}, {"time": 0.0833, "angle": -2.72, "curve": 0.371, "c2": 0.62, "c3": 0.71}, {"time": 0.1167}, - {"time": 0.3833, "angle": -23.85, "curve": 0.25, "c3": 0.75}, {"time": 0.45, "angle": 26.05, "curve": 0.25, "c3": 0.75}, - {"time": 0.6667, "angle": -28.16, "curve": 0.256, "c3": 0.619, "c4": 0.46}, {"time": 0.75, "angle": 13.33} + "@pivot-main": { + "scale": [ + {"curve": 0.313, "c3": 0.699}, {"time": 0.3333, "y": 0.98, "curve": 0.313, "c3": 0.699}, {"time": 0.6667, "curve": 0.313, "c3": 0.699}, + {"time": 1, "y": 0.98, "curve": 0.313, "c3": 0.699}, {"time": 1.3333} ] }, - "body-fur-15": { - "rotate": [ - {"angle": -5.19, "curve": 0.379, "c2": 0.6, "c3": 0.724}, {"time": 0.05, "curve": 0.25, "c3": 0.75}, {"time": 0.3167, "angle": -23.85, "curve": 0.25, "c3": 0.75}, - {"time": 0.3833, "angle": 26.05, "curve": 0.25, "c3": 0.75}, {"time": 0.6, "angle": -28.16, "curve": 0.242, "c3": 0.667, "c4": 0.67}, {"time": 0.75, "angle": 13.33} - ] + "tail": { + "rotate": [{"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "angle": 4.98, "curve": 0.313, "c3": 0.699}, {"time": 1, "angle": -9.69, "curve": 0.313, "c3": 0.699}, {"time": 1.3333}] }, - "body-fur-16": { - "rotate": [ - {"angle": -10.98, "curve": 0.381, "c2": 0.54, "c3": 0.744}, {"time": 0.0833, "curve": 0.25, "c3": 0.75}, {"time": 0.35, "angle": -23.85, "curve": 0.25, "c3": 0.75}, - {"time": 0.4167, "angle": 26.05, "curve": 0.25, "c3": 0.75}, {"time": 0.6333, "angle": -28.16, "curve": 0.246, "c3": 0.635, "c4": 0.55}, {"time": 0.75, "angle": 13.84} + "back": { + "rotate": [{"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "angle": -4.48, "curve": 0.313, "c3": 0.699}, {"time": 1, "angle": 4.37, "curve": 0.313, "c3": 0.699}, {"time": 1.3333}] + }, + "ear-right": {"rotate": [{"curve": 0.461, "c3": 0.543}, {"time": 0.6667, "angle": -1.95, "curve": 0.461, "c3": 0.543}, {"time": 1.3333}]}, + "ear-left": {"rotate": [{"curve": 0.461, "c3": 0.543}, {"time": 0.6667, "angle": -1.95, "curve": 0.461, "c3": 0.543}, {"time": 1.3333}]}, + "@shadow": { + "scale": [ + {"curve": 0.306, "c3": 0.695}, {"time": 0.3333, "x": 1.05, "y": 1.05, "curve": 0.306, "c3": 0.695}, {"time": 0.6667, "curve": 0.306, "c3": 0.695}, + {"time": 1, "x": 1.05, "y": 1.05, "curve": 0.306, "c3": 0.695}, {"time": 1.3333} ] } - }, - "events": [{"time": 0.2167, "name": "start-attack"}, {"time": 0.2833, "name": "hit"}] + } }, - "1963086355": { + "4041893364": { "slots": { - "eyes": {"attachment": [{"time": 0.1333, "name": "eyes-angry"}, {"time": 0.6667, "name": "eyes"}]}, - "mouth": {"attachment": [{"time": 0.1333, "name": "mouth-bite"}, {"time": 0.2667, "name": "mouth-open"}, {"time": 0.4167, "name": "mouth-bite"}, {"time": 0.6667, "name": "mouth"}]} + "eyes": {"attachment": [{"time": 0.0833, "name": "eyes-shut"}, {"time": 0.1667, "name": "eyes-angry"}, {"time": 0.5833, "name": "eyes-shut"}, {"time": 0.6667, "name": "eyes"}]}, + "mouth": {"attachment": [{"time": 0.0833, "name": "mouth-bite"}, {"time": 0.3667, "name": "mouth-open"}, {"time": 0.5833, "name": "mouth"}]} }, "bones": { "@pivot-back": { "rotate": [ - {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "angle": -3.92, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "angle": 2.51, "curve": 0, "c2": 0.3, "c3": 0.544}, - {"time": 0.35, "angle": -4.74, "curve": 0.7, "c4": 0.3}, {"time": 0.4167, "angle": 2}, {"time": 0.5833, "angle": 4, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.75} + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.15, "angle": 3.67, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.3333, "angle": -14.29, "curve": 0.854, "c4": 0.1}, + {"time": 0.3667, "angle": 15.82}, {"time": 0.45, "angle": 16.67, "curve": 0.315, "c4": 0.8}, {"time": 0.5667, "angle": 4.4, "curve": 0, "c2": 0.1, "c3": 0.853}, + {"time": 0.6333, "angle": 6.79, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.8333} ], "translate": [ - {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 71.93, "y": -12.95, "curve": "stepped"}, {"time": 0.25, "x": 71.93, "y": -12.95, "curve": 0, "c2": 0.3, "c3": 0.544}, - {"time": 0.4167, "x": -144.49, "y": -12.95, "curve": "stepped"}, {"time": 0.5833, "x": -144.49, "y": -12.95, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.75} + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.2167, "x": 8.02, "curve": 0, "c2": 0.4, "c3": 0.383}, {"time": 0.3333, "x": -54.3, "y": 61.69, "curve": 0.854, "c4": 0.1}, + {"time": 0.3667, "x": -60.41, "y": 130.13}, {"time": 0.45, "x": -60.41, "y": 130.01, "curve": 0.315, "c4": 0.8}, {"time": 0.5667} ] }, - "leg-back-left-IK": { + "@leg-front-right": { "translate": [ - {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.1167, "x": 93.98, "curve": 0.161, "c3": 0.854}, {"time": 0.25, "x": 67.02, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.3333, "x": -65.1, "y": -1.32, "curve": 0.315, "c4": 0.8}, {"time": 0.4167, "x": -131.67, "curve": "stepped"}, {"time": 0.5833, "x": -131.67, "curve": 0.159, "c4": 0.9}, - {"time": 0.75} + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.2167, "x": -18.54, "y": -11.57}, {"time": 0.25, "x": -23.07, "y": 10.08, "curve": 0, "c2": 0.4, "c3": 0.383}, + {"time": 0.3333, "x": 33.2, "y": -16.27, "curve": 0.854, "c4": 0.1}, {"time": 0.3667, "x": 22.95, "y": 2.68, "curve": "stepped"}, + {"time": 0.45, "x": 22.95, "y": 2.68, "curve": 0.157, "c2": 0.33, "c3": 0.727}, {"time": 0.5333, "x": 29.92, "y": -4.24, "curve": 0.779, "c4": 0.4}, + {"time": 0.5667, "x": -1.45, "y": -24.11, "curve": 0, "c2": 0.1, "c3": 0.853}, {"time": 0.6333, "x": -3.73, "y": -46.5, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.6667} + ], + "scale": [ + {"time": 0.2, "curve": 0.315, "c4": 0.8}, {"time": 0.25, "x": 1.5, "curve": 0, "c2": 0.3, "c3": 0.539}, {"time": 0.3333, "curve": 0.854, "c4": 0.1}, {"time": 0.3667, "x": 1.5}, + {"time": 0.45, "x": 1.51, "curve": 0.157, "c2": 0.33, "c3": 0.727}, {"time": 0.4833} ] }, - "leg-front-right-IK": { + "@leg-front-left": { "translate": [ - {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 21.56, "y": 4.31, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.25, "x": 42.9, "curve": 0, "c2": 0.3, "c3": 0.544}, - {"time": 0.3667, "x": -104.26, "y": 42.61, "curve": 0.161, "c4": 0.85}, {"time": 0.4167, "x": -153.64, "curve": "stepped"}, {"time": 0.5833, "x": -153.64, "curve": 0.154, "c4": 0.9}, - {"time": 0.7, "x": 13.43, "curve": 0.161, "c3": 0.854}, {"time": 0.75} + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.2167, "x": -6.84, "y": -9.77, "curve": "stepped"}, {"time": 0.5667, "x": -6.84, "y": -9.77, "curve": 0, "c2": 0.1, "c3": 0.85}, + {"time": 0.6333, "x": -6.29, "y": -18.69, "curve": 0, "c2": 0.23, "c3": 0.365, "c4": 0.58}, {"time": 0.6667, "x": -3.64, "y": -2.46, "curve": 0.177, "c2": 0.35, "c3": 0.731}, + {"time": 0.8333} ] }, - "leg-front-left-IK": { + "@leg-back-left": { "translate": [ - {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 43.11, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "x": 48.71, "y": -1.66, "curve": 0, "c2": 0.3, "c3": 0.544}, - {"time": 0.3667, "x": -87.39, "y": 18.71, "curve": 0.161, "c4": 0.85}, {"time": 0.4167, "x": -150.32, "y": 0.83}, {"time": 0.5833, "x": -142.85, "curve": 0.154, "c4": 0.9}, - {"time": 0.7, "x": 13.43, "curve": 0.161, "c3": 0.854}, {"time": 0.75} + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.2167, "x": -0.11, "y": -2.73, "curve": "stepped"}, {"time": 0.5667, "x": -0.11, "y": -2.73, "curve": 0, "c2": 0.1, "c3": 0.85}, + {"time": 0.6333, "x": -0.46, "y": -6.19, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.8333} ] }, - "@leg-front-left": { + "@pivot-main": { "translate": [ - {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": -0.28, "y": 3.31, "curve": 0, "c2": 0.3, "c3": 0.544}, - {"time": 0.25, "x": -0.62, "y": -3.21, "curve": 0, "c2": 0.25, "c3": 0.457, "c4": 0.73}, {"time": 0.3667, "x": -15.24, "y": -11.32, "curve": 0.325, "c2": 0.6, "c3": 0.672}, - {"time": 0.4167, "x": -17.97, "y": -3.57, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5833, "x": -18.47, "y": -10.19, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.75} - ] + {"time": 0.15, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "x": -73.35, "y": 43, "curve": "stepped"}, {"time": 0.45, "x": -73.35, "y": 43, "curve": 0.315, "c4": 0.8}, + {"time": 0.5667, "x": -146.44, "curve": "stepped"}, {"time": 0.6333, "x": -146.44, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.7333, "x": -45.61, "y": 50.15, "curve": 0.315, "c4": 0.8}, {"time": 0.8333} + ], + "scale": [{"time": 0.5667, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.6333, "y": 0.98, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.7333}] }, - "@leg-front-right": { + "leg-front-right-IK": { "translate": [ - {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 3.63, "y": 19.84, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.25, "x": -10.53, "y": -16.98, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.4167, "x": -10.44, "y": -18.31, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.5833, "x": -10.92, "y": -30.23, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.75} + {"time": 0.15, "curve": 0, "c2": 0.18, "c3": 0.416, "c4": 0.58}, {"time": 0.2167, "x": 46.14, "y": 69.67}, {"time": 0.25, "x": 16.06, "y": 77.81, "curve": 0, "c2": 0.6, "c3": 0.237}, + {"time": 0.3333, "x": -177.78, "y": 257.33, "curve": 0.854, "c4": 0.1}, {"time": 0.3667, "x": 41.13, "y": -40.33}, {"time": 0.45, "x": 56.91, "y": -45.12, "curve": 0.315, "c4": 0.8}, + {"time": 0.5667, "curve": "stepped"}, {"time": 0.6333, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.6667, "x": -14.68, "y": -19.57, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.8333} ] }, - "@pivot-main": { + "leg-front-left-IK": { "translate": [ - {"time": 0.25, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "y": 26.43, "curve": 0.315, "c4": 0.8}, {"time": 0.4167, "curve": "stepped"}, - {"time": 0.5833, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.6667, "y": 26.43, "curve": 0.315, "c4": 0.8}, {"time": 0.75} + {"time": 0.15, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "x": -54.88, "y": 124.95, "curve": 0.854, "c4": 0.1}, {"time": 0.3667, "x": 40.57, "y": 118.1}, + {"time": 0.45, "x": 58.05, "y": 128.7, "curve": 0.315, "c4": 0.8}, {"time": 0.5667, "curve": "stepped"}, {"time": 0.6333, "curve": 0, "c2": 0.1, "c3": 0.85}, + {"time": 0.6667, "x": -7.79, "y": -10.12, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.8333} ] }, - "@leg-back-left": { + "leg-back-left-IK": { "translate": [ - {"time": 0.1167, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "x": -0.25, "y": -9.22, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.3333, "x": -0.44, "y": 4.57, "curve": 0.306, "c4": 0.8}, {"time": 0.4167, "x": -0.58, "y": -9.21}, - {"time": 0.5833, "x": -0.15, "y": -9.98, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.75} + {"time": 0.0833, "curve": 0.332, "c3": 0.682, "c4": 0.41}, {"time": 0.2167, "x": 7.47, "y": 21.8, "curve": 0, "c2": 0.4, "c3": 0.383}, + {"time": 0.3333, "x": -63.6, "y": 99.05, "curve": 0.854, "c4": 0.1}, {"time": 0.3667, "x": 33.89, "y": 176.06}, {"time": 0.45, "x": 42.14, "y": 193.39, "curve": 0.315, "c4": 0.8}, + {"time": 0.5667, "curve": "stepped"}, {"time": 0.6333, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.75, "x": 24.35, "y": 13.92, "curve": 0.154, "c4": 0.9}, {"time": 0.8333} ] }, "tail": { "rotate": [ - {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "angle": 12.92, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "angle": 18.48, "curve": 0, "c2": 0.3, "c3": 0.544}, - {"time": 0.35, "angle": -6.88, "curve": 0.7, "c4": 0.3}, {"time": 0.4167, "angle": 14}, {"time": 0.5833, "angle": 19.37, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.6833, "angle": -8.78, "curve": 0.313, "c3": 0.699}, {"time": 0.75} + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.15, "angle": 14.68, "curve": 0.315, "c4": 0.8}, {"time": 0.2167, "angle": -12.57}, + {"time": 0.3333, "angle": -14.89, "curve": 0.854, "c4": 0.1}, {"time": 0.3667, "angle": 25.96}, {"time": 0.45, "angle": 33.77}, + {"time": 0.6167, "angle": 26.39, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.7167, "angle": -14.8, "curve": 0.154, "c4": 0.9}, {"time": 0.8333} ] }, "@shadow": { "translate": [ - {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 61.96, "curve": "stepped"}, {"time": 0.25, "x": 61.96, "curve": 0, "c2": 0.3, "c3": 0.544}, - {"time": 0.35, "x": -121.98, "curve": 0.7, "c4": 0.3}, {"time": 0.4167, "x": -154.28, "curve": "stepped"}, {"time": 0.5833, "x": -154.28, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.75} + {"time": 0.15, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.3333, "x": -132.39, "curve": 0.854, "c4": 0.1}, {"time": 0.3667, "x": -111.3, "curve": "stepped"}, + {"time": 0.45, "x": -111.3, "curve": 0.315, "c4": 0.8}, {"time": 0.5667, "x": -132.39, "curve": "stepped"}, {"time": 0.6333, "x": -132.39, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.8333} ], "scale": [ - {"time": 0.0833, "curve": 0, "c2": 0.26, "c3": 0.369, "c4": 0.62}, {"time": 0.25, "x": 1.06, "y": 1.06, "curve": 0.192, "c2": 0.45, "c3": 0.623}, - {"time": 0.35, "x": 0.96, "y": 0.96, "curve": 0.7, "c4": 0.3}, {"time": 0.4167, "x": 1.08, "y": 1.08, "curve": "stepped"}, - {"time": 0.5833, "x": 1.08, "y": 1.08, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.75} - ] - }, - "body-fur-15": { - "rotate": [ - {"angle": -5.19, "curve": 0.379, "c2": 0.6, "c3": 0.724}, {"time": 0.05, "curve": 0.25, "c3": 0.75}, {"time": 0.3167, "angle": -23.85, "curve": 0.25, "c3": 0.75}, - {"time": 0.3833, "angle": 26.05, "curve": 0.25, "c3": 0.75}, {"time": 0.6, "angle": -28.16, "curve": 0.242, "c3": 0.667, "c4": 0.67}, {"time": 0.75, "angle": 13.33} - ] - }, - "body-fur-14": { - "rotate": [ - {"angle": -17.03, "curve": 0.344, "c2": 0.37, "c3": 0.704, "c4": 0.79}, {"time": 0.0833, "angle": -2.72, "curve": 0.371, "c2": 0.62, "c3": 0.71}, {"time": 0.1167}, - {"time": 0.3833, "angle": -23.85, "curve": 0.25, "c3": 0.75}, {"time": 0.45, "angle": 26.05, "curve": 0.25, "c3": 0.75}, - {"time": 0.6667, "angle": -28.16, "curve": 0.256, "c3": 0.619, "c4": 0.46}, {"time": 0.75, "angle": 13.33} - ] - }, - "body-fur-04": { - "rotate": [ - {"angle": -10.8, "curve": 0.353, "c2": 0.4, "c3": 0.696, "c4": 0.77}, {"time": 0.05, "angle": -2.72, "curve": 0.371, "c2": 0.62, "c3": 0.71}, {"time": 0.0833, "curve": 0.25, "c3": 0.75}, - {"time": 0.35, "angle": -23.85, "curve": 0.25, "c3": 0.75}, {"time": 0.4167, "angle": 26.05, "curve": 0.25, "c3": 0.75}, - {"time": 0.6333, "angle": -28.16, "curve": 0.246, "c3": 0.635, "c4": 0.55}, {"time": 0.75, "angle": 12.53} - ] - }, - "body-fur-13": { - "rotate": [ - {"angle": -10.98, "curve": 0.381, "c2": 0.54, "c3": 0.744}, {"time": 0.0833}, {"time": 0.35, "angle": -23.85, "curve": 0.25, "c3": 0.75}, - {"time": 0.4167, "angle": 26.05, "curve": 0.25, "c3": 0.75}, {"time": 0.6333, "angle": -28.16, "curve": 0.246, "c3": 0.635, "c4": 0.55}, {"time": 0.75, "angle": 11.59} - ] - }, - "body-fur-07": { - "rotate": [ - {"angle": -0.82, "curve": 0.356, "c2": 0.65, "c3": 0.691}, {"time": 0.0167, "curve": 0.25, "c3": 0.75}, {"time": 0.2833, "angle": -23.85, "curve": 0.25, "c3": 0.75}, - {"time": 0.35, "angle": 26.05, "curve": 0.25, "c3": 0.75}, {"time": 0.5667, "angle": -28.16, "curve": 0.246, "c3": 0.717, "c4": 0.86}, {"time": 0.75, "angle": 2.91} - ] - }, - "body-fur-08": { - "rotate": [ - {"angle": -2.72, "curve": 0.371, "c2": 0.62, "c3": 0.71}, {"time": 0.0333}, {"time": 0.3, "angle": -23.85, "curve": 0.25, "c3": 0.75}, - {"time": 0.3667, "angle": 26.05, "curve": 0.25, "c3": 0.75}, {"time": 0.5833, "angle": -28.16, "curve": 0.243, "c3": 0.689, "c4": 0.75}, {"time": 0.75, "angle": -0.91} - ] - }, - "body-fur-09": { - "rotate": [ - {"angle": -7.8, "curve": 0.351, "c2": 0.4, "c3": 0.689, "c4": 0.75}, {"time": 0.0333, "angle": -2.72, "curve": 0.371, "c2": 0.62, "c3": 0.71}, {"time": 0.0667}, - {"time": 0.3333, "angle": -23.85, "curve": 0.25, "c3": 0.75}, {"time": 0.4, "angle": 26.05, "curve": 0.25, "c3": 0.75}, - {"time": 0.6167, "angle": -28.16, "curve": 0.243, "c3": 0.649, "c4": 0.6}, {"time": 0.75, "angle": 6.86} - ] - }, - "body-fur-10": { - "rotate": [ - {"angle": -2.72, "curve": 0.371, "c2": 0.62, "c3": 0.71}, {"time": 0.0333, "curve": 0.25, "c3": 0.75}, {"time": 0.3, "angle": -23.85, "curve": 0.25, "c3": 0.75}, - {"time": 0.3667, "angle": 26.05, "curve": 0.25, "c3": 0.75}, {"time": 0.5833, "angle": -28.16, "curve": 0.243, "c3": 0.689, "c4": 0.75}, {"time": 0.75, "angle": 0.34} - ] - }, - "body-fur-06": { - "rotate": [ - {"angle": -7.8, "curve": 0.351, "c2": 0.4, "c3": 0.689, "c4": 0.75}, {"time": 0.0333, "angle": -2.72, "curve": 0.371, "c2": 0.62, "c3": 0.71}, {"time": 0.0667}, - {"time": 0.3333, "angle": -23.85, "curve": 0.25, "c3": 0.75}, {"time": 0.4, "angle": 26.05, "curve": 0.25, "c3": 0.75}, - {"time": 0.6167, "angle": -28.16, "curve": 0.243, "c3": 0.649, "c4": 0.6}, {"time": 0.75, "angle": 13.33} - ] - }, - "body-fur-12": { - "rotate": [ - {"angle": -7.99, "curve": 0.382, "c2": 0.57, "c3": 0.735}, {"time": 0.0667, "curve": 0.25, "c3": 0.75}, {"time": 0.3333, "angle": -23.85, "curve": 0.25, "c3": 0.75}, - {"time": 0.4, "angle": 26.05, "curve": 0.25, "c3": 0.75}, {"time": 0.6167, "angle": -28.16, "curve": 0.243, "c3": 0.649, "c4": 0.6}, {"time": 0.75, "angle": 8.12} - ] - }, - "body-fur-01": { - "rotate": [ - {"angle": -7.99, "curve": 0.382, "c2": 0.57, "c3": 0.735}, {"time": 0.0667}, {"time": 0.3333, "angle": -23.85, "curve": 0.25, "c3": 0.75}, - {"time": 0.4, "angle": 26.05, "curve": 0.25, "c3": 0.75}, {"time": 0.6167, "angle": -28.16, "curve": 0.243, "c3": 0.649, "c4": 0.6}, {"time": 0.75, "angle": 10.51} - ] - }, - "body-fur-11": { - "rotate": [ - {"angle": -5.19, "curve": 0.379, "c2": 0.6, "c3": 0.724}, {"time": 0.05, "curve": 0.25, "c3": 0.75}, {"time": 0.3167, "angle": -23.85, "curve": 0.25, "c3": 0.75}, - {"time": 0.3833, "angle": 26.05, "curve": 0.25, "c3": 0.75}, {"time": 0.6, "angle": -28.16, "curve": 0.242, "c3": 0.667, "c4": 0.67}, {"time": 0.75, "angle": 4.23} - ] - }, - "body-fur-02": { - "rotate": [ - {"angle": -13.91, "curve": 0.351, "c2": 0.39, "c3": 0.701, "c4": 0.78}, {"time": 0.0667, "angle": -2.72, "curve": 0.371, "c2": 0.62, "c3": 0.71}, {"time": 0.1}, - {"time": 0.3667, "angle": -23.85, "curve": 0.25, "c3": 0.75}, {"time": 0.4333, "angle": 26.05, "curve": 0.25, "c3": 0.75}, - {"time": 0.65, "angle": -28.16, "curve": 0.25, "c3": 0.625, "c4": 0.5}, {"time": 0.75, "angle": 13.84} - ] - }, - "body-fur-05": { - "rotate": [ - {"angle": -2.72, "curve": 0.371, "c2": 0.62, "c3": 0.71}, {"time": 0.0333}, {"time": 0.3, "angle": -23.85, "curve": 0.25, "c3": 0.75}, - {"time": 0.3667, "angle": 26.05, "curve": 0.25, "c3": 0.75}, {"time": 0.5833, "angle": -28.16, "curve": 0.243, "c3": 0.689, "c4": 0.75}, {"time": 0.75, "angle": 6.86} - ] - }, - "body-fur-03": { - "rotate": [ - {"angle": -5.19, "curve": 0.379, "c2": 0.6, "c3": 0.724}, {"time": 0.05, "curve": 0.25, "c3": 0.75}, {"time": 0.3167, "angle": -23.85, "curve": 0.25, "c3": 0.75}, - {"time": 0.3833, "angle": 26.05, "curve": 0.25, "c3": 0.75}, {"time": 0.6, "angle": -28.16, "curve": 0.242, "c3": 0.667, "c4": 0.67}, {"time": 0.75, "angle": 5.54} - ] - }, - "body-fur-16": { - "rotate": [ - {"angle": -10.98, "curve": 0.381, "c2": 0.54, "c3": 0.744}, {"time": 0.0833, "curve": 0.25, "c3": 0.75}, {"time": 0.35, "angle": -23.85, "curve": 0.25, "c3": 0.75}, - {"time": 0.4167, "angle": 26.05, "curve": 0.25, "c3": 0.75}, {"time": 0.6333, "angle": -28.16, "curve": 0.246, "c3": 0.635, "c4": 0.55}, {"time": 0.75, "angle": 13.84} + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.15, "x": 1.05, "y": 1.05, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.3333, "x": 0.93, "y": 0.93, "curve": 0.854, "c4": 0.1}, + {"time": 0.3667, "x": 0.95, "y": 0.95}, {"time": 0.45, "x": 0.97, "y": 0.97, "curve": 0.315, "c4": 0.8}, {"time": 0.5667, "x": 1.05, "y": 1.05, "curve": 0, "c2": 0.1, "c3": 0.85}, + {"time": 0.6333, "x": 1.07, "y": 1.07, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.8333} ] } }, - "events": [{"time": 0.25, "name": "start-attack"}, {"time": 0.4167, "name": "hit"}] + "events": [{"time": 0.3333, "name": "start-attack"}, {"time": 0.3667, "name": "hit"}] }, - "2980215034": { - "bones": { - "leg-front-left-IK": { - "translate": [ - {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 3.08, "curve": 0.315, "c4": 0.8}, {"time": 0.15, "x": 13.79, "curve": 0, "c2": 0.3, "c3": 0.544}, - {"time": 0.25, "x": -43.09, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.3333, "x": 26.11, "curve": "stepped"}, {"time": 0.5, "x": 26.11, "curve": 0, "c2": 0.3, "c3": 0.544}, - {"time": 0.5833} - ] + "3130386156": { + "slots": { + "ball": { + "color": [ + {"color": "ffffff00", "curve": "stepped"}, {"time": 0.1667, "color": "ffffff00", "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "color": "ffffffff", "curve": "stepped"}, + {"time": 2.9167, "color": "ffffffff", "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 3.0833, "color": "ffffff00"} + ], + "attachment": [{"name": "ball"}] }, + "eyes": {"attachment": [{"time": 0.5, "name": "eyes-shut"}, {"time": 0.5833, "name": "eyes"}, {"time": 3.0833, "name": "eyes-shut"}, {"time": 3.1667, "name": "eyes"}]}, + "mouth": {"attachment": [{"time": 0.1833, "name": "mouth-open"}, {"time": 0.5, "name": "mouth"}, {"time": 2.7667, "name": "mouth-open"}, {"time": 2.9167, "name": "mouth"}]} + }, + "bones": { "@pivot-back": { "rotate": [ - {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "angle": 5.51, "curve": 0.315, "c4": 0.8}, {"time": 0.2, "angle": -4, "curve": 0.62, "c3": 0.536}, - {"time": 0.5, "angle": 5.83, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5833, "angle": -1.41, "curve": 0.154, "c4": 0.9}, {"time": 0.6667} + {"curve": 0, "c2": 0.3, "c3": 0.546}, {"time": 0.1667, "angle": 6, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "angle": -6.98, "curve": 0.464, "c4": 0.7}, + {"time": 0.5, "angle": 3, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.6667, "curve": "stepped"}, {"time": 2.5833, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 2.75, "angle": 6, "curve": 0, "c2": 0.3, "c3": 0.546}, {"time": 2.9167, "angle": -6, "curve": 0.464, "c4": 0.7}, + {"time": 3.0833, "angle": 6, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 3.25} ], "translate": [ - {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.1167, "x": 13.63, "y": 1.37, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5, "y": -4.7, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.6667} + {"curve": 0, "c2": 0.3, "c3": 0.546}, {"time": 0.1667, "y": 1.78, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "y": 353.14, "curve": 0.464, "c4": 0.7}, + {"time": 0.5, "y": 255, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.6667, "y": 267.67, "curve": 0.156, "c3": 0.693}, + {"time": 1.1667, "x": -30, "y": 267.67, "curve": 0.317, "c3": 0.693}, {"time": 2.1667, "x": 50, "y": 267.67, "curve": 0.317, "c3": 0.693}, + {"time": 2.5833, "y": 267.67, "curve": "stepped"}, {"time": 2.75, "y": 267.67, "curve": 0, "c2": 0.3, "c3": 0.546}, {"time": 2.9167, "y": 310, "curve": 0.464, "c4": 0.7}, + {"time": 3.0833} ] }, "@leg-front-right": { "translate": [ - {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": -1.98, "y": -24.83, "curve": 0.263, "c3": 0.629, "c4": 0.42}, - {"time": 0.1667, "x": -2.18, "y": -3.56, "curve": 0.493, "c2": 0.32, "c4": 0.83}, {"time": 0.3333, "x": -2.18, "y": -2.89, "curve": "stepped"}, - {"time": 0.4833, "x": -2.18, "y": -2.89, "curve": 0, "c2": 0.17, "c3": 0.45, "c4": 0.61}, {"time": 0.5, "x": -1.98, "y": -24.83, "curve": 0, "c2": 0.17, "c3": 0.45, "c4": 0.61}, - {"time": 0.5833, "x": -1.28, "y": 8.38, "curve": 0.345, "c2": 0.53, "c3": 0.751}, {"time": 0.6667} - ] - }, - "tail": { - "rotate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1167, "angle": 11.6, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "angle": -18.66, "curve": 0.313, "c3": 0.699}, - {"time": 0.4667, "angle": 16.43, "curve": 0.315, "c4": 0.8}, {"time": 0.5833, "angle": -6.67, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.6667} + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": -2.8, "y": -31.7, "curve": 0, "c2": 0.3, "c3": 0.546}, {"time": 0.25, "curve": "stepped"}, + {"time": 2.5833, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 2.75, "x": -2.8, "y": -31.7, "curve": 0.315, "c4": 0.8}, {"time": 2.8333, "curve": "stepped"}, + {"time": 3, "curve": 0.315, "c4": 0.8}, {"time": 3.0833, "x": -2.86, "y": -32.44, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 3.25} ] }, - "leg-back-left-IK": { + "@leg-front-left": { "translate": [ - {"time": 0.15, "curve": 0.464, "c4": 0.7}, {"time": 0.25, "x": -43.09, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.4, "x": 34.02, "curve": "stepped"}, - {"time": 0.45, "x": 34.02, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.5833} + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": -1.46, "y": -16.59, "curve": 0, "c2": 0.3, "c3": 0.546}, {"time": 0.25, "curve": "stepped"}, + {"time": 2.5833, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 2.75, "x": -1.46, "y": -16.59, "curve": 0.315, "c4": 0.8}, {"time": 2.8333, "curve": "stepped"}, + {"time": 3, "curve": 0.315, "c4": 0.8}, {"time": 3.0833, "x": -1.64, "y": -18.64, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 3.25} ] }, - "@leg-back-left": { + "leg-front-left-IK": { "translate": [ - {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.1333, "x": -0.27, "y": -3.45, "curve": "stepped"}, {"time": 0.5, "x": -0.27, "y": -3.45, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.6667} + {"time": 0.1667, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "x": -6.9, "y": 380.8, "curve": 0.315, "c4": 0.8}, {"time": 0.5, "x": -5.5, "y": 268.35, "curve": "stepped"}, + {"time": 0.6667, "x": -5.5, "y": 268.35, "curve": 0.317, "c3": 0.693}, {"time": 0.9167, "x": -38.87, "y": 268.35, "curve": 0.317, "c3": 0.693}, + {"time": 1.1667, "x": -10.16, "y": 268.35, "curve": 0.317, "c3": 0.693}, {"time": 1.4167, "x": -39.65, "y": 268.35, "curve": 0.317, "c3": 0.693}, + {"time": 1.6667, "x": 23.98, "y": 268.35, "curve": 0.317, "c3": 0.693}, {"time": 1.9167, "x": 5.36, "y": 268.35, "curve": 0.317, "c3": 0.693}, + {"time": 2.1667, "x": 67.44, "y": 268.35, "curve": 0.317, "c3": 0.693}, {"time": 2.4167, "x": -3.95, "y": 268.35, "curve": 0.317, "c3": 0.693}, + {"time": 2.5833, "x": -5.5, "y": 268.35, "curve": "stepped"}, {"time": 2.9167, "x": -5.5, "y": 268.35, "curve": 0.315, "c4": 0.8}, {"time": 3.0833} ] }, - "@leg-front-left": { + "leg-front-right-IK": { "translate": [ - {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": -1.04, "y": -13.11, "curve": 0.263, "c3": 0.629, "c4": 0.42}, - {"time": 0.1667, "x": -1.14, "y": -2.73, "curve": 0.493, "c2": 0.32, "c4": 0.83}, {"time": 0.3333, "x": -1.16, "y": -1.14, "curve": "stepped"}, - {"time": 0.4833, "x": -1.16, "y": -1.14, "curve": 0, "c2": 0.17, "c3": 0.45, "c4": 0.61}, {"time": 0.5, "x": -1.04, "y": -13.11, "curve": 0, "c2": 0.17, "c3": 0.45, "c4": 0.61}, - {"time": 0.5833, "x": -0.69, "y": 4.65, "curve": 0.345, "c2": 0.53, "c3": 0.751}, {"time": 0.6667} + {"time": 0.1667, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "x": -6.9, "y": 397.8, "curve": 0.315, "c4": 0.8}, {"time": 0.5, "x": 15.4, "y": 268.08, "curve": "stepped"}, + {"time": 0.6667, "x": 15.4, "y": 268.08, "curve": 0.317, "c3": 0.693}, {"time": 0.9167, "x": 24.64, "y": 268.08, "curve": 0.317, "c3": 0.693}, + {"time": 1.1667, "x": -41.71, "y": 268.08, "curve": 0.317, "c3": 0.693}, {"time": 1.4167, "x": 22.12, "y": 268.08, "curve": 0.317, "c3": 0.693}, + {"time": 1.6667, "x": -0.56, "y": 268.08, "curve": 0.317, "c3": 0.693}, {"time": 1.9167, "x": 61.6, "y": 268.08, "curve": 0.317, "c3": 0.693}, + {"time": 2.1667, "x": 33.88, "y": 268.08, "curve": 0.317, "c3": 0.693}, {"time": 2.4167, "x": 49, "y": 268.08, "curve": 0.317, "c3": 0.693}, + {"time": 2.5833, "x": 15.4, "y": 268.08, "curve": "stepped"}, {"time": 2.9167, "x": 15.4, "y": 268.08, "curve": 0.315, "c4": 0.8}, {"time": 3.0833} ] }, - "leg-front-right-IK": { + "leg-back-left-IK": { "translate": [ - {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 3.08, "curve": 0.315, "c4": 0.8}, {"time": 0.15, "x": 13.79, "curve": 0, "c2": 0.3, "c3": 0.544}, - {"time": 0.25, "x": -43.09, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.3333, "x": 26.11, "curve": "stepped"}, {"time": 0.5, "x": 26.11, "curve": 0, "c2": 0.3, "c3": 0.544}, - {"time": 0.5833} + {"time": 0.1667, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "x": -0.4, "y": 363.25, "curve": 0.315, "c4": 0.8}, {"time": 0.5, "x": -26.16, "y": 267.01}, + {"time": 0.6667, "x": -33.59, "y": 267.01, "curve": 0.317, "c3": 0.693}, {"time": 0.9167, "x": -22.32, "y": 267.01, "curve": 0.317, "c3": 0.693}, + {"time": 1.1667, "x": -63.32, "y": 267.01, "curve": 0.317, "c3": 0.693}, {"time": 1.4167, "x": -28.35, "y": 267.01, "curve": 0.317, "c3": 0.693}, + {"time": 1.6667, "x": -28.02, "y": 267.01, "curve": 0.317, "c3": 0.693}, {"time": 1.9167, "x": 14.36, "y": 267.01, "curve": 0.317, "c3": 0.693}, + {"time": 2.1667, "x": 9.14, "y": 267.01, "curve": 0.317, "c3": 0.693}, {"time": 2.4167, "x": 11.99, "y": 267.01, "curve": 0.317, "c3": 0.693}, + {"time": 2.6667, "x": -33.59, "y": 267.01, "curve": "stepped"}, {"time": 2.9167, "x": -33.59, "y": 267.01, "curve": 0.315, "c4": 0.8}, {"time": 3.0833} ] }, - "@shadow": { + "@ball": { + "rotate": [ + {"time": 0.6667, "curve": 0.156, "c3": 0.693}, {"time": 1.1667, "angle": 18, "curve": 0.317, "c3": 0.693}, {"time": 2.1667, "angle": -18, "curve": 0.317, "c3": 0.693}, {"time": 2.75} + ], + "translate": [ + {"time": 0.6667, "curve": 0.156, "c3": 0.693}, {"time": 1.1667, "x": -32, "curve": 0.317, "c3": 0.693}, {"time": 2.1667, "x": 32, "curve": 0.317, "c3": 0.693}, {"time": 2.75} + ], "scale": [ - {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 1.1, "y": 1.1, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "x": 0.8, "y": 0.8, "curve": 0.315, "c4": 0.8}, - {"time": 0.5, "x": 1.1, "y": 1.1, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.6667} + {"x": 0, "y": 0, "curve": "stepped"}, {"time": 0.1667, "x": 0, "y": 0, "curve": 0, "c2": 0.6, "c3": 0.237}, {"time": 0.3333, "x": 1.2, "y": 1.2, "curve": 0.315, "c4": 0.8}, + {"time": 0.5, "curve": "stepped"}, {"time": 2.75, "curve": 0, "c2": 0.3, "c3": 0.546}, {"time": 2.9167, "x": 1.2, "y": 1.2, "curve": 0.315, "c4": 0.8}, {"time": 3.0833, "x": 0, "y": 0} ] }, - "@pivot-main": { - "translate": [{"time": 0.1667, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "y": 133.58, "curve": 0.315, "c4": 0.8}, {"time": 0.5}], + "ball": { "scale": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "y": 0.97, "curve": 0.315, "c4": 0.8}, {"time": 0.1667, "curve": "stepped"}, {"time": 0.4167, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.5, "y": 0.97, "curve": 0.315, "c4": 0.8}, {"time": 0.5833} - ] - }, - "body-fur-16": { - "rotate": [ - {"angle": -30.09, "curve": 0.352, "c2": 0.65, "c3": 0.687}, {"time": 0.0167, "angle": -31.42, "curve": 0.25, "c3": 0.75}, {"time": 0.1833, "angle": 10.37, "curve": 0.25, "c3": 0.75}, - {"time": 0.2667, "angle": -19.33, "curve": 0.25, "c3": 0.75}, {"time": 0.4333, "angle": 26.76, "curve": 0.246, "c3": 0.723, "c4": 0.88}, {"time": 0.6667, "angle": 13.84} - ] - }, - "body-fur-15": { - "rotate": [ - {"angle": -29.64, "curve": 0.289, "c2": 0.17, "c3": 0.755}, {"time": 0.15, "angle": 10.37, "curve": 0.25, "c3": 0.75}, {"time": 0.2333, "angle": -19.33, "curve": 0.25, "c3": 0.75}, - {"time": 0.4, "angle": 26.76, "curve": 0.25, "c3": 0.75}, {"time": 0.6667, "angle": 13.33} - ] - }, - "body-fur-14": { - "rotate": [ - {"angle": -27.38, "curve": 0.366, "c2": 0.63, "c3": 0.703}, {"time": 0.0333, "angle": -31.42, "curve": 0.243, "c3": 0.655, "c4": 0.63}, - {"time": 0.15, "angle": 0.25, "curve": 0.382, "c2": 0.58, "c3": 0.731}, {"time": 0.2, "angle": 10.37}, {"time": 0.2833, "angle": -19.33, "curve": 0.25, "c3": 0.75}, - {"time": 0.45, "angle": 26.76, "curve": 0.244, "c3": 0.7, "c4": 0.79}, {"time": 0.6667, "angle": 13.33} - ] - }, - "body-fur-13": { - "rotate": [ - {"angle": -29.64, "curve": 0.289, "c2": 0.17, "c3": 0.755}, {"time": 0.15, "angle": 10.37}, {"time": 0.2333, "angle": -19.33, "curve": 0.25, "c3": 0.75}, - {"time": 0.4, "angle": 26.76, "curve": 0.25, "c3": 0.75}, {"time": 0.6667, "angle": 11.59} - ] - }, - "body-fur-12": { - "rotate": [ - {"angle": -21.3, "curve": 0.345, "c2": 0.37, "c3": 0.757}, {"time": 0.1167, "angle": 10.37, "curve": 0.25, "c3": 0.75}, {"time": 0.2, "angle": -19.33, "curve": 0.25, "c3": 0.75}, - {"time": 0.3667, "angle": 26.76, "curve": 0.25, "c3": 0.75}, {"time": 0.6167, "angle": -31.42, "curve": 0.269, "c3": 0.618, "c4": 0.42}, {"time": 0.6667, "angle": 8.12} + {"time": 0.3333, "curve": 0.617, "c4": 0.6}, {"time": 0.5, "x": 1.2, "y": 0.9, "curve": 0, "c2": 0.39, "c3": 0.387}, {"time": 0.6667, "curve": "stepped"}, + {"time": 2.5833, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 2.75, "x": 1.2, "y": 0.9, "curve": 0, "c2": 0.3, "c3": 0.546}, {"time": 2.9167} ] }, - "body-fur-11": { + "@pivot-center": { "rotate": [ - {"angle": -10.53, "curve": 0.375, "c2": 0.5, "c3": 0.75}, {"time": 0.0833, "angle": 10.37, "curve": 0.25, "c3": 0.75}, {"time": 0.1667, "angle": -19.33, "curve": 0.25, "c3": 0.75}, - {"time": 0.3333, "angle": 26.76, "curve": 0.25, "c3": 0.75}, {"time": 0.5833, "angle": -31.42, "curve": 0.25, "c3": 0.625, "c4": 0.5}, {"time": 0.6667, "angle": 4.23} + {"time": 0.6667, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.9167, "angle": 2, "curve": 0.461, "c3": 0.543}, {"time": 1.4167, "angle": -2, "curve": 0.461, "c3": 0.543}, + {"time": 1.9167, "angle": 2, "curve": 0.461, "c3": 0.543}, {"time": 2.4167, "angle": -2, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 2.75} ] }, - "body-fur-10": { - "rotate": [ - {"angle": 0.25, "curve": 0.382, "c2": 0.58, "c3": 0.731}, {"time": 0.05, "angle": 10.37, "curve": 0.25, "c3": 0.75}, {"time": 0.1333, "angle": -19.33, "curve": 0.25, "c3": 0.75}, - {"time": 0.3, "angle": 26.76, "curve": 0.25, "c3": 0.75}, {"time": 0.55, "angle": -31.42, "curve": 0.243, "c3": 0.655, "c4": 0.63}, {"time": 0.6667, "angle": 0.34} + "@shadow": { + "translate": [ + {"time": 0.6667, "curve": 0.317, "c3": 0.693}, {"time": 1.1667, "x": -32, "curve": 0.317, "c3": 0.693}, {"time": 2.1667, "x": 32, "curve": 0.317, "c3": 0.693}, {"time": 2.5833} + ], + "scale": [ + {"curve": 0, "c2": 0.3, "c3": 0.546}, {"time": 0.1667, "x": 1.1, "y": 1.1, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "curve": 0.464, "c4": 0.7}, + {"time": 0.5, "x": 1.06, "y": 1.06, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.6667, "curve": "stepped"}, {"time": 2.5833, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 2.75, "x": 1.06, "y": 1.06, "curve": 0, "c2": 0.3, "c3": 0.546}, {"time": 2.9167, "curve": 0.464, "c4": 0.7}, + {"time": 3.0833, "x": 1.1, "y": 1.1, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 3.25} ] }, - "body-fur-09": { + "tail": { "rotate": [ - {"angle": -10.42, "curve": 0.339, "c2": 0.35, "c3": 0.679, "c4": 0.7}, {"time": 0.0333, "angle": 0.25, "curve": 0.382, "c2": 0.58, "c3": 0.731}, {"time": 0.0833, "angle": 10.37}, - {"time": 0.1667, "angle": -19.33, "curve": 0.25, "c3": 0.75}, {"time": 0.3333, "angle": 26.76, "curve": 0.25, "c3": 0.75}, - {"time": 0.5833, "angle": -31.42, "curve": 0.25, "c3": 0.625, "c4": 0.5}, {"time": 0.6667, "angle": 6.86} + {"curve": 0, "c2": 0.3, "c3": 0.546}, {"time": 0.1667, "angle": 17.35, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "angle": -14.67, "curve": 0.464, "c4": 0.7}, + {"time": 0.5, "angle": 19.12, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.6667, "angle": -10.65, "curve": 0.317, "c3": 0.693}, + {"time": 0.9167, "angle": -0.65, "curve": 0.317, "c3": 0.693}, {"time": 1.1667, "angle": -10.65, "curve": 0.317, "c3": 0.693}, + {"time": 1.4167, "angle": -0.65, "curve": 0.317, "c3": 0.693}, {"time": 1.6667, "angle": -10.65, "curve": 0.317, "c3": 0.693}, + {"time": 1.9167, "angle": -0.65, "curve": 0.317, "c3": 0.693}, {"time": 2.1667, "angle": -10.65, "curve": 0.317, "c3": 0.693}, + {"time": 2.4167, "angle": -0.65, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 2.5833, "angle": -10.65, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 2.75, "angle": 19.35, "curve": 0, "c2": 0.3, "c3": 0.546}, {"time": 2.9167, "angle": -18.65, "curve": 0, "c2": 0.3, "c3": 0.546}, + {"time": 3.0833, "angle": 17.35, "curve": 0.317, "c3": 0.693}, {"time": 3.25} ] - }, - "body-fur-08": { + } + } + }, + "2103635194": { + "slots": { + "eyes": {"attachment": [{"time": 0.1, "name": "eyes-shut"}, {"time": 1, "name": "eyes"}]}, + "leg-back-left": {"attachment": [{"time": 0.0667, "name": "sumo-leg-back-left-long"}, {"time": 0.9, "name": "sumo-leg-back-left"}]} + }, + "bones": { + "@pivot-back": { "rotate": [ - {"angle": 4.93, "curve": 0.375, "c2": 0.62, "c3": 0.716}, {"time": 0.0333, "angle": 10.37}, {"time": 0.1167, "angle": -19.33, "curve": 0.25, "c3": 0.75}, - {"time": 0.2833, "angle": 26.76, "curve": 0.25, "c3": 0.75}, {"time": 0.5333, "angle": -31.42, "curve": 0.243, "c3": 0.68, "c4": 0.71}, {"time": 0.6667, "angle": -0.91} + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "angle": -18, "curve": 0.317, "c3": 0.693}, {"time": 0.3333, "angle": -17, "curve": 0.317, "c3": 0.693}, + {"time": 0.5, "angle": -18, "curve": 0.317, "c3": 0.693}, {"time": 0.6667, "angle": -17, "curve": 0.317, "c3": 0.693}, {"time": 0.8333, "angle": -18, "curve": 0.317, "c3": 0.693}, + {"time": 1.0833} + ], + "translate": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": 33.94, "y": -52, "curve": "stepped"}, {"time": 0.8333, "x": 33.94, "y": -52, "curve": 0.317, "c3": 0.693}, {"time": 1.0833} ] }, - "body-fur-07": { - "rotate": [ - {"angle": -5, "curve": 0.381, "c2": 0.55, "c3": 0.742}, {"time": 0.0667, "angle": 10.37, "curve": 0.25, "c3": 0.75}, {"time": 0.15, "angle": -19.33, "curve": 0.25, "c3": 0.75}, - {"time": 0.3167, "angle": 26.76, "curve": 0.25, "c3": 0.75}, {"time": 0.5667, "angle": -31.42, "curve": 0.245, "c3": 0.637, "c4": 0.56}, {"time": 0.6667, "angle": 2.91} + "@leg-front-left": { + "translate": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": -27.99, "y": 1.7, "curve": 0.25, "c3": 0.75}, {"time": 0.3333, "x": -26.93, "y": -1.56, "curve": 0.25, "c3": 0.75}, + {"time": 0.5, "x": -27.99, "y": 1.7, "curve": 0.25, "c3": 0.75}, {"time": 0.6667, "x": -26.93, "y": -1.56, "curve": 0.25, "c3": 0.75}, + {"time": 0.8333, "x": -27.99, "y": 1.7, "curve": 0.317, "c3": 0.693}, {"time": 1.0833} ] }, - "body-fur-06": { - "rotate": [ - {"angle": -29.66, "curve": 0.277, "c2": 0.14, "c3": 0.667, "c4": 0.67}, {"time": 0.1, "angle": 0.25, "curve": 0.382, "c2": 0.58, "c3": 0.731}, {"time": 0.15, "angle": 10.37}, - {"time": 0.2333, "angle": -19.33, "curve": 0.25, "c3": 0.75}, {"time": 0.4, "angle": 26.76, "curve": 0.25, "c3": 0.75}, {"time": 0.6667, "angle": 13.33} + "@leg-front-right": { + "translate": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": -84.32, "y": 39.72, "curve": 0.317, "c3": 0.693}, {"time": 0.3333, "x": -82.71, "y": 34.75, "curve": 0.317, "c3": 0.693}, + {"time": 0.5, "x": -84.32, "y": 39.72, "curve": 0.317, "c3": 0.693}, {"time": 0.6667, "x": -82.71, "y": 34.75, "curve": 0.317, "c3": 0.693}, + {"time": 0.8333, "x": -84.32, "y": 39.72, "curve": 0.317, "c3": 0.693}, {"time": 1.0833} ] }, - "body-fur-05": { - "rotate": [ - {"angle": -16.05, "curve": 0.363, "c2": 0.44, "c3": 0.755}, {"time": 0.1, "angle": 10.37}, {"time": 0.1833, "angle": -19.33, "curve": 0.25, "c3": 0.75}, - {"time": 0.35, "angle": 26.76, "curve": 0.25, "c3": 0.75}, {"time": 0.6, "angle": -31.42, "curve": 0.258, "c3": 0.619, "c4": 0.45}, {"time": 0.6667, "angle": 6.86} - ] + "leg-front-right-IK": { + "translate": [{"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": 40.32, "curve": "stepped"}, {"time": 0.8333, "x": 40.32, "curve": 0.317, "c3": 0.693}, {"time": 1.0833}] }, - "body-fur-04": { - "rotate": [ - {"angle": -30.09, "curve": 0.352, "c2": 0.65, "c3": 0.687}, {"time": 0.0167, "angle": -31.42, "curve": 0.243, "c3": 0.655, "c4": 0.63}, - {"time": 0.1333, "angle": 0.25, "curve": 0.382, "c2": 0.58, "c3": 0.731}, {"time": 0.1833, "angle": 10.37}, {"time": 0.2667, "angle": -19.33, "curve": 0.25, "c3": 0.75}, - {"time": 0.4333, "angle": 26.76, "curve": 0.246, "c3": 0.723, "c4": 0.88}, {"time": 0.6667, "angle": 12.53} - ] + "leg-front-left-IK": { + "translate": [{"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": 26.51, "curve": "stepped"}, {"time": 0.8333, "x": 26.51, "curve": 0.317, "c3": 0.693}, {"time": 1.0833}] }, - "body-fur-03": { - "rotate": [ - {"angle": -25.98, "curve": 0.32, "c2": 0.29, "c3": 0.757}, {"time": 0.1333, "angle": 10.37, "curve": 0.25, "c3": 0.75}, {"time": 0.2167, "angle": -19.33, "curve": 0.25, "c3": 0.75}, - {"time": 0.3833, "angle": 26.76, "curve": 0.25, "c3": 0.75}, {"time": 0.6333, "angle": -31.42, "curve": 0.284, "c3": 0.625, "c4": 0.38}, {"time": 0.6667, "angle": 5.54} + "leg-back-left-IK": { + "translate": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": -21.75, "y": 117.39, "curve": 0.617, "c4": 0.6}, + {"time": 0.2667, "x": -93.41, "y": 108.34, "curve": 0, "c2": 0.4, "c3": 0.383}, {"time": 0.35, "x": -22.69, "y": 117.03, "curve": 0.617, "c4": 0.6}, + {"time": 0.45, "x": -78.11, "y": 117.52, "curve": 0, "c2": 0.4, "c3": 0.383}, {"time": 0.55, "x": -20.24, "y": 116.41, "curve": 0.617, "c4": 0.6}, + {"time": 0.6333, "x": -82.4, "y": 114.46, "curve": 0, "c2": 0.4, "c3": 0.383}, {"time": 0.7333, "x": -22.08, "y": 116.41, "curve": 0.434, "c3": 0.739, "c4": 0.4}, + {"time": 0.8333, "x": -68.55, "y": 121.38, "curve": 0.223, "c2": 0.33, "c3": 0.336}, {"time": 1.0833} ] }, - "body-fur-02": { + "tail": { "rotate": [ - {"angle": -25.95, "curve": 0.303, "c2": 0.24, "c3": 0.674, "c4": 0.69}, {"time": 0.0833, "angle": 0.25, "curve": 0.382, "c2": 0.58, "c3": 0.731}, - {"time": 0.1333, "angle": 10.37, "curve": 0.25, "c3": 0.75}, {"time": 0.2167, "angle": -19.33, "curve": 0.25, "c3": 0.75}, {"time": 0.3833, "angle": 26.76, "curve": 0.25, "c3": 0.75}, - {"time": 0.6333, "angle": -31.42, "curve": 0.284, "c3": 0.625, "c4": 0.38}, {"time": 0.6667, "angle": 13.84} + {"curve": 0, "c2": 0.3, "c3": 0.546}, {"time": 0.1667, "angle": 25.35, "curve": 0.317, "c3": 0.693}, {"time": 0.3333, "angle": 33.35, "curve": 0.317, "c3": 0.693}, + {"time": 0.5, "angle": 25.35, "curve": 0.317, "c3": 0.693}, {"time": 0.6667, "angle": 33.35, "curve": 0.317, "c3": 0.693}, + {"time": 0.9167, "angle": 25.35, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 1.0833} ] }, - "body-fur-01": { - "rotate": [ - {"angle": -10.53, "curve": 0.375, "c2": 0.5, "c3": 0.75}, {"time": 0.0833, "angle": 10.37}, {"time": 0.1667, "angle": -19.33, "curve": 0.25, "c3": 0.75}, - {"time": 0.3333, "angle": 26.76, "curve": 0.25, "c3": 0.75}, {"time": 0.5833, "angle": -31.42, "curve": 0.25, "c3": 0.625, "c4": 0.5}, {"time": 0.6667, "angle": 10.51} + "@shadow": { + "translate": [{"curve": 0, "c2": 0.3, "c3": 0.546}, {"time": 0.1667, "x": 32.73, "curve": "stepped"}, {"time": 0.8333, "x": 32.73, "curve": 0.317, "c3": 0.693}, {"time": 1.0833}], + "scale": [ + {"time": 0.1667, "curve": 0.317, "c3": 0.693}, {"time": 0.25, "x": 1.02, "y": 1.02, "curve": 0.317, "c3": 0.693}, {"time": 0.3333, "curve": 0.317, "c3": 0.693}, + {"time": 0.4167, "x": 1.02, "y": 1.02, "curve": 0.317, "c3": 0.693}, {"time": 0.5, "curve": 0.317, "c3": 0.693}, {"time": 0.5833, "x": 1.02, "y": 1.02, "curve": 0.317, "c3": 0.693}, + {"time": 0.6667, "curve": 0.317, "c3": 0.693}, {"time": 0.8333, "x": 1.02, "y": 1.02, "curve": 0.317, "c3": 0.693}, {"time": 1.0833} ] } - }, - "events": [{"time": 0.15, "name": "jump"}] + } }, - "160094506": { + "488301700": { + "slots": { + "eyes": {"attachment": [{"time": 0.3, "name": "eyes-angry"}, {"time": 1.2333, "name": "eyes"}]}, + "mouth": {"attachment": [{"time": 0.3, "name": "mouth-bite"}, {"time": 1.2333, "name": "mouth"}]} + }, "bones": { - "@pivot-back": { - "rotate": [ - {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "angle": 5.51, "curve": 0.315, "c4": 0.8}, {"time": 0.2, "angle": -4, "curve": 0.62, "c3": 0.536}, - {"time": 0.5, "angle": 5.83, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5833, "angle": -1.41, "curve": 0.154, "c4": 0.9}, {"time": 0.6667} - ], - "translate": [ - {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.1167, "x": 13.63, "y": 1.37, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5, "y": -4.7, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.6667} - ] - }, - "@leg-front-right": { - "translate": [ - {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": -1.98, "y": -24.83, "curve": 0.263, "c3": 0.629, "c4": 0.42}, - {"time": 0.1667, "x": -2.18, "y": -3.56, "curve": 0.493, "c2": 0.32, "c4": 0.83}, {"time": 0.3333, "x": -2.18, "y": -2.89, "curve": "stepped"}, - {"time": 0.4833, "x": -2.18, "y": -2.89, "curve": 0, "c2": 0.17, "c3": 0.45, "c4": 0.61}, {"time": 0.5, "x": -1.98, "y": -24.83, "curve": 0, "c2": 0.17, "c3": 0.45, "c4": 0.61}, - {"time": 0.5833, "x": -1.28, "y": 8.38, "curve": 0.345, "c2": 0.53, "c3": 0.751}, {"time": 0.6667} - ] - }, - "leg-front-right-IK": { + "@pivot-back": { + "rotate": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1, "angle": 6, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.2, "angle": -6, "curve": 0.315, "c4": 0.8}, + {"time": 0.3, "angle": 5.5, "curve": 0.317, "c3": 0.693}, {"time": 0.3833, "angle": 4.5, "curve": 0.317, "c3": 0.693}, {"time": 0.4667, "angle": 5.5, "curve": 0.317, "c3": 0.693}, + {"time": 0.55, "angle": 4.5, "curve": 0.317, "c3": 0.693}, {"time": 0.6333, "angle": 5.5, "curve": 0.317, "c3": 0.693}, {"time": 0.7167, "angle": 4.5, "curve": 0.317, "c3": 0.693}, + {"time": 0.8, "angle": 5.5, "curve": 0.317, "c3": 0.693}, {"time": 0.8833, "angle": 4.5, "curve": 0.317, "c3": 0.693}, {"time": 0.9667, "angle": 5.5, "curve": 0.317, "c3": 0.693}, + {"time": 1.05, "angle": 4.5, "curve": 0.317, "c3": 0.693}, {"time": 1.1333, "angle": 5.5, "curve": 0.317, "c3": 0.693}, {"time": 1.2167, "angle": 6, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 1.3167, "angle": -3, "curve": 0.315, "c4": 0.8}, {"time": 1.4167} + ], "translate": [ - {"time": 0.15, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.25, "x": 26.77, "curve": 0.315, "c4": 0.8}, {"time": 0.35, "x": -20.02, "curve": "stepped"}, - {"time": 0.5, "x": -20.02, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.5833} + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1, "y": 4.69, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.2, "y": 43.73, "curve": 0.315, "c4": 0.8}, + {"time": 0.3, "y": 3.84, "curve": "stepped"}, {"time": 1.2167, "y": 3.84, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1.3167, "y": 43.73, "curve": 0.315, "c4": 0.8}, {"time": 1.4167} ] }, "@leg-front-left": { "translate": [ - {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": -1.04, "y": -13.11, "curve": 0.263, "c3": 0.629, "c4": 0.42}, - {"time": 0.1667, "x": -1.14, "y": -2.73, "curve": 0.493, "c2": 0.32, "c4": 0.83}, {"time": 0.3333, "x": -1.16, "y": -1.14, "curve": "stepped"}, - {"time": 0.4833, "x": -1.16, "y": -1.14, "curve": 0, "c2": 0.17, "c3": 0.45, "c4": 0.61}, {"time": 0.5, "x": -1.04, "y": -13.11, "curve": 0, "c2": 0.17, "c3": 0.45, "c4": 0.61}, - {"time": 0.5833, "x": -0.69, "y": 4.65, "curve": 0.345, "c2": 0.53, "c3": 0.751}, {"time": 0.6667} + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1, "x": -1.28, "y": -14.48, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.2, "curve": 0.315, "c4": 0.8}, + {"time": 0.3, "x": -0.86, "y": -9.28, "curve": 0.317, "c3": 0.693}, {"time": 0.3833, "x": -4.55, "y": -7.13, "curve": 0.317, "c3": 0.693}, + {"time": 0.4667, "x": -0.86, "y": -9.28, "curve": 0.317, "c3": 0.693}, {"time": 0.55, "x": -4.55, "y": -7.13, "curve": 0.317, "c3": 0.693}, + {"time": 0.6333, "x": -0.86, "y": -9.28, "curve": 0.317, "c3": 0.693}, {"time": 0.7167, "x": -4.55, "y": -7.13, "curve": 0.317, "c3": 0.693}, + {"time": 0.8, "x": -0.86, "y": -9.28, "curve": 0.317, "c3": 0.693}, {"time": 0.8833, "x": -4.55, "y": -7.13, "curve": 0.317, "c3": 0.693}, + {"time": 0.9667, "x": -0.86, "y": -9.28, "curve": 0.317, "c3": 0.693}, {"time": 1.05, "x": -4.55, "y": -7.13, "curve": 0.317, "c3": 0.693}, + {"time": 1.1333, "x": -0.86, "y": -9.28, "curve": 0.317, "c3": 0.693}, {"time": 1.2167, "x": -4.55, "y": -7.13, "curve": 0.317, "c3": 0.693}, {"time": 1.3167} ] }, - "leg-front-left-IK": { + "@leg-front-right": { "translate": [ - {"time": 0.15, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.25, "x": 26.77, "curve": 0.315, "c4": 0.8}, {"time": 0.35, "x": -20.02, "curve": "stepped"}, - {"time": 0.5, "x": -20.02, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.5833} + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1, "x": -2.46, "y": -27.93, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.2, "curve": 0.315, "c4": 0.8}, + {"time": 0.3, "x": -2.46, "y": -27.93, "curve": 0.317, "c3": 0.693}, {"time": 0.3833, "x": -2.06, "y": -21.45, "curve": 0.317, "c3": 0.693}, + {"time": 0.4667, "x": -2.44, "y": -26.54, "curve": 0.317, "c3": 0.693}, {"time": 0.55, "x": -2.06, "y": -21.45, "curve": 0.317, "c3": 0.693}, + {"time": 0.6333, "x": -2.44, "y": -26.54, "curve": 0.317, "c3": 0.693}, {"time": 0.7167, "x": -2.06, "y": -21.45, "curve": 0.317, "c3": 0.693}, + {"time": 0.8, "x": -2.44, "y": -26.54, "curve": 0.317, "c3": 0.693}, {"time": 0.8833, "x": -2.06, "y": -21.45, "curve": 0.317, "c3": 0.693}, + {"time": 0.9667, "x": -2.44, "y": -26.54, "curve": 0.317, "c3": 0.693}, {"time": 1.05, "x": -2.06, "y": -21.45, "curve": 0.317, "c3": 0.693}, + {"time": 1.1333, "x": -2.44, "y": -26.54, "curve": 0.317, "c3": 0.693}, {"time": 1.2167, "x": -2.46, "y": -27.93, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1.3167} ] }, - "@leg-back-left": { + "@pivot-main": { "translate": [ - {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.1333, "x": -0.27, "y": -3.45, "curve": "stepped"}, {"time": 0.5, "x": -0.27, "y": -3.45, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.6667} + {"time": 0.1, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.3, "x": -154.22, "curve": "stepped"}, {"time": 1.2167, "x": -154.22, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 1.4167} ] }, - "leg-back-left-IK": { + "leg-front-left-IK": { "translate": [ - {"time": 0.15, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.25, "x": 26.77, "curve": "stepped"}, {"time": 0.3, "x": 26.77, "curve": 0.315, "c4": 0.8}, - {"time": 0.4167, "x": -20.02, "curve": "stepped"}, {"time": 0.5, "x": -20.02, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.5833} + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3, "x": 27.41, "curve": "stepped"}, {"time": 1.2167, "x": 27.41, "curve": 0.306, "c4": 0.8}, + {"time": 1.3167, "x": -61.13, "curve": 0.315, "c4": 0.8}, {"time": 1.4167} ] }, - "@pivot-main": { - "translate": [{"time": 0.1667, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "y": 133.58, "curve": 0.315, "c4": 0.8}, {"time": 0.5}], + "leg-front-right-IK": {"translate": [{"time": 1.2167, "curve": 0.315, "c4": 0.8}, {"time": 1.3167, "x": -61.13, "curve": 0.315, "c4": 0.8}, {"time": 1.4167}]}, + "@shadow": { + "translate": [ + {"time": 0.1, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.3, "x": -162.84, "curve": "stepped"}, {"time": 1.2167, "x": -162.84, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 1.4167} + ], "scale": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "y": 0.97, "curve": 0.315, "c4": 0.8}, {"time": 0.1667, "curve": "stepped"}, {"time": 0.4167, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.5, "y": 0.97, "curve": 0.315, "c4": 0.8}, {"time": 0.5833} + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1, "x": 1.1, "y": 1.1, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.2, "x": 0.92, "y": 0.92, "curve": 0.315, "c4": 0.8}, + {"time": 0.3, "x": 1.1, "y": 1.1, "curve": 0.317, "c3": 0.693}, {"time": 0.3833, "x": 1.06, "y": 1.06, "curve": 0.317, "c3": 0.693}, + {"time": 0.4667, "x": 1.1, "y": 1.1, "curve": 0.317, "c3": 0.693}, {"time": 0.55, "x": 1.06, "y": 1.06, "curve": 0.317, "c3": 0.693}, + {"time": 0.6333, "x": 1.1, "y": 1.1, "curve": 0.317, "c3": 0.693}, {"time": 0.7167, "x": 1.06, "y": 1.06, "curve": 0.317, "c3": 0.693}, + {"time": 0.8, "x": 1.1, "y": 1.1, "curve": 0.317, "c3": 0.693}, {"time": 0.8833, "x": 1.06, "y": 1.06, "curve": 0.317, "c3": 0.693}, + {"time": 0.9667, "x": 1.1, "y": 1.1, "curve": 0.317, "c3": 0.693}, {"time": 1.05, "x": 1.06, "y": 1.06, "curve": 0.317, "c3": 0.693}, + {"time": 1.1333, "x": 1.1, "y": 1.1, "curve": "stepped"}, {"time": 1.2167, "x": 1.1, "y": 1.1, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 1.3167, "x": 0.92, "y": 0.92, "curve": 0.315, "c4": 0.8}, {"time": 1.4167} ] }, "tail": { "rotate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1167, "angle": 11.6, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "angle": -18.66, "curve": 0.313, "c3": 0.699}, - {"time": 0.4667, "angle": 16.43, "curve": 0.315, "c4": 0.8}, {"time": 0.5833, "angle": -6.67, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.6667} + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1, "angle": 16.7, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.2, "angle": -16.65, "curve": 0.315, "c4": 0.8}, + {"time": 0.3, "angle": 17.85, "curve": 0.317, "c3": 0.693}, {"time": 0.4333, "angle": 15.5, "curve": 0.317, "c3": 0.693}, {"time": 0.5667, "angle": 17.85, "curve": 0.317, "c3": 0.693}, + {"time": 0.7, "angle": 15.5, "curve": 0.317, "c3": 0.693}, {"time": 0.8333, "angle": 17.85, "curve": 0.317, "c3": 0.693}, {"time": 0.95, "angle": 15.5, "curve": 0.317, "c3": 0.693}, + {"time": 1.0833, "angle": 17.85, "curve": 0.317, "c3": 0.693}, {"time": 1.2167, "angle": 15.5, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 1.3167, "angle": -14.65, "curve": 0.315, "c4": 0.8}, {"time": 1.4167} ] - }, - "@shadow": { + } + } + }, + "503804557": { + "slots": { + "eyes": {"attachment": [{"name": "eyes-happy"}]}, + "leg-back-left": {"attachment": [{"time": 0.2833, "name": "sumo-leg-back-left-stretch"}, {"time": 0.7167, "name": "sumo-leg-back-left"}]}, + "leg-front-left": {"attachment": [{"time": 0.2, "name": "sumo-leg-front-left-stretch"}, {"time": 0.6, "name": "sumo-leg-front-left"}]} + }, + "bones": { + "@leg-front-left": { + "translate": [ + {"x": -14.55, "y": -2.39, "curve": 0.374, "c2": 0.33, "c3": 0.72, "c4": 0.68}, {"time": 0.0333, "x": -24.69, "y": -4.71, "curve": 0.37, "c2": 0.57, "c3": 0.746}, + {"time": 0.1667, "x": -24.61, "y": -1.31, "curve": 0.37, "c2": 0.57, "c3": 0.746}, {"time": 0.3333, "x": 13.45, "y": -27.72, "curve": 0.345, "c2": 0.53, "c3": 0.751}, + {"time": 0.4833, "x": 40.66, "y": -4.9, "curve": 0.262, "c3": 0.63, "c4": 0.42}, {"time": 0.5667, "x": 49.25, "y": 8.32, "curve": 0.343, "c2": 0.3, "c3": 0.688, "c4": 0.65}, + {"time": 0.7, "x": 9.23, "y": 17.43, "curve": 0.255, "c3": 0.659, "c4": 0.47}, {"time": 0.75, "x": -14.55, "y": -2.39} + ], "scale": [ - {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 1.1, "y": 1.1, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "x": 0.8, "y": 0.8, "curve": 0.315, "c4": 0.8}, - {"time": 0.5, "x": 1.1, "y": 1.1, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.6667} + {"curve": 0.459, "c2": 0.59, "c3": 0.838}, {"time": 0.0333, "x": 0.935, "curve": 0.331, "c3": 0.677, "c4": 0.4}, {"time": 0.0667, "x": 0.87, "curve": 0.464, "c4": 0.7}, {"time": 0.1667} ] }, - "body-fur-16": { - "rotate": [ - {"angle": 17.78, "curve": 0.352, "c2": 0.65, "c3": 0.687}, {"time": 0.0167, "angle": 18.96, "curve": 0.25, "c3": 0.75}, {"time": 0.1833, "angle": -16.75, "curve": 0.25, "c3": 0.75}, - {"time": 0.2667, "angle": 6.13, "curve": 0.25, "c3": 0.75}, {"time": 0.4333, "angle": -32.74, "curve": 0.246, "c3": 0.723, "c4": 0.88}, {"time": 0.6667, "angle": 13.84} + "leg-front-left-IK": { + "translate": [ + {"x": 0.33, "y": 2.27, "curve": 0.154, "c4": 0.9}, {"time": 0.0833, "x": 32.98, "y": -4.28, "curve": 0.269, "c2": 0.57, "c3": 0.577}, + {"time": 0.1667, "x": 53.3, "y": 2.35, "curve": 0.461, "c3": 0.543}, {"time": 0.4167, "x": -85.44, "y": 106.83, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.5167, "x": -85.78, "y": 86.09, "curve": 0.143, "c3": 0.57, "c4": 0.46}, {"time": 0.7, "x": -26.89, "y": 8.67, "curve": 0, "c2": 0.09, "c3": 0.479, "c4": 0.56}, + {"time": 0.75, "x": 0.33, "y": 2.27} ] }, - "body-fur-15": { - "rotate": [ - {"angle": 17.44, "curve": 0.289, "c2": 0.17, "c3": 0.755}, {"time": 0.15, "angle": -16.75, "curve": 0.25, "c3": 0.75}, {"time": 0.2333, "angle": 6.13, "curve": 0.25, "c3": 0.75}, - {"time": 0.4, "angle": -32.74, "curve": 0.25, "c3": 0.75}, {"time": 0.65, "angle": 18.96, "curve": 0.305, "c3": 0.64, "c4": 0.36}, {"time": 0.6667, "angle": 13.33} + "leg-back-left-IK": { + "translate": [ + {"x": 17.64, "y": 16.11, "curve": 0.455, "c2": 0.58, "c3": 0.847}, {"time": 0.0333, "curve": 0, "c2": 0.1, "c3": 0.85}, + {"time": 0.2333, "x": -50.37, "curve": 0, "c2": 0.09, "c3": 0.466, "c4": 0.7}, {"time": 0.3, "x": 11.38, "y": 18.2, "curve": 0.177, "c2": 0.44, "c3": 0.617}, + {"time": 0.5333, "x": 56.74, "y": 103.8, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.6667, "x": 71.93, "y": 112.16, "curve": 0.315, "c4": 0.8}, {"time": 0.75, "x": 17.64, "y": 16.11} ] }, - "body-fur-14": { - "rotate": [ - {"angle": 15.36, "curve": 0.366, "c2": 0.63, "c3": 0.703}, {"time": 0.0333, "angle": 18.96, "curve": 0.243, "c3": 0.655, "c4": 0.63}, - {"time": 0.15, "angle": -8.1, "curve": 0.382, "c2": 0.58, "c3": 0.731}, {"time": 0.2, "angle": -16.75}, {"time": 0.2833, "angle": 6.13, "curve": 0.25, "c3": 0.75}, - {"time": 0.45, "angle": -32.74, "curve": 0.244, "c3": 0.7, "c4": 0.79}, {"time": 0.6667, "angle": 13.33} + "@shadow": { + "scale": [ + {"curve": 0.313, "c3": 0.699}, {"time": 0.25, "x": 0.94, "y": 0.94, "curve": 0.313, "c3": 0.699}, {"time": 0.4333, "x": 0.8, "y": 0.8, "curve": 0.315, "c4": 0.8}, {"time": 0.75} ] }, - "body-fur-13": { - "rotate": [ - {"angle": 17.44, "curve": 0.289, "c2": 0.17, "c3": 0.755}, {"time": 0.15, "angle": -16.75}, {"time": 0.2333, "angle": 6.13, "curve": 0.25, "c3": 0.75}, - {"time": 0.4, "angle": -32.74, "curve": 0.25, "c3": 0.75}, {"time": 0.65, "angle": 18.96, "curve": 0.305, "c3": 0.64, "c4": 0.36}, {"time": 0.6667, "angle": 11.59} - ] + "tail": { + "rotate": [{"curve": 0.161, "c3": 0.854}, {"time": 0.25, "angle": -15.26, "curve": 0, "c2": 0.3, "c3": 0.546}, {"time": 0.5, "angle": 3.48, "curve": 0.154, "c4": 0.9}, {"time": 0.75}] }, - "body-fur-12": { - "rotate": [ - {"angle": 10.31, "curve": 0.345, "c2": 0.37, "c3": 0.757}, {"time": 0.1167, "angle": -16.75, "curve": 0.25, "c3": 0.75}, {"time": 0.2, "angle": 6.13, "curve": 0.25, "c3": 0.75}, - {"time": 0.3667, "angle": -32.74, "curve": 0.25, "c3": 0.75}, {"time": 0.6167, "angle": 18.96, "curve": 0.269, "c3": 0.618, "c4": 0.42}, {"time": 0.6667, "angle": 8.12} + "@leg-front-right": { + "translate": [ + {"x": 7.78, "y": -11.23, "curve": 0.649, "c2": 0.4, "c4": 0.74}, {"time": 0.0167, "x": -0.64, "y": -13.16, "curve": 0.313, "c3": 0.699}, + {"time": 0.1333, "x": -9.39, "y": -16.39, "curve": 0.346, "c2": 0.44, "c3": 0.699}, {"time": 0.3167, "x": -26.29, "y": 12.52, "curve": 0, "c2": 0.18, "c3": 0.424, "c4": 0.59}, + {"time": 0.4333, "x": 7.42, "y": -10.53, "curve": 0.316, "c2": 0.49, "c3": 0.751}, {"time": 0.6, "x": 51.65, "y": -22.8, "curve": 0.289, "c3": 0.884, "c4": 0.7}, + {"time": 0.75, "x": 7.78, "y": -11.23} ] }, - "body-fur-11": { - "rotate": [ - {"angle": 1.1, "curve": 0.375, "c2": 0.5, "c3": 0.75}, {"time": 0.0833, "angle": -16.75, "curve": 0.25, "c3": 0.75}, {"time": 0.1667, "angle": 6.13, "curve": 0.25, "c3": 0.75}, - {"time": 0.3333, "angle": -32.74, "curve": 0.25, "c3": 0.75}, {"time": 0.5833, "angle": 18.96, "curve": 0.25, "c3": 0.625, "c4": 0.5}, {"time": 0.6667, "angle": 4.23} + "leg-front-right-IK": { + "translate": [ + {"x": -13.57, "y": 17.19, "curve": 0.645, "c2": 0.47, "c4": 0.81}, {"time": 0.0167, "curve": 0.313, "c3": 0.699}, {"time": 0.2667, "x": 62.62, "curve": 0, "c2": 0.3, "c3": 0.544}, + {"time": 0.5, "x": -85.89, "y": 125.19}, {"time": 0.6, "x": -101.73, "y": 111.9, "curve": 0.142, "c3": 0.858, "c4": 0.77}, {"time": 0.75, "x": -13.57, "y": 17.19} ] }, - "body-fur-10": { - "rotate": [ - {"angle": -8.1, "curve": 0.382, "c2": 0.58, "c3": 0.731}, {"time": 0.05, "angle": -16.75, "curve": 0.25, "c3": 0.75}, {"time": 0.1333, "angle": 6.13, "curve": 0.25, "c3": 0.75}, - {"time": 0.3, "angle": -32.74, "curve": 0.25, "c3": 0.75}, {"time": 0.55, "angle": 18.96, "curve": 0.243, "c3": 0.655, "c4": 0.63}, {"time": 0.6667, "angle": 0.34} - ] + "@leg-back-left": { + "translate": [ + {"x": -4.73, "y": 6.6, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.15, "x": 1.29, "y": -4.22, "curve": 0.44, "c2": 0.55, "c3": 0.858}, + {"time": 0.25, "x": 2.16, "y": 6.49, "curve": 0, "c2": 0.09, "c3": 0.466, "c4": 0.7}, {"time": 0.3, "x": -5.17, "y": 15.67, "curve": 0.218, "c2": 0.39, "c3": 0.738}, + {"time": 0.5333, "x": -14.09, "y": -7.98, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.6667, "x": -12.69, "y": -11.31, "curve": 0.315, "c4": 0.8}, {"time": 0.75, "x": -4.73, "y": 6.6} + ], + "scale": [{"curve": 0, "c2": 0.1, "c3": 0.457, "c4": 0.54}, {"time": 0.0667, "x": 0.837, "curve": 0.395, "c2": 0.49, "c3": 0.868}, {"time": 0.15}] }, - "body-fur-09": { + "@pivot-back": { "rotate": [ - {"angle": 1.01, "curve": 0.339, "c2": 0.35, "c3": 0.679, "c4": 0.7}, {"time": 0.0333, "angle": -8.1, "curve": 0.382, "c2": 0.58, "c3": 0.731}, {"time": 0.0833, "angle": -16.75}, - {"time": 0.1667, "angle": 6.13, "curve": 0.25, "c3": 0.75}, {"time": 0.3333, "angle": -32.74, "curve": 0.25, "c3": 0.75}, - {"time": 0.5833, "angle": 18.96, "curve": 0.25, "c3": 0.625, "c4": 0.5}, {"time": 0.6667, "angle": 6.86} + {"angle": 3.74, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "angle": 1.5, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.25, "angle": -2, "curve": 0, "c2": 0.1, "c3": 0.85}, + {"time": 0.35, "angle": -5, "curve": 0.154, "c4": 0.9}, {"time": 0.6667, "angle": 5, "curve": 0.154, "c4": 0.9}, {"time": 0.75, "angle": 3.74} + ], + "translate": [ + {"y": 8, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "y": -10, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.25, "curve": 0, "c2": 0.1, "c3": 0.85}, + {"time": 0.5667, "y": 80.61, "curve": 0.154, "c4": 0.9}, {"time": 0.75, "y": 8} ] }, - "body-fur-08": { - "rotate": [ - {"angle": -12.1, "curve": 0.375, "c2": 0.62, "c3": 0.716}, {"time": 0.0333, "angle": -16.75}, {"time": 0.1167, "angle": 6.13, "curve": 0.25, "c3": 0.75}, - {"time": 0.2833, "angle": -32.74, "curve": 0.25, "c3": 0.75}, {"time": 0.5333, "angle": 18.96, "curve": 0.243, "c3": 0.68, "c4": 0.71}, {"time": 0.6667, "angle": -0.91} + "@pivot-main": {"scale": [{"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1333, "y": 0.85, "curve": 0.306, "c4": 0.8}, {"time": 0.25}]} + }, + "drawOrder": [ + {"time": 0.6333, "offsets": [{"slot": "leg-front-right", "offset": 3}]}, {"time": 0.7333, "offsets": [{"slot": "leg-front-right", "offset": 3}, {"slot": "body-pattern", "offset": 1}]} + ] + }, + "4275354805": { + "slots": {"leg-front-left": {"attachment": [{"time": 0.2, "name": "sumo-leg-front-left-stretch"}, {"time": 0.6667, "name": "sumo-leg-front-left"}]}}, + "bones": { + "@pivot-back": { + "translate": [ + {"y": 8, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "y": -10, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.25, "curve": 0, "c2": 0.1, "c3": 0.85}, + {"time": 0.5833, "y": 80.61, "curve": 0.154, "c4": 0.9}, {"time": 0.75, "y": 8} ] }, - "body-fur-07": { - "rotate": [ - {"angle": -3.61, "curve": 0.381, "c2": 0.55, "c3": 0.742}, {"time": 0.0667, "angle": -16.75, "curve": 0.25, "c3": 0.75}, {"time": 0.15, "angle": 6.13, "curve": 0.25, "c3": 0.75}, - {"time": 0.3167, "angle": -32.74, "curve": 0.25, "c3": 0.75}, {"time": 0.5667, "angle": 18.96, "curve": 0.245, "c3": 0.637, "c4": 0.56}, {"time": 0.6667, "angle": 2.91} + "@leg-front-left": { + "translate": [ + {"x": -14.55, "y": -2.39, "curve": 0.374, "c2": 0.33, "c3": 0.72, "c4": 0.68}, {"time": 0.0333, "x": -24.61, "y": -1.31, "curve": "stepped"}, + {"time": 0.1667, "x": -24.61, "y": -1.31, "curve": 0.37, "c2": 0.57, "c3": 0.746}, {"time": 0.3333, "x": 13.45, "y": -27.72, "curve": 0.345, "c2": 0.53, "c3": 0.751}, + {"time": 0.4833, "x": 40.66, "y": -4.9, "curve": 0.255, "c3": 0.673, "c4": 0.49}, {"time": 0.5833, "x": 39.16, "y": 14.5, "curve": 0.565, "c2": 0.41, "c4": 0.82}, + {"time": 0.6667, "x": 1.05, "y": 16.15, "curve": 0.255, "c3": 0.659, "c4": 0.47}, {"time": 0.75, "x": -14.55, "y": -2.39} + ], + "scale": [ + {"x": 0.969, "curve": 0.459, "c2": 0.59, "c3": 0.838}, {"time": 0.0333, "x": 0.961, "curve": 0.154, "c4": 0.9}, {"time": 0.1667, "x": 1.075, "curve": 0, "c2": 0.1, "c3": 0.85}, + {"time": 0.3333, "curve": "stepped"}, {"time": 0.6667, "curve": 0, "c2": 0.09, "c3": 0.589, "c4": 0.67}, {"time": 0.75, "x": 0.969} ] }, - "body-fur-06": { - "rotate": [ - {"angle": 17.45, "curve": 0.277, "c2": 0.14, "c3": 0.667, "c4": 0.67}, {"time": 0.1, "angle": -8.1, "curve": 0.382, "c2": 0.58, "c3": 0.731}, - {"time": 0.15, "angle": -16.75, "curve": 0.25, "c3": 0.75}, {"time": 0.2333, "angle": 6.13, "curve": 0.25, "c3": 0.75}, {"time": 0.4, "angle": -32.74, "curve": 0.25, "c3": 0.75}, - {"time": 0.65, "angle": 18.96, "curve": 0.305, "c3": 0.64, "c4": 0.36}, {"time": 0.6667, "angle": 13.33} + "leg-front-left-IK": { + "translate": [ + {"x": 4.88, "y": 20.49, "curve": 0.416, "c2": 0.51, "c3": 0.865}, {"time": 0.0833, "x": 28.75, "y": 34.52, "curve": 0.269, "c2": 0.57, "c3": 0.577}, + {"time": 0.1667, "x": 31.44, "y": 44.28, "curve": 0.461, "c3": 0.543}, {"time": 0.4167, "x": -85.44, "y": 106.83}, + {"time": 0.5167, "x": -87.18, "y": 81.5, "curve": 0.143, "c3": 0.57, "c4": 0.46}, {"time": 0.6667, "x": -21.75, "y": 25.36, "curve": 0, "c2": 0.09, "c3": 0.479, "c4": 0.56}, + {"time": 0.75, "x": 4.88, "y": 20.49} ] }, - "body-fur-05": { - "rotate": [ - {"angle": 5.82, "curve": 0.363, "c2": 0.44, "c3": 0.755}, {"time": 0.1, "angle": -16.75, "curve": 0.25, "c3": 0.75}, {"time": 0.1833, "angle": 6.13, "curve": 0.25, "c3": 0.75}, - {"time": 0.35, "angle": -32.74, "curve": 0.25, "c3": 0.75}, {"time": 0.6, "angle": 18.96, "curve": 0.258, "c3": 0.619, "c4": 0.45}, {"time": 0.6667, "angle": 6.86} + "leg-back-left-IK": { + "translate": [ + {"x": 17.64, "y": 16.11, "curve": 0.455, "c2": 0.58, "c3": 0.847}, {"time": 0.0333, "curve": 0, "c2": 0.1, "c3": 0.85}, + {"time": 0.2333, "x": -50.37, "curve": 0, "c2": 0.09, "c3": 0.466, "c4": 0.7}, {"time": 0.3, "x": 11.38, "y": 18.2, "curve": 0.177, "c2": 0.44, "c3": 0.617}, + {"time": 0.5333, "x": 56.74, "y": 103.8, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.6667, "x": 71.93, "y": 112.16, "curve": 0.139, "c3": 0.671, "c4": 0.58}, + {"time": 0.75, "x": 17.64, "y": 16.11} ] }, - "body-fur-04": { - "rotate": [ - {"angle": 17.78, "curve": 0.352, "c2": 0.65, "c3": 0.687}, {"time": 0.0167, "angle": 18.96, "curve": 0.243, "c3": 0.655, "c4": 0.63}, - {"time": 0.1333, "angle": -8.1, "curve": 0.382, "c2": 0.58, "c3": 0.731}, {"time": 0.1833, "angle": -16.75}, {"time": 0.2667, "angle": 6.13, "curve": 0.25, "c3": 0.75}, - {"time": 0.4333, "angle": -32.74, "curve": 0.246, "c3": 0.723, "c4": 0.88}, {"time": 0.6667, "angle": 12.53} + "@shadow": { + "scale": [ + {"curve": 0.313, "c3": 0.699}, {"time": 0.25, "x": 0.94, "y": 0.94, "curve": 0.313, "c3": 0.699}, {"time": 0.4333, "x": 0.8, "y": 0.8, "curve": 0.315, "c4": 0.8}, {"time": 0.75} ] }, - "body-fur-03": { - "rotate": [ - {"angle": 14.31, "curve": 0.32, "c2": 0.29, "c3": 0.757}, {"time": 0.1333, "angle": -16.75}, {"time": 0.2167, "angle": 6.13, "curve": 0.25, "c3": 0.75}, - {"time": 0.3833, "angle": -32.74, "curve": 0.25, "c3": 0.75}, {"time": 0.6333, "angle": 18.96, "curve": 0.284, "c3": 0.625, "c4": 0.38}, {"time": 0.6667, "angle": 5.54} + "@pivot-main": {"scale": [{"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "y": 0.98, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.25}]}, + "@leg-front-right": { + "translate": [ + {"x": -0.64, "y": -13.16, "curve": 0.313, "c3": 0.654, "c4": 0.45}, {"time": 0.1167, "x": -9.39, "y": -16.39, "curve": 0.346, "c2": 0.44, "c3": 0.699}, + {"time": 0.3, "x": -26.29, "y": 12.52, "curve": 0, "c2": 0.18, "c3": 0.424, "c4": 0.59}, {"time": 0.4167, "x": 7.42, "y": -10.53, "curve": 0.316, "c2": 0.49, "c3": 0.751}, + {"time": 0.5833, "x": 37.87, "y": -4.31, "curve": 0.315, "c4": 0.8}, {"time": 0.75, "x": -0.64, "y": -13.16} ] }, - "body-fur-02": { - "rotate": [ - {"angle": 14.28, "curve": 0.303, "c2": 0.24, "c3": 0.674, "c4": 0.69}, {"time": 0.0833, "angle": -8.1, "curve": 0.382, "c2": 0.58, "c3": 0.731}, {"time": 0.1333, "angle": -16.75}, - {"time": 0.2167, "angle": 6.13, "curve": 0.25, "c3": 0.75}, {"time": 0.3833, "angle": -32.74, "curve": 0.25, "c3": 0.75}, - {"time": 0.6333, "angle": 18.96, "curve": 0.284, "c3": 0.625, "c4": 0.38}, {"time": 0.6667, "angle": 13.84} - ] + "@leg-back-left": { + "translate": [ + {"x": -4.73, "y": 6.6, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.15, "x": 1.29, "y": -4.22, "curve": 0.44, "c2": 0.55, "c3": 0.858}, + {"time": 0.25, "x": 2.16, "y": 6.49, "curve": 0, "c2": 0.09, "c3": 0.466, "c4": 0.7}, {"time": 0.3, "x": -5.17, "y": 15.67, "curve": 0.218, "c2": 0.39, "c3": 0.738}, + {"time": 0.5333, "x": -14.09, "y": -7.98, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.6667, "x": -12.69, "y": -11.31, "curve": 0.139, "c3": 0.671, "c4": 0.58}, + {"time": 0.75, "x": -4.73, "y": 6.6} + ], + "scale": [{"curve": 0, "c2": 0.1, "c3": 0.457, "c4": 0.54}, {"time": 0.0667, "x": 0.837, "curve": 0.395, "c2": 0.49, "c3": 0.868}, {"time": 0.15}] }, - "body-fur-01": { - "rotate": [ - {"angle": 1.1, "curve": 0.375, "c2": 0.5, "c3": 0.75}, {"time": 0.0833, "angle": -16.75}, {"time": 0.1667, "angle": 6.13, "curve": 0.25, "c3": 0.75}, - {"time": 0.3333, "angle": -32.74, "curve": 0.25, "c3": 0.75}, {"time": 0.5833, "angle": 18.96, "curve": 0.25, "c3": 0.625, "c4": 0.5}, {"time": 0.6667, "angle": 10.51} + "leg-front-right-IK": { + "translate": [ + {"curve": 0.313, "c3": 0.699}, {"time": 0.25, "x": 52.85, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.4833, "x": -85.89, "y": 125.19}, + {"time": 0.5833, "x": -87.57, "y": 110.89, "curve": 0.154, "c4": 0.9}, {"time": 0.75} ] } - }, - "events": [{"time": 0.15, "name": "jump"}] + } }, - "2847851775": { + "689651440": { "slots": { - "eyes": {"attachment": [{"time": 0.0833, "name": "eyes-shut"}, {"time": 0.1667, "name": "eyes-angry"}, {"time": 0.9833, "name": "eyes-shut"}, {"time": 1.0833, "name": "eyes"}]}, - "leg-front-left": { + "eyes": { "attachment": [ - {"time": 0.5, "name": "leg-front-left-stretch"}, {"time": 0.6333, "name": "leg-front-left"}, {"time": 0.7667, "name": "leg-front-left-stretch"}, {"time": 0.9, "name": "leg-front-left"} + {"time": 0.05, "name": "eyes-angry"}, {"time": 0.3333, "name": "eyes-shut"}, {"time": 0.4333, "name": "eyes-angry"}, {"time": 1.0833, "name": "eyes-shut"}, + {"time": 1.1667, "name": "eyes-angry"}, {"time": 1.2833, "name": "eyes"} ] }, - "mouth": {"attachment": [{"time": 0.0833, "name": "mouth-bite"}, {"time": 0.3667, "name": "mouth-open"}, {"time": 0.9833, "name": "mouth-bite"}, {"time": 1.0833, "name": "mouth"}]} + "mouth": {"attachment": [{"time": 0.05, "name": "mouth-bite"}, {"time": 0.4333, "name": "mouth-open"}, {"time": 0.9167, "name": "mouth-bite"}, {"time": 1.2833, "name": "mouth"}]} }, "bones": { "@pivot-back": { - "rotate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.15, "angle": 3.67, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.3333, "angle": -14.29, "curve": 0.779, "c4": 0.3}, - {"time": 0.3667, "angle": 15.82}, {"time": 0.4667, "angle": 16.67, "curve": 0.779, "c4": 0.3}, {"time": 0.5, "angle": -19.96}, {"time": 0.6, "angle": -21.17, "curve": 0.779, "c4": 0.3}, - {"time": 0.6333, "angle": 15.82}, {"time": 0.7333, "angle": 16.67, "curve": 0.779, "c4": 0.3}, {"time": 0.7667, "angle": -19.96}, - {"time": 0.8667, "angle": -21.17, "curve": 0.779, "c4": 0.3}, {"time": 0.9833, "angle": 4.4, "curve": 0, "c2": 0.1, "c3": 0.85}, - {"time": 1.05, "angle": 6.79, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1.25} - ], - "translate": [ - {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.2167, "x": 8.02, "curve": 0, "c2": 0.4, "c3": 0.383}, {"time": 0.3333, "x": -54.3, "y": 61.69, "curve": 0.779, "c4": 0.3}, - {"time": 0.3667, "x": -60.41, "y": 130.13}, {"time": 0.4667, "x": -60.41, "y": 130.01, "curve": 0.779, "c4": 0.3}, {"time": 0.5, "x": -58.41, "y": 9.6}, - {"time": 0.6, "x": -58.41, "y": 9.9, "curve": 0.779, "c4": 0.3}, {"time": 0.6333, "x": -60.41, "y": 130.13}, {"time": 0.7333, "x": -60.41, "y": 130.01, "curve": 0.779, "c4": 0.3}, - {"time": 0.7667, "x": -58.41, "y": 9.6}, {"time": 0.8667, "x": -58.41, "y": 9.9, "curve": 0.779, "c4": 0.3}, {"time": 0.9833} - ] - }, - "@leg-front-right": { + "rotate": [{"curve": 0, "c2": 0.3, "c3": 0.546}, {"time": 0.0833, "angle": 6, "curve": 0, "c2": 0.2, "c3": 0.828}, {"time": 0.1667}], "translate": [ - {"curve": 0, "c2": 0.17, "c3": 0.521, "c4": 0.69}, {"time": 0.15, "x": -16.23, "y": -19.18, "curve": 0.377, "c2": 0.59, "c3": 0.739}, {"time": 0.2167, "x": -18.54, "y": -11.57}, - {"time": 0.25, "x": -22.65, "y": 8.05, "curve": 0, "c2": 0.4, "c3": 0.383}, {"time": 0.3333, "x": 29.92, "y": -4.24, "curve": 0.779, "c4": 0.4}, {"time": 0.3667, "x": 22.95, "y": 2.68}, - {"time": 0.4667, "x": 29.92, "y": -4.24, "curve": 0.779, "c4": 0.4}, {"time": 0.5, "x": 22.95, "y": 2.68}, {"time": 0.6, "x": 29.92, "y": -4.24, "curve": 0.779, "c4": 0.4}, - {"time": 0.6333, "x": 22.95, "y": 2.68}, {"time": 0.7333, "x": 29.92, "y": -4.24, "curve": 0.779, "c4": 0.4}, {"time": 0.7667, "x": 22.95, "y": 2.68, "curve": "stepped"}, - {"time": 0.9167, "x": 22.95, "y": 2.68, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.95, "curve": 0.464, "c4": 0.7}, {"time": 0.9833, "x": -1.45, "y": -24.11}, - {"time": 1.05, "x": -3.72, "y": -46.34, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1.0833} - ], - "scale": [ - {"time": 0.2167}, {"time": 0.25, "x": 1.5}, {"time": 0.3333, "curve": 0.779, "c4": 0.4}, {"time": 0.3667, "x": 1.5}, {"time": 0.4667, "x": 1.51, "curve": 0.157, "c2": 0.33, "c3": 0.727}, - {"time": 0.5, "curve": "stepped"}, {"time": 0.6, "curve": 0.779, "c4": 0.4}, {"time": 0.6333, "x": 1.5}, {"time": 0.7333, "x": 1.51, "curve": 0.157, "c2": 0.33, "c3": 0.727}, - {"time": 0.7667} + {"curve": 0, "c2": 0.3, "c3": 0.546}, {"time": 0.0833, "y": 5, "curve": 0.313, "c3": 0.699}, {"time": 0.1667, "y": 220, "curve": 0.617, "c4": 0.6}, {"time": 0.3333, "y": 10}, + {"time": 0.4167, "y": 5, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5833, "y": 420, "curve": 0.852, "c4": 0.1}, {"time": 0.9167}, + {"time": 1.0833, "y": -5, "curve": 0, "c2": 0.17, "c3": 0.461, "c4": 0.62}, {"time": 1.2167, "y": 130, "curve": 0.353, "c2": 0.54, "c3": 0.751}, {"time": 1.3333} ] }, - "@leg-front-left": { - "translate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.2167, "x": -6.84, "y": -9.77, "curve": "stepped"}, {"time": 0.9833, "x": -6.84, "y": -9.77, "curve": 0, "c2": 0.1, "c3": 0.85}, - {"time": 1.05, "x": -6.29, "y": -18.69, "curve": 0, "c2": 0.23, "c3": 0.365, "c4": 0.58}, {"time": 1.0833, "x": -3.64, "y": -2.46, "curve": 0.177, "c2": 0.35, "c3": 0.731}, - {"time": 1.25} - ], - "scale": [ - {"time": 0.4667, "curve": 0.779, "c4": 0.4}, {"time": 0.5, "x": 1.5}, {"time": 0.6, "x": 1.51, "curve": 0.157, "c2": 0.33, "c3": 0.727}, {"time": 0.6333, "curve": "stepped"}, - {"time": 0.7333, "curve": 0.779, "c4": 0.4}, {"time": 0.7667, "x": 1.5}, {"time": 0.8667, "x": 1.51, "curve": 0.157, "c2": 0.33, "c3": 0.727}, {"time": 0.9833} + "@leg-front-right": {"translate": [{"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "x": -2.46, "y": -27.89, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.1167}]}, + "@leg-front-left": {"translate": [{"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "x": -1.21, "y": -13.68, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.1167}]}, + "@pivot-center": { + "rotate": [ + {"time": 0.1167, "curve": 0.313, "c3": 0.817}, {"time": 0.3333, "angle": 180, "curve": "stepped"}, {"time": 0.4167, "angle": 180, "curve": 0.313, "c3": 0.699}, + {"time": 0.6667, "angle": -1, "curve": 0.837, "c4": 0.2}, {"time": 0.9167, "angle": 178}, {"time": 1.0833, "angle": 180, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1.3333} ] }, - "@leg-back-left": { + "leg-front-left-IK": { "translate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.2167, "x": -0.11, "y": -2.73, "curve": "stepped"}, {"time": 0.9833, "x": -0.11, "y": -2.73, "curve": 0, "c2": 0.1, "c3": 0.85}, - {"time": 1.05, "x": -0.46, "y": -6.19, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1.25} + {"time": 0.0833, "curve": 0.344, "c3": 0.715, "c4": 0.45}, {"time": 0.1167, "x": 22.19, "y": 83.99, "curve": 0.589, "c2": 0.35, "c4": 0.75}, + {"time": 0.1667, "x": -165.12, "y": 255.89, "curve": 0.313, "c3": 0.699}, {"time": 0.25, "x": -364.32, "y": 423.37, "curve": 0.474, "c3": 0.714, "c4": 0.56}, + {"time": 0.3, "x": -274.03, "y": 604.29, "curve": 0.306, "c2": 0.39, "c3": 0.628, "c4": 0.74}, {"time": 0.3167, "x": -203.26, "y": 613.41, "curve": 0.287, "c2": 0.62, "c3": 0.612}, + {"time": 0.3333, "x": -115.04, "y": 530.7}, {"time": 0.4167, "x": -102.69, "y": 520.45, "curve": 0, "c2": 0.17, "c3": 0.45, "c4": 0.61}, + {"time": 0.5, "x": -305.1, "y": 703.14, "curve": 0.323, "c2": 0.4, "c3": 0.681, "c4": 0.77}, {"time": 0.55, "x": -336.85, "y": 585.78, "curve": 0.377, "c2": 0.62, "c3": 0.724}, + {"time": 0.5833, "x": -216.34, "y": 437.28}, {"time": 0.6667, "x": 11.35, "y": 419.36}, {"time": 0.75, "x": 26.13, "y": 414.75, "curve": 0.255, "c3": 0.659, "c4": 0.47}, + {"time": 0.8333, "x": 100.23, "y": 427.06, "curve": 0.41, "c2": 0.34, "c3": 0.774, "c4": 0.71}, + {"time": 0.8833, "x": 125.45, "y": 421.05, "curve": 0.427, "c2": 0.37, "c3": 0.767, "c4": 0.71}, {"time": 0.9, "x": 143.46, "y": 449.77, "curve": 0.649, "c2": 0.4, "c4": 0.74}, + {"time": 0.9167, "x": -129.39, "y": 531.23}, {"time": 1.0833, "x": -166.91, "y": 529.28, "curve": 0, "c2": 0.17, "c3": 0.45, "c4": 0.61}, + {"time": 1.15, "x": 157.54, "y": 410.06, "curve": 0.345, "c2": 0.53, "c3": 0.751}, {"time": 1.2167, "x": 137.64, "y": 261.68, "curve": 0, "c2": 0.1, "c3": 0.769}, {"time": 1.3333} ] }, - "@pivot-main": { - "translate": [ - {"time": 0.15, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "x": -73.35, "y": 43, "curve": "stepped"}, {"time": 0.8667, "x": -73.35, "y": 43, "curve": 0.315, "c4": 0.8}, - {"time": 0.9833, "x": -146.44, "curve": "stepped"}, {"time": 1.05, "x": -146.44, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1.15, "x": -45.61, "y": 50.15, "curve": 0.315, "c4": 0.8}, - {"time": 1.25} - ], - "scale": [{"time": 0.9833, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1.05, "y": 0.98, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1.15}] - }, "leg-front-right-IK": { "translate": [ - {"time": 0.15, "curve": 0, "c2": 0.18, "c3": 0.416, "c4": 0.58}, {"time": 0.2167, "x": 19.11, "y": 67.51}, {"time": 0.25, "x": 9.04, "y": 75.61, "curve": 0, "c2": 0.4, "c3": 0.383}, - {"time": 0.3333, "x": -160.66, "y": 272.78, "curve": 0.779, "c4": 0.4}, {"time": 0.3667, "x": -57.38, "y": -16.06}, {"time": 0.4667, "x": -10.1, "y": -16.06, "curve": 0.779, "c4": 0.4}, - {"time": 0.5, "x": -151.82, "y": 190.82}, {"time": 0.6, "x": -168.95, "y": 277.96, "curve": 0.779, "c4": 0.4}, {"time": 0.6333, "x": -54.28, "y": -17.1}, - {"time": 0.7333, "x": -12.17, "y": -17.1, "curve": 0.779, "c4": 0.4}, {"time": 0.7667, "x": -151.82, "y": 190.82}, {"time": 0.8667, "x": -165.84, "y": 271.75, "curve": 0.779, "c4": 0.4}, - {"time": 0.9833, "curve": "stepped"}, {"time": 1.05, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 1.0833, "x": -14.68, "y": -19.57, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1.25} - ] - }, - "leg-front-left-IK": { - "translate": [ - {"time": 0.15, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "x": -54.88, "y": 124.95, "curve": 0.779, "c4": 0.4}, {"time": 0.3667, "x": 37.97, "y": 122.64}, - {"time": 0.4667, "x": 48.96, "y": 138.43, "curve": 0.779, "c4": 0.4}, {"time": 0.5, "x": -142.3, "y": 180.66}, {"time": 0.6, "x": -134.29, "y": 191.98, "curve": 0.779, "c4": 0.4}, - {"time": 0.6333, "x": 37.97, "y": 122.64}, {"time": 0.7333, "x": 48.96, "y": 138.43, "curve": 0.779, "c4": 0.4}, {"time": 0.7667, "x": -142.3, "y": 180.66}, - {"time": 0.8667, "x": -134.29, "y": 191.98, "curve": 0.617, "c4": 0.6}, {"time": 0.9833, "curve": "stepped"}, {"time": 1.05, "curve": 0, "c2": 0.1, "c3": 0.85}, - {"time": 1.0833, "x": -7.79, "y": -10.12, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1.25} + {"time": 0.0833, "curve": 0.344, "c3": 0.715, "c4": 0.45}, {"time": 0.1167, "x": 45.96, "y": 58.25, "curve": 0.589, "c2": 0.35, "c4": 0.75}, + {"time": 0.1667, "x": -111.07, "y": 374.1, "curve": 0.313, "c3": 0.699}, {"time": 0.25, "x": 60.97, "y": 722.95, "curve": 0.474, "c3": 0.714, "c4": 0.56}, + {"time": 0.3, "x": 367.83, "y": 715.56, "curve": 0.306, "c2": 0.39, "c3": 0.628, "c4": 0.74}, {"time": 0.3167, "x": 468.42, "y": 646.75, "curve": 0.287, "c2": 0.62, "c3": 0.612}, + {"time": 0.3333, "x": 542.05, "y": 517.52}, {"time": 0.4167, "x": 553.82, "y": 507.31, "curve": 0, "c2": 0.17, "c3": 0.45, "c4": 0.61}, + {"time": 0.5, "x": 285.49, "y": 934.13, "curve": 0.323, "c2": 0.4, "c3": 0.681, "c4": 0.77}, {"time": 0.55, "x": -20.04, "y": 918.42, "curve": 0.377, "c2": 0.62, "c3": 0.724}, + {"time": 0.5833, "x": -78.72, "y": 674.67, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.6667, "x": 25.22, "y": 422.18}, + {"time": 0.75, "x": 10.31, "y": 400.68, "curve": 0.255, "c3": 0.659, "c4": 0.47}, {"time": 0.8333, "x": 73, "y": 312.24, "curve": 0.41, "c2": 0.34, "c3": 0.774, "c4": 0.71}, + {"time": 0.8833, "x": 225.18, "y": 186.58, "curve": 0.427, "c2": 0.37, "c3": 0.767, "c4": 0.71}, {"time": 0.9, "x": 378.84, "y": 152.84, "curve": 0.649, "c2": 0.4, "c4": 0.74}, + {"time": 0.9167, "x": 502.23, "y": 516.62}, {"time": 1.0833, "x": 469.43, "y": 521.94, "curve": 0, "c2": 0.17, "c3": 0.45, "c4": 0.61}, + {"time": 1.15, "x": 550, "y": 107.14, "curve": 0.345, "c2": 0.53, "c3": 0.751}, {"time": 1.2167, "x": 250.59, "y": 12.79, "curve": 0.313, "c3": 0.699}, {"time": 1.3333} ] }, "leg-back-left-IK": { "translate": [ - {"time": 0.0833, "curve": 0.332, "c3": 0.682, "c4": 0.41}, {"time": 0.2167, "x": 21.57, "y": 4.03, "curve": 0, "c2": 0.4, "c3": 0.383}, - {"time": 0.3333, "x": -50.73, "y": 91.08, "curve": 0.779, "c4": 0.4}, {"time": 0.3667, "x": 19.18, "y": 184.64}, {"time": 0.4667, "x": 25.59, "y": 197.69, "curve": 0.779, "c4": 0.4}, - {"time": 0.5, "x": -145.53, "y": 47.62}, {"time": 0.6, "x": -152.68, "y": 53.34, "curve": 0.779, "c4": 0.4}, {"time": 0.6333, "x": 19.18, "y": 184.64}, - {"time": 0.7333, "x": 25.59, "y": 197.69, "curve": 0.779, "c4": 0.4}, {"time": 0.7667, "x": -145.53, "y": 47.62}, {"time": 0.8667, "x": -153.88, "y": 53.26, "curve": 0.779, "c4": 0.4}, - {"time": 0.9833, "curve": "stepped"}, {"time": 1.05, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 1.1667, "x": 24.35, "y": 13.92, "curve": 0.154, "c4": 0.9}, {"time": 1.25} + {"time": 0.0833, "curve": 0.344, "c3": 0.715, "c4": 0.45}, {"time": 0.1167, "x": 23.75, "y": 96.58, "curve": 0.589, "c2": 0.35, "c4": 0.75}, + {"time": 0.1667, "x": -126.55, "y": 141.22, "curve": 0.313, "c3": 0.699}, {"time": 0.25, "x": -571.89, "y": 258.37, "curve": 0.474, "c3": 0.714, "c4": 0.56}, + {"time": 0.3, "x": -602.89, "y": 515.39, "curve": 0.306, "c2": 0.39, "c3": 0.628, "c4": 0.74}, {"time": 0.3167, "x": -538.79, "y": 573.94, "curve": 0.287, "c2": 0.62, "c3": 0.612}, + {"time": 0.3333, "x": -474.1, "y": 527.44}, {"time": 0.4167, "x": -458.69, "y": 526.95, "curve": 0, "c2": 0.6, "c3": 0.237}, + {"time": 0.5, "x": -624.02, "y": 521.86, "curve": 0.323, "c2": 0.4, "c3": 0.681, "c4": 0.77}, {"time": 0.55, "x": -470.84, "y": 346.72, "curve": 0.377, "c2": 0.62, "c3": 0.724}, + {"time": 0.5833, "x": -254.14, "y": 306.12}, {"time": 0.6667, "x": 17.58, "y": 427.51}, {"time": 0.75, "x": 20.37, "y": 430.65, "curve": 0.255, "c3": 0.659, "c4": 0.47}, + {"time": 0.8333, "x": 84.18, "y": 482.77, "curve": 0.41, "c2": 0.34, "c3": 0.774, "c4": 0.71}, + {"time": 0.8833, "x": 65.79, "y": 538.52, "curve": 0.427, "c2": 0.37, "c3": 0.767, "c4": 0.71}, {"time": 0.9, "x": 34.2, "y": 602.88, "curve": 0.649, "c2": 0.4, "c4": 0.74}, + {"time": 0.9167, "x": -511.21, "y": 519.18}, {"time": 1.0833, "x": -529.98, "y": 503.54, "curve": 0, "c2": 0.17, "c3": 0.45, "c4": 0.61}, + {"time": 1.15, "x": -49.15, "y": 566.82, "curve": 0.345, "c2": 0.53, "c3": 0.751}, {"time": 1.2167, "x": 72.06, "y": 381.52, "curve": 0, "c2": 0.1, "c3": 0.769}, {"time": 1.3333} ] }, "tail": { "rotate": [ - {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.15, "angle": 14.68, "curve": 0.315, "c4": 0.8}, {"time": 0.2167, "angle": -12.57}, - {"time": 0.3333, "angle": -14.89, "curve": 0.779, "c4": 0.4}, {"time": 0.3667, "angle": 20.64}, {"time": 0.4667, "angle": 25.18, "curve": 0.779, "c4": 0.4}, - {"time": 0.5, "angle": -19.72}, {"time": 0.6, "angle": -22.19, "curve": 0.779, "c4": 0.4}, {"time": 0.6333, "angle": 20.64}, {"time": 0.7333, "angle": 25.18, "curve": 0.779, "c4": 0.4}, - {"time": 0.7667, "angle": -19.72}, {"time": 0.8667, "angle": -22.19, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.9833, "angle": 23.3}, - {"time": 1.05, "angle": 26.39, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1.1333, "angle": -14.8, "curve": 0.154, "c4": 0.9}, {"time": 1.25} + {"curve": 0, "c2": 0.3, "c3": 0.546}, {"time": 0.0833, "angle": 19.35, "curve": 0.313, "c3": 0.699}, {"time": 0.1667, "angle": -22.95, "curve": 0.617, "c4": 0.6}, + {"time": 0.3333, "angle": 22.22}, {"time": 0.4167, "angle": 24.08, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5833, "angle": -30.94, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.6667, "angle": 18.1, "curve": 0.313, "c3": 0.699}, {"time": 0.8333, "angle": -20.52, "curve": 0.464, "c4": 0.7}, {"time": 0.9167, "angle": 16.35}, + {"time": 1.0833, "angle": 20.35, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1.2167, "angle": -9.93, "curve": 0.161, "c3": 0.854}, {"time": 1.3333} ] }, "@shadow": { - "translate": [ - {"time": 0.15, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.3333, "x": -132.39, "curve": 0.779, "c4": 0.4}, {"time": 0.3667, "x": -111.3, "curve": "stepped"}, - {"time": 0.8667, "x": -111.3, "curve": 0.315, "c4": 0.8}, {"time": 0.9833, "x": -132.39, "curve": "stepped"}, {"time": 1.05, "x": -132.39, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 1.25} - ], "scale": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.15, "x": 1.05, "y": 1.05, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.3333, "x": 0.93, "y": 0.93, "curve": 0.779, "c4": 0.4}, - {"time": 0.3667, "x": 0.95, "y": 0.95}, {"time": 0.4667, "x": 0.93, "y": 0.93, "curve": 0.779, "c4": 0.4}, {"time": 0.5}, {"time": 0.6, "x": 1.05, "y": 1.05, "curve": 0.779, "c4": 0.4}, - {"time": 0.6333}, {"time": 0.7333, "x": 0.93, "y": 0.93, "curve": 0.779, "c4": 0.4}, {"time": 0.7667}, {"time": 0.8667, "x": 1.05, "y": 1.05, "curve": 0.315, "c4": 0.8}, - {"time": 0.9833, "x": 1.09, "y": 1.09, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 1.05, "x": 1.11, "y": 1.11, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1.25} + {"curve": 0, "c2": 0.3, "c3": 0.546}, {"time": 0.0833, "x": 1.1, "y": 1.1, "curve": 0.313, "c3": 0.699}, {"time": 0.1667, "x": 0.92, "y": 0.92, "curve": 0.617, "c4": 0.6}, + {"time": 0.3333, "x": 1.12, "y": 1.12}, {"time": 0.4167, "x": 1.16, "y": 1.16, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5833, "x": 0.86, "y": 0.86, "curve": 0.752, "c4": 0.2}, + {"time": 0.9167, "x": 1.12, "y": 1.12}, {"time": 1.0833, "x": 1.16, "y": 1.16, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1.3333} ] }, - "body-fur-01": { + "@pivot-main": {"scale": [{"time": 0.3333, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.4167, "y": 0.9, "curve": 0, "c2": 0.3, "c3": 0.546}, {"time": 0.5}]} + }, + "events": [{"time": 0.4333, "name": "jump"}, {"time": 0.8333, "name": "start-attack"}, {"time": 0.9167, "name": "hit"}] + }, + "2919733098": { + "slots": { + "eyes": {"attachment": [{"time": 0.05, "name": "eyes-angry"}, {"time": 0.8333, "name": "eyes-shut"}, {"time": 0.9167, "name": "eyes"}]}, + "mouth": {"attachment": [{"time": 0.05, "name": "mouth-bite"}, {"time": 0.3333, "name": "mouth-open"}, {"time": 0.75, "name": "mouth-bite"}, {"time": 0.9167, "name": "mouth"}]} + }, + "bones": { + "tail": { "rotate": [ - {"angle": 8.98, "curve": 0.382, "c2": 0.56, "c3": 0.739}, {"time": 0.0667}, {"time": 0.2167, "angle": 22.69, "curve": 0.25, "c3": 0.75}, - {"time": 0.4167, "angle": -25.47, "curve": 0.25, "c3": 0.75}, {"time": 0.5167, "angle": 30.13, "curve": 0.25, "c3": 0.75}, {"time": 0.6833, "angle": -32.6, "curve": 0.25, "c3": 0.75}, - {"time": 0.7833, "angle": 29.93, "curve": 0.25, "c3": 0.75}, {"time": 0.9667, "angle": -31.51, "curve": 0.25, "c3": 0.75}, - {"time": 1.1333, "angle": 27.92, "curve": 0.244, "c3": 0.643, "c4": 0.58}, {"time": 1.25, "angle": 10.51} + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.25, "angle": 21.98, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3167, "angle": -15.58, "curve": "stepped"}, + {"time": 0.3333, "angle": -19.65, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.4, "angle": 20.35, "curve": "stepped"}, {"time": 0.4333, "angle": -19.65, "curve": "stepped"}, + {"time": 0.4667, "angle": -19.65, "curve": 0.461, "c3": 0.543}, {"time": 0.5333, "angle": 20.35, "curve": "stepped"}, {"time": 0.5667, "angle": -19.65, "curve": "stepped"}, + {"time": 0.6, "angle": -19.65, "curve": 0.461, "c3": 0.543}, {"time": 0.6667, "angle": 20.35, "curve": "stepped"}, {"time": 0.7, "angle": -19.65, "curve": "stepped"}, + {"time": 0.75, "angle": -11.84, "curve": 0.313, "c3": 0.699}, {"time": 0.8333, "angle": 16.95, "curve": 0.313, "c3": 0.699}, {"time": 1} ] }, - "body-fur-02": { + "@pivot-back": { "rotate": [ - {"angle": 15.48, "curve": 0.346, "c2": 0.38, "c3": 0.7, "c4": 0.78}, {"time": 0.0667, "angle": 3.08, "curve": 0.373, "c2": 0.62, "c3": 0.713}, {"time": 0.1, "curve": 0.25, "c3": 0.75}, - {"time": 0.25, "angle": 22.69, "curve": 0.25, "c3": 0.75}, {"time": 0.45, "angle": -25.47, "curve": 0.25, "c3": 0.75}, {"time": 0.55, "angle": 30.13, "curve": 0.25, "c3": 0.75}, - {"time": 0.7167, "angle": -32.6, "curve": 0.25, "c3": 0.75}, {"time": 0.8167, "angle": 29.93, "curve": 0.25, "c3": 0.75}, {"time": 1, "angle": -31.51, "curve": 0.25, "c3": 0.75}, - {"time": 1.1667, "angle": 27.92, "curve": 0.253, "c3": 0.621, "c4": 0.48}, {"time": 1.25, "angle": 13.84} + {"curve": 0, "c2": 0.4, "c3": 0.383}, {"time": 0.15, "angle": 4, "curve": "stepped"}, {"time": 0.25, "angle": 4, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.3167, "curve": "stepped"}, {"time": 0.3333, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.4, "angle": -2.45, "curve": "stepped"}, {"time": 0.4333, "curve": "stepped"}, + {"time": 0.4667, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.5333, "angle": -2.45, "curve": "stepped"}, {"time": 0.5667, "curve": "stepped"}, + {"time": 0.6, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.6667, "angle": -2.45, "curve": "stepped"}, {"time": 0.7, "curve": "stepped"}, {"time": 0.75, "curve": 0.313, "c3": 0.699}, + {"time": 0.8333, "angle": 6, "curve": 0.313, "c3": 0.699}, {"time": 1} + ], + "translate": [ + {"curve": 0, "c2": 0.4, "c3": 0.383}, {"time": 0.25, "x": 25, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3167, "x": -135.5, "curve": "stepped"}, + {"time": 0.3333, "x": -560.54, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.4, "x": -560.54, "y": 9.3, "curve": "stepped"}, {"time": 0.4333, "x": -560.54, "curve": "stepped"}, + {"time": 0.4667, "x": -560.54, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.5333, "x": -560.54, "y": 9.3, "curve": "stepped"}, {"time": 0.5667, "x": -560.54, "curve": "stepped"}, + {"time": 0.6, "x": -560.54, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.6667, "x": -560.54, "y": 9.3, "curve": "stepped"}, {"time": 0.7, "x": -560.54, "curve": "stepped"}, + {"time": 0.75, "x": -151.24, "curve": 0.313, "c3": 0.699}, {"time": 0.8333, "x": -151.24, "y": 4.06, "curve": 0.313, "c3": 0.699}, {"time": 1} + ], + "scale": [{"time": 0.3167, "curve": "stepped"}, {"time": 0.3333, "x": -1, "curve": "stepped"}, {"time": 0.7, "x": -1, "curve": "stepped"}, {"time": 0.75}] + }, + "@leg-front-right": { + "translate": [ + {"curve": 0, "c2": 0.4, "c3": 0.383}, {"time": 0.25, "x": -1.86, "y": -9.26, "curve": "stepped"}, {"time": 0.3167, "x": -1.86, "y": -9.26, "curve": "stepped"}, + {"time": 0.3333, "x": 2.96, "y": 9.49, "curve": "stepped"}, {"time": 0.75, "x": 2.96, "y": 9.49, "curve": 0.306, "c3": 0.695}, + {"time": 0.8333, "x": -1.86, "y": -9.26, "curve": 0.313, "c3": 0.699}, {"time": 1} ] }, - "body-fur-03": { - "rotate": [ - {"angle": 5.84, "curve": 0.381, "c2": 0.59, "c3": 0.727}, {"time": 0.05}, {"time": 0.2, "angle": 22.69, "curve": 0.25, "c3": 0.75}, - {"time": 0.4, "angle": -25.47, "curve": 0.25, "c3": 0.75}, {"time": 0.5, "angle": 30.13, "curve": 0.25, "c3": 0.75}, {"time": 0.6667, "angle": -32.6, "curve": 0.25, "c3": 0.75}, - {"time": 0.7667, "angle": 29.93, "curve": 0.25, "c3": 0.75}, {"time": 0.95, "angle": -31.51, "curve": 0.25, "c3": 0.75}, - {"time": 1.1167, "angle": 27.92, "curve": 0.242, "c3": 0.661, "c4": 0.65}, {"time": 1.25, "angle": 5.54} + "@leg-front-left": { + "translate": [ + {"curve": 0, "c2": 0.4, "c3": 0.383}, {"time": 0.25, "x": -1, "y": -5.53, "curve": "stepped"}, {"time": 0.3167, "x": -1, "y": -5.53, "curve": "stepped"}, + {"time": 0.3333, "x": 14.28, "y": 14.98, "curve": "stepped"}, {"time": 0.4, "x": 14.28, "y": 14.98, "curve": "stepped"}, {"time": 0.4333, "x": 14.36, "y": 10.6, "curve": "stepped"}, + {"time": 0.4667, "x": 14.36, "y": 10.6, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.5333, "x": 14.28, "y": 14.98, "curve": "stepped"}, + {"time": 0.5667, "x": 14.36, "y": 10.6, "curve": "stepped"}, {"time": 0.6, "x": 14.36, "y": 10.6, "curve": 0, "c2": 0.3, "c3": 0.544}, + {"time": 0.6667, "x": 14.28, "y": 14.98, "curve": "stepped"}, {"time": 0.7, "x": 14.36, "y": 10.6, "curve": "stepped"}, + {"time": 0.75, "x": -1.12, "y": 1.52, "curve": 0.313, "c3": 0.699}, {"time": 0.8333, "x": -1, "y": -5.53, "curve": 0.313, "c3": 0.699}, {"time": 1} ] }, - "body-fur-04": { - "rotate": [ - {"angle": 12.1, "curve": 0.351, "c2": 0.39, "c3": 0.696, "c4": 0.76}, {"time": 0.05, "angle": 3.08, "curve": 0.373, "c2": 0.62, "c3": 0.713}, {"time": 0.0833}, - {"time": 0.2333, "angle": 22.69, "curve": 0.25, "c3": 0.75}, {"time": 0.4333, "angle": -25.47, "curve": 0.25, "c3": 0.75}, {"time": 0.5333, "angle": 30.13, "curve": 0.25, "c3": 0.75}, - {"time": 0.7, "angle": -32.6, "curve": 0.25, "c3": 0.75}, {"time": 0.8, "angle": 29.93, "curve": 0.25, "c3": 0.75}, {"time": 0.9833, "angle": -31.51, "curve": 0.25, "c3": 0.75}, - {"time": 1.15, "angle": 27.92, "curve": 0.247, "c3": 0.63, "c4": 0.52}, {"time": 1.25, "angle": 12.53} + "@shadow": { + "translate": [ + {"time": 0.25, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3167, "x": -143.36, "curve": "stepped"}, {"time": 0.7, "x": -143.36, "curve": "stepped"}, + {"time": 0.75, "x": -161.35, "curve": "stepped"}, {"time": 0.8333, "x": -161.35, "curve": 0.313, "c3": 0.699}, {"time": 1} + ], + "scale": [ + {"curve": 0, "c2": 0.4, "c3": 0.383}, {"time": 0.25, "x": 1.08, "y": 1.08, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3167, "curve": "stepped"}, + {"time": 0.3333, "x": 1.02, "y": 1.02, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.4, "x": 0.96, "y": 0.96, "curve": "stepped"}, + {"time": 0.4333, "x": 1.02, "y": 1.02, "curve": "stepped"}, {"time": 0.4667, "x": 1.02, "y": 1.02, "curve": 0, "c2": 0.3, "c3": 0.544}, + {"time": 0.5333, "x": 0.96, "y": 0.96, "curve": "stepped"}, {"time": 0.5667, "x": 1.02, "y": 1.02, "curve": "stepped"}, + {"time": 0.6, "x": 1.02, "y": 1.02, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.6667, "x": 0.96, "y": 0.96, "curve": "stepped"}, + {"time": 0.7, "x": 1.02, "y": 1.02, "curve": "stepped"}, {"time": 0.75, "curve": 0.313, "c3": 0.699}, {"time": 0.8333, "x": 1.08, "y": 1.08, "curve": 0.313, "c3": 0.699}, {"time": 1} ] }, - "body-fur-05": { - "rotate": [ - {"angle": 3.08, "curve": 0.373, "c2": 0.62, "c3": 0.713}, {"time": 0.0333}, {"time": 0.1833, "angle": 22.69, "curve": 0.25, "c3": 0.75}, - {"time": 0.3833, "angle": -25.47, "curve": 0.25, "c3": 0.75}, {"time": 0.4833, "angle": 30.13, "curve": 0.25, "c3": 0.75}, {"time": 0.65, "angle": -32.6, "curve": 0.25, "c3": 0.75}, - {"time": 0.75, "angle": 29.93, "curve": 0.25, "c3": 0.75}, {"time": 0.9333, "angle": -31.51, "curve": 0.25, "c3": 0.75}, - {"time": 1.1, "angle": 27.92, "curve": 0.243, "c3": 0.685, "c4": 0.73}, {"time": 1.25, "angle": 6.86} + "leg-front-left-IK": { + "translate": [ + {"time": 0.25, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3167, "x": -192.09, "y": 31.17, "curve": "stepped"}, {"time": 0.3333, "x": -186.04, "curve": "stepped"}, + {"time": 0.7, "x": -186.04, "curve": 0.31, "c4": 0.8}, {"time": 0.75, "x": -180.48, "curve": "stepped"}, {"time": 0.8333, "x": -180.48, "curve": 0.313, "c3": 0.699}, {"time": 1} ] }, - "body-fur-06": { - "rotate": [ - {"angle": 8.81, "curve": 0.35, "c2": 0.39, "c3": 0.689, "c4": 0.75}, {"time": 0.0333, "angle": 3.08, "curve": 0.373, "c2": 0.62, "c3": 0.713}, {"time": 0.0667}, - {"time": 0.2167, "angle": 22.69, "curve": 0.25, "c3": 0.75}, {"time": 0.4167, "angle": -25.47, "curve": 0.25, "c3": 0.75}, {"time": 0.5167, "angle": 30.13, "curve": 0.25, "c3": 0.75}, - {"time": 0.6833, "angle": -32.6, "curve": 0.25, "c3": 0.75}, {"time": 0.7833, "angle": 29.93, "curve": 0.25, "c3": 0.75}, {"time": 0.9667, "angle": -31.51, "curve": 0.25, "c3": 0.75}, - {"time": 1.1333, "angle": 27.92, "curve": 0.244, "c3": 0.643, "c4": 0.58}, {"time": 1.25, "angle": 13.33} + "leg-front-right-IK": { + "translate": [ + {"time": 0.25, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3167, "x": -172.87, "y": 28.32, "curve": "stepped"}, {"time": 0.3333, "x": 456.08, "y": -1.32, "curve": "stepped"}, + {"time": 0.7, "x": 456.08, "y": -1.32, "curve": "stepped"}, {"time": 0.75, "x": -180.48, "curve": "stepped"}, {"time": 0.8333, "x": -180.48, "curve": 0.313, "c3": 0.699}, {"time": 1} + ] + }, + "leg-back-left-IK": { + "translate": [ + {"time": 0.25, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3167, "x": -96.78, "y": 27.51, "curve": "stepped"}, {"time": 0.3333, "x": -593.07, "curve": "stepped"}, + {"time": 0.7, "x": -593.07, "curve": "stepped"}, {"time": 0.75, "x": -134.74, "curve": "stepped"}, {"time": 0.8333, "x": -134.74, "curve": 0.313, "c3": 0.699}, {"time": 1} + ] + }, + "@leg-back-left": { + "translate": [ + {"time": 0.3167, "curve": "stepped"}, {"time": 0.3333, "x": -0.06, "y": 3.33, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.4, "x": 0.15, "y": 11.38, "curve": "stepped"}, + {"time": 0.4333, "x": -0.06, "y": 3.33, "curve": "stepped"}, {"time": 0.4667, "x": -0.06, "y": 3.33, "curve": 0, "c2": 0.3, "c3": 0.544}, + {"time": 0.5333, "x": 0.15, "y": 11.38, "curve": "stepped"}, {"time": 0.5667, "x": 0.28, "y": 3.86, "curve": "stepped"}, + {"time": 0.6, "x": -0.06, "y": 3.33, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.6667, "x": 0.15, "y": 11.38, "curve": "stepped"}, + {"time": 0.7, "x": -0.06, "y": 3.33, "curve": "stepped"}, {"time": 0.75} ] }, - "body-fur-07": { + "@pivot-main": {"translate": [{"time": 0.8333, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.9167, "y": 31, "curve": 0.315, "c4": 0.8}, {"time": 1}]} + }, + "events": [{"time": 0.3167, "name": "start-attack"}, {"time": 0.4333, "name": "hit"}, {"time": 0.5667, "name": "hit"}, {"time": 0.7, "name": "hit"}] + }, + "3361002765": { + "slots": { + "eyes": {"attachment": [{"time": 0.0167, "name": "eyes-angry"}, {"time": 0.85, "name": "eyes-shut"}, {"time": 0.9333, "name": "eyes"}]}, + "mouth": {"attachment": [{"time": 0.0167, "name": "mouth-bite"}, {"time": 0.1833, "name": "mouth-open"}, {"time": 0.5, "name": "mouth-bite"}, {"time": 0.9333, "name": "mouth"}]} + }, + "bones": { + "@pivot-back": { "rotate": [ - {"angle": 0.98, "curve": 0.358, "c2": 0.65, "c3": 0.693}, {"time": 0.0167, "curve": 0.25, "c3": 0.75}, {"time": 0.1667, "angle": 22.69, "curve": 0.25, "c3": 0.75}, - {"time": 0.3667, "angle": -25.47, "curve": 0.25, "c3": 0.75}, {"time": 0.4667, "angle": 30.13, "curve": 0.25, "c3": 0.75}, {"time": 0.6333, "angle": -32.6, "curve": 0.25, "c3": 0.75}, - {"time": 0.7333, "angle": 29.93, "curve": 0.25, "c3": 0.75}, {"time": 0.9167, "angle": -31.51, "curve": 0.25, "c3": 0.75}, - {"time": 1.0833, "angle": 27.92, "curve": 0.245, "c3": 0.714, "c4": 0.85}, {"time": 1.25, "angle": 2.91} + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "angle": -3.92, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "angle": 2.51, "curve": 0, "c2": 0.2, "c3": 0.858}, + {"time": 0.25, "angle": -6, "curve": "stepped"}, {"time": 0.7167, "angle": -6, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.8333, "angle": 6, "curve": 0.313, "c3": 0.699}, {"time": 1} + ], + "translate": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "x": 71.93, "y": -12.95, "curve": "stepped"}, {"time": 0.1667, "x": 71.93, "y": -12.95, "curve": 0, "c2": 0.2, "c3": 0.858}, + {"time": 0.25, "x": -145.48, "y": 99.8, "curve": 0, "c2": 0.3, "c3": 0.698}, {"time": 0.4167, "x": -145, "y": 149.7, "curve": 1, "c4": 0}, {"time": 0.5, "x": -145}, + {"time": 0.6667, "x": -145, "y": 2.5, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.7167, "y": 48.98, "curve": 0.315, "c4": 0.8}, + {"time": 0.8333, "y": -3.33, "curve": 0.313, "c3": 0.699}, {"time": 1} ] }, - "body-fur-08": { - "rotate": [ - {"angle": 5.84, "curve": 0.381, "c2": 0.59, "c3": 0.727}, {"time": 0.05}, {"time": 0.2, "angle": 22.69, "curve": 0.25, "c3": 0.75}, - {"time": 0.4, "angle": -25.47, "curve": 0.25, "c3": 0.75}, {"time": 0.5, "angle": 30.13, "curve": 0.25, "c3": 0.75}, {"time": 0.6667, "angle": -32.6, "curve": 0.25, "c3": 0.75}, - {"time": 0.7667, "angle": 29.93, "curve": 0.25, "c3": 0.75}, {"time": 0.95, "angle": -31.51, "curve": 0.25, "c3": 0.75}, - {"time": 1.1167, "angle": 27.92, "curve": 0.242, "c3": 0.661, "c4": 0.65}, {"time": 1.25, "angle": -0.91} + "@leg-front-left": { + "translate": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "x": -4.8, "y": 21.17, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.1667, "x": -0.53, "y": 0.11, "curve": 0, "c2": 0.2, "c3": 0.858}, {"time": 0.25, "x": -1, "y": -5.53, "curve": "stepped"}, + {"time": 0.7167, "x": -1, "y": -5.53, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.8333, "x": -2.17, "y": -17.49, "curve": 0.313, "c3": 0.699}, {"time": 1} ] }, - "body-fur-09": { - "rotate": [ - {"angle": 12.1, "curve": 0.351, "c2": 0.39, "c3": 0.696, "c4": 0.76}, {"time": 0.05, "angle": 3.08, "curve": 0.373, "c2": 0.62, "c3": 0.713}, {"time": 0.0833}, - {"time": 0.2333, "angle": 22.69, "curve": 0.25, "c3": 0.75}, {"time": 0.4333, "angle": -25.47, "curve": 0.25, "c3": 0.75}, {"time": 0.5333, "angle": 30.13, "curve": 0.25, "c3": 0.75}, - {"time": 0.7, "angle": -32.6, "curve": 0.25, "c3": 0.75}, {"time": 0.8, "angle": 29.93, "curve": 0.25, "c3": 0.75}, {"time": 0.9833, "angle": -31.51, "curve": 0.25, "c3": 0.75}, - {"time": 1.15, "angle": 27.92, "curve": 0.247, "c3": 0.63, "c4": 0.52}, {"time": 1.25, "angle": 6.86} + "@leg-back-left": { + "translate": [ + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 0.67, "y": -7.85, "curve": 0.161, "c3": 0.854}, {"time": 0.1667, "x": 0.53, "y": -13.09, "curve": 0, "c2": 0.2, "c3": 0.858}, + {"time": 0.25, "curve": "stepped"}, {"time": 0.7167, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.8333, "x": -0.5, "y": -5.23, "curve": 0.313, "c3": 0.699}, {"time": 1} ] }, - "body-fur-10": { - "rotate": [ - {"angle": 3.08, "curve": 0.373, "c2": 0.62, "c3": 0.713}, {"time": 0.0333, "curve": 0.25, "c3": 0.75}, {"time": 0.1833, "angle": 22.69, "curve": 0.25, "c3": 0.75}, - {"time": 0.3833, "angle": -25.47, "curve": 0.25, "c3": 0.75}, {"time": 0.4833, "angle": 30.13, "curve": 0.25, "c3": 0.75}, {"time": 0.65, "angle": -32.6, "curve": 0.25, "c3": 0.75}, - {"time": 0.75, "angle": 29.93, "curve": 0.25, "c3": 0.75}, {"time": 0.9333, "angle": -31.51, "curve": 0.25, "c3": 0.75}, - {"time": 1.1, "angle": 27.92, "curve": 0.243, "c3": 0.685, "c4": 0.73}, {"time": 1.25, "angle": 0.34} + "@shadow": { + "translate": [ + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 61.96, "curve": "stepped"}, {"time": 0.1667, "x": 61.96, "curve": 0, "c2": 0.2, "c3": 0.858}, + {"time": 0.25, "x": -143.36, "curve": 0, "c2": 0.3, "c3": 0.698}, {"time": 0.4167, "x": -154.48, "curve": "stepped"}, {"time": 0.6667, "x": -154.48, "curve": 0, "c2": 0.3, "c3": 0.544}, + {"time": 0.7167, "x": -9.48, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.8333} + ], + "scale": [ + {"time": 0.0833, "curve": 0, "c2": 0.26, "c3": 0.369, "c4": 0.62}, {"time": 0.1667, "x": 1.06, "y": 1.06, "curve": 0, "c2": 0.2, "c3": 0.858}, + {"time": 0.25, "curve": 0, "c2": 0.3, "c3": 0.698}, {"time": 0.4167, "x": 0.86, "y": 0.86}, {"time": 0.5, "x": 1.16, "y": 1.16}, + {"time": 0.6667, "x": 1.18, "y": 1.18, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.7167, "x": 1.02, "y": 1.02, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.8333, "x": 1.1, "y": 1.1, "curve": 0.313, "c3": 0.699}, {"time": 1} ] }, - "body-fur-11": { - "rotate": [ - {"angle": 5.84, "curve": 0.381, "c2": 0.59, "c3": 0.727}, {"time": 0.05, "curve": 0.25, "c3": 0.75}, {"time": 0.2, "angle": 22.69, "curve": 0.25, "c3": 0.75}, - {"time": 0.4, "angle": -25.47, "curve": 0.25, "c3": 0.75}, {"time": 0.5, "angle": 30.13, "curve": 0.25, "c3": 0.75}, {"time": 0.6667, "angle": -32.6, "curve": 0.25, "c3": 0.75}, - {"time": 0.7667, "angle": 29.93, "curve": 0.25, "c3": 0.75}, {"time": 0.95, "angle": -31.51, "curve": 0.25, "c3": 0.75}, - {"time": 1.1167, "angle": 27.92, "curve": 0.242, "c3": 0.661, "c4": 0.65}, {"time": 1.25, "angle": 4.23} + "leg-front-right-IK": { + "translate": [ + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 30.89, "y": 11.74, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": 42.9, "curve": 0, "c2": 0.2, "c3": 0.858}, + {"time": 0.25, "x": -123.77, "y": 159.27, "curve": 0, "c2": 0.3, "c3": 0.54}, {"time": 0.3667, "x": 318.15, "y": 124.76}, + {"time": 0.4667, "x": 422.01, "y": 262.03, "curve": 1, "c4": 0.1}, {"time": 0.5, "x": 241.75, "y": 631.12}, {"time": 0.6667, "x": 249.18, "y": 631.34, "curve": "stepped"}, + {"time": 0.6833, "x": -136.29, "y": 410.95, "curve": "stepped"}, {"time": 0.7, "x": -72.54, "y": 181.91, "curve": "stepped"}, + {"time": 0.7167, "x": 16.74, "y": 109.99, "curve": 0, "c2": 0.18, "c3": 0.424, "c4": 0.59}, {"time": 0.8333} ] }, - "body-fur-12": { - "rotate": [ - {"angle": 8.98, "curve": 0.382, "c2": 0.56, "c3": 0.739}, {"time": 0.0667, "curve": 0.25, "c3": 0.75}, {"time": 0.2167, "angle": 22.69, "curve": 0.25, "c3": 0.75}, - {"time": 0.4167, "angle": -25.47, "curve": 0.25, "c3": 0.75}, {"time": 0.5167, "angle": 30.13, "curve": 0.25, "c3": 0.75}, {"time": 0.6833, "angle": -32.6, "curve": 0.25, "c3": 0.75}, - {"time": 0.7833, "angle": 29.93, "curve": 0.25, "c3": 0.75}, {"time": 0.9667, "angle": -31.51, "curve": 0.25, "c3": 0.75}, - {"time": 1.1333, "angle": 27.92, "curve": 0.244, "c3": 0.643, "c4": 0.58}, {"time": 1.25, "angle": 8.12} + "leg-back-left-IK": { + "translate": [ + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 80.9, "curve": 0.161, "c3": 0.854}, {"time": 0.1667, "x": 49.4, "curve": 0, "c2": 0.2, "c3": 0.858}, + {"time": 0.25, "x": -145.54, "y": 113.45, "curve": 0, "c2": 0.1, "c3": 0.853}, {"time": 0.3667, "x": -120.72, "y": 618.84}, + {"time": 0.4667, "x": -238.23, "y": 753.99, "curve": 1, "c4": 0.1}, {"time": 0.5, "x": -721.75, "y": 409.86}, + {"time": 0.6667, "x": -738.87, "y": 398.15, "curve": 0.49, "c3": 0.806, "c4": 0.36}, {"time": 0.6833, "x": -445.21, "y": 13.62, "curve": 0.73, "c2": 0.24, "c4": 0.59}, + {"time": 0.7, "x": -82.16, "y": 7.42, "curve": "stepped"}, {"time": 0.7167} ] }, - "body-fur-13": { - "rotate": [ - {"angle": 12.28, "curve": 0.379, "c2": 0.52, "c3": 0.747}, {"time": 0.0833, "curve": 0.25, "c3": 0.75}, {"time": 0.2333, "angle": 22.69, "curve": 0.25, "c3": 0.75}, - {"time": 0.4333, "angle": -25.47, "curve": 0.25, "c3": 0.75}, {"time": 0.5333, "angle": 30.13, "curve": 0.25, "c3": 0.75}, {"time": 0.7, "angle": -32.6, "curve": 0.25, "c3": 0.75}, - {"time": 0.8, "angle": 29.93, "curve": 0.25, "c3": 0.75}, {"time": 0.9833, "angle": -31.51, "curve": 0.25, "c3": 0.75}, - {"time": 1.15, "angle": 27.92, "curve": 0.247, "c3": 0.63, "c4": 0.52}, {"time": 1.25, "angle": 11.59} + "@leg-front-right": { + "translate": [ + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 4.31, "y": 11.86, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.1667, "x": -1.88, "y": -12.2, "curve": 0, "c2": 0.2, "c3": 0.858}, {"time": 0.25, "x": -1.86, "y": -9.26, "curve": "stepped"}, + {"time": 0.7167, "x": -1.86, "y": -9.26, "curve": 0.306, "c4": 0.8}, {"time": 0.8333, "x": -4.61, "y": -38.35, "curve": 0.313, "c3": 0.699}, {"time": 1} ] }, - "body-fur-14": { - "rotate": [ - {"angle": 18.81, "curve": 0.337, "c2": 0.34, "c3": 0.702, "c4": 0.78}, {"time": 0.0833, "angle": 3.08, "curve": 0.373, "c2": 0.62, "c3": 0.713}, {"time": 0.1167}, - {"time": 0.2667, "angle": 22.69, "curve": 0.25, "c3": 0.75}, {"time": 0.4667, "angle": -25.47, "curve": 0.25, "c3": 0.75}, {"time": 0.5667, "angle": 30.13, "curve": 0.25, "c3": 0.75}, - {"time": 0.7333, "angle": -32.6, "curve": 0.25, "c3": 0.75}, {"time": 0.8333, "angle": 29.93, "curve": 0.25, "c3": 0.75}, {"time": 1.0167, "angle": -31.51, "curve": 0.25, "c3": 0.75}, - {"time": 1.1833, "angle": 27.92, "curve": 0.261, "c3": 0.618, "c4": 0.44}, {"time": 1.25, "angle": 13.33} + "leg-front-left-IK": { + "translate": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "x": 8.25, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": 42.9, "curve": 0, "c2": 0.2, "c3": 0.858}, + {"time": 0.25, "x": -179, "y": 123.81, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3667, "x": 40.26, "y": 484.21}, {"time": 0.4667, "x": -9.53, "y": 607.64, "curve": 1, "c4": 0.1}, + {"time": 0.5, "x": -392.96, "y": 497.2}, {"time": 0.6667, "x": -405.58, "y": 496.3, "curve": "stepped"}, {"time": 0.6833, "x": -344.4, "y": 182.63, "curve": "stepped"}, + {"time": 0.7, "x": -108.47, "y": 46.07, "curve": "stepped"}, {"time": 0.7167} ] }, - "body-fur-15": { + "tail": { "rotate": [ - {"angle": 12.28, "curve": 0.379, "c2": 0.52, "c3": 0.747}, {"time": 0.0833, "curve": 0.25, "c3": 0.75}, {"time": 0.2333, "angle": 22.69, "curve": 0.25, "c3": 0.75}, - {"time": 0.4333, "angle": -25.47, "curve": 0.25, "c3": 0.75}, {"time": 0.5333, "angle": 30.13, "curve": 0.25, "c3": 0.75}, {"time": 0.7, "angle": -32.6, "curve": 0.25, "c3": 0.75}, - {"time": 0.8, "angle": 29.93, "curve": 0.25, "c3": 0.75}, {"time": 0.9833, "angle": -31.51, "curve": 0.25, "c3": 0.75}, - {"time": 1.15, "angle": 27.92, "curve": 0.247, "c3": 0.63, "c4": 0.52}, {"time": 1.25, "angle": 13.33} + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "angle": 15.61, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "angle": 20.44, "curve": 0, "c2": 0.2, "c3": 0.858}, + {"time": 0.25, "angle": -14.65, "curve": 0.313, "c3": 0.699}, {"time": 0.4667, "angle": -49.65, "curve": 1, "c4": 0.1}, {"time": 0.5, "angle": -2.15}, + {"time": 0.6667, "angle": -1.85, "curve": 0, "c2": 0.4, "c3": 0.383}, {"time": 0.8333, "angle": 21.05, "curve": 0.313, "c3": 0.699}, {"time": 1} ] }, - "body-fur-16": { + "@pivot-center": { "rotate": [ - {"angle": 15.63, "curve": 0.37, "c2": 0.48, "c3": 0.753}, {"time": 0.1, "curve": 0.25, "c3": 0.75}, {"time": 0.25, "angle": 22.69, "curve": 0.25, "c3": 0.75}, - {"time": 0.45, "angle": -25.47, "curve": 0.25, "c3": 0.75}, {"time": 0.55, "angle": 30.13, "curve": 0.25, "c3": 0.75}, {"time": 0.7167, "angle": -32.6, "curve": 0.25, "c3": 0.75}, - {"time": 0.8167, "angle": 29.93, "curve": 0.25, "c3": 0.75}, {"time": 1, "angle": -31.51, "curve": 0.25, "c3": 0.75}, - {"time": 1.1667, "angle": 27.92, "curve": 0.253, "c3": 0.621, "c4": 0.48}, {"time": 1.25, "angle": 13.84} + {"time": 0.25, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.4667, "angle": 112.05, "curve": 1, "c4": 0.1}, {"time": 0.5, "angle": -146.9}, + {"time": 0.6667, "angle": -145.45, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.7167} ] } }, - "events": [{"time": 0.3333, "name": "start-attack"}, {"time": 0.3667, "name": "hit"}, {"time": 0.5, "name": "hit"}, {"time": 0.6333, "name": "hit"}, {"time": 0.7667, "name": "hit"}] + "events": [{"time": 0.4167, "name": "start-attack"}, {"time": 0.5, "name": "hit"}, {"time": 0.6667, "name": "hit"}] }, - "1279050865": { - "slots": {"eyes": {"attachment": [{"time": 1, "name": "eyes-shut"}, {"time": 1.0833, "name": "eyes"}]}}, + "2626719915": { + "slots": { + "eyes": {"attachment": [{"time": 0.0167, "name": "eyes-angry"}, {"time": 0.9167, "name": "eyes"}]}, + "mouth": {"attachment": [{"time": 0.0167, "name": "mouth-bite"}, {"time": 0.1833, "name": "mouth-open"}, {"time": 0.5, "name": "mouth-bite"}, {"time": 0.9167, "name": "mouth"}]} + }, "bones": { "@pivot-back": { "rotate": [ - {"curve": 0.313, "c3": 0.699}, {"time": 0.3333, "angle": 2.04, "curve": 0.313, "c3": 0.699}, {"time": 0.6667, "curve": 0.313, "c3": 0.699}, - {"time": 1, "angle": 1.79, "curve": 0.313, "c3": 0.699}, {"time": 1.3333} + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "angle": -3.92, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "angle": 2.51, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.25, "angle": -6, "curve": "stepped"}, {"time": 0.2667, "angle": -20, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.4833, "angle": -22, "curve": "stepped"}, + {"time": 0.5, "angle": 10}, {"time": 0.6667, "angle": 12, "curve": "stepped"}, {"time": 0.7, "angle": 4, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.8333, "angle": 6, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1} ], "translate": [ - {"curve": 0.313, "c3": 0.699}, {"time": 0.3333, "y": -6.53, "curve": 0.313, "c3": 0.699}, {"time": 0.6667, "curve": 0.313, "c3": 0.699}, - {"time": 1, "y": -8.86, "curve": 0.313, "c3": 0.699}, {"time": 1.3333} + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "x": 71.93, "y": -12.95, "curve": "stepped"}, {"time": 0.1667, "x": 71.93, "y": -12.95, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.25, "x": -135.5, "curve": "stepped"}, {"time": 0.2667, "x": -551.77, "y": 110, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.4833, "x": -551.77, "y": 120.52, "curve": "stepped"}, {"time": 0.5, "x": -565, "y": -35}, {"time": 0.6667, "x": -565, "y": -40, "curve": "stepped"}, + {"time": 0.7, "x": -135.5, "y": 5, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.8333, "x": -135.5, "y": 10, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1} ], - "scale": [{"curve": 0.313, "c3": 0.699}, {"time": 0.6667, "y": 0.99, "curve": 0.313, "c3": 0.699}, {"time": 1.3333}] + "scale": [{"time": 0.25, "curve": "stepped"}, {"time": 0.2667, "x": -1, "curve": "stepped"}, {"time": 0.6667, "x": -1, "curve": "stepped"}, {"time": 0.7}] }, - "@leg-front-right": { + "leg-front-right-IK": { "translate": [ - {"curve": 0.313, "c3": 0.699}, {"time": 0.3333, "x": 0.02, "y": -16.89, "curve": 0.313, "c3": 0.699}, {"time": 0.6667, "x": -0.04, "y": 2.46, "curve": 0.313, "c3": 0.699}, - {"time": 1, "x": -0.02, "y": -18.9, "curve": 0.313, "c3": 0.699}, {"time": 1.3333} + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 30.89, "y": 11.74, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": 42.9, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.25, "x": -172.87, "y": 28.32, "curve": "stepped"}, {"time": 0.2667, "x": 355.74, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.4833, "x": 374.5, "curve": "stepped"}, + {"time": 0.5, "x": 488.71, "y": 62.54, "curve": 0.306, "c3": 0.695}, {"time": 0.6667, "x": 490.35, "y": 93.63, "curve": "stepped"}, {"time": 0.7, "x": -152.3, "curve": "stepped"}, + {"time": 0.8333, "x": -152.3, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1} + ] + }, + "leg-front-left-IK": { + "translate": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "x": 8.25, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": 42.9, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.25, "x": -192.09, "y": 31.17, "curve": "stepped"}, {"time": 0.2667, "x": -280.98, "y": 58.99, "curve": 0.306, "c3": 0.695}, + {"time": 0.4833, "x": -315.94, "y": 61.17, "curve": "stepped"}, {"time": 0.5, "x": -170.67, "curve": "stepped"}, {"time": 0.6667, "x": -170.67, "curve": "stepped"}, + {"time": 0.7, "x": -151.12, "curve": "stepped"}, {"time": 0.8333, "x": -151.12, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1} ] }, "@leg-front-left": { "translate": [ - {"curve": 0.313, "c3": 0.699}, {"time": 0.3333, "x": 0.22, "y": -5.13, "curve": 0.313, "c3": 0.699}, {"time": 0.6667, "x": -0.03, "y": 1.81, "curve": 0.313, "c3": 0.699}, - {"time": 1, "x": 0.2, "y": -7.06, "curve": 0.313, "c3": 0.699}, {"time": 1.3333} - ], - "scale": [ - {"curve": 0.313, "c3": 0.699}, {"time": 0.3333, "x": 0.905, "curve": 0.313, "c3": 0.699}, {"time": 0.6667, "curve": 0.313, "c3": 0.699}, - {"time": 1, "x": 0.905, "curve": 0.313, "c3": 0.699}, {"time": 1.3333} + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "x": -4.8, "y": 21.17, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.1667, "x": -0.53, "y": 0.11, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "x": -1, "y": -5.53, "curve": "stepped"}, + {"time": 0.2667, "x": 2.26, "y": 14.19, "curve": "stepped"}, {"time": 0.4833, "x": 2.26, "y": 14.19, "curve": "stepped"}, {"time": 0.5, "x": 3.58, "y": 7.39, "curve": "stepped"}, + {"time": 0.6667, "x": 3.58, "y": 7.39, "curve": "stepped"}, {"time": 0.7, "x": -1, "y": -5.53, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.8333, "x": -0.91, "y": -4.54, "curve": 0.315, "c4": 0.8}, {"time": 1} ] }, "@leg-back-left": { "translate": [ - {"curve": 0.313, "c3": 0.699}, {"time": 0.3333, "x": 0.22, "y": -4.11, "curve": 0.313, "c3": 0.699}, {"time": 0.6667, "x": -0.03, "y": 1.69, "curve": 0.313, "c3": 0.699}, - {"time": 1, "x": 0.2, "y": -5.68, "curve": 0.313, "c3": 0.699}, {"time": 1.3333} - ], - "scale": [ - {"curve": 0.313, "c3": 0.699}, {"time": 0.3333, "x": 0.943, "curve": 0.313, "c3": 0.699}, {"time": 0.6667, "curve": 0.313, "c3": 0.699}, - {"time": 1, "x": 0.943, "curve": 0.313, "c3": 0.699}, {"time": 1.3333} + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 0.67, "y": -7.85, "curve": 0.161, "c3": 0.854}, {"time": 0.1667, "x": 0.53, "y": -13.09, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.25, "curve": "stepped"}, {"time": 0.2667, "x": -16.19, "y": -13.84, "curve": "stepped"}, {"time": 0.4833, "x": -16.19, "y": -13.84, "curve": "stepped"}, + {"time": 0.5, "x": -2.2, "y": -22.7}, {"time": 0.6667, "x": -0.28, "y": -26.94, "curve": "stepped"}, {"time": 0.7} ] }, - "@pivot-main": { - "scale": [ - {"curve": 0.313, "c3": 0.699}, {"time": 0.3333, "y": 0.98, "curve": 0.313, "c3": 0.699}, {"time": 0.6667, "curve": 0.313, "c3": 0.699}, - {"time": 1, "y": 0.98, "curve": 0.313, "c3": 0.699}, {"time": 1.3333} + "leg-back-left-IK": { + "translate": [ + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 80.9, "curve": 0.161, "c3": 0.854}, {"time": 0.1667, "x": 49.4, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.25, "x": -96.78, "y": 27.51, "curve": "stepped"}, {"time": 0.2667, "x": -635.14, "y": 132.21, "curve": 0.306, "c3": 0.695}, + {"time": 0.4833, "x": -660.78, "y": 143.78, "curve": "stepped"}, {"time": 0.5, "x": -556.99, "y": -8.43, "curve": 0, "c2": 0.3, "c3": 0.544}, + {"time": 0.6667, "x": -552.72, "y": -5.12, "curve": "stepped"}, {"time": 0.7, "x": -130.76, "curve": "stepped"}, {"time": 0.8333, "x": -130.76, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 1} ] }, - "tail": { - "rotate": [{"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "angle": 4.54, "curve": 0.313, "c3": 0.699}, {"time": 1, "angle": -9.06, "curve": 0.313, "c3": 0.699}, {"time": 1.3333}] - }, - "back": { - "rotate": [{"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "angle": -4.27, "curve": 0.313, "c3": 0.699}, {"time": 1, "angle": 2.83, "curve": 0.313, "c3": 0.699}, {"time": 1.3333}] + "@leg-front-right": { + "translate": [ + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 4.31, "y": 11.86, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.1667, "x": -10.19, "y": -4.67, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "x": -1.86, "y": -9.26, "curve": "stepped"}, + {"time": 0.2667, "x": -18.56, "y": -34.96, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.4833, "x": -13.51, "y": -17.45, "curve": "stepped"}, {"time": 0.5, "x": -4.07, "y": 8.84}, + {"time": 0.6667, "x": -1.39, "y": 0.5, "curve": "stepped"}, {"time": 0.7, "x": -1.86, "y": -9.26, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.8333, "x": -2.25, "y": -13.72, "curve": 0.315, "c4": 0.8}, {"time": 1} + ] }, - "ear-right": {"rotate": [{"curve": 0.461, "c3": 0.543}, {"time": 0.6667, "angle": -3.91, "curve": 0.461, "c3": 0.543}, {"time": 1.3333}]}, - "ear-left": {"rotate": [{"curve": 0.461, "c3": 0.543}, {"time": 0.6667, "angle": -3.92, "curve": 0.461, "c3": 0.543}, {"time": 1.3333}]}, "@shadow": { + "translate": [ + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 61.96, "curve": "stepped"}, {"time": 0.1667, "x": 61.96, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.25, "x": -143.36, "curve": "stepped"}, {"time": 0.2667, "x": -150.21, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.4833, "x": -152.15, "curve": "stepped"}, + {"time": 0.5, "x": -142.78}, {"time": 0.6667, "x": -144.04, "curve": "stepped"}, {"time": 0.7, "x": -144.72, "curve": "stepped"}, + {"time": 0.8333, "x": -144.72, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1} + ], "scale": [ - {"curve": 0.306, "c3": 0.695}, {"time": 0.3333, "x": 1.05, "y": 1.05, "curve": 0.306, "c3": 0.695}, {"time": 0.6667, "curve": 0.306, "c3": 0.695}, - {"time": 1, "x": 1.05, "y": 1.05, "curve": 0.306, "c3": 0.695}, {"time": 1.3333} + {"time": 0.0833, "curve": 0, "c2": 0.26, "c3": 0.369, "c4": 0.62}, {"time": 0.1667, "x": 1.06, "y": 1.06, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "curve": "stepped"}, + {"time": 0.2667, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.4833, "x": 0.9, "y": 0.9, "curve": "stepped"}, {"time": 0.5, "x": 1.06, "y": 1.06}, + {"time": 0.6667, "x": 1.1, "y": 1.1, "curve": "stepped"}, {"time": 0.7, "x": 1.06, "y": 1.06, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.8333, "x": 1.1, "y": 1.1, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1} ] }, - "body-fur-01": { + "tail": { "rotate": [ - {"angle": 10.51, "curve": 0.333, "c2": 0.33, "c3": 0.758}, {"time": 0.25, "angle": -5.73, "curve": 0.25, "c3": 0.75}, - {"time": 0.5833, "angle": 14.18, "curve": 0.276, "c3": 0.621, "c4": 0.4}, {"time": 0.6667, "angle": 10.51, "curve": 0.333, "c2": 0.33, "c3": 0.758}, - {"time": 0.9167, "angle": -5.73, "curve": 0.25, "c3": 0.75}, {"time": 1.25, "angle": 14.18, "curve": 0.276, "c3": 0.621, "c4": 0.4}, {"time": 1.3333, "angle": 10.51} + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "angle": 15.61, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "angle": 20.44, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.25, "angle": -15.58, "curve": "stepped"}, {"time": 0.2667, "angle": 40.35, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.4833, "angle": 41.35, "curve": "stepped"}, + {"time": 0.5, "angle": -14.65}, {"time": 0.6667, "angle": -15.65, "curve": "stepped"}, {"time": 0.7, "angle": -15.58, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.8333, "angle": 19.38, "curve": 0.313, "c3": 0.699}, {"time": 1} ] }, - "body-fur-02": { - "rotate": [ - {"angle": 13.84, "curve": 0.348, "c2": 0.66, "c3": 0.682}, {"time": 0.0167, "angle": 14.18, "curve": 0.25, "c3": 0.75}, - {"time": 0.35, "angle": -5.73, "curve": 0.247, "c3": 0.729, "c4": 0.91}, {"time": 0.6667, "angle": 13.84, "curve": 0.348, "c2": 0.66, "c3": 0.682}, - {"time": 0.6833, "angle": 14.18, "curve": 0.243, "c3": 0.655, "c4": 0.63}, {"time": 0.9167, "angle": -0.91, "curve": 0.382, "c2": 0.58, "c3": 0.731}, - {"time": 1.0167, "angle": -5.73, "curve": 0.247, "c3": 0.729, "c4": 0.91}, {"time": 1.3333, "angle": 13.84} + "@pivot-main": {"translate": [{"time": 0.8333, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.9167, "y": 31, "curve": 0.315, "c4": 0.8}, {"time": 1}]} + }, + "events": [{"time": 0.3333, "name": "start-attack"}, {"time": 0.5, "name": "hit"}] + }, + "660880126": { + "slots": { + "eyes": {"attachment": [{"time": 0.05, "name": "eyes-angry"}, {"time": 0.6667, "name": "eyes-shut"}, {"time": 0.75, "name": "eyes"}]}, + "mouth": {"attachment": [{"time": 0.05, "name": "mouth-bite"}, {"time": 0.2667, "name": "mouth-open"}, {"time": 0.55, "name": "mouth-bite"}, {"time": 0.75, "name": "mouth"}]} + }, + "bones": { + "@leg-front-right": { + "translate": [ + {"curve": 0, "c2": 0.4, "c3": 0.383}, {"time": 0.25, "x": -1.86, "y": -9.26, "curve": "stepped"}, {"time": 0.3167, "x": -1.86, "y": -9.26, "curve": "stepped"}, + {"time": 0.3333, "x": -1.99, "y": -1.73}, {"time": 0.5, "x": -2.65, "y": -7.47, "curve": "stepped"}, {"time": 0.55, "x": -2.13, "y": 6.97, "curve": 0.306, "c3": 0.695}, + {"time": 0.6667, "x": 13.75, "y": -28.79, "curve": 0, "c2": 0.3, "c3": 0.54}, {"time": 0.8333} ] }, - "body-fur-03": { + "tail": { "rotate": [ - {"angle": 5.54, "curve": 0.37, "c2": 0.47, "c3": 0.753}, {"time": 0.1833, "angle": -5.73, "curve": 0.25, "c3": 0.75}, - {"time": 0.5167, "angle": 14.18, "curve": 0.253, "c3": 0.621, "c4": 0.48}, {"time": 0.6667, "angle": 5.54, "curve": 0.37, "c2": 0.47, "c3": 0.753}, - {"time": 0.85, "angle": -5.73, "curve": 0.25, "c3": 0.75}, {"time": 1.1833, "angle": 14.18, "curve": 0.253, "c3": 0.621, "c4": 0.48}, {"time": 1.3333, "angle": 5.54} + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.25, "angle": 21.98, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3167, "angle": -15.58, "curve": "stepped"}, + {"time": 0.3333, "angle": 6.35}, {"time": 0.5, "angle": 10.35, "curve": "stepped"}, {"time": 0.55, "angle": -11.84, "curve": 0.313, "c3": 0.699}, + {"time": 0.6667, "angle": 16.95, "curve": 0.313, "c3": 0.699}, {"time": 0.8333} ] }, - "body-fur-04": { + "@pivot-back": { "rotate": [ - {"angle": 12.53, "curve": 0.306, "c2": 0.23, "c3": 0.756}, {"time": 0.2833, "angle": -5.73, "curve": 0.25, "c3": 0.75}, - {"time": 0.6167, "angle": 14.18, "curve": 0.294, "c3": 0.631, "c4": 0.37}, {"time": 0.6667, "angle": 12.53, "curve": 0.291, "c2": 0.19, "c3": 0.671, "c4": 0.68}, - {"time": 0.85, "angle": -0.91, "curve": 0.382, "c2": 0.58, "c3": 0.731}, {"time": 0.95, "angle": -5.73, "curve": 0.25, "c3": 0.75}, - {"time": 1.2833, "angle": 14.18, "curve": 0.294, "c3": 0.631, "c4": 0.37}, {"time": 1.3333, "angle": 12.53} - ] + {"curve": 0, "c2": 0.4, "c3": 0.383}, {"time": 0.15, "angle": 4, "curve": "stepped"}, {"time": 0.25, "angle": 4, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.3167, "curve": "stepped"}, {"time": 0.3333}, {"time": 0.5, "angle": -3, "curve": "stepped"}, {"time": 0.55, "curve": 0.313, "c3": 0.699}, + {"time": 0.6667, "angle": 6, "curve": 0.313, "c3": 0.699}, {"time": 0.8333} + ], + "translate": [ + {"curve": 0, "c2": 0.4, "c3": 0.383}, {"time": 0.25, "x": 25, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3167, "x": -135.5, "curve": "stepped"}, {"time": 0.3333, "x": -560.54}, + {"time": 0.5, "x": -577.1, "curve": "stepped"}, {"time": 0.55, "x": -151.24, "curve": 0.313, "c3": 0.699}, {"time": 0.6667, "x": -151.24, "y": 4.06, "curve": 0.313, "c3": 0.699}, + {"time": 0.8333} + ], + "scale": [{"time": 0.3167, "curve": "stepped"}, {"time": 0.3333, "x": -1, "curve": "stepped"}, {"time": 0.5, "x": -1, "curve": "stepped"}, {"time": 0.55}] }, - "body-fur-05": { - "rotate": [ - {"angle": 6.86, "curve": 0.363, "c2": 0.44, "c3": 0.755}, {"time": 0.2, "angle": -5.73, "curve": 0.25, "c3": 0.75}, - {"time": 0.5333, "angle": 14.18, "curve": 0.258, "c3": 0.619, "c4": 0.45}, {"time": 0.6667, "angle": 6.86, "curve": 0.363, "c2": 0.44, "c3": 0.755}, - {"time": 0.8667, "angle": -5.73, "curve": 0.25, "c3": 0.75}, {"time": 1.2, "angle": 14.18, "curve": 0.258, "c3": 0.619, "c4": 0.45}, {"time": 1.3333, "angle": 6.86} + "@leg-front-left": { + "translate": [ + {"curve": 0, "c2": 0.4, "c3": 0.383}, {"time": 0.25, "x": -1, "y": -5.53, "curve": "stepped"}, {"time": 0.3167, "x": -1, "y": -5.53, "curve": "stepped"}, + {"time": 0.3333, "x": -1.12, "y": 1.52, "curve": "stepped"}, {"time": 0.55, "x": -1.12, "y": 1.52, "curve": 0.313, "c3": 0.699}, + {"time": 0.6667, "x": -1, "y": -5.53, "curve": 0, "c2": 0.3, "c3": 0.54}, {"time": 0.8333} ] }, - "body-fur-06": { - "rotate": [ - {"angle": 13.33, "curve": 0.289, "c2": 0.17, "c3": 0.755}, {"time": 0.3, "angle": -5.73, "curve": 0.25, "c3": 0.75}, - {"time": 0.6333, "angle": 14.18, "curve": 0.305, "c3": 0.64, "c4": 0.36}, {"time": 0.6667, "angle": 13.34, "curve": 0.277, "c2": 0.14, "c3": 0.667, "c4": 0.67}, - {"time": 0.8667, "angle": -0.91, "curve": 0.382, "c2": 0.58, "c3": 0.731}, {"time": 0.9667, "angle": -5.73, "curve": 0.25, "c3": 0.75}, - {"time": 1.3, "angle": 14.18, "curve": 0.305, "c3": 0.64, "c4": 0.36}, {"time": 1.3333, "angle": 13.33} + "@shadow": { + "translate": [ + {"time": 0.25, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3167, "x": -143.36, "curve": "stepped"}, {"time": 0.3333, "x": -143.36}, {"time": 0.5, "x": -157.56, "curve": "stepped"}, + {"time": 0.55, "x": -161.35, "curve": "stepped"}, {"time": 0.6667, "x": -161.35, "curve": 0.313, "c3": 0.699}, {"time": 0.8333} + ], + "scale": [ + {"curve": 0, "c2": 0.4, "c3": 0.383}, {"time": 0.25, "x": 1.08, "y": 1.08, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3167, "curve": "stepped"}, {"time": 0.3333}, + {"time": 0.5, "x": 1.08, "y": 1.08, "curve": "stepped"}, {"time": 0.55, "curve": 0.313, "c3": 0.699}, {"time": 0.6667, "x": 1.08, "y": 1.08, "curve": 0.313, "c3": 0.699}, + {"time": 0.8333} ] }, - "body-fur-07": { - "rotate": [ - {"angle": 2.91, "curve": 0.379, "c2": 0.52, "c3": 0.747}, {"time": 0.15, "angle": -5.73, "curve": 0.25, "c3": 0.75}, - {"time": 0.4833, "angle": 14.18, "curve": 0.247, "c3": 0.63, "c4": 0.53}, {"time": 0.6667, "angle": 2.91, "curve": 0.379, "c2": 0.52, "c3": 0.747}, - {"time": 0.8167, "angle": -5.73, "curve": 0.25, "c3": 0.75}, {"time": 1.15, "angle": 14.18, "curve": 0.247, "c3": 0.63, "c4": 0.53}, {"time": 1.3333, "angle": 2.91} + "leg-front-left-IK": { + "translate": [ + {"time": 0.25, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3167, "x": -192.09, "y": 31.17, "curve": "stepped"}, {"time": 0.3333, "x": -176.58, "y": 9.99, "curve": 0.31, "c4": 0.8}, + {"time": 0.5, "x": -211.11, "y": 5.88, "curve": "stepped"}, {"time": 0.55, "x": -180.48, "curve": "stepped"}, {"time": 0.6667, "x": -180.48, "curve": 0.313, "c3": 0.699}, + {"time": 0.8333} ] }, - "body-fur-08": { - "rotate": [ - {"angle": -0.91, "curve": 0.382, "c2": 0.58, "c3": 0.731}, {"time": 0.1, "angle": -5.73, "curve": 0.25, "c3": 0.75}, - {"time": 0.4333, "angle": 14.18, "curve": 0.243, "c3": 0.655, "c4": 0.63}, {"time": 0.6667, "angle": -0.91, "curve": 0.382, "c2": 0.58, "c3": 0.731}, - {"time": 0.7667, "angle": -5.73, "curve": 0.25, "c3": 0.75}, {"time": 1.1, "angle": 14.18, "curve": 0.243, "c3": 0.655, "c4": 0.63}, {"time": 1.3333, "angle": -0.91} + "leg-front-right-IK": { + "translate": [ + {"time": 0.25, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3167, "x": -59.07, "y": 28.32, "curve": "stepped"}, {"time": 0.3333, "x": 476, "y": 29.47, "curve": 0.31, "c4": 0.8}, + {"time": 0.5, "x": 448.23, "y": 9.95, "curve": "stepped"}, {"time": 0.55, "x": -180.48, "curve": "stepped"}, {"time": 0.6667, "x": -180.48, "curve": 0.313, "c3": 0.699}, {"time": 0.8333} ] }, - "body-fur-09": { - "rotate": [ - {"angle": 6.86, "curve": 0.363, "c2": 0.44, "c3": 0.755}, {"time": 0.2, "angle": -5.73, "curve": 0.25, "c3": 0.75}, - {"time": 0.5333, "angle": 14.18, "curve": 0.258, "c3": 0.619, "c4": 0.45}, {"time": 0.6667, "angle": 6.8, "curve": 0.333, "c2": 0.33, "c3": 0.68, "c4": 0.71}, - {"time": 0.7667, "angle": -0.91, "curve": 0.382, "c2": 0.58, "c3": 0.731}, {"time": 0.8667, "angle": -5.73, "curve": 0.25, "c3": 0.75}, - {"time": 1.2, "angle": 14.18, "curve": 0.258, "c3": 0.619, "c4": 0.45}, {"time": 1.3333, "angle": 6.86} + "leg-back-left-IK": { + "translate": [ + {"time": 0.25, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3167, "x": -96.78, "y": 27.51, "curve": "stepped"}, {"time": 0.3333, "x": -531.4, "y": 29.98, "curve": 0.31, "c4": 0.8}, + {"time": 0.5, "x": -566.3, "y": 31.56, "curve": "stepped"}, {"time": 0.55, "x": -134.74, "curve": "stepped"}, {"time": 0.6667, "x": -134.74, "curve": 0.313, "c3": 0.699}, + {"time": 0.8333} ] }, - "body-fur-10": { + "@pivot-main": {"translate": [{"time": 0.6667, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.75, "y": 31, "curve": 0.315, "c4": 0.8}, {"time": 0.8333}]}, + "@leg-back-left": { + "translate": [{"time": 0.3167, "curve": "stepped"}, {"time": 0.3333, "x": -9.88, "y": -22.87}, {"time": 0.5, "x": -15.32, "y": -26.13, "curve": "stepped"}, {"time": 0.55}] + } + }, + "events": [{"time": 0.25, "name": "start-attack"}, {"time": 0.3333, "name": "hit"}] + }, + "2709386226": { + "slots": {"eyes": {"attachment": [{"name": "eyes-shut"}]}, "mouth": {"attachment": [{"time": 0.0333, "name": "mouth-open"}]}}, + "bones": { + "@pivot-back": { "rotate": [ - {"angle": 0.34, "curve": 0.382, "c2": 0.57, "c3": 0.737}, {"time": 0.1167, "angle": -5.73, "curve": 0.25, "c3": 0.75}, - {"time": 0.45, "angle": 14.18, "curve": 0.244, "c3": 0.646, "c4": 0.59}, {"time": 0.6667, "angle": 0.34, "curve": 0.382, "c2": 0.57, "c3": 0.737}, - {"time": 0.7833, "angle": -5.73, "curve": 0.25, "c3": 0.75}, {"time": 1.1167, "angle": 14.18, "curve": 0.244, "c3": 0.646, "c4": 0.59}, {"time": 1.3333, "angle": 0.34} - ] + {"angle": -8.23, "curve": "stepped"}, {"time": 0.1667, "angle": -8.23, "curve": 0.306, "c4": 0.8}, {"time": 0.3333, "angle": 5.43, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5} + ], + "translate": [{"y": -0.04, "curve": 0, "c2": 0.3, "c3": 0.534}, {"time": 0.1667, "x": 17.97, "y": 94.25, "curve": 0.315, "c4": 0.8}, {"time": 0.3333, "y": -0.04}] }, - "body-fur-11": { + "@leg-back-left": {"rotate": [{"angle": 14.26, "curve": "stepped"}, {"time": 0.2167, "angle": 14.26, "curve": 0, "c2": 0.1, "c3": 0.847}, {"time": 0.3333, "angle": -11.75}]}, + "@leg-front-left": {"rotate": [{"angle": 14.58, "curve": "stepped"}, {"time": 0.2167, "angle": 14.58, "curve": 0, "c2": 0.1, "c3": 0.847}, {"time": 0.3333, "angle": 20.14}]}, + "@leg-front-right": {"rotate": [{"angle": 12.31, "curve": "stepped"}, {"time": 0.2167, "angle": 12.31, "curve": 0, "c2": 0.1, "c3": 0.847}, {"time": 0.3333, "angle": -30.3}]}, + "tail": { "rotate": [ - {"angle": 4.23, "curve": 0.375, "c2": 0.5, "c3": 0.75}, {"time": 0.1667, "angle": -5.73, "curve": 0.25, "c3": 0.75}, {"time": 0.5, "angle": 14.18, "curve": 0.25, "c3": 0.625, "c4": 0.5}, - {"time": 0.6667, "angle": 4.23, "curve": 0.375, "c2": 0.5, "c3": 0.75}, {"time": 0.8333, "angle": -5.73, "curve": 0.25, "c3": 0.75}, - {"time": 1.1667, "angle": 14.18, "curve": 0.25, "c3": 0.625, "c4": 0.5}, {"time": 1.3333, "angle": 4.23} + {"curve": 0, "c2": 0.6, "c3": 0.237}, {"time": 0.1667, "angle": -18.5, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "angle": 4.16, "curve": 0, "c2": 0.3, "c3": 0.54}, + {"time": 0.5} ] }, - "body-fur-12": { + "@shadow": {"scale": [{"x": 1.3, "y": 1.3, "curve": 0, "c2": 0.4, "c3": 0.533}, {"time": 0.1667, "x": 0.9, "y": 0.9, "curve": 0.315, "c4": 0.8}, {"time": 0.3333}]} + } + }, + "3875510864": { + "slots": { + "eyes": {"attachment": [{"time": 0.05, "name": "eyes-angry"}]}, + "mouth": {"attachment": [{"time": 0.05, "name": "mouth-bite"}, {"time": 0.4667, "name": "mouth-open"}, {"time": 0.75, "name": "mouth-bite"}]} + }, + "bones": { + "@pivot-back": { "rotate": [ - {"angle": 8.12, "curve": 0.354, "c2": 0.41, "c3": 0.756}, {"time": 0.2167, "angle": -5.73, "curve": 0.25, "c3": 0.75}, - {"time": 0.55, "angle": 14.18, "curve": 0.263, "c3": 0.618, "c4": 0.43}, {"time": 0.6667, "angle": 8.12, "curve": 0.354, "c2": 0.41, "c3": 0.756}, - {"time": 0.8833, "angle": -5.73, "curve": 0.25, "c3": 0.75}, {"time": 1.2167, "angle": 14.18, "curve": 0.263, "c3": 0.618, "c4": 0.43}, {"time": 1.3333, "angle": 8.12} + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "angle": 4, "curve": 0, "c2": 0.6, "c3": 0.237}, {"time": 0.3333, "angle": -8.88, "curve": 0.621, "c3": 0, "c4": 1.6}, + {"time": 0.6667, "angle": 8.17, "curve": 0.701, "c4": 0.5}, {"time": 0.8833, "angle": 5, "curve": 0.461, "c3": 0.543}, {"time": 1} + ], + "translate": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": 33.65, "y": -5, "curve": 0, "c2": 0.6, "c3": 0.237}, + {"time": 0.3333, "x": -62.54, "y": 309.16, "curve": 0.621, "c3": 0, "c4": 1.6}, {"time": 0.6667, "x": 12.32, "y": 268.04, "curve": 0.701, "c4": 0.5}, {"time": 0.8833} ] }, - "body-fur-13": { - "rotate": [ - {"angle": 11.59, "curve": 0.32, "c2": 0.29, "c3": 0.757}, {"time": 0.2667, "angle": -5.73, "curve": 0.25, "c3": 0.75}, - {"time": 0.6, "angle": 14.18, "curve": 0.284, "c3": 0.625, "c4": 0.38}, {"time": 0.6667, "angle": 11.59, "curve": 0.32, "c2": 0.29, "c3": 0.757}, - {"time": 0.9333, "angle": -5.73, "curve": 0.25, "c3": 0.75}, {"time": 1.2667, "angle": 14.18, "curve": 0.284, "c3": 0.625, "c4": 0.38}, {"time": 1.3333, "angle": 11.59} + "@leg-front-left": { + "translate": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": -0.29, "y": -5.47, "curve": 0, "c2": 0.6, "c3": 0.237}, {"time": 0.3333, "curve": "stepped"}, + {"time": 0.6667, "curve": 0.701, "c4": 0.5}, {"time": 0.8833, "x": -0.95, "y": -14.45, "curve": 0.461, "c3": 0.543}, {"time": 1} ] }, - "body-fur-14": { - "rotate": [ - {"angle": 13.33, "curve": 0.36, "c2": 0.64, "c3": 0.695}, {"time": 0.0333, "angle": 14.18, "curve": 0.25, "c3": 0.75}, - {"time": 0.3667, "angle": -5.73, "curve": 0.245, "c3": 0.711, "c4": 0.83}, {"time": 0.6667, "angle": 13.33, "curve": 0.36, "c2": 0.64, "c3": 0.695}, - {"time": 0.7, "angle": 14.18, "curve": 0.243, "c3": 0.655, "c4": 0.63}, {"time": 0.9333, "angle": -0.91, "curve": 0.382, "c2": 0.58, "c3": 0.731}, - {"time": 1.0333, "angle": -5.73, "curve": 0.245, "c3": 0.711, "c4": 0.83}, {"time": 1.3333, "angle": 13.33} + "@leg-front-right": { + "translate": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": -1.07, "y": -20.09, "curve": 0, "c2": 0.6, "c3": 0.237}, {"time": 0.3333, "curve": "stepped"}, + {"time": 0.6667, "curve": 0.701, "c4": 0.5}, {"time": 0.8833, "x": -1.66, "y": -25.29, "curve": 0.461, "c3": 0.543}, {"time": 1} ] }, - "body-fur-15": { - "rotate": [ - {"angle": 13.33, "curve": 0.289, "c2": 0.17, "c3": 0.755}, {"time": 0.3, "angle": -5.73, "curve": 0.25, "c3": 0.75}, - {"time": 0.6333, "angle": 14.18, "curve": 0.305, "c3": 0.64, "c4": 0.36}, {"time": 0.6667, "angle": 13.33, "curve": 0.289, "c2": 0.17, "c3": 0.755}, - {"time": 0.9667, "angle": -5.73, "curve": 0.25, "c3": 0.75}, {"time": 1.3, "angle": 14.18, "curve": 0.305, "c3": 0.64, "c4": 0.36}, {"time": 1.3333, "angle": 13.33} + "@shadow": { + "translate": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": 24.43, "curve": 0, "c2": 0.6, "c3": 0.237}, {"time": 0.3333, "x": -70.38, "curve": 0.621, "c3": 0, "c4": 1.4}, + {"time": 0.6667, "x": 5.15, "curve": 0.701, "c4": 0.5}, {"time": 0.8833, "x": -8.95, "curve": 0.461, "c3": 0.543}, {"time": 1} + ], + "scale": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": 1.08, "y": 1.08, "curve": 0, "c2": 0.6, "c3": 0.237}, + {"time": 0.3333, "x": 0.85, "y": 0.85, "curve": 0.621, "c3": 0, "c4": 1.4}, {"time": 0.6667, "x": 0.9, "y": 0.9, "curve": 0.701, "c4": 0.5}, + {"time": 0.8833, "x": 1.1, "y": 1.1, "curve": 0.461, "c3": 0.543}, {"time": 1} ] }, - "body-fur-16": { + "tail": { "rotate": [ - {"angle": 13.84, "curve": 0.348, "c2": 0.66, "c3": 0.682}, {"time": 0.0167, "angle": 14.18, "curve": 0.25, "c3": 0.75}, - {"time": 0.35, "angle": -5.73, "curve": 0.247, "c3": 0.729, "c4": 0.91}, {"time": 0.6667, "angle": 13.84, "curve": 0.348, "c2": 0.66, "c3": 0.682}, - {"time": 0.6833, "angle": 14.18, "curve": 0.25, "c3": 0.75}, {"time": 1.0167, "angle": -5.73, "curve": 0.247, "c3": 0.729, "c4": 0.91}, {"time": 1.3333, "angle": 13.84} + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "angle": 17.93, "curve": 0, "c2": 0.6, "c3": 0.237}, {"time": 0.3333, "angle": -15.3, "curve": 0.621, "c3": 0, "c4": 1.4}, + {"time": 0.6667, "angle": 24.81, "curve": 0.701, "c4": 0.5}, {"time": 0.8833, "angle": -15.84, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 1} ] } - } + }, + "events": [{"time": 0.4667, "name": "start-attack"}] }, - "2307702827": { + "3824431262": { "slots": { - "eyes": {"attachment": [{"time": 0.0833, "name": "eyes-shut"}, {"time": 0.1667, "name": "eyes-angry"}, {"time": 0.5833, "name": "eyes-shut"}, {"time": 0.6667, "name": "eyes"}]}, - "mouth": {"attachment": [{"time": 0.0833, "name": "mouth-bite"}, {"time": 0.3667, "name": "mouth-open"}, {"time": 0.5833, "name": "mouth"}]} + "eyes": {"attachment": [{"time": 0.0833, "name": "eyes-angry"}, {"time": 0.6667, "name": "eyes-shut"}]}, + "mouth": {"attachment": [{"time": 0.0833, "name": "mouth-bite"}, {"time": 0.35, "name": "mouth-open"}, {"time": 0.55, "name": "mouth-bite"}]} }, "bones": { "@pivot-back": { "rotate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.15, "angle": 3.67, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.3333, "angle": -14.29, "curve": 0.854, "c4": 0.1}, - {"time": 0.3667, "angle": 15.82}, {"time": 0.45, "angle": 16.67, "curve": 0.315, "c4": 0.8}, {"time": 0.5667, "angle": 4.4, "curve": 0, "c2": 0.1, "c3": 0.85}, - {"time": 0.6333, "angle": 6.79, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.8333} + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "angle": 4, "curve": 0, "c2": 0.5, "c3": 0.3}, {"time": 0.3333, "angle": -23.77, "curve": "stepped"}, + {"time": 0.35, "angle": -29.82, "curve": 0.698, "c3": 0.541}, {"time": 0.5833, "angle": 3}, {"time": 0.7167, "angle": 4, "curve": 0, "c2": 0.09, "c3": 0.479, "c4": 0.56}, + {"time": 0.8167, "angle": -5.09, "curve": 0.416, "c2": 0.51, "c3": 0.865}, {"time": 0.9167} ], "translate": [ - {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.2167, "x": 8.02, "curve": 0, "c2": 0.4, "c3": 0.383}, {"time": 0.3333, "x": -54.3, "y": 61.69, "curve": 0.854, "c4": 0.1}, - {"time": 0.3667, "x": -60.41, "y": 130.13}, {"time": 0.45, "x": -60.41, "y": 130.01, "curve": 0.315, "c4": 0.8}, {"time": 0.5667} + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": 33.65, "y": -5, "curve": 0, "c2": 0.5, "c3": 0.3}, {"time": 0.3333, "x": 80.56, "y": 137.85, "curve": "stepped"}, + {"time": 0.35, "x": 147.57, "y": 42.83, "curve": 0, "c2": 0.2, "c3": 0.686}, {"time": 0.5, "x": 206.93, "y": -26.82, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.5833, "x": 226.09}, + {"time": 0.7167, "x": 237.58, "y": 2, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.9167} + ] + }, + "@pivot-main": { + "translate": [ + {"time": 0.5833, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.7167, "x": 15, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.8167, "x": 7.5, "y": 59.4, "curve": 0.315, "c4": 0.8}, + {"time": 0.9167} + ] + }, + "leg-front-left-IK": { + "translate": [ + {"time": 0.1667, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.3333, "x": 27.04, "y": 216.41, "curve": "stepped"}, {"time": 0.35, "x": 51.7, "y": 178.19, "curve": 0.384, "c3": 0.537}, + {"time": 0.5833, "x": 202.93}, {"time": 0.7, "x": 218.86, "y": 2.61, "curve": 0.315, "c4": 0.8}, {"time": 0.7667, "x": 145.27, "curve": 0.237, "c4": 0.8}, {"time": 0.9167} + ] + }, + "leg-front-right-IK": { + "translate": [ + {"time": 0.1667, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.3333, "x": 54.35, "y": 310.88, "curve": "stepped"}, {"time": 0.35, "x": 67.2, "y": 319.96, "curve": 0.384, "c3": 0.537}, + {"time": 0.5833, "x": 199.77}, {"time": 0.7, "x": 187.66, "curve": 0.315, "c4": 0.8}, {"time": 0.7667, "x": 143.69, "curve": 0.237, "c4": 0.8}, {"time": 0.9167} + ] + }, + "leg-back-left-IK": { + "translate": [ + {"time": 0.1667, "curve": 0, "c2": 0.4, "c3": 0.383}, {"time": 0.3333, "x": 50.37, "y": 150.84, "curve": "stepped"}, {"time": 0.35, "x": 34.64, "y": 81.96, "curve": 0.306, "c4": 0.8}, + {"time": 0.5, "x": 185.62, "y": 1.08, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.7167, "x": 244.18, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.8167, "x": 108.59, "y": 18.82, "curve": 0.306, "c4": 0.8}, {"time": 0.9167} ] }, "@leg-front-right": { "translate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.2167, "x": -18.54, "y": -11.57}, {"time": 0.25, "x": -23.07, "y": 10.08, "curve": 0, "c2": 0.4, "c3": 0.383}, - {"time": 0.3333, "x": 29.92, "y": -4.24, "curve": 0.854, "c4": 0.1}, {"time": 0.3667, "x": 22.95, "y": 2.68, "curve": "stepped"}, - {"time": 0.45, "x": 22.95, "y": 2.68, "curve": 0.157, "c2": 0.33, "c3": 0.727}, {"time": 0.5333, "x": 29.92, "y": -4.24, "curve": 0.779, "c4": 0.4}, - {"time": 0.5667, "x": -1.45, "y": -24.11, "curve": "stepped"}, {"time": 0.6333, "x": -1.45, "y": -24.11, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.6667} - ], - "scale": [ - {"time": 0.2, "curve": 0.315, "c4": 0.8}, {"time": 0.25, "x": 1.5, "curve": 0, "c2": 0.3, "c3": 0.539}, {"time": 0.3333, "curve": 0.854, "c4": 0.1}, {"time": 0.3667, "x": 1.5}, - {"time": 0.45, "x": 1.51, "curve": 0.157, "c2": 0.33, "c3": 0.727}, {"time": 0.4833} + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": -1.03, "y": -19.32}, {"time": 0.3333, "curve": "stepped"}, {"time": 0.5833, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.7167, "x": 9.38, "y": 7.22}, {"time": 0.9167} ] }, "@leg-front-left": { "translate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.2167, "x": -6.84, "y": -9.77, "curve": "stepped"}, {"time": 0.5667, "x": -6.84, "y": -9.77, "curve": 0, "c2": 0.1, "c3": 0.85}, - {"time": 0.6333, "x": -6.29, "y": -18.69, "curve": 0, "c2": 0.23, "c3": 0.365, "c4": 0.58}, {"time": 0.6667, "x": -3.64, "y": -2.46, "curve": 0.177, "c2": 0.35, "c3": 0.731}, - {"time": 0.8333} + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": -0.29, "y": -5.47}, {"time": 0.3333, "curve": "stepped"}, {"time": 0.5833, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.7167, "x": 6.3, "y": -2.41}, {"time": 0.9167} ] }, - "@leg-back-left": { + "tail": { + "rotate": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "angle": 19.35, "curve": 0, "c2": 0.4, "c3": 0.383}, {"time": 0.3333, "angle": -0.88, "curve": "stepped"}, + {"time": 0.35, "angle": -13.56, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.5, "angle": 0.52, "curve": 0, "c2": 0.3, "c3": 0.544}, + {"time": 0.7167, "angle": 19.32, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.8, "angle": -9.3, "curve": 0.313, "c3": 0.699}, {"time": 0.9167} + ] + }, + "@shadow": { "translate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.2167, "x": -0.11, "y": -2.73, "curve": "stepped"}, {"time": 0.5667, "x": -0.11, "y": -2.73, "curve": 0, "c2": 0.1, "c3": 0.85}, - {"time": 0.6333, "x": -0.46, "y": -6.19, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.8333} + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": 24.43, "curve": 0, "c2": 0.4, "c3": 0.383}, {"time": 0.3333, "x": 86.58, "curve": "stepped"}, + {"time": 0.35, "x": 154.34, "curve": 0.315, "c4": 0.8}, {"time": 0.5, "x": 208.2, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.5833, "x": 216.55}, + {"time": 0.7167, "x": 243.36, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.9167} + ], + "scale": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": 1.08, "y": 1.08, "curve": 0, "c2": 0.4, "c3": 0.383}, {"time": 0.3333, "x": 0.92, "y": 0.92, "curve": "stepped"}, + {"time": 0.35, "x": 0.9, "y": 0.9, "curve": 0.315, "c4": 0.8}, {"time": 0.5, "x": 1.02, "y": 1.02, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.5833, "x": 1.08, "y": 1.08}, + {"time": 0.7167, "x": 1.1, "y": 1.1, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.9167} + ] + } + }, + "events": [{"time": 0.35, "name": "start-attack"}] + }, + "2316570278": { + "slots": { + "eyes": {"attachment": [{"time": 0.0167, "name": "eyes-angry"}, {"time": 0.5, "name": "eyes-shut"}]}, + "mouth": {"attachment": [{"time": 0.0167, "name": "mouth-bite"}, {"time": 0.3, "name": "mouth-open"}]} + }, + "bones": { + "@pivot-back": { + "rotate": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "angle": -3.92, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "angle": 2.51, "curve": 0.697, "c4": 0.3}, + {"time": 0.3, "angle": -2}, {"time": 0.4167, "angle": -3, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5833, "angle": 3, "curve": 0, "c2": 0.17, "c3": 0.45, "c4": 0.61}, + {"time": 0.6667, "angle": -2.47, "curve": 0.345, "c2": 0.53, "c3": 0.751}, {"time": 0.75} + ], + "translate": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "x": 71.93, "y": -12.95, "curve": "stepped"}, {"time": 0.25, "x": 71.93, "y": -12.95, "curve": 0.697, "c4": 0.3}, + {"time": 0.3, "x": -65}, {"time": 0.4167, "x": -67, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5833, "x": -74.25, "y": -5.2, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.75} ] }, - "@pivot-main": { + "leg-back-left-IK": { "translate": [ - {"time": 0.15, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "x": -73.35, "y": 43, "curve": "stepped"}, {"time": 0.45, "x": -73.35, "y": 43, "curve": 0.315, "c4": 0.8}, - {"time": 0.5667, "x": -146.44, "curve": "stepped"}, {"time": 0.6333, "x": -146.44, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.7333, "x": -45.61, "y": 50.15, "curve": 0.315, "c4": 0.8}, {"time": 0.8333} - ], - "scale": [{"time": 0.5667, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.6333, "y": 0.98, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.7333}] + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.1333, "x": 80.9, "curve": 0.161, "c3": 0.854}, {"time": 0.25, "x": 72.25, "curve": 0.25, "c4": 0.3}, + {"time": 0.3, "x": -24.7, "y": 18.44, "curve": "stepped"}, {"time": 0.4167, "x": -24.7, "y": 18.44, "curve": 0.306, "c3": 0.695}, + {"time": 0.5833, "x": -90.91, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.75} + ] }, "leg-front-right-IK": { "translate": [ - {"time": 0.15, "curve": 0, "c2": 0.18, "c3": 0.416, "c4": 0.58}, {"time": 0.2167, "x": 49.59, "y": 35.17}, {"time": 0.25, "x": -2.16, "y": 99.87, "curve": 0, "c2": 0.6, "c3": 0.237}, - {"time": 0.3333, "x": -158.6, "y": 254.45, "curve": 0.854, "c4": 0.1}, {"time": 0.3667, "x": -48.06, "y": 31.6}, {"time": 0.45, "x": -24.61, "y": 31.6, "curve": 0.315, "c4": 0.8}, - {"time": 0.5667, "curve": "stepped"}, {"time": 0.6333, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.6667, "x": -14.68, "y": -19.57, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.8333} + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 30.89, "y": 11.74, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "x": 42.9, "curve": 0.697, "c4": 0.3}, + {"time": 0.3, "x": 11.08, "y": 2.13, "curve": "stepped"}, {"time": 0.4167, "x": 11.08, "y": 2.13, "curve": 0.306, "c3": 0.695}, + {"time": 0.5833, "x": -87.1, "curve": 0, "c2": 0.17, "c3": 0.45, "c4": 0.61}, {"time": 0.6667, "x": -39.4, "curve": 0.345, "c2": 0.53, "c3": 0.751}, {"time": 0.75} ] }, "leg-front-left-IK": { "translate": [ - {"time": 0.15, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "x": -54.88, "y": 124.95, "curve": 0.854, "c4": 0.1}, {"time": 0.3667, "x": 37.97, "y": 122.64}, - {"time": 0.45, "x": 48.96, "y": 138.43, "curve": 0.315, "c4": 0.8}, {"time": 0.5667, "curve": "stepped"}, {"time": 0.6333, "curve": 0, "c2": 0.1, "c3": 0.85}, - {"time": 0.6667, "x": -7.79, "y": -10.12, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.8333} + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "x": 52.52, "y": 6.57, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "x": 44.73, "y": 1.83, "curve": 0.697, "c4": 0.3}, + {"time": 0.3, "x": -28.02, "y": 20.97}, {"time": 0.4167, "x": -31.01, "y": 31.21, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.5833, "x": -82.62, "curve": 0, "c2": 0.17, "c3": 0.45, "c4": 0.61}, {"time": 0.6667, "x": -55.81, "curve": 0.345, "c2": 0.53, "c3": 0.751}, {"time": 0.75} ] }, - "leg-back-left-IK": { + "@leg-front-left": { "translate": [ - {"time": 0.0833, "curve": 0.332, "c3": 0.682, "c4": 0.41}, {"time": 0.2167, "x": 21.57, "y": 4.03, "curve": 0, "c2": 0.4, "c3": 0.383}, - {"time": 0.3333, "x": -50.73, "y": 91.08, "curve": 0.854, "c4": 0.1}, {"time": 0.3667, "x": 19.18, "y": 184.64}, {"time": 0.45, "x": 25.59, "y": 197.69, "curve": 0.315, "c4": 0.8}, - {"time": 0.5667, "curve": "stepped"}, {"time": 0.6333, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.75, "x": 24.35, "y": 13.92, "curve": 0.154, "c4": 0.9}, {"time": 0.8333} + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "x": -2.59, "y": -4.65, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "x": -0.61, "y": -2.94, "curve": 0.697, "c4": 0.3}, + {"time": 0.3, "x": 0.47, "y": -9.15, "curve": "stepped"}, {"time": 0.4167, "x": 0.47, "y": -9.15, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5833} ] }, - "tail": { - "rotate": [ - {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.15, "angle": 14.68, "curve": 0.315, "c4": 0.8}, {"time": 0.2167, "angle": -12.57}, - {"time": 0.3333, "angle": -14.89, "curve": 0.854, "c4": 0.1}, {"time": 0.3667, "angle": 25.96}, {"time": 0.45, "angle": 33.77}, - {"time": 0.6167, "angle": 26.39, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.7167, "angle": -14.8, "curve": 0.154, "c4": 0.9}, {"time": 0.8333} + "@leg-front-right": { + "translate": [ + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 4.31, "y": 11.86, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "x": -10.4, "y": -12.15, "curve": 0.697, "c4": 0.3}, + {"time": 0.3, "x": -48.45, "y": 18.12, "curve": "stepped"}, {"time": 0.4167, "x": -48.45, "y": 18.12, "curve": 0, "c2": 0.3, "c3": 0.54}, + {"time": 0.5833, "x": -10.7, "y": -18.88, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.75} + ] + }, + "@leg-back-left": { + "translate": [ + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.1333, "x": 0.67, "y": -7.85, "curve": 0.161, "c3": 0.854}, {"time": 0.25, "x": 0.53, "y": -13.09, "curve": 0.25, "c4": 0.3}, + {"time": 0.3, "x": -0.22, "y": 1.34, "curve": "stepped"}, {"time": 0.4167, "x": -0.22, "y": 1.34, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.5833, "x": -0.28, "y": -7.87, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.75} ] }, "@shadow": { "translate": [ - {"time": 0.15, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.3333, "x": -132.39, "curve": 0.854, "c4": 0.1}, {"time": 0.3667, "x": -111.3, "curve": "stepped"}, - {"time": 0.45, "x": -111.3, "curve": 0.315, "c4": 0.8}, {"time": 0.5667, "x": -132.39, "curve": "stepped"}, {"time": 0.6333, "x": -132.39, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.8333} + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 61.96, "curve": "stepped"}, {"time": 0.25, "x": 61.96, "curve": 0.697, "c4": 0.3}, {"time": 0.3, "x": -50.16}, + {"time": 0.4167, "x": -53.09, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5833, "x": -83.79, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.75} ], "scale": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.15, "x": 1.05, "y": 1.05, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.3333, "x": 0.93, "y": 0.93, "curve": 0.854, "c4": 0.1}, - {"time": 0.3667, "x": 0.95, "y": 0.95}, {"time": 0.45, "x": 0.97, "y": 0.97, "curve": 0.315, "c4": 0.8}, {"time": 0.5667, "x": 1.05, "y": 1.05, "curve": 0, "c2": 0.1, "c3": 0.85}, - {"time": 0.6333, "x": 1.07, "y": 1.07, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.8333} + {"time": 0.0833, "curve": 0, "c2": 0.26, "c3": 0.369, "c4": 0.62}, {"time": 0.25, "x": 1.06, "y": 1.06, "curve": 0.697, "c4": 0.3}, + {"time": 0.3, "x": 0.96, "y": 0.96, "curve": "stepped"}, {"time": 0.4167, "x": 0.96, "y": 0.96, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.5833, "x": 1.08, "y": 1.08, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.75} ] }, - "body-fur-01": { + "tail": { "rotate": [ - {"angle": 8.53, "curve": 0.375, "c2": 0.5, "c3": 0.75}, {"time": 0.0667, "curve": 0.25, "c3": 0.75}, {"time": 0.2167, "angle": 18.8, "curve": 0.25, "c3": 0.75}, - {"time": 0.4167, "angle": -26.83, "curve": 0.25, "c3": 0.75}, {"time": 0.5, "angle": 37.79, "curve": 0.25, "c3": 0.75}, {"time": 0.6667, "angle": -23.11, "curve": 0.25, "c3": 0.75}, - {"time": 0.7667, "angle": 17.07, "curve": 0.25, "c3": 0.625, "c4": 0.5}, {"time": 0.8333, "angle": 10.51} + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "angle": 15.61, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "angle": 20.44, "curve": 0.697, "c4": 0.3}, + {"time": 0.3, "angle": -9.4}, {"time": 0.4167, "angle": -13.12, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5833, "angle": 15.47, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.75} ] - }, - "body-fur-02": { + } + }, + "events": [{"time": 0.3, "name": "start-attack"}] + }, + "737684706": { + "slots": { + "eyes": {"attachment": [{"time": 0.05, "name": "eyes-angry"}]}, + "mouth": {"attachment": [{"time": 0.05, "name": "mouth-bite"}, {"time": 0.4667, "name": "mouth-open"}, {"time": 1.0833, "name": "mouth-bite"}]} + }, + "bones": { + "@pivot-back": { "rotate": [ - {"angle": 13.89, "curve": 0.314, "c2": 0.27, "c3": 0.686, "c4": 0.73}, {"time": 0.0667, "angle": 3.15, "curve": 0.379, "c2": 0.6, "c3": 0.724}, {"time": 0.1, "curve": 0.25, "c3": 0.75}, - {"time": 0.25, "angle": 18.8, "curve": 0.25, "c3": 0.75}, {"time": 0.45, "angle": -26.83, "curve": 0.25, "c3": 0.75}, {"time": 0.5333, "angle": 37.79, "curve": 0.25, "c3": 0.75}, - {"time": 0.7, "angle": -23.11, "curve": 0.25, "c3": 0.75}, {"time": 0.8, "angle": 17.07, "curve": 0.276, "c3": 0.621, "c4": 0.4}, {"time": 0.8333, "angle": 13.84} + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "angle": 4, "curve": 0, "c2": 0.6, "c3": 0.237}, {"time": 0.4167, "angle": -8.88, "curve": 0, "c2": 0.6, "c3": 0, "c4": 1.4}, + {"time": 1, "angle": 8.17, "curve": 0.701, "c4": 0.5}, {"time": 1.2333, "angle": 5, "curve": 0.461, "c3": 0.543}, {"time": 1.3333} + ], + "translate": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": 33.65, "y": -5, "curve": 0, "c2": 0.6, "c3": 0.237}, + {"time": 0.4167, "x": -62.54, "y": 309.16, "curve": 0, "c2": 0.6, "c3": 0, "c4": 1.4}, {"time": 1, "x": 12.32, "y": 268.04, "curve": 0.701, "c4": 0.5}, {"time": 1.2333} ] }, - "body-fur-03": { - "rotate": [ - {"angle": 5.73, "curve": 0.382, "c2": 0.56, "c3": 0.74}, {"time": 0.05, "curve": 0.25, "c3": 0.75}, {"time": 0.2, "angle": 18.8, "curve": 0.25, "c3": 0.75}, - {"time": 0.4, "angle": -26.83, "curve": 0.25, "c3": 0.75}, {"time": 0.4833, "angle": 37.79, "curve": 0.25, "c3": 0.75}, {"time": 0.65, "angle": -23.11, "curve": 0.25, "c3": 0.75}, - {"time": 0.75, "angle": 17.07, "curve": 0.244, "c3": 0.641, "c4": 0.57}, {"time": 0.8333, "angle": 5.54} + "@shadow": { + "translate": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": 24.43, "curve": 0, "c2": 0.6, "c3": 0.237}, {"time": 0.4167, "x": -70.38, "curve": 0, "c2": 0.6, "c3": 0, "c4": 1.4}, + {"time": 1, "x": 5.15, "curve": 0.701, "c4": 0.5}, {"time": 1.2333, "x": -8.95, "curve": 0.461, "c3": 0.543}, {"time": 1.3333} + ], + "scale": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": 1.08, "y": 1.08, "curve": 0, "c2": 0.6, "c3": 0.237}, + {"time": 0.4167, "x": 0.85, "y": 0.85, "curve": 0, "c2": 0.6, "c3": 0, "c4": 1.4}, {"time": 1, "x": 0.9, "y": 0.9, "curve": 0.701, "c4": 0.5}, + {"time": 1.2333, "x": 1.1, "y": 1.1, "curve": 0.461, "c3": 0.543}, {"time": 1.3333} ] }, - "body-fur-04": { - "rotate": [ - {"angle": 11.28, "curve": 0.333, "c2": 0.33, "c3": 0.688, "c4": 0.73}, {"time": 0.05, "angle": 3.15, "curve": 0.379, "c2": 0.6, "c3": 0.724}, {"time": 0.0833, "curve": 0.25, "c3": 0.75}, - {"time": 0.2333, "angle": 18.8, "curve": 0.25, "c3": 0.75}, {"time": 0.4333, "angle": -26.83, "curve": 0.25, "c3": 0.75}, {"time": 0.5167, "angle": 37.79, "curve": 0.25, "c3": 0.75}, - {"time": 0.6833, "angle": -23.11, "curve": 0.25, "c3": 0.75}, {"time": 0.7833, "angle": 17.07, "curve": 0.26, "c3": 0.618, "c4": 0.44}, {"time": 0.8333, "angle": 12.53} + "@leg-front-left": { + "translate": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": -0.29, "y": -5.47, "curve": 0, "c2": 0.6, "c3": 0.237}, {"time": 0.4167, "curve": "stepped"}, + {"time": 1, "curve": 0.701, "c4": 0.5}, {"time": 1.2333, "x": -0.95, "y": -14.45, "curve": 0.461, "c3": 0.543}, {"time": 1.3333} ] }, - "body-fur-05": { - "rotate": [ - {"angle": 3.15, "curve": 0.379, "c2": 0.6, "c3": 0.724}, {"time": 0.0333, "curve": 0.25, "c3": 0.75}, {"time": 0.1833, "angle": 18.8, "curve": 0.25, "c3": 0.75}, - {"time": 0.3833, "angle": -26.83, "curve": 0.25, "c3": 0.75}, {"time": 0.4667, "angle": 37.79, "curve": 0.25, "c3": 0.75}, {"time": 0.6333, "angle": -23.11, "curve": 0.25, "c3": 0.75}, - {"time": 0.7333, "angle": 17.07, "curve": 0.242, "c3": 0.667, "c4": 0.67}, {"time": 0.8333, "angle": 6.86} + "@leg-front-right": { + "translate": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": -0.29, "y": -5.47, "curve": 0, "c2": 0.6, "c3": 0.237}, {"time": 0.4167, "curve": "stepped"}, + {"time": 1, "curve": 0.701, "c4": 0.5}, {"time": 1.2333, "x": -1.66, "y": -25.29, "curve": 0.461, "c3": 0.543}, {"time": 1.3333} ] }, - "body-fur-06": { + "tail": { "rotate": [ - {"angle": 8.47, "curve": 0.343, "c2": 0.36, "c3": 0.686, "c4": 0.73}, {"time": 0.0333, "angle": 3.15, "curve": 0.379, "c2": 0.6, "c3": 0.724}, - {"time": 0.0667, "curve": 0.25, "c3": 0.75}, {"time": 0.2167, "angle": 18.8, "curve": 0.25, "c3": 0.75}, {"time": 0.4167, "angle": -26.83, "curve": 0.25, "c3": 0.75}, - {"time": 0.5, "angle": 37.79, "curve": 0.25, "c3": 0.75}, {"time": 0.6667, "angle": -23.11, "curve": 0.25, "c3": 0.75}, - {"time": 0.7667, "angle": 17.07, "curve": 0.25, "c3": 0.625, "c4": 0.5}, {"time": 0.8333, "angle": 13.33} + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "angle": 17.93, "curve": 0, "c2": 0.6, "c3": 0.237}, {"time": 0.4167, "angle": -15.3, "curve": 0, "c2": 0.6, "c3": 0, "c4": 1.4}, + {"time": 1, "angle": 24.81, "curve": 0.701, "c4": 0.5}, {"time": 1.2333, "angle": -15.84, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 1.3333} ] - }, - "body-fur-07": { + } + }, + "events": [{"time": 0.4667, "name": "start-attack"}, {"time": 0.7, "name": "start-attack"}, {"time": 0.9333, "name": "start-attack"}] + }, + "1153819837": { + "slots": { + "eyes": {"attachment": [{"time": 0.0167, "name": "eyes-angry"}, {"time": 0.75, "name": "eyes-shut"}]}, + "leg-back-left": {"attachment": [{"time": 0.35, "name": "leg-back-left-long"}, {"time": 0.5833, "name": "leg-back-left"}]}, + "mouth": {"attachment": [{"time": 0.0167, "name": "mouth-bite"}, {"time": 0.2667, "name": "mouth-open"}, {"time": 0.5833, "name": "mouth-bite"}]} + }, + "bones": { + "@pivot-back": { "rotate": [ - {"angle": 1.07, "curve": 0.364, "c2": 0.64, "c3": 0.701}, {"time": 0.0167, "curve": 0.25, "c3": 0.75}, {"time": 0.1667, "angle": 18.8, "curve": 0.25, "c3": 0.75}, - {"time": 0.3667, "angle": -26.83, "curve": 0.25, "c3": 0.75}, {"time": 0.45, "angle": 37.79, "curve": 0.25, "c3": 0.75}, {"time": 0.6167, "angle": -23.11, "curve": 0.25, "c3": 0.75}, - {"time": 0.7167, "angle": 17.07, "curve": 0.244, "c3": 0.702, "c4": 0.8}, {"time": 0.8333, "angle": 2.91} - ] + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "angle": -3.92, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "angle": 2.51, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.3333, "angle": -6, "curve": "stepped"}, {"time": 0.35, "angle": -16}, {"time": 0.5667, "angle": -16.5, "curve": "stepped"}, {"time": 0.5833, "curve": 0.313, "c3": 0.699}, + {"time": 0.75, "angle": 6, "curve": 0.313, "c3": 0.699}, {"time": 0.9167} + ], + "translate": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "x": 71.93, "y": -12.95, "curve": "stepped"}, {"time": 0.25, "x": 71.93, "y": -12.95, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.3333, "x": -135.5, "curve": "stepped"}, {"time": 0.35, "x": -560.54, "y": 85.29}, {"time": 0.5667, "x": -562.89, "y": 81.57, "curve": "stepped"}, + {"time": 0.5833, "x": -151.24, "curve": 0.313, "c3": 0.699}, {"time": 0.75, "x": -151.24, "y": 4.06, "curve": 0.313, "c3": 0.699}, {"time": 0.9167} + ], + "scale": [{"time": 0.3333, "curve": "stepped"}, {"time": 0.35, "x": -1, "curve": "stepped"}, {"time": 0.5667, "x": -1, "curve": "stepped"}, {"time": 0.5833}] }, - "body-fur-08": { - "rotate": [ - {"angle": 5.73, "curve": 0.382, "c2": 0.56, "c3": 0.74}, {"time": 0.05, "curve": 0.25, "c3": 0.75}, {"time": 0.2, "angle": 18.8, "curve": 0.25, "c3": 0.75}, - {"time": 0.4, "angle": -26.83, "curve": 0.25, "c3": 0.75}, {"time": 0.4833, "angle": 37.79, "curve": 0.25, "c3": 0.75}, {"time": 0.65, "angle": -23.11, "curve": 0.25, "c3": 0.75}, - {"time": 0.75, "angle": 17.07, "curve": 0.244, "c3": 0.641, "c4": 0.57}, {"time": 0.8333, "angle": -0.91} + "@shadow": { + "translate": [ + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 61.96, "curve": "stepped"}, {"time": 0.25, "x": 61.96, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.3333, "x": -143.36, "curve": "stepped"}, {"time": 0.35, "x": -143.36}, {"time": 0.5667, "x": -157.56, "curve": "stepped"}, {"time": 0.5833, "x": -161.35, "curve": "stepped"}, + {"time": 0.75, "x": -161.35, "curve": 0.313, "c3": 0.699}, {"time": 0.9167} + ], + "scale": [ + {"time": 0.0833, "curve": 0, "c2": 0.26, "c3": 0.369, "c4": 0.62}, {"time": 0.25, "x": 1.06, "y": 1.06, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "curve": "stepped"}, + {"time": 0.35}, {"time": 0.5667, "x": 1.08, "y": 1.08, "curve": "stepped"}, {"time": 0.5833, "curve": 0.313, "c3": 0.699}, + {"time": 0.75, "x": 1.08, "y": 1.08, "curve": 0.313, "c3": 0.699}, {"time": 0.9167} ] }, - "body-fur-09": { - "rotate": [ - {"angle": 11.28, "curve": 0.333, "c2": 0.33, "c3": 0.688, "c4": 0.73}, {"time": 0.05, "angle": 3.15, "curve": 0.379, "c2": 0.6, "c3": 0.724}, {"time": 0.0833, "curve": 0.25, "c3": 0.75}, - {"time": 0.2333, "angle": 18.8, "curve": 0.25, "c3": 0.75}, {"time": 0.4333, "angle": -26.83, "curve": 0.25, "c3": 0.75}, {"time": 0.5167, "angle": 37.79, "curve": 0.25, "c3": 0.75}, - {"time": 0.6833, "angle": -23.11, "curve": 0.25, "c3": 0.75}, {"time": 0.7833, "angle": 17.07, "curve": 0.26, "c3": 0.618, "c4": 0.44}, {"time": 0.8333, "angle": 6.86} + "leg-back-left-IK": { + "translate": [ + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.1333, "x": 80.9, "curve": 0.161, "c3": 0.854}, {"time": 0.25, "x": 62.82, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.3333, "x": -99.34, "y": 18.56, "curve": "stepped"}, {"time": 0.35, "x": -653.9, "y": 153.81}, {"time": 0.5667, "x": -653.9, "y": 167.85, "curve": "stepped"}, + {"time": 0.5833, "x": -134.74, "curve": "stepped"}, {"time": 0.75, "x": -134.74, "curve": 0.313, "c3": 0.699}, {"time": 0.9167} ] }, - "body-fur-10": { - "rotate": [ - {"angle": 3.15, "curve": 0.379, "c2": 0.6, "c3": 0.724}, {"time": 0.0333, "curve": 0.25, "c3": 0.75}, {"time": 0.1833, "angle": 18.8, "curve": 0.25, "c3": 0.75}, - {"time": 0.3833, "angle": -26.83, "curve": 0.25, "c3": 0.75}, {"time": 0.4667, "angle": 37.79, "curve": 0.25, "c3": 0.75}, {"time": 0.6333, "angle": -23.11, "curve": 0.25, "c3": 0.75}, - {"time": 0.7333, "angle": 17.07, "curve": 0.242, "c3": 0.667, "c4": 0.67}, {"time": 0.8333, "angle": 0.34} + "leg-front-right-IK": { + "translate": [ + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 22.35, "curve": 0.306, "c3": 0.695}, {"time": 0.25, "x": 42.9, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.3333, "x": -131.73, "y": 44.58, "curve": "stepped"}, {"time": 0.35, "x": 244.36, "y": -4.92, "curve": 0.31, "c4": 0.8}, + {"time": 0.5667, "x": 247.43, "y": -1.85, "curve": "stepped"}, {"time": 0.5833, "x": -180.48, "curve": "stepped"}, {"time": 0.75, "x": -180.48, "curve": 0.313, "c3": 0.699}, + {"time": 0.9167} ] }, - "body-fur-11": { - "rotate": [ - {"angle": 5.73, "curve": 0.382, "c2": 0.56, "c3": 0.74}, {"time": 0.05, "curve": 0.25, "c3": 0.75}, {"time": 0.2, "angle": 18.8, "curve": 0.25, "c3": 0.75}, - {"time": 0.4, "angle": -26.83, "curve": 0.25, "c3": 0.75}, {"time": 0.4833, "angle": 37.79, "curve": 0.25, "c3": 0.75}, {"time": 0.65, "angle": -23.11, "curve": 0.25, "c3": 0.75}, - {"time": 0.75, "angle": 17.07, "curve": 0.244, "c3": 0.641, "c4": 0.57}, {"time": 0.8333, "angle": 4.23} + "leg-front-left-IK": { + "translate": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "x": 40.76, "y": 5.08, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "x": 49, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.3333, "x": -180.92, "y": 40.32, "curve": "stepped"}, {"time": 0.35, "x": -197.17}, {"time": 0.5667, "x": -230.7, "y": 4.81, "curve": "stepped"}, + {"time": 0.5833, "x": -180.48, "curve": "stepped"}, {"time": 0.75, "x": -180.48, "curve": 0.313, "c3": 0.699}, {"time": 0.9167} ] }, - "body-fur-12": { - "rotate": [ - {"angle": 8.53, "curve": 0.375, "c2": 0.5, "c3": 0.75}, {"time": 0.0667, "curve": 0.25, "c3": 0.75}, {"time": 0.2167, "angle": 18.8, "curve": 0.25, "c3": 0.75}, - {"time": 0.4167, "angle": -26.83, "curve": 0.25, "c3": 0.75}, {"time": 0.5, "angle": 37.79, "curve": 0.25, "c3": 0.75}, {"time": 0.6667, "angle": -23.11, "curve": 0.25, "c3": 0.75}, - {"time": 0.7667, "angle": 17.07, "curve": 0.25, "c3": 0.625, "c4": 0.5}, {"time": 0.8333, "angle": 8.12} + "@leg-front-left": { + "translate": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "x": -2.9, "y": -1.1, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.25, "x": -0.62, "y": -3.44, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "x": -1, "y": -5.53, "curve": "stepped"}, {"time": 0.35, "x": 4.4, "y": -4.91}, + {"time": 0.5667, "x": 7.49, "y": -5.17, "curve": "stepped"}, {"time": 0.5833, "x": 18.69, "y": 1.85, "curve": "stepped"}, + {"time": 0.75, "x": 18.69, "y": 1.85, "curve": 0.306, "c3": 0.695}, {"time": 0.9167} ] }, - "body-fur-13": { - "rotate": [ - {"angle": 11.34, "curve": 0.359, "c2": 0.43, "c3": 0.756}, {"time": 0.0833, "curve": 0.25, "c3": 0.75}, {"time": 0.2333, "angle": 18.8, "curve": 0.25, "c3": 0.75}, - {"time": 0.4333, "angle": -26.83, "curve": 0.25, "c3": 0.75}, {"time": 0.5167, "angle": 37.79, "curve": 0.25, "c3": 0.75}, {"time": 0.6833, "angle": -23.11, "curve": 0.25, "c3": 0.75}, - {"time": 0.7833, "angle": 17.07, "curve": 0.26, "c3": 0.618, "c4": 0.44}, {"time": 0.8333, "angle": 11.59} + "@leg-front-right": { + "translate": [ + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 4.31, "y": 11.86, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.25, "x": -10.48, "y": -15.33, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "x": -3.15, "y": 1.33, "curve": "stepped"}, {"time": 0.35, "x": -3.84, "y": 7.68}, + {"time": 0.5667, "x": -3.53, "y": 9.04, "curve": "stepped"}, {"time": 0.5833, "x": -2.24, "y": 13.67, "curve": 0.313, "c3": 0.699}, + {"time": 0.75, "x": -2.69, "y": -18.63, "curve": 0.313, "c3": 0.699}, {"time": 0.9167} ] }, - "body-fur-14": { - "rotate": [ - {"angle": 16.05, "curve": 0.285, "c2": 0.17, "c3": 0.679, "c4": 0.71}, {"time": 0.0833, "angle": 3.15, "curve": 0.379, "c2": 0.6, "c3": 0.724}, - {"time": 0.1167, "curve": 0.25, "c3": 0.75}, {"time": 0.2667, "angle": 18.8, "curve": 0.25, "c3": 0.75}, {"time": 0.4667, "angle": -26.83, "curve": 0.25, "c3": 0.75}, - {"time": 0.55, "angle": 37.79, "curve": 0.25, "c3": 0.75}, {"time": 0.7167, "angle": -23.11, "curve": 0.25, "c3": 0.75}, - {"time": 0.8167, "angle": 17.07, "curve": 0.299, "c3": 0.636, "c4": 0.36}, {"time": 0.8333, "angle": 13.33} + "@leg-back-left": { + "translate": [ + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.1333, "x": 0.67, "y": -7.85, "curve": 0.161, "c3": 0.854}, {"time": 0.25, "x": 0.74, "y": -5.43, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.3333, "x": -0.54, "y": 4.44, "curve": "stepped"}, {"time": 0.35, "x": 10.26, "y": 0.56, "curve": "stepped"}, {"time": 0.5667, "x": 10.26, "y": 0.56, "curve": "stepped"}, + {"time": 0.5833} ] }, - "body-fur-15": { + "tail": { "rotate": [ - {"angle": 11.34, "curve": 0.359, "c2": 0.43, "c3": 0.756}, {"time": 0.0833, "curve": 0.25, "c3": 0.75}, {"time": 0.2333, "angle": 18.8, "curve": 0.25, "c3": 0.75}, - {"time": 0.4333, "angle": -26.83, "curve": 0.25, "c3": 0.75}, {"time": 0.5167, "angle": 37.79, "curve": 0.25, "c3": 0.75}, {"time": 0.6833, "angle": -23.11, "curve": 0.25, "c3": 0.75}, - {"time": 0.7833, "angle": 17.07, "curve": 0.26, "c3": 0.618, "c4": 0.44}, {"time": 0.8333, "angle": 13.33} + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "angle": 15.61, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "angle": 20.44, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.3333, "angle": -15.58, "curve": "stepped"}, {"time": 0.35, "angle": 30.35}, {"time": 0.5667, "angle": 35.35, "curve": "stepped"}, + {"time": 0.5833, "angle": -11.84, "curve": 0.313, "c3": 0.699}, {"time": 0.75, "angle": 16.95, "curve": 0.313, "c3": 0.699}, {"time": 0.9167} ] }, - "body-fur-16": { - "rotate": [ - {"angle": 13.92, "curve": 0.333, "c2": 0.33, "c3": 0.758}, {"time": 0.1, "curve": 0.25, "c3": 0.75}, {"time": 0.25, "angle": 18.8, "curve": 0.25, "c3": 0.75}, - {"time": 0.45, "angle": -26.83, "curve": 0.25, "c3": 0.75}, {"time": 0.5333, "angle": 37.79, "curve": 0.25, "c3": 0.75}, {"time": 0.7, "angle": -23.11, "curve": 0.25, "c3": 0.75}, - {"time": 0.8, "angle": 17.07, "curve": 0.276, "c3": 0.621, "c4": 0.4}, {"time": 0.8333, "angle": 13.84} - ] + "@pivot-main": { + "translate": [{"time": 0.75, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.8333, "y": 31, "curve": 0.315, "c4": 0.8}, {"time": 0.9167}], + "scale": [{"time": 0.5667, "curve": "stepped"}, {"time": 0.75, "y": 0.98, "curve": 0.154, "c4": 0.9}, {"time": 0.9167}] } }, - "events": [{"time": 0.3333, "name": "start-attack"}, {"time": 0.3667, "name": "hit"}] + "drawOrder": [{"time": 0.35, "offsets": [{"slot": "leg-back-left", "offset": 1}]}, {"time": 0.5833}], + "events": [{"time": 0.35, "name": "start-attack"}, {"time": 0.5667, "name": "start-attack"}] }, - "3515345276": { - "slots": {"eyes": {"attachment": [{"time": 0.9167, "name": "eyes-shut"}, {"time": 1, "name": "eyes"}]}}, + "1085337278": { + "slots": { + "eyes": {"attachment": [{"time": 0.1333, "name": "eyes-shut"}]}, + "mouth": {"attachment": [{"time": 0.0833, "name": "mouth-open"}, {"time": 0.1667, "name": "mouth-bite"}, {"time": 0.4167, "name": "mouth-open"}, {"time": 0.5, "name": "mouth-bite"}]} + }, "bones": { - "@pivot-back": {"translate": [{"y": -97.74, "curve": 0.393, "c3": 0.303}, {"time": 0.6667, "y": -82.74, "curve": 0.387, "c3": 0.309}, {"time": 1.3333, "y": -97.74}]}, - "@leg-front-left": { - "rotate": [ - {"curve": 0, "c2": 0.1, "c3": 0.856}, {"time": 0.3333, "angle": -17.48, "curve": 0.15, "c3": 0.926}, {"time": 0.7333, "curve": 0, "c2": 0.05, "c3": 0.692}, - {"time": 1.05, "angle": 8.38, "curve": 0.24, "c3": 0.769}, {"time": 1.3333} + "@mouth": { + "translate": [ + {"time": 0.1667, "curve": 0, "c2": 0.1, "c3": 0.479, "c4": 0.56}, {"time": 0.3333, "x": -0.56, "y": 3.4, "curve": 0.408, "c2": 0.51, "c3": 0.853}, {"time": 0.5, "x": 0.04, "y": 0.05} ] }, - "@leg-front-right": { + "@pivot-back": { "rotate": [ - {"curve": 0, "c2": 0.1, "c3": 0.856}, {"time": 0.3333, "angle": 9.43, "curve": 0.15, "c3": 0.926}, {"time": 0.7333, "curve": 0, "c2": 0.05, "c3": 0.692}, - {"time": 1.05, "angle": -11.74, "curve": 0.24, "c3": 0.769}, {"time": 1.3333} + {"curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.0667, "angle": -0.59, "curve": 0.075, "c4": 0.95}, {"time": 0.1333, "angle": 1.15, "curve": 0, "c2": 0.1, "c3": 0.85}, + {"time": 0.2167, "curve": "stepped"}, {"time": 0.3333, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.4, "angle": -0.59, "curve": 0.075, "c4": 0.95}, + {"time": 0.4667, "angle": 1.15, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.5833} + ], + "translate": [ + {"y": 0.06, "curve": 0.387, "c3": 0.314}, {"time": 0.1333, "x": -13.8, "y": 0.06, "curve": 0.387, "c3": 0.314}, {"time": 0.2167, "x": 0.02, "y": 0.06, "curve": "stepped"}, + {"time": 0.3333, "x": 0.02, "y": 0.06, "curve": 0.387, "c3": 0.314}, {"time": 0.4667, "x": -13.8, "y": 0.06, "curve": 0.387, "c3": 0.314}, {"time": 0.5833, "x": 0.02, "y": 0.06} ] }, - "@leg-back-left": { + "@leg-front-right": { "rotate": [ - {"curve": 0, "c2": 0.1, "c3": 0.856}, {"time": 0.3333, "angle": -12.53, "curve": 0.15, "c3": 0.926}, {"time": 0.7333, "curve": 0, "c2": 0.05, "c3": 0.692}, - {"time": 1.05, "angle": 9.41, "curve": 0.24, "c3": 0.769}, {"time": 1.3333} + {"curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.0667, "angle": 10.98, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.2167, "angle": -8.78, "curve": 0.161, "c3": 0.854}, + {"time": 0.3333, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.4, "angle": 10.98, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.55, "angle": -8.78, "curve": 0.161, "c3": 0.854}, + {"time": 0.6667, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.8333, "angle": -9.85, "curve": 0.161, "c3": 0.854}, {"time": 0.9833, "angle": -6.21}, + {"time": 1.15, "angle": 2.69, "curve": 0.075, "c4": 0.95}, {"time": 1.3333, "angle": -30.3} ] }, - "tail": { + "@leg-front-left": { "rotate": [ - {"curve": 0, "c2": 0.05, "c3": 0.691}, {"time": 0.3333, "angle": -5.06, "curve": 0.304, "c3": 0.689}, {"time": 0.7333, "angle": -0.77}, - {"time": 1.05, "angle": 2.12, "curve": 0.234, "c4": 0.9}, {"time": 1.3333} + {"curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.0667, "angle": 10.98, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.2167, "angle": -8.78, "curve": 0.161, "c3": 0.854}, + {"time": 0.3333, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.4, "angle": 10.98, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.55, "angle": -8.78, "curve": 0.161, "c3": 0.854}, + {"time": 0.6667, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.8333, "angle": -9.84, "curve": 0.161, "c3": 0.854}, {"time": 0.9833, "angle": -6.21}, + {"time": 1.15, "angle": 2.69, "curve": 0.075, "c4": 0.95}, {"time": 1.3333, "angle": 20.14} ] }, - "@shadow": {"scale": [{"x": 1.3, "y": 1.3, "curve": 0.387, "c3": 0.314}, {"time": 0.6667, "x": 1.25, "y": 1.25, "curve": 0.387, "c3": 0.314}, {"time": 1.3333, "x": 1.3, "y": 1.3}]}, - "body-fur-01": { + "@leg-back-left": { "rotate": [ - {"angle": -3.86, "curve": 0.381, "c2": 0.55, "c3": 0.742}, {"time": 0.2667, "angle": -14.41, "curve": 0.25, "c3": 0.75}, - {"time": 0.9333, "angle": 14.27, "curve": 0.245, "c3": 0.637, "c4": 0.56}, {"time": 1.3333, "angle": -3.86} + {"curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.0667, "angle": 10.98, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.2167, "angle": -8.78, "curve": 0.161, "c3": 0.854}, + {"time": 0.3333, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.4, "angle": 10.98, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.55, "angle": -8.78, "curve": 0.161, "c3": 0.854}, + {"time": 0.6667, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.8333, "angle": 5.93, "curve": 0.161, "c3": 0.854}, {"time": 0.9833}, + {"time": 1.15, "angle": -4.97, "curve": 0.075, "c4": 0.95}, {"time": 1.3333, "angle": -11.75} ] }, - "body-fur-02": { - "rotate": [ - {"angle": 1.69, "curve": 0.349, "c2": 0.39, "c3": 0.707, "c4": 0.8}, {"time": 0.2667, "angle": -12.03, "curve": 0.369, "c2": 0.63, "c3": 0.706}, - {"time": 0.3667, "angle": -14.41, "curve": 0.25, "c3": 0.75}, {"time": 1.0333, "angle": 14.27, "curve": 0.253, "c3": 0.621, "c4": 0.48}, {"time": 1.3333, "angle": 1.69} - ] + "@pivot-main": {"translate": [{"curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.0667, "y": 7.88, "curve": 0.078, "c4": 0.94}, {"time": 0.1333}]}, + "@pivot-center": {"translate": [{"curve": 0.387, "c3": 0.314}, {"time": 0.6667, "y": 14.05, "curve": 0.387, "c3": 0.314}, {"time": 1.3333}]}, + "@shadow": { + "translate": [ + {"curve": 0.387, "c3": 0.314}, {"time": 0.1333, "x": -23.3, "curve": 0.387, "c3": 0.314}, {"time": 0.2167, "x": -9.6, "curve": "stepped"}, + {"time": 0.3333, "x": -9.6, "curve": 0.387, "c3": 0.314}, {"time": 0.4667, "x": -23.3, "curve": 0.387, "c3": 0.314}, {"time": 0.5833} + ], + "scale": [{"curve": 0.387, "c3": 0.314}, {"time": 0.6667, "x": 0.95, "y": 0.95, "curve": 0.387, "c3": 0.314}, {"time": 1.3333}] }, - "body-fur-03": { + "tail": { "rotate": [ - {"angle": -7.46, "curve": 0.382, "c2": 0.58, "c3": 0.731}, {"time": 0.2, "angle": -14.41, "curve": 0.25, "c3": 0.75}, - {"time": 0.8667, "angle": 14.27, "curve": 0.243, "c3": 0.655, "c4": 0.63}, {"time": 1.3333, "angle": -7.46} + {"curve": 0, "c2": 0.12, "c3": 0.348, "c4": 0.47}, {"time": 0.1, "angle": -6.85, "curve": 0.229, "c2": 0.25, "c3": 0.569, "c4": 0.6}, + {"time": 0.2, "angle": 1.43, "curve": 0.188, "c2": 0.31, "c3": 0.695}, {"time": 0.3333, "angle": 3.02, "curve": 0, "c2": 0.12, "c3": 0.347, "c4": 0.48}, + {"time": 0.4333, "angle": -6.85, "curve": 0.229, "c2": 0.25, "c3": 0.569, "c4": 0.6}, {"time": 0.5333, "angle": 1.2, "curve": 0.155, "c3": 0.85}, + {"time": 0.75, "angle": -5.95, "curve": 0.161, "c3": 0.854}, {"time": 0.95, "angle": -0.94}, {"time": 1.15, "angle": 4.91, "curve": 0.234, "c4": 0.9}, {"time": 1.3333} ] - }, - "body-fur-04": { - "rotate": [ - {"angle": -2.12, "curve": 0.355, "c2": 0.41, "c3": 0.702, "c4": 0.79}, {"time": 0.2, "angle": -12.03, "curve": 0.369, "c2": 0.63, "c3": 0.706}, - {"time": 0.3, "angle": -14.41, "curve": 0.25, "c3": 0.75}, {"time": 0.9667, "angle": 14.27, "curve": 0.247, "c3": 0.63, "c4": 0.53}, {"time": 1.3333, "angle": -2.12} + } + } + }, + "1147852503": { + "slots": {"eyes": {"attachment": [{"time": 0.1333, "name": "eyes-shut"}]}, "mouth": {"attachment": [{"time": 0.0833, "name": "mouth-open"}]}}, + "bones": { + "@mouth": { + "translate": [ + {"time": 0.1667, "curve": 0, "c2": 0.1, "c3": 0.479, "c4": 0.56}, {"time": 0.3333, "x": -0.56, "y": 3.4, "curve": 0.408, "c2": 0.51, "c3": 0.853}, + {"time": 0.5, "x": 0.04, "y": 0.05, "curve": 0, "c2": 0.27, "c3": 0.314, "c4": 0.8}, {"time": 0.6, "x": 3.03, "y": 2.83, "curve": 0.168, "c2": 0.32, "c3": 0.551, "c4": 0.7}, + {"time": 0.7, "x": -0.51, "y": 3.39, "curve": 0.291, "c2": 0.39, "c3": 0.63, "c4": 0.75}, {"time": 0.8, "x": -3.56, "y": 0.39, "curve": 0.329, "c2": 0.61, "c3": 0.674, "c4": 0.99}, + {"time": 0.9, "x": 0.05, "y": -0.01, "curve": 0, "c2": 0.27, "c3": 0.31, "c4": 0.8}, {"time": 1.0167, "x": 3.05, "y": 2.75, "curve": 0.154, "c2": 0.33, "c3": 0.544, "c4": 0.7}, + {"time": 1.1167, "x": -0.5, "y": 3.35, "curve": 0.298, "c2": 0.38, "c3": 0.643, "c4": 0.74}, {"time": 1.2167, "x": -3.56, "y": 0.37, "curve": 0.326, "c2": 0.61, "c3": 0.671, "c4": 0.99}, + {"time": 1.3333} ] }, - "body-fur-05": { + "@pivot-back": { "rotate": [ - {"angle": -10.68, "curve": 0.375, "c2": 0.62, "c3": 0.716}, {"time": 0.1333, "angle": -14.41, "curve": 0.25, "c3": 0.75}, - {"time": 0.8, "angle": 14.27, "curve": 0.243, "c3": 0.68, "c4": 0.71}, {"time": 1.3333, "angle": -10.68} + {"curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.0667, "angle": -0.59, "curve": 0.075, "c4": 0.95}, {"time": 0.1333, "angle": 1.15, "curve": 0, "c2": 0.1, "c3": 0.85}, + {"time": 0.2167, "curve": "stepped"}, {"time": 0.3333, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.4, "angle": -0.59, "curve": 0.075, "c4": 0.95}, + {"time": 0.4667, "angle": 1.15, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.5833} + ], + "translate": [ + {"y": 0.06, "curve": 0.387, "c3": 0.314}, {"time": 0.1333, "x": -13.8, "y": 0.06, "curve": 0.387, "c3": 0.314}, {"time": 0.2167, "x": 0.02, "y": 0.06, "curve": "stepped"}, + {"time": 0.3333, "x": 0.02, "y": 0.06, "curve": 0.387, "c3": 0.314}, {"time": 0.4667, "x": -13.8, "y": 0.06, "curve": 0.387, "c3": 0.314}, {"time": 0.5833, "x": 0.02, "y": 0.06} ] }, - "body-fur-06": { + "@leg-front-right": { "rotate": [ - {"angle": -5.81, "curve": 0.354, "c2": 0.41, "c3": 0.694, "c4": 0.77}, {"time": 0.1333, "angle": -12.03, "curve": 0.369, "c2": 0.63, "c3": 0.706}, - {"time": 0.2333, "angle": -14.41, "curve": 0.25, "c3": 0.75}, {"time": 0.9, "angle": 14.27, "curve": 0.244, "c3": 0.646, "c4": 0.59}, {"time": 1.3333, "angle": -5.81} + {"curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.0667, "angle": 10.98, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.2167, "angle": -8.78, "curve": 0.161, "c3": 0.854}, + {"time": 0.3333, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.4, "angle": 10.98, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.55, "angle": -8.78, "curve": 0.161, "c3": 0.854}, + {"time": 0.6667, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.8333, "angle": -9.85, "curve": 0.161, "c3": 0.854}, {"time": 0.9833, "angle": -6.21}, + {"time": 1.15, "angle": 2.69, "curve": 0.075, "c4": 0.95}, {"time": 1.3333} ] }, - "body-fur-07": { + "@leg-front-left": { "rotate": [ - {"angle": -13.19, "curve": 0.36, "c2": 0.64, "c3": 0.695}, {"time": 0.0667, "angle": -14.41, "curve": 0.25, "c3": 0.75}, - {"time": 0.7333, "angle": 14.27, "curve": 0.245, "c3": 0.711, "c4": 0.83}, {"time": 1.3333, "angle": -13.19} + {"curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.0667, "angle": 10.98, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.2167, "angle": -8.78, "curve": 0.161, "c3": 0.854}, + {"time": 0.3333, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.4, "angle": 10.98, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.55, "angle": -8.78, "curve": 0.161, "c3": 0.854}, + {"time": 0.6667, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.8333, "angle": -9.84, "curve": 0.161, "c3": 0.854}, {"time": 0.9833, "angle": -6.21}, + {"time": 1.15, "angle": 2.69, "curve": 0.075, "c4": 0.95}, {"time": 1.3333} ] }, - "body-fur-08": { + "@leg-back-left": { "rotate": [ - {"angle": -12.61, "curve": 0.364, "c2": 0.64, "c3": 0.701}, {"time": 0.0833, "angle": -14.41, "curve": 0.25, "c3": 0.75}, - {"time": 0.75, "angle": 14.27, "curve": 0.244, "c3": 0.702, "c4": 0.8}, {"time": 1.3333, "angle": -12.61} + {"curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.0667, "angle": 10.98, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.2167, "angle": -8.78, "curve": 0.161, "c3": 0.854}, + {"time": 0.3333, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.4, "angle": 10.98, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.55, "angle": -8.78, "curve": 0.161, "c3": 0.854}, + {"time": 0.6667, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.8333, "angle": 5.93, "curve": 0.161, "c3": 0.854}, {"time": 0.9833}, + {"time": 1.15, "angle": -4.97, "curve": 0.075, "c4": 0.95}, {"time": 1.3333} ] }, - "body-fur-09": { + "@pivot-main": {"translate": [{"curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.0667, "y": 7.88, "curve": 0.078, "c4": 0.94}, {"time": 0.1333}]}, + "@pivot-center": {"translate": [{"curve": 0.387, "c3": 0.314}, {"time": 0.6667, "y": 14.05, "curve": 0.387, "c3": 0.314}, {"time": 1.3333}]}, + "@shadow": { + "translate": [ + {"curve": 0.387, "c3": 0.314}, {"time": 0.1333, "x": -23.3, "curve": 0.387, "c3": 0.314}, {"time": 0.2167, "x": -9.6, "curve": "stepped"}, + {"time": 0.3333, "x": -9.6, "curve": 0.387, "c3": 0.314}, {"time": 0.4667, "x": -23.3, "curve": 0.387, "c3": 0.314}, {"time": 0.5833} + ], + "scale": [{"curve": 0.387, "c3": 0.314}, {"time": 0.6667, "x": 0.95, "y": 0.95, "curve": 0.387, "c3": 0.314}, {"time": 1.3333}] + }, + "tail": { "rotate": [ - {"angle": -8.38, "curve": 0.35, "c2": 0.4, "c3": 0.686, "c4": 0.74}, {"time": 0.0833, "angle": -12.03, "curve": 0.369, "c2": 0.63, "c3": 0.706}, - {"time": 0.1833, "angle": -14.41, "curve": 0.25, "c3": 0.75}, {"time": 0.85, "angle": 14.27, "curve": 0.242, "c3": 0.661, "c4": 0.65}, {"time": 1.3333, "angle": -8.38} + {"curve": 0, "c2": 0.12, "c3": 0.348, "c4": 0.47}, {"time": 0.1, "angle": -6.85, "curve": 0.229, "c2": 0.25, "c3": 0.569, "c4": 0.6}, + {"time": 0.2, "angle": 1.43, "curve": 0.188, "c2": 0.31, "c3": 0.695}, {"time": 0.3333, "angle": 3.02, "curve": 0, "c2": 0.12, "c3": 0.347, "c4": 0.48}, + {"time": 0.4333, "angle": -6.85, "curve": 0.229, "c2": 0.25, "c3": 0.569, "c4": 0.6}, {"time": 0.5333, "angle": 1.2, "curve": 0.155, "c3": 0.85}, + {"time": 0.75, "angle": -5.95, "curve": 0.161, "c3": 0.854}, {"time": 0.95, "angle": -0.94}, {"time": 1.15, "angle": 4.91, "curve": 0.234, "c4": 0.9}, {"time": 1.3333} ] - }, - "body-fur-10": { + } + } + }, + "20003499": { + "slots": {"eyes": {"attachment": [{"time": 0.0167, "name": "eyes-angry"}, {"time": 0.6333, "name": "eyes-shut"}, {"time": 0.7, "name": "eyes-angry"}]}}, + "bones": { + "@pivot-back": { "rotate": [ - {"angle": -12.61, "curve": 0.364, "c2": 0.64, "c3": 0.701}, {"time": 0.0833, "angle": -14.41, "curve": 0.25, "c3": 0.75}, - {"time": 0.75, "angle": 14.27, "curve": 0.244, "c3": 0.702, "c4": 0.8}, {"time": 1.3333, "angle": -12.61} + {"curve": 0.302, "c4": 0.8}, {"time": 0.1667, "angle": -5.15, "curve": 0, "c2": 0.2, "c3": 0.692}, {"time": 0.3333, "angle": 4.71, "curve": 0, "c2": 0.1, "c3": 0.853}, + {"time": 0.5, "angle": -2.3, "curve": 0.308, "c3": 0.692}, {"time": 0.6667, "angle": 2.84, "curve": 0.314, "c3": 0.701}, + {"time": 0.9167, "angle": -3.66, "curve": 0, "c2": 0.1, "c3": 0.845}, {"time": 1.0833, "angle": -0.77, "curve": 0.311, "c4": 0.8}, {"time": 1.25} + ], + "translate": [ + {"curve": 0.308, "c4": 0.79}, {"time": 0.25, "x": -74.35, "y": -25.83, "curve": 0, "c2": 0.3, "c3": 0.537}, {"time": 0.4167, "x": -74.35, "y": 55.38, "curve": 0, "c2": 0.1, "c3": 0.853}, + {"time": 0.5833, "x": 103.85, "y": -14.97, "curve": 0.308, "c3": 0.692}, {"time": 0.75, "x": 103.82, "y": 55.43, "curve": 0.314, "c3": 0.701}, + {"time": 1, "x": -40.96, "y": -15.97, "curve": 0.314, "c3": 0.701}, {"time": 1.1667, "x": -40.96, "y": 0.03, "curve": 0, "c2": 0.05, "c3": 0.933}, {"time": 1.3333} ] }, - "body-fur-11": { + "@leg-front-right": { "rotate": [ - {"angle": -9.9, "curve": 0.377, "c2": 0.61, "c3": 0.72}, {"time": 0.15, "angle": -14.41, "curve": 0.25, "c3": 0.75}, - {"time": 0.8167, "angle": 14.27, "curve": 0.242, "c3": 0.673, "c4": 0.69}, {"time": 1.3333, "angle": -9.9} + {"curve": 0.307, "c4": 0.8}, {"time": 0.1667, "angle": 13.08, "curve": 0.302, "c3": 0.695}, {"time": 0.4167, "angle": -24.68, "curve": "stepped"}, + {"time": 0.5833, "angle": -24.68, "curve": 0, "c2": 0.2, "c3": 0.689}, {"time": 0.75, "angle": 8.39, "curve": "stepped"}, {"time": 0.9167, "angle": 8.39, "curve": 0.308, "c4": 0.8}, + {"time": 1.1667, "angle": -16.49, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 1.3333, "angle": -30.3} ] }, - "body-fur-12": { + "@leg-front-left": { "rotate": [ - {"angle": -6.57, "curve": 0.382, "c2": 0.57, "c3": 0.734}, {"time": 0.2167, "angle": -14.41, "curve": 0.25, "c3": 0.75}, - {"time": 0.8833, "angle": 14.27, "curve": 0.243, "c3": 0.65, "c4": 0.61}, {"time": 1.3333, "angle": -6.57} + {"curve": 0.307, "c4": 0.8}, {"time": 0.1667, "angle": 13.08, "curve": 0.302, "c3": 0.695}, {"time": 0.4167, "angle": -24.68, "curve": "stepped"}, + {"time": 0.5833, "angle": -24.68, "curve": 0, "c2": 0.2, "c3": 0.689}, {"time": 0.75, "angle": 8.39, "curve": "stepped"}, {"time": 0.9167, "angle": 8.39, "curve": 0.308, "c4": 0.8}, + {"time": 1.1667, "angle": -16.49, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 1.3333, "angle": 20.14} ] }, - "body-fur-13": { + "@leg-back-left": { "rotate": [ - {"angle": -2.91, "curve": 0.38, "c2": 0.53, "c3": 0.744}, {"time": 0.2833, "angle": -14.41, "curve": 0.25, "c3": 0.75}, - {"time": 0.95, "angle": 14.27, "curve": 0.246, "c3": 0.634, "c4": 0.54}, {"time": 1.3333, "angle": -2.91} + {"curve": 0.307, "c4": 0.8}, {"time": 0.1667, "angle": 13.08}, {"time": 0.3333, "angle": -13.36}, {"time": 0.75, "angle": 11.05, "curve": "stepped"}, + {"time": 0.9167, "angle": 11.05, "curve": 0.308, "c4": 0.8}, {"time": 1.1667, "angle": -13.83, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 1.3333, "angle": -11.75} ] }, - "body-fur-14": { + "tail": { "rotate": [ - {"angle": 2.64, "curve": 0.347, "c2": 0.38, "c3": 0.708, "c4": 0.8}, {"time": 0.2833, "angle": -12.03, "curve": 0.369, "c2": 0.63, "c3": 0.706}, - {"time": 0.3833, "angle": -14.41, "curve": 0.25, "c3": 0.75}, {"time": 1.05, "angle": 14.27, "curve": 0.256, "c3": 0.62, "c4": 0.47}, {"time": 1.3333, "angle": 2.64} + {"curve": 0, "c2": 0.2, "c3": 0.698}, {"time": 0.1667, "angle": -6, "curve": 0.305, "c3": 0.698}, {"time": 0.25, "angle": 1.14, "curve": 0.301, "c3": 0.698}, + {"time": 0.4167, "angle": -8.39, "curve": 0, "c2": 0.2, "c3": 0.698}, {"time": 0.5833, "angle": 0.59, "curve": 0.305, "c3": 0.698}, + {"time": 0.75, "angle": -10.53, "curve": 0, "c2": 0.2, "c3": 0.692}, {"time": 1, "angle": -2.29, "curve": 0.302, "c3": 0.692}, + {"time": 1.1667, "angle": -9.12, "curve": 0, "c2": 0.1, "c3": 0.844}, {"time": 1.3333} ] }, - "body-fur-15": { + "back": { "rotate": [ - {"angle": -8.34, "curve": 0.381, "c2": 0.59, "c3": 0.728}, {"time": 0.1833, "angle": -14.41, "curve": 0.25, "c3": 0.75}, - {"time": 0.85, "angle": 14.27, "curve": 0.242, "c3": 0.661, "c4": 0.65}, {"time": 1.3333, "angle": -8.34} + {"curve": 0, "c2": 0.2, "c3": 0.698}, {"time": 0.1667, "angle": -1.84, "curve": 0.305, "c3": 0.698}, {"time": 0.25, "angle": 3, "curve": 0.301, "c3": 0.698}, + {"time": 0.4167, "angle": 0.04, "curve": 0, "c2": 0.2, "c3": 0.698}, {"time": 0.5833, "angle": 4.01, "curve": 0.305, "c3": 0.698}, + {"time": 0.75, "angle": 0.76, "curve": 0, "c2": 0.2, "c3": 0.692}, {"time": 1, "angle": 4.04, "curve": 0.302, "c3": 0.692}, + {"time": 1.1667, "angle": 1.6, "curve": 0, "c2": 0.1, "c3": 0.844}, {"time": 1.3333} ] }, - "body-fur-16": { - "rotate": [ - {"angle": -4.78, "curve": 0.382, "c2": 0.56, "c3": 0.74}, {"time": 0.25, "angle": -14.41, "curve": 0.25, "c3": 0.75}, - {"time": 0.9167, "angle": 14.27, "curve": 0.244, "c3": 0.641, "c4": 0.57}, {"time": 1.3333, "angle": -4.78} + "@shadow": { + "translate": [ + {"curve": 0.315, "c4": 0.8}, {"time": 0.25, "x": -83.7, "curve": 0, "c2": 0.3, "c3": 0.535}, {"time": 0.4167, "x": -83.9, "curve": 0, "c2": 0.1, "c3": 0.85}, + {"time": 0.5833, "x": 94.25, "curve": 0.309, "c3": 0.691}, {"time": 0.75, "x": 94.33, "curve": 0.309, "c3": 0.691}, {"time": 1, "x": -50.6, "curve": "stepped"}, + {"time": 1.1667, "x": -50.6, "curve": 0.082, "c3": 0.928}, {"time": 1.3333} + ], + "scale": [ + {"curve": 0.315, "c4": 0.8}, {"time": 0.25, "x": 1.04, "y": 1.04, "curve": 0, "c2": 0.3, "c3": 0.535}, {"time": 0.4167, "x": 0.95, "y": 0.95, "curve": 0, "c2": 0.1, "c3": 0.85}, + {"time": 0.5833, "x": 1.08, "y": 1.08, "curve": 0.309, "c3": 0.691}, {"time": 0.75, "x": 0.96, "y": 0.96, "curve": 0.309, "c3": 0.691}, + {"time": 1, "x": 1.08, "y": 1.08, "curve": 0.309, "c3": 0.691}, {"time": 1.1667, "x": 1.04, "y": 1.04, "curve": 0.082, "c3": 0.928}, {"time": 1.3333} ] } } }, - "4102515873": { + "4009219861": { "slots": { - "ball": { - "color": [ - {"color": "ffffff00", "curve": "stepped"}, {"time": 0.1667, "color": "ffffff00", "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "color": "ffffffff", "curve": "stepped"}, - {"time": 2.9167, "color": "ffffffff", "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 3.0833, "color": "ffffff00"} - ], - "attachment": [{"name": "ball"}] - }, - "eyes": {"attachment": [{"time": 0.5, "name": "eyes-shut"}, {"time": 0.5833, "name": "eyes"}, {"time": 3.0833, "name": "eyes-shut"}, {"time": 3.1667, "name": "eyes"}]}, - "mouth": {"attachment": [{"time": 0.1833, "name": "mouth-open"}, {"time": 0.5, "name": "mouth"}, {"time": 2.7667, "name": "mouth-open"}, {"time": 2.9167, "name": "mouth"}]} + "eyes": {"attachment": [{"time": 0.05, "name": "eyes-angry"}, {"time": 0.55, "name": "eyes-shut"}, {"time": 0.65, "name": "eyes-angry"}, {"time": 0.9, "name": "eyes-shut"}]}, + "mouth": {"attachment": [{"time": 0.1167, "name": "mouth-open"}, {"time": 0.3833, "name": "mouth-bite"}, {"time": 0.65, "name": "mouth-open"}, {"time": 0.9, "name": "mouth-bite"}]} }, "bones": { "@pivot-back": { "rotate": [ - {"curve": 0, "c2": 0.3, "c3": 0.546}, {"time": 0.1667, "angle": 6, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "angle": -6.98, "curve": 0.464, "c4": 0.7}, - {"time": 0.5, "angle": 3, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.6667, "curve": "stepped"}, {"time": 2.5833, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 2.75, "angle": 6, "curve": 0, "c2": 0.3, "c3": 0.546}, {"time": 2.9167, "angle": -6, "curve": 0.464, "c4": 0.7}, - {"time": 3.0833, "angle": 6, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 3.25} + {"curve": 0, "c2": 0.2, "c3": 0.695}, {"time": 0.1, "angle": 6, "curve": 0, "c2": 0.2, "c3": 0.695}, {"time": 0.25, "angle": -10.31, "curve": 0.317, "c4": 0.8}, + {"time": 0.3833, "angle": 5}, {"time": 0.6333, "angle": 6, "curve": 0, "c2": 0.2, "c3": 0.695}, {"time": 0.7667, "angle": -5.94, "curve": 0.317, "c4": 0.8}, + {"time": 0.9, "angle": 6.92, "curve": 0, "c2": 0.2, "c3": 0.695}, {"time": 1} ], "translate": [ - {"curve": 0, "c2": 0.3, "c3": 0.546}, {"time": 0.1667, "y": 1.78, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "y": 353.14, "curve": 0.464, "c4": 0.7}, - {"time": 0.5, "y": 255, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.6667, "y": 267.67, "curve": 0.156, "c3": 0.693}, - {"time": 1.1667, "x": -30, "y": 267.67, "curve": 0.317, "c3": 0.693}, {"time": 2.1667, "x": 50, "y": 267.67, "curve": 0.317, "c3": 0.693}, - {"time": 2.5833, "y": 267.67, "curve": "stepped"}, {"time": 2.75, "y": 267.67, "curve": 0, "c2": 0.3, "c3": 0.546}, {"time": 2.9167, "y": 310, "curve": 0.464, "c4": 0.7}, - {"time": 3.0833} - ] - }, - "@leg-front-right": { - "translate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": -2.8, "y": -31.7, "curve": 0, "c2": 0.3, "c3": 0.546}, {"time": 0.25, "curve": "stepped"}, - {"time": 2.5833, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 2.75, "x": -2.8, "y": -31.7, "curve": 0.315, "c4": 0.8}, {"time": 2.8333, "curve": "stepped"}, - {"time": 3, "curve": 0.315, "c4": 0.8}, {"time": 3.0833, "x": -2.86, "y": -32.44, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 3.25} - ] - }, - "@leg-front-left": { - "translate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": -1.46, "y": -16.59, "curve": 0, "c2": 0.3, "c3": 0.546}, {"time": 0.25, "curve": "stepped"}, - {"time": 2.5833, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 2.75, "x": -1.46, "y": -16.59, "curve": 0.315, "c4": 0.8}, {"time": 2.8333, "curve": "stepped"}, - {"time": 3, "curve": 0.315, "c4": 0.8}, {"time": 3.0833, "x": -1.64, "y": -18.64, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 3.25} - ] - }, - "leg-front-left-IK": { - "translate": [ - {"time": 0.1667, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "x": -6.9, "y": 380.8, "curve": 0.315, "c4": 0.8}, {"time": 0.5, "x": -5.5, "y": 268.35, "curve": "stepped"}, - {"time": 0.6667, "x": -5.5, "y": 268.35, "curve": 0.317, "c3": 0.693}, {"time": 0.9167, "x": -38.87, "y": 268.35, "curve": 0.317, "c3": 0.693}, - {"time": 1.1667, "x": -10.16, "y": 268.35, "curve": 0.317, "c3": 0.693}, {"time": 1.4167, "x": -39.65, "y": 268.35, "curve": 0.317, "c3": 0.693}, - {"time": 1.6667, "x": 23.98, "y": 268.35, "curve": 0.317, "c3": 0.693}, {"time": 1.9167, "x": 5.36, "y": 268.35, "curve": 0.317, "c3": 0.693}, - {"time": 2.1667, "x": 67.44, "y": 268.35, "curve": 0.317, "c3": 0.693}, {"time": 2.4167, "x": -3.95, "y": 268.35, "curve": 0.317, "c3": 0.693}, - {"time": 2.5833, "x": -5.5, "y": 268.35, "curve": "stepped"}, {"time": 2.9167, "x": -5.5, "y": 268.35, "curve": 0.315, "c4": 0.8}, {"time": 3.0833} + {"time": 0.1, "curve": 0, "c2": 0.2, "c3": 0.695}, {"time": 0.25, "y": 82.86, "curve": 0.317, "c4": 0.8}, {"time": 0.3833, "curve": "stepped"}, + {"time": 0.6333, "curve": 0, "c2": 0.2, "c3": 0.695}, {"time": 0.7667, "y": 70.12, "curve": 0.317, "c4": 0.8}, {"time": 0.9} ] }, - "leg-front-right-IK": { - "translate": [ - {"time": 0.1667, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "x": -6.9, "y": 397.8, "curve": 0.315, "c4": 0.8}, {"time": 0.5, "x": 15.4, "y": 268.08, "curve": "stepped"}, - {"time": 0.6667, "x": 15.4, "y": 268.08, "curve": 0.317, "c3": 0.693}, {"time": 0.9167, "x": 24.64, "y": 268.08, "curve": 0.317, "c3": 0.693}, - {"time": 1.1667, "x": -41.71, "y": 268.08, "curve": 0.317, "c3": 0.693}, {"time": 1.4167, "x": 22.12, "y": 268.08, "curve": 0.317, "c3": 0.693}, - {"time": 1.6667, "x": -0.56, "y": 268.08, "curve": 0.317, "c3": 0.693}, {"time": 1.9167, "x": 61.6, "y": 268.08, "curve": 0.317, "c3": 0.693}, - {"time": 2.1667, "x": 33.88, "y": 268.08, "curve": 0.317, "c3": 0.693}, {"time": 2.4167, "x": 49, "y": 268.08, "curve": 0.317, "c3": 0.693}, - {"time": 2.5833, "x": 15.4, "y": 268.08, "curve": "stepped"}, {"time": 2.9167, "x": 15.4, "y": 268.08, "curve": 0.315, "c4": 0.8}, {"time": 3.0833} + "@pivot-main": { + "translate": [{"time": 0.1, "curve": 0, "c2": 0.15, "c3": 0.703}, {"time": 0.3833, "x": 542.6}, {"time": 0.6333, "x": 603.73, "curve": 0, "c2": 0.1, "c3": 0.852}, {"time": 0.9}] + }, + "@leg-front-left": { + "translate": [ + {"curve": 0, "c2": 0.2, "c3": 0.695}, {"time": 0.1, "x": -1.93, "y": -18.15, "curve": 0, "c2": 0.3, "c3": 0.62}, {"time": 0.25, "curve": 0.313, "c4": 0.8}, + {"time": 0.3833, "x": -1.93, "y": -18.15}, {"time": 0.6333, "x": -1.68, "y": -15.27, "curve": 0, "c2": 0.2, "c3": 0.691}, {"time": 0.7667, "curve": 0.309, "c4": 0.8}, + {"time": 0.9, "x": -1.93, "y": -18.15, "curve": 0, "c2": 0.19, "c3": 0.695}, {"time": 1} ] }, - "leg-back-left-IK": { + "@leg-front-right": { "translate": [ - {"time": 0.1667, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "x": -0.4, "y": 363.25, "curve": 0.315, "c4": 0.8}, {"time": 0.5, "x": -26.16, "y": 267.01}, - {"time": 0.6667, "x": -33.59, "y": 267.01, "curve": 0.317, "c3": 0.693}, {"time": 0.9167, "x": -22.32, "y": 267.01, "curve": 0.317, "c3": 0.693}, - {"time": 1.1667, "x": -63.32, "y": 267.01, "curve": 0.317, "c3": 0.693}, {"time": 1.4167, "x": -28.35, "y": 267.01, "curve": 0.317, "c3": 0.693}, - {"time": 1.6667, "x": -28.02, "y": 267.01, "curve": 0.317, "c3": 0.693}, {"time": 1.9167, "x": 14.36, "y": 267.01, "curve": 0.317, "c3": 0.693}, - {"time": 2.1667, "x": 9.14, "y": 267.01, "curve": 0.317, "c3": 0.693}, {"time": 2.4167, "x": 11.99, "y": 267.01, "curve": 0.317, "c3": 0.693}, - {"time": 2.6667, "x": -33.59, "y": 267.01, "curve": "stepped"}, {"time": 2.9167, "x": -33.59, "y": 267.01, "curve": 0.315, "c4": 0.8}, {"time": 3.0833} + {"curve": 0, "c2": 0.2, "c3": 0.695}, {"time": 0.1, "x": -3.41, "y": -31.95, "curve": 0, "c2": 0.3, "c3": 0.62}, {"time": 0.25, "curve": 0.313, "c4": 0.8}, + {"time": 0.3833, "x": -3.41, "y": -31.95}, {"time": 0.6333, "x": -3.16, "y": -29.07, "curve": 0, "c2": 0.2, "c3": 0.691}, {"time": 0.7667, "curve": 0.309, "c4": 0.8}, + {"time": 0.9, "x": -3.41, "y": -31.95, "curve": 0, "c2": 0.19, "c3": 0.695}, {"time": 1} ] }, - "@ball": { - "rotate": [ - {"time": 0.6667, "curve": 0.156, "c3": 0.693}, {"time": 1.1667, "angle": 18, "curve": 0.317, "c3": 0.693}, {"time": 2.1667, "angle": -18, "curve": 0.317, "c3": 0.693}, {"time": 2.75} - ], + "@leg-back-left": { "translate": [ - {"time": 0.6667, "curve": 0.156, "c3": 0.693}, {"time": 1.1667, "x": -32, "curve": 0.317, "c3": 0.693}, {"time": 2.1667, "x": 32, "curve": 0.317, "c3": 0.693}, {"time": 2.75} - ], - "scale": [ - {"x": 0, "y": 0, "curve": "stepped"}, {"time": 0.1667, "x": 0, "y": 0, "curve": 0, "c2": 0.6, "c3": 0.237}, {"time": 0.3333, "x": 1.2, "y": 1.2, "curve": 0.315, "c4": 0.8}, - {"time": 0.5, "curve": "stepped"}, {"time": 2.75, "curve": 0, "c2": 0.3, "c3": 0.546}, {"time": 2.9167, "x": 1.2, "y": 1.2, "curve": 0.315, "c4": 0.8}, {"time": 3.0833, "x": 0, "y": 0} + {"curve": 0, "c2": 0.2, "c3": 0.695}, {"time": 0.1, "x": -0.42, "y": -4.72, "curve": 0, "c2": 0.3, "c3": 0.62}, {"time": 0.25, "curve": 0.313, "c4": 0.8}, + {"time": 0.3833, "x": -0.42, "y": -4.72, "curve": "stepped"}, {"time": 0.6333, "x": -0.42, "y": -4.72, "curve": 0, "c2": 0.2, "c3": 0.691}, {"time": 0.7667, "curve": 0.309, "c4": 0.8}, + {"time": 0.9, "x": -0.42, "y": -4.72, "curve": 0, "c2": 0.19, "c3": 0.695}, {"time": 1} ] }, - "ball": { - "scale": [ - {"time": 0.3333, "curve": 0.617, "c4": 0.6}, {"time": 0.5, "x": 1.2, "y": 0.802, "curve": 0, "c2": 0.39, "c3": 0.387}, {"time": 0.6667, "curve": "stepped"}, - {"time": 2.5833, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 2.75, "x": 1.2, "y": 0.9, "curve": 0, "c2": 0.3, "c3": 0.546}, {"time": 2.9167} + "leg-front-right-IK": { + "translate": [ + {"time": 0.1, "curve": 0, "c2": 0.3, "c3": 0.62}, {"time": 0.2167, "x": -58.81, "y": 174.08, "curve": 0.257, "c3": 0.637, "c4": 0.43}, + {"time": 0.2833, "x": 10.68, "y": 136.08, "curve": 0.518, "c2": 0.35, "c4": 0.83}, {"time": 0.3833, "x": 11}, {"time": 0.6333, "x": -14.37, "curve": 0, "c2": 0.2, "c3": 0.691}, + {"time": 0.7333, "x": 26.13, "y": 111.42, "curve": 0.257, "c3": 0.63, "c4": 0.42}, {"time": 0.8, "x": -44.87, "y": 129.12, "curve": 0.503, "c2": 0.34, "c4": 0.83}, {"time": 0.9} ] }, - "@pivot-center": { - "rotate": [ - {"time": 0.6667, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.9167, "angle": 2, "curve": 0.461, "c3": 0.543}, {"time": 1.4167, "angle": -2, "curve": 0.461, "c3": 0.543}, - {"time": 1.9167, "angle": 2, "curve": 0.461, "c3": 0.543}, {"time": 2.4167, "angle": -2, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 2.75} + "leg-front-left-IK": { + "translate": [ + {"time": 0.1, "curve": 0, "c2": 0.3, "c3": 0.62}, {"time": 0.2167, "x": -73.46, "y": 138.38, "curve": 0.257, "c3": 0.637, "c4": 0.43}, + {"time": 0.2833, "x": -0.77, "y": 108.17, "curve": 0.518, "c2": 0.35, "c4": 0.83}, {"time": 0.3833, "x": 11}, {"time": 0.6333, "x": -14.37, "curve": 0, "c2": 0.2, "c3": 0.691}, + {"time": 0.7333, "x": 11.48, "y": 75.71, "curve": 0.257, "c3": 0.63, "c4": 0.42}, {"time": 0.8, "x": -56.77, "y": 100.13, "curve": 0.503, "c2": 0.34, "c4": 0.83}, {"time": 0.9} ] }, - "@shadow": { + "leg-back-left-IK": { "translate": [ - {"time": 0.6667, "curve": 0.317, "c3": 0.693}, {"time": 1.1667, "x": -32, "curve": 0.317, "c3": 0.693}, {"time": 2.1667, "x": 32, "curve": 0.317, "c3": 0.693}, {"time": 2.5833} - ], - "scale": [ - {"curve": 0, "c2": 0.3, "c3": 0.546}, {"time": 0.1667, "x": 1.1, "y": 1.1, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "curve": 0.464, "c4": 0.7}, - {"time": 0.5, "x": 1.06, "y": 1.06, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.6667, "curve": "stepped"}, {"time": 2.5833, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 2.75, "x": 1.06, "y": 1.06, "curve": 0, "c2": 0.3, "c3": 0.546}, {"time": 2.9167, "curve": 0.464, "c4": 0.7}, - {"time": 3.0833, "x": 1.1, "y": 1.1, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 3.25} + {"time": 0.1, "curve": 0, "c2": 0.3, "c3": 0.62}, {"time": 0.2, "x": -56.56, "y": 95.34, "curve": 0.257, "c3": 0.637, "c4": 0.43}, + {"time": 0.2667, "x": 21.01, "y": 67.87, "curve": 0.518, "c2": 0.35, "c4": 0.83}, {"time": 0.3833, "x": 0.85}, {"time": 0.6333, "x": -16.87, "curve": 0, "c2": 0.2, "c3": 0.691}, + {"time": 0.7167, "x": 21.01, "y": 67.87, "curve": 0.257, "c3": 0.63, "c4": 0.42}, {"time": 0.7833, "x": -41.39, "y": 75.95, "curve": 0.503, "c2": 0.34, "c4": 0.83}, {"time": 0.9} ] }, "tail": { "rotate": [ - {"curve": 0, "c2": 0.3, "c3": 0.546}, {"time": 0.1667, "angle": 17.35, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "angle": -14.67, "curve": 0.464, "c4": 0.7}, - {"time": 0.5, "angle": 19.12, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.6667, "angle": -10.65, "curve": 0.317, "c3": 0.693}, - {"time": 0.9167, "angle": -0.65, "curve": 0.317, "c3": 0.693}, {"time": 1.1667, "angle": -10.65, "curve": 0.317, "c3": 0.693}, - {"time": 1.4167, "angle": -0.65, "curve": 0.317, "c3": 0.693}, {"time": 1.6667, "angle": -10.65, "curve": 0.317, "c3": 0.693}, - {"time": 1.9167, "angle": -0.65, "curve": 0.317, "c3": 0.693}, {"time": 2.1667, "angle": -10.65, "curve": 0.317, "c3": 0.693}, - {"time": 2.4167, "angle": -0.65, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 2.5833, "angle": -10.65, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 2.75, "angle": 19.35, "curve": 0, "c2": 0.3, "c3": 0.546}, {"time": 2.9167, "angle": -18.65, "curve": 0, "c2": 0.3, "c3": 0.546}, - {"time": 3.0833, "angle": 17.35, "curve": 0.317, "c3": 0.693}, {"time": 3.25} + {"curve": 0, "c2": 0.2, "c3": 0.695}, {"time": 0.1, "angle": 21.16, "curve": 0, "c2": 0.2, "c3": 0.695}, {"time": 0.25, "angle": -27.62, "curve": 0.317, "c4": 0.8}, + {"time": 0.3833, "angle": 17.89}, {"time": 0.6333, "angle": 23.46, "curve": 0, "c2": 0.2, "c3": 0.695}, {"time": 0.7667, "angle": -27.7, "curve": 0.317, "c4": 0.8}, + {"time": 0.9, "angle": 21.16, "curve": 0, "c2": 0.2, "c3": 0.695}, {"time": 1} ] }, - "body-fur-16": { - "rotate": [ - {"angle": 28.39, "curve": 0.25, "c3": 0.75}, {"time": 0.1667, "curve": 0.25, "c3": 0.75}, {"time": 0.3333, "angle": 15.51, "curve": 0.25, "c3": 0.75}, - {"time": 0.5, "angle": -26.6, "curve": 0.25, "c3": 0.75}, {"time": 0.6667, "angle": 14.77, "curve": 0.25, "c3": 0.75}, {"time": 0.8333, "angle": -12.34, "curve": 0.25, "c3": 0.75}, - {"time": 1.1333, "curve": 0.25, "c3": 0.75}, {"time": 1.5, "angle": -19.09, "curve": 0.25, "c3": 0.75}, {"time": 2.1667, "angle": 15.18, "curve": 0.25, "c3": 0.75}, - {"time": 2.75, "curve": 0.25, "c3": 0.75}, {"time": 2.9167, "angle": 24.34, "curve": 0.25, "c3": 0.75}, {"time": 3.0833, "angle": -25.03, "curve": 0.25, "c3": 0.75}, - {"time": 3.25, "angle": 13.84} + "@shadow": { + "translate": [{"time": 0.1}, {"time": 0.3833, "x": 542.6}, {"time": 0.6333, "x": 603.73, "curve": 0, "c2": 0.1, "c3": 0.852}, {"time": 0.9}], + "scale": [ + {}, {"time": 0.1, "x": 1.08, "y": 1.08}, {"time": 0.25, "x": 0.9, "y": 0.9}, {"time": 0.3833, "x": 1.08, "y": 1.08}, {"time": 0.6333, "x": 1.1, "y": 1.1}, + {"time": 0.7833, "x": 0.9, "y": 0.9}, {"time": 0.9, "x": 1.08, "y": 1.08}, {"time": 1} ] - }, - "body-fur-15": { + } + } + }, + "678360058": { + "slots": {"eyes": {"attachment": [{"time": 0.1333, "name": "eyes-shut"}]}, "mouth": {"attachment": [{"time": 0.1833, "name": "mouth-open"}, {"time": 0.9667, "name": "mouth-bite"}]}}, + "bones": { + "@pivot-back": { "rotate": [ - {"angle": 21.51, "curve": 0.345, "c2": 0.37, "c3": 0.757}, {"time": 0.1167, "curve": 0.25, "c3": 0.75}, {"time": 0.2833, "angle": 15.51, "curve": 0.25, "c3": 0.75}, - {"time": 0.45, "angle": -26.6, "curve": 0.25, "c3": 0.75}, {"time": 0.6167, "angle": 14.77, "curve": 0.25, "c3": 0.75}, {"time": 0.7833, "angle": -12.34, "curve": 0.25, "c3": 0.75}, - {"time": 1.0833, "curve": 0.25, "c3": 0.75}, {"time": 1.45, "angle": -19.09, "curve": 0.25, "c3": 0.75}, {"time": 2.1167, "angle": 15.18, "curve": 0.25, "c3": 0.75}, - {"time": 2.7, "curve": 0.25, "c3": 0.75}, {"time": 2.8667, "angle": 24.34, "curve": 0.25, "c3": 0.75}, {"time": 3.0333, "angle": -25.03, "curve": 0.25, "c3": 0.75}, - {"time": 3.2, "angle": 28.39, "curve": 0.269, "c3": 0.618, "c4": 0.42}, {"time": 3.25, "angle": 13.33} + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "angle": 3.53, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "angle": -10.14, "curve": 0.315, "c4": 0.8}, + {"time": 0.5, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5833, "angle": 3.53, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.75, "angle": -10.14, "curve": 0.315, "c4": 0.8}, + {"time": 0.9167, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1.0833, "angle": 5.43}, {"time": 1.15, "angle": 3.94}, {"time": 1.2, "angle": 5.43}, {"time": 1.2333, "angle": 3.94}, + {"time": 1.2667, "angle": 5.43}, {"time": 1.3, "angle": 3.94}, {"time": 1.3333, "angle": 5.43}, {"time": 1.3667, "angle": 3.94}, {"time": 1.4, "angle": 5.43}, + {"time": 1.4333, "angle": 3.94}, {"time": 1.4667, "angle": 5.43}, {"time": 1.5, "angle": 3.94} + ], + "translate": [ + {"y": 44.46, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "y": 12.46, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "y": 209.26, "curve": 0.315, "c4": 0.8}, + {"time": 0.5, "y": 44.46, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5833, "y": 12.46, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.75, "y": 209.26, "curve": 0.315, "c4": 0.8}, + {"time": 0.9167, "y": 44.46} ] }, - "body-fur-14": { + "@leg-front-right": { "rotate": [ - {"angle": -5.38, "curve": 0.363, "c2": 0.44, "c3": 0.755}, {"time": 0.1, "angle": 28.39, "curve": 0.25, "c3": 0.625, "c4": 0.5}, - {"time": 0.1833, "angle": 14.2, "curve": 0.375, "c2": 0.5, "c3": 0.75}, {"time": 0.2667, "curve": 0.25, "c3": 0.75}, {"time": 0.4333, "angle": 15.51, "curve": 0.25, "c3": 0.75}, - {"time": 0.6, "angle": -26.6, "curve": 0.25, "c3": 0.75}, {"time": 0.7667, "angle": 14.77, "curve": 0.25, "c3": 0.75}, {"time": 0.9333, "angle": -12.34, "curve": 0.25, "c3": 0.75}, - {"time": 1.2333, "curve": 0.25, "c3": 0.75}, {"time": 1.6, "angle": -19.09, "curve": 0.25, "c3": 0.75}, {"time": 2.2667, "angle": 15.18, "curve": 0.25, "c3": 0.75}, - {"time": 2.85, "curve": 0.25, "c3": 0.75}, {"time": 3.0167, "angle": 24.34, "curve": 0.25, "c3": 0.75}, {"time": 3.1833, "angle": -25.03, "curve": 0.258, "c3": 0.619, "c4": 0.45}, - {"time": 3.25, "angle": 13.33} + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "angle": -14.05, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "angle": 13.89, "curve": 0.315, "c4": 0.8}, + {"time": 0.5, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5833, "angle": -12.58, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.75, "angle": 13.89, "curve": 0.315, "c4": 0.8}, + {"time": 0.9167, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1.0833, "angle": -12.58} ] }, - "body-fur-13": { + "@leg-front-left": { "rotate": [ - {"angle": 26.12, "curve": 0.36, "c2": 0.64, "c3": 0.695}, {"time": 0.0167, "angle": 28.39, "curve": 0.25, "c3": 0.75}, {"time": 0.1833, "curve": 0.25, "c3": 0.75}, - {"time": 0.35, "angle": 15.51, "curve": 0.25, "c3": 0.75}, {"time": 0.5167, "angle": -26.6, "curve": 0.25, "c3": 0.75}, {"time": 0.6833, "angle": 14.77, "curve": 0.25, "c3": 0.75}, - {"time": 0.85, "angle": -12.34, "curve": 0.25, "c3": 0.75}, {"time": 1.15, "curve": 0.25, "c3": 0.75}, {"time": 1.5167, "angle": -19.09, "curve": 0.25, "c3": 0.75}, - {"time": 2.1833, "angle": 15.18, "curve": 0.25, "c3": 0.75}, {"time": 2.7667, "curve": 0.25, "c3": 0.75}, {"time": 2.9333, "angle": 24.34, "curve": 0.25, "c3": 0.75}, - {"time": 3.1, "angle": -25.03, "curve": 0.245, "c3": 0.711, "c4": 0.83}, {"time": 3.25, "angle": 11.59} + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "angle": -14.05, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "angle": 13.89, "curve": 0.315, "c4": 0.8}, + {"time": 0.5, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5833, "angle": -12.58, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.75, "angle": 13.89, "curve": 0.315, "c4": 0.8}, + {"time": 0.9167, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1.0833, "angle": -12.58} ] }, - "body-fur-12": { + "@leg-back-left": { "rotate": [ - {"angle": 27.18, "curve": 0.289, "c2": 0.17, "c3": 0.755}, {"time": 0.15, "curve": 0.25, "c3": 0.75}, {"time": 0.3167, "angle": 15.51, "curve": 0.25, "c3": 0.75}, - {"time": 0.4833, "angle": -26.6, "curve": 0.25, "c3": 0.75}, {"time": 0.65, "angle": 14.77, "curve": 0.25, "c3": 0.75}, {"time": 0.8167, "angle": -12.34, "curve": 0.25, "c3": 0.75}, - {"time": 1.1167, "curve": 0.25, "c3": 0.75}, {"time": 1.4833, "angle": -19.09, "curve": 0.25, "c3": 0.75}, {"time": 2.15, "angle": 15.18, "curve": 0.25, "c3": 0.75}, - {"time": 2.7333, "curve": 0.25, "c3": 0.75}, {"time": 2.9, "angle": 24.34, "curve": 0.25, "c3": 0.75}, {"time": 3.0667, "angle": -25.03, "curve": 0.25, "c3": 0.75}, - {"time": 3.2333, "angle": 28.39, "curve": 0.305, "c3": 0.64, "c4": 0.36}, {"time": 3.25, "angle": 8.12} + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "angle": -14.05, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "angle": 13.89, "curve": 0.315, "c4": 0.8}, + {"time": 0.5, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5833, "angle": -12.58, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.75, "angle": 13.89, "curve": 0.315, "c4": 0.8}, + {"time": 0.9167, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1.0833, "angle": -12.58} ] }, - "body-fur-11": { + "tail": { "rotate": [ - {"angle": 21.52, "curve": 0.345, "c2": 0.37, "c3": 0.757}, {"time": 0.1167, "curve": 0.25, "c3": 0.75}, {"time": 0.2833, "angle": 15.51, "curve": 0.25, "c3": 0.75}, - {"time": 0.45, "angle": -26.6, "curve": 0.25, "c3": 0.75}, {"time": 0.6167, "angle": 14.77, "curve": 0.25, "c3": 0.75}, {"time": 0.7833, "angle": -12.34, "curve": 0.25, "c3": 0.75}, - {"time": 1.0833, "curve": 0.25, "c3": 0.75}, {"time": 1.45, "angle": -19.09, "curve": 0.25, "c3": 0.75}, {"time": 2.1167, "angle": 15.18, "curve": 0.25, "c3": 0.75}, - {"time": 2.7, "curve": 0.25, "c3": 0.75}, {"time": 2.8667, "angle": 24.34, "curve": 0.25, "c3": 0.75}, {"time": 3.0333, "angle": -25.03, "curve": 0.25, "c3": 0.75}, - {"time": 3.2, "angle": 28.39, "curve": 0.269, "c3": 0.618, "c4": 0.42}, {"time": 3.25, "angle": 4.23} + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "angle": 14.79, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "angle": -27.83, "curve": "stepped"}, + {"time": 0.3333, "angle": -27.83, "curve": 0.313, "c3": 0.691}, {"time": 0.5, "angle": 14.79, "curve": "stepped"}, {"time": 0.5833, "angle": 14.79, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.6667, "angle": -27.83, "curve": "stepped"}, {"time": 0.75, "angle": -27.83, "curve": 0.313, "c3": 0.691}, {"time": 0.9167, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 1.0833, "angle": 12.48, "curve": 0.313, "c3": 0.691}, {"time": 1.15, "angle": 9.69, "curve": 0.313, "c3": 0.691}, {"time": 1.2, "angle": 12.48, "curve": 0.161, "c3": 0.854}, + {"time": 1.2333, "angle": 9.69, "curve": 0.161, "c3": 0.854}, {"time": 1.2667, "angle": 12.48, "curve": 0.161, "c3": 0.854}, {"time": 1.3, "angle": 9.69, "curve": 0.161, "c3": 0.854}, + {"time": 1.3333, "angle": 12.48, "curve": 0.161, "c3": 0.854}, {"time": 1.3667, "angle": 9.69, "curve": 0.161, "c3": 0.854}, {"time": 1.4, "angle": 12.48, "curve": 0.161, "c3": 0.854}, + {"time": 1.4333, "angle": 9.69, "curve": 0.161, "c3": 0.854}, {"time": 1.4667, "angle": 12.48, "curve": 0.161, "c3": 0.854}, {"time": 1.5, "angle": 9.69} ] }, - "body-fur-10": { - "rotate": [ - {"angle": 14.2, "curve": 0.375, "c2": 0.5, "c3": 0.75}, {"time": 0.0833, "curve": 0.25, "c3": 0.75}, {"time": 0.25, "angle": 15.51, "curve": 0.25, "c3": 0.75}, - {"time": 0.4167, "angle": -26.6, "curve": 0.25, "c3": 0.75}, {"time": 0.5833, "angle": 14.77, "curve": 0.25, "c3": 0.75}, {"time": 0.75, "angle": -12.34, "curve": 0.25, "c3": 0.75}, - {"time": 1.05, "curve": 0.25, "c3": 0.75}, {"time": 1.4167, "angle": -19.09, "curve": 0.25, "c3": 0.75}, {"time": 2.0833, "angle": 15.18, "curve": 0.25, "c3": 0.75}, - {"time": 2.6667, "curve": 0.25, "c3": 0.75}, {"time": 2.8333, "angle": 24.34, "curve": 0.25, "c3": 0.75}, {"time": 3, "angle": -25.03, "curve": 0.25, "c3": 0.75}, - {"time": 3.1667, "angle": 28.39, "curve": 0.25, "c3": 0.625, "c4": 0.5}, {"time": 3.25, "angle": 0.34} + "@shadow": { + "scale": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": 1.1, "y": 1.1, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "x": 0.9, "y": 0.9, "curve": 0.315, "c4": 0.8}, + {"time": 0.5833, "x": 1.1, "y": 1.1, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.75, "x": 0.9, "y": 0.9, "curve": 0.315, "c4": 0.8}, + {"time": 0.9167, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1.0833, "x": 1.05, "y": 1.05}, {"time": 1.15}, {"time": 1.2, "x": 1.05, "y": 1.05}, {"time": 1.25}, + {"time": 1.3, "x": 1.05, "y": 1.05}, {"time": 1.35}, {"time": 1.4, "x": 1.05, "y": 1.05}, {"time": 1.45}, {"time": 1.5, "x": 1.05, "y": 1.05} ] - }, - "body-fur-09": { + } + } + }, + "1928537773": { + "slots": {"eyes": {"attachment": [{"time": 0.05, "name": "eyes-happy"}]}}, + "bones": { + "@pivot-back": { "rotate": [ - {"angle": 21.53, "curve": 0.321, "c2": 0.3, "c3": 0.661, "c4": 0.65}, {"time": 0.0333, "angle": 14.2, "curve": 0.375, "c2": 0.5, "c3": 0.75}, {"time": 0.1167}, - {"time": 0.2833, "angle": 15.51, "curve": 0.25, "c3": 0.75}, {"time": 0.45, "angle": -26.6, "curve": 0.25, "c3": 0.75}, {"time": 0.6167, "angle": 14.77, "curve": 0.25, "c3": 0.75}, - {"time": 0.7833, "angle": -12.34, "curve": 0.25, "c3": 0.75}, {"time": 1.0833, "curve": 0.25, "c3": 0.75}, {"time": 1.45, "angle": -19.09, "curve": 0.25, "c3": 0.75}, - {"time": 2.1167, "angle": 15.18, "curve": 0.25, "c3": 0.75}, {"time": 2.7, "curve": 0.25, "c3": 0.75}, {"time": 2.8667, "angle": 24.34, "curve": 0.25, "c3": 0.75}, - {"time": 3.0333, "angle": -25.03, "curve": 0.25, "c3": 0.75}, {"time": 3.2, "angle": 28.39, "curve": 0.269, "c3": 0.618, "c4": 0.42}, {"time": 3.25, "angle": 6.86} + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "angle": -5.76, "curve": 0.306, "c3": 0.695}, {"time": 0.6667, "angle": -6.67, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.8333, "angle": 2.85, "curve": 0.306, "c3": 0.695}, {"time": 1} + ], + "translate": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": -11.96, "y": -12.91, "curve": 0.306, "c3": 0.695}, + {"time": 0.6667, "x": -17.52, "y": -16.38, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.8333} ] }, - "body-fur-08": { - "rotate": [ - {"angle": 3.69, "curve": 0.375, "c2": 0.62, "c3": 0.716}, {"time": 0.0333}, {"time": 0.2, "angle": 15.51, "curve": 0.25, "c3": 0.75}, - {"time": 0.3667, "angle": -26.6, "curve": 0.25, "c3": 0.75}, {"time": 0.5333, "angle": 14.77, "curve": 0.25, "c3": 0.75}, {"time": 0.7, "angle": -12.34, "curve": 0.25, "c3": 0.75}, - {"time": 1, "curve": 0.25, "c3": 0.75}, {"time": 1.3667, "angle": -19.09, "curve": 0.25, "c3": 0.75}, {"time": 2.0333, "angle": 15.18, "curve": 0.25, "c3": 0.75}, - {"time": 2.6167, "curve": 0.25, "c3": 0.75}, {"time": 2.7833, "angle": 24.34, "curve": 0.25, "c3": 0.75}, {"time": 2.95, "angle": -25.03, "curve": 0.25, "c3": 0.75}, - {"time": 3.1167, "angle": 28.39, "curve": 0.243, "c3": 0.68, "c4": 0.71}, {"time": 3.25, "angle": -0.91} + "@leg-front-left": { + "translate": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": -20.02, "y": -2.36, "curve": "stepped"}, {"time": 0.6667, "x": -20.02, "y": -2.36, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.8333, "x": 5.31, "y": -7.32, "curve": 0.306, "c3": 0.695}, {"time": 1} ] }, - "body-fur-07": { - "rotate": [ - {"angle": 6.88, "curve": 0.382, "c2": 0.58, "c3": 0.731}, {"time": 0.05, "curve": 0.25, "c3": 0.75}, {"time": 0.2167, "angle": 15.51, "curve": 0.25, "c3": 0.75}, - {"time": 0.3833, "angle": -26.6, "curve": 0.25, "c3": 0.75}, {"time": 0.55, "angle": 14.77, "curve": 0.25, "c3": 0.75}, {"time": 0.7167, "angle": -12.34, "curve": 0.25, "c3": 0.75}, - {"time": 1.0167, "curve": 0.25, "c3": 0.75}, {"time": 1.3833, "angle": -19.09, "curve": 0.25, "c3": 0.75}, {"time": 2.05, "angle": 15.18, "curve": 0.25, "c3": 0.75}, - {"time": 2.6333, "curve": 0.25, "c3": 0.75}, {"time": 2.8, "angle": 24.34, "curve": 0.25, "c3": 0.75}, {"time": 2.9667, "angle": -25.03, "curve": 0.25, "c3": 0.75}, - {"time": 3.1333, "angle": 28.39, "curve": 0.243, "c3": 0.655, "c4": 0.63}, {"time": 3.25, "angle": 2.91} + "@leg-front-right": { + "translate": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": -36.67, "y": 20.01, "curve": 0.306, "c3": 0.695}, + {"time": 0.6667, "x": -44.17, "y": 20.3, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.8333, "x": -12.71, "y": -17.14, "curve": 0.306, "c3": 0.695}, {"time": 1} ] }, - "body-fur-06": { - "rotate": [ - {"angle": 27.23, "curve": 0.282, "c2": 0.15, "c3": 0.641, "c4": 0.58}, {"time": 0.0667, "angle": 14.2, "curve": 0.375, "c2": 0.5, "c3": 0.75}, {"time": 0.15}, - {"time": 0.3167, "angle": 15.51, "curve": 0.25, "c3": 0.75}, {"time": 0.4833, "angle": -26.6, "curve": 0.25, "c3": 0.75}, {"time": 0.65, "angle": 14.77, "curve": 0.25, "c3": 0.75}, - {"time": 0.8167, "angle": -12.34, "curve": 0.25, "c3": 0.75}, {"time": 1.1167, "curve": 0.25, "c3": 0.75}, {"time": 1.4833, "angle": -19.09, "curve": 0.25, "c3": 0.75}, - {"time": 2.15, "angle": 15.18, "curve": 0.25, "c3": 0.75}, {"time": 2.7333, "curve": 0.25, "c3": 0.75}, {"time": 2.9, "angle": 24.34, "curve": 0.25, "c3": 0.75}, - {"time": 3.0667, "angle": -25.03, "curve": 0.25, "c3": 0.75}, {"time": 3.2333, "angle": 28.39, "curve": 0.305, "c3": 0.64, "c4": 0.36}, {"time": 3.25, "angle": 13.33} + "@leg-back-left": { + "translate": [ + {"time": 0.1667, "curve": 0.306, "c3": 0.695}, {"time": 0.6667, "x": -4.62, "y": -2.21, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.8333, "x": -0.1, "y": -3.16, "curve": 0.306, "c3": 0.695}, {"time": 1} ] }, - "body-fur-05": { + "tail": { "rotate": [ - {"angle": 10.44, "curve": 0.381, "c2": 0.55, "c3": 0.742}, {"time": 0.0667}, {"time": 0.2333, "angle": 15.51, "curve": 0.25, "c3": 0.75}, - {"time": 0.4, "angle": -26.6, "curve": 0.25, "c3": 0.75}, {"time": 0.5667, "angle": 14.77, "curve": 0.25, "c3": 0.75}, {"time": 0.7333, "angle": -12.34, "curve": 0.25, "c3": 0.75}, - {"time": 1.0333, "curve": 0.25, "c3": 0.75}, {"time": 1.4, "angle": -19.09, "curve": 0.25, "c3": 0.75}, {"time": 2.0667, "angle": 15.18, "curve": 0.25, "c3": 0.75}, - {"time": 2.65, "curve": 0.25, "c3": 0.75}, {"time": 2.8167, "angle": 24.34, "curve": 0.25, "c3": 0.75}, {"time": 2.9833, "angle": -25.03, "curve": 0.25, "c3": 0.75}, - {"time": 3.15, "angle": 28.39, "curve": 0.245, "c3": 0.637, "c4": 0.56}, {"time": 3.25, "angle": 6.86} + {"curve": 0, "c2": 0.3, "c3": 0.54}, {"time": 0.1667, "angle": -11.59, "curve": 0.306, "c3": 0.695}, {"time": 0.4167, "angle": 2.75, "curve": 0.306, "c3": 0.695}, + {"time": 0.6667, "angle": -13.32, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.8333, "angle": 15.71, "curve": 0.306, "c3": 0.695}, {"time": 1} ] }, - "body-fur-04": { + "@shadow": { + "scale": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": 0.96, "y": 0.96}, {"time": 0.6667, "x": 0.94, "y": 0.94, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.8333, "x": 1.06, "y": 1.06, "curve": 0.306, "c3": 0.695}, {"time": 1} + ] + } + }, + "events": [{"time": 0.1667, "name": "hit-buff"}] + }, + "4120709906": { + "slots": {"eyes": {"attachment": [{"time": 0.05, "name": "eyes-shut"}]}, "mouth": {"attachment": [{"time": 0.05, "name": "mouth-bite"}]}}, + "bones": { + "@pivot-back": { "rotate": [ - {"angle": 26.12, "curve": 0.36, "c2": 0.64, "c3": 0.695}, {"time": 0.0167, "angle": 28.39, "curve": 0.25, "c3": 0.625, "c4": 0.5}, - {"time": 0.1, "angle": 14.2, "curve": 0.375, "c2": 0.5, "c3": 0.75}, {"time": 0.1833}, {"time": 0.35, "angle": 15.51, "curve": 0.25, "c3": 0.75}, - {"time": 0.5167, "angle": -26.6, "curve": 0.25, "c3": 0.75}, {"time": 0.6833, "angle": 14.77, "curve": 0.25, "c3": 0.75}, {"time": 0.85, "angle": -12.34, "curve": 0.25, "c3": 0.75}, - {"time": 1.15, "curve": 0.25, "c3": 0.75}, {"time": 1.5167, "angle": -19.09, "curve": 0.25, "c3": 0.75}, {"time": 2.1833, "angle": 15.18, "curve": 0.25, "c3": 0.75}, - {"time": 2.7667, "curve": 0.25, "c3": 0.75}, {"time": 2.9333, "angle": 24.34, "curve": 0.25, "c3": 0.75}, {"time": 3.1, "angle": -25.03, "curve": 0.245, "c3": 0.711, "c4": 0.83}, - {"time": 3.25, "angle": 12.53} + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "angle": 3.5}, {"time": 0.6667, "angle": 4, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.8333, "angle": -1.98, "curve": 0.306, "c3": 0.695}, {"time": 1} + ], + "translate": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "y": 2.9}, {"time": 0.6667, "y": 3.91, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.8333, "y": -2.14, "curve": 0.306, "c3": 0.695}, {"time": 1} ] }, - "body-fur-03": { - "rotate": [ - {"angle": 17.95, "curve": 0.363, "c2": 0.44, "c3": 0.755}, {"time": 0.1}, {"time": 0.2667, "angle": 15.51, "curve": 0.25, "c3": 0.75}, - {"time": 0.4333, "angle": -26.6, "curve": 0.25, "c3": 0.75}, {"time": 0.6, "angle": 14.77, "curve": 0.25, "c3": 0.75}, {"time": 0.7667, "angle": -12.34, "curve": 0.25, "c3": 0.75}, - {"time": 1.0667, "curve": 0.25, "c3": 0.75}, {"time": 1.4333, "angle": -19.09, "curve": 0.25, "c3": 0.75}, {"time": 2.1, "angle": 15.18, "curve": 0.25, "c3": 0.75}, - {"time": 2.6833, "curve": 0.25, "c3": 0.75}, {"time": 2.85, "angle": 24.34, "curve": 0.25, "c3": 0.75}, {"time": 3.0167, "angle": -25.03, "curve": 0.25, "c3": 0.75}, - {"time": 3.1833, "angle": 28.39, "curve": 0.258, "c3": 0.619, "c4": 0.45}, {"time": 3.25, "angle": 5.54} + "@leg-front-right": { + "translate": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": -0.92, "y": -19.87}, {"time": 0.6667, "x": -1.14, "y": -21.42, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.8333, "x": -0.43, "y": 9.97, "curve": 0.306, "c3": 0.695}, {"time": 1} ] }, - "body-fur-02": { - "rotate": [ - {"angle": 15.45, "curve": 0.382, "c2": 0.58, "c3": 0.731}, {"time": 0.05, "angle": 28.39, "curve": 0.25, "c3": 0.625, "c4": 0.5}, - {"time": 0.1333, "angle": 14.2, "curve": 0.375, "c2": 0.5, "c3": 0.75}, {"time": 0.2167}, {"time": 0.3833, "angle": 15.51, "curve": 0.25, "c3": 0.75}, - {"time": 0.55, "angle": -26.6, "curve": 0.25, "c3": 0.75}, {"time": 0.7167, "angle": 14.77, "curve": 0.25, "c3": 0.75}, {"time": 0.8833, "angle": -12.34, "curve": 0.25, "c3": 0.75}, - {"time": 1.1833, "curve": 0.25, "c3": 0.75}, {"time": 1.55, "angle": -19.09, "curve": 0.25, "c3": 0.75}, {"time": 2.2167, "angle": 15.18, "curve": 0.25, "c3": 0.75}, - {"time": 2.8, "curve": 0.25, "c3": 0.75}, {"time": 2.9667, "angle": 24.34, "curve": 0.25, "c3": 0.75}, {"time": 3.1333, "angle": -25.03, "curve": 0.243, "c3": 0.655, "c4": 0.63}, - {"time": 3.25, "angle": 13.84} + "@leg-front-left": { + "translate": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": 7.87, "y": -5.37}, {"time": 0.6667, "x": 9.12, "y": -5.44, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.8333, "x": -0.16, "y": 3.89, "curve": 0.306, "c3": 0.695}, {"time": 1} ] }, - "body-fur-01": { + "tail": { "rotate": [ - {"angle": 24.7, "curve": 0.32, "c2": 0.29, "c3": 0.757}, {"time": 0.1333}, {"time": 0.3, "angle": 15.51, "curve": 0.25, "c3": 0.75}, - {"time": 0.4667, "angle": -26.6, "curve": 0.25, "c3": 0.75}, {"time": 0.6333, "angle": 14.77, "curve": 0.25, "c3": 0.75}, {"time": 0.8, "angle": -12.34, "curve": 0.25, "c3": 0.75}, - {"time": 1.1, "curve": 0.25, "c3": 0.75}, {"time": 1.4667, "angle": -19.09, "curve": 0.25, "c3": 0.75}, {"time": 2.1333, "angle": 15.18, "curve": 0.25, "c3": 0.75}, - {"time": 2.7167, "curve": 0.25, "c3": 0.75}, {"time": 2.8833, "angle": 24.34, "curve": 0.25, "c3": 0.75}, {"time": 3.05, "angle": -25.03, "curve": 0.25, "c3": 0.75}, - {"time": 3.2167, "angle": 28.39, "curve": 0.284, "c3": 0.625, "c4": 0.38}, {"time": 3.25, "angle": 10.51} + {"curve": 0, "c2": 0.3, "c3": 0.54}, {"time": 0.1667, "angle": -17.97, "curve": 0.306, "c3": 0.695}, {"time": 0.4167, "angle": -9.96, "curve": 0.306, "c3": 0.695}, + {"time": 0.6667, "angle": -19.79, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.8333, "angle": 6.14, "curve": 0.306, "c3": 0.695}, {"time": 1} ] } - } - }, - "4047015022": { - "slots": { - "eyes": {"attachment": [{"time": 0.0833, "name": "eyes-happy"}, {"time": 1, "name": "eyes"}]}, - "leg-back-left": {"attachment": [{"time": 0.0667, "name": "leg-back-left-long"}, {"time": 0.9, "name": "leg-back-left"}]}, - "mouth": {"attachment": [{"time": 0.0833, "name": "mouth-smile"}, {"time": 1, "name": "mouth"}]} }, + "events": [{"time": 0.1667, "name": "hit-buff"}] + }, + "4178707913": { + "slots": {"eyes": {"attachment": [{"time": 0.0167, "name": "eyes-shut"}, {"time": 0.1833, "name": "eyes-angry"}]}, "mouth": {"attachment": [{"time": 0.0167, "name": "mouth-bite"}]}}, "bones": { "@pivot-back": { "rotate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "angle": -18, "curve": 0.317, "c3": 0.693}, {"time": 0.3333, "angle": -17, "curve": 0.317, "c3": 0.693}, - {"time": 0.5, "angle": -18, "curve": 0.317, "c3": 0.693}, {"time": 0.6667, "angle": -17, "curve": 0.317, "c3": 0.693}, {"time": 0.8333, "angle": -18, "curve": 0.317, "c3": 0.693}, - {"time": 1.0833} + {"curve": "stepped"}, {"time": 0.0167, "angle": -20}, {"time": 0.1667, "angle": -22, "curve": 0.464, "c4": 0.7}, {"time": 0.3167, "angle": 5.2, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.4167} ], + "translate": [{"curve": "stepped"}, {"time": 0.0167, "x": 75, "y": -4.42}, {"time": 0.1667, "x": 80, "y": -7.47, "curve": 0.464, "c4": 0.7}, {"time": 0.3167}] + }, + "@leg-front-left": {"translate": [{"time": 0.1667, "curve": 0.62, "c4": 0.3}, {"time": 0.3167, "x": -1.1, "y": -14.87, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.4167}]}, + "@shadow": { "translate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": 33.94, "y": -52, "curve": "stepped"}, {"time": 0.8333, "x": 33.94, "y": -52, "curve": 0.317, "c3": 0.693}, {"time": 1.0833} + {"curve": "stepped"}, {"time": 0.0167, "x": 70.3, "curve": "stepped"}, {"time": 0.1667, "x": 70.3, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.3167, "x": 12.49, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.4167} + ], + "scale": [ + {"curve": "stepped"}, {"time": 0.0167, "x": 0.98, "y": 0.98}, {"time": 0.1667, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.3167, "x": 1.08, "y": 1.08, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.4167} ] }, - "@leg-front-left": { + "leg-back-left-IK": { "translate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": -27.99, "y": 1.7, "curve": 0.25, "c3": 0.75}, {"time": 0.3333, "x": -26.93, "y": -1.56, "curve": 0.25, "c3": 0.75}, - {"time": 0.5, "x": -27.99, "y": 1.7, "curve": 0.25, "c3": 0.75}, {"time": 0.6667, "x": -26.93, "y": -1.56, "curve": 0.25, "c3": 0.75}, - {"time": 0.8333, "x": -27.99, "y": 1.7, "curve": 0.317, "c3": 0.693}, {"time": 1.0833} + {"curve": "stepped"}, {"time": 0.0167, "x": 20.18, "y": 0.9, "curve": "stepped"}, {"time": 0.1667, "x": 20.18, "y": 0.9, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333} ] }, - "@leg-front-right": { + "@leg-back-left": { "translate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": -84.32, "y": 39.72, "curve": 0.317, "c3": 0.693}, {"time": 0.3333, "x": -82.71, "y": 34.75, "curve": 0.317, "c3": 0.693}, - {"time": 0.5, "x": -84.32, "y": 39.72, "curve": 0.317, "c3": 0.693}, {"time": 0.6667, "x": -82.71, "y": 34.75, "curve": 0.317, "c3": 0.693}, - {"time": 0.8333, "x": -84.32, "y": 39.72, "curve": 0.317, "c3": 0.693}, {"time": 1.0833} + {"curve": "stepped"}, {"time": 0.0167, "x": -0.94, "y": 4.51, "curve": "stepped"}, {"time": 0.1667, "x": -0.94, "y": 4.51, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3167} + ] + }, + "@pivot-main": {"translate": [{"curve": "stepped"}, {"time": 0.0167, "x": 20, "curve": "stepped"}, {"time": 0.3167, "x": 20, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.4167}]}, + "@leg-front-right": {"translate": [{"time": 0.1667, "curve": 0.62, "c4": 0.3}, {"time": 0.3167, "x": -2.11, "y": -28.46, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.4167}]}, + "tail": { + "rotate": [ + {"curve": "stepped"}, {"time": 0.0167, "angle": 19}, {"time": 0.1667, "angle": 23.91, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.3167, "angle": -21.75, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.4167} ] }, "leg-front-right-IK": { - "translate": [{"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": 40.32, "curve": "stepped"}, {"time": 0.8333, "x": 40.32, "curve": 0.317, "c3": 0.693}, {"time": 1.0833}] + "translate": [ + {"curve": "stepped"}, {"time": 0.0167, "x": 44.88, "y": 143.25}, {"time": 0.0833, "x": -0.81, "y": 175.84}, {"time": 0.1667, "x": 46.95, "y": 154.35, "curve": 0.306, "c4": 0.8}, + {"time": 0.3167} + ] }, "leg-front-left-IK": { - "translate": [{"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": 26.51, "curve": "stepped"}, {"time": 0.8333, "x": 26.51, "curve": 0.317, "c3": 0.693}, {"time": 1.0833}] + "translate": [ + {"curve": "stepped"}, {"time": 0.0167, "x": -4.98, "y": 86.81}, {"time": 0.0833, "x": 23.52, "y": 63.22}, {"time": 0.1667, "x": -2.69, "y": 90.83, "curve": 0.306, "c4": 0.8}, + {"time": 0.3167} + ] + } + } + }, + "2811142217": { + "slots": {"eyes": {"attachment": [{"time": 0.0167, "name": "eyes-shut"}, {"time": 0.1833, "name": "eyes-angry"}]}, "mouth": {"attachment": [{"time": 0.0167, "name": "mouth-bite"}]}}, + "bones": { + "tail": { + "rotate": [ + {"curve": "stepped"}, {"time": 0.0167, "angle": 35.35}, {"time": 0.1667, "angle": 50.35, "curve": 0.315, "c4": 0.8}, {"time": 0.3167, "angle": -21.75, "curve": 0, "c2": 0.1, "c3": 0.85}, + {"time": 0.4167} + ] + }, + "leg-front-right-IK": { + "translate": [{"curve": "stepped"}, {"time": 0.0167, "x": 74.76, "y": 322.04}, {"time": 0.1667, "x": 85.96, "y": 349.35, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3167}] + }, + "@pivot-back": { + "rotate": [ + {"curve": "stepped"}, {"time": 0.0167, "angle": -45}, {"time": 0.1667, "angle": -50, "curve": 0.464, "c4": 0.7}, {"time": 0.3167, "angle": 5.2, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.4167} + ], + "translate": [{"curve": "stepped"}, {"time": 0.0167, "x": 94.99, "y": -21}, {"time": 0.1667, "x": 107, "y": -60, "curve": 0.464, "c4": 0.7}, {"time": 0.3167}] + }, + "@shadow": { + "translate": [ + {"curve": "stepped"}, {"time": 0.0167, "x": 70.3, "curve": "stepped"}, {"time": 0.1667, "x": 70.3, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.3167, "x": 12.49, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.4167} + ], + "scale": [ + {"curve": "stepped"}, {"time": 0.0167, "x": 0.98, "y": 0.98}, {"time": 0.1667, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.3167, "x": 1.08, "y": 1.08, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.4167} + ] }, "leg-back-left-IK": { "translate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": -30.93, "y": 88.63, "curve": 0.617, "c4": 0.6}, {"time": 0.2667, "x": -62.81, "y": 72.23, "curve": 0, "c2": 0.4, "c3": 0.383}, - {"time": 0.35, "x": -28.19, "y": 96.83, "curve": 0.617, "c4": 0.6}, {"time": 0.45, "x": -62.81, "y": 72.23, "curve": 0, "c2": 0.4, "c3": 0.383}, - {"time": 0.55, "x": -28.19, "y": 96.83, "curve": 0.617, "c4": 0.6}, {"time": 0.6333, "x": -62.81, "y": 72.23, "curve": 0, "c2": 0.4, "c3": 0.383}, - {"time": 0.7333, "x": -28.19, "y": 96.83, "curve": 0.434, "c3": 0.739, "c4": 0.4}, {"time": 0.8333, "x": -56.92, "y": 76.7, "curve": 0.223, "c2": 0.33, "c3": 0.336}, {"time": 1.0833} + {"curve": "stepped"}, {"time": 0.0167, "x": 11.67, "y": 0.9, "curve": "stepped"}, {"time": 0.1667, "x": 11.67, "y": 0.9, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333} ] }, - "tail": { + "@leg-back-left": {"translate": [{"curve": "stepped"}, {"time": 0.0167, "x": -2.63, "y": 8.92}, {"time": 0.1667, "x": 18.61, "y": -8.3, "curve": 0.464, "c4": 0.7}, {"time": 0.3167}]}, + "@pivot-main": {"translate": [{"curve": "stepped"}, {"time": 0.0167, "x": 20, "curve": "stepped"}, {"time": 0.3167, "x": 20, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.4167}]}, + "leg-front-left-IK": { + "translate": [{"curve": "stepped"}, {"time": 0.0167, "x": -4.7, "y": 168.09}, {"time": 0.1667, "x": 6.72, "y": 174.87, "curve": 0.306, "c3": 0.695}, {"time": 0.3167}] + }, + "@leg-front-left": {"translate": [{"time": 0.1667, "curve": 0.62, "c4": 0.3}, {"time": 0.3167, "x": -1.1, "y": -14.87, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.4167}]}, + "@leg-front-right": {"translate": [{"time": 0.1667, "curve": 0.62, "c4": 0.3}, {"time": 0.3167, "x": -2.11, "y": -28.46, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.4167}]} + } + }, + "2896587887": { + "slots": { + "eyes": {"attachment": [{"time": 0.0167, "name": "eyes-shut"}, {"time": 0.5833, "name": "eyes-angry"}, {"time": 0.8333, "name": "eyes-shut"}]}, + "mouth": {"attachment": [{"time": 0.0167, "name": "mouth-bite"}, {"time": 0.6667, "name": "mouth-open"}]} + }, + "bones": { + "@pivot-back": { "rotate": [ - {"curve": 0, "c2": 0.3, "c3": 0.546}, {"time": 0.1667, "angle": 25.35, "curve": 0.317, "c3": 0.693}, {"time": 0.3333, "angle": 33.35, "curve": 0.317, "c3": 0.693}, - {"time": 0.5, "angle": 25.35, "curve": 0.317, "c3": 0.693}, {"time": 0.6667, "angle": 33.35, "curve": 0.317, "c3": 0.693}, - {"time": 0.9167, "angle": 25.35, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 1.0833} + {"curve": "stepped"}, {"time": 0.0167, "angle": -45}, {"time": 0.1, "angle": -85, "curve": "stepped"}, {"time": 0.6667, "angle": -85, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.8333, "angle": 6, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1} + ], + "translate": [ + {"curve": "stepped"}, {"time": 0.0167, "x": 94.99, "y": -21}, {"time": 0.05, "x": 256.42, "y": -60}, {"time": 0.1, "x": 408.25, "y": -188, "curve": "stepped"}, + {"time": 0.6667, "x": 408.25, "y": -188, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.8333, "y": 12.75, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1} ] }, "@shadow": { - "translate": [{"curve": 0, "c2": 0.3, "c3": 0.546}, {"time": 0.1667, "x": 32.73, "curve": "stepped"}, {"time": 0.8333, "x": 32.73, "curve": 0.317, "c3": 0.693}, {"time": 1.0833}], + "translate": [ + {"curve": "stepped"}, {"time": 0.0167, "x": 144.17}, {"time": 0.1, "x": 589.27, "curve": 0.313, "c3": 0.699}, {"time": 0.25, "x": 627.48, "curve": 0.313, "c3": 0.699}, + {"time": 0.4167, "x": 576.87, "curve": 0.313, "c3": 0.699}, {"time": 0.55, "x": 602.83, "curve": 0.313, "c3": 0.699}, {"time": 0.6667, "x": 576.87, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.8333} + ], "scale": [ - {"time": 0.1667, "curve": 0.317, "c3": 0.693}, {"time": 0.25, "x": 1.02, "y": 1.02, "curve": 0.317, "c3": 0.693}, {"time": 0.3333, "curve": 0.317, "c3": 0.693}, - {"time": 0.4167, "x": 1.02, "y": 1.02, "curve": 0.317, "c3": 0.693}, {"time": 0.5, "curve": 0.317, "c3": 0.693}, {"time": 0.5833, "x": 1.02, "y": 1.02, "curve": 0.317, "c3": 0.693}, - {"time": 0.6667, "curve": 0.317, "c3": 0.693}, {"time": 0.8333, "x": 1.02, "y": 1.02, "curve": 0.317, "c3": 0.693}, {"time": 1.0833} + {"curve": "stepped"}, {"time": 0.0167, "x": 0.92, "y": 0.92}, {"time": 0.1, "curve": 0, "c2": 0.22, "c3": 0.373, "c4": 0.57}, {"time": 0.25, "x": 1.04, "y": 1.04, "curve": "stepped"}, + {"time": 0.6667, "x": 1.04, "y": 1.04, "curve": 0.206, "c2": 0.38, "c3": 0.736}, {"time": 0.8333, "x": 1.1, "y": 1.1, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1} ] }, - "body-fur-01": { - "rotate": [ - {"angle": -2.09, "curve": 0.372, "c2": 0.48, "c3": 0.752}, {"time": 0.1333, "angle": 6.14, "curve": 0.25, "c3": 0.75}, {"time": 0.3, "angle": -20.35, "curve": 0.25, "c3": 0.75}, - {"time": 0.6333, "angle": 10.82, "curve": 0.25, "c3": 0.75}, {"time": 0.9667, "angle": -8.98, "curve": 0.252, "c3": 0.622, "c4": 0.48}, {"time": 1.0833, "angle": 10.51} + "@leg-back-left": {"translate": [{"curve": "stepped"}, {"time": 0.0167, "x": 6.4, "y": 0.19}, {"time": 0.1667}]}, + "leg-front-right-IK": { + "translate": [ + {"curve": "stepped"}, {"time": 0.0167, "x": 69.67, "y": 327.04}, {"time": 0.05, "x": 451.04, "y": 582.91}, {"time": 0.0833, "x": 787.85, "y": 470.29}, + {"time": 0.1, "x": 945.09, "y": 394.99, "curve": 0.313, "c3": 0.699}, {"time": 0.25, "x": 1086.85, "y": 338.86, "curve": 0.313, "c3": 0.699}, + {"time": 0.4167, "x": 921.41, "y": 410.91, "curve": 0.313, "c3": 0.699}, {"time": 0.5833, "x": 1028.37, "y": 385.44}, {"time": 0.6667, "x": 914.82, "y": 422.49}, + {"time": 0.7, "x": 413.58, "y": 458.44}, {"time": 0.75, "x": 45.46, "y": 287.09}, {"time": 0.7833, "x": -34.18, "y": 117.59}, {"time": 0.8333} ] }, - "body-fur-02": { + "tail": { "rotate": [ - {"angle": -7, "curve": 0.303, "c2": 0.24, "c3": 0.68, "c4": 0.71}, {"time": 0.1333, "angle": 3.08, "curve": 0.38, "c2": 0.59, "c3": 0.727}, {"time": 0.2, "angle": 6.14}, - {"time": 0.3667, "angle": -20.35, "curve": 0.25, "c3": 0.75}, {"time": 0.7, "angle": 10.82, "curve": 0.25, "c3": 0.75}, - {"time": 1.0333, "angle": -8.98, "curve": 0.284, "c3": 0.625, "c4": 0.38}, {"time": 1.0833, "angle": 13.84} + {"curve": "stepped"}, {"time": 0.0167, "angle": 35.35}, {"time": 0.1, "angle": -18.03, "curve": 0.313, "c3": 0.699}, {"time": 0.25, "angle": 12.69, "curve": 0.313, "c3": 0.699}, + {"time": 0.4167, "angle": -15.12, "curve": 0.313, "c3": 0.699}, {"time": 0.6667, "angle": 1.29, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.8333, "angle": 19.35, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1} ] }, - "body-fur-03": { - "rotate": [ - {"angle": 0.58, "curve": 0.381, "c2": 0.55, "c3": 0.742}, {"time": 0.1, "angle": 6.14, "curve": 0.25, "c3": 0.75}, {"time": 0.2667, "angle": -20.35, "curve": 0.25, "c3": 0.75}, - {"time": 0.6, "angle": 10.82, "curve": 0.25, "c3": 0.75}, {"time": 0.9333, "angle": -8.98, "curve": 0.245, "c3": 0.637, "c4": 0.56}, {"time": 1.0833, "angle": 5.54} + "leg-back-left-IK": { + "translate": [ + {"curve": "stepped"}, {"time": 0.0167, "x": -3.7, "y": 19.91}, {"time": 0.05, "x": -86.78, "y": 121.52}, {"time": 0.1, "x": 129.15, "y": 364.61, "curve": 0.313, "c3": 0.699}, + {"time": 0.25, "x": 262.18, "y": 406.7, "curve": 0.313, "c3": 0.699}, {"time": 0.4167, "x": 109.91, "y": 347.96, "curve": 0.313, "c3": 0.699}, {"time": 0.5833, "x": 216.28, "y": 393.95}, + {"time": 0.6667, "x": 118.81, "y": 360.02}, {"time": 0.7, "x": -121.03, "y": 41.31}, {"time": 0.75, "x": -95.31, "y": -47.01}, {"time": 0.7833, "x": 22.31, "y": -53.8}, {"time": 0.8333} ] }, - "body-fur-04": { - "rotate": [ - {"angle": -4.66, "curve": 0.327, "c2": 0.31, "c3": 0.685, "c4": 0.72}, {"time": 0.1, "angle": 3.08, "curve": 0.38, "c2": 0.59, "c3": 0.727}, - {"time": 0.1667, "angle": 6.14, "curve": 0.25, "c3": 0.75}, {"time": 0.3333, "angle": -20.35, "curve": 0.25, "c3": 0.75}, {"time": 0.6667, "angle": 10.82, "curve": 0.25, "c3": 0.75}, - {"time": 1, "angle": -8.98, "curve": 0.265, "c3": 0.618, "c4": 0.43}, {"time": 1.0833, "angle": 12.53} + "leg-front-left-IK": { + "translate": [ + {"curve": "stepped"}, {"time": 0.0167, "x": -5.8, "y": 177.99}, {"time": 0.05, "x": 106.35, "y": 306.87}, {"time": 0.0833, "x": 355.94, "y": 424.69}, + {"time": 0.1, "x": 515.46, "y": 408.14, "curve": 0.313, "c3": 0.699}, {"time": 0.25, "x": 536.35, "y": 423.87, "curve": 0.313, "c3": 0.699}, + {"time": 0.4167, "x": 492.39, "y": 405.73, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.6667, "x": 482.36, "y": 419.06}, {"time": 0.7, "x": 97.67, "y": 283.45}, + {"time": 0.75, "x": -12.16, "y": 45.82}, {"time": 0.7833, "x": -31.56, "y": 29.02}, {"time": 0.8333} ] }, - "body-fur-05": { + "@pivot-center": { "rotate": [ - {"angle": 3.08, "curve": 0.38, "c2": 0.59, "c3": 0.727}, {"time": 0.0667, "angle": 6.14, "curve": 0.25, "c3": 0.75}, {"time": 0.2333, "angle": -20.35, "curve": 0.25, "c3": 0.75}, - {"time": 0.5667, "angle": 10.82, "curve": 0.25, "c3": 0.75}, {"time": 0.9, "angle": -8.98, "curve": 0.242, "c3": 0.663, "c4": 0.65}, {"time": 1.0833, "angle": 6.86} + {"time": 0.0167, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.1, "angle": -95, "curve": 0.313, "c3": 0.699}, {"time": 0.25, "angle": -105, "curve": 0.313, "c3": 0.699}, + {"time": 0.4167, "angle": -90, "curve": 0.313, "c3": 0.699}, {"time": 0.55, "angle": -100, "curve": 0.313, "c3": 0.699}, + {"time": 0.6667, "angle": -90, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.8333} + ], + "translate": [ + {"time": 0.1, "curve": 0.313, "c3": 0.699}, {"time": 0.25, "x": 1.68, "y": 38.2, "curve": 0.313, "c3": 0.699}, {"time": 0.4167, "x": -2.73, "y": -12.21, "curve": 0.313, "c3": 0.699}, + {"time": 0.55, "x": -0.47, "y": 13.65, "curve": 0.313, "c3": 0.699}, {"time": 0.6667, "x": -2.73, "y": -12.21, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.8333} ] }, - "body-fur-06": { - "rotate": [ - {"angle": -2.03, "curve": 0.34, "c2": 0.35, "c3": 0.684, "c4": 0.72}, {"time": 0.0667, "angle": 3.08, "curve": 0.38, "c2": 0.59, "c3": 0.727}, {"time": 0.1333, "angle": 6.14}, - {"time": 0.3, "angle": -20.35, "curve": 0.25, "c3": 0.75}, {"time": 0.6333, "angle": 10.82, "curve": 0.25, "c3": 0.75}, - {"time": 0.9667, "angle": -8.98, "curve": 0.252, "c3": 0.622, "c4": 0.48}, {"time": 1.0833, "angle": 13.33} + "@pivot-main": { + "translate": [{"time": 0.6667, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.75, "y": 150, "curve": 0.315, "c4": 0.8}, {"time": 0.8333}], + "scale": [ + {"time": 0.1, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "y": 0.93, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "curve": "stepped"}, + {"time": 0.5667, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.65, "y": 0.7, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.7333, "curve": "stepped"}, + {"time": 0.8333, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.9167, "y": 0.98, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1} ] }, - "body-fur-07": { + "@leg-front-right": {"translate": [{"time": 0.75, "curve": 0.306, "c4": 0.8}, {"time": 0.8333, "x": -2.23, "y": -25.27, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1}]} + } + }, + "1181032275": { + "slots": {"eyes": {"attachment": [{"time": 0.0167, "name": "eyes-shut"}, {"time": 0.3, "name": "eyes-angry"}]}, "mouth": {"attachment": [{"time": 0.0167, "name": "mouth-bite"}]}}, + "bones": { + "@pivot-back": { "rotate": [ - {"angle": 5.09, "curve": 0.366, "c2": 0.63, "c3": 0.703}, {"time": 0.0333, "angle": 6.14, "curve": 0.25, "c3": 0.75}, {"time": 0.2, "angle": -20.35, "curve": 0.25, "c3": 0.75}, - {"time": 0.5333, "angle": 10.82, "curve": 0.25, "c3": 0.75}, {"time": 0.8667, "angle": -8.98, "curve": 0.244, "c3": 0.7, "c4": 0.79}, {"time": 1.0833, "angle": 2.91} + {"curve": "stepped"}, {"time": 0.0167, "angle": 8}, {"time": 0.2333, "angle": 10, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "angle": -5, "curve": 0.315, "c4": 0.8}, + {"time": 0.4833, "angle": 5, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5833} + ], + "translate": [ + {"curve": "stepped"}, {"time": 0.0167, "x": 29.16, "y": 6.28}, {"time": 0.2667, "x": 18.48, "y": 18.85, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.3833, "x": -1.17, "y": 18.85, "curve": 0.315, "c4": 0.8}, {"time": 0.4833} ] }, - "body-fur-08": { - "rotate": [ - {"angle": 1.85, "curve": 0.382, "c2": 0.57, "c3": 0.735}, {"time": 0.0833, "angle": 6.14, "curve": 0.25, "c3": 0.75}, {"time": 0.25, "angle": -20.35, "curve": 0.25, "c3": 0.75}, - {"time": 0.5833, "angle": 10.82, "curve": 0.25, "c3": 0.75}, {"time": 0.9167, "angle": -8.98, "curve": 0.243, "c3": 0.649, "c4": 0.6}, {"time": 1.0833, "angle": -0.91} + "@shadow": { + "translate": [ + {"curve": "stepped"}, {"time": 0.0167, "x": 33.22}, {"time": 0.2667, "x": 61.08, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3833, "x": 9.02, "curve": 0.315, "c4": 0.8}, + {"time": 0.4833} + ], + "scale": [ + {"curve": "stepped"}, {"time": 0.0167, "x": 1.1, "y": 1.1, "curve": "stepped"}, {"time": 0.2667, "x": 1.1, "y": 1.1, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.3833, "x": 0.98, "y": 0.98, "curve": 0.315, "c4": 0.8}, {"time": 0.4833, "x": 1.1, "y": 1.1, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5833} ] }, - "body-fur-09": { - "rotate": [ - {"angle": -3.36, "curve": 0.335, "c2": 0.34, "c3": 0.685, "c4": 0.72}, {"time": 0.0833, "angle": 3.08, "curve": 0.38, "c2": 0.59, "c3": 0.727}, {"time": 0.15, "angle": 6.14}, - {"time": 0.3167, "angle": -20.35, "curve": 0.25, "c3": 0.75}, {"time": 0.65, "angle": 10.82, "curve": 0.25, "c3": 0.75}, - {"time": 0.9833, "angle": -8.98, "curve": 0.258, "c3": 0.619, "c4": 0.45}, {"time": 1.0833, "angle": 6.86} + "@pivot-main": { + "translate": [ + {"curve": "stepped"}, {"time": 0.0167, "x": 33.18}, {"time": 0.2667, "x": 61.52, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3833, "x": 20.27, "y": 27.91, "curve": 0.315, "c4": 0.8}, + {"time": 0.4833} ] }, - "body-fur-10": { + "tail": { "rotate": [ - {"angle": 4.17, "curve": 0.375, "c2": 0.62, "c3": 0.716}, {"time": 0.05, "angle": 6.14, "curve": 0.25, "c3": 0.75}, {"time": 0.2167, "angle": -20.35, "curve": 0.25, "c3": 0.75}, - {"time": 0.55, "angle": 10.82, "curve": 0.25, "c3": 0.75}, {"time": 0.8833, "angle": -8.98, "curve": 0.243, "c3": 0.68, "c4": 0.71}, {"time": 1.0833, "angle": 0.34} + {"curve": "stepped"}, {"time": 0.0167, "angle": -18.65}, {"time": 0.2333, "angle": -21.65, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.3333, "angle": -13.3, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.45, "angle": 12.04, "curve": 0.154, "c4": 0.9}, + {"time": 0.5167, "angle": -9.14, "curve": 0.161, "c3": 0.854}, {"time": 0.5833} ] }, - "body-fur-11": { - "rotate": [ - {"angle": 1.85, "curve": 0.382, "c2": 0.57, "c3": 0.735}, {"time": 0.0833, "angle": 6.14, "curve": 0.25, "c3": 0.75}, {"time": 0.25, "angle": -20.35, "curve": 0.25, "c3": 0.75}, - {"time": 0.5833, "angle": 10.82, "curve": 0.25, "c3": 0.75}, {"time": 0.9167, "angle": -8.98, "curve": 0.243, "c3": 0.649, "c4": 0.6}, {"time": 1.0833, "angle": 4.23} + "leg-front-right-IK": { + "translate": [ + {"time": 0.2333, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "x": 22.26, "y": 54.13}, {"time": 0.3833, "x": 28.04, "y": 49.32, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.45} ] }, - "body-fur-12": { - "rotate": [ - {"angle": -0.75, "curve": 0.378, "c2": 0.52, "c3": 0.748}, {"time": 0.1167, "angle": 6.14, "curve": 0.25, "c3": 0.75}, {"time": 0.2833, "angle": -20.35, "curve": 0.25, "c3": 0.75}, - {"time": 0.6167, "angle": 10.82, "curve": 0.25, "c3": 0.75}, {"time": 0.95, "angle": -8.98, "curve": 0.248, "c3": 0.628, "c4": 0.52}, {"time": 1.0833, "angle": 8.12} + "@leg-front-left": { + "translate": [ + {"curve": "stepped"}, {"time": 0.0167, "x": -0.45, "y": -3.93}, {"time": 0.2333, "x": -0.82, "y": -2.61}, {"time": 0.3333, "x": -5.6, "y": -0.89, "curve": 0.617, "c4": 0.6}, + {"time": 0.45, "x": -1.09, "y": -14.69, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5833} ] }, - "body-fur-13": { - "rotate": [ - {"angle": -3.42, "curve": 0.363, "c2": 0.44, "c3": 0.755}, {"time": 0.15, "angle": 6.14, "curve": 0.25, "c3": 0.75}, {"time": 0.3167, "angle": -20.35, "curve": 0.25, "c3": 0.75}, - {"time": 0.65, "angle": 10.82, "curve": 0.25, "c3": 0.75}, {"time": 0.9833, "angle": -8.98, "curve": 0.258, "c3": 0.619, "c4": 0.45}, {"time": 1.0833, "angle": 11.59} + "leg-back-left-IK": { + "translate": [ + {"curve": "stepped"}, {"time": 0.0167, "x": 50.74, "y": 0.9, "curve": "stepped"}, {"time": 0.2, "x": 50.74, "y": 0.9, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.25, "x": 12.5, "y": 6.45, "curve": 0, "c2": 0.8, "c3": 0.15}, {"time": 0.3667, "x": 5.47, "y": 26.12, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.4833} ] }, - "body-fur-14": { - "rotate": [ - {"angle": -7.96, "curve": 0.287, "c2": 0.18, "c3": 0.676, "c4": 0.7}, {"time": 0.15, "angle": 3.08, "curve": 0.38, "c2": 0.59, "c3": 0.727}, {"time": 0.2167, "angle": 6.14}, - {"time": 0.3833, "angle": -20.35, "curve": 0.25, "c3": 0.75}, {"time": 0.7167, "angle": 10.82, "curve": 0.25, "c3": 0.75}, - {"time": 1.05, "angle": -8.98, "curve": 0.297, "c3": 0.634, "c4": 0.37}, {"time": 1.0833, "angle": 13.33} + "@leg-front-right": { + "translate": [ + {"time": 0.0167}, {"time": 0.3333, "x": -7.53, "y": 2.3, "curve": 0, "c2": 0.1, "c3": 0.853}, {"time": 0.45, "x": 0.15, "y": -4.26, "curve": 0.159, "c3": 0.853}, + {"time": 0.4833, "x": -2.34, "y": -28.14, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5833} ] }, - "body-fur-15": { - "rotate": [ - {"angle": -5.92, "curve": 0.337, "c2": 0.35, "c3": 0.758}, {"time": 0.1833, "angle": 6.14, "curve": 0.25, "c3": 0.75}, {"time": 0.35, "angle": -20.35, "curve": 0.25, "c3": 0.75}, - {"time": 0.6833, "angle": 10.82, "curve": 0.25, "c3": 0.75}, {"time": 1.0167, "angle": -8.98, "curve": 0.273, "c3": 0.62, "c4": 0.41}, {"time": 1.0833, "angle": 13.33} + "@leg-back-left": { + "translate": [ + {"curve": "stepped"}, {"time": 0.0167, "x": 18.74, "y": 14.65, "curve": "stepped"}, {"time": 0.1667, "x": 18.74, "y": 14.65, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.4833} ] }, - "body-fur-16": { - "rotate": [ - {"angle": -7.93, "curve": 0.3, "c2": 0.21, "c3": 0.756}, {"time": 0.2167, "angle": 6.14, "curve": 0.25, "c3": 0.75}, {"time": 0.3833, "angle": -20.35, "curve": 0.25, "c3": 0.75}, - {"time": 0.7167, "angle": 10.82, "curve": 0.25, "c3": 0.75}, {"time": 1.05, "angle": -8.98, "curve": 0.297, "c3": 0.634, "c4": 0.37}, {"time": 1.0833, "angle": 13.84} + "leg-front-left-IK": { + "translate": [ + {"curve": "stepped"}, {"time": 0.0167, "x": 38.52}, {"time": 0.2333, "x": 38.87, "curve": 0, "c2": 0.3, "c3": 0.54}, {"time": 0.3333, "x": 26.12, "y": 38.71}, + {"time": 0.3833, "x": 12.33, "y": 29.93, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.45} ] } - }, - "drawOrder": [{"time": 0.0667, "offsets": [{"slot": "leg-back-left", "offset": 2}]}, {"time": 0.9}] + } }, - "1772223510": { + "483383159": { "slots": { - "eyes": {"attachment": [{"time": 0.05, "name": "eyes-happy"}, {"time": 2.0833, "name": "eyes"}]}, - "mouth": {"attachment": [{"time": 0.05, "name": "mouth-bite"}, {"time": 2.0833, "name": "mouth"}]} + "eyes": {"attachment": [{"time": 0.0167, "name": "eyes-angry"}, {"time": 0.25, "name": "eyes-shut"}, {"time": 0.3, "name": "eyes-angry"}]}, + "mouth": {"attachment": [{"time": 0.0167, "name": "mouth-bite"}, {"time": 0.3, "name": "mouth-open"}]} }, "bones": { "@pivot-back": { "rotate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "angle": 6, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.4833, "angle": 7, "curve": 0.317, "c3": 0.693}, - {"time": 0.55, "angle": 6.5, "curve": 0.317, "c3": 0.693}, {"time": 0.6167, "angle": 7, "curve": 0.317, "c3": 0.693}, {"time": 0.6833, "angle": 6.5, "curve": 0, "c2": 0.1, "c3": 0.85}, - {"time": 0.9167, "angle": 8, "curve": 0.317, "c3": 0.693}, {"time": 1.3333, "angle": -7, "curve": 0.461, "c3": 0.543}, {"time": 1.9167, "angle": -9, "curve": 0.154, "c4": 0.9}, - {"time": 2.1667, "angle": 3, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 2.3333} + {"curve": "stepped"}, {"time": 0.0167, "angle": 7.5}, {"time": 0.2333, "angle": 10, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "angle": -5, "curve": 0.315, "c4": 0.8}, + {"time": 0.4833, "angle": 5, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5833} ], "translate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "x": 7, "y": 6, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.9167, "x": 11, "y": 10, "curve": 0.317, "c3": 0.693}, - {"time": 1.3333, "x": -45, "y": -14, "curve": 0.461, "c3": 0.543}, {"time": 1.9167, "x": -45, "y": -18, "curve": 0.154, "c4": 0.9}, - {"time": 2.1667, "y": 4.23, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 2.3333} - ] - }, - "@leg-front-right": { - "translate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "x": -2.08, "y": -23.58, "curve": "stepped"}, {"time": 0.9167, "x": -2.08, "y": -23.58, "curve": 0.317, "c3": 0.693}, - {"time": 1.3333, "x": -56.51, "y": 25.21, "curve": 0.461, "c3": 0.543}, {"time": 1.9167, "x": -57.58, "y": 31.33, "curve": 0.154, "c4": 0.9}, - {"time": 2.1667, "x": -1.95, "y": -12.95, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 2.3333} + {"curve": "stepped"}, {"time": 0.0167, "x": 29.16, "y": 18.85, "curve": "stepped"}, {"time": 0.2667, "x": 29.16, "y": 18.85, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.3833, "x": -1.17, "y": 18.85, "curve": 0.315, "c4": 0.8}, {"time": 0.4833} ] }, - "@leg-front-left": { + "leg-back-left-IK": { "translate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "x": -0.92, "y": -10.48, "curve": "stepped"}, {"time": 0.9167, "x": -0.92, "y": -10.48, "curve": 0.317, "c3": 0.693}, - {"time": 1.3333, "x": -48.7, "y": 5.49, "curve": 0.461, "c3": 0.543}, {"time": 1.9167, "x": -49.1, "y": 7.78, "curve": 0.154, "c4": 0.9}, - {"time": 2.1667, "x": -0.87, "y": -4.98, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 2.3333} + {"curve": "stepped"}, {"time": 0.0167, "x": 50.74, "y": 0.9, "curve": "stepped"}, {"time": 0.2, "x": 50.74, "y": 0.9, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.25, "x": 12.5, "y": 6.45, "curve": 0, "c2": 0.8, "c3": 0.15}, {"time": 0.3667, "x": 5.47, "y": 26.12, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.4833} ] }, "@leg-back-left": { "translate": [ - {"time": 0.25}, {"time": 0.9167, "x": 0.52, "y": 4.2, "curve": 0.317, "c3": 0.693}, {"time": 1.3333, "x": -2.48, "y": -1.61, "curve": "stepped"}, - {"time": 1.9167, "x": -2.48, "y": -1.61, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 2.1667} + {"curve": "stepped"}, {"time": 0.0167, "x": 18.74, "y": 14.65, "curve": "stepped"}, {"time": 0.1667, "x": 18.74, "y": 14.65, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.4833} ] }, - "leg-front-left-IK": { + "@leg-front-left": { "translate": [ - {"time": 0.9167, "curve": 0.317, "c3": 0.693}, {"time": 1.3333, "x": -11.56, "curve": "stepped"}, {"time": 1.9167, "x": -11.56, "curve": 0.154, "c4": 0.9}, {"time": 2.1667} + {"curve": "stepped"}, {"time": 0.0167, "x": -0.45, "y": -3.93}, {"time": 0.2333, "x": -0.82, "y": -2.61}, {"time": 0.3333, "x": -5.6, "y": -0.89, "curve": 0.617, "c4": 0.6}, + {"time": 0.45, "x": -1.09, "y": -14.69, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5833} ] }, - "leg-front-right-IK": { - "translate": [{"time": 0.9167, "curve": 0.317, "c3": 0.693}, {"time": 1.3333, "x": -5.65, "curve": "stepped"}, {"time": 1.9167, "x": -5.65, "curve": 0.154, "c4": 0.9}, {"time": 2.1667}] - }, - "leg-back-left-IK": { + "@leg-front-right": { "translate": [ - {"time": 0.9167, "curve": 0.317, "c3": 0.693}, {"time": 1.3333, "x": -33.62, "curve": "stepped"}, {"time": 1.9167, "x": -33.62, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 2.1667} - ] - }, - "tail": { - "rotate": [ - {"curve": 0, "c2": 0.3, "c3": 0.546}, {"time": 0.25, "angle": 20.35, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.4167, "angle": 15.85, "curve": 0.317, "c3": 0.693}, - {"time": 0.4833, "angle": 17.35, "curve": 0.317, "c3": 0.693}, {"time": 0.55, "angle": 15.85, "curve": 0.317, "c3": 0.693}, {"time": 0.6167, "angle": 18.35, "curve": 0.317, "c3": 0.693}, - {"time": 0.6833, "angle": 16.85, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.9167, "angle": 18.35, "curve": 0.317, "c3": 0.693}, - {"time": 1.3333, "angle": -9.65, "curve": 0.461, "c3": 0.543}, {"time": 1.9167, "angle": -13.65, "curve": 0.154, "c4": 0.9}, - {"time": 2.1667, "angle": 10.35, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 2.3333} - ] - }, - "body-fur-16": { - "rotate": [ - {"angle": 3.47, "curve": 0.38, "c2": 0.53, "c3": 0.745}, {"time": 0.2167, "curve": 0.25, "c3": 0.75}, {"time": 0.55, "angle": 26.02, "curve": 0.25, "c3": 0.75}, - {"time": 1.05, "angle": -3.84, "curve": 0.25, "c3": 0.75}, {"time": 1.2167, "angle": 5.97, "curve": 0.25, "c3": 0.75}, {"time": 1.55, "angle": -24.66, "curve": 0.25, "c3": 0.75}, - {"time": 2.05, "angle": 8.43, "curve": 0.246, "c3": 0.633, "c4": 0.54}, {"time": 2.3333, "angle": 13.84} + {"time": 0.0167}, {"time": 0.3333, "x": -7.53, "y": 2.3, "curve": 0, "c2": 0.1, "c3": 0.853}, {"time": 0.45, "x": 0.15, "y": -4.26, "curve": 0.159, "c3": 0.853}, + {"time": 0.4833, "x": -2.34, "y": -28.14, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5833} ] }, - "body-fur-15": { - "rotate": [ - {"angle": 2.74, "curve": 0.382, "c2": 0.56, "c3": 0.739}, {"time": 0.1833, "curve": 0.25, "c3": 0.75}, {"time": 0.5167, "angle": 26.02, "curve": 0.25, "c3": 0.75}, - {"time": 1.0167, "angle": -3.84, "curve": 0.25, "c3": 0.75}, {"time": 1.1833, "angle": 5.97, "curve": 0.25, "c3": 0.75}, {"time": 1.5167, "angle": -24.66, "curve": 0.25, "c3": 0.75}, - {"time": 2.0167, "angle": 8.43, "curve": 0.244, "c3": 0.643, "c4": 0.58}, {"time": 2.3333, "angle": 13.33} + "@pivot-main": { + "translate": [ + {"curve": "stepped"}, {"time": 0.0167, "x": 33.18}, {"time": 0.2667, "x": 61.52, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3833, "x": 20.27, "y": 27.91, "curve": 0.315, "c4": 0.8}, + {"time": 0.4833} ] }, - "body-fur-14": { - "rotate": [ - {"angle": 3.43, "curve": 0.357, "c2": 0.42, "c3": 0.705, "c4": 0.8}, {"time": 0.15, "angle": 0.59, "curve": 0.366, "c2": 0.63, "c3": 0.703}, {"time": 0.2167}, - {"time": 0.55, "angle": 26.02, "curve": 0.25, "c3": 0.75}, {"time": 1.05, "angle": -3.84, "curve": 0.25, "c3": 0.75}, {"time": 1.2167, "angle": 5.97, "curve": 0.25, "c3": 0.75}, - {"time": 1.55, "angle": -24.66, "curve": 0.25, "c3": 0.75}, {"time": 2.05, "angle": 8.43, "curve": 0.246, "c3": 0.633, "c4": 0.54}, {"time": 2.3333, "angle": 13.33} + "leg-front-right-IK": { + "translate": [ + {"time": 0.2333, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "x": 22.26, "y": 54.13}, {"time": 0.3833, "x": 28.04, "y": 49.32, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.45} ] }, - "body-fur-13": { - "rotate": [ - {"angle": 2.04, "curve": 0.382, "c2": 0.58, "c3": 0.731}, {"time": 0.15}, {"time": 0.4833, "angle": 26.02, "curve": 0.25, "c3": 0.75}, - {"time": 0.9833, "angle": -3.84, "curve": 0.25, "c3": 0.75}, {"time": 1.15, "angle": 5.97, "curve": 0.25, "c3": 0.75}, {"time": 1.4833, "angle": -24.66, "curve": 0.25, "c3": 0.75}, - {"time": 1.9833, "angle": 8.43, "curve": 0.243, "c3": 0.655, "c4": 0.63}, {"time": 2.3333, "angle": 11.59} + "leg-front-left-IK": { + "translate": [ + {"curve": "stepped"}, {"time": 0.0167, "x": 38.52}, {"time": 0.2333, "x": 38.87, "curve": 0, "c2": 0.3, "c3": 0.54}, {"time": 0.3333, "x": 26.12, "y": 38.71}, + {"time": 0.3833, "x": 12.33, "y": 29.93, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.45} ] }, - "body-fur-12": { - "rotate": [ - {"angle": 1.4, "curve": 0.378, "c2": 0.61, "c3": 0.722}, {"time": 0.1167, "curve": 0.25, "c3": 0.75}, {"time": 0.45, "angle": 26.02, "curve": 0.25, "c3": 0.75}, - {"time": 0.95, "angle": -3.84, "curve": 0.25, "c3": 0.75}, {"time": 1.1167, "angle": 5.97, "curve": 0.25, "c3": 0.75}, {"time": 1.45, "angle": -24.66, "curve": 0.25, "c3": 0.75}, - {"time": 1.95, "angle": 8.43, "curve": 0.242, "c3": 0.671, "c4": 0.68}, {"time": 2.3333, "angle": 8.12} + "@shadow": { + "translate": [ + {"curve": "stepped"}, {"time": 0.0167, "x": 33.22}, {"time": 0.2667, "x": 61.08, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3833, "x": 9.02, "curve": 0.315, "c4": 0.8}, + {"time": 0.4833} + ], + "scale": [ + {"curve": "stepped"}, {"time": 0.0167, "x": 1.1, "y": 1.1, "curve": "stepped"}, {"time": 0.2667, "x": 1.1, "y": 1.1, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.3833, "x": 0.98, "y": 0.98, "curve": 0.315, "c4": 0.8}, {"time": 0.4833, "x": 1.1, "y": 1.1, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5833} ] }, - "body-fur-11": { + "tail": { "rotate": [ - {"angle": 0.81, "curve": 0.371, "c2": 0.62, "c3": 0.71}, {"time": 0.0833, "curve": 0.25, "c3": 0.75}, {"time": 0.4167, "angle": 26.02, "curve": 0.25, "c3": 0.75}, - {"time": 0.9167, "angle": -3.84, "curve": 0.25, "c3": 0.75}, {"time": 1.0833, "angle": 5.97, "curve": 0.25, "c3": 0.75}, {"time": 1.4167, "angle": -24.66, "curve": 0.25, "c3": 0.75}, - {"time": 1.9167, "angle": 8.43, "curve": 0.243, "c3": 0.689, "c4": 0.75}, {"time": 2.3333, "angle": 4.23} + {"curve": "stepped"}, {"time": 0.0167, "angle": -17.67}, {"time": 0.2333, "angle": -21.07, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.3167, "angle": -20.71, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.45, "angle": 25.83, "curve": 0.154, "c4": 0.9}, + {"time": 0.5167, "angle": -14.3, "curve": 0.161, "c3": 0.854}, {"time": 0.5833} ] - }, - "body-fur-10": { + } + } + }, + "578977380": { + "slots": { + "eyes": {"attachment": [{"time": 0.05, "name": "eyes-angry"}]}, + "mouth": {"attachment": [{"time": 0.05, "name": "mouth-bite"}, {"time": 0.2833, "name": "mouth-open"}, {"time": 0.4667, "name": "mouth-bite"}]} + }, + "bones": { + "@pivot-back": { "rotate": [ - {"angle": 0.36, "curve": 0.36, "c2": 0.64, "c3": 0.695}, {"time": 0.05, "curve": 0.25, "c3": 0.75}, {"time": 0.3833, "angle": 26.02, "curve": 0.25, "c3": 0.75}, - {"time": 0.8833, "angle": -3.84, "curve": 0.25, "c3": 0.75}, {"time": 1.05, "angle": 5.97, "curve": 0.25, "c3": 0.75}, {"time": 1.3833, "angle": -24.66, "curve": 0.25, "c3": 0.75}, - {"time": 1.8833, "angle": 8.43, "curve": 0.245, "c3": 0.711, "c4": 0.83}, {"time": 2.3333, "angle": 0.34} + {"curve": 0, "c2": 0.4, "c3": 0.383}, {"time": 0.15, "angle": 4, "curve": 0, "c2": 0.2, "c3": 0.851}, {"time": 0.2833, "angle": 7}, + {"time": 0.4167, "angle": 7.5, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5, "angle": 4, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.5833, "angle": 6, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.75} + ], + "translate": [ + {"curve": 0, "c2": 0.4, "c3": 0.383}, {"time": 0.25, "x": 25, "curve": 1, "c2": -0.1, "c4": 0}, {"time": 0.2833, "x": -136, "y": 25.56}, + {"time": 0.4167, "x": -153.19, "y": 25.56, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5, "x": -176.94, "curve": "stepped"}, + {"time": 0.5833, "x": -176.94, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.75} ] }, - "body-fur-09": { - "rotate": [ - {"angle": 2.01, "curve": 0.355, "c2": 0.42, "c3": 0.693, "c4": 0.77}, {"time": 0.0833, "angle": 0.59, "curve": 0.366, "c2": 0.63, "c3": 0.703}, {"time": 0.15}, - {"time": 0.4833, "angle": 26.02, "curve": 0.25, "c3": 0.75}, {"time": 0.9833, "angle": -3.84, "curve": 0.25, "c3": 0.75}, {"time": 1.15, "angle": 5.97, "curve": 0.25, "c3": 0.75}, - {"time": 1.4833, "angle": -24.66, "curve": 0.25, "c3": 0.75}, {"time": 1.9833, "angle": 8.43, "curve": 0.243, "c3": 0.655, "c4": 0.63}, {"time": 2.3333, "angle": 6.86} + "@pivot-main": {"translate": [{"time": 0.5833, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.6667, "y": 45.22, "curve": 0.315, "c4": 0.8}, {"time": 0.75}]}, + "@leg-front-left": { + "translate": [ + {"curve": 0, "c2": 0.4, "c3": 0.383}, {"time": 0.25, "x": -0.72, "y": -6.78}, {"time": 0.5833, "x": -1.48, "y": -14.61, "curve": 0, "c2": 0.17, "c3": 0.45, "c4": 0.61}, + {"time": 0.65, "x": -0.39, "y": 5.91, "curve": 0.345, "c2": 0.53, "c3": 0.751}, {"time": 0.75} ] }, - "body-fur-08": { - "rotate": [ - {"angle": 0.81, "curve": 0.371, "c2": 0.62, "c3": 0.71}, {"time": 0.0833}, {"time": 0.4167, "angle": 26.02, "curve": 0.25, "c3": 0.75}, - {"time": 0.9167, "angle": -3.84, "curve": 0.25, "c3": 0.75}, {"time": 1.0833, "angle": 5.97, "curve": 0.25, "c3": 0.75}, {"time": 1.4167, "angle": -24.66, "curve": 0.25, "c3": 0.75}, - {"time": 1.9167, "angle": 8.43, "curve": 0.243, "c3": 0.689, "c4": 0.75}, {"time": 2.3333, "angle": -0.91} + "@leg-front-right": { + "translate": [ + {"curve": 0, "c2": 0.39, "c3": 0.387}, {"time": 0.25, "x": -2.88, "y": -28.54, "curve": "stepped"}, + {"time": 0.5833, "x": -2.88, "y": -28.54, "curve": 0, "c2": 0.17, "c3": 0.45, "c4": 0.61}, {"time": 0.65, "x": -0.83, "y": 1.57, "curve": 0.345, "c2": 0.53, "c3": 0.751}, {"time": 0.75} ] }, - "body-fur-07": { - "rotate": [ - {"angle": 0.19, "curve": 0.352, "c2": 0.65, "c3": 0.687}, {"time": 0.0333, "curve": 0.25, "c3": 0.75}, {"time": 0.3667, "angle": 26.02, "curve": 0.25, "c3": 0.75}, - {"time": 0.8667, "angle": -3.84, "curve": 0.25, "c3": 0.75}, {"time": 1.0333, "angle": 5.97, "curve": 0.25, "c3": 0.75}, {"time": 1.3667, "angle": -24.66, "curve": 0.25, "c3": 0.75}, - {"time": 1.8667, "angle": 8.43, "curve": 0.246, "c3": 0.723, "c4": 0.88}, {"time": 2.3333, "angle": 2.91} + "leg-front-left-IK": { + "translate": [ + {"curve": 0, "c2": 0.39, "c3": 0.387}, {"time": 0.25, "x": 19.12, "curve": 0.702, "c4": 0.2}, {"time": 0.2833, "x": -43.29, "y": 59.07}, + {"time": 0.4167, "x": -61.19, "y": 52.81, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5, "x": -184.33, "y": 7.89, "curve": "stepped"}, + {"time": 0.5833, "x": -184.33, "y": 7.89, "curve": 0, "c2": 0.17, "c3": 0.45, "c4": 0.61}, {"time": 0.65, "x": -105.91, "y": -2.82, "curve": 0.345, "c2": 0.53, "c3": 0.751}, + {"time": 0.75} ] }, - "body-fur-06": { - "rotate": [ - {"angle": 1.69, "curve": 0.352, "c2": 0.41, "c3": 0.688, "c4": 0.76}, {"time": 0.0667, "angle": 0.59, "curve": 0.366, "c2": 0.63, "c3": 0.703}, {"time": 0.1333}, - {"time": 0.4667, "angle": 26.02, "curve": 0.25, "c3": 0.75}, {"time": 0.9667, "angle": -3.84, "curve": 0.25, "c3": 0.75}, {"time": 1.1333, "angle": 5.97, "curve": 0.25, "c3": 0.75}, - {"time": 1.4667, "angle": -24.66, "curve": 0.25, "c3": 0.75}, {"time": 1.9667, "angle": 8.43, "curve": 0.242, "c3": 0.663, "c4": 0.65}, {"time": 2.3333, "angle": 13.33} + "leg-front-right-IK": { + "translate": [ + {"time": 0.25, "curve": 0.702, "c4": 0.2}, {"time": 0.2833, "x": -27.95, "y": 28.32}, {"time": 0.4167, "x": -40.48, "y": 34.59, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.5, "x": -191.61, "curve": "stepped"}, {"time": 0.5833, "x": -191.61, "curve": 0, "c2": 0.17, "c3": 0.45, "c4": 0.61}, + {"time": 0.65, "x": -103, "y": 4.15, "curve": 0.345, "c2": 0.53, "c3": 0.751}, {"time": 0.75} ] }, - "body-fur-05": { - "rotate": [ - {"angle": 0.59, "curve": 0.366, "c2": 0.63, "c3": 0.703}, {"time": 0.0667}, {"time": 0.4, "angle": 26.02, "curve": 0.25, "c3": 0.75}, - {"time": 0.9, "angle": -3.84, "curve": 0.25, "c3": 0.75}, {"time": 1.0667, "angle": 5.97, "curve": 0.25, "c3": 0.75}, {"time": 1.4, "angle": -24.66, "curve": 0.25, "c3": 0.75}, - {"time": 1.9, "angle": 8.43, "curve": 0.244, "c3": 0.7, "c4": 0.79}, {"time": 2.3333, "angle": 6.86} + "leg-back-left-IK": { + "translate": [ + {"time": 0.2667, "curve": 0.461, "c4": 0.4}, {"time": 0.2833, "x": -70.51, "y": 98.54}, {"time": 0.4167, "x": -70.51, "y": 101.95, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.5, "x": -189.32, "curve": "stepped"}, {"time": 0.5833, "x": -189.32, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.75} ] }, - "body-fur-04": { + "@pivot-center": { "rotate": [ - {"angle": 2.35, "curve": 0.356, "c2": 0.42, "c3": 0.696, "c4": 0.78}, {"time": 0.1, "angle": 0.59, "curve": 0.366, "c2": 0.63, "c3": 0.703}, {"time": 0.1667}, - {"time": 0.5, "angle": 26.02, "curve": 0.25, "c3": 0.75}, {"time": 1, "angle": -3.84, "curve": 0.25, "c3": 0.75}, {"time": 1.1667, "angle": 5.97, "curve": 0.25, "c3": 0.75}, - {"time": 1.5, "angle": -24.66, "curve": 0.25, "c3": 0.75}, {"time": 2, "angle": 8.43, "curve": 0.243, "c3": 0.649, "c4": 0.6}, {"time": 2.3333, "angle": 12.53} + {"time": 0.25, "curve": 0.779, "c4": 0.3}, {"time": 0.2833, "angle": 10.18, "curve": "stepped"}, {"time": 0.4167, "angle": 10.18, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5} ] }, - "body-fur-03": { + "tail": { "rotate": [ - {"angle": 1.1, "curve": 0.375, "c2": 0.62, "c3": 0.716}, {"time": 0.1}, {"time": 0.4333, "angle": 26.02, "curve": 0.25, "c3": 0.75}, - {"time": 0.9333, "angle": -3.84, "curve": 0.25, "c3": 0.75}, {"time": 1.1, "angle": 5.97, "curve": 0.25, "c3": 0.75}, {"time": 1.4333, "angle": -24.66, "curve": 0.25, "c3": 0.75}, - {"time": 1.9333, "angle": 8.43, "curve": 0.243, "c3": 0.68, "c4": 0.71}, {"time": 2.3333, "angle": 5.54} + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.25, "angle": 21.98, "curve": 0.851, "c4": 0.1}, {"time": 0.2833, "angle": -15.58}, + {"time": 0.4167, "angle": -20.71, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5, "angle": 19.93, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.5833, "angle": 23.12, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.6667, "angle": -14.25, "curve": 0.313, "c3": 0.699}, {"time": 0.75} ] }, - "body-fur-02": { - "rotate": [ - {"angle": 3.06, "curve": 0.358, "c2": 0.42, "c3": 0.702, "c4": 0.8}, {"time": 0.1333, "angle": 0.59, "curve": 0.366, "c2": 0.63, "c3": 0.703}, {"time": 0.2, "curve": 0.25, "c3": 0.75}, - {"time": 0.5333, "angle": 26.02, "curve": 0.25, "c3": 0.75}, {"time": 1.0333, "angle": -3.84, "curve": 0.25, "c3": 0.75}, {"time": 1.2, "angle": 5.97, "curve": 0.25, "c3": 0.75}, - {"time": 1.5333, "angle": -24.66, "curve": 0.25, "c3": 0.75}, {"time": 2.0333, "angle": 8.43, "curve": 0.245, "c3": 0.637, "c4": 0.56}, {"time": 2.3333, "angle": 13.84} + "@shadow": { + "translate": [ + {"time": 0.25, "curve": 0.851, "c4": 0.1}, {"time": 0.2833, "x": -143.36}, {"time": 0.4167, "x": -160.77, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.5, "x": -186.16, "curve": "stepped"}, {"time": 0.5833, "x": -186.16, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.75} + ], + "scale": [ + {"curve": 0, "c2": 0.4, "c3": 0.383}, {"time": 0.25, "x": 1.08, "y": 1.08, "curve": "stepped"}, {"time": 0.5, "x": 1.08, "y": 1.08, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.5833, "x": 1.12, "y": 1.12, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.6667, "x": 0.94, "y": 0.94, "curve": 0.315, "c4": 0.8}, {"time": 0.75} ] }, - "body-fur-01": { - "rotate": [ - {"angle": 1.71, "curve": 0.38, "c2": 0.59, "c3": 0.727}, {"time": 0.1333, "curve": 0.25, "c3": 0.75}, {"time": 0.4667, "angle": 26.02, "curve": 0.25, "c3": 0.75}, - {"time": 0.9667, "angle": -3.84, "curve": 0.25, "c3": 0.75}, {"time": 1.1333, "angle": 5.97, "curve": 0.25, "c3": 0.75}, {"time": 1.4667, "angle": -24.66, "curve": 0.25, "c3": 0.75}, - {"time": 1.9667, "angle": 8.43, "curve": 0.242, "c3": 0.663, "c4": 0.65}, {"time": 2.3333, "angle": 10.51} - ] - } - } + "@leg-back-left": {"translate": [{"curve": 0, "c2": 0.39, "c3": 0.387}, {"time": 0.25, "x": -7.28, "y": 3.82}]} + }, + "events": [{"time": 0.2167, "name": "start-attack"}, {"time": 0.2833, "name": "hit"}] }, - "1055348841": { + "52958864": { "slots": { - "eyes": {"attachment": [{"time": 0.3, "name": "eyes-angry"}, {"time": 1.2333, "name": "eyes"}]}, - "mouth": {"attachment": [{"time": 0.3, "name": "mouth-bite"}, {"time": 1.2333, "name": "mouth"}]} + "eyes": {"attachment": [{"time": 0.1333, "name": "eyes-angry"}]}, + "mouth": {"attachment": [{"time": 0.1333, "name": "mouth-bite"}, {"time": 0.2667, "name": "mouth-open"}, {"time": 0.4167, "name": "mouth-bite"}]} }, "bones": { "@pivot-back": { "rotate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1, "angle": 6, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.2, "angle": -6, "curve": 0.315, "c4": 0.8}, - {"time": 0.3, "angle": 5.5, "curve": 0.317, "c3": 0.693}, {"time": 0.3833, "angle": 4.5, "curve": 0.317, "c3": 0.693}, {"time": 0.4667, "angle": 5.5, "curve": 0.317, "c3": 0.693}, - {"time": 0.55, "angle": 4.5, "curve": 0.317, "c3": 0.693}, {"time": 0.6333, "angle": 5.5, "curve": 0.317, "c3": 0.693}, {"time": 0.7167, "angle": 4.5, "curve": 0.317, "c3": 0.693}, - {"time": 0.8, "angle": 5.5, "curve": 0.317, "c3": 0.693}, {"time": 0.8833, "angle": 4.5, "curve": 0.317, "c3": 0.693}, {"time": 0.9667, "angle": 5.5, "curve": 0.317, "c3": 0.693}, - {"time": 1.05, "angle": 4.5, "curve": 0.317, "c3": 0.693}, {"time": 1.1333, "angle": 5.5, "curve": 0.317, "c3": 0.693}, {"time": 1.2167, "angle": 6, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 1.3167, "angle": -3, "curve": 0.315, "c4": 0.8}, {"time": 1.4167} + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "angle": -3.92, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "angle": 2.51, "curve": 0, "c2": 0.3, "c3": 0.544}, + {"time": 0.35, "angle": -4.74, "curve": 0.7, "c4": 0.3}, {"time": 0.4167, "angle": 2}, {"time": 0.5833, "angle": 4, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.75} ], "translate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1, "y": 4.69, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.2, "y": 43.73, "curve": 0.315, "c4": 0.8}, - {"time": 0.3, "y": 3.84, "curve": "stepped"}, {"time": 1.2167, "y": 3.84, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1.3167, "y": 43.73, "curve": 0.315, "c4": 0.8}, {"time": 1.4167} + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 71.93, "y": -12.95, "curve": "stepped"}, {"time": 0.25, "x": 71.93, "y": -12.95, "curve": 0, "c2": 0.3, "c3": 0.544}, + {"time": 0.4167, "x": -144.49, "y": -12.95, "curve": "stepped"}, {"time": 0.5833, "x": -144.49, "y": -12.95, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.75} ] }, - "@leg-front-left": { + "leg-back-left-IK": { "translate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1, "x": -1.28, "y": -14.48, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.2, "curve": 0.315, "c4": 0.8}, - {"time": 0.3, "x": -1.28, "y": -14.48, "curve": 0.317, "c3": 0.693}, {"time": 0.3833, "x": -1.02, "y": -10.26, "curve": 0.317, "c3": 0.693}, - {"time": 0.4667, "x": -1.22, "y": -13.05, "curve": 0.317, "c3": 0.693}, {"time": 0.55, "x": -1.02, "y": -10.26, "curve": 0.317, "c3": 0.693}, - {"time": 0.6333, "x": -1.22, "y": -13.05, "curve": 0.317, "c3": 0.693}, {"time": 0.7167, "x": -1.02, "y": -10.26, "curve": 0.317, "c3": 0.693}, - {"time": 0.8, "x": -1.22, "y": -13.05, "curve": 0.317, "c3": 0.693}, {"time": 0.8833, "x": -1.02, "y": -10.26, "curve": 0.317, "c3": 0.693}, - {"time": 0.9667, "x": -1.22, "y": -13.05, "curve": 0.317, "c3": 0.693}, {"time": 1.05, "x": -1.02, "y": -10.26, "curve": 0.317, "c3": 0.693}, - {"time": 1.1333, "x": -1.22, "y": -13.05, "curve": 0.317, "c3": 0.693}, {"time": 1.2167, "x": -1.28, "y": -14.48, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1.3167} + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.1167, "x": 93.98, "curve": 0.161, "c3": 0.854}, {"time": 0.25, "x": 67.02, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.3333, "x": -65.1, "y": -1.32, "curve": 0.315, "c4": 0.8}, {"time": 0.4167, "x": -131.67, "curve": "stepped"}, {"time": 0.5833, "x": -131.67, "curve": 0.159, "c4": 0.9}, + {"time": 0.75} ] }, - "@leg-front-right": { + "leg-front-right-IK": { "translate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1, "x": -2.46, "y": -27.93, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.2, "curve": 0.315, "c4": 0.8}, - {"time": 0.3, "x": -2.46, "y": -27.93, "curve": 0.317, "c3": 0.693}, {"time": 0.3833, "x": -2.06, "y": -21.45, "curve": 0.317, "c3": 0.693}, - {"time": 0.4667, "x": -2.44, "y": -26.54, "curve": 0.317, "c3": 0.693}, {"time": 0.55, "x": -2.06, "y": -21.45, "curve": 0.317, "c3": 0.693}, - {"time": 0.6333, "x": -2.44, "y": -26.54, "curve": 0.317, "c3": 0.693}, {"time": 0.7167, "x": -2.06, "y": -21.45, "curve": 0.317, "c3": 0.693}, - {"time": 0.8, "x": -2.44, "y": -26.54, "curve": 0.317, "c3": 0.693}, {"time": 0.8833, "x": -2.06, "y": -21.45, "curve": 0.317, "c3": 0.693}, - {"time": 0.9667, "x": -2.44, "y": -26.54, "curve": 0.317, "c3": 0.693}, {"time": 1.05, "x": -2.06, "y": -21.45, "curve": 0.317, "c3": 0.693}, - {"time": 1.1333, "x": -2.44, "y": -26.54, "curve": 0.317, "c3": 0.693}, {"time": 1.2167, "x": -2.46, "y": -27.93, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1.3167} + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 21.56, "y": 4.31, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.25, "x": 42.9, "curve": 0, "c2": 0.3, "c3": 0.544}, + {"time": 0.3667, "x": -104.26, "y": 42.61, "curve": 0.161, "c4": 0.85}, {"time": 0.4167, "x": -153.64, "curve": "stepped"}, {"time": 0.5833, "x": -153.64, "curve": 0.154, "c4": 0.9}, + {"time": 0.7, "x": 13.43, "curve": 0.161, "c3": 0.854}, {"time": 0.75} ] }, - "@pivot-main": { + "leg-front-left-IK": { "translate": [ - {"time": 0.1, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.3, "x": -154.22, "curve": "stepped"}, {"time": 1.2167, "x": -154.22, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 1.4167} + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 43.11, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "x": 48.71, "y": -1.66, "curve": 0, "c2": 0.3, "c3": 0.544}, + {"time": 0.3667, "x": -87.39, "y": 18.71, "curve": 0.161, "c4": 0.85}, {"time": 0.4167, "x": -150.32, "y": 0.83}, {"time": 0.5833, "x": -142.85, "curve": 0.154, "c4": 0.9}, + {"time": 0.7, "x": 13.43, "curve": 0.161, "c3": 0.854}, {"time": 0.75} ] }, - "leg-front-left-IK": {"translate": [{"time": 1.2167, "curve": 0.315, "c4": 0.8}, {"time": 1.3167, "x": -61.13, "curve": 0.315, "c4": 0.8}, {"time": 1.4167}]}, - "leg-front-right-IK": {"translate": [{"time": 1.2167, "curve": 0.315, "c4": 0.8}, {"time": 1.3167, "x": -61.13, "curve": 0.315, "c4": 0.8}, {"time": 1.4167}]}, - "@shadow": { + "@leg-front-left": { "translate": [ - {"time": 0.1, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.3, "x": -162.84, "curve": "stepped"}, {"time": 1.2167, "x": -162.84, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 1.4167} - ], - "scale": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1, "x": 1.1, "y": 1.1, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.2, "x": 0.92, "y": 0.92, "curve": 0.315, "c4": 0.8}, - {"time": 0.3, "x": 1.1, "y": 1.1, "curve": 0.317, "c3": 0.693}, {"time": 0.3833, "x": 1.06, "y": 1.06, "curve": 0.317, "c3": 0.693}, - {"time": 0.4667, "x": 1.1, "y": 1.1, "curve": 0.317, "c3": 0.693}, {"time": 0.55, "x": 1.06, "y": 1.06, "curve": 0.317, "c3": 0.693}, - {"time": 0.6333, "x": 1.1, "y": 1.1, "curve": 0.317, "c3": 0.693}, {"time": 0.7167, "x": 1.06, "y": 1.06, "curve": 0.317, "c3": 0.693}, - {"time": 0.8, "x": 1.1, "y": 1.1, "curve": 0.317, "c3": 0.693}, {"time": 0.8833, "x": 1.06, "y": 1.06, "curve": 0.317, "c3": 0.693}, - {"time": 0.9667, "x": 1.1, "y": 1.1, "curve": 0.317, "c3": 0.693}, {"time": 1.05, "x": 1.06, "y": 1.06, "curve": 0.317, "c3": 0.693}, - {"time": 1.1333, "x": 1.1, "y": 1.1, "curve": "stepped"}, {"time": 1.2167, "x": 1.1, "y": 1.1, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 1.3167, "x": 0.92, "y": 0.92, "curve": 0.315, "c4": 0.8}, {"time": 1.4167} - ] - }, - "tail": { - "rotate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1, "angle": 16.7, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.2, "angle": -16.65, "curve": 0.315, "c4": 0.8}, - {"time": 0.3, "angle": 17.85, "curve": 0.317, "c3": 0.693}, {"time": 0.4333, "angle": 15.5, "curve": 0.317, "c3": 0.693}, {"time": 0.5667, "angle": 17.85, "curve": 0.317, "c3": 0.693}, - {"time": 0.7, "angle": 15.5, "curve": 0.317, "c3": 0.693}, {"time": 0.8333, "angle": 17.85, "curve": 0.317, "c3": 0.693}, {"time": 0.95, "angle": 15.5, "curve": 0.317, "c3": 0.693}, - {"time": 1.0833, "angle": 17.85, "curve": 0.317, "c3": 0.693}, {"time": 1.2167, "angle": 15.5, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 1.3167, "angle": -14.65, "curve": 0.315, "c4": 0.8}, {"time": 1.4167} - ] - }, - "back": { - "rotate": [ - {"time": 0.3, "curve": 0.306, "c3": 0.695}, {"time": 0.4833, "angle": 5.93, "curve": 0.306, "c3": 0.695}, {"time": 0.65, "curve": 0.306, "c3": 0.695}, - {"time": 0.8333, "angle": 5.93, "curve": 0.306, "c3": 0.695}, {"time": 1.0167, "curve": 0.306, "c3": 0.695}, {"time": 1.2167, "angle": 5.93, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 1.4167} + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": -0.28, "y": 3.31, "curve": 0, "c2": 0.3, "c3": 0.544}, + {"time": 0.25, "x": -0.62, "y": -3.21, "curve": 0, "c2": 0.25, "c3": 0.457, "c4": 0.73}, {"time": 0.3667, "x": -15.24, "y": -11.32, "curve": 0.325, "c2": 0.6, "c3": 0.672}, + {"time": 0.4167, "x": -17.97, "y": -3.57, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5833, "x": -18.47, "y": -10.19, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.75} ] }, - "body-fur-16": { - "rotate": [ - {"angle": -0.44, "curve": 0.283, "c2": 0.14, "c3": 0.754}, {"time": 0.1833, "angle": -15.12, "curve": 0.25, "c3": 0.75}, {"time": 0.2667, "angle": 13.82, "curve": 0.25, "c3": 0.75}, - {"time": 0.3833, "angle": -26.73, "curve": 0.25, "c3": 0.75}, {"time": 0.5167, "angle": 21.85, "curve": 0.25, "c3": 0.75}, {"time": 0.75, "angle": -18.74, "curve": 0.25, "c3": 0.75}, - {"time": 0.9833, "angle": 0.46, "curve": 0.25, "c3": 0.75}, {"time": 1.2, "angle": -18.54, "curve": 0.25, "c3": 0.75}, {"time": 1.4167, "angle": 13.84} + "@leg-front-right": { + "translate": [ + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 3.63, "y": 19.84, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.25, "x": -10.53, "y": -16.98, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.4167, "x": -10.44, "y": -18.31, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.5833, "x": -10.92, "y": -30.23, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.75} ] }, - "body-fur-15": { - "rotate": [ - {"angle": -2.79, "curve": 0.333, "c2": 0.33, "c3": 0.758}, {"time": 0.15, "angle": -15.12, "curve": 0.25, "c3": 0.75}, {"time": 0.2333, "angle": 13.82, "curve": 0.25, "c3": 0.75}, - {"time": 0.35, "angle": -26.73, "curve": 0.25, "c3": 0.75}, {"time": 0.4833, "angle": 21.85, "curve": 0.25, "c3": 0.75}, {"time": 0.7167, "angle": -18.74, "curve": 0.25, "c3": 0.75}, - {"time": 0.95, "angle": 0.46, "curve": 0.25, "c3": 0.75}, {"time": 1.1667, "angle": -18.54, "curve": 0.25, "c3": 0.75}, {"time": 1.3667, "curve": 0.276, "c3": 0.621, "c4": 0.4}, - {"time": 1.4167, "angle": 13.33} + "@pivot-main": { + "translate": [ + {"time": 0.25, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "y": 26.43, "curve": 0.315, "c4": 0.8}, {"time": 0.4167, "curve": "stepped"}, + {"time": 0.5833, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.6667, "y": 26.43, "curve": 0.315, "c4": 0.8}, {"time": 0.75} ] }, - "body-fur-14": { - "rotate": [ - {"curve": 0.242, "c3": 0.667, "c4": 0.67}, {"time": 0.15, "angle": -12.33, "curve": 0.379, "c2": 0.6, "c3": 0.724}, {"time": 0.2, "angle": -15.12}, - {"time": 0.2833, "angle": 13.82, "curve": 0.25, "c3": 0.75}, {"time": 0.4, "angle": -26.73, "curve": 0.25, "c3": 0.75}, {"time": 0.5333, "angle": 21.85, "curve": 0.25, "c3": 0.75}, - {"time": 0.7667, "angle": -18.74, "curve": 0.25, "c3": 0.75}, {"time": 1, "angle": 0.46, "curve": 0.25, "c3": 0.75}, {"time": 1.2167, "angle": -18.54, "curve": 0.25, "c3": 0.75}, - {"time": 1.4167, "angle": 13.33} + "@leg-back-left": { + "translate": [ + {"time": 0.1167, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "x": -0.25, "y": -9.22, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.3333, "x": -0.44, "y": 4.57, "curve": 0.306, "c4": 0.8}, {"time": 0.4167, "x": -0.58, "y": -9.21}, + {"time": 0.5833, "x": -0.15, "y": -9.98, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.75} ] }, - "body-fur-13": { + "tail": { "rotate": [ - {"angle": -2.79, "curve": 0.333, "c2": 0.33, "c3": 0.758}, {"time": 0.15, "angle": -15.12}, {"time": 0.2333, "angle": 13.82, "curve": 0.25, "c3": 0.75}, - {"time": 0.35, "angle": -26.73, "curve": 0.25, "c3": 0.75}, {"time": 0.4833, "angle": 21.85, "curve": 0.25, "c3": 0.75}, {"time": 0.7167, "angle": -18.74, "curve": 0.25, "c3": 0.75}, - {"time": 0.95, "angle": 0.46, "curve": 0.25, "c3": 0.75}, {"time": 1.1667, "angle": -18.54, "curve": 0.25, "c3": 0.75}, {"time": 1.3667, "curve": 0.276, "c3": 0.621, "c4": 0.4}, - {"time": 1.4167, "angle": 11.59} + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "angle": 12.92, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "angle": 18.48, "curve": 0, "c2": 0.3, "c3": 0.544}, + {"time": 0.35, "angle": -6.88, "curve": 0.7, "c4": 0.3}, {"time": 0.4167, "angle": 14}, {"time": 0.5833, "angle": 19.37, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.6833, "angle": -8.78, "curve": 0.313, "c3": 0.699}, {"time": 0.75} ] }, - "body-fur-12": { - "rotate": [ - {"angle": -5.89, "curve": 0.365, "c2": 0.45, "c3": 0.754}, {"time": 0.1167, "angle": -15.12, "curve": 0.25, "c3": 0.75}, {"time": 0.2, "angle": 13.82, "curve": 0.25, "c3": 0.75}, - {"time": 0.3167, "angle": -26.73, "curve": 0.25, "c3": 0.75}, {"time": 0.45, "angle": 21.85, "curve": 0.25, "c3": 0.75}, {"time": 0.6833, "angle": -18.74, "curve": 0.25, "c3": 0.75}, - {"time": 0.9167, "angle": 0.46, "curve": 0.25, "c3": 0.75}, {"time": 1.1333, "angle": -18.54, "curve": 0.25, "c3": 0.75}, {"time": 1.3333, "curve": 0.256, "c3": 0.619, "c4": 0.46}, - {"time": 1.4167, "angle": 8.12} + "@shadow": { + "translate": [ + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 61.96, "curve": "stepped"}, {"time": 0.25, "x": 61.96, "curve": 0, "c2": 0.3, "c3": 0.544}, + {"time": 0.35, "x": -121.98, "curve": 0.7, "c4": 0.3}, {"time": 0.4167, "x": -154.28, "curve": "stepped"}, {"time": 0.5833, "x": -154.28, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.75} + ], + "scale": [ + {"time": 0.0833, "curve": 0, "c2": 0.26, "c3": 0.369, "c4": 0.62}, {"time": 0.25, "x": 1.06, "y": 1.06, "curve": 0.192, "c2": 0.45, "c3": 0.623}, + {"time": 0.35, "x": 0.96, "y": 0.96, "curve": 0.7, "c4": 0.3}, {"time": 0.4167, "x": 1.08, "y": 1.08, "curve": "stepped"}, + {"time": 0.5833, "x": 1.08, "y": 1.08, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.75} ] - }, - "body-fur-11": { - "rotate": [ - {"angle": -9.22, "curve": 0.381, "c2": 0.54, "c3": 0.744}, {"time": 0.0833, "angle": -15.12, "curve": 0.25, "c3": 0.75}, {"time": 0.1667, "angle": 13.82, "curve": 0.25, "c3": 0.75}, - {"time": 0.2833, "angle": -26.73, "curve": 0.25, "c3": 0.75}, {"time": 0.4167, "angle": 21.85, "curve": 0.25, "c3": 0.75}, {"time": 0.65, "angle": -18.74, "curve": 0.25, "c3": 0.75}, - {"time": 0.8833, "angle": 0.46, "curve": 0.25, "c3": 0.75}, {"time": 1.1, "angle": -18.54, "curve": 0.25, "c3": 0.75}, {"time": 1.3, "curve": 0.246, "c3": 0.635, "c4": 0.55}, - {"time": 1.4167, "angle": 4.23} + } + }, + "events": [{"time": 0.25, "name": "start-attack"}, {"time": 0.4167, "name": "hit"}] + }, + "561520605": { + "slots": { + "eyes": {"attachment": [{"time": 0.0833, "name": "eyes-shut"}, {"time": 0.1667, "name": "eyes-angry"}, {"time": 0.9833, "name": "eyes-shut"}]}, + "leg-front-left": { + "attachment": [ + {"time": 0.5, "name": "leg-front-left-stretch"}, {"time": 0.6333, "name": "leg-front-left"}, {"time": 0.7667, "name": "leg-front-left-stretch"}, {"time": 0.9, "name": "leg-front-left"} ] }, - "body-fur-10": { + "mouth": {"attachment": [{"time": 0.0833, "name": "mouth-bite"}, {"time": 0.3667, "name": "mouth-open"}, {"time": 0.9833, "name": "mouth-bite"}]} + }, + "bones": { + "@pivot-back": { "rotate": [ - {"angle": -12.33, "curve": 0.379, "c2": 0.6, "c3": 0.724}, {"time": 0.05, "angle": -15.12, "curve": 0.25, "c3": 0.75}, {"time": 0.1333, "angle": 13.82, "curve": 0.25, "c3": 0.75}, - {"time": 0.25, "angle": -26.73, "curve": 0.25, "c3": 0.75}, {"time": 0.3833, "angle": 21.85, "curve": 0.25, "c3": 0.75}, {"time": 0.6167, "angle": -18.74, "curve": 0.25, "c3": 0.75}, - {"time": 0.85, "angle": 0.46, "curve": 0.25, "c3": 0.75}, {"time": 1.0667, "angle": -18.54, "curve": 0.25, "c3": 0.75}, {"time": 1.2667, "curve": 0.242, "c3": 0.667, "c4": 0.67}, - {"time": 1.4167, "angle": 0.34} + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.15, "angle": 3.67, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.3333, "angle": -14.29, "curve": 0.779, "c4": 0.3}, + {"time": 0.3667, "angle": 15.82}, {"time": 0.4667, "angle": 16.67, "curve": 0.779, "c4": 0.3}, {"time": 0.5, "angle": -19.96}, {"time": 0.6, "angle": -21.17, "curve": 0.779, "c4": 0.3}, + {"time": 0.6333, "angle": 15.82}, {"time": 0.7333, "angle": 16.67, "curve": 0.779, "c4": 0.3}, {"time": 0.7667, "angle": -19.96}, + {"time": 0.8667, "angle": -21.17, "curve": 0.779, "c4": 0.3}, {"time": 0.9833, "angle": 4.4, "curve": 0, "c2": 0.1, "c3": 0.85}, + {"time": 1.05, "angle": 6.79, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1.25} + ], + "translate": [ + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.2167, "x": 8.02, "curve": 0, "c2": 0.4, "c3": 0.383}, {"time": 0.3333, "x": -54.3, "y": 61.69, "curve": 0.779, "c4": 0.3}, + {"time": 0.3667, "x": -60.41, "y": 130.13}, {"time": 0.4667, "x": -60.41, "y": 130.01, "curve": 0.779, "c4": 0.3}, {"time": 0.5, "x": -58.41, "y": 9.6}, + {"time": 0.6, "x": -58.41, "y": 9.9, "curve": 0.779, "c4": 0.3}, {"time": 0.6333, "x": -60.41, "y": 130.13}, {"time": 0.7333, "x": -60.41, "y": 130.01, "curve": 0.779, "c4": 0.3}, + {"time": 0.7667, "x": -58.41, "y": 9.6}, {"time": 0.8667, "x": -58.41, "y": 9.9, "curve": 0.779, "c4": 0.3}, {"time": 0.9833} ] }, - "body-fur-09": { - "rotate": [ - {"angle": -9.27, "curve": 0.344, "c2": 0.37, "c3": 0.682, "c4": 0.72}, {"time": 0.0333, "angle": -12.33, "curve": 0.379, "c2": 0.6, "c3": 0.724}, - {"time": 0.0833, "angle": -15.12, "curve": 0.25, "c3": 0.75}, {"time": 0.1667, "angle": 13.82, "curve": 0.25, "c3": 0.75}, {"time": 0.2833, "angle": -26.73, "curve": 0.25, "c3": 0.75}, - {"time": 0.4167, "angle": 21.85, "curve": 0.25, "c3": 0.75}, {"time": 0.65, "angle": -18.74, "curve": 0.25, "c3": 0.75}, {"time": 0.8833, "angle": 0.46, "curve": 0.25, "c3": 0.75}, - {"time": 1.1, "angle": -18.54, "curve": 0.25, "c3": 0.75}, {"time": 1.3, "curve": 0.246, "c3": 0.635, "c4": 0.55}, {"time": 1.4167, "angle": 6.86} + "@leg-front-right": { + "translate": [ + {"curve": 0, "c2": 0.17, "c3": 0.521, "c4": 0.69}, {"time": 0.15, "x": -16.23, "y": -19.18, "curve": 0.377, "c2": 0.59, "c3": 0.739}, {"time": 0.2167, "x": -18.54, "y": -11.57}, + {"time": 0.25, "x": -22.65, "y": 8.05, "curve": 0, "c2": 0.4, "c3": 0.383}, {"time": 0.3333, "x": 29.92, "y": -4.24, "curve": 0.779, "c4": 0.4}, {"time": 0.3667, "x": 22.95, "y": 2.68}, + {"time": 0.4667, "x": 29.92, "y": -4.24, "curve": 0.779, "c4": 0.4}, {"time": 0.5, "x": 22.95, "y": 2.68}, {"time": 0.6, "x": 29.92, "y": -4.24, "curve": 0.779, "c4": 0.4}, + {"time": 0.6333, "x": 22.95, "y": 2.68}, {"time": 0.7333, "x": 29.92, "y": -4.24, "curve": 0.779, "c4": 0.4}, {"time": 0.7667, "x": 22.95, "y": 2.68, "curve": "stepped"}, + {"time": 0.9167, "x": 22.95, "y": 2.68, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.95, "curve": 0.464, "c4": 0.7}, {"time": 0.9833, "x": -1.45, "y": -24.11}, + {"time": 1.05, "x": -3.72, "y": -46.34, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1.0833} + ], + "scale": [ + {"time": 0.2167}, {"time": 0.25, "x": 1.5}, {"time": 0.3333, "curve": 0.779, "c4": 0.4}, {"time": 0.3667, "x": 1.5}, {"time": 0.4667, "x": 1.51, "curve": 0.157, "c2": 0.33, "c3": 0.727}, + {"time": 0.5, "curve": "stepped"}, {"time": 0.6, "curve": 0.779, "c4": 0.4}, {"time": 0.6333, "x": 1.5}, {"time": 0.7333, "x": 1.51, "curve": 0.157, "c2": 0.33, "c3": 0.727}, + {"time": 0.7667} ] }, - "body-fur-08": { - "rotate": [ - {"angle": -13.66, "curve": 0.371, "c2": 0.62, "c3": 0.71}, {"time": 0.0333, "angle": -15.12}, {"time": 0.1167, "angle": 13.82, "curve": 0.25, "c3": 0.75}, - {"time": 0.2333, "angle": -26.73, "curve": 0.25, "c3": 0.75}, {"time": 0.3667, "angle": 21.85, "curve": 0.25, "c3": 0.75}, {"time": 0.6, "angle": -18.74, "curve": 0.25, "c3": 0.75}, - {"time": 0.8333, "angle": 0.46, "curve": 0.25, "c3": 0.75}, {"time": 1.05, "angle": -18.54, "curve": 0.25, "c3": 0.75}, {"time": 1.25, "curve": 0.243, "c3": 0.689, "c4": 0.75}, - {"time": 1.4167, "angle": -0.91} + "@leg-front-left": { + "translate": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.2167, "x": -6.84, "y": -9.77, "curve": "stepped"}, {"time": 0.9833, "x": -6.84, "y": -9.77, "curve": 0, "c2": 0.1, "c3": 0.85}, + {"time": 1.05, "x": -6.29, "y": -18.69, "curve": 0, "c2": 0.23, "c3": 0.365, "c4": 0.58}, {"time": 1.0833, "x": -3.64, "y": -2.46, "curve": 0.177, "c2": 0.35, "c3": 0.731}, + {"time": 1.25} + ], + "scale": [ + {"time": 0.4667, "curve": 0.779, "c4": 0.4}, {"time": 0.5, "x": 1.5}, {"time": 0.6, "x": 1.51, "curve": 0.157, "c2": 0.33, "c3": 0.727}, {"time": 0.6333, "curve": "stepped"}, + {"time": 0.7333, "curve": 0.779, "c4": 0.4}, {"time": 0.7667, "x": 1.5}, {"time": 0.8667, "x": 1.51, "curve": 0.157, "c2": 0.33, "c3": 0.727}, {"time": 0.9833} ] }, - "body-fur-07": { - "rotate": [ - {"angle": -10.83, "curve": 0.382, "c2": 0.57, "c3": 0.735}, {"time": 0.0667, "angle": -15.12, "curve": 0.25, "c3": 0.75}, {"time": 0.15, "angle": 13.82, "curve": 0.25, "c3": 0.75}, - {"time": 0.2667, "angle": -26.73, "curve": 0.25, "c3": 0.75}, {"time": 0.4, "angle": 21.85, "curve": 0.25, "c3": 0.75}, {"time": 0.6333, "angle": -18.74, "curve": 0.25, "c3": 0.75}, - {"time": 0.8667, "angle": 0.46, "curve": 0.25, "c3": 0.75}, {"time": 1.0833, "angle": -18.54, "curve": 0.25, "c3": 0.75}, {"time": 1.2833, "curve": 0.243, "c3": 0.649, "c4": 0.6}, - {"time": 1.4167, "angle": 2.91} + "@leg-back-left": { + "translate": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.2167, "x": -0.11, "y": -2.73, "curve": "stepped"}, {"time": 0.9833, "x": -0.11, "y": -2.73, "curve": 0, "c2": 0.1, "c3": 0.85}, + {"time": 1.05, "x": -0.46, "y": -6.19, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1.25} ] }, - "body-fur-06": { - "rotate": [ - {"angle": -2.81, "curve": 0.314, "c2": 0.27, "c3": 0.686, "c4": 0.73}, {"time": 0.1, "angle": -12.33, "curve": 0.379, "c2": 0.6, "c3": 0.724}, {"time": 0.15, "angle": -15.12}, - {"time": 0.2333, "angle": 13.82, "curve": 0.25, "c3": 0.75}, {"time": 0.35, "angle": -26.73, "curve": 0.25, "c3": 0.75}, {"time": 0.4833, "angle": 21.85, "curve": 0.25, "c3": 0.75}, - {"time": 0.7167, "angle": -18.74, "curve": 0.25, "c3": 0.75}, {"time": 0.95, "angle": 0.46, "curve": 0.25, "c3": 0.75}, {"time": 1.1667, "angle": -18.54, "curve": 0.25, "c3": 0.75}, - {"time": 1.3667, "curve": 0.276, "c3": 0.621, "c4": 0.4}, {"time": 1.4167, "angle": 13.33} - ] + "@pivot-main": { + "translate": [ + {"time": 0.15, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "x": -73.35, "y": 43, "curve": "stepped"}, {"time": 0.8667, "x": -73.35, "y": 43, "curve": 0.315, "c4": 0.8}, + {"time": 0.9833, "x": -146.44, "curve": "stepped"}, {"time": 1.05, "x": -146.44, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1.15, "x": -45.61, "y": 50.15, "curve": 0.315, "c4": 0.8}, + {"time": 1.25} + ], + "scale": [{"time": 0.9833, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1.05, "y": 0.98, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1.15}] }, - "body-fur-05": { - "rotate": [ - {"angle": -7.56, "curve": 0.375, "c2": 0.5, "c3": 0.75}, {"time": 0.1, "angle": -15.12}, {"time": 0.1833, "angle": 13.82, "curve": 0.25, "c3": 0.75}, - {"time": 0.3, "angle": -26.73, "curve": 0.25, "c3": 0.75}, {"time": 0.4333, "angle": 21.85, "curve": 0.25, "c3": 0.75}, {"time": 0.6667, "angle": -18.74, "curve": 0.25, "c3": 0.75}, - {"time": 0.9, "angle": 0.46, "curve": 0.25, "c3": 0.75}, {"time": 1.1167, "angle": -18.54, "curve": 0.25, "c3": 0.75}, {"time": 1.3167, "curve": 0.25, "c3": 0.625, "c4": 0.5}, - {"time": 1.4167, "angle": 6.86} + "leg-front-right-IK": { + "translate": [ + {"time": 0.15, "curve": 0, "c2": 0.18, "c3": 0.416, "c4": 0.58}, {"time": 0.2167, "x": 19.11, "y": 67.51}, {"time": 0.25, "x": 9.04, "y": 75.61, "curve": 0, "c2": 0.4, "c3": 0.383}, + {"time": 0.3333, "x": -160.66, "y": 272.78, "curve": 0.779, "c4": 0.4}, {"time": 0.3667, "x": -57.38, "y": -16.06}, {"time": 0.4667, "x": -10.1, "y": -16.06, "curve": 0.779, "c4": 0.4}, + {"time": 0.5, "x": -151.82, "y": 190.82}, {"time": 0.6, "x": -168.95, "y": 277.96, "curve": 0.779, "c4": 0.4}, {"time": 0.6333, "x": -54.28, "y": -17.1}, + {"time": 0.7333, "x": -12.17, "y": -17.1, "curve": 0.779, "c4": 0.4}, {"time": 0.7667, "x": -151.82, "y": 190.82}, {"time": 0.8667, "x": -165.84, "y": 271.75, "curve": 0.779, "c4": 0.4}, + {"time": 0.9833, "curve": "stepped"}, {"time": 1.05, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 1.0833, "x": -14.68, "y": -19.57, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1.25} ] }, - "body-fur-04": { - "rotate": [ - {"angle": -0.48, "curve": 0.272, "c2": 0.12, "c3": 0.675, "c4": 0.7}, {"time": 0.1333, "angle": -12.33, "curve": 0.379, "c2": 0.6, "c3": 0.724}, {"time": 0.1833, "angle": -15.12}, - {"time": 0.2667, "angle": 13.82, "curve": 0.25, "c3": 0.75}, {"time": 0.3833, "angle": -26.73, "curve": 0.25, "c3": 0.75}, {"time": 0.5167, "angle": 21.85, "curve": 0.25, "c3": 0.75}, - {"time": 0.75, "angle": -18.74, "curve": 0.25, "c3": 0.75}, {"time": 0.9833, "angle": 0.46, "curve": 0.25, "c3": 0.75}, {"time": 1.2, "angle": -18.54, "curve": 0.25, "c3": 0.75}, - {"time": 1.4167, "angle": 12.53} + "leg-front-left-IK": { + "translate": [ + {"time": 0.15, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "x": -54.88, "y": 124.95, "curve": 0.779, "c4": 0.4}, {"time": 0.3667, "x": 37.97, "y": 122.64}, + {"time": 0.4667, "x": 48.96, "y": 138.43, "curve": 0.779, "c4": 0.4}, {"time": 0.5, "x": -142.3, "y": 180.66}, {"time": 0.6, "x": -134.29, "y": 191.98, "curve": 0.779, "c4": 0.4}, + {"time": 0.6333, "x": 37.97, "y": 122.64}, {"time": 0.7333, "x": 48.96, "y": 138.43, "curve": 0.779, "c4": 0.4}, {"time": 0.7667, "x": -142.3, "y": 180.66}, + {"time": 0.8667, "x": -134.29, "y": 191.98, "curve": 0.617, "c4": 0.6}, {"time": 0.9833, "curve": "stepped"}, {"time": 1.05, "curve": 0, "c2": 0.1, "c3": 0.85}, + {"time": 1.0833, "x": -7.79, "y": -10.12, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1.25} ] }, - "body-fur-03": { - "rotate": [ - {"angle": -4.29, "curve": 0.351, "c2": 0.4, "c3": 0.757}, {"time": 0.1333, "angle": -15.12}, {"time": 0.2167, "angle": 13.82, "curve": 0.25, "c3": 0.75}, - {"time": 0.3333, "angle": -26.73, "curve": 0.25, "c3": 0.75}, {"time": 0.4667, "angle": 21.85, "curve": 0.25, "c3": 0.75}, {"time": 0.7, "angle": -18.74, "curve": 0.25, "c3": 0.75}, - {"time": 0.9333, "angle": 0.46, "curve": 0.25, "c3": 0.75}, {"time": 1.15, "angle": -18.54, "curve": 0.25, "c3": 0.75}, {"time": 1.35, "curve": 0.265, "c3": 0.618, "c4": 0.43}, - {"time": 1.4167, "angle": 5.54} + "leg-back-left-IK": { + "translate": [ + {"time": 0.0833, "curve": 0.332, "c3": 0.682, "c4": 0.41}, {"time": 0.2167, "x": 21.57, "y": 4.03, "curve": 0, "c2": 0.4, "c3": 0.383}, + {"time": 0.3333, "x": -50.73, "y": 91.08, "curve": 0.779, "c4": 0.4}, {"time": 0.3667, "x": 19.18, "y": 184.64}, {"time": 0.4667, "x": 25.59, "y": 197.69, "curve": 0.779, "c4": 0.4}, + {"time": 0.5, "x": -145.53, "y": 47.62}, {"time": 0.6, "x": -152.68, "y": 53.34, "curve": 0.779, "c4": 0.4}, {"time": 0.6333, "x": 19.18, "y": 184.64}, + {"time": 0.7333, "x": 25.59, "y": 197.69, "curve": 0.779, "c4": 0.4}, {"time": 0.7667, "x": -145.53, "y": 47.62}, {"time": 0.8667, "x": -153.88, "y": 53.26, "curve": 0.779, "c4": 0.4}, + {"time": 0.9833, "curve": "stepped"}, {"time": 1.05, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 1.1667, "x": 24.35, "y": 13.92, "curve": 0.154, "c4": 0.9}, {"time": 1.25} ] }, - "body-fur-02": { + "tail": { "rotate": [ - {"angle": -5.94, "curve": 0.338, "c2": 0.35, "c3": 0.688, "c4": 0.73}, {"time": 0.0667, "angle": -12.33, "curve": 0.379, "c2": 0.6, "c3": 0.724}, {"time": 0.1167, "angle": -15.12}, - {"time": 0.2, "angle": 13.82, "curve": 0.25, "c3": 0.75}, {"time": 0.3167, "angle": -26.73, "curve": 0.25, "c3": 0.75}, {"time": 0.45, "angle": 21.85, "curve": 0.25, "c3": 0.75}, - {"time": 0.6833, "angle": -18.74, "curve": 0.25, "c3": 0.75}, {"time": 0.9167, "angle": 0.46, "curve": 0.25, "c3": 0.75}, {"time": 1.1333, "angle": -18.54, "curve": 0.25, "c3": 0.75}, - {"time": 1.3333, "curve": 0.256, "c3": 0.619, "c4": 0.46}, {"time": 1.4167, "angle": 13.84} + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.15, "angle": 14.68, "curve": 0.315, "c4": 0.8}, {"time": 0.2167, "angle": -12.57}, + {"time": 0.3333, "angle": -14.89, "curve": 0.779, "c4": 0.4}, {"time": 0.3667, "angle": 20.64}, {"time": 0.4667, "angle": 25.18, "curve": 0.779, "c4": 0.4}, + {"time": 0.5, "angle": -19.72}, {"time": 0.6, "angle": -22.19, "curve": 0.779, "c4": 0.4}, {"time": 0.6333, "angle": 20.64}, {"time": 0.7333, "angle": 25.18, "curve": 0.779, "c4": 0.4}, + {"time": 0.7667, "angle": -19.72}, {"time": 0.8667, "angle": -22.19, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.9833, "angle": 23.3}, + {"time": 1.05, "angle": 26.39, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1.1333, "angle": -14.8, "curve": 0.154, "c4": 0.9}, {"time": 1.25} ] }, - "body-fur-01": { - "rotate": [ - {"angle": -10.83, "curve": 0.382, "c2": 0.57, "c3": 0.735}, {"time": 0.0667, "angle": -15.12, "curve": 0.25, "c3": 0.75}, {"time": 0.15, "angle": 13.82, "curve": 0.25, "c3": 0.75}, - {"time": 0.2667, "angle": -26.73, "curve": 0.25, "c3": 0.75}, {"time": 0.4, "angle": 21.85, "curve": 0.25, "c3": 0.75}, {"time": 0.6333, "angle": -18.74, "curve": 0.25, "c3": 0.75}, - {"time": 0.8667, "angle": 0.46, "curve": 0.25, "c3": 0.75}, {"time": 1.0833, "angle": -18.54, "curve": 0.25, "c3": 0.75}, {"time": 1.2833, "curve": 0.243, "c3": 0.649, "c4": 0.6}, - {"time": 1.4167, "angle": 10.51} + "@shadow": { + "translate": [ + {"time": 0.15, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.3333, "x": -132.39, "curve": 0.779, "c4": 0.4}, {"time": 0.3667, "x": -111.3, "curve": "stepped"}, + {"time": 0.8667, "x": -111.3, "curve": 0.315, "c4": 0.8}, {"time": 0.9833, "x": -132.39, "curve": "stepped"}, {"time": 1.05, "x": -132.39, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 1.25} + ], + "scale": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.15, "x": 1.05, "y": 1.05, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.3333, "x": 0.93, "y": 0.93, "curve": 0.779, "c4": 0.4}, + {"time": 0.3667, "x": 0.95, "y": 0.95}, {"time": 0.4667, "x": 0.93, "y": 0.93, "curve": 0.779, "c4": 0.4}, {"time": 0.5}, {"time": 0.6, "x": 1.05, "y": 1.05, "curve": 0.779, "c4": 0.4}, + {"time": 0.6333}, {"time": 0.7333, "x": 0.93, "y": 0.93, "curve": 0.779, "c4": 0.4}, {"time": 0.7667}, {"time": 0.8667, "x": 1.05, "y": 1.05, "curve": 0.315, "c4": 0.8}, + {"time": 0.9833, "x": 1.09, "y": 1.09, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 1.05, "x": 1.11, "y": 1.11, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1.25} ] } - } - }, - "765106252": { - "bones": { - "body-fur-01": {"rotate": [{"angle": 10.51}]}, - "body-fur-02": {"rotate": [{"angle": 13.84}]}, - "body-fur-03": {"rotate": [{"angle": 5.54}]}, - "body-fur-04": {"rotate": [{"angle": 12.53}]}, - "body-fur-05": {"rotate": [{"angle": 6.86}]}, - "body-fur-06": {"rotate": [{"angle": 13.33}]}, - "body-fur-07": {"rotate": [{"angle": 2.91}]}, - "body-fur-08": {"rotate": [{"angle": -0.91}]}, - "body-fur-09": {"rotate": [{"angle": 6.86}]}, - "body-fur-10": {"rotate": [{"angle": 0.34}]}, - "body-fur-11": {"rotate": [{"angle": 4.23}]}, - "body-fur-12": {"rotate": [{"angle": 8.12}]}, - "body-fur-13": {"rotate": [{"angle": 11.59}]}, - "body-fur-14": {"rotate": [{"angle": 13.33}]}, - "body-fur-15": {"rotate": [{"angle": 13.33}]}, - "body-fur-16": {"rotate": [{"angle": 13.84}]} - } + }, + "events": [{"time": 0.3333, "name": "start-attack"}, {"time": 0.3667, "name": "hit"}, {"time": 0.5, "name": "hit"}, {"time": 0.6333, "name": "hit"}, {"time": 0.7667, "name": "hit"}] }, - "3746342726": { - "slots": {"eyes": {"attachment": [{"name": "eyes-happy"}]}, "leg-front-left": {"attachment": [{"time": 0.2, "name": "leg-front-left-stretch"}, {"time": 0.5833, "name": "leg-front-left"}]}}, + "2102510868": { + "slots": {"eyes": {"attachment": [{"time": 1, "name": "eyes-shut"}]}}, "bones": { - "@leg-front-left": { + "@pivot-back": { + "rotate": [ + {"curve": 0.313, "c3": 0.699}, {"time": 0.3333, "angle": 2.04, "curve": 0.313, "c3": 0.699}, {"time": 0.6667, "curve": 0.313, "c3": 0.699}, + {"time": 1, "angle": 1.79, "curve": 0.313, "c3": 0.699}, {"time": 1.3333} + ], "translate": [ - {"x": -14.55, "y": -2.39, "curve": 0.374, "c2": 0.33, "c3": 0.72, "c4": 0.68}, {"time": 0.0333, "x": -24.69, "y": -4.71, "curve": 0.37, "c2": 0.57, "c3": 0.746}, - {"time": 0.1667, "x": -24.61, "y": -1.31, "curve": 0.37, "c2": 0.57, "c3": 0.746}, {"time": 0.3333, "x": 13.45, "y": -27.72, "curve": 0.345, "c2": 0.53, "c3": 0.751}, - {"time": 0.4833, "x": 40.66, "y": -4.9, "curve": 0.262, "c3": 0.63, "c4": 0.42}, {"time": 0.5667, "x": 49.25, "y": 8.32, "curve": 0.343, "c2": 0.3, "c3": 0.688, "c4": 0.65}, - {"time": 0.7, "x": 9.23, "y": 17.43, "curve": 0.255, "c3": 0.659, "c4": 0.47}, {"time": 0.75, "x": -14.55, "y": -2.39} + {"curve": 0.313, "c3": 0.699}, {"time": 0.3333, "y": -6.53, "curve": 0.313, "c3": 0.699}, {"time": 0.6667, "curve": 0.313, "c3": 0.699}, + {"time": 1, "y": -8.86, "curve": 0.313, "c3": 0.699}, {"time": 1.3333} ], - "scale": [ - {"curve": 0.459, "c2": 0.59, "c3": 0.838}, {"time": 0.0333, "x": 0.935, "curve": 0.331, "c3": 0.677, "c4": 0.4}, {"time": 0.0667, "x": 0.87, "curve": 0.464, "c4": 0.7}, {"time": 0.1667} + "scale": [{"curve": 0.313, "c3": 0.699}, {"time": 0.6667, "y": 0.99, "curve": 0.313, "c3": 0.699}, {"time": 1.3333}] + }, + "@leg-front-right": { + "translate": [ + {"curve": 0.313, "c3": 0.699}, {"time": 0.3333, "x": 0.02, "y": -16.89, "curve": 0.313, "c3": 0.699}, {"time": 0.6667, "x": -0.04, "y": 2.46, "curve": 0.313, "c3": 0.699}, + {"time": 1, "x": -0.02, "y": -18.9, "curve": 0.313, "c3": 0.699}, {"time": 1.3333} ] }, - "leg-front-left-IK": { + "@leg-front-left": { "translate": [ - {"x": 0.33, "y": 2.27, "curve": 0.154, "c4": 0.9}, {"time": 0.0833, "x": 32.98, "y": -4.28, "curve": 0.269, "c2": 0.57, "c3": 0.577}, - {"time": 0.1667, "x": 53.3, "y": 2.35, "curve": 0.461, "c3": 0.543}, {"time": 0.4167, "x": -85.44, "y": 106.83, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.5167, "x": -85.78, "y": 86.09, "curve": 0.143, "c3": 0.57, "c4": 0.46}, {"time": 0.7, "x": -26.89, "y": 8.67, "curve": 0, "c2": 0.09, "c3": 0.479, "c4": 0.56}, - {"time": 0.75, "x": 0.33, "y": 2.27} + {"curve": 0.313, "c3": 0.699}, {"time": 0.3333, "x": 0.22, "y": -5.13, "curve": 0.313, "c3": 0.699}, {"time": 0.6667, "x": -0.03, "y": 1.81, "curve": 0.313, "c3": 0.699}, + {"time": 1, "x": 0.2, "y": -7.06, "curve": 0.313, "c3": 0.699}, {"time": 1.3333} + ], + "scale": [ + {"curve": 0.313, "c3": 0.699}, {"time": 0.3333, "x": 0.905, "curve": 0.313, "c3": 0.699}, {"time": 0.6667, "curve": 0.313, "c3": 0.699}, + {"time": 1, "x": 0.905, "curve": 0.313, "c3": 0.699}, {"time": 1.3333} ] }, - "leg-back-left-IK": { + "@leg-back-left": { "translate": [ - {"x": 17.64, "y": 16.11, "curve": 0.455, "c2": 0.58, "c3": 0.847}, {"time": 0.0333, "curve": 0, "c2": 0.1, "c3": 0.85}, - {"time": 0.2333, "x": -50.37, "curve": 0, "c2": 0.09, "c3": 0.466, "c4": 0.7}, {"time": 0.3, "x": 11.38, "y": 18.2, "curve": 0.177, "c2": 0.44, "c3": 0.617}, - {"time": 0.5333, "x": 56.74, "y": 103.8, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.6667, "x": 71.93, "y": 112.16, "curve": 0.315, "c4": 0.8}, {"time": 0.75, "x": 17.64, "y": 16.11} + {"curve": 0.313, "c3": 0.699}, {"time": 0.3333, "x": 0.22, "y": -4.11, "curve": 0.313, "c3": 0.699}, {"time": 0.6667, "x": -0.03, "y": 1.69, "curve": 0.313, "c3": 0.699}, + {"time": 1, "x": 0.2, "y": -5.68, "curve": 0.313, "c3": 0.699}, {"time": 1.3333} + ], + "scale": [ + {"curve": 0.313, "c3": 0.699}, {"time": 0.3333, "x": 0.943, "curve": 0.313, "c3": 0.699}, {"time": 0.6667, "curve": 0.313, "c3": 0.699}, + {"time": 1, "x": 0.943, "curve": 0.313, "c3": 0.699}, {"time": 1.3333} ] }, - "@shadow": { + "@pivot-main": { "scale": [ - {"curve": 0.313, "c3": 0.699}, {"time": 0.25, "x": 0.94, "y": 0.94, "curve": 0.313, "c3": 0.699}, {"time": 0.4333, "x": 0.8, "y": 0.8, "curve": 0.315, "c4": 0.8}, {"time": 0.75} + {"curve": 0.313, "c3": 0.699}, {"time": 0.3333, "y": 0.98, "curve": 0.313, "c3": 0.699}, {"time": 0.6667, "curve": 0.313, "c3": 0.699}, + {"time": 1, "y": 0.98, "curve": 0.313, "c3": 0.699}, {"time": 1.3333} ] }, "tail": { - "rotate": [{"curve": 0.161, "c3": 0.854}, {"time": 0.25, "angle": -20, "curve": 0, "c2": 0.3, "c3": 0.546}, {"time": 0.5, "angle": 4.21, "curve": 0.154, "c4": 0.9}, {"time": 0.75}] + "rotate": [{"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "angle": 4.54, "curve": 0.313, "c3": 0.699}, {"time": 1, "angle": -9.06, "curve": 0.313, "c3": 0.699}, {"time": 1.3333}] + }, + "back": { + "rotate": [{"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "angle": -4.27, "curve": 0.313, "c3": 0.699}, {"time": 1, "angle": 2.83, "curve": 0.313, "c3": 0.699}, {"time": 1.3333}] + }, + "ear-right": {"rotate": [{"curve": 0.461, "c3": 0.543}, {"time": 0.6667, "angle": -3.91, "curve": 0.461, "c3": 0.543}, {"time": 1.3333}]}, + "ear-left": {"rotate": [{"curve": 0.461, "c3": 0.543}, {"time": 0.6667, "angle": -3.92, "curve": 0.461, "c3": 0.543}, {"time": 1.3333}]}, + "@shadow": { + "scale": [ + {"curve": 0.306, "c3": 0.695}, {"time": 0.3333, "x": 1.05, "y": 1.05, "curve": 0.306, "c3": 0.695}, {"time": 0.6667, "curve": 0.306, "c3": 0.695}, + {"time": 1, "x": 1.05, "y": 1.05, "curve": 0.306, "c3": 0.695}, {"time": 1.3333} + ] + } + } + }, + "125468891": { + "slots": { + "eyes": {"attachment": [{"time": 0.0833, "name": "eyes-shut"}, {"time": 0.1667, "name": "eyes-angry"}, {"time": 0.5833, "name": "eyes-shut"}]}, + "mouth": {"attachment": [{"time": 0.0833, "name": "mouth-bite"}, {"time": 0.3667, "name": "mouth-open"}]} + }, + "bones": { + "@pivot-back": { + "rotate": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.15, "angle": 3.67, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.3333, "angle": -14.29, "curve": 0.854, "c4": 0.1}, + {"time": 0.3667, "angle": 15.82}, {"time": 0.45, "angle": 16.67, "curve": 0.315, "c4": 0.8}, {"time": 0.5667, "angle": 4.4, "curve": 0, "c2": 0.1, "c3": 0.85}, + {"time": 0.6333, "angle": 6.79, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.8333} + ], + "translate": [ + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.2167, "x": 8.02, "curve": 0, "c2": 0.4, "c3": 0.383}, {"time": 0.3333, "x": -54.3, "y": 61.69, "curve": 0.854, "c4": 0.1}, + {"time": 0.3667, "x": -60.41, "y": 130.13}, {"time": 0.45, "x": -60.41, "y": 130.01, "curve": 0.315, "c4": 0.8}, {"time": 0.5667} + ] }, "@leg-front-right": { "translate": [ - {"x": 7.78, "y": -11.23, "curve": 0.649, "c2": 0.4, "c4": 0.74}, {"time": 0.0167, "x": -0.64, "y": -13.16, "curve": 0.313, "c3": 0.699}, - {"time": 0.1333, "x": -9.39, "y": -16.39, "curve": 0.346, "c2": 0.44, "c3": 0.699}, {"time": 0.3167, "x": -26.29, "y": 12.52, "curve": 0, "c2": 0.18, "c3": 0.424, "c4": 0.59}, - {"time": 0.4333, "x": 7.42, "y": -10.53, "curve": 0.316, "c2": 0.49, "c3": 0.751}, {"time": 0.6, "x": 37.87, "y": -4.31, "curve": 0.289, "c3": 0.884, "c4": 0.7}, - {"time": 0.75, "x": 7.78, "y": -11.23} + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.2167, "x": -18.54, "y": -11.57}, {"time": 0.25, "x": -23.07, "y": 10.08, "curve": 0, "c2": 0.4, "c3": 0.383}, + {"time": 0.3333, "x": 29.92, "y": -4.24, "curve": 0.854, "c4": 0.1}, {"time": 0.3667, "x": 22.95, "y": 2.68, "curve": "stepped"}, + {"time": 0.45, "x": 22.95, "y": 2.68, "curve": 0.157, "c2": 0.33, "c3": 0.727}, {"time": 0.5333, "x": 29.92, "y": -4.24, "curve": 0.779, "c4": 0.4}, + {"time": 0.5667, "x": -1.45, "y": -24.11, "curve": "stepped"}, {"time": 0.6333, "x": -1.45, "y": -24.11, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.6667} + ], + "scale": [ + {"time": 0.2, "curve": 0.315, "c4": 0.8}, {"time": 0.25, "x": 1.5, "curve": 0, "c2": 0.3, "c3": 0.539}, {"time": 0.3333, "curve": 0.854, "c4": 0.1}, {"time": 0.3667, "x": 1.5}, + {"time": 0.45, "x": 1.51, "curve": 0.157, "c2": 0.33, "c3": 0.727}, {"time": 0.4833} ] }, - "leg-front-right-IK": { + "@leg-front-left": { "translate": [ - {"x": -13.57, "y": 17.19, "curve": 0.645, "c2": 0.47, "c4": 0.81}, {"time": 0.0167, "curve": 0.313, "c3": 0.699}, {"time": 0.2667, "x": 52.85, "curve": 0, "c2": 0.3, "c3": 0.544}, - {"time": 0.5, "x": -85.89, "y": 125.19}, {"time": 0.6, "x": -87.57, "y": 110.89, "curve": 0.142, "c3": 0.858, "c4": 0.77}, {"time": 0.75, "x": -13.57, "y": 17.19} + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.2167, "x": -6.84, "y": -9.77, "curve": "stepped"}, {"time": 0.5667, "x": -6.84, "y": -9.77, "curve": 0, "c2": 0.1, "c3": 0.85}, + {"time": 0.6333, "x": -6.29, "y": -18.69, "curve": 0, "c2": 0.23, "c3": 0.365, "c4": 0.58}, {"time": 0.6667, "x": -3.64, "y": -2.46, "curve": 0.177, "c2": 0.35, "c3": 0.731}, + {"time": 0.8333} ] }, "@leg-back-left": { "translate": [ - {"x": -4.73, "y": 6.6, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.15, "x": 1.29, "y": -4.22, "curve": 0.44, "c2": 0.55, "c3": 0.858}, - {"time": 0.25, "x": 2.16, "y": 6.49, "curve": 0, "c2": 0.09, "c3": 0.466, "c4": 0.7}, {"time": 0.3, "x": -5.17, "y": 15.67, "curve": 0.218, "c2": 0.39, "c3": 0.738}, - {"time": 0.5333, "x": -14.09, "y": -7.98, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.6667, "x": -12.69, "y": -11.31, "curve": 0.315, "c4": 0.8}, {"time": 0.75, "x": -4.73, "y": 6.6} - ], - "scale": [{"curve": 0, "c2": 0.1, "c3": 0.457, "c4": 0.54}, {"time": 0.0667, "x": 0.837, "curve": 0.395, "c2": 0.49, "c3": 0.868}, {"time": 0.15}] + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.2167, "x": -0.11, "y": -2.73, "curve": "stepped"}, {"time": 0.5667, "x": -0.11, "y": -2.73, "curve": 0, "c2": 0.1, "c3": 0.85}, + {"time": 0.6333, "x": -0.46, "y": -6.19, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.8333} + ] }, - "@pivot-back": { - "rotate": [ - {"angle": 3.74, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "angle": 1.5, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.25, "angle": -2, "curve": 0, "c2": 0.1, "c3": 0.85}, - {"time": 0.35, "angle": -5, "curve": 0.154, "c4": 0.9}, {"time": 0.6667, "angle": 5, "curve": 0.154, "c4": 0.9}, {"time": 0.75, "angle": 3.74} + "@pivot-main": { + "translate": [ + {"time": 0.15, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "x": -73.35, "y": 43, "curve": "stepped"}, {"time": 0.45, "x": -73.35, "y": 43, "curve": 0.315, "c4": 0.8}, + {"time": 0.5667, "x": -146.44, "curve": "stepped"}, {"time": 0.6333, "x": -146.44, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.7333, "x": -45.61, "y": 50.15, "curve": 0.315, "c4": 0.8}, {"time": 0.8333} ], + "scale": [{"time": 0.5667, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.6333, "y": 0.98, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.7333}] + }, + "leg-front-right-IK": { "translate": [ - {"y": 8, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "y": -10, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.25, "curve": 0, "c2": 0.1, "c3": 0.85}, - {"time": 0.5667, "y": 80.61, "curve": 0.154, "c4": 0.9}, {"time": 0.75, "y": 8} + {"time": 0.15, "curve": 0, "c2": 0.18, "c3": 0.416, "c4": 0.58}, {"time": 0.2167, "x": 49.59, "y": 35.17}, {"time": 0.25, "x": -2.16, "y": 99.87, "curve": 0, "c2": 0.6, "c3": 0.237}, + {"time": 0.3333, "x": -158.6, "y": 254.45, "curve": 0.854, "c4": 0.1}, {"time": 0.3667, "x": -48.06, "y": 31.6}, {"time": 0.45, "x": -24.61, "y": 31.6, "curve": 0.315, "c4": 0.8}, + {"time": 0.5667, "curve": "stepped"}, {"time": 0.6333, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.6667, "x": -14.68, "y": -19.57, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.8333} ] }, - "@pivot-main": {"scale": [{"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1333, "y": 0.85, "curve": 0.306, "c4": 0.8}, {"time": 0.25}]}, - "ear-right": { - "rotate": [ - {"angle": 6.45, "curve": 0.306, "c3": 0.695}, {"time": 0.25, "angle": -6.15, "curve": 0.306, "c3": 0.695}, {"time": 0.5, "angle": -7.47, "curve": 0.306, "c3": 0.695}, - {"time": 0.75, "angle": 6.45} + "leg-front-left-IK": { + "translate": [ + {"time": 0.15, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "x": -54.88, "y": 124.95, "curve": 0.854, "c4": 0.1}, {"time": 0.3667, "x": 37.97, "y": 122.64}, + {"time": 0.45, "x": 48.96, "y": 138.43, "curve": 0.315, "c4": 0.8}, {"time": 0.5667, "curve": "stepped"}, {"time": 0.6333, "curve": 0, "c2": 0.1, "c3": 0.85}, + {"time": 0.6667, "x": -7.79, "y": -10.12, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.8333} ] }, - "ear-left": { - "rotate": [ - {"angle": 6.45, "curve": 0.306, "c3": 0.695}, {"time": 0.25, "angle": -6.15, "curve": 0.306, "c3": 0.695}, {"time": 0.5, "angle": -7.47, "curve": 0.306, "c3": 0.695}, - {"time": 0.75, "angle": 6.45} + "leg-back-left-IK": { + "translate": [ + {"time": 0.0833, "curve": 0.332, "c3": 0.682, "c4": 0.41}, {"time": 0.2167, "x": 21.57, "y": 4.03, "curve": 0, "c2": 0.4, "c3": 0.383}, + {"time": 0.3333, "x": -50.73, "y": 91.08, "curve": 0.854, "c4": 0.1}, {"time": 0.3667, "x": 19.18, "y": 184.64}, {"time": 0.45, "x": 25.59, "y": 197.69, "curve": 0.315, "c4": 0.8}, + {"time": 0.5667, "curve": "stepped"}, {"time": 0.6333, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.75, "x": 24.35, "y": 13.92, "curve": 0.154, "c4": 0.9}, {"time": 0.8333} ] }, - "back": {"rotate": [{"curve": 0.306, "c3": 0.695}, {"time": 0.25, "angle": 9.32, "curve": 0.306, "c3": 0.695}, {"time": 0.5, "angle": -5.11, "curve": 0.306, "c3": 0.695}, {"time": 0.75}]}, - "body-fur-01": { + "tail": { "rotate": [ - {"angle": 5.91, "curve": 0.389, "c2": 0.48, "c3": 0.708}, {"time": 0.2, "angle": -35.49}, {"time": 0.5833, "angle": 26.07, "curve": 0.389, "c2": 0.01, "c3": 0.715, "c4": 0.48}, - {"time": 0.75, "angle": 5.91} + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.15, "angle": 14.68, "curve": 0.315, "c4": 0.8}, {"time": 0.2167, "angle": -12.57}, + {"time": 0.3333, "angle": -14.89, "curve": 0.854, "c4": 0.1}, {"time": 0.3667, "angle": 25.96}, {"time": 0.45, "angle": 33.77}, + {"time": 0.6167, "angle": 26.39, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.7167, "angle": -14.8, "curve": 0.154, "c4": 0.9}, {"time": 0.8333} ] }, - "body-fur-02": { + "@shadow": { + "translate": [ + {"time": 0.15, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.3333, "x": -132.39, "curve": 0.854, "c4": 0.1}, {"time": 0.3667, "x": -111.3, "curve": "stepped"}, + {"time": 0.45, "x": -111.3, "curve": 0.315, "c4": 0.8}, {"time": 0.5667, "x": -132.39, "curve": "stepped"}, {"time": 0.6333, "x": -132.39, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.8333} + ], + "scale": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.15, "x": 1.05, "y": 1.05, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.3333, "x": 0.93, "y": 0.93, "curve": 0.854, "c4": 0.1}, + {"time": 0.3667, "x": 0.95, "y": 0.95}, {"time": 0.45, "x": 0.97, "y": 0.97, "curve": 0.315, "c4": 0.8}, {"time": 0.5667, "x": 1.05, "y": 1.05, "curve": 0, "c2": 0.1, "c3": 0.85}, + {"time": 0.6333, "x": 1.07, "y": 1.07, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.8333} + ] + } + }, + "events": [{"time": 0.3333, "name": "start-attack"}, {"time": 0.3667, "name": "hit"}] + }, + "1435906176": { + "slots": {"eyes": {"attachment": [{"time": 0.9167, "name": "eyes-shut"}]}}, + "bones": { + "@pivot-back": {"translate": [{"y": -97.74, "curve": 0.393, "c3": 0.303}, {"time": 0.6667, "y": -82.74, "curve": 0.387, "c3": 0.309}, {"time": 1.3333, "y": -97.74}]}, + "@leg-front-left": { "rotate": [ - {"angle": 22.47, "curve": 0.397, "c2": 0.23, "c3": 0.719, "c4": 0.71}, {"time": 0.2, "angle": -19.23, "curve": 0.356, "c2": 0.59, "c3": 0.686}, {"time": 0.3, "angle": -35.49}, - {"time": 0.6833, "angle": 26.07, "curve": 0.355, "c2": 0.02, "c3": 0.687, "c4": 0.39}, {"time": 0.75, "angle": 22.47} + {"curve": 0, "c2": 0.1, "c3": 0.856}, {"time": 0.3333, "angle": -17.48, "curve": 0.15, "c3": 0.926}, {"time": 0.7333, "curve": 0, "c2": 0.05, "c3": 0.692}, + {"time": 1.05, "angle": 8.38, "curve": 0.24, "c3": 0.769}, {"time": 1.3333} ] }, - "body-fur-03": { + "@leg-front-right": { "rotate": [ - {"angle": -6.24, "curve": 0.371, "c2": 0.54, "c3": 0.697}, {"time": 0.15, "angle": -35.49}, {"time": 0.5333, "angle": 26.07, "curve": 0.406, "c2": 0.01, "c3": 0.727, "c4": 0.55}, - {"time": 0.75, "angle": -6.24} + {"curve": 0, "c2": 0.1, "c3": 0.856}, {"time": 0.3333, "angle": 9.43, "curve": 0.15, "c3": 0.926}, {"time": 0.7333, "curve": 0, "c2": 0.05, "c3": 0.692}, + {"time": 1.05, "angle": -11.74, "curve": 0.24, "c3": 0.769}, {"time": 1.3333} ] }, - "body-fur-04": { + "@leg-back-left": { "rotate": [ - {"angle": 15.47, "curve": 0.379, "c2": 0.31, "c3": 0.706, "c4": 0.72}, {"time": 0.15, "angle": -19.23, "curve": 0.356, "c2": 0.59, "c3": 0.686}, {"time": 0.25, "angle": -35.49}, - {"time": 0.6333, "angle": 26.07, "curve": 0.372, "c2": 0.01, "c3": 0.702, "c4": 0.43}, {"time": 0.75, "angle": 15.47} + {"curve": 0, "c2": 0.1, "c3": 0.856}, {"time": 0.3333, "angle": -12.53, "curve": 0.15, "c3": 0.926}, {"time": 0.7333, "curve": 0, "c2": 0.05, "c3": 0.692}, + {"time": 1.05, "angle": 9.41, "curve": 0.24, "c3": 0.769}, {"time": 1.3333} ] }, - "body-fur-05": { + "tail": { "rotate": [ - {"angle": -19.23, "curve": 0.356, "c2": 0.59, "c3": 0.686}, {"time": 0.1, "angle": -35.49}, {"time": 0.4833, "angle": 26.07, "curve": 0.423, "c2": 0.01, "c3": 0.737, "c4": 0.65}, - {"time": 0.75, "angle": -19.23} + {"curve": 0, "c2": 0.05, "c3": 0.691}, {"time": 0.3333, "angle": -5.06, "curve": 0.304, "c3": 0.689}, {"time": 0.7333, "angle": -0.77}, + {"time": 1.05, "angle": 2.12, "curve": 0.234, "c4": 0.9}, {"time": 1.3333} ] }, - "body-fur-06": { + "@shadow": {"scale": [{"x": 1.3, "y": 1.3, "curve": 0.387, "c3": 0.314}, {"time": 0.6667, "x": 1.25, "y": 1.25, "curve": 0.387, "c3": 0.314}, {"time": 1.3333, "x": 1.3, "y": 1.3}]} + } + }, + "3694724283": { + "slots": { + "ball": { + "color": [ + {"color": "ffffff00", "curve": "stepped"}, {"time": 0.1667, "color": "ffffff00", "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "color": "ffffffff", "curve": "stepped"}, + {"time": 2.9167, "color": "ffffffff", "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 3.0833, "color": "ffffff00"} + ], + "attachment": [{"name": "ball"}] + }, + "eyes": {"attachment": [{"time": 0.5, "name": "eyes-shut"}]}, + "mouth": {"attachment": [{"time": 0.1833, "name": "mouth-open"}]} + }, + "bones": { + "@pivot-back": { "rotate": [ - {"angle": 5.34, "curve": 0.362, "c2": 0.35, "c3": 0.692, "c4": 0.72}, {"time": 0.1, "angle": -19.23, "curve": 0.356, "c2": 0.59, "c3": 0.686}, - {"time": 0.2, "angle": -35.49, "curve": 0.25, "c3": 0.75}, {"time": 0.5833, "angle": 26.07, "curve": 0.389, "c2": 0.01, "c3": 0.715, "c4": 0.48}, {"time": 0.75, "angle": 5.34} + {"curve": 0, "c2": 0.3, "c3": 0.546}, {"time": 0.1667, "angle": 6, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "angle": -6.98, "curve": 0.464, "c4": 0.7}, + {"time": 0.5, "angle": 3, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.6667, "curve": "stepped"}, {"time": 2.5833, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 2.75, "angle": 6, "curve": 0, "c2": 0.3, "c3": 0.546}, {"time": 2.9167, "angle": -6, "curve": 0.464, "c4": 0.7}, + {"time": 3.0833, "angle": 6, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 3.25} + ], + "translate": [ + {"curve": 0, "c2": 0.3, "c3": 0.546}, {"time": 0.1667, "y": 1.78, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "y": 353.14, "curve": 0.464, "c4": 0.7}, + {"time": 0.5, "y": 255, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.6667, "y": 267.67, "curve": 0.156, "c3": 0.693}, + {"time": 1.1667, "x": -30, "y": 267.67, "curve": 0.317, "c3": 0.693}, {"time": 2.1667, "x": 50, "y": 267.67, "curve": 0.317, "c3": 0.693}, + {"time": 2.5833, "y": 267.67, "curve": "stepped"}, {"time": 2.75, "y": 267.67, "curve": 0, "c2": 0.3, "c3": 0.546}, {"time": 2.9167, "y": 310, "curve": 0.464, "c4": 0.7}, + {"time": 3.0833} ] }, - "body-fur-07": { - "rotate": [ - {"angle": -30.29, "curve": 0.343, "c2": 0.63, "c3": 0.676}, {"time": 0.05, "angle": -35.49, "curve": 0.25, "c3": 0.75}, - {"time": 0.4333, "angle": 26.07, "curve": 0.439, "c2": 0.01, "c3": 0.745, "c4": 0.79}, {"time": 0.75, "angle": -30.29} + "@leg-front-right": { + "translate": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": -2.8, "y": -31.7, "curve": 0, "c2": 0.3, "c3": 0.546}, {"time": 0.25, "curve": "stepped"}, + {"time": 2.5833, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 2.75, "x": -2.8, "y": -31.7, "curve": 0.315, "c4": 0.8}, {"time": 2.8333, "curve": "stepped"}, + {"time": 3, "curve": 0.315, "c4": 0.8}, {"time": 3.0833, "x": -2.86, "y": -32.44, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 3.25} ] }, - "body-fur-08": { - "rotate": [{"angle": -35.49, "curve": 0.455, "c2": 0.01, "c3": 0.75}, {"time": 0.3833, "angle": 26.07, "curve": 0.455, "c2": 0.01, "c3": 0.75}, {"time": 0.75, "angle": -35.49}] + "@leg-front-left": { + "translate": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": -1.46, "y": -16.59, "curve": 0, "c2": 0.3, "c3": 0.546}, {"time": 0.25, "curve": "stepped"}, + {"time": 2.5833, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 2.75, "x": -1.46, "y": -16.59, "curve": 0.315, "c4": 0.8}, {"time": 2.8333, "curve": "stepped"}, + {"time": 3, "curve": 0.315, "c4": 0.8}, {"time": 3.0833, "x": -1.64, "y": -18.64, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 3.25} + ] }, - "body-fur-09": { - "rotate": [ - {"angle": -19.23, "curve": 0.356, "c2": 0.59, "c3": 0.686}, {"time": 0.1, "angle": -35.49}, {"time": 0.4833, "angle": 26.07, "curve": 0.423, "c2": 0.01, "c3": 0.737, "c4": 0.65}, - {"time": 0.75, "angle": -19.23} + "leg-front-left-IK": { + "translate": [ + {"time": 0.1667, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "x": -6.9, "y": 380.8, "curve": 0.315, "c4": 0.8}, {"time": 0.5, "x": -5.5, "y": 268.35, "curve": "stepped"}, + {"time": 0.6667, "x": -5.5, "y": 268.35, "curve": 0.317, "c3": 0.693}, {"time": 0.9167, "x": -38.87, "y": 268.35, "curve": 0.317, "c3": 0.693}, + {"time": 1.1667, "x": -10.16, "y": 268.35, "curve": 0.317, "c3": 0.693}, {"time": 1.4167, "x": -39.65, "y": 268.35, "curve": 0.317, "c3": 0.693}, + {"time": 1.6667, "x": 23.98, "y": 268.35, "curve": 0.317, "c3": 0.693}, {"time": 1.9167, "x": 5.36, "y": 268.35, "curve": 0.317, "c3": 0.693}, + {"time": 2.1667, "x": 67.44, "y": 268.35, "curve": 0.317, "c3": 0.693}, {"time": 2.4167, "x": -3.95, "y": 268.35, "curve": 0.317, "c3": 0.693}, + {"time": 2.5833, "x": -5.5, "y": 268.35, "curve": "stepped"}, {"time": 2.9167, "x": -5.5, "y": 268.35, "curve": 0.315, "c4": 0.8}, {"time": 3.0833} ] }, - "body-fur-10": { - "rotate": [ - {"angle": -15.74, "curve": 0.346, "c2": 0.39, "c3": 0.678, "c4": 0.73}, {"time": 0.05, "angle": -27.05, "curve": 0.347, "c2": 0.62, "c3": 0.679}, - {"time": 0.1167, "angle": -35.49, "curve": 0.25, "c3": 0.75}, {"time": 0.5, "angle": 26.07, "curve": 0.417, "c2": 0.01, "c3": 0.734, "c4": 0.61}, {"time": 0.75, "angle": -15.74} + "leg-front-right-IK": { + "translate": [ + {"time": 0.1667, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "x": -6.9, "y": 397.8, "curve": 0.315, "c4": 0.8}, {"time": 0.5, "x": 15.4, "y": 268.08, "curve": "stepped"}, + {"time": 0.6667, "x": 15.4, "y": 268.08, "curve": 0.317, "c3": 0.693}, {"time": 0.9167, "x": 24.64, "y": 268.08, "curve": 0.317, "c3": 0.693}, + {"time": 1.1667, "x": -41.71, "y": 268.08, "curve": 0.317, "c3": 0.693}, {"time": 1.4167, "x": 22.12, "y": 268.08, "curve": 0.317, "c3": 0.693}, + {"time": 1.6667, "x": -0.56, "y": 268.08, "curve": 0.317, "c3": 0.693}, {"time": 1.9167, "x": 61.6, "y": 268.08, "curve": 0.317, "c3": 0.693}, + {"time": 2.1667, "x": 33.88, "y": 268.08, "curve": 0.317, "c3": 0.693}, {"time": 2.4167, "x": 49, "y": 268.08, "curve": 0.317, "c3": 0.693}, + {"time": 2.5833, "x": 15.4, "y": 268.08, "curve": "stepped"}, {"time": 2.9167, "x": 15.4, "y": 268.08, "curve": 0.315, "c4": 0.8}, {"time": 3.0833} ] }, - "body-fur-11": { - "rotate": [ - {"angle": -19.23, "curve": 0.356, "c2": 0.59, "c3": 0.686}, {"time": 0.1, "angle": -35.49, "curve": 0.25, "c3": 0.75}, - {"time": 0.4833, "angle": 26.07, "curve": 0.423, "c2": 0.01, "c3": 0.737, "c4": 0.65}, {"time": 0.75, "angle": -19.23} + "leg-back-left-IK": { + "translate": [ + {"time": 0.1667, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "x": -0.4, "y": 363.25, "curve": 0.315, "c4": 0.8}, {"time": 0.5, "x": -26.16, "y": 267.01}, + {"time": 0.6667, "x": -33.59, "y": 267.01, "curve": 0.317, "c3": 0.693}, {"time": 0.9167, "x": -22.32, "y": 267.01, "curve": 0.317, "c3": 0.693}, + {"time": 1.1667, "x": -63.32, "y": 267.01, "curve": 0.317, "c3": 0.693}, {"time": 1.4167, "x": -28.35, "y": 267.01, "curve": 0.317, "c3": 0.693}, + {"time": 1.6667, "x": -28.02, "y": 267.01, "curve": 0.317, "c3": 0.693}, {"time": 1.9167, "x": 14.36, "y": 267.01, "curve": 0.317, "c3": 0.693}, + {"time": 2.1667, "x": 9.14, "y": 267.01, "curve": 0.317, "c3": 0.693}, {"time": 2.4167, "x": 11.99, "y": 267.01, "curve": 0.317, "c3": 0.693}, + {"time": 2.6667, "x": -33.59, "y": 267.01, "curve": "stepped"}, {"time": 2.9167, "x": -33.59, "y": 267.01, "curve": 0.315, "c4": 0.8}, {"time": 3.0833} ] }, - "body-fur-12": { + "@ball": { "rotate": [ - {"angle": -2.04, "curve": 0.377, "c2": 0.52, "c3": 0.701}, {"time": 0.1667, "angle": -35.49, "curve": 0.25, "c3": 0.75}, - {"time": 0.55, "angle": 26.07, "curve": 0.4, "c2": 0.01, "c3": 0.723, "c4": 0.53}, {"time": 0.75, "angle": -2.04} + {"time": 0.6667, "curve": 0.156, "c3": 0.693}, {"time": 1.1667, "angle": 18, "curve": 0.317, "c3": 0.693}, {"time": 2.1667, "angle": -18, "curve": 0.317, "c3": 0.693}, {"time": 2.75} + ], + "translate": [ + {"time": 0.6667, "curve": 0.156, "c3": 0.693}, {"time": 1.1667, "x": -32, "curve": 0.317, "c3": 0.693}, {"time": 2.1667, "x": 32, "curve": 0.317, "c3": 0.693}, {"time": 2.75} + ], + "scale": [ + {"x": 0, "y": 0, "curve": "stepped"}, {"time": 0.1667, "x": 0, "y": 0, "curve": 0, "c2": 0.6, "c3": 0.237}, {"time": 0.3333, "x": 1.2, "y": 1.2, "curve": 0.315, "c4": 0.8}, + {"time": 0.5, "curve": "stepped"}, {"time": 2.75, "curve": 0, "c2": 0.3, "c3": 0.546}, {"time": 2.9167, "x": 1.2, "y": 1.2, "curve": 0.315, "c4": 0.8}, {"time": 3.0833, "x": 0, "y": 0} ] }, - "body-fur-13": { - "rotate": [ - {"angle": 15.71, "curve": 0.349, "c2": 0.31, "c3": 0.681, "c4": 0.65}, {"time": 0.05, "angle": 5.91, "curve": 0.389, "c2": 0.48, "c3": 0.708}, - {"time": 0.25, "angle": -35.49, "curve": 0.25, "c3": 0.75}, {"time": 0.6333, "angle": 26.07, "curve": 0.372, "c2": 0.01, "c3": 0.702, "c4": 0.43}, {"time": 0.75, "angle": 15.71} + "ball": { + "scale": [ + {"time": 0.3333, "curve": 0.617, "c4": 0.6}, {"time": 0.5, "x": 1.2, "y": 0.802, "curve": 0, "c2": 0.39, "c3": 0.387}, {"time": 0.6667, "curve": "stepped"}, + {"time": 2.5833, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 2.75, "x": 1.2, "y": 0.9, "curve": 0, "c2": 0.3, "c3": 0.546}, {"time": 2.9167} ] }, - "body-fur-14": { + "@pivot-center": { "rotate": [ - {"angle": 25.81, "curve": 0.35, "c2": 0.15, "c3": 0.682, "c4": 0.51}, {"time": 0.05, "angle": 22.47, "curve": 0.397, "c2": 0.23, "c3": 0.719, "c4": 0.71}, - {"time": 0.25, "angle": -19.23, "curve": 0.356, "c2": 0.59, "c3": 0.686}, {"time": 0.35, "angle": -35.49}, - {"time": 0.7333, "angle": 26.07, "curve": 0.339, "c2": 0.05, "c3": 0.672, "c4": 0.4}, {"time": 0.75, "angle": 25.81} + {"time": 0.6667, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.9167, "angle": 2, "curve": 0.461, "c3": 0.543}, {"time": 1.4167, "angle": -2, "curve": 0.461, "c3": 0.543}, + {"time": 1.9167, "angle": 2, "curve": 0.461, "c3": 0.543}, {"time": 2.4167, "angle": -2, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 2.75} ] }, - "body-fur-15": { - "rotate": [ - {"angle": 12.91, "curve": 0.401, "c2": 0.42, "c3": 0.717}, {"time": 0.2333, "angle": -35.49, "curve": 0.25, "c3": 0.75}, - {"time": 0.6167, "angle": 26.07, "curve": 0.378, "c2": 0.01, "c3": 0.707, "c4": 0.45}, {"time": 0.75, "angle": 12.91} + "@shadow": { + "translate": [ + {"time": 0.6667, "curve": 0.317, "c3": 0.693}, {"time": 1.1667, "x": -32, "curve": 0.317, "c3": 0.693}, {"time": 2.1667, "x": 32, "curve": 0.317, "c3": 0.693}, {"time": 2.5833} + ], + "scale": [ + {"curve": 0, "c2": 0.3, "c3": 0.546}, {"time": 0.1667, "x": 1.1, "y": 1.1, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "curve": 0.464, "c4": 0.7}, + {"time": 0.5, "x": 1.06, "y": 1.06, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.6667, "curve": "stepped"}, {"time": 2.5833, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 2.75, "x": 1.06, "y": 1.06, "curve": 0, "c2": 0.3, "c3": 0.546}, {"time": 2.9167, "curve": 0.464, "c4": 0.7}, + {"time": 3.0833, "x": 1.1, "y": 1.1, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 3.25} ] }, - "body-fur-16": { + "tail": { "rotate": [ - {"angle": 20.54, "curve": 0.421, "c2": 0.32, "c3": 0.729}, {"time": 0.2833, "angle": -35.49, "curve": 0.25, "c3": 0.75}, - {"time": 0.6667, "angle": 26.07, "curve": 0.361, "c2": 0.01, "c3": 0.692, "c4": 0.4}, {"time": 0.75, "angle": 20.54} + {"curve": 0, "c2": 0.3, "c3": 0.546}, {"time": 0.1667, "angle": 17.35, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "angle": -14.67, "curve": 0.464, "c4": 0.7}, + {"time": 0.5, "angle": 19.12, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.6667, "angle": -10.65, "curve": 0.317, "c3": 0.693}, + {"time": 0.9167, "angle": -0.65, "curve": 0.317, "c3": 0.693}, {"time": 1.1667, "angle": -10.65, "curve": 0.317, "c3": 0.693}, + {"time": 1.4167, "angle": -0.65, "curve": 0.317, "c3": 0.693}, {"time": 1.6667, "angle": -10.65, "curve": 0.317, "c3": 0.693}, + {"time": 1.9167, "angle": -0.65, "curve": 0.317, "c3": 0.693}, {"time": 2.1667, "angle": -10.65, "curve": 0.317, "c3": 0.693}, + {"time": 2.4167, "angle": -0.65, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 2.5833, "angle": -10.65, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 2.75, "angle": 19.35, "curve": 0, "c2": 0.3, "c3": 0.546}, {"time": 2.9167, "angle": -18.65, "curve": 0, "c2": 0.3, "c3": 0.546}, + {"time": 3.0833, "angle": 17.35, "curve": 0.317, "c3": 0.693}, {"time": 3.25} ] } } }, - "2477462439": { - "slots": {"leg-front-left": {"attachment": [{"time": 0.2, "name": "leg-front-left-stretch"}, {"time": 0.6667, "name": "leg-front-left"}]}}, + "1366930187": { + "slots": { + "eyes": {"attachment": [{"time": 0.0833, "name": "eyes-happy"}]}, + "leg-back-left": {"attachment": [{"time": 0.0667, "name": "leg-back-left-long"}, {"time": 0.9, "name": "leg-back-left"}]}, + "mouth": {"attachment": [{"time": 0.0833, "name": "mouth-smile"}]} + }, "bones": { "@pivot-back": { - "translate": [ - {"y": 8, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "y": -10, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.25, "curve": 0, "c2": 0.1, "c3": 0.85}, - {"time": 0.5833, "y": 80.61, "curve": 0.154, "c4": 0.9}, {"time": 0.75, "y": 8} - ] - }, - "@leg-front-left": { - "translate": [ - {"x": -14.55, "y": -2.39, "curve": 0.374, "c2": 0.33, "c3": 0.72, "c4": 0.68}, {"time": 0.0333, "x": -24.61, "y": -1.31, "curve": "stepped"}, - {"time": 0.1667, "x": -24.61, "y": -1.31, "curve": 0.37, "c2": 0.57, "c3": 0.746}, {"time": 0.3333, "x": 13.45, "y": -27.72, "curve": 0.345, "c2": 0.53, "c3": 0.751}, - {"time": 0.4833, "x": 40.66, "y": -4.9, "curve": 0.255, "c3": 0.673, "c4": 0.49}, {"time": 0.5833, "x": 39.16, "y": 14.5, "curve": 0.565, "c2": 0.41, "c4": 0.82}, - {"time": 0.6667, "x": 1.05, "y": 16.15, "curve": 0.255, "c3": 0.659, "c4": 0.47}, {"time": 0.75, "x": -14.55, "y": -2.39} + "rotate": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "angle": -18, "curve": 0.317, "c3": 0.693}, {"time": 0.3333, "angle": -17, "curve": 0.317, "c3": 0.693}, + {"time": 0.5, "angle": -18, "curve": 0.317, "c3": 0.693}, {"time": 0.6667, "angle": -17, "curve": 0.317, "c3": 0.693}, {"time": 0.8333, "angle": -18, "curve": 0.317, "c3": 0.693}, + {"time": 1.0833} ], - "scale": [ - {"x": 0.969, "curve": 0.459, "c2": 0.59, "c3": 0.838}, {"time": 0.0333, "x": 0.961, "curve": 0.154, "c4": 0.9}, {"time": 0.1667, "x": 1.075, "curve": 0, "c2": 0.1, "c3": 0.85}, - {"time": 0.3333, "curve": "stepped"}, {"time": 0.6667, "curve": 0, "c2": 0.09, "c3": 0.589, "c4": 0.67}, {"time": 0.75, "x": 0.969} - ] - }, - "leg-front-left-IK": { "translate": [ - {"x": 4.88, "y": 20.49, "curve": 0.416, "c2": 0.51, "c3": 0.865}, {"time": 0.0833, "x": 28.75, "y": 34.52, "curve": 0.269, "c2": 0.57, "c3": 0.577}, - {"time": 0.1667, "x": 31.44, "y": 44.28, "curve": 0.461, "c3": 0.543}, {"time": 0.4167, "x": -85.44, "y": 106.83}, - {"time": 0.5167, "x": -87.18, "y": 81.5, "curve": 0.143, "c3": 0.57, "c4": 0.46}, {"time": 0.6667, "x": -21.75, "y": 25.36, "curve": 0, "c2": 0.09, "c3": 0.479, "c4": 0.56}, - {"time": 0.75, "x": 4.88, "y": 20.49} + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": 33.94, "y": -52, "curve": "stepped"}, {"time": 0.8333, "x": 33.94, "y": -52, "curve": 0.317, "c3": 0.693}, {"time": 1.0833} ] }, - "leg-back-left-IK": { + "@leg-front-left": { "translate": [ - {"x": 17.64, "y": 16.11, "curve": 0.455, "c2": 0.58, "c3": 0.847}, {"time": 0.0333, "curve": 0, "c2": 0.1, "c3": 0.85}, - {"time": 0.2333, "x": -50.37, "curve": 0, "c2": 0.09, "c3": 0.466, "c4": 0.7}, {"time": 0.3, "x": 11.38, "y": 18.2, "curve": 0.177, "c2": 0.44, "c3": 0.617}, - {"time": 0.5333, "x": 56.74, "y": 103.8, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.6667, "x": 71.93, "y": 112.16, "curve": 0.139, "c3": 0.671, "c4": 0.58}, - {"time": 0.75, "x": 17.64, "y": 16.11} - ] - }, - "@shadow": { - "scale": [ - {"curve": 0.313, "c3": 0.699}, {"time": 0.25, "x": 0.94, "y": 0.94, "curve": 0.313, "c3": 0.699}, {"time": 0.4333, "x": 0.8, "y": 0.8, "curve": 0.315, "c4": 0.8}, {"time": 0.75} + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": -27.99, "y": 1.7, "curve": 0.25, "c3": 0.75}, {"time": 0.3333, "x": -26.93, "y": -1.56, "curve": 0.25, "c3": 0.75}, + {"time": 0.5, "x": -27.99, "y": 1.7, "curve": 0.25, "c3": 0.75}, {"time": 0.6667, "x": -26.93, "y": -1.56, "curve": 0.25, "c3": 0.75}, + {"time": 0.8333, "x": -27.99, "y": 1.7, "curve": 0.317, "c3": 0.693}, {"time": 1.0833} ] }, - "@pivot-main": {"scale": [{"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "y": 0.98, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.25}]}, "@leg-front-right": { "translate": [ - {"x": -0.64, "y": -13.16, "curve": 0.313, "c3": 0.654, "c4": 0.45}, {"time": 0.1167, "x": -9.39, "y": -16.39, "curve": 0.346, "c2": 0.44, "c3": 0.699}, - {"time": 0.3, "x": -26.29, "y": 12.52, "curve": 0, "c2": 0.18, "c3": 0.424, "c4": 0.59}, {"time": 0.4167, "x": 7.42, "y": -10.53, "curve": 0.316, "c2": 0.49, "c3": 0.751}, - {"time": 0.5833, "x": 37.87, "y": -4.31, "curve": 0.315, "c4": 0.8}, {"time": 0.75, "x": -0.64, "y": -13.16} + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": -84.32, "y": 39.72, "curve": 0.317, "c3": 0.693}, {"time": 0.3333, "x": -82.71, "y": 34.75, "curve": 0.317, "c3": 0.693}, + {"time": 0.5, "x": -84.32, "y": 39.72, "curve": 0.317, "c3": 0.693}, {"time": 0.6667, "x": -82.71, "y": 34.75, "curve": 0.317, "c3": 0.693}, + {"time": 0.8333, "x": -84.32, "y": 39.72, "curve": 0.317, "c3": 0.693}, {"time": 1.0833} ] }, - "@leg-back-left": { - "translate": [ - {"x": -4.73, "y": 6.6, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.15, "x": 1.29, "y": -4.22, "curve": 0.44, "c2": 0.55, "c3": 0.858}, - {"time": 0.25, "x": 2.16, "y": 6.49, "curve": 0, "c2": 0.09, "c3": 0.466, "c4": 0.7}, {"time": 0.3, "x": -5.17, "y": 15.67, "curve": 0.218, "c2": 0.39, "c3": 0.738}, - {"time": 0.5333, "x": -14.09, "y": -7.98, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.6667, "x": -12.69, "y": -11.31, "curve": 0.139, "c3": 0.671, "c4": 0.58}, - {"time": 0.75, "x": -4.73, "y": 6.6} - ], - "scale": [{"curve": 0, "c2": 0.1, "c3": 0.457, "c4": 0.54}, {"time": 0.0667, "x": 0.837, "curve": 0.395, "c2": 0.49, "c3": 0.868}, {"time": 0.15}] - }, "leg-front-right-IK": { + "translate": [{"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": 40.32, "curve": "stepped"}, {"time": 0.8333, "x": 40.32, "curve": 0.317, "c3": 0.693}, {"time": 1.0833}] + }, + "leg-front-left-IK": { + "translate": [{"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": 26.51, "curve": "stepped"}, {"time": 0.8333, "x": 26.51, "curve": 0.317, "c3": 0.693}, {"time": 1.0833}] + }, + "leg-back-left-IK": { "translate": [ - {"curve": 0.313, "c3": 0.699}, {"time": 0.25, "x": 52.85, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.4833, "x": -85.89, "y": 125.19}, - {"time": 0.5833, "x": -87.57, "y": 110.89, "curve": 0.154, "c4": 0.9}, {"time": 0.75} + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": -30.93, "y": 88.63, "curve": 0.617, "c4": 0.6}, {"time": 0.2667, "x": -62.81, "y": 72.23, "curve": 0, "c2": 0.4, "c3": 0.383}, + {"time": 0.35, "x": -28.19, "y": 96.83, "curve": 0.617, "c4": 0.6}, {"time": 0.45, "x": -62.81, "y": 72.23, "curve": 0, "c2": 0.4, "c3": 0.383}, + {"time": 0.55, "x": -28.19, "y": 96.83, "curve": 0.617, "c4": 0.6}, {"time": 0.6333, "x": -62.81, "y": 72.23, "curve": 0, "c2": 0.4, "c3": 0.383}, + {"time": 0.7333, "x": -28.19, "y": 96.83, "curve": 0.434, "c3": 0.739, "c4": 0.4}, {"time": 0.8333, "x": -56.92, "y": 76.7, "curve": 0.223, "c2": 0.33, "c3": 0.336}, {"time": 1.0833} ] }, - "body-fur-15": { + "tail": { "rotate": [ - {"angle": 12.91, "curve": 0.401, "c2": 0.42, "c3": 0.717}, {"time": 0.2333, "angle": -35.49, "curve": 0.25, "c3": 0.75}, - {"time": 0.6167, "angle": 26.07, "curve": 0.378, "c2": 0.01, "c3": 0.707, "c4": 0.45}, {"time": 0.75, "angle": 12.91} + {"curve": 0, "c2": 0.3, "c3": 0.546}, {"time": 0.1667, "angle": 25.35, "curve": 0.317, "c3": 0.693}, {"time": 0.3333, "angle": 33.35, "curve": 0.317, "c3": 0.693}, + {"time": 0.5, "angle": 25.35, "curve": 0.317, "c3": 0.693}, {"time": 0.6667, "angle": 33.35, "curve": 0.317, "c3": 0.693}, + {"time": 0.9167, "angle": 25.35, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 1.0833} ] }, - "body-fur-14": { + "@shadow": { + "translate": [{"curve": 0, "c2": 0.3, "c3": 0.546}, {"time": 0.1667, "x": 32.73, "curve": "stepped"}, {"time": 0.8333, "x": 32.73, "curve": 0.317, "c3": 0.693}, {"time": 1.0833}], + "scale": [ + {"time": 0.1667, "curve": 0.317, "c3": 0.693}, {"time": 0.25, "x": 1.02, "y": 1.02, "curve": 0.317, "c3": 0.693}, {"time": 0.3333, "curve": 0.317, "c3": 0.693}, + {"time": 0.4167, "x": 1.02, "y": 1.02, "curve": 0.317, "c3": 0.693}, {"time": 0.5, "curve": 0.317, "c3": 0.693}, {"time": 0.5833, "x": 1.02, "y": 1.02, "curve": 0.317, "c3": 0.693}, + {"time": 0.6667, "curve": 0.317, "c3": 0.693}, {"time": 0.8333, "x": 1.02, "y": 1.02, "curve": 0.317, "c3": 0.693}, {"time": 1.0833} + ] + } + }, + "drawOrder": [{"time": 0.0667, "offsets": [{"slot": "leg-back-left", "offset": 1}]}, {"time": 0.9}] + }, + "3404907200": { + "slots": {"eyes": {"attachment": [{"time": 0.05, "name": "eyes-happy"}]}, "mouth": {"attachment": [{"time": 0.05, "name": "mouth-bite"}]}}, + "bones": { + "@pivot-back": { "rotate": [ - {"angle": 25.81, "curve": 0.35, "c2": 0.15, "c3": 0.682, "c4": 0.51}, {"time": 0.05, "angle": 22.47, "curve": 0.397, "c2": 0.23, "c3": 0.719, "c4": 0.71}, - {"time": 0.25, "angle": -19.23, "curve": 0.356, "c2": 0.59, "c3": 0.686}, {"time": 0.35, "angle": -35.49}, - {"time": 0.7333, "angle": 26.07, "curve": 0.339, "c2": 0.05, "c3": 0.672, "c4": 0.4}, {"time": 0.75, "angle": 25.81} + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "angle": 6, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.4833, "angle": 7, "curve": 0.317, "c3": 0.693}, + {"time": 0.55, "angle": 6.5, "curve": 0.317, "c3": 0.693}, {"time": 0.6167, "angle": 7, "curve": 0.317, "c3": 0.693}, {"time": 0.6833, "angle": 6.5, "curve": 0, "c2": 0.1, "c3": 0.85}, + {"time": 0.9167, "angle": 8, "curve": 0.317, "c3": 0.693}, {"time": 1.3333, "angle": -7, "curve": 0.461, "c3": 0.543}, {"time": 1.9167, "angle": -9, "curve": 0.154, "c4": 0.9}, + {"time": 2.1667, "angle": 3, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 2.3333} + ], + "translate": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "x": 7, "y": 6, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.9167, "x": 11, "y": 10, "curve": 0.317, "c3": 0.693}, + {"time": 1.3333, "x": -45, "y": -14, "curve": 0.461, "c3": 0.543}, {"time": 1.9167, "x": -45, "y": -18, "curve": 0.154, "c4": 0.9}, + {"time": 2.1667, "y": 4.23, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 2.3333} ] }, - "body-fur-11": { - "rotate": [ - {"angle": -19.23, "curve": 0.356, "c2": 0.59, "c3": 0.686}, {"time": 0.1, "angle": -35.49, "curve": 0.25, "c3": 0.75}, - {"time": 0.4833, "angle": 26.07, "curve": 0.423, "c2": 0.01, "c3": 0.737, "c4": 0.65}, {"time": 0.75, "angle": -19.23} + "@leg-front-right": { + "translate": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "x": -2.08, "y": -23.58, "curve": "stepped"}, {"time": 0.9167, "x": -2.08, "y": -23.58, "curve": 0.317, "c3": 0.693}, + {"time": 1.3333, "x": -56.51, "y": 25.21, "curve": 0.461, "c3": 0.543}, {"time": 1.9167, "x": -57.58, "y": 31.33, "curve": 0.154, "c4": 0.9}, + {"time": 2.1667, "x": -1.95, "y": -12.95, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 2.3333} ] }, - "body-fur-09": { - "rotate": [ - {"angle": -19.23, "curve": 0.356, "c2": 0.59, "c3": 0.686}, {"time": 0.1, "angle": -35.49}, {"time": 0.4833, "angle": 26.07, "curve": 0.423, "c2": 0.01, "c3": 0.737, "c4": 0.65}, - {"time": 0.75, "angle": -19.23} + "@leg-front-left": { + "translate": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "x": -0.92, "y": -10.48, "curve": "stepped"}, {"time": 0.9167, "x": -0.92, "y": -10.48, "curve": 0.317, "c3": 0.693}, + {"time": 1.3333, "x": -48.7, "y": 5.49, "curve": 0.461, "c3": 0.543}, {"time": 1.9167, "x": -49.1, "y": 7.78, "curve": 0.154, "c4": 0.9}, + {"time": 2.1667, "x": -0.87, "y": -4.98, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 2.3333} ] }, - "body-fur-12": { - "rotate": [ - {"angle": -2.04, "curve": 0.377, "c2": 0.52, "c3": 0.701}, {"time": 0.1667, "angle": -35.49, "curve": 0.25, "c3": 0.75}, - {"time": 0.55, "angle": 26.07, "curve": 0.4, "c2": 0.01, "c3": 0.723, "c4": 0.53}, {"time": 0.75, "angle": -2.04} + "@leg-back-left": { + "translate": [ + {"time": 0.25}, {"time": 0.9167, "x": 0.52, "y": 4.2, "curve": 0.317, "c3": 0.693}, {"time": 1.3333, "x": -2.48, "y": -1.61, "curve": "stepped"}, + {"time": 1.9167, "x": -2.48, "y": -1.61, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 2.1667} ] }, - "body-fur-07": { - "rotate": [ - {"angle": -30.29, "curve": 0.343, "c2": 0.63, "c3": 0.676}, {"time": 0.05, "angle": -35.49, "curve": 0.25, "c3": 0.75}, - {"time": 0.4333, "angle": 26.07, "curve": 0.439, "c2": 0.01, "c3": 0.745, "c4": 0.79}, {"time": 0.75, "angle": -30.29} + "leg-front-left-IK": { + "translate": [ + {"time": 0.9167, "curve": 0.317, "c3": 0.693}, {"time": 1.3333, "x": -11.56, "curve": "stepped"}, {"time": 1.9167, "x": -11.56, "curve": 0.154, "c4": 0.9}, {"time": 2.1667} ] }, - "body-fur-01": { - "rotate": [ - {"angle": 5.91, "curve": 0.389, "c2": 0.48, "c3": 0.708}, {"time": 0.2, "angle": -35.49}, {"time": 0.5833, "angle": 26.07, "curve": 0.389, "c2": 0.01, "c3": 0.715, "c4": 0.48}, - {"time": 0.75, "angle": 5.91} + "leg-front-right-IK": { + "translate": [{"time": 0.9167, "curve": 0.317, "c3": 0.693}, {"time": 1.3333, "x": -5.65, "curve": "stepped"}, {"time": 1.9167, "x": -5.65, "curve": 0.154, "c4": 0.9}, {"time": 2.1667}] + }, + "leg-back-left-IK": { + "translate": [ + {"time": 0.9167, "curve": 0.317, "c3": 0.693}, {"time": 1.3333, "x": -33.62, "curve": "stepped"}, {"time": 1.9167, "x": -33.62, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 2.1667} ] }, - "body-fur-03": { + "tail": { "rotate": [ - {"angle": -6.24, "curve": 0.371, "c2": 0.54, "c3": 0.697}, {"time": 0.15, "angle": -35.49}, {"time": 0.5333, "angle": 26.07, "curve": 0.406, "c2": 0.01, "c3": 0.727, "c4": 0.55}, - {"time": 0.75, "angle": -6.24} + {"curve": 0, "c2": 0.3, "c3": 0.546}, {"time": 0.25, "angle": 20.35, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.4167, "angle": 15.85, "curve": 0.317, "c3": 0.693}, + {"time": 0.4833, "angle": 17.35, "curve": 0.317, "c3": 0.693}, {"time": 0.55, "angle": 15.85, "curve": 0.317, "c3": 0.693}, {"time": 0.6167, "angle": 18.35, "curve": 0.317, "c3": 0.693}, + {"time": 0.6833, "angle": 16.85, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.9167, "angle": 18.35, "curve": 0.317, "c3": 0.693}, + {"time": 1.3333, "angle": -9.65, "curve": 0.461, "c3": 0.543}, {"time": 1.9167, "angle": -13.65, "curve": 0.154, "c4": 0.9}, + {"time": 2.1667, "angle": 10.35, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 2.3333} ] - }, - "body-fur-08": { - "rotate": [{"angle": -35.49, "curve": 0.455, "c2": 0.01, "c3": 0.75}, {"time": 0.3833, "angle": 26.07, "curve": 0.455, "c2": 0.01, "c3": 0.75}, {"time": 0.75, "angle": -35.49}] - }, - "body-fur-04": { + } + } + }, + "1861976481": { + "slots": {"eyes": {"attachment": [{"time": 0.3, "name": "eyes-angry"}]}, "mouth": {"attachment": [{"time": 0.3, "name": "mouth-bite"}]}}, + "bones": { + "@pivot-back": { "rotate": [ - {"angle": 15.47, "curve": 0.379, "c2": 0.31, "c3": 0.706, "c4": 0.72}, {"time": 0.15, "angle": -19.23, "curve": 0.356, "c2": 0.59, "c3": 0.686}, {"time": 0.25, "angle": -35.49}, - {"time": 0.6333, "angle": 26.07, "curve": 0.372, "c2": 0.01, "c3": 0.702, "c4": 0.43}, {"time": 0.75, "angle": 15.47} + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1, "angle": 6, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.2, "angle": -6, "curve": 0.315, "c4": 0.8}, + {"time": 0.3, "angle": 5.5, "curve": 0.317, "c3": 0.693}, {"time": 0.3833, "angle": 4.5, "curve": 0.317, "c3": 0.693}, {"time": 0.4667, "angle": 5.5, "curve": 0.317, "c3": 0.693}, + {"time": 0.55, "angle": 4.5, "curve": 0.317, "c3": 0.693}, {"time": 0.6333, "angle": 5.5, "curve": 0.317, "c3": 0.693}, {"time": 0.7167, "angle": 4.5, "curve": 0.317, "c3": 0.693}, + {"time": 0.8, "angle": 5.5, "curve": 0.317, "c3": 0.693}, {"time": 0.8833, "angle": 4.5, "curve": 0.317, "c3": 0.693}, {"time": 0.9667, "angle": 5.5, "curve": 0.317, "c3": 0.693}, + {"time": 1.05, "angle": 4.5, "curve": 0.317, "c3": 0.693}, {"time": 1.1333, "angle": 5.5, "curve": 0.317, "c3": 0.693}, {"time": 1.2167, "angle": 6, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 1.3167, "angle": -3, "curve": 0.315, "c4": 0.8}, {"time": 1.4167} + ], + "translate": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1, "y": 4.69, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.2, "y": 43.73, "curve": 0.315, "c4": 0.8}, + {"time": 0.3, "y": 3.84, "curve": "stepped"}, {"time": 1.2167, "y": 3.84, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1.3167, "y": 43.73, "curve": 0.315, "c4": 0.8}, {"time": 1.4167} ] }, - "body-fur-13": { - "rotate": [ - {"angle": 15.71, "curve": 0.349, "c2": 0.31, "c3": 0.681, "c4": 0.65}, {"time": 0.05, "angle": 5.91, "curve": 0.389, "c2": 0.48, "c3": 0.708}, - {"time": 0.25, "angle": -35.49, "curve": 0.25, "c3": 0.75}, {"time": 0.6333, "angle": 26.07, "curve": 0.372, "c2": 0.01, "c3": 0.702, "c4": 0.43}, {"time": 0.75, "angle": 15.71} + "@leg-front-left": { + "translate": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1, "x": -1.28, "y": -14.48, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.2, "curve": 0.315, "c4": 0.8}, + {"time": 0.3, "x": -1.28, "y": -14.48, "curve": 0.317, "c3": 0.693}, {"time": 0.3833, "x": -1.02, "y": -10.26, "curve": 0.317, "c3": 0.693}, + {"time": 0.4667, "x": -1.22, "y": -13.05, "curve": 0.317, "c3": 0.693}, {"time": 0.55, "x": -1.02, "y": -10.26, "curve": 0.317, "c3": 0.693}, + {"time": 0.6333, "x": -1.22, "y": -13.05, "curve": 0.317, "c3": 0.693}, {"time": 0.7167, "x": -1.02, "y": -10.26, "curve": 0.317, "c3": 0.693}, + {"time": 0.8, "x": -1.22, "y": -13.05, "curve": 0.317, "c3": 0.693}, {"time": 0.8833, "x": -1.02, "y": -10.26, "curve": 0.317, "c3": 0.693}, + {"time": 0.9667, "x": -1.22, "y": -13.05, "curve": 0.317, "c3": 0.693}, {"time": 1.05, "x": -1.02, "y": -10.26, "curve": 0.317, "c3": 0.693}, + {"time": 1.1333, "x": -1.22, "y": -13.05, "curve": 0.317, "c3": 0.693}, {"time": 1.2167, "x": -1.28, "y": -14.48, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1.3167} ] }, - "body-fur-02": { - "rotate": [ - {"angle": 22.47, "curve": 0.397, "c2": 0.23, "c3": 0.719, "c4": 0.71}, {"time": 0.2, "angle": -19.23, "curve": 0.356, "c2": 0.59, "c3": 0.686}, {"time": 0.3, "angle": -35.49}, - {"time": 0.6833, "angle": 26.07, "curve": 0.355, "c2": 0.02, "c3": 0.687, "c4": 0.39}, {"time": 0.75, "angle": 22.47} + "@leg-front-right": { + "translate": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1, "x": -2.46, "y": -27.93, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.2, "curve": 0.315, "c4": 0.8}, + {"time": 0.3, "x": -2.46, "y": -27.93, "curve": 0.317, "c3": 0.693}, {"time": 0.3833, "x": -2.06, "y": -21.45, "curve": 0.317, "c3": 0.693}, + {"time": 0.4667, "x": -2.44, "y": -26.54, "curve": 0.317, "c3": 0.693}, {"time": 0.55, "x": -2.06, "y": -21.45, "curve": 0.317, "c3": 0.693}, + {"time": 0.6333, "x": -2.44, "y": -26.54, "curve": 0.317, "c3": 0.693}, {"time": 0.7167, "x": -2.06, "y": -21.45, "curve": 0.317, "c3": 0.693}, + {"time": 0.8, "x": -2.44, "y": -26.54, "curve": 0.317, "c3": 0.693}, {"time": 0.8833, "x": -2.06, "y": -21.45, "curve": 0.317, "c3": 0.693}, + {"time": 0.9667, "x": -2.44, "y": -26.54, "curve": 0.317, "c3": 0.693}, {"time": 1.05, "x": -2.06, "y": -21.45, "curve": 0.317, "c3": 0.693}, + {"time": 1.1333, "x": -2.44, "y": -26.54, "curve": 0.317, "c3": 0.693}, {"time": 1.2167, "x": -2.46, "y": -27.93, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1.3167} ] }, - "body-fur-05": { - "rotate": [ - {"angle": -19.23, "curve": 0.356, "c2": 0.59, "c3": 0.686}, {"time": 0.1, "angle": -35.49}, {"time": 0.4833, "angle": 26.07, "curve": 0.423, "c2": 0.01, "c3": 0.737, "c4": 0.65}, - {"time": 0.75, "angle": -19.23} + "@pivot-main": { + "translate": [ + {"time": 0.1, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.3, "x": -154.22, "curve": "stepped"}, {"time": 1.2167, "x": -154.22, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 1.4167} ] }, - "body-fur-06": { - "rotate": [ - {"angle": 5.34, "curve": 0.362, "c2": 0.35, "c3": 0.692, "c4": 0.72}, {"time": 0.1, "angle": -19.23, "curve": 0.356, "c2": 0.59, "c3": 0.686}, - {"time": 0.2, "angle": -35.49, "curve": 0.25, "c3": 0.75}, {"time": 0.5833, "angle": 26.07, "curve": 0.389, "c2": 0.01, "c3": 0.715, "c4": 0.48}, {"time": 0.75, "angle": 5.34} + "leg-front-left-IK": {"translate": [{"time": 1.2167, "curve": 0.315, "c4": 0.8}, {"time": 1.3167, "x": -61.13, "curve": 0.315, "c4": 0.8}, {"time": 1.4167}]}, + "leg-front-right-IK": {"translate": [{"time": 1.2167, "curve": 0.315, "c4": 0.8}, {"time": 1.3167, "x": -61.13, "curve": 0.315, "c4": 0.8}, {"time": 1.4167}]}, + "@shadow": { + "translate": [ + {"time": 0.1, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.3, "x": -162.84, "curve": "stepped"}, {"time": 1.2167, "x": -162.84, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 1.4167} + ], + "scale": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1, "x": 1.1, "y": 1.1, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.2, "x": 0.92, "y": 0.92, "curve": 0.315, "c4": 0.8}, + {"time": 0.3, "x": 1.1, "y": 1.1, "curve": 0.317, "c3": 0.693}, {"time": 0.3833, "x": 1.06, "y": 1.06, "curve": 0.317, "c3": 0.693}, + {"time": 0.4667, "x": 1.1, "y": 1.1, "curve": 0.317, "c3": 0.693}, {"time": 0.55, "x": 1.06, "y": 1.06, "curve": 0.317, "c3": 0.693}, + {"time": 0.6333, "x": 1.1, "y": 1.1, "curve": 0.317, "c3": 0.693}, {"time": 0.7167, "x": 1.06, "y": 1.06, "curve": 0.317, "c3": 0.693}, + {"time": 0.8, "x": 1.1, "y": 1.1, "curve": 0.317, "c3": 0.693}, {"time": 0.8833, "x": 1.06, "y": 1.06, "curve": 0.317, "c3": 0.693}, + {"time": 0.9667, "x": 1.1, "y": 1.1, "curve": 0.317, "c3": 0.693}, {"time": 1.05, "x": 1.06, "y": 1.06, "curve": 0.317, "c3": 0.693}, + {"time": 1.1333, "x": 1.1, "y": 1.1, "curve": "stepped"}, {"time": 1.2167, "x": 1.1, "y": 1.1, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 1.3167, "x": 0.92, "y": 0.92, "curve": 0.315, "c4": 0.8}, {"time": 1.4167} ] }, - "body-fur-10": { + "tail": { "rotate": [ - {"angle": -15.74, "curve": 0.346, "c2": 0.39, "c3": 0.678, "c4": 0.73}, {"time": 0.05, "angle": -27.05, "curve": 0.347, "c2": 0.62, "c3": 0.679}, - {"time": 0.1167, "angle": -35.49, "curve": 0.25, "c3": 0.75}, {"time": 0.5, "angle": 26.07, "curve": 0.417, "c2": 0.01, "c3": 0.734, "c4": 0.61}, {"time": 0.75, "angle": -15.74} + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1, "angle": 16.7, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.2, "angle": -16.65, "curve": 0.315, "c4": 0.8}, + {"time": 0.3, "angle": 17.85, "curve": 0.317, "c3": 0.693}, {"time": 0.4333, "angle": 15.5, "curve": 0.317, "c3": 0.693}, {"time": 0.5667, "angle": 17.85, "curve": 0.317, "c3": 0.693}, + {"time": 0.7, "angle": 15.5, "curve": 0.317, "c3": 0.693}, {"time": 0.8333, "angle": 17.85, "curve": 0.317, "c3": 0.693}, {"time": 0.95, "angle": 15.5, "curve": 0.317, "c3": 0.693}, + {"time": 1.0833, "angle": 17.85, "curve": 0.317, "c3": 0.693}, {"time": 1.2167, "angle": 15.5, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 1.3167, "angle": -14.65, "curve": 0.315, "c4": 0.8}, {"time": 1.4167} ] }, - "body-fur-16": { + "back": { "rotate": [ - {"angle": 20.54, "curve": 0.421, "c2": 0.32, "c3": 0.729}, {"time": 0.2833, "angle": -35.49, "curve": 0.25, "c3": 0.75}, - {"time": 0.6667, "angle": 26.07, "curve": 0.361, "c2": 0.01, "c3": 0.692, "c4": 0.4}, {"time": 0.75, "angle": 20.54} + {"time": 0.3, "curve": 0.306, "c3": 0.695}, {"time": 0.4833, "angle": 5.93, "curve": 0.306, "c3": 0.695}, {"time": 0.65, "curve": 0.306, "c3": 0.695}, + {"time": 0.8333, "angle": 5.93, "curve": 0.306, "c3": 0.695}, {"time": 1.0167, "curve": 0.306, "c3": 0.695}, {"time": 1.2167, "angle": 5.93, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 1.4167} ] } } }, - "2456423644": { + "2166084648": { "slots": { "eyes": { "attachment": [ {"time": 0.05, "name": "eyes-angry"}, {"time": 0.3333, "name": "eyes-shut"}, {"time": 0.4333, "name": "eyes-angry"}, {"time": 1.0833, "name": "eyes-shut"}, - {"time": 1.1667, "name": "eyes-angry"}, {"time": 1.2833, "name": "eyes"} + {"time": 1.1667, "name": "eyes-angry"} ] }, - "mouth": {"attachment": [{"time": 0.05, "name": "mouth-bite"}, {"time": 0.4333, "name": "mouth-open"}, {"time": 0.9167, "name": "mouth-bite"}, {"time": 1.2833, "name": "mouth"}]} + "mouth": {"attachment": [{"time": 0.05, "name": "mouth-bite"}, {"time": 0.4333, "name": "mouth-open"}, {"time": 0.9167, "name": "mouth-bite"}]} }, "bones": { "@pivot-back": { @@ -30794,267 +39425,14 @@ {"time": 0.9167, "x": 1.12, "y": 1.12}, {"time": 1.0833, "x": 1.16, "y": 1.16, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1.3333} ] }, - "@pivot-main": {"scale": [{"time": 0.3333, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.4167, "y": 0.9, "curve": 0, "c2": 0.3, "c3": 0.546}, {"time": 0.5}]}, - "body-fur-16": { - "rotate": [ - {"angle": 19.97, "curve": 0.303, "c2": 0.22, "c3": 0.756}, {"time": 0.1, "curve": 0.25, "c3": 0.75}, {"time": 0.1833, "angle": 15.16, "curve": 0.25, "c3": 0.75}, - {"time": 0.2667, "angle": -17.09, "curve": 0.25, "c3": 0.75}, {"time": 0.4333, "angle": 34.22, "curve": 0.25, "c3": 0.75}, {"time": 0.5, "angle": -32.46, "curve": 0.25, "c3": 0.75}, - {"time": 0.6333, "angle": -37.23, "curve": 0.25, "c3": 0.75}, {"time": 0.8, "angle": 24.78, "curve": 0.25, "c3": 0.75}, {"time": 1.0167, "angle": -47.33, "curve": 0.25, "c3": 0.75}, - {"time": 1.1, "angle": -3.05, "curve": 0.25, "c3": 0.75}, {"time": 1.1833, "angle": -15.24, "curve": 0.25, "c3": 0.75}, - {"time": 1.3167, "angle": 21.64, "curve": 0.295, "c3": 0.633, "c4": 0.37}, {"time": 1.3333, "angle": 13.84} - ] - }, - "body-fur-15": { - "rotate": [ - {"angle": 16.78, "curve": 0.342, "c2": 0.36, "c3": 0.757}, {"time": 0.0833, "curve": 0.25, "c3": 0.75}, {"time": 0.1667, "angle": 15.16, "curve": 0.25, "c3": 0.75}, - {"time": 0.25, "angle": -17.09, "curve": 0.25, "c3": 0.75}, {"time": 0.4167, "angle": 34.22, "curve": 0.25, "c3": 0.75}, {"time": 0.4833, "angle": -32.46, "curve": 0.25, "c3": 0.75}, - {"time": 0.6167, "angle": -37.23, "curve": 0.25, "c3": 0.75}, {"time": 0.7833, "angle": 24.78, "curve": 0.25, "c3": 0.75}, {"time": 1, "angle": -47.33, "curve": 0.25, "c3": 0.75}, - {"time": 1.0833, "angle": -3.05, "curve": 0.25, "c3": 0.75}, {"time": 1.1667, "angle": -15.24, "curve": 0.25, "c3": 0.75}, - {"time": 1.3, "angle": 21.64, "curve": 0.271, "c3": 0.619, "c4": 0.41}, {"time": 1.3333, "angle": 13.33} - ] - }, - "body-fur-14": { - "rotate": [ - {"angle": 21.64, "curve": 0.243, "c3": 0.658, "c4": 0.64}, {"time": 0.0833, "angle": 4.86, "curve": 0.381, "c2": 0.59, "c3": 0.729}, {"time": 0.1167, "curve": 0.25, "c3": 0.75}, - {"time": 0.2, "angle": 15.16, "curve": 0.25, "c3": 0.75}, {"time": 0.2833, "angle": -17.09, "curve": 0.25, "c3": 0.75}, {"time": 0.45, "angle": 34.22, "curve": 0.25, "c3": 0.75}, - {"time": 0.5167, "angle": -32.46, "curve": 0.25, "c3": 0.75}, {"time": 0.65, "angle": -37.23, "curve": 0.25, "c3": 0.75}, {"time": 0.8167, "angle": 24.78, "curve": 0.25, "c3": 0.75}, - {"time": 1.0333, "angle": -47.33, "curve": 0.25, "c3": 0.75}, {"time": 1.1167, "angle": -3.05, "curve": 0.25, "c3": 0.75}, {"time": 1.2, "angle": -15.24, "curve": 0.25, "c3": 0.75}, - {"time": 1.3333, "angle": 13.33} - ] - }, - "body-fur-13": { - "rotate": [ - {"angle": 16.78, "curve": 0.342, "c2": 0.36, "c3": 0.757}, {"time": 0.0833, "curve": 0.25, "c3": 0.75}, {"time": 0.1667, "angle": 15.16, "curve": 0.25, "c3": 0.75}, - {"time": 0.25, "angle": -17.09, "curve": 0.25, "c3": 0.75}, {"time": 0.4167, "angle": 34.22, "curve": 0.25, "c3": 0.75}, {"time": 0.4833, "angle": -32.46, "curve": 0.25, "c3": 0.75}, - {"time": 0.6167, "angle": -37.23, "curve": 0.25, "c3": 0.75}, {"time": 0.7833, "angle": 24.78, "curve": 0.25, "c3": 0.75}, {"time": 1, "angle": -47.33, "curve": 0.25, "c3": 0.75}, - {"time": 1.0833, "angle": -3.05, "curve": 0.25, "c3": 0.75}, {"time": 1.1667, "angle": -15.24, "curve": 0.25, "c3": 0.75}, - {"time": 1.3, "angle": 21.64, "curve": 0.271, "c3": 0.619, "c4": 0.41}, {"time": 1.3333, "angle": 11.59} - ] - }, - "body-fur-12": { - "rotate": [ - {"angle": 12.86, "curve": 0.367, "c2": 0.46, "c3": 0.754}, {"time": 0.0667, "curve": 0.25, "c3": 0.75}, {"time": 0.15, "angle": 15.16, "curve": 0.25, "c3": 0.75}, - {"time": 0.2333, "angle": -17.09, "curve": 0.25, "c3": 0.75}, {"time": 0.4, "angle": 34.22, "curve": 0.25, "c3": 0.75}, {"time": 0.4667, "angle": -32.46, "curve": 0.25, "c3": 0.75}, - {"time": 0.6, "angle": -37.23, "curve": 0.25, "c3": 0.75}, {"time": 0.7667, "angle": 24.78, "curve": 0.25, "c3": 0.75}, {"time": 0.9833, "angle": -47.33, "curve": 0.25, "c3": 0.75}, - {"time": 1.0667, "angle": -3.05, "curve": 0.25, "c3": 0.75}, {"time": 1.15, "angle": -15.24, "curve": 0.25, "c3": 0.75}, - {"time": 1.2833, "angle": 21.64, "curve": 0.255, "c3": 0.62, "c4": 0.47}, {"time": 1.3333, "angle": 8.12} - ] - }, - "body-fur-11": { - "rotate": [ - {"angle": 8.78, "curve": 0.38, "c2": 0.53, "c3": 0.745}, {"time": 0.05, "curve": 0.25, "c3": 0.75}, {"time": 0.1333, "angle": 15.16, "curve": 0.25, "c3": 0.75}, - {"time": 0.2167, "angle": -17.09, "curve": 0.25, "c3": 0.75}, {"time": 0.3833, "angle": 34.22, "curve": 0.25, "c3": 0.75}, {"time": 0.45, "angle": -32.46, "curve": 0.25, "c3": 0.75}, - {"time": 0.5833, "angle": -37.23, "curve": 0.25, "c3": 0.75}, {"time": 0.75, "angle": 24.78, "curve": 0.25, "c3": 0.75}, {"time": 0.9667, "angle": -47.33, "curve": 0.25, "c3": 0.75}, - {"time": 1.05, "angle": -3.05, "curve": 0.25, "c3": 0.75}, {"time": 1.1333, "angle": -15.24, "curve": 0.25, "c3": 0.75}, - {"time": 1.2667, "angle": 21.64, "curve": 0.246, "c3": 0.633, "c4": 0.54}, {"time": 1.3333, "angle": 4.23} - ] - }, - "body-fur-10": { - "rotate": [ - {"angle": 4.86, "curve": 0.381, "c2": 0.59, "c3": 0.729}, {"time": 0.0333, "curve": 0.25, "c3": 0.75}, {"time": 0.1167, "angle": 15.16, "curve": 0.25, "c3": 0.75}, - {"time": 0.2, "angle": -17.09, "curve": 0.25, "c3": 0.75}, {"time": 0.3667, "angle": 34.22, "curve": 0.25, "c3": 0.75}, {"time": 0.4333, "angle": -32.46, "curve": 0.25, "c3": 0.75}, - {"time": 0.5667, "angle": -37.23, "curve": 0.25, "c3": 0.75}, {"time": 0.7333, "angle": 24.78, "curve": 0.25, "c3": 0.75}, {"time": 0.95, "angle": -47.33, "curve": 0.25, "c3": 0.75}, - {"time": 1.0333, "angle": -3.05, "curve": 0.25, "c3": 0.75}, {"time": 1.1167, "angle": -15.24, "curve": 0.25, "c3": 0.75}, - {"time": 1.25, "angle": 21.64, "curve": 0.243, "c3": 0.658, "c4": 0.64}, {"time": 1.3333, "angle": 0.34} - ] - }, - "body-fur-09": { - "rotate": [ - {"angle": 16.71, "curve": 0.319, "c2": 0.29, "c3": 0.681, "c4": 0.71}, {"time": 0.05, "angle": 4.86, "curve": 0.381, "c2": 0.59, "c3": 0.729}, {"time": 0.0833}, - {"time": 0.1667, "angle": 15.16, "curve": 0.25, "c3": 0.75}, {"time": 0.25, "angle": -17.09, "curve": 0.25, "c3": 0.75}, {"time": 0.4167, "angle": 34.22, "curve": 0.25, "c3": 0.75}, - {"time": 0.4833, "angle": -32.46, "curve": 0.25, "c3": 0.75}, {"time": 0.6167, "angle": -37.23, "curve": 0.25, "c3": 0.75}, {"time": 0.7833, "angle": 24.78, "curve": 0.25, "c3": 0.75}, - {"time": 1, "angle": -47.33, "curve": 0.25, "c3": 0.75}, {"time": 1.0833, "angle": -3.05, "curve": 0.25, "c3": 0.75}, {"time": 1.1667, "angle": -15.24, "curve": 0.25, "c3": 0.75}, - {"time": 1.3, "angle": 21.64, "curve": 0.271, "c3": 0.619, "c4": 0.41}, {"time": 1.3333, "angle": 6.86} - ] - }, - "body-fur-08": { - "rotate": [ - {"angle": 8.78, "curve": 0.38, "c2": 0.53, "c3": 0.745}, {"time": 0.05}, {"time": 0.1333, "angle": 15.16, "curve": 0.25, "c3": 0.75}, - {"time": 0.2167, "angle": -17.09, "curve": 0.25, "c3": 0.75}, {"time": 0.3833, "angle": 34.22, "curve": 0.25, "c3": 0.75}, {"time": 0.45, "angle": -32.46, "curve": 0.25, "c3": 0.75}, - {"time": 0.5833, "angle": -37.23, "curve": 0.25, "c3": 0.75}, {"time": 0.75, "angle": 24.78, "curve": 0.25, "c3": 0.75}, {"time": 0.9667, "angle": -47.33, "curve": 0.25, "c3": 0.75}, - {"time": 1.05, "angle": -3.05, "curve": 0.25, "c3": 0.75}, {"time": 1.1333, "angle": -15.24, "curve": 0.25, "c3": 0.75}, - {"time": 1.2667, "angle": 21.64, "curve": 0.246, "c3": 0.633, "c4": 0.54}, {"time": 1.3333, "angle": -0.91} - ] - }, - "body-fur-07": { - "rotate": [ - {"angle": 1.67, "curve": 0.367, "c2": 0.63, "c3": 0.705}, {"time": 0.0167, "curve": 0.25, "c3": 0.75}, {"time": 0.1, "angle": 15.16, "curve": 0.25, "c3": 0.75}, - {"time": 0.1833, "angle": -17.09, "curve": 0.25, "c3": 0.75}, {"time": 0.35, "angle": 34.22, "curve": 0.25, "c3": 0.75}, {"time": 0.4167, "angle": -32.46, "curve": 0.25, "c3": 0.75}, - {"time": 0.55, "angle": -37.23, "curve": 0.25, "c3": 0.75}, {"time": 0.7167, "angle": 24.78, "curve": 0.25, "c3": 0.75}, {"time": 0.9333, "angle": -47.33, "curve": 0.25, "c3": 0.75}, - {"time": 1.0167, "angle": -3.05, "curve": 0.25, "c3": 0.75}, {"time": 1.1, "angle": -15.24, "curve": 0.25, "c3": 0.75}, - {"time": 1.2333, "angle": 21.64, "curve": 0.244, "c3": 0.697, "c4": 0.78}, {"time": 1.3333, "angle": 2.91} - ] - }, - "body-fur-06": { - "rotate": [ - {"angle": 12.79, "curve": 0.336, "c2": 0.34, "c3": 0.682, "c4": 0.71}, {"time": 0.0333, "angle": 4.86, "curve": 0.381, "c2": 0.59, "c3": 0.729}, {"time": 0.0667}, - {"time": 0.15, "angle": 15.16, "curve": 0.25, "c3": 0.75}, {"time": 0.2333, "angle": -17.09, "curve": 0.25, "c3": 0.75}, {"time": 0.4, "angle": 34.22, "curve": 0.25, "c3": 0.75}, - {"time": 0.4667, "angle": -32.46, "curve": 0.25, "c3": 0.75}, {"time": 0.6, "angle": -37.23, "curve": 0.25, "c3": 0.75}, {"time": 0.7667, "angle": 24.78, "curve": 0.25, "c3": 0.75}, - {"time": 0.9833, "angle": -47.33, "curve": 0.25, "c3": 0.75}, {"time": 1.0667, "angle": -3.05, "curve": 0.25, "c3": 0.75}, {"time": 1.15, "angle": -15.24, "curve": 0.25, "c3": 0.75}, - {"time": 1.2833, "angle": 21.64, "curve": 0.255, "c3": 0.62, "c4": 0.47}, {"time": 1.3333, "angle": 13.33} - ] - }, - "body-fur-05": { - "rotate": [ - {"angle": 4.86, "curve": 0.381, "c2": 0.59, "c3": 0.729}, {"time": 0.0333}, {"time": 0.1167, "angle": 15.16, "curve": 0.25, "c3": 0.75}, - {"time": 0.2, "angle": -17.09, "curve": 0.25, "c3": 0.75}, {"time": 0.3667, "angle": 34.22, "curve": 0.25, "c3": 0.75}, {"time": 0.4333, "angle": -32.46, "curve": 0.25, "c3": 0.75}, - {"time": 0.5667, "angle": -37.23, "curve": 0.25, "c3": 0.75}, {"time": 0.7333, "angle": 24.78, "curve": 0.25, "c3": 0.75}, {"time": 0.95, "angle": -47.33, "curve": 0.25, "c3": 0.75}, - {"time": 1.0333, "angle": -3.05, "curve": 0.25, "c3": 0.75}, {"time": 1.1167, "angle": -15.24, "curve": 0.25, "c3": 0.75}, - {"time": 1.25, "angle": 21.64, "curve": 0.243, "c3": 0.658, "c4": 0.64}, {"time": 1.3333, "angle": 6.86} - ] - }, - "body-fur-04": { - "rotate": [ - {"angle": 16.71, "curve": 0.319, "c2": 0.29, "c3": 0.681, "c4": 0.71}, {"time": 0.05, "angle": 4.86, "curve": 0.381, "c2": 0.59, "c3": 0.729}, {"time": 0.0833}, - {"time": 0.1667, "angle": 15.16, "curve": 0.25, "c3": 0.75}, {"time": 0.25, "angle": -17.09, "curve": 0.25, "c3": 0.75}, {"time": 0.4167, "angle": 34.22, "curve": 0.25, "c3": 0.75}, - {"time": 0.4833, "angle": -32.46, "curve": 0.25, "c3": 0.75}, {"time": 0.6167, "angle": -37.23, "curve": 0.25, "c3": 0.75}, {"time": 0.7833, "angle": 24.78, "curve": 0.25, "c3": 0.75}, - {"time": 1, "angle": -47.33, "curve": 0.25, "c3": 0.75}, {"time": 1.0833, "angle": -3.05, "curve": 0.25, "c3": 0.75}, {"time": 1.1667, "angle": -15.24, "curve": 0.25, "c3": 0.75}, - {"time": 1.3, "angle": 21.64, "curve": 0.271, "c3": 0.619, "c4": 0.41}, {"time": 1.3333, "angle": 12.53} - ] - }, - "body-fur-03": { - "rotate": [ - {"angle": 8.78, "curve": 0.38, "c2": 0.53, "c3": 0.745}, {"time": 0.05}, {"time": 0.1333, "angle": 15.16, "curve": 0.25, "c3": 0.75}, - {"time": 0.2167, "angle": -17.09, "curve": 0.25, "c3": 0.75}, {"time": 0.3833, "angle": 34.22, "curve": 0.25, "c3": 0.75}, {"time": 0.45, "angle": -32.46, "curve": 0.25, "c3": 0.75}, - {"time": 0.5833, "angle": -37.23, "curve": 0.25, "c3": 0.75}, {"time": 0.75, "angle": 24.78, "curve": 0.25, "c3": 0.75}, {"time": 0.9667, "angle": -47.33, "curve": 0.25, "c3": 0.75}, - {"time": 1.05, "angle": -3.05, "curve": 0.25, "c3": 0.75}, {"time": 1.1333, "angle": -15.24, "curve": 0.25, "c3": 0.75}, - {"time": 1.2667, "angle": 21.64, "curve": 0.246, "c3": 0.633, "c4": 0.54}, {"time": 1.3333, "angle": 5.54} - ] - }, - "body-fur-02": { - "rotate": [ - {"angle": 19.98, "curve": 0.289, "c2": 0.19, "c3": 0.673, "c4": 0.69}, {"time": 0.0667, "angle": 4.86, "curve": 0.381, "c2": 0.59, "c3": 0.729}, {"time": 0.1}, - {"time": 0.1833, "angle": 15.16, "curve": 0.25, "c3": 0.75}, {"time": 0.2667, "angle": -17.09, "curve": 0.25, "c3": 0.75}, {"time": 0.4333, "angle": 34.22, "curve": 0.25, "c3": 0.75}, - {"time": 0.5, "angle": -32.46, "curve": 0.25, "c3": 0.75}, {"time": 0.6333, "angle": -37.23, "curve": 0.25, "c3": 0.75}, {"time": 0.8, "angle": 24.78, "curve": 0.25, "c3": 0.75}, - {"time": 1.0167, "angle": -47.33, "curve": 0.25, "c3": 0.75}, {"time": 1.1, "angle": -3.05, "curve": 0.25, "c3": 0.75}, {"time": 1.1833, "angle": -15.24, "curve": 0.25, "c3": 0.75}, - {"time": 1.3167, "angle": 21.64, "curve": 0.295, "c3": 0.633, "c4": 0.37}, {"time": 1.3333, "angle": 13.84} - ] - }, - "body-fur-01": { - "rotate": [ - {"angle": 12.86, "curve": 0.367, "c2": 0.46, "c3": 0.754}, {"time": 0.0667, "curve": 0.25, "c3": 0.75}, {"time": 0.15, "angle": 15.16, "curve": 0.25, "c3": 0.75}, - {"time": 0.2333, "angle": -17.09, "curve": 0.25, "c3": 0.75}, {"time": 0.4, "angle": 34.22, "curve": 0.25, "c3": 0.75}, {"time": 0.4667, "angle": -32.46, "curve": 0.25, "c3": 0.75}, - {"time": 0.6, "angle": -37.23, "curve": 0.25, "c3": 0.75}, {"time": 0.7667, "angle": 24.78, "curve": 0.25, "c3": 0.75}, {"time": 0.9833, "angle": -47.33, "curve": 0.25, "c3": 0.75}, - {"time": 1.0667, "angle": -3.05, "curve": 0.25, "c3": 0.75}, {"time": 1.15, "angle": -15.24, "curve": 0.25, "c3": 0.75}, - {"time": 1.2833, "angle": 21.64, "curve": 0.255, "c3": 0.62, "c4": 0.47}, {"time": 1.3333, "angle": 10.51} - ] - } + "@pivot-main": {"scale": [{"time": 0.3333, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.4167, "y": 0.9, "curve": 0, "c2": 0.3, "c3": 0.546}, {"time": 0.5}]} }, "events": [{"time": 0.4333, "name": "jump"}, {"time": 0.8333, "name": "start-attack"}, {"time": 0.9167, "name": "hit"}] }, - "3386570360": { - "slots": {"eyes": {"attachment": [{"name": "eyes-shut"}]}}, - "bones": { - "@pivot-back": {"translate": [{"curve": 0.384, "c3": 0.312}, {"time": 0.6667, "y": 22.76, "curve": 0.384, "c3": 0.306}, {"time": 1.3333}]}, - "tail": { - "rotate": [ - {"curve": 0, "c2": 0.05, "c3": 0.658}, {"time": 0.3333, "angle": -5.21, "curve": 0.304, "c3": 0.689}, {"time": 0.7333, "angle": -0.27}, - {"time": 1.05, "angle": 1.75, "curve": 0.234, "c4": 0.9}, {"time": 1.3333} - ] - }, - "@shadow": {"scale": [{"curve": 0.387, "c3": 0.314}, {"time": 0.6667, "x": 0.9, "y": 0.9, "curve": 0.387, "c3": 0.314}, {"time": 1.3333}]}, - "body-fur-16": { - "rotate": [ - {"angle": -0.76, "curve": 0.38, "c2": 0.53, "c3": 0.744}, {"time": 0.2833, "angle": -13.03, "curve": 0.25, "c3": 0.75}, - {"time": 0.95, "angle": 17.57, "curve": 0.246, "c3": 0.634, "c4": 0.54}, {"time": 1.3333, "angle": -0.76} - ] - }, - "body-fur-15": { - "rotate": [ - {"angle": -4.67, "curve": 0.382, "c2": 0.57, "c3": 0.734}, {"time": 0.2167, "angle": -13.03, "curve": 0.25, "c3": 0.75}, - {"time": 0.8833, "angle": 17.57, "curve": 0.243, "c3": 0.65, "c4": 0.61}, {"time": 1.3333, "angle": -4.67} - ] - }, - "body-fur-14": { - "rotate": [ - {"angle": 3.13, "curve": 0.351, "c2": 0.39, "c3": 0.706, "c4": 0.8}, {"time": 0.25, "angle": -10.49, "curve": 0.369, "c2": 0.63, "c3": 0.706}, - {"time": 0.35, "angle": -13.03, "curve": 0.25, "c3": 0.75}, {"time": 1.0167, "angle": 17.57, "curve": 0.252, "c3": 0.623, "c4": 0.49}, {"time": 1.3333, "angle": 3.13} - ] - }, - "body-fur-13": { - "rotate": [ - {"angle": -2.76, "curve": 0.382, "c2": 0.56, "c3": 0.74}, {"time": 0.25, "angle": -13.03, "curve": 0.25, "c3": 0.75}, - {"time": 0.9167, "angle": 17.57, "curve": 0.244, "c3": 0.641, "c4": 0.57}, {"time": 1.3333, "angle": -2.76} - ] - }, - "body-fur-12": { - "rotate": [ - {"angle": -6.56, "curve": 0.381, "c2": 0.59, "c3": 0.728}, {"time": 0.1833, "angle": -13.03, "curve": 0.25, "c3": 0.75}, - {"time": 0.85, "angle": 17.57, "curve": 0.242, "c3": 0.661, "c4": 0.65}, {"time": 1.3333, "angle": -6.56} - ] - }, - "body-fur-11": { - "rotate": [ - {"angle": -9.88, "curve": 0.372, "c2": 0.62, "c3": 0.711}, {"time": 0.1167, "angle": -13.03, "curve": 0.25, "c3": 0.75}, - {"time": 0.7833, "angle": 17.57, "curve": 0.243, "c3": 0.687, "c4": 0.74}, {"time": 1.3333, "angle": -9.88} - ] - }, - "body-fur-10": { - "rotate": [ - {"angle": -12.25, "curve": 0.354, "c2": 0.65, "c3": 0.689}, {"time": 0.05, "angle": -13.03, "curve": 0.25, "c3": 0.75}, - {"time": 0.7167, "angle": 17.57, "curve": 0.246, "c3": 0.72, "c4": 0.87}, {"time": 1.3333, "angle": -12.25} - ] - }, - "body-fur-09": { - "rotate": [ - {"angle": -6.6, "curve": 0.35, "c2": 0.4, "c3": 0.686, "c4": 0.74}, {"time": 0.0833, "angle": -10.49, "curve": 0.369, "c2": 0.63, "c3": 0.706}, - {"time": 0.1833, "angle": -13.03, "curve": 0.25, "c3": 0.75}, {"time": 0.85, "angle": 17.57, "curve": 0.242, "c3": 0.661, "c4": 0.65}, {"time": 1.3333, "angle": -6.6} - ] - }, - "body-fur-08": { - "rotate": [ - {"angle": -11.11, "curve": 0.364, "c2": 0.64, "c3": 0.701}, {"time": 0.0833, "angle": -13.03, "curve": 0.25, "c3": 0.75}, - {"time": 0.75, "angle": 17.57, "curve": 0.244, "c3": 0.702, "c4": 0.8}, {"time": 1.3333, "angle": -11.11} - ] - }, - "body-fur-07": { - "rotate": [ - {"angle": -11.73, "curve": 0.36, "c2": 0.64, "c3": 0.695}, {"time": 0.0667, "angle": -13.03, "curve": 0.25, "c3": 0.75}, - {"time": 0.7333, "angle": 17.57, "curve": 0.245, "c3": 0.711, "c4": 0.83}, {"time": 1.3333, "angle": -11.73} - ] - }, - "body-fur-06": { - "rotate": [ - {"angle": -3.86, "curve": 0.354, "c2": 0.41, "c3": 0.694, "c4": 0.77}, {"time": 0.1333, "angle": -10.49, "curve": 0.369, "c2": 0.63, "c3": 0.706}, - {"time": 0.2333, "angle": -13.03, "curve": 0.25, "c3": 0.75}, {"time": 0.9, "angle": 17.57, "curve": 0.244, "c3": 0.646, "c4": 0.59}, {"time": 1.3333, "angle": -3.86} - ] - }, - "body-fur-05": { - "rotate": [ - {"angle": -9.05, "curve": 0.375, "c2": 0.62, "c3": 0.716}, {"time": 0.1333, "angle": -13.03, "curve": 0.25, "c3": 0.75}, - {"time": 0.8, "angle": 17.57, "curve": 0.243, "c3": 0.68, "c4": 0.71}, {"time": 1.3333, "angle": -9.05} - ] - }, - "body-fur-04": { - "rotate": [ - {"angle": 0.08, "curve": 0.355, "c2": 0.41, "c3": 0.702, "c4": 0.79}, {"time": 0.2, "angle": -10.49, "curve": 0.369, "c2": 0.63, "c3": 0.706}, - {"time": 0.3, "angle": -13.03, "curve": 0.25, "c3": 0.75}, {"time": 0.9667, "angle": 17.57, "curve": 0.247, "c3": 0.63, "c4": 0.53}, {"time": 1.3333, "angle": 0.08} - ] - }, - "body-fur-03": { - "rotate": [ - {"angle": -5.62, "curve": 0.382, "c2": 0.58, "c3": 0.731}, {"time": 0.2, "angle": -13.03, "curve": 0.25, "c3": 0.75}, - {"time": 0.8667, "angle": 17.57, "curve": 0.243, "c3": 0.655, "c4": 0.63}, {"time": 1.3333, "angle": -5.62} - ] - }, - "body-fur-02": { - "rotate": [ - {"angle": 4.14, "curve": 0.349, "c2": 0.39, "c3": 0.707, "c4": 0.8}, {"time": 0.2667, "angle": -10.49, "curve": 0.369, "c2": 0.63, "c3": 0.706}, - {"time": 0.3667, "angle": -13.03, "curve": 0.25, "c3": 0.75}, {"time": 1.0333, "angle": 17.57, "curve": 0.253, "c3": 0.621, "c4": 0.48}, {"time": 1.3333, "angle": 4.14} - ] - }, - "body-fur-01": { - "rotate": [ - {"angle": -1.77, "curve": 0.381, "c2": 0.55, "c3": 0.742}, {"time": 0.2667, "angle": -13.03, "curve": 0.25, "c3": 0.75}, - {"time": 0.9333, "angle": 17.57, "curve": 0.245, "c3": 0.637, "c4": 0.56}, {"time": 1.3333, "angle": -1.77} - ] - } - } - }, - "3650044337": { + "3424109784": { "slots": { - "eyes": {"attachment": [{"time": 0.05, "name": "eyes-angry"}, {"time": 0.8333, "name": "eyes-shut"}, {"time": 0.9167, "name": "eyes"}]}, - "mouth": {"attachment": [{"time": 0.05, "name": "mouth-bite"}, {"time": 0.3333, "name": "mouth-open"}, {"time": 0.75, "name": "mouth-bite"}, {"time": 0.9167, "name": "mouth"}]} + "eyes": {"attachment": [{"time": 0.05, "name": "eyes-angry"}, {"time": 0.8333, "name": "eyes-shut"}]}, + "mouth": {"attachment": [{"time": 0.05, "name": "mouth-bite"}, {"time": 0.3333, "name": "mouth-open"}, {"time": 0.75, "name": "mouth-bite"}]} }, "bones": { "tail": { @@ -31087,188 +39465,60 @@ "translate": [ {"curve": 0, "c2": 0.4, "c3": 0.383}, {"time": 0.25, "x": -1.86, "y": -9.26, "curve": "stepped"}, {"time": 0.3167, "x": -1.86, "y": -9.26, "curve": "stepped"}, {"time": 0.3333, "x": -2.24, "y": 13.67, "curve": "stepped"}, {"time": 0.75, "x": -2.24, "y": 13.67, "curve": 0.313, "c3": 0.699}, - {"time": 0.8333, "x": -1.86, "y": -9.26, "curve": 0.313, "c3": 0.699}, {"time": 1} - ] - }, - "@leg-front-left": { - "translate": [ - {"curve": 0, "c2": 0.4, "c3": 0.383}, {"time": 0.25, "x": -1, "y": -5.53, "curve": "stepped"}, {"time": 0.3167, "x": -1, "y": -5.53, "curve": "stepped"}, - {"time": 0.3333, "x": -1.12, "y": 1.52, "curve": "stepped"}, {"time": 0.75, "x": -1.12, "y": 1.52, "curve": 0.313, "c3": 0.699}, - {"time": 0.8333, "x": -1, "y": -5.53, "curve": 0.313, "c3": 0.699}, {"time": 1} - ] - }, - "@shadow": { - "translate": [ - {"time": 0.25, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3167, "x": -143.36, "curve": "stepped"}, {"time": 0.7, "x": -143.36, "curve": "stepped"}, - {"time": 0.75, "x": -161.35, "curve": "stepped"}, {"time": 0.8333, "x": -161.35, "curve": 0.313, "c3": 0.699}, {"time": 1} - ], - "scale": [ - {"curve": 0, "c2": 0.4, "c3": 0.383}, {"time": 0.25, "x": 1.08, "y": 1.08, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3167, "curve": "stepped"}, - {"time": 0.3333, "x": 1.02, "y": 1.02, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.4, "x": 0.96, "y": 0.96, "curve": "stepped"}, - {"time": 0.4333, "x": 1.02, "y": 1.02, "curve": "stepped"}, {"time": 0.4667, "x": 1.02, "y": 1.02, "curve": 0, "c2": 0.3, "c3": 0.544}, - {"time": 0.5333, "x": 0.96, "y": 0.96, "curve": "stepped"}, {"time": 0.5667, "x": 1.02, "y": 1.02, "curve": "stepped"}, - {"time": 0.6, "x": 1.02, "y": 1.02, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.6667, "x": 0.96, "y": 0.96, "curve": "stepped"}, - {"time": 0.7, "x": 1.02, "y": 1.02, "curve": "stepped"}, {"time": 0.75, "curve": 0.313, "c3": 0.699}, {"time": 0.8333, "x": 1.08, "y": 1.08, "curve": 0.313, "c3": 0.699}, {"time": 1} - ] - }, - "leg-front-left-IK": { - "translate": [ - {"time": 0.25, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3167, "x": -192.09, "y": 31.17, "curve": "stepped"}, - {"time": 0.3333, "x": -219.56, "y": 3.98, "curve": 0.277, "c3": 0.849, "c4": 0.67}, {"time": 0.65, "x": -219.56, "y": 3.98, "curve": 0.641, "c2": 0.41, "c4": 0.76}, - {"time": 0.7, "x": -226.38, "y": 3.98, "curve": "stepped"}, {"time": 0.75, "x": -157.76, "curve": "stepped"}, {"time": 0.8333, "x": -157.76, "curve": 0.306, "c3": 0.695}, {"time": 1} - ] - }, - "leg-front-right-IK": { - "translate": [ - {"time": 0.25, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3167, "x": -172.87, "y": 28.32, "curve": "stepped"}, {"time": 0.3333, "x": 295.89, "y": 8.85, "curve": "stepped"}, - {"time": 0.7, "x": 295.89, "y": 8.85, "curve": "stepped"}, {"time": 0.75, "x": -180.48, "curve": "stepped"}, {"time": 0.8333, "x": -180.48, "curve": 0.313, "c3": 0.699}, {"time": 1} - ] - }, - "leg-back-left-IK": { - "translate": [ - {"time": 0.25, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3167, "x": -96.78, "y": 27.51, "curve": "stepped"}, {"time": 0.3333, "x": -542.14, "curve": "stepped"}, - {"time": 0.7, "x": -542.14, "curve": "stepped"}, {"time": 0.75, "x": -134.74, "curve": "stepped"}, {"time": 0.8333, "x": -134.74, "curve": 0.313, "c3": 0.699}, {"time": 1} - ] - }, - "@leg-back-left": { - "translate": [{"time": 0.3167, "curve": "stepped"}, {"time": 0.3333, "x": -0.06, "y": 3.33, "curve": "stepped"}, {"time": 0.7, "x": -0.06, "y": 3.33, "curve": "stepped"}, {"time": 0.75}] - }, - "@pivot-main": {"translate": [{"time": 0.8333, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.9167, "y": 31, "curve": 0.315, "c4": 0.8}, {"time": 1}]}, - "body-fur-16": { - "rotate": [ - {"angle": 14.21, "curve": 0.37, "c2": 0.48, "c3": 0.753}, {"time": 0.1, "angle": -9.97}, {"time": 0.2333, "angle": 18.26, "curve": 0.25, "c3": 0.75}, - {"time": 0.4167, "angle": -20.51, "curve": 0.25, "c3": 0.75}, {"time": 0.5, "angle": 32.13, "curve": 0.25, "c3": 0.75}, {"time": 0.6167, "angle": -10.59, "curve": 0.25, "c3": 0.75}, - {"time": 0.7167, "angle": 18.01, "curve": 0.25, "c3": 0.75}, {"time": 0.8167, "angle": -14.98, "curve": 0.25, "c3": 0.75}, - {"time": 0.9167, "angle": 33.21, "curve": 0.253, "c3": 0.621, "c4": 0.48}, {"time": 1, "angle": 13.84} - ] - }, - "body-fur-15": { - "rotate": [ - {"angle": 9.02, "curve": 0.379, "c2": 0.52, "c3": 0.747}, {"time": 0.0833, "angle": -9.97}, {"time": 0.2167, "angle": 18.26, "curve": 0.25, "c3": 0.75}, - {"time": 0.4, "angle": -20.51, "curve": 0.25, "c3": 0.75}, {"time": 0.4833, "angle": 32.13, "curve": 0.25, "c3": 0.75}, {"time": 0.6, "angle": -10.59, "curve": 0.25, "c3": 0.75}, - {"time": 0.7, "angle": 18.01, "curve": 0.25, "c3": 0.75}, {"time": 0.8, "angle": -14.98, "curve": 0.25, "c3": 0.75}, {"time": 0.9, "angle": 33.2, "curve": 0.247, "c3": 0.63, "c4": 0.52}, - {"time": 1, "angle": 13.33} - ] - }, - "body-fur-14": { - "rotate": [ - {"angle": 19.12, "curve": 0.337, "c2": 0.34, "c3": 0.702, "c4": 0.78}, {"time": 0.0833, "angle": -5.21, "curve": 0.373, "c2": 0.62, "c3": 0.713}, {"time": 0.1167, "angle": -9.97}, - {"time": 0.25, "angle": 18.26, "curve": 0.25, "c3": 0.75}, {"time": 0.4333, "angle": -20.51, "curve": 0.25, "c3": 0.75}, {"time": 0.5167, "angle": 32.13, "curve": 0.25, "c3": 0.75}, - {"time": 0.6333, "angle": -10.59, "curve": 0.25, "c3": 0.75}, {"time": 0.7333, "angle": 18.01, "curve": 0.25, "c3": 0.75}, {"time": 0.8333, "angle": -14.98, "curve": 0.25, "c3": 0.75}, - {"time": 0.9333, "angle": 33.21, "curve": 0.261, "c3": 0.618, "c4": 0.44}, {"time": 1, "angle": 13.33} - ] - }, - "body-fur-13": { - "rotate": [ - {"angle": 9.02, "curve": 0.379, "c2": 0.52, "c3": 0.747}, {"time": 0.0833, "angle": -9.97, "curve": 0.25, "c3": 0.75}, {"time": 0.2167, "angle": 18.26, "curve": 0.25, "c3": 0.75}, - {"time": 0.4, "angle": -20.51, "curve": 0.25, "c3": 0.75}, {"time": 0.4833, "angle": 32.13, "curve": 0.25, "c3": 0.75}, {"time": 0.6, "angle": -10.59, "curve": 0.25, "c3": 0.75}, - {"time": 0.7, "angle": 18.01, "curve": 0.25, "c3": 0.75}, {"time": 0.8, "angle": -14.98, "curve": 0.25, "c3": 0.75}, {"time": 0.9, "angle": 33.2, "curve": 0.247, "c3": 0.63, "c4": 0.52}, - {"time": 1, "angle": 11.59} - ] - }, - "body-fur-12": { - "rotate": [ - {"angle": 3.91, "curve": 0.382, "c2": 0.56, "c3": 0.739}, {"time": 0.0667, "angle": -9.97}, {"time": 0.2, "angle": 18.26, "curve": 0.25, "c3": 0.75}, - {"time": 0.3833, "angle": -20.51, "curve": 0.25, "c3": 0.75}, {"time": 0.4667, "angle": 32.13, "curve": 0.25, "c3": 0.75}, {"time": 0.5833, "angle": -10.59, "curve": 0.25, "c3": 0.75}, - {"time": 0.6833, "angle": 18.01, "curve": 0.25, "c3": 0.75}, {"time": 0.7833, "angle": -14.98, "curve": 0.25, "c3": 0.75}, - {"time": 0.8833, "angle": 33.21, "curve": 0.244, "c3": 0.643, "c4": 0.58}, {"time": 1, "angle": 8.12} - ] - }, - "body-fur-11": { - "rotate": [ - {"angle": -0.94, "curve": 0.381, "c2": 0.59, "c3": 0.727}, {"time": 0.05, "angle": -9.97}, {"time": 0.1833, "angle": 18.26, "curve": 0.25, "c3": 0.75}, - {"time": 0.3667, "angle": -20.51, "curve": 0.25, "c3": 0.75}, {"time": 0.45, "angle": 32.13, "curve": 0.25, "c3": 0.75}, {"time": 0.5667, "angle": -10.59, "curve": 0.25, "c3": 0.75}, - {"time": 0.6667, "angle": 18.01, "curve": 0.25, "c3": 0.75}, {"time": 0.7667, "angle": -14.98, "curve": 0.25, "c3": 0.75}, - {"time": 0.8667, "angle": 33.21, "curve": 0.242, "c3": 0.661, "c4": 0.65}, {"time": 1, "angle": 4.23} - ] - }, - "body-fur-10": { - "rotate": [ - {"angle": -5.21, "curve": 0.373, "c2": 0.62, "c3": 0.713}, {"time": 0.0333, "angle": -9.97}, {"time": 0.1667, "angle": 18.26, "curve": 0.25, "c3": 0.75}, - {"time": 0.35, "angle": -20.51, "curve": 0.25, "c3": 0.75}, {"time": 0.4333, "angle": 32.13, "curve": 0.25, "c3": 0.75}, {"time": 0.55, "angle": -10.59, "curve": 0.25, "c3": 0.75}, - {"time": 0.65, "angle": 18.01, "curve": 0.25, "c3": 0.75}, {"time": 0.75, "angle": -14.98, "curve": 0.25, "c3": 0.75}, - {"time": 0.85, "angle": 33.21, "curve": 0.243, "c3": 0.685, "c4": 0.73}, {"time": 1, "angle": 0.34} - ] - }, - "body-fur-09": { - "rotate": [ - {"angle": 8.75, "curve": 0.351, "c2": 0.39, "c3": 0.696, "c4": 0.76}, {"time": 0.05, "angle": -5.21}, {"time": 0.0833, "angle": -9.97}, - {"time": 0.2167, "angle": 18.26, "curve": 0.25, "c3": 0.75}, {"time": 0.4, "angle": -20.51, "curve": 0.25, "c3": 0.75}, {"time": 0.4833, "angle": 32.13, "curve": 0.25, "c3": 0.75}, - {"time": 0.6, "angle": -10.59, "curve": 0.25, "c3": 0.75}, {"time": 0.7, "angle": 18.01, "curve": 0.25, "c3": 0.75}, {"time": 0.8, "angle": -14.98, "curve": 0.25, "c3": 0.75}, - {"time": 0.9, "angle": 33.21, "curve": 0.247, "c3": 0.63, "c4": 0.52}, {"time": 1, "angle": 6.86} - ] - }, - "body-fur-08": { - "rotate": [ - {"angle": -0.94, "curve": 0.381, "c2": 0.59, "c3": 0.727}, {"time": 0.05, "angle": -9.97}, {"time": 0.1833, "angle": 18.26, "curve": 0.25, "c3": 0.75}, - {"time": 0.3667, "angle": -20.51, "curve": 0.25, "c3": 0.75}, {"time": 0.45, "angle": 32.13, "curve": 0.25, "c3": 0.75}, {"time": 0.5667, "angle": -10.59, "curve": 0.25, "c3": 0.75}, - {"time": 0.6667, "angle": 18.01, "curve": 0.25, "c3": 0.75}, {"time": 0.7667, "angle": -14.98, "curve": 0.25, "c3": 0.75}, - {"time": 0.8667, "angle": 33.21, "curve": 0.242, "c3": 0.661, "c4": 0.65}, {"time": 1, "angle": -0.91} - ] - }, - "body-fur-07": { - "rotate": [ - {"angle": -8.45, "curve": 0.358, "c2": 0.65, "c3": 0.693}, {"time": 0.0167, "angle": -9.97}, {"time": 0.15, "angle": 18.26, "curve": 0.25, "c3": 0.75}, - {"time": 0.3333, "angle": -20.51, "curve": 0.25, "c3": 0.75}, {"time": 0.4167, "angle": 32.13, "curve": 0.25, "c3": 0.75}, {"time": 0.5333, "angle": -10.59, "curve": 0.25, "c3": 0.75}, - {"time": 0.6333, "angle": 18.01, "curve": 0.25, "c3": 0.75}, {"time": 0.7333, "angle": -14.98, "curve": 0.25, "c3": 0.75}, - {"time": 0.8333, "angle": 33.21, "curve": 0.245, "c3": 0.714, "c4": 0.85}, {"time": 1, "angle": 2.91} + {"time": 0.8333, "x": -1.86, "y": -9.26, "curve": 0.313, "c3": 0.699}, {"time": 1} ] }, - "body-fur-06": { - "rotate": [ - {"angle": 3.65, "curve": 0.35, "c2": 0.39, "c3": 0.689, "c4": 0.75}, {"time": 0.0333, "angle": -5.21}, {"time": 0.0667, "angle": -9.97}, - {"time": 0.2, "angle": 18.26, "curve": 0.25, "c3": 0.75}, {"time": 0.3833, "angle": -20.51, "curve": 0.25, "c3": 0.75}, {"time": 0.4667, "angle": 32.13, "curve": 0.25, "c3": 0.75}, - {"time": 0.5833, "angle": -10.59, "curve": 0.25, "c3": 0.75}, {"time": 0.6833, "angle": 18.01, "curve": 0.25, "c3": 0.75}, {"time": 0.7833, "angle": -14.98, "curve": 0.25, "c3": 0.75}, - {"time": 0.8833, "angle": 33.21, "curve": 0.244, "c3": 0.643, "c4": 0.58}, {"time": 1, "angle": 13.33} + "@leg-front-left": { + "translate": [ + {"curve": 0, "c2": 0.4, "c3": 0.383}, {"time": 0.25, "x": -1, "y": -5.53, "curve": "stepped"}, {"time": 0.3167, "x": -1, "y": -5.53, "curve": "stepped"}, + {"time": 0.3333, "x": -1.12, "y": 1.52, "curve": "stepped"}, {"time": 0.75, "x": -1.12, "y": 1.52, "curve": 0.313, "c3": 0.699}, + {"time": 0.8333, "x": -1, "y": -5.53, "curve": 0.313, "c3": 0.699}, {"time": 1} ] }, - "body-fur-05": { - "rotate": [ - {"angle": -5.21, "curve": 0.373, "c2": 0.62, "c3": 0.713}, {"time": 0.0333, "angle": -9.97}, {"time": 0.1667, "angle": 18.26, "curve": 0.25, "c3": 0.75}, - {"time": 0.35, "angle": -20.51, "curve": 0.25, "c3": 0.75}, {"time": 0.4333, "angle": 32.13, "curve": 0.25, "c3": 0.75}, {"time": 0.55, "angle": -10.59, "curve": 0.25, "c3": 0.75}, - {"time": 0.65, "angle": 18.01, "curve": 0.25, "c3": 0.75}, {"time": 0.75, "angle": -14.98, "curve": 0.25, "c3": 0.75}, - {"time": 0.85, "angle": 33.21, "curve": 0.243, "c3": 0.685, "c4": 0.73}, {"time": 1, "angle": 6.86} + "@shadow": { + "translate": [ + {"time": 0.25, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3167, "x": -143.36, "curve": "stepped"}, {"time": 0.7, "x": -143.36, "curve": "stepped"}, + {"time": 0.75, "x": -161.35, "curve": "stepped"}, {"time": 0.8333, "x": -161.35, "curve": 0.313, "c3": 0.699}, {"time": 1} + ], + "scale": [ + {"curve": 0, "c2": 0.4, "c3": 0.383}, {"time": 0.25, "x": 1.08, "y": 1.08, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3167, "curve": "stepped"}, + {"time": 0.3333, "x": 1.02, "y": 1.02, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.4, "x": 0.96, "y": 0.96, "curve": "stepped"}, + {"time": 0.4333, "x": 1.02, "y": 1.02, "curve": "stepped"}, {"time": 0.4667, "x": 1.02, "y": 1.02, "curve": 0, "c2": 0.3, "c3": 0.544}, + {"time": 0.5333, "x": 0.96, "y": 0.96, "curve": "stepped"}, {"time": 0.5667, "x": 1.02, "y": 1.02, "curve": "stepped"}, + {"time": 0.6, "x": 1.02, "y": 1.02, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.6667, "x": 0.96, "y": 0.96, "curve": "stepped"}, + {"time": 0.7, "x": 1.02, "y": 1.02, "curve": "stepped"}, {"time": 0.75, "curve": 0.313, "c3": 0.699}, {"time": 0.8333, "x": 1.08, "y": 1.08, "curve": 0.313, "c3": 0.699}, {"time": 1} ] }, - "body-fur-04": { - "rotate": [ - {"angle": 8.75, "curve": 0.351, "c2": 0.39, "c3": 0.696, "c4": 0.76}, {"time": 0.05, "angle": -5.21, "curve": 0.373, "c2": 0.62, "c3": 0.713}, {"time": 0.0833, "angle": -9.97}, - {"time": 0.2167, "angle": 18.26, "curve": 0.25, "c3": 0.75}, {"time": 0.4, "angle": -20.51, "curve": 0.25, "c3": 0.75}, {"time": 0.4833, "angle": 32.13, "curve": 0.25, "c3": 0.75}, - {"time": 0.6, "angle": -10.59, "curve": 0.25, "c3": 0.75}, {"time": 0.7, "angle": 18.01, "curve": 0.25, "c3": 0.75}, {"time": 0.8, "angle": -14.98, "curve": 0.25, "c3": 0.75}, - {"time": 0.9, "angle": 33.21, "curve": 0.247, "c3": 0.63, "c4": 0.52}, {"time": 1, "angle": 12.53} + "leg-front-left-IK": { + "translate": [ + {"time": 0.25, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3167, "x": -192.09, "y": 31.17, "curve": "stepped"}, + {"time": 0.3333, "x": -219.56, "y": 3.98, "curve": 0.277, "c3": 0.849, "c4": 0.67}, {"time": 0.65, "x": -219.56, "y": 3.98, "curve": 0.641, "c2": 0.41, "c4": 0.76}, + {"time": 0.7, "x": -226.38, "y": 3.98, "curve": "stepped"}, {"time": 0.75, "x": -157.76, "curve": "stepped"}, {"time": 0.8333, "x": -157.76, "curve": 0.306, "c3": 0.695}, {"time": 1} ] }, - "body-fur-03": { - "rotate": [ - {"angle": -0.94, "curve": 0.381, "c2": 0.59, "c3": 0.727}, {"time": 0.05, "angle": -9.97, "curve": 0.25, "c3": 0.75}, {"time": 0.1833, "angle": 18.26, "curve": 0.25, "c3": 0.75}, - {"time": 0.3667, "angle": -20.51, "curve": 0.25, "c3": 0.75}, {"time": 0.45, "angle": 32.13, "curve": 0.25, "c3": 0.75}, {"time": 0.5667, "angle": -10.59, "curve": 0.25, "c3": 0.75}, - {"time": 0.6667, "angle": 18.01, "curve": 0.25, "c3": 0.75}, {"time": 0.7667, "angle": -14.98, "curve": 0.25, "c3": 0.75}, - {"time": 0.8667, "angle": 33.21, "curve": 0.242, "c3": 0.661, "c4": 0.65}, {"time": 1, "angle": 5.54} + "leg-front-right-IK": { + "translate": [ + {"time": 0.25, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3167, "x": -172.87, "y": 28.32, "curve": "stepped"}, {"time": 0.3333, "x": 295.89, "y": 8.85, "curve": "stepped"}, + {"time": 0.7, "x": 295.89, "y": 8.85, "curve": "stepped"}, {"time": 0.75, "x": -180.48, "curve": "stepped"}, {"time": 0.8333, "x": -180.48, "curve": 0.313, "c3": 0.699}, {"time": 1} ] }, - "body-fur-02": { - "rotate": [ - {"angle": 13.97, "curve": 0.346, "c2": 0.38, "c3": 0.7, "c4": 0.78}, {"time": 0.0667, "angle": -5.21, "curve": 0.373, "c2": 0.62, "c3": 0.713}, {"time": 0.1, "angle": -9.97}, - {"time": 0.2333, "angle": 18.26, "curve": 0.25, "c3": 0.75}, {"time": 0.4167, "angle": -20.51, "curve": 0.25, "c3": 0.75}, {"time": 0.5, "angle": 32.13, "curve": 0.25, "c3": 0.75}, - {"time": 0.6167, "angle": -10.59, "curve": 0.25, "c3": 0.75}, {"time": 0.7167, "angle": 18.01, "curve": 0.25, "c3": 0.75}, {"time": 0.8167, "angle": -14.98, "curve": 0.25, "c3": 0.75}, - {"time": 0.9167, "angle": 33.21, "curve": 0.253, "c3": 0.621, "c4": 0.48}, {"time": 1, "angle": 13.84} + "leg-back-left-IK": { + "translate": [ + {"time": 0.25, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3167, "x": -96.78, "y": 27.51, "curve": "stepped"}, {"time": 0.3333, "x": -542.14, "curve": "stepped"}, + {"time": 0.7, "x": -542.14, "curve": "stepped"}, {"time": 0.75, "x": -134.74, "curve": "stepped"}, {"time": 0.8333, "x": -134.74, "curve": 0.313, "c3": 0.699}, {"time": 1} ] }, - "body-fur-01": { - "rotate": [ - {"angle": 3.91, "curve": 0.382, "c2": 0.56, "c3": 0.739}, {"time": 0.0667, "angle": -9.97, "curve": 0.25, "c3": 0.75}, {"time": 0.2, "angle": 18.26, "curve": 0.25, "c3": 0.75}, - {"time": 0.3833, "angle": -20.51, "curve": 0.25, "c3": 0.75}, {"time": 0.4667, "angle": 32.13, "curve": 0.25, "c3": 0.75}, {"time": 0.5833, "angle": -10.59, "curve": 0.25, "c3": 0.75}, - {"time": 0.6833, "angle": 18.01, "curve": 0.25, "c3": 0.75}, {"time": 0.7833, "angle": -14.98, "curve": 0.25, "c3": 0.75}, - {"time": 0.8833, "angle": 33.21, "curve": 0.244, "c3": 0.643, "c4": 0.58}, {"time": 1, "angle": 10.51} - ] - } + "@leg-back-left": { + "translate": [{"time": 0.3167, "curve": "stepped"}, {"time": 0.3333, "x": -0.06, "y": 3.33, "curve": "stepped"}, {"time": 0.7, "x": -0.06, "y": 3.33, "curve": "stepped"}, {"time": 0.75}] + }, + "@pivot-main": {"translate": [{"time": 0.8333, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.9167, "y": 31, "curve": 0.315, "c4": 0.8}, {"time": 1}]} }, "events": [{"time": 0.3167, "name": "start-attack"}, {"time": 0.4333, "name": "hit"}, {"time": 0.5667, "name": "hit"}, {"time": 0.7, "name": "hit"}] }, - "3237083422": { + "188677644": { "slots": { - "eyes": {"attachment": [{"time": 0.0167, "name": "eyes-angry"}, {"time": 0.85, "name": "eyes-shut"}, {"time": 0.9333, "name": "eyes"}]}, - "mouth": {"attachment": [{"time": 0.0167, "name": "mouth-bite"}, {"time": 0.1833, "name": "mouth-open"}, {"time": 0.5, "name": "mouth-bite"}, {"time": 0.9333, "name": "mouth"}]} + "eyes": {"attachment": [{"time": 0.0167, "name": "eyes-angry"}, {"time": 0.85, "name": "eyes-shut"}]}, + "mouth": {"attachment": [{"time": 0.0167, "name": "mouth-bite"}, {"time": 0.1833, "name": "mouth-open"}, {"time": 0.5, "name": "mouth-bite"}]} }, "bones": { "@pivot-back": { @@ -31349,127 +39599,14 @@ {"time": 0.25, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.4667, "angle": 112.05, "curve": 1, "c4": 0.1}, {"time": 0.5, "angle": -146.9}, {"time": 0.6667, "angle": -145.45, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.7167} ] - }, - "body-fur-01": { - "rotate": [ - {"angle": 8.55, "curve": 0.381, "c2": 0.55, "c3": 0.742}, {"time": 0.0667}, {"time": 0.2, "angle": -31.39, "curve": 0.25, "c3": 0.75}, - {"time": 0.5667, "angle": -44.12, "curve": 0.25, "c3": 0.75}, {"time": 0.7333, "angle": 19.76, "curve": 0.25, "c3": 0.75}, {"time": 0.8, "angle": -17.51, "curve": 0.25, "c3": 0.75}, - {"time": 0.9, "angle": 23.24, "curve": 0.245, "c3": 0.637, "c4": 0.56}, {"time": 1, "angle": 10.51} - ] - }, - "body-fur-02": { - "rotate": [ - {"angle": 14.58, "curve": 0.339, "c2": 0.35, "c3": 0.697, "c4": 0.76}, {"time": 0.0667, "angle": 3.02, "curve": 0.375, "c2": 0.62, "c3": 0.716}, {"time": 0.1}, - {"time": 0.2333, "angle": -44.52, "curve": 0.25, "c3": 0.75}, {"time": 0.6, "angle": -44.12, "curve": 0.25, "c3": 0.75}, {"time": 0.7667, "angle": 19.76, "curve": 0.25, "c3": 0.75}, - {"time": 0.8333, "angle": -17.51, "curve": 0.25, "c3": 0.75}, {"time": 0.9333, "angle": 23.24, "curve": 0.258, "c3": 0.619, "c4": 0.45}, {"time": 1, "angle": 13.84} - ] - }, - "body-fur-03": { - "rotate": [ - {"angle": 5.63, "curve": 0.382, "c2": 0.58, "c3": 0.731}, {"time": 0.05}, {"time": 0.1833, "angle": -25.75, "curve": 0.25, "c3": 0.75}, - {"time": 0.55, "angle": -44.12, "curve": 0.25, "c3": 0.75}, {"time": 0.7167, "angle": 19.76, "curve": 0.25, "c3": 0.75}, {"time": 0.7833, "angle": -17.51, "curve": 0.25, "c3": 0.75}, - {"time": 0.8833, "angle": 23.24, "curve": 0.243, "c3": 0.655, "c4": 0.63}, {"time": 1, "angle": 5.54} - ] - }, - "body-fur-04": { - "rotate": [ - {"angle": 11.51, "curve": 0.347, "c2": 0.38, "c3": 0.694, "c4": 0.76}, {"time": 0.05, "angle": 3.02, "curve": 0.375, "c2": 0.62, "c3": 0.716}, {"time": 0.0833}, - {"time": 0.2167, "angle": -25.75, "curve": 0.25, "c3": 0.75}, {"time": 0.5833, "angle": -44.12, "curve": 0.25, "c3": 0.75}, {"time": 0.75, "angle": 19.76, "curve": 0.25, "c3": 0.75}, - {"time": 0.8167, "angle": -17.51, "curve": 0.25, "c3": 0.75}, {"time": 0.9167, "angle": 23.24, "curve": 0.25, "c3": 0.625, "c4": 0.5}, {"time": 1, "angle": 12.53} - ] - }, - "body-fur-05": { - "rotate": [ - {"angle": 3.02, "curve": 0.375, "c2": 0.62, "c3": 0.716}, {"time": 0.0333}, {"time": 0.1667, "angle": -25.75, "curve": 0.25, "c3": 0.75}, - {"time": 0.5333, "angle": -44.12, "curve": 0.25, "c3": 0.75}, {"time": 0.7, "angle": 19.76, "curve": 0.25, "c3": 0.75}, {"time": 0.7667, "angle": -17.51, "curve": 0.25, "c3": 0.75}, - {"time": 0.8667, "angle": 23.24, "curve": 0.243, "c3": 0.68, "c4": 0.71}, {"time": 1, "angle": 6.86} - ] - }, - "body-fur-06": { - "rotate": [ - {"angle": 8.46, "curve": 0.349, "c2": 0.39, "c3": 0.689, "c4": 0.74}, {"time": 0.0333, "angle": 3.02, "curve": 0.375, "c2": 0.62, "c3": 0.716}, {"time": 0.0667}, - {"time": 0.2, "angle": -25.75, "curve": 0.25, "c3": 0.75}, {"time": 0.5667, "angle": -44.12, "curve": 0.25, "c3": 0.75}, {"time": 0.7333, "angle": 19.76, "curve": 0.25, "c3": 0.75}, - {"time": 0.8, "angle": -17.51, "curve": 0.25, "c3": 0.75}, {"time": 0.9, "angle": 23.24, "curve": 0.245, "c3": 0.637, "c4": 0.56}, {"time": 1, "angle": 13.33} - ] - }, - "body-fur-07": { - "rotate": [ - {"angle": 0.99, "curve": 0.36, "c2": 0.64, "c3": 0.695}, {"time": 0.0167, "curve": 0.25, "c3": 0.75}, {"time": 0.15, "angle": -25.75, "curve": 0.25, "c3": 0.75}, - {"time": 0.5167, "angle": -44.12, "curve": 0.25, "c3": 0.75}, {"time": 0.6833, "angle": 19.76, "curve": 0.25, "c3": 0.75}, {"time": 0.75, "angle": -17.51, "curve": 0.25, "c3": 0.75}, - {"time": 0.85, "angle": 23.24, "curve": 0.245, "c3": 0.711, "c4": 0.83}, {"time": 1, "angle": 2.91} - ] - }, - "body-fur-08": { - "rotate": [ - {"angle": 5.63, "curve": 0.382, "c2": 0.58, "c3": 0.731}, {"time": 0.05}, {"time": 0.1833, "angle": -25.75, "curve": 0.25, "c3": 0.75}, - {"time": 0.55, "angle": -44.12, "curve": 0.25, "c3": 0.75}, {"time": 0.7167, "angle": 19.76, "curve": 0.25, "c3": 0.75}, {"time": 0.7833, "angle": -17.51, "curve": 0.25, "c3": 0.75}, - {"time": 0.8833, "angle": 23.24, "curve": 0.243, "c3": 0.655, "c4": 0.63}, {"time": 1, "angle": -0.91} - ] - }, - "body-fur-09": { - "rotate": [ - {"angle": 11.51, "curve": 0.347, "c2": 0.38, "c3": 0.694, "c4": 0.76}, {"time": 0.05, "angle": 3.02, "curve": 0.375, "c2": 0.62, "c3": 0.716}, - {"time": 0.0833, "curve": 0.25, "c3": 0.75}, {"time": 0.2167, "angle": -25.75, "curve": 0.25, "c3": 0.75}, {"time": 0.5833, "angle": -44.12, "curve": 0.25, "c3": 0.75}, - {"time": 0.75, "angle": 19.76, "curve": 0.25, "c3": 0.75}, {"time": 0.8167, "angle": -17.51, "curve": 0.25, "c3": 0.75}, - {"time": 0.9167, "angle": 23.24, "curve": 0.25, "c3": 0.625, "c4": 0.5}, {"time": 1, "angle": 6.86} - ] - }, - "body-fur-10": { - "rotate": [ - {"angle": 3.02, "curve": 0.375, "c2": 0.62, "c3": 0.716}, {"time": 0.0333, "curve": 0.25, "c3": 0.75}, {"time": 0.1667, "angle": -25.75, "curve": 0.25, "c3": 0.75}, - {"time": 0.5333, "angle": -44.12, "curve": 0.25, "c3": 0.75}, {"time": 0.7, "angle": 19.76, "curve": 0.25, "c3": 0.75}, {"time": 0.7667, "angle": -17.51, "curve": 0.25, "c3": 0.75}, - {"time": 0.8667, "angle": 23.24, "curve": 0.243, "c3": 0.68, "c4": 0.71}, {"time": 1, "angle": 0.34} - ] - }, - "body-fur-11": { - "rotate": [ - {"angle": 5.63, "curve": 0.382, "c2": 0.58, "c3": 0.731}, {"time": 0.05, "curve": 0.25, "c3": 0.75}, {"time": 0.1833, "angle": -25.75, "curve": 0.25, "c3": 0.75}, - {"time": 0.55, "angle": -44.12, "curve": 0.25, "c3": 0.75}, {"time": 0.7167, "angle": 19.76, "curve": 0.25, "c3": 0.75}, {"time": 0.7833, "angle": -17.51, "curve": 0.25, "c3": 0.75}, - {"time": 0.8833, "angle": 23.24, "curve": 0.243, "c3": 0.655, "c4": 0.63}, {"time": 1, "angle": 4.23} - ] - }, - "body-fur-12": { - "rotate": [ - {"angle": 8.55, "curve": 0.381, "c2": 0.55, "c3": 0.742}, {"time": 0.0667, "curve": 0.25, "c3": 0.75}, {"time": 0.2, "angle": -25.75, "curve": 0.25, "c3": 0.75}, - {"time": 0.5667, "angle": -44.12, "curve": 0.25, "c3": 0.75}, {"time": 0.7333, "angle": 19.76, "curve": 0.25, "c3": 0.75}, {"time": 0.8, "angle": -17.51, "curve": 0.25, "c3": 0.75}, - {"time": 0.9, "angle": 23.24, "curve": 0.245, "c3": 0.637, "c4": 0.56}, {"time": 1, "angle": 8.12} - ] - }, - "body-fur-13": { - "rotate": [ - {"angle": 11.62, "curve": 0.375, "c2": 0.5, "c3": 0.75}, {"time": 0.0833}, {"time": 0.2167, "angle": -25.75, "curve": 0.25, "c3": 0.75}, - {"time": 0.5833, "angle": -44.12, "curve": 0.25, "c3": 0.75}, {"time": 0.75, "angle": 19.76, "curve": 0.25, "c3": 0.75}, {"time": 0.8167, "angle": -17.51, "curve": 0.25, "c3": 0.75}, - {"time": 0.9167, "angle": 23.24, "curve": 0.25, "c3": 0.625, "c4": 0.5}, {"time": 1, "angle": 11.59} - ] - }, - "body-fur-14": { - "rotate": [ - {"angle": 17.54, "curve": 0.326, "c2": 0.31, "c3": 0.697, "c4": 0.76}, {"time": 0.0833, "angle": 3.02, "curve": 0.375, "c2": 0.62, "c3": 0.716}, {"time": 0.1167}, - {"time": 0.25, "angle": -25.75, "curve": 0.25, "c3": 0.75}, {"time": 0.6167, "angle": -44.12, "curve": 0.25, "c3": 0.75}, {"time": 0.7833, "angle": 19.76, "curve": 0.25, "c3": 0.75}, - {"time": 0.85, "angle": -17.51, "curve": 0.25, "c3": 0.75}, {"time": 0.95, "angle": 23.24, "curve": 0.269, "c3": 0.618, "c4": 0.42}, {"time": 1, "angle": 13.33} - ] - }, - "body-fur-15": { - "rotate": [ - {"angle": 11.62, "curve": 0.375, "c2": 0.5, "c3": 0.75}, {"time": 0.0833}, {"time": 0.2167, "angle": -25.75, "curve": 0.25, "c3": 0.75}, - {"time": 0.5833, "angle": -44.12, "curve": 0.25, "c3": 0.75}, {"time": 0.75, "angle": 19.76, "curve": 0.25, "c3": 0.75}, {"time": 0.8167, "angle": -17.51, "curve": 0.25, "c3": 0.75}, - {"time": 0.9167, "angle": 23.24, "curve": 0.25, "c3": 0.625, "c4": 0.5}, {"time": 1, "angle": 13.33} - ] - }, - "body-fur-16": { - "rotate": [ - {"angle": 14.69, "curve": 0.363, "c2": 0.44, "c3": 0.755}, {"time": 0.1, "curve": 0.25, "c3": 0.75}, {"time": 0.2333, "angle": -25.75, "curve": 0.25, "c3": 0.75}, - {"time": 0.6, "angle": -44.12, "curve": 0.25, "c3": 0.75}, {"time": 0.7667, "angle": 19.76, "curve": 0.25, "c3": 0.75}, {"time": 0.8333, "angle": -17.51, "curve": 0.25, "c3": 0.75}, - {"time": 0.9333, "angle": 23.24, "curve": 0.258, "c3": 0.619, "c4": 0.45}, {"time": 1, "angle": 13.84} - ] } }, "events": [{"time": 0.4167, "name": "start-attack"}, {"time": 0.5, "name": "hit"}] }, - "3603559322": { + "185835880": { "slots": { - "eyes": {"attachment": [{"time": 0.0167, "name": "eyes-angry"}, {"time": 0.9167, "name": "eyes"}]}, - "mouth": {"attachment": [{"time": 0.0167, "name": "mouth-bite"}, {"time": 0.1833, "name": "mouth-open"}, {"time": 0.5, "name": "mouth-bite"}, {"time": 0.9167, "name": "mouth"}]} + "eyes": {"attachment": [{"time": 0.0167, "name": "eyes-angry"}]}, + "mouth": {"attachment": [{"time": 0.0167, "name": "mouth-bite"}, {"time": 0.1833, "name": "mouth-open"}, {"time": 0.5, "name": "mouth-bite"}]} }, "bones": { "@pivot-back": { @@ -31559,131 +39696,14 @@ {"time": 0.8333, "angle": 19.38, "curve": 0.313, "c3": 0.699}, {"time": 1} ] }, - "@pivot-main": {"translate": [{"time": 0.8333, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.9167, "y": 31, "curve": 0.315, "c4": 0.8}, {"time": 1}]}, - "body-fur-16": { - "rotate": [ - {"angle": -14.32, "curve": 0.381, "c2": 0.55, "c3": 0.742}, {"time": 0.1, "curve": 0.25, "c3": 0.75}, {"time": 0.2667, "angle": -25.37, "curve": 0.571, "c2": 0.01, "c3": 0.75}, - {"time": 0.4333, "angle": 31.07, "curve": 0.752, "c2": 0.01, "c3": 0.75}, {"time": 0.6, "angle": -34.51, "curve": 0.25, "c3": 0.75}, - {"time": 0.7667, "angle": -3.25, "curve": 0.25, "c3": 0.75}, {"time": 0.85, "angle": -38.93, "curve": 0.245, "c3": 0.637, "c4": 0.56}, {"time": 1, "angle": 13.84} - ] - }, - "body-fur-15": { - "rotate": [ - {"angle": -11.05, "curve": 0.382, "c2": 0.57, "c3": 0.735}, {"time": 0.0833, "curve": 0.25, "c3": 0.75}, {"time": 0.25, "angle": -25.37, "curve": 0.571, "c2": 0.01, "c3": 0.75}, - {"time": 0.4167, "angle": 31.07, "curve": 0.752, "c2": 0.01, "c3": 0.75}, {"time": 0.5833, "angle": -34.51, "curve": 0.25, "c3": 0.75}, - {"time": 0.75, "angle": -3.25, "curve": 0.25, "c3": 0.75}, {"time": 0.8333, "angle": -38.93, "curve": 0.243, "c3": 0.649, "c4": 0.6}, {"time": 1, "angle": 13.33} - ] - }, - "body-fur-14": { - "rotate": [ - {"angle": -17.56, "curve": 0.356, "c2": 0.41, "c3": 0.707, "c4": 0.81}, {"time": 0.0833, "angle": -2.71, "curve": 0.366, "c2": 0.63, "c3": 0.703}, {"time": 0.1167}, - {"time": 0.2833, "angle": -25.37, "curve": 0.571, "c2": 0.01, "c3": 0.75}, {"time": 0.45, "angle": 31.07, "curve": 0.752, "c2": 0.01, "c3": 0.75}, - {"time": 0.6167, "angle": -34.51, "curve": 0.25, "c3": 0.75}, {"time": 0.7833, "angle": -3.25, "curve": 0.25, "c3": 0.75}, - {"time": 0.8667, "angle": -38.93, "curve": 0.248, "c3": 0.628, "c4": 0.52}, {"time": 1, "angle": 13.33} - ] - }, - "body-fur-13": { - "rotate": [ - {"angle": -11.05, "curve": 0.382, "c2": 0.57, "c3": 0.735}, {"time": 0.0833}, {"time": 0.25, "angle": -25.37, "curve": 0.571, "c2": 0.01, "c3": 0.75}, - {"time": 0.4167, "angle": 31.07, "curve": 0.752, "c2": 0.01, "c3": 0.75}, {"time": 0.5833, "angle": -34.51, "curve": 0.25, "c3": 0.75}, - {"time": 0.75, "angle": -3.25, "curve": 0.25, "c3": 0.75}, {"time": 0.8333, "angle": -38.93, "curve": 0.243, "c3": 0.649, "c4": 0.6}, {"time": 1, "angle": 11.59} - ] - }, - "body-fur-12": { - "rotate": [ - {"angle": -7.89, "curve": 0.38, "c2": 0.59, "c3": 0.727}, {"time": 0.0667, "curve": 0.25, "c3": 0.75}, {"time": 0.2333, "angle": -25.37, "curve": 0.571, "c2": 0.01, "c3": 0.75}, - {"time": 0.4, "angle": 31.07, "curve": 0.752, "c2": 0.01, "c3": 0.75}, {"time": 0.5667, "angle": -34.51, "curve": 0.25, "c3": 0.75}, - {"time": 0.7333, "angle": -3.25, "curve": 0.25, "c3": 0.75}, {"time": 0.8167, "angle": -38.93, "curve": 0.242, "c3": 0.663, "c4": 0.65}, {"time": 1, "angle": 8.12} - ] - }, - "body-fur-11": { - "rotate": [ - {"angle": -5.07, "curve": 0.375, "c2": 0.62, "c3": 0.716}, {"time": 0.05, "curve": 0.25, "c3": 0.75}, {"time": 0.2167, "angle": -25.37, "curve": 0.571, "c2": 0.01, "c3": 0.75}, - {"time": 0.3833, "angle": 31.07, "curve": 0.752, "c2": 0.01, "c3": 0.75}, {"time": 0.55, "angle": -34.51, "curve": 0.25, "c3": 0.75}, - {"time": 0.7167, "angle": -3.25, "curve": 0.25, "c3": 0.75}, {"time": 0.8, "angle": -38.93, "curve": 0.243, "c3": 0.68, "c4": 0.71}, {"time": 1, "angle": 4.23} - ] - }, - "body-fur-10": { - "rotate": [ - {"angle": -2.71, "curve": 0.366, "c2": 0.63, "c3": 0.703}, {"time": 0.0333, "curve": 0.25, "c3": 0.75}, {"time": 0.2, "angle": -25.37, "curve": 0.571, "c2": 0.01, "c3": 0.75}, - {"time": 0.3667, "angle": 31.07, "curve": 0.752, "c2": 0.01, "c3": 0.75}, {"time": 0.5333, "angle": -34.51, "curve": 0.25, "c3": 0.75}, - {"time": 0.7, "angle": -3.25, "curve": 0.25, "c3": 0.75}, {"time": 0.7833, "angle": -38.93, "curve": 0.244, "c3": 0.7, "c4": 0.79}, {"time": 1, "angle": 0.34} - ] - }, - "body-fur-09": { - "rotate": [ - {"angle": -7.82, "curve": 0.352, "c2": 0.41, "c3": 0.688, "c4": 0.76}, {"time": 0.0333, "angle": -2.71, "curve": 0.366, "c2": 0.63, "c3": 0.703}, - {"time": 0.0667, "curve": 0.25, "c3": 0.75}, {"time": 0.2333, "angle": -25.37, "curve": 0.571, "c2": 0.01, "c3": 0.75}, - {"time": 0.4, "angle": 31.07, "curve": 0.752, "c2": 0.01, "c3": 0.75}, {"time": 0.5667, "angle": -34.51, "curve": 0.25, "c3": 0.75}, - {"time": 0.7333, "angle": -3.25, "curve": 0.25, "c3": 0.75}, {"time": 0.8167, "angle": -38.93, "curve": 0.242, "c3": 0.663, "c4": 0.65}, {"time": 1, "angle": 6.86} - ] - }, - "body-fur-08": { - "rotate": [ - {"angle": -2.71, "curve": 0.366, "c2": 0.63, "c3": 0.703}, {"time": 0.0333, "curve": 0.25, "c3": 0.75}, {"time": 0.2, "angle": -25.37, "curve": 0.571, "c2": 0.01, "c3": 0.75}, - {"time": 0.3667, "angle": 31.07, "curve": 0.752, "c2": 0.01, "c3": 0.75}, {"time": 0.5333, "angle": -34.51, "curve": 0.25, "c3": 0.75}, - {"time": 0.7, "angle": -3.25, "curve": 0.25, "c3": 0.75}, {"time": 0.7833, "angle": -38.93, "curve": 0.244, "c3": 0.7, "c4": 0.79}, {"time": 1, "angle": -0.91} - ] - }, - "body-fur-07": { - "rotate": [ - {"angle": -0.89, "curve": 0.352, "c2": 0.65, "c3": 0.687}, {"time": 0.0167, "curve": 0.25, "c3": 0.75}, {"time": 0.1833, "angle": -25.37, "curve": 0.571, "c2": 0.01, "c3": 0.75}, - {"time": 0.35, "angle": 31.07, "curve": 0.752, "c2": 0.01, "c3": 0.75}, {"time": 0.5167, "angle": -34.51, "curve": 0.25, "c3": 0.75}, - {"time": 0.6833, "angle": -3.25, "curve": 0.25, "c3": 0.75}, {"time": 0.7667, "angle": -38.93, "curve": 0.246, "c3": 0.723, "c4": 0.88}, {"time": 1, "angle": 2.91} - ] - }, - "body-fur-06": { - "rotate": [ - {"angle": -7.82, "curve": 0.352, "c2": 0.41, "c3": 0.688, "c4": 0.76}, {"time": 0.0333, "angle": -2.71, "curve": 0.366, "c2": 0.63, "c3": 0.703}, {"time": 0.0667}, - {"time": 0.2333, "angle": -25.37, "curve": 0.571, "c2": 0.01, "c3": 0.75}, {"time": 0.4, "angle": 31.07, "curve": 0.752, "c2": 0.01, "c3": 0.75}, - {"time": 0.5667, "angle": -34.51, "curve": 0.25, "c3": 0.75}, {"time": 0.7333, "angle": -3.25, "curve": 0.25, "c3": 0.75}, - {"time": 0.8167, "angle": -38.93, "curve": 0.242, "c3": 0.663, "c4": 0.65}, {"time": 1, "angle": 13.33} - ] - }, - "body-fur-05": { - "rotate": [ - {"angle": -2.71, "curve": 0.366, "c2": 0.63, "c3": 0.703}, {"time": 0.0333}, {"time": 0.2, "angle": -25.37, "curve": 0.571, "c2": 0.01, "c3": 0.75}, - {"time": 0.3667, "angle": 31.07, "curve": 0.752, "c2": 0.01, "c3": 0.75}, {"time": 0.5333, "angle": -34.51, "curve": 0.25, "c3": 0.75}, - {"time": 0.7, "angle": -3.25, "curve": 0.25, "c3": 0.75}, {"time": 0.7833, "angle": -38.93, "curve": 0.244, "c3": 0.7, "c4": 0.79}, {"time": 1, "angle": 6.86} - ] - }, - "body-fur-04": { - "rotate": [ - {"angle": -10.87, "curve": 0.356, "c2": 0.42, "c3": 0.696, "c4": 0.78}, {"time": 0.05, "angle": -2.71, "curve": 0.366, "c2": 0.63, "c3": 0.703}, {"time": 0.0833}, - {"time": 0.25, "angle": -25.37, "curve": 0.571, "c2": 0.01, "c3": 0.75}, {"time": 0.4167, "angle": 31.07, "curve": 0.752, "c2": 0.01, "c3": 0.75}, - {"time": 0.5833, "angle": -34.51, "curve": 0.25, "c3": 0.75}, {"time": 0.75, "angle": -3.25, "curve": 0.25, "c3": 0.75}, - {"time": 0.8333, "angle": -38.93, "curve": 0.243, "c3": 0.649, "c4": 0.6}, {"time": 1, "angle": 12.53} - ] - }, - "body-fur-03": { - "rotate": [ - {"angle": -5.07, "curve": 0.375, "c2": 0.62, "c3": 0.716}, {"time": 0.05}, {"time": 0.2167, "angle": -25.37, "curve": 0.571, "c2": 0.01, "c3": 0.75}, - {"time": 0.3833, "angle": 31.07, "curve": 0.752, "c2": 0.01, "c3": 0.75}, {"time": 0.55, "angle": -34.51, "curve": 0.25, "c3": 0.75}, - {"time": 0.7167, "angle": -3.25, "curve": 0.25, "c3": 0.75}, {"time": 0.8, "angle": -38.93, "curve": 0.243, "c3": 0.68, "c4": 0.71}, {"time": 1, "angle": 5.54} - ] - }, - "body-fur-02": { - "rotate": [ - {"angle": -14.13, "curve": 0.358, "c2": 0.42, "c3": 0.702, "c4": 0.8}, {"time": 0.0667, "angle": -2.71, "curve": 0.366, "c2": 0.63, "c3": 0.703}, {"time": 0.1}, - {"time": 0.2667, "angle": -25.37, "curve": 0.571, "c2": 0.01, "c3": 0.75}, {"time": 0.4333, "angle": 31.07, "curve": 0.752, "c2": 0.01, "c3": 0.75}, - {"time": 0.6, "angle": -34.51, "curve": 0.25, "c3": 0.75}, {"time": 0.7667, "angle": -3.25, "curve": 0.25, "c3": 0.75}, - {"time": 0.85, "angle": -38.93, "curve": 0.245, "c3": 0.637, "c4": 0.56}, {"time": 1, "angle": 13.84} - ] - }, - "body-fur-01": { - "rotate": [ - {"angle": -7.89, "curve": 0.38, "c2": 0.59, "c3": 0.727}, {"time": 0.0667}, {"time": 0.2333, "angle": -25.37, "curve": 0.571, "c2": 0.01, "c3": 0.75}, - {"time": 0.4, "angle": 31.07, "curve": 0.752, "c2": 0.01, "c3": 0.75}, {"time": 0.5667, "angle": -34.51, "curve": 0.25, "c3": 0.75}, - {"time": 0.7333, "angle": -3.25, "curve": 0.25, "c3": 0.75}, {"time": 0.8167, "angle": -38.93, "curve": 0.242, "c3": 0.663, "c4": 0.65}, {"time": 1, "angle": 10.51} - ] - } + "@pivot-main": {"translate": [{"time": 0.8333, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.9167, "y": 31, "curve": 0.315, "c4": 0.8}, {"time": 1}]} }, "events": [{"time": 0.3333, "name": "start-attack"}, {"time": 0.5, "name": "hit"}] }, - "2168073331": { + "4284926080": { "slots": { - "eyes": {"attachment": [{"time": 0.05, "name": "eyes-angry"}, {"time": 0.6667, "name": "eyes-shut"}, {"time": 0.75, "name": "eyes"}]}, - "mouth": {"attachment": [{"time": 0.05, "name": "mouth-bite"}, {"time": 0.2667, "name": "mouth-open"}, {"time": 0.55, "name": "mouth-bite"}, {"time": 0.75, "name": "mouth"}]} + "eyes": {"attachment": [{"time": 0.05, "name": "eyes-angry"}, {"time": 0.6667, "name": "eyes-shut"}]}, + "mouth": {"attachment": [{"time": 0.05, "name": "mouth-bite"}, {"time": 0.2667, "name": "mouth-open"}, {"time": 0.55, "name": "mouth-bite"}]} }, "bones": { "@leg-front-right": { @@ -31752,310 +39772,325 @@ ] }, "@pivot-main": {"translate": [{"time": 0.6667, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.75, "y": 31, "curve": 0.315, "c4": 0.8}, {"time": 0.8333}]}, - "@leg-back-left": {"translate": [{"time": 0.3167, "curve": "stepped"}, {"time": 0.3333, "x": -0.06, "y": 3.33, "curve": "stepped"}, {"time": 0.5, "x": -0.06, "y": 3.33}, {"time": 0.55}]}, - "body-fur-16": { + "@leg-back-left": {"translate": [{"time": 0.3167, "curve": "stepped"}, {"time": 0.3333, "x": -0.06, "y": 3.33, "curve": "stepped"}, {"time": 0.5, "x": -0.06, "y": 3.33}, {"time": 0.55}]} + }, + "events": [{"time": 0.25, "name": "start-attack"}, {"time": 0.3333, "name": "hit"}] + }, + "978716858": { + "bones": { + "@pivot-back": { "rotate": [ - {"angle": -19.38, "curve": 0.351, "c2": 0.4, "c3": 0.757}, {"time": 0.1, "curve": 0.25, "c3": 0.75}, {"time": 0.2333, "angle": 21.88, "curve": 0.25, "c3": 0.75}, - {"time": 0.4167, "angle": -28.05, "curve": 0.25, "c3": 0.75}, {"time": 0.5, "angle": 25.5, "curve": 0.25, "c3": 0.75}, {"time": 0.65, "curve": 0.25, "c3": 0.75}, - {"time": 0.7833, "angle": -27.06, "curve": 0.265, "c3": 0.618, "c4": 0.43}, {"time": 0.8333, "angle": 13.84} - ] + {"curve": "stepped"}, {"time": 0.0167, "angle": -20}, {"time": 0.1667, "angle": -22, "curve": 0.464, "c4": 0.7}, {"time": 0.3167, "angle": 5.2, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.4167} + ], + "translate": [{"curve": "stepped"}, {"time": 0.0167, "x": 75, "y": -4.42}, {"time": 0.1667, "x": 80, "y": -7.47, "curve": 0.464, "c4": 0.7}, {"time": 0.3167}] }, - "body-fur-15": { - "rotate": [ - {"angle": -15.52, "curve": 0.369, "c2": 0.47, "c3": 0.753}, {"time": 0.0833}, {"time": 0.2167, "angle": 21.88, "curve": 0.25, "c3": 0.75}, - {"time": 0.4, "angle": -28.05, "curve": 0.25, "c3": 0.75}, {"time": 0.4833, "angle": 25.5, "curve": 0.25, "c3": 0.75}, {"time": 0.6333, "curve": 0.25, "c3": 0.75}, - {"time": 0.7667, "angle": -27.06, "curve": 0.254, "c3": 0.621, "c4": 0.47}, {"time": 0.8333, "angle": 13.33} + "@leg-front-left": {"translate": [{"time": 0.1667, "curve": 0.62, "c4": 0.3}, {"time": 0.3167, "x": -1.1, "y": -14.87, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.4167}]}, + "@shadow": { + "translate": [ + {"curve": "stepped"}, {"time": 0.0167, "x": 70.3, "curve": "stepped"}, {"time": 0.1667, "x": 70.3, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.3167, "x": 12.49, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.4167} + ], + "scale": [ + {"curve": "stepped"}, {"time": 0.0167, "x": 0.98, "y": 0.98}, {"time": 0.1667, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.3167, "x": 1.08, "y": 1.08, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.4167} ] }, - "body-fur-14": { - "rotate": [ - {"angle": -22.87, "curve": 0.31, "c2": 0.26, "c3": 0.69, "c4": 0.74}, {"time": 0.0833, "angle": -4.17, "curve": 0.377, "c2": 0.61, "c3": 0.72}, {"time": 0.1167}, - {"time": 0.25, "angle": 21.88, "curve": 0.25, "c3": 0.75}, {"time": 0.4333, "angle": -28.05, "curve": 0.25, "c3": 0.75}, {"time": 0.5167, "angle": 25.5, "curve": 0.25, "c3": 0.75}, - {"time": 0.6667, "curve": 0.25, "c3": 0.75}, {"time": 0.8, "angle": -27.06, "curve": 0.28, "c3": 0.623, "c4": 0.39}, {"time": 0.8333, "angle": 13.33} + "leg-back-left-IK": { + "translate": [ + {"curve": "stepped"}, {"time": 0.0167, "x": 20.18, "y": 0.9, "curve": "stepped"}, {"time": 0.1667, "x": 20.18, "y": 0.9, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333} ] }, - "body-fur-13": { - "rotate": [ - {"angle": -15.52, "curve": 0.369, "c2": 0.47, "c3": 0.753}, {"time": 0.0833}, {"time": 0.2167, "angle": 21.88, "curve": 0.25, "c3": 0.75}, - {"time": 0.4, "angle": -28.05, "curve": 0.25, "c3": 0.75}, {"time": 0.4833, "angle": 25.5, "curve": 0.25, "c3": 0.75}, {"time": 0.6333, "curve": 0.25, "c3": 0.75}, - {"time": 0.7667, "angle": -27.06, "curve": 0.254, "c3": 0.621, "c4": 0.47}, {"time": 0.8333, "angle": 11.59} + "@leg-back-left": { + "translate": [ + {"curve": "stepped"}, {"time": 0.0167, "x": -0.94, "y": 4.51, "curve": "stepped"}, {"time": 0.1667, "x": -0.94, "y": 4.51, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3167} ] }, - "body-fur-12": { + "@pivot-main": {"translate": [{"curve": "stepped"}, {"time": 0.0167, "x": 20, "curve": "stepped"}, {"time": 0.3167, "x": 20, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.4167}]}, + "@leg-front-right": {"translate": [{"time": 0.1667, "curve": 0.62, "c4": 0.3}, {"time": 0.3167, "x": -2.11, "y": -28.46, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.4167}]}, + "tail": { "rotate": [ - {"angle": -11.54, "curve": 0.379, "c2": 0.53, "c3": 0.746}, {"time": 0.0667, "curve": 0.25, "c3": 0.75}, {"time": 0.2, "angle": 21.88, "curve": 0.25, "c3": 0.75}, - {"time": 0.3833, "angle": -28.05, "curve": 0.25, "c3": 0.75}, {"time": 0.4667, "angle": 25.5, "curve": 0.25, "c3": 0.75}, {"time": 0.6167, "curve": 0.25, "c3": 0.75}, - {"time": 0.75, "angle": -27.06, "curve": 0.247, "c3": 0.631, "c4": 0.53}, {"time": 0.8333, "angle": 8.12} + {"curve": "stepped"}, {"time": 0.0167, "angle": 19}, {"time": 0.1667, "angle": 23.91, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.3167, "angle": -21.75, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.4167} ] }, - "body-fur-11": { - "rotate": [ - {"angle": -7.68, "curve": 0.382, "c2": 0.57, "c3": 0.735}, {"time": 0.05, "curve": 0.25, "c3": 0.75}, {"time": 0.1833, "angle": 21.88, "curve": 0.25, "c3": 0.75}, - {"time": 0.3667, "angle": -28.05, "curve": 0.25, "c3": 0.75}, {"time": 0.45, "angle": 25.5, "curve": 0.25, "c3": 0.75}, {"time": 0.6, "curve": 0.25, "c3": 0.75}, - {"time": 0.7333, "angle": -27.06, "curve": 0.243, "c3": 0.649, "c4": 0.6}, {"time": 0.8333, "angle": 4.23} + "leg-front-right-IK": { + "translate": [ + {"curve": "stepped"}, {"time": 0.0167, "x": 44.88, "y": 143.25}, {"time": 0.0833, "x": -0.81, "y": 175.84}, {"time": 0.1667, "x": 46.95, "y": 154.35, "curve": 0.306, "c4": 0.8}, + {"time": 0.3167} ] }, - "body-fur-10": { - "rotate": [ - {"angle": -4.17, "curve": 0.377, "c2": 0.61, "c3": 0.72}, {"time": 0.0333, "curve": 0.25, "c3": 0.75}, {"time": 0.1667, "angle": 21.88, "curve": 0.25, "c3": 0.75}, - {"time": 0.35, "angle": -28.05, "curve": 0.25, "c3": 0.75}, {"time": 0.4333, "angle": 25.5, "curve": 0.25, "c3": 0.75}, {"time": 0.5833, "curve": 0.25, "c3": 0.75}, - {"time": 0.7167, "angle": -27.06, "curve": 0.243, "c3": 0.674, "c4": 0.69}, {"time": 0.8333, "angle": 0.34} + "leg-front-left-IK": { + "translate": [ + {"curve": "stepped"}, {"time": 0.0167, "x": -4.98, "y": 86.81}, {"time": 0.0833, "x": 23.52, "y": 63.22}, {"time": 0.1667, "x": -2.69, "y": 90.83, "curve": 0.306, "c4": 0.8}, + {"time": 0.3167} ] - }, - "body-fur-09": { + } + } + }, + "3941256645": { + "bones": { + "tail": { "rotate": [ - {"angle": -15.42, "curve": 0.342, "c2": 0.36, "c3": 0.692, "c4": 0.75}, {"time": 0.05, "angle": -4.17, "curve": 0.377, "c2": 0.61, "c3": 0.72}, {"time": 0.0833}, - {"time": 0.2167, "angle": 21.88, "curve": 0.25, "c3": 0.75}, {"time": 0.4, "angle": -28.05, "curve": 0.25, "c3": 0.75}, {"time": 0.4833, "angle": 25.5, "curve": 0.25, "c3": 0.75}, - {"time": 0.6333, "curve": 0.25, "c3": 0.75}, {"time": 0.7667, "angle": -27.06, "curve": 0.254, "c3": 0.621, "c4": 0.47}, {"time": 0.8333, "angle": 6.86} + {"curve": "stepped"}, {"time": 0.0167, "angle": 35.35}, {"time": 0.1667, "angle": 50.35, "curve": 0.315, "c4": 0.8}, {"time": 0.3167, "angle": -21.75, "curve": 0, "c2": 0.1, "c3": 0.85}, + {"time": 0.4167} ] }, - "body-fur-08": { - "rotate": [ - {"angle": -7.68, "curve": 0.382, "c2": 0.57, "c3": 0.735}, {"time": 0.05}, {"time": 0.1833, "angle": 21.88, "curve": 0.25, "c3": 0.75}, - {"time": 0.3667, "angle": -28.05, "curve": 0.25, "c3": 0.75}, {"time": 0.45, "angle": 25.5, "curve": 0.25, "c3": 0.75}, {"time": 0.6, "curve": 0.25, "c3": 0.75}, - {"time": 0.7333, "angle": -27.06, "curve": 0.243, "c3": 0.649, "c4": 0.6}, {"time": 0.8333, "angle": -0.91} - ] + "leg-front-right-IK": { + "translate": [{"curve": "stepped"}, {"time": 0.0167, "x": 74.76, "y": 322.04}, {"time": 0.1667, "x": 85.96, "y": 349.35, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3167}] }, - "body-fur-07": { + "@pivot-back": { "rotate": [ - {"angle": -1.39, "curve": 0.362, "c2": 0.64, "c3": 0.698}, {"time": 0.0167, "curve": 0.25, "c3": 0.75}, {"time": 0.15, "angle": 21.88, "curve": 0.25, "c3": 0.75}, - {"time": 0.3333, "angle": -28.05, "curve": 0.25, "c3": 0.75}, {"time": 0.4167, "angle": 25.5, "curve": 0.25, "c3": 0.75}, {"time": 0.5667, "curve": 0.25, "c3": 0.75}, - {"time": 0.7, "angle": -27.06, "curve": 0.245, "c3": 0.707, "c4": 0.82}, {"time": 0.8333, "angle": 2.91} - ] + {"curve": "stepped"}, {"time": 0.0167, "angle": -45}, {"time": 0.1667, "angle": -50, "curve": 0.464, "c4": 0.7}, {"time": 0.3167, "angle": 5.2, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.4167} + ], + "translate": [{"curve": "stepped"}, {"time": 0.0167, "x": 94.99, "y": -21}, {"time": 0.1667, "x": 107, "y": -60, "curve": 0.464, "c4": 0.7}, {"time": 0.3167}] }, - "body-fur-06": { - "rotate": [ - {"angle": -11.45, "curve": 0.347, "c2": 0.38, "c3": 0.688, "c4": 0.74}, {"time": 0.0333, "angle": -4.17, "curve": 0.377, "c2": 0.61, "c3": 0.72}, {"time": 0.0667}, - {"time": 0.2, "angle": 21.88, "curve": 0.25, "c3": 0.75}, {"time": 0.3833, "angle": -28.05, "curve": 0.25, "c3": 0.75}, {"time": 0.4667, "angle": 25.5, "curve": 0.25, "c3": 0.75}, - {"time": 0.6167, "curve": 0.25, "c3": 0.75}, {"time": 0.75, "angle": -27.06, "curve": 0.247, "c3": 0.631, "c4": 0.53}, {"time": 0.8333, "angle": 13.33} + "@shadow": { + "translate": [ + {"curve": "stepped"}, {"time": 0.0167, "x": 70.3, "curve": "stepped"}, {"time": 0.1667, "x": 70.3, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.3167, "x": 12.49, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.4167} + ], + "scale": [ + {"curve": "stepped"}, {"time": 0.0167, "x": 0.98, "y": 0.98}, {"time": 0.1667, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.3167, "x": 1.08, "y": 1.08, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.4167} ] }, - "body-fur-05": { - "rotate": [ - {"angle": -4.17, "curve": 0.377, "c2": 0.61, "c3": 0.72}, {"time": 0.0333}, {"time": 0.1667, "angle": 21.88, "curve": 0.25, "c3": 0.75}, - {"time": 0.35, "angle": -28.05, "curve": 0.25, "c3": 0.75}, {"time": 0.4333, "angle": 25.5, "curve": 0.25, "c3": 0.75}, {"time": 0.5833, "curve": 0.25, "c3": 0.75}, - {"time": 0.7167, "angle": -27.06, "curve": 0.243, "c3": 0.674, "c4": 0.69}, {"time": 0.8333, "angle": 6.86} + "leg-back-left-IK": { + "translate": [ + {"curve": "stepped"}, {"time": 0.0167, "x": 11.67, "y": 0.9, "curve": "stepped"}, {"time": 0.1667, "x": 11.67, "y": 0.9, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333} ] }, - "body-fur-04": { + "@leg-back-left": {"translate": [{"curve": "stepped"}, {"time": 0.0167, "x": -2.63, "y": 8.92}, {"time": 0.1667, "x": 18.61, "y": -8.3, "curve": 0.464, "c4": 0.7}, {"time": 0.3167}]}, + "@pivot-main": {"translate": [{"curve": "stepped"}, {"time": 0.0167, "x": 20, "curve": "stepped"}, {"time": 0.3167, "x": 20, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.4167}]}, + "leg-front-left-IK": { + "translate": [{"curve": "stepped"}, {"time": 0.0167, "x": -4.7, "y": 168.09}, {"time": 0.1667, "x": 6.72, "y": 174.87, "curve": 0.306, "c3": 0.695}, {"time": 0.3167}] + }, + "@leg-front-left": {"translate": [{"time": 0.1667, "curve": 0.62, "c4": 0.3}, {"time": 0.3167, "x": -1.1, "y": -14.87, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.4167}]}, + "@leg-front-right": {"translate": [{"time": 0.1667, "curve": 0.62, "c4": 0.3}, {"time": 0.3167, "x": -2.11, "y": -28.46, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.4167}]} + } + }, + "2527908154": { + "bones": { + "@pivot-back": { "rotate": [ - {"angle": -15.42, "curve": 0.342, "c2": 0.36, "c3": 0.692, "c4": 0.75}, {"time": 0.05, "angle": -4.17, "curve": 0.377, "c2": 0.61, "c3": 0.72}, {"time": 0.0833}, - {"time": 0.2167, "angle": 21.88, "curve": 0.25, "c3": 0.75}, {"time": 0.4, "angle": -28.05, "curve": 0.25, "c3": 0.75}, {"time": 0.4833, "angle": 25.5, "curve": 0.25, "c3": 0.75}, - {"time": 0.6333, "curve": 0.25, "c3": 0.75}, {"time": 0.7667, "angle": -27.06, "curve": 0.254, "c3": 0.621, "c4": 0.47}, {"time": 0.8333, "angle": 12.53} + {"curve": "stepped"}, {"time": 0.0167, "angle": -45}, {"time": 0.1, "angle": -85, "curve": "stepped"}, {"time": 0.6667, "angle": -85, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.8333, "angle": 6, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1} + ], + "translate": [ + {"curve": "stepped"}, {"time": 0.0167, "x": 94.99, "y": -21}, {"time": 0.05, "x": 256.42, "y": -60}, {"time": 0.1, "x": 408.25, "y": -188, "curve": "stepped"}, + {"time": 0.6667, "x": 408.25, "y": -188, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.8333, "y": 12.75, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1} ] }, - "body-fur-03": { - "rotate": [ - {"angle": -7.68, "curve": 0.382, "c2": 0.57, "c3": 0.735}, {"time": 0.05}, {"time": 0.1833, "angle": 21.88, "curve": 0.25, "c3": 0.75}, - {"time": 0.3667, "angle": -28.05, "curve": 0.25, "c3": 0.75}, {"time": 0.45, "angle": 25.5, "curve": 0.25, "c3": 0.75}, {"time": 0.6, "curve": 0.25, "c3": 0.75}, - {"time": 0.7333, "angle": -27.06, "curve": 0.243, "c3": 0.649, "c4": 0.6}, {"time": 0.8333, "angle": 5.54} + "@shadow": { + "translate": [ + {"curve": "stepped"}, {"time": 0.0167, "x": 144.17}, {"time": 0.1, "x": 589.27, "curve": 0.313, "c3": 0.699}, {"time": 0.25, "x": 627.48, "curve": 0.313, "c3": 0.699}, + {"time": 0.4167, "x": 576.87, "curve": 0.313, "c3": 0.699}, {"time": 0.55, "x": 602.83, "curve": 0.313, "c3": 0.699}, {"time": 0.6667, "x": 576.87, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.8333} + ], + "scale": [ + {"curve": "stepped"}, {"time": 0.0167, "x": 0.92, "y": 0.92}, {"time": 0.1, "curve": 0, "c2": 0.22, "c3": 0.373, "c4": 0.57}, {"time": 0.25, "x": 1.04, "y": 1.04, "curve": "stepped"}, + {"time": 0.6667, "x": 1.04, "y": 1.04, "curve": 0.206, "c2": 0.38, "c3": 0.736}, {"time": 0.8333, "x": 1.1, "y": 1.1, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1} ] }, - "body-fur-02": { - "rotate": [ - {"angle": -19.31, "curve": 0.33, "c2": 0.32, "c3": 0.693, "c4": 0.75}, {"time": 0.0667, "angle": -4.17, "curve": 0.377, "c2": 0.61, "c3": 0.72}, {"time": 0.1, "curve": 0.25, "c3": 0.75}, - {"time": 0.2333, "angle": 21.88, "curve": 0.25, "c3": 0.75}, {"time": 0.4167, "angle": -28.05, "curve": 0.25, "c3": 0.75}, {"time": 0.5, "angle": 25.5, "curve": 0.25, "c3": 0.75}, - {"time": 0.65, "curve": 0.25, "c3": 0.75}, {"time": 0.7833, "angle": -27.06, "curve": 0.265, "c3": 0.618, "c4": 0.43}, {"time": 0.8333, "angle": 13.84} + "@leg-back-left": {"translate": [{"curve": "stepped"}, {"time": 0.0167, "x": 6.4, "y": 0.19}, {"time": 0.1667}]}, + "leg-front-right-IK": { + "translate": [ + {"curve": "stepped"}, {"time": 0.0167, "x": 69.67, "y": 327.04}, {"time": 0.05, "x": 451.04, "y": 582.91}, {"time": 0.0833, "x": 787.85, "y": 470.29}, + {"time": 0.1, "x": 945.09, "y": 394.99, "curve": 0.313, "c3": 0.699}, {"time": 0.25, "x": 1086.85, "y": 338.86, "curve": 0.313, "c3": 0.699}, + {"time": 0.4167, "x": 921.41, "y": 410.91, "curve": 0.313, "c3": 0.699}, {"time": 0.5833, "x": 1028.37, "y": 385.44}, {"time": 0.6667, "x": 914.82, "y": 422.49}, + {"time": 0.7, "x": 413.58, "y": 458.44}, {"time": 0.75, "x": 45.46, "y": 287.09}, {"time": 0.7833, "x": -34.18, "y": 117.59}, {"time": 0.8333} ] }, - "body-fur-01": { + "tail": { "rotate": [ - {"angle": -11.54, "curve": 0.379, "c2": 0.53, "c3": 0.746}, {"time": 0.0667, "curve": 0.25, "c3": 0.75}, {"time": 0.2, "angle": 21.88, "curve": 0.25, "c3": 0.75}, - {"time": 0.3833, "angle": -28.05, "curve": 0.25, "c3": 0.75}, {"time": 0.4667, "angle": 25.5, "curve": 0.25, "c3": 0.75}, {"time": 0.6167, "curve": 0.25, "c3": 0.75}, - {"time": 0.75, "angle": -27.06, "curve": 0.247, "c3": 0.631, "c4": 0.53}, {"time": 0.8333, "angle": 10.51} + {"curve": "stepped"}, {"time": 0.0167, "angle": 35.35}, {"time": 0.1, "angle": -18.03, "curve": 0.313, "c3": 0.699}, {"time": 0.25, "angle": 12.69, "curve": 0.313, "c3": 0.699}, + {"time": 0.4167, "angle": -15.12, "curve": 0.313, "c3": 0.699}, {"time": 0.6667, "angle": 1.29, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.8333, "angle": 19.35, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1} ] - } - }, - "events": [{"time": 0.25, "name": "start-attack"}, {"time": 0.3333, "name": "hit"}] - }, - "2029961928": { - "bones": { - "@pivot-back": { - "rotate": [ - {"curve": 0, "c2": 0.34, "c3": 0.465}, {"time": 0.1667, "angle": 8.43, "curve": 0.614, "c4": 0.29}, {"time": 0.4167, "angle": -69.48, "curve": 0, "c2": 0.1, "c4": 0.9}, - {"time": 0.5833, "angle": 151.42, "curve": 0, "c2": 0.3, "c3": 0.535}, {"time": 0.8333, "angle": -5.75, "curve": 0, "c2": 0.15, "c4": 0.85}, - {"time": 1, "angle": -7.09, "curve": 0, "c2": 0.3, "c3": 0.542}, {"time": 1.25, "angle": 7.21, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1.5} - ], + }, + "leg-back-left-IK": { "translate": [ - {"x": 0.02, "y": 44.43, "curve": 0, "c2": 0.34, "c3": 0.465}, {"time": 0.1667, "x": 25.79, "y": 23.82, "curve": 0.614, "c4": 0.29}, - {"time": 0.4167, "x": -156.83, "y": 231.34, "curve": 0, "c2": 0.1, "c4": 0.9}, {"time": 0.5833, "x": -1.88, "y": 372.46, "curve": 0, "c2": 0.19, "c3": 0.403, "c4": 0.57}, - {"time": 0.6667, "x": 196.15, "y": 317.74, "curve": 0.282, "c2": 0.45, "c3": 0.748}, {"time": 0.8333, "x": 558.6, "y": 68.09, "curve": 0, "c2": 0.15, "c4": 0.85}, - {"time": 1, "x": 586.58, "y": 68.09, "curve": 0, "c2": 0.3, "c3": 0.542}, {"time": 1.25, "x": 594.57, "y": 68.09, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 1.5, "x": 0.02, "y": 44.43} + {"curve": "stepped"}, {"time": 0.0167, "x": -3.7, "y": 19.91}, {"time": 0.05, "x": -86.78, "y": 121.52}, {"time": 0.1, "x": 129.15, "y": 364.61, "curve": 0.313, "c3": 0.699}, + {"time": 0.25, "x": 262.18, "y": 406.7, "curve": 0.313, "c3": 0.699}, {"time": 0.4167, "x": 109.91, "y": 347.96, "curve": 0.313, "c3": 0.699}, {"time": 0.5833, "x": 216.28, "y": 393.95}, + {"time": 0.6667, "x": 118.81, "y": 360.02}, {"time": 0.7, "x": -121.03, "y": 41.31}, {"time": 0.75, "x": -95.31, "y": -47.01}, {"time": 0.7833, "x": 22.31, "y": -53.8}, {"time": 0.8333} ] }, - "tail": { - "rotate": [ - {"curve": 0, "c2": 0.34, "c3": 0.465}, {"time": 0.1667, "angle": 16.63, "curve": 0.622, "c4": 0.3}, {"time": 0.4167, "angle": -38.13, "curve": 0, "c2": 0.1, "c4": 0.9}, - {"time": 0.6667, "angle": 21.47, "curve": 0, "c2": 0.2, "c3": 0.698}, {"time": 1, "angle": -14.5, "curve": 0, "c2": 0.3, "c3": 0.549}, - {"time": 1.25, "angle": 17, "curve": 0, "c2": 0.2, "c3": 0.7}, {"time": 1.5} + "leg-front-left-IK": { + "translate": [ + {"curve": "stepped"}, {"time": 0.0167, "x": -5.8, "y": 177.99}, {"time": 0.05, "x": 106.35, "y": 306.87}, {"time": 0.0833, "x": 355.94, "y": 424.69}, + {"time": 0.1, "x": 515.46, "y": 408.14, "curve": 0.313, "c3": 0.699}, {"time": 0.25, "x": 536.35, "y": 423.87, "curve": 0.313, "c3": 0.699}, + {"time": 0.4167, "x": 492.39, "y": 405.73, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.6667, "x": 482.36, "y": 419.06}, {"time": 0.7, "x": 97.67, "y": 283.45}, + {"time": 0.75, "x": -12.16, "y": 45.82}, {"time": 0.7833, "x": -31.56, "y": 29.02}, {"time": 0.8333} ] }, - "@leg-back-left": { + "@pivot-center": { "rotate": [ - {"curve": 0, "c2": 0.34, "c3": 0.465}, {"time": 0.1667, "angle": -14.34, "curve": 0.619, "c4": 0.3}, {"time": 0.4167, "angle": 14.4, "curve": 0, "c2": 0.1, "c4": 0.9}, - {"time": 0.6667, "angle": -14.29, "curve": "stepped"}, {"time": 1, "angle": -14.29, "curve": 0, "c2": 0.3, "c3": 0.542}, - {"time": 1.25, "angle": 14.99, "curve": 0, "c2": 0.2, "c3": 0.693}, {"time": 1.5} + {"time": 0.0167, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.1, "angle": -95, "curve": 0.313, "c3": 0.699}, {"time": 0.25, "angle": -105, "curve": 0.313, "c3": 0.699}, + {"time": 0.4167, "angle": -90, "curve": 0.313, "c3": 0.699}, {"time": 0.55, "angle": -100, "curve": 0.313, "c3": 0.699}, + {"time": 0.6667, "angle": -90, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.8333} + ], + "translate": [ + {"time": 0.1, "curve": 0.313, "c3": 0.699}, {"time": 0.25, "x": 1.68, "y": 38.2, "curve": 0.313, "c3": 0.699}, {"time": 0.4167, "x": -2.73, "y": -12.21, "curve": 0.313, "c3": 0.699}, + {"time": 0.55, "x": -0.47, "y": 13.65, "curve": 0.313, "c3": 0.699}, {"time": 0.6667, "x": -2.73, "y": -12.21, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.8333} ] }, - "@leg-front-left": { - "rotate": [ - {"curve": 0, "c2": 0.34, "c3": 0.465}, {"time": 0.1667, "angle": -18.49, "curve": 0.619, "c4": 0.3}, {"time": 0.4167, "angle": 10.25, "curve": 0, "c2": 0.1, "c4": 0.9}, - {"time": 0.6667, "angle": -18.44}, {"time": 1, "angle": -22.13, "curve": 0, "c2": 0.3, "c3": 0.542}, {"time": 1.25, "angle": 7.14, "curve": 0, "c2": 0.2, "c3": 0.693}, {"time": 1.5} + "@pivot-main": { + "translate": [{"time": 0.6667, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.75, "y": 150, "curve": 0.315, "c4": 0.8}, {"time": 0.8333}], + "scale": [ + {"time": 0.1, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "y": 0.93, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "curve": "stepped"}, + {"time": 0.5667, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.65, "y": 0.7, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.7333, "curve": "stepped"}, + {"time": 0.8333, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.9167, "y": 0.98, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1} ] }, - "@leg-front-right": { + "@leg-front-right": {"translate": [{"time": 0.75, "curve": 0.306, "c4": 0.8}, {"time": 0.8333, "x": -2.23, "y": -25.27, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1}]} + } + }, + "2207699263": { + "bones": { + "@pivot-back": { "rotate": [ - {"curve": 0, "c2": 0.34, "c3": 0.465}, {"time": 0.1667, "angle": -18.49, "curve": 0.619, "c4": 0.3}, {"time": 0.4167, "angle": 10.25, "curve": 0, "c2": 0.1, "c4": 0.9}, - {"time": 0.6667, "angle": -18.44}, {"time": 1, "angle": -22.13, "curve": 0, "c2": 0.3, "c3": 0.542}, {"time": 1.25, "angle": 7.14, "curve": 0, "c2": 0.2, "c3": 0.693}, {"time": 1.5} + {"curve": "stepped"}, {"time": 0.0167, "angle": 8}, {"time": 0.2333, "angle": 10, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "angle": -5, "curve": 0.315, "c4": 0.8}, + {"time": 0.4833, "angle": 5, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5833} + ], + "translate": [ + {"curve": "stepped"}, {"time": 0.0167, "x": 29.16, "y": 6.28}, {"time": 0.2667, "x": 18.48, "y": 18.85, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.3833, "x": -1.17, "y": 18.85, "curve": 0.315, "c4": 0.8}, {"time": 0.4833} ] }, "@shadow": { "translate": [ - {"curve": 0, "c2": 0.34, "c3": 0.465}, {"time": 0.1667, "x": 19.25, "curve": 0.622, "c4": 0.3}, {"time": 0.4167, "x": -31.7, "curve": 0, "c2": 0.1, "c4": 0.9}, - {"time": 0.5833, "x": 395, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.8333, "x": 549.5, "curve": 0, "c2": 0.15, "c4": 0.85}, - {"time": 1, "x": 577.9, "curve": 0, "c2": 0.3, "c3": 0.549}, {"time": 1.25, "x": 587.3, "curve": 0, "c2": 0.2, "c3": 0.7}, {"time": 1.5} + {"curve": "stepped"}, {"time": 0.0167, "x": 33.22}, {"time": 0.2667, "x": 61.08, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3833, "x": 9.02, "curve": 0.315, "c4": 0.8}, + {"time": 0.4833} ], "scale": [ - {"curve": 0, "c2": 0.34, "c3": 0.465}, {"time": 0.1667, "x": 1.12, "y": 1.12, "curve": 0.622, "c4": 0.3}, {"time": 0.4167, "x": 0.84, "y": 0.84, "curve": 0, "c2": 0.1, "c4": 0.9}, - {"time": 0.5833, "x": 0.9, "y": 0.9, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.8333, "x": 0.98, "y": 0.98, "curve": 0, "c2": 0.15, "c4": 0.85}, - {"time": 1, "x": 0.94, "y": 0.94, "curve": 0, "c2": 0.3, "c3": 0.549}, {"time": 1.25, "x": 1.02, "y": 1.02, "curve": 0, "c2": 0.2, "c3": 0.7}, {"time": 1.5} + {"curve": "stepped"}, {"time": 0.0167, "x": 1.1, "y": 1.1, "curve": "stepped"}, {"time": 0.2667, "x": 1.1, "y": 1.1, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.3833, "x": 0.98, "y": 0.98, "curve": 0.315, "c4": 0.8}, {"time": 0.4833, "x": 1.1, "y": 1.1, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5833} ] }, - "body-fur-01": { - "rotate": [ - {"angle": -11.71, "curve": 0.359, "c2": 0.43, "c3": 0.756}, {"time": 0.0833}, {"time": 0.25, "angle": 34.44, "curve": 0.25, "c3": 0.75}, - {"time": 0.4167, "angle": 15.7, "curve": 0.25, "c3": 0.75}, {"time": 0.75, "angle": 43.18, "curve": 0.361, "c2": 0.01, "c3": 0.75}, - {"time": 0.9833, "angle": -39.28, "curve": 0.25, "c3": 0.75}, {"time": 1.2833, "angle": 22.14, "curve": 0.25, "c3": 0.75}, - {"time": 1.45, "angle": -17.63, "curve": 0.26, "c3": 0.618, "c4": 0.44}, {"time": 1.5, "angle": -11.71} + "@pivot-main": { + "translate": [ + {"curve": "stepped"}, {"time": 0.0167, "x": 33.18}, {"time": 0.2667, "x": 61.52, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3833, "x": 20.27, "y": 27.91, "curve": 0.315, "c4": 0.8}, + {"time": 0.4833} ] }, - "body-fur-02": { + "tail": { "rotate": [ - {"angle": -17.63, "curve": 0.244, "c3": 0.641, "c4": 0.57}, {"time": 0.0833, "angle": -5.92, "curve": 0.382, "c2": 0.56, "c3": 0.74}, {"time": 0.1333}, - {"time": 0.3, "angle": 34.44, "curve": 0.25, "c3": 0.75}, {"time": 0.4667, "angle": 15.7, "curve": 0.25, "c3": 0.75}, - {"time": 0.8, "angle": 43.18, "curve": 0.361, "c2": 0.01, "c3": 0.75}, {"time": 1.0333, "angle": -39.28, "curve": 0.25, "c3": 0.75}, - {"time": 1.3333, "angle": 22.14, "curve": 0.25, "c3": 0.75}, {"time": 1.5, "angle": -17.63} + {"curve": "stepped"}, {"time": 0.0167, "angle": -18.65}, {"time": 0.2333, "angle": -21.65, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.3333, "angle": -13.3, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.45, "angle": 12.04, "curve": 0.154, "c4": 0.9}, + {"time": 0.5167, "angle": -9.14, "curve": 0.161, "c3": 0.854}, {"time": 0.5833} ] }, - "body-fur-03": { - "rotate": [ - {"angle": -17.63, "curve": 0.25, "c3": 0.75}, {"time": 0.1333, "curve": 0.25, "c3": 0.75}, {"time": 0.3, "angle": 34.44, "curve": 0.25, "c3": 0.75}, - {"time": 0.4667, "angle": 15.7, "curve": 0.25, "c3": 0.75}, {"time": 0.8, "angle": 43.18, "curve": 0.361, "c2": 0.01, "c3": 0.75}, - {"time": 1.0333, "angle": -39.28, "curve": 0.25, "c3": 0.75}, {"time": 1.3333, "angle": 22.14, "curve": 0.25, "c3": 0.75}, {"time": 1.5, "angle": -17.63} + "leg-front-right-IK": { + "translate": [ + {"time": 0.2333, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "x": 22.26, "y": 54.13}, {"time": 0.3833, "x": 28.04, "y": 49.32, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.45} ] }, - "body-fur-04": { - "rotate": [ - {"angle": -7.99, "curve": 0.382, "c2": 0.58, "c3": 0.731}, {"time": 0.05, "angle": -17.63, "curve": 0.244, "c3": 0.641, "c4": 0.57}, - {"time": 0.1333, "angle": -5.92, "curve": 0.382, "c2": 0.56, "c3": 0.74}, {"time": 0.1833, "curve": 0.25, "c3": 0.75}, {"time": 0.35, "angle": 34.44, "curve": 0.25, "c3": 0.75}, - {"time": 0.5167, "angle": 15.7, "curve": 0.25, "c3": 0.75}, {"time": 0.85, "angle": 43.18, "curve": 0.361, "c2": 0.01, "c3": 0.75}, - {"time": 1.0833, "angle": -39.28, "curve": 0.25, "c3": 0.75}, {"time": 1.3833, "angle": 22.14, "curve": 0.243, "c3": 0.655, "c4": 0.63}, {"time": 1.5, "angle": -7.99} + "@leg-front-left": { + "translate": [ + {"curve": "stepped"}, {"time": 0.0167, "x": -0.45, "y": -3.93}, {"time": 0.2333, "x": -0.82, "y": -2.61}, {"time": 0.3333, "x": -5.6, "y": -0.89, "curve": 0.617, "c4": 0.6}, + {"time": 0.45, "x": -1.09, "y": -14.69, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5833} ] }, - "body-fur-05": { - "rotate": [ - {"angle": -14.37, "curve": 0.333, "c2": 0.33, "c3": 0.758}, {"time": 0.1}, {"time": 0.2667, "angle": 34.44, "curve": 0.25, "c3": 0.75}, - {"time": 0.4333, "angle": 15.7, "curve": 0.25, "c3": 0.75}, {"time": 0.7667, "angle": 43.18, "curve": 0.361, "c2": 0.01, "c3": 0.75}, - {"time": 1, "angle": -39.28, "curve": 0.25, "c3": 0.75}, {"time": 1.3, "angle": 22.14, "curve": 0.25, "c3": 0.75}, - {"time": 1.4667, "angle": -17.63, "curve": 0.276, "c3": 0.621, "c4": 0.4}, {"time": 1.5, "angle": -14.37} + "leg-back-left-IK": { + "translate": [ + {"curve": "stepped"}, {"time": 0.0167, "x": 50.74, "y": 0.9, "curve": "stepped"}, {"time": 0.2, "x": 50.74, "y": 0.9, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.25, "x": 12.5, "y": 6.45, "curve": 0, "c2": 0.8, "c3": 0.15}, {"time": 0.3667, "x": 5.47, "y": 26.12, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.4833} ] }, - "body-fur-06": { - "rotate": [ - {"angle": -15.93, "curve": 0.36, "c2": 0.64, "c3": 0.695}, {"time": 0.0167, "angle": -17.63, "curve": 0.244, "c3": 0.641, "c4": 0.57}, - {"time": 0.1, "angle": -5.92, "curve": 0.382, "c2": 0.56, "c3": 0.74}, {"time": 0.15}, {"time": 0.3167, "angle": 34.44, "curve": 0.25, "c3": 0.75}, - {"time": 0.4833, "angle": 15.7, "curve": 0.25, "c3": 0.75}, {"time": 0.8167, "angle": 43.18, "curve": 0.361, "c2": 0.01, "c3": 0.75}, - {"time": 1.05, "angle": -39.28, "curve": 0.25, "c3": 0.75}, {"time": 1.35, "angle": 22.14, "curve": 0.245, "c3": 0.711, "c4": 0.83}, {"time": 1.5, "angle": -15.93} + "@leg-front-right": { + "translate": [ + {"time": 0.0167}, {"time": 0.3333, "x": -7.53, "y": 2.3, "curve": 0, "c2": 0.1, "c3": 0.853}, {"time": 0.45, "x": 0.15, "y": -4.26, "curve": 0.159, "c3": 0.853}, + {"time": 0.4833, "x": -2.34, "y": -28.14, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5833} ] }, - "body-fur-07": { - "rotate": [ - {"angle": -8.81, "curve": 0.375, "c2": 0.5, "c3": 0.75}, {"time": 0.0667, "curve": 0.25, "c3": 0.75}, {"time": 0.2333, "angle": 34.44, "curve": 0.25, "c3": 0.75}, - {"time": 0.4, "angle": 15.7, "curve": 0.25, "c3": 0.75}, {"time": 0.7333, "angle": 43.18, "curve": 0.361, "c2": 0.01, "c3": 0.75}, - {"time": 0.9667, "angle": -39.28, "curve": 0.25, "c3": 0.75}, {"time": 1.2667, "angle": 22.14, "curve": 0.25, "c3": 0.75}, - {"time": 1.4333, "angle": -17.63, "curve": 0.25, "c3": 0.625, "c4": 0.5}, {"time": 1.5, "angle": -8.81} + "@leg-back-left": { + "translate": [ + {"curve": "stepped"}, {"time": 0.0167, "x": 18.74, "y": 14.65, "curve": "stepped"}, {"time": 0.1667, "x": 18.74, "y": 14.65, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.4833} ] }, - "body-fur-08": { - "rotate": [ - {"angle": -8.81, "curve": 0.375, "c2": 0.5, "c3": 0.75}, {"time": 0.0667}, {"time": 0.2333, "angle": 34.44, "curve": 0.25, "c3": 0.75}, - {"time": 0.4, "angle": 15.7, "curve": 0.25, "c3": 0.75}, {"time": 0.7333, "angle": 43.18, "curve": 0.361, "c2": 0.01, "c3": 0.75}, - {"time": 0.9667, "angle": -39.28, "curve": 0.25, "c3": 0.75}, {"time": 1.2667, "angle": 22.14, "curve": 0.25, "c3": 0.75}, - {"time": 1.4333, "angle": -17.63, "curve": 0.25, "c3": 0.625, "c4": 0.5}, {"time": 1.5, "angle": -8.81} + "leg-front-left-IK": { + "translate": [ + {"curve": "stepped"}, {"time": 0.0167, "x": 38.52}, {"time": 0.2333, "x": 38.87, "curve": 0, "c2": 0.3, "c3": 0.54}, {"time": 0.3333, "x": 26.12, "y": 38.71}, + {"time": 0.3833, "x": 12.33, "y": 29.93, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.45} ] - }, - "body-fur-09": { + } + } + }, + "2975056588": { + "bones": { + "@pivot-back": { "rotate": [ - {"angle": -16.56, "curve": 0.285, "c2": 0.17, "c3": 0.657, "c4": 0.63}, {"time": 0.0667, "angle": -5.92, "curve": 0.382, "c2": 0.56, "c3": 0.74}, {"time": 0.1167}, - {"time": 0.2833, "angle": 34.44, "curve": 0.25, "c3": 0.75}, {"time": 0.45, "angle": 15.7, "curve": 0.25, "c3": 0.75}, - {"time": 0.7833, "angle": 43.18, "curve": 0.361, "c2": 0.01, "c3": 0.75}, {"time": 1.0167, "angle": -39.28, "curve": 0.25, "c3": 0.75}, - {"time": 1.3167, "angle": 22.14, "curve": 0.25, "c3": 0.75}, {"time": 1.4833, "angle": -17.63, "curve": 0.299, "c3": 0.636, "c4": 0.36}, {"time": 1.5, "angle": -16.56} - ] + {"angle": -8.23, "curve": "stepped"}, {"time": 0.1667, "angle": -8.23, "curve": 0.306, "c4": 0.8}, {"time": 0.3333, "angle": 5.43, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5} + ], + "translate": [{"y": -0.04, "curve": 0, "c2": 0.3, "c3": 0.534}, {"time": 0.1667, "x": 17.97, "y": 94.25, "curve": 0.315, "c4": 0.8}, {"time": 0.3333, "y": -0.04}] }, - "body-fur-10": { + "@leg-back-left": {"rotate": [{"angle": 14.26, "curve": "stepped"}, {"time": 0.2167, "angle": 14.26, "curve": 0, "c2": 0.1, "c3": 0.847}, {"time": 0.3333, "angle": -11.75}]}, + "@leg-front-left": {"rotate": [{"angle": 14.58, "curve": "stepped"}, {"time": 0.2167, "angle": 14.58, "curve": 0, "c2": 0.1, "c3": 0.847}, {"time": 0.3333, "angle": 20.14}]}, + "@leg-front-right": {"rotate": [{"angle": 12.31, "curve": "stepped"}, {"time": 0.2167, "angle": 12.31, "curve": 0, "c2": 0.1, "c3": 0.847}, {"time": 0.3333, "angle": -30.3}]}, + "tail": { "rotate": [ - {"angle": -5.92, "curve": 0.382, "c2": 0.56, "c3": 0.74}, {"time": 0.05, "curve": 0.25, "c3": 0.75}, {"time": 0.2167, "angle": 34.44, "curve": 0.25, "c3": 0.75}, - {"time": 0.3833, "angle": 15.7, "curve": 0.25, "c3": 0.75}, {"time": 0.7167, "angle": 43.18, "curve": 0.361, "c2": 0.01, "c3": 0.75}, - {"time": 0.95, "angle": -39.28, "curve": 0.25, "c3": 0.75}, {"time": 1.25, "angle": 22.14, "curve": 0.25, "c3": 0.75}, - {"time": 1.4167, "angle": -17.63, "curve": 0.244, "c3": 0.641, "c4": 0.57}, {"time": 1.5, "angle": -5.92} + {"curve": 0, "c2": 0.6, "c3": 0.237}, {"time": 0.1667, "angle": -18.5, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "angle": 4.16, "curve": 0, "c2": 0.3, "c3": 0.54}, + {"time": 0.5} ] }, - "body-fur-11": { - "rotate": [ - {"angle": -11.71, "curve": 0.359, "c2": 0.43, "c3": 0.756}, {"time": 0.0833, "curve": 0.25, "c3": 0.75}, {"time": 0.25, "angle": 34.44, "curve": 0.25, "c3": 0.75}, - {"time": 0.4167, "angle": 15.7, "curve": 0.25, "c3": 0.75}, {"time": 0.75, "angle": 43.18, "curve": 0.361, "c2": 0.01, "c3": 0.75}, - {"time": 0.9833, "angle": -39.28, "curve": 0.25, "c3": 0.75}, {"time": 1.2833, "angle": 22.14, "curve": 0.25, "c3": 0.75}, - {"time": 1.45, "angle": -17.63, "curve": 0.26, "c3": 0.618, "c4": 0.44}, {"time": 1.5, "angle": -11.71} + "@shadow": {"scale": [{"x": 1.3, "y": 1.3, "curve": 0, "c2": 0.4, "c3": 0.533}, {"time": 0.1667, "x": 0.9, "y": 0.9, "curve": 0.315, "c4": 0.8}, {"time": 0.3333}]} + } + }, + "4269852312": { + "bones": { + "@pivot-back": { + "translate": [ + {"y": 0.06, "curve": 0.387, "c3": 0.314}, {"time": 0.2167, "y": -17.94, "curve": 0.387, "c3": 0.314}, {"time": 0.45, "y": 0.06, "curve": 0.387, "c3": 0.314}, + {"time": 0.6667, "y": -17.94, "curve": 0.387, "c3": 0.314}, {"time": 0.9, "y": 0.06, "curve": 0.387, "c3": 0.314}, {"time": 1.1167, "y": -17.94, "curve": 0.387, "c3": 0.314}, + {"time": 1.3333, "y": 0.06} + ], + "scale": [ + {"curve": 0.387, "c3": 0.314}, {"time": 0.2167, "y": 0.98, "curve": 0.387, "c3": 0.314}, {"time": 0.45, "curve": 0.387, "c3": 0.314}, + {"time": 0.6667, "y": 0.98, "curve": 0.387, "c3": 0.314}, {"time": 0.9, "curve": 0.387, "c3": 0.314}, {"time": 1.1167, "y": 0.98, "curve": 0.387, "c3": 0.314}, {"time": 1.3333} ] }, - "body-fur-12": { + "@leg-front-left": { "rotate": [ - {"angle": -16.52, "curve": 0.298, "c2": 0.2, "c3": 0.756}, {"time": 0.1167, "curve": 0.25, "c3": 0.75}, {"time": 0.2833, "angle": 34.44, "curve": 0.25, "c3": 0.75}, - {"time": 0.45, "angle": 15.7, "curve": 0.25, "c3": 0.75}, {"time": 0.7833, "angle": 43.18, "curve": 0.361, "c2": 0.01, "c3": 0.75}, - {"time": 1.0167, "angle": -39.28, "curve": 0.25, "c3": 0.75}, {"time": 1.3167, "angle": 22.14, "curve": 0.25, "c3": 0.75}, - {"time": 1.4833, "angle": -17.63, "curve": 0.299, "c3": 0.636, "c4": 0.36}, {"time": 1.5, "angle": -16.52} + {"curve": 0, "c2": 0.1, "c3": 0.843}, {"time": 0.1167, "angle": -12.07, "curve": 0.161, "c3": 0.854}, {"time": 0.2167, "angle": -2.63}, + {"time": 0.3333, "angle": 7.79, "curve": 0.079, "c4": 0.95}, {"time": 0.45, "curve": 0, "c2": 0.1, "c3": 0.843}, {"time": 0.55, "angle": -12.07, "curve": 0.161, "c3": 0.854}, + {"time": 0.6667, "angle": -2.63}, {"time": 0.7667, "angle": 7.79, "curve": 0.079, "c4": 0.95}, {"time": 0.8833, "curve": 0, "c2": 0.1, "c3": 0.843}, + {"time": 1, "angle": -12.07, "curve": 0.161, "c3": 0.854}, {"time": 1.1, "angle": -2.63}, {"time": 1.2167, "angle": 7.79, "curve": 0.079, "c4": 0.95}, {"time": 1.3333} ] }, - "body-fur-13": { + "@leg-front-right": { "rotate": [ - {"angle": -15.93, "curve": 0.36, "c2": 0.64, "c3": 0.695}, {"time": 0.0167, "angle": -17.63, "curve": 0.25, "c3": 0.75}, {"time": 0.15}, - {"time": 0.3167, "angle": 34.44, "curve": 0.25, "c3": 0.75}, {"time": 0.4833, "angle": 15.7, "curve": 0.25, "c3": 0.75}, - {"time": 0.8167, "angle": 43.18, "curve": 0.361, "c2": 0.01, "c3": 0.75}, {"time": 1.05, "angle": -39.28, "curve": 0.25, "c3": 0.75}, - {"time": 1.35, "angle": 22.14, "curve": 0.245, "c3": 0.711, "c4": 0.83}, {"time": 1.5, "angle": -15.93} + {"curve": 0, "c2": 0.1, "c3": 0.843}, {"time": 0.1167, "angle": -12.07, "curve": 0.161, "c3": 0.854}, {"time": 0.2167, "angle": -2.63}, + {"time": 0.3333, "angle": 7.79, "curve": 0.079, "c4": 0.95}, {"time": 0.45, "curve": 0, "c2": 0.1, "c3": 0.843}, {"time": 0.55, "angle": -12.07, "curve": 0.161, "c3": 0.854}, + {"time": 0.6667, "angle": -2.63}, {"time": 0.7667, "angle": 7.79, "curve": 0.079, "c4": 0.95}, {"time": 0.8833, "curve": 0, "c2": 0.1, "c3": 0.843}, + {"time": 1, "angle": -12.07, "curve": 0.161, "c3": 0.854}, {"time": 1.1, "angle": -2.63}, {"time": 1.2167, "angle": 7.79, "curve": 0.079, "c4": 0.95}, {"time": 1.3333} ] }, - "body-fur-14": { + "@leg-back-left": { "rotate": [ - {"angle": -3, "curve": 0.381, "c2": 0.55, "c3": 0.742}, {"time": 0.0667, "angle": -17.63, "curve": 0.244, "c3": 0.641, "c4": 0.57}, - {"time": 0.15, "angle": -5.92, "curve": 0.382, "c2": 0.56, "c3": 0.74}, {"time": 0.2}, {"time": 0.3667, "angle": 34.44, "curve": 0.25, "c3": 0.75}, - {"time": 0.5333, "angle": 15.7, "curve": 0.25, "c3": 0.75}, {"time": 0.8667, "angle": 43.18, "curve": 0.361, "c2": 0.01, "c3": 0.75}, - {"time": 1.1, "angle": -39.28, "curve": 0.25, "c3": 0.75}, {"time": 1.4, "angle": 22.14, "curve": 0.245, "c3": 0.637, "c4": 0.56}, {"time": 1.5, "angle": -3} + {"curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.1167, "angle": 8.89, "curve": 0.161, "c3": 0.854}, {"time": 0.2167, "angle": 0.78}, + {"time": 0.3333, "angle": -7.35, "curve": 0.079, "c4": 0.95}, {"time": 0.45, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.55, "angle": 8.89, "curve": 0.161, "c3": 0.854}, + {"time": 0.6667, "angle": 0.78}, {"time": 0.7667, "angle": -7.35, "curve": 0.079, "c4": 0.95}, {"time": 0.8833, "curve": 0, "c2": 0.1, "c3": 0.85}, + {"time": 1, "angle": 8.89, "curve": 0.161, "c3": 0.854}, {"time": 1.1, "angle": 0.78}, {"time": 1.2167, "angle": -7.35, "curve": 0.079, "c4": 0.95}, {"time": 1.3333} ] }, - "body-fur-15": { + "tail": { "rotate": [ - {"angle": -7.99, "curve": 0.382, "c2": 0.58, "c3": 0.731}, {"time": 0.05, "angle": -17.63, "curve": 0.25, "c3": 0.75}, {"time": 0.1833, "curve": 0.25, "c3": 0.75}, - {"time": 0.35, "angle": 34.44, "curve": 0.25, "c3": 0.75}, {"time": 0.5167, "angle": 15.7, "curve": 0.25, "c3": 0.75}, - {"time": 0.85, "angle": 43.18, "curve": 0.361, "c2": 0.01, "c3": 0.75}, {"time": 1.0833, "angle": -39.28, "curve": 0.25, "c3": 0.75}, - {"time": 1.3833, "angle": 22.14, "curve": 0.243, "c3": 0.655, "c4": 0.63}, {"time": 1.5, "angle": -7.99} + {"curve": 0, "c2": 0.05, "c3": 0.658}, {"time": 0.3333, "angle": -10.75, "curve": 0.304, "c3": 0.689}, {"time": 0.7333, "angle": 3.03}, + {"time": 1.05, "angle": 5.39, "curve": 0.234, "c4": 0.9}, {"time": 1.3333} ] }, - "body-fur-16": { - "rotate": [ - {"angle": 2.26, "curve": 0.375, "c2": 0.5, "c3": 0.75}, {"time": 0.0833, "angle": -17.63, "curve": 0.25, "c3": 0.75}, {"time": 0.2167, "curve": 0.25, "c3": 0.75}, - {"time": 0.3833, "angle": 34.44, "curve": 0.25, "c3": 0.75}, {"time": 0.55, "angle": 15.7, "curve": 0.25, "c3": 0.75}, - {"time": 0.8833, "angle": 43.18, "curve": 0.361, "c2": 0.01, "c3": 0.75}, {"time": 1.1167, "angle": -39.28, "curve": 0.25, "c3": 0.75}, - {"time": 1.4167, "angle": 22.14, "curve": 0.25, "c3": 0.625, "c4": 0.5}, {"time": 1.5, "angle": 2.26} + "@shadow": { + "scale": [ + {"curve": 0.387, "c3": 0.314}, {"time": 0.2167, "x": 1.1, "y": 1.1, "curve": 0.387, "c3": 0.314}, {"time": 0.45, "curve": 0.387, "c3": 0.314}, + {"time": 0.6667, "x": 1.1, "y": 1.1, "curve": 0.387, "c3": 0.314}, {"time": 0.9, "curve": 0.387, "c3": 0.314}, {"time": 1.1167, "x": 1.1, "y": 1.1, "curve": 0.387, "c3": 0.314}, + {"time": 1.3333} ] } } }, - "640070672": { - "slots": { - "eyes": {"attachment": [{"time": 0.05, "name": "eyes-angry"}, {"time": 0.8833, "name": "eyes"}]}, - "mouth": {"attachment": [{"time": 0.05, "name": "mouth-bite"}, {"time": 0.4667, "name": "mouth-open"}, {"time": 0.8333, "name": "mouth-bite"}, {"time": 0.8833, "name": "mouth"}]} - }, + "1964095857": { "bones": { "@pivot-back": { "rotate": [ @@ -32075,7 +40110,7 @@ }, "@leg-front-right": { "translate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": -0.29, "y": -5.47, "curve": 0, "c2": 0.6, "c3": 0.237}, {"time": 0.3333, "curve": "stepped"}, + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": -1.07, "y": -20.09, "curve": 0, "c2": 0.6, "c3": 0.237}, {"time": 0.3333, "curve": "stepped"}, {"time": 0.6667, "curve": 0.701, "c4": 0.5}, {"time": 0.8833, "x": -1.66, "y": -25.29, "curve": 0.461, "c3": 0.543}, {"time": 1} ] }, @@ -32099,11 +40134,7 @@ }, "events": [{"time": 0.4667, "name": "start-attack"}] }, - "3530118163": { - "slots": { - "eyes": {"attachment": [{"time": 0.0833, "name": "eyes-angry"}, {"time": 0.6667, "name": "eyes-shut"}, {"time": 0.75, "name": "eyes"}]}, - "mouth": {"attachment": [{"time": 0.0833, "name": "mouth-bite"}, {"time": 0.35, "name": "mouth-open"}, {"time": 0.55, "name": "mouth-bite"}, {"time": 0.75, "name": "mouth"}]} - }, + "2755238029": { "bones": { "@pivot-back": { "rotate": [ @@ -32125,34 +40156,33 @@ }, "leg-front-left-IK": { "translate": [ - {"time": 0.1667, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.3333, "x": 31.94, "y": 229.47, "curve": "stepped"}, {"time": 0.35, "x": 6.23, "y": 175.34, "curve": 0.384, "c3": 0.537}, - {"time": 0.5833, "x": 202.93}, {"time": 0.7, "x": 190.82, "curve": 0.315, "c4": 0.8}, {"time": 0.7667, "x": 145.27, "curve": 0.237, "c4": 0.8}, {"time": 0.9167} + {"time": 0.1667, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.3333, "x": 27.04, "y": 216.41, "curve": "stepped"}, {"time": 0.35, "x": 51.7, "y": 178.19, "curve": 0.384, "c3": 0.537}, + {"time": 0.5833, "x": 202.93}, {"time": 0.7, "x": 218.86, "y": 2.61, "curve": 0.315, "c4": 0.8}, {"time": 0.7667, "x": 145.27, "curve": 0.237, "c4": 0.8}, {"time": 0.9167} ] }, "leg-front-right-IK": { "translate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": 9.33, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.3333, "x": 54.35, "y": 345.22, "curve": "stepped"}, - {"time": 0.35, "x": 63.69, "y": 345.57, "curve": 0.384, "c3": 0.537}, {"time": 0.5833, "x": 199.77}, {"time": 0.7, "x": 187.66, "curve": 0.315, "c4": 0.8}, - {"time": 0.7667, "x": 143.69, "curve": 0.237, "c4": 0.8}, {"time": 0.9167} + {"time": 0.1667, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.3333, "x": 54.35, "y": 310.88, "curve": "stepped"}, {"time": 0.35, "x": 67.2, "y": 319.96, "curve": 0.384, "c3": 0.537}, + {"time": 0.5833, "x": 199.77}, {"time": 0.7, "x": 187.66, "curve": 0.315, "c4": 0.8}, {"time": 0.7667, "x": 143.69, "curve": 0.237, "c4": 0.8}, {"time": 0.9167} ] }, "leg-back-left-IK": { "translate": [ - {"time": 0.1667, "curve": 0, "c2": 0.4, "c3": 0.383}, {"time": 0.3333, "x": -8.28, "y": 157.2, "curve": "stepped"}, {"time": 0.35, "x": 22.27, "y": 70.62, "curve": 0.312, "c4": 0.8}, + {"time": 0.1667, "curve": 0, "c2": 0.4, "c3": 0.383}, {"time": 0.3333, "x": 50.37, "y": 150.84, "curve": "stepped"}, {"time": 0.35, "x": 34.64, "y": 81.96, "curve": 0.306, "c4": 0.8}, {"time": 0.5, "x": 185.62, "y": 1.08, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.7167, "x": 244.18, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.8167, "x": 141.99, "y": 26.46, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.9167} + {"time": 0.8167, "x": 108.59, "y": 18.82, "curve": 0.306, "c4": 0.8}, {"time": 0.9167} ] }, "@leg-front-right": { "translate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": 6.95, "y": -25.59, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "curve": "stepped"}, - {"time": 0.5833, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.7167, "x": 8.43, "y": -10.83}, {"time": 0.9167} + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": -1.03, "y": -19.32}, {"time": 0.3333, "curve": "stepped"}, {"time": 0.5833, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.7167, "x": 9.38, "y": 7.22}, {"time": 0.9167} ] }, "@leg-front-left": { "translate": [ {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": -0.29, "y": -5.47}, {"time": 0.3333, "curve": "stepped"}, {"time": 0.5833, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.7167, "x": 6.82, "y": 7.35}, {"time": 0.9167} + {"time": 0.7167, "x": 6.3, "y": -2.41}, {"time": 0.9167} ] }, "tail": { @@ -32177,11 +40207,7 @@ }, "events": [{"time": 0.35, "name": "start-attack"}] }, - "2870090226": { - "slots": { - "eyes": {"attachment": [{"time": 0.0167, "name": "eyes-angry"}, {"time": 0.5, "name": "eyes-shut"}, {"time": 0.6667, "name": "eyes"}]}, - "mouth": {"attachment": [{"time": 0.0167, "name": "mouth-bite"}, {"time": 0.3, "name": "mouth-open"}, {"time": 0.5, "name": "mouth"}]} - }, + "796766875": { "bones": { "@pivot-back": { "rotate": [ @@ -32196,42 +40222,42 @@ }, "leg-back-left-IK": { "translate": [ - {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.1333, "x": 80.9, "curve": 0.161, "c3": 0.854}, {"time": 0.25, "x": 49.4, "curve": 0.25, "c4": 0.3}, - {"time": 0.3, "x": -1.03, "y": 44.55}, {"time": 0.4167, "x": -2.69, "y": 48.98, "curve": 0.313, "c3": 0.699}, {"time": 0.5833, "x": -90.91, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.75} + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.1333, "x": 80.9, "curve": 0.161, "c3": 0.854}, {"time": 0.25, "x": 72.25, "curve": 0.25, "c4": 0.3}, + {"time": 0.3, "x": -24.7, "y": 18.44, "curve": "stepped"}, {"time": 0.4167, "x": -24.7, "y": 18.44, "curve": 0.306, "c3": 0.695}, + {"time": 0.5833, "x": -90.91, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.75} ] }, "leg-front-right-IK": { "translate": [ - {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 44.25, "y": 4.66, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "x": 42.9, "curve": 0.697, "c4": 0.3}, - {"time": 0.3, "x": 12.5}, {"time": 0.4167, "x": 2.32, "curve": 0.313, "c3": 0.699}, {"time": 0.5833, "x": -87.1, "curve": 0, "c2": 0.17, "c3": 0.45, "c4": 0.61}, - {"time": 0.6667, "x": -39.4, "curve": 0.345, "c2": 0.53, "c3": 0.751}, {"time": 0.75} + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 30.89, "y": 11.74, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "x": 42.9, "curve": 0.697, "c4": 0.3}, + {"time": 0.3, "x": 11.08, "y": 2.13, "curve": "stepped"}, {"time": 0.4167, "x": 11.08, "y": 2.13, "curve": 0.306, "c3": 0.695}, + {"time": 0.5833, "x": -87.1, "curve": 0, "c2": 0.17, "c3": 0.45, "c4": 0.61}, {"time": 0.6667, "x": -39.4, "curve": 0.345, "c2": 0.53, "c3": 0.751}, {"time": 0.75} ] }, "leg-front-left-IK": { "translate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "x": 8.25, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "x": 42.9, "curve": 0.697, "c4": 0.3}, - {"time": 0.3, "x": -18.24, "y": 8.75}, {"time": 0.4167, "x": -28.22, "y": 30.68, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.5833, "x": -112.56, "curve": 0, "c2": 0.17, "c3": 0.45, "c4": 0.61}, {"time": 0.6667, "x": -55.81, "curve": 0.345, "c2": 0.53, "c3": 0.751}, {"time": 0.75} + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "x": 52.52, "y": 6.57, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "x": 44.73, "y": 1.83, "curve": 0.697, "c4": 0.3}, + {"time": 0.3, "x": -28.02, "y": 20.97}, {"time": 0.4167, "x": -31.01, "y": 31.21, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.5833, "x": -82.62, "curve": 0, "c2": 0.17, "c3": 0.45, "c4": 0.61}, {"time": 0.6667, "x": -55.81, "curve": 0.345, "c2": 0.53, "c3": 0.751}, {"time": 0.75} ] }, "@leg-front-left": { "translate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "x": -4.8, "y": 21.17, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "x": -0.53, "y": 0.11, "curve": 0.697, "c4": 0.3}, - {"time": 0.3} + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "x": -2.59, "y": -4.65, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "x": -0.61, "y": -2.94, "curve": 0.697, "c4": 0.3}, + {"time": 0.3, "x": 0.47, "y": -9.15, "curve": "stepped"}, {"time": 0.4167, "x": 0.47, "y": -9.15, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5833} ] }, "@leg-front-right": { "translate": [ - {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 3.37, "y": 22.83, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "x": 12.06, "y": -24.92, "curve": 0.697, "c4": 0.3}, - {"time": 0.3, "x": -30.7, "y": 11.75, "curve": "stepped"}, {"time": 0.4167, "x": -30.7, "y": 11.75, "curve": 0, "c2": 0.3, "c3": 0.544}, - {"time": 0.5833, "x": -10.19, "y": -4.67, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.75} + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 4.31, "y": 11.86, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "x": -10.4, "y": -12.15, "curve": 0.697, "c4": 0.3}, + {"time": 0.3, "x": -48.45, "y": 18.12, "curve": "stepped"}, {"time": 0.4167, "x": -48.45, "y": 18.12, "curve": 0, "c2": 0.3, "c3": 0.54}, + {"time": 0.5833, "x": -10.7, "y": -18.88, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.75} ] }, "@leg-back-left": { "translate": [ {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.1333, "x": 0.67, "y": -7.85, "curve": 0.161, "c3": 0.854}, {"time": 0.25, "x": 0.53, "y": -13.09, "curve": 0.25, "c4": 0.3}, - {"time": 0.3, "x": 0.58, "y": -14.14, "curve": "stepped"}, {"time": 0.4167, "x": 0.58, "y": -14.14, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.3, "x": -0.22, "y": 1.34, "curve": "stepped"}, {"time": 0.4167, "x": -0.22, "y": 1.34, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5833, "x": -0.28, "y": -7.87, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.75} ] }, @@ -32255,12 +40281,52 @@ }, "events": [{"time": 0.3, "name": "start-attack"}] }, - "1771510038": { - "slots": { - "eyes": {"attachment": [{"time": 0.0167, "name": "eyes-angry"}, {"time": 0.75, "name": "eyes-shut"}, {"time": 0.8333, "name": "eyes"}]}, - "leg-back-left": {"attachment": [{"time": 0.35, "name": "sumo-leg-back-left-long"}, {"time": 0.5833, "name": "sumo-leg-back-left"}]}, - "mouth": {"attachment": [{"time": 0.0167, "name": "mouth-bite"}, {"time": 0.2667, "name": "mouth-open"}, {"time": 0.5833, "name": "mouth-bite"}, {"time": 0.8333, "name": "mouth"}]} + "2912539256": { + "bones": { + "@pivot-back": { + "rotate": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "angle": 4, "curve": 0, "c2": 0.6, "c3": 0.237}, {"time": 0.4167, "angle": -8.88, "curve": 0, "c2": 0.6, "c3": 0, "c4": 1.4}, + {"time": 1, "angle": 8.17, "curve": 0.701, "c4": 0.5}, {"time": 1.2333, "angle": 5, "curve": 0.461, "c3": 0.543}, {"time": 1.3333} + ], + "translate": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": 33.65, "y": -5, "curve": 0, "c2": 0.6, "c3": 0.237}, + {"time": 0.4167, "x": -62.54, "y": 309.16, "curve": 0, "c2": 0.6, "c3": 0, "c4": 1.4}, {"time": 1, "x": 12.32, "y": 268.04, "curve": 0.701, "c4": 0.5}, {"time": 1.2333} + ] + }, + "@shadow": { + "translate": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": 24.43, "curve": 0, "c2": 0.6, "c3": 0.237}, {"time": 0.4167, "x": -70.38, "curve": 0, "c2": 0.6, "c3": 0, "c4": 1.4}, + {"time": 1, "x": 5.15, "curve": 0.701, "c4": 0.5}, {"time": 1.2333, "x": -8.95, "curve": 0.461, "c3": 0.543}, {"time": 1.3333} + ], + "scale": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": 1.08, "y": 1.08, "curve": 0, "c2": 0.6, "c3": 0.237}, + {"time": 0.4167, "x": 0.85, "y": 0.85, "curve": 0, "c2": 0.6, "c3": 0, "c4": 1.4}, {"time": 1, "x": 0.9, "y": 0.9, "curve": 0.701, "c4": 0.5}, + {"time": 1.2333, "x": 1.1, "y": 1.1, "curve": 0.461, "c3": 0.543}, {"time": 1.3333} + ] + }, + "@leg-front-left": { + "translate": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": -0.29, "y": -5.47, "curve": 0, "c2": 0.6, "c3": 0.237}, {"time": 0.4167, "curve": "stepped"}, + {"time": 1, "curve": 0.701, "c4": 0.5}, {"time": 1.2333, "x": -0.95, "y": -14.45, "curve": 0.461, "c3": 0.543}, {"time": 1.3333} + ] + }, + "@leg-front-right": { + "translate": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": -0.29, "y": -5.47, "curve": 0, "c2": 0.6, "c3": 0.237}, {"time": 0.4167, "curve": "stepped"}, + {"time": 1, "curve": 0.701, "c4": 0.5}, {"time": 1.2333, "x": -1.66, "y": -25.29, "curve": 0.461, "c3": 0.543}, {"time": 1.3333} + ] + }, + "tail": { + "rotate": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "angle": 17.93, "curve": 0, "c2": 0.6, "c3": 0.237}, {"time": 0.4167, "angle": -15.3, "curve": 0, "c2": 0.6, "c3": 0, "c4": 1.4}, + {"time": 1, "angle": 24.81, "curve": 0.701, "c4": 0.5}, {"time": 1.2333, "angle": -15.84, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 1.3333} + ] + } }, + "events": [{"time": 0.4667, "name": "start-attack"}, {"time": 0.7, "name": "start-attack"}, {"time": 0.9333, "name": "start-attack"}] + }, + "515170597": { + "slots": {"leg-back-left": {"attachment": [{"time": 0.35, "name": "summer-leg-back-left-long"}, {"time": 0.5833, "name": "summer-leg-back-left"}]}}, "bones": { "@pivot-back": { "rotate": [ @@ -32289,45 +40355,47 @@ }, "leg-back-left-IK": { "translate": [ - {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.1333, "x": 80.9, "curve": 0.161, "c3": 0.854}, {"time": 0.25, "x": 49.4, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.3333, "x": -113.37, "y": 35.8, "curve": "stepped"}, {"time": 0.35, "x": -685.28, "y": 163.59}, {"time": 0.5667, "x": -686.48, "y": 176.51, "curve": "stepped"}, + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.1333, "x": 80.9, "curve": 0.161, "c3": 0.854}, {"time": 0.25, "x": 62.82, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.3333, "x": -99.34, "y": 18.56, "curve": "stepped"}, {"time": 0.35, "x": -653.9, "y": 153.81}, {"time": 0.5667, "x": -653.9, "y": 167.85, "curve": "stepped"}, {"time": 0.5833, "x": -134.74, "curve": "stepped"}, {"time": 0.75, "x": -134.74, "curve": 0.313, "c3": 0.699}, {"time": 0.9167} ] }, "leg-front-right-IK": { "translate": [ - {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 30.89, "y": 11.74, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "x": 42.9, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.3333, "x": -172.87, "y": 28.32, "curve": "stepped"}, {"time": 0.35, "x": 425.15, "curve": "stepped"}, {"time": 0.5667, "x": 425.15, "curve": "stepped"}, - {"time": 0.5833, "x": -180.48, "curve": "stepped"}, {"time": 0.75, "x": -180.48, "curve": 0.313, "c3": 0.699}, {"time": 0.9167} + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 22.35, "curve": 0.306, "c3": 0.695}, {"time": 0.25, "x": 42.9, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.3333, "x": -131.73, "y": 44.58, "curve": "stepped"}, {"time": 0.35, "x": 244.36, "y": -4.92, "curve": 0.31, "c4": 0.8}, + {"time": 0.5667, "x": 247.43, "y": -1.85, "curve": "stepped"}, {"time": 0.5833, "x": -180.48, "curve": "stepped"}, {"time": 0.75, "x": -180.48, "curve": 0.313, "c3": 0.699}, + {"time": 0.9167} ] }, "leg-front-left-IK": { "translate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "x": 8.25, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "x": 42.9, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.3333, "x": -192.09, "y": 31.17, "curve": "stepped"}, {"time": 0.35, "x": -197.17}, {"time": 0.5667, "x": -192.36, "y": 4.81, "curve": "stepped"}, + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "x": 40.76, "y": 5.08, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "x": 49, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.3333, "x": -180.92, "y": 40.32, "curve": "stepped"}, {"time": 0.35, "x": -197.17}, {"time": 0.5667, "x": -230.7, "y": 4.81, "curve": "stepped"}, {"time": 0.5833, "x": -180.48, "curve": "stepped"}, {"time": 0.75, "x": -180.48, "curve": 0.313, "c3": 0.699}, {"time": 0.9167} ] }, "@leg-front-left": { "translate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "x": -4.8, "y": 21.17, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.25, "x": -0.53, "y": 0.11, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "x": -1, "y": -5.53, "curve": "stepped"}, - {"time": 0.35, "x": 2.26, "y": 14.19, "curve": "stepped"}, {"time": 0.5667, "x": 2.26, "y": 14.19, "curve": "stepped"}, - {"time": 0.5833, "x": -1.12, "y": 1.52, "curve": 0.313, "c3": 0.699}, {"time": 0.75, "x": -1, "y": -5.53, "curve": 0.313, "c3": 0.699}, {"time": 0.9167} + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "x": -2.9, "y": -1.1, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.25, "x": -0.62, "y": -3.44, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "x": -1, "y": -5.53, "curve": "stepped"}, {"time": 0.35, "x": 4.4, "y": -4.91}, + {"time": 0.5667, "x": 7.49, "y": -5.17, "curve": "stepped"}, {"time": 0.5833, "x": 18.69, "y": 1.85, "curve": "stepped"}, + {"time": 0.75, "x": 18.69, "y": 1.85, "curve": 0.306, "c3": 0.695}, {"time": 0.9167} ] }, "@leg-front-right": { "translate": [ {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 4.31, "y": 11.86, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.25, "x": -10.19, "y": -4.67, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "x": -1.86, "y": -9.26, "curve": "stepped"}, - {"time": 0.35, "x": 11.1, "y": -20.22, "curve": "stepped"}, {"time": 0.5667, "x": 11.1, "y": -20.22, "curve": "stepped"}, - {"time": 0.5833, "x": -2.24, "y": 13.67, "curve": 0.313, "c3": 0.699}, {"time": 0.75, "x": -1.86, "y": -9.26, "curve": 0.313, "c3": 0.699}, {"time": 0.9167} + {"time": 0.25, "x": -10.48, "y": -15.33, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "x": -3.15, "y": 1.33, "curve": "stepped"}, {"time": 0.35, "x": -3.84, "y": 7.68}, + {"time": 0.5667, "x": -3.53, "y": 9.04, "curve": "stepped"}, {"time": 0.5833, "x": -2.24, "y": 13.67, "curve": 0.313, "c3": 0.699}, + {"time": 0.75, "x": -2.69, "y": -18.63, "curve": 0.313, "c3": 0.699}, {"time": 0.9167} ] }, "@leg-back-left": { "translate": [ - {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.1333, "x": 0.67, "y": -7.85, "curve": 0.161, "c3": 0.854}, {"time": 0.25, "x": 0.53, "y": -13.09, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.3333, "curve": "stepped"}, {"time": 0.35, "x": 10.26, "y": 0.56, "curve": "stepped"}, {"time": 0.5667, "x": 10.26, "y": 0.56, "curve": "stepped"}, {"time": 0.5833} + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.1333, "x": 0.67, "y": -7.85, "curve": 0.161, "c3": 0.854}, {"time": 0.25, "x": 0.74, "y": -5.43, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.3333, "x": -0.54, "y": 4.44, "curve": "stepped"}, {"time": 0.35, "x": 10.26, "y": 0.56, "curve": "stepped"}, {"time": 0.5667, "x": 10.26, "y": 0.56, "curve": "stepped"}, + {"time": 0.5833} ] }, "tail": { @@ -32342,354 +40410,411 @@ "scale": [{"time": 0.5667, "curve": "stepped"}, {"time": 0.75, "y": 0.98, "curve": 0.154, "c4": 0.9}, {"time": 0.9167}] } }, - "events": [{"time": 0.35, "name": "start-attack"}] + "drawOrder": [{"time": 0.35, "offsets": [{"slot": "leg-back-left", "offset": 1}]}, {"time": 0.5833}], + "events": [{"time": 0.35, "name": "start-attack"}, {"time": 0.5667, "name": "start-attack"}] }, - "3957953988": { - "slots": {"eyes": {"attachment": [{"time": 0.05, "name": "eyes-happy"}, {"time": 0.7667, "name": "eyes"}]}}, + "1563829869": { "bones": { - "@pivot-back": { - "rotate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "angle": -5.76, "curve": 0.306, "c3": 0.695}, {"time": 0.6667, "angle": -6.67, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.8333, "angle": 2.85, "curve": 0.306, "c3": 0.695}, {"time": 1} - ], + "@mouth": { "translate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": -11.96, "y": -12.91, "curve": 0.306, "c3": 0.695}, - {"time": 0.6667, "x": -17.52, "y": -16.38, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.8333} + {"time": 0.1667, "curve": 0, "c2": 0.1, "c3": 0.479, "c4": 0.56}, {"time": 0.3333, "x": -0.56, "y": 3.4, "curve": 0.408, "c2": 0.51, "c3": 0.853}, {"time": 0.5, "x": 0.04, "y": 0.05} ] }, - "@leg-front-left": { + "@pivot-back": { + "rotate": [ + {"curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.0667, "angle": -0.59, "curve": 0.075, "c4": 0.95}, {"time": 0.1333, "angle": 1.15, "curve": 0, "c2": 0.1, "c3": 0.85}, + {"time": 0.2167, "curve": "stepped"}, {"time": 0.3333, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.4, "angle": -0.59, "curve": 0.075, "c4": 0.95}, + {"time": 0.4667, "angle": 1.15, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.5833} + ], "translate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": -22.08, "y": 3.82, "curve": 0.306, "c3": 0.695}, {"time": 0.6667, "x": -27.67, "y": 3.91, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.8333, "x": -16.19, "y": -6.62, "curve": 0.306, "c3": 0.695}, {"time": 1} + {"y": 0.06, "curve": 0.387, "c3": 0.314}, {"time": 0.1333, "x": -13.8, "y": 0.06, "curve": 0.387, "c3": 0.314}, {"time": 0.2167, "x": 0.02, "y": 0.06, "curve": "stepped"}, + {"time": 0.3333, "x": 0.02, "y": 0.06, "curve": 0.387, "c3": 0.314}, {"time": 0.4667, "x": -13.8, "y": 0.06, "curve": 0.387, "c3": 0.314}, {"time": 0.5833, "x": 0.02, "y": 0.06} ] }, "@leg-front-right": { - "translate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": -32.02, "y": 30.99, "curve": 0.306, "c3": 0.695}, - {"time": 0.6667, "x": -43.95, "y": 33.64, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.8333, "x": 1.17, "y": -19.99, "curve": 0.306, "c3": 0.695}, {"time": 1} + "rotate": [ + {"curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.0667, "angle": 10.98, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.2167, "angle": -8.78, "curve": 0.161, "c3": 0.854}, + {"time": 0.3333, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.4, "angle": 10.98, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.55, "angle": -8.78, "curve": 0.161, "c3": 0.854}, + {"time": 0.6667, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.8333, "angle": -9.85, "curve": 0.161, "c3": 0.854}, {"time": 0.9833, "angle": -6.21}, + {"time": 1.15, "angle": 2.69, "curve": 0.075, "c4": 0.95}, {"time": 1.3333, "angle": -30.3} ] }, - "@leg-back-left": { - "translate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": -18.26, "y": -5.66, "curve": 0.306, "c3": 0.695}, - {"time": 0.6667, "x": -24.49, "y": -9.09, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.8333, "x": -0.1, "y": -3.16, "curve": 0.306, "c3": 0.695}, {"time": 1} + "@leg-front-left": { + "rotate": [ + {"curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.0667, "angle": 10.98, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.2167, "angle": -8.78, "curve": 0.161, "c3": 0.854}, + {"time": 0.3333, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.4, "angle": 10.98, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.55, "angle": -8.78, "curve": 0.161, "c3": 0.854}, + {"time": 0.6667, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.8333, "angle": -9.84, "curve": 0.161, "c3": 0.854}, {"time": 0.9833, "angle": -6.21}, + {"time": 1.15, "angle": 2.69, "curve": 0.075, "c4": 0.95}, {"time": 1.3333, "angle": 20.14} ] }, - "tail": { + "@leg-back-left": { "rotate": [ - {"curve": 0, "c2": 0.3, "c3": 0.54}, {"time": 0.1667, "angle": -11.59, "curve": 0.306, "c3": 0.695}, {"time": 0.4167, "angle": 2.75, "curve": 0.306, "c3": 0.695}, - {"time": 0.6667, "angle": -13.32, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.8333, "angle": 15.71, "curve": 0.306, "c3": 0.695}, {"time": 1} + {"curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.0667, "angle": 10.98, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.2167, "angle": -8.78, "curve": 0.161, "c3": 0.854}, + {"time": 0.3333, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.4, "angle": 10.98, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.55, "angle": -8.78, "curve": 0.161, "c3": 0.854}, + {"time": 0.6667, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.8333, "angle": 5.93, "curve": 0.161, "c3": 0.854}, {"time": 0.9833}, + {"time": 1.15, "angle": -4.97, "curve": 0.075, "c4": 0.95}, {"time": 1.3333, "angle": -11.75} ] }, + "@pivot-main": {"translate": [{"curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.0667, "y": 7.88, "curve": 0.078, "c4": 0.94}, {"time": 0.1333}]}, + "@pivot-center": {"translate": [{"curve": 0.387, "c3": 0.314}, {"time": 0.6667, "y": 14.05, "curve": 0.387, "c3": 0.314}, {"time": 1.3333}]}, "@shadow": { - "scale": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": 0.96, "y": 0.96}, {"time": 0.6667, "x": 0.94, "y": 0.94, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.8333, "x": 1.06, "y": 1.06, "curve": 0.306, "c3": 0.695}, {"time": 1} + "translate": [ + {"curve": 0.387, "c3": 0.314}, {"time": 0.1333, "x": -23.3, "curve": 0.387, "c3": 0.314}, {"time": 0.2167, "x": -9.6, "curve": "stepped"}, + {"time": 0.3333, "x": -9.6, "curve": 0.387, "c3": 0.314}, {"time": 0.4667, "x": -23.3, "curve": 0.387, "c3": 0.314}, {"time": 0.5833} + ], + "scale": [{"curve": 0.387, "c3": 0.314}, {"time": 0.6667, "x": 0.95, "y": 0.95, "curve": 0.387, "c3": 0.314}, {"time": 1.3333}] + }, + "tail": { + "rotate": [ + {"curve": 0, "c2": 0.12, "c3": 0.348, "c4": 0.47}, {"time": 0.1, "angle": -6.85, "curve": 0.229, "c2": 0.25, "c3": 0.569, "c4": 0.6}, + {"time": 0.2, "angle": 1.43, "curve": 0.188, "c2": 0.31, "c3": 0.695}, {"time": 0.3333, "angle": 3.02, "curve": 0, "c2": 0.12, "c3": 0.347, "c4": 0.48}, + {"time": 0.4333, "angle": -6.85, "curve": 0.229, "c2": 0.25, "c3": 0.569, "c4": 0.6}, {"time": 0.5333, "angle": 1.2, "curve": 0.155, "c3": 0.85}, + {"time": 0.75, "angle": -5.95, "curve": 0.161, "c3": 0.854}, {"time": 0.95, "angle": -0.94}, {"time": 1.15, "angle": 4.91, "curve": 0.234, "c4": 0.9}, {"time": 1.3333} ] } - }, - "events": [{"time": 0.1667, "name": "hit-buff"}] + } }, - "336700057": { - "slots": { - "eyes": {"attachment": [{"time": 0.05, "name": "eyes-shut"}, {"time": 0.7667, "name": "eyes"}]}, - "mouth": {"attachment": [{"time": 0.05, "name": "mouth-bite"}, {"time": 0.7667, "name": "mouth"}]} - }, + "4174710305": { "bones": { + "@mouth": { + "translate": [ + {"time": 0.1667, "curve": 0, "c2": 0.1, "c3": 0.479, "c4": 0.56}, {"time": 0.3333, "x": -0.56, "y": 3.4, "curve": 0.408, "c2": 0.51, "c3": 0.853}, + {"time": 0.5, "x": 0.04, "y": 0.05, "curve": 0, "c2": 0.27, "c3": 0.314, "c4": 0.8}, {"time": 0.6, "x": 3.03, "y": 2.83, "curve": 0.168, "c2": 0.32, "c3": 0.551, "c4": 0.7}, + {"time": 0.7, "x": -0.51, "y": 3.39, "curve": 0.291, "c2": 0.39, "c3": 0.63, "c4": 0.75}, {"time": 0.8, "x": -3.56, "y": 0.39, "curve": 0.329, "c2": 0.61, "c3": 0.674, "c4": 0.99}, + {"time": 0.9, "x": 0.05, "y": -0.01, "curve": 0, "c2": 0.27, "c3": 0.31, "c4": 0.8}, {"time": 1.0167, "x": 3.05, "y": 2.75, "curve": 0.154, "c2": 0.33, "c3": 0.544, "c4": 0.7}, + {"time": 1.1167, "x": -0.5, "y": 3.35, "curve": 0.298, "c2": 0.38, "c3": 0.643, "c4": 0.74}, {"time": 1.2167, "x": -3.56, "y": 0.37, "curve": 0.326, "c2": 0.61, "c3": 0.671, "c4": 0.99}, + {"time": 1.3333} + ] + }, "@pivot-back": { "rotate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "angle": 3.5}, {"time": 0.6667, "angle": 4, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.8333, "angle": -1.98, "curve": 0.306, "c3": 0.695}, {"time": 1} + {"curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.0667, "angle": -0.59, "curve": 0.075, "c4": 0.95}, {"time": 0.1333, "angle": 1.15, "curve": 0, "c2": 0.1, "c3": 0.85}, + {"time": 0.2167, "curve": "stepped"}, {"time": 0.3333, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.4, "angle": -0.59, "curve": 0.075, "c4": 0.95}, + {"time": 0.4667, "angle": 1.15, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.5833} ], "translate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "y": 2.9}, {"time": 0.6667, "y": 3.91, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.8333, "y": -2.14, "curve": 0.306, "c3": 0.695}, {"time": 1} + {"y": 0.06, "curve": 0.387, "c3": 0.314}, {"time": 0.1333, "x": -13.8, "y": 0.06, "curve": 0.387, "c3": 0.314}, {"time": 0.2167, "x": 0.02, "y": 0.06, "curve": "stepped"}, + {"time": 0.3333, "x": 0.02, "y": 0.06, "curve": 0.387, "c3": 0.314}, {"time": 0.4667, "x": -13.8, "y": 0.06, "curve": 0.387, "c3": 0.314}, {"time": 0.5833, "x": 0.02, "y": 0.06} ] }, "@leg-front-right": { - "translate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": -0.75, "y": -16.02}, {"time": 0.6667, "x": -1.01, "y": -19.02, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.8333, "x": -0.43, "y": 9.97, "curve": 0.306, "c3": 0.695}, {"time": 1} + "rotate": [ + {"curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.0667, "angle": 10.98, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.2167, "angle": -8.78, "curve": 0.161, "c3": 0.854}, + {"time": 0.3333, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.4, "angle": 10.98, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.55, "angle": -8.78, "curve": 0.161, "c3": 0.854}, + {"time": 0.6667, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.8333, "angle": -9.85, "curve": 0.161, "c3": 0.854}, {"time": 0.9833, "angle": -6.21}, + {"time": 1.15, "angle": 2.69, "curve": 0.075, "c4": 0.95}, {"time": 1.3333} ] }, "@leg-front-left": { - "translate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": -0.36, "y": -7.76}, {"time": 0.6667, "x": -0.47, "y": -8.85, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.8333, "x": -0.23, "y": 5.14, "curve": 0.306, "c3": 0.695}, {"time": 1} + "rotate": [ + {"curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.0667, "angle": 10.98, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.2167, "angle": -8.78, "curve": 0.161, "c3": 0.854}, + {"time": 0.3333, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.4, "angle": 10.98, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.55, "angle": -8.78, "curve": 0.161, "c3": 0.854}, + {"time": 0.6667, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.8333, "angle": -9.84, "curve": 0.161, "c3": 0.854}, {"time": 0.9833, "angle": -6.21}, + {"time": 1.15, "angle": 2.69, "curve": 0.075, "c4": 0.95}, {"time": 1.3333} + ] + }, + "@leg-back-left": { + "rotate": [ + {"curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.0667, "angle": 10.98, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.2167, "angle": -8.78, "curve": 0.161, "c3": 0.854}, + {"time": 0.3333, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.4, "angle": 10.98, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.55, "angle": -8.78, "curve": 0.161, "c3": 0.854}, + {"time": 0.6667, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.8333, "angle": 5.93, "curve": 0.161, "c3": 0.854}, {"time": 0.9833}, + {"time": 1.15, "angle": -4.97, "curve": 0.075, "c4": 0.95}, {"time": 1.3333} ] }, + "@pivot-main": {"translate": [{"curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.0667, "y": 7.88, "curve": 0.078, "c4": 0.94}, {"time": 0.1333}]}, + "@pivot-center": {"translate": [{"curve": 0.387, "c3": 0.314}, {"time": 0.6667, "y": 14.05, "curve": 0.387, "c3": 0.314}, {"time": 1.3333}]}, + "@shadow": { + "translate": [ + {"curve": 0.387, "c3": 0.314}, {"time": 0.1333, "x": -23.3, "curve": 0.387, "c3": 0.314}, {"time": 0.2167, "x": -9.6, "curve": "stepped"}, + {"time": 0.3333, "x": -9.6, "curve": 0.387, "c3": 0.314}, {"time": 0.4667, "x": -23.3, "curve": 0.387, "c3": 0.314}, {"time": 0.5833} + ], + "scale": [{"curve": 0.387, "c3": 0.314}, {"time": 0.6667, "x": 0.95, "y": 0.95, "curve": 0.387, "c3": 0.314}, {"time": 1.3333}] + }, "tail": { "rotate": [ - {"curve": 0, "c2": 0.3, "c3": 0.54}, {"time": 0.1667, "angle": -17.97, "curve": 0.306, "c3": 0.695}, {"time": 0.4167, "angle": -9.96, "curve": 0.306, "c3": 0.695}, - {"time": 0.6667, "angle": -19.79, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.8333, "angle": 6.14, "curve": 0.306, "c3": 0.695}, {"time": 1} + {"curve": 0, "c2": 0.12, "c3": 0.348, "c4": 0.47}, {"time": 0.1, "angle": -6.85, "curve": 0.229, "c2": 0.25, "c3": 0.569, "c4": 0.6}, + {"time": 0.2, "angle": 1.43, "curve": 0.188, "c2": 0.31, "c3": 0.695}, {"time": 0.3333, "angle": 3.02, "curve": 0, "c2": 0.12, "c3": 0.347, "c4": 0.48}, + {"time": 0.4333, "angle": -6.85, "curve": 0.229, "c2": 0.25, "c3": 0.569, "c4": 0.6}, {"time": 0.5333, "angle": 1.2, "curve": 0.155, "c3": 0.85}, + {"time": 0.75, "angle": -5.95, "curve": 0.161, "c3": 0.854}, {"time": 0.95, "angle": -0.94}, {"time": 1.15, "angle": 4.91, "curve": 0.234, "c4": 0.9}, {"time": 1.3333} ] } - }, - "events": [{"time": 0.1667, "name": "hit-buff"}] + } }, - "4129179734": { - "slots": { - "eyes": {"attachment": [{"time": 0.0167, "name": "eyes-shut"}, {"time": 0.1833, "name": "eyes-angry"}, {"time": 0.4, "name": "eyes"}]}, - "mouth": {"attachment": [{"time": 0.0167, "name": "mouth-bite"}, {"time": 0.4, "name": "mouth"}]} - }, + "636017429": { "bones": { "@pivot-back": { "rotate": [ - {"curve": "stepped"}, {"time": 0.0167, "angle": -20}, {"time": 0.1667, "angle": -22, "curve": 0.464, "c4": 0.7}, {"time": 0.3167, "angle": 5.2, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.4167} + {"curve": 0.302, "c4": 0.8}, {"time": 0.1667, "angle": -5.15, "curve": 0, "c2": 0.2, "c3": 0.692}, {"time": 0.3333, "angle": 4.71, "curve": 0, "c2": 0.1, "c3": 0.853}, + {"time": 0.5, "angle": -2.3, "curve": 0.308, "c3": 0.692}, {"time": 0.6667, "angle": 2.84, "curve": 0.314, "c3": 0.701}, + {"time": 0.9167, "angle": -3.66, "curve": 0, "c2": 0.1, "c3": 0.845}, {"time": 1.0833, "angle": -0.77, "curve": 0.311, "c4": 0.8}, {"time": 1.25} ], - "translate": [{"curve": "stepped"}, {"time": 0.0167, "x": 75, "y": -4.42}, {"time": 0.1667, "x": 80, "y": -7.47, "curve": 0.464, "c4": 0.7}, {"time": 0.3167}] - }, - "@leg-front-left": {"translate": [{"time": 0.1667, "curve": 0.62, "c4": 0.3}, {"time": 0.3167, "x": -1.1, "y": -14.87, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.4167}]}, - "@shadow": { "translate": [ - {"curve": "stepped"}, {"time": 0.0167, "x": 70.3, "curve": "stepped"}, {"time": 0.1667, "x": 70.3, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.3167, "x": 12.49, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.4167} - ], - "scale": [ - {"curve": "stepped"}, {"time": 0.0167, "x": 0.98, "y": 0.98}, {"time": 0.1667, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.3167, "x": 1.08, "y": 1.08, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.4167} + {"curve": 0.308, "c4": 0.79}, {"time": 0.25, "x": -74.35, "y": -25.83, "curve": 0, "c2": 0.3, "c3": 0.537}, {"time": 0.4167, "x": -74.35, "y": 55.38, "curve": 0, "c2": 0.1, "c3": 0.853}, + {"time": 0.5833, "x": 103.85, "y": -14.97, "curve": 0.308, "c3": 0.692}, {"time": 0.75, "x": 103.82, "y": 55.43, "curve": 0.314, "c3": 0.701}, + {"time": 1, "x": -40.96, "y": -15.97, "curve": 0.314, "c3": 0.701}, {"time": 1.1667, "x": -40.96, "y": 0.03, "curve": 0, "c2": 0.05, "c3": 0.933}, {"time": 1.3333} ] }, - "leg-back-left-IK": { - "translate": [ - {"curve": "stepped"}, {"time": 0.0167, "x": -5.88, "y": 0.9, "curve": "stepped"}, {"time": 0.1667, "x": -5.88, "y": 0.9, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.3167, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.3695, "x": -5.88, "y": 0.9} + "@leg-front-right": { + "rotate": [ + {"curve": 0.307, "c4": 0.8}, {"time": 0.1667, "angle": 13.08, "curve": 0.302, "c3": 0.695}, {"time": 0.4167, "angle": -24.68, "curve": "stepped"}, + {"time": 0.5833, "angle": -24.68, "curve": 0, "c2": 0.2, "c3": 0.689}, {"time": 0.75, "angle": 8.39, "curve": "stepped"}, {"time": 0.9167, "angle": 8.39, "curve": 0.308, "c4": 0.8}, + {"time": 1.1667, "angle": -16.49, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 1.3333, "angle": -30.3} ] }, - "@leg-back-left": {"translate": [{"curve": "stepped"}, {"time": 0.0167, "x": -2.22, "y": 7.86}, {"time": 0.1667, "x": -2.63, "y": 8.92, "curve": 0.306, "c4": 0.8}, {"time": 0.3167}]}, - "@pivot-main": {"translate": [{"curve": "stepped"}, {"time": 0.0167, "x": 20, "curve": "stepped"}, {"time": 0.3167, "x": 20, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.4167}]}, - "@leg-front-right": {"translate": [{"time": 0.1667, "curve": 0.62, "c4": 0.3}, {"time": 0.3167, "x": -2.11, "y": -28.46, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.4167}]}, - "tail": { + "@leg-front-left": { "rotate": [ - {"curve": "stepped"}, {"time": 0.0167, "angle": 19}, {"time": 0.1667, "angle": 23.91, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.3167, "angle": -21.75, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.4167} + {"curve": 0.307, "c4": 0.8}, {"time": 0.1667, "angle": 13.08, "curve": 0.302, "c3": 0.695}, {"time": 0.4167, "angle": -24.68, "curve": "stepped"}, + {"time": 0.5833, "angle": -24.68, "curve": 0, "c2": 0.2, "c3": 0.689}, {"time": 0.75, "angle": 8.39, "curve": "stepped"}, {"time": 0.9167, "angle": 8.39, "curve": 0.308, "c4": 0.8}, + {"time": 1.1667, "angle": -16.49, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 1.3333, "angle": 20.14} ] }, - "leg-front-right-IK": { - "translate": [ - {"curve": "stepped"}, {"time": 0.0167, "x": 49.22, "y": 169.28}, {"time": 0.0833, "x": -4.05, "y": 205.79}, {"time": 0.1667, "x": 52, "y": 184.62, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.3167} + "@leg-back-left": { + "rotate": [ + {"curve": 0.307, "c4": 0.8}, {"time": 0.1667, "angle": 13.08}, {"time": 0.3333, "angle": -13.36}, {"time": 0.75, "angle": 11.05, "curve": "stepped"}, + {"time": 0.9167, "angle": 11.05, "curve": 0.308, "c4": 0.8}, {"time": 1.1667, "angle": -13.83, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 1.3333, "angle": -11.75} ] }, - "leg-front-left-IK": { - "translate": [ - {"curve": "stepped"}, {"time": 0.0167, "x": -29.76, "y": 76.11}, {"time": 0.0833, "x": 8.1, "y": 65.84}, {"time": 0.1667, "x": -35.9, "y": 81.82, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.3167} - ] - } - } - }, - "3123502684": { - "slots": { - "eyes": {"attachment": [{"time": 0.0167, "name": "eyes-shut"}, {"time": 0.1833, "name": "eyes-angry"}, {"time": 0.4, "name": "eyes"}]}, - "mouth": {"attachment": [{"time": 0.0167, "name": "mouth-bite"}, {"time": 0.4, "name": "mouth"}]} - }, - "bones": { "tail": { "rotate": [ - {"curve": "stepped"}, {"time": 0.0167, "angle": 35.35}, {"time": 0.1667, "angle": 50.35, "curve": 0.315, "c4": 0.8}, {"time": 0.3167, "angle": -21.75, "curve": 0, "c2": 0.1, "c3": 0.85}, - {"time": 0.4167} + {"curve": 0, "c2": 0.2, "c3": 0.698}, {"time": 0.1667, "angle": -6, "curve": 0.305, "c3": 0.698}, {"time": 0.25, "angle": 1.14, "curve": 0.301, "c3": 0.698}, + {"time": 0.4167, "angle": -8.39, "curve": 0, "c2": 0.2, "c3": 0.698}, {"time": 0.5833, "angle": 0.59, "curve": 0.305, "c3": 0.698}, + {"time": 0.75, "angle": -10.53, "curve": 0, "c2": 0.2, "c3": 0.692}, {"time": 1, "angle": -2.29, "curve": 0.302, "c3": 0.692}, + {"time": 1.1667, "angle": -9.12, "curve": 0, "c2": 0.1, "c3": 0.844}, {"time": 1.3333} ] }, - "leg-front-right-IK": { - "translate": [{"curve": "stepped"}, {"time": 0.0167, "x": 48.52, "y": 414.3}, {"time": 0.1667, "x": 69.52, "y": 458.5, "curve": 0.306, "c4": 0.8}, {"time": 0.3167}] - }, - "@pivot-back": { + "back": { "rotate": [ - {"curve": "stepped"}, {"time": 0.0167, "angle": -45}, {"time": 0.1667, "angle": -50, "curve": 0.464, "c4": 0.7}, {"time": 0.3167, "angle": 5.2, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.4167} - ], - "translate": [{"curve": "stepped"}, {"time": 0.0167, "x": 94.99, "y": -21}, {"time": 0.1667, "x": 107, "y": -60, "curve": 0.464, "c4": 0.7}, {"time": 0.3167}] + {"curve": 0, "c2": 0.2, "c3": 0.698}, {"time": 0.1667, "angle": -1.84, "curve": 0.305, "c3": 0.698}, {"time": 0.25, "angle": 3, "curve": 0.301, "c3": 0.698}, + {"time": 0.4167, "angle": 0.04, "curve": 0, "c2": 0.2, "c3": 0.698}, {"time": 0.5833, "angle": 4.01, "curve": 0.305, "c3": 0.698}, + {"time": 0.75, "angle": 0.76, "curve": 0, "c2": 0.2, "c3": 0.692}, {"time": 1, "angle": 4.04, "curve": 0.302, "c3": 0.692}, + {"time": 1.1667, "angle": 1.6, "curve": 0, "c2": 0.1, "c3": 0.844}, {"time": 1.3333} + ] }, "@shadow": { "translate": [ - {"curve": "stepped"}, {"time": 0.0167, "x": 70.3, "curve": "stepped"}, {"time": 0.1667, "x": 70.3, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.3167, "x": 12.49, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.4167} + {"curve": 0.315, "c4": 0.8}, {"time": 0.25, "x": -83.7, "curve": 0, "c2": 0.3, "c3": 0.535}, {"time": 0.4167, "x": -83.9, "curve": 0, "c2": 0.1, "c3": 0.85}, + {"time": 0.5833, "x": 94.25, "curve": 0.309, "c3": 0.691}, {"time": 0.75, "x": 94.33, "curve": 0.309, "c3": 0.691}, {"time": 1, "x": -50.6, "curve": "stepped"}, + {"time": 1.1667, "x": -50.6, "curve": 0.082, "c3": 0.928}, {"time": 1.3333} ], "scale": [ - {"curve": "stepped"}, {"time": 0.0167, "x": 0.98, "y": 0.98}, {"time": 0.1667, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.3167, "x": 1.08, "y": 1.08, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.4167} - ] - }, - "leg-back-left-IK": { - "translate": [{"curve": "stepped"}, {"time": 0.0167, "x": -126.78, "y": 61.47}, {"time": 0.1667, "x": -117.91, "y": 26.67, "curve": 0.306, "c3": 0.695}, {"time": 0.3333}] - }, - "@leg-back-left": { - "translate": [ - {"curve": "stepped"}, {"time": 0.0167, "x": -2.63, "y": 8.92, "curve": "stepped"}, {"time": 0.1667, "x": -2.63, "y": 8.92, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3167} + {"curve": 0.315, "c4": 0.8}, {"time": 0.25, "x": 1.04, "y": 1.04, "curve": 0, "c2": 0.3, "c3": 0.535}, {"time": 0.4167, "x": 0.95, "y": 0.95, "curve": 0, "c2": 0.1, "c3": 0.85}, + {"time": 0.5833, "x": 1.08, "y": 1.08, "curve": 0.309, "c3": 0.691}, {"time": 0.75, "x": 0.96, "y": 0.96, "curve": 0.309, "c3": 0.691}, + {"time": 1, "x": 1.08, "y": 1.08, "curve": 0.309, "c3": 0.691}, {"time": 1.1667, "x": 1.04, "y": 1.04, "curve": 0.082, "c3": 0.928}, {"time": 1.3333} ] - }, - "@pivot-main": {"translate": [{"curve": "stepped"}, {"time": 0.0167, "x": 20, "curve": "stepped"}, {"time": 0.3167, "x": 20, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.4167}]}, - "leg-front-left-IK": { - "translate": [{"curve": "stepped"}, {"time": 0.0167, "x": -81.6, "y": 219.75}, {"time": 0.1667, "x": -70.97, "y": 228.81, "curve": 0.306, "c4": 0.8}, {"time": 0.3167}] - }, - "@leg-front-left": {"translate": [{"time": 0.1667, "curve": 0.62, "c4": 0.3}, {"time": 0.3167, "x": -1.1, "y": -14.87, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.4167}]}, - "@leg-front-right": {"translate": [{"time": 0.1667, "curve": 0.62, "c4": 0.3}, {"time": 0.3167, "x": -2.11, "y": -28.46, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.4167}]} + } } }, - "439534949": { - "slots": { - "eyes": {"attachment": [{"time": 0.0167, "name": "eyes-shut"}, {"time": 0.5833, "name": "eyes-angry"}, {"time": 0.8333, "name": "eyes-shut"}, {"time": 0.9167, "name": "eyes"}]}, - "mouth": {"attachment": [{"time": 0.0167, "name": "mouth-bite"}, {"time": 0.6667, "name": "mouth-open"}, {"time": 0.8333, "name": "mouth"}]} - }, + "2335495519": { "bones": { "@pivot-back": { "rotate": [ - {"curve": "stepped"}, {"time": 0.0167, "angle": -45}, {"time": 0.1, "angle": -85, "curve": "stepped"}, {"time": 0.6667, "angle": -85, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.8333, "angle": 6, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1} + {"curve": 0, "c2": 0.2, "c3": 0.695}, {"time": 0.1, "angle": 6, "curve": 0, "c2": 0.2, "c3": 0.695}, {"time": 0.25, "angle": -10.31, "curve": 0.317, "c4": 0.8}, + {"time": 0.3833, "angle": 5}, {"time": 0.6333, "angle": 6, "curve": 0, "c2": 0.2, "c3": 0.695}, {"time": 0.7667, "angle": -5.94, "curve": 0.317, "c4": 0.8}, + {"time": 0.9, "angle": 6.92, "curve": 0, "c2": 0.2, "c3": 0.695}, {"time": 1} ], "translate": [ - {"curve": "stepped"}, {"time": 0.0167, "x": 94.99, "y": -21}, {"time": 0.05, "x": 256.42, "y": -60}, {"time": 0.1, "x": 408.25, "y": -188, "curve": "stepped"}, - {"time": 0.6667, "x": 408.25, "y": -188, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.8333, "y": 12.75, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1} + {"time": 0.1, "curve": 0, "c2": 0.2, "c3": 0.695}, {"time": 0.25, "y": 82.86, "curve": 0.317, "c4": 0.8}, {"time": 0.3833, "curve": "stepped"}, + {"time": 0.6333, "curve": 0, "c2": 0.2, "c3": 0.695}, {"time": 0.7667, "y": 70.12, "curve": 0.317, "c4": 0.8}, {"time": 0.9} ] }, - "@shadow": { + "@pivot-main": { + "translate": [{"time": 0.1, "curve": 0, "c2": 0.15, "c3": 0.703}, {"time": 0.3833, "x": 542.6}, {"time": 0.6333, "x": 603.73, "curve": 0, "c2": 0.1, "c3": 0.852}, {"time": 0.9}] + }, + "@leg-front-left": { "translate": [ - {"curve": "stepped"}, {"time": 0.0167, "x": 144.17}, {"time": 0.1, "x": 589.27, "curve": 0.313, "c3": 0.699}, {"time": 0.25, "x": 627.48, "curve": 0.313, "c3": 0.699}, - {"time": 0.4167, "x": 576.87, "curve": 0.313, "c3": 0.699}, {"time": 0.55, "x": 602.83, "curve": 0.313, "c3": 0.699}, {"time": 0.6667, "x": 576.87, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.8333} - ], - "scale": [ - {"curve": "stepped"}, {"time": 0.0167, "x": 0.92, "y": 0.92}, {"time": 0.1, "curve": 0, "c2": 0.22, "c3": 0.373, "c4": 0.57}, {"time": 0.25, "x": 1.04, "y": 1.04, "curve": "stepped"}, - {"time": 0.6667, "x": 1.04, "y": 1.04, "curve": 0.206, "c2": 0.38, "c3": 0.736}, {"time": 0.8333, "x": 1.1, "y": 1.1, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1} + {"curve": 0, "c2": 0.2, "c3": 0.695}, {"time": 0.1, "x": -1.93, "y": -18.15, "curve": 0, "c2": 0.3, "c3": 0.62}, {"time": 0.25, "curve": 0.313, "c4": 0.8}, + {"time": 0.3833, "x": -1.93, "y": -18.15}, {"time": 0.6333, "x": -1.68, "y": -15.27, "curve": 0, "c2": 0.2, "c3": 0.691}, {"time": 0.7667, "curve": 0.309, "c4": 0.8}, + {"time": 0.9, "x": -1.93, "y": -18.15, "curve": 0, "c2": 0.19, "c3": 0.695}, {"time": 1} ] }, - "@leg-back-left": {"translate": [{"curve": "stepped"}, {"time": 0.0167, "x": 6.4, "y": 0.19}, {"time": 0.1667}]}, - "leg-front-right-IK": { + "@leg-front-right": { "translate": [ - {"curve": "stepped"}, {"time": 0.0167, "x": 85.72, "y": 376.6}, {"time": 0.05, "x": 470.49, "y": 757.6}, {"time": 0.1, "x": 1081.69, "y": 580.29, "curve": 0.313, "c3": 0.699}, - {"time": 0.25, "x": 1237.6, "y": 518.07, "curve": 0.313, "c3": 0.699}, {"time": 0.4167, "x": 1055.02, "y": 601.3, "curve": 0.313, "c3": 0.699}, - {"time": 0.5833, "x": 1168.88, "y": 568.7}, {"time": 0.6667, "x": 1116.08, "y": 602.91}, {"time": 0.7, "x": 479.71, "y": 713.72}, {"time": 0.75, "x": 20.63, "y": 378.32}, - {"time": 0.7833, "x": 1.29, "y": 116.66}, {"time": 0.8333} + {"curve": 0, "c2": 0.2, "c3": 0.695}, {"time": 0.1, "x": -3.41, "y": -31.95, "curve": 0, "c2": 0.3, "c3": 0.62}, {"time": 0.25, "curve": 0.313, "c4": 0.8}, + {"time": 0.3833, "x": -3.41, "y": -31.95}, {"time": 0.6333, "x": -3.16, "y": -29.07, "curve": 0, "c2": 0.2, "c3": 0.691}, {"time": 0.7667, "curve": 0.309, "c4": 0.8}, + {"time": 0.9, "x": -3.41, "y": -31.95, "curve": 0, "c2": 0.19, "c3": 0.695}, {"time": 1} ] }, - "tail": { - "rotate": [ - {"curve": "stepped"}, {"time": 0.0167, "angle": 35.35}, {"time": 0.1, "angle": -18.03, "curve": 0.313, "c3": 0.699}, {"time": 0.25, "angle": 12.69, "curve": 0.313, "c3": 0.699}, - {"time": 0.4167, "angle": -15.12, "curve": 0.313, "c3": 0.699}, {"time": 0.6667, "angle": 1.29, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.8333, "angle": 19.35, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1} + "@leg-back-left": { + "translate": [ + {"curve": 0, "c2": 0.2, "c3": 0.695}, {"time": 0.1, "x": -0.42, "y": -4.72, "curve": 0, "c2": 0.3, "c3": 0.62}, {"time": 0.25, "curve": 0.313, "c4": 0.8}, + {"time": 0.3833, "x": -0.42, "y": -4.72, "curve": "stepped"}, {"time": 0.6333, "x": -0.42, "y": -4.72, "curve": 0, "c2": 0.2, "c3": 0.691}, {"time": 0.7667, "curve": 0.309, "c4": 0.8}, + {"time": 0.9, "x": -0.42, "y": -4.72, "curve": 0, "c2": 0.19, "c3": 0.695}, {"time": 1} ] }, - "leg-back-left-IK": { + "leg-front-right-IK": { "translate": [ - {"curve": "stepped"}, {"time": 0.0167, "x": -93.26, "y": 48.74}, {"time": 0.05, "x": -202.5, "y": 254.02}, {"time": 0.1, "x": 91.88, "y": 560.34, "curve": 0.313, "c3": 0.699}, - {"time": 0.25, "x": 236.84, "y": 611.48, "curve": 0.313, "c3": 0.699}, {"time": 0.4167, "x": 87.84, "y": 555.49, "curve": 0.313, "c3": 0.699}, {"time": 0.5833, "x": 186.18, "y": 586.78}, - {"time": 0.6667, "x": 77.94, "y": 549.13}, {"time": 0.7, "x": -231.86, "y": 221.08}, {"time": 0.75, "x": -168.84, "y": -46.99}, {"time": 0.7833, "x": -16.48, "y": -52.12}, - {"time": 0.8333} + {"time": 0.1, "curve": 0, "c2": 0.3, "c3": 0.62}, {"time": 0.2167, "x": -58.81, "y": 174.08, "curve": 0.257, "c3": 0.637, "c4": 0.43}, + {"time": 0.2833, "x": 10.68, "y": 136.08, "curve": 0.518, "c2": 0.35, "c4": 0.83}, {"time": 0.3833, "x": 11}, {"time": 0.6333, "x": -14.37, "curve": 0, "c2": 0.2, "c3": 0.691}, + {"time": 0.7333, "x": 26.13, "y": 111.42, "curve": 0.257, "c3": 0.63, "c4": 0.42}, {"time": 0.8, "x": -44.87, "y": 129.12, "curve": 0.503, "c2": 0.34, "c4": 0.83}, {"time": 0.9} ] }, "leg-front-left-IK": { "translate": [ - {"curve": "stepped"}, {"time": 0.0167, "x": -74.92, "y": 201.25}, {"time": 0.05, "x": 21.38, "y": 446.05}, {"time": 0.1, "x": 511.28, "y": 580.46, "curve": 0.313, "c3": 0.699}, - {"time": 0.25, "x": 517.43, "y": 602.17, "curve": 0.313, "c3": 0.699}, {"time": 0.4167, "x": 470.08, "y": 581.27, "curve": 0.313, "c3": 0.699}, - {"time": 0.5833, "x": 451.59, "y": 595.4, "curve": 0.375, "c2": 0.58, "c3": 0.742}, {"time": 0.6667, "x": 445.33, "y": 594.73}, {"time": 0.7, "x": 8.58, "y": 408.19}, - {"time": 0.75, "x": -93.16, "y": 70.64}, {"time": 0.7833, "x": -81.13, "y": 23.88}, {"time": 0.8333} + {"time": 0.1, "curve": 0, "c2": 0.3, "c3": 0.62}, {"time": 0.2167, "x": -73.46, "y": 138.38, "curve": 0.257, "c3": 0.637, "c4": 0.43}, + {"time": 0.2833, "x": -0.77, "y": 108.17, "curve": 0.518, "c2": 0.35, "c4": 0.83}, {"time": 0.3833, "x": 11}, {"time": 0.6333, "x": -14.37, "curve": 0, "c2": 0.2, "c3": 0.691}, + {"time": 0.7333, "x": 11.48, "y": 75.71, "curve": 0.257, "c3": 0.63, "c4": 0.42}, {"time": 0.8, "x": -56.77, "y": 100.13, "curve": 0.503, "c2": 0.34, "c4": 0.83}, {"time": 0.9} ] }, - "@pivot-center": { - "rotate": [ - {"time": 0.0167, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.1, "angle": -95, "curve": 0.313, "c3": 0.699}, {"time": 0.25, "angle": -105, "curve": 0.313, "c3": 0.699}, - {"time": 0.4167, "angle": -90, "curve": 0.313, "c3": 0.699}, {"time": 0.55, "angle": -100, "curve": 0.313, "c3": 0.699}, - {"time": 0.6667, "angle": -90, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.8333} - ], + "leg-back-left-IK": { "translate": [ - {"time": 0.1, "curve": 0.313, "c3": 0.699}, {"time": 0.25, "x": 1.68, "y": 38.2, "curve": 0.313, "c3": 0.699}, {"time": 0.4167, "x": -2.73, "y": -12.21, "curve": 0.313, "c3": 0.699}, - {"time": 0.55, "x": -0.47, "y": 13.65, "curve": 0.313, "c3": 0.699}, {"time": 0.6667, "x": -2.73, "y": -12.21, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.8333} + {"time": 0.1, "curve": 0, "c2": 0.3, "c3": 0.62}, {"time": 0.2, "x": -56.56, "y": 95.34, "curve": 0.257, "c3": 0.637, "c4": 0.43}, + {"time": 0.2667, "x": 21.01, "y": 67.87, "curve": 0.518, "c2": 0.35, "c4": 0.83}, {"time": 0.3833, "x": 0.85}, {"time": 0.6333, "x": -16.87, "curve": 0, "c2": 0.2, "c3": 0.691}, + {"time": 0.7167, "x": 21.01, "y": 67.87, "curve": 0.257, "c3": 0.63, "c4": 0.42}, {"time": 0.7833, "x": -41.39, "y": 75.95, "curve": 0.503, "c2": 0.34, "c4": 0.83}, {"time": 0.9} ] }, - "@pivot-main": { - "translate": [{"time": 0.6667, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.75, "y": 150, "curve": 0.315, "c4": 0.8}, {"time": 0.8333}], - "scale": [ - {"time": 0.1, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "y": 0.93, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "curve": "stepped"}, - {"time": 0.5667, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.65, "y": 0.7, "curve": 0.464, "c4": 0.7}, {"time": 0.7333, "curve": "stepped"}, - {"time": 0.8333, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.9167, "y": 0.98, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1} + "tail": { + "rotate": [ + {"curve": 0, "c2": 0.2, "c3": 0.695}, {"time": 0.1, "angle": 21.16, "curve": 0, "c2": 0.2, "c3": 0.695}, {"time": 0.25, "angle": -27.62, "curve": 0.317, "c4": 0.8}, + {"time": 0.3833, "angle": 17.89}, {"time": 0.6333, "angle": 23.46, "curve": 0, "c2": 0.2, "c3": 0.695}, {"time": 0.7667, "angle": -27.7, "curve": 0.317, "c4": 0.8}, + {"time": 0.9, "angle": 21.16, "curve": 0, "c2": 0.2, "c3": 0.695}, {"time": 1} ] }, - "@leg-front-right": {"translate": [{"time": 0.75}, {"time": 0.8333, "x": -2.35, "y": -26.66, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1}]} + "@shadow": { + "translate": [{"time": 0.1}, {"time": 0.3833, "x": 542.6}, {"time": 0.6333, "x": 603.73, "curve": 0, "c2": 0.1, "c3": 0.852}, {"time": 0.9}], + "scale": [ + {}, {"time": 0.1, "x": 1.08, "y": 1.08}, {"time": 0.25, "x": 0.9, "y": 0.9}, {"time": 0.3833, "x": 1.08, "y": 1.08}, {"time": 0.6333, "x": 1.1, "y": 1.1}, + {"time": 0.7833, "x": 0.9, "y": 0.9}, {"time": 0.9, "x": 1.08, "y": 1.08}, {"time": 1} + ] + } } }, - "3352800463": { - "slots": { - "eyes": {"attachment": [{"time": 0.0167, "name": "eyes-shut"}, {"time": 0.3, "name": "eyes-angry"}, {"time": 0.4833, "name": "eyes"}]}, - "mouth": {"attachment": [{"time": 0.0167, "name": "mouth-bite"}, {"time": 0.4833, "name": "mouth"}]} - }, + "3193680296": { "bones": { "@pivot-back": { "rotate": [ - {"curve": "stepped"}, {"time": 0.0167, "angle": 8}, {"time": 0.2333, "angle": 10, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "angle": -5, "curve": 0.315, "c4": 0.8}, - {"time": 0.4833, "angle": 5, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5833} + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "angle": 3.53, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "angle": -10.14, "curve": 0.315, "c4": 0.8}, + {"time": 0.5, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5833, "angle": 3.53, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.75, "angle": -10.14, "curve": 0.315, "c4": 0.8}, + {"time": 0.9167, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1.0833, "angle": 5.43}, {"time": 1.15, "angle": 3.94}, {"time": 1.2, "angle": 5.43}, {"time": 1.2333, "angle": 3.94}, + {"time": 1.2667, "angle": 5.43}, {"time": 1.3, "angle": 3.94}, {"time": 1.3333, "angle": 5.43}, {"time": 1.3667, "angle": 3.94}, {"time": 1.4, "angle": 5.43}, + {"time": 1.4333, "angle": 3.94}, {"time": 1.4667, "angle": 5.43}, {"time": 1.5, "angle": 3.94} ], "translate": [ - {"curve": "stepped"}, {"time": 0.0167, "x": 29.16, "y": 6.28}, {"time": 0.2667, "x": 18.48, "y": 18.85, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.3833, "x": -1.17, "y": 18.85, "curve": 0.315, "c4": 0.8}, {"time": 0.4833} + {"y": 44.46, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "y": 12.46, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "y": 209.26, "curve": 0.315, "c4": 0.8}, + {"time": 0.5, "y": 44.46, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5833, "y": 12.46, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.75, "y": 209.26, "curve": 0.315, "c4": 0.8}, + {"time": 0.9167, "y": 44.46} ] }, - "leg-front-right-IK": { - "translate": [ - {"time": 0.0167}, {"time": 0.2333, "x": -21.51, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "x": 6.83, "y": 84.78}, - {"time": 0.3833, "x": -2.72, "y": 58.18, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.45} + "@leg-front-right": { + "rotate": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "angle": -14.05, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "angle": 13.89, "curve": 0.315, "c4": 0.8}, + {"time": 0.5, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5833, "angle": -12.58, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.75, "angle": 13.89, "curve": 0.315, "c4": 0.8}, + {"time": 0.9167, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1.0833, "angle": -12.58} + ] + }, + "@leg-front-left": { + "rotate": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "angle": -14.05, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "angle": 13.89, "curve": 0.315, "c4": 0.8}, + {"time": 0.5, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5833, "angle": -12.58, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.75, "angle": 13.89, "curve": 0.315, "c4": 0.8}, + {"time": 0.9167, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1.0833, "angle": -12.58} + ] + }, + "@leg-back-left": { + "rotate": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "angle": -14.05, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "angle": 13.89, "curve": 0.315, "c4": 0.8}, + {"time": 0.5, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5833, "angle": -12.58, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.75, "angle": 13.89, "curve": 0.315, "c4": 0.8}, + {"time": 0.9167, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1.0833, "angle": -12.58} + ] + }, + "tail": { + "rotate": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "angle": 14.79, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "angle": -27.83, "curve": "stepped"}, + {"time": 0.3333, "angle": -27.83, "curve": 0.313, "c3": 0.691}, {"time": 0.5, "angle": 14.79, "curve": "stepped"}, {"time": 0.5833, "angle": 14.79, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.6667, "angle": -27.83, "curve": "stepped"}, {"time": 0.75, "angle": -27.83, "curve": 0.313, "c3": 0.691}, {"time": 0.9167, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 1.0833, "angle": 12.48, "curve": 0.313, "c3": 0.691}, {"time": 1.15, "angle": 9.69, "curve": 0.313, "c3": 0.691}, {"time": 1.2, "angle": 12.48, "curve": 0.161, "c3": 0.854}, + {"time": 1.2333, "angle": 9.69, "curve": 0.161, "c3": 0.854}, {"time": 1.2667, "angle": 12.48, "curve": 0.161, "c3": 0.854}, {"time": 1.3, "angle": 9.69, "curve": 0.161, "c3": 0.854}, + {"time": 1.3333, "angle": 12.48, "curve": 0.161, "c3": 0.854}, {"time": 1.3667, "angle": 9.69, "curve": 0.161, "c3": 0.854}, {"time": 1.4, "angle": 12.48, "curve": 0.161, "c3": 0.854}, + {"time": 1.4333, "angle": 9.69, "curve": 0.161, "c3": 0.854}, {"time": 1.4667, "angle": 12.48, "curve": 0.161, "c3": 0.854}, {"time": 1.5, "angle": 9.69} ] }, "@shadow": { - "translate": [ - {"curve": "stepped"}, {"time": 0.0167, "x": 33.22}, {"time": 0.2667, "x": 61.08, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3833, "x": 9.02, "curve": 0.315, "c4": 0.8}, - {"time": 0.4833} - ], "scale": [ - {"curve": "stepped"}, {"time": 0.0167, "x": 1.1, "y": 1.1, "curve": "stepped"}, {"time": 0.2667, "x": 1.1, "y": 1.1, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.3833, "x": 0.98, "y": 0.98, "curve": 0.315, "c4": 0.8}, {"time": 0.4833, "x": 1.1, "y": 1.1, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5833} + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": 1.1, "y": 1.1, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "x": 0.9, "y": 0.9, "curve": 0.315, "c4": 0.8}, + {"time": 0.5833, "x": 1.1, "y": 1.1, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.75, "x": 0.9, "y": 0.9, "curve": 0.315, "c4": 0.8}, + {"time": 0.9167, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1.0833, "x": 1.05, "y": 1.05}, {"time": 1.15}, {"time": 1.2, "x": 1.05, "y": 1.05}, {"time": 1.25}, + {"time": 1.3, "x": 1.05, "y": 1.05}, {"time": 1.35}, {"time": 1.4, "x": 1.05, "y": 1.05}, {"time": 1.45}, {"time": 1.5, "x": 1.05, "y": 1.05} + ] + } + } + }, + "3907351690": { + "bones": { + "@pivot-back": { + "rotate": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "angle": -5.76, "curve": 0.306, "c3": 0.695}, {"time": 0.6667, "angle": -6.67, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.8333, "angle": 2.85, "curve": 0.306, "c3": 0.695}, {"time": 1} + ], + "translate": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": -11.96, "y": -12.91, "curve": 0.306, "c3": 0.695}, + {"time": 0.6667, "x": -17.52, "y": -16.38, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.8333} ] }, "@leg-front-left": { "translate": [ - {"curve": "stepped"}, {"time": 0.0167, "x": 0.77, "y": 3.87}, {"time": 0.3667, "x": 1.05, "y": 9.15, "curve": 0.617, "c4": 0.6}, - {"time": 0.4833, "x": -1.09, "y": -14.69, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5833} + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": -20.02, "y": -2.36, "curve": "stepped"}, {"time": 0.6667, "x": -20.02, "y": -2.36, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.8333, "x": 5.31, "y": -7.32, "curve": 0.306, "c3": 0.695}, {"time": 1} ] }, "@leg-front-right": { "translate": [ - {"curve": "stepped"}, {"time": 0.0167, "x": 27.88, "y": -51.35}, {"time": 0.2333, "x": 31.13, "y": -45.76}, {"time": 0.45, "x": 0.18, "y": 4.24}, - {"time": 0.4833, "x": -2.72, "y": -33.58, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5833} + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": -36.67, "y": 20.01, "curve": 0.306, "c3": 0.695}, + {"time": 0.6667, "x": -44.17, "y": 20.3, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.8333, "x": -12.71, "y": -17.14, "curve": 0.306, "c3": 0.695}, {"time": 1} ] }, - "@pivot-main": { + "@leg-back-left": { "translate": [ - {"curve": "stepped"}, {"time": 0.0167, "x": 33.18}, {"time": 0.2667, "x": 61.52, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3833, "x": 20.27, "y": 27.91, "curve": 0.315, "c4": 0.8}, - {"time": 0.4833} + {"time": 0.1667, "curve": 0.306, "c3": 0.695}, {"time": 0.6667, "x": -4.62, "y": -2.21, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.8333, "x": -0.1, "y": -3.16, "curve": 0.306, "c3": 0.695}, {"time": 1} ] }, "tail": { "rotate": [ - {"curve": "stepped"}, {"time": 0.0167, "angle": -18.65}, {"time": 0.2333, "angle": -21.65, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.3333, "angle": -13.3, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.45, "angle": 12.04, "curve": 0.154, "c4": 0.9}, - {"time": 0.5167, "angle": -9.14, "curve": 0.161, "c3": 0.854}, {"time": 0.5833} + {"curve": 0, "c2": 0.3, "c3": 0.54}, {"time": 0.1667, "angle": -11.59, "curve": 0.306, "c3": 0.695}, {"time": 0.4167, "angle": 2.75, "curve": 0.306, "c3": 0.695}, + {"time": 0.6667, "angle": -13.32, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.8333, "angle": 15.71, "curve": 0.306, "c3": 0.695}, {"time": 1} ] }, - "leg-front-left-IK": { + "@shadow": { + "scale": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": 0.96, "y": 0.96}, {"time": 0.6667, "x": 0.94, "y": 0.94, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.8333, "x": 1.06, "y": 1.06, "curve": 0.306, "c3": 0.695}, {"time": 1} + ] + } + }, + "events": [{"time": 0.1667, "name": "hit-buff"}] + }, + "503738134": { + "bones": { + "@pivot-back": { + "rotate": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "angle": 3.5}, {"time": 0.6667, "angle": 4, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.8333, "angle": -1.98, "curve": 0.306, "c3": 0.695}, {"time": 1} + ], "translate": [ - {"time": 0.2333, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "x": 12.33, "y": 29.93}, {"time": 0.3833, "x": 13.61, "y": 28.01, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.45} + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "y": 2.9}, {"time": 0.6667, "y": 3.91, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.8333, "y": -2.14, "curve": 0.306, "c3": 0.695}, {"time": 1} ] }, - "leg-back-left-IK": { + "@leg-front-right": { "translate": [ - {"curve": "stepped"}, {"time": 0.0167, "x": 50.74, "y": 0.9, "curve": "stepped"}, {"time": 0.2, "x": 50.74, "y": 0.9, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.25, "x": 12.5, "y": 6.45, "curve": 0, "c2": 0.8, "c3": 0.15}, {"time": 0.3667, "x": 5.47, "y": 26.12, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.4833} + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": -0.92, "y": -19.87}, {"time": 0.6667, "x": -1.14, "y": -21.42, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.8333, "x": -0.43, "y": 9.97, "curve": 0.306, "c3": 0.695}, {"time": 1} ] }, - "@leg-back-left": { + "@leg-front-left": { "translate": [ - {"curve": "stepped"}, {"time": 0.0167, "x": 18.74, "y": 14.65, "curve": "stepped"}, {"time": 0.1667, "x": 18.74, "y": 14.65, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.4833} + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": 7.87, "y": -5.37}, {"time": 0.6667, "x": 9.12, "y": -5.44, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.8333, "x": -0.16, "y": 3.89, "curve": 0.306, "c3": 0.695}, {"time": 1} + ] + }, + "tail": { + "rotate": [ + {"curve": 0, "c2": 0.3, "c3": 0.54}, {"time": 0.1667, "angle": -17.97, "curve": 0.306, "c3": 0.695}, {"time": 0.4167, "angle": -9.96, "curve": 0.306, "c3": 0.695}, + {"time": 0.6667, "angle": -19.79, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.8333, "angle": 6.14, "curve": 0.306, "c3": 0.695}, {"time": 1} ] } - } - }, - "3911401836": { - "slots": { - "eyes": {"attachment": [{"time": 0.0167, "name": "eyes-angry"}, {"time": 0.25, "name": "eyes-shut"}, {"time": 0.3, "name": "eyes-angry"}, {"time": 0.4333, "name": "eyes"}]}, - "mouth": {"attachment": [{"time": 0.0167, "name": "mouth-bite"}, {"time": 0.3, "name": "mouth-open"}, {"time": 0.4333, "name": "mouth"}]} }, + "events": [{"time": 0.1667, "name": "hit-buff"}] + }, + "3929030741": { "bones": { "@pivot-back": { "rotate": [ @@ -32712,12 +40837,36 @@ {"curve": "stepped"}, {"time": 0.0167, "x": 18.74, "y": 14.65, "curve": "stepped"}, {"time": 0.1667, "x": 18.74, "y": 14.65, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.4833} ] }, + "@leg-front-left": { + "translate": [ + {"curve": "stepped"}, {"time": 0.0167, "x": -0.45, "y": -3.93}, {"time": 0.2333, "x": -0.82, "y": -2.61}, {"time": 0.3333, "x": -5.6, "y": -0.89, "curve": 0.617, "c4": 0.6}, + {"time": 0.45, "x": -1.09, "y": -14.69, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5833} + ] + }, + "@leg-front-right": { + "translate": [ + {"time": 0.0167}, {"time": 0.3333, "x": -7.53, "y": 2.3, "curve": 0, "c2": 0.1, "c3": 0.853}, {"time": 0.45, "x": 0.15, "y": -4.26, "curve": 0.159, "c3": 0.853}, + {"time": 0.4833, "x": -2.34, "y": -28.14, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5833} + ] + }, "@pivot-main": { "translate": [ {"curve": "stepped"}, {"time": 0.0167, "x": 33.18}, {"time": 0.2667, "x": 61.52, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3833, "x": 20.27, "y": 27.91, "curve": 0.315, "c4": 0.8}, {"time": 0.4833} ] }, + "leg-front-right-IK": { + "translate": [ + {"time": 0.2333, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "x": 22.26, "y": 54.13}, {"time": 0.3833, "x": 28.04, "y": 49.32, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.45} + ] + }, + "leg-front-left-IK": { + "translate": [ + {"curve": "stepped"}, {"time": 0.0167, "x": 38.52}, {"time": 0.2333, "x": 38.87, "curve": 0, "c2": 0.3, "c3": 0.54}, {"time": 0.3333, "x": 26.12, "y": 38.71}, + {"time": 0.3833, "x": 12.33, "y": 29.93, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.45} + ] + }, "@shadow": { "translate": [ {"curve": "stepped"}, {"time": 0.0167, "x": 33.22}, {"time": 0.2667, "x": 61.08, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3833, "x": 9.02, "curve": 0.315, "c4": 0.8}, @@ -32734,38 +40883,10 @@ {"time": 0.3167, "angle": -20.71, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.45, "angle": 25.83, "curve": 0.154, "c4": 0.9}, {"time": 0.5167, "angle": -14.3, "curve": 0.161, "c3": 0.854}, {"time": 0.5833} ] - }, - "@leg-front-right": { - "translate": [ - {"curve": "stepped"}, {"time": 0.0167, "x": 27.88, "y": -51.35}, {"time": 0.2333, "x": 31.13, "y": -45.76}, {"time": 0.45, "x": 0.18, "y": 4.24}, - {"time": 0.4833, "x": -2.72, "y": -33.58, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5833} - ] - }, - "@leg-front-left": { - "translate": [ - {"curve": "stepped"}, {"time": 0.0167, "x": 0.77, "y": 3.87}, {"time": 0.3667, "x": 1.05, "y": 9.15, "curve": 0.617, "c4": 0.6}, - {"time": 0.4833, "x": -1.09, "y": -14.69, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5833} - ] - }, - "leg-front-right-IK": { - "translate": [ - {"time": 0.0167}, {"time": 0.2333, "x": -21.51, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "x": 6.83, "y": 84.78}, - {"time": 0.3833, "x": -2.72, "y": 58.18, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.45} - ] - }, - "leg-front-left-IK": { - "translate": [ - {"time": 0.2333, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "x": 12.33, "y": 29.93}, {"time": 0.3833, "x": 13.61, "y": 28.01, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.45} - ] } } }, - "2824479785": { - "slots": { - "eyes": {"attachment": [{"time": 0.05, "name": "eyes-angry"}, {"time": 0.7, "name": "eyes"}]}, - "mouth": {"attachment": [{"time": 0.05, "name": "mouth-bite"}, {"time": 0.2833, "name": "mouth-open"}, {"time": 0.4667, "name": "mouth-bite"}, {"time": 0.7, "name": "mouth"}]} - }, + "672810168": { "bones": { "@pivot-back": { "rotate": [ @@ -32782,35 +40903,35 @@ "@pivot-main": {"translate": [{"time": 0.5833, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.6667, "y": 45.22, "curve": 0.315, "c4": 0.8}, {"time": 0.75}]}, "@leg-front-left": { "translate": [ - {"curve": 0, "c2": 0.4, "c3": 0.383}, {"time": 0.25, "x": -0.37, "y": -3.19, "curve": "stepped"}, - {"time": 0.5833, "x": -0.37, "y": -3.19, "curve": 0, "c2": 0.17, "c3": 0.45, "c4": 0.61}, {"time": 0.65, "x": -0.39, "y": 5.91, "curve": 0.345, "c2": 0.53, "c3": 0.751}, {"time": 0.75} + {"curve": 0, "c2": 0.4, "c3": 0.383}, {"time": 0.25, "x": -0.72, "y": -6.78}, {"time": 0.5833, "x": -1.48, "y": -14.61, "curve": 0, "c2": 0.17, "c3": 0.45, "c4": 0.61}, + {"time": 0.65, "x": -0.39, "y": 5.91, "curve": 0.345, "c2": 0.53, "c3": 0.751}, {"time": 0.75} ] }, "@leg-front-right": { "translate": [ - {"curve": 0.617, "c4": 0.6}, {"time": 0.25, "x": -5.35, "y": -53.74}, {"time": 0.5833, "x": -2.3, "y": -22.53, "curve": 0, "c2": 0.17, "c3": 0.45, "c4": 0.61}, - {"time": 0.65, "x": -0.83, "y": 1.57, "curve": 0.345, "c2": 0.53, "c3": 0.751}, {"time": 0.75} + {"curve": 0, "c2": 0.39, "c3": 0.387}, {"time": 0.25, "x": -2.88, "y": -28.54, "curve": "stepped"}, + {"time": 0.5833, "x": -2.88, "y": -28.54, "curve": 0, "c2": 0.17, "c3": 0.45, "c4": 0.61}, {"time": 0.65, "x": -0.83, "y": 1.57, "curve": 0.345, "c2": 0.53, "c3": 0.751}, {"time": 0.75} ] }, "leg-front-left-IK": { "translate": [ - {"curve": 0.462, "c3": 0.543}, {"time": 0.25, "x": 61.73, "curve": 0.702, "c4": 0.2}, {"time": 0.2833, "x": -43.29, "y": 59.07}, - {"time": 0.4167, "x": -61.19, "y": 52.81, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5, "x": -191.61, "curve": "stepped"}, - {"time": 0.5833, "x": -191.61, "curve": 0, "c2": 0.17, "c3": 0.45, "c4": 0.61}, {"time": 0.65, "x": -105.91, "y": -2.82, "curve": 0.345, "c2": 0.53, "c3": 0.751}, {"time": 0.75} + {"curve": 0, "c2": 0.39, "c3": 0.387}, {"time": 0.25, "x": 19.12, "curve": 0.702, "c4": 0.2}, {"time": 0.2833, "x": -43.29, "y": 59.07}, + {"time": 0.4167, "x": -61.19, "y": 52.81, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5, "x": -184.33, "y": 7.89, "curve": "stepped"}, + {"time": 0.5833, "x": -184.33, "y": 7.89, "curve": 0, "c2": 0.17, "c3": 0.45, "c4": 0.61}, {"time": 0.65, "x": -105.91, "y": -2.82, "curve": 0.345, "c2": 0.53, "c3": 0.751}, + {"time": 0.75} ] }, "leg-front-right-IK": { "translate": [ - {"curve": 0.617, "c4": 0.6}, {"time": 0.25, "x": 73.82, "curve": 0.702, "c4": 0.2}, {"time": 0.2833, "x": -27.95, "y": 28.32}, - {"time": 0.4167, "x": -40.48, "y": 34.59, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5, "x": -191.61, "curve": "stepped"}, - {"time": 0.5833, "x": -191.61, "curve": 0, "c2": 0.17, "c3": 0.45, "c4": 0.61}, {"time": 0.65, "x": -103, "y": 4.15, "curve": 0.345, "c2": 0.53, "c3": 0.751}, {"time": 0.75} + {"time": 0.25, "curve": 0.702, "c4": 0.2}, {"time": 0.2833, "x": -27.95, "y": 28.32}, {"time": 0.4167, "x": -40.48, "y": 34.59, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.5, "x": -191.61, "curve": "stepped"}, {"time": 0.5833, "x": -191.61, "curve": 0, "c2": 0.17, "c3": 0.45, "c4": 0.61}, + {"time": 0.65, "x": -103, "y": 4.15, "curve": 0.345, "c2": 0.53, "c3": 0.751}, {"time": 0.75} ] }, "leg-back-left-IK": { "translate": [ - {"curve": 0.306, "c3": 0.695}, {"time": 0.25, "x": 44.44, "curve": 0.25, "c4": 0.2}, {"time": 0.2833, "x": -70.51, "y": 98.54}, - {"time": 0.4167, "x": -70.51, "y": 101.95, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5, "x": -197.17, "curve": "stepped"}, - {"time": 0.5833, "x": -197.17, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.75} + {"time": 0.2667, "curve": 0.461, "c4": 0.4}, {"time": 0.2833, "x": -70.51, "y": 98.54}, {"time": 0.4167, "x": -70.51, "y": 101.95, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.5, "x": -189.32, "curve": "stepped"}, {"time": 0.5833, "x": -189.32, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.75} ] }, "@pivot-center": { @@ -32834,15 +40955,12 @@ {"curve": 0, "c2": 0.4, "c3": 0.383}, {"time": 0.25, "x": 1.08, "y": 1.08, "curve": "stepped"}, {"time": 0.5, "x": 1.08, "y": 1.08, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5833, "x": 1.12, "y": 1.12, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.6667, "x": 0.94, "y": 0.94, "curve": 0.315, "c4": 0.8}, {"time": 0.75} ] - } + }, + "@leg-back-left": {"translate": [{"curve": 0, "c2": 0.39, "c3": 0.387}, {"time": 0.25, "x": -7.28, "y": 3.82}]} }, "events": [{"time": 0.2167, "name": "start-attack"}, {"time": 0.2833, "name": "hit"}] }, - "137987643": { - "slots": { - "eyes": {"attachment": [{"time": 0.1333, "name": "eyes-angry"}, {"time": 0.6667, "name": "eyes"}]}, - "mouth": {"attachment": [{"time": 0.1333, "name": "mouth-bite"}, {"time": 0.2667, "name": "mouth-open"}, {"time": 0.4167, "name": "mouth-bite"}, {"time": 0.6667, "name": "mouth"}]} - }, + "103880736": { "bones": { "@pivot-back": { "rotate": [ @@ -32856,36 +40974,37 @@ }, "leg-back-left-IK": { "translate": [ - {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.1333, "x": 80.9, "curve": 0.161, "c3": 0.854}, {"time": 0.25, "x": 49.4}, - {"time": 0.3333, "x": -52.84, "y": 44.64, "curve": 0.315, "c4": 0.8}, {"time": 0.4167, "x": -131.67, "curve": "stepped"}, {"time": 0.5833, "x": -131.67}, {"time": 0.75} + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.1167, "x": 93.98, "curve": 0.161, "c3": 0.854}, {"time": 0.25, "x": 67.02, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.3333, "x": -65.1, "y": -1.32, "curve": 0.315, "c4": 0.8}, {"time": 0.4167, "x": -131.67, "curve": "stepped"}, {"time": 0.5833, "x": -131.67, "curve": 0.159, "c4": 0.9}, + {"time": 0.75} ] }, "leg-front-right-IK": { "translate": [ - {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 30.89, "y": 11.74, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "x": 42.9, "curve": 0, "c2": 0.3, "c3": 0.544}, - {"time": 0.3667, "x": -61.28, "y": 38.08, "curve": 0.161, "c4": 0.85}, {"time": 0.4167, "x": -153.64, "curve": "stepped"}, {"time": 0.5833, "x": -153.64, "curve": 0.154, "c4": 0.9}, + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 21.56, "y": 4.31, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.25, "x": 42.9, "curve": 0, "c2": 0.3, "c3": 0.544}, + {"time": 0.3667, "x": -104.26, "y": 42.61, "curve": 0.161, "c4": 0.85}, {"time": 0.4167, "x": -153.64, "curve": "stepped"}, {"time": 0.5833, "x": -153.64, "curve": 0.154, "c4": 0.9}, {"time": 0.7, "x": 13.43, "curve": 0.161, "c3": 0.854}, {"time": 0.75} ] }, "leg-front-left-IK": { "translate": [ - {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 65.04, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "x": 75.35, "curve": 0, "c2": 0.3, "c3": 0.544}, - {"time": 0.3667, "x": -62.49, "y": 8.75, "curve": 0.161, "c4": 0.85}, {"time": 0.4167, "x": -141.78, "curve": "stepped"}, {"time": 0.5833, "x": -141.78, "curve": 0.159, "c4": 0.9}, + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 43.11, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "x": 48.71, "y": -1.66, "curve": 0, "c2": 0.3, "c3": 0.544}, + {"time": 0.3667, "x": -87.39, "y": 18.71, "curve": 0.161, "c4": 0.85}, {"time": 0.4167, "x": -150.32, "y": 0.83}, {"time": 0.5833, "x": -142.85, "curve": 0.154, "c4": 0.9}, {"time": 0.7, "x": 13.43, "curve": 0.161, "c3": 0.854}, {"time": 0.75} ] }, "@leg-front-left": { "translate": [ - {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": -0.15, "y": 1.81, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.25, "x": -0.94, "y": -15.09, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.4167, "x": -18.05, "y": -7.89, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.5833, "x": -15.37, "y": -13.49, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.75} + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": -0.28, "y": 3.31, "curve": 0, "c2": 0.3, "c3": 0.544}, + {"time": 0.25, "x": -0.62, "y": -3.21, "curve": 0, "c2": 0.25, "c3": 0.457, "c4": 0.73}, {"time": 0.3667, "x": -15.24, "y": -11.32, "curve": 0.325, "c2": 0.6, "c3": 0.672}, + {"time": 0.4167, "x": -17.97, "y": -3.57, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.5833, "x": -18.47, "y": -10.19, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.75} ] }, "@leg-front-right": { "translate": [ - {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 4.31, "y": 11.86, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.25, "x": -10.19, "y": -4.67, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.4167, "x": -10.43, "y": -17.77, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.5833, "x": -11.41, "y": -27.57, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.75} + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 3.63, "y": 19.84, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.25, "x": -10.53, "y": -16.98, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.4167, "x": -10.44, "y": -18.31, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.5833, "x": -10.92, "y": -30.23, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.75} ] }, "@pivot-main": { @@ -32896,8 +41015,9 @@ }, "@leg-back-left": { "translate": [ - {"time": 0.0833, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "x": -0.35, "y": -13.05, "curve": "stepped"}, {"time": 0.3333, "x": -0.35, "y": -13.05}, - {"time": 0.5833, "x": -0.47, "y": -16.1, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.75} + {"time": 0.1167, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "x": -0.25, "y": -9.22, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.3333, "x": -0.44, "y": 4.57, "curve": 0.306, "c4": 0.8}, {"time": 0.4167, "x": -0.58, "y": -9.21}, + {"time": 0.5833, "x": -0.15, "y": -9.98, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.75} ] }, "tail": { @@ -32922,16 +41042,14 @@ }, "events": [{"time": 0.25, "name": "start-attack"}, {"time": 0.4167, "name": "hit"}] }, - "1873246458": { + "3245081493": { "slots": { - "eyes": {"attachment": [{"time": 0.0833, "name": "eyes-shut"}, {"time": 0.1667, "name": "eyes-angry"}, {"time": 0.9833, "name": "eyes-shut"}, {"time": 1.0833, "name": "eyes"}]}, "leg-front-left": { "attachment": [ - {"time": 0.5, "name": "sumo-leg-front-left-stretch"}, {"time": 0.6333, "name": "sumo-leg-front-left"}, {"time": 0.7667, "name": "sumo-leg-front-left-stretch"}, - {"time": 0.9, "name": "sumo-leg-front-left"} + {"time": 0.5, "name": "summer-leg-front-left-stretch"}, {"time": 0.6333, "name": "summer-leg-front-left"}, {"time": 0.7667, "name": "summer-leg-front-left-stretch"}, + {"time": 0.9, "name": "summer-leg-front-left"} ] - }, - "mouth": {"attachment": [{"time": 0.0833, "name": "mouth-bite"}, {"time": 0.3667, "name": "mouth-open"}, {"time": 0.9833, "name": "mouth-bite"}, {"time": 1.0833, "name": "mouth"}]} + } }, "bones": { "@pivot-back": { @@ -32951,12 +41069,12 @@ }, "@leg-front-right": { "translate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.2167, "x": -18.54, "y": -11.57}, {"time": 0.25, "x": -23.07, "y": 10.08, "curve": 0, "c2": 0.4, "c3": 0.383}, - {"time": 0.3333, "x": 47.55, "y": -24.33, "curve": 0.779, "c4": 0.4}, {"time": 0.3667, "x": 22.95, "y": 2.68}, {"time": 0.4667, "x": 29.92, "y": -4.24, "curve": 0.779, "c4": 0.4}, - {"time": 0.5, "x": 30.08, "y": -11.86, "curve": "stepped"}, {"time": 0.6, "x": 30.08, "y": -11.86, "curve": 0.774, "c4": 0.4}, {"time": 0.6333, "x": 22.95, "y": 2.68}, - {"time": 0.7333, "x": 29.92, "y": -4.24, "curve": 0.779, "c4": 0.4}, {"time": 0.7667, "x": 22.95, "y": 2.68, "curve": "stepped"}, + {"curve": 0, "c2": 0.17, "c3": 0.521, "c4": 0.69}, {"time": 0.15, "x": -16.23, "y": -19.18, "curve": 0.377, "c2": 0.59, "c3": 0.739}, {"time": 0.2167, "x": -18.54, "y": -11.57}, + {"time": 0.25, "x": -22.65, "y": 8.05, "curve": 0, "c2": 0.4, "c3": 0.383}, {"time": 0.3333, "x": 29.92, "y": -4.24, "curve": 0.779, "c4": 0.4}, {"time": 0.3667, "x": 22.95, "y": 2.68}, + {"time": 0.4667, "x": 29.92, "y": -4.24, "curve": 0.779, "c4": 0.4}, {"time": 0.5, "x": 22.95, "y": 2.68}, {"time": 0.6, "x": 29.92, "y": -4.24, "curve": 0.779, "c4": 0.4}, + {"time": 0.6333, "x": 22.95, "y": 2.68}, {"time": 0.7333, "x": 29.92, "y": -4.24, "curve": 0.779, "c4": 0.4}, {"time": 0.7667, "x": 22.95, "y": 2.68, "curve": "stepped"}, {"time": 0.9167, "x": 22.95, "y": 2.68, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.95, "curve": 0.464, "c4": 0.7}, {"time": 0.9833, "x": -1.45, "y": -24.11}, - {"time": 1.05, "x": 1.91, "y": -42.48, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1.0833} + {"time": 1.05, "x": -3.72, "y": -46.34, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1.0833} ], "scale": [ {"time": 0.2167}, {"time": 0.25, "x": 1.5}, {"time": 0.3333, "curve": 0.779, "c4": 0.4}, {"time": 0.3667, "x": 1.5}, {"time": 0.4667, "x": 1.51, "curve": 0.157, "c2": 0.33, "c3": 0.727}, @@ -32977,8 +41095,7 @@ }, "@leg-back-left": { "translate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.2167, "x": -0.11, "y": -2.73, "curve": 0, "c2": 0.1, "c3": 0.853}, {"time": 0.3333, "x": 1.43, "y": -8.39, "curve": "stepped"}, - {"time": 0.75, "x": 1.43, "y": -8.39, "curve": 0, "c2": 0.1, "c3": 0.853}, {"time": 0.9833, "x": -0.11, "y": -2.73, "curve": 0, "c2": 0.1, "c3": 0.85}, + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.2167, "x": -0.11, "y": -2.73, "curve": "stepped"}, {"time": 0.9833, "x": -0.11, "y": -2.73, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 1.05, "x": -0.46, "y": -6.19, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1.25} ] }, @@ -32992,28 +41109,28 @@ }, "leg-front-right-IK": { "translate": [ - {"time": 0.15, "curve": 0, "c2": 0.18, "c3": 0.416, "c4": 0.58}, {"time": 0.2167, "x": 40.05, "y": 75.1}, {"time": 0.25, "x": 6.78, "y": 74.83, "curve": 0, "c2": 0.4, "c3": 0.383}, - {"time": 0.3333, "x": -193.39, "y": 304.19, "curve": 0.779, "c4": 0.4}, {"time": 0.3667, "x": -21.84, "y": -45.29}, {"time": 0.4667, "x": 11.75, "y": -48.86, "curve": 0.779, "c4": 0.4}, - {"time": 0.5, "x": -180.19, "y": 260.8}, {"time": 0.6, "x": -183.12, "y": 295.33, "curve": 0.774, "c4": 0.4}, {"time": 0.6333, "x": 7.37, "y": -47.08}, - {"time": 0.7333, "x": 28.44, "y": -46.48, "curve": 0.779, "c4": 0.4}, {"time": 0.7667, "x": -165.57, "y": 223.23}, {"time": 0.8667, "x": -174.41, "y": 246.27, "curve": 0.779, "c4": 0.4}, - {"time": 0.9833, "x": 1.3, "y": -4.56}, {"time": 1.05, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 1.0833, "x": -14.68, "y": -19.57, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1.25} + {"time": 0.15, "curve": 0, "c2": 0.18, "c3": 0.416, "c4": 0.58}, {"time": 0.2167, "x": 19.11, "y": 67.51}, {"time": 0.25, "x": 9.04, "y": 75.61, "curve": 0, "c2": 0.4, "c3": 0.383}, + {"time": 0.3333, "x": -160.66, "y": 272.78, "curve": 0.779, "c4": 0.4}, {"time": 0.3667, "x": -57.38, "y": -16.06}, {"time": 0.4667, "x": -10.1, "y": -16.06, "curve": 0.779, "c4": 0.4}, + {"time": 0.5, "x": -151.82, "y": 190.82}, {"time": 0.6, "x": -168.95, "y": 277.96, "curve": 0.779, "c4": 0.4}, {"time": 0.6333, "x": -54.28, "y": -17.1}, + {"time": 0.7333, "x": -12.17, "y": -17.1, "curve": 0.779, "c4": 0.4}, {"time": 0.7667, "x": -151.82, "y": 190.82}, {"time": 0.8667, "x": -165.84, "y": 271.75, "curve": 0.779, "c4": 0.4}, + {"time": 0.9833, "curve": "stepped"}, {"time": 1.05, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 1.0833, "x": -14.68, "y": -19.57, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1.25} ] }, "leg-front-left-IK": { "translate": [ {"time": 0.15, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "x": -54.88, "y": 124.95, "curve": 0.779, "c4": 0.4}, {"time": 0.3667, "x": 37.97, "y": 122.64}, - {"time": 0.4667, "x": 48.96, "y": 138.43, "curve": 0.779, "c4": 0.4}, {"time": 0.5, "x": -227.16, "y": 232.48}, {"time": 0.6, "x": -213.15, "y": 265.57, "curve": 0.779, "c4": 0.4}, - {"time": 0.6333, "x": 37.97, "y": 122.64}, {"time": 0.7333, "x": 58.73, "y": 130.92, "curve": 0.779, "c4": 0.4}, {"time": 0.7667, "x": -229.42, "y": 225.72}, - {"time": 0.8667, "x": -218.4, "y": 260.32, "curve": 0.617, "c4": 0.6}, {"time": 0.9833, "curve": "stepped"}, {"time": 1.05, "curve": 0, "c2": 0.1, "c3": 0.85}, + {"time": 0.4667, "x": 48.96, "y": 138.43, "curve": 0.779, "c4": 0.4}, {"time": 0.5, "x": -142.3, "y": 180.66}, {"time": 0.6, "x": -134.29, "y": 191.98, "curve": 0.779, "c4": 0.4}, + {"time": 0.6333, "x": 37.97, "y": 122.64}, {"time": 0.7333, "x": 48.96, "y": 138.43, "curve": 0.779, "c4": 0.4}, {"time": 0.7667, "x": -142.3, "y": 180.66}, + {"time": 0.8667, "x": -134.29, "y": 191.98, "curve": 0.617, "c4": 0.6}, {"time": 0.9833, "curve": "stepped"}, {"time": 1.05, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 1.0833, "x": -7.79, "y": -10.12, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1.25} ] }, "leg-back-left-IK": { "translate": [ - {"time": 0.0833, "curve": 0.332, "c3": 0.682, "c4": 0.41}, {"time": 0.2167, "x": 6.07, "y": 22.48, "curve": 0, "c2": 0.4, "c3": 0.383}, - {"time": 0.3333, "x": -66.23, "y": 98.46, "curve": 0.779, "c4": 0.4}, {"time": 0.3667, "x": 32.46, "y": 177.26}, {"time": 0.4667, "x": 42.56, "y": 194, "curve": 0.779, "c4": 0.4}, - {"time": 0.5, "x": -143.31, "y": 25.48}, {"time": 0.6, "x": -161.53, "y": 28.25, "curve": 0.779, "c4": 0.4}, {"time": 0.6333, "x": 39.84, "y": 189.07}, - {"time": 0.7333, "x": 43.3, "y": 201.38, "curve": 0.779, "c4": 0.4}, {"time": 0.7667, "x": -147, "y": 26.22}, {"time": 0.8667, "x": -162.73, "y": 28.16, "curve": 0.779, "c4": 0.4}, + {"time": 0.0833, "curve": 0.332, "c3": 0.682, "c4": 0.41}, {"time": 0.2167, "x": 21.57, "y": 4.03, "curve": 0, "c2": 0.4, "c3": 0.383}, + {"time": 0.3333, "x": -50.73, "y": 91.08, "curve": 0.779, "c4": 0.4}, {"time": 0.3667, "x": 19.18, "y": 184.64}, {"time": 0.4667, "x": 25.59, "y": 197.69, "curve": 0.779, "c4": 0.4}, + {"time": 0.5, "x": -145.53, "y": 47.62}, {"time": 0.6, "x": -152.68, "y": 53.34, "curve": 0.779, "c4": 0.4}, {"time": 0.6333, "x": 19.18, "y": 184.64}, + {"time": 0.7333, "x": 25.59, "y": 197.69, "curve": 0.779, "c4": 0.4}, {"time": 0.7667, "x": -145.53, "y": 47.62}, {"time": 0.8667, "x": -153.88, "y": 53.26, "curve": 0.779, "c4": 0.4}, {"time": 0.9833, "curve": "stepped"}, {"time": 1.05, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 1.1667, "x": 24.35, "y": 13.92, "curve": 0.154, "c4": 0.9}, {"time": 1.25} ] }, @@ -33042,8 +41159,7 @@ }, "events": [{"time": 0.3333, "name": "start-attack"}, {"time": 0.3667, "name": "hit"}, {"time": 0.5, "name": "hit"}, {"time": 0.6333, "name": "hit"}, {"time": 0.7667, "name": "hit"}] }, - "3518390074": { - "slots": {"eyes": {"attachment": [{"time": 1, "name": "eyes-shut"}, {"time": 1.0833, "name": "eyes"}]}}, + "2865608434": { "bones": { "@pivot-back": { "rotate": [ @@ -33058,28 +41174,28 @@ }, "@leg-front-right": { "translate": [ - {"curve": 0.313, "c3": 0.699}, {"time": 0.3333, "x": -0.08, "y": -22.35, "curve": 0.313, "c3": 0.699}, {"time": 0.6667, "x": -0.04, "y": 2.46, "curve": 0.313, "c3": 0.699}, - {"time": 1, "x": -0.08, "y": -22.35, "curve": 0.313, "c3": 0.699}, {"time": 1.3333} + {"curve": 0.313, "c3": 0.699}, {"time": 0.3333, "x": 0.02, "y": -16.89, "curve": 0.313, "c3": 0.699}, {"time": 0.6667, "x": -0.04, "y": 2.46, "curve": 0.313, "c3": 0.699}, + {"time": 1, "x": -0.02, "y": -18.9, "curve": 0.313, "c3": 0.699}, {"time": 1.3333} ] }, "@leg-front-left": { "translate": [ - {"curve": 0.313, "c3": 0.699}, {"time": 0.3333, "x": 5.41, "y": -6.53, "curve": 0.313, "c3": 0.699}, {"time": 0.6667, "x": -0.03, "y": 1.81, "curve": 0.313, "c3": 0.699}, - {"time": 1, "x": 4.51, "y": -7.88, "curve": 0.313, "c3": 0.699}, {"time": 1.3333} + {"curve": 0.313, "c3": 0.699}, {"time": 0.3333, "x": 0.22, "y": -5.13, "curve": 0.313, "c3": 0.699}, {"time": 0.6667, "x": -0.03, "y": 1.81, "curve": 0.313, "c3": 0.699}, + {"time": 1, "x": 0.2, "y": -7.06, "curve": 0.313, "c3": 0.699}, {"time": 1.3333} ], "scale": [ - {"curve": 0.313, "c3": 0.699}, {"time": 0.3333, "x": 0.92, "curve": 0.313, "c3": 0.699}, {"time": 0.6667, "curve": 0.313, "c3": 0.699}, - {"time": 1, "x": 0.92, "curve": 0.313, "c3": 0.699}, {"time": 1.3333} + {"curve": 0.313, "c3": 0.699}, {"time": 0.3333, "x": 0.905, "curve": 0.313, "c3": 0.699}, {"time": 0.6667, "curve": 0.313, "c3": 0.699}, + {"time": 1, "x": 0.905, "curve": 0.313, "c3": 0.699}, {"time": 1.3333} ] }, "@leg-back-left": { "translate": [ - {"curve": 0.313, "c3": 0.699}, {"time": 0.3333, "x": 3.28, "y": -4.61, "curve": 0.313, "c3": 0.699}, {"time": 0.6667, "x": -0.03, "y": 1.69, "curve": 0.313, "c3": 0.699}, - {"time": 1, "x": 3.25, "y": -6.37, "curve": 0.313, "c3": 0.699}, {"time": 1.3333} + {"curve": 0.313, "c3": 0.699}, {"time": 0.3333, "x": 0.22, "y": -4.11, "curve": 0.313, "c3": 0.699}, {"time": 0.6667, "x": -0.03, "y": 1.69, "curve": 0.313, "c3": 0.699}, + {"time": 1, "x": 0.2, "y": -5.68, "curve": 0.313, "c3": 0.699}, {"time": 1.3333} ], "scale": [ - {"curve": 0.313, "c3": 0.699}, {"time": 0.3333, "x": 0.952, "curve": 0.313, "c3": 0.699}, {"time": 0.6667, "curve": 0.313, "c3": 0.699}, - {"time": 1, "x": 0.951, "curve": 0.313, "c3": 0.699}, {"time": 1.3333} + {"curve": 0.313, "c3": 0.699}, {"time": 0.3333, "x": 0.943, "curve": 0.313, "c3": 0.699}, {"time": 0.6667, "curve": 0.313, "c3": 0.699}, + {"time": 1, "x": 0.943, "curve": 0.313, "c3": 0.699}, {"time": 1.3333} ] }, "@pivot-main": { @@ -33089,13 +41205,13 @@ ] }, "tail": { - "rotate": [{"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "angle": 4.98, "curve": 0.313, "c3": 0.699}, {"time": 1, "angle": -9.69, "curve": 0.313, "c3": 0.699}, {"time": 1.3333}] + "rotate": [{"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "angle": 4.54, "curve": 0.313, "c3": 0.699}, {"time": 1, "angle": -9.06, "curve": 0.313, "c3": 0.699}, {"time": 1.3333}] }, "back": { - "rotate": [{"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "angle": -4.48, "curve": 0.313, "c3": 0.699}, {"time": 1, "angle": 4.37, "curve": 0.313, "c3": 0.699}, {"time": 1.3333}] + "rotate": [{"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "angle": -4.27, "curve": 0.313, "c3": 0.699}, {"time": 1, "angle": 2.83, "curve": 0.313, "c3": 0.699}, {"time": 1.3333}] }, - "ear-right": {"rotate": [{"curve": 0.461, "c3": 0.543}, {"time": 0.6667, "angle": -1.95, "curve": 0.461, "c3": 0.543}, {"time": 1.3333}]}, - "ear-left": {"rotate": [{"curve": 0.461, "c3": 0.543}, {"time": 0.6667, "angle": -1.95, "curve": 0.461, "c3": 0.543}, {"time": 1.3333}]}, + "ear-right": {"rotate": [{"curve": 0.461, "c3": 0.543}, {"time": 0.6667, "angle": -3.91, "curve": 0.461, "c3": 0.543}, {"time": 1.3333}]}, + "ear-left": {"rotate": [{"curve": 0.461, "c3": 0.543}, {"time": 0.6667, "angle": -3.92, "curve": 0.461, "c3": 0.543}, {"time": 1.3333}]}, "@shadow": { "scale": [ {"curve": 0.306, "c3": 0.695}, {"time": 0.3333, "x": 1.05, "y": 1.05, "curve": 0.306, "c3": 0.695}, {"time": 0.6667, "curve": 0.306, "c3": 0.695}, @@ -33104,16 +41220,12 @@ } } }, - "4041893364": { - "slots": { - "eyes": {"attachment": [{"time": 0.0833, "name": "eyes-shut"}, {"time": 0.1667, "name": "eyes-angry"}, {"time": 0.5833, "name": "eyes-shut"}, {"time": 0.6667, "name": "eyes"}]}, - "mouth": {"attachment": [{"time": 0.0833, "name": "mouth-bite"}, {"time": 0.3667, "name": "mouth-open"}, {"time": 0.5833, "name": "mouth"}]} - }, + "3802408031": { "bones": { "@pivot-back": { "rotate": [ {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.15, "angle": 3.67, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.3333, "angle": -14.29, "curve": 0.854, "c4": 0.1}, - {"time": 0.3667, "angle": 15.82}, {"time": 0.45, "angle": 16.67, "curve": 0.315, "c4": 0.8}, {"time": 0.5667, "angle": 4.4, "curve": 0, "c2": 0.1, "c3": 0.853}, + {"time": 0.3667, "angle": 15.82}, {"time": 0.45, "angle": 16.67, "curve": 0.315, "c4": 0.8}, {"time": 0.5667, "angle": 4.4, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.6333, "angle": 6.79, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.8333} ], "translate": [ @@ -33124,9 +41236,9 @@ "@leg-front-right": { "translate": [ {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.2167, "x": -18.54, "y": -11.57}, {"time": 0.25, "x": -23.07, "y": 10.08, "curve": 0, "c2": 0.4, "c3": 0.383}, - {"time": 0.3333, "x": 33.2, "y": -16.27, "curve": 0.854, "c4": 0.1}, {"time": 0.3667, "x": 22.95, "y": 2.68, "curve": "stepped"}, + {"time": 0.3333, "x": 29.92, "y": -4.24, "curve": 0.854, "c4": 0.1}, {"time": 0.3667, "x": 22.95, "y": 2.68, "curve": "stepped"}, {"time": 0.45, "x": 22.95, "y": 2.68, "curve": 0.157, "c2": 0.33, "c3": 0.727}, {"time": 0.5333, "x": 29.92, "y": -4.24, "curve": 0.779, "c4": 0.4}, - {"time": 0.5667, "x": -1.45, "y": -24.11, "curve": 0, "c2": 0.1, "c3": 0.853}, {"time": 0.6333, "x": -3.73, "y": -46.5, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.6667} + {"time": 0.5667, "x": -1.45, "y": -24.11, "curve": "stepped"}, {"time": 0.6333, "x": -1.45, "y": -24.11, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.6667} ], "scale": [ {"time": 0.2, "curve": 0.315, "c4": 0.8}, {"time": 0.25, "x": 1.5, "curve": 0, "c2": 0.3, "c3": 0.539}, {"time": 0.3333, "curve": 0.854, "c4": 0.1}, {"time": 0.3667, "x": 1.5}, @@ -33156,23 +41268,23 @@ }, "leg-front-right-IK": { "translate": [ - {"time": 0.15, "curve": 0, "c2": 0.18, "c3": 0.416, "c4": 0.58}, {"time": 0.2167, "x": 46.14, "y": 69.67}, {"time": 0.25, "x": 16.06, "y": 77.81, "curve": 0, "c2": 0.6, "c3": 0.237}, - {"time": 0.3333, "x": -177.78, "y": 257.33, "curve": 0.854, "c4": 0.1}, {"time": 0.3667, "x": 41.13, "y": -40.33}, {"time": 0.45, "x": 56.91, "y": -45.12, "curve": 0.315, "c4": 0.8}, + {"time": 0.15, "curve": 0, "c2": 0.18, "c3": 0.416, "c4": 0.58}, {"time": 0.2167, "x": 49.59, "y": 35.17}, {"time": 0.25, "x": -2.16, "y": 99.87, "curve": 0, "c2": 0.6, "c3": 0.237}, + {"time": 0.3333, "x": -158.6, "y": 254.45, "curve": 0.854, "c4": 0.1}, {"time": 0.3667, "x": -48.06, "y": 31.6}, {"time": 0.45, "x": -24.61, "y": 31.6, "curve": 0.315, "c4": 0.8}, {"time": 0.5667, "curve": "stepped"}, {"time": 0.6333, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.6667, "x": -14.68, "y": -19.57, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.8333} ] }, "leg-front-left-IK": { "translate": [ - {"time": 0.15, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "x": -54.88, "y": 124.95, "curve": 0.854, "c4": 0.1}, {"time": 0.3667, "x": 40.57, "y": 118.1}, - {"time": 0.45, "x": 58.05, "y": 128.7, "curve": 0.315, "c4": 0.8}, {"time": 0.5667, "curve": "stepped"}, {"time": 0.6333, "curve": 0, "c2": 0.1, "c3": 0.85}, + {"time": 0.15, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3333, "x": -54.88, "y": 124.95, "curve": 0.854, "c4": 0.1}, {"time": 0.3667, "x": 37.97, "y": 122.64}, + {"time": 0.45, "x": 48.96, "y": 138.43, "curve": 0.315, "c4": 0.8}, {"time": 0.5667, "curve": "stepped"}, {"time": 0.6333, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.6667, "x": -7.79, "y": -10.12, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.8333} ] }, "leg-back-left-IK": { "translate": [ - {"time": 0.0833, "curve": 0.332, "c3": 0.682, "c4": 0.41}, {"time": 0.2167, "x": 7.47, "y": 21.8, "curve": 0, "c2": 0.4, "c3": 0.383}, - {"time": 0.3333, "x": -63.6, "y": 99.05, "curve": 0.854, "c4": 0.1}, {"time": 0.3667, "x": 33.89, "y": 176.06}, {"time": 0.45, "x": 42.14, "y": 193.39, "curve": 0.315, "c4": 0.8}, + {"time": 0.0833, "curve": 0.332, "c3": 0.682, "c4": 0.41}, {"time": 0.2167, "x": 21.57, "y": 4.03, "curve": 0, "c2": 0.4, "c3": 0.383}, + {"time": 0.3333, "x": -50.73, "y": 91.08, "curve": 0.854, "c4": 0.1}, {"time": 0.3667, "x": 19.18, "y": 184.64}, {"time": 0.45, "x": 25.59, "y": 197.69, "curve": 0.315, "c4": 0.8}, {"time": 0.5667, "curve": "stepped"}, {"time": 0.6333, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.75, "x": 24.35, "y": 13.92, "curve": 0.154, "c4": 0.9}, {"time": 0.8333} ] }, @@ -33198,7 +41310,37 @@ }, "events": [{"time": 0.3333, "name": "start-attack"}, {"time": 0.3667, "name": "hit"}] }, - "3130386156": { + "1112993905": { + "bones": { + "@pivot-back": {"translate": [{"y": -97.74, "curve": 0.393, "c3": 0.303}, {"time": 0.6667, "y": -82.74, "curve": 0.387, "c3": 0.309}, {"time": 1.3333, "y": -97.74}]}, + "@leg-front-left": { + "rotate": [ + {"curve": 0, "c2": 0.1, "c3": 0.856}, {"time": 0.3333, "angle": -17.48, "curve": 0.15, "c3": 0.926}, {"time": 0.7333, "curve": 0, "c2": 0.05, "c3": 0.692}, + {"time": 1.05, "angle": 8.38, "curve": 0.24, "c3": 0.769}, {"time": 1.3333} + ] + }, + "@leg-front-right": { + "rotate": [ + {"curve": 0, "c2": 0.1, "c3": 0.856}, {"time": 0.3333, "angle": 9.43, "curve": 0.15, "c3": 0.926}, {"time": 0.7333, "curve": 0, "c2": 0.05, "c3": 0.692}, + {"time": 1.05, "angle": -11.74, "curve": 0.24, "c3": 0.769}, {"time": 1.3333} + ] + }, + "@leg-back-left": { + "rotate": [ + {"curve": 0, "c2": 0.1, "c3": 0.856}, {"time": 0.3333, "angle": -12.53, "curve": 0.15, "c3": 0.926}, {"time": 0.7333, "curve": 0, "c2": 0.05, "c3": 0.692}, + {"time": 1.05, "angle": 9.41, "curve": 0.24, "c3": 0.769}, {"time": 1.3333} + ] + }, + "tail": { + "rotate": [ + {"curve": 0, "c2": 0.05, "c3": 0.691}, {"time": 0.3333, "angle": -5.06, "curve": 0.304, "c3": 0.689}, {"time": 0.7333, "angle": -0.77}, + {"time": 1.05, "angle": 2.12, "curve": 0.234, "c4": 0.9}, {"time": 1.3333} + ] + }, + "@shadow": {"scale": [{"x": 1.3, "y": 1.3, "curve": 0.387, "c3": 0.314}, {"time": 0.6667, "x": 1.25, "y": 1.25, "curve": 0.387, "c3": 0.314}, {"time": 1.3333, "x": 1.3, "y": 1.3}]} + } + }, + "4074297404": { "slots": { "ball": { "color": [ @@ -33206,9 +41348,7 @@ {"time": 2.9167, "color": "ffffffff", "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 3.0833, "color": "ffffff00"} ], "attachment": [{"name": "ball"}] - }, - "eyes": {"attachment": [{"time": 0.5, "name": "eyes-shut"}, {"time": 0.5833, "name": "eyes"}, {"time": 3.0833, "name": "eyes-shut"}, {"time": 3.1667, "name": "eyes"}]}, - "mouth": {"attachment": [{"time": 0.1833, "name": "mouth-open"}, {"time": 0.5, "name": "mouth"}, {"time": 2.7667, "name": "mouth-open"}, {"time": 2.9167, "name": "mouth"}]} + } }, "bones": { "@pivot-back": { @@ -33284,7 +41424,7 @@ }, "ball": { "scale": [ - {"time": 0.3333, "curve": 0.617, "c4": 0.6}, {"time": 0.5, "x": 1.2, "y": 0.9, "curve": 0, "c2": 0.39, "c3": 0.387}, {"time": 0.6667, "curve": "stepped"}, + {"time": 0.3333, "curve": 0.617, "c4": 0.6}, {"time": 0.5, "x": 1.2, "y": 0.802, "curve": 0, "c2": 0.39, "c3": 0.387}, {"time": 0.6667, "curve": "stepped"}, {"time": 2.5833, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 2.75, "x": 1.2, "y": 0.9, "curve": 0, "c2": 0.3, "c3": 0.546}, {"time": 2.9167} ] }, @@ -33319,11 +41459,8 @@ } } }, - "2103635194": { - "slots": { - "eyes": {"attachment": [{"time": 0.1, "name": "eyes-shut"}, {"time": 1, "name": "eyes"}]}, - "leg-back-left": {"attachment": [{"time": 0.0667, "name": "sumo-leg-back-left-long"}, {"time": 0.9, "name": "sumo-leg-back-left"}]} - }, + "3457159700": { + "slots": {"leg-back-left": {"attachment": [{"time": 0.0667, "name": "summer-leg-back-left-long"}, {"time": 0.9, "name": "summer-leg-back-left"}]}}, "bones": { "@pivot-back": { "rotate": [ @@ -33357,11 +41494,10 @@ }, "leg-back-left-IK": { "translate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": -21.75, "y": 117.39, "curve": 0.617, "c4": 0.6}, - {"time": 0.2667, "x": -93.41, "y": 108.34, "curve": 0, "c2": 0.4, "c3": 0.383}, {"time": 0.35, "x": -22.69, "y": 117.03, "curve": 0.617, "c4": 0.6}, - {"time": 0.45, "x": -78.11, "y": 117.52, "curve": 0, "c2": 0.4, "c3": 0.383}, {"time": 0.55, "x": -20.24, "y": 116.41, "curve": 0.617, "c4": 0.6}, - {"time": 0.6333, "x": -82.4, "y": 114.46, "curve": 0, "c2": 0.4, "c3": 0.383}, {"time": 0.7333, "x": -22.08, "y": 116.41, "curve": 0.434, "c3": 0.739, "c4": 0.4}, - {"time": 0.8333, "x": -68.55, "y": 121.38, "curve": 0.223, "c2": 0.33, "c3": 0.336}, {"time": 1.0833} + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": -30.93, "y": 88.63, "curve": 0.617, "c4": 0.6}, {"time": 0.2667, "x": -62.81, "y": 72.23, "curve": 0, "c2": 0.4, "c3": 0.383}, + {"time": 0.35, "x": -28.19, "y": 96.83, "curve": 0.617, "c4": 0.6}, {"time": 0.45, "x": -62.81, "y": 72.23, "curve": 0, "c2": 0.4, "c3": 0.383}, + {"time": 0.55, "x": -28.19, "y": 96.83, "curve": 0.617, "c4": 0.6}, {"time": 0.6333, "x": -62.81, "y": 72.23, "curve": 0, "c2": 0.4, "c3": 0.383}, + {"time": 0.7333, "x": -28.19, "y": 96.83, "curve": 0.434, "c3": 0.739, "c4": 0.4}, {"time": 0.8333, "x": -56.92, "y": 76.7, "curve": 0.223, "c2": 0.33, "c3": 0.336}, {"time": 1.0833} ] }, "tail": { @@ -33379,13 +41515,69 @@ {"time": 0.6667, "curve": 0.317, "c3": 0.693}, {"time": 0.8333, "x": 1.02, "y": 1.02, "curve": 0.317, "c3": 0.693}, {"time": 1.0833} ] } + }, + "drawOrder": [{"time": 0.0667, "offsets": [{"slot": "leg-back-left", "offset": 1}]}, {"time": 0.9}] + }, + "1228132142": { + "bones": { + "@pivot-back": { + "rotate": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "angle": 6, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.4833, "angle": 7, "curve": 0.317, "c3": 0.693}, + {"time": 0.55, "angle": 6.5, "curve": 0.317, "c3": 0.693}, {"time": 0.6167, "angle": 7, "curve": 0.317, "c3": 0.693}, {"time": 0.6833, "angle": 6.5, "curve": 0, "c2": 0.1, "c3": 0.85}, + {"time": 0.9167, "angle": 8, "curve": 0.317, "c3": 0.693}, {"time": 1.3333, "angle": -7, "curve": 0.461, "c3": 0.543}, {"time": 1.9167, "angle": -9, "curve": 0.154, "c4": 0.9}, + {"time": 2.1667, "angle": 3, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 2.3333} + ], + "translate": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "x": 7, "y": 6, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.9167, "x": 11, "y": 10, "curve": 0.317, "c3": 0.693}, + {"time": 1.3333, "x": -45, "y": -14, "curve": 0.461, "c3": 0.543}, {"time": 1.9167, "x": -45, "y": -18, "curve": 0.154, "c4": 0.9}, + {"time": 2.1667, "y": 4.23, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 2.3333} + ] + }, + "@leg-front-right": { + "translate": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "x": -2.08, "y": -23.58, "curve": "stepped"}, {"time": 0.9167, "x": -2.08, "y": -23.58, "curve": 0.317, "c3": 0.693}, + {"time": 1.3333, "x": -56.51, "y": 25.21, "curve": 0.461, "c3": 0.543}, {"time": 1.9167, "x": -57.58, "y": 31.33, "curve": 0.154, "c4": 0.9}, + {"time": 2.1667, "x": -1.95, "y": -12.95, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 2.3333} + ] + }, + "@leg-front-left": { + "translate": [ + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "x": -0.92, "y": -10.48, "curve": "stepped"}, {"time": 0.9167, "x": -0.92, "y": -10.48, "curve": 0.317, "c3": 0.693}, + {"time": 1.3333, "x": -48.7, "y": 5.49, "curve": 0.461, "c3": 0.543}, {"time": 1.9167, "x": -49.1, "y": 7.78, "curve": 0.154, "c4": 0.9}, + {"time": 2.1667, "x": -0.87, "y": -4.98, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 2.3333} + ] + }, + "@leg-back-left": { + "translate": [ + {"time": 0.25}, {"time": 0.9167, "x": 0.52, "y": 4.2, "curve": 0.317, "c3": 0.693}, {"time": 1.3333, "x": -2.48, "y": -1.61, "curve": "stepped"}, + {"time": 1.9167, "x": -2.48, "y": -1.61, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 2.1667} + ] + }, + "leg-front-left-IK": { + "translate": [ + {"time": 0.9167, "curve": 0.317, "c3": 0.693}, {"time": 1.3333, "x": -11.56, "curve": "stepped"}, {"time": 1.9167, "x": -11.56, "curve": 0.154, "c4": 0.9}, {"time": 2.1667} + ] + }, + "leg-front-right-IK": { + "translate": [{"time": 0.9167, "curve": 0.317, "c3": 0.693}, {"time": 1.3333, "x": -5.65, "curve": "stepped"}, {"time": 1.9167, "x": -5.65, "curve": 0.154, "c4": 0.9}, {"time": 2.1667}] + }, + "leg-back-left-IK": { + "translate": [ + {"time": 0.9167, "curve": 0.317, "c3": 0.693}, {"time": 1.3333, "x": -33.62, "curve": "stepped"}, {"time": 1.9167, "x": -33.62, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 2.1667} + ] + }, + "tail": { + "rotate": [ + {"curve": 0, "c2": 0.3, "c3": 0.546}, {"time": 0.25, "angle": 20.35, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.4167, "angle": 15.85, "curve": 0.317, "c3": 0.693}, + {"time": 0.4833, "angle": 17.35, "curve": 0.317, "c3": 0.693}, {"time": 0.55, "angle": 15.85, "curve": 0.317, "c3": 0.693}, {"time": 0.6167, "angle": 18.35, "curve": 0.317, "c3": 0.693}, + {"time": 0.6833, "angle": 16.85, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.9167, "angle": 18.35, "curve": 0.317, "c3": 0.693}, + {"time": 1.3333, "angle": -9.65, "curve": 0.461, "c3": 0.543}, {"time": 1.9167, "angle": -13.65, "curve": 0.154, "c4": 0.9}, + {"time": 2.1667, "angle": 10.35, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 2.3333} + ] + } } }, - "488301700": { - "slots": { - "eyes": {"attachment": [{"time": 0.3, "name": "eyes-angry"}, {"time": 1.2333, "name": "eyes"}]}, - "mouth": {"attachment": [{"time": 0.3, "name": "mouth-bite"}, {"time": 1.2333, "name": "mouth"}]} - }, + "1416671293": { "bones": { "@pivot-back": { "rotate": [ @@ -33404,12 +41596,12 @@ "@leg-front-left": { "translate": [ {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1, "x": -1.28, "y": -14.48, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.2, "curve": 0.315, "c4": 0.8}, - {"time": 0.3, "x": -0.86, "y": -9.28, "curve": 0.317, "c3": 0.693}, {"time": 0.3833, "x": -4.55, "y": -7.13, "curve": 0.317, "c3": 0.693}, - {"time": 0.4667, "x": -0.86, "y": -9.28, "curve": 0.317, "c3": 0.693}, {"time": 0.55, "x": -4.55, "y": -7.13, "curve": 0.317, "c3": 0.693}, - {"time": 0.6333, "x": -0.86, "y": -9.28, "curve": 0.317, "c3": 0.693}, {"time": 0.7167, "x": -4.55, "y": -7.13, "curve": 0.317, "c3": 0.693}, - {"time": 0.8, "x": -0.86, "y": -9.28, "curve": 0.317, "c3": 0.693}, {"time": 0.8833, "x": -4.55, "y": -7.13, "curve": 0.317, "c3": 0.693}, - {"time": 0.9667, "x": -0.86, "y": -9.28, "curve": 0.317, "c3": 0.693}, {"time": 1.05, "x": -4.55, "y": -7.13, "curve": 0.317, "c3": 0.693}, - {"time": 1.1333, "x": -0.86, "y": -9.28, "curve": 0.317, "c3": 0.693}, {"time": 1.2167, "x": -4.55, "y": -7.13, "curve": 0.317, "c3": 0.693}, {"time": 1.3167} + {"time": 0.3, "x": -1.28, "y": -14.48, "curve": 0.317, "c3": 0.693}, {"time": 0.3833, "x": -1.02, "y": -10.26, "curve": 0.317, "c3": 0.693}, + {"time": 0.4667, "x": -1.22, "y": -13.05, "curve": 0.317, "c3": 0.693}, {"time": 0.55, "x": -1.02, "y": -10.26, "curve": 0.317, "c3": 0.693}, + {"time": 0.6333, "x": -1.22, "y": -13.05, "curve": 0.317, "c3": 0.693}, {"time": 0.7167, "x": -1.02, "y": -10.26, "curve": 0.317, "c3": 0.693}, + {"time": 0.8, "x": -1.22, "y": -13.05, "curve": 0.317, "c3": 0.693}, {"time": 0.8833, "x": -1.02, "y": -10.26, "curve": 0.317, "c3": 0.693}, + {"time": 0.9667, "x": -1.22, "y": -13.05, "curve": 0.317, "c3": 0.693}, {"time": 1.05, "x": -1.02, "y": -10.26, "curve": 0.317, "c3": 0.693}, + {"time": 1.1333, "x": -1.22, "y": -13.05, "curve": 0.317, "c3": 0.693}, {"time": 1.2167, "x": -1.28, "y": -14.48, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1.3167} ] }, "@leg-front-right": { @@ -33428,12 +41620,7 @@ {"time": 0.1, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.3, "x": -154.22, "curve": "stepped"}, {"time": 1.2167, "x": -154.22, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 1.4167} ] }, - "leg-front-left-IK": { - "translate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3, "x": 27.41, "curve": "stepped"}, {"time": 1.2167, "x": 27.41, "curve": 0.306, "c4": 0.8}, - {"time": 1.3167, "x": -61.13, "curve": 0.315, "c4": 0.8}, {"time": 1.4167} - ] - }, + "leg-front-left-IK": {"translate": [{"time": 1.2167, "curve": 0.315, "c4": 0.8}, {"time": 1.3167, "x": -61.13, "curve": 0.315, "c4": 0.8}, {"time": 1.4167}]}, "leg-front-right-IK": {"translate": [{"time": 1.2167, "curve": 0.315, "c4": 0.8}, {"time": 1.3167, "x": -61.13, "curve": 0.315, "c4": 0.8}, {"time": 1.4167}]}, "@shadow": { "translate": [ @@ -33458,15 +41645,18 @@ {"time": 1.0833, "angle": 17.85, "curve": 0.317, "c3": 0.693}, {"time": 1.2167, "angle": 15.5, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1.3167, "angle": -14.65, "curve": 0.315, "c4": 0.8}, {"time": 1.4167} ] + }, + "back": { + "rotate": [ + {"time": 0.3, "curve": 0.306, "c3": 0.695}, {"time": 0.4833, "angle": 5.93, "curve": 0.306, "c3": 0.695}, {"time": 0.65, "curve": 0.306, "c3": 0.695}, + {"time": 0.8333, "angle": 5.93, "curve": 0.306, "c3": 0.695}, {"time": 1.0167, "curve": 0.306, "c3": 0.695}, {"time": 1.2167, "angle": 5.93, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 1.4167} + ] } } }, - "503804557": { - "slots": { - "eyes": {"attachment": [{"name": "eyes-happy"}]}, - "leg-back-left": {"attachment": [{"time": 0.2833, "name": "sumo-leg-back-left-stretch"}, {"time": 0.7167, "name": "sumo-leg-back-left"}]}, - "leg-front-left": {"attachment": [{"time": 0.2, "name": "sumo-leg-front-left-stretch"}, {"time": 0.6, "name": "sumo-leg-front-left"}]} - }, + "1751413398": { + "slots": {"leg-front-left": {"attachment": [{"time": 0.2, "name": "summer-leg-front-left-stretch"}, {"time": 0.5833, "name": "summer-leg-front-left"}]}}, "bones": { "@leg-front-left": { "translate": [ @@ -33500,20 +41690,20 @@ ] }, "tail": { - "rotate": [{"curve": 0.161, "c3": 0.854}, {"time": 0.25, "angle": -15.26, "curve": 0, "c2": 0.3, "c3": 0.546}, {"time": 0.5, "angle": 3.48, "curve": 0.154, "c4": 0.9}, {"time": 0.75}] + "rotate": [{"curve": 0.161, "c3": 0.854}, {"time": 0.25, "angle": -20, "curve": 0, "c2": 0.3, "c3": 0.546}, {"time": 0.5, "angle": 4.21, "curve": 0.154, "c4": 0.9}, {"time": 0.75}] }, "@leg-front-right": { "translate": [ {"x": 7.78, "y": -11.23, "curve": 0.649, "c2": 0.4, "c4": 0.74}, {"time": 0.0167, "x": -0.64, "y": -13.16, "curve": 0.313, "c3": 0.699}, {"time": 0.1333, "x": -9.39, "y": -16.39, "curve": 0.346, "c2": 0.44, "c3": 0.699}, {"time": 0.3167, "x": -26.29, "y": 12.52, "curve": 0, "c2": 0.18, "c3": 0.424, "c4": 0.59}, - {"time": 0.4333, "x": 7.42, "y": -10.53, "curve": 0.316, "c2": 0.49, "c3": 0.751}, {"time": 0.6, "x": 51.65, "y": -22.8, "curve": 0.289, "c3": 0.884, "c4": 0.7}, + {"time": 0.4333, "x": 7.42, "y": -10.53, "curve": 0.316, "c2": 0.49, "c3": 0.751}, {"time": 0.6, "x": 37.87, "y": -4.31, "curve": 0.289, "c3": 0.884, "c4": 0.7}, {"time": 0.75, "x": 7.78, "y": -11.23} ] }, "leg-front-right-IK": { "translate": [ - {"x": -13.57, "y": 17.19, "curve": 0.645, "c2": 0.47, "c4": 0.81}, {"time": 0.0167, "curve": 0.313, "c3": 0.699}, {"time": 0.2667, "x": 62.62, "curve": 0, "c2": 0.3, "c3": 0.544}, - {"time": 0.5, "x": -85.89, "y": 125.19}, {"time": 0.6, "x": -101.73, "y": 111.9, "curve": 0.142, "c3": 0.858, "c4": 0.77}, {"time": 0.75, "x": -13.57, "y": 17.19} + {"x": -13.57, "y": 17.19, "curve": 0.645, "c2": 0.47, "c4": 0.81}, {"time": 0.0167, "curve": 0.313, "c3": 0.699}, {"time": 0.2667, "x": 52.85, "curve": 0, "c2": 0.3, "c3": 0.544}, + {"time": 0.5, "x": -85.89, "y": 125.19}, {"time": 0.6, "x": -87.57, "y": 110.89, "curve": 0.142, "c3": 0.858, "c4": 0.77}, {"time": 0.75, "x": -13.57, "y": 17.19} ] }, "@leg-back-left": { @@ -33534,89 +41724,23 @@ {"time": 0.5667, "y": 80.61, "curve": 0.154, "c4": 0.9}, {"time": 0.75, "y": 8} ] }, - "@pivot-main": {"scale": [{"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1333, "y": 0.85, "curve": 0.306, "c4": 0.8}, {"time": 0.25}]} - }, - "drawOrder": [ - {"time": 0.6333, "offsets": [{"slot": "leg-front-right", "offset": 3}]}, {"time": 0.7333, "offsets": [{"slot": "leg-front-right", "offset": 3}, {"slot": "body-pattern", "offset": 1}]} - ] - }, - "4275354805": { - "slots": {"leg-front-left": {"attachment": [{"time": 0.2, "name": "sumo-leg-front-left-stretch"}, {"time": 0.6667, "name": "sumo-leg-front-left"}]}}, - "bones": { - "@pivot-back": { - "translate": [ - {"y": 8, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "y": -10, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.25, "curve": 0, "c2": 0.1, "c3": 0.85}, - {"time": 0.5833, "y": 80.61, "curve": 0.154, "c4": 0.9}, {"time": 0.75, "y": 8} - ] - }, - "@leg-front-left": { - "translate": [ - {"x": -14.55, "y": -2.39, "curve": 0.374, "c2": 0.33, "c3": 0.72, "c4": 0.68}, {"time": 0.0333, "x": -24.61, "y": -1.31, "curve": "stepped"}, - {"time": 0.1667, "x": -24.61, "y": -1.31, "curve": 0.37, "c2": 0.57, "c3": 0.746}, {"time": 0.3333, "x": 13.45, "y": -27.72, "curve": 0.345, "c2": 0.53, "c3": 0.751}, - {"time": 0.4833, "x": 40.66, "y": -4.9, "curve": 0.255, "c3": 0.673, "c4": 0.49}, {"time": 0.5833, "x": 39.16, "y": 14.5, "curve": 0.565, "c2": 0.41, "c4": 0.82}, - {"time": 0.6667, "x": 1.05, "y": 16.15, "curve": 0.255, "c3": 0.659, "c4": 0.47}, {"time": 0.75, "x": -14.55, "y": -2.39} - ], - "scale": [ - {"x": 0.969, "curve": 0.459, "c2": 0.59, "c3": 0.838}, {"time": 0.0333, "x": 0.961, "curve": 0.154, "c4": 0.9}, {"time": 0.1667, "x": 1.075, "curve": 0, "c2": 0.1, "c3": 0.85}, - {"time": 0.3333, "curve": "stepped"}, {"time": 0.6667, "curve": 0, "c2": 0.09, "c3": 0.589, "c4": 0.67}, {"time": 0.75, "x": 0.969} - ] - }, - "leg-front-left-IK": { - "translate": [ - {"x": 4.88, "y": 20.49, "curve": 0.416, "c2": 0.51, "c3": 0.865}, {"time": 0.0833, "x": 28.75, "y": 34.52, "curve": 0.269, "c2": 0.57, "c3": 0.577}, - {"time": 0.1667, "x": 31.44, "y": 44.28, "curve": 0.461, "c3": 0.543}, {"time": 0.4167, "x": -85.44, "y": 106.83}, - {"time": 0.5167, "x": -87.18, "y": 81.5, "curve": 0.143, "c3": 0.57, "c4": 0.46}, {"time": 0.6667, "x": -21.75, "y": 25.36, "curve": 0, "c2": 0.09, "c3": 0.479, "c4": 0.56}, - {"time": 0.75, "x": 4.88, "y": 20.49} - ] - }, - "leg-back-left-IK": { - "translate": [ - {"x": 17.64, "y": 16.11, "curve": 0.455, "c2": 0.58, "c3": 0.847}, {"time": 0.0333, "curve": 0, "c2": 0.1, "c3": 0.85}, - {"time": 0.2333, "x": -50.37, "curve": 0, "c2": 0.09, "c3": 0.466, "c4": 0.7}, {"time": 0.3, "x": 11.38, "y": 18.2, "curve": 0.177, "c2": 0.44, "c3": 0.617}, - {"time": 0.5333, "x": 56.74, "y": 103.8, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.6667, "x": 71.93, "y": 112.16, "curve": 0.139, "c3": 0.671, "c4": 0.58}, - {"time": 0.75, "x": 17.64, "y": 16.11} - ] - }, - "@shadow": { - "scale": [ - {"curve": 0.313, "c3": 0.699}, {"time": 0.25, "x": 0.94, "y": 0.94, "curve": 0.313, "c3": 0.699}, {"time": 0.4333, "x": 0.8, "y": 0.8, "curve": 0.315, "c4": 0.8}, {"time": 0.75} + "@pivot-main": {"scale": [{"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1333, "y": 0.85, "curve": 0.306, "c4": 0.8}, {"time": 0.25}]}, + "ear-right": { + "rotate": [ + {"angle": 6.45, "curve": 0.306, "c3": 0.695}, {"time": 0.25, "angle": -6.15, "curve": 0.306, "c3": 0.695}, {"time": 0.5, "angle": -7.47, "curve": 0.306, "c3": 0.695}, + {"time": 0.75, "angle": 6.45} ] }, - "@pivot-main": {"scale": [{"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "y": 0.98, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.25}]}, - "@leg-front-right": { - "translate": [ - {"x": -0.64, "y": -13.16, "curve": 0.313, "c3": 0.654, "c4": 0.45}, {"time": 0.1167, "x": -9.39, "y": -16.39, "curve": 0.346, "c2": 0.44, "c3": 0.699}, - {"time": 0.3, "x": -26.29, "y": 12.52, "curve": 0, "c2": 0.18, "c3": 0.424, "c4": 0.59}, {"time": 0.4167, "x": 7.42, "y": -10.53, "curve": 0.316, "c2": 0.49, "c3": 0.751}, - {"time": 0.5833, "x": 37.87, "y": -4.31, "curve": 0.315, "c4": 0.8}, {"time": 0.75, "x": -0.64, "y": -13.16} + "ear-left": { + "rotate": [ + {"angle": 6.45, "curve": 0.306, "c3": 0.695}, {"time": 0.25, "angle": -6.15, "curve": 0.306, "c3": 0.695}, {"time": 0.5, "angle": -7.47, "curve": 0.306, "c3": 0.695}, + {"time": 0.75, "angle": 6.45} ] }, - "@leg-back-left": { - "translate": [ - {"x": -4.73, "y": 6.6, "curve": 0, "c2": 0.1, "c3": 0.85}, {"time": 0.15, "x": 1.29, "y": -4.22, "curve": 0.44, "c2": 0.55, "c3": 0.858}, - {"time": 0.25, "x": 2.16, "y": 6.49, "curve": 0, "c2": 0.09, "c3": 0.466, "c4": 0.7}, {"time": 0.3, "x": -5.17, "y": 15.67, "curve": 0.218, "c2": 0.39, "c3": 0.738}, - {"time": 0.5333, "x": -14.09, "y": -7.98, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.6667, "x": -12.69, "y": -11.31, "curve": 0.139, "c3": 0.671, "c4": 0.58}, - {"time": 0.75, "x": -4.73, "y": 6.6} - ], - "scale": [{"curve": 0, "c2": 0.1, "c3": 0.457, "c4": 0.54}, {"time": 0.0667, "x": 0.837, "curve": 0.395, "c2": 0.49, "c3": 0.868}, {"time": 0.15}] - }, - "leg-front-right-IK": { - "translate": [ - {"curve": 0.313, "c3": 0.699}, {"time": 0.25, "x": 52.85, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.4833, "x": -85.89, "y": 125.19}, - {"time": 0.5833, "x": -87.57, "y": 110.89, "curve": 0.154, "c4": 0.9}, {"time": 0.75} - ] - } + "back": {"rotate": [{"curve": 0.306, "c3": 0.695}, {"time": 0.25, "angle": 9.32, "curve": 0.306, "c3": 0.695}, {"time": 0.5, "angle": -5.11, "curve": 0.306, "c3": 0.695}, {"time": 0.75}]} } }, - "689651440": { - "slots": { - "eyes": { - "attachment": [ - {"time": 0.05, "name": "eyes-angry"}, {"time": 0.3333, "name": "eyes-shut"}, {"time": 0.4333, "name": "eyes-angry"}, {"time": 1.0833, "name": "eyes-shut"}, - {"time": 1.1667, "name": "eyes-angry"}, {"time": 1.2833, "name": "eyes"} - ] - }, - "mouth": {"attachment": [{"time": 0.05, "name": "mouth-bite"}, {"time": 0.4333, "name": "mouth-open"}, {"time": 0.9167, "name": "mouth-bite"}, {"time": 1.2833, "name": "mouth"}]} - }, + "4284047619": { "bones": { "@pivot-back": { "rotate": [{"curve": 0, "c2": 0.3, "c3": 0.546}, {"time": 0.0833, "angle": 6, "curve": 0, "c2": 0.2, "c3": 0.828}, {"time": 0.1667}], @@ -33636,44 +41760,44 @@ }, "leg-front-left-IK": { "translate": [ - {"time": 0.0833, "curve": 0.344, "c3": 0.715, "c4": 0.45}, {"time": 0.1167, "x": 22.19, "y": 83.99, "curve": 0.589, "c2": 0.35, "c4": 0.75}, - {"time": 0.1667, "x": -165.12, "y": 255.89, "curve": 0.313, "c3": 0.699}, {"time": 0.25, "x": -364.32, "y": 423.37, "curve": 0.474, "c3": 0.714, "c4": 0.56}, - {"time": 0.3, "x": -274.03, "y": 604.29, "curve": 0.306, "c2": 0.39, "c3": 0.628, "c4": 0.74}, {"time": 0.3167, "x": -203.26, "y": 613.41, "curve": 0.287, "c2": 0.62, "c3": 0.612}, - {"time": 0.3333, "x": -115.04, "y": 530.7}, {"time": 0.4167, "x": -102.69, "y": 520.45, "curve": 0, "c2": 0.17, "c3": 0.45, "c4": 0.61}, - {"time": 0.5, "x": -305.1, "y": 703.14, "curve": 0.323, "c2": 0.4, "c3": 0.681, "c4": 0.77}, {"time": 0.55, "x": -336.85, "y": 585.78, "curve": 0.377, "c2": 0.62, "c3": 0.724}, - {"time": 0.5833, "x": -216.34, "y": 437.28}, {"time": 0.6667, "x": 11.35, "y": 419.36}, {"time": 0.75, "x": 26.13, "y": 414.75, "curve": 0.255, "c3": 0.659, "c4": 0.47}, - {"time": 0.8333, "x": 100.23, "y": 427.06, "curve": 0.41, "c2": 0.34, "c3": 0.774, "c4": 0.71}, - {"time": 0.8833, "x": 125.45, "y": 421.05, "curve": 0.427, "c2": 0.37, "c3": 0.767, "c4": 0.71}, {"time": 0.9, "x": 143.46, "y": 449.77, "curve": 0.649, "c2": 0.4, "c4": 0.74}, - {"time": 0.9167, "x": -129.39, "y": 531.23}, {"time": 1.0833, "x": -166.91, "y": 529.28, "curve": 0, "c2": 0.17, "c3": 0.45, "c4": 0.61}, - {"time": 1.15, "x": 157.54, "y": 410.06, "curve": 0.345, "c2": 0.53, "c3": 0.751}, {"time": 1.2167, "x": 137.64, "y": 261.68, "curve": 0, "c2": 0.1, "c3": 0.769}, {"time": 1.3333} + {"time": 0.0833, "x": 3.28, "y": 8.42, "curve": 0.344, "c3": 0.715, "c4": 0.45}, {"time": 0.1167, "x": 23.89, "y": 74.66, "curve": 0.589, "c2": 0.35, "c4": 0.75}, + {"time": 0.1667, "x": -100.7, "y": 242.98, "curve": 0.306, "c3": 0.695}, {"time": 0.25, "x": -233.21, "y": 406.49, "curve": 0.474, "c3": 0.714, "c4": 0.56}, + {"time": 0.3, "x": -153, "y": 482.64, "curve": 0.306, "c2": 0.39, "c3": 0.628, "c4": 0.74}, {"time": 0.3167, "x": -106.74, "y": 465.65, "curve": 0.287, "c2": 0.62, "c3": 0.612}, + {"time": 0.3333, "x": -79.92, "y": 385}, {"time": 0.4167, "x": -126.28, "y": 392.02, "curve": 0, "c2": 0.17, "c3": 0.45, "c4": 0.61}, + {"time": 0.5, "x": -212.54, "y": 584.25, "curve": 0.323, "c2": 0.4, "c3": 0.681, "c4": 0.77}, {"time": 0.55, "x": -233.91, "y": 520.55, "curve": 0.377, "c2": 0.62, "c3": 0.724}, + {"time": 0.5833, "x": -173.29, "y": 470.76}, {"time": 0.6667, "x": 19.48, "y": 419.84}, {"time": 0.75, "x": 31.74, "y": 414.89, "curve": 0.255, "c3": 0.659, "c4": 0.47}, + {"time": 0.8333, "x": 83.62, "y": 412.28, "curve": 0.41, "c2": 0.34, "c3": 0.774, "c4": 0.71}, + {"time": 0.8833, "x": 116.53, "y": 400.02, "curve": 0.427, "c2": 0.37, "c3": 0.767, "c4": 0.71}, {"time": 0.9, "x": 130.33, "y": 410.53, "curve": 0.649, "c2": 0.4, "c4": 0.74}, + {"time": 0.9167, "x": -78.08, "y": 379.36}, {"time": 1.0833, "x": -92.45, "y": 375.87, "curve": 0, "c2": 0.17, "c3": 0.45, "c4": 0.61}, + {"time": 1.15, "x": 127.37, "y": 350.17, "curve": 0.345, "c2": 0.53, "c3": 0.751}, {"time": 1.2167, "x": 133.62, "y": 244.55, "curve": 0, "c2": 0.1, "c3": 0.769}, {"time": 1.3333} ] }, "leg-front-right-IK": { "translate": [ - {"time": 0.0833, "curve": 0.344, "c3": 0.715, "c4": 0.45}, {"time": 0.1167, "x": 45.96, "y": 58.25, "curve": 0.589, "c2": 0.35, "c4": 0.75}, - {"time": 0.1667, "x": -111.07, "y": 374.1, "curve": 0.313, "c3": 0.699}, {"time": 0.25, "x": 60.97, "y": 722.95, "curve": 0.474, "c3": 0.714, "c4": 0.56}, - {"time": 0.3, "x": 367.83, "y": 715.56, "curve": 0.306, "c2": 0.39, "c3": 0.628, "c4": 0.74}, {"time": 0.3167, "x": 468.42, "y": 646.75, "curve": 0.287, "c2": 0.62, "c3": 0.612}, - {"time": 0.3333, "x": 542.05, "y": 517.52}, {"time": 0.4167, "x": 553.82, "y": 507.31, "curve": 0, "c2": 0.17, "c3": 0.45, "c4": 0.61}, - {"time": 0.5, "x": 285.49, "y": 934.13, "curve": 0.323, "c2": 0.4, "c3": 0.681, "c4": 0.77}, {"time": 0.55, "x": -20.04, "y": 918.42, "curve": 0.377, "c2": 0.62, "c3": 0.724}, - {"time": 0.5833, "x": -78.72, "y": 674.67, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.6667, "x": 25.22, "y": 422.18}, - {"time": 0.75, "x": 10.31, "y": 400.68, "curve": 0.255, "c3": 0.659, "c4": 0.47}, {"time": 0.8333, "x": 73, "y": 312.24, "curve": 0.41, "c2": 0.34, "c3": 0.774, "c4": 0.71}, - {"time": 0.8833, "x": 225.18, "y": 186.58, "curve": 0.427, "c2": 0.37, "c3": 0.767, "c4": 0.71}, {"time": 0.9, "x": 378.84, "y": 152.84, "curve": 0.649, "c2": 0.4, "c4": 0.74}, - {"time": 0.9167, "x": 502.23, "y": 516.62}, {"time": 1.0833, "x": 469.43, "y": 521.94, "curve": 0, "c2": 0.17, "c3": 0.45, "c4": 0.61}, - {"time": 1.15, "x": 550, "y": 107.14, "curve": 0.345, "c2": 0.53, "c3": 0.751}, {"time": 1.2167, "x": 250.59, "y": 12.79, "curve": 0.313, "c3": 0.699}, {"time": 1.3333} + {"time": 0.0833, "curve": 0.344, "c3": 0.715, "c4": 0.45}, {"time": 0.1167, "x": 41.2, "y": 75.27, "curve": 0.589, "c2": 0.35, "c4": 0.75}, + {"time": 0.1667, "x": -103.56, "y": 361.93, "curve": 0.313, "c3": 0.699}, {"time": 0.25, "x": 61.46, "y": 606.37, "curve": 0.474, "c3": 0.714, "c4": 0.56}, + {"time": 0.3, "x": 293.95, "y": 550.17, "curve": 0.306, "c2": 0.39, "c3": 0.628, "c4": 0.74}, {"time": 0.3167, "x": 340.35, "y": 482.44, "curve": 0.287, "c2": 0.62, "c3": 0.612}, + {"time": 0.3333, "x": 426.33, "y": 357.51}, {"time": 0.4167, "x": 340.52, "y": 373.76, "curve": 0, "c2": 0.17, "c3": 0.45, "c4": 0.61}, + {"time": 0.5, "x": 236.72, "y": 764.35, "curve": 0.323, "c2": 0.4, "c3": 0.681, "c4": 0.77}, {"time": 0.55, "x": -18.99, "y": 764.25, "curve": 0.377, "c2": 0.62, "c3": 0.724}, + {"time": 0.5833, "x": -86.72, "y": 646.17}, {"time": 0.6667, "x": 16.1, "y": 426.11}, {"time": 0.75, "x": 19.92, "y": 404.36, "curve": 0.255, "c3": 0.659, "c4": 0.47}, + {"time": 0.8333, "x": 90.31, "y": 343.4, "curve": 0.41, "c2": 0.34, "c3": 0.774, "c4": 0.71}, + {"time": 0.8833, "x": 202.62, "y": 235.31, "curve": 0.427, "c2": 0.37, "c3": 0.767, "c4": 0.71}, {"time": 0.9, "x": 290.37, "y": 171.88, "curve": 0.649, "c2": 0.4, "c4": 0.74}, + {"time": 0.9167, "x": 412.25, "y": 355.41}, {"time": 1.0833, "x": 345.67, "y": 359.46, "curve": 0, "c2": 0.17, "c3": 0.45, "c4": 0.61}, + {"time": 1.15, "x": 400.77, "y": 121.52, "curve": 0.345, "c2": 0.53, "c3": 0.751}, {"time": 1.2167, "x": 172.82, "y": 29.19, "curve": 0.306, "c4": 0.8}, {"time": 1.3333} ] }, "leg-back-left-IK": { "translate": [ - {"time": 0.0833, "curve": 0.344, "c3": 0.715, "c4": 0.45}, {"time": 0.1167, "x": 23.75, "y": 96.58, "curve": 0.589, "c2": 0.35, "c4": 0.75}, - {"time": 0.1667, "x": -126.55, "y": 141.22, "curve": 0.313, "c3": 0.699}, {"time": 0.25, "x": -571.89, "y": 258.37, "curve": 0.474, "c3": 0.714, "c4": 0.56}, - {"time": 0.3, "x": -602.89, "y": 515.39, "curve": 0.306, "c2": 0.39, "c3": 0.628, "c4": 0.74}, {"time": 0.3167, "x": -538.79, "y": 573.94, "curve": 0.287, "c2": 0.62, "c3": 0.612}, - {"time": 0.3333, "x": -474.1, "y": 527.44}, {"time": 0.4167, "x": -458.69, "y": 526.95, "curve": 0, "c2": 0.6, "c3": 0.237}, - {"time": 0.5, "x": -624.02, "y": 521.86, "curve": 0.323, "c2": 0.4, "c3": 0.681, "c4": 0.77}, {"time": 0.55, "x": -470.84, "y": 346.72, "curve": 0.377, "c2": 0.62, "c3": 0.724}, - {"time": 0.5833, "x": -254.14, "y": 306.12}, {"time": 0.6667, "x": 17.58, "y": 427.51}, {"time": 0.75, "x": 20.37, "y": 430.65, "curve": 0.255, "c3": 0.659, "c4": 0.47}, - {"time": 0.8333, "x": 84.18, "y": 482.77, "curve": 0.41, "c2": 0.34, "c3": 0.774, "c4": 0.71}, - {"time": 0.8833, "x": 65.79, "y": 538.52, "curve": 0.427, "c2": 0.37, "c3": 0.767, "c4": 0.71}, {"time": 0.9, "x": 34.2, "y": 602.88, "curve": 0.649, "c2": 0.4, "c4": 0.74}, - {"time": 0.9167, "x": -511.21, "y": 519.18}, {"time": 1.0833, "x": -529.98, "y": 503.54, "curve": 0, "c2": 0.17, "c3": 0.45, "c4": 0.61}, - {"time": 1.15, "x": -49.15, "y": 566.82, "curve": 0.345, "c2": 0.53, "c3": 0.751}, {"time": 1.2167, "x": 72.06, "y": 381.52, "curve": 0, "c2": 0.1, "c3": 0.769}, {"time": 1.3333} + {"time": 0.0833, "x": 1.05, "y": 4.19, "curve": 0.344, "c3": 0.715, "c4": 0.45}, {"time": 0.1167, "x": 28.54, "y": 87, "curve": 0.589, "c2": 0.35, "c4": 0.75}, + {"time": 0.1667, "x": -101.24, "y": 155.59, "curve": 0.313, "c3": 0.699}, {"time": 0.25, "x": -446.46, "y": 186.66, "curve": 0.474, "c3": 0.714, "c4": 0.56}, + {"time": 0.3, "x": -509.64, "y": 364.51, "curve": 0.306, "c2": 0.39, "c3": 0.628, "c4": 0.74}, {"time": 0.3167, "x": -479.36, "y": 400.3, "curve": 0.287, "c2": 0.62, "c3": 0.612}, + {"time": 0.3333, "x": -473.08, "y": 343.1}, {"time": 0.4167, "x": -421.75, "y": 358.21, "curve": 0, "c2": 0.17, "c3": 0.45, "c4": 0.61}, + {"time": 0.5, "x": -502.28, "y": 409.04, "curve": 0.323, "c2": 0.4, "c3": 0.681, "c4": 0.77}, {"time": 0.55, "x": -357.82, "y": 309.09, "curve": 0.377, "c2": 0.62, "c3": 0.724}, + {"time": 0.5833, "x": -190.14, "y": 299.56}, {"time": 0.6667, "x": 28.01, "y": 424.39}, {"time": 0.75, "x": 15.55, "y": 419.34, "curve": 0.255, "c3": 0.659, "c4": 0.47}, + {"time": 0.8333, "x": 74.85, "y": 472.68, "curve": 0.41, "c2": 0.34, "c3": 0.774, "c4": 0.71}, + {"time": 0.8833, "x": 69.06, "y": 556.5, "curve": 0.427, "c2": 0.37, "c3": 0.767, "c4": 0.71}, {"time": 0.9, "x": 11.02, "y": 617.8, "curve": 0.649, "c2": 0.4, "c4": 0.74}, + {"time": 0.9167, "x": -407.64, "y": 352.01}, {"time": 1.0833, "x": -407.65, "y": 352.01, "curve": 0, "c2": 0.17, "c3": 0.45, "c4": 0.61}, + {"time": 1.15, "x": -101.44, "y": 524.93, "curve": 0.345, "c2": 0.53, "c3": 0.751}, {"time": 1.2167, "x": 63.56, "y": 378.89, "curve": 0, "c2": 0.1, "c3": 0.769}, {"time": 1.3333} ] }, "tail": { @@ -33695,11 +41819,19 @@ }, "events": [{"time": 0.4333, "name": "jump"}, {"time": 0.8333, "name": "start-attack"}, {"time": 0.9167, "name": "hit"}] }, - "2919733098": { - "slots": { - "eyes": {"attachment": [{"time": 0.05, "name": "eyes-angry"}, {"time": 0.8333, "name": "eyes-shut"}, {"time": 0.9167, "name": "eyes"}]}, - "mouth": {"attachment": [{"time": 0.05, "name": "mouth-bite"}, {"time": 0.3333, "name": "mouth-open"}, {"time": 0.75, "name": "mouth-bite"}, {"time": 0.9167, "name": "mouth"}]} - }, + "3292250615": { + "bones": { + "@pivot-back": {"translate": [{"curve": 0.384, "c3": 0.312}, {"time": 0.6667, "y": 22.76, "curve": 0.384, "c3": 0.306}, {"time": 1.3333}]}, + "tail": { + "rotate": [ + {"curve": 0, "c2": 0.05, "c3": 0.658}, {"time": 0.3333, "angle": -5.21, "curve": 0.304, "c3": 0.689}, {"time": 0.7333, "angle": -0.27}, + {"time": 1.05, "angle": 1.75, "curve": 0.234, "c4": 0.9}, {"time": 1.3333} + ] + }, + "@shadow": {"scale": [{"curve": 0.387, "c3": 0.314}, {"time": 0.6667, "x": 0.9, "y": 0.9, "curve": 0.387, "c3": 0.314}, {"time": 1.3333}]} + } + }, + "4247697367": { "bones": { "tail": { "rotate": [ @@ -33730,18 +41862,15 @@ "@leg-front-right": { "translate": [ {"curve": 0, "c2": 0.4, "c3": 0.383}, {"time": 0.25, "x": -1.86, "y": -9.26, "curve": "stepped"}, {"time": 0.3167, "x": -1.86, "y": -9.26, "curve": "stepped"}, - {"time": 0.3333, "x": 2.96, "y": 9.49, "curve": "stepped"}, {"time": 0.75, "x": 2.96, "y": 9.49, "curve": 0.306, "c3": 0.695}, + {"time": 0.3333, "x": -2.24, "y": 13.67, "curve": "stepped"}, {"time": 0.75, "x": -2.24, "y": 13.67, "curve": 0.313, "c3": 0.699}, {"time": 0.8333, "x": -1.86, "y": -9.26, "curve": 0.313, "c3": 0.699}, {"time": 1} ] }, "@leg-front-left": { "translate": [ {"curve": 0, "c2": 0.4, "c3": 0.383}, {"time": 0.25, "x": -1, "y": -5.53, "curve": "stepped"}, {"time": 0.3167, "x": -1, "y": -5.53, "curve": "stepped"}, - {"time": 0.3333, "x": 14.28, "y": 14.98, "curve": "stepped"}, {"time": 0.4, "x": 14.28, "y": 14.98, "curve": "stepped"}, {"time": 0.4333, "x": 14.36, "y": 10.6, "curve": "stepped"}, - {"time": 0.4667, "x": 14.36, "y": 10.6, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.5333, "x": 14.28, "y": 14.98, "curve": "stepped"}, - {"time": 0.5667, "x": 14.36, "y": 10.6, "curve": "stepped"}, {"time": 0.6, "x": 14.36, "y": 10.6, "curve": 0, "c2": 0.3, "c3": 0.544}, - {"time": 0.6667, "x": 14.28, "y": 14.98, "curve": "stepped"}, {"time": 0.7, "x": 14.36, "y": 10.6, "curve": "stepped"}, - {"time": 0.75, "x": -1.12, "y": 1.52, "curve": 0.313, "c3": 0.699}, {"time": 0.8333, "x": -1, "y": -5.53, "curve": 0.313, "c3": 0.699}, {"time": 1} + {"time": 0.3333, "x": -1.12, "y": 1.52, "curve": "stepped"}, {"time": 0.75, "x": -1.12, "y": 1.52, "curve": 0.313, "c3": 0.699}, + {"time": 0.8333, "x": -1, "y": -5.53, "curve": 0.313, "c3": 0.699}, {"time": 1} ] }, "@shadow": { @@ -33760,40 +41889,31 @@ }, "leg-front-left-IK": { "translate": [ - {"time": 0.25, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3167, "x": -192.09, "y": 31.17, "curve": "stepped"}, {"time": 0.3333, "x": -186.04, "curve": "stepped"}, - {"time": 0.7, "x": -186.04, "curve": 0.31, "c4": 0.8}, {"time": 0.75, "x": -180.48, "curve": "stepped"}, {"time": 0.8333, "x": -180.48, "curve": 0.313, "c3": 0.699}, {"time": 1} + {"time": 0.25, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3167, "x": -192.09, "y": 31.17, "curve": "stepped"}, + {"time": 0.3333, "x": -219.56, "y": 3.98, "curve": 0.277, "c3": 0.849, "c4": 0.67}, {"time": 0.65, "x": -219.56, "y": 3.98, "curve": 0.641, "c2": 0.41, "c4": 0.76}, + {"time": 0.7, "x": -226.38, "y": 3.98, "curve": "stepped"}, {"time": 0.75, "x": -157.76, "curve": "stepped"}, {"time": 0.8333, "x": -157.76, "curve": 0.306, "c3": 0.695}, {"time": 1} ] }, "leg-front-right-IK": { "translate": [ - {"time": 0.25, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3167, "x": -172.87, "y": 28.32, "curve": "stepped"}, {"time": 0.3333, "x": 456.08, "y": -1.32, "curve": "stepped"}, - {"time": 0.7, "x": 456.08, "y": -1.32, "curve": "stepped"}, {"time": 0.75, "x": -180.48, "curve": "stepped"}, {"time": 0.8333, "x": -180.48, "curve": 0.313, "c3": 0.699}, {"time": 1} + {"time": 0.25, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3167, "x": -172.87, "y": 28.32, "curve": "stepped"}, {"time": 0.3333, "x": 295.89, "y": 8.85, "curve": "stepped"}, + {"time": 0.7, "x": 295.89, "y": 8.85, "curve": "stepped"}, {"time": 0.75, "x": -180.48, "curve": "stepped"}, {"time": 0.8333, "x": -180.48, "curve": 0.313, "c3": 0.699}, {"time": 1} ] }, "leg-back-left-IK": { "translate": [ - {"time": 0.25, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3167, "x": -96.78, "y": 27.51, "curve": "stepped"}, {"time": 0.3333, "x": -593.07, "curve": "stepped"}, - {"time": 0.7, "x": -593.07, "curve": "stepped"}, {"time": 0.75, "x": -134.74, "curve": "stepped"}, {"time": 0.8333, "x": -134.74, "curve": 0.313, "c3": 0.699}, {"time": 1} + {"time": 0.25, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3167, "x": -96.78, "y": 27.51, "curve": "stepped"}, {"time": 0.3333, "x": -542.14, "curve": "stepped"}, + {"time": 0.7, "x": -542.14, "curve": "stepped"}, {"time": 0.75, "x": -134.74, "curve": "stepped"}, {"time": 0.8333, "x": -134.74, "curve": 0.313, "c3": 0.699}, {"time": 1} ] }, "@leg-back-left": { - "translate": [ - {"time": 0.3167, "curve": "stepped"}, {"time": 0.3333, "x": -0.06, "y": 3.33, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.4, "x": 0.15, "y": 11.38, "curve": "stepped"}, - {"time": 0.4333, "x": -0.06, "y": 3.33, "curve": "stepped"}, {"time": 0.4667, "x": -0.06, "y": 3.33, "curve": 0, "c2": 0.3, "c3": 0.544}, - {"time": 0.5333, "x": 0.15, "y": 11.38, "curve": "stepped"}, {"time": 0.5667, "x": 0.28, "y": 3.86, "curve": "stepped"}, - {"time": 0.6, "x": -0.06, "y": 3.33, "curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.6667, "x": 0.15, "y": 11.38, "curve": "stepped"}, - {"time": 0.7, "x": -0.06, "y": 3.33, "curve": "stepped"}, {"time": 0.75} - ] + "translate": [{"time": 0.3167, "curve": "stepped"}, {"time": 0.3333, "x": -0.06, "y": 3.33, "curve": "stepped"}, {"time": 0.7, "x": -0.06, "y": 3.33, "curve": "stepped"}, {"time": 0.75}] }, "@pivot-main": {"translate": [{"time": 0.8333, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.9167, "y": 31, "curve": 0.315, "c4": 0.8}, {"time": 1}]} }, "events": [{"time": 0.3167, "name": "start-attack"}, {"time": 0.4333, "name": "hit"}, {"time": 0.5667, "name": "hit"}, {"time": 0.7, "name": "hit"}] }, - "3361002765": { - "slots": { - "eyes": {"attachment": [{"time": 0.0167, "name": "eyes-angry"}, {"time": 0.85, "name": "eyes-shut"}, {"time": 0.9333, "name": "eyes"}]}, - "mouth": {"attachment": [{"time": 0.0167, "name": "mouth-bite"}, {"time": 0.1833, "name": "mouth-open"}, {"time": 0.5, "name": "mouth-bite"}, {"time": 0.9333, "name": "mouth"}]} - }, + "3634591874": { "bones": { "@pivot-back": { "rotate": [ @@ -33809,9 +41929,9 @@ }, "@leg-front-left": { "translate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "x": -4.8, "y": 21.17, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "x": -2.77, "y": -2.64, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": -0.53, "y": 0.11, "curve": 0, "c2": 0.2, "c3": 0.858}, {"time": 0.25, "x": -1, "y": -5.53, "curve": "stepped"}, - {"time": 0.7167, "x": -1, "y": -5.53, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.8333, "x": -2.17, "y": -17.49, "curve": 0.313, "c3": 0.699}, {"time": 1} + {"time": 0.7167, "x": -1, "y": -5.53, "curve": 0.464, "c4": 0.7}, {"time": 0.8333, "x": -2.17, "y": -17.49, "curve": 0.313, "c3": 0.699}, {"time": 1} ] }, "@leg-back-left": { @@ -33836,34 +41956,29 @@ "leg-front-right-IK": { "translate": [ {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 30.89, "y": 11.74, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": 42.9, "curve": 0, "c2": 0.2, "c3": 0.858}, - {"time": 0.25, "x": -123.77, "y": 159.27, "curve": 0, "c2": 0.3, "c3": 0.54}, {"time": 0.3667, "x": 318.15, "y": 124.76}, - {"time": 0.4667, "x": 422.01, "y": 262.03, "curve": 1, "c4": 0.1}, {"time": 0.5, "x": 241.75, "y": 631.12}, {"time": 0.6667, "x": 249.18, "y": 631.34, "curve": "stepped"}, - {"time": 0.6833, "x": -136.29, "y": 410.95, "curve": "stepped"}, {"time": 0.7, "x": -72.54, "y": 181.91, "curve": "stepped"}, - {"time": 0.7167, "x": 16.74, "y": 109.99, "curve": 0, "c2": 0.18, "c3": 0.424, "c4": 0.59}, {"time": 0.8333} + {"time": 0.25, "x": -172.87, "y": 28.32, "curve": 0, "c2": 0.3, "c3": 0.698}, {"time": 0.4667, "x": 261.69, "y": 187.13, "curve": 1, "c4": 0.1}, {"time": 0.5, "x": 166.41, "y": 465.39}, + {"time": 0.6667, "x": 101.69, "y": 451.97, "curve": "stepped"}, {"time": 0.7, "x": -101.81, "y": 172.32, "curve": "stepped"}, {"time": 0.7167} ] }, "leg-back-left-IK": { "translate": [ - {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 80.9, "curve": 0.161, "c3": 0.854}, {"time": 0.1667, "x": 49.4, "curve": 0, "c2": 0.2, "c3": 0.858}, - {"time": 0.25, "x": -145.54, "y": 113.45, "curve": 0, "c2": 0.1, "c3": 0.853}, {"time": 0.3667, "x": -120.72, "y": 618.84}, - {"time": 0.4667, "x": -238.23, "y": 753.99, "curve": 1, "c4": 0.1}, {"time": 0.5, "x": -721.75, "y": 409.86}, - {"time": 0.6667, "x": -738.87, "y": 398.15, "curve": 0.49, "c3": 0.806, "c4": 0.36}, {"time": 0.6833, "x": -445.21, "y": 13.62, "curve": 0.73, "c2": 0.24, "c4": 0.59}, - {"time": 0.7, "x": -82.16, "y": 7.42, "curve": "stepped"}, {"time": 0.7167} + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 80.9, "curve": 0.161, "c3": 0.854}, {"time": 0.1667, "x": 72.25, "curve": 0, "c2": 0.2, "c3": 0.858}, + {"time": 0.25, "x": -96.78, "y": 27.51, "curve": 0, "c2": 0.3, "c3": 0.698}, {"time": 0.4667, "x": -250.56, "y": 568.36, "curve": 1, "c4": 0.1}, {"time": 0.5, "x": -654.65, "y": 234.55}, + {"time": 0.6667, "x": -665.01, "y": 210.09, "curve": "stepped"}, {"time": 0.7, "x": -61.52, "y": -3.55, "curve": "stepped"}, {"time": 0.7167} ] }, "@leg-front-right": { "translate": [ {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 4.31, "y": 11.86, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.1667, "x": -1.88, "y": -12.2, "curve": 0, "c2": 0.2, "c3": 0.858}, {"time": 0.25, "x": -1.86, "y": -9.26, "curve": "stepped"}, - {"time": 0.7167, "x": -1.86, "y": -9.26, "curve": 0.306, "c4": 0.8}, {"time": 0.8333, "x": -4.61, "y": -38.35, "curve": 0.313, "c3": 0.699}, {"time": 1} + {"time": 0.1667, "x": -10.19, "y": -4.67, "curve": 0, "c2": 0.2, "c3": 0.858}, {"time": 0.25, "curve": "stepped"}, {"time": 0.7167, "curve": 0.464, "c4": 0.7}, + {"time": 0.8333, "x": -4.16, "y": -33.18, "curve": 0.313, "c3": 0.699}, {"time": 1} ] }, "leg-front-left-IK": { "translate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "x": 8.25, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": 42.9, "curve": 0, "c2": 0.2, "c3": 0.858}, - {"time": 0.25, "x": -179, "y": 123.81, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3667, "x": 40.26, "y": 484.21}, {"time": 0.4667, "x": -9.53, "y": 607.64, "curve": 1, "c4": 0.1}, - {"time": 0.5, "x": -392.96, "y": 497.2}, {"time": 0.6667, "x": -405.58, "y": 496.3, "curve": "stepped"}, {"time": 0.6833, "x": -344.4, "y": 182.63, "curve": "stepped"}, - {"time": 0.7, "x": -108.47, "y": 46.07, "curve": "stepped"}, {"time": 0.7167} + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "x": 42.22, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": 42.9, "curve": 0, "c2": 0.2, "c3": 0.858}, + {"time": 0.25, "x": -192.09, "y": 31.17, "curve": 0, "c2": 0.3, "c3": 0.698}, {"time": 0.4667, "x": -33.07, "y": 448.19, "curve": 1, "c4": 0.1}, {"time": 0.5, "x": -325.8, "y": 359.06}, + {"time": 0.6667, "x": -307.09, "y": 359.93, "curve": "stepped"}, {"time": 0.7, "x": -83.89, "y": 65.11, "curve": "stepped"}, {"time": 0.7167} ] }, "tail": { @@ -33880,13 +41995,9 @@ ] } }, - "events": [{"time": 0.4167, "name": "start-attack"}, {"time": 0.5, "name": "hit"}, {"time": 0.6667, "name": "hit"}] + "events": [{"time": 0.4167, "name": "start-attack"}, {"time": 0.5, "name": "hit"}] }, - "2626719915": { - "slots": { - "eyes": {"attachment": [{"time": 0.0167, "name": "eyes-angry"}, {"time": 0.9167, "name": "eyes"}]}, - "mouth": {"attachment": [{"time": 0.0167, "name": "mouth-bite"}, {"time": 0.1833, "name": "mouth-open"}, {"time": 0.5, "name": "mouth-bite"}, {"time": 0.9167, "name": "mouth"}]} - }, + "3663734631": { "bones": { "@pivot-back": { "rotate": [ @@ -33906,41 +42017,41 @@ "leg-front-right-IK": { "translate": [ {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 30.89, "y": 11.74, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": 42.9, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.25, "x": -172.87, "y": 28.32, "curve": "stepped"}, {"time": 0.2667, "x": 355.74, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.4833, "x": 374.5, "curve": "stepped"}, - {"time": 0.5, "x": 488.71, "y": 62.54, "curve": 0.306, "c3": 0.695}, {"time": 0.6667, "x": 490.35, "y": 93.63, "curve": "stepped"}, {"time": 0.7, "x": -152.3, "curve": "stepped"}, - {"time": 0.8333, "x": -152.3, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1} + {"time": 0.25, "x": -172.87, "y": 28.32, "curve": "stepped"}, {"time": 0.2667, "x": 224.47, "y": -9.31, "curve": "stepped"}, + {"time": 0.4833, "x": 224.47, "y": -9.31, "curve": "stepped"}, {"time": 0.5, "x": 219.47, "curve": "stepped"}, {"time": 0.6667, "x": 219.47, "curve": "stepped"}, + {"time": 0.7, "x": -152.3, "curve": "stepped"}, {"time": 0.8333, "x": -152.3, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1} ] }, "leg-front-left-IK": { "translate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "x": 8.25, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": 42.9, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.25, "x": -192.09, "y": 31.17, "curve": "stepped"}, {"time": 0.2667, "x": -280.98, "y": 58.99, "curve": 0.306, "c3": 0.695}, - {"time": 0.4833, "x": -315.94, "y": 61.17, "curve": "stepped"}, {"time": 0.5, "x": -170.67, "curve": "stepped"}, {"time": 0.6667, "x": -170.67, "curve": "stepped"}, + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "x": 43.18, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": 42.9, "y": -3.49, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.25, "x": -192.09, "y": 31.17, "curve": "stepped"}, {"time": 0.2667, "x": -277.01, "y": 66.37, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.4833, "x": -274.01, "y": 75.85, "curve": "stepped"}, {"time": 0.5, "x": -170.67, "curve": "stepped"}, {"time": 0.6667, "x": -170.67, "curve": "stepped"}, {"time": 0.7, "x": -151.12, "curve": "stepped"}, {"time": 0.8333, "x": -151.12, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1} ] }, "@leg-front-left": { "translate": [ - {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "x": -4.8, "y": 21.17, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.1667, "x": -0.53, "y": 0.11, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "x": -1, "y": -5.53, "curve": "stepped"}, - {"time": 0.2667, "x": 2.26, "y": 14.19, "curve": "stepped"}, {"time": 0.4833, "x": 2.26, "y": 14.19, "curve": "stepped"}, {"time": 0.5, "x": 3.58, "y": 7.39, "curve": "stepped"}, - {"time": 0.6667, "x": 3.58, "y": 7.39, "curve": "stepped"}, {"time": 0.7, "x": -1, "y": -5.53, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.8333, "x": -0.91, "y": -4.54, "curve": 0.315, "c4": 0.8}, {"time": 1} + {"curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.0833, "x": -2.8, "y": -2.2, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.1667, "x": -0.62, "y": -3.38, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "x": -1, "y": -5.53, "curve": "stepped"}, + {"time": 0.2667, "x": 4, "y": -0.66, "curve": "stepped"}, {"time": 0.4833, "x": 4, "y": -0.66, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.5, "x": 4.53, "y": 2.49, "curve": "stepped"}, {"time": 0.6667, "x": 4.53, "y": 2.49, "curve": "stepped"}, + {"time": 0.7, "x": -1, "y": -5.53, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.8333, "x": -0.91, "y": -4.54, "curve": 0.315, "c4": 0.8}, {"time": 1} ] }, "@leg-back-left": { "translate": [ - {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 0.67, "y": -7.85, "curve": 0.161, "c3": 0.854}, {"time": 0.1667, "x": 0.53, "y": -13.09, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.25, "curve": "stepped"}, {"time": 0.2667, "x": -16.19, "y": -13.84, "curve": "stepped"}, {"time": 0.4833, "x": -16.19, "y": -13.84, "curve": "stepped"}, - {"time": 0.5, "x": -2.2, "y": -22.7}, {"time": 0.6667, "x": -0.28, "y": -26.94, "curve": "stepped"}, {"time": 0.7} + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 0.67, "y": -7.85, "curve": 0.161, "c3": 0.854}, {"time": 0.1667, "x": 0.61, "y": -9.9, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.25, "curve": "stepped"}, {"time": 0.2667, "x": -1.82, "y": 0.09}, {"time": 0.4833, "x": -6.6, "y": 4.03, "curve": "stepped"}, + {"time": 0.5, "x": 10.86, "y": -7.65, "curve": "stepped"}, {"time": 0.6667, "x": 10.86, "y": -7.65, "curve": "stepped"}, {"time": 0.7} ] }, "leg-back-left-IK": { "translate": [ - {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 80.9, "curve": 0.161, "c3": 0.854}, {"time": 0.1667, "x": 49.4, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.25, "x": -96.78, "y": 27.51, "curve": "stepped"}, {"time": 0.2667, "x": -635.14, "y": 132.21, "curve": 0.306, "c3": 0.695}, - {"time": 0.4833, "x": -660.78, "y": 143.78, "curve": "stepped"}, {"time": 0.5, "x": -556.99, "y": -8.43, "curve": 0, "c2": 0.3, "c3": 0.544}, - {"time": 0.6667, "x": -552.72, "y": -5.12, "curve": "stepped"}, {"time": 0.7, "x": -130.76, "curve": "stepped"}, {"time": 0.8333, "x": -130.76, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 80.9, "curve": 0.161, "c3": 0.854}, {"time": 0.1667, "x": 72.57, "y": -3.2, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.25, "x": -106.8, "y": 17.49, "curve": "stepped"}, {"time": 0.2667, "x": -654.94, "y": 154.36, "curve": 0, "c2": 0.2, "c3": 0.694}, + {"time": 0.4833, "x": -669.36, "y": 180.24, "curve": "stepped"}, {"time": 0.5, "x": -541.29, "y": -24.41, "curve": "stepped"}, + {"time": 0.6667, "x": -541.29, "y": -24.41, "curve": "stepped"}, {"time": 0.7, "x": -130.76, "curve": "stepped"}, {"time": 0.8333, "x": -130.76, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 1} ] }, @@ -33948,9 +42059,9 @@ "translate": [ {"curve": 0, "c2": 0.3, "c3": 0.544}, {"time": 0.0833, "x": 4.31, "y": 11.86, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.1667, "x": -10.19, "y": -4.67, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.25, "x": -1.86, "y": -9.26, "curve": "stepped"}, - {"time": 0.2667, "x": -18.56, "y": -34.96, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.4833, "x": -13.51, "y": -17.45, "curve": "stepped"}, {"time": 0.5, "x": -4.07, "y": 8.84}, - {"time": 0.6667, "x": -1.39, "y": 0.5, "curve": "stepped"}, {"time": 0.7, "x": -1.86, "y": -9.26, "curve": 0, "c2": 0.2, "c3": 0.694}, - {"time": 0.8333, "x": -2.25, "y": -13.72, "curve": 0.315, "c4": 0.8}, {"time": 1} + {"time": 0.2667, "x": -5.58, "y": 2.65, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.4833, "x": -3.84, "y": 7.68, "curve": "stepped"}, + {"time": 0.5, "x": -8.1, "y": 29.66, "curve": "stepped"}, {"time": 0.6667, "x": -8.1, "y": 29.66, "curve": "stepped"}, + {"time": 0.7, "x": -1.86, "y": -9.26, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.8333, "x": -2.25, "y": -13.72, "curve": 0.315, "c4": 0.8}, {"time": 1} ] }, "@shadow": { @@ -33979,17 +42090,13 @@ }, "events": [{"time": 0.3333, "name": "start-attack"}, {"time": 0.5, "name": "hit"}] }, - "660880126": { - "slots": { - "eyes": {"attachment": [{"time": 0.05, "name": "eyes-angry"}, {"time": 0.6667, "name": "eyes-shut"}, {"time": 0.75, "name": "eyes"}]}, - "mouth": {"attachment": [{"time": 0.05, "name": "mouth-bite"}, {"time": 0.2667, "name": "mouth-open"}, {"time": 0.55, "name": "mouth-bite"}, {"time": 0.75, "name": "mouth"}]} - }, + "1213410473": { "bones": { "@leg-front-right": { "translate": [ - {"curve": 0, "c2": 0.4, "c3": 0.383}, {"time": 0.25, "x": -1.86, "y": -9.26, "curve": "stepped"}, {"time": 0.3167, "x": -1.86, "y": -9.26, "curve": "stepped"}, - {"time": 0.3333, "x": -1.99, "y": -1.73}, {"time": 0.5, "x": -2.65, "y": -7.47, "curve": "stepped"}, {"time": 0.55, "x": -2.13, "y": 6.97, "curve": 0.306, "c3": 0.695}, - {"time": 0.6667, "x": 13.75, "y": -28.79, "curve": 0, "c2": 0.3, "c3": 0.54}, {"time": 0.8333} + {"curve": 0, "c2": 0.4, "c3": 0.383}, {"time": 0.25, "x": -2.2, "y": -15.65, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3167, "x": -1.86, "y": -9.26, "curve": "stepped"}, + {"time": 0.3333, "x": -2.24, "y": 13.67, "curve": "stepped"}, {"time": 0.5333, "x": -2.24, "y": 13.67, "curve": "stepped"}, + {"time": 0.55, "x": -2.12, "y": 6.47, "curve": 0.313, "c3": 0.699}, {"time": 0.6667, "x": -3.13, "y": -23.62, "curve": 0, "c2": 0.3, "c3": 0.54}, {"time": 0.8333} ] }, "tail": { @@ -34016,7 +42123,7 @@ "translate": [ {"curve": 0, "c2": 0.4, "c3": 0.383}, {"time": 0.25, "x": -1, "y": -5.53, "curve": "stepped"}, {"time": 0.3167, "x": -1, "y": -5.53, "curve": "stepped"}, {"time": 0.3333, "x": -1.12, "y": 1.52, "curve": "stepped"}, {"time": 0.55, "x": -1.12, "y": 1.52, "curve": 0.313, "c3": 0.699}, - {"time": 0.6667, "x": -1, "y": -5.53, "curve": 0, "c2": 0.3, "c3": 0.54}, {"time": 0.8333} + {"time": 0.6667, "x": -1, "y": -5.53, "curve": 0.313, "c3": 0.699}, {"time": 0.8333} ] }, "@shadow": { @@ -34032,28 +42139,26 @@ }, "leg-front-left-IK": { "translate": [ - {"time": 0.25, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3167, "x": -192.09, "y": 31.17, "curve": "stepped"}, {"time": 0.3333, "x": -176.58, "y": 9.99, "curve": 0.31, "c4": 0.8}, - {"time": 0.5, "x": -211.11, "y": 5.88, "curve": "stepped"}, {"time": 0.55, "x": -180.48, "curve": "stepped"}, {"time": 0.6667, "x": -180.48, "curve": 0.313, "c3": 0.699}, - {"time": 0.8333} + {"time": 0.25, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3167, "x": -192.09, "y": 31.17, "curve": "stepped"}, {"time": 0.3333, "x": -162.19, "curve": "stepped"}, + {"time": 0.5, "x": -162.19, "curve": "stepped"}, {"time": 0.55, "x": -180.48, "curve": "stepped"}, {"time": 0.6667, "x": -180.48, "curve": 0.313, "c3": 0.699}, {"time": 0.8333} ] }, "leg-front-right-IK": { "translate": [ - {"time": 0.25, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3167, "x": -59.07, "y": 28.32, "curve": "stepped"}, {"time": 0.3333, "x": 476, "y": 29.47, "curve": 0.31, "c4": 0.8}, - {"time": 0.5, "x": 448.23, "y": 9.95, "curve": "stepped"}, {"time": 0.55, "x": -180.48, "curve": "stepped"}, {"time": 0.6667, "x": -180.48, "curve": 0.313, "c3": 0.699}, {"time": 0.8333} + {"time": 0.25, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3167, "x": -172.87, "y": 28.32, "curve": "stepped"}, {"time": 0.3333, "x": 301.16, "y": 16.82, "curve": 0.31, "c4": 0.8}, + {"time": 0.5, "x": 285.54, "y": 12.82, "curve": "stepped"}, {"time": 0.55, "x": -180.48, "curve": "stepped"}, {"time": 0.6667, "x": -180.48, "curve": 0.313, "c3": 0.699}, + {"time": 0.8333} ] }, "leg-back-left-IK": { "translate": [ - {"time": 0.25, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3167, "x": -96.78, "y": 27.51, "curve": "stepped"}, {"time": 0.3333, "x": -531.4, "y": 29.98, "curve": 0.31, "c4": 0.8}, - {"time": 0.5, "x": -566.3, "y": 31.56, "curve": "stepped"}, {"time": 0.55, "x": -134.74, "curve": "stepped"}, {"time": 0.6667, "x": -134.74, "curve": 0.313, "c3": 0.699}, + {"time": 0.25, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.3167, "x": -91.18, "y": 21.9, "curve": "stepped"}, {"time": 0.3333, "x": -595.64, "y": 5, "curve": 0.31, "c4": 0.8}, + {"time": 0.5, "x": -626.51, "y": 11.36, "curve": "stepped"}, {"time": 0.55, "x": -134.74, "curve": "stepped"}, {"time": 0.6667, "x": -134.74, "curve": 0.313, "c3": 0.699}, {"time": 0.8333} ] }, "@pivot-main": {"translate": [{"time": 0.6667, "curve": 0, "c2": 0.2, "c3": 0.694}, {"time": 0.75, "y": 31, "curve": 0.315, "c4": 0.8}, {"time": 0.8333}]}, - "@leg-back-left": { - "translate": [{"time": 0.3167, "curve": "stepped"}, {"time": 0.3333, "x": -9.88, "y": -22.87}, {"time": 0.5, "x": -15.32, "y": -26.13, "curve": "stepped"}, {"time": 0.55}] - } + "@leg-back-left": {"translate": [{"time": 0.3167, "curve": "stepped"}, {"time": 0.3333, "x": -0.06, "y": 3.33, "curve": "stepped"}, {"time": 0.5, "x": -0.06, "y": 3.33}, {"time": 0.55}]} }, "events": [{"time": 0.25, "name": "start-attack"}, {"time": 0.3333, "name": "hit"}] } diff --git a/Assets/AxieInfinity/AxieMixerUnity/Resources/axie-2d-v3-stuff/axie-2d-v3-stuff-samples.json b/Assets/AxieInfinity/AxieMixerUnity/Resources/axie-2d-v3-stuff/axie-2d-v3-stuff-samples.json index f8f9f9a..5687585 100644 --- a/Assets/AxieInfinity/AxieMixerUnity/Resources/axie-2d-v3-stuff/axie-2d-v3-stuff-samples.json +++ b/Assets/AxieInfinity/AxieMixerUnity/Resources/axie-2d-v3-stuff/axie-2d-v3-stuff-samples.json @@ -1,6 +1,6 @@ { "version": 1, - "buildTime": "2022.12.23.18.35.14", + "buildTime": "2024.02.22.15.55.21", "accessoryAnims": { "body-air": { "body-air1a": { @@ -62,6 +62,7 @@ "leg-back-left": ["tail"], "mouth-accessory": ["eyes", "eyes-upper", "mouth"], "mouth": ["eyes", "eyes-upper"], + "eyes": ["horn"], "horn": [ "body-mfuzzy", "body-class", "body-id", "ear-left", "ear-right", "ear-right-upper", "ear-right-under", "ear-right-bubble-02", "ear-right-bubble-02", "ear-left-upper", "ear-left-under", "ear-left-bubble", "ear-left-bubble-02", "ear-left-bubble-02", "body-braid2" @@ -83,36 +84,36 @@ "body-hip": [] }, "items": { - "aquatic-08": { + "xmas-01-lv2": { "bones": [ {"name": "@root"}, {"name": "@pivot-main", "parent": "@root"}, {"name": "@pivot-back", "parent": "@pivot-main", "x": 205, "y": 180, "color": "ff0101ff"}, {"name": "@pivot-center", "parent": "@pivot-back", "x": -215.11, "y": -5.25, "color": "ff0101ff"}, {"name": "@axie", "parent": "@pivot-center", "length": 213.28, "rotation": 179.04, "x": 196.39, "y": 5.16}, {"name": "@back", "parent": "@axie", "rotation": -179.04, "x": 37.63, "y": -198.19}, - {"name": "back", "parent": "@back", "length": 149.41, "rotation": 60, "x": 6.8, "y": 15, "transform": "noScale"}, + {"name": "back", "parent": "@back", "length": 149.41, "rotation": 80, "x": -71.97, "y": 39.3, "transform": "noScale"}, {"name": "@body", "parent": "@axie", "length": 226.28, "rotation": -8.35, "x": 224.58, "y": -0.53}, {"name": "@ear-left", "parent": "@axie", "rotation": -179.04, "x": 112.7, "y": -203.23}, - {"name": "ear-left", "parent": "@ear-left", "length": 113.61, "rotation": -10, "x": 21, "y": -50, "transform": "noScale"}, + {"name": "body-pattern", "parent": "@body", "rotation": -170.69, "x": -267.21, "y": -49.4, "transform": "noScale"}, + {"name": "ear-left", "parent": "@ear-left", "length": 113.61, "rotation": -60, "x": 23, "y": -29, "transform": "noScale"}, {"name": "@ear-right", "parent": "@axie", "rotation": -179.04, "x": 405.28, "y": -235.33}, - {"name": "ear-right", "parent": "@ear-right", "length": 119.39, "rotation": 191, "x": -60, "y": -92, "transform": "noScale"}, + {"name": "ear-right", "parent": "@ear-right", "length": 119.39, "rotation": -122, "x": -25, "y": -52, "transform": "noScale"}, {"name": "@eyes", "parent": "@axie", "rotation": -179.04, "x": 384.24, "y": -113.67}, {"name": "@horn", "parent": "@axie", "rotation": -179.04, "x": 327.92, "y": -214.63}, {"name": "horn", "parent": "@horn", "length": 176.72, "rotation": 90, "y": 18, "transform": "noScale"}, - {"name": "@leg-back-left", "parent": "@axie", "length": 76.4, "rotation": 100.96, "x": -15.3, "y": 102.56, "transform": "noScale"}, - {"name": "@leg-front-left", "parent": "@axie", "length": 51.19, "rotation": 93.86, "x": 134.77, "y": 149.55, "transform": "noScale"}, - {"name": "@leg-front-right", "parent": "@axie", "length": 74.83, "rotation": 83.2, "x": 382.95, "y": 121.78, "transform": "noScale"}, - {"name": "@mouth", "parent": "@axie", "rotation": -179.04, "x": 382.23, "y": 6.31}, - {"name": "body-pattern", "parent": "@body", "rotation": -170.69, "x": -267.21, "y": -49.4, "transform": "noScale"}, {"name": "@shadow", "parent": "@root", "color": "e6d713ff"}, + {"name": "@leg-back-left", "parent": "@axie", "length": 76.33, "rotation": 97.07, "x": -15.3, "y": 102.56, "transform": "noScale"}, + {"name": "@leg-front-left", "parent": "@axie", "length": 68.35, "rotation": 83.02, "x": 135.05, "y": 132.6, "transform": "noScale"}, + {"name": "@leg-front-right", "parent": "@axie", "length": 70.32, "rotation": 92.53, "x": 382.95, "y": 121.78, "transform": "noScale"}, + {"name": "@mouth", "parent": "@axie", "rotation": -179.04, "x": 382.23, "y": 6.31}, {"name": "@shadow", "parent": "@root", "color": "e6d713ff"}, {"name": "@tail", "parent": "@axie", "rotation": -179.04, "x": -11.76, "y": 61.72}, - {"name": "tail", "parent": "@tail", "length": 203.67, "rotation": -5, "x": 36, "y": 52, "transform": "noScale"}, + {"name": "tail", "parent": "@tail", "length": 203.67, "rotation": -15, "x": 45, "y": 34, "transform": "noScale"}, {"name": "leg-front-right-IK", "parent": "@pivot-main", "x": -195.99, "y": -10.21, "color": "ff3f00ff"}, {"name": "leg-front-left-IK", "parent": "@pivot-main", "x": 42.3, "y": -18.42, "color": "ff3f00ff"}, {"name": "leg-back-left-IK", "parent": "@pivot-main", "x": 208.57, "y": 1.35, "color": "ff3f00ff"}, {"name": "@ball", "parent": "@root", "y": 191, "color": "f3981bff"}, {"name": "ball", "parent": "@ball", "y": -191, "color": "f4a729ff"} ], "slots": [ - {"name": "shadow", "bone": "@shadow", "attachment": "shadow"}, {"name": "ball", "bone": "ball"}, {"name": "leg-front-right", "bone": "@leg-front-right", "attachment": "leg-front-right"}, + {"name": "shadow", "bone": "@shadow", "attachment": "shadow"}, {"name": "ball", "bone": "ball"}, {"name": "leg-front-right", "bone": "@leg-front-right", "attachment": "xmas-leg-front-right"}, {"name": "ear-right", "bone": "ear-right", "attachment": "ear-right"}, {"name": "tail", "bone": "tail", "attachment": "tail"}, {"name": "back", "bone": "back", "attachment": "back"}, - {"name": "leg-back-left", "bone": "@leg-back-left", "attachment": "leg-back-left"}, {"name": "body", "bone": "@body", "attachment": "body"}, {"name": "body-pattern", "bone": "body-pattern"}, - {"name": "leg-front-left", "bone": "@leg-front-left", "attachment": "leg-front-left"}, {"name": "eyes", "bone": "@eyes", "attachment": "eyes"}, - {"name": "mouth", "bone": "@mouth", "attachment": "mouth"}, {"name": "ear-left", "bone": "ear-left", "attachment": "ear-left"}, {"name": "horn", "bone": "horn", "attachment": "horn"} + {"name": "leg-front-left", "bone": "@leg-front-left", "attachment": "xmas-leg-front-left"}, {"name": "leg-back-left", "bone": "@leg-back-left", "attachment": "xmas-leg-back-left"}, + {"name": "body", "bone": "@body", "attachment": "body-xmas-01"}, {"name": "body-pattern", "bone": "body-pattern"}, {"name": "eyes", "bone": "@eyes", "attachment": "eyes"}, + {"name": "mouth", "bone": "@mouth", "attachment": "mouth"}, {"name": "horn", "bone": "horn", "attachment": "horn"}, {"name": "ear-left", "bone": "ear-left", "attachment": "ear-left"} ], "ik": [ {"name": "leg-back-left-IK", "order": 2, "bones": ["@leg-back-left"], "target": "leg-back-left-IK"}, @@ -123,240 +124,206 @@ { "name": "default", "attachments": { - "back": {"back": {"x": 63.24, "y": 29.61, "rotation": -60, "width": 282, "height": 269, "path": "aquatic-08.back"}}, - "ear-left": {"ear-left": {"x": 46.74, "y": -7.42, "rotation": 10, "width": 168, "height": 140, "path": "aquatic-08.ear-left"}}, - "ear-right": {"ear-right": {"x": 41.94, "y": 4.82, "rotation": 169, "width": 148, "height": 127, "path": "aquatic-08.ear-right"}}, + "back": {"back": {"x": 76.38294117647058, "y": -52.933529411764695, "rotation": -80, "width": 315.29411764705884, "height": 277.6470588235294, "path": "xmas-01-lv2.back"}}, + "ear-left": {"ear-left": {"x": 96.00470588235294, "y": 8.152352941176463, "rotation": 60, "width": 216.47058823529412, "height": 228.23529411764707, "path": "xmas-01-lv2.ear-left"}}, + "ear-right": { + "ear-right": {"x": 113.64882352941177, "y": -17.82705882352942, "rotation": 122, "width": 225.88235294117646, "height": 235.29411764705884, "path": "xmas-01-lv2.ear-right"} + }, "eyes": { - "eyes": {"x": 29.75, "y": 18.77, "width": 286, "height": 124, "path": "aquatic-08.eyes"}, - "eyes-angry": {"x": 29.75, "y": 13.77, "width": 286, "height": 114, "path": "aquatic-08.eyes-angry"}, - "eyes-happy": {"x": 29.75, "y": 23.27, "width": 286, "height": 133, "path": "aquatic-08.eyes-happy"}, - "eyes-shut": {"x": 29.75, "y": 18.77, "width": 286, "height": 124, "path": "aquatic-08.eyes-shut"} + "eyes": {"x": 41.861176470588234, "y": 12.748235294117638, "width": 334.11764705882354, "height": 178.82352941176472, "path": "xmas-01-lv2.eyes"}, + "eyes-angry": {"x": 42.33176470588235, "y": 12.748235294117638, "width": 421.1764705882353, "height": 178.82352941176472, "path": "xmas-01-lv2.eyes-angry"}, + "eyes-happy": {"x": 42.33176470588235, "y": 12.748235294117638, "width": 421.1764705882353, "height": 178.82352941176472, "path": "xmas-01-lv2.eyes-happy"}, + "eyes-shut": {"x": 42.33176470588235, "y": 12.748235294117638, "width": 421.1764705882353, "height": 178.82352941176472, "path": "xmas-01-lv2.eyes-shut"} + }, + "horn": { + "horn": {"x": 163.7776470588235, "y": 21.109411764705882, "rotation": -90, "width": 211.76470588235296, "height": 352.94117647058823, "path": "xmas-01-lv2.horn"}, + "horn-blink": {"x": 170.36588235294118, "y": 29.697647058823534, "rotation": -90, "width": 230.58823529411765, "height": 371.7647058823529, "path": "xmas-01-lv2.horn-blink"} }, - "horn": {"horn": {"x": 81.77, "y": -0.25, "rotation": -90, "width": 265, "height": 200, "path": "aquatic-08.horn"}}, "mouth": { - "mouth": {"x": 43.75, "y": 40.77, "width": 176, "height": 158, "path": "aquatic-08.mouth"}, - "mouth-bite": {"x": 35.75, "y": 37.77, "width": 228, "height": 158, "path": "aquatic-08.mouth-bite"}, - "mouth-open": {"x": 42.25, "y": 7.27, "width": 187, "height": 171, "path": "aquatic-08.mouth-open"}, - "mouth-smile": {"x": 17.75, "y": 35.77, "width": 230, "height": 158, "path": "aquatic-08.mouth-smile"} + "mouth": {"x": 21.15529411764706, "y": 83.21882352941176, "width": 183.52941176470588, "height": 145.88235294117646, "path": "xmas-01-lv2.mouth"}, + "mouth-bite": {"x": 22.97882352941177, "y": 81.9835294117647, "width": 185.88235294117646, "height": 202.35294117647058, "path": "xmas-01-lv2.mouth-bite"}, + "mouth-blink": {"x": 21.15529411764706, "y": 97.27764705882352, "width": 183.52941176470588, "height": 171.76470588235296, "path": "xmas-01-lv2.mouth-blink"}, + "mouth-eat": {"x": 21.85294117647058, "y": 56.61764705882353, "width": 155.29411764705884, "height": 51.76470588235294, "path": "xmas-01-lv2.mouth-eat"}, + "mouth-open": {"x": 14.802352941176464, "y": 46.748235294117634, "width": 148.23529411764707, "height": 218.82352941176472, "path": "xmas-01-lv2.mouth-open"}, + "mouth-smile": {"x": 20.33176470588235, "y": 90.21882352941176, "width": 181.1764705882353, "height": 185.88235294117646, "path": "xmas-01-lv2.mouth-smile"} }, - "tail": {"tail": {"x": 88.3, "y": 9, "rotation": 5, "width": 268, "height": 223, "path": "aquatic-08.tail"}} + "tail": {"tail": {"x": 111.53941176470589, "y": -0.28, "rotation": 15, "width": 312.94117647058823, "height": 240.0, "path": "xmas-01-lv2.tail"}} } } ], "events": {"hit": {}, "hit-buff": {}, "jump": {}, "start-attack": {}}, "keyAnimations": { - "activity/appear": "1023093953", + "activity/appear": "3921179016", "activity/bath": "3305387968", - "attack/ranged/cast-fly": "4180526371", - "attack/ranged/cast-high": "164191126", - "attack/ranged/cast-low": "198813017", + "attack/ranged/cast-fly": "3722823556", + "attack/ranged/cast-high": "3577703416", + "attack/ranged/cast-low": "1793942137", "attack/ranged/cast-multi": "151119", - "attack/ranged/cast-tail": "997902532", + "attack/ranged/cast-tail": "977217026", "activity/eat-bite": "1137807767", - "activity/eat-chew": "1988236421", + "activity/eat-chew": "2571197086", "activity/entrance": "3768378365", "defense/evade": "1735454995", "activity/evolve": "649307630", - "battle/get-buff": "1455190363", - "battle/get-debuff": "606904312", - "defense/hit-by-normal": "2045974966", - "defense/hit-by-normal-crit": "2130010601", - "defense/hit-by-normal-dramatic": "3823092125", - "defense/hit-by-ranged-attack": "2224561612", - "defense/hit-with-shield": "390714790", - "attack/melee/horn-gore": "1327954218", - "attack/melee/mouth-bite": "2237748264", + "battle/get-buff": "2993060391", + "battle/get-debuff": "2919546916", + "defense/hit-by-normal": "2695183231", + "defense/hit-by-normal-crit": "721863963", + "defense/hit-by-normal-dramatic": "2501809037", + "defense/hit-by-ranged-attack": "3309952905", + "defense/hit-with-shield": "228539860", + "attack/melee/horn-gore": "3177102970", + "attack/melee/mouth-bite": "1912445836", "action/move-back": "3766271173", "action/move-forward": "2945160014", - "attack/melee/multi-attack": "905926802", - "action/idle/normal": "1659336865", + "attack/melee/multi-attack": "2627626635", + "action/idle/normal": "1115875647", "attack/melee/normal-attack": "3305373483", "activity/prepare": "405864717", - "action/idle/random-01": "554401889", - "action/idle/random-02": "1085666627", - "action/idle/random-03": "2021333900", - "action/idle/random-04": "1003789695", + "action/idle/random-01": "880116349", + "action/idle/random-02": "2837464254", + "action/idle/random-03": "2146505268", + "action/idle/random-04": "3708365579", "action/idle/random-05": "2745614147", - "action/run": "1438840721", - "draft/run-origin": "3577885069", - "attack/melee/shrimp": "3833448733", + "action/run": "2297652214", + "draft/run-origin": "1973997258", + "attack/melee/shrimp": "244230390", + "status/sitting-duck": "1990830770", "activity/sleep": "100562494", - "attack/melee/tail-multi-slap": "3317139533", - "attack/melee/tail-roll": "3108617565", - "attack/melee/tail-smash": "519942130", - "attack/melee/tail-thrash": "628713175", + "status/stun": "2745614147", + "attack/melee/tail-multi-slap": "2905793214", + "attack/melee/tail-roll": "3678751400", + "attack/melee/tail-smash": "2662497262", + "attack/melee/tail-thrash": "2102433122", "activity/victory-pose-back-flip": "2227634241" } }, - "body-summer": { + "xmas-02-lv2": { "bones": [ {"name": "@root"}, {"name": "@pivot-main", "parent": "@root"}, {"name": "@pivot-back", "parent": "@pivot-main", "x": 205, "y": 180, "color": "ff0101ff"}, {"name": "@pivot-center", "parent": "@pivot-back", "x": -215.11, "y": -5.25, "color": "ff0101ff"}, {"name": "@axie", "parent": "@pivot-center", "length": 213.28, "rotation": 179.04, "x": 196.39, "y": 5.16}, {"name": "@back", "parent": "@axie", "rotation": -179.04, "x": 37.63, "y": -198.19}, + {"name": "back", "parent": "@back", "length": 149.41, "rotation": 48, "x": -58.98, "y": 59.3, "transform": "noScale"}, {"name": "@body", "parent": "@axie", "length": 226.28, "rotation": -8.35, "x": 224.58, "y": -0.53}, {"name": "@ear-left", "parent": "@axie", "rotation": -179.04, "x": 112.7, "y": -203.23}, - {"name": "@ear-right", "parent": "@axie", "rotation": -179.04, "x": 405.28, "y": -235.33}, {"name": "@eyes", "parent": "@axie", "rotation": -179.04, "x": 384.24, "y": -113.67}, - {"name": "@horn", "parent": "@axie", "rotation": -179.04, "x": 327.92, "y": -214.63}, - {"name": "@leg-back-left", "parent": "@axie", "length": 76.4, "rotation": 100.96, "x": -15.3, "y": 102.56, "transform": "noScale"}, - {"name": "@leg-front-left", "parent": "@axie", "length": 51.19, "rotation": 93.86, "x": 134.77, "y": 149.55, "transform": "noScale"}, - {"name": "@leg-front-right", "parent": "@axie", "length": 74.83, "rotation": 83.2, "x": 382.95, "y": 121.78, "transform": "noScale"}, - {"name": "@mouth", "parent": "@axie", "rotation": -179.04, "x": 382.23, "y": 6.31, "color": "abe323ff"}, - {"name": "body-pattern", "parent": "@body", "rotation": -170.69, "x": -267.21, "y": -49.4, "transform": "noScale"}, {"name": "@shadow", "parent": "@root", "color": "e6d713ff"}, - {"name": "@tail", "parent": "@axie", "rotation": -179.04, "x": -11.76, "y": 61.72}, {"name": "leg-front-right-IK", "parent": "@pivot-main", "x": -195.99, "y": -10.21, "color": "ff3f00ff"}, + {"name": "ear-left", "parent": "@ear-left", "length": 113.61, "rotation": 24, "x": -27, "y": -5, "transform": "noScale"}, + {"name": "@ear-right", "parent": "@axie", "rotation": -179.04, "x": 405.28, "y": -235.33}, + {"name": "ear-right", "parent": "@ear-right", "length": 119.39, "rotation": 148, "x": -15, "y": -44, "transform": "noScale"}, + {"name": "@eyes", "parent": "@axie", "rotation": -179.04, "x": 384.24, "y": -113.67}, {"name": "@horn", "parent": "@axie", "rotation": -179.04, "x": 327.92, "y": -214.63}, + {"name": "horn", "parent": "@horn", "length": 176.72, "rotation": 90, "y": 18, "transform": "noScale"}, + {"name": "@leg-back-left", "parent": "@axie", "length": 66.78, "rotation": 97.07, "x": -15.3, "y": 102.56, "transform": "noScale"}, + {"name": "@leg-front-left", "parent": "@axie", "length": 68.04, "rotation": 84.88, "x": 135.05, "y": 132.6, "transform": "noScale"}, + {"name": "@leg-front-right", "parent": "@axie", "length": 70.32, "rotation": 92.53, "x": 382.95, "y": 121.78, "transform": "noScale"}, + {"name": "@mouth", "parent": "@axie", "rotation": -179.04, "x": 382.23, "y": 6.31}, {"name": "@shadow", "parent": "@root", "color": "e6d713ff"}, + {"name": "@tail", "parent": "@axie", "rotation": -179.04, "x": -11.76, "y": 61.72}, + {"name": "tail", "parent": "@tail", "length": 203.67, "rotation": 3, "x": 15, "y": 20, "transform": "noScale"}, + {"name": "leg-front-right-IK", "parent": "@pivot-main", "x": -195.99, "y": -10.21, "color": "ff3f00ff"}, {"name": "leg-front-left-IK", "parent": "@pivot-main", "x": 42.3, "y": -18.42, "color": "ff3f00ff"}, {"name": "leg-back-left-IK", "parent": "@pivot-main", "x": 208.57, "y": 1.35, "color": "ff3f00ff"}, {"name": "@ball", "parent": "@root", "y": 191, "color": "f3981bff"}, - {"name": "ball", "parent": "@ball", "y": -191, "color": "f4a729ff"}, {"name": "@body-neck", "parent": "@pivot-center", "x": -161.89, "y": -53.75, "color": "ff0101ff"}, - {"name": "@body-ground", "parent": "@pivot-main", "x": 220, "transform": "noRotationOrReflection", "color": "ff0101ff"}, - {"name": "@body-hip", "parent": "@pivot-center", "x": 240.11, "y": 55.25, "color": "ff0101ff"}, - {"name": "@body-air", "parent": "@pivot-back", "x": 63, "y": 365, "transform": "noRotationOrReflection", "color": "ff0101ff"}, - {"name": "@body-cheek", "parent": "@pivot-center", "x": 15.11, "y": 47.25, "color": "ff0101ff"} + {"name": "ball", "parent": "@ball", "y": -191, "color": "f4a729ff"}, {"name": "body-bell", "parent": "@body", "rotation": -170.69, "x": 121.75, "y": 84.01} ], "slots": [ - {"name": "shadow", "bone": "@shadow", "attachment": "shadow"}, {"name": "ball", "bone": "ball"}, - {"name": "leg-front-right", "bone": "@leg-front-right", "attachment": "summer-leg-front-right"}, {"name": "leg-back-left", "bone": "@leg-back-left", "attachment": "summer-leg-back-left"}, - {"name": "body", "bone": "@body", "attachment": "body"}, {"name": "body-pattern", "bone": "body-pattern"}, - {"name": "leg-front-left", "bone": "@leg-front-left", "attachment": "summer-leg-front-left"}, {"name": "body-hip", "bone": "@body-hip", "attachment": "body-hip"}, - {"name": "body-neck", "bone": "@body-neck", "attachment": "body-neck"}, {"name": "body-ground", "bone": "@body-ground", "attachment": "body-ground"}, - {"name": "body-air", "bone": "@body-air", "attachment": "body-air"}, {"name": "body-cheek", "bone": "@body-cheek", "attachment": "body-cheek"} + {"name": "shadow", "bone": "@shadow", "attachment": "shadow"}, {"name": "ball", "bone": "ball"}, {"name": "leg-front-right", "bone": "@leg-front-right", "attachment": "xmas-leg-front-right"}, + {"name": "leg-front-left", "bone": "@leg-front-left", "attachment": "xmas-leg-front-left"}, {"name": "leg-back-left", "bone": "@leg-back-left", "attachment": "xmas-leg-back-left"}, + {"name": "ear-right", "bone": "ear-right", "attachment": "ear-right"}, {"name": "tail", "bone": "tail", "attachment": "tail"}, {"name": "tail-glow", "bone": "tail"}, + {"name": "back", "bone": "back", "attachment": "back"}, {"name": "body", "bone": "@body", "attachment": "body-xmas-01"}, {"name": "eyes", "bone": "@eyes", "attachment": "eyes"}, + {"name": "mouth", "bone": "@mouth", "attachment": "mouth"}, {"name": "horn", "bone": "horn", "attachment": "horn"}, {"name": "ear-left", "bone": "ear-left", "attachment": "ear-left"}, + {"name": "body-bell", "bone": "body-bell", "attachment": "body-bell"} ], "ik": [ - {"name": "leg-back-left-IK", "order": 3, "bones": ["@leg-back-left"], "target": "leg-back-left-IK"}, - {"name": "leg-front-left-IK", "order": 2, "bones": ["@leg-front-left"], "target": "leg-front-left-IK"}, + {"name": "leg-back-left-IK", "order": 2, "bones": ["@leg-back-left"], "target": "leg-back-left-IK"}, + {"name": "leg-front-left-IK", "order": 1, "bones": ["@leg-front-left"], "target": "leg-front-left-IK"}, {"name": "leg-front-right-IK", "bones": ["@leg-front-right"], "target": "leg-front-right-IK"} ], - "transform": [{"name": "@mouth", "order": 1, "bones": ["mouth-bubble"], "target": "@mouth", "x": -49.1, "y": 37.9, "rotateMix": 0, "translateMix": 0, "scaleMix": 0, "shearMix": 0}], "skins": [ { "name": "default", "attachments": { - "ball": {"ball": {"y": 191, "width": 393, "height": 390, "path": "body-normal.ball"}}, - "body": {"body": {"x": -1.32, "y": -73.7, "rotation": -170.69, "width": 677, "height": 507, "path": "body-summer.body"}}, - "leg-back-left": { - "summer-leg-back-left": {"x": 32.56, "y": -0.8, "rotation": 83.45, "width": 78, "height": 92, "path": "body-normal.summer-leg-back-left"}, - "summer-leg-back-left-long": {"x": 34.89, "y": -5.5, "rotation": 221.45, "width": 83, "height": 80, "path": "body-normal.summer-leg-back-left-long"}, - "summer-leg-back-left-stretch": {"x": 27.29, "y": 1.58, "rotation": 54.45, "width": 65, "height": 68, "path": "body-normal.summer-leg-back-left-stretch"} - }, - "leg-front-left": { - "summer-leg-front-left": {"x": 21.98, "y": 1.18, "rotation": 97.51, "width": 70, "height": 61, "path": "body-normal.summer-leg-front-left"}, - "summer-leg-front-left-long": {"x": 27.48, "y": -6.04, "rotation": -173.75, "width": 87, "height": 75, "path": "body-normal.summer-leg-front-left-long"}, - "summer-leg-front-left-stretch": {"x": 19.24, "y": -3.96, "rotation": 142.15, "width": 68, "height": 75, "path": "body-normal.summer-leg-front-left-stretch"} - }, - "leg-front-right": { - "summer-leg-front-right": {"x": 31.35, "y": -1.66, "rotation": 87.96, "width": 78, "height": 92, "path": "body-normal.summer-leg-front-right"}, - "summer-leg-front-right-long": {"x": 36.56, "y": -0.65, "rotation": 205.96, "width": 89, "height": 77, "path": "body-normal.summer-leg-front-right-long"}, - "summer-leg-front-right-stretch": {"x": 30.65, "y": 1.81, "rotation": 142.01, "width": 79, "height": 67, "path": "body-normal.summer-leg-front-right-stretch"} - }, - "shadow": {"shadow": {"width": 503, "height": 95, "path": "body-summer.shadow"}}, - "body-air": { - "body-air1a_00": {"x": 1.37, "y": 35.21, "width": 209.375, "height": 129.6875, "path": "body-accessory.body-air1a_00"}, - "body-air1a_01": {"x": 1.37, "y": 35.21, "width": 209.375, "height": 129.6875, "path": "body-accessory.body-air1a_01"}, - "body-air1a_02": {"x": 1.37, "y": 35.21, "width": 209.375, "height": 129.6875, "path": "body-accessory.body-air1a_02"}, - "body-air1a_03": {"x": 1.37, "y": 35.21, "width": 209.375, "height": 129.6875, "path": "body-accessory.body-air1a_03"}, - "body-air1a_04": {"x": 1.37, "y": 35.21, "width": 209.375, "height": 129.6875, "path": "body-accessory.body-air1a_04"}, - "body-air1a_05": {"x": 1.37, "y": 35.21, "width": 209.375, "height": 129.6875, "path": "body-accessory.body-air1a_05"}, - "body-air1a_06": {"x": 1.37, "y": 35.21, "width": 209.375, "height": 129.6875, "path": "body-accessory.body-air1a_06"}, - "body-air1a_07": {"x": 1.37, "y": 35.21, "width": 209.375, "height": 129.6875, "path": "body-accessory.body-air1a_07"}, - "body-air1b_00": {"x": 1.37, "y": 35.21, "width": 156.25, "height": 192.1875, "path": "body-accessory.body-air1b_00"}, - "body-air1b_01": {"x": 1.37, "y": 35.21, "width": 156.25, "height": 192.1875, "path": "body-accessory.body-air1b_01"}, - "body-air1b_02": {"x": 1.37, "y": 35.21, "width": 156.25, "height": 192.1875, "path": "body-accessory.body-air1b_02"}, - "body-air1c_00": {"x": 1.37, "y": 35.21, "width": 200.0, "height": 289.0625, "path": "body-accessory.body-air1c_00"}, - "body-air1c_01": {"x": 1.37, "y": 35.21, "width": 200.0, "height": 289.0625, "path": "body-accessory.body-air1c_01"}, - "body-air1c_02": {"x": 1.37, "y": 35.21, "width": 200.0, "height": 289.0625, "path": "body-accessory.body-air1c_02"}, - "body-air1c_03": {"x": 1.37, "y": 35.21, "width": 200.0, "height": 289.0625, "path": "body-accessory.body-air1c_03"}, - "body-air1d_00": {"x": 1.37, "y": 35.21, "width": 204.6875, "height": 273.4375, "path": "body-accessory.body-air1d_00"}, - "body-air1d_01": {"x": 1.37, "y": 35.21, "width": 204.6875, "height": 273.4375, "path": "body-accessory.body-air1d_01"}, - "body-air1d_02": {"x": 1.37, "y": 35.21, "width": 204.6875, "height": 273.4375, "path": "body-accessory.body-air1d_02"}, - "body-air1d_03": {"x": 1.37, "y": 35.21, "width": 204.6875, "height": 273.4375, "path": "body-accessory.body-air1d_03"} - }, - "body-cheek": { - "body-cheek1a": {"x": 1.52, "y": 3.04, "width": 60.9375, "height": 57.8125, "path": "body-accessory.body-cheek1a"}, - "body-cheek1b": {"x": 1.52, "y": 3.04, "width": 50.0, "height": 76.5625, "path": "body-accessory.body-cheek1b"}, - "body-cheek1c": {"x": 1.52, "y": 3.04, "width": 50.0, "height": 76.5625, "path": "body-accessory.body-cheek1c"}, - "body-cheek1d": {"x": 1.52, "y": 3.04, "width": 50.0, "height": 76.5625, "path": "body-accessory.body-cheek1d"}, - "body-cheek1e": {"x": 1.52, "y": 3.04, "width": 54.6875, "height": 79.6875, "path": "body-accessory.body-cheek1e"}, - "body-cheek1f": {"x": 1.52, "y": 3.04, "width": 56.25, "height": 57.8125, "path": "body-accessory.body-cheek1f"}, - "body-cheek1g": {"x": 1.52, "y": 3.04, "width": 104.6875, "height": 96.875, "path": "body-accessory.body-cheek1g"} + "back": {"back": {"x": 53.18, "y": 3.3576470588235363, "rotation": -48, "width": 320.0, "height": 371.7647058823529, "path": "xmas-02-lv2.back"}}, + "ear-left": {"ear-left": {"x": 32.934705882352944, "y": 70.95882352941177, "rotation": -24, "width": 136.47058823529412, "height": 185.88235294117646, "path": "xmas-02-lv2.ear-left"}}, + "ear-right": { + "ear-right": {"x": 74.62470588235294, "y": -45.59117647058823, "rotation": -148, "width": 136.47058823529412, "height": 185.88235294117646, "path": "xmas-02-lv2.ear-right"} }, - "body-ground": { - "body-ground1a_00": {"x": 4.75, "y": 123.01, "width": 254.6875, "height": 275.0, "path": "body-accessory.body-ground1a_00"}, - "body-ground1a_01": {"x": 4.75, "y": 123.01, "width": 254.6875, "height": 275.0, "path": "body-accessory.body-ground1a_01"}, - "body-ground1a_02": {"x": 4.75, "y": 123.01, "width": 254.6875, "height": 275.0, "path": "body-accessory.body-ground1a_02"}, - "body-ground1a_03": {"x": 4.75, "y": 123.01, "width": 254.6875, "height": 275.0, "path": "body-accessory.body-ground1a_03"} + "eyes": { + "eyes": {"x": 24.844117647058813, "y": 11.791176470588232, "width": 409.4117647058824, "height": 94.11764705882354, "path": "xmas-02-lv2.eyes"}, + "eyes-angry": {"x": 24.844117647058813, "y": 9.320588235294116, "width": 409.4117647058824, "height": 87.05882352941177, "path": "xmas-02-lv2.eyes-angry"}, + "eyes-happy": {"x": 24.844117647058813, "y": 12.85, "width": 409.4117647058824, "height": 80.0, "path": "xmas-02-lv2.eyes-happy"}, + "eyes-shut": {"x": 24.844117647058813, "y": 10.497058823529413, "width": 409.4117647058824, "height": 84.70588235294117, "path": "xmas-02-lv2.eyes-shut"} }, - "body-hip": { - "body-hip1a": {"x": -16, "width": 109.375, "height": 140.625, "path": "body-accessory.body-hip1a"}, - "body-hip1b": {"x": -16, "width": 210.9375, "height": 214.0625, "path": "body-accessory.body-hip1b"}, - "body-hip1c": {"x": -16, "width": 123.4375, "height": 157.8125, "path": "body-accessory.body-hip1c"}, - "body-hip1d": {"x": -16, "width": 203.125, "height": 143.75, "path": "body-accessory.body-hip1d"} + "horn": {"horn": {"x": 105.32058823529411, "y": 13.979411764705883, "rotation": -90, "width": 247.05882352941177, "height": 232.94117647058823, "path": "xmas-02-lv2.horn"}}, + "mouth": { + "mouth": {"x": 27.60882352941177, "y": 84.37941176470588, "width": 225.88235294117646, "height": 112.94117647058823, "path": "xmas-02-lv2.mouth"}, + "mouth-bite": {"x": 18.197058823529407, "y": 104.90882352941176, "width": 244.7058823529412, "height": 185.88235294117646, "path": "xmas-02-lv2.mouth-bite"}, + "mouth-blink": {"x": 18.197058823529407, "y": 104.90882352941176, "width": 244.7058823529412, "height": 185.88235294117646, "path": "xmas-02-lv2.mouth-blink"}, + "mouth-eat": {"x": 8.00294117647058, "y": 1.807647058823529, "width": 155.29411764705884, "height": 51.76470588235294, "path": "xmas-02-lv2.mouth-eat"}, + "mouth-open": {"x": 27.60882352941177, "y": 46.732352941176465, "width": 225.88235294117646, "height": 188.23529411764707, "path": "xmas-02-lv2.mouth-open"}, + "mouth-smile": {"x": 23.31470588235293, "y": 104.90882352941176, "width": 256.47058823529414, "height": 185.88235294117646, "path": "xmas-02-lv2.mouth-smile"} }, - "body-neck": { - "body-neck1a": {"x": -5.4, "y": -54.79, "width": 92.1875, "height": 96.875, "path": "body-accessory.body-neck1a"}, - "body-neck1b": {"x": -5.4, "y": -54.79, "width": 103.125, "height": 117.1875, "path": "body-accessory.body-neck1b"}, - "body-neck1c": {"x": -5.4, "y": -54.79, "width": 79.6875, "height": 110.9375, "path": "body-accessory.body-neck1c"}, - "body-neck1d": {"x": -5.4, "y": -54.79, "width": 121.875, "height": 101.5625, "path": "body-accessory.body-neck1d"}, - "body-neck1e": {"x": -5.4, "y": -54.79, "width": 89.0625, "height": 107.8125, "path": "body-accessory.body-neck1e"}, - "body-neck1f": {"x": -5.4, "y": -54.79, "width": 79.6875, "height": 79.6875, "path": "body-accessory.body-neck1f"} + "tail": {"tail": {"x": 110.74058823529411, "y": 49.53294117647058, "rotation": -3, "width": 287.05882352941177, "height": 275.29411764705884, "path": "xmas-02-lv2.tail"}}, + "tail-glow": { + "tail-glow-01": {"x": 75.05294117647058, "y": 20.764705882352928, "rotation": -3, "width": 355.29411764705884, "height": 336.47058823529414, "path": "xmas-02-lv2.tail-glow-01"}, + "tail-glow-02": {"x": 110.38058823529411, "y": 42.48411764705881, "rotation": -3, "width": 287.05882352941177, "height": 289.4117647058824, "path": "xmas-02-lv2.tail-glow-02"}, + "tail-glow-03": {"x": 127.25, "y": 48.66294117647058, "rotation": -3, "width": 320.0, "height": 275.29411764705884, "path": "xmas-02-lv2.tail-glow-03"} } } } ], "events": {"hit": {}, "hit-buff": {}, "jump": {}, "start-attack": {}}, "keyAnimations": { - "activity/appear": "1023093953", + "activity/appear": "3921179016", "activity/bath": "3305387968", - "attack/ranged/cast-fly": "4180526371", - "attack/ranged/cast-high": "164191126", - "attack/ranged/cast-low": "198813017", + "attack/ranged/cast-fly": "3722823556", + "attack/ranged/cast-high": "3577703416", + "attack/ranged/cast-low": "1793942137", "attack/ranged/cast-multi": "151119", - "attack/ranged/cast-tail": "3850719809", - "action/mix/ear-animation": "4086061935", + "attack/ranged/cast-tail": "977217026", "activity/eat-bite": "1137807767", - "activity/eat-chew": "1988236421", + "activity/eat-chew": "2571197086", "activity/entrance": "3768378365", "defense/evade": "1735454995", "activity/evolve": "649307630", - "action/mix/eyes-animation": "3799301307", - "battle/get-buff": "1455190363", - "battle/get-debuff": "606904312", - "defense/hit-by-normal": "2045974966", - "defense/hit-by-normal-crit": "2130010601", - "defense/hit-by-normal-dramatic": "3823092125", - "defense/hit-by-ranged-attack": "2224561612", - "defense/hit-with-shield": "390714790", - "attack/melee/horn-gore": "1327954218", - "attack/melee/mouth-bite": "2237748264", + "battle/get-buff": "2993060391", + "battle/get-debuff": "2919546916", + "defense/hit-by-normal": "2695183231", + "defense/hit-by-normal-crit": "721863963", + "defense/hit-by-normal-dramatic": "2501809037", + "defense/hit-by-ranged-attack": "3309952905", + "defense/hit-with-shield": "228539860", + "attack/melee/horn-gore": "3177102970", + "attack/melee/mouth-bite": "1912445836", "action/move-back": "3766271173", "action/move-forward": "2945160014", - "attack/melee/multi-attack": "3774600630", - "action/idle/normal": "3178494426", + "attack/melee/multi-attack": "2627626635", + "action/idle/normal": "568166623", "attack/melee/normal-attack": "3305373483", - "action/mix/normal-mouth-animation": "1178295570", "activity/prepare": "405864717", - "action/idle/random-01": "554401889", - "action/idle/random-02": "3634120758", - "action/idle/random-03": "2021333900", - "action/idle/random-04": "1003789695", + "action/idle/random-01": "880116349", + "action/idle/random-02": "3151577093", + "action/idle/random-03": "2146505268", + "action/idle/random-04": "3708365579", "action/idle/random-05": "2745614147", - "action/run": "3942433225", - "draft/run-origin": "237238075", - "attack/melee/shrimp": "3833448733", + "action/run": "378584637", + "draft/run-origin": "1973997258", + "attack/melee/shrimp": "244230390", + "status/sitting-duck": "1990830770", "activity/sleep": "100562494", - "attack/melee/tail-multi-slap": "3317139533", - "attack/melee/tail-roll": "3108617565", - "attack/melee/tail-smash": "519942130", - "attack/melee/tail-thrash": "628713175", + "status/stun": "2745614147", + "attack/melee/tail-multi-slap": "2905793214", + "attack/melee/tail-roll": "3678751400", + "attack/melee/tail-smash": "2662497262", + "attack/melee/tail-thrash": "2102433122", "activity/victory-pose-back-flip": "2227634241" } }, - "bird-04": { + "beast-04-lv2": { "bones": [ {"name": "@root"}, {"name": "@pivot-main", "parent": "@root"}, {"name": "@pivot-back", "parent": "@pivot-main", "x": 205, "y": 180, "color": "ff0101ff"}, {"name": "@pivot-center", "parent": "@pivot-back", "x": -215.11, "y": -5.25, "color": "ff0101ff"}, {"name": "@axie", "parent": "@pivot-center", "length": 213.28, "rotation": 179.04, "x": 196.39, "y": 5.16}, {"name": "@back", "parent": "@axie", "rotation": -179.04, "x": 37.63, "y": -198.19}, - {"name": "back", "parent": "@back", "length": 149.41, "rotation": 73, "x": -139.97, "y": 11.3, "transform": "noScale"}, + {"name": "back", "parent": "@back", "length": 149.41, "rotation": 58, "x": -13.97, "y": 26.3, "transform": "noScale"}, {"name": "@body", "parent": "@axie", "length": 226.28, "rotation": -8.35, "x": 224.58, "y": -0.53}, {"name": "@ear-left", "parent": "@axie", "rotation": -179.04, "x": 112.7, "y": -203.23}, - {"name": "ear-left", "parent": "@ear-left", "length": 113.61, "rotation": 10, "x": 5, "y": -45, "transform": "noScale"}, + {"name": "ear-left", "parent": "@ear-left", "length": 113.61, "rotation": 90, "x": -27, "y": 19, "transform": "noScale"}, {"name": "@ear-right", "parent": "@axie", "rotation": -179.04, "x": 405.28, "y": -235.33}, - {"name": "ear-right", "parent": "@ear-right", "length": 119.39, "rotation": 132, "x": -87, "y": -93, "transform": "noScale"}, + {"name": "ear-right", "parent": "@ear-right", "length": 119.39, "rotation": 93, "x": -30, "y": -15, "transform": "noScale"}, {"name": "@eyes", "parent": "@axie", "rotation": -179.04, "x": 384.24, "y": -113.67}, {"name": "@horn", "parent": "@axie", "rotation": -179.04, "x": 327.92, "y": -214.63}, {"name": "horn", "parent": "@horn", "length": 176.72, "rotation": 90, "y": 18, "transform": "noScale"}, {"name": "@leg-back-left", "parent": "@axie", "length": 76.4, "rotation": 100.96, "x": -15.3, "y": 102.56, "transform": "noScale"}, @@ -365,16 +332,17 @@ {"name": "@mouth", "parent": "@axie", "rotation": -179.04, "x": 382.23, "y": 6.31}, {"name": "body-pattern", "parent": "@body", "rotation": -170.69, "x": -267.21, "y": -49.4, "transform": "noScale"}, {"name": "@shadow", "parent": "@root", "color": "e6d713ff"}, {"name": "@tail", "parent": "@axie", "rotation": -179.04, "x": -11.76, "y": 61.72}, - {"name": "tail", "parent": "@tail", "length": 203.67, "rotation": 21, "x": 16, "y": 34, "transform": "noScale"}, + {"name": "tail", "parent": "@tail", "length": 203.67, "rotation": -12, "x": 16, "y": 72.87, "transform": "noScale"}, {"name": "leg-front-right-IK", "parent": "@pivot-main", "x": -195.99, "y": -10.21, "color": "ff3f00ff"}, {"name": "leg-front-left-IK", "parent": "@pivot-main", "x": 42.3, "y": -18.42, "color": "ff3f00ff"}, {"name": "leg-back-left-IK", "parent": "@pivot-main", "x": 208.57, "y": 1.35, "color": "ff3f00ff"}, {"name": "@ball", "parent": "@root", "y": 191, "color": "f3981bff"}, - {"name": "ball", "parent": "@ball", "y": -191, "color": "f4a729ff"} + {"name": "ball", "parent": "@ball", "y": -191, "color": "f4a729ff"}, {"name": "@", "parent": "@root", "x": -27.33, "y": -39.68} ], "slots": [ {"name": "shadow", "bone": "@shadow", "attachment": "shadow"}, {"name": "ball", "bone": "ball"}, {"name": "leg-front-right", "bone": "@leg-front-right", "attachment": "leg-front-right"}, - {"name": "ear-right", "bone": "ear-right", "attachment": "ear-right"}, {"name": "tail", "bone": "tail", "attachment": "tail"}, {"name": "back", "bone": "back", "attachment": "back"}, - {"name": "leg-back-left", "bone": "@leg-back-left", "attachment": "leg-back-left"}, {"name": "body", "bone": "@body", "attachment": "body"}, {"name": "body-pattern", "bone": "body-pattern"}, + {"name": "tail", "bone": "tail", "attachment": "tail"}, {"name": "back", "bone": "back", "attachment": "back"}, + {"name": "leg-back-left", "bone": "@leg-back-left", "attachment": "leg-back-left"}, {"name": "ear-right", "bone": "ear-right", "attachment": "ear-right"}, + {"name": "body", "bone": "@body", "attachment": "body"}, {"name": "body-pattern", "bone": "body-pattern"}, {"name": "leg-front-left", "bone": "@leg-front-left", "attachment": "leg-front-left"}, {"name": "eyes", "bone": "@eyes", "attachment": "eyes"}, {"name": "mouth", "bone": "@mouth", "attachment": "mouth"}, {"name": "ear-left", "bone": "ear-left", "attachment": "ear-left"}, {"name": "horn", "bone": "horn", "attachment": "horn"} ], @@ -387,23 +355,25 @@ { "name": "default", "attachments": { - "back": {"back": {"x": 152.67, "y": -25.52, "rotation": -73, "width": 342, "height": 293, "path": "bird-04.back"}}, - "ear-left": {"ear-left": {"x": 27.56, "y": 6.34, "rotation": -10, "width": 124, "height": 160, "path": "bird-04.ear-left"}}, - "ear-right": {"ear-right": {"x": 19.8, "y": -6.45, "rotation": -132, "width": 95, "height": 160, "path": "bird-04.ear-right"}}, + "back": {"back": {"x": 109.8835294117647, "y": 103.54764705882353, "rotation": -58, "width": 282.3529411764706, "height": 251.76470588235296, "path": "beast-04-lv2.back"}}, + "ear-left": {"ear-left": {"x": 80.21941176470588, "y": -42.31764705882354, "rotation": -90, "width": 152.94117647058823, "height": 188.23529411764707, "path": "beast-04-lv2.ear-left"}}, + "ear-right": { + "ear-right": {"x": 80.88058823529411, "y": 12.698823529411769, "rotation": -93, "width": 127.05882352941177, "height": 185.88235294117646, "path": "beast-04-lv2.ear-right"} + }, "eyes": { - "eyes": {"x": 25.04, "y": 32.03, "width": 186, "height": 126, "path": "bird-04.eyes"}, - "eyes-angry": {"x": 25.04, "y": 24.53, "width": 208, "height": 107, "path": "bird-04.eyes-angry"}, - "eyes-happy": {"x": 24.54, "y": 49.03, "width": 187, "height": 110, "path": "bird-04.eyes-happy"}, - "eyes-shut": {"x": 22.04, "y": 42.53, "width": 182, "height": 105, "path": "bird-04.eyes-shut"} + "eyes": {"x": 30.28823529411765, "y": 29.484117647058827, "width": 258.8235294117647, "height": 129.41176470588235, "path": "beast-04-lv2.eyes"}, + "eyes-angry": {"x": 30.28823529411765, "y": 29.484117647058827, "width": 258.8235294117647, "height": 129.41176470588235, "path": "beast-04-lv2.eyes-angry"}, + "eyes-happy": {"x": 30.28823529411765, "y": 29.484117647058827, "width": 258.8235294117647, "height": 129.41176470588235, "path": "beast-04-lv2.eyes-happy"}, + "eyes-shut": {"x": 30.28823529411765, "y": 29.484117647058827, "width": 258.8235294117647, "height": 129.41176470588235, "path": "beast-04-lv2.eyes-shut"} }, - "horn": {"horn": {"x": 105.53, "y": -29.04, "rotation": -90, "width": 200, "height": 233, "path": "bird-04.horn"}}, + "horn": {"horn": {"x": 85.95470588235294, "y": -14.582352941176477, "rotation": -90, "width": 136.47058823529412, "height": 171.76470588235296, "path": "beast-04-lv2.horn"}}, "mouth": { - "mouth": {"x": 3.54, "y": 68.53, "width": 97, "height": 125, "path": "bird-04.mouth"}, - "mouth-bite": {"x": 15.54, "y": 64.03, "width": 135, "height": 134, "path": "bird-04.mouth-bite"}, - "mouth-open": {"x": 9.54, "y": 57.53, "width": 93, "height": 167, "path": "bird-04.mouth-open"}, - "mouth-smile": {"x": 5.54, "y": 68.53, "width": 101, "height": 125, "path": "bird-04.mouth-smile"} + "mouth": {"x": 24.994117647058825, "y": 53.484117647058824, "width": 169.41176470588235, "height": 129.41176470588235, "path": "beast-04-lv2.mouth"}, + "mouth-bite": {"x": 24.994117647058825, "y": 53.484117647058824, "width": 169.41176470588235, "height": 129.41176470588235, "path": "beast-04-lv2.mouth-bite"}, + "mouth-open": {"x": 24.994117647058825, "y": 28.837058823529407, "width": 169.41176470588235, "height": 204.7058823529412, "path": "beast-04-lv2.mouth-open"}, + "mouth-smile": {"x": 24.994117647058825, "y": 53.484117647058824, "width": 169.41176470588235, "height": 129.41176470588235, "path": "beast-04-lv2.mouth-smile"} }, - "tail": {"tail": {"x": 96.91, "y": -14.14, "rotation": -21, "width": 257, "height": 197, "path": "bird-04.tail"}} + "tail": {"tail": {"x": 77.88882352941177, "y": -50.09411764705882, "rotation": 12, "width": 265.88235294117646, "height": 150.58823529411765, "path": "beast-04-lv2.tail"}} } } ], @@ -415,7 +385,7 @@ "attack/ranged/cast-high": "164191126", "attack/ranged/cast-low": "198813017", "attack/ranged/cast-multi": "151119", - "attack/ranged/cast-tail": "997902532", + "attack/ranged/cast-tail": "1843465463", "activity/eat-bite": "1137807767", "activity/eat-chew": "1988236421", "activity/entrance": "3768378365", @@ -437,7 +407,7 @@ "attack/melee/normal-attack": "3305373483", "activity/prepare": "405864717", "action/idle/random-01": "554401889", - "action/idle/random-02": "1085666627", + "action/idle/random-02": "1001093024", "action/idle/random-03": "2021333900", "action/idle/random-04": "1003789695", "action/idle/random-05": "2745614147", @@ -452,37 +422,37 @@ "activity/victory-pose-back-flip": "2227634241" } }, - "xmas-01": { + "beast-10-lv2": { "bones": [ {"name": "@root"}, {"name": "@pivot-main", "parent": "@root"}, {"name": "@pivot-back", "parent": "@pivot-main", "x": 205, "y": 180, "color": "ff0101ff"}, {"name": "@pivot-center", "parent": "@pivot-back", "x": -215.11, "y": -5.25, "color": "ff0101ff"}, {"name": "@axie", "parent": "@pivot-center", "length": 213.28, "rotation": 179.04, "x": 196.39, "y": 5.16}, {"name": "@back", "parent": "@axie", "rotation": -179.04, "x": 37.63, "y": -198.19}, - {"name": "back", "parent": "@back", "length": 149.41, "rotation": 80, "x": -71.97, "y": 39.3, "transform": "noScale"}, + {"name": "back", "parent": "@back", "length": 149.41, "rotation": 58, "x": -13.97, "y": 26.3, "transform": "noScale"}, {"name": "@body", "parent": "@axie", "length": 226.28, "rotation": -8.35, "x": 224.58, "y": -0.53}, {"name": "@ear-left", "parent": "@axie", "rotation": -179.04, "x": 112.7, "y": -203.23}, - {"name": "body-pattern", "parent": "@body", "rotation": -170.69, "x": -267.21, "y": -49.4, "transform": "noScale"}, - {"name": "ear-left", "parent": "@ear-left", "length": 113.61, "rotation": -60, "x": 23, "y": -29, "transform": "noScale"}, + {"name": "ear-left", "parent": "@ear-left", "length": 113.61, "rotation": 90, "x": -27, "y": 19, "transform": "noScale"}, {"name": "@ear-right", "parent": "@axie", "rotation": -179.04, "x": 405.28, "y": -235.33}, - {"name": "ear-right", "parent": "@ear-right", "length": 119.39, "rotation": -122, "x": -25, "y": -52, "transform": "noScale"}, + {"name": "ear-right", "parent": "@ear-right", "length": 119.39, "rotation": 93, "x": -30, "y": -15, "transform": "noScale"}, {"name": "@eyes", "parent": "@axie", "rotation": -179.04, "x": 384.24, "y": -113.67}, {"name": "@horn", "parent": "@axie", "rotation": -179.04, "x": 327.92, "y": -214.63}, {"name": "horn", "parent": "@horn", "length": 176.72, "rotation": 90, "y": 18, "transform": "noScale"}, - {"name": "@leg-back-left", "parent": "@axie", "length": 76.33, "rotation": 97.07, "x": -15.3, "y": 102.56, "transform": "noScale"}, - {"name": "@leg-front-left", "parent": "@axie", "length": 68.35, "rotation": 83.02, "x": 135.05, "y": 132.6, "transform": "noScale"}, - {"name": "@leg-front-right", "parent": "@axie", "length": 70.32, "rotation": 92.53, "x": 382.95, "y": 121.78, "transform": "noScale"}, - {"name": "@mouth", "parent": "@axie", "rotation": -179.04, "x": 382.23, "y": 6.31}, {"name": "@shadow", "parent": "@root", "color": "e6d713ff"}, + {"name": "@leg-back-left", "parent": "@axie", "length": 76.4, "rotation": 100.96, "x": -15.3, "y": 102.56, "transform": "noScale"}, + {"name": "@leg-front-left", "parent": "@axie", "length": 51.19, "rotation": 93.86, "x": 134.77, "y": 149.55, "transform": "noScale"}, + {"name": "@leg-front-right", "parent": "@axie", "length": 74.83, "rotation": 83.2, "x": 382.95, "y": 121.78, "transform": "noScale"}, + {"name": "@mouth", "parent": "@axie", "rotation": -179.04, "x": 382.23, "y": 6.31}, + {"name": "body-pattern", "parent": "@body", "rotation": -170.69, "x": -267.21, "y": -49.4, "transform": "noScale"}, {"name": "@shadow", "parent": "@root", "color": "e6d713ff"}, {"name": "@tail", "parent": "@axie", "rotation": -179.04, "x": -11.76, "y": 61.72}, - {"name": "tail", "parent": "@tail", "length": 203.67, "rotation": -15, "x": 45, "y": 34, "transform": "noScale"}, + {"name": "tail", "parent": "@tail", "length": 203.67, "rotation": -12, "x": 16, "y": 72.87, "transform": "noScale"}, {"name": "leg-front-right-IK", "parent": "@pivot-main", "x": -195.99, "y": -10.21, "color": "ff3f00ff"}, {"name": "leg-front-left-IK", "parent": "@pivot-main", "x": 42.3, "y": -18.42, "color": "ff3f00ff"}, {"name": "leg-back-left-IK", "parent": "@pivot-main", "x": 208.57, "y": 1.35, "color": "ff3f00ff"}, {"name": "@ball", "parent": "@root", "y": 191, "color": "f3981bff"}, {"name": "ball", "parent": "@ball", "y": -191, "color": "f4a729ff"} ], "slots": [ - {"name": "shadow", "bone": "@shadow", "attachment": "shadow"}, {"name": "ball", "bone": "ball"}, {"name": "leg-front-right", "bone": "@leg-front-right", "attachment": "xmas-leg-front-right"}, - {"name": "ear-right", "bone": "ear-right", "attachment": "ear-right"}, {"name": "tail", "bone": "tail", "attachment": "tail"}, {"name": "back", "bone": "back", "attachment": "back"}, - {"name": "leg-front-left", "bone": "@leg-front-left", "attachment": "xmas-leg-front-left"}, {"name": "leg-back-left", "bone": "@leg-back-left", "attachment": "xmas-leg-back-left"}, - {"name": "body", "bone": "@body", "attachment": "body-xmas-01"}, {"name": "body-pattern", "bone": "body-pattern"}, {"name": "eyes", "bone": "@eyes", "attachment": "eyes"}, - {"name": "mouth", "bone": "@mouth", "attachment": "mouth"}, {"name": "horn", "bone": "horn", "attachment": "horn"}, {"name": "ear-left", "bone": "ear-left", "attachment": "ear-left"}, - {"name": "eyes-base", "bone": "@eyes", "attachment": "eyes-base"}, {"name": "eyes-glow", "bone": "@eyes"} + {"name": "shadow", "bone": "@shadow", "attachment": "shadow"}, {"name": "ball", "bone": "ball"}, {"name": "leg-front-right", "bone": "@leg-front-right", "attachment": "leg-front-right"}, + {"name": "tail", "bone": "tail", "attachment": "tail"}, {"name": "back", "bone": "back", "attachment": "back"}, + {"name": "leg-back-left", "bone": "@leg-back-left", "attachment": "leg-back-left"}, {"name": "ear-right", "bone": "ear-right", "attachment": "ear-right"}, + {"name": "body", "bone": "@body", "attachment": "body"}, {"name": "ear-left", "bone": "ear-left", "attachment": "ear-left"}, {"name": "body-pattern", "bone": "body-pattern"}, + {"name": "leg-front-left", "bone": "@leg-front-left", "attachment": "leg-front-left"}, {"name": "eyes", "bone": "@eyes", "attachment": "eyes"}, + {"name": "mouth", "bone": "@mouth", "attachment": "mouth"}, {"name": "horn", "bone": "horn", "attachment": "horn"} ], "ik": [ {"name": "leg-back-left-IK", "order": 2, "bones": ["@leg-back-left"], "target": "leg-back-left-IK"}, @@ -493,90 +463,83 @@ { "name": "default", "attachments": { - "back": {"back": {"x": 108.73, "y": -2.89, "rotation": -80, "width": 292, "height": 251, "path": "xmas-01.back"}}, - "ear-left": {"ear-left": {"x": 95.22, "y": 7.07, "rotation": 60, "width": 218, "height": 230, "path": "xmas-01.ear-left"}}, - "ear-right": {"ear-right": {"x": 112.76, "y": -18.3, "rotation": 122, "width": 228, "height": 236, "path": "xmas-01.ear-right"}}, - "eyes": { - "eyes": {"x": 23.23, "y": -22.93, "width": 291, "height": 66, "path": "xmas-01.eyes"}, - "eyes-angry": {"x": 22.23, "y": -20.43, "width": 291, "height": 89, "path": "xmas-01.eyes-angry"}, - "eyes-happy": {"x": 23.23, "y": -22.93, "width": 291, "height": 66, "path": "xmas-01.eyes-happy"}, - "eyes-shut": {"x": 23.23, "y": -32.93, "width": 291, "height": 46, "path": "xmas-01.eyes-shut"} + "back": {"back": {"x": 103.25764705882354, "y": 65.09470588235293, "rotation": -58, "width": 451.7647058823529, "height": 456.47058823529414, "path": "beast-10-lv2.back"}}, + "ear-left": {"ear-left": {"x": 83.54176470588234, "y": -30.398823529411768, "rotation": -90, "width": 141.1764705882353, "height": 214.11764705882354, "path": "beast-10-lv2.ear-left"}}, + "ear-right": { + "ear-right": {"x": 89.29411764705883, "y": -32.63764705882354, "rotation": -93, "width": 129.41176470588235, "height": 188.23529411764707, "path": "beast-10-lv2.ear-right"} }, - "eyes-base": {"eyes-base": {"x": 41.23, "y": -12.43, "width": 335, "height": 53, "path": "xmas-01.eyes-base"}}, - "eyes-glow": {"eyes-glow": {"x": 41.73, "y": -10.43, "width": 422, "height": 137, "path": "xmas-01.eyes-glow"}}, - "horn": { - "horn": {"x": 124.57, "y": 12.27, "rotation": -90, "width": 198, "height": 283, "path": "xmas-01.horn"}, - "horn-blink": {"x": 133.07, "y": 16.27, "rotation": -90, "width": 206, "height": 300, "path": "xmas-01.horn-blink"} + "eyes": { + "eyes": {"x": 35.39882352941177, "y": 43.54176470588235, "width": 185.88235294117646, "height": 141.1764705882353, "path": "beast-10-lv2.eyes"}, + "eyes-angry": {"x": 30.69294117647058, "y": 41.18882352941177, "width": 195.29411764705884, "height": 145.88235294117646, "path": "beast-10-lv2.eyes-angry"}, + "eyes-happy": {"x": 31.575294117647058, "y": 43.54176470588235, "width": 223.52941176470588, "height": 141.1764705882353, "path": "beast-10-lv2.eyes-happy"}, + "eyes-shut": {"x": 28.810588235294116, "y": 43.54176470588235, "width": 207.05882352941177, "height": 141.1764705882353, "path": "beast-10-lv2.eyes-shut"} }, + "horn": {"horn": {"x": 129.24764705882353, "y": -3.045882352941174, "rotation": -90, "width": 211.76470588235296, "height": 249.41176470588235, "path": "beast-10-lv2.horn"}}, "mouth": { - "mouth": {"x": 20.23, "y": 87.57, "width": 115, "height": 95, "path": "xmas-01.mouth"}, - "mouth-bite": {"x": 20.55, "y": 105.3, "width": 157, "height": 146, "path": "xmas-01.mouth-bite"}, - "mouth-blink": {"x": 14.9, "y": 105.2, "width": 146, "height": 146, "path": "xmas-01.mouth-blink"}, - "mouth-eat": {"x": 83.15, "y": -8.81, "width": 157, "height": 53, "path": "xmas-01.mouth-eat"}, - "mouth-open": {"x": 19.23, "y": 53.07, "width": 115, "height": 182, "path": "xmas-01.mouth-open"}, - "mouth-smile": {"x": 15.73, "y": 102.07, "width": 148, "height": 152, "path": "xmas-01.mouth-smile"} - }, - "tail": {"tail": {"x": 94.24, "y": 12.38, "rotation": 15, "width": 291, "height": 213, "path": "xmas-01.tail"}} + "mouth": {"x": 25.810588235294116, "y": 57.24764705882353, "width": 167.05882352941177, "height": 51.76470588235294, "path": "beast-10-lv2.mouth"}, + "mouth-bite": {"x": 48.104705882352945, "y": 40.83588235294118, "width": 216.47058823529412, "height": 110.58823529411765, "path": "beast-10-lv2.mouth-bite"}, + "mouth-open": {"x": 36.22235294117647, "y": 22.012352941176463, "width": 188.23529411764707, "height": 148.23529411764707, "path": "beast-10-lv2.mouth-open"}, + "mouth-smile": {"x": 34.48705882352941, "y": 50.36529411764706, "width": 164.7058823529412, "height": 63.529411764705884, "path": "beast-10-lv2.mouth-smile"} + }, + "tail": {"tail": {"x": 117.03058823529412, "y": 35.74823529411765, "rotation": 12, "width": 287.05882352941177, "height": 298.8235294117647, "path": "beast-10-lv2.tail"}} } } ], "events": {"hit": {}, "hit-buff": {}, "jump": {}, "start-attack": {}}, "keyAnimations": { - "activity/appear": "3921179016", + "activity/appear": "1023093953", "activity/bath": "3305387968", - "attack/ranged/cast-fly": "3722823556", - "attack/ranged/cast-high": "3577703416", - "attack/ranged/cast-low": "1793942137", + "attack/ranged/cast-fly": "4180526371", + "attack/ranged/cast-high": "164191126", + "attack/ranged/cast-low": "198813017", "attack/ranged/cast-multi": "151119", - "attack/ranged/cast-tail": "977217026", + "attack/ranged/cast-tail": "1603776742", "activity/eat-bite": "1137807767", - "activity/eat-chew": "2571197086", + "activity/eat-chew": "1988236421", "activity/entrance": "3768378365", "defense/evade": "1735454995", "activity/evolve": "649307630", - "battle/get-buff": "2993060391", - "battle/get-debuff": "2919546916", - "defense/hit-by-normal": "2695183231", - "defense/hit-by-normal-crit": "721863963", - "defense/hit-by-normal-dramatic": "2501809037", - "defense/hit-by-ranged-attack": "3309952905", - "defense/hit-with-shield": "228539860", - "attack/melee/horn-gore": "3177102970", - "attack/melee/mouth-bite": "1912445836", + "battle/get-buff": "1455190363", + "battle/get-debuff": "606904312", + "defense/hit-by-normal": "2045974966", + "defense/hit-by-normal-crit": "2130010601", + "defense/hit-by-normal-dramatic": "3823092125", + "defense/hit-by-ranged-attack": "2224561612", + "defense/hit-with-shield": "390714790", + "attack/melee/horn-gore": "1327954218", + "attack/melee/mouth-bite": "2237748264", "action/move-back": "3766271173", "action/move-forward": "2945160014", - "attack/melee/multi-attack": "2627626635", - "action/idle/normal": "1384528274", + "attack/melee/multi-attack": "905926802", + "action/idle/normal": "1659336865", "attack/melee/normal-attack": "3305373483", "activity/prepare": "405864717", - "action/idle/random-01": "880116349", - "action/idle/random-02": "4155096617", - "action/idle/random-03": "2146505268", - "action/idle/random-04": "3708365579", + "action/idle/random-01": "554401889", + "action/idle/random-02": "2758931518", + "action/idle/random-03": "2021333900", + "action/idle/random-04": "1003789695", "action/idle/random-05": "2745614147", - "action/run": "2297652214", - "draft/run-origin": "1973997258", - "attack/melee/shrimp": "244230390", - "status/sitting-duck": "1990830770", + "action/run": "1438840721", + "draft/run-origin": "3577885069", + "attack/melee/shrimp": "3833448733", "activity/sleep": "100562494", - "status/stun": "2745614147", - "attack/melee/tail-multi-slap": "2905793214", - "attack/melee/tail-roll": "3678751400", - "attack/melee/tail-smash": "2662497262", - "attack/melee/tail-thrash": "2102433122", + "attack/melee/tail-multi-slap": "3317139533", + "attack/melee/tail-roll": "3108617565", + "attack/melee/tail-smash": "519942130", + "attack/melee/tail-thrash": "628713175", "activity/victory-pose-back-flip": "2227634241" } }, - "aquatic-06": { + "beast-06-lv2": { "bones": [ {"name": "@root"}, {"name": "@pivot-main", "parent": "@root"}, {"name": "@pivot-back", "parent": "@pivot-main", "x": 205, "y": 180, "color": "ff0101ff"}, {"name": "@pivot-center", "parent": "@pivot-back", "x": -215.11, "y": -5.25, "color": "ff0101ff"}, {"name": "@axie", "parent": "@pivot-center", "length": 213.28, "rotation": 179.04, "x": 196.39, "y": 5.16}, {"name": "@back", "parent": "@axie", "rotation": -179.04, "x": 37.63, "y": -198.19}, - {"name": "back", "parent": "@back", "length": 149.41, "rotation": 75, "x": -119.97, "y": 59.3, "transform": "noScale"}, + {"name": "back", "parent": "@back", "length": 149.41, "rotation": 58, "x": -13.97, "y": 26.3, "transform": "noScale"}, {"name": "@body", "parent": "@axie", "length": 226.28, "rotation": -8.35, "x": 224.58, "y": -0.53}, {"name": "@ear-left", "parent": "@axie", "rotation": -179.04, "x": 112.7, "y": -203.23}, - {"name": "ear-left", "parent": "@ear-left", "length": 113.61, "rotation": 35, "x": -7, "y": -65, "transform": "noScale"}, + {"name": "ear-left", "parent": "@ear-left", "length": 113.61, "rotation": 90, "x": -27, "y": 19, "transform": "noScale"}, {"name": "@ear-right", "parent": "@axie", "rotation": -179.04, "x": 405.28, "y": -235.33}, - {"name": "ear-right", "parent": "@ear-right", "length": 119.39, "rotation": 135, "x": -33, "y": -107, "transform": "noScale"}, + {"name": "ear-right", "parent": "@ear-right", "length": 119.39, "rotation": 93, "x": -30, "y": -15, "transform": "noScale"}, {"name": "@eyes", "parent": "@axie", "rotation": -179.04, "x": 384.24, "y": -113.67}, {"name": "@horn", "parent": "@axie", "rotation": -179.04, "x": 327.92, "y": -214.63}, {"name": "horn", "parent": "@horn", "length": 176.72, "rotation": 90, "y": 18, "transform": "noScale"}, {"name": "@leg-back-left", "parent": "@axie", "length": 76.4, "rotation": 100.96, "x": -15.3, "y": 102.56, "transform": "noScale"}, @@ -585,7 +548,7 @@ {"name": "@mouth", "parent": "@axie", "rotation": -179.04, "x": 382.23, "y": 6.31}, {"name": "body-pattern", "parent": "@body", "rotation": -170.69, "x": -267.21, "y": -49.4, "transform": "noScale"}, {"name": "@shadow", "parent": "@root", "color": "e6d713ff"}, {"name": "@tail", "parent": "@axie", "rotation": -179.04, "x": -11.76, "y": 61.72}, - {"name": "tail", "parent": "@tail", "length": 203.67, "rotation": 5, "x": -1, "y": 39, "transform": "noScale"}, + {"name": "tail", "parent": "@tail", "length": 203.67, "rotation": -12, "x": 16, "y": 72.87, "transform": "noScale"}, {"name": "leg-front-right-IK", "parent": "@pivot-main", "x": -195.99, "y": -10.21, "color": "ff3f00ff"}, {"name": "leg-front-left-IK", "parent": "@pivot-main", "x": 42.3, "y": -18.42, "color": "ff3f00ff"}, {"name": "leg-back-left-IK", "parent": "@pivot-main", "x": 208.57, "y": 1.35, "color": "ff3f00ff"}, {"name": "@ball", "parent": "@root", "y": 191, "color": "f3981bff"}, @@ -593,10 +556,11 @@ ], "slots": [ {"name": "shadow", "bone": "@shadow", "attachment": "shadow"}, {"name": "ball", "bone": "ball"}, {"name": "leg-front-right", "bone": "@leg-front-right", "attachment": "leg-front-right"}, - {"name": "ear-right", "bone": "ear-right", "attachment": "ear-right"}, {"name": "tail", "bone": "tail", "attachment": "tail"}, {"name": "back", "bone": "back", "attachment": "back"}, - {"name": "leg-back-left", "bone": "@leg-back-left", "attachment": "leg-back-left"}, {"name": "body", "bone": "@body", "attachment": "body"}, {"name": "body-pattern", "bone": "body-pattern"}, + {"name": "tail", "bone": "tail", "attachment": "tail"}, {"name": "back", "bone": "back", "attachment": "back"}, + {"name": "leg-back-left", "bone": "@leg-back-left", "attachment": "leg-back-left"}, {"name": "ear-right", "bone": "ear-right", "attachment": "ear-right"}, + {"name": "body", "bone": "@body", "attachment": "body"}, {"name": "ear-left", "bone": "ear-left", "attachment": "ear-left"}, {"name": "body-pattern", "bone": "body-pattern"}, {"name": "leg-front-left", "bone": "@leg-front-left", "attachment": "leg-front-left"}, {"name": "eyes", "bone": "@eyes", "attachment": "eyes"}, - {"name": "mouth", "bone": "@mouth", "attachment": "mouth"}, {"name": "ear-left", "bone": "ear-left", "attachment": "ear-left"}, {"name": "horn", "bone": "horn", "attachment": "horn"} + {"name": "mouth", "bone": "@mouth", "attachment": "mouth"}, {"name": "horn", "bone": "horn", "attachment": "horn"}, {"name": "horn2", "bone": "horn"} ], "ik": [ {"name": "leg-back-left-IK", "order": 2, "bones": ["@leg-back-left"], "target": "leg-back-left-IK"}, @@ -607,23 +571,27 @@ { "name": "default", "attachments": { - "back": {"back": {"x": 83.58, "y": -38.4, "rotation": -75, "width": 214, "height": 333, "path": "aquatic-06.back"}}, - "ear-left": {"ear-left": {"x": 42.46, "y": -3.9, "rotation": -35, "width": 138, "height": 146, "path": "aquatic-06.ear-left"}}, - "ear-right": {"ear-right": {"x": 40.4, "y": 1.29, "rotation": -135, "width": 139, "height": 147, "path": "aquatic-06.ear-right"}}, + "back": {"back": {"x": 55.230588235294114, "y": 110.03764705882352, "rotation": -58, "width": 367.05882352941177, "height": 251.76470588235296, "path": "beast-06-lv2.back"}}, + "ear-left": { + "ear-left": {"x": -145.42823529411766, "y": -106.59117647058824, "rotation": -90, "width": 221.1764705882353, "height": 225.88235294117646, "path": "beast-06-lv2.ear-left"} + }, + "ear-right": { + "ear-right": {"x": -151.41529411764708, "y": 74.33176470588235, "rotation": -93, "width": 216.47058823529412, "height": 221.1764705882353, "path": "beast-06-lv2.ear-right"} + }, "eyes": { - "eyes": {"x": 31.22, "y": 17.79, "width": 304, "height": 121, "path": "aquatic-06.eyes"}, - "eyes-angry": {"x": 31.22, "y": 17.79, "width": 304, "height": 121, "path": "aquatic-06.eyes-angry"}, - "eyes-happy": {"x": 31.22, "y": 17.79, "width": 304, "height": 121, "path": "aquatic-06.eyes-happy"}, - "eyes-shut": {"x": 31.22, "y": 17.79, "width": 304, "height": 121, "path": "aquatic-06.eyes-shut"} + "eyes": {"x": 25.62, "y": 19.83, "width": 283, "height": 94, "path": "beast-06-lv2.eyes"}, + "eyes-angry": {"x": 25.62, "y": 16.33, "width": 283, "height": 79, "path": "beast-06-lv2.eyes-angry"}, + "eyes-happy": {"x": 25.62, "y": 28.33, "width": 283, "height": 109, "path": "beast-06-lv2.eyes-happy"}, + "eyes-shut": {"x": 25.62, "y": 20.83, "width": 283, "height": 92, "path": "beast-06-lv2.eyes-shut"} }, - "horn": {"horn": {"x": 57.35, "y": -48.02, "rotation": -90, "width": 230, "height": 158, "path": "aquatic-06.horn"}}, + "horn": {"horn": {"x": 121.45411764705881, "y": -51.53235294117648, "rotation": -90, "width": 369.4117647058824, "height": 251.76470588235296, "path": "beast-06-lv2.horn"}}, "mouth": { - "mouth": {"x": 13.22, "y": 31.29, "width": 314, "height": 118, "path": "aquatic-06.mouth"}, - "mouth-bite": {"x": 12.72, "y": 40.79, "width": 361, "height": 97, "path": "aquatic-06.mouth-bite"}, - "mouth-open": {"x": 13.72, "y": 17.29, "width": 327, "height": 176, "path": "aquatic-06.mouth-open"}, - "mouth-smile": {"x": 11.72, "y": 36.29, "width": 333, "height": 110, "path": "aquatic-06.mouth-smile"} + "mouth": {"x": 12.62, "y": 46.83, "width": 121, "height": 106, "path": "beast-06-lv2.mouth"}, + "mouth-bite": {"x": 33.12, "y": 41.83, "width": 278, "height": 116, "path": "beast-06-lv2.mouth-bite"}, + "mouth-open": {"x": 14.12, "y": 6.33, "width": 124, "height": 189, "path": "beast-06-lv2.mouth-open"}, + "mouth-smile": {"x": 13.62, "y": 48.83, "width": 161, "height": 104, "path": "beast-06-lv2.mouth-smile"} }, - "tail": {"tail": {"x": 111.67, "y": -3.09, "rotation": -5, "width": 323, "height": 223, "path": "aquatic-06.tail"}} + "tail": {"tail": {"x": 110.89764705882352, "y": 83.72823529411765, "rotation": 12, "width": 251.76470588235296, "height": 338.8235294117647, "path": "beast-06-lv2.tail"}} } } ], @@ -635,7 +603,7 @@ "attack/ranged/cast-high": "164191126", "attack/ranged/cast-low": "198813017", "attack/ranged/cast-multi": "151119", - "attack/ranged/cast-tail": "997902532", + "attack/ranged/cast-tail": "1603776742", "activity/eat-bite": "1137807767", "activity/eat-chew": "1988236421", "activity/entrance": "3768378365", @@ -657,7 +625,7 @@ "attack/melee/normal-attack": "3305373483", "activity/prepare": "405864717", "action/idle/random-01": "554401889", - "action/idle/random-02": "1085666627", + "action/idle/random-02": "2758931518", "action/idle/random-03": "2021333900", "action/idle/random-04": "1003789695", "action/idle/random-05": "2745614147", @@ -672,16 +640,16 @@ "activity/victory-pose-back-flip": "2227634241" } }, - "plant-02": { + "beast-12-lv2": { "bones": [ {"name": "@root"}, {"name": "@pivot-main", "parent": "@root"}, {"name": "@pivot-back", "parent": "@pivot-main", "x": 205, "y": 180, "color": "ff0101ff"}, {"name": "@pivot-center", "parent": "@pivot-back", "x": -215.11, "y": -5.25, "color": "ff0101ff"}, {"name": "@axie", "parent": "@pivot-center", "length": 213.28, "rotation": 179.04, "x": 196.39, "y": 5.16}, {"name": "@back", "parent": "@axie", "rotation": -179.04, "x": 37.63, "y": -198.19}, - {"name": "back", "parent": "@back", "length": 149.41, "rotation": 64, "x": -51.97, "y": -9.7, "transform": "noScale"}, + {"name": "back", "parent": "@back", "length": 149.41, "rotation": 58, "x": -13.97, "y": 26.3, "transform": "noScale"}, {"name": "@body", "parent": "@axie", "length": 226.28, "rotation": -8.35, "x": 224.58, "y": -0.53}, {"name": "@ear-left", "parent": "@axie", "rotation": -179.04, "x": 112.7, "y": -203.23}, - {"name": "ear-left", "parent": "@ear-left", "length": 113.61, "rotation": 52, "x": -27, "y": -17, "transform": "noScale"}, + {"name": "ear-left", "parent": "@ear-left", "length": 113.61, "rotation": 90, "x": -27, "y": 19, "transform": "noScale"}, {"name": "@ear-right", "parent": "@axie", "rotation": -179.04, "x": 405.28, "y": -235.33}, - {"name": "ear-right", "parent": "@ear-right", "length": 119.39, "rotation": 93, "x": -40, "y": -54, "transform": "noScale"}, + {"name": "ear-right", "parent": "@ear-right", "length": 119.39, "rotation": 93, "x": -30, "y": -15, "transform": "noScale"}, {"name": "@eyes", "parent": "@axie", "rotation": -179.04, "x": 384.24, "y": -113.67}, {"name": "@horn", "parent": "@axie", "rotation": -179.04, "x": 327.92, "y": -214.63}, {"name": "horn", "parent": "@horn", "length": 176.72, "rotation": 90, "y": 18, "transform": "noScale"}, {"name": "@leg-back-left", "parent": "@axie", "length": 76.4, "rotation": 100.96, "x": -15.3, "y": 102.56, "transform": "noScale"}, @@ -690,16 +658,17 @@ {"name": "@mouth", "parent": "@axie", "rotation": -179.04, "x": 382.23, "y": 6.31}, {"name": "body-pattern", "parent": "@body", "rotation": -170.69, "x": -267.21, "y": -49.4, "transform": "noScale"}, {"name": "@shadow", "parent": "@root", "color": "e6d713ff"}, {"name": "@tail", "parent": "@axie", "rotation": -179.04, "x": -11.76, "y": 61.72}, - {"name": "tail", "parent": "@tail", "length": 203.67, "rotation": 20, "x": 21, "y": 37, "transform": "noScale"}, + {"name": "tail", "parent": "@tail", "length": 203.67, "rotation": -12, "x": 16, "y": 72.87, "transform": "noScale"}, {"name": "leg-front-right-IK", "parent": "@pivot-main", "x": -195.99, "y": -10.21, "color": "ff3f00ff"}, {"name": "leg-front-left-IK", "parent": "@pivot-main", "x": 42.3, "y": -18.42, "color": "ff3f00ff"}, {"name": "leg-back-left-IK", "parent": "@pivot-main", "x": 208.57, "y": 1.35, "color": "ff3f00ff"}, {"name": "@ball", "parent": "@root", "y": 191, "color": "f3981bff"}, - {"name": "ball", "parent": "@ball", "y": -191, "color": "f4a729ff"} + {"name": "ball", "parent": "@ball", "y": -191, "color": "f4a729ff"}, {"name": "@", "parent": "@root", "x": -3.55, "y": -58.01} ], "slots": [ {"name": "shadow", "bone": "@shadow", "attachment": "shadow"}, {"name": "ball", "bone": "ball"}, {"name": "leg-front-right", "bone": "@leg-front-right", "attachment": "leg-front-right"}, - {"name": "ear-right", "bone": "ear-right", "attachment": "ear-right"}, {"name": "tail", "bone": "tail", "attachment": "tail"}, {"name": "back", "bone": "back", "attachment": "back"}, - {"name": "leg-back-left", "bone": "@leg-back-left", "attachment": "leg-back-left"}, {"name": "body", "bone": "@body", "attachment": "body"}, {"name": "body-pattern", "bone": "body-pattern"}, + {"name": "tail", "bone": "tail", "attachment": "tail"}, {"name": "back", "bone": "back", "attachment": "back"}, + {"name": "leg-back-left", "bone": "@leg-back-left", "attachment": "leg-back-left"}, {"name": "ear-right", "bone": "ear-right", "attachment": "ear-right"}, + {"name": "body", "bone": "@body", "attachment": "body"}, {"name": "body-pattern", "bone": "body-pattern"}, {"name": "leg-front-left", "bone": "@leg-front-left", "attachment": "leg-front-left"}, {"name": "eyes", "bone": "@eyes", "attachment": "eyes"}, {"name": "mouth", "bone": "@mouth", "attachment": "mouth"}, {"name": "ear-left", "bone": "ear-left", "attachment": "ear-left"}, {"name": "horn", "bone": "horn", "attachment": "horn"} ], @@ -712,23 +681,23 @@ { "name": "default", "attachments": { - "back": {"back": {"x": 160.26, "y": 3.25, "rotation": -64, "width": 288, "height": 342, "path": "plant-02.back"}}, - "ear-left": {"ear-left": {"x": 83.9, "y": 0.41, "rotation": -52, "width": 152, "height": 169, "path": "plant-02.ear-left"}}, - "ear-right": {"ear-right": {"x": 71.01, "y": -1.05, "rotation": -93, "width": 122, "height": 173, "path": "plant-02.ear-right"}}, + "back": {"back": {"x": 79.79, "y": 34.608235294117655, "rotation": -58, "width": 320.0, "height": 258.8235294117647, "path": "beast-12-lv2.back"}}, + "ear-left": {"ear-left": {"x": 106.78588235294117, "y": -66.09470588235295, "rotation": -90, "width": 190.58823529411765, "height": 263.5294117647059, "path": "beast-12-lv2.ear-left"}}, + "ear-right": {"ear-right": {"x": 98.3, "y": -17.09705882352942, "rotation": -93, "width": 160.0, "height": 275.29411764705884, "path": "beast-12-lv2.ear-right"}}, "eyes": { - "eyes": {"x": 22.33, "y": -11.04, "width": 284, "height": 33, "path": "plant-02.eyes"}, - "eyes-angry": {"x": 22.17, "y": 15.54, "width": 282, "height": 84, "path": "plant-02.eyes-angry"}, - "eyes-happy": {"x": 22.33, "y": -11.04, "width": 284, "height": 33, "path": "plant-02.eyes-happy"}, - "eyes-shut": {"x": 22.33, "y": -12.04, "width": 284, "height": 31, "path": "plant-02.eyes-shut"} + "eyes": {"x": 25.62, "y": 19.83, "width": 283, "height": 94, "path": "beast-12-lv2.eyes"}, + "eyes-angry": {"x": 25.62, "y": 16.33, "width": 283, "height": 79, "path": "beast-12-lv2.eyes-angry"}, + "eyes-happy": {"x": 25.62, "y": 28.33, "width": 283, "height": 109, "path": "beast-12-lv2.eyes-happy"}, + "eyes-shut": {"x": 25.62, "y": 20.83, "width": 283, "height": 92, "path": "beast-12-lv2.eyes-shut"} }, - "horn": {"horn": {"x": 85.15, "y": -1.33, "rotation": -90, "width": 144, "height": 203, "path": "plant-02.horn"}}, + "horn": {"horn": {"x": 101.60941176470588, "y": -29.50647058823529, "rotation": -90, "width": 232.94117647058823, "height": 202.35294117647058, "path": "beast-12-lv2.horn"}}, "mouth": { - "mouth": {"x": 14.33, "y": 61.96, "width": 94, "height": 17, "path": "plant-02.mouth"}, - "mouth-bite": {"x": 16.33, "y": 45.46, "width": 204, "height": 76, "path": "plant-02.mouth-bite"}, - "mouth-open": {"x": 22.83, "y": 34.46, "width": 107, "height": 128, "path": "plant-02.mouth-open"}, - "mouth-smile": {"x": 20.83, "y": 57.96, "width": 91, "height": 41, "path": "plant-02.mouth-smile"} + "mouth": {"x": 12.62, "y": 46.83, "width": 121, "height": 106, "path": "beast-12-lv2.mouth"}, + "mouth-bite": {"x": 33.12, "y": 41.83, "width": 278, "height": 116, "path": "beast-12-lv2.mouth-bite"}, + "mouth-open": {"x": 14.12, "y": 6.33, "width": 124, "height": 189, "path": "beast-12-lv2.mouth-open"}, + "mouth-smile": {"x": 13.62, "y": 48.83, "width": 161, "height": 104, "path": "beast-12-lv2.mouth-smile"} }, - "tail": {"tail": {"x": 118.84, "y": -3.39, "rotation": -20, "width": 301, "height": 236, "path": "plant-02.tail"}} + "tail": {"tail": {"x": 127.68823529411765, "y": 15.018823529411769, "rotation": 12, "width": 258.8235294117647, "height": 265.88235294117646, "path": "beast-12-lv2.tail"}} } } ], @@ -740,7 +709,7 @@ "attack/ranged/cast-high": "164191126", "attack/ranged/cast-low": "198813017", "attack/ranged/cast-multi": "151119", - "attack/ranged/cast-tail": "997902532", + "attack/ranged/cast-tail": "1843465463", "activity/eat-bite": "1137807767", "activity/eat-chew": "1988236421", "activity/entrance": "3768378365", @@ -762,7 +731,7 @@ "attack/melee/normal-attack": "3305373483", "activity/prepare": "405864717", "action/idle/random-01": "554401889", - "action/idle/random-02": "1085666627", + "action/idle/random-02": "1001093024", "action/idle/random-03": "2021333900", "action/idle/random-04": "1003789695", "action/idle/random-05": "2745614147", @@ -777,7 +746,7 @@ "activity/victory-pose-back-flip": "2227634241" } }, - "beast-04": { + "beast-02-lv2": { "bones": [ {"name": "@root"}, {"name": "@pivot-main", "parent": "@root"}, {"name": "@pivot-back", "parent": "@pivot-main", "x": 205, "y": 180, "color": "ff0101ff"}, {"name": "@pivot-center", "parent": "@pivot-back", "x": -215.11, "y": -5.25, "color": "ff0101ff"}, @@ -818,23 +787,25 @@ { "name": "default", "attachments": { - "back": {"back": {"x": 49.15, "y": 113.1, "rotation": -58, "width": 251, "height": 228, "path": "beast-04.back"}}, - "ear-left": {"ear-left": {"x": 40.11, "y": -21.13, "rotation": -90, "width": 159, "height": 139, "path": "beast-04.ear-left"}}, - "ear-right": {"ear-right": {"x": 43.78, "y": 2.08, "rotation": -93, "width": 124, "height": 124, "path": "beast-04.ear-right"}}, + "back": {"back": {"x": 140.2829411764706, "y": 68.04705882352943, "rotation": -58, "width": 235.29411764705884, "height": 364.70588235294116, "path": "beast-02-lv2.back"}}, + "ear-left": {"ear-left": {"x": 85.08117647058823, "y": -29.511176470588232, "rotation": -90, "width": 174.11764705882354, "height": 225.88235294117646, "path": "beast-02-lv2.ear-left"}}, + "ear-right": { + "ear-right": {"x": 76.06882352941177, "y": -3.441176470588232, "rotation": -93, "width": 145.88235294117646, "height": 225.88235294117646, "path": "beast-02-lv2.ear-right"} + }, "eyes": { - "eyes": {"x": 22.63, "y": -17.89, "width": 294, "height": 67, "path": "beast-04.eyes"}, - "eyes-angry": {"x": 22.63, "y": 6.61, "width": 294, "height": 116, "path": "beast-04.eyes-angry"}, - "eyes-happy": {"x": 22.63, "y": 21.61, "width": 294, "height": 146, "path": "beast-04.eyes-happy"}, - "eyes-shut": {"x": 22.63, "y": -20.39, "width": 294, "height": 62, "path": "beast-04.eyes-shut"} + "eyes": {"x": 38.27588235294116, "y": 24.14, "width": 350.5882352941177, "height": 120.0, "path": "beast-02-lv2.eyes"}, + "eyes-angry": {"x": 38.27588235294116, "y": 17.02235294117647, "width": 350.5882352941177, "height": 108.23529411764706, "path": "beast-02-lv2.eyes-angry"}, + "eyes-happy": {"x": 38.27588235294116, "y": 29.669411764705885, "width": 350.5882352941177, "height": 112.94117647058823, "path": "beast-02-lv2.eyes-happy"}, + "eyes-shut": {"x": 38.27588235294116, "y": 24.14, "width": 350.5882352941177, "height": 120.0, "path": "beast-02-lv2.eyes-shut"} }, - "horn": {"horn": {"x": 57.61, "y": 7.37, "rotation": -90, "width": 110, "height": 158, "path": "beast-04.horn"}}, + "horn": {"horn": {"x": 112.19882352941177, "y": 10.665294117647043, "rotation": -90, "width": 265.88235294117646, "height": 263.5294117647059, "path": "beast-02-lv2.horn"}}, "mouth": { - "mouth": {"x": 5.58, "y": 59, "width": 70, "height": 107, "path": "beast-04.mouth"}, - "mouth-bite": {"x": 21.58, "y": 51.5, "width": 104, "height": 126, "path": "beast-04.mouth-bite"}, - "mouth-open": {"x": 13.08, "y": 16.5, "width": 79, "height": 212, "path": "beast-04.mouth-open"}, - "mouth-smile": {"x": 8.58, "y": 59, "width": 76, "height": 111, "path": "beast-04.mouth-smile"} + "mouth": {"x": 28.158235294117638, "y": 42.14, "width": 178.82352941176472, "height": 120.0, "path": "beast-02-lv2.mouth"}, + "mouth-bite": {"x": 24.805294117647044, "y": 48.02235294117647, "width": 263.5294117647059, "height": 108.23529411764706, "path": "beast-02-lv2.mouth-bite"}, + "mouth-open": {"x": 28.62882352941177, "y": -0.21294117647059407, "width": 185.88235294117646, "height": 204.7058823529412, "path": "beast-02-lv2.mouth-open"}, + "mouth-smile": {"x": 28.62882352941177, "y": 32.72823529411765, "width": 185.88235294117646, "height": 138.8235294117647, "path": "beast-02-lv2.mouth-smile"} }, - "tail": {"tail": {"x": 86.45, "y": -54.98, "rotation": 12, "width": 181, "height": 123, "path": "beast-04.tail"}} + "tail": {"tail": {"x": 117.09882352941177, "y": 5.778823529411768, "rotation": 12, "width": 225.88235294117646, "height": 225.88235294117646, "path": "beast-02-lv2.tail"}} } } ], @@ -883,16 +854,16 @@ "activity/victory-pose-back-flip": "2227634241" } }, - "agamo-01": { + "beast-08-lv2": { "bones": [ {"name": "@root"}, {"name": "@pivot-main", "parent": "@root"}, {"name": "@pivot-back", "parent": "@pivot-main", "x": 205, "y": 180, "color": "ff0101ff"}, {"name": "@pivot-center", "parent": "@pivot-back", "x": -215.11, "y": -5.25, "color": "ff0101ff"}, {"name": "@axie", "parent": "@pivot-center", "length": 213.28, "rotation": 179.04, "x": 196.39, "y": 5.16}, {"name": "@back", "parent": "@axie", "rotation": -179.04, "x": 37.63, "y": -198.19}, - {"name": "back", "parent": "@back", "length": 149.41, "rotation": 58, "x": -87.97, "y": 69.3, "transform": "noScale"}, + {"name": "back", "parent": "@back", "length": 149.41, "rotation": 58, "x": -13.97, "y": 26.3, "transform": "noScale"}, {"name": "@body", "parent": "@axie", "length": 226.28, "rotation": -8.35, "x": 224.58, "y": -0.53}, {"name": "@ear-left", "parent": "@axie", "rotation": -179.04, "x": 112.7, "y": -203.23}, - {"name": "ear-left", "parent": "@ear-left", "length": 113.61, "rotation": 55, "x": -8, "y": 3, "transform": "noScale"}, + {"name": "ear-left", "parent": "@ear-left", "length": 113.61, "rotation": 90, "x": -27, "y": 19, "transform": "noScale"}, {"name": "@ear-right", "parent": "@axie", "rotation": -179.04, "x": 405.28, "y": -235.33}, - {"name": "ear-right", "parent": "@ear-right", "length": 119.39, "rotation": 120, "x": -11, "y": -35, "transform": "noScale"}, + {"name": "ear-right", "parent": "@ear-right", "length": 119.39, "rotation": 93, "x": -30, "y": -15, "transform": "noScale"}, {"name": "@eyes", "parent": "@axie", "rotation": -179.04, "x": 384.24, "y": -113.67}, {"name": "@horn", "parent": "@axie", "rotation": -179.04, "x": 327.92, "y": -214.63}, {"name": "horn", "parent": "@horn", "length": 176.72, "rotation": 90, "y": 18, "transform": "noScale"}, {"name": "@leg-back-left", "parent": "@axie", "length": 76.4, "rotation": 100.96, "x": -15.3, "y": 102.56, "transform": "noScale"}, @@ -901,19 +872,19 @@ {"name": "@mouth", "parent": "@axie", "rotation": -179.04, "x": 382.23, "y": 6.31}, {"name": "body-pattern", "parent": "@body", "rotation": -170.69, "x": -267.21, "y": -49.4, "transform": "noScale"}, {"name": "@shadow", "parent": "@root", "color": "e6d713ff"}, {"name": "@tail", "parent": "@axie", "rotation": -179.04, "x": -11.76, "y": 61.72}, - {"name": "tail", "parent": "@tail", "length": 203.67, "rotation": -20, "x": -12, "y": 15, "transform": "noScale"}, + {"name": "tail", "parent": "@tail", "length": 203.67, "rotation": -12, "x": 16, "y": 72.87, "transform": "noScale"}, {"name": "leg-front-right-IK", "parent": "@pivot-main", "x": -195.99, "y": -10.21, "color": "ff3f00ff"}, {"name": "leg-front-left-IK", "parent": "@pivot-main", "x": 42.3, "y": -18.42, "color": "ff3f00ff"}, {"name": "leg-back-left-IK", "parent": "@pivot-main", "x": 208.57, "y": 1.35, "color": "ff3f00ff"}, {"name": "@ball", "parent": "@root", "y": 191, "color": "f3981bff"}, - {"name": "ball", "parent": "@ball", "y": -191, "color": "f4a729ff"} + {"name": "ball", "parent": "@ball", "y": -191, "color": "f4a729ff"}, {"name": "@", "parent": "@root", "x": -12.72, "y": -33.5} ], "slots": [ {"name": "shadow", "bone": "@shadow", "attachment": "shadow"}, {"name": "ball", "bone": "ball"}, {"name": "leg-front-right", "bone": "@leg-front-right", "attachment": "leg-front-right"}, - {"name": "ear-right", "bone": "ear-right", "attachment": "ear-right"}, {"name": "tail", "bone": "tail", "attachment": "tail"}, {"name": "back", "bone": "back", "attachment": "back"}, - {"name": "leg-back-left", "bone": "@leg-back-left", "attachment": "leg-back-left"}, {"name": "body", "bone": "@body", "attachment": "body"}, - {"name": "body-pattern", "bone": "body-pattern", "attachment": "body-pattern"}, {"name": "leg-front-left", "bone": "@leg-front-left", "attachment": "leg-front-left"}, - {"name": "eyes", "bone": "@eyes", "attachment": "eyes"}, {"name": "mouth", "bone": "@mouth", "attachment": "mouth"}, {"name": "ear-left", "bone": "ear-left", "attachment": "ear-left"}, - {"name": "horn", "bone": "horn", "attachment": "horn"} + {"name": "tail", "bone": "tail", "attachment": "tail"}, {"name": "back", "bone": "back", "attachment": "back"}, + {"name": "leg-back-left", "bone": "@leg-back-left", "attachment": "leg-back-left"}, {"name": "ear-right", "bone": "ear-right", "attachment": "ear-right"}, + {"name": "body", "bone": "@body", "attachment": "body"}, {"name": "ear-left", "bone": "ear-left", "attachment": "ear-left"}, {"name": "body-pattern", "bone": "body-pattern"}, + {"name": "leg-front-left", "bone": "@leg-front-left", "attachment": "leg-front-left"}, {"name": "eyes", "bone": "@eyes", "attachment": "eyes"}, + {"name": "mouth", "bone": "@mouth", "attachment": "mouth"}, {"name": "horn", "bone": "horn", "attachment": "horn"} ], "ik": [ {"name": "leg-back-left-IK", "order": 2, "bones": ["@leg-back-left"], "target": "leg-back-left-IK"}, @@ -924,23 +895,25 @@ { "name": "default", "attachments": { - "back": {"back": {"x": 100.2, "y": -38.65, "rotation": -58, "width": 367, "height": 260, "path": "agamo-01.back"}}, - "ear-left": {"ear-left": {"x": 75.25, "y": 5.84, "rotation": -55, "width": 130, "height": 195, "path": "agamo-01.ear-left"}}, - "ear-right": {"ear-right": {"x": 74.7, "y": -6.61, "rotation": -120, "width": 130, "height": 195, "path": "agamo-01.ear-right"}}, + "back": {"back": {"x": 85.92823529411764, "y": 95.72588235294117, "rotation": -58, "width": 218.82352941176472, "height": 190.58823529411765, "path": "beast-08-lv2.back"}}, + "ear-left": {"ear-left": {"x": -56.79117647058823, "y": -39.58647058823529, "rotation": -90, "width": 145.88235294117646, "height": 202.35294117647058, "path": "beast-08-lv2.ear-left"}}, + "ear-right": { + "ear-right": {"x": -51.67058823529412, "y": 62.02764705882352, "rotation": -93, "width": 152.94117647058823, "height": 211.76470588235296, "path": "beast-08-lv2.ear-right"} + }, "eyes": { - "eyes": {"x": 49.88, "y": 29.99, "width": 327, "height": 121, "path": "agamo-01.eyes"}, - "eyes-angry": {"x": 49.88, "y": 29.99, "width": 327, "height": 121, "path": "agamo-01.eyes-angry"}, - "eyes-happy": {"x": 49.88, "y": 29.99, "width": 327, "height": 121, "path": "agamo-01.eyes-happy"}, - "eyes-shut": {"x": 49.88, "y": 29.99, "width": 327, "height": 121, "path": "agamo-01.eyes-shut"} + "eyes": {"x": 35.93941176470588, "y": 31.855882352941173, "width": 312.94117647058823, "height": 150.58823529411765, "path": "beast-08-lv2.eyes"}, + "eyes-angry": {"x": 35.93941176470588, "y": 33.03235294117646, "width": 312.94117647058823, "height": 148.23529411764707, "path": "beast-08-lv2.eyes-angry"}, + "eyes-happy": {"x": 35.93941176470588, "y": 34.20882352941177, "width": 312.94117647058823, "height": 145.88235294117646, "path": "beast-08-lv2.eyes-happy"}, + "eyes-shut": {"x": 35.93941176470588, "y": 28.26764705882352, "width": 312.94117647058823, "height": 131.76470588235296, "path": "beast-08-lv2.eyes-shut"} }, - "horn": {"horn": {"x": 119.99, "y": 15.12, "rotation": -90, "width": 145, "height": 205, "path": "agamo-01.horn"}}, + "horn": {"horn": {"x": 141.38529411764705, "y": 19.70764705882352, "rotation": -90, "width": 263.5294117647059, "height": 251.76470588235296, "path": "beast-08-lv2.horn"}}, "mouth": { - "mouth": {"x": 14.88, "y": 54.49, "width": 135, "height": 74, "path": "agamo-01.mouth"}, - "mouth-bite": {"x": 13.88, "y": 59.49, "width": 133, "height": 66, "path": "agamo-01.mouth-bite"}, - "mouth-open": {"x": 15.38, "y": 47.99, "width": 178, "height": 109, "path": "agamo-01.mouth-open"}, - "mouth-smile": {"x": 19.38, "y": 56.49, "width": 228, "height": 68, "path": "agamo-01.mouth-smile"} + "mouth": {"x": 15.645294117647058, "y": 79.44411764705882, "width": 103.52941176470588, "height": 89.41176470588236, "path": "beast-08-lv2.mouth"}, + "mouth-bite": {"x": 21.292352941176464, "y": 60.620588235294115, "width": 148.23529411764707, "height": 127.05882352941177, "path": "beast-08-lv2.mouth-bite"}, + "mouth-open": {"x": 17.939411764705884, "y": 35.738235294117636, "width": 112.94117647058823, "height": 218.82352941176472, "path": "beast-08-lv2.mouth-open"}, + "mouth-smile": {"x": 15.645294117647058, "y": 48.85588235294117, "width": 103.52941176470588, "height": 150.58823529411765, "path": "beast-08-lv2.mouth-smile"} }, - "tail": {"tail": {"x": 81.05, "y": 16.72, "rotation": 20, "width": 233, "height": 201, "path": "agamo-01.tail"}} + "tail": {"tail": {"x": 130.26588235294116, "y": 27.996470588235304, "rotation": 12, "width": 230.58823529411765, "height": 277.6470588235294, "path": "beast-08-lv2.tail"}} } } ], @@ -989,33 +962,36 @@ "activity/victory-pose-back-flip": "2227634241" } }, - "body-spiky": { + "plant-02-lv2": { "bones": [ {"name": "@root"}, {"name": "@pivot-main", "parent": "@root"}, {"name": "@pivot-back", "parent": "@pivot-main", "x": 205, "y": 180, "color": "ff0101ff"}, {"name": "@pivot-center", "parent": "@pivot-back", "x": -215.11, "y": -5.25, "color": "ff0101ff"}, {"name": "@axie", "parent": "@pivot-center", "length": 213.28, "rotation": 179.04, "x": 196.39, "y": 5.16}, {"name": "@back", "parent": "@axie", "rotation": -179.04, "x": 37.63, "y": -198.19}, + {"name": "back", "parent": "@back", "length": 149.41, "rotation": 64, "x": -51.97, "y": -9.7, "transform": "noScale"}, {"name": "@body", "parent": "@axie", "length": 226.28, "rotation": -8.35, "x": 224.58, "y": -0.53}, {"name": "@ear-left", "parent": "@axie", "rotation": -179.04, "x": 112.7, "y": -203.23}, - {"name": "@ear-right", "parent": "@axie", "rotation": -179.04, "x": 405.28, "y": -235.33}, {"name": "@eyes", "parent": "@axie", "rotation": -179.04, "x": 384.24, "y": -113.67}, - {"name": "@horn", "parent": "@axie", "rotation": -179.04, "x": 327.92, "y": -214.63}, + {"name": "ear-left", "parent": "@ear-left", "length": 113.61, "rotation": 52, "x": -27, "y": -17, "transform": "noScale"}, + {"name": "@ear-right", "parent": "@axie", "rotation": -179.04, "x": 405.28, "y": -235.33}, + {"name": "ear-right", "parent": "@ear-right", "length": 119.39, "rotation": 93, "x": -40, "y": -54, "transform": "noScale"}, + {"name": "@eyes", "parent": "@axie", "rotation": -179.04, "x": 384.24, "y": -113.67}, {"name": "@horn", "parent": "@axie", "rotation": -179.04, "x": 327.92, "y": -214.63}, + {"name": "horn", "parent": "@horn", "length": 176.72, "rotation": 90, "y": 18, "transform": "noScale"}, {"name": "@leg-back-left", "parent": "@axie", "length": 76.4, "rotation": 100.96, "x": -15.3, "y": 102.56, "transform": "noScale"}, {"name": "@leg-front-left", "parent": "@axie", "length": 51.19, "rotation": 93.86, "x": 134.77, "y": 149.55, "transform": "noScale"}, {"name": "@leg-front-right", "parent": "@axie", "length": 74.83, "rotation": 83.2, "x": 382.95, "y": 121.78, "transform": "noScale"}, {"name": "@mouth", "parent": "@axie", "rotation": -179.04, "x": 382.23, "y": 6.31}, {"name": "body-pattern", "parent": "@body", "rotation": -170.69, "x": -267.21, "y": -49.4, "transform": "noScale"}, {"name": "@shadow", "parent": "@root", "color": "e6d713ff"}, - {"name": "@tail", "parent": "@axie", "rotation": -179.04, "x": -11.76, "y": 61.72}, {"name": "leg-front-right-IK", "parent": "@pivot-main", "x": -195.99, "y": -10.21, "color": "ff3f00ff"}, + {"name": "@tail", "parent": "@axie", "rotation": -179.04, "x": -11.76, "y": 61.72}, + {"name": "tail", "parent": "@tail", "length": 203.67, "rotation": 20, "x": 21, "y": 37, "transform": "noScale"}, + {"name": "leg-front-right-IK", "parent": "@pivot-main", "x": -195.99, "y": -10.21, "color": "ff3f00ff"}, {"name": "leg-front-left-IK", "parent": "@pivot-main", "x": 42.3, "y": -18.42, "color": "ff3f00ff"}, {"name": "leg-back-left-IK", "parent": "@pivot-main", "x": 208.57, "y": 1.35, "color": "ff3f00ff"}, {"name": "@ball", "parent": "@root", "y": 191, "color": "f3981bff"}, - {"name": "ball", "parent": "@ball", "y": -191, "color": "f4a729ff"}, {"name": "@body-neck", "parent": "@pivot-center", "x": -161.89, "y": -53.75, "color": "ff0101ff"}, - {"name": "@body-ground", "parent": "@pivot-main", "x": 220, "transform": "noRotationOrReflection", "color": "ff0101ff"}, - {"name": "@body-air", "parent": "@pivot-back", "x": 63, "y": 365, "transform": "noRotationOrReflection", "color": "ff0101ff"}, - {"name": "@body-cheek", "parent": "@pivot-center", "x": 15.11, "y": 47.25, "color": "ff0101ff"} + {"name": "ball", "parent": "@ball", "y": -191, "color": "f4a729ff"}, {"name": "@", "parent": "@root", "x": -9.42, "y": -38.33} ], "slots": [ {"name": "shadow", "bone": "@shadow", "attachment": "shadow"}, {"name": "ball", "bone": "ball"}, {"name": "leg-front-right", "bone": "@leg-front-right", "attachment": "leg-front-right"}, - {"name": "leg-back-left", "bone": "@leg-back-left", "attachment": "leg-back-left"}, {"name": "body", "bone": "@body", "attachment": "body-spiky"}, - {"name": "body-pattern", "bone": "body-pattern"}, {"name": "leg-front-left", "bone": "@leg-front-left", "attachment": "leg-front-left"}, - {"name": "body-neck", "bone": "@body-neck", "attachment": "body-neck"}, {"name": "body-ground", "bone": "@body-ground", "attachment": "body-ground"}, - {"name": "body-air", "bone": "@body-air", "attachment": "body-air"}, {"name": "body-cheek", "bone": "@body-cheek", "attachment": "body-cheek"} + {"name": "ear-right", "bone": "ear-right", "attachment": "ear-right"}, {"name": "tail", "bone": "tail", "attachment": "tail"}, {"name": "back", "bone": "back", "attachment": "back"}, + {"name": "leg-back-left", "bone": "@leg-back-left", "attachment": "leg-back-left"}, {"name": "body", "bone": "@body", "attachment": "body"}, {"name": "body-pattern", "bone": "body-pattern"}, + {"name": "leg-front-left", "bone": "@leg-front-left", "attachment": "leg-front-left"}, {"name": "eyes", "bone": "@eyes", "attachment": "eyes"}, + {"name": "mouth", "bone": "@mouth", "attachment": "mouth"}, {"name": "ear-left", "bone": "ear-left", "attachment": "ear-left"}, {"name": "horn", "bone": "horn", "attachment": "horn"} ], "ik": [ {"name": "leg-back-left-IK", "order": 2, "bones": ["@leg-back-left"], "target": "leg-back-left-IK"}, @@ -1026,68 +1002,25 @@ { "name": "default", "attachments": { - "ball": {"ball": {"y": 191, "width": 393, "height": 390, "path": "body-normal.ball"}}, - "body": {"body-spiky": {"x": -16.28, "y": -92.86, "rotation": -170.69, "width": 715, "height": 560, "path": "body-spiky.body-spiky"}}, - "leg-back-left": { - "leg-back-left": {"x": 32.56, "y": -0.8, "rotation": 83.45, "width": 80, "height": 94, "path": "body-normal.leg-back-left"}, - "leg-back-left-long": {"x": 34.89, "y": -5.5, "rotation": 221.45, "width": 85, "height": 82, "path": "body-normal.leg-back-left-long"}, - "leg-back-left-stretch": {"x": 27.29, "y": 1.58, "rotation": 54.45, "width": 67, "height": 70, "path": "body-normal.leg-back-left-stretch"} - }, - "leg-front-left": { - "leg-front-left": {"x": 21.98, "y": 1.18, "rotation": 97.51, "width": 72, "height": 63, "path": "body-normal.leg-front-left"}, - "leg-front-left-long": {"x": 27.48, "y": -6.04, "rotation": -173.75, "width": 89, "height": 77, "path": "body-normal.leg-front-left-long"}, - "leg-front-left-stretch": {"x": 19.24, "y": -3.96, "rotation": 142.15, "width": 70, "height": 77, "path": "body-normal.leg-front-left-stretch"} + "back": {"back": {"x": 134.45588235294116, "y": 19.689411764705884, "rotation": -64, "width": 310.5882352941177, "height": 312.94117647058823, "path": "plant-02-lv2.back"}}, + "ear-left": {"ear-left": {"x": 98.47411764705883, "y": 53.76235294117647, "rotation": -52, "width": 169.41176470588235, "height": 228.23529411764707, "path": "plant-02-lv2.ear-left"}}, + "ear-right": { + "ear-right": {"x": 103.43470588235294, "y": -5.28352941176471, "rotation": -93, "width": 136.47058823529412, "height": 237.64705882352942, "path": "plant-02-lv2.ear-right"} }, - "leg-front-right": { - "leg-front-right": {"x": 31.35, "y": -1.66, "rotation": 87.96, "width": 80, "height": 94, "path": "body-normal.leg-front-right"}, - "leg-front-right-long": {"x": 36.56, "y": -0.65, "rotation": 205.96, "width": 89, "height": 77, "path": "body-normal.leg-front-right-long"}, - "leg-front-right-stretch": {"x": 30.65, "y": 1.81, "rotation": 142.01, "width": 81, "height": 69, "path": "body-normal.leg-front-right-stretch"} - }, - "shadow": {"shadow": {"width": 946, "height": 191, "path": "body-spiky.shadow"}}, - "body-air": { - "body-air1a_00": {"x": 1.37, "y": 35.21, "width": 209.375, "height": 129.6875, "path": "body-accessory.body-air1a_00"}, - "body-air1a_01": {"x": 1.37, "y": 35.21, "width": 209.375, "height": 129.6875, "path": "body-accessory.body-air1a_01"}, - "body-air1a_02": {"x": 1.37, "y": 35.21, "width": 209.375, "height": 129.6875, "path": "body-accessory.body-air1a_02"}, - "body-air1a_03": {"x": 1.37, "y": 35.21, "width": 209.375, "height": 129.6875, "path": "body-accessory.body-air1a_03"}, - "body-air1a_04": {"x": 1.37, "y": 35.21, "width": 209.375, "height": 129.6875, "path": "body-accessory.body-air1a_04"}, - "body-air1a_05": {"x": 1.37, "y": 35.21, "width": 209.375, "height": 129.6875, "path": "body-accessory.body-air1a_05"}, - "body-air1a_06": {"x": 1.37, "y": 35.21, "width": 209.375, "height": 129.6875, "path": "body-accessory.body-air1a_06"}, - "body-air1a_07": {"x": 1.37, "y": 35.21, "width": 209.375, "height": 129.6875, "path": "body-accessory.body-air1a_07"}, - "body-air1b_00": {"x": 1.37, "y": 35.21, "width": 156.25, "height": 192.1875, "path": "body-accessory.body-air1b_00"}, - "body-air1b_01": {"x": 1.37, "y": 35.21, "width": 156.25, "height": 192.1875, "path": "body-accessory.body-air1b_01"}, - "body-air1b_02": {"x": 1.37, "y": 35.21, "width": 156.25, "height": 192.1875, "path": "body-accessory.body-air1b_02"}, - "body-air1c_00": {"x": 1.37, "y": 35.21, "width": 200.0, "height": 289.0625, "path": "body-accessory.body-air1c_00"}, - "body-air1c_01": {"x": 1.37, "y": 35.21, "width": 200.0, "height": 289.0625, "path": "body-accessory.body-air1c_01"}, - "body-air1c_02": {"x": 1.37, "y": 35.21, "width": 200.0, "height": 289.0625, "path": "body-accessory.body-air1c_02"}, - "body-air1c_03": {"x": 1.37, "y": 35.21, "width": 200.0, "height": 289.0625, "path": "body-accessory.body-air1c_03"}, - "body-air1d_00": {"x": 1.37, "y": 35.21, "width": 204.6875, "height": 273.4375, "path": "body-accessory.body-air1d_00"}, - "body-air1d_01": {"x": 1.37, "y": 35.21, "width": 204.6875, "height": 273.4375, "path": "body-accessory.body-air1d_01"}, - "body-air1d_02": {"x": 1.37, "y": 35.21, "width": 204.6875, "height": 273.4375, "path": "body-accessory.body-air1d_02"}, - "body-air1d_03": {"x": 1.37, "y": 35.21, "width": 204.6875, "height": 273.4375, "path": "body-accessory.body-air1d_03"} - }, - "body-cheek": { - "body-cheek1a": {"x": 1.52, "y": 3.04, "width": 60.9375, "height": 57.8125, "path": "body-accessory.body-cheek1a"}, - "body-cheek1b": {"x": 1.52, "y": 3.04, "width": 50.0, "height": 76.5625, "path": "body-accessory.body-cheek1b"}, - "body-cheek1c": {"x": 1.52, "y": 3.04, "width": 50.0, "height": 76.5625, "path": "body-accessory.body-cheek1c"}, - "body-cheek1d": {"x": 1.52, "y": 3.04, "width": 50.0, "height": 76.5625, "path": "body-accessory.body-cheek1d"}, - "body-cheek1e": {"x": 1.52, "y": 3.04, "width": 54.6875, "height": 79.6875, "path": "body-accessory.body-cheek1e"}, - "body-cheek1f": {"x": 1.52, "y": 3.04, "width": 56.25, "height": 57.8125, "path": "body-accessory.body-cheek1f"}, - "body-cheek1g": {"x": 1.52, "y": 3.04, "width": 104.6875, "height": 96.875, "path": "body-accessory.body-cheek1g"} + "eyes": { + "eyes": {"x": 28.785882352941172, "y": 39.75176470588236, "width": 230.58823529411765, "height": 101.17647058823529, "path": "plant-02-lv2.eyes"}, + "eyes-angry": {"x": 23.69764705882352, "y": 31.104705882352942, "width": 211.76470588235296, "height": 96.47058823529412, "path": "plant-02-lv2.eyes-angry"}, + "eyes-happy": {"x": 28.785882352941172, "y": 39.75176470588236, "width": 230.58823529411765, "height": 101.17647058823529, "path": "plant-02-lv2.eyes-happy"}, + "eyes-shut": {"x": 28.785882352941172, "y": 41.42823529411765, "width": 230.58823529411765, "height": 98.82352941176471, "path": "plant-02-lv2.eyes-shut"} }, - "body-ground": { - "body-ground1a_00": {"x": 4.75, "y": 123.01, "width": 254.6875, "height": 275.0, "path": "body-accessory.body-ground1a_00"}, - "body-ground1a_01": {"x": 4.75, "y": 123.01, "width": 254.6875, "height": 275.0, "path": "body-accessory.body-ground1a_01"}, - "body-ground1a_02": {"x": 4.75, "y": 123.01, "width": 254.6875, "height": 275.0, "path": "body-accessory.body-ground1a_02"}, - "body-ground1a_03": {"x": 4.75, "y": 123.01, "width": 254.6875, "height": 275.0, "path": "body-accessory.body-ground1a_03"} + "horn": {"horn": {"x": 109.10470588235295, "y": -6.815294117647058, "rotation": -90, "width": 136.47058823529412, "height": 216.47058823529412, "path": "plant-02-lv2.horn"}}, + "mouth": { + "mouth": {"x": 19.932941176470585, "y": 73.63411764705882, "width": 115.29411764705883, "height": 89.41176470588236, "path": "plant-02-lv2.mouth"}, + "mouth-bite": {"x": 23.40352941176471, "y": 52.457647058823525, "width": 202.35294117647058, "height": 131.76470588235296, "path": "plant-02-lv2.mouth-bite"}, + "mouth-open": {"x": 32.4035294117647, "y": 27.751764705882348, "width": 122.3529411764706, "height": 181.1764705882353, "path": "plant-02-lv2.mouth-open"}, + "mouth-smile": {"x": 27.4035294117647, "y": 65.39882352941177, "width": 122.3529411764706, "height": 105.88235294117648, "path": "plant-02-lv2.mouth-smile"} }, - "body-neck": { - "body-neck1a": {"x": -5.4, "y": -54.79, "width": 92.1875, "height": 96.875, "path": "body-accessory.body-neck1a"}, - "body-neck1b": {"x": -5.4, "y": -54.79, "width": 103.125, "height": 117.1875, "path": "body-accessory.body-neck1b"}, - "body-neck1c": {"x": -5.4, "y": -54.79, "width": 79.6875, "height": 110.9375, "path": "body-accessory.body-neck1c"}, - "body-neck1d": {"x": -5.4, "y": -54.79, "width": 121.875, "height": 101.5625, "path": "body-accessory.body-neck1d"}, - "body-neck1e": {"x": -5.4, "y": -54.79, "width": 89.0625, "height": 107.8125, "path": "body-accessory.body-neck1e"}, - "body-neck1f": {"x": -5.4, "y": -54.79, "width": 79.6875, "height": 79.6875, "path": "body-accessory.body-neck1f"} - } + "tail": {"tail": {"x": 80.27588235294115, "y": -22.900588235294116, "rotation": -20, "width": 310.5882352941177, "height": 232.94117647058823, "path": "plant-02-lv2.tail"}} } } ], @@ -1136,16 +1069,16 @@ "activity/victory-pose-back-flip": "2227634241" } }, - "bird-02": { + "plant-10-lv2": { "bones": [ {"name": "@root"}, {"name": "@pivot-main", "parent": "@root"}, {"name": "@pivot-back", "parent": "@pivot-main", "x": 205, "y": 180, "color": "ff0101ff"}, {"name": "@pivot-center", "parent": "@pivot-back", "x": -215.11, "y": -5.25, "color": "ff0101ff"}, {"name": "@axie", "parent": "@pivot-center", "length": 213.28, "rotation": 179.04, "x": 196.39, "y": 5.16}, {"name": "@back", "parent": "@axie", "rotation": -179.04, "x": 37.63, "y": -198.19}, - {"name": "back", "parent": "@back", "length": 149.41, "rotation": 73, "x": 6.03, "y": 11.3, "transform": "noScale"}, + {"name": "back", "parent": "@back", "length": 149.41, "rotation": 58, "x": -15.97, "y": 46.3, "transform": "noScale"}, {"name": "@body", "parent": "@axie", "length": 226.28, "rotation": -8.35, "x": 224.58, "y": -0.53}, {"name": "@ear-left", "parent": "@axie", "rotation": -179.04, "x": 112.7, "y": -203.23}, - {"name": "ear-left", "parent": "@ear-left", "length": 113.61, "rotation": 90, "x": 5, "y": -45, "transform": "noScale"}, + {"name": "ear-left", "parent": "@ear-left", "length": 113.61, "rotation": 46, "x": -7, "y": -73, "transform": "noScale"}, {"name": "@ear-right", "parent": "@axie", "rotation": -179.04, "x": 405.28, "y": -235.33}, - {"name": "ear-right", "parent": "@ear-right", "length": 119.39, "rotation": 93, "x": -30, "y": -15, "transform": "noScale"}, + {"name": "ear-right", "parent": "@ear-right", "length": 119.39, "rotation": 133, "x": -77, "y": -96, "transform": "noScale"}, {"name": "@eyes", "parent": "@axie", "rotation": -179.04, "x": 384.24, "y": -113.67}, {"name": "@horn", "parent": "@axie", "rotation": -179.04, "x": 327.92, "y": -214.63}, {"name": "horn", "parent": "@horn", "length": 176.72, "rotation": 90, "y": 18, "transform": "noScale"}, {"name": "@leg-back-left", "parent": "@axie", "length": 76.4, "rotation": 100.96, "x": -15.3, "y": 102.56, "transform": "noScale"}, @@ -1154,15 +1087,15 @@ {"name": "@mouth", "parent": "@axie", "rotation": -179.04, "x": 382.23, "y": 6.31}, {"name": "body-pattern", "parent": "@body", "rotation": -170.69, "x": -267.21, "y": -49.4, "transform": "noScale"}, {"name": "@shadow", "parent": "@root", "color": "e6d713ff"}, {"name": "@tail", "parent": "@axie", "rotation": -179.04, "x": -11.76, "y": 61.72}, - {"name": "tail", "parent": "@tail", "length": 203.67, "rotation": -12, "x": 16, "y": 72.87, "transform": "noScale"}, + {"name": "tail", "parent": "@tail", "length": 203.67, "rotation": 42, "x": 39, "y": -22, "transform": "noScale"}, {"name": "leg-front-right-IK", "parent": "@pivot-main", "x": -195.99, "y": -10.21, "color": "ff3f00ff"}, {"name": "leg-front-left-IK", "parent": "@pivot-main", "x": 42.3, "y": -18.42, "color": "ff3f00ff"}, {"name": "leg-back-left-IK", "parent": "@pivot-main", "x": 208.57, "y": 1.35, "color": "ff3f00ff"}, {"name": "@ball", "parent": "@root", "y": 191, "color": "f3981bff"}, - {"name": "ball", "parent": "@ball", "y": -191, "color": "f4a729ff"} + {"name": "ball", "parent": "@ball", "y": -191, "color": "f4a729ff"}, {"name": "@", "parent": "@root", "x": 33.13, "y": -50.32} ], "slots": [ {"name": "shadow", "bone": "@shadow", "attachment": "shadow"}, {"name": "ball", "bone": "ball"}, {"name": "leg-front-right", "bone": "@leg-front-right", "attachment": "leg-front-right"}, - {"name": "ear-right", "bone": "ear-right"}, {"name": "tail", "bone": "tail", "attachment": "tail"}, {"name": "back", "bone": "back", "attachment": "back"}, + {"name": "ear-right", "bone": "ear-right", "attachment": "ear-right"}, {"name": "tail", "bone": "tail", "attachment": "tail"}, {"name": "back", "bone": "back", "attachment": "back"}, {"name": "leg-back-left", "bone": "@leg-back-left", "attachment": "leg-back-left"}, {"name": "body", "bone": "@body", "attachment": "body"}, {"name": "body-pattern", "bone": "body-pattern"}, {"name": "leg-front-left", "bone": "@leg-front-left", "attachment": "leg-front-left"}, {"name": "eyes", "bone": "@eyes", "attachment": "eyes"}, {"name": "mouth", "bone": "@mouth", "attachment": "mouth"}, {"name": "ear-left", "bone": "ear-left", "attachment": "ear-left"}, {"name": "horn", "bone": "horn", "attachment": "horn"} @@ -1176,22 +1109,25 @@ { "name": "default", "attachments": { - "back": {"back": {"x": 177.31, "y": 11.69, "rotation": -73, "width": 238, "height": 353, "path": "bird-02.back"}}, - "ear-left": {"ear-left": {"x": 1.98, "y": 0.84, "rotation": -90, "width": 115, "height": 119, "path": "bird-02.ear-left"}}, + "back": {"back": {"x": 60.66117647058823, "y": 35.43705882352942, "rotation": -58, "width": 254.11764705882354, "height": 364.70588235294116, "path": "plant-10-lv2.back"}}, + "ear-left": {"ear-left": {"x": 129.67235294117646, "y": 75.42235294117647, "rotation": -46, "width": 188.23529411764707, "height": 228.23529411764707, "path": "plant-10-lv2.ear-left"}}, + "ear-right": { + "ear-right": {"x": 67.46411764705883, "y": -103.55529411764707, "rotation": -133, "width": 169.41176470588235, "height": 256.47058823529414, "path": "plant-10-lv2.ear-right"} + }, "eyes": { - "eyes": {"x": 28.16, "y": 17.98, "width": 293, "height": 97, "path": "bird-02.eyes"}, - "eyes-angry": {"x": 28.16, "y": 17.98, "width": 293, "height": 97, "path": "bird-02.eyes-angry"}, - "eyes-happy": {"x": 28.16, "y": 15.48, "width": 293, "height": 60, "path": "bird-02.eyes-happy"}, - "eyes-shut": {"x": 26.16, "y": 7.98, "width": 289, "height": 49, "path": "bird-02.eyes-shut"} + "eyes": {"x": 28.421176470588232, "y": 29.27, "width": 294.11764705882354, "height": 120.0, "path": "plant-10-lv2.eyes"}, + "eyes-angry": {"x": 48.59764705882353, "y": 30.44647058823529, "width": 331.7647058823529, "height": 117.64705882352942, "path": "plant-10-lv2.eyes-angry"}, + "eyes-happy": {"x": 28.421176470588232, "y": 30.44647058823529, "width": 294.11764705882354, "height": 117.64705882352942, "path": "plant-10-lv2.eyes-happy"}, + "eyes-shut": {"x": 28.421176470588232, "y": 30.44647058823529, "width": 294.11764705882354, "height": 117.64705882352942, "path": "plant-10-lv2.eyes-shut"} }, - "horn": {"horn": {"x": 67.48, "y": -30.66, "rotation": -90, "width": 242, "height": 186, "path": "bird-02.horn"}}, + "horn": {"horn": {"x": 110.12294117647058, "y": -22.332941176470595, "rotation": -90, "width": 235.29411764705884, "height": 244.7058823529412, "path": "plant-10-lv2.horn"}}, "mouth": { - "mouth": {"x": 2.66, "y": 67.48, "width": 100, "height": 124, "path": "bird-02.mouth"}, - "mouth-bite": {"x": 8.66, "y": 73.98, "width": 140, "height": 111, "path": "bird-02.mouth-bite"}, - "mouth-open": {"x": 3.16, "y": 55.48, "width": 99, "height": 180, "path": "bird-02.mouth-open"}, - "mouth-smile": {"x": 11.66, "y": 67.48, "width": 118, "height": 124, "path": "bird-02.mouth-smile"} + "mouth": {"x": -4.696470588235297, "y": 32.093529411764706, "width": 122.3529411764706, "height": 162.35294117647058, "path": "plant-10-lv2.mouth"}, + "mouth-bite": {"x": 15.59, "y": 32.269999999999996, "width": 160.0, "height": 160.0, "path": "plant-10-lv2.mouth-bite"}, + "mouth-open": {"x": -2.872941176470587, "y": 16.799411764705884, "width": 124.70588235294117, "height": 192.94117647058823, "path": "plant-10-lv2.mouth-open"}, + "mouth-smile": {"x": 2.244705882352942, "y": 32.093529411764706, "width": 136.47058823529412, "height": 162.35294117647058, "path": "plant-10-lv2.mouth-smile"} }, - "tail": {"tail": {"x": 140.49, "y": 22.82, "rotation": 12, "width": 257, "height": 233, "path": "bird-02.tail"}} + "tail": {"tail": {"x": 168.68235294117648, "y": -18.59411764705884, "rotation": -42, "width": 348.2352941176471, "height": 310.5882352941177, "path": "plant-10-lv2.tail"}} } } ], @@ -1240,16 +1176,16 @@ "activity/victory-pose-back-flip": "2227634241" } }, - "beast-02": { + "plant-04-lv2": { "bones": [ {"name": "@root"}, {"name": "@pivot-main", "parent": "@root"}, {"name": "@pivot-back", "parent": "@pivot-main", "x": 205, "y": 180, "color": "ff0101ff"}, {"name": "@pivot-center", "parent": "@pivot-back", "x": -215.11, "y": -5.25, "color": "ff0101ff"}, {"name": "@axie", "parent": "@pivot-center", "length": 213.28, "rotation": 179.04, "x": 196.39, "y": 5.16}, {"name": "@back", "parent": "@axie", "rotation": -179.04, "x": 37.63, "y": -198.19}, - {"name": "back", "parent": "@back", "length": 149.41, "rotation": 58, "x": -13.97, "y": 26.3, "transform": "noScale"}, + {"name": "back", "parent": "@back", "length": 149.41, "rotation": 58, "x": -101.97, "y": 46.3, "transform": "noScale"}, {"name": "@body", "parent": "@axie", "length": 226.28, "rotation": -8.35, "x": 224.58, "y": -0.53}, {"name": "@ear-left", "parent": "@axie", "rotation": -179.04, "x": 112.7, "y": -203.23}, - {"name": "ear-left", "parent": "@ear-left", "length": 113.61, "rotation": 90, "x": -27, "y": 19, "transform": "noScale"}, + {"name": "ear-left", "parent": "@ear-left", "length": 113.61, "rotation": 90, "x": -7, "y": 19, "transform": "noScale"}, {"name": "@ear-right", "parent": "@axie", "rotation": -179.04, "x": 405.28, "y": -235.33}, - {"name": "ear-right", "parent": "@ear-right", "length": 119.39, "rotation": 93, "x": -30, "y": -15, "transform": "noScale"}, + {"name": "ear-right", "parent": "@ear-right", "length": 119.39, "rotation": 93, "x": -40, "y": -15, "transform": "noScale"}, {"name": "@eyes", "parent": "@axie", "rotation": -179.04, "x": 384.24, "y": -113.67}, {"name": "@horn", "parent": "@axie", "rotation": -179.04, "x": 327.92, "y": -214.63}, {"name": "horn", "parent": "@horn", "length": 176.72, "rotation": 90, "y": 18, "transform": "noScale"}, {"name": "@leg-back-left", "parent": "@axie", "length": 76.4, "rotation": 100.96, "x": -15.3, "y": 102.56, "transform": "noScale"}, @@ -1258,7 +1194,7 @@ {"name": "@mouth", "parent": "@axie", "rotation": -179.04, "x": 382.23, "y": 6.31}, {"name": "body-pattern", "parent": "@body", "rotation": -170.69, "x": -267.21, "y": -49.4, "transform": "noScale"}, {"name": "@shadow", "parent": "@root", "color": "e6d713ff"}, {"name": "@tail", "parent": "@axie", "rotation": -179.04, "x": -11.76, "y": 61.72}, - {"name": "tail", "parent": "@tail", "length": 203.67, "rotation": -12, "x": 16, "y": 72.87, "transform": "noScale"}, + {"name": "tail", "parent": "@tail", "length": 203.67, "rotation": -42, "x": 39, "y": 92, "transform": "noScale"}, {"name": "leg-front-right-IK", "parent": "@pivot-main", "x": -195.99, "y": -10.21, "color": "ff3f00ff"}, {"name": "leg-front-left-IK", "parent": "@pivot-main", "x": 42.3, "y": -18.42, "color": "ff3f00ff"}, {"name": "leg-back-left-IK", "parent": "@pivot-main", "x": 208.57, "y": 1.35, "color": "ff3f00ff"}, {"name": "@ball", "parent": "@root", "y": 191, "color": "f3981bff"}, @@ -1266,9 +1202,115 @@ ], "slots": [ {"name": "shadow", "bone": "@shadow", "attachment": "shadow"}, {"name": "ball", "bone": "ball"}, {"name": "leg-front-right", "bone": "@leg-front-right", "attachment": "leg-front-right"}, - {"name": "tail", "bone": "tail", "attachment": "tail"}, {"name": "back", "bone": "back", "attachment": "back"}, - {"name": "leg-back-left", "bone": "@leg-back-left", "attachment": "leg-back-left"}, {"name": "body", "bone": "@body", "attachment": "body"}, - {"name": "ear-right", "bone": "ear-right", "attachment": "ear-right"}, {"name": "body-pattern", "bone": "body-pattern"}, + {"name": "ear-right", "bone": "ear-right", "attachment": "ear-right"}, {"name": "tail", "bone": "tail", "attachment": "tail"}, {"name": "back", "bone": "back", "attachment": "back"}, + {"name": "leg-back-left", "bone": "@leg-back-left", "attachment": "leg-back-left"}, {"name": "body", "bone": "@body", "attachment": "body"}, {"name": "body-pattern", "bone": "body-pattern"}, + {"name": "leg-front-left", "bone": "@leg-front-left", "attachment": "leg-front-left"}, {"name": "eyes", "bone": "@eyes", "attachment": "eyes"}, + {"name": "mouth", "bone": "@mouth", "attachment": "mouth"}, {"name": "ear-left", "bone": "ear-left", "attachment": "ear-left"}, {"name": "horn", "bone": "horn", "attachment": "horn"} + ], + "ik": [ + {"name": "leg-back-left-IK", "order": 2, "bones": ["@leg-back-left"], "target": "leg-back-left-IK"}, + {"name": "leg-front-left-IK", "order": 1, "bones": ["@leg-front-left"], "target": "leg-front-left-IK"}, + {"name": "leg-front-right-IK", "bones": ["@leg-front-right"], "target": "leg-front-right-IK"} + ], + "skins": [ + { + "name": "default", + "attachments": { + "back": {"back": {"x": 131.24529411764703, "y": -18.375294117647073, "rotation": -58, "width": 303.5294117647059, "height": 296.47058823529414, "path": "plant-04-lv2.back"}}, + "ear-left": {"ear-left": {"x": 43.211764705882345, "y": -22.55823529411765, "rotation": -90, "width": 181.1764705882353, "height": 181.1764705882353, "path": "plant-04-lv2.ear-left"}}, + "ear-right": { + "ear-right": {"x": 38.54176470588235, "y": -32.578235294117654, "rotation": -93, "width": 181.1764705882353, "height": 181.1764705882353, "path": "plant-04-lv2.ear-right"} + }, + "eyes": { + "eyes": {"x": 27.47, "y": 25.47647058823529, "width": 280.0, "height": 117.64705882352942, "path": "plant-04-lv2.eyes"}, + "eyes-angry": {"x": 27.47, "y": 36.88823529411765, "width": 280.0, "height": 138.8235294117647, "path": "plant-04-lv2.eyes-angry"}, + "eyes-happy": {"x": 27.47, "y": 25.47647058823529, "width": 280.0, "height": 117.64705882352942, "path": "plant-04-lv2.eyes-happy"}, + "eyes-shut": {"x": 27.47, "y": 25.47647058823529, "width": 280.0, "height": 117.64705882352942, "path": "plant-04-lv2.eyes-shut"} + }, + "horn": {"horn": {"x": 84.38235294117646, "y": -7.272941176470594, "rotation": -90, "width": 148.23529411764707, "height": 204.7058823529412, "path": "plant-04-lv2.horn"}}, + "mouth": { + "mouth": {"x": 15.705294117647059, "y": 49.35882352941176, "width": 183.52941176470588, "height": 65.88235294117648, "path": "plant-04-lv2.mouth"}, + "mouth-bite": {"x": 18.528823529411767, "y": 26.064705882352943, "width": 185.88235294117646, "height": 136.47058823529412, "path": "plant-04-lv2.mouth-bite"}, + "mouth-open": {"x": 14.64647058823529, "y": 18.241176470588233, "width": 157.64705882352942, "height": 174.11764705882354, "path": "plant-04-lv2.mouth-open"}, + "mouth-smile": {"x": 15.881764705882349, "y": 50.24117647058823, "width": 181.1764705882353, "height": 94.11764705882354, "path": "plant-04-lv2.mouth-smile"} + }, + "tail": {"tail": {"x": 101.6170588235294, "y": 40.12764705882352, "rotation": 42, "width": 244.7058823529412, "height": 251.76470588235296, "path": "plant-04-lv2.tail"}} + } + } + ], + "events": {"hit": {}, "hit-buff": {}, "jump": {}, "start-attack": {}}, + "keyAnimations": { + "activity/appear": "1147301273", + "activity/bath": "280689314", + "attack/ranged/cast-fly": "2066226114", + "attack/ranged/cast-high": "1602569476", + "attack/ranged/cast-low": "1656607229", + "attack/ranged/cast-multi": "755443278", + "attack/ranged/cast-tail": "194250333", + "activity/eat-bite": "2608588942", + "activity/eat-chew": "675090927", + "activity/entrance": "813164421", + "defense/evade": "832317166", + "activity/evolve": "2441292734", + "battle/get-buff": "4288170902", + "battle/get-debuff": "333978181", + "defense/hit-by-normal": "2330259298", + "defense/hit-by-normal-crit": "2907251534", + "defense/hit-by-normal-dramatic": "3476801918", + "defense/hit-by-ranged-attack": "3241238139", + "defense/hit-with-shield": "3504379809", + "attack/melee/horn-gore": "356425390", + "attack/melee/mouth-bite": "3430008503", + "action/move-back": "3483963258", + "action/move-forward": "1819067675", + "attack/melee/multi-attack": "4202784040", + "action/idle/normal": "1009184389", + "attack/melee/normal-attack": "563567727", + "activity/prepare": "1608256657", + "action/idle/random-01": "2828827010", + "action/idle/random-02": "1873947245", + "action/idle/random-03": "3181009532", + "action/idle/random-04": "986957450", + "action/idle/random-05": "2745614147", + "action/run": "122256817", + "draft/run-origin": "3633791092", + "attack/melee/shrimp": "1739135238", + "activity/sleep": "2678688179", + "attack/melee/tail-multi-slap": "2498186781", + "attack/melee/tail-roll": "3944557328", + "attack/melee/tail-smash": "70462377", + "attack/melee/tail-thrash": "319146610", + "activity/victory-pose-back-flip": "1893268900" + } + }, + "plant-12-lv2": { + "bones": [ + {"name": "@root"}, {"name": "@pivot-main", "parent": "@root"}, {"name": "@pivot-back", "parent": "@pivot-main", "x": 205, "y": 180, "color": "ff0101ff"}, + {"name": "@pivot-center", "parent": "@pivot-back", "x": -215.11, "y": -5.25, "color": "ff0101ff"}, + {"name": "@axie", "parent": "@pivot-center", "length": 213.28, "rotation": 179.04, "x": 196.39, "y": 5.16}, {"name": "@back", "parent": "@axie", "rotation": -179.04, "x": 37.63, "y": -198.19}, + {"name": "back", "parent": "@back", "length": 149.41, "rotation": 58, "x": -56.97, "y": 31.3, "transform": "noScale"}, + {"name": "@body", "parent": "@axie", "length": 226.28, "rotation": -8.35, "x": 224.58, "y": -0.53}, {"name": "@ear-left", "parent": "@axie", "rotation": -179.04, "x": 112.7, "y": -203.23}, + {"name": "ear-left", "parent": "@ear-left", "length": 113.61, "rotation": 90, "x": 5, "y": 19, "transform": "noScale"}, + {"name": "@ear-right", "parent": "@axie", "rotation": -179.04, "x": 405.28, "y": -235.33}, + {"name": "ear-right", "parent": "@ear-right", "length": 119.39, "rotation": 93, "x": -50, "y": -20, "transform": "noScale"}, + {"name": "@eyes", "parent": "@axie", "rotation": -179.04, "x": 384.24, "y": -113.67}, {"name": "@horn", "parent": "@axie", "rotation": -179.04, "x": 327.92, "y": -214.63}, + {"name": "horn", "parent": "@horn", "length": 176.72, "rotation": 90, "y": 18, "transform": "noScale"}, + {"name": "@leg-back-left", "parent": "@axie", "length": 76.4, "rotation": 100.96, "x": -15.3, "y": 102.56, "transform": "noScale"}, + {"name": "@leg-front-left", "parent": "@axie", "length": 51.19, "rotation": 93.86, "x": 134.77, "y": 149.55, "transform": "noScale"}, + {"name": "@leg-front-right", "parent": "@axie", "length": 74.83, "rotation": 83.2, "x": 382.95, "y": 121.78, "transform": "noScale"}, + {"name": "@mouth", "parent": "@axie", "rotation": -179.04, "x": 382.23, "y": 6.31}, + {"name": "body-pattern", "parent": "@body", "rotation": -170.69, "x": -267.21, "y": -49.4, "transform": "noScale"}, {"name": "@shadow", "parent": "@root", "color": "e6d713ff"}, + {"name": "@tail", "parent": "@axie", "rotation": -179.04, "x": -11.76, "y": 61.72}, + {"name": "tail", "parent": "@tail", "length": 203.67, "rotation": 28, "x": 28, "y": -13, "transform": "noScale"}, + {"name": "leg-front-right-IK", "parent": "@pivot-main", "x": -195.99, "y": -10.21, "color": "ff3f00ff"}, + {"name": "leg-front-left-IK", "parent": "@pivot-main", "x": 42.3, "y": -18.42, "color": "ff3f00ff"}, + {"name": "leg-back-left-IK", "parent": "@pivot-main", "x": 208.57, "y": 1.35, "color": "ff3f00ff"}, {"name": "@ball", "parent": "@root", "y": 191, "color": "f3981bff"}, + {"name": "ball", "parent": "@ball", "y": -191, "color": "f4a729ff"}, {"name": "@", "parent": "@root", "x": -6.76, "y": -30.86} + ], + "slots": [ + {"name": "shadow", "bone": "@shadow", "attachment": "shadow"}, {"name": "ball", "bone": "ball"}, {"name": "leg-front-right", "bone": "@leg-front-right", "attachment": "leg-front-right"}, + {"name": "ear-right", "bone": "ear-right", "attachment": "ear-right"}, {"name": "tail", "bone": "tail", "attachment": "tail"}, {"name": "back", "bone": "back", "attachment": "back"}, + {"name": "leg-back-left", "bone": "@leg-back-left", "attachment": "leg-back-left"}, {"name": "body", "bone": "@body", "attachment": "body"}, {"name": "body-pattern", "bone": "body-pattern"}, {"name": "leg-front-left", "bone": "@leg-front-left", "attachment": "leg-front-left"}, {"name": "eyes", "bone": "@eyes", "attachment": "eyes"}, {"name": "mouth", "bone": "@mouth", "attachment": "mouth"}, {"name": "ear-left", "bone": "ear-left", "attachment": "ear-left"}, {"name": "horn", "bone": "horn", "attachment": "horn"} ], @@ -1281,23 +1323,25 @@ { "name": "default", "attachments": { - "back": {"back": {"x": 108.57, "y": -8.94, "rotation": -58, "width": 228, "height": 235, "path": "beast-02.back"}}, - "ear-left": {"ear-left": {"x": 82.33, "y": -22.12, "rotation": -90, "width": 180, "height": 231, "path": "beast-02.ear-left"}}, - "ear-right": {"ear-right": {"x": 78.56, "y": -7.24, "rotation": -93, "width": 144, "height": 228, "path": "beast-02.ear-right"}}, + "back": {"back": {"x": 127.56764705882354, "y": 25.811176470588233, "rotation": -58, "width": 371.7647058823529, "height": 334.11764705882354, "path": "plant-12-lv2.back"}}, + "ear-left": {"ear-left": {"x": 57.43647058823529, "y": -16.508823529411767, "rotation": -90, "width": 157.64705882352942, "height": 174.11764705882354, "path": "plant-12-lv2.ear-left"}}, + "ear-right": { + "ear-right": {"x": 59.21764705882352, "y": 5.931176470588232, "rotation": -93, "width": 131.76470588235296, "height": 174.11764705882354, "path": "plant-12-lv2.ear-right"} + }, "eyes": { - "eyes": {"x": 25.62, "y": 19.83, "width": 283, "height": 94, "path": "beast-02.eyes"}, - "eyes-angry": {"x": 25.62, "y": 16.33, "width": 283, "height": 79, "path": "beast-02.eyes-angry"}, - "eyes-happy": {"x": 25.62, "y": 28.33, "width": 283, "height": 109, "path": "beast-02.eyes-happy"}, - "eyes-shut": {"x": 25.62, "y": 20.83, "width": 283, "height": 92, "path": "beast-02.eyes-shut"} + "eyes": {"x": 29.54, "y": 27.4, "width": 333, "height": 159, "path": "plant-12-lv2.eyes"}, + "eyes-angry": {"x": 33.04, "y": 27.4, "width": 340, "height": 159, "path": "plant-12-lv2.eyes-angry"}, + "eyes-happy": {"x": 33.04, "y": 27.4, "width": 340, "height": 159, "path": "plant-12-lv2.eyes-happy"}, + "eyes-shut": {"x": 33.04, "y": 27.4, "width": 340, "height": 159, "path": "plant-12-lv2.eyes-shut"} }, - "horn": {"horn": {"x": 102.83, "y": -9.62, "rotation": -90, "width": 309, "height": 260, "path": "beast-02.horn"}}, + "horn": {"horn": {"x": 77.05411764705883, "y": -9.067647058823535, "rotation": -90, "width": 249.41176470588235, "height": 148.23529411764707, "path": "plant-12-lv2.horn"}}, "mouth": { - "mouth": {"x": 12.62, "y": 46.83, "width": 121, "height": 106, "path": "beast-02.mouth"}, - "mouth-bite": {"x": 33.12, "y": 41.83, "width": 278, "height": 116, "path": "beast-02.mouth-bite"}, - "mouth-open": {"x": 14.12, "y": 6.33, "width": 124, "height": 189, "path": "beast-02.mouth-open"}, - "mouth-smile": {"x": 13.62, "y": 48.83, "width": 161, "height": 104, "path": "beast-02.mouth-smile"} + "mouth": {"x": -28.96, "y": 89.9, "width": 168, "height": 76, "path": "plant-12-lv2.mouth"}, + "mouth-bite": {"x": -91.96, "y": 80.4, "width": 274, "height": 85, "path": "plant-12-lv2.mouth-bite"}, + "mouth-open": {"x": -1.96, "y": 95.9, "width": 118, "height": 82, "path": "plant-12-lv2.mouth-open"}, + "mouth-smile": {"x": -22.96, "y": 75.4, "width": 148, "height": 95, "path": "plant-12-lv2.mouth-smile"} }, - "tail": {"tail": {"x": 97.3, "y": -24.34, "rotation": 12, "width": 234, "height": 224, "path": "beast-02.tail"}} + "tail": {"tail": {"x": 118.94705882352942, "y": 32.51882352941177, "rotation": -28, "width": 284.70588235294116, "height": 265.88235294117646, "path": "plant-12-lv2.tail"}} } } ], @@ -1309,7 +1353,7 @@ "attack/ranged/cast-high": "164191126", "attack/ranged/cast-low": "198813017", "attack/ranged/cast-multi": "151119", - "attack/ranged/cast-tail": "1843465463", + "attack/ranged/cast-tail": "997902532", "activity/eat-bite": "1137807767", "activity/eat-chew": "1988236421", "activity/entrance": "3768378365", @@ -1331,7 +1375,7 @@ "attack/melee/normal-attack": "3305373483", "activity/prepare": "405864717", "action/idle/random-01": "554401889", - "action/idle/random-02": "1001093024", + "action/idle/random-02": "1085666627", "action/idle/random-03": "2021333900", "action/idle/random-04": "1003789695", "action/idle/random-05": "2745614147", @@ -1346,16 +1390,16 @@ "activity/victory-pose-back-flip": "2227634241" } }, - "reptile-06": { + "plant-06-lv2": { "bones": [ {"name": "@root"}, {"name": "@pivot-main", "parent": "@root"}, {"name": "@pivot-back", "parent": "@pivot-main", "x": 205, "y": 180, "color": "ff0101ff"}, {"name": "@pivot-center", "parent": "@pivot-back", "x": -215.11, "y": -5.25, "color": "ff0101ff"}, {"name": "@axie", "parent": "@pivot-center", "length": 213.28, "rotation": 179.04, "x": 196.39, "y": 5.16}, {"name": "@back", "parent": "@axie", "rotation": -179.04, "x": 37.63, "y": -198.19}, - {"name": "back", "parent": "@back", "length": 149.41, "rotation": 64, "x": -51.97, "y": 25.3, "transform": "noScale"}, + {"name": "back", "parent": "@back", "length": 149.41, "rotation": 50, "x": -51.97, "y": 55.3, "transform": "noScale"}, {"name": "@body", "parent": "@axie", "length": 226.28, "rotation": -8.35, "x": 224.58, "y": -0.53}, {"name": "@ear-left", "parent": "@axie", "rotation": -179.04, "x": 112.7, "y": -203.23}, - {"name": "ear-left", "parent": "@ear-left", "length": 113.61, "rotation": 52, "x": 14, "y": -43, "transform": "noScale"}, + {"name": "ear-left", "parent": "@ear-left", "length": 113.61, "rotation": 50, "x": 35, "y": -43, "transform": "noScale"}, {"name": "@ear-right", "parent": "@axie", "rotation": -179.04, "x": 405.28, "y": -235.33}, - {"name": "ear-right", "parent": "@ear-right", "length": 119.39, "rotation": 140, "x": -40, "y": -63, "transform": "noScale"}, + {"name": "ear-right", "parent": "@ear-right", "length": 119.39, "rotation": 136, "x": -40, "y": -97, "transform": "noScale"}, {"name": "@eyes", "parent": "@axie", "rotation": -179.04, "x": 384.24, "y": -113.67}, {"name": "@horn", "parent": "@axie", "rotation": -179.04, "x": 327.92, "y": -214.63}, {"name": "horn", "parent": "@horn", "length": 176.72, "rotation": 90, "y": 18, "transform": "noScale"}, {"name": "@leg-back-left", "parent": "@axie", "length": 76.4, "rotation": 100.96, "x": -15.3, "y": 102.56, "transform": "noScale"}, @@ -1363,7 +1407,8 @@ {"name": "@leg-front-right", "parent": "@axie", "length": 74.83, "rotation": 83.2, "x": 382.95, "y": 121.78, "transform": "noScale"}, {"name": "@mouth", "parent": "@axie", "rotation": -179.04, "x": 382.23, "y": 6.31}, {"name": "body-pattern", "parent": "@body", "rotation": -170.69, "x": -267.21, "y": -49.4, "transform": "noScale"}, {"name": "@shadow", "parent": "@root", "color": "e6d713ff"}, - {"name": "@tail", "parent": "@axie", "rotation": -179.04, "x": -11.76, "y": 61.72}, {"name": "tail", "parent": "@tail", "length": 203.67, "x": 21, "y": 37, "transform": "noScale"}, + {"name": "@tail", "parent": "@axie", "rotation": -179.04, "x": -11.76, "y": 61.72}, + {"name": "tail", "parent": "@tail", "length": 203.67, "rotation": 31, "x": 3, "y": -10, "transform": "noScale"}, {"name": "leg-front-right-IK", "parent": "@pivot-main", "x": -195.99, "y": -10.21, "color": "ff3f00ff"}, {"name": "leg-front-left-IK", "parent": "@pivot-main", "x": 42.3, "y": -18.42, "color": "ff3f00ff"}, {"name": "leg-back-left-IK", "parent": "@pivot-main", "x": 208.57, "y": 1.35, "color": "ff3f00ff"}, {"name": "@ball", "parent": "@root", "y": 191, "color": "f3981bff"}, @@ -1385,23 +1430,25 @@ { "name": "default", "attachments": { - "back": {"back": {"x": 84.83, "y": 19.8, "rotation": -64, "width": 296, "height": 171, "path": "reptile-06.back"}}, - "ear-left": {"ear-left": {"x": 65.43, "y": 6.21, "rotation": -52, "width": 174, "height": 158, "path": "reptile-06.ear-left"}}, - "ear-right": {"ear-right": {"x": 46.41, "y": -5.36, "rotation": -140, "width": 145, "height": 157, "path": "reptile-06.ear-right"}}, + "back": {"back": {"x": 92.72411764705882, "y": -8.270588235294117, "rotation": -50, "width": 369.4117647058824, "height": 312.94117647058823, "path": "plant-06-lv2.back"}}, + "ear-left": {"ear-left": {"x": 49.190588235294115, "y": 6.818235294117638, "rotation": -50, "width": 207.05882352941177, "height": 218.82352941176472, "path": "plant-06-lv2.ear-left"}}, + "ear-right": { + "ear-right": {"x": 67.27882352941177, "y": -17.56882352941177, "rotation": -136, "width": 185.88235294117646, "height": 214.11764705882354, "path": "plant-06-lv2.ear-right"} + }, "eyes": { - "eyes": {"x": 22.33, "y": -11.04, "width": 284, "height": 33, "path": "reptile-06.eyes"}, - "eyes-angry": {"x": 0.33, "y": -9.04, "width": 328, "height": 135, "path": "reptile-06.eyes-angry"}, - "eyes-happy": {"x": 22.33, "y": -11.04, "width": 284, "height": 33, "path": "reptile-06.eyes-happy"}, - "eyes-shut": {"x": 22.33, "y": -12.04, "width": 284, "height": 31, "path": "reptile-06.eyes-shut"} + "eyes": {"x": 29.54, "y": 27.4, "width": 333, "height": 159, "path": "plant-06-lv2.eyes"}, + "eyes-angry": {"x": 33.04, "y": 27.4, "width": 340, "height": 159, "path": "plant-06-lv2.eyes-angry"}, + "eyes-happy": {"x": 33.04, "y": 27.4, "width": 340, "height": 159, "path": "plant-06-lv2.eyes-happy"}, + "eyes-shut": {"x": 33.04, "y": 27.4, "width": 340, "height": 159, "path": "plant-06-lv2.eyes-shut"} }, - "horn": {"horn": {"x": 46.94, "y": 14.11, "rotation": -90, "width": 273, "height": 167, "path": "reptile-06.horn"}}, + "horn": {"horn": {"x": 108.60764705882352, "y": -4.731764705882362, "rotation": -90, "width": 211.76470588235296, "height": 218.82352941176472, "path": "plant-06-lv2.horn"}}, "mouth": { - "mouth": {"x": 14.33, "y": 61.96, "width": 94, "height": 17, "path": "reptile-06.mouth"}, - "mouth-bite": {"x": 16.33, "y": 45.46, "width": 204, "height": 76, "path": "reptile-06.mouth-bite"}, - "mouth-open": {"x": 22.83, "y": 34.46, "width": 107, "height": 128, "path": "reptile-06.mouth-open"}, - "mouth-smile": {"x": 20.83, "y": 57.96, "width": 91, "height": 41, "path": "reptile-06.mouth-smile"} + "mouth": {"x": -28.96, "y": 89.9, "width": 168, "height": 76, "path": "plant-06-lv2.mouth"}, + "mouth-bite": {"x": -91.96, "y": 80.4, "width": 274, "height": 85, "path": "plant-06-lv2.mouth-bite"}, + "mouth-open": {"x": -1.96, "y": 95.9, "width": 118, "height": 82, "path": "plant-06-lv2.mouth-open"}, + "mouth-smile": {"x": -22.96, "y": 75.4, "width": 148, "height": 95, "path": "plant-06-lv2.mouth-smile"} }, - "tail": {"tail": {"x": 103.39, "y": 0.94, "width": 290, "height": 209, "path": "reptile-06.tail"}} + "tail": {"tail": {"x": 194.15, "y": 13.498823529411768, "rotation": -31, "width": 280.0, "height": 265.88235294117646, "path": "plant-06-lv2.tail"}} } } ], @@ -1450,16 +1497,16 @@ "activity/victory-pose-back-flip": "2227634241" } }, - "agamo-00": { + "plant-08-lv2": { "bones": [ {"name": "@root"}, {"name": "@pivot-main", "parent": "@root"}, {"name": "@pivot-back", "parent": "@pivot-main", "x": 205, "y": 180, "color": "ff0101ff"}, {"name": "@pivot-center", "parent": "@pivot-back", "x": -215.11, "y": -5.25, "color": "ff0101ff"}, {"name": "@axie", "parent": "@pivot-center", "length": 213.28, "rotation": 179.04, "x": 196.39, "y": 5.16}, {"name": "@back", "parent": "@axie", "rotation": -179.04, "x": 37.63, "y": -198.19}, - {"name": "back", "parent": "@back", "length": 149.41, "rotation": 64, "x": -51.97, "y": -9.7, "transform": "noScale"}, + {"name": "back", "parent": "@back", "length": 149.41, "rotation": 58, "x": -41.97, "y": 9.3, "transform": "noScale"}, {"name": "@body", "parent": "@axie", "length": 226.28, "rotation": -8.35, "x": 224.58, "y": -0.53}, {"name": "@ear-left", "parent": "@axie", "rotation": -179.04, "x": 112.7, "y": -203.23}, - {"name": "ear-left", "parent": "@ear-left", "length": 113.61, "rotation": 52, "x": -27, "y": -17, "transform": "noScale"}, + {"name": "ear-left", "parent": "@ear-left", "length": 113.61, "rotation": 90, "x": 21, "y": -13, "transform": "noScale"}, {"name": "@ear-right", "parent": "@axie", "rotation": -179.04, "x": 405.28, "y": -235.33}, - {"name": "ear-right", "parent": "@ear-right", "length": 119.39, "rotation": 93, "x": -40, "y": -54, "transform": "noScale"}, + {"name": "ear-right", "parent": "@ear-right", "length": 119.39, "rotation": 93, "x": -78, "y": -95, "transform": "noScale"}, {"name": "@eyes", "parent": "@axie", "rotation": -179.04, "x": 384.24, "y": -113.67}, {"name": "@horn", "parent": "@axie", "rotation": -179.04, "x": 327.92, "y": -214.63}, {"name": "horn", "parent": "@horn", "length": 176.72, "rotation": 90, "y": 18, "transform": "noScale"}, {"name": "@leg-back-left", "parent": "@axie", "length": 76.4, "rotation": 100.96, "x": -15.3, "y": 102.56, "transform": "noScale"}, @@ -1468,19 +1515,18 @@ {"name": "@mouth", "parent": "@axie", "rotation": -179.04, "x": 382.23, "y": 6.31}, {"name": "body-pattern", "parent": "@body", "rotation": -170.69, "x": -267.21, "y": -49.4, "transform": "noScale"}, {"name": "@shadow", "parent": "@root", "color": "e6d713ff"}, {"name": "@tail", "parent": "@axie", "rotation": -179.04, "x": -11.76, "y": 61.72}, - {"name": "tail", "parent": "@tail", "length": 203.67, "rotation": 20, "x": 21, "y": 37, "transform": "noScale"}, + {"name": "tail", "parent": "@tail", "length": 203.67, "rotation": 13, "x": -57, "y": 2, "transform": "noScale"}, {"name": "leg-front-right-IK", "parent": "@pivot-main", "x": -195.99, "y": -10.21, "color": "ff3f00ff"}, {"name": "leg-front-left-IK", "parent": "@pivot-main", "x": 42.3, "y": -18.42, "color": "ff3f00ff"}, {"name": "leg-back-left-IK", "parent": "@pivot-main", "x": 208.57, "y": 1.35, "color": "ff3f00ff"}, {"name": "@ball", "parent": "@root", "y": 191, "color": "f3981bff"}, - {"name": "ball", "parent": "@ball", "y": -191, "color": "f4a729ff"} + {"name": "ball", "parent": "@ball", "y": -191, "color": "f4a729ff"}, {"name": "@", "parent": "@root", "x": -0.11, "y": -44.01} ], "slots": [ {"name": "shadow", "bone": "@shadow", "attachment": "shadow"}, {"name": "ball", "bone": "ball"}, {"name": "leg-front-right", "bone": "@leg-front-right", "attachment": "leg-front-right"}, {"name": "ear-right", "bone": "ear-right", "attachment": "ear-right"}, {"name": "tail", "bone": "tail", "attachment": "tail"}, {"name": "back", "bone": "back", "attachment": "back"}, - {"name": "leg-back-left", "bone": "@leg-back-left", "attachment": "leg-back-left"}, {"name": "body", "bone": "@body", "attachment": "body"}, - {"name": "body-pattern", "bone": "body-pattern", "attachment": "body-pattern"}, {"name": "leg-front-left", "bone": "@leg-front-left", "attachment": "leg-front-left"}, - {"name": "eyes", "bone": "@eyes", "attachment": "eyes"}, {"name": "mouth", "bone": "@mouth", "attachment": "mouth"}, {"name": "ear-left", "bone": "ear-left", "attachment": "ear-left"}, - {"name": "horn", "bone": "horn", "attachment": "horn"} + {"name": "leg-back-left", "bone": "@leg-back-left", "attachment": "leg-back-left"}, {"name": "body", "bone": "@body", "attachment": "body"}, {"name": "body-pattern", "bone": "body-pattern"}, + {"name": "leg-front-left", "bone": "@leg-front-left", "attachment": "leg-front-left"}, {"name": "mouth", "bone": "@mouth", "attachment": "mouth"}, + {"name": "eyes", "bone": "@eyes", "attachment": "eyes"}, {"name": "ear-left", "bone": "ear-left", "attachment": "ear-left"}, {"name": "horn", "bone": "horn", "attachment": "horn"} ], "ik": [ {"name": "leg-back-left-IK", "order": 2, "bones": ["@leg-back-left"], "target": "leg-back-left-IK"}, @@ -1491,23 +1537,23 @@ { "name": "default", "attachments": { - "back": {"back": {"x": 54.53, "y": 16.47, "rotation": -64, "width": 371, "height": 288, "path": "agamo-00.back"}}, - "ear-left": {"ear-left": {"x": 32.83, "y": -44.64, "rotation": -52, "width": 138, "height": 130, "path": "agamo-00.ear-left"}}, - "ear-right": {"ear-right": {"x": 71.01, "y": -1.05, "rotation": -93, "width": 122, "height": 173, "path": "agamo-00.ear-right"}}, + "back": {"back": {"x": 145.2335294117647, "y": 31.2, "rotation": -58, "width": 282.3529411764706, "height": 320.0, "path": "plant-08-lv2.back"}}, + "ear-left": {"ear-left": {"x": 133.82823529411763, "y": 4.51, "rotation": -90, "width": 178.82352941176472, "height": 200.0, "path": "plant-08-lv2.ear-left"}}, + "ear-right": {"ear-right": {"x": 175.4629411764706, "y": -44.69, "rotation": -93, "width": 155.29411764705884, "height": 200.0, "path": "plant-08-lv2.ear-right"}}, "eyes": { - "eyes": {"x": 33.89, "y": 15.89, "width": 321, "height": 115, "path": "agamo-00.eyes"}, - "eyes-angry": {"x": 33.89, "y": 19.89, "width": 321, "height": 123, "path": "agamo-00.eyes-angry"}, - "eyes-happy": {"x": 23.89, "y": 22.39, "width": 263, "height": 112, "path": "agamo-00.eyes-happy"}, - "eyes-shut": {"x": 22.89, "y": 17.39, "width": 257, "height": 108, "path": "agamo-00.eyes-shut"} + "eyes": {"x": 29.49, "y": 62.65176470588235, "width": 280.0, "height": 221.1764705882353, "path": "plant-08-lv2.eyes"}, + "eyes-angry": {"x": 29.666470588235303, "y": 21.00470588235294, "width": 277.6470588235294, "height": 136.47058823529412, "path": "plant-08-lv2.eyes-angry"}, + "eyes-happy": {"x": 29.49, "y": 20.82823529411765, "width": 280.0, "height": 138.8235294117647, "path": "plant-08-lv2.eyes-happy"}, + "eyes-shut": {"x": 29.49, "y": 62.65176470588235, "width": 280.0, "height": 221.1764705882353, "path": "plant-08-lv2.eyes-shut"} }, - "horn": {"horn": {"x": 56.23, "y": -19.6, "rotation": -90, "width": 198, "height": 160, "path": "agamo-00.horn"}}, + "horn": {"horn": {"x": 83.74, "y": -12.695882352941174, "rotation": -90, "width": 240.0, "height": 209.41176470588235, "path": "plant-08-lv2.horn"}}, "mouth": { - "mouth": {"x": 19.39, "y": 40.39, "width": 188, "height": 62, "path": "agamo-00.mouth"}, - "mouth-bite": {"x": 21.89, "y": 29.39, "width": 191, "height": 72, "path": "agamo-00.mouth-bite"}, - "mouth-open": {"x": 20.39, "y": 15.39, "width": 186, "height": 140, "path": "agamo-00.mouth-open"}, - "mouth-smile": {"x": 19.39, "y": 43.39, "width": 204, "height": 68, "path": "agamo-00.mouth-smile"} + "mouth": {"x": 20.372352941176462, "y": 50.29882352941176, "width": 268.2352941176471, "height": 65.88235294117648, "path": "plant-08-lv2.mouth"}, + "mouth-bite": {"x": 28.78411764705881, "y": 50.41647058823529, "width": 329.4117647058824, "height": 77.64705882352942, "path": "plant-08-lv2.mouth-bite"}, + "mouth-open": {"x": 17.548823529411766, "y": 35.71058823529412, "width": 225.88235294117646, "height": 127.05882352941177, "path": "plant-08-lv2.mouth-open"}, + "mouth-smile": {"x": 18.725294117647042, "y": 46.59294117647059, "width": 303.5294117647059, "height": 75.29411764705883, "path": "plant-08-lv2.mouth-smile"} }, - "tail": {"tail": {"x": 48.98, "y": -31.78, "rotation": -20, "width": 337, "height": 207, "path": "agamo-00.tail"}} + "tail": {"tail": {"x": 170.26823529411766, "y": 8.51294117647058, "rotation": -13, "width": 298.8235294117647, "height": 235.29411764705884, "path": "plant-08-lv2.tail"}} } } ], @@ -1556,35 +1602,40 @@ "activity/victory-pose-back-flip": "2227634241" } }, - "reptile-08": { + "beast-mystic-02-lv2": { "bones": [ {"name": "@root"}, {"name": "@pivot-main", "parent": "@root"}, {"name": "@pivot-back", "parent": "@pivot-main", "x": 205, "y": 180, "color": "ff0101ff"}, {"name": "@pivot-center", "parent": "@pivot-back", "x": -215.11, "y": -5.25, "color": "ff0101ff"}, {"name": "@axie", "parent": "@pivot-center", "length": 213.28, "rotation": 179.04, "x": 196.39, "y": 5.16}, {"name": "@back", "parent": "@axie", "rotation": -179.04, "x": 37.63, "y": -198.19}, - {"name": "back", "parent": "@back", "length": 149.41, "rotation": 64, "x": -51.97, "y": -9.7, "transform": "noScale"}, + {"name": "back", "parent": "@back", "length": 149.41, "rotation": 60, "x": -32.97, "y": 79.3, "transform": "noScale"}, {"name": "@body", "parent": "@axie", "length": 226.28, "rotation": -8.35, "x": 224.58, "y": -0.53}, {"name": "@ear-left", "parent": "@axie", "rotation": -179.04, "x": 112.7, "y": -203.23}, - {"name": "ear-left", "parent": "@ear-left", "length": 113.61, "rotation": 52, "x": -17, "y": -84, "transform": "noScale"}, + {"name": "ear-left", "parent": "@ear-left", "length": 113.61, "rotation": 88, "x": -30, "y": 39.08, "transform": "noScale"}, {"name": "@ear-right", "parent": "@axie", "rotation": -179.04, "x": 405.28, "y": -235.33}, - {"name": "ear-right", "parent": "@ear-right", "length": 119.39, "rotation": 93, "x": -91, "y": -122, "transform": "noScale"}, + {"name": "ear-right", "parent": "@ear-right", "length": 119.39, "rotation": 94, "x": -23, "transform": "noScale"}, {"name": "@eyes", "parent": "@axie", "rotation": -179.04, "x": 384.24, "y": -113.67}, {"name": "@horn", "parent": "@axie", "rotation": -179.04, "x": 327.92, "y": -214.63}, {"name": "horn", "parent": "@horn", "length": 176.72, "rotation": 90, "y": 18, "transform": "noScale"}, {"name": "@leg-back-left", "parent": "@axie", "length": 76.4, "rotation": 100.96, "x": -15.3, "y": 102.56, "transform": "noScale"}, {"name": "@leg-front-left", "parent": "@axie", "length": 51.19, "rotation": 93.86, "x": 134.77, "y": 149.55, "transform": "noScale"}, {"name": "@leg-front-right", "parent": "@axie", "length": 74.83, "rotation": 83.2, "x": 382.95, "y": 121.78, "transform": "noScale"}, {"name": "@mouth", "parent": "@axie", "rotation": -179.04, "x": 382.23, "y": 6.31}, - {"name": "body-pattern", "parent": "@body", "rotation": -170.69, "x": -267.21, "y": -49.4, "transform": "noScale"}, {"name": "@shadow", "parent": "@root", "color": "e6d713ff"}, - {"name": "@tail", "parent": "@axie", "rotation": -179.04, "x": -11.76, "y": 61.72}, {"name": "tail", "parent": "@tail", "length": 203.67, "x": -1, "y": 8, "transform": "noScale"}, + {"name": "body-class", "parent": "@body", "rotation": -170.69, "x": -286.29, "y": -103.48, "transform": "noScale"}, {"name": "@shadow", "parent": "@root", "color": "e6d713ff"}, + {"name": "@tail", "parent": "@axie", "rotation": -179.04, "x": -11.76, "y": 61.72}, + {"name": "tail", "parent": "@tail", "length": 203.67, "rotation": 15, "x": -6, "y": 10, "transform": "noScale"}, {"name": "leg-front-right-IK", "parent": "@pivot-main", "x": -195.99, "y": -10.21, "color": "ff3f00ff"}, {"name": "leg-front-left-IK", "parent": "@pivot-main", "x": 42.3, "y": -18.42, "color": "ff3f00ff"}, {"name": "leg-back-left-IK", "parent": "@pivot-main", "x": 208.57, "y": 1.35, "color": "ff3f00ff"}, {"name": "@ball", "parent": "@root", "y": 191, "color": "f3981bff"}, - {"name": "ball", "parent": "@ball", "y": -191, "color": "f4a729ff"} + {"name": "ball", "parent": "@ball", "y": -191, "color": "f4a729ff"}, {"name": "body-id", "parent": "@body", "rotation": -170.69, "x": -290.82, "y": -75.84}, + {"name": "mouth-accessory", "parent": "@mouth", "x": 8.74, "y": 77.12}, {"name": "mouth-blink", "parent": "@mouth", "x": 80.68, "y": 82.83} ], "slots": [ - {"name": "shadow", "bone": "@shadow", "attachment": "shadow"}, {"name": "ball", "bone": "ball"}, {"name": "leg-front-right", "bone": "@leg-front-right", "attachment": "leg-front-right"}, - {"name": "ear-right", "bone": "ear-right", "attachment": "ear-right"}, {"name": "tail", "bone": "tail", "attachment": "tail"}, {"name": "back", "bone": "back", "attachment": "back"}, - {"name": "leg-back-left", "bone": "@leg-back-left", "attachment": "leg-back-left"}, {"name": "body", "bone": "@body", "attachment": "body"}, {"name": "body-pattern", "bone": "body-pattern"}, - {"name": "leg-front-left", "bone": "@leg-front-left", "attachment": "leg-front-left"}, {"name": "eyes", "bone": "@eyes", "attachment": "eyes"}, - {"name": "mouth", "bone": "@mouth", "attachment": "mouth"}, {"name": "ear-left", "bone": "ear-left", "attachment": "ear-left"}, {"name": "horn", "bone": "horn", "attachment": "horn"} + {"name": "shadow", "bone": "@shadow", "attachment": "shadow"}, {"name": "ball", "bone": "ball"}, + {"name": "leg-front-right", "bone": "@leg-front-right", "attachment": "mystic-leg-front-right"}, {"name": "ear-right", "bone": "ear-right", "attachment": "ear-right"}, + {"name": "tail", "bone": "tail", "attachment": "tail"}, {"name": "back", "bone": "back", "attachment": "back"}, + {"name": "leg-back-left", "bone": "@leg-back-left", "attachment": "mystic-leg-back-left"}, {"name": "body", "bone": "@body", "attachment": "body-mystic"}, + {"name": "body-class", "bone": "body-class", "attachment": "body-class-aquatic"}, {"name": "leg-front-left", "bone": "@leg-front-left", "attachment": "mystic-leg-front-left"}, + {"name": "eyes", "bone": "@eyes", "attachment": "eyes"}, {"name": "mouth", "bone": "@mouth", "attachment": "mouth"}, {"name": "ear-left", "bone": "ear-left", "attachment": "ear-left"}, + {"name": "horn", "bone": "horn", "attachment": "horn"}, {"name": "body-id", "bone": "body-id", "attachment": "body-id"}, {"name": "mouth-accessory", "bone": "mouth-accessory"}, + {"name": "mouth-blink", "bone": "mouth-blink"} ], "ik": [ {"name": "leg-back-left-IK", "order": 2, "bones": ["@leg-back-left"], "target": "leg-back-left-IK"}, @@ -1595,23 +1646,33 @@ { "name": "default", "attachments": { - "back": {"back": {"x": 38.44, "y": 14.23, "rotation": -64, "width": 371, "height": 387, "path": "reptile-08.back"}}, - "ear-left": {"ear-left": {"x": 37.11, "y": -29.86, "rotation": -52, "width": 132, "height": 194, "path": "reptile-08.ear-left"}}, - "ear-right": {"ear-right": {"x": 18.18, "y": 16.51, "rotation": -93, "width": 90, "height": 200, "path": "reptile-08.ear-right"}}, + "back": {"back": {"x": 171.3394117647059, "y": 16.159411764705883, "rotation": -60, "width": 312.94117647058823, "height": 392.94117647058823, "path": "beast-mystic-02-lv2.back"}}, + "ear-left": { + "ear-left": {"x": 86.00411764705882, "y": -35.254705882352944, "rotation": -88, "width": 209.41176470588235, "height": 223.52941176470588, "path": "beast-mystic-02-lv2.ear-left"} + }, + "ear-right": { + "ear-right": {"x": 67.03235294117647, "y": 21.901176470588233, "rotation": -94, "width": 188.23529411764707, "height": 254.11764705882354, "path": "beast-mystic-02-lv2.ear-right"} + }, "eyes": { - "eyes": {"x": 37.56, "y": 1.29, "width": 276, "height": 148, "path": "reptile-08.eyes"}, - "eyes-angry": {"x": 37.56, "y": 11.29, "width": 276, "height": 168, "path": "reptile-08.eyes-angry"}, - "eyes-happy": {"x": 31.56, "y": 5.79, "width": 256, "height": 157, "path": "reptile-08.eyes-happy"}, - "eyes-shut": {"x": 38.06, "y": 0.79, "width": 243, "height": 147, "path": "reptile-08.eyes-shut"} + "eyes": {"x": 43.61647058823527, "y": 37.31352941176471, "width": 357.64705882352945, "height": 162.35294117647058, "path": "beast-mystic-02-lv2.eyes"}, + "eyes-angry": {"x": 43.61647058823527, "y": 37.31352941176471, "width": 357.64705882352945, "height": 162.35294117647058, "path": "beast-mystic-02-lv2.eyes-angry"}, + "eyes-happy": {"x": 43.61647058823527, "y": 37.31352941176471, "width": 357.64705882352945, "height": 162.35294117647058, "path": "beast-mystic-02-lv2.eyes-happy"}, + "eyes-shut": {"x": 43.61647058823527, "y": 37.31352941176471, "width": 357.64705882352945, "height": 162.35294117647058, "path": "beast-mystic-02-lv2.eyes-shut"} }, - "horn": {"horn": {"x": 79.29, "y": -26.06, "rotation": -90, "width": 283, "height": 212, "path": "reptile-08.horn"}}, + "horn": {"horn": {"x": 159.8135294117647, "y": 0.06, "rotation": -90, "width": 362.3529411764706, "height": 320.0, "path": "beast-mystic-02-lv2.horn"}}, "mouth": { - "mouth": {"x": 25.06, "y": 45.79, "width": 275, "height": 99, "path": "reptile-08.mouth"}, - "mouth-bite": {"x": 23.56, "y": 38.79, "width": 320, "height": 87, "path": "reptile-08.mouth-bite"}, - "mouth-open": {"x": 26.06, "y": 22.29, "width": 275, "height": 140, "path": "reptile-08.mouth-open"}, - "mouth-smile": {"x": 24.56, "y": 45.29, "width": 328, "height": 110, "path": "reptile-08.mouth-smile"} + "mouth": {"x": 23.67529411764706, "y": 38.431176470588234, "width": 183.52941176470588, "height": 134.11764705882354, "path": "beast-mystic-02-lv2.mouth"}, + "mouth-bite": {"x": 24.49882352941177, "y": 51.37235294117647, "width": 225.88235294117646, "height": 108.23529411764706, "path": "beast-mystic-02-lv2.mouth-bite"}, + "mouth-open": {"x": 21.85176470588235, "y": 39.84294117647058, "width": 181.1764705882353, "height": 155.29411764705884, "path": "beast-mystic-02-lv2.mouth-open"}, + "mouth-smile": {"x": 27.49882352941177, "y": 38.431176470588234, "width": 225.88235294117646, "height": 134.11764705882354, "path": "beast-mystic-02-lv2.mouth-smile"} }, - "tail": {"tail": {"x": 132.56, "y": 32.79, "width": 366, "height": 255, "path": "reptile-08.tail"}} + "mouth-accessory": { + "mouth-accessory": {"x": -52.50352941176471, "y": 4.56647058823529, "width": 117.64705882352942, "height": 117.64705882352942, "path": "beast-mystic-02-lv2.mouth-accessory"} + }, + "mouth-blink": { + "mouth-smile-blink": {"x": 0.732941176470587, "y": -0.9670588235294131, "width": 35.294117647058826, "height": 35.294117647058826, "path": "beast-mystic-02-lv2.mouth-smile-blink"} + }, + "tail": {"tail": {"x": 137.6970588235294, "y": 11.397647058823521, "rotation": -15, "width": 244.7058823529412, "height": 251.76470588235296, "path": "beast-mystic-02-lv2.tail"}} } } ], @@ -1623,7 +1684,7 @@ "attack/ranged/cast-high": "164191126", "attack/ranged/cast-low": "198813017", "attack/ranged/cast-multi": "151119", - "attack/ranged/cast-tail": "997902532", + "attack/ranged/cast-tail": "3899988824", "activity/eat-bite": "1137807767", "activity/eat-chew": "1988236421", "activity/entrance": "3768378365", @@ -1640,17 +1701,17 @@ "attack/melee/mouth-bite": "2237748264", "action/move-back": "3766271173", "action/move-forward": "2945160014", - "attack/melee/multi-attack": "905926802", + "attack/melee/multi-attack": "3861365989", "action/idle/normal": "1659336865", "attack/melee/normal-attack": "3305373483", "activity/prepare": "405864717", "action/idle/random-01": "554401889", - "action/idle/random-02": "1085666627", + "action/idle/random-02": "3888196768", "action/idle/random-03": "2021333900", "action/idle/random-04": "1003789695", "action/idle/random-05": "2745614147", - "action/run": "1438840721", - "draft/run-origin": "3577885069", + "action/run": "3858829480", + "draft/run-origin": "3947527336", "attack/melee/shrimp": "3833448733", "activity/sleep": "100562494", "attack/melee/tail-multi-slap": "3317139533", @@ -1660,33 +1721,40 @@ "activity/victory-pose-back-flip": "2227634241" } }, - "body-curly": { + "reptile-mystic-02-lv2": { "bones": [ {"name": "@root"}, {"name": "@pivot-main", "parent": "@root"}, {"name": "@pivot-back", "parent": "@pivot-main", "x": 205, "y": 180, "color": "ff0101ff"}, {"name": "@pivot-center", "parent": "@pivot-back", "x": -215.11, "y": -5.25, "color": "ff0101ff"}, {"name": "@axie", "parent": "@pivot-center", "length": 213.28, "rotation": 179.04, "x": 196.39, "y": 5.16}, {"name": "@back", "parent": "@axie", "rotation": -179.04, "x": 37.63, "y": -198.19}, + {"name": "back", "parent": "@back", "length": 149.41, "rotation": 60, "x": -32.97, "y": 79.3, "transform": "noScale"}, {"name": "@body", "parent": "@axie", "length": 226.28, "rotation": -8.35, "x": 224.58, "y": -0.53}, {"name": "@ear-left", "parent": "@axie", "rotation": -179.04, "x": 112.7, "y": -203.23}, - {"name": "@ear-right", "parent": "@axie", "rotation": -179.04, "x": 405.28, "y": -235.33}, {"name": "@eyes", "parent": "@axie", "rotation": -179.04, "x": 384.24, "y": -113.67}, - {"name": "@horn", "parent": "@axie", "rotation": -179.04, "x": 327.92, "y": -214.63}, + {"name": "ear-left", "parent": "@ear-left", "length": 113.61, "rotation": 88, "x": 63, "y": -25, "transform": "noScale"}, + {"name": "@ear-right", "parent": "@axie", "rotation": -179.04, "x": 405.28, "y": -235.33}, + {"name": "ear-right", "parent": "@ear-right", "length": 119.39, "rotation": 94, "x": -23, "y": -72, "transform": "noScale"}, + {"name": "@eyes", "parent": "@axie", "rotation": -179.04, "x": 384.24, "y": -113.67}, {"name": "@horn", "parent": "@axie", "rotation": -179.04, "x": 327.92, "y": -214.63}, + {"name": "horn", "parent": "@horn", "length": 176.72, "rotation": 90, "y": 18, "transform": "noScale"}, {"name": "@leg-back-left", "parent": "@axie", "length": 76.4, "rotation": 100.96, "x": -15.3, "y": 102.56, "transform": "noScale"}, {"name": "@leg-front-left", "parent": "@axie", "length": 51.19, "rotation": 93.86, "x": 134.77, "y": 149.55, "transform": "noScale"}, {"name": "@leg-front-right", "parent": "@axie", "length": 74.83, "rotation": 83.2, "x": 382.95, "y": 121.78, "transform": "noScale"}, {"name": "@mouth", "parent": "@axie", "rotation": -179.04, "x": 382.23, "y": 6.31}, - {"name": "body-pattern", "parent": "@body", "rotation": -170.69, "x": -267.21, "y": -49.4, "transform": "noScale"}, {"name": "@shadow", "parent": "@root", "color": "e6d713ff"}, - {"name": "@tail", "parent": "@axie", "rotation": -179.04, "x": -11.76, "y": 61.72}, {"name": "leg-front-right-IK", "parent": "@pivot-main", "x": -195.99, "y": -10.21, "color": "ff3f00ff"}, + {"name": "body-class", "parent": "@body", "rotation": -170.69, "x": -286.29, "y": -103.48, "transform": "noScale"}, {"name": "@shadow", "parent": "@root", "color": "e6d713ff"}, + {"name": "@tail", "parent": "@axie", "rotation": -179.04, "x": -11.76, "y": 61.72}, + {"name": "tail", "parent": "@tail", "length": 203.67, "rotation": 15, "x": 38, "y": 10, "transform": "noScale"}, + {"name": "leg-front-right-IK", "parent": "@pivot-main", "x": -195.99, "y": -10.21, "color": "ff3f00ff"}, {"name": "leg-front-left-IK", "parent": "@pivot-main", "x": 42.3, "y": -18.42, "color": "ff3f00ff"}, {"name": "leg-back-left-IK", "parent": "@pivot-main", "x": 208.57, "y": 1.35, "color": "ff3f00ff"}, {"name": "@ball", "parent": "@root", "y": 191, "color": "f3981bff"}, - {"name": "ball", "parent": "@ball", "y": -191, "color": "f4a729ff"}, {"name": "@body-neck", "parent": "@pivot-center", "x": -161.89, "y": -53.75, "color": "ff0101ff"}, - {"name": "@body-ground", "parent": "@pivot-main", "x": 220, "transform": "noRotationOrReflection", "color": "ff0101ff"}, - {"name": "@body-hip", "parent": "@pivot-center", "x": 240.11, "y": 55.25, "color": "ff0101ff"}, - {"name": "@body-air", "parent": "@pivot-back", "x": 63, "y": 365, "transform": "noRotationOrReflection", "color": "ff0101ff"} + {"name": "ball", "parent": "@ball", "y": -191, "color": "f4a729ff"}, {"name": "body-id", "parent": "@body", "rotation": -170.69, "x": -290.82, "y": -75.84}, + {"name": "mouth-accessory", "parent": "@mouth", "x": 8.74, "y": 77.12}, {"name": "mouth-blink", "parent": "@mouth", "x": 80.68, "y": 82.83} ], "slots": [ - {"name": "shadow", "bone": "@shadow", "attachment": "shadow"}, {"name": "ball", "bone": "ball"}, {"name": "leg-front-right", "bone": "@leg-front-right", "attachment": "leg-front-right"}, - {"name": "leg-back-left", "bone": "@leg-back-left", "attachment": "leg-back-left"}, {"name": "body", "bone": "@body", "attachment": "body-curly"}, - {"name": "leg-front-left", "bone": "@leg-front-left", "attachment": "leg-front-left"}, {"name": "body-pattern", "bone": "body-pattern"}, - {"name": "body-hip", "bone": "@body-hip", "attachment": "body-hip"}, {"name": "body-neck", "bone": "@body-neck", "attachment": "body-neck"}, - {"name": "body-ground", "bone": "@body-ground", "attachment": "body-ground"}, {"name": "body-air", "bone": "@body-air", "attachment": "body-air"} + {"name": "shadow", "bone": "@shadow", "attachment": "shadow"}, {"name": "ball", "bone": "ball"}, + {"name": "leg-front-right", "bone": "@leg-front-right", "attachment": "mystic-leg-front-right"}, {"name": "ear-right", "bone": "ear-right", "attachment": "ear-right"}, + {"name": "tail", "bone": "tail", "attachment": "tail"}, {"name": "back", "bone": "back", "attachment": "back"}, + {"name": "leg-back-left", "bone": "@leg-back-left", "attachment": "mystic-leg-back-left"}, {"name": "body", "bone": "@body", "attachment": "body-mystic"}, + {"name": "body-class", "bone": "body-class", "attachment": "body-class-aquatic"}, {"name": "leg-front-left", "bone": "@leg-front-left", "attachment": "mystic-leg-front-left"}, + {"name": "eyes", "bone": "@eyes", "attachment": "eyes-angry"}, {"name": "mouth", "bone": "@mouth", "attachment": "mouth"}, {"name": "ear-left", "bone": "ear-left", "attachment": "ear-left"}, + {"name": "horn", "bone": "horn", "attachment": "horn"}, {"name": "body-id", "bone": "body-id", "attachment": "body-id"}, {"name": "mouth-accessory", "bone": "mouth-accessory"}, + {"name": "mouth-blink", "bone": "mouth-blink"} ], "ik": [ {"name": "leg-back-left-IK", "order": 2, "bones": ["@leg-back-left"], "target": "leg-back-left-IK"}, @@ -1697,65 +1765,33 @@ { "name": "default", "attachments": { - "ball": {"ball": {"y": 191, "width": 393, "height": 390, "path": "body-normal.ball"}}, - "body": {"body-curly": {"x": -2.62, "y": -78.9, "rotation": -170.69, "width": 696, "height": 543, "path": "body-curly.body-curly"}}, - "leg-back-left": { - "leg-back-left": {"x": 32.56, "y": -0.8, "rotation": 83.45, "width": 80, "height": 94, "path": "body-normal.leg-back-left"}, - "leg-back-left-long": {"x": 34.89, "y": -5.5, "rotation": 221.45, "width": 85, "height": 82, "path": "body-normal.leg-back-left-long"}, - "leg-back-left-stretch": {"x": 27.29, "y": 1.58, "rotation": 54.45, "width": 67, "height": 70, "path": "body-normal.leg-back-left-stretch"} + "back": {"back": {"x": 45.204705882352926, "y": 58.08235294117647, "rotation": -60, "width": 376.47058823529414, "height": 348.2352941176471, "path": "reptile-mystic-02-lv2.back"}}, + "ear-left": { + "ear-left": {"x": 107.09705882352941, "y": -9.56294117647058, "rotation": -88, "width": 204.7058823529412, "height": 404.70588235294116, "path": "reptile-mystic-02-lv2.ear-left"} }, - "leg-front-left": { - "leg-front-left": {"x": 21.98, "y": 1.18, "rotation": 97.51, "width": 72, "height": 63, "path": "body-normal.leg-front-left"}, - "leg-front-left-long": {"x": 27.48, "y": -6.04, "rotation": -173.75, "width": 89, "height": 77, "path": "body-normal.leg-front-left-long"}, - "leg-front-left-stretch": {"x": 19.24, "y": -3.96, "rotation": 142.15, "width": 70, "height": 77, "path": "body-normal.leg-front-left-stretch"} + "ear-right": { + "ear-right": {"x": 120.12764705882353, "y": 24.47705882352942, "rotation": -94, "width": 211.76470588235296, "height": 404.70588235294116, "path": "reptile-mystic-02-lv2.ear-right"} }, - "leg-front-right": { - "leg-front-right": {"x": 31.35, "y": -1.66, "rotation": 87.96, "width": 80, "height": 94, "path": "body-normal.leg-front-right"}, - "leg-front-right-long": {"x": 36.56, "y": -0.65, "rotation": 205.96, "width": 89, "height": 77, "path": "body-normal.leg-front-right-long"}, - "leg-front-right-stretch": {"x": 30.65, "y": 1.81, "rotation": 142.01, "width": 81, "height": 69, "path": "body-normal.leg-front-right-stretch"} + "eyes": { + "eyes": {"x": 37.606470588235304, "y": 34.167058823529416, "width": 317.6470588235294, "height": 124.70588235294117, "path": "reptile-mystic-02-lv2.eyes"}, + "eyes-angry": {"x": 37.606470588235304, "y": 33.343529411764706, "width": 317.6470588235294, "height": 122.3529411764706, "path": "reptile-mystic-02-lv2.eyes-angry"}, + "eyes-happy": {"x": 37.606470588235304, "y": 34.167058823529416, "width": 317.6470588235294, "height": 124.70588235294117, "path": "reptile-mystic-02-lv2.eyes-happy"}, + "eyes-shut": {"x": 37.812352941176464, "y": 34.343529411764706, "width": 308.2352941176471, "height": 122.3529411764706, "path": "reptile-mystic-02-lv2.eyes-shut"} }, - "shadow": {"shadow": {"width": 946, "height": 191, "path": "body-curly.shadow"}}, - "body-air": { - "body-air1a_00": {"x": 1.37, "y": 35.21, "width": 209.375, "height": 129.6875, "path": "body-accessory.body-air1a_00"}, - "body-air1a_01": {"x": 1.37, "y": 35.21, "width": 209.375, "height": 129.6875, "path": "body-accessory.body-air1a_01"}, - "body-air1a_02": {"x": 1.37, "y": 35.21, "width": 209.375, "height": 129.6875, "path": "body-accessory.body-air1a_02"}, - "body-air1a_03": {"x": 1.37, "y": 35.21, "width": 209.375, "height": 129.6875, "path": "body-accessory.body-air1a_03"}, - "body-air1a_04": {"x": 1.37, "y": 35.21, "width": 209.375, "height": 129.6875, "path": "body-accessory.body-air1a_04"}, - "body-air1a_05": {"x": 1.37, "y": 35.21, "width": 209.375, "height": 129.6875, "path": "body-accessory.body-air1a_05"}, - "body-air1a_06": {"x": 1.37, "y": 35.21, "width": 209.375, "height": 129.6875, "path": "body-accessory.body-air1a_06"}, - "body-air1a_07": {"x": 1.37, "y": 35.21, "width": 209.375, "height": 129.6875, "path": "body-accessory.body-air1a_07"}, - "body-air1b_00": {"x": 1.37, "y": 35.21, "width": 156.25, "height": 192.1875, "path": "body-accessory.body-air1b_00"}, - "body-air1b_01": {"x": 1.37, "y": 35.21, "width": 156.25, "height": 192.1875, "path": "body-accessory.body-air1b_01"}, - "body-air1b_02": {"x": 1.37, "y": 35.21, "width": 156.25, "height": 192.1875, "path": "body-accessory.body-air1b_02"}, - "body-air1c_00": {"x": 1.37, "y": 35.21, "width": 200.0, "height": 289.0625, "path": "body-accessory.body-air1c_00"}, - "body-air1c_01": {"x": 1.37, "y": 35.21, "width": 200.0, "height": 289.0625, "path": "body-accessory.body-air1c_01"}, - "body-air1c_02": {"x": 1.37, "y": 35.21, "width": 200.0, "height": 289.0625, "path": "body-accessory.body-air1c_02"}, - "body-air1c_03": {"x": 1.37, "y": 35.21, "width": 200.0, "height": 289.0625, "path": "body-accessory.body-air1c_03"}, - "body-air1d_00": {"x": 1.37, "y": 35.21, "width": 204.6875, "height": 273.4375, "path": "body-accessory.body-air1d_00"}, - "body-air1d_01": {"x": 1.37, "y": 35.21, "width": 204.6875, "height": 273.4375, "path": "body-accessory.body-air1d_01"}, - "body-air1d_02": {"x": 1.37, "y": 35.21, "width": 204.6875, "height": 273.4375, "path": "body-accessory.body-air1d_02"}, - "body-air1d_03": {"x": 1.37, "y": 35.21, "width": 204.6875, "height": 273.4375, "path": "body-accessory.body-air1d_03"} + "horn": {"horn": {"x": 85.13764705882353, "y": 3.599411764705884, "rotation": -90, "width": 331.7647058823529, "height": 192.94117647058823, "path": "reptile-mystic-02-lv2.horn"}}, + "mouth": { + "mouth": {"x": 23.488823529411768, "y": 8.049411764705884, "width": 305.88235294117646, "height": 152.94117647058823, "path": "reptile-mystic-02-lv2.mouth"}, + "mouth-bite": {"x": 28.018235294117652, "y": 40.87294117647059, "width": 338.8235294117647, "height": 115.29411764705883, "path": "reptile-mystic-02-lv2.mouth-bite"}, + "mouth-open": {"x": 8.13588235294116, "y": -1.715294117647058, "width": 390.5882352941177, "height": 176.47058823529412, "path": "reptile-mystic-02-lv2.mouth-open"}, + "mouth-smile": {"x": 23.488823529411768, "y": -0.950588235294116, "width": 305.88235294117646, "height": 192.94117647058823, "path": "reptile-mystic-02-lv2.mouth-smile"} }, - "body-ground": { - "body-ground1a_00": {"x": 4.75, "y": 123.01, "width": 254.6875, "height": 275.0, "path": "body-accessory.body-ground1a_00"}, - "body-ground1a_01": {"x": 4.75, "y": 123.01, "width": 254.6875, "height": 275.0, "path": "body-accessory.body-ground1a_01"}, - "body-ground1a_02": {"x": 4.75, "y": 123.01, "width": 254.6875, "height": 275.0, "path": "body-accessory.body-ground1a_02"}, - "body-ground1a_03": {"x": 4.75, "y": 123.01, "width": 254.6875, "height": 275.0, "path": "body-accessory.body-ground1a_03"} + "mouth-accessory": { + "mouth-accessory": {"x": -52.50352941176471, "y": 4.56647058823529, "width": 117.64705882352942, "height": 117.64705882352942, "path": "reptile-mystic-02-lv2.mouth-accessory"} }, - "body-hip": { - "body-hip1a": {"x": -16, "width": 109.375, "height": 140.625, "path": "body-accessory.body-hip1a"}, - "body-hip1b": {"x": -16, "width": 210.9375, "height": 214.0625, "path": "body-accessory.body-hip1b"}, - "body-hip1c": {"x": -16, "width": 123.4375, "height": 157.8125, "path": "body-accessory.body-hip1c"}, - "body-hip1d": {"x": -16, "width": 203.125, "height": 143.75, "path": "body-accessory.body-hip1d"} + "mouth-blink": { + "mouth-smile-blink": {"x": 0.732941176470587, "y": -0.9670588235294131, "width": 35.294117647058826, "height": 35.294117647058826, "path": "reptile-mystic-02-lv2.mouth-smile-blink"} }, - "body-neck": { - "body-neck1a": {"x": -5.4, "y": -54.79, "width": 92.1875, "height": 96.875, "path": "body-accessory.body-neck1a"}, - "body-neck1b": {"x": -5.4, "y": -54.79, "width": 103.125, "height": 117.1875, "path": "body-accessory.body-neck1b"}, - "body-neck1c": {"x": -5.4, "y": -54.79, "width": 79.6875, "height": 110.9375, "path": "body-accessory.body-neck1c"}, - "body-neck1d": {"x": -5.4, "y": -54.79, "width": 121.875, "height": 101.5625, "path": "body-accessory.body-neck1d"}, - "body-neck1e": {"x": -5.4, "y": -54.79, "width": 89.0625, "height": 107.8125, "path": "body-accessory.body-neck1e"}, - "body-neck1f": {"x": -5.4, "y": -54.79, "width": 79.6875, "height": 79.6875, "path": "body-accessory.body-neck1f"} - } + "tail": {"tail": {"x": 167.99176470588236, "y": 102.68882352941176, "rotation": -15, "width": 261.1764705882353, "height": 385.88235294117646, "path": "reptile-mystic-02-lv2.tail"}} } } ], @@ -1763,15 +1799,15 @@ "keyAnimations": { "activity/appear": "1023093953", "activity/bath": "3305387968", - "attack/ranged/cast-fly": "4180526371", - "attack/ranged/cast-high": "164191126", - "attack/ranged/cast-low": "198813017", - "attack/ranged/cast-multi": "151119", - "attack/ranged/cast-tail": "1843465463", + "attack/ranged/cast-fly": "3562907511", + "attack/ranged/cast-high": "2919275767", + "attack/ranged/cast-low": "1482039890", + "attack/ranged/cast-multi": "3763101013", + "attack/ranged/cast-tail": "2874629885", "activity/eat-bite": "1137807767", "activity/eat-chew": "1988236421", - "activity/entrance": "3768378365", - "defense/evade": "1735454995", + "activity/entrance": "3805987248", + "defense/evade": "2697405811", "activity/evolve": "649307630", "battle/get-buff": "1455190363", "battle/get-debuff": "606904312", @@ -1779,61 +1815,65 @@ "defense/hit-by-normal-crit": "2130010601", "defense/hit-by-normal-dramatic": "3823092125", "defense/hit-by-ranged-attack": "2224561612", - "defense/hit-with-shield": "390714790", - "attack/melee/horn-gore": "1327954218", - "attack/melee/mouth-bite": "2237748264", + "defense/hit-with-shield": "236468041", + "attack/melee/horn-gore": "3312470590", + "attack/melee/mouth-bite": "1941113513", "action/move-back": "3766271173", "action/move-forward": "2945160014", - "attack/melee/multi-attack": "905926802", + "attack/melee/multi-attack": "3861365989", "action/idle/normal": "1659336865", "attack/melee/normal-attack": "3305373483", "activity/prepare": "405864717", "action/idle/random-01": "554401889", - "action/idle/random-02": "1001093024", + "action/idle/random-02": "3888196768", "action/idle/random-03": "2021333900", - "action/idle/random-04": "1003789695", + "action/idle/random-04": "1082465462", "action/idle/random-05": "2745614147", - "action/run": "1438840721", - "draft/run-origin": "3577885069", - "attack/melee/shrimp": "3833448733", + "action/run": "3858829480", + "draft/run-origin": "3947527336", + "attack/melee/shrimp": "3866597167", "activity/sleep": "100562494", - "attack/melee/tail-multi-slap": "3317139533", - "attack/melee/tail-roll": "3108617565", - "attack/melee/tail-smash": "519942130", - "attack/melee/tail-thrash": "628713175", + "attack/melee/tail-multi-slap": "741810204", + "attack/melee/tail-roll": "2809739953", + "attack/melee/tail-smash": "2641486435", + "attack/melee/tail-thrash": "1454509456", "activity/victory-pose-back-flip": "2227634241" } }, - "plant-04": { + "bug-mystic-02-lv2": { "bones": [ {"name": "@root"}, {"name": "@pivot-main", "parent": "@root"}, {"name": "@pivot-back", "parent": "@pivot-main", "x": 205, "y": 180, "color": "ff0101ff"}, {"name": "@pivot-center", "parent": "@pivot-back", "x": -215.11, "y": -5.25, "color": "ff0101ff"}, {"name": "@axie", "parent": "@pivot-center", "length": 213.28, "rotation": 179.04, "x": 196.39, "y": 5.16}, {"name": "@back", "parent": "@axie", "rotation": -179.04, "x": 37.63, "y": -198.19}, - {"name": "back", "parent": "@back", "length": 149.41, "rotation": 58, "x": -101.97, "y": 46.3, "transform": "noScale"}, + {"name": "back", "parent": "@back", "length": 149.41, "rotation": 60, "x": -96.97, "y": 79.3, "transform": "noScale"}, {"name": "@body", "parent": "@axie", "length": 226.28, "rotation": -8.35, "x": 224.58, "y": -0.53}, {"name": "@ear-left", "parent": "@axie", "rotation": -179.04, "x": 112.7, "y": -203.23}, - {"name": "ear-left", "parent": "@ear-left", "length": 113.61, "rotation": 90, "x": -7, "y": 19, "transform": "noScale"}, + {"name": "ear-left", "parent": "@ear-left", "length": 113.61, "rotation": 88, "x": -34, "y": 65, "transform": "noScale"}, {"name": "@ear-right", "parent": "@axie", "rotation": -179.04, "x": 405.28, "y": -235.33}, - {"name": "ear-right", "parent": "@ear-right", "length": 119.39, "rotation": 93, "x": -40, "y": -15, "transform": "noScale"}, + {"name": "ear-right", "parent": "@ear-right", "length": 119.39, "rotation": 94, "x": -15, "y": 18, "transform": "noScale"}, {"name": "@eyes", "parent": "@axie", "rotation": -179.04, "x": 384.24, "y": -113.67}, {"name": "@horn", "parent": "@axie", "rotation": -179.04, "x": 327.92, "y": -214.63}, - {"name": "horn", "parent": "@horn", "length": 176.72, "rotation": 90, "y": 18, "transform": "noScale"}, + {"name": "horn", "parent": "@horn", "length": 176.72, "rotation": 90, "y": 52, "transform": "noScale"}, {"name": "@leg-back-left", "parent": "@axie", "length": 76.4, "rotation": 100.96, "x": -15.3, "y": 102.56, "transform": "noScale"}, {"name": "@leg-front-left", "parent": "@axie", "length": 51.19, "rotation": 93.86, "x": 134.77, "y": 149.55, "transform": "noScale"}, {"name": "@leg-front-right", "parent": "@axie", "length": 74.83, "rotation": 83.2, "x": 382.95, "y": 121.78, "transform": "noScale"}, {"name": "@mouth", "parent": "@axie", "rotation": -179.04, "x": 382.23, "y": 6.31}, - {"name": "body-pattern", "parent": "@body", "rotation": -170.69, "x": -267.21, "y": -49.4, "transform": "noScale"}, {"name": "@shadow", "parent": "@root", "color": "e6d713ff"}, + {"name": "body-class", "parent": "@body", "rotation": -170.69, "x": -286.29, "y": -103.48, "transform": "noScale"}, {"name": "@shadow", "parent": "@root", "color": "e6d713ff"}, {"name": "@tail", "parent": "@axie", "rotation": -179.04, "x": -11.76, "y": 61.72}, - {"name": "tail", "parent": "@tail", "length": 203.67, "rotation": -42, "x": 39, "y": 92, "transform": "noScale"}, + {"name": "tail", "parent": "@tail", "length": 203.67, "rotation": -25, "x": 50, "y": 57, "transform": "noScale"}, {"name": "leg-front-right-IK", "parent": "@pivot-main", "x": -195.99, "y": -10.21, "color": "ff3f00ff"}, {"name": "leg-front-left-IK", "parent": "@pivot-main", "x": 42.3, "y": -18.42, "color": "ff3f00ff"}, {"name": "leg-back-left-IK", "parent": "@pivot-main", "x": 208.57, "y": 1.35, "color": "ff3f00ff"}, {"name": "@ball", "parent": "@root", "y": 191, "color": "f3981bff"}, - {"name": "ball", "parent": "@ball", "y": -191, "color": "f4a729ff"} + {"name": "ball", "parent": "@ball", "y": -191, "color": "f4a729ff"}, {"name": "body-id", "parent": "@body", "rotation": -170.69, "x": -290.82, "y": -75.84}, + {"name": "mouth-accessory", "parent": "@mouth", "x": 8.74, "y": 77.12}, {"name": "mouth-blink", "parent": "@mouth", "x": 80.68, "y": 82.83} ], "slots": [ - {"name": "shadow", "bone": "@shadow", "attachment": "shadow"}, {"name": "ball", "bone": "ball"}, {"name": "leg-front-right", "bone": "@leg-front-right", "attachment": "leg-front-right"}, - {"name": "ear-right", "bone": "ear-right", "attachment": "ear-right"}, {"name": "tail", "bone": "tail", "attachment": "tail"}, {"name": "back", "bone": "back", "attachment": "back"}, - {"name": "leg-back-left", "bone": "@leg-back-left", "attachment": "leg-back-left"}, {"name": "body", "bone": "@body", "attachment": "body"}, {"name": "body-pattern", "bone": "body-pattern"}, - {"name": "leg-front-left", "bone": "@leg-front-left", "attachment": "leg-front-left"}, {"name": "eyes", "bone": "@eyes", "attachment": "eyes"}, - {"name": "mouth", "bone": "@mouth", "attachment": "mouth"}, {"name": "ear-left", "bone": "ear-left", "attachment": "ear-left"}, {"name": "horn", "bone": "horn", "attachment": "horn"} + {"name": "shadow", "bone": "@shadow", "attachment": "shadow"}, {"name": "ball", "bone": "ball"}, + {"name": "leg-front-right", "bone": "@leg-front-right", "attachment": "mystic-leg-front-right"}, {"name": "ear-right", "bone": "ear-right", "attachment": "ear-right"}, + {"name": "tail", "bone": "tail", "attachment": "tail"}, {"name": "back", "bone": "back", "attachment": "back"}, + {"name": "leg-back-left", "bone": "@leg-back-left", "attachment": "mystic-leg-back-left"}, {"name": "body", "bone": "@body", "attachment": "body-mystic"}, + {"name": "body-class", "bone": "body-class", "attachment": "body-class-aquatic"}, {"name": "leg-front-left", "bone": "@leg-front-left", "attachment": "mystic-leg-front-left"}, + {"name": "eyes", "bone": "@eyes", "attachment": "eyes"}, {"name": "mouth", "bone": "@mouth", "attachment": "mouth"}, {"name": "ear-left", "bone": "ear-left", "attachment": "ear-left"}, + {"name": "horn", "bone": "horn", "attachment": "horn"}, {"name": "body-id", "bone": "body-id", "attachment": "body-id"}, {"name": "mouth-accessory", "bone": "mouth-accessory"}, + {"name": "mouth-blink", "bone": "mouth-blink"} ], "ik": [ {"name": "leg-back-left-IK", "order": 2, "bones": ["@leg-back-left"], "target": "leg-back-left-IK"}, @@ -1844,23 +1884,34 @@ { "name": "default", "attachments": { - "back": {"back": {"x": 106.22, "y": 18.03, "rotation": -58, "width": 311, "height": 261, "path": "plant-04.back"}}, - "ear-left": {"ear-left": {"x": -15.47, "y": -47, "rotation": -90, "width": 170, "height": 171, "path": "plant-04.ear-left"}}, - "ear-right": {"ear-right": {"x": -11.8, "y": 20.64, "rotation": -93, "width": 139, "height": 168, "path": "plant-04.ear-right"}}, + "back": {"back": {"x": 115.57235294117646, "y": -25.13705882352942, "rotation": -60, "width": 348.2352941176471, "height": 395.29411764705884, "path": "bug-mystic-02-lv2.back"}}, + "ear-left": { + "ear-left": {"x": 135.31588235294117, "y": -12.347647058823537, "rotation": -88, "width": 150.58823529411765, "height": 308.2352941176471, "path": "bug-mystic-02-lv2.ear-left"} + }, + "ear-right": { + "ear-right": {"x": 143.84411764705885, "y": -25.91117647058823, "rotation": -94, "width": 169.41176470588235, "height": 305.88235294117646, "path": "bug-mystic-02-lv2.ear-right"} + }, "eyes": { - "eyes": {"x": 27.5, "y": 9.63, "width": 250, "height": 91, "path": "plant-04.eyes"}, - "eyes-angry": {"x": 27.5, "y": 20.63, "width": 250, "height": 113, "path": "plant-04.eyes-angry"}, - "eyes-happy": {"x": 25.5, "y": 15.13, "width": 238, "height": 54, "path": "plant-04.eyes-happy"}, - "eyes-shut": {"x": 33, "y": -6.87, "width": 249, "height": 30, "path": "plant-04.eyes-shut"} + "eyes": {"x": 25.243529411764698, "y": 39.168235294117636, "width": 482.3529411764706, "height": 218.82352941176472, "path": "bug-mystic-02-lv2.eyes"}, + "eyes-angry": {"x": 25.243529411764698, "y": 39.168235294117636, "width": 482.3529411764706, "height": 218.82352941176472, "path": "bug-mystic-02-lv2.eyes-angry"}, + "eyes-happy": {"x": 25.243529411764698, "y": 39.168235294117636, "width": 482.3529411764706, "height": 218.82352941176472, "path": "bug-mystic-02-lv2.eyes-happy"}, + "eyes-shut": {"x": 25.243529411764698, "y": 39.168235294117636, "width": 482.3529411764706, "height": 218.82352941176472, "path": "bug-mystic-02-lv2.eyes-shut"} }, - "horn": {"horn": {"x": 83.5, "y": -7.42, "rotation": -90, "width": 122, "height": 167, "path": "plant-04.horn"}}, + "horn": {"horn": {"x": 100.49176470588235, "y": 21.609411764705882, "rotation": -90, "width": 261.1764705882353, "height": 312.94117647058823, "path": "bug-mystic-02-lv2.horn"}}, "mouth": { - "mouth": {"x": 15, "y": 61.13, "width": 115, "height": 32, "path": "plant-04.mouth"}, - "mouth-bite": {"x": 33, "y": 30.63, "width": 169, "height": 131, "path": "plant-04.mouth-bite"}, - "mouth-open": {"x": 27, "y": 26.63, "width": 131, "height": 171, "path": "plant-04.mouth-open"}, - "mouth-smile": {"x": 15.5, "y": 60.13, "width": 144, "height": 66, "path": "plant-04.mouth-smile"} + "mouth": {"x": -40.75647058823529, "y": 18.34470588235294, "width": 162.35294117647058, "height": 216.47058823529412, "path": "bug-mystic-02-lv2.mouth"}, + "mouth-bite": {"x": -126.63882352941177, "y": 25.40352941176471, "width": 334.11764705882354, "height": 202.35294117647058, "path": "bug-mystic-02-lv2.mouth-bite"}, + "mouth-happy": {"x": -40.75647058823529, "y": 17.52117647058823, "width": 162.35294117647058, "height": 214.11764705882354, "path": "bug-mystic-02-lv2.mouth-happy"}, + "mouth-open": {"x": -23.109411764705882, "y": 8.93294117647058, "width": 127.05882352941177, "height": 235.29411764705884, "path": "bug-mystic-02-lv2.mouth-open"}, + "mouth-smile": {"x": -41.36352941176471, "y": 16.714117647058828, "width": 157.64705882352942, "height": 209.41176470588235, "path": "bug-mystic-02-lv2.mouth-smile"} }, - "tail": {"tail": {"x": 124.67, "y": 43.13, "rotation": 42, "width": 304, "height": 243, "path": "plant-04.tail"}} + "mouth-accessory": { + "mouth-accessory": {"x": -52.50352941176471, "y": 4.56647058823529, "width": 117.64705882352942, "height": 117.64705882352942, "path": "bug-mystic-02-lv2.mouth-accessory"} + }, + "mouth-blink": { + "mouth-smile-blink": {"x": 0.732941176470587, "y": -0.9670588235294131, "width": 35.294117647058826, "height": 35.294117647058826, "path": "bug-mystic-02-lv2.mouth-smile-blink"} + }, + "tail": {"tail": {"x": 77.69764705882352, "y": 64.52823529411765, "rotation": 25, "width": 211.76470588235296, "height": 338.8235294117647, "path": "bug-mystic-02-lv2.tail"}} } } ], @@ -1872,7 +1923,7 @@ "attack/ranged/cast-high": "164191126", "attack/ranged/cast-low": "198813017", "attack/ranged/cast-multi": "151119", - "attack/ranged/cast-tail": "997902532", + "attack/ranged/cast-tail": "3899988824", "activity/eat-bite": "1137807767", "activity/eat-chew": "1988236421", "activity/entrance": "3768378365", @@ -1889,17 +1940,17 @@ "attack/melee/mouth-bite": "2237748264", "action/move-back": "3766271173", "action/move-forward": "2945160014", - "attack/melee/multi-attack": "905926802", - "action/idle/normal": "1659336865", + "attack/melee/multi-attack": "3861365989", + "action/idle/normal": "2717938682", "attack/melee/normal-attack": "3305373483", "activity/prepare": "405864717", "action/idle/random-01": "554401889", - "action/idle/random-02": "1085666627", + "action/idle/random-02": "3888196768", "action/idle/random-03": "2021333900", "action/idle/random-04": "1003789695", "action/idle/random-05": "2745614147", - "action/run": "1438840721", - "draft/run-origin": "3577885069", + "action/run": "3858829480", + "draft/run-origin": "3947527336", "attack/melee/shrimp": "3833448733", "activity/sleep": "100562494", "attack/melee/tail-multi-slap": "3317139533", @@ -1909,16 +1960,16 @@ "activity/victory-pose-back-flip": "2227634241" } }, - "reptile-mystic-02": { + "bird-mystic-02-lv2": { "bones": [ {"name": "@root"}, {"name": "@pivot-main", "parent": "@root"}, {"name": "@pivot-back", "parent": "@pivot-main", "x": 205, "y": 180, "color": "ff0101ff"}, {"name": "@pivot-center", "parent": "@pivot-back", "x": -215.11, "y": -5.25, "color": "ff0101ff"}, {"name": "@axie", "parent": "@pivot-center", "length": 213.28, "rotation": 179.04, "x": 196.39, "y": 5.16}, {"name": "@back", "parent": "@axie", "rotation": -179.04, "x": 37.63, "y": -198.19}, - {"name": "back", "parent": "@back", "length": 149.41, "rotation": 60, "x": -32.97, "y": 79.3, "transform": "noScale"}, + {"name": "back", "parent": "@back", "length": 149.41, "rotation": 86, "x": 30.03, "y": 56.3, "transform": "noScale"}, {"name": "@body", "parent": "@axie", "length": 226.28, "rotation": -8.35, "x": 224.58, "y": -0.53}, {"name": "@ear-left", "parent": "@axie", "rotation": -179.04, "x": 112.7, "y": -203.23}, - {"name": "ear-left", "parent": "@ear-left", "length": 113.61, "rotation": 88, "x": 63, "y": -25, "transform": "noScale"}, + {"name": "ear-left", "parent": "@ear-left", "length": 113.61, "rotation": 114, "x": 55, "y": -63, "transform": "noScale"}, {"name": "@ear-right", "parent": "@axie", "rotation": -179.04, "x": 405.28, "y": -235.33}, - {"name": "ear-right", "parent": "@ear-right", "length": 119.39, "rotation": 94, "x": -23, "y": -72, "transform": "noScale"}, + {"name": "ear-right", "parent": "@ear-right", "length": 119.39, "rotation": 68, "x": -73, "y": -107, "transform": "noScale"}, {"name": "@eyes", "parent": "@axie", "rotation": -179.04, "x": 384.24, "y": -113.67}, {"name": "@horn", "parent": "@axie", "rotation": -179.04, "x": 327.92, "y": -214.63}, {"name": "horn", "parent": "@horn", "length": 176.72, "rotation": 90, "y": 18, "transform": "noScale"}, {"name": "@leg-back-left", "parent": "@axie", "length": 76.4, "rotation": 100.96, "x": -15.3, "y": 102.56, "transform": "noScale"}, @@ -1927,12 +1978,13 @@ {"name": "@mouth", "parent": "@axie", "rotation": -179.04, "x": 382.23, "y": 6.31}, {"name": "body-class", "parent": "@body", "rotation": -170.69, "x": -286.29, "y": -103.48, "transform": "noScale"}, {"name": "@shadow", "parent": "@root", "color": "e6d713ff"}, {"name": "@tail", "parent": "@axie", "rotation": -179.04, "x": -11.76, "y": 61.72}, - {"name": "tail", "parent": "@tail", "length": 203.67, "rotation": 15, "x": 38, "y": 10, "transform": "noScale"}, + {"name": "tail", "parent": "@tail", "length": 203.67, "rotation": 45, "x": 36.24, "y": -18, "transform": "noScale"}, {"name": "leg-front-right-IK", "parent": "@pivot-main", "x": -195.99, "y": -10.21, "color": "ff3f00ff"}, {"name": "leg-front-left-IK", "parent": "@pivot-main", "x": 42.3, "y": -18.42, "color": "ff3f00ff"}, {"name": "leg-back-left-IK", "parent": "@pivot-main", "x": 208.57, "y": 1.35, "color": "ff3f00ff"}, {"name": "@ball", "parent": "@root", "y": 191, "color": "f3981bff"}, {"name": "ball", "parent": "@ball", "y": -191, "color": "f4a729ff"}, {"name": "body-id", "parent": "@body", "rotation": -170.69, "x": -290.82, "y": -75.84}, - {"name": "mouth-accessory", "parent": "@mouth", "x": 8.74, "y": 77.12}, {"name": "mouth-blink", "parent": "@mouth", "x": 80.68, "y": 82.83} + {"name": "mouth-accessory", "parent": "@mouth", "x": 8.74, "y": 77.12}, {"name": "mouth-blink", "parent": "@mouth", "x": 80.68, "y": 82.83}, + {"name": "@", "parent": "@root", "x": 154.79, "y": -4.25} ], "slots": [ {"name": "shadow", "bone": "@shadow", "attachment": "shadow"}, {"name": "ball", "bone": "ball"}, @@ -1953,25 +2005,33 @@ { "name": "default", "attachments": { - "back": {"back": {"x": 81.71, "y": 22.55, "rotation": -60, "width": 210, "height": 245, "path": "reptile-mystic-02.back"}}, - "ear-left": {"ear-left": {"x": 18.92, "y": -10.68, "rotation": -88, "width": 206, "height": 232, "path": "reptile-mystic-02.ear-left"}}, - "ear-right": {"ear-right": {"x": 26.63, "y": 21.86, "rotation": -94, "width": 194, "height": 239, "path": "reptile-mystic-02.ear-right"}}, + "back": {"back": {"x": 173.2741176470588, "y": -12.427647058823537, "rotation": -86, "width": 329.4117647058824, "height": 308.2352941176471, "path": "bird-mystic-02-lv2.back"}}, + "ear-left": { + "ear-left": {"x": 25.25823529411764, "y": 2.4335294117646957, "rotation": -114, "width": 178.82352941176472, "height": 242.3529411764706, "path": "bird-mystic-02-lv2.ear-left"} + }, + "ear-right": { + "ear-right": {"x": 33.97176470588235, "y": 6.837647058823522, "rotation": -68, "width": 181.1764705882353, "height": 251.76470588235296, "path": "bird-mystic-02-lv2.ear-right"} + }, "eyes": { - "eyes": {"x": 33.33, "y": 24.54, "width": 312, "height": 132, "path": "reptile-mystic-02.eyes"}, - "eyes-angry": {"x": 33.33, "y": 24.54, "width": 312, "height": 132, "path": "reptile-mystic-02.eyes-angry"}, - "eyes-happy": {"x": 33.33, "y": 24.54, "width": 312, "height": 132, "path": "reptile-mystic-02.eyes-happy"}, - "eyes-shut": {"x": 33.33, "y": 24.54, "width": 312, "height": 132, "path": "reptile-mystic-02.eyes-shut"} + "eyes": {"x": 61.41, "y": 15.159411764705885, "width": 360.0, "height": 112.94117647058823, "path": "bird-mystic-02-lv2.eyes"}, + "eyes-angry": {"x": 61.41, "y": 15.159411764705885, "width": 360.0, "height": 112.94117647058823, "path": "bird-mystic-02-lv2.eyes-angry"}, + "eyes-happy": {"x": 61.41, "y": 15.159411764705885, "width": 360.0, "height": 112.94117647058823, "path": "bird-mystic-02-lv2.eyes-happy"}, + "eyes-shut": {"x": 61.41, "y": 8.041764705882354, "width": 360.0, "height": 101.17647058823529, "path": "bird-mystic-02-lv2.eyes-shut"} }, - "horn": {"horn": {"x": 99.54, "y": -27.33, "rotation": -90, "width": 252, "height": 200, "path": "reptile-mystic-02.horn"}}, + "horn": {"horn": {"x": 128.21823529411765, "y": -24.163529411764724, "rotation": -90, "width": 298.8235294117647, "height": 357.64705882352945, "path": "bird-mystic-02-lv2.horn"}}, "mouth": { - "mouth": {"x": 24.83, "y": 44.04, "width": 269, "height": 63, "path": "reptile-mystic-02.mouth"}, - "mouth-bite": {"x": 27.58, "y": 35.29, "width": 327, "height": 117, "path": "reptile-mystic-02.mouth-bite"}, - "mouth-open": {"x": 28.08, "y": 40.79, "width": 314, "height": 92, "path": "reptile-mystic-02.mouth-open"}, - "mouth-smile": {"x": 31.08, "y": -15.21, "width": 336, "height": 206, "path": "reptile-mystic-02.mouth-smile"} - }, - "mouth-accessory": {"mouth-accessory": {"x": -52.68, "y": 4.39, "width": 118, "height": 118, "path": "reptile-mystic-02.mouth-accessory"}}, - "mouth-blink": {"mouth-smile-blink": {"x": -0.12, "y": -1.32, "width": 37, "height": 36, "path": "reptile-mystic-02.mouth-smile-blink"}}, - "tail": {"tail": {"x": 69.31, "y": -9.21, "rotation": -15, "width": 216, "height": 203, "path": "reptile-mystic-02.tail"}} + "mouth": {"x": 16.692941176470587, "y": 35.21823529411764, "width": 115.29411764705883, "height": 218.82352941176472, "path": "bird-mystic-02-lv2.mouth"}, + "mouth-bite": {"x": 27.928235294117652, "y": 35.394705882352945, "width": 138.8235294117647, "height": 216.47058823529412, "path": "bird-mystic-02-lv2.mouth-bite"}, + "mouth-open": {"x": 14.51647058823529, "y": 60.26470588235294, "width": 117.64705882352942, "height": 216.47058823529412, "path": "bird-mystic-02-lv2.mouth-open"}, + "mouth-smile": {"x": 21.987058823529413, "y": 35.21823529411764, "width": 124.70588235294117, "height": 218.82352941176472, "path": "bird-mystic-02-lv2.mouth-smile"} + }, + "mouth-accessory": { + "mouth-accessory": {"x": -52.50352941176471, "y": 4.56647058823529, "width": 117.64705882352942, "height": 117.64705882352942, "path": "bird-mystic-02-lv2.mouth-accessory"} + }, + "mouth-blink": { + "mouth-smile-blink": {"x": 0.732941176470587, "y": -0.9670588235294131, "width": 35.294117647058826, "height": 35.294117647058826, "path": "bird-mystic-02-lv2.mouth-smile-blink"} + }, + "tail": {"tail": {"x": 159.17470588235292, "y": -24.98588235294119, "rotation": -45, "width": 256.47058823529414, "height": 289.4117647058824, "path": "bird-mystic-02-lv2.tail"}} } } ], @@ -2001,7 +2061,7 @@ "action/move-back": "3766271173", "action/move-forward": "2945160014", "attack/melee/multi-attack": "3861365989", - "action/idle/normal": "1659336865", + "action/idle/normal": "2717938682", "attack/melee/normal-attack": "3305373483", "activity/prepare": "405864717", "action/idle/random-01": "554401889", @@ -2020,36 +2080,40 @@ "activity/victory-pose-back-flip": "2227634241" } }, - "japan-03": { + "plant-mystic-02-lv2": { "bones": [ {"name": "@root"}, {"name": "@pivot-main", "parent": "@root"}, {"name": "@pivot-back", "parent": "@pivot-main", "x": 205, "y": 180, "color": "ff0101ff"}, {"name": "@pivot-center", "parent": "@pivot-back", "x": -215.11, "y": -5.25, "color": "ff0101ff"}, {"name": "@axie", "parent": "@pivot-center", "length": 213.28, "rotation": 179.04, "x": 196.39, "y": 5.16}, {"name": "@back", "parent": "@axie", "rotation": -179.04, "x": 37.63, "y": -198.19}, - {"name": "back", "parent": "@back", "length": 149.41, "rotation": 73, "x": -127.97, "y": 11.3, "transform": "noScale"}, + {"name": "back", "parent": "@back", "length": 149.41, "rotation": 60, "x": -31.97, "y": 5.3, "transform": "noScale"}, {"name": "@body", "parent": "@axie", "length": 226.28, "rotation": -8.35, "x": 224.58, "y": -0.53}, {"name": "@ear-left", "parent": "@axie", "rotation": -179.04, "x": 112.7, "y": -203.23}, - {"name": "ear-left", "parent": "@ear-left", "length": 113.61, "rotation": 60, "x": -33, "y": -3, "transform": "noScale"}, + {"name": "ear-left", "parent": "@ear-left", "length": 113.61, "rotation": 52, "x": -31, "y": -30, "transform": "noScale"}, {"name": "@ear-right", "parent": "@axie", "rotation": -179.04, "x": 405.28, "y": -235.33}, - {"name": "ear-right", "parent": "@ear-right", "length": 119.39, "rotation": 80, "x": -75, "y": -38, "transform": "noScale"}, + {"name": "ear-right", "parent": "@ear-right", "length": 119.39, "rotation": 74, "x": -47, "y": -70, "transform": "noScale"}, {"name": "@eyes", "parent": "@axie", "rotation": -179.04, "x": 384.24, "y": -113.67}, {"name": "@horn", "parent": "@axie", "rotation": -179.04, "x": 327.92, "y": -214.63}, {"name": "horn", "parent": "@horn", "length": 176.72, "rotation": 90, "y": 18, "transform": "noScale"}, {"name": "@leg-back-left", "parent": "@axie", "length": 76.4, "rotation": 100.96, "x": -15.3, "y": 102.56, "transform": "noScale"}, {"name": "@leg-front-left", "parent": "@axie", "length": 51.19, "rotation": 93.86, "x": 134.77, "y": 149.55, "transform": "noScale"}, {"name": "@leg-front-right", "parent": "@axie", "length": 74.83, "rotation": 83.2, "x": 382.95, "y": 121.78, "transform": "noScale"}, {"name": "@mouth", "parent": "@axie", "rotation": -179.04, "x": 382.23, "y": 6.31}, - {"name": "body-pattern", "parent": "@body", "rotation": -170.69, "x": -267.21, "y": -49.4, "transform": "noScale"}, {"name": "@shadow", "parent": "@root", "color": "e6d713ff"}, + {"name": "body-class", "parent": "@body", "rotation": -170.69, "x": -286.29, "y": -103.48, "transform": "noScale"}, {"name": "@shadow", "parent": "@root", "color": "e6d713ff"}, {"name": "@tail", "parent": "@axie", "rotation": -179.04, "x": -11.76, "y": 61.72}, - {"name": "tail", "parent": "@tail", "length": 203.67, "rotation": 30, "x": 67, "y": 24, "transform": "noScale"}, + {"name": "tail", "parent": "@tail", "length": 203.67, "rotation": 15, "x": -6, "y": 10, "transform": "noScale"}, {"name": "leg-front-right-IK", "parent": "@pivot-main", "x": -195.99, "y": -10.21, "color": "ff3f00ff"}, {"name": "leg-front-left-IK", "parent": "@pivot-main", "x": 42.3, "y": -18.42, "color": "ff3f00ff"}, {"name": "leg-back-left-IK", "parent": "@pivot-main", "x": 208.57, "y": 1.35, "color": "ff3f00ff"}, {"name": "@ball", "parent": "@root", "y": 191, "color": "f3981bff"}, - {"name": "ball", "parent": "@ball", "y": -191, "color": "f4a729ff"} + {"name": "ball", "parent": "@ball", "y": -191, "color": "f4a729ff"}, {"name": "body-id", "parent": "@body", "rotation": -170.69, "x": -290.82, "y": -75.84}, + {"name": "mouth-accessory", "parent": "@mouth", "x": 8.74, "y": 77.12}, {"name": "mouth-blink", "parent": "@mouth", "x": 80.68, "y": 82.83} ], "slots": [ - {"name": "shadow", "bone": "@shadow", "attachment": "shadow"}, {"name": "ball", "bone": "ball"}, {"name": "leg-front-right", "bone": "@leg-front-right", "attachment": "leg-front-right"}, - {"name": "ear-right", "bone": "ear-right", "attachment": "ear-right"}, {"name": "tail", "bone": "tail", "attachment": "tail"}, {"name": "back", "bone": "back", "attachment": "back"}, - {"name": "leg-back-left", "bone": "@leg-back-left", "attachment": "leg-back-left"}, {"name": "body", "bone": "@body", "attachment": "body"}, {"name": "body-pattern", "bone": "body-pattern"}, - {"name": "leg-front-left", "bone": "@leg-front-left", "attachment": "leg-front-left"}, {"name": "eyes", "bone": "@eyes", "attachment": "eyes"}, - {"name": "mouth", "bone": "@mouth", "attachment": "mouth"}, {"name": "ear-left", "bone": "ear-left", "attachment": "ear-left"}, {"name": "horn", "bone": "horn", "attachment": "horn"} + {"name": "shadow", "bone": "@shadow", "attachment": "shadow"}, {"name": "ball", "bone": "ball"}, + {"name": "leg-front-right", "bone": "@leg-front-right", "attachment": "mystic-leg-front-right"}, {"name": "ear-right", "bone": "ear-right", "attachment": "ear-right"}, + {"name": "tail", "bone": "tail", "attachment": "tail"}, {"name": "back", "bone": "back", "attachment": "back"}, + {"name": "leg-back-left", "bone": "@leg-back-left", "attachment": "mystic-leg-back-left"}, {"name": "body", "bone": "@body", "attachment": "body-mystic"}, + {"name": "body-class", "bone": "body-class", "attachment": "body-class-aquatic"}, {"name": "leg-front-left", "bone": "@leg-front-left", "attachment": "mystic-leg-front-left"}, + {"name": "eyes", "bone": "@eyes", "attachment": "eyes"}, {"name": "mouth", "bone": "@mouth", "attachment": "mouth"}, {"name": "ear-left", "bone": "ear-left", "attachment": "ear-left"}, + {"name": "horn", "bone": "horn", "attachment": "horn"}, {"name": "body-id", "bone": "body-id", "attachment": "body-id"}, {"name": "mouth-accessory", "bone": "mouth-accessory"}, + {"name": "mouth-blink", "bone": "mouth-blink"} ], "ik": [ {"name": "leg-back-left-IK", "order": 2, "bones": ["@leg-back-left"], "target": "leg-back-left-IK"}, @@ -2060,23 +2124,33 @@ { "name": "default", "attachments": { - "back": {"back": {"x": 151.19, "y": -26.85, "rotation": -73, "width": 389, "height": 383, "path": "japan-03.back"}}, - "ear-left": {"ear-left": {"x": 84.35, "y": -10.63, "rotation": -60, "width": 150, "height": 165, "path": "japan-03.ear-left"}}, - "ear-right": {"ear-right": {"x": 60.95, "y": 1.22, "rotation": -80, "width": 78, "height": 166, "path": "japan-03.ear-right"}}, + "back": {"back": {"x": 131.3294117647059, "y": 32.232352941176465, "rotation": -60, "width": 352.94117647058823, "height": 348.2352941176471, "path": "plant-mystic-02-lv2.back"}}, + "ear-left": { + "ear-left": {"x": 133.64647058823527, "y": 84.99705882352941, "rotation": -52, "width": 197.64705882352942, "height": 284.70588235294116, "path": "plant-mystic-02-lv2.ear-left"} + }, + "ear-right": { + "ear-right": {"x": 146.5329411764706, "y": 58.68705882352942, "rotation": -74, "width": 195.29411764705884, "height": 284.70588235294116, "path": "plant-mystic-02-lv2.ear-right"} + }, "eyes": { - "eyes": {"x": 31.38, "y": 18.74, "width": 286, "height": 141, "path": "japan-03.eyes"}, - "eyes-angry": {"x": 31.38, "y": 16.24, "width": 286, "height": 162, "path": "japan-03.eyes-angry"}, - "eyes-happy": {"x": 22.38, "y": 29.24, "width": 268, "height": 120, "path": "japan-03.eyes-happy"}, - "eyes-shut": {"x": 22.38, "y": 29.24, "width": 268, "height": 120, "path": "japan-03.eyes-shut"} + "eyes": {"x": 13.147058823529406, "y": 47.52, "width": 244.7058823529412, "height": 120.0, "path": "plant-mystic-02-lv2.eyes"}, + "eyes-angry": {"x": 13.147058823529406, "y": 47.52, "width": 244.7058823529412, "height": 120.0, "path": "plant-mystic-02-lv2.eyes-angry"}, + "eyes-happy": {"x": 13.147058823529406, "y": 47.52, "width": 244.7058823529412, "height": 120.0, "path": "plant-mystic-02-lv2.eyes-happy"}, + "eyes-shut": {"x": 13.147058823529406, "y": 47.52, "width": 244.7058823529412, "height": 120.0, "path": "plant-mystic-02-lv2.eyes-shut"} }, - "horn": {"horn": {"x": 134.24, "y": 34.12, "rotation": -90, "width": 225, "height": 300, "path": "japan-03.horn"}}, + "horn": {"horn": {"x": 115.90235294117646, "y": -1.588235294117652, "rotation": -90, "width": 188.23529411764707, "height": 261.1764705882353, "path": "plant-mystic-02-lv2.horn"}}, "mouth": { - "mouth": {"x": 18.88, "y": 61.74, "width": 291, "height": 49, "path": "japan-03.mouth"}, - "mouth-bite": {"x": 18.88, "y": 59.74, "width": 291, "height": 45, "path": "japan-03.mouth-bite"}, - "mouth-open": {"x": 18.88, "y": 33.74, "width": 291, "height": 109, "path": "japan-03.mouth-open"}, - "mouth-smile": {"x": 18.88, "y": 34.74, "width": 291, "height": 95, "path": "japan-03.mouth-smile"} + "mouth": {"x": 17.735294117647058, "y": 84.63764705882352, "width": 63.529411764705884, "height": 91.76470588235294, "path": "plant-mystic-02-lv2.mouth"}, + "mouth-bite": {"x": 24.32352941176471, "y": 69.3435294117647, "width": 202.35294117647058, "height": 122.3529411764706, "path": "plant-mystic-02-lv2.mouth-bite"}, + "mouth-open": {"x": 21.55882352941176, "y": 44.637647058823525, "width": 105.88235294117648, "height": 171.76470588235296, "path": "plant-mystic-02-lv2.mouth-open"}, + "mouth-smile": {"x": 32.3235294117647, "y": 81.10823529411763, "width": 122.3529411764706, "height": 98.82352941176471, "path": "plant-mystic-02-lv2.mouth-smile"} + }, + "mouth-accessory": { + "mouth-accessory": {"x": -52.50352941176471, "y": 4.56647058823529, "width": 117.64705882352942, "height": 117.64705882352942, "path": "plant-mystic-02-lv2.mouth-accessory"} }, - "tail": {"tail": {"x": 112.59, "y": 45.8, "rotation": -30, "width": 191, "height": 297, "path": "japan-03.tail"}} + "mouth-blink": { + "mouth-smile-blink": {"x": 0.732941176470587, "y": -0.9670588235294131, "width": 35.294117647058826, "height": 35.294117647058826, "path": "plant-mystic-02-lv2.mouth-smile-blink"} + }, + "tail": {"tail": {"x": 193.3729411764706, "y": 39.470588235294116, "rotation": -15, "width": 355.29411764705884, "height": 367.05882352941177, "path": "plant-mystic-02-lv2.tail"}} } } ], @@ -2088,7 +2162,7 @@ "attack/ranged/cast-high": "164191126", "attack/ranged/cast-low": "198813017", "attack/ranged/cast-multi": "151119", - "attack/ranged/cast-tail": "997902532", + "attack/ranged/cast-tail": "3899988824", "activity/eat-bite": "1137807767", "activity/eat-chew": "1988236421", "activity/entrance": "3768378365", @@ -2105,17 +2179,17 @@ "attack/melee/mouth-bite": "2237748264", "action/move-back": "3766271173", "action/move-forward": "2945160014", - "attack/melee/multi-attack": "905926802", - "action/idle/normal": "1659336865", + "attack/melee/multi-attack": "3861365989", + "action/idle/normal": "1749937284", "attack/melee/normal-attack": "3305373483", "activity/prepare": "405864717", "action/idle/random-01": "554401889", - "action/idle/random-02": "1085666627", + "action/idle/random-02": "3888196768", "action/idle/random-03": "2021333900", "action/idle/random-04": "1003789695", "action/idle/random-05": "2745614147", - "action/run": "1438840721", - "draft/run-origin": "3577885069", + "action/run": "3858829480", + "draft/run-origin": "3947527336", "attack/melee/shrimp": "3833448733", "activity/sleep": "100562494", "attack/melee/tail-multi-slap": "3317139533", @@ -2125,16 +2199,16 @@ "activity/victory-pose-back-flip": "2227634241" } }, - "plant-mystic-02": { + "aquatic-mystic-02-lv2": { "bones": [ {"name": "@root"}, {"name": "@pivot-main", "parent": "@root"}, {"name": "@pivot-back", "parent": "@pivot-main", "x": 205, "y": 180, "color": "ff0101ff"}, {"name": "@pivot-center", "parent": "@pivot-back", "x": -215.11, "y": -5.25, "color": "ff0101ff"}, {"name": "@axie", "parent": "@pivot-center", "length": 213.28, "rotation": 179.04, "x": 196.39, "y": 5.16}, {"name": "@back", "parent": "@axie", "rotation": -179.04, "x": 37.63, "y": -198.19}, - {"name": "back", "parent": "@back", "length": 149.41, "rotation": 60, "x": -31.97, "y": 5.3, "transform": "noScale"}, + {"name": "back", "parent": "@back", "length": 149.41, "rotation": 60, "x": 6.8, "y": 15, "transform": "noScale"}, {"name": "@body", "parent": "@axie", "length": 226.28, "rotation": -8.35, "x": 224.58, "y": -0.53}, {"name": "@ear-left", "parent": "@axie", "rotation": -179.04, "x": 112.7, "y": -203.23}, - {"name": "ear-left", "parent": "@ear-left", "length": 113.61, "rotation": 52, "x": -31, "y": -30, "transform": "noScale"}, + {"name": "ear-left", "parent": "@ear-left", "length": 113.61, "rotation": 2, "x": -21, "y": -43, "transform": "noScale"}, {"name": "@ear-right", "parent": "@axie", "rotation": -179.04, "x": 405.28, "y": -235.33}, - {"name": "ear-right", "parent": "@ear-right", "length": 119.39, "rotation": 74, "x": -47, "y": -70, "transform": "noScale"}, + {"name": "ear-right", "parent": "@ear-right", "length": 119.39, "rotation": 9, "x": -120, "y": -105, "transform": "noScale"}, {"name": "@eyes", "parent": "@axie", "rotation": -179.04, "x": 384.24, "y": -113.67}, {"name": "@horn", "parent": "@axie", "rotation": -179.04, "x": 327.92, "y": -214.63}, {"name": "horn", "parent": "@horn", "length": 176.72, "rotation": 90, "y": 18, "transform": "noScale"}, {"name": "@leg-back-left", "parent": "@axie", "length": 76.4, "rotation": 100.96, "x": -15.3, "y": 102.56, "transform": "noScale"}, @@ -2143,22 +2217,29 @@ {"name": "@mouth", "parent": "@axie", "rotation": -179.04, "x": 382.23, "y": 6.31}, {"name": "body-class", "parent": "@body", "rotation": -170.69, "x": -286.29, "y": -103.48, "transform": "noScale"}, {"name": "@shadow", "parent": "@root", "color": "e6d713ff"}, {"name": "@tail", "parent": "@axie", "rotation": -179.04, "x": -11.76, "y": 61.72}, - {"name": "tail", "parent": "@tail", "length": 203.67, "rotation": 15, "x": -6, "y": 10, "transform": "noScale"}, + {"name": "tail", "parent": "@tail", "length": 203.67, "rotation": 6, "x": 16, "y": 72.87, "transform": "noScale"}, {"name": "leg-front-right-IK", "parent": "@pivot-main", "x": -195.99, "y": -10.21, "color": "ff3f00ff"}, {"name": "leg-front-left-IK", "parent": "@pivot-main", "x": 42.3, "y": -18.42, "color": "ff3f00ff"}, {"name": "leg-back-left-IK", "parent": "@pivot-main", "x": 208.57, "y": 1.35, "color": "ff3f00ff"}, {"name": "@ball", "parent": "@root", "y": 191, "color": "f3981bff"}, - {"name": "ball", "parent": "@ball", "y": -191, "color": "f4a729ff"}, {"name": "body-id", "parent": "@body", "rotation": -170.69, "x": -290.82, "y": -75.84}, - {"name": "mouth-accessory", "parent": "@mouth", "x": 8.74, "y": 77.12}, {"name": "mouth-blink", "parent": "@mouth", "x": 80.68, "y": 82.83} + {"name": "ball", "parent": "@ball", "y": -191, "color": "f4a729ff"}, {"name": "body-id", "parent": "@body", "rotation": -170.69, "x": -292.44, "y": -65.98}, + {"name": "mouth-accessory", "parent": "@mouth", "x": 74.12, "y": 60}, {"name": "body-id-a", "parent": "body-id", "x": 23, "y": 10}, + {"name": "body-id-b", "parent": "body-id", "x": 13, "y": 10}, {"name": "body-id-c", "parent": "body-id", "x": 3, "y": 10}, {"name": "body-id-d", "parent": "body-id", "x": -7, "y": 10}, + {"name": "body-id-e", "parent": "body-id", "x": -17, "y": 10}, {"name": "body-id-f", "parent": "body-id", "x": -27, "y": 10}, + {"name": "body-light-life", "parent": "@body", "rotation": -95.65, "x": -248.57, "y": -126.52} ], "slots": [ {"name": "shadow", "bone": "@shadow", "attachment": "shadow"}, {"name": "ball", "bone": "ball"}, {"name": "leg-front-right", "bone": "@leg-front-right", "attachment": "mystic-leg-front-right"}, {"name": "ear-right", "bone": "ear-right", "attachment": "ear-right"}, {"name": "tail", "bone": "tail", "attachment": "tail"}, {"name": "back", "bone": "back", "attachment": "back"}, - {"name": "leg-back-left", "bone": "@leg-back-left", "attachment": "mystic-leg-back-left"}, {"name": "body", "bone": "@body", "attachment": "body-mystic"}, - {"name": "body-class", "bone": "body-class", "attachment": "body-class-aquatic"}, {"name": "leg-front-left", "bone": "@leg-front-left", "attachment": "mystic-leg-front-left"}, - {"name": "eyes", "bone": "@eyes", "attachment": "eyes"}, {"name": "mouth", "bone": "@mouth", "attachment": "mouth"}, {"name": "ear-left", "bone": "ear-left", "attachment": "ear-left"}, - {"name": "horn", "bone": "horn", "attachment": "horn"}, {"name": "body-id", "bone": "body-id", "attachment": "body-id"}, {"name": "mouth-accessory", "bone": "mouth-accessory"}, - {"name": "mouth-blink", "bone": "mouth-blink"} + {"name": "leg-back-left", "bone": "@leg-back-left", "attachment": "mystic-leg-back-left"}, {"name": "body-light-life", "bone": "body-light-life", "attachment": "body-light-life"}, + {"name": "body", "bone": "@body", "attachment": "body-mystic"}, {"name": "body-light-breath", "bone": "@body", "attachment": "body-light-breath"}, + {"name": "body-light-pulse", "bone": "@body", "attachment": "body-light-pulse"}, {"name": "body-id-a", "bone": "body-id-a", "attachment": "body-id-a-01"}, + {"name": "body-id-b", "bone": "body-id-b", "attachment": "body-id-b-09"}, {"name": "body-id-c", "bone": "body-id-c", "attachment": "body-id-c-08"}, + {"name": "body-id-d", "bone": "body-id-d", "attachment": "body-id-d-00"}, {"name": "body-id-e", "bone": "body-id-e", "attachment": "body-id-e-03"}, + {"name": "body-id-f", "bone": "body-id-f", "attachment": "body-id-f-00"}, {"name": "body-class", "bone": "body-class", "attachment": "body-class-aquatic"}, + {"name": "leg-front-left", "bone": "@leg-front-left", "attachment": "mystic-leg-front-left"}, {"name": "eyes", "bone": "@eyes", "attachment": "eyes"}, + {"name": "mouth", "bone": "@mouth", "attachment": "mouth"}, {"name": "mouth-accessory", "bone": "mouth-accessory"}, {"name": "ear-left", "bone": "ear-left", "attachment": "ear-left"}, + {"name": "horn", "bone": "horn", "attachment": "horn"} ], "ik": [ {"name": "leg-back-left-IK", "order": 2, "bones": ["@leg-back-left"], "target": "leg-back-left-IK"}, @@ -2169,25 +2250,30 @@ { "name": "default", "attachments": { - "back": {"back": {"x": 168.11, "y": -1.16, "rotation": -60, "width": 332, "height": 357, "path": "plant-mystic-02.back"}}, - "ear-left": {"ear-left": {"x": 107.73, "y": 6.69, "rotation": -52, "width": 158, "height": 201, "path": "plant-mystic-02.ear-left"}}, - "ear-right": {"ear-right": {"x": 93.28, "y": 12.12, "rotation": -74, "width": 126, "height": 209, "path": "plant-mystic-02.ear-right"}}, + "back": {"back": {"x": 95.03588235294116, "y": 83.18823529411765, "rotation": -60, "width": 350.5882352941177, "height": 418.8235294117647, "path": "aquatic-mystic-02-lv2.back"}}, + "ear-left": { + "ear-left": {"x": 79.9170588235294, "y": 19.228235294117653, "rotation": -2, "width": 164.7058823529412, "height": 258.8235294117647, "path": "aquatic-mystic-02-lv2.ear-left"} + }, + "ear-right": { + "ear-right": {"x": 72.35411764705881, "y": 23.11705882352942, "rotation": -9, "width": 89.41176470588236, "height": 284.70588235294116, "path": "aquatic-mystic-02-lv2.ear-right"} + }, "eyes": { - "eyes": {"x": 66.56, "y": 28.51, "width": 293, "height": 92, "path": "plant-mystic-02.eyes"}, - "eyes-angry": {"x": 66.56, "y": 28.51, "width": 293, "height": 92, "path": "plant-mystic-02.eyes-angry"}, - "eyes-happy": {"x": 66.56, "y": 28.51, "width": 293, "height": 92, "path": "plant-mystic-02.eyes-happy"}, - "eyes-shut": {"x": 66.56, "y": 28.51, "width": 293, "height": 92, "path": "plant-mystic-02.eyes-shut"} + "eyes": {"x": 30.462352941176462, "y": 41.85058823529412, "width": 308.2352941176471, "height": 167.05882352941177, "path": "aquatic-mystic-02-lv2.eyes"}, + "eyes-angry": {"x": 30.462352941176462, "y": 41.85058823529412, "width": 308.2352941176471, "height": 167.05882352941177, "path": "aquatic-mystic-02-lv2.eyes-angry"}, + "eyes-happy": {"x": 30.109411764705882, "y": 43.02705882352941, "width": 312.94117647058823, "height": 164.7058823529412, "path": "aquatic-mystic-02-lv2.eyes-happy"}, + "eyes-shut": {"x": 30.462352941176462, "y": 41.85058823529412, "width": 308.2352941176471, "height": 167.05882352941177, "path": "aquatic-mystic-02-lv2.eyes-shut"} }, - "horn": {"horn": {"x": 65.51, "y": 5.44, "rotation": -90, "width": 161, "height": 220, "path": "plant-mystic-02.horn"}}, + "horn": {"horn": {"x": 112.96823529411765, "y": -30.697647058823534, "rotation": -90, "width": 298.8235294117647, "height": 228.23529411764707, "path": "aquatic-mystic-02-lv2.horn"}}, "mouth": { - "mouth": {"x": 25.57, "y": 73.12, "width": 81, "height": 45, "path": "plant-mystic-02.mouth"}, - "mouth-bite": {"x": 23.06, "y": 55.01, "width": 204, "height": 77, "path": "plant-mystic-02.mouth-bite"}, - "mouth-open": {"x": 29.56, "y": 44.01, "width": 107, "height": 129, "path": "plant-mystic-02.mouth-open"}, - "mouth-smile": {"x": 23.06, "y": 64.51, "width": 94, "height": 52, "path": "plant-mystic-02.mouth-smile"} - }, - "mouth-accessory": {"mouth-accessory": {"x": -52.68, "y": 4.39, "width": 118, "height": 118, "path": "plant-mystic-02.mouth-accessory"}}, - "mouth-blink": {"mouth-smile-blink": {"x": -0.12, "y": -1.32, "width": 37, "height": 36, "path": "plant-mystic-02.mouth-smile-blink"}}, - "tail": {"tail": {"x": 126.14, "y": 18.49, "rotation": -15, "width": 302, "height": 258, "path": "plant-mystic-02.tail"}} + "mouth": {"x": -7.125882352941188, "y": 33.55647058823529, "width": 369.4117647058824, "height": 117.64705882352942, "path": "aquatic-mystic-02-lv2.mouth"}, + "mouth-bite": {"x": -2.06705882352942, "y": 44.144705882352945, "width": 435.29411764705884, "height": 96.47058823529412, "path": "aquatic-mystic-02-lv2.mouth-bite"}, + "mouth-open": {"x": -7.125882352941188, "y": 21.32117647058823, "width": 369.4117647058824, "height": 174.11764705882354, "path": "aquatic-mystic-02-lv2.mouth-open"}, + "mouth-smile": {"x": 3.28588235294116, "y": 43.43882352941176, "width": 390.5882352941177, "height": 105.88235294117648, "path": "aquatic-mystic-02-lv2.mouth-smile"} + }, + "mouth-accessory": { + "mouth-accessory": {"x": 0.8029411764705869, "y": -0.907058823529413, "width": 35.294117647058826, "height": 35.294117647058826, "path": "aquatic-mystic-02-lv2.mouth-accessory"} + }, + "tail": {"tail": {"x": 151.87529411764703, "y": 12.015294117647043, "rotation": -6, "width": 343.5294117647059, "height": 383.5294117647059, "path": "aquatic-mystic-02-lv2.tail"}} } } ], @@ -2199,7 +2285,7 @@ "attack/ranged/cast-high": "164191126", "attack/ranged/cast-low": "198813017", "attack/ranged/cast-multi": "151119", - "attack/ranged/cast-tail": "3899988824", + "attack/ranged/cast-tail": "645705789", "activity/eat-bite": "1137807767", "activity/eat-chew": "1988236421", "activity/entrance": "3768378365", @@ -2217,11 +2303,13 @@ "action/move-back": "3766271173", "action/move-forward": "2945160014", "attack/melee/multi-attack": "3861365989", - "action/idle/normal": "1749937284", + "action/mix/mystic-light-battle": "3979179032", + "action/mix/mystic-light-normal": "1566344788", + "action/idle/normal": "25318063", "attack/melee/normal-attack": "3305373483", "activity/prepare": "405864717", - "action/idle/random-01": "554401889", - "action/idle/random-02": "3888196768", + "action/idle/random-01": "2880388010", + "action/idle/random-02": "3902657344", "action/idle/random-03": "2021333900", "action/idle/random-04": "1003789695", "action/idle/random-05": "2745614147", @@ -2236,16 +2324,16 @@ "activity/victory-pose-back-flip": "2227634241" } }, - "japan-02": { + "aquatic-08": { "bones": [ {"name": "@root"}, {"name": "@pivot-main", "parent": "@root"}, {"name": "@pivot-back", "parent": "@pivot-main", "x": 205, "y": 180, "color": "ff0101ff"}, {"name": "@pivot-center", "parent": "@pivot-back", "x": -215.11, "y": -5.25, "color": "ff0101ff"}, {"name": "@axie", "parent": "@pivot-center", "length": 213.28, "rotation": 179.04, "x": 196.39, "y": 5.16}, {"name": "@back", "parent": "@axie", "rotation": -179.04, "x": 37.63, "y": -198.19}, - {"name": "back", "parent": "@back", "length": 149.41, "rotation": 56, "x": -47.97, "y": 51.3, "transform": "noScale"}, + {"name": "back", "parent": "@back", "length": 149.41, "rotation": 60, "x": 6.8, "y": 15, "transform": "noScale"}, {"name": "@body", "parent": "@axie", "length": 226.28, "rotation": -8.35, "x": 224.58, "y": -0.53}, {"name": "@ear-left", "parent": "@axie", "rotation": -179.04, "x": 112.7, "y": -203.23}, - {"name": "ear-left", "parent": "@ear-left", "length": 113.61, "rotation": 4, "x": 7, "y": -28, "transform": "noScale"}, + {"name": "ear-left", "parent": "@ear-left", "length": 113.61, "rotation": -10, "x": 21, "y": -50, "transform": "noScale"}, {"name": "@ear-right", "parent": "@axie", "rotation": -179.04, "x": 405.28, "y": -235.33}, - {"name": "ear-right", "parent": "@ear-right", "length": 119.39, "rotation": -178, "x": -85, "y": -90, "transform": "noScale"}, + {"name": "ear-right", "parent": "@ear-right", "length": 119.39, "rotation": 191, "x": -60, "y": -92, "transform": "noScale"}, {"name": "@eyes", "parent": "@axie", "rotation": -179.04, "x": 384.24, "y": -113.67}, {"name": "@horn", "parent": "@axie", "rotation": -179.04, "x": 327.92, "y": -214.63}, {"name": "horn", "parent": "@horn", "length": 176.72, "rotation": 90, "y": 18, "transform": "noScale"}, {"name": "@leg-back-left", "parent": "@axie", "length": 76.4, "rotation": 100.96, "x": -15.3, "y": 102.56, "transform": "noScale"}, @@ -2254,7 +2342,7 @@ {"name": "@mouth", "parent": "@axie", "rotation": -179.04, "x": 382.23, "y": 6.31}, {"name": "body-pattern", "parent": "@body", "rotation": -170.69, "x": -267.21, "y": -49.4, "transform": "noScale"}, {"name": "@shadow", "parent": "@root", "color": "e6d713ff"}, {"name": "@tail", "parent": "@axie", "rotation": -179.04, "x": -11.76, "y": 61.72}, - {"name": "tail", "parent": "@tail", "length": 203.67, "rotation": -12, "x": 16, "y": 72.87, "transform": "noScale"}, + {"name": "tail", "parent": "@tail", "length": 203.67, "rotation": -5, "x": 36, "y": 52, "transform": "noScale"}, {"name": "leg-front-right-IK", "parent": "@pivot-main", "x": -195.99, "y": -10.21, "color": "ff3f00ff"}, {"name": "leg-front-left-IK", "parent": "@pivot-main", "x": 42.3, "y": -18.42, "color": "ff3f00ff"}, {"name": "leg-back-left-IK", "parent": "@pivot-main", "x": 208.57, "y": 1.35, "color": "ff3f00ff"}, {"name": "@ball", "parent": "@root", "y": 191, "color": "f3981bff"}, @@ -2276,23 +2364,23 @@ { "name": "default", "attachments": { - "back": {"back": {"x": 119.8, "y": -5.94, "rotation": -56, "width": 254, "height": 385, "path": "japan-02.back"}}, - "ear-left": {"ear-left": {"x": 58.7, "y": -5.11, "rotation": -4, "width": 136, "height": 173, "path": "japan-02.ear-left"}}, - "ear-right": {"ear-right": {"x": 51.7, "y": 2.2, "rotation": 178, "width": 151, "height": 143, "path": "japan-02.ear-right"}}, + "back": {"back": {"x": 64.24000000000001, "y": 29.992352941176463, "rotation": -60, "width": 280.0, "height": 268.2352941176471, "path": "aquatic-08.back"}}, + "ear-left": {"ear-left": {"x": 47.21058823529412, "y": -6.831764705882348, "rotation": 10, "width": 167.05882352941177, "height": 138.8235294117647, "path": "aquatic-08.ear-left"}}, + "ear-right": {"ear-right": {"x": 42.998823529411766, "y": 5.967058823529413, "rotation": 169, "width": 145.88235294117646, "height": 124.70588235294117, "path": "aquatic-08.ear-right"}}, "eyes": { - "eyes": {"x": 28.91, "y": 19, "width": 268, "height": 121, "path": "japan-02.eyes"}, - "eyes-angry": {"x": 28.91, "y": 21.5, "width": 268, "height": 126, "path": "japan-02.eyes-angry"}, - "eyes-happy": {"x": 25.91, "y": 22, "width": 270, "height": 115, "path": "japan-02.eyes-happy"}, - "eyes-shut": {"x": 28.91, "y": 19, "width": 268, "height": 121, "path": "japan-02.eyes-shut"} + "eyes": {"x": 30.39705882352942, "y": 19.593529411764703, "width": 284.70588235294116, "height": 122.3529411764706, "path": "aquatic-08.eyes"}, + "eyes-angry": {"x": 30.39705882352942, "y": 14.299411764705884, "width": 284.70588235294116, "height": 112.94117647058823, "path": "aquatic-08.eyes-angry"}, + "eyes-happy": {"x": 30.39705882352942, "y": 23.88764705882352, "width": 284.70588235294116, "height": 131.76470588235296, "path": "aquatic-08.eyes-happy"}, + "eyes-shut": {"x": 30.39705882352942, "y": 19.593529411764703, "width": 284.70588235294116, "height": 122.3529411764706, "path": "aquatic-08.eyes-shut"} }, - "horn": {"horn": {"x": 133, "y": -1.91, "rotation": -90, "width": 286, "height": 287, "path": "japan-02.horn"}}, + "horn": {"horn": {"x": 82.50529411764704, "y": -0.25, "rotation": -90, "width": 263.5294117647059, "height": 200.0, "path": "aquatic-08.horn"}}, "mouth": { - "mouth": {"x": -45.09, "y": 53.5, "width": 320, "height": 88, "path": "japan-02.mouth"}, - "mouth-bite": {"x": -39.59, "y": 36, "width": 317, "height": 89, "path": "japan-02.mouth-bite"}, - "mouth-open": {"x": -29.59, "y": 15.5, "width": 289, "height": 140, "path": "japan-02.mouth-open"}, - "mouth-smile": {"x": -45.59, "y": 75.5, "width": 337, "height": 132, "path": "japan-02.mouth-smile"} + "mouth": {"x": 44.69117647058823, "y": 40.94647058823529, "width": 174.11764705882354, "height": 157.64705882352942, "path": "aquatic-08.mouth"}, + "mouth-bite": {"x": 36.80882352941177, "y": 37.94647058823529, "width": 225.88235294117646, "height": 157.64705882352942, "path": "aquatic-08.mouth-bite"}, + "mouth-open": {"x": 42.80882352941177, "y": 8.064117647058826, "width": 185.88235294117646, "height": 169.41176470588235, "path": "aquatic-08.mouth-open"}, + "mouth-smile": {"x": 18.632352941176464, "y": 35.94647058823529, "width": 228.23529411764707, "height": 157.64705882352942, "path": "aquatic-08.mouth-smile"} }, - "tail": {"tail": {"x": 124.48, "y": -4.08, "rotation": 12, "width": 308, "height": 237, "path": "japan-02.tail"}} + "tail": {"tail": {"x": 89.35882352941177, "y": 9.911764705882348, "rotation": 5, "width": 265.88235294117646, "height": 221.1764705882353, "path": "aquatic-08.tail"}} } } ], @@ -2341,63 +2429,130 @@ "activity/victory-pose-back-flip": "2227634241" } }, - "bug-10": { + "body-summer": { "bones": [ {"name": "@root"}, {"name": "@pivot-main", "parent": "@root"}, {"name": "@pivot-back", "parent": "@pivot-main", "x": 205, "y": 180, "color": "ff0101ff"}, {"name": "@pivot-center", "parent": "@pivot-back", "x": -215.11, "y": -5.25, "color": "ff0101ff"}, {"name": "@axie", "parent": "@pivot-center", "length": 213.28, "rotation": 179.04, "x": 196.39, "y": 5.16}, {"name": "@back", "parent": "@axie", "rotation": -179.04, "x": 37.63, "y": -198.19}, - {"name": "back", "parent": "@back", "length": 149.41, "rotation": 58, "x": -87.97, "y": 69.3, "transform": "noScale"}, {"name": "@body", "parent": "@axie", "length": 226.28, "rotation": -8.35, "x": 224.58, "y": -0.53}, {"name": "@ear-left", "parent": "@axie", "rotation": -179.04, "x": 112.7, "y": -203.23}, - {"name": "ear-left", "parent": "@ear-left", "length": 113.61, "rotation": 55, "x": -8, "y": 3, "transform": "noScale"}, - {"name": "@ear-right", "parent": "@axie", "rotation": -179.04, "x": 405.28, "y": -235.33}, - {"name": "ear-right", "parent": "@ear-right", "length": 119.39, "rotation": 120, "x": -11, "y": -35, "transform": "noScale"}, - {"name": "@eyes", "parent": "@axie", "rotation": -179.04, "x": 384.24, "y": -113.67}, {"name": "@horn", "parent": "@axie", "rotation": -179.04, "x": 327.92, "y": -214.63}, - {"name": "horn", "parent": "@horn", "length": 176.72, "rotation": 90, "y": 18, "transform": "noScale"}, + {"name": "@ear-right", "parent": "@axie", "rotation": -179.04, "x": 405.28, "y": -235.33}, {"name": "@eyes", "parent": "@axie", "rotation": -179.04, "x": 384.24, "y": -113.67}, + {"name": "@horn", "parent": "@axie", "rotation": -179.04, "x": 327.92, "y": -214.63}, {"name": "@leg-back-left", "parent": "@axie", "length": 76.4, "rotation": 100.96, "x": -15.3, "y": 102.56, "transform": "noScale"}, {"name": "@leg-front-left", "parent": "@axie", "length": 51.19, "rotation": 93.86, "x": 134.77, "y": 149.55, "transform": "noScale"}, {"name": "@leg-front-right", "parent": "@axie", "length": 74.83, "rotation": 83.2, "x": 382.95, "y": 121.78, "transform": "noScale"}, - {"name": "@mouth", "parent": "@axie", "rotation": -179.04, "x": 382.23, "y": 6.31}, + {"name": "@mouth", "parent": "@axie", "rotation": -179.04, "x": 382.23, "y": 6.31, "color": "abe323ff"}, {"name": "body-pattern", "parent": "@body", "rotation": -170.69, "x": -267.21, "y": -49.4, "transform": "noScale"}, {"name": "@shadow", "parent": "@root", "color": "e6d713ff"}, - {"name": "@tail", "parent": "@axie", "rotation": -179.04, "x": -11.76, "y": 61.72}, - {"name": "tail", "parent": "@tail", "length": 203.67, "rotation": -20, "x": -12, "y": 15, "transform": "noScale"}, - {"name": "leg-front-right-IK", "parent": "@pivot-main", "x": -195.99, "y": -10.21, "color": "ff3f00ff"}, + {"name": "@tail", "parent": "@axie", "rotation": -179.04, "x": -11.76, "y": 61.72}, {"name": "leg-front-right-IK", "parent": "@pivot-main", "x": -195.99, "y": -10.21, "color": "ff3f00ff"}, {"name": "leg-front-left-IK", "parent": "@pivot-main", "x": 42.3, "y": -18.42, "color": "ff3f00ff"}, {"name": "leg-back-left-IK", "parent": "@pivot-main", "x": 208.57, "y": 1.35, "color": "ff3f00ff"}, {"name": "@ball", "parent": "@root", "y": 191, "color": "f3981bff"}, - {"name": "ball", "parent": "@ball", "y": -191, "color": "f4a729ff"} + {"name": "ball", "parent": "@ball", "y": -191, "color": "f4a729ff"}, {"name": "@body-neck", "parent": "@pivot-center", "x": -161.89, "y": -53.75, "color": "ff0101ff"}, + {"name": "@body-ground", "parent": "@pivot-main", "x": 220, "transform": "noRotationOrReflection", "color": "ff0101ff"}, + {"name": "@body-hip", "parent": "@pivot-center", "x": 240.11, "y": 55.25, "color": "ff0101ff"}, + {"name": "@body-air", "parent": "@pivot-back", "x": 63, "y": 365, "transform": "noRotationOrReflection", "color": "ff0101ff"}, + {"name": "@body-cheek", "parent": "@pivot-center", "x": 15.11, "y": 47.25, "color": "ff0101ff"} ], "slots": [ - {"name": "shadow", "bone": "@shadow", "attachment": "shadow"}, {"name": "ball", "bone": "ball"}, {"name": "leg-front-right", "bone": "@leg-front-right", "attachment": "leg-front-right"}, - {"name": "ear-right", "bone": "ear-right", "attachment": "ear-right"}, {"name": "tail", "bone": "tail", "attachment": "tail"}, {"name": "back", "bone": "back", "attachment": "back"}, - {"name": "leg-back-left", "bone": "@leg-back-left", "attachment": "leg-back-left"}, {"name": "body", "bone": "@body", "attachment": "body"}, {"name": "body-pattern", "bone": "body-pattern"}, - {"name": "leg-front-left", "bone": "@leg-front-left", "attachment": "leg-front-left"}, {"name": "eyes", "bone": "@eyes", "attachment": "eyes"}, - {"name": "mouth", "bone": "@mouth", "attachment": "mouth"}, {"name": "ear-left", "bone": "ear-left", "attachment": "ear-left"}, {"name": "horn", "bone": "horn", "attachment": "horn"} + {"name": "shadow", "bone": "@shadow", "attachment": "shadow"}, {"name": "ball", "bone": "ball"}, + {"name": "leg-front-right", "bone": "@leg-front-right", "attachment": "summer-leg-front-right"}, {"name": "leg-back-left", "bone": "@leg-back-left", "attachment": "summer-leg-back-left"}, + {"name": "body", "bone": "@body", "attachment": "body"}, {"name": "body-pattern", "bone": "body-pattern"}, + {"name": "leg-front-left", "bone": "@leg-front-left", "attachment": "summer-leg-front-left"}, {"name": "body-hip", "bone": "@body-hip", "attachment": "body-hip"}, + {"name": "body-neck", "bone": "@body-neck", "attachment": "body-neck"}, {"name": "body-ground", "bone": "@body-ground", "attachment": "body-ground"}, + {"name": "body-air", "bone": "@body-air", "attachment": "body-air"}, {"name": "body-cheek", "bone": "@body-cheek", "attachment": "body-cheek"} ], "ik": [ - {"name": "leg-back-left-IK", "order": 2, "bones": ["@leg-back-left"], "target": "leg-back-left-IK"}, - {"name": "leg-front-left-IK", "order": 1, "bones": ["@leg-front-left"], "target": "leg-front-left-IK"}, + {"name": "leg-back-left-IK", "order": 3, "bones": ["@leg-back-left"], "target": "leg-back-left-IK"}, + {"name": "leg-front-left-IK", "order": 2, "bones": ["@leg-front-left"], "target": "leg-front-left-IK"}, {"name": "leg-front-right-IK", "bones": ["@leg-front-right"], "target": "leg-front-right-IK"} ], + "transform": [{"name": "@mouth", "order": 1, "bones": ["mouth-bubble"], "target": "@mouth", "x": -49.1, "y": 37.9, "rotateMix": 0, "translateMix": 0, "scaleMix": 0, "shearMix": 0}], "skins": [ { "name": "default", "attachments": { - "back": {"back": {"x": 100.2, "y": -38.65, "rotation": -58, "width": 367, "height": 260, "path": "bug-10.back"}}, - "ear-left": {"ear-left": {"x": 75.25, "y": 5.84, "rotation": -55, "width": 130, "height": 195, "path": "bug-10.ear-left"}}, - "ear-right": {"ear-right": {"x": 74.7, "y": -6.61, "rotation": -120, "width": 130, "height": 195, "path": "bug-10.ear-right"}}, - "eyes": { - "eyes": {"x": 49.88, "y": 29.99, "width": 327, "height": 121, "path": "bug-10.eyes"}, - "eyes-angry": {"x": 49.88, "y": 29.99, "width": 327, "height": 121, "path": "bug-10.eyes-angry"}, - "eyes-happy": {"x": 49.88, "y": 29.99, "width": 327, "height": 121, "path": "bug-10.eyes-happy"}, - "eyes-shut": {"x": 49.88, "y": 29.99, "width": 327, "height": 121, "path": "bug-10.eyes-shut"} + "ball": {"ball": {"y": 186.0, "width": 392.94117647058823, "height": 400.0, "path": "body-normal.ball", "x": 0.029411764705884025}}, + "body": {"body": {"x": -0.4670588235294486, "y": -73.14117647058823, "rotation": -170.69, "width": 675.2941176470589, "height": 505.88235294117646, "path": "body-summer.body"}}, + "leg-back-left": { + "summer-leg-back-left": { + "x": 32.73647058823529, "y": -0.682352941176471, "rotation": 83.45, "width": 77.64705882352942, "height": 91.76470588235294, "path": "body-normal.summer-leg-back-left" + }, + "summer-leg-back-left-long": {"x": 35.2135294117647, "y": -5.5, "rotation": 221.45, "width": 82.3529411764706, "height": 80.0, "path": "body-normal.summer-leg-back-left-long"}, + "summer-leg-back-left-stretch": { + "x": 28.025294117647057, "y": 2.638823529411761, "rotation": 54.45, "width": 63.529411764705884, "height": 65.88235294117648, "path": "body-normal.summer-leg-back-left-stretch" + } }, - "horn": {"horn": {"x": 119.99, "y": 15.12, "rotation": -90, "width": 141, "height": 203, "path": "bug-10.horn"}}, - "mouth": { - "mouth": {"x": 14.88, "y": 54.49, "width": 135, "height": 74, "path": "bug-10.mouth"}, - "mouth-bite": {"x": 13.88, "y": 59.49, "width": 133, "height": 66, "path": "bug-10.mouth-bite"}, - "mouth-open": {"x": 15.38, "y": 47.99, "width": 178, "height": 109, "path": "bug-10.mouth-open"}, - "mouth-smile": {"x": 19.38, "y": 56.49, "width": 228, "height": 68, "path": "bug-10.mouth-smile"} + "leg-front-left": { + "summer-leg-front-left": { + "x": 22.86235294117647, "y": 2.2682352941176447, "rotation": 97.51, "width": 68.23529411764706, "height": 58.82352941176471, "path": "body-normal.summer-leg-front-left" + }, + "summer-leg-front-left-long": { + "x": 28.627058823529413, "y": -5.010588235294116, "rotation": -173.75, "width": 84.70588235294117, "height": 72.94117647058823, "path": "body-normal.summer-leg-front-left-long" + }, + "summer-leg-front-left-stretch": { + "x": 20.29882352941176, "y": -2.930588235294116, "rotation": 142.15, "width": 65.88235294117648, "height": 72.94117647058823, "path": "body-normal.summer-leg-front-left-stretch" + } + }, + "leg-front-right": { + "summer-leg-front-right": { + "x": 31.52647058823529, "y": -1.542352941176471, "rotation": 87.96, "width": 77.64705882352942, "height": 91.76470588235294, "path": "body-normal.summer-leg-front-right" + }, + "summer-leg-front-right-long": { + "x": 37.53058823529412, "y": 0.20294117647058696, "rotation": 205.96, "width": 87.05882352941177, "height": 75.29411764705883, "path": "body-normal.summer-leg-front-right-long" + }, + "summer-leg-front-right-stretch": { + "x": 31.32647058823529, "y": 2.368823529411761, "rotation": 142.01, "width": 77.64705882352942, "height": 65.88235294117648, "path": "body-normal.summer-leg-front-right-stretch" + } + }, + "shadow": {"shadow": {"width": 501.1764705882353, "height": 94.11764705882354, "path": "body-summer.shadow", "x": 0.9117647058823479, "y": 0.44117647058823195}}, + "body-air": { + "body-air1a_00": {"x": 1.37, "y": 35.21, "width": 209.41176470588235, "height": 129.41176470588235, "path": "body-accessory.body-air1a_00"}, + "body-air1a_01": {"x": 1.37, "y": 35.21, "width": 209.41176470588235, "height": 129.41176470588235, "path": "body-accessory.body-air1a_01"}, + "body-air1a_02": {"x": 1.37, "y": 35.21, "width": 209.41176470588235, "height": 129.41176470588235, "path": "body-accessory.body-air1a_02"}, + "body-air1a_03": {"x": 1.37, "y": 35.21, "width": 209.41176470588235, "height": 129.41176470588235, "path": "body-accessory.body-air1a_03"}, + "body-air1a_04": {"x": 1.37, "y": 35.21, "width": 209.41176470588235, "height": 129.41176470588235, "path": "body-accessory.body-air1a_04"}, + "body-air1a_05": {"x": 1.37, "y": 35.21, "width": 209.41176470588235, "height": 129.41176470588235, "path": "body-accessory.body-air1a_05"}, + "body-air1a_06": {"x": 1.37, "y": 35.21, "width": 209.41176470588235, "height": 129.41176470588235, "path": "body-accessory.body-air1a_06"}, + "body-air1a_07": {"x": 1.37, "y": 35.21, "width": 209.41176470588235, "height": 129.41176470588235, "path": "body-accessory.body-air1a_07"}, + "body-air1b_00": {"x": 1.37, "y": 35.21, "width": 155.29411764705884, "height": 192.94117647058823, "path": "body-accessory.body-air1b_00"}, + "body-air1b_01": {"x": 1.37, "y": 35.21, "width": 155.29411764705884, "height": 192.94117647058823, "path": "body-accessory.body-air1b_01"}, + "body-air1b_02": {"x": 1.37, "y": 35.21, "width": 155.29411764705884, "height": 192.94117647058823, "path": "body-accessory.body-air1b_02"}, + "body-air1c_00": {"x": 1.37, "y": 35.21, "width": 200.0, "height": 289.4117647058824, "path": "body-accessory.body-air1c_00"}, + "body-air1c_01": {"x": 1.37, "y": 35.21, "width": 200.0, "height": 289.4117647058824, "path": "body-accessory.body-air1c_01"}, + "body-air1c_02": {"x": 1.37, "y": 35.21, "width": 200.0, "height": 289.4117647058824, "path": "body-accessory.body-air1c_02"}, + "body-air1c_03": {"x": 1.37, "y": 35.21, "width": 200.0, "height": 289.4117647058824, "path": "body-accessory.body-air1c_03"}, + "body-air1d_00": {"x": 1.37, "y": 35.21, "width": 204.7058823529412, "height": 272.94117647058823, "path": "body-accessory.body-air1d_00"}, + "body-air1d_01": {"x": 1.37, "y": 35.21, "width": 204.7058823529412, "height": 272.94117647058823, "path": "body-accessory.body-air1d_01"}, + "body-air1d_02": {"x": 1.37, "y": 35.21, "width": 204.7058823529412, "height": 272.94117647058823, "path": "body-accessory.body-air1d_02"}, + "body-air1d_03": {"x": 1.37, "y": 35.21, "width": 204.7058823529412, "height": 272.94117647058823, "path": "body-accessory.body-air1d_03"} + }, + "body-cheek": { + "body-cheek1a": {"x": 1.52, "y": 3.04, "width": 58.82352941176471, "height": 58.82352941176471, "path": "body-accessory.body-cheek1a"}, + "body-cheek1b": {"x": 1.52, "y": 3.04, "width": 49.411764705882355, "height": 77.64705882352942, "path": "body-accessory.body-cheek1b"}, + "body-cheek1c": {"x": 1.52, "y": 3.04, "width": 49.411764705882355, "height": 77.64705882352942, "path": "body-accessory.body-cheek1c"}, + "body-cheek1d": {"x": 1.52, "y": 3.04, "width": 49.411764705882355, "height": 75.29411764705883, "path": "body-accessory.body-cheek1d"}, + "body-cheek1e": {"x": 1.52, "y": 3.04, "width": 54.11764705882353, "height": 80.0, "path": "body-accessory.body-cheek1e"}, + "body-cheek1f": {"x": 1.52, "y": 3.04, "width": 56.470588235294116, "height": 58.82352941176471, "path": "body-accessory.body-cheek1f"}, + "body-cheek1g": {"x": 1.52, "y": 3.04, "width": 103.52941176470588, "height": 96.47058823529412, "path": "body-accessory.body-cheek1g"} + }, + "body-ground": { + "body-ground1a_00": {"x": 4.75, "y": 123.01, "width": 254.11764705882354, "height": 272.94117647058823, "path": "body-accessory.body-ground1a_00"}, + "body-ground1a_01": {"x": 4.75, "y": 123.01, "width": 254.11764705882354, "height": 272.94117647058823, "path": "body-accessory.body-ground1a_01"}, + "body-ground1a_02": {"x": 4.75, "y": 123.01, "width": 254.11764705882354, "height": 272.94117647058823, "path": "body-accessory.body-ground1a_02"}, + "body-ground1a_03": {"x": 4.75, "y": 123.01, "width": 254.11764705882354, "height": 272.94117647058823, "path": "body-accessory.body-ground1a_03"} + }, + "body-hip": { + "body-hip1a": {"x": -16.0, "width": 108.23529411764706, "height": 138.8235294117647, "path": "body-accessory.body-hip1a", "y": 0.0}, + "body-hip1b": {"x": -16.0, "width": 209.41176470588235, "height": 214.11764705882354, "path": "body-accessory.body-hip1b", "y": 0.0}, + "body-hip1c": {"x": -16.0, "width": 122.3529411764706, "height": 157.64705882352942, "path": "body-accessory.body-hip1c", "y": 0.0}, + "body-hip1d": {"x": -16.0, "width": 202.35294117647058, "height": 143.52941176470588, "path": "body-accessory.body-hip1d", "y": 0.0} }, - "tail": {"tail": {"x": 81.05, "y": 16.72, "rotation": 20, "width": 233, "height": 201, "path": "bug-10.tail"}} + "body-neck": { + "body-neck1a": {"x": -5.4, "y": -54.79, "width": 91.76470588235294, "height": 96.47058823529412, "path": "body-accessory.body-neck1a"}, + "body-neck1b": {"x": -5.4, "y": -54.79, "width": 103.52941176470588, "height": 117.64705882352942, "path": "body-accessory.body-neck1b"}, + "body-neck1c": {"x": -5.4, "y": -54.79, "width": 80.0, "height": 110.58823529411765, "path": "body-accessory.body-neck1c"}, + "body-neck1d": {"x": -5.4, "y": -54.79, "width": 122.3529411764706, "height": 101.17647058823529, "path": "body-accessory.body-neck1d"}, + "body-neck1e": {"x": -5.4, "y": -54.79, "width": 89.41176470588236, "height": 105.88235294117648, "path": "body-accessory.body-neck1e"}, + "body-neck1f": {"x": -5.4, "y": -54.79, "width": 80.0, "height": 80.0, "path": "body-accessory.body-neck1f"} + } } } ], @@ -2409,12 +2564,14 @@ "attack/ranged/cast-high": "164191126", "attack/ranged/cast-low": "198813017", "attack/ranged/cast-multi": "151119", - "attack/ranged/cast-tail": "997902532", + "attack/ranged/cast-tail": "3850719809", + "action/mix/ear-animation": "4086061935", "activity/eat-bite": "1137807767", "activity/eat-chew": "1988236421", "activity/entrance": "3768378365", "defense/evade": "1735454995", "activity/evolve": "649307630", + "action/mix/eyes-animation": "3799301307", "battle/get-buff": "1455190363", "battle/get-debuff": "606904312", "defense/hit-by-normal": "2045974966", @@ -2426,17 +2583,18 @@ "attack/melee/mouth-bite": "2237748264", "action/move-back": "3766271173", "action/move-forward": "2945160014", - "attack/melee/multi-attack": "905926802", - "action/idle/normal": "1659336865", + "attack/melee/multi-attack": "3774600630", + "action/idle/normal": "3178494426", "attack/melee/normal-attack": "3305373483", + "action/mix/normal-mouth-animation": "1178295570", "activity/prepare": "405864717", "action/idle/random-01": "554401889", - "action/idle/random-02": "1085666627", + "action/idle/random-02": "3634120758", "action/idle/random-03": "2021333900", "action/idle/random-04": "1003789695", "action/idle/random-05": "2745614147", - "action/run": "1438840721", - "draft/run-origin": "3577885069", + "action/run": "3942433225", + "draft/run-origin": "237238075", "attack/melee/shrimp": "3833448733", "activity/sleep": "100562494", "attack/melee/tail-multi-slap": "3317139533", @@ -2446,16 +2604,16 @@ "activity/victory-pose-back-flip": "2227634241" } }, - "bug-04": { + "bird-04": { "bones": [ {"name": "@root"}, {"name": "@pivot-main", "parent": "@root"}, {"name": "@pivot-back", "parent": "@pivot-main", "x": 205, "y": 180, "color": "ff0101ff"}, {"name": "@pivot-center", "parent": "@pivot-back", "x": -215.11, "y": -5.25, "color": "ff0101ff"}, {"name": "@axie", "parent": "@pivot-center", "length": 213.28, "rotation": 179.04, "x": 196.39, "y": 5.16}, {"name": "@back", "parent": "@axie", "rotation": -179.04, "x": 37.63, "y": -198.19}, - {"name": "back", "parent": "@back", "length": 149.41, "rotation": 58, "x": -71.97, "y": -6.7, "transform": "noScale"}, + {"name": "back", "parent": "@back", "length": 149.41, "rotation": 73, "x": -139.97, "y": 11.3, "transform": "noScale"}, {"name": "@body", "parent": "@axie", "length": 226.28, "rotation": -8.35, "x": 224.58, "y": -0.53}, {"name": "@ear-left", "parent": "@axie", "rotation": -179.04, "x": 112.7, "y": -203.23}, - {"name": "ear-left", "parent": "@ear-left", "length": 113.61, "rotation": 90, "x": -27, "y": 19, "transform": "noScale"}, + {"name": "ear-left", "parent": "@ear-left", "length": 113.61, "rotation": 10, "x": 5, "y": -45, "transform": "noScale"}, {"name": "@ear-right", "parent": "@axie", "rotation": -179.04, "x": 405.28, "y": -235.33}, - {"name": "ear-right", "parent": "@ear-right", "length": 119.39, "rotation": 132, "x": -17, "y": -40, "transform": "noScale"}, + {"name": "ear-right", "parent": "@ear-right", "length": 119.39, "rotation": 132, "x": -87, "y": -93, "transform": "noScale"}, {"name": "@eyes", "parent": "@axie", "rotation": -179.04, "x": 384.24, "y": -113.67}, {"name": "@horn", "parent": "@axie", "rotation": -179.04, "x": 327.92, "y": -214.63}, {"name": "horn", "parent": "@horn", "length": 176.72, "rotation": 90, "y": 18, "transform": "noScale"}, {"name": "@leg-back-left", "parent": "@axie", "length": 76.4, "rotation": 100.96, "x": -15.3, "y": 102.56, "transform": "noScale"}, @@ -2464,7 +2622,7 @@ {"name": "@mouth", "parent": "@axie", "rotation": -179.04, "x": 382.23, "y": 6.31}, {"name": "body-pattern", "parent": "@body", "rotation": -170.69, "x": -267.21, "y": -49.4, "transform": "noScale"}, {"name": "@shadow", "parent": "@root", "color": "e6d713ff"}, {"name": "@tail", "parent": "@axie", "rotation": -179.04, "x": -11.76, "y": 61.72}, - {"name": "tail", "parent": "@tail", "length": 203.67, "rotation": 36, "x": 16, "y": -13, "transform": "noScale"}, + {"name": "tail", "parent": "@tail", "length": 203.67, "rotation": 21, "x": 16, "y": 34, "transform": "noScale"}, {"name": "leg-front-right-IK", "parent": "@pivot-main", "x": -195.99, "y": -10.21, "color": "ff3f00ff"}, {"name": "leg-front-left-IK", "parent": "@pivot-main", "x": 42.3, "y": -18.42, "color": "ff3f00ff"}, {"name": "leg-back-left-IK", "parent": "@pivot-main", "x": 208.57, "y": 1.35, "color": "ff3f00ff"}, {"name": "@ball", "parent": "@root", "y": 191, "color": "f3981bff"}, @@ -2486,23 +2644,23 @@ { "name": "default", "attachments": { - "back": {"back": {"x": 115.06, "y": 30.77, "rotation": -58, "width": 289, "height": 246, "path": "bug-04.back"}}, - "ear-left": {"ear-left": {"x": 2.88, "y": -62.87, "rotation": -90, "width": 117, "height": 134, "path": "bug-04.ear-left"}}, - "ear-right": {"ear-right": {"x": 42.07, "y": 8.04, "rotation": -132, "width": 117, "height": 134, "path": "bug-04.ear-right"}}, + "back": {"back": {"x": 153.08176470588234, "y": -24.902352941176463, "rotation": -73, "width": 341.1764705882353, "height": 291.7647058823529, "path": "bird-04.back"}}, + "ear-left": {"ear-left": {"x": 28.3835294117647, "y": 6.34, "rotation": -10, "width": 122.3529411764706, "height": 160.0, "path": "bird-04.ear-left"}}, + "ear-right": {"ear-right": {"x": 20.241176470588233, "y": -6.45, "rotation": -132, "width": 94.11764705882354, "height": 160.0, "path": "bird-04.ear-right"}}, "eyes": { - "eyes": {"x": 44.37, "y": 21.38, "width": 370, "height": 137, "path": "bug-04.eyes"}, - "eyes-angry": {"x": 44.37, "y": 21.38, "width": 370, "height": 137, "path": "bug-04.eyes-angry"}, - "eyes-happy": {"x": 44.37, "y": 21.38, "width": 370, "height": 137, "path": "bug-04.eyes-happy"}, - "eyes-shut": {"x": 44.37, "y": 21.38, "width": 370, "height": 137, "path": "bug-04.eyes-shut"} + "eyes": {"x": 25.098823529411767, "y": 32.677058823529414, "width": 185.88235294117646, "height": 124.70588235294117, "path": "bird-04.eyes"}, + "eyes-angry": {"x": 25.510588235294115, "y": 25.088823529411762, "width": 207.05882352941177, "height": 105.88235294117648, "path": "bird-04.eyes-angry"}, + "eyes-happy": {"x": 25.098823529411767, "y": 49.91235294117647, "width": 185.88235294117646, "height": 108.23529411764706, "path": "bird-04.eyes-happy"}, + "eyes-shut": {"x": 22.451764705882347, "y": 43.26529411764706, "width": 181.1764705882353, "height": 103.52941176470588, "path": "bird-04.eyes-shut"} }, - "horn": {"horn": {"x": 98.38, "y": 47.63, "rotation": -90, "width": 296, "height": 201, "path": "bug-04.horn"}}, + "horn": {"horn": {"x": 105.53, "y": -29.010588235294115, "rotation": -90, "width": 200.0, "height": 232.94117647058823, "path": "bird-04.horn"}}, "mouth": { - "mouth": {"x": 6.37, "y": 54.38, "width": 172, "height": 59, "path": "bug-04.mouth"}, - "mouth-bite": {"x": 6.87, "y": 50.38, "width": 149, "height": 69, "path": "bug-04.mouth-bite"}, - "mouth-open": {"x": 12.87, "y": 32.38, "width": 237, "height": 133, "path": "bug-04.mouth-open"}, - "mouth-smile": {"x": 5.37, "y": 51.88, "width": 172, "height": 118, "path": "bug-04.mouth-smile"} + "mouth": {"x": 3.804705882352942, "y": 68.67705882352942, "width": 96.47058823529412, "height": 124.70588235294117, "path": "bird-04.mouth"}, + "mouth-bite": {"x": 15.981176470588231, "y": 65.14764705882352, "width": 134.11764705882354, "height": 131.76470588235296, "path": "bird-04.mouth-bite"}, + "mouth-open": {"x": 10.157647058823528, "y": 58.67705882352941, "width": 91.76470588235294, "height": 164.7058823529412, "path": "bird-04.mouth-open"}, + "mouth-smile": {"x": 6.628235294117645, "y": 68.67705882352942, "width": 98.82352941176471, "height": 124.70588235294117, "path": "bird-04.mouth-smile"} }, - "tail": {"tail": {"x": 138.45, "y": -0.62, "rotation": -36, "width": 318, "height": 204, "path": "bug-04.tail"}} + "tail": {"tail": {"x": 97.17470588235292, "y": -13.28705882352942, "rotation": -21, "width": 256.47058823529414, "height": 195.29411764705884, "path": "bird-04.tail"}} } } ], @@ -2551,48 +2709,37 @@ "activity/victory-pose-back-flip": "2227634241" } }, - "body-bigyak": { + "xmas-01": { "bones": [ - {"name": "@root"}, {"name": "@pivot-main", "parent": "@root"}, {"name": "@pivot-back", "parent": "@pivot-main", "x": 232, "y": 264.98, "color": "ff0101ff"}, - {"name": "@pivot-center", "parent": "@pivot-back", "x": -243, "y": -5.25, "color": "ff0101ff"}, - {"name": "@axie", "parent": "@pivot-center", "length": 213.28, "rotation": 179.04, "x": 224.28, "y": 5.16}, {"name": "@back", "parent": "@axie", "rotation": -179.04, "x": 65.65, "y": -260.05}, - {"name": "@body", "parent": "@axie", "length": 226.28, "rotation": -8.35, "x": 224.58, "y": -0.53}, {"name": "@ear-left", "parent": "@axie", "rotation": -179.04, "x": 133.95, "y": -217.9}, - {"name": "@ear-right", "parent": "@axie", "rotation": -179.04, "x": 497.52, "y": -248.81}, {"name": "@eyes", "parent": "@axie", "rotation": -179.04, "x": 423.48, "y": -128.03}, - {"name": "@horn", "parent": "@axie", "rotation": -179.04, "x": 377.17, "y": -228.83}, - {"name": "@leg-back-left", "parent": "@axie", "length": 82.39, "rotation": 99.1, "x": -7.41, "y": 183.62, "transform": "noScale"}, - {"name": "@leg-front-left", "parent": "@axie", "length": 87.35, "rotation": 89.4, "x": 146.09, "y": 187.6, "transform": "noScale"}, - {"name": "@leg-front-right", "parent": "@axie", "length": 90.99, "rotation": 75.06, "x": 455.08, "y": 185.83, "transform": "noScale"}, - {"name": "@mouth", "parent": "@axie", "rotation": -179.04, "x": 421.46, "y": -8.05}, - {"name": "body-pattern", "parent": "@body", "rotation": -170.69, "x": -287.64, "y": -107.32, "transform": "noScale"}, {"name": "@shadow", "parent": "@root", "color": "e6d713ff"}, - {"name": "@tail", "parent": "@axie", "rotation": -179.04, "x": -73.63, "y": 113.67}, - {"name": "leg-front-right-IK", "parent": "@pivot-main", "x": -263.59, "y": -3.12, "transform": "noScale", "color": "ff3f00ff"}, - {"name": "leg-front-left-IK", "parent": "@pivot-main", "x": 73.81, "y": -7.07, "transform": "noScale", "color": "ff3f00ff"}, - {"name": "leg-back-left-IK", "parent": "@pivot-main", "x": 246.97, "y": 2.5, "transform": "noScale", "color": "ff3f00ff"}, {"name": "@ball", "parent": "@root", "y": 191, "color": "f3981bff"}, - {"name": "ball", "parent": "@ball", "y": -191, "color": "f4a729ff"}, - {"name": "@body5", "parent": "@body", "length": 232.03, "rotation": 128.83, "x": -109.81, "y": -267.24, "color": "b82cddff"}, - {"name": "body-braid2", "parent": "@body5", "length": 73.46, "rotation": -19.45, "x": 172.03, "y": -68.52, "color": "ff6fd9ff"}, - {"name": "body-braid3", "parent": "body-braid2", "length": 68.84, "rotation": 3.21, "x": 73.46, "color": "ff6fd9ff"}, - {"name": "body-braid4", "parent": "body-braid3", "length": 88, "rotation": 14.3, "x": 68.84, "color": "ff6fd9ff"}, - {"name": "body-braid", "parent": "@body5", "length": 75.4, "rotation": -23.86, "x": 218.25, "y": 58.36, "color": "ff6fd9ff"}, - {"name": "body-braid5", "parent": "body-braid", "length": 63.5, "rotation": 6.01, "x": 75.4, "color": "ff6fd9ff"}, - {"name": "body-braid6", "parent": "body-braid5", "length": 94.52, "rotation": 22.01, "x": 63.5, "color": "ff6fd9ff"}, - {"name": "@body2", "parent": "@body", "length": 221.53, "rotation": 88.49, "x": 310.71, "y": 44.29, "color": "b82cddff"}, - {"name": "@body3", "parent": "@body", "length": 228, "rotation": 103.82, "x": 122.81, "y": 35.41, "color": "b82cddff"}, - {"name": "@body4", "parent": "@body", "length": 237.61, "rotation": 109.26, "x": -85.84, "y": -13.63, "color": "b82cddff"}, - {"name": "@face", "parent": "@body", "length": 282.07, "rotation": -80.81, "x": 166.36, "y": 1.06, "color": "6b0e8eff"}, - {"name": "@body6", "parent": "@body5", "length": 249.43, "rotation": -20.36, "x": 239.65, "y": -3.56, "color": "b82cddff"}, - {"name": "@body-neck", "parent": "@pivot-center", "x": -161.89, "y": -53.75, "color": "ff0101ff"}, - {"name": "@body-ground", "parent": "@pivot-main", "x": 220, "transform": "noRotationOrReflection", "color": "ff0101ff"}, - {"name": "@body-air", "parent": "@pivot-back", "x": 63, "y": 365, "transform": "noRotationOrReflection", "color": "ff0101ff"}, - {"name": "@body-cheek", "parent": "@pivot-center", "x": 15.11, "y": 47.25, "color": "ff0101ff"} + {"name": "@root"}, {"name": "@pivot-main", "parent": "@root"}, {"name": "@pivot-back", "parent": "@pivot-main", "x": 205, "y": 180, "color": "ff0101ff"}, + {"name": "@pivot-center", "parent": "@pivot-back", "x": -215.11, "y": -5.25, "color": "ff0101ff"}, + {"name": "@axie", "parent": "@pivot-center", "length": 213.28, "rotation": 179.04, "x": 196.39, "y": 5.16}, {"name": "@back", "parent": "@axie", "rotation": -179.04, "x": 37.63, "y": -198.19}, + {"name": "back", "parent": "@back", "length": 149.41, "rotation": 80, "x": -71.97, "y": 39.3, "transform": "noScale"}, + {"name": "@body", "parent": "@axie", "length": 226.28, "rotation": -8.35, "x": 224.58, "y": -0.53}, {"name": "@ear-left", "parent": "@axie", "rotation": -179.04, "x": 112.7, "y": -203.23}, + {"name": "body-pattern", "parent": "@body", "rotation": -170.69, "x": -267.21, "y": -49.4, "transform": "noScale"}, + {"name": "ear-left", "parent": "@ear-left", "length": 113.61, "rotation": -60, "x": 23, "y": -29, "transform": "noScale"}, + {"name": "@ear-right", "parent": "@axie", "rotation": -179.04, "x": 405.28, "y": -235.33}, + {"name": "ear-right", "parent": "@ear-right", "length": 119.39, "rotation": -122, "x": -25, "y": -52, "transform": "noScale"}, + {"name": "@eyes", "parent": "@axie", "rotation": -179.04, "x": 384.24, "y": -113.67}, {"name": "@horn", "parent": "@axie", "rotation": -179.04, "x": 327.92, "y": -214.63}, + {"name": "horn", "parent": "@horn", "length": 176.72, "rotation": 90, "y": 18, "transform": "noScale"}, + {"name": "@leg-back-left", "parent": "@axie", "length": 76.33, "rotation": 97.07, "x": -15.3, "y": 102.56, "transform": "noScale"}, + {"name": "@leg-front-left", "parent": "@axie", "length": 68.35, "rotation": 83.02, "x": 135.05, "y": 132.6, "transform": "noScale"}, + {"name": "@leg-front-right", "parent": "@axie", "length": 70.32, "rotation": 92.53, "x": 382.95, "y": 121.78, "transform": "noScale"}, + {"name": "@mouth", "parent": "@axie", "rotation": -179.04, "x": 382.23, "y": 6.31}, {"name": "@shadow", "parent": "@root", "color": "e6d713ff"}, + {"name": "@tail", "parent": "@axie", "rotation": -179.04, "x": -11.76, "y": 61.72}, + {"name": "tail", "parent": "@tail", "length": 203.67, "rotation": -15, "x": 45, "y": 34, "transform": "noScale"}, + {"name": "leg-front-right-IK", "parent": "@pivot-main", "x": -195.99, "y": -10.21, "color": "ff3f00ff"}, + {"name": "leg-front-left-IK", "parent": "@pivot-main", "x": 42.3, "y": -18.42, "color": "ff3f00ff"}, + {"name": "leg-back-left-IK", "parent": "@pivot-main", "x": 208.57, "y": 1.35, "color": "ff3f00ff"}, {"name": "@ball", "parent": "@root", "y": 191, "color": "f3981bff"}, + {"name": "ball", "parent": "@ball", "y": -191, "color": "f4a729ff"} ], "slots": [ - {"name": "shadow", "bone": "@shadow", "attachment": "shadow"}, {"name": "ball", "bone": "ball"}, {"name": "leg-front-right", "bone": "@leg-front-right", "attachment": "sumo-leg-front-right"}, - {"name": "leg-back-left", "bone": "@leg-back-left", "attachment": "sumo-leg-back-left"}, {"name": "leg-front-left", "bone": "@leg-front-left", "attachment": "sumo-leg-front-left"}, - {"name": "body", "bone": "@body", "attachment": "body-bigyak"}, {"name": "body-pattern", "bone": "body-pattern"}, {"name": "body-braid", "bone": "body-braid", "attachment": "body-braid"}, - {"name": "body-braid2", "bone": "body-braid2", "attachment": "body-braid2"}, {"name": "body-neck", "bone": "@body-neck", "attachment": "body-neck"}, - {"name": "body-ground", "bone": "@body-ground", "attachment": "body-ground"}, {"name": "body-air", "bone": "@body-air", "attachment": "body-air"}, - {"name": "body-cheek", "bone": "@body-cheek", "attachment": "body-cheek"} + {"name": "shadow", "bone": "@shadow", "attachment": "shadow"}, {"name": "ball", "bone": "ball"}, {"name": "leg-front-right", "bone": "@leg-front-right", "attachment": "xmas-leg-front-right"}, + {"name": "ear-right", "bone": "ear-right", "attachment": "ear-right"}, {"name": "tail", "bone": "tail", "attachment": "tail"}, {"name": "back", "bone": "back", "attachment": "back"}, + {"name": "leg-front-left", "bone": "@leg-front-left", "attachment": "xmas-leg-front-left"}, {"name": "leg-back-left", "bone": "@leg-back-left", "attachment": "xmas-leg-back-left"}, + {"name": "body", "bone": "@body", "attachment": "body-xmas-01"}, {"name": "body-pattern", "bone": "body-pattern"}, {"name": "eyes", "bone": "@eyes", "attachment": "eyes"}, + {"name": "mouth", "bone": "@mouth", "attachment": "mouth"}, {"name": "horn", "bone": "horn", "attachment": "horn"}, {"name": "ear-left", "bone": "ear-left", "attachment": "ear-left"}, + {"name": "eyes-base", "bone": "@eyes", "attachment": "eyes-base"}, {"name": "eyes-glow", "bone": "@eyes"} ], "ik": [ {"name": "leg-back-left-IK", "order": 2, "bones": ["@leg-back-left"], "target": "leg-back-left-IK"}, @@ -2603,443 +2750,90 @@ { "name": "default", "attachments": { - "ball": {"ball": {"y": 191, "width": 393, "height": 390, "path": "body-normal.ball"}}, - "body": { - "body-bigyak": { - "type": "mesh", - "uvs": [ - 0.56514, 0.01755, 0.61336, 0.04368, 0.67817, 0.08299, 0.74298, 0.12541, 0.80115, 0.173, 0.86097, 0.22784, 0.89421, 0.31268, 0.91332, 0.37682, 0.9449, 0.44408, 0.98146, 0.50512, - 0.96318, 0.56823, 0.95902, 0.63031, 0.97065, 0.71101, 0.98229, 0.78757, 0.97647, 0.8631, 0.92911, 0.90035, 0.87427, 0.93759, 0.80197, 0.96139, 0.77254, 0.97055, 0.72481, 0.98514, - 0.66973, 0.97978, 0.63646, 0.96502, 0.58347, 0.97827, 0.53759, 0.9772, 0.51518, 0.97668, 0.45205, 0.97978, 0.39383, 0.9911, 0.3357, 0.98909, 0.23765, 0.98185, 0.16453, 0.97151, - 0.12033, 0.95399, 0.09141, 0.94254, 0.03574, 0.87942, 0, 0.82355, 0, 0.71906, 0, 0.61559, 0, 0.50903, 0.03586, 0.47615, 0.04999, 0.39027, 0.0932, 0.29302, 0.15303, 0.1937, 0.24775, - 0.08506, 0.28431, 0, 0.34995, 0, 0.53276, 0, 0.24474, 0.92924, 0.24823, 0.83911, 0.25259, 0.76744, 0.25782, 0.686, 0.25957, 0.57416, 0.26742, 0.49598, 0.18457, 0.50466, 0.1741, - 0.57416, 0.16538, 0.62737, 0.15579, 0.68275, 0.14445, 0.75767, 0.13137, 0.81957, 0.12614, 0.8858, 0.10957, 0.49163, 0.09823, 0.57416, 0.08689, 0.64257, 0.07033, 0.73052, 0.04416, - 0.83151, 0.39823, 0.92126, 0.39125, 0.83439, 0.38689, 0.76163, 0.38253, 0.67259, 0.3773, 0.6031, 0.33718, 0.55532, 0.33457, 0.67585, 0.33195, 0.78878, 0.33457, 0.89302, 0.33867, - 0.49069, 0.65287, 0.48738, 0.64503, 0.24849, 0.58049, 0.21809, 0.34462, 0.23188, 0.34187, 0.35151, 0.64802, 0.33951, 0.34025, 0.42209, 0.65005, 0.4013, 0.65674, 0.19, 0.6929, - 0.24198, 0.72692, 0.32125, 0.75482, 0.38205, 0.77924, 0.44503, 0.81848, 0.5319, 0.67197, 0.25066, 0.68942, 0.33102, 0.69901, 0.39943, 0.71296, 0.47218, 0.72604, 0.55145, 0.74, - 0.63832, 0.7461, 0.70456, 0.75221, 0.76211, 0.7618, 0.82943, 0.77052, 0.88916, 0.83593, 0.62689, 0.84465, 0.71376, 0.8525, 0.78326, 0.85947, 0.83429, 0.87059, 0.9119, 0.93011, - 0.81366, 0.92575, 0.72679, 0.91528, 0.63992, 0.90482, 0.57586, 0.89872, 0.52265, 0.88825, 0.46184, 0.85947, 0.39669, 0.82372, 0.33371, 0.78883, 0.27073, 0.75569, 0.22078, 0.71645, - 0.17843, 0.66662, 0.14066, 0.59802, 0.12508, 0.3866, 0.49019, 0.39447, 0.55555, 0.52352, 0.48875, 0.52441, 0.54795, 0.52616, 0.60767, 0.52877, 0.6978, 0.53139, 0.78467, 0.53313, - 0.86177, 0.5375, 0.92909, 0.47296, 0.92801, 0.47558, 0.85199, 0.47296, 0.7673, 0.46162, 0.69346, 0.45465, 0.61636, 0.44767, 0.55772, 0.44585, 0.48957, 0.59466, 0.488, 0.61124, - 0.57928, 0.6313, 0.67918, 0.64525, 0.76279, 0.6531, 0.85292, 0.66095, 0.94522, 0.58833, 0.40544, 0.58371, 0.34203, 0.12568, 0.39857, 0.15376, 0.30726, 0.20391, 0.20384, 0.20173, - 0.40691, 0.2194, 0.3227, 0.24537, 0.2121, 0.25882, 0.62234, 0.3359, 0.61431, 0.80029, 0.49163, 0.60387, 0.53869, 0.67305, 0.57514, 0.6852, 0.6594, 0.69648, 0.72962, 0.70516, 0.81173, - 0.7173, 0.9122, 0.58803, 0.17808, 0.52384, 0.2214 - ], - "triangles": [ - 18, 96, 17, 17, 101, 16, 17, 96, 101, 16, 101, 15, 96, 100, 101, 101, 100, 15, 15, 102, 14, 15, 100, 102, 96, 95, 100, 14, 102, 13, 95, 99, 100, 100, 99, 102, 95, 94, 99, 99, 103, - 102, 102, 103, 13, 103, 12, 13, 94, 98, 99, 99, 98, 103, 94, 93, 98, 98, 104, 103, 12, 104, 11, 12, 103, 104, 93, 97, 98, 98, 97, 104, 93, 92, 97, 97, 105, 104, 104, 105, 11, 92, 86, - 97, 11, 105, 10, 105, 97, 86, 105, 106, 10, 10, 106, 9, 105, 86, 106, 92, 91, 86, 91, 147, 86, 147, 90, 85, 147, 91, 90, 106, 86, 107, 86, 147, 107, 106, 8, 9, 106, 107, 8, 147, 108, - 107, 147, 85, 108, 90, 84, 85, 90, 89, 84, 107, 7, 8, 107, 108, 7, 85, 109, 108, 85, 84, 109, 89, 83, 84, 89, 88, 83, 108, 6, 7, 108, 109, 6, 84, 110, 109, 84, 83, 110, 109, 5, 6, - 109, 110, 5, 88, 82, 83, 88, 87, 82, 83, 111, 110, 83, 82, 111, 110, 4, 5, 110, 111, 4, 82, 112, 111, 4, 111, 3, 149, 91, 92, 20, 153, 19, 19, 153, 18, 21, 136, 20, 20, 136, 153, 21, - 22, 123, 24, 123, 23, 22, 23, 123, 153, 96, 18, 136, 21, 135, 21, 123, 135, 136, 135, 153, 123, 122, 135, 135, 152, 153, 153, 95, 96, 153, 152, 95, 122, 121, 135, 121, 134, 135, 135, - 134, 152, 152, 94, 95, 134, 151, 152, 152, 151, 94, 134, 120, 133, 134, 121, 120, 134, 133, 151, 151, 93, 94, 133, 150, 151, 151, 150, 93, 150, 92, 93, 120, 119, 133, 119, 132, 133, - 133, 149, 150, 133, 132, 149, 150, 149, 92, 132, 119, 118, 132, 148, 149, 26, 63, 25, 26, 27, 63, 28, 45, 27, 45, 71, 27, 27, 71, 63, 25, 124, 24, 25, 63, 124, 24, 124, 123, 45, 46, - 71, 124, 122, 123, 124, 125, 122, 124, 63, 125, 71, 64, 63, 63, 64, 125, 46, 70, 71, 64, 70, 65, 64, 71, 70, 125, 121, 122, 64, 126, 125, 125, 126, 121, 70, 69, 65, 69, 66, 65, 64, - 65, 126, 70, 48, 69, 126, 120, 121, 65, 127, 126, 126, 127, 120, 65, 66, 127, 66, 128, 127, 127, 128, 119, 69, 146, 66, 127, 119, 120, 59, 35, 36, 73, 89, 90, 132, 118, 148, 148, 73, - 149, 48, 145, 69, 48, 53, 145, 60, 59, 53, 59, 36, 37, 129, 118, 119, 116, 128, 67, 87, 74, 81, 78, 74, 87, 118, 117, 131, 131, 137, 80, 137, 78, 80, 80, 78, 88, 73, 131, 80, 113, - 114, 2, 74, 75, 81, 81, 75, 154, 154, 114, 81, 114, 0, 1, 114, 154, 155, 75, 155, 154, 118, 129, 130, 38, 39, 139, 145, 49, 146, 146, 68, 67, 146, 49, 68, 67, 68, 116, 49, 50, 68, - 49, 51, 50, 116, 68, 115, 68, 72, 115, 116, 115, 130, 68, 50, 72, 51, 142, 50, 72, 50, 79, 72, 79, 115, 79, 50, 142, 115, 79, 130, 137, 130, 79, 137, 77, 138, 137, 79, 77, 142, 143, - 79, 79, 143, 77, 139, 140, 142, 142, 140, 143, 139, 39, 140, 77, 155, 138, 77, 76, 155, 77, 143, 76, 76, 143, 144, 140, 141, 143, 143, 141, 144, 39, 40, 140, 140, 40, 141, 144, 41, - 76, 76, 41, 43, 76, 43, 155, 43, 41, 42, 155, 43, 44, 144, 141, 41, 141, 40, 41, 44, 0, 155, 51, 139, 142, 116, 130, 129, 117, 130, 137, 118, 130, 117, 155, 75, 138, 0, 114, 155, - 114, 1, 2, 138, 75, 74, 81, 114, 113, 137, 138, 78, 138, 74, 78, 117, 137, 131, 58, 139, 51, 52, 51, 49, 52, 58, 51, 58, 38, 139, 49, 53, 52, 59, 58, 52, 59, 37, 58, 37, 38, 58, 129, - 128, 116, 145, 53, 49, 53, 59, 52, 128, 129, 119, 113, 2, 3, 69, 145, 146, 146, 67, 66, 67, 128, 66, 118, 131, 148, 148, 131, 73, 73, 80, 89, 80, 88, 89, 78, 87, 88, 81, 113, 112, - 82, 87, 81, 112, 113, 3, 82, 81, 112, 91, 149, 73, 91, 73, 90, 54, 53, 48, 111, 112, 3, 28, 29, 45, 45, 29, 57, 29, 30, 57, 30, 31, 57, 31, 32, 57, 45, 57, 46, 32, 62, 57, 57, 56, - 46, 57, 62, 56, 32, 33, 62, 56, 55, 46, 46, 55, 47, 56, 62, 61, 61, 62, 34, 62, 33, 34, 56, 61, 55, 55, 54, 47, 47, 54, 48, 55, 61, 54, 61, 60, 54, 61, 34, 60, 34, 35, 60, 54, 60, - 53, 60, 35, 59, 46, 47, 70, 47, 48, 70 - ], - "vertices": [ - 1, 33, 390.2, -203.26, 1, 7, 30, -457.75, 316.61, 0.00216, 33, 371.43, -246.65, 0.90281, 31, -394.08, 241.72, 0.00124, 32, -391.89, 64.9, 0.00701, 23, -164.99, 14.71, 0.07872, 2, - -160.17, 400.98, 0.00169, 34, -385.72, -123.65, 0.00638, 7, 30, -440.81, 379.16, 0.00136, 33, 343.16, -304.98, 0.7602, 31, -361.21, 297.58, 0.00115, 32, -353.86, 117.38, 0.01191, 23, - -111.58, 51.42, 0.19911, 2, -101.9, 372.59, 0.00388, 34, -348.41, -70.65, 0.0224, 7, 30, -421.66, 442.14, 0.00086, 33, 312.66, -363.31, 0.60259, 31, -326.09, 353.26, 0.00079, 32, - -313.62, 169.48, 0.00989, 23, -56.22, 87.03, 0.33022, 2, -43.64, 341.97, 0.00322, 34, -308.9, -18.01, 0.05244, 7, 30, -397.72, 499.95, 0.00054, 33, 278.41, -415.67, 0.34942, 31, - -287.73, 402.69, 0.00053, 32, -270.74, 215.04, 0.00815, 23, -0.55, 115.59, 0.5243, 2, 8.65, 307.6, 0.00255, 34, -266.65, 28.14, 0.1145, 7, 30, -368.92, 560.21, 0.00025, 33, 238.93, - -469.54, 0.26096, 31, -244.04, 453.19, 0.00025, 32, -222.45, 261.17, 0.00488, 23, 60.4, 142.88, 0.56416, 2, 62.44, 268.01, 0.00137, 34, -218.99, 74.93, 0.16813, 7, 30, -314.36, - 601.05, 0.00012, 33, 177.74, -499.55, 0.18521, 31, -180.62, 478.17, 0.00012, 32, -156.95, 280.01, 0.00337, 23, 128.43, 138.7, 0.57624, 2, 92.32, 206.76, 0.0007, 34, -153.76, 94.68, - 0.23425, 7, 30, -272.09, 626.62, 5e-05, 33, 131.46, -516.83, 0.12481, 31, -133.1, 491.66, 6e-05, 32, -108.36, 288.93, 0.00331, 23, 177.19, 130.83, 0.56002, 2, 109.5, 160.44, 0.00036, - 34, -105.3, 104.26, 0.31139, 7, 30, -229.73, 663.61, 3e-05, 33, 82.97, -545.31, 0.0798, 31, -82.47, 516.14, 5e-05, 32, -55.63, 308.49, 0.00478, 23, 233.43, 131.6, 0.51889, 2, 137.88, - 111.89, 0.00023, 34, -52.85, 124.55, 0.39623, 7, 30, -192.61, 704.17, 1e-05, 33, 38.96, -578.28, 0.04836, 31, -35.95, 545.44, 7e-05, 32, -6.54, 333.25, 0.00818, 23, 287.98, 138.48, - 0.45935, 2, 170.75, 67.82, 0.00028, 34, -4.1, 149.98, 0.48375, 7, 30, -144.76, 696.57, 0, 33, -6.64, -561.94, 0.02774, 31, 8.19, 525.48, 0.00014, 32, 35.5, 309.18, 0.01425, 23, - 319.53, 101.73, 0.38965, 2, 154.32, 22.25, 0.00052, 34, 38.27, 126.5, 0.56769, 7, 30, -100.04, 701.32, 0, 33, -51.47, -558.3, 0.01506, 31, 52.57, 518.24, 0.0003, 32, 79, 297.76, - 0.02396, 23, 356.69, 76.39, 0.31843, 2, 150.58, -22.57, 0.00107, 34, 81.92, 115.68, 0.64117, 7, 30, -44.77, 722.52, 0, 33, -109.71, -568.88, 0.00781, 31, 111.48, 524.08, 0.00064, 32, - 138.2, 297.98, 0.03838, 23, 412.54, 56.78, 0.25353, 2, 161.04, -80.84, 0.0021, 34, 141.11, 116.72, 0.69754, 7, 30, 7.56, 743.17, 1e-05, 33, -164.97, -579.45, 0.00409, 31, 167.41, - 530.17, 0.00128, 32, 194.45, 298.73, 0.05851, 23, 465.8, 38.64, 0.20115, 2, 171.5, -136.11, 0.00388, 34, 197.34, 118.24, 0.73109, 7, 30, 62.11, 748.26, 2e-05, 33, -219.51, -574.34, - 0.0027, 31, 221.36, 520.67, 0.00242, 32, 247.26, 284.15, 0.085, 23, 510.67, 7.22, 0.16547, 2, 166.27, -190.65, 0.00673, 34, 250.35, 104.39, 0.73766, 7, 30, 96.51, 711.49, 4e-05, 33, - -246.49, -531.82, 0.00314, 31, 244.83, 476.11, 0.00434, 32, 266.38, 237.57, 0.11794, 23, 513.09, -43.08, 0.14843, 2, 123.7, -217.54, 0.01097, 34, 270.11, 58.08, 0.71514, 7, 30, - 132.18, 668.1, 0.00014, 33, -273.49, -482.57, 0.00474, 31, 267.76, 424.85, 0.00967, 32, 284.35, 184.36, 0.19141, 23, 512.19, -99.24, 0.11768, 2, 74.39, -244.43, 0.02159, 34, 288.81, - 5.12, 0.65477, 7, 30, 161.25, 607.49, 0.00043, 33, -290.8, -417.61, 0.00876, 31, 279.78, 358.7, 0.02133, 32, 290.03, 117.37, 0.30855, 23, 495.12, -164.26, 0.08681, 2, 9.39, -261.61, - 0.03875, 34, 295.42, -61.78, 0.53538, 7, 30, 172.71, 582.74, 0.00094, 33, -297.47, -391.17, 0.01689, 31, 284.3, 331.8, 0.03605, 32, 291.98, 90.16, 0.42128, 23, 487.83, -190.54, - 0.07203, 2, -17.07, -268.23, 0.05653, 34, 297.74, -88.96, 0.39628, 7, 30, 191.11, 542.57, 0.00244, 33, -308.1, -348.28, 0.03059, 31, 291.43, 288.2, 0.06798, 32, 294.93, 46.08, - 0.52863, 23, 475.85, -233.07, 0.05604, 2, -59.97, -278.76, 0.04741, 34, 301.3, -132.99, 0.2669, 7, 30, 196.6, 493.21, 0.00558, 33, -304.33, -298.76, 0.03338, 31, 283.68, 239.14, - 0.12415, 32, 282.56, -2.02, 0.59606, 23, 448.09, -274.25, 0.03547, 2, -109.49, -274.89, 0.03008, 34, 289.6, -181.26, 0.17528, 7, 30, 191.74, 461.83, 0.01265, 33, -293.74, -268.82, - 0.03059, 31, 270.7, 210.16, 0.21309, 32, 266.89, -29.64, 0.5738, 23, 424.07, -295.03, 0.02174, 2, -139.4, -264.23, 0.02044, 34, 274.31, -209.1, 0.1277, 7, 30, 210.08, 416.83, - 0.02241, 33, -303.41, -221.2, 0.03821, 31, 276.5, 161.92, 0.30177, 32, 268.08, -78.21, 0.52703, 23, 408.93, -341.2, 0.01378, 2, -187.04, -273.8, 0.01258, 34, 276.17, -257.65, - 0.08422, 7, 30, 217.06, 376.17, 0.03602, 33, -302.72, -179.96, 0.05747, 31, 272.49, 120.86, 0.38484, 32, 260.19, -118.7, 0.45988, 23, 387.93, -376.7, 0.01002, 2, -228.28, -273.03, - 0.00642, 34, 268.84, -298.24, 0.04536, 7, 30, 220.47, 356.32, 0.06836, 33, -302.39, -159.81, 0.07181, 31, 270.53, 100.81, 0.46448, 32, 256.34, -138.48, 0.35868, 23, 377.67, -394.05, - 0.00601, 2, -248.43, -272.65, 0.0035, 34, 265.26, -318.07, 0.02716, 7, 30, 233.32, 300.99, 0.10701, 33, -304.75, -103.06, 0.10199, 31, 268.3, 44.05, 0.52467, 32, 248.73, -194.77, - 0.2485, 23, 351.65, -444.54, 0.00397, 2, -305.18, -274.89, 0.00151, 34, 258.43, -374.46, 0.01235, 7, 30, 251.17, 251.11, 0.18202, 33, -313.03, -50.74, 0.1285, 31, 272.34, -8.77, - 0.53002, 32, 247.74, -247.74, 0.15081, 23, 332.97, -494.11, 0.00271, 2, -357.53, -283.06, 0.00064, 34, 258.16, -427.43, 0.00529, 7, 30, 259.55, 199.51, 0.2942, 33, -311.69, 1.52, - 0.14368, 31, 266.79, -60.75, 0.4705, 32, 237.27, -298.95, 0.08701, 23, 305.96, -538.86, 0.00216, 2, -409.78, -281.61, 0.00031, 34, 248.41, -478.79, 0.00215, 7, 30, 270.95, 111.95, - 0.4386, 33, -306.65, 89.68, 0.13219, 31, 254.65, -148.21, 0.37872, 32, 216.89, -384.87, 0.04823, 23, 257.97, -612.99, 0.00128, 2, -497.93, -276.39, 0.00013, 34, 229.21, -564.98, - 0.00085, 7, 30, 275.95, 45.98, 0.55894, 33, -299.32, 155.43, 0.1224, 31, 242.04, -213.16, 0.28754, 32, 198.16, -448.32, 0.02979, 23, 219.08, -666.51, 0.00086, 2, -563.66, -268.92, - 7e-05, 34, 211.36, -628.69, 0.0004, 7, 30, 270.99, 4.58, 0.65666, 33, -286.76, 195.19, 0.13583, 31, 226.31, -251.78, 0.19126, 32, 178.84, -485.28, 0.01522, 23, 188.49, -694.85, - 0.00084, 2, -603.4, -256.27, 5e-05, 34, 192.55, -665.9, 0.00014, 7, 30, 267.74, -22.51, 0.70274, 33, -278.54, 221.21, 0.15349, 31, 216.02, -277.05, 0.13384, 32, 166.2, -509.45, - 0.009, 23, 168.48, -713.4, 0.00083, 2, -629.4, -248, 5e-05, 34, 180.25, -690.25, 6e-05, 7, 30, 232.38, -80.22, 0.71269, 33, -233.08, 271.35, 0.19848, 31, 166.66, -323.36, 0.08263, - 32, 112.67, -550.87, 0.00494, 23, 104.17, -734.5, 0.00118, 2, -679.45, -202.43, 7e-05, 34, 127.29, -732.41, 2e-05, 7, 30, 198.78, -119.35, 0.71094, 33, -192.81, 303.57, 0.22921, 31, - 123.93, -352.22, 0.05568, 32, 67.38, -575.54, 0.003, 23, 53.24, -742.57, 0.0011, 2, -711.58, -162.09, 6e-05, 34, 82.35, -757.7, 1e-05, 7, 30, 124.68, -133.51, 0.67119, 33, -117.36, - 303.73, 0.28869, 31, 48.71, -346.29, 0.0364, 32, -6.93, -562.5, 0.00222, 23, -12.41, -705.39, 0.00141, 2, -711.58, -86.65, 9e-05, 34, 7.86, -745.68, 1e-05, 7, 30, 51.3, -147.52, - 0.59641, 33, -42.66, 303.88, 0.37476, 31, -25.76, -340.42, 0.02398, 32, -80.5, -549.59, 0.00244, 23, -77.41, -668.58, 0.00221, 2, -711.58, -11.95, 0.00017, 34, -65.88, -733.79, - 3e-05, 7, 30, -24.27, -161.96, 0.46205, 33, 34.28, 304.05, 0.51396, 31, -102.46, -334.38, 0.01654, 32, -156.29, -536.29, 0.00351, 23, -144.36, -630.67, 0.00355, 2, -711.58, 64.99, - 0.00033, 34, -141.84, -721.53, 6e-05, 7, 30, -53.64, -134.75, 0.24559, 33, 58.09, 271.85, 0.73381, 31, -123.59, -300.37, 0.01123, 32, -174.09, -500.43, 0.00436, 23, -149.13, -590.91, - 0.00444, 2, -679.33, 88.73, 0.00046, 34, -160.14, -685.92, 0.00011, 7, 30, -116.92, -133.91, 0.14442, 33, 120.11, 259.29, 0.82719, 31, -184.4, -282.84, 0.01314, 32, -232.97, -477.2, - 0.00706, 23, -196.82, -549.31, 0.00716, 2, -666.63, 150.73, 0.00079, 34, -219.33, -663.51, 0.00024, 7, 30, -193.18, -108.93, 0.07506, 33, 190.41, 220.59, 0.90208, 31, -251.35, - -238.6, 0.00822, 32, -295.41, -426.8, 0.00618, 23, -238.78, -480.91, 0.00746, 2, -627.79, 220.95, 0.00076, 34, -282.46, -613.98, 0.00024, 7, 30, -273.71, -69.56, 0.08289, 33, 262.24, - 166.96, 0.87667, 31, -318.62, -179.35, 0.01037, 32, -356.75, -361.43, 0.01102, 23, -274.68, -398.77, 0.01707, 2, -574.01, 292.66, 0.00145, 34, -344.69, -549.46, 0.00053, 1, 33, - 340.85, 81.96, 1, 1, 33, 402.34, 49.23, 1, 1, 33, 402.46, -9.79, 1, 1, 33, 402.81, -174.13, 1, 7, 30, 232.45, 111.08, 0.44637, 33, -268.65, 83.38, 0.15763, 31, 217.28, -138.87, - 0.35988, 32, 180.57, -372.02, 0.03409, 23, 228.06, -588.72, 0.00149, 2, -491.55, -238.4, 0.00012, 34, 192.72, -552.64, 0.00043, 7, 30, 167.94, 101.95, 0.44089, 33, -203.57, 80.38, - 0.20198, 31, 152.66, -130.63, 0.32987, 32, 117.02, -357.69, 0.02466, 23, 172.98, -553.93, 0.00221, 2, -488.42, -173.33, 0.00018, 34, 128.98, -539.18, 0.00021, 7, 30, 116.38, 96.09, - 0.42165, 33, -151.82, 76.57, 0.26271, 31, 101.38, -122.66, 0.29183, 32, 66.74, -344.88, 0.0198, 23, 129.89, -525.02, 0.00357, 2, -484.5, -121.58, 0.00032, 34, 78.52, -527.07, - 0.00013, 7, 30, 57.74, 89.68, 0.38908, 33, -93.01, 71.99, 0.33587, 31, 43.13, -113.35, 0.24924, 32, 9.63, -330.08, 0.01934, 23, 81.04, -491.95, 0.00576, 2, -479.79, -62.78, 0.00058, - 34, 21.22, -513.06, 0.00013, 7, 30, -21.87, 76.07, 0.20805, 33, -12.25, 70.6, 0.64119, 31, -37.25, -105.44, 0.11679, 32, -69.63, -314.58, 0.02243, 23, 11.55, -450.79, 0.00992, 2, - -478.23, 17.97, 0.00125, 34, -58.25, -498.65, 0.00037, 7, 30, -78.64, 72.41, 0.11459, 33, 44.21, 63.66, 0.78311, 31, -92.96, -93.97, 0.06796, 32, -124.01, -297.87, 0.02104, 23, - -34.09, -416.83, 0.01114, 2, -471.17, 74.42, 0.00155, 34, -112.86, -482.69, 0.0006, 7, 30, -58.5, 0.43, 0.10734, 33, 37.78, 138.13, 0.83109, 31, -92.56, -168.72, 0.03894, 32, - -130.71, -372.31, 0.01259, 23, -65.34, -484.73, 0.00851, 2, -545.65, 68.15, 0.00111, 34, -118.53, -557.22, 0.00042, 7, 30, -7.45, 0.6, 0.22841, 33, -12.41, 147.43, 0.66789, 31, - -43.28, -182.04, 0.07781, 32, -82.91, -390.25, 0.01576, 23, -26.31, -517.65, 0.0088, 2, -555.06, 17.97, 0.00105, 34, -70.49, -574.5, 0.00028, 7, 30, 31.75, 0.11, 0.34964, 33, -50.85, - 155.19, 0.51526, 31, -5.6, -192.87, 0.10657, 32, -46.43, -404.62, 0.01797, 23, 3.25, -543.4, 0.00928, 2, -562.9, -20.45, 0.00104, 34, -33.81, -588.36, 0.00024, 7, 30, 72.65, -0.86, - 0.48764, 33, -90.85, 163.73, 0.38425, 31, 33.58, -204.61, 0.10837, 32, -8.54, -420.02, 0.01279, 23, 33.79, -570.61, 0.00623, 2, -571.52, -60.43, 0.00062, 34, 4.29, -603.24, 0.00011, - 7, 30, 127.69, -0.72, 0.57888, 33, -144.97, 173.8, 0.2939, 31, 86.71, -219.02, 0.11355, 32, 42.98, -439.41, 0.00948, 23, 75.84, -606.13, 0.0038, 2, -581.71, -114.53, 0.00033, 34, - 56.07, -621.92, 5e-05, 7, 30, 173.79, -3.88, 0.63951, 33, -189.68, 185.47, 0.21913, 31, 130.34, -234.26, 0.13006, 32, 84.96, -458.72, 0.00884, 23, 108.93, -638.39, 0.00225, 2, - -593.47, -159.21, 0.00017, 34, 98.32, -640.65, 4e-05, 7, 30, 221.65, 0.47, 0.66551, 33, -237.51, 190.07, 0.16543, 31, 177.64, -242.7, 0.15686, 32, 131.25, -471.62, 0.01072, 23, - 148.23, -666.05, 0.00132, 2, -598.18, -207.04, 9e-05, 34, 144.78, -652.91, 7e-05, 7, 30, -55.09, -67.56, 0.1263, 33, 47.05, 205.57, 0.82479, 31, -107.24, -235.19, 0.03163, 32, - -151.63, -437.1, 0.00934, 23, -106.75, -538.77, 0.00684, 2, -613.07, 77.55, 0.00083, 34, -138.55, -622.29, 0.00026, 7, 30, 5.35, -66.39, 0.33729, 33, -12.56, 215.64, 0.55821, 31, - -48.64, -250.04, 0.07915, 32, -94.7, -457.44, 0.01499, 23, -59.93, -577, 0.00911, 2, -623.27, 17.97, 0.00102, 34, -81.35, -641.84, 0.00024, 7, 30, 55.77, -67.14, 0.4963, 33, -61.97, - 225.72, 0.41554, 31, -0.2, -264.08, 0.07107, 32, -47.82, -476.01, 0.01018, 23, -21.97, -610.21, 0.0062, 2, -633.46, -31.42, 0.00061, 34, -34.21, -659.77, 0.00011, 7, 30, 120.95, - -69.85, 0.60006, 33, -125.51, 240.49, 0.32427, 31, 61.93, -283.92, 0.06506, 32, 12.16, -501.66, 0.00653, 23, 25.95, -654.46, 0.00372, 2, -648.35, -94.93, 0.00032, 34, 26.11, -684.59, - 4e-05, 7, 30, 196.98, -79.27, 0.67403, 33, -198.47, 263.85, 0.24961, 31, 132.77, -313.09, 0.06913, 32, 79.9, -537.43, 0.0049, 23, 77.8, -710.86, 0.00215, 2, -671.87, -167.84, - 0.00016, 34, 94.34, -719.42, 2e-05, 7, 30, 200.89, 245.53, 0.15256, 33, -262.59, -54.59, 0.16406, 31, 222.38, -0.86, 0.55578, 32, 198.75, -235.12, 0.12087, 23, 291.04, -465.82, - 0.00323, 2, -353.57, -232.64, 0.00048, 34, 209.01, -415.5, 0.00302, 7, 30, 140.47, 227.61, 0.1325, 33, -199.89, -48.18, 0.21654, 31, 159.36, -2.19, 0.54752, 32, 135.89, -230.46, - 0.09653, 23, 233.37, -440.37, 0.0047, 2, -359.84, -169.92, 0.00055, 34, 146.09, -411.7, 0.00166, 7, 30, 89.61, 213.9, 0.12408, 33, -147.37, -44.15, 0.28252, 31, 106.69, -1.97, - 0.50487, 32, 83.48, -225.24, 0.07948, 23, 185.73, -417.89, 0.00728, 2, -363.76, -117.39, 0.00084, 34, 93.61, -407.21, 0.00093, 7, 30, 27.2, 197.98, 0.12796, 33, -83.09, -40.1, - 0.35623, 31, 42.29, -0.83, 0.43219, 32, 19.48, -217.99, 0.07033, 23, 127.86, -389.62, 0.01121, 2, -367.68, -53.1, 0.00141, 34, 29.52, -400.84, 0.00067, 7, 30, -21.21, 183.95, - 0.13479, 33, -32.92, -35.29, 0.4637, 31, -8.1, -1.57, 0.31798, 32, -30.76, -213.94, 0.06476, 23, 81.88, -368.99, 0.01585, 2, -372.39, -2.92, 0.00219, 34, -20.77, -397.49, 0.00074, 7, - 30, -48.32, 142.05, 0.13714, 33, 1.5, 0.85, 0.59937, 31, -45.32, -34.81, 0.20012, 32, -70.97, -243.5, 0.0454, 23, 34.1, -383.37, 0.01508, 2, -408.45, 31.57, 0.00212, 34, -60.57, - -427.6, 0.00077, 7, 30, 37.6, 156.07, 0.20705, 33, -85.53, 3.02, 0.33037, 31, 41.25, -44, 0.40185, 32, 14.34, -260.86, 0.05046, 23, 108.66, -428.3, 0.00876, 2, -410.8, -55.45, - 0.00103, 34, 24.97, -443.78, 0.00048, 7, 30, 118.13, 169.06, 0.23108, 33, -167.07, 5.2, 0.25824, 31, 122.35, -52.75, 0.4478, 32, 94.24, -277.27, 0.05606, 23, 178.45, -470.53, - 0.00555, 2, -413.15, -136.99, 0.0006, 34, 105.09, -459.09, 0.00066, 7, 30, 191.61, 185.49, 0.26102, 33, -242.33, 2.69, 0.19419, 31, 197.56, -56.32, 0.47134, 32, 168.78, -287.97, - 0.06846, 23, 245.1, -505.57, 0.00343, 2, -410.8, -212.25, 0.00037, 34, 179.77, -468.75, 0.00118, 7, 30, -94.4, 134.61, 0.07675, 33, 48.16, -0.39, 0.78223, 31, -91.73, -29.82, - 0.08198, 32, -116.69, -234.12, 0.03629, 23, -5.85, -359.22, 0.01854, 2, -407.11, 78.23, 0.0028, 34, -106.42, -418.85, 0.00141, 7, 30, -149.75, 411.62, 0.01465, 33, 51.14, -282.85, - 0.4224, 31, -71.92, 251.97, 0.03591, 32, -70.22, 44.51, 0.22538, 23, 131.27, -112.25, 0.19988, 2, -124.64, 80.62, 0.04232, 34, -63.79, -139.6, 0.05946, 7, 30, -317.85, 372.32, - 0.00837, 33, 223.61, -275.43, 0.6555, 31, -244.42, 258.49, 0.01022, 32, -241.32, 67.38, 0.06645, 23, -22.29, -33.39, 0.22168, 2, -131.7, 253.1, 0.01766, 34, -235.19, -119.1, 0.02013, - 1, 33, 245.44, -217.37, 1, 7, 30, -278.95, 104.8, 0.01336, 33, 235.03, -5.35, 0.95817, 31, -277.6, -9.8, 0.00424, 32, -299.82, -196.55, 0.00749, 23, -165.81, -262.48, 0.0149, 2, - -401.76, 265.1, 0.00112, 34, -290.05, -383.8, 0.00072, 7, 30, -193.65, 118.58, 0.00663, 33, 148.66, -3.05, 0.97677, 31, -191.69, -19.05, 0.00341, 32, -215.18, -213.91, 0.00534, 23, - -91.87, -307.19, 0.00657, 2, -404.24, 178.72, 0.00077, 34, -205.17, -400, 0.0005, 7, 30, -253.8, 387.29, 0.01718, 33, 157.9, -278.26, 0.67604, 31, -178.7, 256, 0.0193, 32, -176.13, - 58.67, 0.09024, 23, 36.22, -63.43, 0.16209, 2, -129.01, 187.39, 0.01802, 34, -169.89, -126.91, 0.01714, 7, 30, -143.32, 126.71, 0.05388, 33, 97.69, -1.7, 0.8242, 31, -141, -24.51, - 0.03869, 32, -165.23, -224.16, 0.04053, 23, -48.25, -333.58, 0.03421, 2, -405.69, 127.76, 0.00501, 34, -155.09, -409.56, 0.00348, 7, 30, -210.33, 397.46, 0.02223, 33, 113.29, - -280.18, 0.58217, 31, -134.08, 254.32, 0.03167, 32, -131.87, 52.75, 0.14752, 23, 75.94, -83.83, 0.16152, 2, -127.18, 142.77, 0.02632, 34, -125.55, -132.21, 0.02855, 7, 30, -361.3, - 374.74, 0.0033, 33, 265.86, -285.88, 0.58507, 31, -285.69, 272.3, 0.00497, 32, -281.09, 85.05, 0.05574, 23, -53.84, -3.42, 0.30014, 2, -121.17, 295.33, 0.02002, 34, -275.2, -101.98, - 0.03077, 7, 30, -330.54, 413.72, 0.00271, 33, 228.4, -318.47, 0.40045, 31, -245.73, 301.77, 0.0051, 32, -238.51, 110.59, 0.07758, 23, -5.17, 6.38, 0.4252, 2, -88.65, 257.8, 0.03146, - 34, -232.98, -75.85, 0.0575, 7, 30, -280.07, 454.49, 0.00217, 33, 171.24, -349.16, 0.29204, 31, -186.27, 327.75, 0.00541, 32, -176.86, 130.81, 0.09594, 23, 59.7, 4.78, 0.47291, 2, - -58.08, 200.57, 0.04063, 34, -171.61, -54.78, 0.09089, 7, 30, -241.65, 487.37, 0.00216, 33, 127.39, -374.34, 0.2428, 31, -140.53, 349.31, 0.00659, 32, -129.28, 147.93, 0.11475, 23, - 110.26, 4.98, 0.45735, 2, -32.99, 156.67, 0.04745, 34, -124.27, -37.01, 0.1289, 7, 30, -201.1, 517.46, 0.00286, 33, 81.96, -396.39, 0.20622, 31, -93.48, 367.62, 0.00914, 32, -80.69, - 161.69, 0.1398, 23, 160.65, 1.67, 0.41369, 2, -11.04, 111.2, 0.05349, 34, -75.88, -22.58, 0.17479, 7, 30, -146.12, 563.89, 0.00084, 33, 19.31, -431.8, 0.09246, 31, -28.18, 397.87, - 0.0037, 32, -12.82, 185.6, 0.09291, 23, 232.61, 1.46, 0.38431, 2, 24.24, 48.48, 0.03615, 34, -8.34, 2.26, 0.38963, 7, 30, -320.85, 396.41, 0.00288, 33, 222.09, -299.66, 0.46048, 31, - -240.96, 282.52, 0.00597, 32, -235.59, 90.97, 0.0869, 23, -8.99, -13.08, 0.36865, 2, -107.47, 251.53, 0.0338, 34, -229.79, -95.43, 0.04132, 7, 30, -266.81, 422.7, 0.00316, 33, - 164.11, -315.47, 0.32813, 31, -181.89, 293.59, 0.00849, 32, -175.73, 96.38, 0.12923, 23, 49.22, -28.03, 0.41836, 2, -91.79, 193.52, 0.0501, 34, -170.01, -89.19, 0.06252, 7, 30, - -219.91, 440.44, 0.00402, 33, 114.74, -324.2, 0.27995, 31, -131.97, 298.31, 0.01189, 32, -125.59, 96.34, 0.16379, 23, 96.45, -44.86, 0.39319, 2, -83.17, 144.12, 0.05978, 34, -119.88, - -88.54, 0.08738, 7, 30, -170.67, 462.62, 0.00599, 33, 62.23, -336.85, 0.25311, 31, -78.62, 306.68, 0.01716, 32, -71.69, 99.61, 0.19842, 23, 148.34, -59.83, 0.34086, 2, -70.62, 91.6, - 0.0651, 34, -66.02, -84.52, 0.11936, 7, 30, -116.66, 484.91, 0.00349, 33, 5.03, -348.73, 0.18055, 31, -20.64, 313.91, 0.01229, 32, -13.29, 101.3, 0.24233, 23, 203.94, -77.8, 0.30831, - 2, -58.86, 34.36, 0.09292, 34, -7.65, -82.03, 0.16013, 7, 30, -57.41, 509, 0.00198, 33, -57.67, -361.41, 0.12238, 31, 42.87, 321.49, 0.00968, 32, 50.66, 102.82, 0.28485, 23, 264.69, - -97.8, 0.26376, 2, -46.32, -28.36, 0.1121, 34, 56.27, -79.63, 0.20525, 7, 30, -11.47, 523.36, 0.0011, 33, -105.48, -367, 0.07898, 31, 90.98, 323.2, 0.00929, 32, 98.71, 99.96, - 0.32456, 23, 309.01, -116.59, 0.21375, 2, -40.83, -76.18, 0.12022, 34, 104.36, -81.83, 0.2521, 7, 30, 28.32, 536.55, 0.00063, 33, -147.02, -372.57, 0.04893, 31, 132.83, 325.41, - 0.01131, 32, 140.59, 98.18, 0.35988, 23, 347.87, -132.29, 0.16489, 2, -35.34, -117.73, 0.11679, 34, 146.25, -83.03, 0.29757, 7, 30, 74.44, 554.14, 0.00046, 33, -195.61, -381.3, - 0.02997, 31, 181.97, 330.19, 0.01612, 32, 189.95, 98.27, 0.3891, 23, 394.42, -148.74, 0.12269, 2, -26.72, -166.34, 0.10315, 34, 195.61, -82.26, 0.3385, 7, 30, 115.33, 569.93, - 0.00055, 33, -238.71, -389.23, 0.01984, 31, 225.57, 334.61, 0.02421, 32, 233.78, 98.54, 0.41027, 23, 435.8, -163.16, 0.09103, 2, -18.88, -209.46, 0.08198, 34, 239.43, -81.39, - 0.37211, 7, 30, -81.7, 592.16, 0.00043, 33, -49.23, -447.63, 0.05721, 31, 41.42, 408.11, 0.00249, 32, 57.44, 189.18, 0.08277, 23, 300.01, -18.69, 0.34056, 2, 39.92, -20.1, 0.02781, - 34, 61.86, 6.82, 0.48872, 7, 30, -21.56, 611.63, 0.00021, 33, -111.94, -455.6, 0.03359, 31, 104.56, 411, 0.00204, 32, 120.57, 186.06, 0.08357, 23, 358.45, -42.77, 0.28657, 2, 47.76, - -82.82, 0.02121, 34, 125.03, 4.57, 0.5728, 7, 30, 26.4, 627.97, 0.0001, 33, -162.1, -462.76, 0.01878, 31, 155.14, 414.09, 0.00235, 32, 171.21, 184.34, 0.09583, 23, 405.59, -61.36, - 0.23054, 2, 54.82, -133, 0.01709, 34, 175.69, 3.54, 0.6353, 7, 30, 61.41, 641.05, 6e-05, 33, -198.93, -469.11, 0.01022, 31, 192.36, 417.45, 0.00354, 32, 208.59, 184.15, 0.1191, 23, - 440.74, -74.06, 0.18006, 2, 61.09, -169.85, 0.01583, 34, 213.06, 3.87, 0.6712, 7, 30, 114.58, 661.38, 7e-05, 33, -254.94, -479.22, 0.00593, 31, 249.01, 423.01, 0.00586, 32, 265.51, - 184.3, 0.15184, 23, 494.43, -92.98, 0.14111, 2, 71.08, -225.88, 0.01744, 34, 269.97, 4.81, 0.67774, 7, 30, 34.87, 700.63, 2e-05, 33, -183.9, -532.59, 0.00465, 31, 182.5, 481.92, - 0.00242, 32, 204.89, 249.27, 0.08502, 23, 459.07, -11.46, 0.18679, 2, 124.59, -154.95, 0.00673, 34, 208.47, 68.93, 0.71438, 7, 30, -26, 685.01, 1e-05, 33, -121.19, -528.53, 0.00851, - 31, 119.67, 482.95, 0.00128, 32, 142.44, 256.25, 0.05856, 23, 402.57, 16.04, 0.24174, 2, 120.67, -92.23, 0.00389, 34, 145.93, 75.05, 0.68602, 7, 30, -85.84, 664, 0, 33, -58.49, - -518.99, 0.0157, 31, 56.4, 478.49, 0.00064, 32, 79.04, 257.83, 0.03851, 23, 343.36, 38.76, 0.30934, 2, 111.27, -29.51, 0.00213, 34, 82.51, 75.75, 0.63367, 7, 30, -129.51, 646.08, 0, - 33, -12.25, -509.49, 0.02776, 31, 9.55, 472.75, 0.00031, 32, 31.85, 256.56, 0.02426, 23, 298.47, 53.36, 0.3837, 2, 101.86, 16.74, 0.00114, 34, 35.34, 73.83, 0.56282, 7, 30, -166.22, - 633.48, 1e-05, 33, 26.15, -503.92, 0.0466, 31, -29.18, 470.3, 0.00016, 32, -6.93, 257.79, 0.01489, 23, 262.34, 67.52, 0.45741, 2, 96.37, 55.16, 0.0007, 34, -3.46, 74.53, 0.48022, 7, - 30, -207.58, 616, 3e-05, 33, 70.03, -494.42, 0.07425, 31, -73.68, 464.37, 0.00011, 32, -51.8, 256.12, 0.00947, 23, 219.5, 80.97, 0.52236, 2, 86.96, 99.06, 0.00067, 34, -48.3, 72.24, - 0.39311, 7, 30, -248.93, 581.76, 7e-05, 33, 117.02, -468.45, 0.11241, 31, -122.61, 442.27, 0.00015, 32, -102.61, 238.77, 0.00722, 23, 165.82, 81.64, 0.57085, 2, 61.09, 146.1, - 0.00104, 34, -98.86, 54.19, 0.30827, 7, 30, -287.56, 541.65, 0.00015, 33, 162.42, -436.21, 0.16192, 31, -170.47, 413.8, 0.00027, 32, -152.95, 214.97, 0.00771, 23, 110.41, 76.07, - 0.59683, 2, 28.95, 191.58, 0.0019, 34, -148.87, 29.7, 0.23123, 7, 30, -326.34, 502.32, 0.00032, 33, 207.83, -404.75, 0.22226, 31, -218.26, 386.11, 0.00051, 32, -203.16, 191.94, - 0.01087, 23, 55.39, 71.19, 0.59682, 2, -2.41, 237.05, 0.00345, 34, -198.75, 5.98, 0.16577, 7, 30, -356.17, 466.29, 0.00063, 33, 243.83, -374.88, 0.3079, 31, -256.56, 359.24, 0.00095, - 32, -243.83, 168.83, 0.01661, 23, 9.33, 63.04, 0.55701, 2, -32.21, 273.11, 0.0058, 34, -239.1, -17.69, 0.1111, 7, 30, -379.58, 425.9, 0.00098, 33, 274.33, -339.54, 0.50139, 31, - -289.81, 326.47, 0.00142, 32, -280.04, 139.37, 0.02098, 23, -34.67, 47.41, 0.40846, 2, -67.49, 303.69, 0.00756, 34, -274.91, -47.65, 0.05921, 7, 30, -397.96, 376.78, 0.00145, 33, - 301.51, -294.68, 0.66094, 31, -320.51, 283.96, 0.00196, 32, -314.65, 99.96, 0.02465, 23, -80.47, 21.87, 0.27223, 2, -112.28, 330.96, 0.00885, 34, -308.96, -87.53, 0.02991, 7, 30, - -397.44, 314.09, 0.00027, 33, 312.62, -232.99, 0.99169, 31, -336.57, 223.36, 0.00019, 32, -336.39, 41.16, 0.0009, 23, -120.65, -26.26, 0.00638, 2, -173.96, 342.2, 0.00018, 34, - -329.89, -146.63, 0.0004, 7, 30, -102.85, 176.87, 0.05997, 33, 48.61, -43.48, 0.7435, 31, -88.71, 13.17, 0.10219, 32, -109.6, -191.61, 0.06393, 23, 15.07, -321.54, 0.02423, 2, - -364.02, 78.6, 0.00408, 34, -99.91, -376.25, 0.0021, 7, 30, -57.82, 192.68, 0.10294, 33, 1.44, -50.66, 0.57596, 31, -41.11, 16.52, 0.23475, 32, -61.9, -192.8, 0.06571, 23, 59.62, - -338.64, 0.01711, 2, -356.94, 31.4, 0.00257, 34, -52.2, -376.78, 0.00096, 7, 30, -126.97, 297.57, 0.02528, 33, 49.91, -166.56, 0.63967, 31, -80.08, 135.96, 0.103, 32, -89.35, -70.2, - 0.15676, 23, 74.82, -213.92, 0.05575, 2, -240.93, 79.64, 0.01069, 34, -81.34, -254.57, 0.00885, 7, 30, -85.13, 306.39, 0.02182, 33, 7.17, -167.46, 0.46369, 31, -37.4, 133.4, 0.17048, - 32, -47.11, -76.79, 0.264, 23, 112.41, -234.29, 0.06056, 2, -240.13, 36.89, 0.01131, 34, -39.01, -260.58, 0.00814, 7, 30, -43.07, 316.02, 0.01714, 33, -35.94, -169.12, 0.2903, 31, - 5.71, 131.58, 0.24471, 32, -4.37, -82.7, 0.37311, 23, 150.71, -254.17, 0.05653, 2, -238.56, -6.23, 0.01021, 34, 3.81, -265.9, 0.00799, 7, 30, 20.4, 330.54, 0.01281, 33, -101.01, - -171.61, 0.22471, 31, 70.76, 128.81, 0.28438, 32, 60.13, -91.64, 0.41945, 23, 208.49, -284.19, 0.04229, 2, -236.21, -71.3, 0.00748, 34, 68.42, -273.94, 0.00888, 7, 30, 81.57, 344.62, - 0.01255, 33, -163.73, -174.09, 0.16564, 31, 133.47, 126.23, 0.32054, 32, 122.31, -100.16, 0.45272, 23, 264.22, -313.05, 0.03032, 2, -233.86, -134.02, 0.00559, 34, 130.72, -281.61, - 0.01263, 7, 30, 135.95, 356.6, 0.01618, 33, -219.39, -175.78, 0.11685, 31, 189.09, 123.42, 0.35068, 32, 177.41, -108.24, 0.47104, 23, 313.43, -339.12, 0.0209, 2, -232.29, -189.68, - 0.00471, 34, 185.92, -288.92, 0.01964, 7, 30, 182.96, 369.57, 0.02386, 33, -267.99, -179.8, 0.0805, 31, 237.85, 123.51, 0.37272, 32, 225.96, -112.78, 0.47345, 23, 357.66, -359.66, - 0.01411, 2, -228.37, -238.29, 0.00494, 34, 234.53, -292.8, 0.03041, 7, 30, 193.07, 312.44, 0.08027, 33, -267.33, -121.78, 0.12907, 31, 232.52, 65.73, 0.54457, 32, 215.16, -169.79, - 0.23255, 23, 328.39, -409.76, 0.00495, 2, -286.38, -237.51, 0.00111, 34, 224.52, -349.95, 0.00748, 7, 30, 138.73, 304.45, 0.06212, 33, -212.44, -124.02, 0.17311, 31, 177.99, 72.39, - 0.5376, 32, 161.52, -157.99, 0.21443, 23, 281.79, -380.66, 0.00723, 2, -284.03, -182.63, 0.00114, 34, 170.71, -338.88, 0.00436, 7, 30, 79.1, 290.67, 0.05344, 33, -151.29, -121.54, - 0.23144, 31, 116.84, 74.85, 0.50546, 32, 100.88, -149.73, 0.19458, 23, 227.42, -352.58, 0.01093, 2, -286.38, -121.48, 0.00158, 34, 109.97, -331.47, 0.00257, 7, 30, 28.65, 270.65, - 0.05474, 33, -98, -111.23, 0.29906, 31, 62.89, 68.88, 0.45199, 32, 46.61, -150.55, 0.17375, 23, 176.01, -335.17, 0.01627, 2, -296.58, -68.16, 0.00242, 34, 55.71, -333.04, 0.00178, 7, - 30, -24.85, 254.05, 0.06625, 33, -42.35, -104.85, 0.36899, 31, 6.91, 67, 0.38266, 32, -9.3, -147.11, 0.1531, 23, 124.48, -313.2, 0.02347, 2, -302.85, -12.5, 0.00371, 34, -0.24, - -330.36, 0.00182, 7, 30, -65.26, 239.94, 0.07225, 33, -0.03, -98.48, 0.53411, 31, -35.79, 64.07, 0.24977, 32, -52.09, -145.97, 0.11029, 23, 84.55, -297.8, 0.02689, 2, -309.12, 29.84, - 0.0045, 34, -43.03, -329.81, 0.00219, 7, 30, -113.28, 229.11, 0.04488, 33, 49.18, -96.75, 0.6858, 31, -84.98, 66.31, 0.12869, 32, -100.84, -139.07, 0.09874, 23, 40.93, -274.97, - 0.03239, 2, -310.75, 79.05, 0.00585, 34, -91.88, -323.59, 0.00365, 7, 30, -139.5, 360.3, 0.01855, 33, 50.59, -230.52, 0.62104, 31, -75.59, 199.76, 0.05196, 32, -78.83, -7.11, - 0.17599, 23, 105.87, -158, 0.0937, 2, -176.97, 80.18, 0.01847, 34, -71.69, -191.34, 0.02029, 7, 30, -77.56, 387.3, 0.0101, 33, -15.29, -245.57, 0.28941, 31, -8.72, 209.44, 0.05396, - 32, -11.33, -3.82, 0.49215, 23, 170.56, -177.51, 0.09689, 2, -162.07, 14.27, 0.02143, 34, -4.25, -187.12, 0.03606, 7, 30, -10.1, 418.55, 0.00636, 33, -87.38, -263.75, 0.18688, 31, - 64.6, 221.75, 0.05515, 32, 62.82, 1.47, 0.60001, 23, 242.21, -197.36, 0.0807, 2, -144.04, -57.86, 0.02015, 34, 69.83, -180.81, 0.05076, 7, 30, 46.85, 442.2, 0.0041, 33, -147.72, - -276.42, 0.1279, 31, 125.77, 229.51, 0.06149, 32, 124.45, 3.39, 0.65321, 23, 300.92, -216.2, 0.06247, 2, -131.49, -118.23, 0.01942, 34, 131.43, -178.04, 0.07141, 7, 30, 109.44, - 461.34, 0.00329, 33, -212.77, -283.61, 0.08339, 31, 191.2, 231.44, 0.07546, 32, 189.76, -0.91, 0.66956, 23, 361.02, -242.12, 0.04793, 2, -124.44, -183.3, 0.02073, 34, 196.79, - -181.43, 0.09965, 7, 30, 173.57, 480.77, 0.00376, 33, -279.4, -290.81, 0.05247, 31, 258.18, 233.23, 0.09672, 32, 256.62, -5.48, 0.64938, 23, 422.49, -268.82, 0.03852, 2, -117.38, - -249.94, 0.02434, 34, 263.71, -185.08, 0.13481, 7, 30, -196.98, 343.52, 0.02386, 33, 110.18, -224.7, 0.78085, 31, -135.46, 198.77, 0.0274, 32, -138.52, -2.42, 0.07895, 23, 51.2, - -133.59, 0.06805, 2, -182.67, 139.78, 0.01091, 34, -131.44, -187.47, 0.00999, 7, 30, -241.17, 330.84, 0.01171, 33, 155.96, -220.45, 0.89893, 31, -181.43, 198.22, 0.00962, 32, - -184.33, 1.41, 0.0296, 23, 9.31, -114.64, 0.04141, 2, -186.83, 185.57, 0.00483, 34, -177.3, -184.28, 0.00389, 7, 30, -123.8, -65.95, 0.04474, 33, 114.27, 191.23, 0.93692, 31, - -173.08, -215.48, 0.00886, 32, -215.3, -411.22, 0.00459, 23, -158.08, -493.06, 0.00417, 2, -598.59, 144.74, 0.00051, 34, -202.58, -597.29, 0.0002, 7, 30, -193.29, -53.52, 0.00444, - 33, 180.24, 166.12, 0.99338, 31, -236.82, -185.13, 0.00077, 32, -275.87, -374.95, 0.00061, 23, -203, -438.6, 0.00069, 2, -573.34, 210.67, 8e-05, 34, -263.64, -561.86, 3e-05, 7, 30, - -275.1, -23.25, 0.00598, 33, 255.01, 121.2, 0.99056, 31, -307.72, -134.32, 0.00097, 32, -341.63, -317.64, 0.00099, 23, -245.76, -362.57, 0.00134, 2, -528.26, 285.34, 0.00013, 34, - -330.18, -505.46, 5e-05, 7, 30, -130.72, 2.34, 0.07078, 33, 108.39, 122.85, 0.87018, 31, -161.71, -147.79, 0.02454, 32, -197.56, -344.92, 0.01678, 23, -119.15, -436.53, 0.01472, 2, - -530.22, 138.72, 0.00198, 34, -185.75, -530.75, 0.00103, 7, 30, -193.42, 6.53, 0.01773, 33, 169.22, 107.09, 0.96457, 31, -221.07, -127.18, 0.00517, 32, -254.69, -318.77, 0.00534, 23, - -164.23, -392.75, 0.00612, 2, -514.34, 199.52, 0.00071, 34, -243.24, -505.39, 0.00036, 1, 33, 249.13, 83.91, 1, 7, 30, 12.43, 81.93, 0.31303, 33, -47.04, 71.2, 0.46993, 31, -2.62, - -108.85, 0.18658, 32, -35.49, -321.26, 0.02106, 23, 41.48, -468.52, 0.00824, 2, -478.9, -16.81, 0.00094, 34, -24.02, -504.86, 0.00022, 7, 30, -6.27, 148.91, 0.18642, 33, -41.1, 1.91, - 0.41602, 31, -2.95, -39.31, 0.33139, 32, -29.21, -252, 0.05076, 23, 70.59, -405.36, 0.01313, 2, -409.6, -11.02, 0.0017, 34, -18.7, -435.52, 0.00057, 7, 30, -171.61, 542.36, 0.00159, - 33, 48.36, -415.39, 0.14175, 31, -58.46, 383.84, 0.00583, 32, -44.29, 174.51, 0.11262, 23, 199.24, 1.56, 0.41038, 2, 7.88, 77.56, 0.04515, 34, -39.66, -9.26, 0.28269, 7, 30, -105.1, - 375.29, 0.01454, 33, 14.01, -238.88, 0.44958, 31, -38.46, 205.14, 0.05374, 32, -41.35, -5.28, 0.33318, 23, 141.79, -168.84, 0.10178, 2, -168.7, 43.58, 0.02107, 34, -34.24, -188.99, - 0.02611, 7, 30, -90.93, 441.32, 0.0098, 33, -12.17, -301.13, 0.2781, 31, -7.34, 265.08, 0.03183, 32, -4.68, 51.43, 0.34283, 23, 195.34, -127.68, 0.19348, 2, -106.5, 17.26, 0.05699, - 34, 1.65, -131.78, 0.08697, 7, 30, -33.22, 463.46, 0.00587, 33, -72.99, -312.18, 0.20071, 31, 54.17, 271.18, 0.02877, 32, 57.14, 51.66, 0.42459, 23, 253.66, -148.16, 0.16243, 2, - -95.58, -43.58, 0.06315, 34, 63.45, -130.69, 0.11449, 7, 30, 14.68, 482.94, 0.00354, 33, -123.67, -322.42, 0.13703, 31, 105.51, 277.31, 0.0306, 32, 108.83, 52.89, 0.48687, 23, - 302.78, -164.32, 0.12983, 2, -85.44, -94.28, 0.06451, 34, 115.12, -128.76, 0.14761, 7, 30, 71.44, 501.72, 0.00233, 33, -182.93, -330.35, 0.08836, 31, 165.22, 280.43, 0.03764, 32, - 168.56, 50.32, 0.52566, 23, 358.2, -186.75, 0.09918, 2, -77.64, -153.56, 0.06151, 34, 174.88, -130.5, 0.18532, 7, 30, 140.65, 526.06, 0.00198, 33, -255.45, -341.42, 0.05365, 31, - 238.4, 285.61, 0.05013, 32, 241.9, 48.54, 0.53936, 23, 426.7, -212.99, 0.0737, 2, -66.72, -226.1, 0.0553, 34, 248.24, -131.27, 0.22588, 1, 33, 274.34, -224.09, 1, 7, 30, -316.62, - 261.64, 0.00413, 33, 242.94, -166.45, 0.97085, 31, -272.48, 151.42, 0.00181, 32, -279.42, -36.54, 0.00521, 23, -92.99, -118.55, 0.01628, 2, -240.64, 272.66, 0.00087, 34, -271.85, - -223.53, 0.00085 - ], - "hull": 45, - "edges": [ - 74, 76, 76, 78, 78, 80, 80, 82, 82, 84, 84, 86, 86, 88, 2, 4, 4, 6, 6, 8, 8, 10, 10, 12, 12, 14, 14, 16, 16, 18, 18, 20, 20, 22, 22, 24, 24, 26, 26, 28, 28, 30, 30, 32, 32, 34, 38, - 40, 40, 42, 42, 44, 48, 50, 50, 52, 52, 54, 54, 56, 56, 58, 62, 64, 64, 66, 66, 68, 68, 70, 70, 72, 72, 74, 56, 90, 90, 92, 92, 94, 94, 96, 98, 100, 102, 104, 104, 106, 106, 108, - 108, 110, 110, 112, 112, 114, 58, 60, 60, 62, 114, 60, 116, 118, 118, 120, 120, 122, 122, 124, 124, 64, 52, 126, 126, 128, 128, 130, 130, 132, 132, 134, 134, 136, 138, 140, 140, 142, - 142, 54, 144, 136, 100, 144, 86, 152, 154, 152, 156, 148, 144, 158, 158, 154, 146, 160, 160, 156, 162, 148, 162, 164, 164, 166, 166, 168, 168, 170, 162, 174, 174, 176, 176, 178, 178, - 180, 180, 182, 182, 184, 184, 186, 186, 188, 188, 190, 190, 192, 34, 36, 36, 38, 192, 36, 172, 194, 194, 196, 196, 198, 198, 200, 32, 202, 202, 200, 30, 204, 204, 206, 206, 208, 208, - 210, 210, 212, 212, 214, 214, 216, 216, 218, 218, 220, 220, 222, 222, 224, 4, 226, 226, 162, 224, 226, 2, 228, 144, 230, 234, 236, 236, 238, 238, 240, 240, 242, 242, 244, 244, 246, - 44, 46, 46, 48, 246, 46, 50, 248, 248, 250, 250, 252, 252, 254, 254, 256, 256, 258, 230, 260, 260, 234, 258, 260, 146, 262, 262, 234, 264, 266, 266, 268, 268, 270, 270, 272, 272, 40, - 146, 180, 180, 170, 158, 274, 274, 160, 262, 274, 154, 276, 276, 156, 274, 276, 276, 150, 76, 278, 116, 278, 78, 280, 278, 280, 80, 282, 280, 282, 158, 284, 284, 278, 102, 284, 154, - 286, 286, 280, 284, 286, 152, 288, 288, 282, 286, 288, 102, 100, 102, 116, 98, 136, 136, 232, 232, 258, 232, 134, 118, 106, 104, 118, 106, 98, 98, 104, 96, 290, 290, 98, 136, 292, - 292, 138, 170, 294, 294, 172, 262, 296, 296, 264, 146, 298, 298, 300, 300, 302, 302, 304, 304, 306, 306, 38, 150, 308, 308, 228, 150, 310, 310, 152, 2, 0, 0, 88, 310, 0, 152, 82 - ], - "width": 899, - "height": 722, - "path": "body-bigyak.body-bigyak" - } + "back": {"back": {"x": 108.84764705882354, "y": -2.095882352941174, "rotation": -80, "width": 291.7647058823529, "height": 249.41176470588235, "path": "xmas-01.back"}}, + "ear-left": {"ear-left": {"x": 95.98470588235294, "y": 7.952352941176464, "rotation": 60, "width": 216.47058823529412, "height": 228.23529411764707, "path": "xmas-01.ear-left"}}, + "ear-right": {"ear-right": {"x": 113.81882352941177, "y": -17.94705882352942, "rotation": 122, "width": 225.88235294117646, "height": 235.29411764705884, "path": "xmas-01.ear-right"}}, + "eyes": { + "eyes": {"x": 24.024117647058812, "y": -22.87117647058824, "width": 289.4117647058824, "height": 65.88235294117648, "path": "xmas-01.eyes"}, + "eyes-angry": {"x": 23.024117647058812, "y": -19.459411764705884, "width": 289.4117647058824, "height": 87.05882352941177, "path": "xmas-01.eyes-angry"}, + "eyes-happy": {"x": 24.024117647058812, "y": -22.87117647058824, "width": 289.4117647058824, "height": 65.88235294117648, "path": "xmas-01.eyes-happy"}, + "eyes-shut": {"x": 24.024117647058812, "y": -32.28294117647059, "width": 289.4117647058824, "height": 44.70588235294118, "path": "xmas-01.eyes-shut"} }, - "body-braid": { - "body-braid": { - "type": "mesh", - "uvs": [ - 0.63496, 0.09751, 0.61702, 0.20683, 0.59831, 0.32082, 0.59592, 0.44317, 0.62464, 0.56027, 0.76357, 0.56074, 1, 0.56154, 1, 0.77652, 1, 0.90761, 0.87349, 1, 0.49064, 1, 0.3351, - 0.92684, 0.31354, 0.7573, 0.3016, 0.66339, 0.18914, 0.51483, 0.1341, 0.375, 0.07624, 0.27546, 0, 0.14429, 0, 0, 0.35424, 0, 0.65096, 0, 0.4021, 0.37675, 0.37099, 0.14953, 0.37817, - 0.26664, 0.42842, 0.48861, 0.46431, 0.63368, 0.56242, 0.72584, 0.73231, 0.83071, 0.80649, 0.92509 - ], - "triangles": [ - 10, 28, 9, 9, 28, 8, 10, 27, 28, 10, 11, 27, 11, 26, 27, 11, 12, 26, 8, 28, 7, 28, 27, 7, 6, 7, 27, 27, 26, 5, 27, 5, 6, 12, 25, 26, 12, 13, 25, 26, 4, 5, 26, 25, 4, 13, 24, 25, 25, - 24, 4, 24, 3, 4, 13, 14, 24, 14, 21, 24, 14, 15, 21, 24, 21, 3, 3, 21, 2, 15, 23, 21, 21, 23, 2, 15, 16, 23, 2, 23, 1, 16, 22, 23, 16, 17, 22, 23, 22, 1, 1, 22, 0, 17, 19, 22, 22, - 19, 0, 17, 18, 19, 0, 19, 20 - ], - "vertices": [ - 1, 27, 19.57, 47, 1, 3, 27, 44.29, 41.52, 0.7839, 28, -26.59, 44.55, 0.16555, 29, -58.07, 82.04, 0.05055, 3, 27, 70.07, 35.8, 0.5709, 28, -1.55, 36.17, 0.29298, 29, -40.03, 62.75, - 0.13612, 3, 27, 98.04, 32.63, 0.32448, 28, 25.93, 30.08, 0.36824, 29, -18.75, 44.33, 0.30727, 3, 27, 125.32, 34.77, 0.21851, 28, 53.28, 29.36, 0.2975, 29, 4.97, 30.69, 0.48399, 3, - 27, 127.73, 57.99, 0.15115, 28, 58.11, 52.19, 0.2481, 29, 20.07, 48.48, 0.60074, 3, 27, 131.82, 97.5, 0.10405, 28, 66.32, 91.06, 0.20773, 29, 45.78, 78.76, 0.68823, 3, 27, 181.03, - 92.62, 0.06625, 28, 114.74, 81.06, 0.1694, 29, 83.62, 46.93, 0.76435, 3, 27, 211.03, 89.65, 0.05296, 28, 144.27, 74.96, 0.15492, 29, 106.7, 27.52, 0.79212, 3, 27, 230.08, 66.4, - 0.05293, 28, 160.78, 49.85, 0.15497, 29, 109.28, -2.42, 0.79209, 3, 27, 223.74, 2.4, 0.06616, 28, 147.77, -13.14, 0.16956, 29, 67.88, -51.64, 0.76428, 3, 27, 204.42, -21.95, 0.10381, - 28, 126.01, -35.33, 0.20813, 29, 38.18, -60.81, 0.68806, 3, 27, 165.26, -21.7, 0.15055, 28, 87.09, -30.99, 0.24914, 29, 6.01, -38.48, 0.60031, 3, 27, 143.57, -21.57, 0.21693, 28, - 65.53, -28.59, 0.3002, 29, -11.81, -26.11, 0.48287, 3, 27, 107.7, -37, 0.32036, 28, 28.25, -40.18, 0.37528, 29, -50.13, -18.58, 0.30436, 3, 27, 74.79, -43.03, 0.56691, 28, -5.12, - -42.73, 0.29912, 29, -80.69, -4.95, 0.13396, 3, 27, 51.04, -50.45, 0.78057, 28, -29.51, -47.62, 0.17001, 29, -104.47, 2.35, 0.04942, 2, 27, 19.76, -60.22, 0.99676, 28, -61.64, - -54.06, 0.00324, 1, 27, -13.27, -56.95, 1, 1, 27, -7.4, 2.28, 1, 1, 27, -2.48, 51.88, 1, 3, 27, 79.63, 1.73, 0.63525, 28, 4.38, 1.28, 0.27499, 29, -51.4, 29.25, 0.08976, 1, 27, 27.1, - 1.69, 1, 3, 27, 54.03, 0.23, 0.79528, 28, -21.24, 2.47, 0.16509, 29, -73.37, 42.47, 0.03963, 3, 27, 105.66, 3.6, 0.30104, 28, 30.47, 0.41, 0.41196, 29, -28.86, 16.07, 0.287, 3, 27, - 139.46, 6.31, 0.18962, 28, 64.37, -0.43, 0.27987, 29, 0.55, -0.79, 0.53051, 3, 27, 162.18, 20.62, 0.14592, 28, 88.46, 11.42, 0.24641, 29, 27.38, -1.82, 0.60767, 3, 27, 189, 46.64, - 0.11208, 28, 117.85, 34.49, 0.21738, 29, 64.21, 4.49, 0.67055, 3, 27, 211.83, 56.9, 0.0595, 28, 141.63, 42.31, 0.1627, 29, 88.85, 0.06, 0.7778 - ], - "hull": 21, - "edges": [ - 4, 42, 42, 30, 34, 36, 34, 44, 40, 0, 44, 0, 36, 38, 38, 40, 38, 44, 34, 32, 32, 30, 32, 46, 4, 2, 2, 0, 46, 2, 44, 46, 46, 42, 30, 28, 28, 48, 48, 6, 6, 4, 6, 8, 8, 50, 50, 26, 26, - 28, 22, 20, 26, 24, 24, 22, 24, 52, 50, 52, 12, 10, 10, 8, 52, 10, 52, 54, 54, 12, 54, 22, 20, 56, 12, 14, 56, 14, 14, 16, 18, 20, 16, 18 - ], - "width": 168, - "height": 230, - "path": "body-bigyak.body-braid" - } + "eyes-base": {"eyes-base": {"x": 41.67117647058823, "y": -11.81235294117647, "width": 334.11764705882354, "height": 51.76470588235294, "path": "xmas-01.eyes-base"}}, + "eyes-glow": {"eyes-glow": {"x": 42.141764705882345, "y": -10.165294117647058, "width": 421.1764705882353, "height": 136.47058823529412, "path": "xmas-01.eyes-glow"}}, + "horn": { + "horn": {"x": 124.74647058823528, "y": 12.593529411764695, "rotation": -90, "width": 197.64705882352942, "height": 282.3529411764706, "path": "xmas-01.horn"}, + "horn-blink": {"x": 133.71705882352938, "y": 16.85823529411765, "rotation": -90, "width": 204.7058823529412, "height": 298.8235294117647, "path": "xmas-01.horn-blink"} }, - "body-braid2": { - "body-braid2": { - "type": "mesh", - "uvs": [ - 0.76452, 0.07445, 0.75152, 0.17116, 0.73432, 0.29916, 0.70555, 0.40315, 0.66462, 0.55109, 0.78457, 0.611, 0.90879, 0.67306, 1, 0.71862, 1, 0.82158, 0.94878, 0.93152, 0.76113, 1, - 0.54399, 1, 0.36139, 0.97254, 0.24307, 0.87252, 0.27124, 0.75345, 0.29206, 0.66547, 0.31344, 0.57506, 0.21043, 0.43979, 0.14188, 0.34977, 0.07072, 0.23161, 0, 0.11418, 0, 0, 0.3751, - 0, 0.77453, 0, 0.50646, 0.58076, 0.47161, 0.46209, 0.55828, 0.66607, 0.60819, 0.74824, 0.66371, 0.83963, 0.70599, 0.90923, 0.44724, 0.32368, 0.41521, 0.20102, 0.39118, 0.09385 - ], - "triangles": [ - 11, 29, 10, 10, 29, 9, 11, 12, 29, 12, 28, 29, 12, 13, 28, 9, 29, 8, 29, 28, 8, 13, 27, 28, 13, 14, 27, 8, 28, 7, 28, 27, 6, 28, 6, 7, 14, 26, 27, 14, 15, 26, 27, 5, 6, 27, 26, 5, - 26, 15, 24, 15, 16, 24, 26, 4, 5, 26, 24, 4, 16, 25, 24, 24, 25, 4, 16, 17, 25, 4, 25, 3, 17, 30, 25, 25, 30, 3, 17, 18, 30, 3, 30, 2, 18, 31, 30, 18, 19, 31, 30, 31, 2, 2, 31, 1, - 19, 32, 31, 19, 20, 32, 31, 32, 1, 1, 32, 0, 20, 22, 32, 20, 21, 22, 32, 22, 0, 0, 22, 23 - ], - "vertices": [ - 2, 24, 23.29, 61.99, 0.9947, 25, -53.08, 59.53, 0.0053, 3, 24, 47.19, 55.55, 0.78053, 25, -28.89, 54.24, 0.13577, 26, -81.3, 76.7, 0.0837, 3, 24, 78.83, 47.04, 0.5816, 25, 3.11, - 47.24, 0.23384, 26, -52.02, 62.01, 0.18457, 3, 24, 104.1, 37.7, 0.40473, 25, 28.81, 39.12, 0.2761, 26, -29.13, 47.79, 0.31917, 3, 24, 140.06, 24.41, 0.29394, 25, 65.35, 27.56, - 0.22993, 26, 3.43, 27.57, 0.47614, 3, 24, 158.58, 41.35, 0.21919, 25, 83.05, 45.36, 0.19742, 26, 24.98, 40.44, 0.58339, 3, 24, 177.77, 58.88, 0.16149, 25, 101.38, 63.79, 0.17041, 26, - 47.29, 53.78, 0.66811, 3, 24, 191.85, 71.76, 0.11854, 25, 114.83, 77.33, 0.14864, 26, 63.67, 63.57, 0.73281, 3, 24, 217.7, 67.17, 0.09078, 25, 140.87, 73.97, 0.1336, 26, 88.08, - 53.88, 0.77562, 3, 24, 243.82, 53.89, 0.07864, 25, 167.59, 61.96, 0.12672, 26, 111, 35.64, 0.79464, 3, 24, 255.57, 20.17, 0.07741, 25, 180.93, 28.84, 0.12603, 26, 115.74, 0.25, - 0.79656, 3, 24, 249.27, -15.32, 0.07864, 25, 176.33, -6.91, 0.12672, 26, 102.45, -33.26, 0.79463, 3, 24, 237.07, -43.94, 0.09078, 25, 165.52, -36.08, 0.1336, 26, 84.77, -58.85, - 0.77562, 3, 24, 208.53, -58.82, 0.11855, 25, 137.72, -52.31, 0.14865, 26, 53.82, -67.7, 0.7328, 3, 24, 179.45, -48.9, 0.1615, 25, 108.2, -43.79, 0.17042, 26, 27.32, -52.16, 0.66808, - 3, 24, 157.96, -41.58, 0.21922, 25, 86.39, -37.5, 0.19746, 26, 7.74, -40.67, 0.58332, 3, 24, 135.88, -34.05, 0.29401, 25, 63.97, -31.04, 0.23004, 26, -12.38, -28.87, 0.47595, 3, 24, - 98.93, -44.86, 0.40494, 25, 27.58, -43.59, 0.27638, 26, -50.75, -32.05, 0.31868, 3, 24, 74.34, -52.05, 0.58193, 25, 3.36, -51.95, 0.23387, 26, -76.28, -34.16, 0.1842, 3, 24, 42.61, - -58.41, 0.78121, 25, -28.03, -59.82, 0.13528, 26, -108.65, -34.03, 0.08351, 2, 24, 11.07, -64.74, 0.99636, 25, -59.23, -67.64, 0.00364, 1, 24, -17.59, -59.65, 1, 1, 24, -6.71, 1.66, - 1, 1, 24, 4.88, 66.95, 1, 3, 24, 142.92, -2.76, 0.26407, 25, 69.51, 0.56, 0.21764, 26, 0.78, 0.37, 0.5183, 3, 24, 112.11, -3.17, 0.454, 25, 38.75, -1.32, 0.28347, 26, -29.48, 6.15, - 0.26253, 3, 24, 165.84, 1.91, 0.21215, 25, 92.18, 6.31, 0.19465, 26, 24.18, 0.35, 0.59321, 3, 24, 187.92, 6.4, 0.15913, 25, 114.02, 11.85, 0.16951, 26, 46.71, 0.32, 0.67135, 3, 24, - 212.48, 11.4, 0.11711, 25, 138.31, 18.02, 0.14802, 26, 71.77, 0.3, 0.73486, 3, 24, 231.18, 15.21, 0.08952, 25, 156.81, 22.71, 0.13294, 26, 90.85, 0.28, 0.77753, 3, 24, 76.65, -0.98, - 0.59027, 25, 3.23, -0.83, 0.23885, 26, -63.78, 15.41, 0.17089, 3, 24, 44.93, -0.74, 0.78253, 25, -28.47, -2.11, 0.13744, 26, -94.81, 22, 0.08003, 1, 24, 17.32, 0.11, 1 - ], - "hull": 24, - "edges": [ - 40, 42, 46, 0, 40, 38, 38, 36, 4, 2, 2, 0, 32, 48, 48, 8, 36, 34, 34, 32, 34, 50, 4, 6, 6, 8, 50, 6, 32, 30, 52, 48, 30, 52, 10, 8, 52, 10, 14, 12, 12, 10, 54, 52, 12, 54, 28, 30, - 54, 28, 26, 28, 56, 54, 26, 56, 56, 14, 14, 16, 20, 58, 58, 56, 16, 58, 24, 58, 26, 24, 20, 22, 24, 22, 20, 18, 18, 16, 4, 60, 60, 36, 50, 60, 2, 62, 62, 38, 60, 62, 0, 64, 64, 40, - 62, 64, 42, 44, 44, 46, 64, 44 - ], - "width": 166, - "height": 255, - "path": "body-bigyak.body-braid2" - } + "mouth": { + "mouth": {"x": 21.259411764705884, "y": 88.01117647058823, "width": 112.94117647058823, "height": 94.11764705882354, "path": "xmas-01.mouth"}, + "mouth-bite": {"x": 21.40294117647058, "y": 105.35882352941177, "width": 155.29411764705884, "height": 145.88235294117646, "path": "xmas-01.mouth-bite"}, + "mouth-blink": {"x": 14.958823529411768, "y": 105.25882352941177, "width": 145.88235294117646, "height": 145.88235294117646, "path": "xmas-01.mouth-blink"}, + "mouth-eat": {"x": 84.00294117647059, "y": -8.192352941176472, "width": 155.29411764705884, "height": 51.76470588235294, "path": "xmas-01.mouth-eat"}, + "mouth-open": {"x": 20.259411764705884, "y": 53.48176470588235, "width": 112.94117647058823, "height": 181.1764705882353, "path": "xmas-01.mouth-open"}, + "mouth-smile": {"x": 16.78882352941177, "y": 102.77588235294117, "width": 145.88235294117646, "height": 150.58823529411765, "path": "xmas-01.mouth-smile"} }, - "body-pattern": {"body-pattern": {"x": -4.06, "y": -0.17, "width": 62, "height": 118, "path": "body-bigyak.body-pattern"}}, - "leg-back-left": { - "sumo-leg-back-left": {"x": 35.48, "y": -3.22, "rotation": 69.54, "width": 104, "height": 95, "path": "body-normal.sumo-leg-back-left"}, - "sumo-leg-back-left-long": {"x": 34.3, "y": 2.31, "rotation": 216.69, "width": 101, "height": 112, "path": "body-normal.sumo-leg-back-left-long"}, - "sumo-leg-back-left-stretch": {"x": 34.53, "y": 4.56, "rotation": 37.34, "width": 102, "height": 105, "path": "body-normal.sumo-leg-back-left-stretch"} - }, - "leg-front-left": { - "sumo-leg-front-left": {"x": 39.53, "y": -6.01, "rotation": 83.6, "width": 111, "height": 101, "path": "body-normal.sumo-leg-front-left"}, - "sumo-leg-front-left-long": {"x": 44.5, "y": 1.43, "rotation": 221.6, "width": 111, "height": 114, "path": "body-normal.sumo-leg-front-left-long"}, - "sumo-leg-front-left-stretch": {"x": 35.38, "y": -0.11, "rotation": 151.6, "width": 112, "height": 104, "path": "body-normal.sumo-leg-front-left-stretch"} - }, - "leg-front-right": { - "sumo-leg-front-right": {"x": 42.24, "y": 7.63, "rotation": 101.78, "width": 112, "height": 101, "path": "body-normal.sumo-leg-front-right"}, - "sumo-leg-front-right-long": {"x": 39.97, "y": -2.03, "rotation": 219.78, "width": 111, "height": 114, "path": "body-normal.sumo-leg-front-right-long"}, - "sumo-leg-front-right-stretch": {"x": 44.29, "y": 3.3, "rotation": 137.24, "width": 106, "height": 103, "path": "body-normal.sumo-leg-front-right-stretch"} - }, - "shadow": {"shadow": {"width": 1049, "height": 211, "path": "body-bigyak.shadow"}}, - "body-air": { - "body-air1a_00": {"x": 1.37, "y": 35.21, "width": 209.375, "height": 129.6875, "path": "body-accessory.body-air1a_00"}, - "body-air1a_01": {"x": 1.37, "y": 35.21, "width": 209.375, "height": 129.6875, "path": "body-accessory.body-air1a_01"}, - "body-air1a_02": {"x": 1.37, "y": 35.21, "width": 209.375, "height": 129.6875, "path": "body-accessory.body-air1a_02"}, - "body-air1a_03": {"x": 1.37, "y": 35.21, "width": 209.375, "height": 129.6875, "path": "body-accessory.body-air1a_03"}, - "body-air1a_04": {"x": 1.37, "y": 35.21, "width": 209.375, "height": 129.6875, "path": "body-accessory.body-air1a_04"}, - "body-air1a_05": {"x": 1.37, "y": 35.21, "width": 209.375, "height": 129.6875, "path": "body-accessory.body-air1a_05"}, - "body-air1a_06": {"x": 1.37, "y": 35.21, "width": 209.375, "height": 129.6875, "path": "body-accessory.body-air1a_06"}, - "body-air1a_07": {"x": 1.37, "y": 35.21, "width": 209.375, "height": 129.6875, "path": "body-accessory.body-air1a_07"}, - "body-air1b_00": {"x": 1.37, "y": 35.21, "width": 156.25, "height": 192.1875, "path": "body-accessory.body-air1b_00"}, - "body-air1b_01": {"x": 1.37, "y": 35.21, "width": 156.25, "height": 192.1875, "path": "body-accessory.body-air1b_01"}, - "body-air1b_02": {"x": 1.37, "y": 35.21, "width": 156.25, "height": 192.1875, "path": "body-accessory.body-air1b_02"}, - "body-air1c_00": {"x": 1.37, "y": 35.21, "width": 200.0, "height": 289.0625, "path": "body-accessory.body-air1c_00"}, - "body-air1c_01": {"x": 1.37, "y": 35.21, "width": 200.0, "height": 289.0625, "path": "body-accessory.body-air1c_01"}, - "body-air1c_02": {"x": 1.37, "y": 35.21, "width": 200.0, "height": 289.0625, "path": "body-accessory.body-air1c_02"}, - "body-air1c_03": {"x": 1.37, "y": 35.21, "width": 200.0, "height": 289.0625, "path": "body-accessory.body-air1c_03"}, - "body-air1d_00": {"x": 1.37, "y": 35.21, "width": 204.6875, "height": 273.4375, "path": "body-accessory.body-air1d_00"}, - "body-air1d_01": {"x": 1.37, "y": 35.21, "width": 204.6875, "height": 273.4375, "path": "body-accessory.body-air1d_01"}, - "body-air1d_02": {"x": 1.37, "y": 35.21, "width": 204.6875, "height": 273.4375, "path": "body-accessory.body-air1d_02"}, - "body-air1d_03": {"x": 1.37, "y": 35.21, "width": 204.6875, "height": 273.4375, "path": "body-accessory.body-air1d_03"} - }, - "body-cheek": { - "body-cheek1a": {"x": 1.52, "y": 3.04, "width": 60.9375, "height": 57.8125, "path": "body-accessory.body-cheek1a"}, - "body-cheek1b": {"x": 1.52, "y": 3.04, "width": 50.0, "height": 76.5625, "path": "body-accessory.body-cheek1b"}, - "body-cheek1c": {"x": 1.52, "y": 3.04, "width": 50.0, "height": 76.5625, "path": "body-accessory.body-cheek1c"}, - "body-cheek1d": {"x": 1.52, "y": 3.04, "width": 50.0, "height": 76.5625, "path": "body-accessory.body-cheek1d"}, - "body-cheek1e": {"x": 1.52, "y": 3.04, "width": 54.6875, "height": 79.6875, "path": "body-accessory.body-cheek1e"}, - "body-cheek1f": {"x": 1.52, "y": 3.04, "width": 56.25, "height": 57.8125, "path": "body-accessory.body-cheek1f"}, - "body-cheek1g": {"x": 1.52, "y": 3.04, "width": 104.6875, "height": 96.875, "path": "body-accessory.body-cheek1g"} - }, - "body-ground": { - "body-ground1a_00": {"x": 4.75, "y": 123.01, "width": 254.6875, "height": 275.0, "path": "body-accessory.body-ground1a_00"}, - "body-ground1a_01": {"x": 4.75, "y": 123.01, "width": 254.6875, "height": 275.0, "path": "body-accessory.body-ground1a_01"}, - "body-ground1a_02": {"x": 4.75, "y": 123.01, "width": 254.6875, "height": 275.0, "path": "body-accessory.body-ground1a_02"}, - "body-ground1a_03": {"x": 4.75, "y": 123.01, "width": 254.6875, "height": 275.0, "path": "body-accessory.body-ground1a_03"} - }, - "body-neck": { - "body-neck1a": {"x": -5.4, "y": -54.79, "width": 92.1875, "height": 96.875, "path": "body-accessory.body-neck1a"}, - "body-neck1b": {"x": -5.4, "y": -54.79, "width": 103.125, "height": 117.1875, "path": "body-accessory.body-neck1b"}, - "body-neck1c": {"x": -5.4, "y": -54.79, "width": 79.6875, "height": 110.9375, "path": "body-accessory.body-neck1c"}, - "body-neck1d": {"x": -5.4, "y": -54.79, "width": 121.875, "height": 101.5625, "path": "body-accessory.body-neck1d"}, - "body-neck1e": {"x": -5.4, "y": -54.79, "width": 89.0625, "height": 107.8125, "path": "body-accessory.body-neck1e"}, - "body-neck1f": {"x": -5.4, "y": -54.79, "width": 79.6875, "height": 79.6875, "path": "body-accessory.body-neck1f"} - } + "tail": {"tail": {"x": 95.0341176470588, "y": 12.997647058823523, "rotation": 15, "width": 289.4117647058824, "height": 211.76470588235296, "path": "xmas-01.tail"}} } } ], "events": {"hit": {}, "hit-buff": {}, "jump": {}, "start-attack": {}}, "keyAnimations": { - "activity/appear": "4036940331", - "attack/melee/multi-attack/attack-01": "3897908807", - "attack/melee/multi-attack/attack-02": "445763679", - "attack/melee/multi-attack/attack-03": "3663130631", - "activity/bath": "1257499719", - "attack/ranged/cast-fly": "1577594643", - "attack/ranged/cast-high": "3051257523", - "attack/ranged/cast-low": "983904028", - "attack/ranged/cast-multi": "2051614957", - "attack/ranged/cast-tail": "2283838223", - "activity/eat-bite": "1684684533", - "activity/eat-chew": "2711256467", - "attack/melee/multi-attack/end": "989689103", - "activity/entrance": "2809240631", - "defense/evade": "180682469", - "activity/evolve": "3760369471", - "battle/get-buff": "2742360208", - "battle/get-debuff": "2375931044", - "defense/hit-by-normal": "576133560", - "defense/hit-by-normal-crit": "2310646130", - "defense/hit-by-normal-dramatic": "2525036827", - "defense/hit-by-ranged-attack": "3095766500", - "defense/hit-with-shield": "3945863285", - "attack/melee/horn-gore": "2469511866", - "attack/melee/mouth-bite": "2815381870", - "action/move-back": "1919486595", - "action/move-forward": "334169668", - "attack/melee/multi-attack": "160342495", - "action/idle/normal": "928719411", - "attack/melee/normal-attack": "2954738379", - "draft/normal-draft": "3304507361", - "activity/prepare": "3475256849", - "action/idle/random-01": "3774510935", - "action/idle/random-02": "3087086321", - "action/idle/random-03": "1540593521", - "action/idle/random-04": "1912966198", + "activity/appear": "3921179016", + "activity/bath": "3305387968", + "attack/ranged/cast-fly": "3722823556", + "attack/ranged/cast-high": "3577703416", + "attack/ranged/cast-low": "1793942137", + "attack/ranged/cast-multi": "151119", + "attack/ranged/cast-tail": "977217026", + "activity/eat-bite": "1137807767", + "activity/eat-chew": "2571197086", + "activity/entrance": "3768378365", + "defense/evade": "1735454995", + "activity/evolve": "649307630", + "battle/get-buff": "2993060391", + "battle/get-debuff": "2919546916", + "defense/hit-by-normal": "2695183231", + "defense/hit-by-normal-crit": "721863963", + "defense/hit-by-normal-dramatic": "2501809037", + "defense/hit-by-ranged-attack": "3309952905", + "defense/hit-with-shield": "228539860", + "attack/melee/horn-gore": "3177102970", + "attack/melee/mouth-bite": "1912445836", + "action/move-back": "3766271173", + "action/move-forward": "2945160014", + "attack/melee/multi-attack": "2627626635", + "action/idle/normal": "1384528274", + "attack/melee/normal-attack": "3305373483", + "activity/prepare": "405864717", + "action/idle/random-01": "880116349", + "action/idle/random-02": "4155096617", + "action/idle/random-03": "2146505268", + "action/idle/random-04": "3708365579", "action/idle/random-05": "2745614147", - "action/run": "980943882", - "draft/run-origin": "1255318387", - "attack/melee/shrimp": "4163974862", - "activity/sleep": "2481023416", - "attack/melee/multi-attack/start": "3455714621", - "attack/melee/tail-multi-slap": "1930192816", - "attack/melee/tail-roll": "1797279783", - "attack/melee/tail-smash": "2686448266", - "attack/melee/tail-thrash": "3253321365", - "activity/victory-pose-back-flip": "4217013558" + "action/run": "2297652214", + "draft/run-origin": "1973997258", + "attack/melee/shrimp": "244230390", + "status/sitting-duck": "1990830770", + "activity/sleep": "100562494", + "status/stun": "2745614147", + "attack/melee/tail-multi-slap": "2905793214", + "attack/melee/tail-roll": "3678751400", + "attack/melee/tail-smash": "2662497262", + "attack/melee/tail-thrash": "2102433122", + "activity/victory-pose-back-flip": "2227634241" } }, - "bug-02": { + "aquatic-06": { "bones": [ {"name": "@root"}, {"name": "@pivot-main", "parent": "@root"}, {"name": "@pivot-back", "parent": "@pivot-main", "x": 205, "y": 180, "color": "ff0101ff"}, {"name": "@pivot-center", "parent": "@pivot-back", "x": -215.11, "y": -5.25, "color": "ff0101ff"}, {"name": "@axie", "parent": "@pivot-center", "length": 213.28, "rotation": 179.04, "x": 196.39, "y": 5.16}, {"name": "@back", "parent": "@axie", "rotation": -179.04, "x": 37.63, "y": -198.19}, - {"name": "back", "parent": "@back", "length": 149.41, "rotation": 58, "x": -101.97, "y": 46.3, "transform": "noScale"}, + {"name": "back", "parent": "@back", "length": 149.41, "rotation": 75, "x": -119.97, "y": 59.3, "transform": "noScale"}, {"name": "@body", "parent": "@axie", "length": 226.28, "rotation": -8.35, "x": 224.58, "y": -0.53}, {"name": "@ear-left", "parent": "@axie", "rotation": -179.04, "x": 112.7, "y": -203.23}, - {"name": "ear-left", "parent": "@ear-left", "length": 113.61, "rotation": 90, "x": -7, "y": 19, "transform": "noScale"}, + {"name": "ear-left", "parent": "@ear-left", "length": 113.61, "rotation": 35, "x": -7, "y": -65, "transform": "noScale"}, {"name": "@ear-right", "parent": "@axie", "rotation": -179.04, "x": 405.28, "y": -235.33}, - {"name": "ear-right", "parent": "@ear-right", "length": 119.39, "rotation": 93, "x": -40, "y": -15, "transform": "noScale"}, + {"name": "ear-right", "parent": "@ear-right", "length": 119.39, "rotation": 135, "x": -33, "y": -107, "transform": "noScale"}, {"name": "@eyes", "parent": "@axie", "rotation": -179.04, "x": 384.24, "y": -113.67}, {"name": "@horn", "parent": "@axie", "rotation": -179.04, "x": 327.92, "y": -214.63}, {"name": "horn", "parent": "@horn", "length": 176.72, "rotation": 90, "y": 18, "transform": "noScale"}, {"name": "@leg-back-left", "parent": "@axie", "length": 76.4, "rotation": 100.96, "x": -15.3, "y": 102.56, "transform": "noScale"}, @@ -3048,7 +2842,7 @@ {"name": "@mouth", "parent": "@axie", "rotation": -179.04, "x": 382.23, "y": 6.31}, {"name": "body-pattern", "parent": "@body", "rotation": -170.69, "x": -267.21, "y": -49.4, "transform": "noScale"}, {"name": "@shadow", "parent": "@root", "color": "e6d713ff"}, {"name": "@tail", "parent": "@axie", "rotation": -179.04, "x": -11.76, "y": 61.72}, - {"name": "tail", "parent": "@tail", "length": 203.67, "rotation": -42, "x": 39, "y": 92, "transform": "noScale"}, + {"name": "tail", "parent": "@tail", "length": 203.67, "rotation": 5, "x": -1, "y": 39, "transform": "noScale"}, {"name": "leg-front-right-IK", "parent": "@pivot-main", "x": -195.99, "y": -10.21, "color": "ff3f00ff"}, {"name": "leg-front-left-IK", "parent": "@pivot-main", "x": 42.3, "y": -18.42, "color": "ff3f00ff"}, {"name": "leg-back-left-IK", "parent": "@pivot-main", "x": 208.57, "y": 1.35, "color": "ff3f00ff"}, {"name": "@ball", "parent": "@root", "y": 191, "color": "f3981bff"}, @@ -3070,23 +2864,23 @@ { "name": "default", "attachments": { - "back": {"back": {"x": 76.94, "y": 9.71, "rotation": -58, "width": 231, "height": 229, "path": "bug-02.back"}}, - "ear-left": {"ear-left": {"x": 47.9, "y": 31.96, "rotation": -90, "width": 94, "height": 94, "path": "bug-02.ear-left"}}, - "ear-right": {"ear-right": {"x": 47.58, "y": 40.53, "rotation": -93, "width": 124, "height": 91, "path": "bug-02.ear-right"}}, + "back": {"back": {"x": 84.69764705882352, "y": -37.78235294117646, "rotation": -75, "width": 211.76470588235296, "height": 331.7647058823529, "path": "aquatic-06.back"}}, + "ear-left": {"ear-left": {"x": 43.22470588235294, "y": -3.841176470588232, "rotation": -35, "width": 136.47058823529412, "height": 145.88235294117646, "path": "aquatic-06.ear-left"}}, + "ear-right": {"ear-right": {"x": 40.48823529411765, "y": 1.848823529411768, "rotation": -135, "width": 138.8235294117647, "height": 145.88235294117646, "path": "aquatic-06.ear-right"}}, "eyes": { - "eyes": {"x": 29.54, "y": 27.4, "width": 333, "height": 159, "path": "bug-02.eyes"}, - "eyes-angry": {"x": 33.04, "y": 27.4, "width": 340, "height": 159, "path": "bug-02.eyes-angry"}, - "eyes-happy": {"x": 33.04, "y": 27.4, "width": 340, "height": 159, "path": "bug-02.eyes-happy"}, - "eyes-shut": {"x": 33.04, "y": 27.4, "width": 340, "height": 159, "path": "bug-02.eyes-shut"} + "eyes": {"x": 31.22, "y": 17.79, "width": 304, "height": 121, "path": "aquatic-06.eyes"}, + "eyes-angry": {"x": 31.22, "y": 17.79, "width": 304, "height": 121, "path": "aquatic-06.eyes-angry"}, + "eyes-happy": {"x": 31.22, "y": 17.79, "width": 304, "height": 121, "path": "aquatic-06.eyes-happy"}, + "eyes-shut": {"x": 31.22, "y": 17.79, "width": 304, "height": 121, "path": "aquatic-06.eyes-shut"} }, - "horn": {"horn": {"x": 94.4, "y": -2.54, "rotation": -90, "width": 237, "height": 195, "path": "bug-02.horn"}}, + "horn": {"horn": {"x": 58.232352941176465, "y": -47.84352941176471, "rotation": -90, "width": 228.23529411764707, "height": 157.64705882352942, "path": "aquatic-06.horn"}}, "mouth": { - "mouth": {"x": -28.96, "y": 89.9, "width": 168, "height": 76, "path": "bug-02.mouth"}, - "mouth-bite": {"x": -69.37, "y": 84.16, "width": 227, "height": 76, "path": "bug-02.mouth-bite"}, - "mouth-open": {"x": -1.96, "y": 95.9, "width": 118, "height": 82, "path": "bug-02.mouth-open"}, - "mouth-smile": {"x": -22.96, "y": 75.4, "width": 148, "height": 95, "path": "bug-02.mouth-smile"} + "mouth": {"x": 13.22, "y": 31.29, "width": 314, "height": 118, "path": "aquatic-06.mouth"}, + "mouth-bite": {"x": 12.72, "y": 40.79, "width": 361, "height": 97, "path": "aquatic-06.mouth-bite"}, + "mouth-open": {"x": 13.72, "y": 17.29, "width": 327, "height": 176, "path": "aquatic-06.mouth-open"}, + "mouth-smile": {"x": 11.72, "y": 36.29, "width": 333, "height": 110, "path": "aquatic-06.mouth-smile"} }, - "tail": {"tail": {"x": 90.11, "y": 1.61, "rotation": 42, "width": 200, "height": 198, "path": "bug-02.tail"}} + "tail": {"tail": {"x": 111.9935294117647, "y": -2.178235294117652, "rotation": -5, "width": 322.3529411764706, "height": 221.1764705882353, "path": "aquatic-06.tail"}} } } ], @@ -3135,40 +2929,36 @@ "activity/victory-pose-back-flip": "2227634241" } }, - "beast-mystic-02": { + "plant-02": { "bones": [ {"name": "@root"}, {"name": "@pivot-main", "parent": "@root"}, {"name": "@pivot-back", "parent": "@pivot-main", "x": 205, "y": 180, "color": "ff0101ff"}, {"name": "@pivot-center", "parent": "@pivot-back", "x": -215.11, "y": -5.25, "color": "ff0101ff"}, {"name": "@axie", "parent": "@pivot-center", "length": 213.28, "rotation": 179.04, "x": 196.39, "y": 5.16}, {"name": "@back", "parent": "@axie", "rotation": -179.04, "x": 37.63, "y": -198.19}, - {"name": "back", "parent": "@back", "length": 149.41, "rotation": 60, "x": -32.97, "y": 79.3, "transform": "noScale"}, + {"name": "back", "parent": "@back", "length": 149.41, "rotation": 64, "x": -51.97, "y": -9.7, "transform": "noScale"}, {"name": "@body", "parent": "@axie", "length": 226.28, "rotation": -8.35, "x": 224.58, "y": -0.53}, {"name": "@ear-left", "parent": "@axie", "rotation": -179.04, "x": 112.7, "y": -203.23}, - {"name": "ear-left", "parent": "@ear-left", "length": 113.61, "rotation": 88, "x": -30, "y": 39.08, "transform": "noScale"}, + {"name": "ear-left", "parent": "@ear-left", "length": 113.61, "rotation": 52, "x": -27, "y": -17, "transform": "noScale"}, {"name": "@ear-right", "parent": "@axie", "rotation": -179.04, "x": 405.28, "y": -235.33}, - {"name": "ear-right", "parent": "@ear-right", "length": 119.39, "rotation": 94, "x": -23, "transform": "noScale"}, + {"name": "ear-right", "parent": "@ear-right", "length": 119.39, "rotation": 93, "x": -40, "y": -54, "transform": "noScale"}, {"name": "@eyes", "parent": "@axie", "rotation": -179.04, "x": 384.24, "y": -113.67}, {"name": "@horn", "parent": "@axie", "rotation": -179.04, "x": 327.92, "y": -214.63}, {"name": "horn", "parent": "@horn", "length": 176.72, "rotation": 90, "y": 18, "transform": "noScale"}, {"name": "@leg-back-left", "parent": "@axie", "length": 76.4, "rotation": 100.96, "x": -15.3, "y": 102.56, "transform": "noScale"}, {"name": "@leg-front-left", "parent": "@axie", "length": 51.19, "rotation": 93.86, "x": 134.77, "y": 149.55, "transform": "noScale"}, {"name": "@leg-front-right", "parent": "@axie", "length": 74.83, "rotation": 83.2, "x": 382.95, "y": 121.78, "transform": "noScale"}, {"name": "@mouth", "parent": "@axie", "rotation": -179.04, "x": 382.23, "y": 6.31}, - {"name": "body-class", "parent": "@body", "rotation": -170.69, "x": -286.29, "y": -103.48, "transform": "noScale"}, {"name": "@shadow", "parent": "@root", "color": "e6d713ff"}, + {"name": "body-pattern", "parent": "@body", "rotation": -170.69, "x": -267.21, "y": -49.4, "transform": "noScale"}, {"name": "@shadow", "parent": "@root", "color": "e6d713ff"}, {"name": "@tail", "parent": "@axie", "rotation": -179.04, "x": -11.76, "y": 61.72}, - {"name": "tail", "parent": "@tail", "length": 203.67, "rotation": 15, "x": -6, "y": 10, "transform": "noScale"}, + {"name": "tail", "parent": "@tail", "length": 203.67, "rotation": 20, "x": 21, "y": 37, "transform": "noScale"}, {"name": "leg-front-right-IK", "parent": "@pivot-main", "x": -195.99, "y": -10.21, "color": "ff3f00ff"}, {"name": "leg-front-left-IK", "parent": "@pivot-main", "x": 42.3, "y": -18.42, "color": "ff3f00ff"}, {"name": "leg-back-left-IK", "parent": "@pivot-main", "x": 208.57, "y": 1.35, "color": "ff3f00ff"}, {"name": "@ball", "parent": "@root", "y": 191, "color": "f3981bff"}, - {"name": "ball", "parent": "@ball", "y": -191, "color": "f4a729ff"}, {"name": "body-id", "parent": "@body", "rotation": -170.69, "x": -290.82, "y": -75.84}, - {"name": "mouth-accessory", "parent": "@mouth", "x": 8.74, "y": 77.12}, {"name": "mouth-blink", "parent": "@mouth", "x": 80.68, "y": 82.83} + {"name": "ball", "parent": "@ball", "y": -191, "color": "f4a729ff"} ], "slots": [ - {"name": "shadow", "bone": "@shadow", "attachment": "shadow"}, {"name": "ball", "bone": "ball"}, - {"name": "leg-front-right", "bone": "@leg-front-right", "attachment": "mystic-leg-front-right"}, {"name": "ear-right", "bone": "ear-right", "attachment": "ear-right"}, - {"name": "tail", "bone": "tail", "attachment": "tail"}, {"name": "back", "bone": "back", "attachment": "back"}, - {"name": "leg-back-left", "bone": "@leg-back-left", "attachment": "mystic-leg-back-left"}, {"name": "body", "bone": "@body", "attachment": "body-mystic"}, - {"name": "body-class", "bone": "body-class", "attachment": "body-class-aquatic"}, {"name": "leg-front-left", "bone": "@leg-front-left", "attachment": "mystic-leg-front-left"}, - {"name": "eyes", "bone": "@eyes", "attachment": "eyes"}, {"name": "mouth", "bone": "@mouth", "attachment": "mouth"}, {"name": "ear-left", "bone": "ear-left", "attachment": "ear-left"}, - {"name": "horn", "bone": "horn", "attachment": "horn"}, {"name": "body-id", "bone": "body-id", "attachment": "body-id"}, {"name": "mouth-accessory", "bone": "mouth-accessory"}, - {"name": "mouth-blink", "bone": "mouth-blink"} + {"name": "shadow", "bone": "@shadow", "attachment": "shadow"}, {"name": "ball", "bone": "ball"}, {"name": "leg-front-right", "bone": "@leg-front-right", "attachment": "leg-front-right"}, + {"name": "ear-right", "bone": "ear-right", "attachment": "ear-right"}, {"name": "tail", "bone": "tail", "attachment": "tail"}, {"name": "back", "bone": "back", "attachment": "back"}, + {"name": "leg-back-left", "bone": "@leg-back-left", "attachment": "leg-back-left"}, {"name": "body", "bone": "@body", "attachment": "body"}, {"name": "body-pattern", "bone": "body-pattern"}, + {"name": "leg-front-left", "bone": "@leg-front-left", "attachment": "leg-front-left"}, {"name": "eyes", "bone": "@eyes", "attachment": "eyes"}, + {"name": "mouth", "bone": "@mouth", "attachment": "mouth"}, {"name": "ear-left", "bone": "ear-left", "attachment": "ear-left"}, {"name": "horn", "bone": "horn", "attachment": "horn"} ], "ik": [ {"name": "leg-back-left-IK", "order": 2, "bones": ["@leg-back-left"], "target": "leg-back-left-IK"}, @@ -3179,25 +2969,23 @@ { "name": "default", "attachments": { - "back": {"back": {"x": 146.33, "y": -21.13, "rotation": -60, "width": 258, "height": 273, "path": "beast-mystic-02.back"}}, - "ear-left": {"ear-left": {"x": 78.92, "y": -22.73, "rotation": -88, "width": 170, "height": 225, "path": "beast-mystic-02.ear-left"}}, - "ear-right": {"ear-right": {"x": 73.95, "y": -5.64, "rotation": -94, "width": 144, "height": 233, "path": "beast-mystic-02.ear-right"}}, + "back": {"back": {"x": 160.7305882352941, "y": 3.661764705882348, "rotation": -64, "width": 287.05882352941177, "height": 341.1764705882353, "path": "plant-02.back"}}, + "ear-left": {"ear-left": {"x": 84.60588235294118, "y": 1.380588235294116, "rotation": -52, "width": 150.58823529411765, "height": 167.05882352941177, "path": "plant-02.ear-left"}}, + "ear-right": {"ear-right": {"x": 72.01, "y": -0.43235294117647816, "rotation": -93, "width": 120.0, "height": 171.76470588235296, "path": "plant-02.ear-right"}}, "eyes": { - "eyes": {"x": 42.71, "y": 35.82, "width": 220, "height": 141, "path": "beast-mystic-02.eyes"}, - "eyes-angry": {"x": 37.71, "y": 35.82, "width": 230, "height": 141, "path": "beast-mystic-02.eyes-angry"}, - "eyes-happy": {"x": 43.21, "y": 40.32, "width": 219, "height": 150, "path": "beast-mystic-02.eyes-happy"}, - "eyes-shut": {"x": 46.21, "y": 35.82, "width": 213, "height": 141, "path": "beast-mystic-02.eyes-shut"} + "eyes": {"x": 23.153529411764694, "y": -11.010588235294119, "width": 282.3529411764706, "height": 32.94117647058824, "path": "plant-02.eyes"}, + "eyes-angry": {"x": 23.17, "y": 16.363529411764702, "width": 280.0, "height": 82.3529411764706, "path": "plant-02.eyes-angry"}, + "eyes-happy": {"x": 23.153529411764694, "y": -11.010588235294119, "width": 282.3529411764706, "height": 32.94117647058824, "path": "plant-02.eyes-happy"}, + "eyes-shut": {"x": 23.153529411764694, "y": -11.834117647058823, "width": 282.3529411764706, "height": 30.58823529411765, "path": "plant-02.eyes-shut"} }, - "horn": {"horn": {"x": 130.66, "y": 11.53, "rotation": -90, "width": 242, "height": 250, "path": "beast-mystic-02.horn"}}, + "horn": {"horn": {"x": 85.38529411764706, "y": -1.00647058823529, "rotation": -90, "width": 143.52941176470588, "height": 202.35294117647058, "path": "plant-02.horn"}}, "mouth": { - "mouth": {"x": 14.47, "y": 62.66, "width": 120, "height": 84, "path": "beast-mystic-02.mouth"}, - "mouth-bite": {"x": 34.47, "y": 54.16, "width": 278, "height": 117, "path": "beast-mystic-02.mouth-bite"}, - "mouth-open": {"x": 15.47, "y": 19.16, "width": 124, "height": 189, "path": "beast-mystic-02.mouth-open"}, - "mouth-smile": {"x": 14.97, "y": 61.66, "width": 161, "height": 104, "path": "beast-mystic-02.mouth-smile"} - }, - "mouth-accessory": {"mouth-accessory": {"x": -52.68, "y": 4.39, "width": 118, "height": 118, "path": "beast-mystic-02.mouth-accessory"}}, - "mouth-blink": {"mouth-smile-blink": {"x": -0.12, "y": -1.32, "width": 37, "height": 36, "path": "beast-mystic-02.mouth-smile-blink"}}, - "tail": {"tail": {"x": 117.61, "y": 33.36, "rotation": -15, "width": 247, "height": 232, "path": "beast-mystic-02.tail"}} + "mouth": {"x": 15.447647058823529, "y": 62.22470588235294, "width": 91.76470588235294, "height": 16.47058823529412, "path": "plant-02.mouth"}, + "mouth-bite": {"x": 17.15352941176471, "y": 45.81294117647059, "width": 202.35294117647058, "height": 75.29411764705883, "path": "plant-02.mouth-bite"}, + "mouth-open": {"x": 23.38882352941176, "y": 34.93058823529412, "width": 105.88235294117648, "height": 127.05882352941177, "path": "plant-02.mouth-open"}, + "mouth-smile": {"x": 21.624117647058817, "y": 58.46, "width": 89.41176470588236, "height": 40.0, "path": "plant-02.mouth-smile"} + }, + "tail": {"tail": {"x": 119.92823529411766, "y": -3.0370588235294202, "rotation": -20, "width": 298.8235294117647, "height": 235.29411764705884, "path": "plant-02.tail"}} } } ], @@ -3209,7 +2997,7 @@ "attack/ranged/cast-high": "164191126", "attack/ranged/cast-low": "198813017", "attack/ranged/cast-multi": "151119", - "attack/ranged/cast-tail": "3899988824", + "attack/ranged/cast-tail": "997902532", "activity/eat-bite": "1137807767", "activity/eat-chew": "1988236421", "activity/entrance": "3768378365", @@ -3226,17 +3014,17 @@ "attack/melee/mouth-bite": "2237748264", "action/move-back": "3766271173", "action/move-forward": "2945160014", - "attack/melee/multi-attack": "3861365989", + "attack/melee/multi-attack": "905926802", "action/idle/normal": "1659336865", "attack/melee/normal-attack": "3305373483", "activity/prepare": "405864717", "action/idle/random-01": "554401889", - "action/idle/random-02": "3888196768", + "action/idle/random-02": "1085666627", "action/idle/random-03": "2021333900", "action/idle/random-04": "1003789695", "action/idle/random-05": "2745614147", - "action/run": "3858829480", - "draft/run-origin": "3947527336", + "action/run": "1438840721", + "draft/run-origin": "3577885069", "attack/melee/shrimp": "3833448733", "activity/sleep": "100562494", "attack/melee/tail-multi-slap": "3317139533", @@ -3246,16 +3034,16 @@ "activity/victory-pose-back-flip": "2227634241" } }, - "reptile-12": { + "beast-04": { "bones": [ {"name": "@root"}, {"name": "@pivot-main", "parent": "@root"}, {"name": "@pivot-back", "parent": "@pivot-main", "x": 205, "y": 180, "color": "ff0101ff"}, {"name": "@pivot-center", "parent": "@pivot-back", "x": -215.11, "y": -5.25, "color": "ff0101ff"}, {"name": "@axie", "parent": "@pivot-center", "length": 213.28, "rotation": 179.04, "x": 196.39, "y": 5.16}, {"name": "@back", "parent": "@axie", "rotation": -179.04, "x": 37.63, "y": -198.19}, - {"name": "back", "parent": "@back", "length": 149.41, "rotation": 64, "x": -51.97, "y": -9.7, "transform": "noScale"}, + {"name": "back", "parent": "@back", "length": 149.41, "rotation": 58, "x": -13.97, "y": 26.3, "transform": "noScale"}, {"name": "@body", "parent": "@axie", "length": 226.28, "rotation": -8.35, "x": 224.58, "y": -0.53}, {"name": "@ear-left", "parent": "@axie", "rotation": -179.04, "x": 112.7, "y": -203.23}, - {"name": "ear-left", "parent": "@ear-left", "length": 113.61, "rotation": 52, "x": -27, "y": -17, "transform": "noScale"}, + {"name": "ear-left", "parent": "@ear-left", "length": 113.61, "rotation": 90, "x": -27, "y": 19, "transform": "noScale"}, {"name": "@ear-right", "parent": "@axie", "rotation": -179.04, "x": 405.28, "y": -235.33}, - {"name": "ear-right", "parent": "@ear-right", "length": 119.39, "rotation": 93, "x": -40, "y": -54, "transform": "noScale"}, + {"name": "ear-right", "parent": "@ear-right", "length": 119.39, "rotation": 93, "x": -30, "y": -15, "transform": "noScale"}, {"name": "@eyes", "parent": "@axie", "rotation": -179.04, "x": 384.24, "y": -113.67}, {"name": "@horn", "parent": "@axie", "rotation": -179.04, "x": 327.92, "y": -214.63}, {"name": "horn", "parent": "@horn", "length": 176.72, "rotation": 90, "y": 18, "transform": "noScale"}, {"name": "@leg-back-left", "parent": "@axie", "length": 76.4, "rotation": 100.96, "x": -15.3, "y": 102.56, "transform": "noScale"}, @@ -3264,7 +3052,7 @@ {"name": "@mouth", "parent": "@axie", "rotation": -179.04, "x": 382.23, "y": 6.31}, {"name": "body-pattern", "parent": "@body", "rotation": -170.69, "x": -267.21, "y": -49.4, "transform": "noScale"}, {"name": "@shadow", "parent": "@root", "color": "e6d713ff"}, {"name": "@tail", "parent": "@axie", "rotation": -179.04, "x": -11.76, "y": 61.72}, - {"name": "tail", "parent": "@tail", "length": 203.67, "rotation": -27, "x": 3, "y": 37, "transform": "noScale"}, + {"name": "tail", "parent": "@tail", "length": 203.67, "rotation": -12, "x": 16, "y": 72.87, "transform": "noScale"}, {"name": "leg-front-right-IK", "parent": "@pivot-main", "x": -195.99, "y": -10.21, "color": "ff3f00ff"}, {"name": "leg-front-left-IK", "parent": "@pivot-main", "x": 42.3, "y": -18.42, "color": "ff3f00ff"}, {"name": "leg-back-left-IK", "parent": "@pivot-main", "x": 208.57, "y": 1.35, "color": "ff3f00ff"}, {"name": "@ball", "parent": "@root", "y": 191, "color": "f3981bff"}, @@ -3272,8 +3060,9 @@ ], "slots": [ {"name": "shadow", "bone": "@shadow", "attachment": "shadow"}, {"name": "ball", "bone": "ball"}, {"name": "leg-front-right", "bone": "@leg-front-right", "attachment": "leg-front-right"}, - {"name": "ear-right", "bone": "ear-right", "attachment": "ear-right"}, {"name": "tail", "bone": "tail", "attachment": "tail"}, {"name": "back", "bone": "back", "attachment": "back"}, - {"name": "leg-back-left", "bone": "@leg-back-left", "attachment": "leg-back-left"}, {"name": "body", "bone": "@body", "attachment": "body"}, {"name": "body-pattern", "bone": "body-pattern"}, + {"name": "tail", "bone": "tail", "attachment": "tail"}, {"name": "back", "bone": "back", "attachment": "back"}, + {"name": "leg-back-left", "bone": "@leg-back-left", "attachment": "leg-back-left"}, {"name": "body", "bone": "@body", "attachment": "body"}, + {"name": "ear-right", "bone": "ear-right", "attachment": "ear-right"}, {"name": "body-pattern", "bone": "body-pattern"}, {"name": "leg-front-left", "bone": "@leg-front-left", "attachment": "leg-front-left"}, {"name": "eyes", "bone": "@eyes", "attachment": "eyes"}, {"name": "mouth", "bone": "@mouth", "attachment": "mouth"}, {"name": "ear-left", "bone": "ear-left", "attachment": "ear-left"}, {"name": "horn", "bone": "horn", "attachment": "horn"} ], @@ -3286,23 +3075,23 @@ { "name": "default", "attachments": { - "back": {"back": {"x": 88.71, "y": 16.35, "rotation": -64, "width": 268, "height": 259, "path": "reptile-12.back"}}, - "ear-left": {"ear-left": {"x": 46.4, "y": -37.72, "rotation": -52, "width": 160, "height": 145, "path": "reptile-12.ear-left"}}, - "ear-right": {"ear-right": {"x": 7.69, "y": 5.41, "rotation": -93, "width": 132, "height": 146, "path": "reptile-12.ear-right"}}, + "back": {"back": {"x": 49.944117647058825, "y": 114.15882352941176, "rotation": -58, "width": 249.41176470588235, "height": 225.88235294117646, "path": "beast-04.back"}}, + "ear-left": {"ear-left": {"x": 40.78647058823529, "y": -21.041764705882347, "rotation": -90, "width": 157.64705882352942, "height": 138.8235294117647, "path": "beast-04.ear-left"}}, + "ear-right": {"ear-right": {"x": 44.603529411764704, "y": 2.903529411764703, "rotation": -93, "width": 122.3529411764706, "height": 122.3529411764706, "path": "beast-04.ear-right"}}, "eyes": { - "eyes": {"x": 22.33, "y": -11.04, "width": 284, "height": 33, "path": "reptile-12.eyes"}, - "eyes-angry": {"x": 0.33, "y": -9.04, "width": 328, "height": 135, "path": "reptile-12.eyes-angry"}, - "eyes-happy": {"x": 22.33, "y": -11.04, "width": 284, "height": 33, "path": "reptile-12.eyes-happy"}, - "eyes-shut": {"x": 22.33, "y": -12.04, "width": 284, "height": 31, "path": "reptile-12.eyes-shut"} + "eyes": {"x": 23.747647058823535, "y": -17.33117647058824, "width": 291.7647058823529, "height": 65.88235294117648, "path": "beast-04.eyes"}, + "eyes-angry": {"x": 23.747647058823535, "y": 6.962941176470587, "width": 291.7647058823529, "height": 115.29411764705883, "path": "beast-04.eyes-angry"}, + "eyes-happy": {"x": 23.747647058823535, "y": 21.668823529411767, "width": 291.7647058823529, "height": 145.88235294117646, "path": "beast-04.eyes-happy"}, + "eyes-shut": {"x": 23.747647058823535, "y": -19.97823529411765, "width": 291.7647058823529, "height": 61.1764705882353, "path": "beast-04.eyes-shut"} }, - "horn": {"horn": {"x": 96.4, "y": -1.19, "rotation": -90, "width": 268, "height": 226, "path": "reptile-12.horn"}}, + "horn": {"horn": {"x": 58.49235294117647, "y": 7.54647058823529, "rotation": -90, "width": 108.23529411764706, "height": 157.64705882352942, "path": "beast-04.horn"}}, "mouth": { - "mouth": {"x": 14.33, "y": 61.96, "width": 94, "height": 17, "path": "reptile-12.mouth"}, - "mouth-bite": {"x": 16.33, "y": 45.46, "width": 204, "height": 76, "path": "reptile-12.mouth-bite"}, - "mouth-open": {"x": 22.83, "y": 34.46, "width": 107, "height": 128, "path": "reptile-12.mouth-open"}, - "mouth-smile": {"x": 20.83, "y": 57.96, "width": 91, "height": 41, "path": "reptile-12.mouth-smile"} + "mouth": {"x": 6.462352941176471, "y": 59.55882352941176, "width": 68.23529411764706, "height": 105.88235294117648, "path": "beast-04.mouth"}, + "mouth-bite": {"x": 21.815294117647056, "y": 52.14705882352941, "width": 103.52941176470588, "height": 124.70588235294117, "path": "beast-04.mouth-bite"}, + "mouth-open": {"x": 13.75647058823529, "y": 16.617647058823522, "width": 77.64705882352942, "height": 211.76470588235296, "path": "beast-04.mouth-open"}, + "mouth-smile": {"x": 8.932941176470587, "y": 59.205882352941174, "width": 75.29411764705883, "height": 110.58823529411765, "path": "beast-04.mouth-smile"} }, - "tail": {"tail": {"x": 103.68, "y": 9.5, "rotation": 27, "width": 311, "height": 184, "path": "reptile-12.tail"}} + "tail": {"tail": {"x": 87.53823529411764, "y": -54.656470588235294, "rotation": 12, "width": 178.82352941176472, "height": 122.3529411764706, "path": "beast-04.tail"}} } } ], @@ -3314,7 +3103,7 @@ "attack/ranged/cast-high": "164191126", "attack/ranged/cast-low": "198813017", "attack/ranged/cast-multi": "151119", - "attack/ranged/cast-tail": "997902532", + "attack/ranged/cast-tail": "1843465463", "activity/eat-bite": "1137807767", "activity/eat-chew": "1988236421", "activity/entrance": "3768378365", @@ -3336,7 +3125,7 @@ "attack/melee/normal-attack": "3305373483", "activity/prepare": "405864717", "action/idle/random-01": "554401889", - "action/idle/random-02": "1085666627", + "action/idle/random-02": "1001093024", "action/idle/random-03": "2021333900", "action/idle/random-04": "1003789695", "action/idle/random-05": "2745614147", @@ -3351,34 +3140,37 @@ "activity/victory-pose-back-flip": "2227634241" } }, - "body-normal": { + "agamo-01": { "bones": [ {"name": "@root"}, {"name": "@pivot-main", "parent": "@root"}, {"name": "@pivot-back", "parent": "@pivot-main", "x": 205, "y": 180, "color": "ff0101ff"}, {"name": "@pivot-center", "parent": "@pivot-back", "x": -215.11, "y": -5.25, "color": "ff0101ff"}, {"name": "@axie", "parent": "@pivot-center", "length": 213.28, "rotation": 179.04, "x": 196.39, "y": 5.16}, {"name": "@back", "parent": "@axie", "rotation": -179.04, "x": 37.63, "y": -198.19}, + {"name": "back", "parent": "@back", "length": 149.41, "rotation": 58, "x": -87.97, "y": 69.3, "transform": "noScale"}, {"name": "@body", "parent": "@axie", "length": 226.28, "rotation": -8.35, "x": 224.58, "y": -0.53}, {"name": "@ear-left", "parent": "@axie", "rotation": -179.04, "x": 112.7, "y": -203.23}, - {"name": "@ear-right", "parent": "@axie", "rotation": -179.04, "x": 405.28, "y": -235.33}, {"name": "@eyes", "parent": "@axie", "rotation": -179.04, "x": 384.24, "y": -113.67}, - {"name": "@horn", "parent": "@axie", "rotation": -179.04, "x": 327.92, "y": -214.63}, + {"name": "ear-left", "parent": "@ear-left", "length": 113.61, "rotation": 55, "x": -8, "y": 3, "transform": "noScale"}, + {"name": "@ear-right", "parent": "@axie", "rotation": -179.04, "x": 405.28, "y": -235.33}, + {"name": "ear-right", "parent": "@ear-right", "length": 119.39, "rotation": 120, "x": -11, "y": -35, "transform": "noScale"}, + {"name": "@eyes", "parent": "@axie", "rotation": -179.04, "x": 384.24, "y": -113.67}, {"name": "@horn", "parent": "@axie", "rotation": -179.04, "x": 327.92, "y": -214.63}, + {"name": "horn", "parent": "@horn", "length": 176.72, "rotation": 90, "y": 18, "transform": "noScale"}, {"name": "@leg-back-left", "parent": "@axie", "length": 76.4, "rotation": 100.96, "x": -15.3, "y": 102.56, "transform": "noScale"}, {"name": "@leg-front-left", "parent": "@axie", "length": 51.19, "rotation": 93.86, "x": 134.77, "y": 149.55, "transform": "noScale"}, {"name": "@leg-front-right", "parent": "@axie", "length": 74.83, "rotation": 83.2, "x": 382.95, "y": 121.78, "transform": "noScale"}, {"name": "@mouth", "parent": "@axie", "rotation": -179.04, "x": 382.23, "y": 6.31}, {"name": "body-pattern", "parent": "@body", "rotation": -170.69, "x": -267.21, "y": -49.4, "transform": "noScale"}, {"name": "@shadow", "parent": "@root", "color": "e6d713ff"}, - {"name": "@tail", "parent": "@axie", "rotation": -179.04, "x": -11.76, "y": 61.72}, {"name": "leg-front-right-IK", "parent": "@pivot-main", "x": -195.99, "y": -10.21, "color": "ff3f00ff"}, + {"name": "@tail", "parent": "@axie", "rotation": -179.04, "x": -11.76, "y": 61.72}, + {"name": "tail", "parent": "@tail", "length": 203.67, "rotation": -20, "x": -12, "y": 15, "transform": "noScale"}, + {"name": "leg-front-right-IK", "parent": "@pivot-main", "x": -195.99, "y": -10.21, "color": "ff3f00ff"}, {"name": "leg-front-left-IK", "parent": "@pivot-main", "x": 42.3, "y": -18.42, "color": "ff3f00ff"}, {"name": "leg-back-left-IK", "parent": "@pivot-main", "x": 208.57, "y": 1.35, "color": "ff3f00ff"}, {"name": "@ball", "parent": "@root", "y": 191, "color": "f3981bff"}, - {"name": "ball", "parent": "@ball", "y": -191, "color": "f4a729ff"}, {"name": "@body-neck", "parent": "@pivot-center", "x": -161.89, "y": -53.75, "color": "ff0101ff"}, - {"name": "@body-ground", "parent": "@pivot-main", "x": 220, "transform": "noRotationOrReflection", "color": "ff0101ff"}, - {"name": "@body-hip", "parent": "@pivot-center", "x": 240.11, "y": 55.25, "color": "ff0101ff"}, - {"name": "@body-air", "parent": "@pivot-back", "x": 63, "y": 365, "transform": "noRotationOrReflection", "color": "ff0101ff"}, - {"name": "@body-cheek", "parent": "@pivot-center", "x": 15.11, "y": 47.25, "color": "ff0101ff"} + {"name": "ball", "parent": "@ball", "y": -191, "color": "f4a729ff"} ], "slots": [ {"name": "shadow", "bone": "@shadow", "attachment": "shadow"}, {"name": "ball", "bone": "ball"}, {"name": "leg-front-right", "bone": "@leg-front-right", "attachment": "leg-front-right"}, - {"name": "leg-back-left", "bone": "@leg-back-left", "attachment": "leg-back-left"}, {"name": "body", "bone": "@body", "attachment": "body"}, {"name": "body-pattern", "bone": "body-pattern"}, - {"name": "body-hip", "bone": "@body-hip", "attachment": "body-hip"}, {"name": "leg-front-left", "bone": "@leg-front-left", "attachment": "leg-front-left"}, - {"name": "body-neck", "bone": "@body-neck", "attachment": "body-neck"}, {"name": "body-ground", "bone": "@body-ground", "attachment": "body-ground"}, - {"name": "body-air", "bone": "@body-air", "attachment": "body-air"}, {"name": "body-cheek", "bone": "@body-cheek", "attachment": "body-cheek"} + {"name": "ear-right", "bone": "ear-right", "attachment": "ear-right"}, {"name": "tail", "bone": "tail", "attachment": "tail"}, {"name": "back", "bone": "back", "attachment": "back"}, + {"name": "leg-back-left", "bone": "@leg-back-left", "attachment": "leg-back-left"}, {"name": "body", "bone": "@body", "attachment": "body"}, + {"name": "body-pattern", "bone": "body-pattern", "attachment": "body-pattern"}, {"name": "leg-front-left", "bone": "@leg-front-left", "attachment": "leg-front-left"}, + {"name": "eyes", "bone": "@eyes", "attachment": "eyes"}, {"name": "mouth", "bone": "@mouth", "attachment": "mouth"}, {"name": "ear-left", "bone": "ear-left", "attachment": "ear-left"}, + {"name": "horn", "bone": "horn", "attachment": "horn"} ], "ik": [ {"name": "leg-back-left-IK", "order": 2, "bones": ["@leg-back-left"], "target": "leg-back-left-IK"}, @@ -3389,74 +3181,23 @@ { "name": "default", "attachments": { - "ball": {"ball": {"y": 191, "width": 393, "height": 400, "path": "body-normal.ball"}}, - "body": {"body": {"x": -1.32, "y": -73.7, "rotation": -170.69, "width": 679, "height": 509, "path": "body-normal.body"}}, - "body-air": { - "body-air1a_00": {"x": 1.37, "y": 35.21, "width": 209.375, "height": 129.6875, "path": "body-accessory.body-air1a_00"}, - "body-air1a_01": {"x": 1.37, "y": 35.21, "width": 209.375, "height": 129.6875, "path": "body-accessory.body-air1a_01"}, - "body-air1a_02": {"x": 1.37, "y": 35.21, "width": 209.375, "height": 129.6875, "path": "body-accessory.body-air1a_02"}, - "body-air1a_03": {"x": 1.37, "y": 35.21, "width": 209.375, "height": 129.6875, "path": "body-accessory.body-air1a_03"}, - "body-air1a_04": {"x": 1.37, "y": 35.21, "width": 209.375, "height": 129.6875, "path": "body-accessory.body-air1a_04"}, - "body-air1a_05": {"x": 1.37, "y": 35.21, "width": 209.375, "height": 129.6875, "path": "body-accessory.body-air1a_05"}, - "body-air1a_06": {"x": 1.37, "y": 35.21, "width": 209.375, "height": 129.6875, "path": "body-accessory.body-air1a_06"}, - "body-air1a_07": {"x": 1.37, "y": 35.21, "width": 209.375, "height": 129.6875, "path": "body-accessory.body-air1a_07"}, - "body-air1b_00": {"x": 1.37, "y": 35.21, "width": 156.25, "height": 192.1875, "path": "body-accessory.body-air1b_00"}, - "body-air1b_01": {"x": 1.37, "y": 35.21, "width": 156.25, "height": 192.1875, "path": "body-accessory.body-air1b_01"}, - "body-air1b_02": {"x": 1.37, "y": 35.21, "width": 156.25, "height": 192.1875, "path": "body-accessory.body-air1b_02"}, - "body-air1c_00": {"x": 1.37, "y": 35.21, "width": 200.0, "height": 289.0625, "path": "body-accessory.body-air1c_00"}, - "body-air1c_01": {"x": 1.37, "y": 35.21, "width": 200.0, "height": 289.0625, "path": "body-accessory.body-air1c_01"}, - "body-air1c_02": {"x": 1.37, "y": 35.21, "width": 200.0, "height": 289.0625, "path": "body-accessory.body-air1c_02"}, - "body-air1c_03": {"x": 1.37, "y": 35.21, "width": 200.0, "height": 289.0625, "path": "body-accessory.body-air1c_03"}, - "body-air1d_00": {"x": 1.37, "y": 35.21, "width": 204.6875, "height": 273.4375, "path": "body-accessory.body-air1d_00"}, - "body-air1d_01": {"x": 1.37, "y": 35.21, "width": 204.6875, "height": 273.4375, "path": "body-accessory.body-air1d_01"}, - "body-air1d_02": {"x": 1.37, "y": 35.21, "width": 204.6875, "height": 273.4375, "path": "body-accessory.body-air1d_02"}, - "body-air1d_03": {"x": 1.37, "y": 35.21, "width": 204.6875, "height": 273.4375, "path": "body-accessory.body-air1d_03"} - }, - "body-cheek": { - "body-cheek1a": {"x": 1.52, "y": 3.04, "width": 60.9375, "height": 57.8125, "path": "body-accessory.body-cheek1a"}, - "body-cheek1b": {"x": 1.52, "y": 3.04, "width": 50.0, "height": 76.5625, "path": "body-accessory.body-cheek1b"}, - "body-cheek1c": {"x": 1.52, "y": 3.04, "width": 50.0, "height": 76.5625, "path": "body-accessory.body-cheek1c"}, - "body-cheek1d": {"x": 1.52, "y": 3.04, "width": 50.0, "height": 76.5625, "path": "body-accessory.body-cheek1d"}, - "body-cheek1e": {"x": 1.52, "y": 3.04, "width": 54.6875, "height": 79.6875, "path": "body-accessory.body-cheek1e"}, - "body-cheek1f": {"x": 1.52, "y": 3.04, "width": 56.25, "height": 57.8125, "path": "body-accessory.body-cheek1f"}, - "body-cheek1g": {"x": 1.52, "y": 3.04, "width": 104.6875, "height": 96.875, "path": "body-accessory.body-cheek1g"} - }, - "body-ground": { - "body-ground1a_00": {"x": 4.75, "y": 123.01, "width": 254.6875, "height": 275.0, "path": "body-accessory.body-ground1a_00"}, - "body-ground1a_01": {"x": 4.75, "y": 123.01, "width": 254.6875, "height": 275.0, "path": "body-accessory.body-ground1a_01"}, - "body-ground1a_02": {"x": 4.75, "y": 123.01, "width": 254.6875, "height": 275.0, "path": "body-accessory.body-ground1a_02"}, - "body-ground1a_03": {"x": 4.75, "y": 123.01, "width": 254.6875, "height": 275.0, "path": "body-accessory.body-ground1a_03"} - }, - "body-hip": { - "body-hip1a": {"x": -16, "width": 109.375, "height": 140.625, "path": "body-accessory.body-hip1a"}, - "body-hip1b": {"x": -16, "width": 210.9375, "height": 214.0625, "path": "body-accessory.body-hip1b"}, - "body-hip1c": {"x": -16, "width": 123.4375, "height": 157.8125, "path": "body-accessory.body-hip1c"}, - "body-hip1d": {"x": -16, "width": 203.125, "height": 143.75, "path": "body-accessory.body-hip1d"} - }, - "body-neck": { - "body-neck1a": {"x": -5.4, "y": -54.79, "width": 92.1875, "height": 96.875, "path": "body-accessory.body-neck1a"}, - "body-neck1b": {"x": -5.4, "y": -54.79, "width": 103.125, "height": 117.1875, "path": "body-accessory.body-neck1b"}, - "body-neck1c": {"x": -5.4, "y": -54.79, "width": 79.6875, "height": 110.9375, "path": "body-accessory.body-neck1c"}, - "body-neck1d": {"x": -5.4, "y": -54.79, "width": 121.875, "height": 101.5625, "path": "body-accessory.body-neck1d"}, - "body-neck1e": {"x": -5.4, "y": -54.79, "width": 89.0625, "height": 107.8125, "path": "body-accessory.body-neck1e"}, - "body-neck1f": {"x": -5.4, "y": -54.79, "width": 79.6875, "height": 79.6875, "path": "body-accessory.body-neck1f"} - }, - "leg-back-left": { - "leg-back-left": {"x": 32.56, "y": -0.8, "rotation": 83.45, "width": 80, "height": 94, "path": "body-normal.leg-back-left"}, - "leg-back-left-long": {"x": 34.89, "y": -5.5, "rotation": 221.45, "width": 85, "height": 82, "path": "body-normal.leg-back-left-long"}, - "leg-back-left-stretch": {"x": 27.29, "y": 1.58, "rotation": 54.45, "width": 67, "height": 70, "path": "body-normal.leg-back-left-stretch"} - }, - "leg-front-left": { - "leg-front-left": {"x": 21.98, "y": 1.18, "rotation": 97.51, "width": 72, "height": 63, "path": "body-normal.leg-front-left"}, - "leg-front-left-long": {"x": 27.48, "y": -6.04, "rotation": -173.75, "width": 89, "height": 77, "path": "body-normal.leg-front-left-long"}, - "leg-front-left-stretch": {"x": 19.24, "y": -3.96, "rotation": 142.15, "width": 70, "height": 77, "path": "body-normal.leg-front-left-stretch"} + "back": {"back": {"x": 100.2, "y": -38.65, "rotation": -58, "width": 367, "height": 260, "path": "agamo-01.back"}}, + "ear-left": {"ear-left": {"x": 75.25, "y": 5.84, "rotation": -55, "width": 130, "height": 195, "path": "agamo-01.ear-left"}}, + "ear-right": {"ear-right": {"x": 74.7, "y": -6.61, "rotation": -120, "width": 130, "height": 195, "path": "agamo-01.ear-right"}}, + "eyes": { + "eyes": {"x": 49.88, "y": 29.99, "width": 327, "height": 121, "path": "agamo-01.eyes"}, + "eyes-angry": {"x": 49.88, "y": 29.99, "width": 327, "height": 121, "path": "agamo-01.eyes-angry"}, + "eyes-happy": {"x": 49.88, "y": 29.99, "width": 327, "height": 121, "path": "agamo-01.eyes-happy"}, + "eyes-shut": {"x": 49.88, "y": 29.99, "width": 327, "height": 121, "path": "agamo-01.eyes-shut"} }, - "leg-front-right": { - "leg-front-right": {"x": 31.35, "y": -1.66, "rotation": 87.96, "width": 80, "height": 94, "path": "body-normal.leg-front-right"}, - "leg-front-right-long": {"x": 36.56, "y": -0.65, "rotation": 205.96, "width": 89, "height": 77, "path": "body-normal.leg-front-right-long"}, - "leg-front-right-stretch": {"x": 30.65, "y": 1.81, "rotation": 142.01, "width": 81, "height": 69, "path": "body-normal.leg-front-right-stretch"} + "horn": {"horn": {"x": 120.72529411764705, "y": 15.267058823529405, "rotation": -90, "width": 143.52941176470588, "height": 204.7058823529412, "path": "agamo-01.horn"}}, + "mouth": { + "mouth": {"x": 14.88, "y": 54.49, "width": 135, "height": 74, "path": "agamo-01.mouth"}, + "mouth-bite": {"x": 13.88, "y": 59.49, "width": 133, "height": 66, "path": "agamo-01.mouth-bite"}, + "mouth-open": {"x": 15.38, "y": 47.99, "width": 178, "height": 109, "path": "agamo-01.mouth-open"}, + "mouth-smile": {"x": 19.38, "y": 56.49, "width": 228, "height": 68, "path": "agamo-01.mouth-smile"} }, - "shadow": {"shadow": {"width": 946, "height": 191, "path": "body-normal.shadow"}} + "tail": {"tail": {"x": 81.05, "y": 16.72, "rotation": 20, "width": 233, "height": 201, "path": "agamo-01.tail"}} } } ], @@ -3505,33 +3246,188 @@ "activity/victory-pose-back-flip": "2227634241" } }, - "plant-10": { + "body-spiky": { "bones": [ {"name": "@root"}, {"name": "@pivot-main", "parent": "@root"}, {"name": "@pivot-back", "parent": "@pivot-main", "x": 205, "y": 180, "color": "ff0101ff"}, {"name": "@pivot-center", "parent": "@pivot-back", "x": -215.11, "y": -5.25, "color": "ff0101ff"}, {"name": "@axie", "parent": "@pivot-center", "length": 213.28, "rotation": 179.04, "x": 196.39, "y": 5.16}, {"name": "@back", "parent": "@axie", "rotation": -179.04, "x": 37.63, "y": -198.19}, - {"name": "back", "parent": "@back", "length": 149.41, "rotation": 58, "x": -15.97, "y": 46.3, "transform": "noScale"}, {"name": "@body", "parent": "@axie", "length": 226.28, "rotation": -8.35, "x": 224.58, "y": -0.53}, {"name": "@ear-left", "parent": "@axie", "rotation": -179.04, "x": 112.7, "y": -203.23}, - {"name": "ear-left", "parent": "@ear-left", "length": 113.61, "rotation": 46, "x": -7, "y": -73, "transform": "noScale"}, - {"name": "@ear-right", "parent": "@axie", "rotation": -179.04, "x": 405.28, "y": -235.33}, - {"name": "ear-right", "parent": "@ear-right", "length": 119.39, "rotation": 133, "x": -77, "y": -96, "transform": "noScale"}, - {"name": "@eyes", "parent": "@axie", "rotation": -179.04, "x": 384.24, "y": -113.67}, {"name": "@horn", "parent": "@axie", "rotation": -179.04, "x": 327.92, "y": -214.63}, - {"name": "horn", "parent": "@horn", "length": 176.72, "rotation": 90, "y": 18, "transform": "noScale"}, + {"name": "@ear-right", "parent": "@axie", "rotation": -179.04, "x": 405.28, "y": -235.33}, {"name": "@eyes", "parent": "@axie", "rotation": -179.04, "x": 384.24, "y": -113.67}, + {"name": "@horn", "parent": "@axie", "rotation": -179.04, "x": 327.92, "y": -214.63}, {"name": "@leg-back-left", "parent": "@axie", "length": 76.4, "rotation": 100.96, "x": -15.3, "y": 102.56, "transform": "noScale"}, {"name": "@leg-front-left", "parent": "@axie", "length": 51.19, "rotation": 93.86, "x": 134.77, "y": 149.55, "transform": "noScale"}, {"name": "@leg-front-right", "parent": "@axie", "length": 74.83, "rotation": 83.2, "x": 382.95, "y": 121.78, "transform": "noScale"}, {"name": "@mouth", "parent": "@axie", "rotation": -179.04, "x": 382.23, "y": 6.31}, {"name": "body-pattern", "parent": "@body", "rotation": -170.69, "x": -267.21, "y": -49.4, "transform": "noScale"}, {"name": "@shadow", "parent": "@root", "color": "e6d713ff"}, - {"name": "@tail", "parent": "@axie", "rotation": -179.04, "x": -11.76, "y": 61.72}, - {"name": "tail", "parent": "@tail", "length": 203.67, "rotation": 42, "x": 39, "y": -22, "transform": "noScale"}, - {"name": "leg-front-right-IK", "parent": "@pivot-main", "x": -195.99, "y": -10.21, "color": "ff3f00ff"}, + {"name": "@tail", "parent": "@axie", "rotation": -179.04, "x": -11.76, "y": 61.72}, {"name": "leg-front-right-IK", "parent": "@pivot-main", "x": -195.99, "y": -10.21, "color": "ff3f00ff"}, + {"name": "leg-front-left-IK", "parent": "@pivot-main", "x": 42.3, "y": -18.42, "color": "ff3f00ff"}, + {"name": "leg-back-left-IK", "parent": "@pivot-main", "x": 208.57, "y": 1.35, "color": "ff3f00ff"}, {"name": "@ball", "parent": "@root", "y": 191, "color": "f3981bff"}, + {"name": "ball", "parent": "@ball", "y": -191, "color": "f4a729ff"}, {"name": "@body-neck", "parent": "@pivot-center", "x": -161.89, "y": -53.75, "color": "ff0101ff"}, + {"name": "@body-ground", "parent": "@pivot-main", "x": 220, "transform": "noRotationOrReflection", "color": "ff0101ff"}, + {"name": "@body-air", "parent": "@pivot-back", "x": 63, "y": 365, "transform": "noRotationOrReflection", "color": "ff0101ff"}, + {"name": "@body-cheek", "parent": "@pivot-center", "x": 15.11, "y": 47.25, "color": "ff0101ff"} + ], + "slots": [ + {"name": "shadow", "bone": "@shadow", "attachment": "shadow"}, {"name": "ball", "bone": "ball"}, {"name": "leg-front-right", "bone": "@leg-front-right", "attachment": "leg-front-right"}, + {"name": "leg-back-left", "bone": "@leg-back-left", "attachment": "leg-back-left"}, {"name": "body", "bone": "@body", "attachment": "body-spiky"}, + {"name": "body-pattern", "bone": "body-pattern"}, {"name": "leg-front-left", "bone": "@leg-front-left", "attachment": "leg-front-left"}, + {"name": "body-neck", "bone": "@body-neck", "attachment": "body-neck"}, {"name": "body-ground", "bone": "@body-ground", "attachment": "body-ground"}, + {"name": "body-air", "bone": "@body-air", "attachment": "body-air"}, {"name": "body-cheek", "bone": "@body-cheek", "attachment": "body-cheek"} + ], + "ik": [ + {"name": "leg-back-left-IK", "order": 2, "bones": ["@leg-back-left"], "target": "leg-back-left-IK"}, + {"name": "leg-front-left-IK", "order": 1, "bones": ["@leg-front-left"], "target": "leg-front-left-IK"}, + {"name": "leg-front-right-IK", "bones": ["@leg-front-right"], "target": "leg-front-right-IK"} + ], + "skins": [ + { + "name": "default", + "attachments": { + "ball": {"ball": {"y": 186.0, "width": 392.94117647058823, "height": 400.0, "path": "body-normal.ball", "x": 0.029411764705884025}}, + "body": {"body-spiky": {"x": -15.250588235294146, "y": -92.86, "rotation": -170.69, "width": 712.9411764705883, "height": 560.0, "path": "body-spiky.body-spiky"}}, + "leg-back-left": { + "leg-back-left": {"x": 32.56, "y": 0.31764705882352895, "rotation": 83.45, "width": 80.0, "height": 91.76470588235294, "path": "body-normal.leg-back-left"}, + "leg-back-left-long": {"x": 35.037058823529414, "y": -4.5, "rotation": 221.45, "width": 84.70588235294117, "height": 80.0, "path": "body-normal.leg-back-left-long"}, + "leg-back-left-stretch": { + "x": 27.84882352941176, "y": 2.462352941176471, "rotation": 54.45, "width": 65.88235294117648, "height": 68.23529411764706, "path": "body-normal.leg-back-left-stretch" + } + }, + "leg-front-left": { + "leg-front-left": {"x": 22.685882352941174, "y": 2.091764705882351, "rotation": 97.51, "width": 70.58823529411765, "height": 61.1764705882353, "path": "body-normal.leg-front-left"}, + "leg-front-left-long": { + "x": 28.450588235294116, "y": -5.187058823529413, "rotation": -173.75, "width": 87.05882352941177, "height": 75.29411764705883, "path": "body-normal.leg-front-left-long" + }, + "leg-front-left-stretch": { + "x": 20.12235294117647, "y": -3.107058823529413, "rotation": 142.15, "width": 68.23529411764706, "height": 75.29411764705883, "path": "body-normal.leg-front-left-stretch" + } + }, + "leg-front-right": { + "leg-front-right": {"x": 31.35, "y": -0.5423529411764709, "rotation": 87.96, "width": 80.0, "height": 91.76470588235294, "path": "body-normal.leg-front-right"}, + "leg-front-right-long": { + "x": 37.53058823529412, "y": 0.20294117647058696, "rotation": 205.96, "width": 87.05882352941177, "height": 75.29411764705883, "path": "body-normal.leg-front-right-long" + }, + "leg-front-right-stretch": {"x": 31.15, "y": 2.192352941176471, "rotation": 142.01, "width": 80.0, "height": 68.23529411764706, "path": "body-normal.leg-front-right-stretch"} + }, + "shadow": {"shadow": {"width": 945.8823529411765, "height": 190.58823529411765, "path": "body-spiky.shadow", "x": 0.05882352941176805, "y": 0.20588235294117396}}, + "body-air": { + "body-air1a_00": {"x": 1.37, "y": 35.21, "width": 209.41176470588235, "height": 129.41176470588235, "path": "body-accessory.body-air1a_00"}, + "body-air1a_01": {"x": 1.37, "y": 35.21, "width": 209.41176470588235, "height": 129.41176470588235, "path": "body-accessory.body-air1a_01"}, + "body-air1a_02": {"x": 1.37, "y": 35.21, "width": 209.41176470588235, "height": 129.41176470588235, "path": "body-accessory.body-air1a_02"}, + "body-air1a_03": {"x": 1.37, "y": 35.21, "width": 209.41176470588235, "height": 129.41176470588235, "path": "body-accessory.body-air1a_03"}, + "body-air1a_04": {"x": 1.37, "y": 35.21, "width": 209.41176470588235, "height": 129.41176470588235, "path": "body-accessory.body-air1a_04"}, + "body-air1a_05": {"x": 1.37, "y": 35.21, "width": 209.41176470588235, "height": 129.41176470588235, "path": "body-accessory.body-air1a_05"}, + "body-air1a_06": {"x": 1.37, "y": 35.21, "width": 209.41176470588235, "height": 129.41176470588235, "path": "body-accessory.body-air1a_06"}, + "body-air1a_07": {"x": 1.37, "y": 35.21, "width": 209.41176470588235, "height": 129.41176470588235, "path": "body-accessory.body-air1a_07"}, + "body-air1b_00": {"x": 1.37, "y": 35.21, "width": 155.29411764705884, "height": 192.94117647058823, "path": "body-accessory.body-air1b_00"}, + "body-air1b_01": {"x": 1.37, "y": 35.21, "width": 155.29411764705884, "height": 192.94117647058823, "path": "body-accessory.body-air1b_01"}, + "body-air1b_02": {"x": 1.37, "y": 35.21, "width": 155.29411764705884, "height": 192.94117647058823, "path": "body-accessory.body-air1b_02"}, + "body-air1c_00": {"x": 1.37, "y": 35.21, "width": 200.0, "height": 289.4117647058824, "path": "body-accessory.body-air1c_00"}, + "body-air1c_01": {"x": 1.37, "y": 35.21, "width": 200.0, "height": 289.4117647058824, "path": "body-accessory.body-air1c_01"}, + "body-air1c_02": {"x": 1.37, "y": 35.21, "width": 200.0, "height": 289.4117647058824, "path": "body-accessory.body-air1c_02"}, + "body-air1c_03": {"x": 1.37, "y": 35.21, "width": 200.0, "height": 289.4117647058824, "path": "body-accessory.body-air1c_03"}, + "body-air1d_00": {"x": 1.37, "y": 35.21, "width": 204.7058823529412, "height": 272.94117647058823, "path": "body-accessory.body-air1d_00"}, + "body-air1d_01": {"x": 1.37, "y": 35.21, "width": 204.7058823529412, "height": 272.94117647058823, "path": "body-accessory.body-air1d_01"}, + "body-air1d_02": {"x": 1.37, "y": 35.21, "width": 204.7058823529412, "height": 272.94117647058823, "path": "body-accessory.body-air1d_02"}, + "body-air1d_03": {"x": 1.37, "y": 35.21, "width": 204.7058823529412, "height": 272.94117647058823, "path": "body-accessory.body-air1d_03"} + }, + "body-cheek": { + "body-cheek1a": {"x": 1.52, "y": 3.04, "width": 58.82352941176471, "height": 58.82352941176471, "path": "body-accessory.body-cheek1a"}, + "body-cheek1b": {"x": 1.52, "y": 3.04, "width": 49.411764705882355, "height": 77.64705882352942, "path": "body-accessory.body-cheek1b"}, + "body-cheek1c": {"x": 1.52, "y": 3.04, "width": 49.411764705882355, "height": 77.64705882352942, "path": "body-accessory.body-cheek1c"}, + "body-cheek1d": {"x": 1.52, "y": 3.04, "width": 49.411764705882355, "height": 75.29411764705883, "path": "body-accessory.body-cheek1d"}, + "body-cheek1e": {"x": 1.52, "y": 3.04, "width": 54.11764705882353, "height": 80.0, "path": "body-accessory.body-cheek1e"}, + "body-cheek1f": {"x": 1.52, "y": 3.04, "width": 56.470588235294116, "height": 58.82352941176471, "path": "body-accessory.body-cheek1f"}, + "body-cheek1g": {"x": 1.52, "y": 3.04, "width": 103.52941176470588, "height": 96.47058823529412, "path": "body-accessory.body-cheek1g"} + }, + "body-ground": { + "body-ground1a_00": {"x": 4.75, "y": 123.01, "width": 254.11764705882354, "height": 272.94117647058823, "path": "body-accessory.body-ground1a_00"}, + "body-ground1a_01": {"x": 4.75, "y": 123.01, "width": 254.11764705882354, "height": 272.94117647058823, "path": "body-accessory.body-ground1a_01"}, + "body-ground1a_02": {"x": 4.75, "y": 123.01, "width": 254.11764705882354, "height": 272.94117647058823, "path": "body-accessory.body-ground1a_02"}, + "body-ground1a_03": {"x": 4.75, "y": 123.01, "width": 254.11764705882354, "height": 272.94117647058823, "path": "body-accessory.body-ground1a_03"} + }, + "body-neck": { + "body-neck1a": {"x": -5.4, "y": -54.79, "width": 91.76470588235294, "height": 96.47058823529412, "path": "body-accessory.body-neck1a"}, + "body-neck1b": {"x": -5.4, "y": -54.79, "width": 103.52941176470588, "height": 117.64705882352942, "path": "body-accessory.body-neck1b"}, + "body-neck1c": {"x": -5.4, "y": -54.79, "width": 80.0, "height": 110.58823529411765, "path": "body-accessory.body-neck1c"}, + "body-neck1d": {"x": -5.4, "y": -54.79, "width": 122.3529411764706, "height": 101.17647058823529, "path": "body-accessory.body-neck1d"}, + "body-neck1e": {"x": -5.4, "y": -54.79, "width": 89.41176470588236, "height": 105.88235294117648, "path": "body-accessory.body-neck1e"}, + "body-neck1f": {"x": -5.4, "y": -54.79, "width": 80.0, "height": 80.0, "path": "body-accessory.body-neck1f"} + } + } + } + ], + "events": {"hit": {}, "hit-buff": {}, "jump": {}, "start-attack": {}}, + "keyAnimations": { + "activity/appear": "1023093953", + "activity/bath": "3305387968", + "attack/ranged/cast-fly": "4180526371", + "attack/ranged/cast-high": "164191126", + "attack/ranged/cast-low": "198813017", + "attack/ranged/cast-multi": "151119", + "attack/ranged/cast-tail": "997902532", + "activity/eat-bite": "1137807767", + "activity/eat-chew": "1988236421", + "activity/entrance": "3768378365", + "defense/evade": "1735454995", + "activity/evolve": "649307630", + "battle/get-buff": "1455190363", + "battle/get-debuff": "606904312", + "defense/hit-by-normal": "2045974966", + "defense/hit-by-normal-crit": "2130010601", + "defense/hit-by-normal-dramatic": "3823092125", + "defense/hit-by-ranged-attack": "2224561612", + "defense/hit-with-shield": "390714790", + "attack/melee/horn-gore": "1327954218", + "attack/melee/mouth-bite": "2237748264", + "action/move-back": "3766271173", + "action/move-forward": "2945160014", + "attack/melee/multi-attack": "905926802", + "action/idle/normal": "1659336865", + "attack/melee/normal-attack": "3305373483", + "activity/prepare": "405864717", + "action/idle/random-01": "554401889", + "action/idle/random-02": "1085666627", + "action/idle/random-03": "2021333900", + "action/idle/random-04": "1003789695", + "action/idle/random-05": "2745614147", + "action/run": "1438840721", + "draft/run-origin": "3577885069", + "attack/melee/shrimp": "3833448733", + "activity/sleep": "100562494", + "attack/melee/tail-multi-slap": "3317139533", + "attack/melee/tail-roll": "3108617565", + "attack/melee/tail-smash": "519942130", + "attack/melee/tail-thrash": "628713175", + "activity/victory-pose-back-flip": "2227634241" + } + }, + "bird-02": { + "bones": [ + {"name": "@root"}, {"name": "@pivot-main", "parent": "@root"}, {"name": "@pivot-back", "parent": "@pivot-main", "x": 205, "y": 180, "color": "ff0101ff"}, + {"name": "@pivot-center", "parent": "@pivot-back", "x": -215.11, "y": -5.25, "color": "ff0101ff"}, + {"name": "@axie", "parent": "@pivot-center", "length": 213.28, "rotation": 179.04, "x": 196.39, "y": 5.16}, {"name": "@back", "parent": "@axie", "rotation": -179.04, "x": 37.63, "y": -198.19}, + {"name": "back", "parent": "@back", "length": 149.41, "rotation": 73, "x": 6.03, "y": 11.3, "transform": "noScale"}, + {"name": "@body", "parent": "@axie", "length": 226.28, "rotation": -8.35, "x": 224.58, "y": -0.53}, {"name": "@ear-left", "parent": "@axie", "rotation": -179.04, "x": 112.7, "y": -203.23}, + {"name": "ear-left", "parent": "@ear-left", "length": 113.61, "rotation": 90, "x": 5, "y": -45, "transform": "noScale"}, + {"name": "@ear-right", "parent": "@axie", "rotation": -179.04, "x": 405.28, "y": -235.33}, + {"name": "ear-right", "parent": "@ear-right", "length": 119.39, "rotation": 93, "x": -30, "y": -15, "transform": "noScale"}, + {"name": "@eyes", "parent": "@axie", "rotation": -179.04, "x": 384.24, "y": -113.67}, {"name": "@horn", "parent": "@axie", "rotation": -179.04, "x": 327.92, "y": -214.63}, + {"name": "horn", "parent": "@horn", "length": 176.72, "rotation": 90, "y": 18, "transform": "noScale"}, + {"name": "@leg-back-left", "parent": "@axie", "length": 76.4, "rotation": 100.96, "x": -15.3, "y": 102.56, "transform": "noScale"}, + {"name": "@leg-front-left", "parent": "@axie", "length": 51.19, "rotation": 93.86, "x": 134.77, "y": 149.55, "transform": "noScale"}, + {"name": "@leg-front-right", "parent": "@axie", "length": 74.83, "rotation": 83.2, "x": 382.95, "y": 121.78, "transform": "noScale"}, + {"name": "@mouth", "parent": "@axie", "rotation": -179.04, "x": 382.23, "y": 6.31}, + {"name": "body-pattern", "parent": "@body", "rotation": -170.69, "x": -267.21, "y": -49.4, "transform": "noScale"}, {"name": "@shadow", "parent": "@root", "color": "e6d713ff"}, + {"name": "@tail", "parent": "@axie", "rotation": -179.04, "x": -11.76, "y": 61.72}, + {"name": "tail", "parent": "@tail", "length": 203.67, "rotation": -12, "x": 16, "y": 72.87, "transform": "noScale"}, + {"name": "leg-front-right-IK", "parent": "@pivot-main", "x": -195.99, "y": -10.21, "color": "ff3f00ff"}, {"name": "leg-front-left-IK", "parent": "@pivot-main", "x": 42.3, "y": -18.42, "color": "ff3f00ff"}, {"name": "leg-back-left-IK", "parent": "@pivot-main", "x": 208.57, "y": 1.35, "color": "ff3f00ff"}, {"name": "@ball", "parent": "@root", "y": 191, "color": "f3981bff"}, {"name": "ball", "parent": "@ball", "y": -191, "color": "f4a729ff"} ], "slots": [ {"name": "shadow", "bone": "@shadow", "attachment": "shadow"}, {"name": "ball", "bone": "ball"}, {"name": "leg-front-right", "bone": "@leg-front-right", "attachment": "leg-front-right"}, - {"name": "ear-right", "bone": "ear-right", "attachment": "ear-right"}, {"name": "tail", "bone": "tail", "attachment": "tail"}, {"name": "back", "bone": "back", "attachment": "back"}, + {"name": "ear-right", "bone": "ear-right"}, {"name": "tail", "bone": "tail", "attachment": "tail"}, {"name": "back", "bone": "back", "attachment": "back"}, {"name": "leg-back-left", "bone": "@leg-back-left", "attachment": "leg-back-left"}, {"name": "body", "bone": "@body", "attachment": "body"}, {"name": "body-pattern", "bone": "body-pattern"}, {"name": "leg-front-left", "bone": "@leg-front-left", "attachment": "leg-front-left"}, {"name": "eyes", "bone": "@eyes", "attachment": "eyes"}, {"name": "mouth", "bone": "@mouth", "attachment": "mouth"}, {"name": "ear-left", "bone": "ear-left", "attachment": "ear-left"}, {"name": "horn", "bone": "horn", "attachment": "horn"} @@ -3545,23 +3441,22 @@ { "name": "default", "attachments": { - "back": {"back": {"x": 48.56, "y": 22.17, "rotation": -58, "width": 283, "height": 365, "path": "plant-10.back"}}, - "ear-left": {"ear-left": {"x": 69.57, "y": 20.02, "rotation": -46, "width": 137, "height": 185, "path": "plant-10.ear-left"}}, - "ear-right": {"ear-right": {"x": 23.95, "y": 3.06, "rotation": -133, "width": 114, "height": 146, "path": "plant-10.ear-right"}}, + "back": {"back": {"x": 177.4864705882353, "y": 11.719411764705884, "rotation": -73, "width": 237.64705882352942, "height": 352.94117647058823, "path": "bird-02.back"}}, + "ear-left": {"ear-left": {"x": 3.009411764705884, "y": 1.5164705882352898, "rotation": -90, "width": 112.94117647058823, "height": 117.64705882352942, "path": "bird-02.ear-left"}}, "eyes": { - "eyes": {"x": 21.93, "y": -1.07, "width": 269, "height": 119, "path": "plant-10.eyes"}, - "eyes-angry": {"x": 21.93, "y": -1.07, "width": 269, "height": 119, "path": "plant-10.eyes-angry"}, - "eyes-happy": {"x": 21.93, "y": -1.07, "width": 269, "height": 119, "path": "plant-10.eyes-happy"}, - "eyes-shut": {"x": 21.93, "y": -1.07, "width": 269, "height": 119, "path": "plant-10.eyes-shut"} + "eyes": {"x": 28.777647058823536, "y": 18.244705882352942, "width": 291.7647058823529, "height": 96.47058823529412, "path": "bird-02.eyes"}, + "eyes-angry": {"x": 28.777647058823536, "y": 18.244705882352942, "width": 291.7647058823529, "height": 96.47058823529412, "path": "bird-02.eyes-angry"}, + "eyes-happy": {"x": 28.777647058823536, "y": 16.068235294117645, "width": 291.7647058823529, "height": 58.82352941176471, "path": "bird-02.eyes-happy"}, + "eyes-shut": {"x": 27.130588235294116, "y": 8.950588235294116, "width": 287.05882352941177, "height": 47.05882352941177, "path": "bird-02.eyes-shut"} }, - "horn": {"horn": {"x": 92.35, "y": 7.57, "rotation": -90, "width": 206, "height": 228, "path": "plant-10.horn"}}, + "horn": {"horn": {"x": 68.48, "y": -30.601176470588232, "rotation": -90, "width": 240.0, "height": 185.88235294117646, "path": "bird-02.horn"}}, "mouth": { - "mouth": {"x": 27.35, "y": 12.29, "width": 174, "height": 190, "path": "plant-10.mouth"}, - "mouth-bite": {"x": 27.35, "y": 12.29, "width": 174, "height": 190, "path": "plant-10.mouth-bite"}, - "mouth-open": {"x": 25.46, "y": 11.97, "width": 178, "height": 190, "path": "plant-10.mouth-open"}, - "mouth-smile": {"x": 27.43, "y": 12.43, "width": 174, "height": 190, "path": "plant-10.mouth-smile"} + "mouth": {"x": 3.248235294117645, "y": 68.30352941176471, "width": 98.82352941176471, "height": 122.3529411764706, "path": "bird-02.mouth"}, + "mouth-bite": {"x": 9.248235294117652, "y": 74.18588235294118, "width": 138.8235294117647, "height": 110.58823529411765, "path": "bird-02.mouth-bite"}, + "mouth-open": {"x": 3.248235294117645, "y": 56.068235294117635, "width": 98.82352941176471, "height": 178.82352941176472, "path": "bird-02.mouth-open"}, + "mouth-smile": {"x": 11.83647058823529, "y": 68.30352941176471, "width": 117.64705882352942, "height": 122.3529411764706, "path": "bird-02.mouth-smile"} }, - "tail": {"tail": {"x": 115.88, "y": -24.38, "rotation": -42, "width": 266, "height": 188, "path": "plant-10.tail"}} + "tail": {"tail": {"x": 140.75470588235294, "y": 22.849411764705884, "rotation": 12, "width": 256.47058823529414, "height": 232.94117647058823, "path": "bird-02.tail"}} } } ], @@ -3610,7 +3505,7 @@ "activity/victory-pose-back-flip": "2227634241" } }, - "beast-10": { + "beast-02": { "bones": [ {"name": "@root"}, {"name": "@pivot-main", "parent": "@root"}, {"name": "@pivot-back", "parent": "@pivot-main", "x": 205, "y": 180, "color": "ff0101ff"}, {"name": "@pivot-center", "parent": "@pivot-back", "x": -215.11, "y": -5.25, "color": "ff0101ff"}, @@ -3651,23 +3546,23 @@ { "name": "default", "attachments": { - "back": {"back": {"x": 58.33, "y": 38.98, "rotation": -58, "width": 351, "height": 372, "path": "beast-10.back"}}, - "ear-left": {"ear-left": {"x": 64.61, "y": 3.25, "rotation": -90, "width": 129, "height": 110, "path": "beast-10.ear-left"}}, - "ear-right": {"ear-right": {"x": 58.88, "y": 3.57, "rotation": -93, "width": 128, "height": 113, "path": "beast-10.ear-right"}}, + "back": {"back": {"x": 109.62882352941176, "y": -7.9105882352941155, "rotation": -58, "width": 225.88235294117646, "height": 232.94117647058823, "path": "beast-02.back"}}, + "ear-left": {"ear-left": {"x": 82.91823529411764, "y": -21.914117647058827, "rotation": -90, "width": 178.82352941176472, "height": 230.58823529411765, "path": "beast-02.ear-left"}}, + "ear-right": {"ear-right": {"x": 78.79529411764706, "y": -6.181176470588232, "rotation": -93, "width": 143.52941176470588, "height": 225.88235294117646, "path": "beast-02.ear-right"}}, "eyes": { - "eyes": {"x": 25.35, "y": 2.13, "width": 210, "height": 62, "path": "beast-10.eyes"}, - "eyes-angry": {"x": 25.35, "y": 2.13, "width": 210, "height": 68, "path": "beast-10.eyes-angry"}, - "eyes-happy": {"x": 28.35, "y": 33.63, "width": 204, "height": 125, "path": "beast-10.eyes-happy"}, - "eyes-shut": {"x": 19.35, "y": -4.87, "width": 196, "height": 48, "path": "beast-10.eyes-shut"} + "eyes": {"x": 25.943529411764697, "y": 20.947647058823527, "width": 282.3529411764706, "height": 91.76470588235294, "path": "beast-02.eyes"}, + "eyes-angry": {"x": 25.943529411764697, "y": 17.00647058823529, "width": 282.3529411764706, "height": 77.64705882352942, "path": "beast-02.eyes-angry"}, + "eyes-happy": {"x": 25.943529411764697, "y": 28.71235294117647, "width": 282.3529411764706, "height": 108.23529411764706, "path": "beast-02.eyes-happy"}, + "eyes-shut": {"x": 25.943529411764697, "y": 20.947647058823527, "width": 282.3529411764706, "height": 91.76470588235294, "path": "beast-02.eyes-shut"} }, - "horn": {"horn": {"x": 123.63, "y": -28.85, "rotation": -90, "width": 217, "height": 249, "path": "beast-10.horn"}}, + "horn": {"horn": {"x": 103.21235294117646, "y": -9.031764705882347, "rotation": -90, "width": 308.2352941176471, "height": 258.8235294117647, "path": "beast-02.horn"}}, "mouth": { - "mouth": {"x": 10.85, "y": 44.63, "width": 111, "height": 65, "path": "beast-10.mouth"}, - "mouth-bite": {"x": 30.85, "y": 40.63, "width": 201, "height": 111, "path": "beast-10.mouth-bite"}, - "mouth-open": {"x": 25.35, "y": 16.13, "width": 162, "height": 160, "path": "beast-10.mouth-open"}, - "mouth-smile": {"x": 25.85, "y": 44.63, "width": 141, "height": 65, "path": "beast-10.mouth-smile"} + "mouth": {"x": 13.12, "y": 46.88882352941176, "width": 120.0, "height": 105.88235294117648, "path": "beast-02.mouth"}, + "mouth-bite": {"x": 33.2964705882353, "y": 42.182941176470585, "width": 277.6470588235294, "height": 115.29411764705883, "path": "beast-02.mouth-bite"}, + "mouth-open": {"x": 14.943529411764702, "y": 6.712352941176464, "width": 122.3529411764706, "height": 188.23529411764707, "path": "beast-02.mouth-open"}, + "mouth-smile": {"x": 14.12, "y": 49.065294117647056, "width": 160.0, "height": 103.52941176470588, "path": "beast-02.mouth-smile"} }, - "tail": {"tail": {"x": 96.06, "y": 28.35, "rotation": 12, "width": 207, "height": 245, "path": "beast-10.tail"}} + "tail": {"tail": {"x": 97.82941176470588, "y": -24.104705882352942, "rotation": 12, "width": 232.94117647058823, "height": 223.52941176470588, "path": "beast-02.tail"}} } } ], @@ -3716,44 +3611,35 @@ "activity/victory-pose-back-flip": "2227634241" } }, - "body-mystic-normal": { + "reptile-06": { "bones": [ {"name": "@root"}, {"name": "@pivot-main", "parent": "@root"}, {"name": "@pivot-back", "parent": "@pivot-main", "x": 205, "y": 180, "color": "ff0101ff"}, {"name": "@pivot-center", "parent": "@pivot-back", "x": -215.11, "y": -5.25, "color": "ff0101ff"}, {"name": "@axie", "parent": "@pivot-center", "length": 213.28, "rotation": 179.04, "x": 196.39, "y": 5.16}, {"name": "@back", "parent": "@axie", "rotation": -179.04, "x": 37.63, "y": -198.19}, + {"name": "back", "parent": "@back", "length": 149.41, "rotation": 64, "x": -51.97, "y": 25.3, "transform": "noScale"}, {"name": "@body", "parent": "@axie", "length": 226.28, "rotation": -8.35, "x": 224.58, "y": -0.53}, {"name": "@ear-left", "parent": "@axie", "rotation": -179.04, "x": 112.7, "y": -203.23}, - {"name": "@ear-right", "parent": "@axie", "rotation": -179.04, "x": 405.28, "y": -235.33}, {"name": "@eyes", "parent": "@axie", "rotation": -179.04, "x": 384.24, "y": -113.67}, - {"name": "@horn", "parent": "@axie", "rotation": -179.04, "x": 327.92, "y": -214.63}, + {"name": "ear-left", "parent": "@ear-left", "length": 113.61, "rotation": 52, "x": 14, "y": -43, "transform": "noScale"}, + {"name": "@ear-right", "parent": "@axie", "rotation": -179.04, "x": 405.28, "y": -235.33}, + {"name": "ear-right", "parent": "@ear-right", "length": 119.39, "rotation": 140, "x": -40, "y": -63, "transform": "noScale"}, + {"name": "@eyes", "parent": "@axie", "rotation": -179.04, "x": 384.24, "y": -113.67}, {"name": "@horn", "parent": "@axie", "rotation": -179.04, "x": 327.92, "y": -214.63}, + {"name": "horn", "parent": "@horn", "length": 176.72, "rotation": 90, "y": 18, "transform": "noScale"}, {"name": "@leg-back-left", "parent": "@axie", "length": 76.4, "rotation": 100.96, "x": -15.3, "y": 102.56, "transform": "noScale"}, {"name": "@leg-front-left", "parent": "@axie", "length": 51.19, "rotation": 93.86, "x": 134.77, "y": 149.55, "transform": "noScale"}, {"name": "@leg-front-right", "parent": "@axie", "length": 74.83, "rotation": 83.2, "x": 382.95, "y": 121.78, "transform": "noScale"}, {"name": "@mouth", "parent": "@axie", "rotation": -179.04, "x": 382.23, "y": 6.31}, - {"name": "body-class", "parent": "@body", "rotation": -170.69, "x": -286.29, "y": -103.48, "transform": "noScale"}, {"name": "@shadow", "parent": "@root", "color": "e6d713ff"}, - {"name": "@tail", "parent": "@axie", "rotation": -179.04, "x": -11.76, "y": 61.72}, {"name": "leg-front-right-IK", "parent": "@pivot-main", "x": -195.99, "y": -10.21, "color": "ff3f00ff"}, + {"name": "body-pattern", "parent": "@body", "rotation": -170.69, "x": -267.21, "y": -49.4, "transform": "noScale"}, {"name": "@shadow", "parent": "@root", "color": "e6d713ff"}, + {"name": "@tail", "parent": "@axie", "rotation": -179.04, "x": -11.76, "y": 61.72}, {"name": "tail", "parent": "@tail", "length": 203.67, "x": 21, "y": 37, "transform": "noScale"}, + {"name": "leg-front-right-IK", "parent": "@pivot-main", "x": -195.99, "y": -10.21, "color": "ff3f00ff"}, {"name": "leg-front-left-IK", "parent": "@pivot-main", "x": 42.3, "y": -18.42, "color": "ff3f00ff"}, {"name": "leg-back-left-IK", "parent": "@pivot-main", "x": 208.57, "y": 1.35, "color": "ff3f00ff"}, {"name": "@ball", "parent": "@root", "y": 191, "color": "f3981bff"}, - {"name": "ball", "parent": "@ball", "y": -191, "color": "f4a729ff"}, {"name": "body-id", "parent": "@body", "rotation": -170.69, "x": -292.44, "y": -65.98}, - {"name": "body-id-a", "parent": "body-id", "x": 23, "y": 10}, {"name": "body-id-b", "parent": "body-id", "x": 13, "y": 10}, {"name": "body-id-c", "parent": "body-id", "x": 3, "y": 10}, - {"name": "body-id-d", "parent": "body-id", "x": -7, "y": 10}, {"name": "body-id-e", "parent": "body-id", "x": -17, "y": 10}, {"name": "body-id-f", "parent": "body-id", "x": -27, "y": 10}, - {"name": "body-light-life", "parent": "@body", "rotation": -95.65, "x": -248.57, "y": -126.52}, - {"name": "@body-neck", "parent": "@pivot-center", "x": -161.89, "y": -53.75, "color": "ff0101ff"}, - {"name": "@body-ground", "parent": "@pivot-main", "x": 220, "transform": "noRotationOrReflection", "color": "ff0101ff"}, - {"name": "@body-hip", "parent": "@pivot-center", "x": 240.11, "y": 55.25, "color": "ff0101ff"}, - {"name": "@body-air", "parent": "@pivot-back", "x": 63, "y": 365, "transform": "noRotationOrReflection", "color": "ff0101ff"}, - {"name": "@body-cheek", "parent": "@pivot-center", "x": 15.11, "y": 47.25, "color": "ff0101ff"} + {"name": "ball", "parent": "@ball", "y": -191, "color": "f4a729ff"} ], "slots": [ - {"name": "shadow", "bone": "@shadow", "attachment": "shadow"}, {"name": "ball", "bone": "ball"}, - {"name": "leg-front-right", "bone": "@leg-front-right", "attachment": "mystic-leg-front-right"}, {"name": "leg-back-left", "bone": "@leg-back-left", "attachment": "mystic-leg-back-left"}, - {"name": "body-light-life", "bone": "body-light-life", "attachment": "body-light-life"}, {"name": "body", "bone": "@body", "attachment": "body-mystic"}, - {"name": "body-light-breath", "bone": "@body", "attachment": "body-light-breath"}, {"name": "body-light-pulse", "bone": "@body", "attachment": "body-light-pulse"}, - {"name": "body-id-a", "bone": "body-id-a", "attachment": "body-id-a-01"}, {"name": "body-id-b", "bone": "body-id-b", "attachment": "body-id-b-09"}, - {"name": "body-id-c", "bone": "body-id-c", "attachment": "body-id-c-08"}, {"name": "body-id-d", "bone": "body-id-d", "attachment": "body-id-d-00"}, - {"name": "body-id-e", "bone": "body-id-e", "attachment": "body-id-e-03"}, {"name": "body-id-f", "bone": "body-id-f", "attachment": "body-id-f-00"}, - {"name": "body-class", "bone": "body-class", "attachment": "body-class-aquatic"}, {"name": "leg-front-left", "bone": "@leg-front-left", "attachment": "mystic-leg-front-left"}, - {"name": "body-hip", "bone": "@body-hip", "attachment": "body-hip"}, {"name": "body-neck", "bone": "@body-neck", "attachment": "body-neck"}, - {"name": "body-ground", "bone": "@body-ground", "attachment": "body-ground"}, {"name": "body-air", "bone": "@body-air", "attachment": "body-air"}, - {"name": "body-cheek", "bone": "@body-cheek", "attachment": "body-cheek"} + {"name": "shadow", "bone": "@shadow", "attachment": "shadow"}, {"name": "ball", "bone": "ball"}, {"name": "leg-front-right", "bone": "@leg-front-right", "attachment": "leg-front-right"}, + {"name": "ear-right", "bone": "ear-right", "attachment": "ear-right"}, {"name": "tail", "bone": "tail", "attachment": "tail"}, {"name": "back", "bone": "back", "attachment": "back"}, + {"name": "leg-back-left", "bone": "@leg-back-left", "attachment": "leg-back-left"}, {"name": "body", "bone": "@body", "attachment": "body"}, {"name": "body-pattern", "bone": "body-pattern"}, + {"name": "leg-front-left", "bone": "@leg-front-left", "attachment": "leg-front-left"}, {"name": "eyes", "bone": "@eyes", "attachment": "eyes"}, + {"name": "mouth", "bone": "@mouth", "attachment": "mouth"}, {"name": "ear-left", "bone": "ear-left", "attachment": "ear-left"}, {"name": "horn", "bone": "horn", "attachment": "horn"} ], "ik": [ {"name": "leg-back-left-IK", "order": 2, "bones": ["@leg-back-left"], "target": "leg-back-left-IK"}, @@ -3764,877 +3650,25 @@ { "name": "default", "attachments": { - "ball": {"ball": {"y": 191, "width": 393, "height": 390, "path": "body-normal.ball"}}, - "body": {"body-mystic": {"x": -4.25, "y": -74.48, "rotation": -170.69, "width": 685, "height": 509, "path": "body-mystic-normal.body-mystic"}}, - "body-class": { - "body-class-aquatic": {"x": -1.04, "y": 4.55, "width": 41, "height": 46, "path": "body-normal.body-class-aquatic"}, - "body-class-beast": {"x": -1.54, "y": 3.55, "width": 36, "height": 40, "path": "body-normal.body-class-beast"}, - "body-class-bird": {"x": 0.46, "y": 4.05, "width": 30, "height": 43, "path": "body-normal.body-class-bird"}, - "body-class-bug": {"x": -1.04, "y": 2.55, "width": 37, "height": 36, "path": "body-normal.body-class-bug"}, - "body-class-plant": {"x": -2.54, "y": 1.55, "width": 42, "height": 40, "path": "body-normal.body-class-plant"}, - "body-class-reptile": {"x": -1.04, "y": 3.55, "width": 41, "height": 40, "path": "body-normal.body-class-reptile"} - }, - "body-id-a": { - "body-id-a-00": {"x": -0.65, "y": 0.23, "width": 8, "height": 13, "path": "body-normal.body-id-a-00"}, - "body-id-a-01": {"x": 0.35, "y": 0.23, "width": 6, "height": 13, "path": "body-normal.body-id-a-01"}, - "body-id-a-02": {"x": 0.35, "y": 0.73, "width": 8, "height": 12, "path": "body-normal.body-id-a-02"}, - "body-id-a-03": {"x": -0.15, "y": 0.23, "width": 7, "height": 11, "path": "body-normal.body-id-a-03"}, - "body-id-a-04": {"x": -0.15, "y": 0.73, "width": 7, "height": 12, "path": "body-normal.body-id-a-04"}, - "body-id-a-05": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-a-05"}, - "body-id-a-06": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-a-06"}, - "body-id-a-07": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-a-07"}, - "body-id-a-08": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-a-08"}, - "body-id-a-09": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-a-09"}, - "body-id-00-aquatic": {"x": -0.65, "y": 0.23, "width": 8, "height": 13, "path": "body-normal.body-id-00-aquatic"}, - "body-id-00-aquatic-flipx": {"x": -0.65, "y": 0.23, "width": 8, "height": 13, "path": "body-normal.body-id-00-aquatic-flipx"}, - "body-id-00-beast": {"x": -0.65, "y": 0.23, "width": 8, "height": 13, "path": "body-normal.body-id-00-beast"}, - "body-id-00-beast-flipx": {"x": -0.65, "y": 0.23, "width": 8, "height": 13, "path": "body-normal.body-id-00-beast-flipx"}, - "body-id-00-bird": {"x": -0.65, "y": 0.23, "width": 8, "height": 13, "path": "body-normal.body-id-00-bird"}, - "body-id-00-bird-flipx": {"x": -0.65, "y": 0.23, "width": 8, "height": 13, "path": "body-normal.body-id-00-bird-flipx"}, - "body-id-00-bug": {"x": -0.65, "y": 0.23, "width": 8, "height": 13, "path": "body-normal.body-id-00-bug"}, - "body-id-00-bug-flipx": {"x": -0.65, "y": 0.23, "width": 8, "height": 13, "path": "body-normal.body-id-00-bug-flipx"}, - "body-id-00-plant": {"x": -0.65, "y": 0.23, "width": 8, "height": 13, "path": "body-normal.body-id-00-plant"}, - "body-id-00-plant-flipx": {"x": -0.65, "y": 0.23, "width": 8, "height": 13, "path": "body-normal.body-id-00-plant-flipx"}, - "body-id-00-reptile": {"x": -0.65, "y": 0.23, "width": 8, "height": 13, "path": "body-normal.body-id-00-reptile"}, - "body-id-00-reptile-flipx": {"x": -0.65, "y": 0.23, "width": 8, "height": 13, "path": "body-normal.body-id-00-reptile-flipx"}, - "body-id-01-aquatic": {"x": 0.35, "y": 0.23, "width": 6, "height": 13, "path": "body-normal.body-id-01-aquatic"}, - "body-id-01-aquatic-flipx": {"x": 0.35, "y": 0.23, "width": 6, "height": 13, "path": "body-normal.body-id-01-aquatic-flipx"}, - "body-id-01-beast": {"x": 0.35, "y": 0.23, "width": 6, "height": 13, "path": "body-normal.body-id-01-beast"}, - "body-id-01-beast-flipx": {"x": 0.35, "y": 0.23, "width": 6, "height": 13, "path": "body-normal.body-id-01-beast-flipx"}, - "body-id-01-bird": {"x": 0.35, "y": 0.23, "width": 6, "height": 13, "path": "body-normal.body-id-01-bird"}, - "body-id-01-bird-flipx": {"x": 0.35, "y": 0.23, "width": 6, "height": 13, "path": "body-normal.body-id-01-bird-flipx"}, - "body-id-01-bug": {"x": 0.35, "y": 0.23, "width": 6, "height": 13, "path": "body-normal.body-id-01-bug"}, - "body-id-01-bug-flipx": {"x": 0.35, "y": 0.23, "width": 6, "height": 13, "path": "body-normal.body-id-01-bug-flipx"}, - "body-id-01-plant": {"x": 0.35, "y": 0.23, "width": 6, "height": 13, "path": "body-normal.body-id-01-plant"}, - "body-id-01-plant-flipx": {"x": 0.35, "y": 0.23, "width": 6, "height": 13, "path": "body-normal.body-id-01-plant-flipx"}, - "body-id-01-reptile": {"x": 0.35, "y": 0.23, "width": 6, "height": 13, "path": "body-normal.body-id-01-reptile"}, - "body-id-01-reptile-flipx": {"x": 0.35, "y": 0.23, "width": 6, "height": 13, "path": "body-normal.body-id-01-reptile-flipx"}, - "body-id-02-aquatic": {"x": 0.35, "y": 0.73, "width": 8, "height": 12, "path": "body-normal.body-id-02-aquatic"}, - "body-id-02-aquatic-flipx": {"x": 0.35, "y": 0.73, "width": 8, "height": 12, "path": "body-normal.body-id-02-aquatic-flipx"}, - "body-id-02-beast": {"x": 0.35, "y": 0.73, "width": 8, "height": 12, "path": "body-normal.body-id-02-beast"}, - "body-id-02-beast-flipx": {"x": 0.35, "y": 0.73, "width": 8, "height": 12, "path": "body-normal.body-id-02-beast-flipx"}, - "body-id-02-bird": {"x": 0.35, "y": 0.73, "width": 8, "height": 12, "path": "body-normal.body-id-02-bird"}, - "body-id-02-bird-flipx": {"x": 0.35, "y": 0.73, "width": 8, "height": 12, "path": "body-normal.body-id-02-bird-flipx"}, - "body-id-02-bug": {"x": 0.35, "y": 0.73, "width": 8, "height": 12, "path": "body-normal.body-id-02-bug"}, - "body-id-02-bug-flipx": {"x": 0.35, "y": 0.73, "width": 8, "height": 12, "path": "body-normal.body-id-02-bug-flipx"}, - "body-id-02-plant": {"x": 0.35, "y": 0.73, "width": 8, "height": 12, "path": "body-normal.body-id-02-plant"}, - "body-id-02-plant-flipx": {"x": 0.35, "y": 0.73, "width": 8, "height": 12, "path": "body-normal.body-id-02-plant-flipx"}, - "body-id-02-reptile": {"x": 0.35, "y": 0.73, "width": 8, "height": 12, "path": "body-normal.body-id-02-reptile"}, - "body-id-02-reptile-flipx": {"x": 0.35, "y": 0.73, "width": 8, "height": 12, "path": "body-normal.body-id-02-reptile-flipx"}, - "body-id-03-aquatic": {"x": -0.15, "y": 0.23, "width": 7, "height": 11, "path": "body-normal.body-id-03-aquatic"}, - "body-id-03-aquatic-flipx": {"x": -0.15, "y": 0.23, "width": 7, "height": 11, "path": "body-normal.body-id-03-aquatic-flipx"}, - "body-id-03-beast": {"x": -0.15, "y": 0.23, "width": 7, "height": 11, "path": "body-normal.body-id-03-beast"}, - "body-id-03-beast-flipx": {"x": -0.15, "y": 0.23, "width": 7, "height": 11, "path": "body-normal.body-id-03-beast-flipx"}, - "body-id-03-bird": {"x": -0.15, "y": 0.23, "width": 7, "height": 11, "path": "body-normal.body-id-03-bird"}, - "body-id-03-bird-flipx": {"x": -0.15, "y": 0.23, "width": 7, "height": 11, "path": "body-normal.body-id-03-bird-flipx"}, - "body-id-03-bug": {"x": -0.15, "y": 0.23, "width": 7, "height": 11, "path": "body-normal.body-id-03-bug"}, - "body-id-03-bug-flipx": {"x": -0.15, "y": 0.23, "width": 7, "height": 11, "path": "body-normal.body-id-03-bug-flipx"}, - "body-id-03-plant": {"x": -0.15, "y": 0.23, "width": 7, "height": 11, "path": "body-normal.body-id-03-plant"}, - "body-id-03-plant-flipx": {"x": -0.15, "y": 0.23, "width": 7, "height": 11, "path": "body-normal.body-id-03-plant-flipx"}, - "body-id-03-reptile": {"x": -0.15, "y": 0.23, "width": 7, "height": 11, "path": "body-normal.body-id-03-reptile"}, - "body-id-03-reptile-flipx": {"x": -0.15, "y": 0.23, "width": 7, "height": 11, "path": "body-normal.body-id-03-reptile-flipx"}, - "body-id-04-aquatic": {"x": -0.15, "y": 0.73, "width": 7, "height": 12, "path": "body-normal.body-id-04-aquatic"}, - "body-id-04-aquatic-flipx": {"x": -0.15, "y": 0.73, "width": 7, "height": 12, "path": "body-normal.body-id-04-aquatic-flipx"}, - "body-id-04-beast": {"x": -0.15, "y": 0.73, "width": 7, "height": 12, "path": "body-normal.body-id-04-beast"}, - "body-id-04-beast-flipx": {"x": -0.15, "y": 0.73, "width": 7, "height": 12, "path": "body-normal.body-id-04-beast-flipx"}, - "body-id-04-bird": {"x": -0.15, "y": 0.73, "width": 7, "height": 12, "path": "body-normal.body-id-04-bird"}, - "body-id-04-bird-flipx": {"x": -0.15, "y": 0.73, "width": 7, "height": 12, "path": "body-normal.body-id-04-bird-flipx"}, - "body-id-04-bug": {"x": -0.15, "y": 0.73, "width": 7, "height": 12, "path": "body-normal.body-id-04-bug"}, - "body-id-04-bug-flipx": {"x": -0.15, "y": 0.73, "width": 7, "height": 12, "path": "body-normal.body-id-04-bug-flipx"}, - "body-id-04-plant": {"x": -0.15, "y": 0.73, "width": 7, "height": 12, "path": "body-normal.body-id-04-plant"}, - "body-id-04-plant-flipx": {"x": -0.15, "y": 0.73, "width": 7, "height": 12, "path": "body-normal.body-id-04-plant-flipx"}, - "body-id-04-reptile": {"x": -0.15, "y": 0.73, "width": 7, "height": 12, "path": "body-normal.body-id-04-reptile"}, - "body-id-04-reptile-flipx": {"x": -0.15, "y": 0.73, "width": 7, "height": 12, "path": "body-normal.body-id-04-reptile-flipx"}, - "body-id-05-aquatic": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-05-aquatic"}, - "body-id-05-aquatic-flipx": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-05-aquatic-flipx"}, - "body-id-05-beast": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-05-beast"}, - "body-id-05-beast-flipx": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-05-beast-flipx"}, - "body-id-05-bird": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-05-bird"}, - "body-id-05-bird-flipx": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-05-bird-flipx"}, - "body-id-05-bug": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-05-bug"}, - "body-id-05-bug-flipx": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-05-bug-flipx"}, - "body-id-05-plant": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-05-plant"}, - "body-id-05-plant-flipx": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-05-plant-flipx"}, - "body-id-05-reptile": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-05-reptile"}, - "body-id-05-reptile-flipx": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-05-reptile-flipx"}, - "body-id-06-aquatic": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-06-aquatic"}, - "body-id-06-aquatic-flipx": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-06-aquatic-flipx"}, - "body-id-06-beast": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-06-beast"}, - "body-id-06-beast-flipx": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-06-beast-flipx"}, - "body-id-06-bird": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-06-bird"}, - "body-id-06-bird-flipx": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-06-bird-flipx"}, - "body-id-06-bug": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-06-bug"}, - "body-id-06-bug-flipx": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-06-bug-flipx"}, - "body-id-06-plant": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-06-plant"}, - "body-id-06-plant-flipx": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-06-plant-flipx"}, - "body-id-06-reptile": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-06-reptile"}, - "body-id-06-reptile-flipx": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-06-reptile-flipx"}, - "body-id-07-aquatic": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-07-aquatic"}, - "body-id-07-aquatic-flipx": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-07-aquatic-flipx"}, - "body-id-07-beast": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-07-beast"}, - "body-id-07-beast-flipx": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-07-beast-flipx"}, - "body-id-07-bird": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-07-bird"}, - "body-id-07-bird-flipx": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-07-bird-flipx"}, - "body-id-07-bug": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-07-bug"}, - "body-id-07-bug-flipx": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-07-bug-flipx"}, - "body-id-07-plant": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-07-plant"}, - "body-id-07-plant-flipx": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-07-plant-flipx"}, - "body-id-07-reptile": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-07-reptile"}, - "body-id-07-reptile-flipx": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-07-reptile-flipx"}, - "body-id-08-aquatic": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-08-aquatic"}, - "body-id-08-aquatic-flipx": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-08-aquatic-flipx"}, - "body-id-08-beast": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-08-beast"}, - "body-id-08-beast-flipx": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-08-beast-flipx"}, - "body-id-08-bird": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-08-bird"}, - "body-id-08-bird-flipx": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-08-bird-flipx"}, - "body-id-08-bug": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-08-bug"}, - "body-id-08-bug-flipx": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-08-bug-flipx"}, - "body-id-08-plant": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-08-plant"}, - "body-id-08-plant-flipx": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-08-plant-flipx"}, - "body-id-08-reptile": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-08-reptile"}, - "body-id-08-reptile-flipx": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-08-reptile-flipx"}, - "body-id-09-aquatic": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-09-aquatic"}, - "body-id-09-aquatic-flipx": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-09-aquatic-flipx"}, - "body-id-09-beast": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-09-beast"}, - "body-id-09-beast-flipx": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-09-beast-flipx"}, - "body-id-09-bird": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-09-bird"}, - "body-id-09-bird-flipx": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-09-bird-flipx"}, - "body-id-09-bug": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-09-bug"}, - "body-id-09-bug-flipx": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-09-bug-flipx"}, - "body-id-09-plant": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-09-plant"}, - "body-id-09-plant-flipx": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-09-plant-flipx"}, - "body-id-09-reptile": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-09-reptile"}, - "body-id-09-reptile-flipx": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-09-reptile-flipx"} - }, - "body-id-b": { - "body-id-b-00": {"x": -0.65, "y": 0.23, "width": 8, "height": 13, "path": "body-normal.body-id-b-00"}, - "body-id-b-01": {"x": 0.35, "y": 0.23, "width": 6, "height": 13, "path": "body-normal.body-id-b-01"}, - "body-id-b-02": {"x": 0.35, "y": 0.73, "width": 8, "height": 12, "path": "body-normal.body-id-b-02"}, - "body-id-b-03": {"x": -0.15, "y": 0.23, "width": 7, "height": 11, "path": "body-normal.body-id-b-03"}, - "body-id-b-04": {"x": -0.15, "y": 0.73, "width": 7, "height": 12, "path": "body-normal.body-id-b-04"}, - "body-id-b-05": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-b-05"}, - "body-id-b-06": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-b-06"}, - "body-id-b-07": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-b-07"}, - "body-id-b-08": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-b-08"}, - "body-id-b-09": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-b-09"}, - "body-id-00-aquatic": {"x": -0.65, "y": 0.23, "width": 8, "height": 13, "path": "body-normal.body-id-00-aquatic"}, - "body-id-00-aquatic-flipx": {"x": -0.65, "y": 0.23, "width": 8, "height": 13, "path": "body-normal.body-id-00-aquatic-flipx"}, - "body-id-00-beast": {"x": -0.65, "y": 0.23, "width": 8, "height": 13, "path": "body-normal.body-id-00-beast"}, - "body-id-00-beast-flipx": {"x": -0.65, "y": 0.23, "width": 8, "height": 13, "path": "body-normal.body-id-00-beast-flipx"}, - "body-id-00-bird": {"x": -0.65, "y": 0.23, "width": 8, "height": 13, "path": "body-normal.body-id-00-bird"}, - "body-id-00-bird-flipx": {"x": -0.65, "y": 0.23, "width": 8, "height": 13, "path": "body-normal.body-id-00-bird-flipx"}, - "body-id-00-bug": {"x": -0.65, "y": 0.23, "width": 8, "height": 13, "path": "body-normal.body-id-00-bug"}, - "body-id-00-bug-flipx": {"x": -0.65, "y": 0.23, "width": 8, "height": 13, "path": "body-normal.body-id-00-bug-flipx"}, - "body-id-00-plant": {"x": -0.65, "y": 0.23, "width": 8, "height": 13, "path": "body-normal.body-id-00-plant"}, - "body-id-00-plant-flipx": {"x": -0.65, "y": 0.23, "width": 8, "height": 13, "path": "body-normal.body-id-00-plant-flipx"}, - "body-id-00-reptile": {"x": -0.65, "y": 0.23, "width": 8, "height": 13, "path": "body-normal.body-id-00-reptile"}, - "body-id-00-reptile-flipx": {"x": -0.65, "y": 0.23, "width": 8, "height": 13, "path": "body-normal.body-id-00-reptile-flipx"}, - "body-id-01-aquatic": {"x": 0.35, "y": 0.23, "width": 6, "height": 13, "path": "body-normal.body-id-01-aquatic"}, - "body-id-01-aquatic-flipx": {"x": 0.35, "y": 0.23, "width": 6, "height": 13, "path": "body-normal.body-id-01-aquatic-flipx"}, - "body-id-01-beast": {"x": 0.35, "y": 0.23, "width": 6, "height": 13, "path": "body-normal.body-id-01-beast"}, - "body-id-01-beast-flipx": {"x": 0.35, "y": 0.23, "width": 6, "height": 13, "path": "body-normal.body-id-01-beast-flipx"}, - "body-id-01-bird": {"x": 0.35, "y": 0.23, "width": 6, "height": 13, "path": "body-normal.body-id-01-bird"}, - "body-id-01-bird-flipx": {"x": 0.35, "y": 0.23, "width": 6, "height": 13, "path": "body-normal.body-id-01-bird-flipx"}, - "body-id-01-bug": {"x": 0.35, "y": 0.23, "width": 6, "height": 13, "path": "body-normal.body-id-01-bug"}, - "body-id-01-bug-flipx": {"x": 0.35, "y": 0.23, "width": 6, "height": 13, "path": "body-normal.body-id-01-bug-flipx"}, - "body-id-01-plant": {"x": 0.35, "y": 0.23, "width": 6, "height": 13, "path": "body-normal.body-id-01-plant"}, - "body-id-01-plant-flipx": {"x": 0.35, "y": 0.23, "width": 6, "height": 13, "path": "body-normal.body-id-01-plant-flipx"}, - "body-id-01-reptile": {"x": 0.35, "y": 0.23, "width": 6, "height": 13, "path": "body-normal.body-id-01-reptile"}, - "body-id-01-reptile-flipx": {"x": 0.35, "y": 0.23, "width": 6, "height": 13, "path": "body-normal.body-id-01-reptile-flipx"}, - "body-id-02-aquatic": {"x": 0.35, "y": 0.73, "width": 8, "height": 12, "path": "body-normal.body-id-02-aquatic"}, - "body-id-02-aquatic-flipx": {"x": 0.35, "y": 0.73, "width": 8, "height": 12, "path": "body-normal.body-id-02-aquatic-flipx"}, - "body-id-02-beast": {"x": 0.35, "y": 0.73, "width": 8, "height": 12, "path": "body-normal.body-id-02-beast"}, - "body-id-02-beast-flipx": {"x": 0.35, "y": 0.73, "width": 8, "height": 12, "path": "body-normal.body-id-02-beast-flipx"}, - "body-id-02-bird": {"x": 0.35, "y": 0.73, "width": 8, "height": 12, "path": "body-normal.body-id-02-bird"}, - "body-id-02-bird-flipx": {"x": 0.35, "y": 0.73, "width": 8, "height": 12, "path": "body-normal.body-id-02-bird-flipx"}, - "body-id-02-bug": {"x": 0.35, "y": 0.73, "width": 8, "height": 12, "path": "body-normal.body-id-02-bug"}, - "body-id-02-bug-flipx": {"x": 0.35, "y": 0.73, "width": 8, "height": 12, "path": "body-normal.body-id-02-bug-flipx"}, - "body-id-02-plant": {"x": 0.35, "y": 0.73, "width": 8, "height": 12, "path": "body-normal.body-id-02-plant"}, - "body-id-02-plant-flipx": {"x": 0.35, "y": 0.73, "width": 8, "height": 12, "path": "body-normal.body-id-02-plant-flipx"}, - "body-id-02-reptile": {"x": 0.35, "y": 0.73, "width": 8, "height": 12, "path": "body-normal.body-id-02-reptile"}, - "body-id-02-reptile-flipx": {"x": 0.35, "y": 0.73, "width": 8, "height": 12, "path": "body-normal.body-id-02-reptile-flipx"}, - "body-id-03-aquatic": {"x": -0.15, "y": 0.23, "width": 7, "height": 11, "path": "body-normal.body-id-03-aquatic"}, - "body-id-03-aquatic-flipx": {"x": -0.15, "y": 0.23, "width": 7, "height": 11, "path": "body-normal.body-id-03-aquatic-flipx"}, - "body-id-03-beast": {"x": -0.15, "y": 0.23, "width": 7, "height": 11, "path": "body-normal.body-id-03-beast"}, - "body-id-03-beast-flipx": {"x": -0.15, "y": 0.23, "width": 7, "height": 11, "path": "body-normal.body-id-03-beast-flipx"}, - "body-id-03-bird": {"x": -0.15, "y": 0.23, "width": 7, "height": 11, "path": "body-normal.body-id-03-bird"}, - "body-id-03-bird-flipx": {"x": -0.15, "y": 0.23, "width": 7, "height": 11, "path": "body-normal.body-id-03-bird-flipx"}, - "body-id-03-bug": {"x": -0.15, "y": 0.23, "width": 7, "height": 11, "path": "body-normal.body-id-03-bug"}, - "body-id-03-bug-flipx": {"x": -0.15, "y": 0.23, "width": 7, "height": 11, "path": "body-normal.body-id-03-bug-flipx"}, - "body-id-03-plant": {"x": -0.15, "y": 0.23, "width": 7, "height": 11, "path": "body-normal.body-id-03-plant"}, - "body-id-03-plant-flipx": {"x": -0.15, "y": 0.23, "width": 7, "height": 11, "path": "body-normal.body-id-03-plant-flipx"}, - "body-id-03-reptile": {"x": -0.15, "y": 0.23, "width": 7, "height": 11, "path": "body-normal.body-id-03-reptile"}, - "body-id-03-reptile-flipx": {"x": -0.15, "y": 0.23, "width": 7, "height": 11, "path": "body-normal.body-id-03-reptile-flipx"}, - "body-id-04-aquatic": {"x": -0.15, "y": 0.73, "width": 7, "height": 12, "path": "body-normal.body-id-04-aquatic"}, - "body-id-04-aquatic-flipx": {"x": -0.15, "y": 0.73, "width": 7, "height": 12, "path": "body-normal.body-id-04-aquatic-flipx"}, - "body-id-04-beast": {"x": -0.15, "y": 0.73, "width": 7, "height": 12, "path": "body-normal.body-id-04-beast"}, - "body-id-04-beast-flipx": {"x": -0.15, "y": 0.73, "width": 7, "height": 12, "path": "body-normal.body-id-04-beast-flipx"}, - "body-id-04-bird": {"x": -0.15, "y": 0.73, "width": 7, "height": 12, "path": "body-normal.body-id-04-bird"}, - "body-id-04-bird-flipx": {"x": -0.15, "y": 0.73, "width": 7, "height": 12, "path": "body-normal.body-id-04-bird-flipx"}, - "body-id-04-bug": {"x": -0.15, "y": 0.73, "width": 7, "height": 12, "path": "body-normal.body-id-04-bug"}, - "body-id-04-bug-flipx": {"x": -0.15, "y": 0.73, "width": 7, "height": 12, "path": "body-normal.body-id-04-bug-flipx"}, - "body-id-04-plant": {"x": -0.15, "y": 0.73, "width": 7, "height": 12, "path": "body-normal.body-id-04-plant"}, - "body-id-04-plant-flipx": {"x": -0.15, "y": 0.73, "width": 7, "height": 12, "path": "body-normal.body-id-04-plant-flipx"}, - "body-id-04-reptile": {"x": -0.15, "y": 0.73, "width": 7, "height": 12, "path": "body-normal.body-id-04-reptile"}, - "body-id-04-reptile-flipx": {"x": -0.15, "y": 0.73, "width": 7, "height": 12, "path": "body-normal.body-id-04-reptile-flipx"}, - "body-id-05-aquatic": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-05-aquatic"}, - "body-id-05-aquatic-flipx": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-05-aquatic-flipx"}, - "body-id-05-beast": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-05-beast"}, - "body-id-05-beast-flipx": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-05-beast-flipx"}, - "body-id-05-bird": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-05-bird"}, - "body-id-05-bird-flipx": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-05-bird-flipx"}, - "body-id-05-bug": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-05-bug"}, - "body-id-05-bug-flipx": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-05-bug-flipx"}, - "body-id-05-plant": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-05-plant"}, - "body-id-05-plant-flipx": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-05-plant-flipx"}, - "body-id-05-reptile": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-05-reptile"}, - "body-id-05-reptile-flipx": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-05-reptile-flipx"}, - "body-id-06-aquatic": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-06-aquatic"}, - "body-id-06-aquatic-flipx": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-06-aquatic-flipx"}, - "body-id-06-beast": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-06-beast"}, - "body-id-06-beast-flipx": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-06-beast-flipx"}, - "body-id-06-bird": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-06-bird"}, - "body-id-06-bird-flipx": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-06-bird-flipx"}, - "body-id-06-bug": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-06-bug"}, - "body-id-06-bug-flipx": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-06-bug-flipx"}, - "body-id-06-plant": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-06-plant"}, - "body-id-06-plant-flipx": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-06-plant-flipx"}, - "body-id-06-reptile": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-06-reptile"}, - "body-id-06-reptile-flipx": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-06-reptile-flipx"}, - "body-id-07-aquatic": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-07-aquatic"}, - "body-id-07-aquatic-flipx": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-07-aquatic-flipx"}, - "body-id-07-beast": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-07-beast"}, - "body-id-07-beast-flipx": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-07-beast-flipx"}, - "body-id-07-bird": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-07-bird"}, - "body-id-07-bird-flipx": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-07-bird-flipx"}, - "body-id-07-bug": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-07-bug"}, - "body-id-07-bug-flipx": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-07-bug-flipx"}, - "body-id-07-plant": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-07-plant"}, - "body-id-07-plant-flipx": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-07-plant-flipx"}, - "body-id-07-reptile": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-07-reptile"}, - "body-id-07-reptile-flipx": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-07-reptile-flipx"}, - "body-id-08-aquatic": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-08-aquatic"}, - "body-id-08-aquatic-flipx": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-08-aquatic-flipx"}, - "body-id-08-beast": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-08-beast"}, - "body-id-08-beast-flipx": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-08-beast-flipx"}, - "body-id-08-bird": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-08-bird"}, - "body-id-08-bird-flipx": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-08-bird-flipx"}, - "body-id-08-bug": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-08-bug"}, - "body-id-08-bug-flipx": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-08-bug-flipx"}, - "body-id-08-plant": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-08-plant"}, - "body-id-08-plant-flipx": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-08-plant-flipx"}, - "body-id-08-reptile": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-08-reptile"}, - "body-id-08-reptile-flipx": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-08-reptile-flipx"}, - "body-id-09-aquatic": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-09-aquatic"}, - "body-id-09-aquatic-flipx": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-09-aquatic-flipx"}, - "body-id-09-beast": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-09-beast"}, - "body-id-09-beast-flipx": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-09-beast-flipx"}, - "body-id-09-bird": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-09-bird"}, - "body-id-09-bird-flipx": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-09-bird-flipx"}, - "body-id-09-bug": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-09-bug"}, - "body-id-09-bug-flipx": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-09-bug-flipx"}, - "body-id-09-plant": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-09-plant"}, - "body-id-09-plant-flipx": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-09-plant-flipx"}, - "body-id-09-reptile": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-09-reptile"}, - "body-id-09-reptile-flipx": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-09-reptile-flipx"} - }, - "body-id-c": { - "body-id-c-00": {"x": -0.65, "y": 0.23, "width": 8, "height": 13, "path": "body-normal.body-id-c-00"}, - "body-id-c-01": {"x": -0.65, "y": 0.23, "width": 6, "height": 13, "path": "body-normal.body-id-c-01"}, - "body-id-c-02": {"x": -0.65, "y": 0.23, "width": 8, "height": 12, "path": "body-normal.body-id-c-02"}, - "body-id-c-03": {"x": -0.65, "y": 0.23, "width": 7, "height": 11, "path": "body-normal.body-id-c-03"}, - "body-id-c-04": {"x": -0.65, "y": 0.23, "width": 7, "height": 12, "path": "body-normal.body-id-c-04"}, - "body-id-c-05": {"x": -0.65, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-c-05"}, - "body-id-c-06": {"x": -0.65, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-c-06"}, - "body-id-c-07": {"x": -0.65, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-c-07"}, - "body-id-c-08": {"x": -0.65, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-c-08"}, - "body-id-c-09": {"x": -0.65, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-c-09"}, - "body-id-00-aquatic": {"x": -0.65, "y": 0.23, "width": 8, "height": 13, "path": "body-normal.body-id-00-aquatic"}, - "body-id-00-aquatic-flipx": {"x": -0.65, "y": 0.23, "width": 8, "height": 13, "path": "body-normal.body-id-00-aquatic-flipx"}, - "body-id-00-beast": {"x": -0.65, "y": 0.23, "width": 8, "height": 13, "path": "body-normal.body-id-00-beast"}, - "body-id-00-beast-flipx": {"x": -0.65, "y": 0.23, "width": 8, "height": 13, "path": "body-normal.body-id-00-beast-flipx"}, - "body-id-00-bird": {"x": -0.65, "y": 0.23, "width": 8, "height": 13, "path": "body-normal.body-id-00-bird"}, - "body-id-00-bird-flipx": {"x": -0.65, "y": 0.23, "width": 8, "height": 13, "path": "body-normal.body-id-00-bird-flipx"}, - "body-id-00-bug": {"x": -0.65, "y": 0.23, "width": 8, "height": 13, "path": "body-normal.body-id-00-bug"}, - "body-id-00-bug-flipx": {"x": -0.65, "y": 0.23, "width": 8, "height": 13, "path": "body-normal.body-id-00-bug-flipx"}, - "body-id-00-plant": {"x": -0.65, "y": 0.23, "width": 8, "height": 13, "path": "body-normal.body-id-00-plant"}, - "body-id-00-plant-flipx": {"x": -0.65, "y": 0.23, "width": 8, "height": 13, "path": "body-normal.body-id-00-plant-flipx"}, - "body-id-00-reptile": {"x": -0.65, "y": 0.23, "width": 8, "height": 13, "path": "body-normal.body-id-00-reptile"}, - "body-id-00-reptile-flipx": {"x": -0.65, "y": 0.23, "width": 8, "height": 13, "path": "body-normal.body-id-00-reptile-flipx"}, - "body-id-01-aquatic": {"x": -0.65, "y": 0.23, "width": 6, "height": 13, "path": "body-normal.body-id-01-aquatic"}, - "body-id-01-aquatic-flipx": {"x": -0.65, "y": 0.23, "width": 6, "height": 13, "path": "body-normal.body-id-01-aquatic-flipx"}, - "body-id-01-beast": {"x": -0.65, "y": 0.23, "width": 6, "height": 13, "path": "body-normal.body-id-01-beast"}, - "body-id-01-beast-flipx": {"x": -0.65, "y": 0.23, "width": 6, "height": 13, "path": "body-normal.body-id-01-beast-flipx"}, - "body-id-01-bird": {"x": -0.65, "y": 0.23, "width": 6, "height": 13, "path": "body-normal.body-id-01-bird"}, - "body-id-01-bird-flipx": {"x": -0.65, "y": 0.23, "width": 6, "height": 13, "path": "body-normal.body-id-01-bird-flipx"}, - "body-id-01-bug": {"x": -0.65, "y": 0.23, "width": 6, "height": 13, "path": "body-normal.body-id-01-bug"}, - "body-id-01-bug-flipx": {"x": -0.65, "y": 0.23, "width": 6, "height": 13, "path": "body-normal.body-id-01-bug-flipx"}, - "body-id-01-plant": {"x": -0.65, "y": 0.23, "width": 6, "height": 13, "path": "body-normal.body-id-01-plant"}, - "body-id-01-plant-flipx": {"x": -0.65, "y": 0.23, "width": 6, "height": 13, "path": "body-normal.body-id-01-plant-flipx"}, - "body-id-01-reptile": {"x": -0.65, "y": 0.23, "width": 6, "height": 13, "path": "body-normal.body-id-01-reptile"}, - "body-id-01-reptile-flipx": {"x": -0.65, "y": 0.23, "width": 6, "height": 13, "path": "body-normal.body-id-01-reptile-flipx"}, - "body-id-02-aquatic": {"x": -0.65, "y": 0.23, "width": 8, "height": 12, "path": "body-normal.body-id-02-aquatic"}, - "body-id-02-aquatic-flipx": {"x": -0.65, "y": 0.23, "width": 8, "height": 12, "path": "body-normal.body-id-02-aquatic-flipx"}, - "body-id-02-beast": {"x": -0.65, "y": 0.23, "width": 8, "height": 12, "path": "body-normal.body-id-02-beast"}, - "body-id-02-beast-flipx": {"x": -0.65, "y": 0.23, "width": 8, "height": 12, "path": "body-normal.body-id-02-beast-flipx"}, - "body-id-02-bird": {"x": -0.65, "y": 0.23, "width": 8, "height": 12, "path": "body-normal.body-id-02-bird"}, - "body-id-02-bird-flipx": {"x": -0.65, "y": 0.23, "width": 8, "height": 12, "path": "body-normal.body-id-02-bird-flipx"}, - "body-id-02-bug": {"x": -0.65, "y": 0.23, "width": 8, "height": 12, "path": "body-normal.body-id-02-bug"}, - "body-id-02-bug-flipx": {"x": -0.65, "y": 0.23, "width": 8, "height": 12, "path": "body-normal.body-id-02-bug-flipx"}, - "body-id-02-plant": {"x": -0.65, "y": 0.23, "width": 8, "height": 12, "path": "body-normal.body-id-02-plant"}, - "body-id-02-plant-flipx": {"x": -0.65, "y": 0.23, "width": 8, "height": 12, "path": "body-normal.body-id-02-plant-flipx"}, - "body-id-02-reptile": {"x": -0.65, "y": 0.23, "width": 8, "height": 12, "path": "body-normal.body-id-02-reptile"}, - "body-id-02-reptile-flipx": {"x": -0.65, "y": 0.23, "width": 8, "height": 12, "path": "body-normal.body-id-02-reptile-flipx"}, - "body-id-03-aquatic": {"x": -0.65, "y": 0.23, "width": 7, "height": 11, "path": "body-normal.body-id-03-aquatic"}, - "body-id-03-aquatic-flipx": {"x": -0.65, "y": 0.23, "width": 7, "height": 11, "path": "body-normal.body-id-03-aquatic-flipx"}, - "body-id-03-beast": {"x": -0.65, "y": 0.23, "width": 7, "height": 11, "path": "body-normal.body-id-03-beast"}, - "body-id-03-beast-flipx": {"x": -0.65, "y": 0.23, "width": 7, "height": 11, "path": "body-normal.body-id-03-beast-flipx"}, - "body-id-03-bird": {"x": -0.65, "y": 0.23, "width": 7, "height": 11, "path": "body-normal.body-id-03-bird"}, - "body-id-03-bird-flipx": {"x": -0.65, "y": 0.23, "width": 7, "height": 11, "path": "body-normal.body-id-03-bird-flipx"}, - "body-id-03-bug": {"x": -0.65, "y": 0.23, "width": 7, "height": 11, "path": "body-normal.body-id-03-bug"}, - "body-id-03-bug-flipx": {"x": -0.65, "y": 0.23, "width": 7, "height": 11, "path": "body-normal.body-id-03-bug-flipx"}, - "body-id-03-plant": {"x": -0.65, "y": 0.23, "width": 7, "height": 11, "path": "body-normal.body-id-03-plant"}, - "body-id-03-plant-flipx": {"x": -0.65, "y": 0.23, "width": 7, "height": 11, "path": "body-normal.body-id-03-plant-flipx"}, - "body-id-03-reptile": {"x": -0.65, "y": 0.23, "width": 7, "height": 11, "path": "body-normal.body-id-03-reptile"}, - "body-id-03-reptile-flipx": {"x": -0.65, "y": 0.23, "width": 7, "height": 11, "path": "body-normal.body-id-03-reptile-flipx"}, - "body-id-04-aquatic": {"x": -0.65, "y": 0.23, "width": 7, "height": 12, "path": "body-normal.body-id-04-aquatic"}, - "body-id-04-aquatic-flipx": {"x": -0.65, "y": 0.23, "width": 7, "height": 12, "path": "body-normal.body-id-04-aquatic-flipx"}, - "body-id-04-beast": {"x": -0.65, "y": 0.23, "width": 7, "height": 12, "path": "body-normal.body-id-04-beast"}, - "body-id-04-beast-flipx": {"x": -0.65, "y": 0.23, "width": 7, "height": 12, "path": "body-normal.body-id-04-beast-flipx"}, - "body-id-04-bird": {"x": -0.65, "y": 0.23, "width": 7, "height": 12, "path": "body-normal.body-id-04-bird"}, - "body-id-04-bird-flipx": {"x": -0.65, "y": 0.23, "width": 7, "height": 12, "path": "body-normal.body-id-04-bird-flipx"}, - "body-id-04-bug": {"x": -0.65, "y": 0.23, "width": 7, "height": 12, "path": "body-normal.body-id-04-bug"}, - "body-id-04-bug-flipx": {"x": -0.65, "y": 0.23, "width": 7, "height": 12, "path": "body-normal.body-id-04-bug-flipx"}, - "body-id-04-plant": {"x": -0.65, "y": 0.23, "width": 7, "height": 12, "path": "body-normal.body-id-04-plant"}, - "body-id-04-plant-flipx": {"x": -0.65, "y": 0.23, "width": 7, "height": 12, "path": "body-normal.body-id-04-plant-flipx"}, - "body-id-04-reptile": {"x": -0.65, "y": 0.23, "width": 7, "height": 12, "path": "body-normal.body-id-04-reptile"}, - "body-id-04-reptile-flipx": {"x": -0.65, "y": 0.23, "width": 7, "height": 12, "path": "body-normal.body-id-04-reptile-flipx"}, - "body-id-05-aquatic": {"x": -0.65, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-05-aquatic"}, - "body-id-05-aquatic-flipx": {"x": -0.65, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-05-aquatic-flipx"}, - "body-id-05-beast": {"x": -0.65, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-05-beast"}, - "body-id-05-beast-flipx": {"x": -0.65, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-05-beast-flipx"}, - "body-id-05-bird": {"x": -0.65, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-05-bird"}, - "body-id-05-bird-flipx": {"x": -0.65, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-05-bird-flipx"}, - "body-id-05-bug": {"x": -0.65, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-05-bug"}, - "body-id-05-bug-flipx": {"x": -0.65, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-05-bug-flipx"}, - "body-id-05-plant": {"x": -0.65, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-05-plant"}, - "body-id-05-plant-flipx": {"x": -0.65, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-05-plant-flipx"}, - "body-id-05-reptile": {"x": -0.65, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-05-reptile"}, - "body-id-05-reptile-flipx": {"x": -0.65, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-05-reptile-flipx"}, - "body-id-06-aquatic": {"x": -0.65, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-06-aquatic"}, - "body-id-06-aquatic-flipx": {"x": -0.65, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-06-aquatic-flipx"}, - "body-id-06-beast": {"x": -0.65, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-06-beast"}, - "body-id-06-beast-flipx": {"x": -0.65, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-06-beast-flipx"}, - "body-id-06-bird": {"x": -0.65, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-06-bird"}, - "body-id-06-bird-flipx": {"x": -0.65, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-06-bird-flipx"}, - "body-id-06-bug": {"x": -0.65, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-06-bug"}, - "body-id-06-bug-flipx": {"x": -0.65, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-06-bug-flipx"}, - "body-id-06-plant": {"x": -0.65, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-06-plant"}, - "body-id-06-plant-flipx": {"x": -0.65, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-06-plant-flipx"}, - "body-id-06-reptile": {"x": -0.65, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-06-reptile"}, - "body-id-06-reptile-flipx": {"x": -0.65, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-06-reptile-flipx"}, - "body-id-07-aquatic": {"x": -0.65, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-07-aquatic"}, - "body-id-07-aquatic-flipx": {"x": -0.65, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-07-aquatic-flipx"}, - "body-id-07-beast": {"x": -0.65, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-07-beast"}, - "body-id-07-beast-flipx": {"x": -0.65, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-07-beast-flipx"}, - "body-id-07-bird": {"x": -0.65, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-07-bird"}, - "body-id-07-bird-flipx": {"x": -0.65, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-07-bird-flipx"}, - "body-id-07-bug": {"x": -0.65, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-07-bug"}, - "body-id-07-bug-flipx": {"x": -0.65, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-07-bug-flipx"}, - "body-id-07-plant": {"x": -0.65, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-07-plant"}, - "body-id-07-plant-flipx": {"x": -0.65, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-07-plant-flipx"}, - "body-id-07-reptile": {"x": -0.65, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-07-reptile"}, - "body-id-07-reptile-flipx": {"x": -0.65, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-07-reptile-flipx"}, - "body-id-08-aquatic": {"x": -0.65, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-08-aquatic"}, - "body-id-08-aquatic-flipx": {"x": -0.65, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-08-aquatic-flipx"}, - "body-id-08-beast": {"x": -0.65, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-08-beast"}, - "body-id-08-beast-flipx": {"x": -0.65, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-08-beast-flipx"}, - "body-id-08-bird": {"x": -0.65, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-08-bird"}, - "body-id-08-bird-flipx": {"x": -0.65, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-08-bird-flipx"}, - "body-id-08-bug": {"x": -0.65, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-08-bug"}, - "body-id-08-bug-flipx": {"x": -0.65, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-08-bug-flipx"}, - "body-id-08-plant": {"x": -0.65, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-08-plant"}, - "body-id-08-plant-flipx": {"x": -0.65, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-08-plant-flipx"}, - "body-id-08-reptile": {"x": -0.65, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-08-reptile"}, - "body-id-08-reptile-flipx": {"x": -0.65, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-08-reptile-flipx"}, - "body-id-09-aquatic": {"x": -0.65, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-09-aquatic"}, - "body-id-09-aquatic-flipx": {"x": -0.65, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-09-aquatic-flipx"}, - "body-id-09-beast": {"x": -0.65, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-09-beast"}, - "body-id-09-beast-flipx": {"x": -0.65, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-09-beast-flipx"}, - "body-id-09-bird": {"x": -0.65, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-09-bird"}, - "body-id-09-bird-flipx": {"x": -0.65, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-09-bird-flipx"}, - "body-id-09-bug": {"x": -0.65, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-09-bug"}, - "body-id-09-bug-flipx": {"x": -0.65, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-09-bug-flipx"}, - "body-id-09-plant": {"x": -0.65, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-09-plant"}, - "body-id-09-plant-flipx": {"x": -0.65, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-09-plant-flipx"}, - "body-id-09-reptile": {"x": -0.65, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-09-reptile"}, - "body-id-09-reptile-flipx": {"x": -0.65, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-09-reptile-flipx"} - }, - "body-id-d": { - "body-id-d-00": {"x": -0.65, "y": 0.23, "width": 8, "height": 13, "path": "body-normal.body-id-d-00"}, - "body-id-d-01": {"x": 0.35, "y": 0.23, "width": 6, "height": 13, "path": "body-normal.body-id-d-01"}, - "body-id-d-02": {"x": 0.35, "y": 0.73, "width": 8, "height": 12, "path": "body-normal.body-id-d-02"}, - "body-id-d-03": {"x": -0.15, "y": 0.23, "width": 7, "height": 11, "path": "body-normal.body-id-d-03"}, - "body-id-d-04": {"x": -0.15, "y": 0.73, "width": 7, "height": 12, "path": "body-normal.body-id-d-04"}, - "body-id-d-05": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-d-05"}, - "body-id-d-06": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-d-06"}, - "body-id-d-07": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-d-07"}, - "body-id-d-08": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-d-08"}, - "body-id-d-09": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-d-09"}, - "body-id-00-aquatic": {"x": -0.65, "y": 0.23, "width": 8, "height": 13, "path": "body-normal.body-id-00-aquatic"}, - "body-id-00-aquatic-flipx": {"x": -0.65, "y": 0.23, "width": 8, "height": 13, "path": "body-normal.body-id-00-aquatic-flipx"}, - "body-id-00-beast": {"x": -0.65, "y": 0.23, "width": 8, "height": 13, "path": "body-normal.body-id-00-beast"}, - "body-id-00-beast-flipx": {"x": -0.65, "y": 0.23, "width": 8, "height": 13, "path": "body-normal.body-id-00-beast-flipx"}, - "body-id-00-bird": {"x": -0.65, "y": 0.23, "width": 8, "height": 13, "path": "body-normal.body-id-00-bird"}, - "body-id-00-bird-flipx": {"x": -0.65, "y": 0.23, "width": 8, "height": 13, "path": "body-normal.body-id-00-bird-flipx"}, - "body-id-00-bug": {"x": -0.65, "y": 0.23, "width": 8, "height": 13, "path": "body-normal.body-id-00-bug"}, - "body-id-00-bug-flipx": {"x": -0.65, "y": 0.23, "width": 8, "height": 13, "path": "body-normal.body-id-00-bug-flipx"}, - "body-id-00-plant": {"x": -0.65, "y": 0.23, "width": 8, "height": 13, "path": "body-normal.body-id-00-plant"}, - "body-id-00-plant-flipx": {"x": -0.65, "y": 0.23, "width": 8, "height": 13, "path": "body-normal.body-id-00-plant-flipx"}, - "body-id-00-reptile": {"x": -0.65, "y": 0.23, "width": 8, "height": 13, "path": "body-normal.body-id-00-reptile"}, - "body-id-00-reptile-flipx": {"x": -0.65, "y": 0.23, "width": 8, "height": 13, "path": "body-normal.body-id-00-reptile-flipx"}, - "body-id-01-aquatic": {"x": 0.35, "y": 0.23, "width": 6, "height": 13, "path": "body-normal.body-id-01-aquatic"}, - "body-id-01-aquatic-flipx": {"x": 0.35, "y": 0.23, "width": 6, "height": 13, "path": "body-normal.body-id-01-aquatic-flipx"}, - "body-id-01-beast": {"x": 0.35, "y": 0.23, "width": 6, "height": 13, "path": "body-normal.body-id-01-beast"}, - "body-id-01-beast-flipx": {"x": 0.35, "y": 0.23, "width": 6, "height": 13, "path": "body-normal.body-id-01-beast-flipx"}, - "body-id-01-bird": {"x": 0.35, "y": 0.23, "width": 6, "height": 13, "path": "body-normal.body-id-01-bird"}, - "body-id-01-bird-flipx": {"x": 0.35, "y": 0.23, "width": 6, "height": 13, "path": "body-normal.body-id-01-bird-flipx"}, - "body-id-01-bug": {"x": 0.35, "y": 0.23, "width": 6, "height": 13, "path": "body-normal.body-id-01-bug"}, - "body-id-01-bug-flipx": {"x": 0.35, "y": 0.23, "width": 6, "height": 13, "path": "body-normal.body-id-01-bug-flipx"}, - "body-id-01-plant": {"x": 0.35, "y": 0.23, "width": 6, "height": 13, "path": "body-normal.body-id-01-plant"}, - "body-id-01-plant-flipx": {"x": 0.35, "y": 0.23, "width": 6, "height": 13, "path": "body-normal.body-id-01-plant-flipx"}, - "body-id-01-reptile": {"x": 0.35, "y": 0.23, "width": 6, "height": 13, "path": "body-normal.body-id-01-reptile"}, - "body-id-01-reptile-flipx": {"x": 0.35, "y": 0.23, "width": 6, "height": 13, "path": "body-normal.body-id-01-reptile-flipx"}, - "body-id-02-aquatic": {"x": 0.35, "y": 0.73, "width": 8, "height": 12, "path": "body-normal.body-id-02-aquatic"}, - "body-id-02-aquatic-flipx": {"x": 0.35, "y": 0.73, "width": 8, "height": 12, "path": "body-normal.body-id-02-aquatic-flipx"}, - "body-id-02-beast": {"x": 0.35, "y": 0.73, "width": 8, "height": 12, "path": "body-normal.body-id-02-beast"}, - "body-id-02-beast-flipx": {"x": 0.35, "y": 0.73, "width": 8, "height": 12, "path": "body-normal.body-id-02-beast-flipx"}, - "body-id-02-bird": {"x": 0.35, "y": 0.73, "width": 8, "height": 12, "path": "body-normal.body-id-02-bird"}, - "body-id-02-bird-flipx": {"x": 0.35, "y": 0.73, "width": 8, "height": 12, "path": "body-normal.body-id-02-bird-flipx"}, - "body-id-02-bug": {"x": 0.35, "y": 0.73, "width": 8, "height": 12, "path": "body-normal.body-id-02-bug"}, - "body-id-02-bug-flipx": {"x": 0.35, "y": 0.73, "width": 8, "height": 12, "path": "body-normal.body-id-02-bug-flipx"}, - "body-id-02-plant": {"x": 0.35, "y": 0.73, "width": 8, "height": 12, "path": "body-normal.body-id-02-plant"}, - "body-id-02-plant-flipx": {"x": 0.35, "y": 0.73, "width": 8, "height": 12, "path": "body-normal.body-id-02-plant-flipx"}, - "body-id-02-reptile": {"x": 0.35, "y": 0.73, "width": 8, "height": 12, "path": "body-normal.body-id-02-reptile"}, - "body-id-02-reptile-flipx": {"x": 0.35, "y": 0.73, "width": 8, "height": 12, "path": "body-normal.body-id-02-reptile-flipx"}, - "body-id-03-aquatic": {"x": -0.15, "y": 0.23, "width": 7, "height": 11, "path": "body-normal.body-id-03-aquatic"}, - "body-id-03-aquatic-flipx": {"x": -0.15, "y": 0.23, "width": 7, "height": 11, "path": "body-normal.body-id-03-aquatic-flipx"}, - "body-id-03-beast": {"x": -0.15, "y": 0.23, "width": 7, "height": 11, "path": "body-normal.body-id-03-beast"}, - "body-id-03-beast-flipx": {"x": -0.15, "y": 0.23, "width": 7, "height": 11, "path": "body-normal.body-id-03-beast-flipx"}, - "body-id-03-bird": {"x": -0.15, "y": 0.23, "width": 7, "height": 11, "path": "body-normal.body-id-03-bird"}, - "body-id-03-bird-flipx": {"x": -0.15, "y": 0.23, "width": 7, "height": 11, "path": "body-normal.body-id-03-bird-flipx"}, - "body-id-03-bug": {"x": -0.15, "y": 0.23, "width": 7, "height": 11, "path": "body-normal.body-id-03-bug"}, - "body-id-03-bug-flipx": {"x": -0.15, "y": 0.23, "width": 7, "height": 11, "path": "body-normal.body-id-03-bug-flipx"}, - "body-id-03-plant": {"x": -0.15, "y": 0.23, "width": 7, "height": 11, "path": "body-normal.body-id-03-plant"}, - "body-id-03-plant-flipx": {"x": -0.15, "y": 0.23, "width": 7, "height": 11, "path": "body-normal.body-id-03-plant-flipx"}, - "body-id-03-reptile": {"x": -0.15, "y": 0.23, "width": 7, "height": 11, "path": "body-normal.body-id-03-reptile"}, - "body-id-03-reptile-flipx": {"x": -0.15, "y": 0.23, "width": 7, "height": 11, "path": "body-normal.body-id-03-reptile-flipx"}, - "body-id-04-aquatic": {"x": -0.15, "y": 0.73, "width": 7, "height": 12, "path": "body-normal.body-id-04-aquatic"}, - "body-id-04-aquatic-flipx": {"x": -0.15, "y": 0.73, "width": 7, "height": 12, "path": "body-normal.body-id-04-aquatic-flipx"}, - "body-id-04-beast": {"x": -0.15, "y": 0.73, "width": 7, "height": 12, "path": "body-normal.body-id-04-beast"}, - "body-id-04-beast-flipx": {"x": -0.15, "y": 0.73, "width": 7, "height": 12, "path": "body-normal.body-id-04-beast-flipx"}, - "body-id-04-bird": {"x": -0.15, "y": 0.73, "width": 7, "height": 12, "path": "body-normal.body-id-04-bird"}, - "body-id-04-bird-flipx": {"x": -0.15, "y": 0.73, "width": 7, "height": 12, "path": "body-normal.body-id-04-bird-flipx"}, - "body-id-04-bug": {"x": -0.15, "y": 0.73, "width": 7, "height": 12, "path": "body-normal.body-id-04-bug"}, - "body-id-04-bug-flipx": {"x": -0.15, "y": 0.73, "width": 7, "height": 12, "path": "body-normal.body-id-04-bug-flipx"}, - "body-id-04-plant": {"x": -0.15, "y": 0.73, "width": 7, "height": 12, "path": "body-normal.body-id-04-plant"}, - "body-id-04-plant-flipx": {"x": -0.15, "y": 0.73, "width": 7, "height": 12, "path": "body-normal.body-id-04-plant-flipx"}, - "body-id-04-reptile": {"x": -0.15, "y": 0.73, "width": 7, "height": 12, "path": "body-normal.body-id-04-reptile"}, - "body-id-04-reptile-flipx": {"x": -0.15, "y": 0.73, "width": 7, "height": 12, "path": "body-normal.body-id-04-reptile-flipx"}, - "body-id-05-aquatic": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-05-aquatic"}, - "body-id-05-aquatic-flipx": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-05-aquatic-flipx"}, - "body-id-05-beast": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-05-beast"}, - "body-id-05-beast-flipx": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-05-beast-flipx"}, - "body-id-05-bird": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-05-bird"}, - "body-id-05-bird-flipx": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-05-bird-flipx"}, - "body-id-05-bug": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-05-bug"}, - "body-id-05-bug-flipx": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-05-bug-flipx"}, - "body-id-05-plant": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-05-plant"}, - "body-id-05-plant-flipx": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-05-plant-flipx"}, - "body-id-05-reptile": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-05-reptile"}, - "body-id-05-reptile-flipx": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-05-reptile-flipx"}, - "body-id-06-aquatic": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-06-aquatic"}, - "body-id-06-aquatic-flipx": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-06-aquatic-flipx"}, - "body-id-06-beast": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-06-beast"}, - "body-id-06-beast-flipx": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-06-beast-flipx"}, - "body-id-06-bird": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-06-bird"}, - "body-id-06-bird-flipx": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-06-bird-flipx"}, - "body-id-06-bug": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-06-bug"}, - "body-id-06-bug-flipx": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-06-bug-flipx"}, - "body-id-06-plant": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-06-plant"}, - "body-id-06-plant-flipx": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-06-plant-flipx"}, - "body-id-06-reptile": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-06-reptile"}, - "body-id-06-reptile-flipx": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-06-reptile-flipx"}, - "body-id-07-aquatic": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-07-aquatic"}, - "body-id-07-aquatic-flipx": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-07-aquatic-flipx"}, - "body-id-07-beast": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-07-beast"}, - "body-id-07-beast-flipx": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-07-beast-flipx"}, - "body-id-07-bird": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-07-bird"}, - "body-id-07-bird-flipx": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-07-bird-flipx"}, - "body-id-07-bug": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-07-bug"}, - "body-id-07-bug-flipx": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-07-bug-flipx"}, - "body-id-07-plant": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-07-plant"}, - "body-id-07-plant-flipx": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-07-plant-flipx"}, - "body-id-07-reptile": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-07-reptile"}, - "body-id-07-reptile-flipx": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-07-reptile-flipx"}, - "body-id-08-aquatic": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-08-aquatic"}, - "body-id-08-aquatic-flipx": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-08-aquatic-flipx"}, - "body-id-08-beast": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-08-beast"}, - "body-id-08-beast-flipx": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-08-beast-flipx"}, - "body-id-08-bird": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-08-bird"}, - "body-id-08-bird-flipx": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-08-bird-flipx"}, - "body-id-08-bug": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-08-bug"}, - "body-id-08-bug-flipx": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-08-bug-flipx"}, - "body-id-08-plant": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-08-plant"}, - "body-id-08-plant-flipx": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-08-plant-flipx"}, - "body-id-08-reptile": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-08-reptile"}, - "body-id-08-reptile-flipx": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-08-reptile-flipx"}, - "body-id-09-aquatic": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-09-aquatic"}, - "body-id-09-aquatic-flipx": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-09-aquatic-flipx"}, - "body-id-09-beast": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-09-beast"}, - "body-id-09-beast-flipx": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-09-beast-flipx"}, - "body-id-09-bird": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-09-bird"}, - "body-id-09-bird-flipx": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-09-bird-flipx"}, - "body-id-09-bug": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-09-bug"}, - "body-id-09-bug-flipx": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-09-bug-flipx"}, - "body-id-09-plant": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-09-plant"}, - "body-id-09-plant-flipx": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-09-plant-flipx"}, - "body-id-09-reptile": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-09-reptile"}, - "body-id-09-reptile-flipx": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-09-reptile-flipx"} - }, - "body-id-e": { - "body-id-e-00": {"x": -0.65, "y": 0.23, "width": 8, "height": 13, "path": "body-normal.body-id-e-00"}, - "body-id-e-01": {"x": 0.35, "y": 0.23, "width": 6, "height": 13, "path": "body-normal.body-id-e-01"}, - "body-id-e-02": {"x": 0.35, "y": 0.73, "width": 8, "height": 12, "path": "body-normal.body-id-e-02"}, - "body-id-e-03": {"x": -0.15, "y": 0.23, "width": 7, "height": 11, "path": "body-normal.body-id-e-03"}, - "body-id-e-04": {"x": -0.15, "y": 0.73, "width": 7, "height": 12, "path": "body-normal.body-id-e-04"}, - "body-id-e-05": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-e-05"}, - "body-id-e-06": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-e-06"}, - "body-id-e-07": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-e-07"}, - "body-id-e-08": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-e-08"}, - "body-id-e-09": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-e-09"}, - "body-id-00-aquatic": {"x": -0.65, "y": 0.23, "width": 8, "height": 13, "path": "body-normal.body-id-00-aquatic"}, - "body-id-00-aquatic-flipx": {"x": -0.65, "y": 0.23, "width": 8, "height": 13, "path": "body-normal.body-id-00-aquatic-flipx"}, - "body-id-00-beast": {"x": -0.65, "y": 0.23, "width": 8, "height": 13, "path": "body-normal.body-id-00-beast"}, - "body-id-00-beast-flipx": {"x": -0.65, "y": 0.23, "width": 8, "height": 13, "path": "body-normal.body-id-00-beast-flipx"}, - "body-id-00-bird": {"x": -0.65, "y": 0.23, "width": 8, "height": 13, "path": "body-normal.body-id-00-bird"}, - "body-id-00-bird-flipx": {"x": -0.65, "y": 0.23, "width": 8, "height": 13, "path": "body-normal.body-id-00-bird-flipx"}, - "body-id-00-bug": {"x": -0.65, "y": 0.23, "width": 8, "height": 13, "path": "body-normal.body-id-00-bug"}, - "body-id-00-bug-flipx": {"x": -0.65, "y": 0.23, "width": 8, "height": 13, "path": "body-normal.body-id-00-bug-flipx"}, - "body-id-00-plant": {"x": -0.65, "y": 0.23, "width": 8, "height": 13, "path": "body-normal.body-id-00-plant"}, - "body-id-00-plant-flipx": {"x": -0.65, "y": 0.23, "width": 8, "height": 13, "path": "body-normal.body-id-00-plant-flipx"}, - "body-id-00-reptile": {"x": -0.65, "y": 0.23, "width": 8, "height": 13, "path": "body-normal.body-id-00-reptile"}, - "body-id-00-reptile-flipx": {"x": -0.65, "y": 0.23, "width": 8, "height": 13, "path": "body-normal.body-id-00-reptile-flipx"}, - "body-id-01-aquatic": {"x": 0.35, "y": 0.23, "width": 6, "height": 13, "path": "body-normal.body-id-01-aquatic"}, - "body-id-01-aquatic-flipx": {"x": 0.35, "y": 0.23, "width": 6, "height": 13, "path": "body-normal.body-id-01-aquatic-flipx"}, - "body-id-01-beast": {"x": 0.35, "y": 0.23, "width": 6, "height": 13, "path": "body-normal.body-id-01-beast"}, - "body-id-01-beast-flipx": {"x": 0.35, "y": 0.23, "width": 6, "height": 13, "path": "body-normal.body-id-01-beast-flipx"}, - "body-id-01-bird": {"x": 0.35, "y": 0.23, "width": 6, "height": 13, "path": "body-normal.body-id-01-bird"}, - "body-id-01-bird-flipx": {"x": 0.35, "y": 0.23, "width": 6, "height": 13, "path": "body-normal.body-id-01-bird-flipx"}, - "body-id-01-bug": {"x": 0.35, "y": 0.23, "width": 6, "height": 13, "path": "body-normal.body-id-01-bug"}, - "body-id-01-bug-flipx": {"x": 0.35, "y": 0.23, "width": 6, "height": 13, "path": "body-normal.body-id-01-bug-flipx"}, - "body-id-01-plant": {"x": 0.35, "y": 0.23, "width": 6, "height": 13, "path": "body-normal.body-id-01-plant"}, - "body-id-01-plant-flipx": {"x": 0.35, "y": 0.23, "width": 6, "height": 13, "path": "body-normal.body-id-01-plant-flipx"}, - "body-id-01-reptile": {"x": 0.35, "y": 0.23, "width": 6, "height": 13, "path": "body-normal.body-id-01-reptile"}, - "body-id-01-reptile-flipx": {"x": 0.35, "y": 0.23, "width": 6, "height": 13, "path": "body-normal.body-id-01-reptile-flipx"}, - "body-id-02-aquatic": {"x": 0.35, "y": 0.73, "width": 8, "height": 12, "path": "body-normal.body-id-02-aquatic"}, - "body-id-02-aquatic-flipx": {"x": 0.35, "y": 0.73, "width": 8, "height": 12, "path": "body-normal.body-id-02-aquatic-flipx"}, - "body-id-02-beast": {"x": 0.35, "y": 0.73, "width": 8, "height": 12, "path": "body-normal.body-id-02-beast"}, - "body-id-02-beast-flipx": {"x": 0.35, "y": 0.73, "width": 8, "height": 12, "path": "body-normal.body-id-02-beast-flipx"}, - "body-id-02-bird": {"x": 0.35, "y": 0.73, "width": 8, "height": 12, "path": "body-normal.body-id-02-bird"}, - "body-id-02-bird-flipx": {"x": 0.35, "y": 0.73, "width": 8, "height": 12, "path": "body-normal.body-id-02-bird-flipx"}, - "body-id-02-bug": {"x": 0.35, "y": 0.73, "width": 8, "height": 12, "path": "body-normal.body-id-02-bug"}, - "body-id-02-bug-flipx": {"x": 0.35, "y": 0.73, "width": 8, "height": 12, "path": "body-normal.body-id-02-bug-flipx"}, - "body-id-02-plant": {"x": 0.35, "y": 0.73, "width": 8, "height": 12, "path": "body-normal.body-id-02-plant"}, - "body-id-02-plant-flipx": {"x": 0.35, "y": 0.73, "width": 8, "height": 12, "path": "body-normal.body-id-02-plant-flipx"}, - "body-id-02-reptile": {"x": 0.35, "y": 0.73, "width": 8, "height": 12, "path": "body-normal.body-id-02-reptile"}, - "body-id-02-reptile-flipx": {"x": 0.35, "y": 0.73, "width": 8, "height": 12, "path": "body-normal.body-id-02-reptile-flipx"}, - "body-id-03-aquatic": {"x": -0.15, "y": 0.23, "width": 7, "height": 11, "path": "body-normal.body-id-03-aquatic"}, - "body-id-03-aquatic-flipx": {"x": -0.15, "y": 0.23, "width": 7, "height": 11, "path": "body-normal.body-id-03-aquatic-flipx"}, - "body-id-03-beast": {"x": -0.15, "y": 0.23, "width": 7, "height": 11, "path": "body-normal.body-id-03-beast"}, - "body-id-03-beast-flipx": {"x": -0.15, "y": 0.23, "width": 7, "height": 11, "path": "body-normal.body-id-03-beast-flipx"}, - "body-id-03-bird": {"x": -0.15, "y": 0.23, "width": 7, "height": 11, "path": "body-normal.body-id-03-bird"}, - "body-id-03-bird-flipx": {"x": -0.15, "y": 0.23, "width": 7, "height": 11, "path": "body-normal.body-id-03-bird-flipx"}, - "body-id-03-bug": {"x": -0.15, "y": 0.23, "width": 7, "height": 11, "path": "body-normal.body-id-03-bug"}, - "body-id-03-bug-flipx": {"x": -0.15, "y": 0.23, "width": 7, "height": 11, "path": "body-normal.body-id-03-bug-flipx"}, - "body-id-03-plant": {"x": -0.15, "y": 0.23, "width": 7, "height": 11, "path": "body-normal.body-id-03-plant"}, - "body-id-03-plant-flipx": {"x": -0.15, "y": 0.23, "width": 7, "height": 11, "path": "body-normal.body-id-03-plant-flipx"}, - "body-id-03-reptile": {"x": -0.15, "y": 0.23, "width": 7, "height": 11, "path": "body-normal.body-id-03-reptile"}, - "body-id-03-reptile-flipx": {"x": -0.15, "y": 0.23, "width": 7, "height": 11, "path": "body-normal.body-id-03-reptile-flipx"}, - "body-id-04-aquatic": {"x": -0.15, "y": 0.73, "width": 7, "height": 12, "path": "body-normal.body-id-04-aquatic"}, - "body-id-04-aquatic-flipx": {"x": -0.15, "y": 0.73, "width": 7, "height": 12, "path": "body-normal.body-id-04-aquatic-flipx"}, - "body-id-04-beast": {"x": -0.15, "y": 0.73, "width": 7, "height": 12, "path": "body-normal.body-id-04-beast"}, - "body-id-04-beast-flipx": {"x": -0.15, "y": 0.73, "width": 7, "height": 12, "path": "body-normal.body-id-04-beast-flipx"}, - "body-id-04-bird": {"x": -0.15, "y": 0.73, "width": 7, "height": 12, "path": "body-normal.body-id-04-bird"}, - "body-id-04-bird-flipx": {"x": -0.15, "y": 0.73, "width": 7, "height": 12, "path": "body-normal.body-id-04-bird-flipx"}, - "body-id-04-bug": {"x": -0.15, "y": 0.73, "width": 7, "height": 12, "path": "body-normal.body-id-04-bug"}, - "body-id-04-bug-flipx": {"x": -0.15, "y": 0.73, "width": 7, "height": 12, "path": "body-normal.body-id-04-bug-flipx"}, - "body-id-04-plant": {"x": -0.15, "y": 0.73, "width": 7, "height": 12, "path": "body-normal.body-id-04-plant"}, - "body-id-04-plant-flipx": {"x": -0.15, "y": 0.73, "width": 7, "height": 12, "path": "body-normal.body-id-04-plant-flipx"}, - "body-id-04-reptile": {"x": -0.15, "y": 0.73, "width": 7, "height": 12, "path": "body-normal.body-id-04-reptile"}, - "body-id-04-reptile-flipx": {"x": -0.15, "y": 0.73, "width": 7, "height": 12, "path": "body-normal.body-id-04-reptile-flipx"}, - "body-id-05-aquatic": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-05-aquatic"}, - "body-id-05-aquatic-flipx": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-05-aquatic-flipx"}, - "body-id-05-beast": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-05-beast"}, - "body-id-05-beast-flipx": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-05-beast-flipx"}, - "body-id-05-bird": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-05-bird"}, - "body-id-05-bird-flipx": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-05-bird-flipx"}, - "body-id-05-bug": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-05-bug"}, - "body-id-05-bug-flipx": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-05-bug-flipx"}, - "body-id-05-plant": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-05-plant"}, - "body-id-05-plant-flipx": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-05-plant-flipx"}, - "body-id-05-reptile": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-05-reptile"}, - "body-id-05-reptile-flipx": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-05-reptile-flipx"}, - "body-id-06-aquatic": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-06-aquatic"}, - "body-id-06-aquatic-flipx": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-06-aquatic-flipx"}, - "body-id-06-beast": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-06-beast"}, - "body-id-06-beast-flipx": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-06-beast-flipx"}, - "body-id-06-bird": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-06-bird"}, - "body-id-06-bird-flipx": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-06-bird-flipx"}, - "body-id-06-bug": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-06-bug"}, - "body-id-06-bug-flipx": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-06-bug-flipx"}, - "body-id-06-plant": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-06-plant"}, - "body-id-06-plant-flipx": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-06-plant-flipx"}, - "body-id-06-reptile": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-06-reptile"}, - "body-id-06-reptile-flipx": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-06-reptile-flipx"}, - "body-id-07-aquatic": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-07-aquatic"}, - "body-id-07-aquatic-flipx": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-07-aquatic-flipx"}, - "body-id-07-beast": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-07-beast"}, - "body-id-07-beast-flipx": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-07-beast-flipx"}, - "body-id-07-bird": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-07-bird"}, - "body-id-07-bird-flipx": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-07-bird-flipx"}, - "body-id-07-bug": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-07-bug"}, - "body-id-07-bug-flipx": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-07-bug-flipx"}, - "body-id-07-plant": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-07-plant"}, - "body-id-07-plant-flipx": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-07-plant-flipx"}, - "body-id-07-reptile": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-07-reptile"}, - "body-id-07-reptile-flipx": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-07-reptile-flipx"}, - "body-id-08-aquatic": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-08-aquatic"}, - "body-id-08-aquatic-flipx": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-08-aquatic-flipx"}, - "body-id-08-beast": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-08-beast"}, - "body-id-08-beast-flipx": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-08-beast-flipx"}, - "body-id-08-bird": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-08-bird"}, - "body-id-08-bird-flipx": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-08-bird-flipx"}, - "body-id-08-bug": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-08-bug"}, - "body-id-08-bug-flipx": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-08-bug-flipx"}, - "body-id-08-plant": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-08-plant"}, - "body-id-08-plant-flipx": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-08-plant-flipx"}, - "body-id-08-reptile": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-08-reptile"}, - "body-id-08-reptile-flipx": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-08-reptile-flipx"}, - "body-id-09-aquatic": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-09-aquatic"}, - "body-id-09-aquatic-flipx": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-09-aquatic-flipx"}, - "body-id-09-beast": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-09-beast"}, - "body-id-09-beast-flipx": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-09-beast-flipx"}, - "body-id-09-bird": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-09-bird"}, - "body-id-09-bird-flipx": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-09-bird-flipx"}, - "body-id-09-bug": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-09-bug"}, - "body-id-09-bug-flipx": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-09-bug-flipx"}, - "body-id-09-plant": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-09-plant"}, - "body-id-09-plant-flipx": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-09-plant-flipx"}, - "body-id-09-reptile": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-09-reptile"}, - "body-id-09-reptile-flipx": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-09-reptile-flipx"} - }, - "body-id-f": { - "body-id-f-00": {"x": -0.65, "y": 0.23, "width": 8, "height": 13, "path": "body-normal.body-id-f-00"}, - "body-id-f-01": {"x": 0.35, "y": 0.23, "width": 6, "height": 13, "path": "body-normal.body-id-f-01"}, - "body-id-f-02": {"x": 0.35, "y": 0.73, "width": 8, "height": 12, "path": "body-normal.body-id-f-02"}, - "body-id-f-03": {"x": -0.15, "y": 0.23, "width": 7, "height": 11, "path": "body-normal.body-id-f-03"}, - "body-id-f-04": {"x": -0.15, "y": 0.73, "width": 7, "height": 12, "path": "body-normal.body-id-f-04"}, - "body-id-f-05": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-f-05"}, - "body-id-f-06": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-f-06"}, - "body-id-f-07": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-f-07"}, - "body-id-f-08": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-f-08"}, - "body-id-f-09": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-f-09"}, - "body-id-00-aquatic": {"x": -0.65, "y": 0.23, "width": 8, "height": 13, "path": "body-normal.body-id-00-aquatic"}, - "body-id-00-aquatic-flipx": {"x": -0.65, "y": 0.23, "width": 8, "height": 13, "path": "body-normal.body-id-00-aquatic-flipx"}, - "body-id-00-beast": {"x": -0.65, "y": 0.23, "width": 8, "height": 13, "path": "body-normal.body-id-00-beast"}, - "body-id-00-beast-flipx": {"x": -0.65, "y": 0.23, "width": 8, "height": 13, "path": "body-normal.body-id-00-beast-flipx"}, - "body-id-00-bird": {"x": -0.65, "y": 0.23, "width": 8, "height": 13, "path": "body-normal.body-id-00-bird"}, - "body-id-00-bird-flipx": {"x": -0.65, "y": 0.23, "width": 8, "height": 13, "path": "body-normal.body-id-00-bird-flipx"}, - "body-id-00-bug": {"x": -0.65, "y": 0.23, "width": 8, "height": 13, "path": "body-normal.body-id-00-bug"}, - "body-id-00-bug-flipx": {"x": -0.65, "y": 0.23, "width": 8, "height": 13, "path": "body-normal.body-id-00-bug-flipx"}, - "body-id-00-plant": {"x": -0.65, "y": 0.23, "width": 8, "height": 13, "path": "body-normal.body-id-00-plant"}, - "body-id-00-plant-flipx": {"x": -0.65, "y": 0.23, "width": 8, "height": 13, "path": "body-normal.body-id-00-plant-flipx"}, - "body-id-00-reptile": {"x": -0.65, "y": 0.23, "width": 8, "height": 13, "path": "body-normal.body-id-00-reptile"}, - "body-id-00-reptile-flipx": {"x": -0.65, "y": 0.23, "width": 8, "height": 13, "path": "body-normal.body-id-00-reptile-flipx"}, - "body-id-01-aquatic": {"x": 0.35, "y": 0.23, "width": 6, "height": 13, "path": "body-normal.body-id-01-aquatic"}, - "body-id-01-aquatic-flipx": {"x": 0.35, "y": 0.23, "width": 6, "height": 13, "path": "body-normal.body-id-01-aquatic-flipx"}, - "body-id-01-beast": {"x": 0.35, "y": 0.23, "width": 6, "height": 13, "path": "body-normal.body-id-01-beast"}, - "body-id-01-beast-flipx": {"x": 0.35, "y": 0.23, "width": 6, "height": 13, "path": "body-normal.body-id-01-beast-flipx"}, - "body-id-01-bird": {"x": 0.35, "y": 0.23, "width": 6, "height": 13, "path": "body-normal.body-id-01-bird"}, - "body-id-01-bird-flipx": {"x": 0.35, "y": 0.23, "width": 6, "height": 13, "path": "body-normal.body-id-01-bird-flipx"}, - "body-id-01-bug": {"x": 0.35, "y": 0.23, "width": 6, "height": 13, "path": "body-normal.body-id-01-bug"}, - "body-id-01-bug-flipx": {"x": 0.35, "y": 0.23, "width": 6, "height": 13, "path": "body-normal.body-id-01-bug-flipx"}, - "body-id-01-plant": {"x": 0.35, "y": 0.23, "width": 6, "height": 13, "path": "body-normal.body-id-01-plant"}, - "body-id-01-plant-flipx": {"x": 0.35, "y": 0.23, "width": 6, "height": 13, "path": "body-normal.body-id-01-plant-flipx"}, - "body-id-01-reptile": {"x": 0.35, "y": 0.23, "width": 6, "height": 13, "path": "body-normal.body-id-01-reptile"}, - "body-id-01-reptile-flipx": {"x": 0.35, "y": 0.23, "width": 6, "height": 13, "path": "body-normal.body-id-01-reptile-flipx"}, - "body-id-02-aquatic": {"x": 0.35, "y": 0.73, "width": 8, "height": 12, "path": "body-normal.body-id-02-aquatic"}, - "body-id-02-aquatic-flipx": {"x": 0.35, "y": 0.73, "width": 8, "height": 12, "path": "body-normal.body-id-02-aquatic-flipx"}, - "body-id-02-beast": {"x": 0.35, "y": 0.73, "width": 8, "height": 12, "path": "body-normal.body-id-02-beast"}, - "body-id-02-beast-flipx": {"x": 0.35, "y": 0.73, "width": 8, "height": 12, "path": "body-normal.body-id-02-beast-flipx"}, - "body-id-02-bird": {"x": 0.35, "y": 0.73, "width": 8, "height": 12, "path": "body-normal.body-id-02-bird"}, - "body-id-02-bird-flipx": {"x": 0.35, "y": 0.73, "width": 8, "height": 12, "path": "body-normal.body-id-02-bird-flipx"}, - "body-id-02-bug": {"x": 0.35, "y": 0.73, "width": 8, "height": 12, "path": "body-normal.body-id-02-bug"}, - "body-id-02-bug-flipx": {"x": 0.35, "y": 0.73, "width": 8, "height": 12, "path": "body-normal.body-id-02-bug-flipx"}, - "body-id-02-plant": {"x": 0.35, "y": 0.73, "width": 8, "height": 12, "path": "body-normal.body-id-02-plant"}, - "body-id-02-plant-flipx": {"x": 0.35, "y": 0.73, "width": 8, "height": 12, "path": "body-normal.body-id-02-plant-flipx"}, - "body-id-02-reptile": {"x": 0.35, "y": 0.73, "width": 8, "height": 12, "path": "body-normal.body-id-02-reptile"}, - "body-id-02-reptile-flipx": {"x": 0.35, "y": 0.73, "width": 8, "height": 12, "path": "body-normal.body-id-02-reptile-flipx"}, - "body-id-03-aquatic": {"x": -0.15, "y": 0.23, "width": 7, "height": 11, "path": "body-normal.body-id-03-aquatic"}, - "body-id-03-aquatic-flipx": {"x": -0.15, "y": 0.23, "width": 7, "height": 11, "path": "body-normal.body-id-03-aquatic-flipx"}, - "body-id-03-beast": {"x": -0.15, "y": 0.23, "width": 7, "height": 11, "path": "body-normal.body-id-03-beast"}, - "body-id-03-beast-flipx": {"x": -0.15, "y": 0.23, "width": 7, "height": 11, "path": "body-normal.body-id-03-beast-flipx"}, - "body-id-03-bird": {"x": -0.15, "y": 0.23, "width": 7, "height": 11, "path": "body-normal.body-id-03-bird"}, - "body-id-03-bird-flipx": {"x": -0.15, "y": 0.23, "width": 7, "height": 11, "path": "body-normal.body-id-03-bird-flipx"}, - "body-id-03-bug": {"x": -0.15, "y": 0.23, "width": 7, "height": 11, "path": "body-normal.body-id-03-bug"}, - "body-id-03-bug-flipx": {"x": -0.15, "y": 0.23, "width": 7, "height": 11, "path": "body-normal.body-id-03-bug-flipx"}, - "body-id-03-plant": {"x": -0.15, "y": 0.23, "width": 7, "height": 11, "path": "body-normal.body-id-03-plant"}, - "body-id-03-plant-flipx": {"x": -0.15, "y": 0.23, "width": 7, "height": 11, "path": "body-normal.body-id-03-plant-flipx"}, - "body-id-03-reptile": {"x": -0.15, "y": 0.23, "width": 7, "height": 11, "path": "body-normal.body-id-03-reptile"}, - "body-id-03-reptile-flipx": {"x": -0.15, "y": 0.23, "width": 7, "height": 11, "path": "body-normal.body-id-03-reptile-flipx"}, - "body-id-04-aquatic": {"x": -0.15, "y": 0.73, "width": 7, "height": 12, "path": "body-normal.body-id-04-aquatic"}, - "body-id-04-aquatic-flipx": {"x": -0.15, "y": 0.73, "width": 7, "height": 12, "path": "body-normal.body-id-04-aquatic-flipx"}, - "body-id-04-beast": {"x": -0.15, "y": 0.73, "width": 7, "height": 12, "path": "body-normal.body-id-04-beast"}, - "body-id-04-beast-flipx": {"x": -0.15, "y": 0.73, "width": 7, "height": 12, "path": "body-normal.body-id-04-beast-flipx"}, - "body-id-04-bird": {"x": -0.15, "y": 0.73, "width": 7, "height": 12, "path": "body-normal.body-id-04-bird"}, - "body-id-04-bird-flipx": {"x": -0.15, "y": 0.73, "width": 7, "height": 12, "path": "body-normal.body-id-04-bird-flipx"}, - "body-id-04-bug": {"x": -0.15, "y": 0.73, "width": 7, "height": 12, "path": "body-normal.body-id-04-bug"}, - "body-id-04-bug-flipx": {"x": -0.15, "y": 0.73, "width": 7, "height": 12, "path": "body-normal.body-id-04-bug-flipx"}, - "body-id-04-plant": {"x": -0.15, "y": 0.73, "width": 7, "height": 12, "path": "body-normal.body-id-04-plant"}, - "body-id-04-plant-flipx": {"x": -0.15, "y": 0.73, "width": 7, "height": 12, "path": "body-normal.body-id-04-plant-flipx"}, - "body-id-04-reptile": {"x": -0.15, "y": 0.73, "width": 7, "height": 12, "path": "body-normal.body-id-04-reptile"}, - "body-id-04-reptile-flipx": {"x": -0.15, "y": 0.73, "width": 7, "height": 12, "path": "body-normal.body-id-04-reptile-flipx"}, - "body-id-05-aquatic": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-05-aquatic"}, - "body-id-05-aquatic-flipx": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-05-aquatic-flipx"}, - "body-id-05-beast": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-05-beast"}, - "body-id-05-beast-flipx": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-05-beast-flipx"}, - "body-id-05-bird": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-05-bird"}, - "body-id-05-bird-flipx": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-05-bird-flipx"}, - "body-id-05-bug": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-05-bug"}, - "body-id-05-bug-flipx": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-05-bug-flipx"}, - "body-id-05-plant": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-05-plant"}, - "body-id-05-plant-flipx": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-05-plant-flipx"}, - "body-id-05-reptile": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-05-reptile"}, - "body-id-05-reptile-flipx": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-05-reptile-flipx"}, - "body-id-06-aquatic": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-06-aquatic"}, - "body-id-06-aquatic-flipx": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-06-aquatic-flipx"}, - "body-id-06-beast": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-06-beast"}, - "body-id-06-beast-flipx": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-06-beast-flipx"}, - "body-id-06-bird": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-06-bird"}, - "body-id-06-bird-flipx": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-06-bird-flipx"}, - "body-id-06-bug": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-06-bug"}, - "body-id-06-bug-flipx": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-06-bug-flipx"}, - "body-id-06-plant": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-06-plant"}, - "body-id-06-plant-flipx": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-06-plant-flipx"}, - "body-id-06-reptile": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-06-reptile"}, - "body-id-06-reptile-flipx": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-06-reptile-flipx"}, - "body-id-07-aquatic": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-07-aquatic"}, - "body-id-07-aquatic-flipx": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-07-aquatic-flipx"}, - "body-id-07-beast": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-07-beast"}, - "body-id-07-beast-flipx": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-07-beast-flipx"}, - "body-id-07-bird": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-07-bird"}, - "body-id-07-bird-flipx": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-07-bird-flipx"}, - "body-id-07-bug": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-07-bug"}, - "body-id-07-bug-flipx": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-07-bug-flipx"}, - "body-id-07-plant": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-07-plant"}, - "body-id-07-plant-flipx": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-07-plant-flipx"}, - "body-id-07-reptile": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-07-reptile"}, - "body-id-07-reptile-flipx": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-07-reptile-flipx"}, - "body-id-08-aquatic": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-08-aquatic"}, - "body-id-08-aquatic-flipx": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-08-aquatic-flipx"}, - "body-id-08-beast": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-08-beast"}, - "body-id-08-beast-flipx": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-08-beast-flipx"}, - "body-id-08-bird": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-08-bird"}, - "body-id-08-bird-flipx": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-08-bird-flipx"}, - "body-id-08-bug": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-08-bug"}, - "body-id-08-bug-flipx": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-08-bug-flipx"}, - "body-id-08-plant": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-08-plant"}, - "body-id-08-plant-flipx": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-08-plant-flipx"}, - "body-id-08-reptile": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-08-reptile"}, - "body-id-08-reptile-flipx": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-08-reptile-flipx"}, - "body-id-09-aquatic": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-09-aquatic"}, - "body-id-09-aquatic-flipx": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-09-aquatic-flipx"}, - "body-id-09-beast": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-09-beast"}, - "body-id-09-beast-flipx": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-09-beast-flipx"}, - "body-id-09-bird": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-09-bird"}, - "body-id-09-bird-flipx": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-09-bird-flipx"}, - "body-id-09-bug": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-09-bug"}, - "body-id-09-bug-flipx": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-09-bug-flipx"}, - "body-id-09-plant": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-09-plant"}, - "body-id-09-plant-flipx": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-09-plant-flipx"}, - "body-id-09-reptile": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-09-reptile"}, - "body-id-09-reptile-flipx": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-09-reptile-flipx"} - }, - "body-light-breath": {"body-light-breath": {"x": -142.53, "y": 11.79, "rotation": -170.69, "width": 78, "height": 78, "path": "body-normal.body-light-breath"}}, - "body-light-life": {"body-light-life": {"x": -0.01, "y": 0.66, "width": 148, "height": 148, "path": "body-normal.body-light-life"}}, - "body-light-pulse": {"body-light-pulse": {"x": -245.31, "y": -186.45, "rotation": -170.69, "width": 15, "height": 14, "path": "body-normal.body-light-pulse"}}, - "leg-back-left": { - "mystic-leg-back-left": {"x": 32.56, "y": -0.8, "rotation": 83.45, "width": 80, "height": 93, "path": "body-normal.mystic-leg-back-left"}, - "mystic-leg-back-left-long": {"x": 34.89, "y": -5.5, "rotation": 221.45, "width": 85, "height": 82, "path": "body-normal.mystic-leg-back-left-long"}, - "mystic-leg-back-left-stretch": {"x": 27.29, "y": 1.58, "rotation": 54.45, "width": 67, "height": 70, "path": "body-normal.mystic-leg-back-left-stretch"} - }, - "leg-front-left": { - "mystic-leg-front-left": {"x": 21.98, "y": 1.18, "rotation": 97.51, "width": 70, "height": 63, "path": "body-normal.mystic-leg-front-left"}, - "mystic-leg-front-left-long": {"x": 27.48, "y": -6.04, "rotation": -173.75, "width": 89, "height": 77, "path": "body-normal.mystic-leg-front-left-long"}, - "mystic-leg-front-left-stretch": {"x": 19.24, "y": -3.96, "rotation": 142.15, "width": 70, "height": 77, "path": "body-normal.mystic-leg-front-left-stretch"} + "back": {"back": {"x": 85.77117647058823, "y": 20.594117647058827, "rotation": -64, "width": 294.11764705882354, "height": 169.41176470588235, "path": "reptile-06.back"}}, + "ear-left": {"ear-left": {"x": 66.54764705882353, "y": 6.38647058823529, "rotation": -52, "width": 171.76470588235296, "height": 157.64705882352942, "path": "reptile-06.ear-left"}}, + "ear-right": { + "ear-right": {"x": 47.145294117647055, "y": -4.50705882352942, "rotation": -140, "width": 143.52941176470588, "height": 155.29411764705884, "path": "reptile-06.ear-right"} }, - "leg-front-right": { - "mystic-leg-front-right": {"x": 31.35, "y": -1.66, "rotation": 87.96, "width": 80, "height": 94, "path": "body-normal.mystic-leg-front-right"}, - "mystic-leg-front-right-long": {"x": 36.56, "y": -0.65, "rotation": 205.96, "width": 89, "height": 77, "path": "body-normal.mystic-leg-front-right-long"}, - "mystic-leg-front-right-stretch": {"x": 30.65, "y": 1.81, "rotation": 142.01, "width": 81, "height": 69, "path": "body-normal.mystic-leg-front-right-stretch"} - }, - "shadow": {"shadow": {"width": 946, "height": 191, "path": "body-mystic-normal.shadow"}}, - "body-air": { - "body-air1a_00": {"x": 1.37, "y": 35.21, "width": 209.375, "height": 129.6875, "path": "body-accessory.body-air1a_00"}, - "body-air1a_01": {"x": 1.37, "y": 35.21, "width": 209.375, "height": 129.6875, "path": "body-accessory.body-air1a_01"}, - "body-air1a_02": {"x": 1.37, "y": 35.21, "width": 209.375, "height": 129.6875, "path": "body-accessory.body-air1a_02"}, - "body-air1a_03": {"x": 1.37, "y": 35.21, "width": 209.375, "height": 129.6875, "path": "body-accessory.body-air1a_03"}, - "body-air1a_04": {"x": 1.37, "y": 35.21, "width": 209.375, "height": 129.6875, "path": "body-accessory.body-air1a_04"}, - "body-air1a_05": {"x": 1.37, "y": 35.21, "width": 209.375, "height": 129.6875, "path": "body-accessory.body-air1a_05"}, - "body-air1a_06": {"x": 1.37, "y": 35.21, "width": 209.375, "height": 129.6875, "path": "body-accessory.body-air1a_06"}, - "body-air1a_07": {"x": 1.37, "y": 35.21, "width": 209.375, "height": 129.6875, "path": "body-accessory.body-air1a_07"}, - "body-air1b_00": {"x": 1.37, "y": 35.21, "width": 156.25, "height": 192.1875, "path": "body-accessory.body-air1b_00"}, - "body-air1b_01": {"x": 1.37, "y": 35.21, "width": 156.25, "height": 192.1875, "path": "body-accessory.body-air1b_01"}, - "body-air1b_02": {"x": 1.37, "y": 35.21, "width": 156.25, "height": 192.1875, "path": "body-accessory.body-air1b_02"}, - "body-air1c_00": {"x": 1.37, "y": 35.21, "width": 200.0, "height": 289.0625, "path": "body-accessory.body-air1c_00"}, - "body-air1c_01": {"x": 1.37, "y": 35.21, "width": 200.0, "height": 289.0625, "path": "body-accessory.body-air1c_01"}, - "body-air1c_02": {"x": 1.37, "y": 35.21, "width": 200.0, "height": 289.0625, "path": "body-accessory.body-air1c_02"}, - "body-air1c_03": {"x": 1.37, "y": 35.21, "width": 200.0, "height": 289.0625, "path": "body-accessory.body-air1c_03"}, - "body-air1d_00": {"x": 1.37, "y": 35.21, "width": 204.6875, "height": 273.4375, "path": "body-accessory.body-air1d_00"}, - "body-air1d_01": {"x": 1.37, "y": 35.21, "width": 204.6875, "height": 273.4375, "path": "body-accessory.body-air1d_01"}, - "body-air1d_02": {"x": 1.37, "y": 35.21, "width": 204.6875, "height": 273.4375, "path": "body-accessory.body-air1d_02"}, - "body-air1d_03": {"x": 1.37, "y": 35.21, "width": 204.6875, "height": 273.4375, "path": "body-accessory.body-air1d_03"} - }, - "body-cheek": { - "body-cheek1a": {"x": 1.52, "y": 3.04, "width": 60.9375, "height": 57.8125, "path": "body-accessory.body-cheek1a"}, - "body-cheek1b": {"x": 1.52, "y": 3.04, "width": 50.0, "height": 76.5625, "path": "body-accessory.body-cheek1b"}, - "body-cheek1c": {"x": 1.52, "y": 3.04, "width": 50.0, "height": 76.5625, "path": "body-accessory.body-cheek1c"}, - "body-cheek1d": {"x": 1.52, "y": 3.04, "width": 50.0, "height": 76.5625, "path": "body-accessory.body-cheek1d"}, - "body-cheek1e": {"x": 1.52, "y": 3.04, "width": 54.6875, "height": 79.6875, "path": "body-accessory.body-cheek1e"}, - "body-cheek1f": {"x": 1.52, "y": 3.04, "width": 56.25, "height": 57.8125, "path": "body-accessory.body-cheek1f"}, - "body-cheek1g": {"x": 1.52, "y": 3.04, "width": 104.6875, "height": 96.875, "path": "body-accessory.body-cheek1g"} - }, - "body-ground": { - "body-ground1a_00": {"x": 4.75, "y": 123.01, "width": 254.6875, "height": 275.0, "path": "body-accessory.body-ground1a_00"}, - "body-ground1a_01": {"x": 4.75, "y": 123.01, "width": 254.6875, "height": 275.0, "path": "body-accessory.body-ground1a_01"}, - "body-ground1a_02": {"x": 4.75, "y": 123.01, "width": 254.6875, "height": 275.0, "path": "body-accessory.body-ground1a_02"}, - "body-ground1a_03": {"x": 4.75, "y": 123.01, "width": 254.6875, "height": 275.0, "path": "body-accessory.body-ground1a_03"} + "eyes": { + "eyes": {"x": 22.33, "y": -11.04, "width": 284, "height": 33, "path": "reptile-06.eyes"}, + "eyes-angry": {"x": 0.33, "y": -9.04, "width": 328, "height": 135, "path": "reptile-06.eyes-angry"}, + "eyes-happy": {"x": 22.33, "y": -11.04, "width": 284, "height": 33, "path": "reptile-06.eyes-happy"}, + "eyes-shut": {"x": 22.33, "y": -12.04, "width": 284, "height": 31, "path": "reptile-06.eyes-shut"} }, - "body-hip": { - "body-hip1a": {"x": -16, "width": 109.375, "height": 140.625, "path": "body-accessory.body-hip1a"}, - "body-hip1b": {"x": -16, "width": 210.9375, "height": 214.0625, "path": "body-accessory.body-hip1b"}, - "body-hip1c": {"x": -16, "width": 123.4375, "height": 157.8125, "path": "body-accessory.body-hip1c"}, - "body-hip1d": {"x": -16, "width": 203.125, "height": 143.75, "path": "body-accessory.body-hip1d"} + "horn": {"horn": {"x": 46.96941176470588, "y": 15.257058823529405, "rotation": -90, "width": 272.94117647058823, "height": 164.7058823529412, "path": "reptile-06.horn"}}, + "mouth": { + "mouth": {"x": 14.33, "y": 61.96, "width": 94, "height": 17, "path": "reptile-06.mouth"}, + "mouth-bite": {"x": 16.33, "y": 45.46, "width": 204, "height": 76, "path": "reptile-06.mouth-bite"}, + "mouth-open": {"x": 22.83, "y": 34.46, "width": 107, "height": 128, "path": "reptile-06.mouth-open"}, + "mouth-smile": {"x": 20.83, "y": 57.96, "width": 91, "height": 41, "path": "reptile-06.mouth-smile"} }, - "body-neck": { - "body-neck1a": {"x": -5.4, "y": -54.79, "width": 92.1875, "height": 96.875, "path": "body-accessory.body-neck1a"}, - "body-neck1b": {"x": -5.4, "y": -54.79, "width": 103.125, "height": 117.1875, "path": "body-accessory.body-neck1b"}, - "body-neck1c": {"x": -5.4, "y": -54.79, "width": 79.6875, "height": 110.9375, "path": "body-accessory.body-neck1c"}, - "body-neck1d": {"x": -5.4, "y": -54.79, "width": 121.875, "height": 101.5625, "path": "body-accessory.body-neck1d"}, - "body-neck1e": {"x": -5.4, "y": -54.79, "width": 89.0625, "height": 107.8125, "path": "body-accessory.body-neck1e"}, - "body-neck1f": {"x": -5.4, "y": -54.79, "width": 79.6875, "height": 79.6875, "path": "body-accessory.body-neck1f"} - } + "tail": {"tail": {"x": 103.68411764705881, "y": 1.910588235294116, "width": 289.4117647058824, "height": 207.05882352941177, "path": "reptile-06.tail"}} } } ], @@ -4646,7 +3680,7 @@ "attack/ranged/cast-high": "164191126", "attack/ranged/cast-low": "198813017", "attack/ranged/cast-multi": "151119", - "attack/ranged/cast-tail": "645705789", + "attack/ranged/cast-tail": "997902532", "activity/eat-bite": "1137807767", "activity/eat-chew": "1988236421", "activity/entrance": "3768378365", @@ -4663,19 +3697,17 @@ "attack/melee/mouth-bite": "2237748264", "action/move-back": "3766271173", "action/move-forward": "2945160014", - "attack/melee/multi-attack": "3861365989", - "action/mix/mystic-light-battle": "3979179032", - "action/mix/mystic-light-normal": "1566344788", - "action/idle/normal": "25318063", + "attack/melee/multi-attack": "905926802", + "action/idle/normal": "1659336865", "attack/melee/normal-attack": "3305373483", "activity/prepare": "405864717", - "action/idle/random-01": "2880388010", - "action/idle/random-02": "3902657344", + "action/idle/random-01": "554401889", + "action/idle/random-02": "1085666627", "action/idle/random-03": "2021333900", "action/idle/random-04": "1003789695", "action/idle/random-05": "2745614147", - "action/run": "3858829480", - "draft/run-origin": "3947527336", + "action/run": "1438840721", + "draft/run-origin": "3577885069", "attack/melee/shrimp": "3833448733", "activity/sleep": "100562494", "attack/melee/tail-multi-slap": "3317139533", @@ -4685,53 +3717,37 @@ "activity/victory-pose-back-flip": "2227634241" } }, - "body-mystic-fuzzy": { + "agamo-00": { "bones": [ {"name": "@root"}, {"name": "@pivot-main", "parent": "@root"}, {"name": "@pivot-back", "parent": "@pivot-main", "x": 205, "y": 180, "color": "ff0101ff"}, {"name": "@pivot-center", "parent": "@pivot-back", "x": -215.11, "y": -5.25, "color": "ff0101ff"}, {"name": "@axie", "parent": "@pivot-center", "length": 213.28, "rotation": 179.04, "x": 196.39, "y": 5.16}, {"name": "@back", "parent": "@axie", "rotation": -179.04, "x": 37.63, "y": -198.19}, + {"name": "back", "parent": "@back", "length": 149.41, "rotation": 64, "x": -51.97, "y": -9.7, "transform": "noScale"}, {"name": "@body", "parent": "@axie", "length": 226.28, "rotation": -8.35, "x": 224.58, "y": -0.53}, {"name": "@ear-left", "parent": "@axie", "rotation": -179.04, "x": 112.7, "y": -203.23}, - {"name": "@ear-right", "parent": "@axie", "rotation": -179.04, "x": 405.28, "y": -235.33}, {"name": "@eyes", "parent": "@axie", "rotation": -179.04, "x": 384.24, "y": -113.67}, - {"name": "@horn", "parent": "@axie", "rotation": -179.04, "x": 327.92, "y": -214.63}, + {"name": "ear-left", "parent": "@ear-left", "length": 113.61, "rotation": 52, "x": -27, "y": -17, "transform": "noScale"}, + {"name": "@ear-right", "parent": "@axie", "rotation": -179.04, "x": 405.28, "y": -235.33}, + {"name": "ear-right", "parent": "@ear-right", "length": 119.39, "rotation": 93, "x": -40, "y": -54, "transform": "noScale"}, + {"name": "@eyes", "parent": "@axie", "rotation": -179.04, "x": 384.24, "y": -113.67}, {"name": "@horn", "parent": "@axie", "rotation": -179.04, "x": 327.92, "y": -214.63}, + {"name": "horn", "parent": "@horn", "length": 176.72, "rotation": 90, "y": 18, "transform": "noScale"}, {"name": "@leg-back-left", "parent": "@axie", "length": 76.4, "rotation": 100.96, "x": -15.3, "y": 102.56, "transform": "noScale"}, {"name": "@leg-front-left", "parent": "@axie", "length": 51.19, "rotation": 93.86, "x": 134.77, "y": 149.55, "transform": "noScale"}, {"name": "@leg-front-right", "parent": "@axie", "length": 74.83, "rotation": 83.2, "x": 382.95, "y": 121.78, "transform": "noScale"}, {"name": "@mouth", "parent": "@axie", "rotation": -179.04, "x": 382.23, "y": 6.31}, - {"name": "body-class", "parent": "@body", "rotation": -170.69, "x": -286.29, "y": -103.48, "transform": "noScale"}, {"name": "@shadow", "parent": "@root", "color": "e6d713ff"}, - {"name": "@tail", "parent": "@axie", "rotation": -179.04, "x": -11.76, "y": 61.72}, {"name": "leg-front-right-IK", "parent": "@pivot-main", "x": -195.99, "y": -10.21, "color": "ff3f00ff"}, + {"name": "body-pattern", "parent": "@body", "rotation": -170.69, "x": -267.21, "y": -49.4, "transform": "noScale"}, {"name": "@shadow", "parent": "@root", "color": "e6d713ff"}, + {"name": "@tail", "parent": "@axie", "rotation": -179.04, "x": -11.76, "y": 61.72}, + {"name": "tail", "parent": "@tail", "length": 203.67, "rotation": 20, "x": 21, "y": 37, "transform": "noScale"}, + {"name": "leg-front-right-IK", "parent": "@pivot-main", "x": -195.99, "y": -10.21, "color": "ff3f00ff"}, {"name": "leg-front-left-IK", "parent": "@pivot-main", "x": 42.3, "y": -18.42, "color": "ff3f00ff"}, {"name": "leg-back-left-IK", "parent": "@pivot-main", "x": 208.57, "y": 1.35, "color": "ff3f00ff"}, {"name": "@ball", "parent": "@root", "y": 191, "color": "f3981bff"}, - {"name": "ball", "parent": "@ball", "y": -191, "color": "f4a729ff"}, {"name": "body-id", "parent": "@body", "rotation": -170.69, "x": -292.44, "y": -65.98}, - {"name": "body-id-a", "parent": "body-id", "x": 23, "y": 10}, {"name": "body-id-b", "parent": "body-id", "x": 13, "y": 10}, {"name": "body-id-c", "parent": "body-id", "x": 3, "y": 10}, - {"name": "body-id-d", "parent": "body-id", "x": -7, "y": 10}, {"name": "body-id-e", "parent": "body-id", "x": -17, "y": 10}, {"name": "body-id-f", "parent": "body-id", "x": -27, "y": 10}, - {"name": "body-light-life", "parent": "@body", "rotation": -95.65, "x": -248.57, "y": -126.52}, - {"name": "body-fur-1", "parent": "@body", "length": 82.06, "rotation": -150.38, "x": -148.49, "y": -210.82, "color": "ff6700ff"}, - {"name": "body-fur-2", "parent": "body-fur-1", "length": 61.3, "rotation": -13.95, "x": 82.06, "color": "ff6700ff"}, - {"name": "body-fur-3", "parent": "@body", "length": 107.51, "rotation": -131.46, "x": -40.58, "y": -242.54, "color": "ff6700ff"}, - {"name": "body-fur-4", "parent": "body-fur-3", "length": 81.8, "rotation": 8.85, "x": 106.98, "y": 0.51, "color": "ff6700ff"}, - {"name": "body-fur-5", "parent": "@body", "length": 82.06, "rotation": -97.88, "x": 131.08, "y": -279.5, "color": "ff6700ff"}, - {"name": "body-fur-6", "parent": "body-fur-5", "length": 61.3, "rotation": -10.39, "x": 82.06, "color": "ff6700ff"}, - {"name": "body-fur-7", "parent": "@body", "length": 105.16, "rotation": -69.66, "x": 255.56, "y": -184.43, "color": "ff6700ff"}, - {"name": "body-fur-8", "parent": "@body", "length": 61.24, "rotation": -11.73, "x": 273.06, "y": -20.97, "color": "ff6700ff"}, - {"name": "body-fur-9", "parent": "body-fur-8", "length": 48.47, "rotation": -10.39, "x": 61.13, "y": -0.21, "color": "ff6700ff"}, - {"name": "@body-neck", "parent": "@pivot-center", "x": -161.89, "y": -53.75, "color": "ff0101ff"}, - {"name": "@body-ground", "parent": "@pivot-main", "x": 220, "transform": "noRotationOrReflection", "color": "ff0101ff"}, - {"name": "@body-hip", "parent": "@pivot-center", "x": 240.11, "y": 55.25, "color": "ff0101ff"}, - {"name": "@body-air", "parent": "@pivot-back", "x": 63, "y": 365, "transform": "noRotationOrReflection", "color": "ff0101ff"}, - {"name": "@body-cheek", "parent": "@pivot-center", "x": 15.11, "y": 47.25, "color": "ff0101ff"} + {"name": "ball", "parent": "@ball", "y": -191, "color": "f4a729ff"} ], "slots": [ - {"name": "shadow", "bone": "@shadow", "attachment": "shadow"}, {"name": "ball", "bone": "ball"}, - {"name": "leg-front-right", "bone": "@leg-front-right", "attachment": "mystic-leg-front-right"}, {"name": "leg-back-left", "bone": "@leg-back-left", "attachment": "mystic-leg-back-left"}, - {"name": "body-light-life", "bone": "body-light-life", "attachment": "body-light-life"}, {"name": "body", "bone": "@body", "attachment": "body-mystic"}, - {"name": "body-mfuzzy", "bone": "@body", "attachment": "body-mfuzzy"}, {"name": "body-light-breath", "bone": "@body", "attachment": "body-light-breath"}, - {"name": "body-light-pulse", "bone": "@body", "attachment": "body-light-pulse"}, {"name": "body-id-a", "bone": "body-id-a", "attachment": "body-id-a-01"}, - {"name": "body-id-b", "bone": "body-id-b", "attachment": "body-id-b-09"}, {"name": "body-id-c", "bone": "body-id-c", "attachment": "body-id-c-08"}, - {"name": "body-id-d", "bone": "body-id-d", "attachment": "body-id-d-00"}, {"name": "body-id-e", "bone": "body-id-e", "attachment": "body-id-e-03"}, - {"name": "body-id-f", "bone": "body-id-f", "attachment": "body-id-f-00"}, {"name": "body-class", "bone": "body-class", "attachment": "body-class-aquatic"}, - {"name": "leg-front-left", "bone": "@leg-front-left", "attachment": "mystic-leg-front-left"}, {"name": "body-hip", "bone": "@body-hip", "attachment": "body-hip"}, - {"name": "body-neck", "bone": "@body-neck", "attachment": "body-neck"}, {"name": "body-ground", "bone": "@body-ground", "attachment": "body-ground"}, - {"name": "body-air", "bone": "@body-air", "attachment": "body-air"}, {"name": "body-cheek", "bone": "@body-cheek", "attachment": "body-cheek"} + {"name": "shadow", "bone": "@shadow", "attachment": "shadow"}, {"name": "ball", "bone": "ball"}, {"name": "leg-front-right", "bone": "@leg-front-right", "attachment": "leg-front-right"}, + {"name": "ear-right", "bone": "ear-right", "attachment": "ear-right"}, {"name": "tail", "bone": "tail", "attachment": "tail"}, {"name": "back", "bone": "back", "attachment": "back"}, + {"name": "leg-back-left", "bone": "@leg-back-left", "attachment": "leg-back-left"}, {"name": "body", "bone": "@body", "attachment": "body"}, + {"name": "body-pattern", "bone": "body-pattern", "attachment": "body-pattern"}, {"name": "leg-front-left", "bone": "@leg-front-left", "attachment": "leg-front-left"}, + {"name": "eyes", "bone": "@eyes", "attachment": "eyes"}, {"name": "mouth", "bone": "@mouth", "attachment": "mouth"}, {"name": "ear-left", "bone": "ear-left", "attachment": "ear-left"}, + {"name": "horn", "bone": "horn", "attachment": "horn"} ], "ik": [ {"name": "leg-back-left-IK", "order": 2, "bones": ["@leg-back-left"], "target": "leg-back-left-IK"}, @@ -4742,2017 +3758,281 @@ { "name": "default", "attachments": { - "ball": {"ball": {"y": 191, "width": 393, "height": 390, "path": "body-normal.ball"}}, - "body": {"body-mystic": {"x": -4.25, "y": -74.48, "rotation": -170.69, "width": 685, "height": 509, "path": "body-mystic-fuzzy.body-mystic"}}, - "body-class": { - "body-class-aquatic": {"x": -1.04, "y": 4.55, "width": 43, "height": 48, "path": "body-normal.body-class-aquatic"}, - "body-class-beast": {"x": -1.54, "y": 3.55, "width": 36, "height": 40, "path": "body-normal.body-class-beast"}, - "body-class-bird": {"x": 0.46, "y": 4.05, "width": 30, "height": 43, "path": "body-normal.body-class-bird"}, - "body-class-bug": {"x": -1.04, "y": 2.55, "width": 37, "height": 36, "path": "body-normal.body-class-bug"}, - "body-class-plant": {"x": -2.54, "y": 1.55, "width": 42, "height": 40, "path": "body-normal.body-class-plant"}, - "body-class-reptile": {"x": -1.04, "y": 3.55, "width": 41, "height": 40, "path": "body-normal.body-class-reptile"} - }, - "body-id-a": { - "body-id-a-00": {"x": -0.65, "y": 0.23, "width": 8, "height": 13, "path": "body-normal.body-id-a-00"}, - "body-id-a-01": {"x": 0.35, "y": 0.23, "width": 6, "height": 13, "path": "body-normal.body-id-a-01"}, - "body-id-a-02": {"x": 0.35, "y": 0.73, "width": 8, "height": 12, "path": "body-normal.body-id-a-02"}, - "body-id-a-03": {"x": -0.15, "y": 0.23, "width": 7, "height": 11, "path": "body-normal.body-id-a-03"}, - "body-id-a-04": {"x": -0.15, "y": 0.73, "width": 7, "height": 12, "path": "body-normal.body-id-a-04"}, - "body-id-a-05": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-a-05"}, - "body-id-a-06": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-a-06"}, - "body-id-a-07": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-a-07"}, - "body-id-a-08": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-a-08"}, - "body-id-a-09": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-a-09"}, - "body-id-00-aquatic": {"x": -0.65, "y": 0.23, "width": 8, "height": 13, "path": "body-normal.body-id-00-aquatic"}, - "body-id-00-aquatic-flipx": {"x": -0.65, "y": 0.23, "width": 8, "height": 13, "path": "body-normal.body-id-00-aquatic-flipx"}, - "body-id-00-beast": {"x": -0.65, "y": 0.23, "width": 8, "height": 13, "path": "body-normal.body-id-00-beast"}, - "body-id-00-beast-flipx": {"x": -0.65, "y": 0.23, "width": 8, "height": 13, "path": "body-normal.body-id-00-beast-flipx"}, - "body-id-00-bird": {"x": -0.65, "y": 0.23, "width": 8, "height": 13, "path": "body-normal.body-id-00-bird"}, - "body-id-00-bird-flipx": {"x": -0.65, "y": 0.23, "width": 8, "height": 13, "path": "body-normal.body-id-00-bird-flipx"}, - "body-id-00-bug": {"x": -0.65, "y": 0.23, "width": 8, "height": 13, "path": "body-normal.body-id-00-bug"}, - "body-id-00-bug-flipx": {"x": -0.65, "y": 0.23, "width": 8, "height": 13, "path": "body-normal.body-id-00-bug-flipx"}, - "body-id-00-plant": {"x": -0.65, "y": 0.23, "width": 8, "height": 13, "path": "body-normal.body-id-00-plant"}, - "body-id-00-plant-flipx": {"x": -0.65, "y": 0.23, "width": 8, "height": 13, "path": "body-normal.body-id-00-plant-flipx"}, - "body-id-00-reptile": {"x": -0.65, "y": 0.23, "width": 8, "height": 13, "path": "body-normal.body-id-00-reptile"}, - "body-id-00-reptile-flipx": {"x": -0.65, "y": 0.23, "width": 8, "height": 13, "path": "body-normal.body-id-00-reptile-flipx"}, - "body-id-01-aquatic": {"x": 0.35, "y": 0.23, "width": 6, "height": 13, "path": "body-normal.body-id-01-aquatic"}, - "body-id-01-aquatic-flipx": {"x": 0.35, "y": 0.23, "width": 6, "height": 13, "path": "body-normal.body-id-01-aquatic-flipx"}, - "body-id-01-beast": {"x": 0.35, "y": 0.23, "width": 6, "height": 13, "path": "body-normal.body-id-01-beast"}, - "body-id-01-beast-flipx": {"x": 0.35, "y": 0.23, "width": 6, "height": 13, "path": "body-normal.body-id-01-beast-flipx"}, - "body-id-01-bird": {"x": 0.35, "y": 0.23, "width": 6, "height": 13, "path": "body-normal.body-id-01-bird"}, - "body-id-01-bird-flipx": {"x": 0.35, "y": 0.23, "width": 6, "height": 13, "path": "body-normal.body-id-01-bird-flipx"}, - "body-id-01-bug": {"x": 0.35, "y": 0.23, "width": 6, "height": 13, "path": "body-normal.body-id-01-bug"}, - "body-id-01-bug-flipx": {"x": 0.35, "y": 0.23, "width": 6, "height": 13, "path": "body-normal.body-id-01-bug-flipx"}, - "body-id-01-plant": {"x": 0.35, "y": 0.23, "width": 6, "height": 13, "path": "body-normal.body-id-01-plant"}, - "body-id-01-plant-flipx": {"x": 0.35, "y": 0.23, "width": 6, "height": 13, "path": "body-normal.body-id-01-plant-flipx"}, - "body-id-01-reptile": {"x": 0.35, "y": 0.23, "width": 6, "height": 13, "path": "body-normal.body-id-01-reptile"}, - "body-id-01-reptile-flipx": {"x": 0.35, "y": 0.23, "width": 6, "height": 13, "path": "body-normal.body-id-01-reptile-flipx"}, - "body-id-02-aquatic": {"x": 0.35, "y": 0.73, "width": 8, "height": 12, "path": "body-normal.body-id-02-aquatic"}, - "body-id-02-aquatic-flipx": {"x": 0.35, "y": 0.73, "width": 8, "height": 12, "path": "body-normal.body-id-02-aquatic-flipx"}, - "body-id-02-beast": {"x": 0.35, "y": 0.73, "width": 8, "height": 12, "path": "body-normal.body-id-02-beast"}, - "body-id-02-beast-flipx": {"x": 0.35, "y": 0.73, "width": 8, "height": 12, "path": "body-normal.body-id-02-beast-flipx"}, - "body-id-02-bird": {"x": 0.35, "y": 0.73, "width": 8, "height": 12, "path": "body-normal.body-id-02-bird"}, - "body-id-02-bird-flipx": {"x": 0.35, "y": 0.73, "width": 8, "height": 12, "path": "body-normal.body-id-02-bird-flipx"}, - "body-id-02-bug": {"x": 0.35, "y": 0.73, "width": 8, "height": 12, "path": "body-normal.body-id-02-bug"}, - "body-id-02-bug-flipx": {"x": 0.35, "y": 0.73, "width": 8, "height": 12, "path": "body-normal.body-id-02-bug-flipx"}, - "body-id-02-plant": {"x": 0.35, "y": 0.73, "width": 8, "height": 12, "path": "body-normal.body-id-02-plant"}, - "body-id-02-plant-flipx": {"x": 0.35, "y": 0.73, "width": 8, "height": 12, "path": "body-normal.body-id-02-plant-flipx"}, - "body-id-02-reptile": {"x": 0.35, "y": 0.73, "width": 8, "height": 12, "path": "body-normal.body-id-02-reptile"}, - "body-id-02-reptile-flipx": {"x": 0.35, "y": 0.73, "width": 8, "height": 12, "path": "body-normal.body-id-02-reptile-flipx"}, - "body-id-03-aquatic": {"x": -0.15, "y": 0.23, "width": 7, "height": 11, "path": "body-normal.body-id-03-aquatic"}, - "body-id-03-aquatic-flipx": {"x": -0.15, "y": 0.23, "width": 7, "height": 11, "path": "body-normal.body-id-03-aquatic-flipx"}, - "body-id-03-beast": {"x": -0.15, "y": 0.23, "width": 7, "height": 11, "path": "body-normal.body-id-03-beast"}, - "body-id-03-beast-flipx": {"x": -0.15, "y": 0.23, "width": 7, "height": 11, "path": "body-normal.body-id-03-beast-flipx"}, - "body-id-03-bird": {"x": -0.15, "y": 0.23, "width": 7, "height": 11, "path": "body-normal.body-id-03-bird"}, - "body-id-03-bird-flipx": {"x": -0.15, "y": 0.23, "width": 7, "height": 11, "path": "body-normal.body-id-03-bird-flipx"}, - "body-id-03-bug": {"x": -0.15, "y": 0.23, "width": 7, "height": 11, "path": "body-normal.body-id-03-bug"}, - "body-id-03-bug-flipx": {"x": -0.15, "y": 0.23, "width": 7, "height": 11, "path": "body-normal.body-id-03-bug-flipx"}, - "body-id-03-plant": {"x": -0.15, "y": 0.23, "width": 7, "height": 11, "path": "body-normal.body-id-03-plant"}, - "body-id-03-plant-flipx": {"x": -0.15, "y": 0.23, "width": 7, "height": 11, "path": "body-normal.body-id-03-plant-flipx"}, - "body-id-03-reptile": {"x": -0.15, "y": 0.23, "width": 7, "height": 11, "path": "body-normal.body-id-03-reptile"}, - "body-id-03-reptile-flipx": {"x": -0.15, "y": 0.23, "width": 7, "height": 11, "path": "body-normal.body-id-03-reptile-flipx"}, - "body-id-04-aquatic": {"x": -0.15, "y": 0.73, "width": 7, "height": 12, "path": "body-normal.body-id-04-aquatic"}, - "body-id-04-aquatic-flipx": {"x": -0.15, "y": 0.73, "width": 7, "height": 12, "path": "body-normal.body-id-04-aquatic-flipx"}, - "body-id-04-beast": {"x": -0.15, "y": 0.73, "width": 7, "height": 12, "path": "body-normal.body-id-04-beast"}, - "body-id-04-beast-flipx": {"x": -0.15, "y": 0.73, "width": 7, "height": 12, "path": "body-normal.body-id-04-beast-flipx"}, - "body-id-04-bird": {"x": -0.15, "y": 0.73, "width": 7, "height": 12, "path": "body-normal.body-id-04-bird"}, - "body-id-04-bird-flipx": {"x": -0.15, "y": 0.73, "width": 7, "height": 12, "path": "body-normal.body-id-04-bird-flipx"}, - "body-id-04-bug": {"x": -0.15, "y": 0.73, "width": 7, "height": 12, "path": "body-normal.body-id-04-bug"}, - "body-id-04-bug-flipx": {"x": -0.15, "y": 0.73, "width": 7, "height": 12, "path": "body-normal.body-id-04-bug-flipx"}, - "body-id-04-plant": {"x": -0.15, "y": 0.73, "width": 7, "height": 12, "path": "body-normal.body-id-04-plant"}, - "body-id-04-plant-flipx": {"x": -0.15, "y": 0.73, "width": 7, "height": 12, "path": "body-normal.body-id-04-plant-flipx"}, - "body-id-04-reptile": {"x": -0.15, "y": 0.73, "width": 7, "height": 12, "path": "body-normal.body-id-04-reptile"}, - "body-id-04-reptile-flipx": {"x": -0.15, "y": 0.73, "width": 7, "height": 12, "path": "body-normal.body-id-04-reptile-flipx"}, - "body-id-05-aquatic": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-05-aquatic"}, - "body-id-05-aquatic-flipx": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-05-aquatic-flipx"}, - "body-id-05-beast": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-05-beast"}, - "body-id-05-beast-flipx": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-05-beast-flipx"}, - "body-id-05-bird": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-05-bird"}, - "body-id-05-bird-flipx": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-05-bird-flipx"}, - "body-id-05-bug": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-05-bug"}, - "body-id-05-bug-flipx": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-05-bug-flipx"}, - "body-id-05-plant": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-05-plant"}, - "body-id-05-plant-flipx": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-05-plant-flipx"}, - "body-id-05-reptile": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-05-reptile"}, - "body-id-05-reptile-flipx": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-05-reptile-flipx"}, - "body-id-06-aquatic": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-06-aquatic"}, - "body-id-06-aquatic-flipx": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-06-aquatic-flipx"}, - "body-id-06-beast": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-06-beast"}, - "body-id-06-beast-flipx": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-06-beast-flipx"}, - "body-id-06-bird": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-06-bird"}, - "body-id-06-bird-flipx": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-06-bird-flipx"}, - "body-id-06-bug": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-06-bug"}, - "body-id-06-bug-flipx": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-06-bug-flipx"}, - "body-id-06-plant": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-06-plant"}, - "body-id-06-plant-flipx": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-06-plant-flipx"}, - "body-id-06-reptile": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-06-reptile"}, - "body-id-06-reptile-flipx": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-06-reptile-flipx"}, - "body-id-07-aquatic": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-07-aquatic"}, - "body-id-07-aquatic-flipx": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-07-aquatic-flipx"}, - "body-id-07-beast": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-07-beast"}, - "body-id-07-beast-flipx": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-07-beast-flipx"}, - "body-id-07-bird": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-07-bird"}, - "body-id-07-bird-flipx": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-07-bird-flipx"}, - "body-id-07-bug": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-07-bug"}, - "body-id-07-bug-flipx": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-07-bug-flipx"}, - "body-id-07-plant": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-07-plant"}, - "body-id-07-plant-flipx": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-07-plant-flipx"}, - "body-id-07-reptile": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-07-reptile"}, - "body-id-07-reptile-flipx": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-07-reptile-flipx"}, - "body-id-08-aquatic": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-08-aquatic"}, - "body-id-08-aquatic-flipx": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-08-aquatic-flipx"}, - "body-id-08-beast": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-08-beast"}, - "body-id-08-beast-flipx": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-08-beast-flipx"}, - "body-id-08-bird": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-08-bird"}, - "body-id-08-bird-flipx": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-08-bird-flipx"}, - "body-id-08-bug": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-08-bug"}, - "body-id-08-bug-flipx": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-08-bug-flipx"}, - "body-id-08-plant": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-08-plant"}, - "body-id-08-plant-flipx": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-08-plant-flipx"}, - "body-id-08-reptile": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-08-reptile"}, - "body-id-08-reptile-flipx": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-08-reptile-flipx"}, - "body-id-09-aquatic": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-09-aquatic"}, - "body-id-09-aquatic-flipx": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-09-aquatic-flipx"}, - "body-id-09-beast": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-09-beast"}, - "body-id-09-beast-flipx": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-09-beast-flipx"}, - "body-id-09-bird": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-09-bird"}, - "body-id-09-bird-flipx": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-09-bird-flipx"}, - "body-id-09-bug": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-09-bug"}, - "body-id-09-bug-flipx": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-09-bug-flipx"}, - "body-id-09-plant": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-09-plant"}, - "body-id-09-plant-flipx": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-09-plant-flipx"}, - "body-id-09-reptile": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-09-reptile"}, - "body-id-09-reptile-flipx": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-09-reptile-flipx"} - }, - "body-id-b": { - "body-id-b-00": {"x": -0.65, "y": 0.23, "width": 8, "height": 13, "path": "body-normal.body-id-b-00"}, - "body-id-b-01": {"x": 0.35, "y": 0.23, "width": 6, "height": 13, "path": "body-normal.body-id-b-01"}, - "body-id-b-02": {"x": 0.35, "y": 0.73, "width": 8, "height": 12, "path": "body-normal.body-id-b-02"}, - "body-id-b-03": {"x": -0.15, "y": 0.23, "width": 7, "height": 11, "path": "body-normal.body-id-b-03"}, - "body-id-b-04": {"x": -0.15, "y": 0.73, "width": 7, "height": 12, "path": "body-normal.body-id-b-04"}, - "body-id-b-05": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-b-05"}, - "body-id-b-06": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-b-06"}, - "body-id-b-07": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-b-07"}, - "body-id-b-08": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-b-08"}, - "body-id-b-09": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-b-09"}, - "body-id-00-aquatic": {"x": -0.65, "y": 0.23, "width": 8, "height": 13, "path": "body-normal.body-id-00-aquatic"}, - "body-id-00-aquatic-flipx": {"x": -0.65, "y": 0.23, "width": 8, "height": 13, "path": "body-normal.body-id-00-aquatic-flipx"}, - "body-id-00-beast": {"x": -0.65, "y": 0.23, "width": 8, "height": 13, "path": "body-normal.body-id-00-beast"}, - "body-id-00-beast-flipx": {"x": -0.65, "y": 0.23, "width": 8, "height": 13, "path": "body-normal.body-id-00-beast-flipx"}, - "body-id-00-bird": {"x": -0.65, "y": 0.23, "width": 8, "height": 13, "path": "body-normal.body-id-00-bird"}, - "body-id-00-bird-flipx": {"x": -0.65, "y": 0.23, "width": 8, "height": 13, "path": "body-normal.body-id-00-bird-flipx"}, - "body-id-00-bug": {"x": -0.65, "y": 0.23, "width": 8, "height": 13, "path": "body-normal.body-id-00-bug"}, - "body-id-00-bug-flipx": {"x": -0.65, "y": 0.23, "width": 8, "height": 13, "path": "body-normal.body-id-00-bug-flipx"}, - "body-id-00-plant": {"x": -0.65, "y": 0.23, "width": 8, "height": 13, "path": "body-normal.body-id-00-plant"}, - "body-id-00-plant-flipx": {"x": -0.65, "y": 0.23, "width": 8, "height": 13, "path": "body-normal.body-id-00-plant-flipx"}, - "body-id-00-reptile": {"x": -0.65, "y": 0.23, "width": 8, "height": 13, "path": "body-normal.body-id-00-reptile"}, - "body-id-00-reptile-flipx": {"x": -0.65, "y": 0.23, "width": 8, "height": 13, "path": "body-normal.body-id-00-reptile-flipx"}, - "body-id-01-aquatic": {"x": 0.35, "y": 0.23, "width": 6, "height": 13, "path": "body-normal.body-id-01-aquatic"}, - "body-id-01-aquatic-flipx": {"x": 0.35, "y": 0.23, "width": 6, "height": 13, "path": "body-normal.body-id-01-aquatic-flipx"}, - "body-id-01-beast": {"x": 0.35, "y": 0.23, "width": 6, "height": 13, "path": "body-normal.body-id-01-beast"}, - "body-id-01-beast-flipx": {"x": 0.35, "y": 0.23, "width": 6, "height": 13, "path": "body-normal.body-id-01-beast-flipx"}, - "body-id-01-bird": {"x": 0.35, "y": 0.23, "width": 6, "height": 13, "path": "body-normal.body-id-01-bird"}, - "body-id-01-bird-flipx": {"x": 0.35, "y": 0.23, "width": 6, "height": 13, "path": "body-normal.body-id-01-bird-flipx"}, - "body-id-01-bug": {"x": 0.35, "y": 0.23, "width": 6, "height": 13, "path": "body-normal.body-id-01-bug"}, - "body-id-01-bug-flipx": {"x": 0.35, "y": 0.23, "width": 6, "height": 13, "path": "body-normal.body-id-01-bug-flipx"}, - "body-id-01-plant": {"x": 0.35, "y": 0.23, "width": 6, "height": 13, "path": "body-normal.body-id-01-plant"}, - "body-id-01-plant-flipx": {"x": 0.35, "y": 0.23, "width": 6, "height": 13, "path": "body-normal.body-id-01-plant-flipx"}, - "body-id-01-reptile": {"x": 0.35, "y": 0.23, "width": 6, "height": 13, "path": "body-normal.body-id-01-reptile"}, - "body-id-01-reptile-flipx": {"x": 0.35, "y": 0.23, "width": 6, "height": 13, "path": "body-normal.body-id-01-reptile-flipx"}, - "body-id-02-aquatic": {"x": 0.35, "y": 0.73, "width": 8, "height": 12, "path": "body-normal.body-id-02-aquatic"}, - "body-id-02-aquatic-flipx": {"x": 0.35, "y": 0.73, "width": 8, "height": 12, "path": "body-normal.body-id-02-aquatic-flipx"}, - "body-id-02-beast": {"x": 0.35, "y": 0.73, "width": 8, "height": 12, "path": "body-normal.body-id-02-beast"}, - "body-id-02-beast-flipx": {"x": 0.35, "y": 0.73, "width": 8, "height": 12, "path": "body-normal.body-id-02-beast-flipx"}, - "body-id-02-bird": {"x": 0.35, "y": 0.73, "width": 8, "height": 12, "path": "body-normal.body-id-02-bird"}, - "body-id-02-bird-flipx": {"x": 0.35, "y": 0.73, "width": 8, "height": 12, "path": "body-normal.body-id-02-bird-flipx"}, - "body-id-02-bug": {"x": 0.35, "y": 0.73, "width": 8, "height": 12, "path": "body-normal.body-id-02-bug"}, - "body-id-02-bug-flipx": {"x": 0.35, "y": 0.73, "width": 8, "height": 12, "path": "body-normal.body-id-02-bug-flipx"}, - "body-id-02-plant": {"x": 0.35, "y": 0.73, "width": 8, "height": 12, "path": "body-normal.body-id-02-plant"}, - "body-id-02-plant-flipx": {"x": 0.35, "y": 0.73, "width": 8, "height": 12, "path": "body-normal.body-id-02-plant-flipx"}, - "body-id-02-reptile": {"x": 0.35, "y": 0.73, "width": 8, "height": 12, "path": "body-normal.body-id-02-reptile"}, - "body-id-02-reptile-flipx": {"x": 0.35, "y": 0.73, "width": 8, "height": 12, "path": "body-normal.body-id-02-reptile-flipx"}, - "body-id-03-aquatic": {"x": -0.15, "y": 0.23, "width": 7, "height": 11, "path": "body-normal.body-id-03-aquatic"}, - "body-id-03-aquatic-flipx": {"x": -0.15, "y": 0.23, "width": 7, "height": 11, "path": "body-normal.body-id-03-aquatic-flipx"}, - "body-id-03-beast": {"x": -0.15, "y": 0.23, "width": 7, "height": 11, "path": "body-normal.body-id-03-beast"}, - "body-id-03-beast-flipx": {"x": -0.15, "y": 0.23, "width": 7, "height": 11, "path": "body-normal.body-id-03-beast-flipx"}, - "body-id-03-bird": {"x": -0.15, "y": 0.23, "width": 7, "height": 11, "path": "body-normal.body-id-03-bird"}, - "body-id-03-bird-flipx": {"x": -0.15, "y": 0.23, "width": 7, "height": 11, "path": "body-normal.body-id-03-bird-flipx"}, - "body-id-03-bug": {"x": -0.15, "y": 0.23, "width": 7, "height": 11, "path": "body-normal.body-id-03-bug"}, - "body-id-03-bug-flipx": {"x": -0.15, "y": 0.23, "width": 7, "height": 11, "path": "body-normal.body-id-03-bug-flipx"}, - "body-id-03-plant": {"x": -0.15, "y": 0.23, "width": 7, "height": 11, "path": "body-normal.body-id-03-plant"}, - "body-id-03-plant-flipx": {"x": -0.15, "y": 0.23, "width": 7, "height": 11, "path": "body-normal.body-id-03-plant-flipx"}, - "body-id-03-reptile": {"x": -0.15, "y": 0.23, "width": 7, "height": 11, "path": "body-normal.body-id-03-reptile"}, - "body-id-03-reptile-flipx": {"x": -0.15, "y": 0.23, "width": 7, "height": 11, "path": "body-normal.body-id-03-reptile-flipx"}, - "body-id-04-aquatic": {"x": -0.15, "y": 0.73, "width": 7, "height": 12, "path": "body-normal.body-id-04-aquatic"}, - "body-id-04-aquatic-flipx": {"x": -0.15, "y": 0.73, "width": 7, "height": 12, "path": "body-normal.body-id-04-aquatic-flipx"}, - "body-id-04-beast": {"x": -0.15, "y": 0.73, "width": 7, "height": 12, "path": "body-normal.body-id-04-beast"}, - "body-id-04-beast-flipx": {"x": -0.15, "y": 0.73, "width": 7, "height": 12, "path": "body-normal.body-id-04-beast-flipx"}, - "body-id-04-bird": {"x": -0.15, "y": 0.73, "width": 7, "height": 12, "path": "body-normal.body-id-04-bird"}, - "body-id-04-bird-flipx": {"x": -0.15, "y": 0.73, "width": 7, "height": 12, "path": "body-normal.body-id-04-bird-flipx"}, - "body-id-04-bug": {"x": -0.15, "y": 0.73, "width": 7, "height": 12, "path": "body-normal.body-id-04-bug"}, - "body-id-04-bug-flipx": {"x": -0.15, "y": 0.73, "width": 7, "height": 12, "path": "body-normal.body-id-04-bug-flipx"}, - "body-id-04-plant": {"x": -0.15, "y": 0.73, "width": 7, "height": 12, "path": "body-normal.body-id-04-plant"}, - "body-id-04-plant-flipx": {"x": -0.15, "y": 0.73, "width": 7, "height": 12, "path": "body-normal.body-id-04-plant-flipx"}, - "body-id-04-reptile": {"x": -0.15, "y": 0.73, "width": 7, "height": 12, "path": "body-normal.body-id-04-reptile"}, - "body-id-04-reptile-flipx": {"x": -0.15, "y": 0.73, "width": 7, "height": 12, "path": "body-normal.body-id-04-reptile-flipx"}, - "body-id-05-aquatic": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-05-aquatic"}, - "body-id-05-aquatic-flipx": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-05-aquatic-flipx"}, - "body-id-05-beast": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-05-beast"}, - "body-id-05-beast-flipx": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-05-beast-flipx"}, - "body-id-05-bird": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-05-bird"}, - "body-id-05-bird-flipx": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-05-bird-flipx"}, - "body-id-05-bug": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-05-bug"}, - "body-id-05-bug-flipx": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-05-bug-flipx"}, - "body-id-05-plant": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-05-plant"}, - "body-id-05-plant-flipx": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-05-plant-flipx"}, - "body-id-05-reptile": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-05-reptile"}, - "body-id-05-reptile-flipx": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-05-reptile-flipx"}, - "body-id-06-aquatic": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-06-aquatic"}, - "body-id-06-aquatic-flipx": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-06-aquatic-flipx"}, - "body-id-06-beast": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-06-beast"}, - "body-id-06-beast-flipx": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-06-beast-flipx"}, - "body-id-06-bird": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-06-bird"}, - "body-id-06-bird-flipx": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-06-bird-flipx"}, - "body-id-06-bug": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-06-bug"}, - "body-id-06-bug-flipx": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-06-bug-flipx"}, - "body-id-06-plant": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-06-plant"}, - "body-id-06-plant-flipx": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-06-plant-flipx"}, - "body-id-06-reptile": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-06-reptile"}, - "body-id-06-reptile-flipx": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-06-reptile-flipx"}, - "body-id-07-aquatic": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-07-aquatic"}, - "body-id-07-aquatic-flipx": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-07-aquatic-flipx"}, - "body-id-07-beast": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-07-beast"}, - "body-id-07-beast-flipx": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-07-beast-flipx"}, - "body-id-07-bird": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-07-bird"}, - "body-id-07-bird-flipx": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-07-bird-flipx"}, - "body-id-07-bug": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-07-bug"}, - "body-id-07-bug-flipx": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-07-bug-flipx"}, - "body-id-07-plant": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-07-plant"}, - "body-id-07-plant-flipx": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-07-plant-flipx"}, - "body-id-07-reptile": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-07-reptile"}, - "body-id-07-reptile-flipx": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-07-reptile-flipx"}, - "body-id-08-aquatic": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-08-aquatic"}, - "body-id-08-aquatic-flipx": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-08-aquatic-flipx"}, - "body-id-08-beast": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-08-beast"}, - "body-id-08-beast-flipx": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-08-beast-flipx"}, - "body-id-08-bird": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-08-bird"}, - "body-id-08-bird-flipx": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-08-bird-flipx"}, - "body-id-08-bug": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-08-bug"}, - "body-id-08-bug-flipx": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-08-bug-flipx"}, - "body-id-08-plant": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-08-plant"}, - "body-id-08-plant-flipx": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-08-plant-flipx"}, - "body-id-08-reptile": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-08-reptile"}, - "body-id-08-reptile-flipx": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-08-reptile-flipx"}, - "body-id-09-aquatic": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-09-aquatic"}, - "body-id-09-aquatic-flipx": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-09-aquatic-flipx"}, - "body-id-09-beast": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-09-beast"}, - "body-id-09-beast-flipx": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-09-beast-flipx"}, - "body-id-09-bird": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-09-bird"}, - "body-id-09-bird-flipx": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-09-bird-flipx"}, - "body-id-09-bug": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-09-bug"}, - "body-id-09-bug-flipx": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-09-bug-flipx"}, - "body-id-09-plant": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-09-plant"}, - "body-id-09-plant-flipx": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-09-plant-flipx"}, - "body-id-09-reptile": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-09-reptile"}, - "body-id-09-reptile-flipx": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-09-reptile-flipx"} - }, - "body-id-c": { - "body-id-c-00": {"x": -0.65, "y": 0.23, "width": 8, "height": 13, "path": "body-normal.body-id-c-00"}, - "body-id-c-01": {"x": -0.65, "y": 0.23, "width": 6, "height": 13, "path": "body-normal.body-id-c-01"}, - "body-id-c-02": {"x": -0.65, "y": 0.23, "width": 8, "height": 12, "path": "body-normal.body-id-c-02"}, - "body-id-c-03": {"x": -0.65, "y": 0.23, "width": 7, "height": 11, "path": "body-normal.body-id-c-03"}, - "body-id-c-04": {"x": -0.65, "y": 0.23, "width": 7, "height": 12, "path": "body-normal.body-id-c-04"}, - "body-id-c-05": {"x": -0.65, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-c-05"}, - "body-id-c-06": {"x": -0.65, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-c-06"}, - "body-id-c-07": {"x": -0.65, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-c-07"}, - "body-id-c-08": {"x": -0.65, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-c-08"}, - "body-id-c-09": {"x": -0.65, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-c-09"}, - "body-id-00-aquatic": {"x": -0.65, "y": 0.23, "width": 8, "height": 13, "path": "body-normal.body-id-00-aquatic"}, - "body-id-00-aquatic-flipx": {"x": -0.65, "y": 0.23, "width": 8, "height": 13, "path": "body-normal.body-id-00-aquatic-flipx"}, - "body-id-00-beast": {"x": -0.65, "y": 0.23, "width": 8, "height": 13, "path": "body-normal.body-id-00-beast"}, - "body-id-00-beast-flipx": {"x": -0.65, "y": 0.23, "width": 8, "height": 13, "path": "body-normal.body-id-00-beast-flipx"}, - "body-id-00-bird": {"x": -0.65, "y": 0.23, "width": 8, "height": 13, "path": "body-normal.body-id-00-bird"}, - "body-id-00-bird-flipx": {"x": -0.65, "y": 0.23, "width": 8, "height": 13, "path": "body-normal.body-id-00-bird-flipx"}, - "body-id-00-bug": {"x": -0.65, "y": 0.23, "width": 8, "height": 13, "path": "body-normal.body-id-00-bug"}, - "body-id-00-bug-flipx": {"x": -0.65, "y": 0.23, "width": 8, "height": 13, "path": "body-normal.body-id-00-bug-flipx"}, - "body-id-00-plant": {"x": -0.65, "y": 0.23, "width": 8, "height": 13, "path": "body-normal.body-id-00-plant"}, - "body-id-00-plant-flipx": {"x": -0.65, "y": 0.23, "width": 8, "height": 13, "path": "body-normal.body-id-00-plant-flipx"}, - "body-id-00-reptile": {"x": -0.65, "y": 0.23, "width": 8, "height": 13, "path": "body-normal.body-id-00-reptile"}, - "body-id-00-reptile-flipx": {"x": -0.65, "y": 0.23, "width": 8, "height": 13, "path": "body-normal.body-id-00-reptile-flipx"}, - "body-id-01-aquatic": {"x": -0.65, "y": 0.23, "width": 6, "height": 13, "path": "body-normal.body-id-01-aquatic"}, - "body-id-01-aquatic-flipx": {"x": -0.65, "y": 0.23, "width": 6, "height": 13, "path": "body-normal.body-id-01-aquatic-flipx"}, - "body-id-01-beast": {"x": -0.65, "y": 0.23, "width": 6, "height": 13, "path": "body-normal.body-id-01-beast"}, - "body-id-01-beast-flipx": {"x": -0.65, "y": 0.23, "width": 6, "height": 13, "path": "body-normal.body-id-01-beast-flipx"}, - "body-id-01-bird": {"x": -0.65, "y": 0.23, "width": 6, "height": 13, "path": "body-normal.body-id-01-bird"}, - "body-id-01-bird-flipx": {"x": -0.65, "y": 0.23, "width": 6, "height": 13, "path": "body-normal.body-id-01-bird-flipx"}, - "body-id-01-bug": {"x": -0.65, "y": 0.23, "width": 6, "height": 13, "path": "body-normal.body-id-01-bug"}, - "body-id-01-bug-flipx": {"x": -0.65, "y": 0.23, "width": 6, "height": 13, "path": "body-normal.body-id-01-bug-flipx"}, - "body-id-01-plant": {"x": -0.65, "y": 0.23, "width": 6, "height": 13, "path": "body-normal.body-id-01-plant"}, - "body-id-01-plant-flipx": {"x": -0.65, "y": 0.23, "width": 6, "height": 13, "path": "body-normal.body-id-01-plant-flipx"}, - "body-id-01-reptile": {"x": -0.65, "y": 0.23, "width": 6, "height": 13, "path": "body-normal.body-id-01-reptile"}, - "body-id-01-reptile-flipx": {"x": -0.65, "y": 0.23, "width": 6, "height": 13, "path": "body-normal.body-id-01-reptile-flipx"}, - "body-id-02-aquatic": {"x": -0.65, "y": 0.23, "width": 8, "height": 12, "path": "body-normal.body-id-02-aquatic"}, - "body-id-02-aquatic-flipx": {"x": -0.65, "y": 0.23, "width": 8, "height": 12, "path": "body-normal.body-id-02-aquatic-flipx"}, - "body-id-02-beast": {"x": -0.65, "y": 0.23, "width": 8, "height": 12, "path": "body-normal.body-id-02-beast"}, - "body-id-02-beast-flipx": {"x": -0.65, "y": 0.23, "width": 8, "height": 12, "path": "body-normal.body-id-02-beast-flipx"}, - "body-id-02-bird": {"x": -0.65, "y": 0.23, "width": 8, "height": 12, "path": "body-normal.body-id-02-bird"}, - "body-id-02-bird-flipx": {"x": -0.65, "y": 0.23, "width": 8, "height": 12, "path": "body-normal.body-id-02-bird-flipx"}, - "body-id-02-bug": {"x": -0.65, "y": 0.23, "width": 8, "height": 12, "path": "body-normal.body-id-02-bug"}, - "body-id-02-bug-flipx": {"x": -0.65, "y": 0.23, "width": 8, "height": 12, "path": "body-normal.body-id-02-bug-flipx"}, - "body-id-02-plant": {"x": -0.65, "y": 0.23, "width": 8, "height": 12, "path": "body-normal.body-id-02-plant"}, - "body-id-02-plant-flipx": {"x": -0.65, "y": 0.23, "width": 8, "height": 12, "path": "body-normal.body-id-02-plant-flipx"}, - "body-id-02-reptile": {"x": -0.65, "y": 0.23, "width": 8, "height": 12, "path": "body-normal.body-id-02-reptile"}, - "body-id-02-reptile-flipx": {"x": -0.65, "y": 0.23, "width": 8, "height": 12, "path": "body-normal.body-id-02-reptile-flipx"}, - "body-id-03-aquatic": {"x": -0.65, "y": 0.23, "width": 7, "height": 11, "path": "body-normal.body-id-03-aquatic"}, - "body-id-03-aquatic-flipx": {"x": -0.65, "y": 0.23, "width": 7, "height": 11, "path": "body-normal.body-id-03-aquatic-flipx"}, - "body-id-03-beast": {"x": -0.65, "y": 0.23, "width": 7, "height": 11, "path": "body-normal.body-id-03-beast"}, - "body-id-03-beast-flipx": {"x": -0.65, "y": 0.23, "width": 7, "height": 11, "path": "body-normal.body-id-03-beast-flipx"}, - "body-id-03-bird": {"x": -0.65, "y": 0.23, "width": 7, "height": 11, "path": "body-normal.body-id-03-bird"}, - "body-id-03-bird-flipx": {"x": -0.65, "y": 0.23, "width": 7, "height": 11, "path": "body-normal.body-id-03-bird-flipx"}, - "body-id-03-bug": {"x": -0.65, "y": 0.23, "width": 7, "height": 11, "path": "body-normal.body-id-03-bug"}, - "body-id-03-bug-flipx": {"x": -0.65, "y": 0.23, "width": 7, "height": 11, "path": "body-normal.body-id-03-bug-flipx"}, - "body-id-03-plant": {"x": -0.65, "y": 0.23, "width": 7, "height": 11, "path": "body-normal.body-id-03-plant"}, - "body-id-03-plant-flipx": {"x": -0.65, "y": 0.23, "width": 7, "height": 11, "path": "body-normal.body-id-03-plant-flipx"}, - "body-id-03-reptile": {"x": -0.65, "y": 0.23, "width": 7, "height": 11, "path": "body-normal.body-id-03-reptile"}, - "body-id-03-reptile-flipx": {"x": -0.65, "y": 0.23, "width": 7, "height": 11, "path": "body-normal.body-id-03-reptile-flipx"}, - "body-id-04-aquatic": {"x": -0.65, "y": 0.23, "width": 7, "height": 12, "path": "body-normal.body-id-04-aquatic"}, - "body-id-04-aquatic-flipx": {"x": -0.65, "y": 0.23, "width": 7, "height": 12, "path": "body-normal.body-id-04-aquatic-flipx"}, - "body-id-04-beast": {"x": -0.65, "y": 0.23, "width": 7, "height": 12, "path": "body-normal.body-id-04-beast"}, - "body-id-04-beast-flipx": {"x": -0.65, "y": 0.23, "width": 7, "height": 12, "path": "body-normal.body-id-04-beast-flipx"}, - "body-id-04-bird": {"x": -0.65, "y": 0.23, "width": 7, "height": 12, "path": "body-normal.body-id-04-bird"}, - "body-id-04-bird-flipx": {"x": -0.65, "y": 0.23, "width": 7, "height": 12, "path": "body-normal.body-id-04-bird-flipx"}, - "body-id-04-bug": {"x": -0.65, "y": 0.23, "width": 7, "height": 12, "path": "body-normal.body-id-04-bug"}, - "body-id-04-bug-flipx": {"x": -0.65, "y": 0.23, "width": 7, "height": 12, "path": "body-normal.body-id-04-bug-flipx"}, - "body-id-04-plant": {"x": -0.65, "y": 0.23, "width": 7, "height": 12, "path": "body-normal.body-id-04-plant"}, - "body-id-04-plant-flipx": {"x": -0.65, "y": 0.23, "width": 7, "height": 12, "path": "body-normal.body-id-04-plant-flipx"}, - "body-id-04-reptile": {"x": -0.65, "y": 0.23, "width": 7, "height": 12, "path": "body-normal.body-id-04-reptile"}, - "body-id-04-reptile-flipx": {"x": -0.65, "y": 0.23, "width": 7, "height": 12, "path": "body-normal.body-id-04-reptile-flipx"}, - "body-id-05-aquatic": {"x": -0.65, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-05-aquatic"}, - "body-id-05-aquatic-flipx": {"x": -0.65, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-05-aquatic-flipx"}, - "body-id-05-beast": {"x": -0.65, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-05-beast"}, - "body-id-05-beast-flipx": {"x": -0.65, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-05-beast-flipx"}, - "body-id-05-bird": {"x": -0.65, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-05-bird"}, - "body-id-05-bird-flipx": {"x": -0.65, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-05-bird-flipx"}, - "body-id-05-bug": {"x": -0.65, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-05-bug"}, - "body-id-05-bug-flipx": {"x": -0.65, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-05-bug-flipx"}, - "body-id-05-plant": {"x": -0.65, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-05-plant"}, - "body-id-05-plant-flipx": {"x": -0.65, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-05-plant-flipx"}, - "body-id-05-reptile": {"x": -0.65, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-05-reptile"}, - "body-id-05-reptile-flipx": {"x": -0.65, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-05-reptile-flipx"}, - "body-id-06-aquatic": {"x": -0.65, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-06-aquatic"}, - "body-id-06-aquatic-flipx": {"x": -0.65, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-06-aquatic-flipx"}, - "body-id-06-beast": {"x": -0.65, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-06-beast"}, - "body-id-06-beast-flipx": {"x": -0.65, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-06-beast-flipx"}, - "body-id-06-bird": {"x": -0.65, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-06-bird"}, - "body-id-06-bird-flipx": {"x": -0.65, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-06-bird-flipx"}, - "body-id-06-bug": {"x": -0.65, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-06-bug"}, - "body-id-06-bug-flipx": {"x": -0.65, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-06-bug-flipx"}, - "body-id-06-plant": {"x": -0.65, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-06-plant"}, - "body-id-06-plant-flipx": {"x": -0.65, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-06-plant-flipx"}, - "body-id-06-reptile": {"x": -0.65, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-06-reptile"}, - "body-id-06-reptile-flipx": {"x": -0.65, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-06-reptile-flipx"}, - "body-id-07-aquatic": {"x": -0.65, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-07-aquatic"}, - "body-id-07-aquatic-flipx": {"x": -0.65, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-07-aquatic-flipx"}, - "body-id-07-beast": {"x": -0.65, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-07-beast"}, - "body-id-07-beast-flipx": {"x": -0.65, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-07-beast-flipx"}, - "body-id-07-bird": {"x": -0.65, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-07-bird"}, - "body-id-07-bird-flipx": {"x": -0.65, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-07-bird-flipx"}, - "body-id-07-bug": {"x": -0.65, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-07-bug"}, - "body-id-07-bug-flipx": {"x": -0.65, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-07-bug-flipx"}, - "body-id-07-plant": {"x": -0.65, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-07-plant"}, - "body-id-07-plant-flipx": {"x": -0.65, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-07-plant-flipx"}, - "body-id-07-reptile": {"x": -0.65, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-07-reptile"}, - "body-id-07-reptile-flipx": {"x": -0.65, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-07-reptile-flipx"}, - "body-id-08-aquatic": {"x": -0.65, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-08-aquatic"}, - "body-id-08-aquatic-flipx": {"x": -0.65, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-08-aquatic-flipx"}, - "body-id-08-beast": {"x": -0.65, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-08-beast"}, - "body-id-08-beast-flipx": {"x": -0.65, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-08-beast-flipx"}, - "body-id-08-bird": {"x": -0.65, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-08-bird"}, - "body-id-08-bird-flipx": {"x": -0.65, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-08-bird-flipx"}, - "body-id-08-bug": {"x": -0.65, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-08-bug"}, - "body-id-08-bug-flipx": {"x": -0.65, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-08-bug-flipx"}, - "body-id-08-plant": {"x": -0.65, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-08-plant"}, - "body-id-08-plant-flipx": {"x": -0.65, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-08-plant-flipx"}, - "body-id-08-reptile": {"x": -0.65, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-08-reptile"}, - "body-id-08-reptile-flipx": {"x": -0.65, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-08-reptile-flipx"}, - "body-id-09-aquatic": {"x": -0.65, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-09-aquatic"}, - "body-id-09-aquatic-flipx": {"x": -0.65, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-09-aquatic-flipx"}, - "body-id-09-beast": {"x": -0.65, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-09-beast"}, - "body-id-09-beast-flipx": {"x": -0.65, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-09-beast-flipx"}, - "body-id-09-bird": {"x": -0.65, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-09-bird"}, - "body-id-09-bird-flipx": {"x": -0.65, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-09-bird-flipx"}, - "body-id-09-bug": {"x": -0.65, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-09-bug"}, - "body-id-09-bug-flipx": {"x": -0.65, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-09-bug-flipx"}, - "body-id-09-plant": {"x": -0.65, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-09-plant"}, - "body-id-09-plant-flipx": {"x": -0.65, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-09-plant-flipx"}, - "body-id-09-reptile": {"x": -0.65, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-09-reptile"}, - "body-id-09-reptile-flipx": {"x": -0.65, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-09-reptile-flipx"} - }, - "body-id-d": { - "body-id-d-00": {"x": -0.65, "y": 0.23, "width": 8, "height": 13, "path": "body-normal.body-id-d-00"}, - "body-id-d-01": {"x": 0.35, "y": 0.23, "width": 6, "height": 13, "path": "body-normal.body-id-d-01"}, - "body-id-d-02": {"x": 0.35, "y": 0.73, "width": 8, "height": 12, "path": "body-normal.body-id-d-02"}, - "body-id-d-03": {"x": -0.15, "y": 0.23, "width": 7, "height": 11, "path": "body-normal.body-id-d-03"}, - "body-id-d-04": {"x": -0.15, "y": 0.73, "width": 7, "height": 12, "path": "body-normal.body-id-d-04"}, - "body-id-d-05": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-d-05"}, - "body-id-d-06": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-d-06"}, - "body-id-d-07": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-d-07"}, - "body-id-d-08": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-d-08"}, - "body-id-d-09": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-d-09"}, - "body-id-00-aquatic": {"x": -0.65, "y": 0.23, "width": 8, "height": 13, "path": "body-normal.body-id-00-aquatic"}, - "body-id-00-aquatic-flipx": {"x": -0.65, "y": 0.23, "width": 8, "height": 13, "path": "body-normal.body-id-00-aquatic-flipx"}, - "body-id-00-beast": {"x": -0.65, "y": 0.23, "width": 8, "height": 13, "path": "body-normal.body-id-00-beast"}, - "body-id-00-beast-flipx": {"x": -0.65, "y": 0.23, "width": 8, "height": 13, "path": "body-normal.body-id-00-beast-flipx"}, - "body-id-00-bird": {"x": -0.65, "y": 0.23, "width": 8, "height": 13, "path": "body-normal.body-id-00-bird"}, - "body-id-00-bird-flipx": {"x": -0.65, "y": 0.23, "width": 8, "height": 13, "path": "body-normal.body-id-00-bird-flipx"}, - "body-id-00-bug": {"x": -0.65, "y": 0.23, "width": 8, "height": 13, "path": "body-normal.body-id-00-bug"}, - "body-id-00-bug-flipx": {"x": -0.65, "y": 0.23, "width": 8, "height": 13, "path": "body-normal.body-id-00-bug-flipx"}, - "body-id-00-plant": {"x": -0.65, "y": 0.23, "width": 8, "height": 13, "path": "body-normal.body-id-00-plant"}, - "body-id-00-plant-flipx": {"x": -0.65, "y": 0.23, "width": 8, "height": 13, "path": "body-normal.body-id-00-plant-flipx"}, - "body-id-00-reptile": {"x": -0.65, "y": 0.23, "width": 8, "height": 13, "path": "body-normal.body-id-00-reptile"}, - "body-id-00-reptile-flipx": {"x": -0.65, "y": 0.23, "width": 8, "height": 13, "path": "body-normal.body-id-00-reptile-flipx"}, - "body-id-01-aquatic": {"x": 0.35, "y": 0.23, "width": 6, "height": 13, "path": "body-normal.body-id-01-aquatic"}, - "body-id-01-aquatic-flipx": {"x": 0.35, "y": 0.23, "width": 6, "height": 13, "path": "body-normal.body-id-01-aquatic-flipx"}, - "body-id-01-beast": {"x": 0.35, "y": 0.23, "width": 6, "height": 13, "path": "body-normal.body-id-01-beast"}, - "body-id-01-beast-flipx": {"x": 0.35, "y": 0.23, "width": 6, "height": 13, "path": "body-normal.body-id-01-beast-flipx"}, - "body-id-01-bird": {"x": 0.35, "y": 0.23, "width": 6, "height": 13, "path": "body-normal.body-id-01-bird"}, - "body-id-01-bird-flipx": {"x": 0.35, "y": 0.23, "width": 6, "height": 13, "path": "body-normal.body-id-01-bird-flipx"}, - "body-id-01-bug": {"x": 0.35, "y": 0.23, "width": 6, "height": 13, "path": "body-normal.body-id-01-bug"}, - "body-id-01-bug-flipx": {"x": 0.35, "y": 0.23, "width": 6, "height": 13, "path": "body-normal.body-id-01-bug-flipx"}, - "body-id-01-plant": {"x": 0.35, "y": 0.23, "width": 6, "height": 13, "path": "body-normal.body-id-01-plant"}, - "body-id-01-plant-flipx": {"x": 0.35, "y": 0.23, "width": 6, "height": 13, "path": "body-normal.body-id-01-plant-flipx"}, - "body-id-01-reptile": {"x": 0.35, "y": 0.23, "width": 6, "height": 13, "path": "body-normal.body-id-01-reptile"}, - "body-id-01-reptile-flipx": {"x": 0.35, "y": 0.23, "width": 6, "height": 13, "path": "body-normal.body-id-01-reptile-flipx"}, - "body-id-02-aquatic": {"x": 0.35, "y": 0.73, "width": 8, "height": 12, "path": "body-normal.body-id-02-aquatic"}, - "body-id-02-aquatic-flipx": {"x": 0.35, "y": 0.73, "width": 8, "height": 12, "path": "body-normal.body-id-02-aquatic-flipx"}, - "body-id-02-beast": {"x": 0.35, "y": 0.73, "width": 8, "height": 12, "path": "body-normal.body-id-02-beast"}, - "body-id-02-beast-flipx": {"x": 0.35, "y": 0.73, "width": 8, "height": 12, "path": "body-normal.body-id-02-beast-flipx"}, - "body-id-02-bird": {"x": 0.35, "y": 0.73, "width": 8, "height": 12, "path": "body-normal.body-id-02-bird"}, - "body-id-02-bird-flipx": {"x": 0.35, "y": 0.73, "width": 8, "height": 12, "path": "body-normal.body-id-02-bird-flipx"}, - "body-id-02-bug": {"x": 0.35, "y": 0.73, "width": 8, "height": 12, "path": "body-normal.body-id-02-bug"}, - "body-id-02-bug-flipx": {"x": 0.35, "y": 0.73, "width": 8, "height": 12, "path": "body-normal.body-id-02-bug-flipx"}, - "body-id-02-plant": {"x": 0.35, "y": 0.73, "width": 8, "height": 12, "path": "body-normal.body-id-02-plant"}, - "body-id-02-plant-flipx": {"x": 0.35, "y": 0.73, "width": 8, "height": 12, "path": "body-normal.body-id-02-plant-flipx"}, - "body-id-02-reptile": {"x": 0.35, "y": 0.73, "width": 8, "height": 12, "path": "body-normal.body-id-02-reptile"}, - "body-id-02-reptile-flipx": {"x": 0.35, "y": 0.73, "width": 8, "height": 12, "path": "body-normal.body-id-02-reptile-flipx"}, - "body-id-03-aquatic": {"x": -0.15, "y": 0.23, "width": 7, "height": 11, "path": "body-normal.body-id-03-aquatic"}, - "body-id-03-aquatic-flipx": {"x": -0.15, "y": 0.23, "width": 7, "height": 11, "path": "body-normal.body-id-03-aquatic-flipx"}, - "body-id-03-beast": {"x": -0.15, "y": 0.23, "width": 7, "height": 11, "path": "body-normal.body-id-03-beast"}, - "body-id-03-beast-flipx": {"x": -0.15, "y": 0.23, "width": 7, "height": 11, "path": "body-normal.body-id-03-beast-flipx"}, - "body-id-03-bird": {"x": -0.15, "y": 0.23, "width": 7, "height": 11, "path": "body-normal.body-id-03-bird"}, - "body-id-03-bird-flipx": {"x": -0.15, "y": 0.23, "width": 7, "height": 11, "path": "body-normal.body-id-03-bird-flipx"}, - "body-id-03-bug": {"x": -0.15, "y": 0.23, "width": 7, "height": 11, "path": "body-normal.body-id-03-bug"}, - "body-id-03-bug-flipx": {"x": -0.15, "y": 0.23, "width": 7, "height": 11, "path": "body-normal.body-id-03-bug-flipx"}, - "body-id-03-plant": {"x": -0.15, "y": 0.23, "width": 7, "height": 11, "path": "body-normal.body-id-03-plant"}, - "body-id-03-plant-flipx": {"x": -0.15, "y": 0.23, "width": 7, "height": 11, "path": "body-normal.body-id-03-plant-flipx"}, - "body-id-03-reptile": {"x": -0.15, "y": 0.23, "width": 7, "height": 11, "path": "body-normal.body-id-03-reptile"}, - "body-id-03-reptile-flipx": {"x": -0.15, "y": 0.23, "width": 7, "height": 11, "path": "body-normal.body-id-03-reptile-flipx"}, - "body-id-04-aquatic": {"x": -0.15, "y": 0.73, "width": 7, "height": 12, "path": "body-normal.body-id-04-aquatic"}, - "body-id-04-aquatic-flipx": {"x": -0.15, "y": 0.73, "width": 7, "height": 12, "path": "body-normal.body-id-04-aquatic-flipx"}, - "body-id-04-beast": {"x": -0.15, "y": 0.73, "width": 7, "height": 12, "path": "body-normal.body-id-04-beast"}, - "body-id-04-beast-flipx": {"x": -0.15, "y": 0.73, "width": 7, "height": 12, "path": "body-normal.body-id-04-beast-flipx"}, - "body-id-04-bird": {"x": -0.15, "y": 0.73, "width": 7, "height": 12, "path": "body-normal.body-id-04-bird"}, - "body-id-04-bird-flipx": {"x": -0.15, "y": 0.73, "width": 7, "height": 12, "path": "body-normal.body-id-04-bird-flipx"}, - "body-id-04-bug": {"x": -0.15, "y": 0.73, "width": 7, "height": 12, "path": "body-normal.body-id-04-bug"}, - "body-id-04-bug-flipx": {"x": -0.15, "y": 0.73, "width": 7, "height": 12, "path": "body-normal.body-id-04-bug-flipx"}, - "body-id-04-plant": {"x": -0.15, "y": 0.73, "width": 7, "height": 12, "path": "body-normal.body-id-04-plant"}, - "body-id-04-plant-flipx": {"x": -0.15, "y": 0.73, "width": 7, "height": 12, "path": "body-normal.body-id-04-plant-flipx"}, - "body-id-04-reptile": {"x": -0.15, "y": 0.73, "width": 7, "height": 12, "path": "body-normal.body-id-04-reptile"}, - "body-id-04-reptile-flipx": {"x": -0.15, "y": 0.73, "width": 7, "height": 12, "path": "body-normal.body-id-04-reptile-flipx"}, - "body-id-05-aquatic": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-05-aquatic"}, - "body-id-05-aquatic-flipx": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-05-aquatic-flipx"}, - "body-id-05-beast": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-05-beast"}, - "body-id-05-beast-flipx": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-05-beast-flipx"}, - "body-id-05-bird": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-05-bird"}, - "body-id-05-bird-flipx": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-05-bird-flipx"}, - "body-id-05-bug": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-05-bug"}, - "body-id-05-bug-flipx": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-05-bug-flipx"}, - "body-id-05-plant": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-05-plant"}, - "body-id-05-plant-flipx": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-05-plant-flipx"}, - "body-id-05-reptile": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-05-reptile"}, - "body-id-05-reptile-flipx": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-05-reptile-flipx"}, - "body-id-06-aquatic": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-06-aquatic"}, - "body-id-06-aquatic-flipx": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-06-aquatic-flipx"}, - "body-id-06-beast": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-06-beast"}, - "body-id-06-beast-flipx": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-06-beast-flipx"}, - "body-id-06-bird": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-06-bird"}, - "body-id-06-bird-flipx": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-06-bird-flipx"}, - "body-id-06-bug": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-06-bug"}, - "body-id-06-bug-flipx": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-06-bug-flipx"}, - "body-id-06-plant": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-06-plant"}, - "body-id-06-plant-flipx": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-06-plant-flipx"}, - "body-id-06-reptile": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-06-reptile"}, - "body-id-06-reptile-flipx": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-06-reptile-flipx"}, - "body-id-07-aquatic": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-07-aquatic"}, - "body-id-07-aquatic-flipx": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-07-aquatic-flipx"}, - "body-id-07-beast": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-07-beast"}, - "body-id-07-beast-flipx": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-07-beast-flipx"}, - "body-id-07-bird": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-07-bird"}, - "body-id-07-bird-flipx": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-07-bird-flipx"}, - "body-id-07-bug": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-07-bug"}, - "body-id-07-bug-flipx": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-07-bug-flipx"}, - "body-id-07-plant": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-07-plant"}, - "body-id-07-plant-flipx": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-07-plant-flipx"}, - "body-id-07-reptile": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-07-reptile"}, - "body-id-07-reptile-flipx": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-07-reptile-flipx"}, - "body-id-08-aquatic": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-08-aquatic"}, - "body-id-08-aquatic-flipx": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-08-aquatic-flipx"}, - "body-id-08-beast": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-08-beast"}, - "body-id-08-beast-flipx": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-08-beast-flipx"}, - "body-id-08-bird": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-08-bird"}, - "body-id-08-bird-flipx": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-08-bird-flipx"}, - "body-id-08-bug": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-08-bug"}, - "body-id-08-bug-flipx": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-08-bug-flipx"}, - "body-id-08-plant": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-08-plant"}, - "body-id-08-plant-flipx": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-08-plant-flipx"}, - "body-id-08-reptile": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-08-reptile"}, - "body-id-08-reptile-flipx": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-08-reptile-flipx"}, - "body-id-09-aquatic": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-09-aquatic"}, - "body-id-09-aquatic-flipx": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-09-aquatic-flipx"}, - "body-id-09-beast": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-09-beast"}, - "body-id-09-beast-flipx": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-09-beast-flipx"}, - "body-id-09-bird": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-09-bird"}, - "body-id-09-bird-flipx": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-09-bird-flipx"}, - "body-id-09-bug": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-09-bug"}, - "body-id-09-bug-flipx": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-09-bug-flipx"}, - "body-id-09-plant": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-09-plant"}, - "body-id-09-plant-flipx": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-09-plant-flipx"}, - "body-id-09-reptile": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-09-reptile"}, - "body-id-09-reptile-flipx": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-09-reptile-flipx"} - }, - "body-id-e": { - "body-id-e-00": {"x": -0.65, "y": 0.23, "width": 8, "height": 13, "path": "body-normal.body-id-e-00"}, - "body-id-e-01": {"x": 0.35, "y": 0.23, "width": 6, "height": 13, "path": "body-normal.body-id-e-01"}, - "body-id-e-02": {"x": 0.35, "y": 0.73, "width": 8, "height": 12, "path": "body-normal.body-id-e-02"}, - "body-id-e-03": {"x": -0.15, "y": 0.23, "width": 7, "height": 11, "path": "body-normal.body-id-e-03"}, - "body-id-e-04": {"x": -0.15, "y": 0.73, "width": 7, "height": 12, "path": "body-normal.body-id-e-04"}, - "body-id-e-05": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-e-05"}, - "body-id-e-06": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-e-06"}, - "body-id-e-07": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-e-07"}, - "body-id-e-08": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-e-08"}, - "body-id-e-09": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-e-09"}, - "body-id-00-aquatic": {"x": -0.65, "y": 0.23, "width": 8, "height": 13, "path": "body-normal.body-id-00-aquatic"}, - "body-id-00-aquatic-flipx": {"x": -0.65, "y": 0.23, "width": 8, "height": 13, "path": "body-normal.body-id-00-aquatic-flipx"}, - "body-id-00-beast": {"x": -0.65, "y": 0.23, "width": 8, "height": 13, "path": "body-normal.body-id-00-beast"}, - "body-id-00-beast-flipx": {"x": -0.65, "y": 0.23, "width": 8, "height": 13, "path": "body-normal.body-id-00-beast-flipx"}, - "body-id-00-bird": {"x": -0.65, "y": 0.23, "width": 8, "height": 13, "path": "body-normal.body-id-00-bird"}, - "body-id-00-bird-flipx": {"x": -0.65, "y": 0.23, "width": 8, "height": 13, "path": "body-normal.body-id-00-bird-flipx"}, - "body-id-00-bug": {"x": -0.65, "y": 0.23, "width": 8, "height": 13, "path": "body-normal.body-id-00-bug"}, - "body-id-00-bug-flipx": {"x": -0.65, "y": 0.23, "width": 8, "height": 13, "path": "body-normal.body-id-00-bug-flipx"}, - "body-id-00-plant": {"x": -0.65, "y": 0.23, "width": 8, "height": 13, "path": "body-normal.body-id-00-plant"}, - "body-id-00-plant-flipx": {"x": -0.65, "y": 0.23, "width": 8, "height": 13, "path": "body-normal.body-id-00-plant-flipx"}, - "body-id-00-reptile": {"x": -0.65, "y": 0.23, "width": 8, "height": 13, "path": "body-normal.body-id-00-reptile"}, - "body-id-00-reptile-flipx": {"x": -0.65, "y": 0.23, "width": 8, "height": 13, "path": "body-normal.body-id-00-reptile-flipx"}, - "body-id-01-aquatic": {"x": 0.35, "y": 0.23, "width": 6, "height": 13, "path": "body-normal.body-id-01-aquatic"}, - "body-id-01-aquatic-flipx": {"x": 0.35, "y": 0.23, "width": 6, "height": 13, "path": "body-normal.body-id-01-aquatic-flipx"}, - "body-id-01-beast": {"x": 0.35, "y": 0.23, "width": 6, "height": 13, "path": "body-normal.body-id-01-beast"}, - "body-id-01-beast-flipx": {"x": 0.35, "y": 0.23, "width": 6, "height": 13, "path": "body-normal.body-id-01-beast-flipx"}, - "body-id-01-bird": {"x": 0.35, "y": 0.23, "width": 6, "height": 13, "path": "body-normal.body-id-01-bird"}, - "body-id-01-bird-flipx": {"x": 0.35, "y": 0.23, "width": 6, "height": 13, "path": "body-normal.body-id-01-bird-flipx"}, - "body-id-01-bug": {"x": 0.35, "y": 0.23, "width": 6, "height": 13, "path": "body-normal.body-id-01-bug"}, - "body-id-01-bug-flipx": {"x": 0.35, "y": 0.23, "width": 6, "height": 13, "path": "body-normal.body-id-01-bug-flipx"}, - "body-id-01-plant": {"x": 0.35, "y": 0.23, "width": 6, "height": 13, "path": "body-normal.body-id-01-plant"}, - "body-id-01-plant-flipx": {"x": 0.35, "y": 0.23, "width": 6, "height": 13, "path": "body-normal.body-id-01-plant-flipx"}, - "body-id-01-reptile": {"x": 0.35, "y": 0.23, "width": 6, "height": 13, "path": "body-normal.body-id-01-reptile"}, - "body-id-01-reptile-flipx": {"x": 0.35, "y": 0.23, "width": 6, "height": 13, "path": "body-normal.body-id-01-reptile-flipx"}, - "body-id-02-aquatic": {"x": 0.35, "y": 0.73, "width": 8, "height": 12, "path": "body-normal.body-id-02-aquatic"}, - "body-id-02-aquatic-flipx": {"x": 0.35, "y": 0.73, "width": 8, "height": 12, "path": "body-normal.body-id-02-aquatic-flipx"}, - "body-id-02-beast": {"x": 0.35, "y": 0.73, "width": 8, "height": 12, "path": "body-normal.body-id-02-beast"}, - "body-id-02-beast-flipx": {"x": 0.35, "y": 0.73, "width": 8, "height": 12, "path": "body-normal.body-id-02-beast-flipx"}, - "body-id-02-bird": {"x": 0.35, "y": 0.73, "width": 8, "height": 12, "path": "body-normal.body-id-02-bird"}, - "body-id-02-bird-flipx": {"x": 0.35, "y": 0.73, "width": 8, "height": 12, "path": "body-normal.body-id-02-bird-flipx"}, - "body-id-02-bug": {"x": 0.35, "y": 0.73, "width": 8, "height": 12, "path": "body-normal.body-id-02-bug"}, - "body-id-02-bug-flipx": {"x": 0.35, "y": 0.73, "width": 8, "height": 12, "path": "body-normal.body-id-02-bug-flipx"}, - "body-id-02-plant": {"x": 0.35, "y": 0.73, "width": 8, "height": 12, "path": "body-normal.body-id-02-plant"}, - "body-id-02-plant-flipx": {"x": 0.35, "y": 0.73, "width": 8, "height": 12, "path": "body-normal.body-id-02-plant-flipx"}, - "body-id-02-reptile": {"x": 0.35, "y": 0.73, "width": 8, "height": 12, "path": "body-normal.body-id-02-reptile"}, - "body-id-02-reptile-flipx": {"x": 0.35, "y": 0.73, "width": 8, "height": 12, "path": "body-normal.body-id-02-reptile-flipx"}, - "body-id-03-aquatic": {"x": -0.15, "y": 0.23, "width": 7, "height": 11, "path": "body-normal.body-id-03-aquatic"}, - "body-id-03-aquatic-flipx": {"x": -0.15, "y": 0.23, "width": 7, "height": 11, "path": "body-normal.body-id-03-aquatic-flipx"}, - "body-id-03-beast": {"x": -0.15, "y": 0.23, "width": 7, "height": 11, "path": "body-normal.body-id-03-beast"}, - "body-id-03-beast-flipx": {"x": -0.15, "y": 0.23, "width": 7, "height": 11, "path": "body-normal.body-id-03-beast-flipx"}, - "body-id-03-bird": {"x": -0.15, "y": 0.23, "width": 7, "height": 11, "path": "body-normal.body-id-03-bird"}, - "body-id-03-bird-flipx": {"x": -0.15, "y": 0.23, "width": 7, "height": 11, "path": "body-normal.body-id-03-bird-flipx"}, - "body-id-03-bug": {"x": -0.15, "y": 0.23, "width": 7, "height": 11, "path": "body-normal.body-id-03-bug"}, - "body-id-03-bug-flipx": {"x": -0.15, "y": 0.23, "width": 7, "height": 11, "path": "body-normal.body-id-03-bug-flipx"}, - "body-id-03-plant": {"x": -0.15, "y": 0.23, "width": 7, "height": 11, "path": "body-normal.body-id-03-plant"}, - "body-id-03-plant-flipx": {"x": -0.15, "y": 0.23, "width": 7, "height": 11, "path": "body-normal.body-id-03-plant-flipx"}, - "body-id-03-reptile": {"x": -0.15, "y": 0.23, "width": 7, "height": 11, "path": "body-normal.body-id-03-reptile"}, - "body-id-03-reptile-flipx": {"x": -0.15, "y": 0.23, "width": 7, "height": 11, "path": "body-normal.body-id-03-reptile-flipx"}, - "body-id-04-aquatic": {"x": -0.15, "y": 0.73, "width": 7, "height": 12, "path": "body-normal.body-id-04-aquatic"}, - "body-id-04-aquatic-flipx": {"x": -0.15, "y": 0.73, "width": 7, "height": 12, "path": "body-normal.body-id-04-aquatic-flipx"}, - "body-id-04-beast": {"x": -0.15, "y": 0.73, "width": 7, "height": 12, "path": "body-normal.body-id-04-beast"}, - "body-id-04-beast-flipx": {"x": -0.15, "y": 0.73, "width": 7, "height": 12, "path": "body-normal.body-id-04-beast-flipx"}, - "body-id-04-bird": {"x": -0.15, "y": 0.73, "width": 7, "height": 12, "path": "body-normal.body-id-04-bird"}, - "body-id-04-bird-flipx": {"x": -0.15, "y": 0.73, "width": 7, "height": 12, "path": "body-normal.body-id-04-bird-flipx"}, - "body-id-04-bug": {"x": -0.15, "y": 0.73, "width": 7, "height": 12, "path": "body-normal.body-id-04-bug"}, - "body-id-04-bug-flipx": {"x": -0.15, "y": 0.73, "width": 7, "height": 12, "path": "body-normal.body-id-04-bug-flipx"}, - "body-id-04-plant": {"x": -0.15, "y": 0.73, "width": 7, "height": 12, "path": "body-normal.body-id-04-plant"}, - "body-id-04-plant-flipx": {"x": -0.15, "y": 0.73, "width": 7, "height": 12, "path": "body-normal.body-id-04-plant-flipx"}, - "body-id-04-reptile": {"x": -0.15, "y": 0.73, "width": 7, "height": 12, "path": "body-normal.body-id-04-reptile"}, - "body-id-04-reptile-flipx": {"x": -0.15, "y": 0.73, "width": 7, "height": 12, "path": "body-normal.body-id-04-reptile-flipx"}, - "body-id-05-aquatic": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-05-aquatic"}, - "body-id-05-aquatic-flipx": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-05-aquatic-flipx"}, - "body-id-05-beast": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-05-beast"}, - "body-id-05-beast-flipx": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-05-beast-flipx"}, - "body-id-05-bird": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-05-bird"}, - "body-id-05-bird-flipx": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-05-bird-flipx"}, - "body-id-05-bug": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-05-bug"}, - "body-id-05-bug-flipx": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-05-bug-flipx"}, - "body-id-05-plant": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-05-plant"}, - "body-id-05-plant-flipx": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-05-plant-flipx"}, - "body-id-05-reptile": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-05-reptile"}, - "body-id-05-reptile-flipx": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-05-reptile-flipx"}, - "body-id-06-aquatic": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-06-aquatic"}, - "body-id-06-aquatic-flipx": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-06-aquatic-flipx"}, - "body-id-06-beast": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-06-beast"}, - "body-id-06-beast-flipx": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-06-beast-flipx"}, - "body-id-06-bird": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-06-bird"}, - "body-id-06-bird-flipx": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-06-bird-flipx"}, - "body-id-06-bug": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-06-bug"}, - "body-id-06-bug-flipx": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-06-bug-flipx"}, - "body-id-06-plant": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-06-plant"}, - "body-id-06-plant-flipx": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-06-plant-flipx"}, - "body-id-06-reptile": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-06-reptile"}, - "body-id-06-reptile-flipx": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-06-reptile-flipx"}, - "body-id-07-aquatic": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-07-aquatic"}, - "body-id-07-aquatic-flipx": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-07-aquatic-flipx"}, - "body-id-07-beast": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-07-beast"}, - "body-id-07-beast-flipx": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-07-beast-flipx"}, - "body-id-07-bird": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-07-bird"}, - "body-id-07-bird-flipx": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-07-bird-flipx"}, - "body-id-07-bug": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-07-bug"}, - "body-id-07-bug-flipx": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-07-bug-flipx"}, - "body-id-07-plant": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-07-plant"}, - "body-id-07-plant-flipx": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-07-plant-flipx"}, - "body-id-07-reptile": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-07-reptile"}, - "body-id-07-reptile-flipx": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-07-reptile-flipx"}, - "body-id-08-aquatic": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-08-aquatic"}, - "body-id-08-aquatic-flipx": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-08-aquatic-flipx"}, - "body-id-08-beast": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-08-beast"}, - "body-id-08-beast-flipx": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-08-beast-flipx"}, - "body-id-08-bird": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-08-bird"}, - "body-id-08-bird-flipx": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-08-bird-flipx"}, - "body-id-08-bug": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-08-bug"}, - "body-id-08-bug-flipx": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-08-bug-flipx"}, - "body-id-08-plant": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-08-plant"}, - "body-id-08-plant-flipx": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-08-plant-flipx"}, - "body-id-08-reptile": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-08-reptile"}, - "body-id-08-reptile-flipx": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-08-reptile-flipx"}, - "body-id-09-aquatic": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-09-aquatic"}, - "body-id-09-aquatic-flipx": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-09-aquatic-flipx"}, - "body-id-09-beast": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-09-beast"}, - "body-id-09-beast-flipx": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-09-beast-flipx"}, - "body-id-09-bird": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-09-bird"}, - "body-id-09-bird-flipx": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-09-bird-flipx"}, - "body-id-09-bug": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-09-bug"}, - "body-id-09-bug-flipx": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-09-bug-flipx"}, - "body-id-09-plant": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-09-plant"}, - "body-id-09-plant-flipx": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-09-plant-flipx"}, - "body-id-09-reptile": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-09-reptile"}, - "body-id-09-reptile-flipx": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-09-reptile-flipx"} - }, - "body-id-f": { - "body-id-f-00": {"x": -0.65, "y": 0.23, "width": 8, "height": 13, "path": "body-normal.body-id-f-00"}, - "body-id-f-01": {"x": 0.35, "y": 0.23, "width": 6, "height": 13, "path": "body-normal.body-id-f-01"}, - "body-id-f-02": {"x": 0.35, "y": 0.73, "width": 8, "height": 12, "path": "body-normal.body-id-f-02"}, - "body-id-f-03": {"x": -0.15, "y": 0.23, "width": 7, "height": 11, "path": "body-normal.body-id-f-03"}, - "body-id-f-04": {"x": -0.15, "y": 0.73, "width": 7, "height": 12, "path": "body-normal.body-id-f-04"}, - "body-id-f-05": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-f-05"}, - "body-id-f-06": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-f-06"}, - "body-id-f-07": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-f-07"}, - "body-id-f-08": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-f-08"}, - "body-id-f-09": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-f-09"}, - "body-id-00-aquatic": {"x": -0.65, "y": 0.23, "width": 8, "height": 13, "path": "body-normal.body-id-00-aquatic"}, - "body-id-00-aquatic-flipx": {"x": -0.65, "y": 0.23, "width": 8, "height": 13, "path": "body-normal.body-id-00-aquatic-flipx"}, - "body-id-00-beast": {"x": -0.65, "y": 0.23, "width": 8, "height": 13, "path": "body-normal.body-id-00-beast"}, - "body-id-00-beast-flipx": {"x": -0.65, "y": 0.23, "width": 8, "height": 13, "path": "body-normal.body-id-00-beast-flipx"}, - "body-id-00-bird": {"x": -0.65, "y": 0.23, "width": 8, "height": 13, "path": "body-normal.body-id-00-bird"}, - "body-id-00-bird-flipx": {"x": -0.65, "y": 0.23, "width": 8, "height": 13, "path": "body-normal.body-id-00-bird-flipx"}, - "body-id-00-bug": {"x": -0.65, "y": 0.23, "width": 8, "height": 13, "path": "body-normal.body-id-00-bug"}, - "body-id-00-bug-flipx": {"x": -0.65, "y": 0.23, "width": 8, "height": 13, "path": "body-normal.body-id-00-bug-flipx"}, - "body-id-00-plant": {"x": -0.65, "y": 0.23, "width": 8, "height": 13, "path": "body-normal.body-id-00-plant"}, - "body-id-00-plant-flipx": {"x": -0.65, "y": 0.23, "width": 8, "height": 13, "path": "body-normal.body-id-00-plant-flipx"}, - "body-id-00-reptile": {"x": -0.65, "y": 0.23, "width": 8, "height": 13, "path": "body-normal.body-id-00-reptile"}, - "body-id-00-reptile-flipx": {"x": -0.65, "y": 0.23, "width": 8, "height": 13, "path": "body-normal.body-id-00-reptile-flipx"}, - "body-id-01-aquatic": {"x": 0.35, "y": 0.23, "width": 6, "height": 13, "path": "body-normal.body-id-01-aquatic"}, - "body-id-01-aquatic-flipx": {"x": 0.35, "y": 0.23, "width": 6, "height": 13, "path": "body-normal.body-id-01-aquatic-flipx"}, - "body-id-01-beast": {"x": 0.35, "y": 0.23, "width": 6, "height": 13, "path": "body-normal.body-id-01-beast"}, - "body-id-01-beast-flipx": {"x": 0.35, "y": 0.23, "width": 6, "height": 13, "path": "body-normal.body-id-01-beast-flipx"}, - "body-id-01-bird": {"x": 0.35, "y": 0.23, "width": 6, "height": 13, "path": "body-normal.body-id-01-bird"}, - "body-id-01-bird-flipx": {"x": 0.35, "y": 0.23, "width": 6, "height": 13, "path": "body-normal.body-id-01-bird-flipx"}, - "body-id-01-bug": {"x": 0.35, "y": 0.23, "width": 6, "height": 13, "path": "body-normal.body-id-01-bug"}, - "body-id-01-bug-flipx": {"x": 0.35, "y": 0.23, "width": 6, "height": 13, "path": "body-normal.body-id-01-bug-flipx"}, - "body-id-01-plant": {"x": 0.35, "y": 0.23, "width": 6, "height": 13, "path": "body-normal.body-id-01-plant"}, - "body-id-01-plant-flipx": {"x": 0.35, "y": 0.23, "width": 6, "height": 13, "path": "body-normal.body-id-01-plant-flipx"}, - "body-id-01-reptile": {"x": 0.35, "y": 0.23, "width": 6, "height": 13, "path": "body-normal.body-id-01-reptile"}, - "body-id-01-reptile-flipx": {"x": 0.35, "y": 0.23, "width": 6, "height": 13, "path": "body-normal.body-id-01-reptile-flipx"}, - "body-id-02-aquatic": {"x": 0.35, "y": 0.73, "width": 8, "height": 12, "path": "body-normal.body-id-02-aquatic"}, - "body-id-02-aquatic-flipx": {"x": 0.35, "y": 0.73, "width": 8, "height": 12, "path": "body-normal.body-id-02-aquatic-flipx"}, - "body-id-02-beast": {"x": 0.35, "y": 0.73, "width": 8, "height": 12, "path": "body-normal.body-id-02-beast"}, - "body-id-02-beast-flipx": {"x": 0.35, "y": 0.73, "width": 8, "height": 12, "path": "body-normal.body-id-02-beast-flipx"}, - "body-id-02-bird": {"x": 0.35, "y": 0.73, "width": 8, "height": 12, "path": "body-normal.body-id-02-bird"}, - "body-id-02-bird-flipx": {"x": 0.35, "y": 0.73, "width": 8, "height": 12, "path": "body-normal.body-id-02-bird-flipx"}, - "body-id-02-bug": {"x": 0.35, "y": 0.73, "width": 8, "height": 12, "path": "body-normal.body-id-02-bug"}, - "body-id-02-bug-flipx": {"x": 0.35, "y": 0.73, "width": 8, "height": 12, "path": "body-normal.body-id-02-bug-flipx"}, - "body-id-02-plant": {"x": 0.35, "y": 0.73, "width": 8, "height": 12, "path": "body-normal.body-id-02-plant"}, - "body-id-02-plant-flipx": {"x": 0.35, "y": 0.73, "width": 8, "height": 12, "path": "body-normal.body-id-02-plant-flipx"}, - "body-id-02-reptile": {"x": 0.35, "y": 0.73, "width": 8, "height": 12, "path": "body-normal.body-id-02-reptile"}, - "body-id-02-reptile-flipx": {"x": 0.35, "y": 0.73, "width": 8, "height": 12, "path": "body-normal.body-id-02-reptile-flipx"}, - "body-id-03-aquatic": {"x": -0.15, "y": 0.23, "width": 7, "height": 11, "path": "body-normal.body-id-03-aquatic"}, - "body-id-03-aquatic-flipx": {"x": -0.15, "y": 0.23, "width": 7, "height": 11, "path": "body-normal.body-id-03-aquatic-flipx"}, - "body-id-03-beast": {"x": -0.15, "y": 0.23, "width": 7, "height": 11, "path": "body-normal.body-id-03-beast"}, - "body-id-03-beast-flipx": {"x": -0.15, "y": 0.23, "width": 7, "height": 11, "path": "body-normal.body-id-03-beast-flipx"}, - "body-id-03-bird": {"x": -0.15, "y": 0.23, "width": 7, "height": 11, "path": "body-normal.body-id-03-bird"}, - "body-id-03-bird-flipx": {"x": -0.15, "y": 0.23, "width": 7, "height": 11, "path": "body-normal.body-id-03-bird-flipx"}, - "body-id-03-bug": {"x": -0.15, "y": 0.23, "width": 7, "height": 11, "path": "body-normal.body-id-03-bug"}, - "body-id-03-bug-flipx": {"x": -0.15, "y": 0.23, "width": 7, "height": 11, "path": "body-normal.body-id-03-bug-flipx"}, - "body-id-03-plant": {"x": -0.15, "y": 0.23, "width": 7, "height": 11, "path": "body-normal.body-id-03-plant"}, - "body-id-03-plant-flipx": {"x": -0.15, "y": 0.23, "width": 7, "height": 11, "path": "body-normal.body-id-03-plant-flipx"}, - "body-id-03-reptile": {"x": -0.15, "y": 0.23, "width": 7, "height": 11, "path": "body-normal.body-id-03-reptile"}, - "body-id-03-reptile-flipx": {"x": -0.15, "y": 0.23, "width": 7, "height": 11, "path": "body-normal.body-id-03-reptile-flipx"}, - "body-id-04-aquatic": {"x": -0.15, "y": 0.73, "width": 7, "height": 12, "path": "body-normal.body-id-04-aquatic"}, - "body-id-04-aquatic-flipx": {"x": -0.15, "y": 0.73, "width": 7, "height": 12, "path": "body-normal.body-id-04-aquatic-flipx"}, - "body-id-04-beast": {"x": -0.15, "y": 0.73, "width": 7, "height": 12, "path": "body-normal.body-id-04-beast"}, - "body-id-04-beast-flipx": {"x": -0.15, "y": 0.73, "width": 7, "height": 12, "path": "body-normal.body-id-04-beast-flipx"}, - "body-id-04-bird": {"x": -0.15, "y": 0.73, "width": 7, "height": 12, "path": "body-normal.body-id-04-bird"}, - "body-id-04-bird-flipx": {"x": -0.15, "y": 0.73, "width": 7, "height": 12, "path": "body-normal.body-id-04-bird-flipx"}, - "body-id-04-bug": {"x": -0.15, "y": 0.73, "width": 7, "height": 12, "path": "body-normal.body-id-04-bug"}, - "body-id-04-bug-flipx": {"x": -0.15, "y": 0.73, "width": 7, "height": 12, "path": "body-normal.body-id-04-bug-flipx"}, - "body-id-04-plant": {"x": -0.15, "y": 0.73, "width": 7, "height": 12, "path": "body-normal.body-id-04-plant"}, - "body-id-04-plant-flipx": {"x": -0.15, "y": 0.73, "width": 7, "height": 12, "path": "body-normal.body-id-04-plant-flipx"}, - "body-id-04-reptile": {"x": -0.15, "y": 0.73, "width": 7, "height": 12, "path": "body-normal.body-id-04-reptile"}, - "body-id-04-reptile-flipx": {"x": -0.15, "y": 0.73, "width": 7, "height": 12, "path": "body-normal.body-id-04-reptile-flipx"}, - "body-id-05-aquatic": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-05-aquatic"}, - "body-id-05-aquatic-flipx": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-05-aquatic-flipx"}, - "body-id-05-beast": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-05-beast"}, - "body-id-05-beast-flipx": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-05-beast-flipx"}, - "body-id-05-bird": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-05-bird"}, - "body-id-05-bird-flipx": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-05-bird-flipx"}, - "body-id-05-bug": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-05-bug"}, - "body-id-05-bug-flipx": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-05-bug-flipx"}, - "body-id-05-plant": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-05-plant"}, - "body-id-05-plant-flipx": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-05-plant-flipx"}, - "body-id-05-reptile": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-05-reptile"}, - "body-id-05-reptile-flipx": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-05-reptile-flipx"}, - "body-id-06-aquatic": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-06-aquatic"}, - "body-id-06-aquatic-flipx": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-06-aquatic-flipx"}, - "body-id-06-beast": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-06-beast"}, - "body-id-06-beast-flipx": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-06-beast-flipx"}, - "body-id-06-bird": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-06-bird"}, - "body-id-06-bird-flipx": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-06-bird-flipx"}, - "body-id-06-bug": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-06-bug"}, - "body-id-06-bug-flipx": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-06-bug-flipx"}, - "body-id-06-plant": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-06-plant"}, - "body-id-06-plant-flipx": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-06-plant-flipx"}, - "body-id-06-reptile": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-06-reptile"}, - "body-id-06-reptile-flipx": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-06-reptile-flipx"}, - "body-id-07-aquatic": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-07-aquatic"}, - "body-id-07-aquatic-flipx": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-07-aquatic-flipx"}, - "body-id-07-beast": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-07-beast"}, - "body-id-07-beast-flipx": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-07-beast-flipx"}, - "body-id-07-bird": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-07-bird"}, - "body-id-07-bird-flipx": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-07-bird-flipx"}, - "body-id-07-bug": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-07-bug"}, - "body-id-07-bug-flipx": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-07-bug-flipx"}, - "body-id-07-plant": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-07-plant"}, - "body-id-07-plant-flipx": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-07-plant-flipx"}, - "body-id-07-reptile": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-07-reptile"}, - "body-id-07-reptile-flipx": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-07-reptile-flipx"}, - "body-id-08-aquatic": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-08-aquatic"}, - "body-id-08-aquatic-flipx": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-08-aquatic-flipx"}, - "body-id-08-beast": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-08-beast"}, - "body-id-08-beast-flipx": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-08-beast-flipx"}, - "body-id-08-bird": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-08-bird"}, - "body-id-08-bird-flipx": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-08-bird-flipx"}, - "body-id-08-bug": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-08-bug"}, - "body-id-08-bug-flipx": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-08-bug-flipx"}, - "body-id-08-plant": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-08-plant"}, - "body-id-08-plant-flipx": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-08-plant-flipx"}, - "body-id-08-reptile": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-08-reptile"}, - "body-id-08-reptile-flipx": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-08-reptile-flipx"}, - "body-id-09-aquatic": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-09-aquatic"}, - "body-id-09-aquatic-flipx": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-09-aquatic-flipx"}, - "body-id-09-beast": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-09-beast"}, - "body-id-09-beast-flipx": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-09-beast-flipx"}, - "body-id-09-bird": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-09-bird"}, - "body-id-09-bird-flipx": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-09-bird-flipx"}, - "body-id-09-bug": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-09-bug"}, - "body-id-09-bug-flipx": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-09-bug-flipx"}, - "body-id-09-plant": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-09-plant"}, - "body-id-09-plant-flipx": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-09-plant-flipx"}, - "body-id-09-reptile": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-09-reptile"}, - "body-id-09-reptile-flipx": {"x": -0.15, "y": 0.23, "width": 9, "height": 11, "path": "body-normal.body-id-09-reptile-flipx"} - }, - "body-light-breath": {"body-light-breath": {"x": -142.53, "y": 11.79, "rotation": -170.69, "width": 78, "height": 78, "path": "body-normal.body-light-breath"}}, - "body-light-life": {"body-light-life": {"x": -0.01, "y": 0.66, "width": 148, "height": 148, "path": "body-normal.body-light-life"}}, - "body-light-pulse": {"body-light-pulse": {"x": -245.31, "y": -186.45, "rotation": -170.69, "width": 15, "height": 14, "path": "body-normal.body-light-pulse"}}, - "body-mfuzzy": { - "body-mfuzzy": { - "type": "mesh", - "uvs": [ - 0, 0.59099, 0, 0.63956, 0.02445, 0.70612, 0.06062, 0.75469, 0.08774, 0.77508, 0.12781, 0.88168, 0.21693, 0.97076, 0.3552, 1, 0.47229, 0.99621, 0.59119, 0.95423, 0.67211, 0.8475, - 0.74226, 0.70659, 0.79108, 0.55849, 0.84941, 0.50152, 0.89168, 0.50505, 0.92853, 0.50812, 0.95366, 0.49336, 0.97961, 0.47814, 1, 0.42537, 1, 0.3852, 0.95113, 0.33603, 0.87337, - 0.30365, 0.87699, 0.2161, 0.86187, 0.09979, 0.77778, 0.09679, 0.68104, 0.10818, 0.65211, 0.06861, 0.55943, 0.10278, 0.50202, 0, 0.45139, 0, 0.36685, 0.04942, 0.3022, 0.12797, - 0.26152, 0.21012, 0.17426, 0.18613, 0.12581, 0.26107, 0.10683, 0.34802, 0.07744, 0.34442, 0.05619, 0.43376, 0.0571, 0.54469, 0.11098, 0.76022, 0.08306, 0.72228, 0.05684, 0.68299, - 0.03083, 0.6269, 0.06028, 0.59484, 0.09467, 0.56797, 0.08828, 0.50932, 0.08976, 0.45706, 0.09567, 0.40658, 0.11114, 0.43993, 0.12553, 0.47578, 0.12943, 0.4344, 0.1404, 0.38064, - 0.15803, 0.31433, 0.17485, 0.26694, 0.19151, 0.23485, 0.22351, 0.25242, 0.27558, 0.27856, 0.30173, 0.22442, 0.33679, 0.16719, 0.37247, 0.11656, 0.41864, 0.07588, 0.48082, 0.0449, - 0.50326, 0.10725, 0.53735, 0.19358, 0.58637, 0.1543, 0.64461, 0.11982, 0.6462, 0.15935, 0.64175, 0.21158, 0.67351, 0.16651, 0.73576, 0.14665, 0.79457, 0.14018, 0.83388, 0.13977, - 0.83693, 0.20202, 0.83083, 0.28124, 0.80737, 0.3645, 0.84027, 0.3502, 0.89076, 0.35878, 0.93715, 0.38745, 0.96988, 0.41116, 0.95351, 0.45023, 0.9233, 0.47795, 0.07568, 0.65845, - 0.11684, 0.68341, 0.15212, 0.70108, 0.21284, 0.39863, 0.40981, 0.25755, 0.42812, 0.17944, 0.44751, 0.10323, 0.64387, 0.38092, 0.70824, 0.31387, 0.76311, 0.25026, 0.81237, 0.18378, - 0.78959, 0.47118, 0.8498, 0.44586, 0.89916, 0.42448, 0.3144, 0.31426, 0.15836, 0.53904, 0.15868, 0.82395, 0.54315, 0.28691, 0.73079, 0.41927, 0.8687, 0.47643, 0.81725, 0.49587, - 0.79054, 0.52691, 0.7583, 0.58688 - ], - "triangles": [ - 16, 79, 17, 80, 94, 79, 80, 79, 16, 102, 99, 92, 101, 92, 93, 100, 94, 80, 101, 93, 100, 13, 101, 100, 14, 100, 80, 13, 100, 14, 15, 80, 16, 14, 80, 15, 102, 92, 101, 12, 102, 101, - 12, 101, 13, 102, 103, 99, 103, 102, 12, 11, 103, 12, 4, 3, 40, 39, 4, 40, 95, 97, 83, 39, 83, 97, 103, 10, 88, 11, 10, 103, 97, 4, 39, 5, 4, 97, 88, 8, 95, 6, 97, 7, 5, 97, 6, 8, - 88, 10, 95, 8, 97, 8, 10, 9, 8, 7, 97, 100, 93, 94, 93, 75, 76, 93, 76, 94, 74, 75, 93, 92, 99, 74, 92, 74, 93, 76, 21, 20, 75, 21, 76, 77, 76, 20, 78, 77, 20, 19, 78, 20, 94, 76, - 77, 94, 77, 78, 78, 19, 18, 79, 94, 78, 18, 79, 78, 17, 79, 18, 65, 27, 26, 65, 26, 25, 64, 27, 65, 68, 66, 65, 64, 65, 66, 25, 68, 65, 67, 64, 66, 67, 66, 68, 67, 98, 63, 67, 63, - 64, 90, 89, 68, 67, 68, 89, 89, 90, 74, 88, 67, 89, 98, 67, 88, 99, 89, 74, 88, 89, 99, 99, 103, 88, 88, 95, 98, 71, 24, 23, 70, 24, 71, 69, 25, 24, 69, 24, 70, 68, 25, 69, 91, 70, - 71, 22, 72, 71, 91, 71, 72, 22, 71, 23, 91, 90, 69, 91, 69, 70, 73, 91, 72, 73, 72, 22, 90, 91, 73, 21, 73, 22, 90, 68, 69, 75, 73, 21, 74, 90, 73, 74, 73, 75, 59, 30, 60, 31, 30, - 59, 58, 31, 59, 87, 59, 60, 86, 59, 87, 58, 57, 31, 86, 58, 59, 85, 58, 86, 57, 58, 85, 63, 85, 86, 98, 85, 63, 95, 57, 85, 95, 85, 98, 61, 29, 28, 60, 30, 29, 60, 29, 61, 62, 61, - 28, 87, 60, 61, 27, 62, 28, 87, 61, 62, 63, 62, 27, 63, 27, 64, 86, 87, 62, 62, 63, 86, 57, 32, 31, 54, 33, 32, 55, 54, 32, 53, 34, 33, 54, 53, 33, 56, 32, 57, 55, 32, 56, 56, 57, - 95, 52, 34, 53, 52, 35, 34, 51, 35, 52, 54, 84, 53, 84, 55, 56, 84, 56, 95, 53, 84, 52, 54, 55, 84, 51, 52, 84, 47, 36, 35, 47, 35, 51, 37, 36, 47, 50, 47, 51, 48, 47, 50, 46, 37, - 47, 46, 47, 48, 49, 48, 50, 46, 48, 49, 45, 37, 46, 45, 46, 49, 84, 50, 51, 84, 49, 50, 96, 49, 84, 96, 44, 45, 96, 45, 49, 96, 95, 83, 96, 84, 95, 41, 42, 81, 82, 44, 96, 81, 44, - 82, 83, 82, 96, 40, 81, 82, 41, 81, 40, 3, 41, 40, 2, 41, 3, 39, 40, 82, 39, 82, 83, 38, 37, 45, 38, 45, 44, 43, 38, 44, 0, 38, 43, 42, 0, 43, 1, 0, 42, 81, 43, 44, 42, 43, 81, 2, 1, - 42, 2, 42, 41 - ], - "vertices": [ - 4, 39, 59.38, -4.61, 0.73379, 38, 118.71, -15.45, 0.10803, 37, -71.06, 165.61, 0.15679, 6, 386.15, -60.24, 0.00139, 4, 39, 46.03, 17.23, 0.7372, 38, 109.52, 8.43, 0.20192, 37, - -96.19, 170.51, 0.05083, 6, 382.01, -34.98, 0.01005, 4, 39, 13.15, 38.24, 0.54527, 38, 80.97, 35.03, 0.34127, 37, -133.88, 160.44, 0.00823, 6, 359.46, -3.13, 0.10523, 4, 39, -21.77, - 46.9, 0.30902, 38, 48.18, 49.85, 0.46464, 37, -163.84, 140.52, 4e-05, 6, 330.38, 18.04, 0.2263, 1, 6, 309.93, 25.57, 1, 1, 6, 273.2, 76.48, 1, 1, 6, 204.13, 112.73, 1, 1, 6, 106.26, - 112.3, 1, 1, 6, 25.82, 97.09, 1, 1, 6, -52.62, 61.81, 1, 1, 6, -99.34, -2.85, 1, 1, 6, -135.71, -84.06, 1, 1, 6, -156.76, -166.6, 1, 5, 34, -57.56, -133.13, 0, 33, 70.58, -139.89, - 0.00031, 32, -39.76, -39.27, 0.00281, 31, 34, -28.52, 0.00881, 6, -192.14, -202.82, 0.98808, 1, 6, -221.6, -205.77, 1, 1, 6, -247.28, -208.34, 1, 1, 6, -263.36, -218.86, 1, 4, 34, - 12.41, -192.61, 0.0008, 32, 52.05, -37.09, 0.67381, 31, 123.63, -48.54, 0.14938, 6, -279.96, -229.71, 0.176, 4, 34, 42.63, -184.64, 0.0184, 33, 177.49, -175.38, 0.00095, 32, 69.3, - -11.03, 0.9002, 31, 146.65, -27.41, 0.08045, 4, 34, 58.38, -170.49, 0.08596, 33, 190.88, -158.98, 0.00284, 32, 71.64, 10.01, 0.85259, 31, 154, -7.55, 0.05861, 4, 34, 54.84, -127.76, - 0.23776, 33, 180.81, -117.3, 0.00568, 32, 40.56, 39.55, 0.66664, 31, 130.95, 28.6, 0.08991, 6, 36, 48.01, -312.32, 0.00041, 35, 72.95, -315.86, 8e-05, 34, 31.22, -75.92, 0.4621, 33, - 149.51, -69.71, 0.00841, 32, -11.57, 62.52, 0.41961, 31, 85.9, 63.47, 0.10938, 6, 36, 90.07, -293.2, 0.00549, 35, 117.77, -304.64, 0.00243, 34, 67.24, -46.98, 0.67125, 33, 180.64, - -35.57, 0.02838, 32, -3.96, 108.09, 0.19498, 31, 104.28, 105.86, 0.09748, 6, 36, 139.51, -255.45, 0.02177, 35, 173.21, -276.42, 0.01039, 34, 105.79, 1.84, 0.76569, 33, 211.23, 18.59, - 0.08403, 32, -7.68, 170.19, 0.06301, 31, 115.64, 167.02, 0.05511, 6, 36, 113.7, -202.62, 0.06514, 35, 157.35, -219.8, 0.03088, 34, 67.69, 46.63, 0.68964, 33, 166.7, 56.99, 0.18361, - 32, -65.92, 178.26, 0.00988, 31, 61.06, 188.89, 0.02084, 6, 36, 77.06, -145.46, 0.15973, 35, 131.62, -156.98, 0.05738, 34, 18.05, 92.93, 0.50433, 33, 110.53, 95.11, 0.27518, 32, - -133.79, 179.78, 0.00071, 31, -4.44, 206.73, 0.00266, 4, 36, 86.18, -117.88, 0.32296, 35, 145.57, -131.49, 0.07984, 34, 20.05, 121.91, 0.2938, 33, 108.05, 124.06, 0.30339, 5, 37, - 106.68, -267.42, 0.00096, 36, 40.22, -68.8, 0.51925, 35, 109.21, -74.93, 0.0986, 34, -36.63, 158.08, 0.14083, 33, 46.48, 151.08, 0.24036, 5, 37, 167.52, -238.39, 0.00993, 36, 69.65, - -8.15, 0.65142, 35, 149.1, -20.58, 0.14932, 34, -23.14, 224.13, 0.05147, 33, 49.66, 218.42, 0.13785, 5, 37, 174.29, -203.65, 0.05005, 36, 53.26, 23.22, 0.62805, 35, 138.63, 13.23, - 0.25588, 34, -46.78, 250.47, 0.01479, 33, 22.25, 240.8, 0.05123, 5, 37, 160.03, -140.67, 0.15546, 36, 2.82, 63.53, 0.45652, 35, 96.29, 61.98, 0.37497, 34, -105.64, 277.03, 0.00204, - 33, -40, 258.01, 0.01101, 7, 39, 6.4, -322.98, 0.0004, 38, 9.17, -319.05, 2e-05, 37, 128.04, -88.4, 0.34164, 36, -54.8, 84.42, 0.24086, 35, 43.38, 92.92, 0.41699, 34, -166.63, 283, - 1e-05, 33, -101.18, 254.52, 8e-05, 5, 39, 8.09, -271.21, 0.00467, 38, 20.17, -268.43, 0.00117, 37, 90.99, -52.2, 0.57165, 36, -106.34, 89.58, 0.08557, 35, -6.38, 107.29, 0.33695, 5, - 39, 66.71, -250.19, 0.01762, 38, 81.63, -258.33, 0.00505, 37, 115.06, 5.24, 0.76786, 36, -123.37, 149.49, 0.01703, 35, -12.33, 169.29, 0.19243, 5, 39, 75.02, -198.83, 0.04674, 38, - 99.06, -209.31, 0.01526, 37, 82.77, 46.04, 0.8663, 36, -174.06, 161.22, 0.00084, 35, -60.07, 189.97, 0.07086, 4, 39, 62.44, -152.81, 0.10417, 38, 94.99, -161.78, 0.03432, 37, 40.34, - 67.83, 0.84761, 35, -107.77, 189.1, 0.0139, 3, 39, 80.96, -143.72, 0.21239, 38, 114.85, -156.17, 0.05746, 37, 46.13, 87.63, 0.73015, 3, 39, 69.08, -95.8, 0.38361, 38, 111.8, -106.89, - 0.07384, 37, 2.75, 111.21, 0.54255, 4, 39, 38.05, -46.25, 0.58771, 38, 90.22, -52.56, 0.07907, 37, -54.75, 121.77, 0.33322, 6, 350.71, -90.78, 0, 3, 39, -53.32, 31.03, 0.05161, 38, - 14.29, 39.92, 0.23639, 6, 295.17, 15.22, 0.712, 4, 39, -26.24, 24.15, 0.22586, 38, 39.68, 28.27, 0.53683, 37, -150.08, 121.86, 0.00184, 6, 317.66, -1.36, 0.23548, 4, 39, 0.2, 16.04, - 0.41793, 38, 64.22, 15.53, 0.50584, 37, -126.25, 135.89, 0.01199, 6, 339.1, -18.82, 0.06424, 5, 39, 31.13, 0.3, 0.5098, 38, 91.8, -5.53, 0.44038, 37, -93.76, 148.08, 0.0421, 35, - -263.88, 196.41, 0, 6, 361.82, -45.05, 0.00772, 4, 39, 22.37, -24.86, 0.58199, 38, 78.66, -28.69, 0.27798, 37, -81.11, 124.64, 0.13923, 6, 344.24, -65.06, 0.0008, 4, 39, 9.25, - -49.47, 0.51354, 38, 61.31, -50.54, 0.2129, 37, -71.81, 98.34, 0.27356, 6, 322.81, -82.92, 0, 4, 39, 29.18, -73.52, 0.39066, 38, 76.57, -77.78, 0.18247, 37, -40.62, 96.81, 0.42687, - 6, 332.22, -112.7, 0, 4, 39, 42.66, -97.56, 0.28223, 38, 85.5, -103.86, 0.15403, 37, -13.78, 90.53, 0.56363, 6, 335.65, -140.05, 0.00011, 4, 39, 53, -122.41, 0.21865, 38, 91.19, - -130.17, 0.12816, 37, 11.54, 81.38, 0.65285, 6, 335.88, -166.97, 0.00033, 4, 39, 34.61, -113.05, 0.1849, 38, 74.79, -117.65, 0.11637, 37, -7.78, 74.13, 0.69806, 6, 322.37, -151.37, - 0.00067, 4, 39, 16.18, -102.18, 0.15794, 38, 58.62, -103.63, 0.10816, 37, -28.25, 67.87, 0.73308, 6, 309.38, -134.35, 0.00081, 4, 39, 25.22, -122.21, 0.12444, 38, 63.9, -124.96, - 0.08758, 37, -7.37, 61.03, 0.78726, 6, 310.22, -156.31, 0.00072, 5, 39, 33.45, -150.38, 0.0831, 38, 66.92, -154.16, 0.05533, 37, 18.98, 48.08, 0.8611, 35, -117.26, 161.6, 7e-05, 6, - 307.23, -185.51, 0.0004, 5, 39, 41.16, -186.62, 0.04445, 38, 67.97, -191.19, 0.02606, 37, 50.92, 29.3, 0.92676, 35, -80.23, 160.16, 0.00259, 6, 300.73, -221.99, 0.00015, 6, 39, - 44.16, -214.06, 0.02045, 38, 65.96, -218.73, 0.0161, 37, 73.18, 12.98, 0.93579, 35, -52.9, 156.31, 0.02623, 33, -216.45, 254.1, 8e-05, 6, 293.16, -248.54, 0.00134, 6, 39, 43.04, - -234.57, 0.01054, 38, 61.16, -238.69, 0.04152, 37, 87.56, -1.69, 0.84314, 35, -33.3, 150.18, 0.1009, 33, -196.74, 259.83, 0.00021, 6, 284.41, -267.11, 0.00369, 7, 39, 19.13, -238.33, - 0.00337, 38, 36.96, -238.08, 0.00802, 37, 74.19, -21.87, 0.7895, 36, -138.4, 102.8, 0.00046, 35, -35.53, 126.08, 0.19653, 33, -185.27, 238.51, 9e-05, 6, 260.84, -261.6, 0.00203, 7, - 39, -19.11, -245.56, 6e-05, 38, -1.96, -238.3, 1e-05, 37, 53.71, -54.96, 0.63522, 36, -133.75, 64.16, 0.00626, 35, -37.93, 87.23, 0.35744, 33, -165.79, 204.82, 1e-05, 6, 222.69, - -253.89, 0.00102, 5, 37, 78.22, -78.36, 0.43479, 36, -100, 61.17, 0.04239, 35, -5.27, 78.2, 0.52191, 33, -133.58, 215.36, 1e-05, 6, 209.27, -285, 0.0009, 6, 37, 103.13, -108.18, - 0.25316, 36, -61.92, 53.42, 0.1443, 35, 30.78, 63.71, 0.60187, 34, -165.86, 251.2, 2e-05, 33, -95.53, 223.22, 0.00015, 6, 189.96, -318.73, 0.00049, 6, 37, 124.55, -137.76, 0.12076, - 36, -26.73, 43.67, 0.32134, 35, 63.64, 47.77, 0.55446, 34, -129.34, 250.47, 0.00034, 33, -59.33, 228.11, 0.00292, 6, 169.67, -349.09, 0.00018, 6, 37, 139.42, -173.54, 0.04516, 36, - 7.22, 24.99, 0.50008, 35, 93.67, 23.28, 0.43627, 34, -91.83, 240.78, 0.00155, 33, -20.77, 224.31, 0.01691, 6, 141.29, -375.47, 2e-05, 6, 37, 147.13, -219.32, 0.00916, 36, 41.82, - -5.97, 0.57981, 35, 122.11, -13.42, 0.35244, 34, -50.64, 219.35, 0.00585, 33, 23.21, 209.46, 0.05274, 6, 101.04, -398.61, 1e-05, 6, 37, 111.88, -228.43, 0.00173, 36, 19.95, -35.09, - 0.54937, 35, 95.35, -38.12, 0.26285, 34, -64.61, 185.72, 0.02506, 33, 14.58, 174.09, 0.16096, 6, 80.25, -368.72, 3e-05, 6, 37, 62.67, -243.12, 0.00013, 36, -9.34, -77.28, 0.42134, - 35, 58.94, -74.33, 0.23503, 34, -82.54, 137.6, 0.05933, 33, 4.26, 123.78, 0.28414, 6, 49.37, -327.68, 4e-05, 5, 36, 24.88, -98.07, 0.28209, 35, 88.84, -100.95, 0.20996, 34, -44.25, - 125.93, 0.10441, 33, 43.9, 118.14, 0.40351, 6, 18.9, -353.66, 3e-05, 5, 36, 59.84, -125.74, 0.19389, 35, 118.23, -134.47, 0.16207, 34, -3.53, 107.78, 0.1474, 33, 86.92, 106.46, - 0.49663, 6, -18.33, -378.17, 2e-05, 5, 36, 41.89, -136.36, 0.14245, 35, 98.66, -141.68, 0.11524, 34, -18.29, 93.04, 0.19511, 33, 74.61, 89.63, 0.54719, 6, -22.79, -357.8, 1e-05, 4, - 36, 16.05, -146.36, 0.10865, 35, 71.45, -146.85, 0.08101, 34, -40.84, 76.96, 0.28069, 33, 54.79, 70.27, 0.52965, 4, 36, 47.38, -155.03, 0.07532, 35, 100.7, -161.04, 0.05543, 34, - -8.34, 76.31, 0.43397, 33, 87.01, 74.63, 0.43528, 6, 36, 76.81, -188.75, 0.04635, 35, 123.56, -199.51, 0.03163, 34, 28.52, 50.93, 0.63283, 33, 127.33, 55.22, 0.28777, 32, -98.02, - 155.4, 0.00025, 31, 24.4, 174.45, 0.00117, 6, 36, 98.86, -223.61, 0.02255, 35, 138.97, -237.77, 0.01338, 34, 58.52, 22.62, 0.80221, 33, 161.33, 31.86, 0.14762, 32, -56.79, 154.24, - 0.00232, 31, 64.14, 163.38, 0.01193, 6, 36, 111.77, -247.87, 0.00816, 35, 147.3, -263.96, 0.00373, 34, 77.04, 2.32, 0.85962, 33, 182.75, 14.64, 0.06765, 32, -29.45, 151.41, 0.00655, - 31, 89.98, 154.04, 0.0543, 6, 36, 83.69, -264.94, 0.00173, 35, 116.59, -275.69, 0.00053, 34, 54.05, -21.18, 0.77848, 33, 163.65, -12.11, 0.05782, 32, -30.97, 118.57, 0.01489, 31, - 80.59, 122.54, 0.14656, 6, 36, 44.71, -280.5, 0.00017, 35, 75.45, -283.96, 2e-05, 34, 20.14, -45.91, 0.59408, 33, 133.95, -41.75, 0.08713, 32, -39.82, 77.55, 0.04053, 31, 62.11, - 84.86, 0.27806, 5, 36, -1.77, -286.28, 0, 34, -23.46, -63.02, 0.39195, 33, 93.49, -65.37, 0.10627, 32, -60.97, 35.76, 0.1191, 31, 31.5, 49.4, 0.38267, 4, 34, -2.49, -75.09, 0.22677, - 33, 116.07, -74.08, 0.09437, 32, -37.29, 40.7, 0.28025, 31, 55.68, 48.49, 0.3986, 4, 34, 17.72, -104.38, 0.12329, 33, 140.54, -99.9, 0.05726, 32, -2.71, 32.3, 0.49549, 31, 87.21, 32, - 0.32396, 4, 34, 28.14, -138.6, 0.05752, 33, 156.1, -132.11, 0.02344, 32, 27.84, 13.7, 0.66549, 31, 112.38, 6.58, 0.25355, 4, 34, 34.13, -163.97, 0.01679, 33, 165.92, -156.26, - 0.00378, 32, 49.2, -1.25, 0.69251, 31, 129.5, -13.08, 0.28693, 5, 34, 11.17, -169.21, 0.00296, 33, 144.04, -164.98, 0.0002, 32, 35.55, -20.45, 0.54576, 31, 111.63, -28.42, 0.19508, - 6, -259.58, -241.27, 0.256, 1, 6, -241.1, -223.44, 1, 6, 39, -4.3, -1.87, 0.37171, 38, 56.57, -1.27, 0.58035, 37, -116.07, 120.48, 0.0251, 35, -270.49, 161.54, 3e-05, 33, -400.65, - 138.13, 0, 6, 328.19, -33.72, 0.02282, 6, 39, -35.7, -5.65, 0.19097, 38, 25, 0.67, 0.65765, 37, -134.49, 94.76, 0.06461, 35, -274.55, 130.17, 8e-05, 33, -386.68, 109.75, 1e-05, 6, - 297.67, -25.39, 0.08669, 6, 39, -61.6, -10.56, 0.06285, 38, -1.37, 0.51, 0.54355, 37, -148.35, 72.34, 0.16709, 35, -276.16, 103.86, 0.01021, 33, -373.47, 86.93, 0.0001, 6, 271.83, - -20.19, 0.2162, 8, 39, -14.69, -168.7, 0.01908, 38, 16.26, -163.49, 0.14978, 37, -0.01, 0.2, 0.61527, 36, -210.15, 73.74, 0.00099, 35, -111.35, 110.43, 0.17947, 34, -314.5, 234.18, - 0.0001, 33, -239.78, 183.55, 0.01103, 6, 255.74, -184.35, 0.02428, 9, 39, -93.39, -303.94, 0.00273, 38, -85.55, -282.32, 0.00794, 37, 46.63, -149.17, 0.17295, 36, -80.49, -13.87, - 0.09069, 35, 0.38, 0.87, 0.53348, 34, -167.19, 181.41, 0.0007, 33, -86.11, 154.06, 0.17599, 31, -209.57, 198.7, 0.00964, 6, 131.89, -280, 0.00589, 9, 39, -82.85, -345.74, 0, 38, - -82.71, -325.34, 1e-05, 37, 84.59, -169.61, 0.06606, 36, -38.08, -6.16, 0.29214, 35, 43.49, 0.81, 0.56923, 34, -128.01, 199.39, 0.0007, 33, -50.16, 177.84, 0.06931, 31, -183.28, - 232.86, 1e-05, 6, 125.92, -322.69, 0.00255, 6, 37, 121.41, -190.59, 0.01568, 36, 3.79, 0.43, 0.48433, 35, 85.86, -0.26, 0.46641, 34, -89.07, 216.13, 0.00168, 33, -14.26, 200.38, - 0.03097, 6, 119.04, -364.51, 0.00093, 8, 37, -48.48, -297.32, 0.01045, 36, -62.36, -188.99, 0.00705, 35, -13.37, -174.64, 0.16439, 34, -106.26, 16.24, 0.06722, 33, -0.51, 0.22, - 0.56882, 32, -175.52, 39.8, 2e-05, 31, -78.69, 80.95, 0.17693, 6, -40.08, -242.3, 0.00513, 8, 37, -22.4, -348.24, 7e-05, 36, -10.21, -212.51, 0.00369, 35, 33.69, -207.18, 0.06109, - 34, -49.9, 6.36, 0.24734, 33, 56.69, -0.88, 0.62279, 32, -126.89, 69.94, 3e-05, 31, -24.22, 98.47, 0.06334, 6, -78.77, -284.45, 0.00166, 8, 37, 3.17, -392.3, 1e-05, 36, 37.26, - -230.98, 0.00138, 35, 77.05, -233.91, 0.01218, 34, 0.66, 0.22, 0.44222, 33, 107.6, 0.83, 0.53012, 32, -85.06, 99.01, 6e-05, 31, 23.38, 116.6, 0.01341, 6, -111.19, -323.74, 0.00061, - 8, 37, 30.97, -432.79, 0, 36, 84.25, -245.27, 7e-05, 35, 120.69, -256.45, 9e-05, 34, 49.73, -1.99, 0.55124, 33, 156.43, 6.19, 0.44783, 32, -46.97, 130.02, 8e-05, 31, 67.83, 137.51, - 0.00067, 6, -139.5, -363.88, 2e-05, 8, 37, -114.65, -388.2, 0, 36, -57.36, -301.29, 0.00078, 35, -28.7, -286.01, 0.00711, 34, -73.6, -91.33, 9e-05, 33, 48.3, -101.05, 0.14504, 32, - -79.55, -18.74, 0.05299, 31, 0.34, 0.99, 0.53264, 6, -148.29, -211.84, 0.26136, 8, 37, -109.61, -432.07, 0, 36, -26.05, -332.42, 0, 35, -3.51, -322.28, 3e-05, 34, -35.55, -113.74, - 0.00028, 33, 89.34, -117.34, 0.06436, 32, -36.24, -10.14, 0.21729, 31, 44.44, -1.11, 0.59073, 6, -187.67, -231.82, 0.1273, 5, 34, -4.12, -131.88, 0.00399, 33, 123.19, -130.43, - 0.01612, 32, -0.71, -2.76, 0.48554, 31, 80.71, -2.51, 0.49203, 6, -219.89, -248.52, 0.00232, 9, 39, -52.08, -243.65, 0.01004, 38, -34.03, -230.48, 0.05642, 37, 30.05, -77.99, - 0.42744, 36, -137.87, 31.4, 0.02401, 35, -47.89, 55.75, 0.4066, 34, -233.99, 211.07, 0.00035, 33, -156.68, 173.09, 0.06683, 31, -282.49, 193.81, 1e-05, 6, 192.87, -239.71, 0.00829, - 6, 39, -20.79, -85.7, 0.03059, 38, 25.23, -80.76, 0.38793, 37, -65.36, 51.72, 0.42223, 35, -193.29, 124.93, 0.06658, 33, -316.08, 150.32, 0.00032, 6, 281.34, -105.17, 0.09236, 6, 39, - -99.28, 42.3, 0.00186, 38, -28.89, 59.3, 0.04861, 37, -212.78, 80.22, 0.00709, 35, -336.67, 80.34, 1e-05, 33, -410.88, 33.88, 0, 6, 256.83, 42.97, 0.94243, 9, 39, -180.99, -339.34, - 0, 38, -178.09, -301.35, 1e-05, 37, 13.62, -237.69, 0.0659, 36, -51.05, -103.65, 0.02943, 35, 13.15, -92.74, 0.39941, 34, -116.43, 101.72, 0.01499, 33, -23.7, 83.12, 0.42263, 31, - -127.52, 151.84, 0.06301, 6, 37.41, -279.8, 0.00462, 8, 37, -79.94, -353.09, 7e-05, 36, -52.14, -252.2, 0.00366, 35, -14.72, -238.66, 0.06106, 34, -80.7, -42.47, 0.01448, 33, 33.77, - -53.87, 0.42982, 32, -117.37, 12.99, 0.01246, 31, -28.72, 40.91, 0.46119, 6, -103.3, -232.19, 0.01727, 1, 6, -203.31, -218.06, 1, 1, 6, -169.47, -202.13, 1, 1, 6, -153.7, -182.96, 1, - 8, 37, -170.31, -355.07, 1e-05, 36, -121.53, -310.14, 0.00081, 35, -93.41, -283.14, 0.01347, 34, -133.58, -115.79, 0.00319, 33, -7.2, -134.45, 0.0948, 32, -108.03, -76.92, 0.00275, - 31, -41.33, -48.61, 0.10172, 6, -136.57, -148.13, 0.78324 - ], - "hull": 39, - "edges": [ - 0, 2, 2, 4, 4, 6, 6, 8, 8, 10, 14, 16, 16, 18, 18, 20, 20, 22, 22, 24, 24, 26, 34, 36, 36, 38, 38, 40, 40, 42, 42, 44, 44, 46, 46, 48, 48, 50, 50, 52, 52, 54, 54, 56, 56, 58, 58, 60, - 60, 62, 62, 64, 64, 66, 66, 68, 68, 70, 70, 72, 72, 74, 74, 76, 0, 76, 8, 78, 78, 80, 80, 82, 82, 84, 84, 86, 86, 88, 88, 90, 90, 92, 92, 94, 94, 96, 96, 98, 98, 100, 100, 102, 102, - 104, 104, 106, 106, 108, 108, 110, 110, 112, 112, 114, 114, 116, 116, 118, 118, 120, 120, 122, 122, 124, 124, 126, 126, 128, 128, 130, 130, 132, 132, 134, 134, 136, 136, 138, 138, - 140, 140, 142, 142, 144, 144, 146, 146, 148, 148, 150, 150, 152, 152, 154, 154, 156, 156, 158, 158, 160, 26, 28, 28, 30, 160, 28, 84, 162, 162, 164, 164, 166, 108, 168, 170, 172, - 172, 174, 174, 122, 176, 178, 178, 180, 180, 182, 184, 186, 186, 188, 188, 156, 170, 190, 190, 168, 168, 192, 192, 166, 166, 194, 10, 12, 194, 12, 170, 196, 196, 176, 176, 198, 198, - 184, 12, 14, 30, 32, 32, 34, 160, 32, 160, 200, 200, 202, 24, 204, 204, 184, 202, 204, 204, 206, 206, 22 - ], - "width": 699, - "height": 527, - "path": "body-mystic-fuzzy.body-mfuzzy" - } - }, - "leg-back-left": { - "mystic-leg-back-left": {"x": 32.56, "y": -0.8, "rotation": 83.45, "width": 80, "height": 93, "path": "body-normal.mystic-leg-back-left"}, - "mystic-leg-back-left-long": {"x": 34.89, "y": -5.5, "rotation": 221.45, "width": 85, "height": 82, "path": "body-normal.mystic-leg-back-left-long"}, - "mystic-leg-back-left-stretch": {"x": 27.29, "y": 1.58, "rotation": 54.45, "width": 67, "height": 70, "path": "body-normal.mystic-leg-back-left-stretch"} - }, - "leg-front-left": { - "mystic-leg-front-left": {"x": 21.98, "y": 1.18, "rotation": 97.51, "width": 70, "height": 63, "path": "body-normal.mystic-leg-front-left"}, - "mystic-leg-front-left-long": {"x": 27.48, "y": -6.04, "rotation": -173.75, "width": 89, "height": 77, "path": "body-normal.mystic-leg-front-left-long"}, - "mystic-leg-front-left-stretch": {"x": 19.24, "y": -3.96, "rotation": 142.15, "width": 70, "height": 77, "path": "body-normal.mystic-leg-front-left-stretch"} - }, - "leg-front-right": { - "mystic-leg-front-right": {"x": 31.35, "y": -1.66, "rotation": 87.96, "width": 80, "height": 94, "path": "body-normal.mystic-leg-front-right"}, - "mystic-leg-front-right-long": {"x": 36.56, "y": -0.65, "rotation": 205.96, "width": 89, "height": 77, "path": "body-normal.mystic-leg-front-right-long"}, - "mystic-leg-front-right-stretch": {"x": 30.65, "y": 1.81, "rotation": 142.01, "width": 81, "height": 69, "path": "body-normal.mystic-leg-front-right-stretch"} - }, - "shadow": {"shadow": {"width": 946, "height": 191, "path": "body-mystic-fuzzy.shadow"}}, - "body-air": { - "body-air1a_00": {"x": 1.37, "y": 35.21, "width": 209.375, "height": 129.6875, "path": "body-accessory.body-air1a_00"}, - "body-air1a_01": {"x": 1.37, "y": 35.21, "width": 209.375, "height": 129.6875, "path": "body-accessory.body-air1a_01"}, - "body-air1a_02": {"x": 1.37, "y": 35.21, "width": 209.375, "height": 129.6875, "path": "body-accessory.body-air1a_02"}, - "body-air1a_03": {"x": 1.37, "y": 35.21, "width": 209.375, "height": 129.6875, "path": "body-accessory.body-air1a_03"}, - "body-air1a_04": {"x": 1.37, "y": 35.21, "width": 209.375, "height": 129.6875, "path": "body-accessory.body-air1a_04"}, - "body-air1a_05": {"x": 1.37, "y": 35.21, "width": 209.375, "height": 129.6875, "path": "body-accessory.body-air1a_05"}, - "body-air1a_06": {"x": 1.37, "y": 35.21, "width": 209.375, "height": 129.6875, "path": "body-accessory.body-air1a_06"}, - "body-air1a_07": {"x": 1.37, "y": 35.21, "width": 209.375, "height": 129.6875, "path": "body-accessory.body-air1a_07"}, - "body-air1b_00": {"x": 1.37, "y": 35.21, "width": 156.25, "height": 192.1875, "path": "body-accessory.body-air1b_00"}, - "body-air1b_01": {"x": 1.37, "y": 35.21, "width": 156.25, "height": 192.1875, "path": "body-accessory.body-air1b_01"}, - "body-air1b_02": {"x": 1.37, "y": 35.21, "width": 156.25, "height": 192.1875, "path": "body-accessory.body-air1b_02"}, - "body-air1c_00": {"x": 1.37, "y": 35.21, "width": 200.0, "height": 289.0625, "path": "body-accessory.body-air1c_00"}, - "body-air1c_01": {"x": 1.37, "y": 35.21, "width": 200.0, "height": 289.0625, "path": "body-accessory.body-air1c_01"}, - "body-air1c_02": {"x": 1.37, "y": 35.21, "width": 200.0, "height": 289.0625, "path": "body-accessory.body-air1c_02"}, - "body-air1c_03": {"x": 1.37, "y": 35.21, "width": 200.0, "height": 289.0625, "path": "body-accessory.body-air1c_03"}, - "body-air1d_00": {"x": 1.37, "y": 35.21, "width": 204.6875, "height": 273.4375, "path": "body-accessory.body-air1d_00"}, - "body-air1d_01": {"x": 1.37, "y": 35.21, "width": 204.6875, "height": 273.4375, "path": "body-accessory.body-air1d_01"}, - "body-air1d_02": {"x": 1.37, "y": 35.21, "width": 204.6875, "height": 273.4375, "path": "body-accessory.body-air1d_02"}, - "body-air1d_03": {"x": 1.37, "y": 35.21, "width": 204.6875, "height": 273.4375, "path": "body-accessory.body-air1d_03"} - }, - "body-cheek": { - "body-cheek1a": {"x": 1.52, "y": 3.04, "width": 60.9375, "height": 57.8125, "path": "body-accessory.body-cheek1a"}, - "body-cheek1b": {"x": 1.52, "y": 3.04, "width": 50.0, "height": 76.5625, "path": "body-accessory.body-cheek1b"}, - "body-cheek1c": {"x": 1.52, "y": 3.04, "width": 50.0, "height": 76.5625, "path": "body-accessory.body-cheek1c"}, - "body-cheek1d": {"x": 1.52, "y": 3.04, "width": 50.0, "height": 76.5625, "path": "body-accessory.body-cheek1d"}, - "body-cheek1e": {"x": 1.52, "y": 3.04, "width": 54.6875, "height": 79.6875, "path": "body-accessory.body-cheek1e"}, - "body-cheek1f": {"x": 1.52, "y": 3.04, "width": 56.25, "height": 57.8125, "path": "body-accessory.body-cheek1f"}, - "body-cheek1g": {"x": 1.52, "y": 3.04, "width": 104.6875, "height": 96.875, "path": "body-accessory.body-cheek1g"} - }, - "body-ground": { - "body-ground1a_00": {"x": 4.75, "y": 123.01, "width": 254.6875, "height": 275.0, "path": "body-accessory.body-ground1a_00"}, - "body-ground1a_01": {"x": 4.75, "y": 123.01, "width": 254.6875, "height": 275.0, "path": "body-accessory.body-ground1a_01"}, - "body-ground1a_02": {"x": 4.75, "y": 123.01, "width": 254.6875, "height": 275.0, "path": "body-accessory.body-ground1a_02"}, - "body-ground1a_03": {"x": 4.75, "y": 123.01, "width": 254.6875, "height": 275.0, "path": "body-accessory.body-ground1a_03"} + "back": {"back": {"x": 55.32411764705881, "y": 16.940588235294115, "rotation": -64, "width": 369.4117647058824, "height": 287.05882352941177, "path": "agamo-00.back"}}, + "ear-left": {"ear-left": {"x": 32.83, "y": -44.64, "rotation": -52, "width": 138, "height": 130, "path": "agamo-00.ear-left"}}, + "ear-right": {"ear-right": {"x": 71.01, "y": -1.05, "rotation": -93, "width": 122, "height": 173, "path": "agamo-00.ear-right"}}, + "eyes": { + "eyes": {"x": 33.89, "y": 15.89, "width": 321, "height": 115, "path": "agamo-00.eyes"}, + "eyes-angry": {"x": 33.89, "y": 19.89, "width": 321, "height": 123, "path": "agamo-00.eyes-angry"}, + "eyes-happy": {"x": 23.89, "y": 22.39, "width": 263, "height": 112, "path": "agamo-00.eyes-happy"}, + "eyes-shut": {"x": 22.89, "y": 17.39, "width": 257, "height": 108, "path": "agamo-00.eyes-shut"} }, - "body-hip": { - "body-hip1a": {"x": -16, "width": 109.375, "height": 140.625, "path": "body-accessory.body-hip1a"}, - "body-hip1b": {"x": -16, "width": 210.9375, "height": 214.0625, "path": "body-accessory.body-hip1b"}, - "body-hip1c": {"x": -16, "width": 123.4375, "height": 157.8125, "path": "body-accessory.body-hip1c"}, - "body-hip1d": {"x": -16, "width": 203.125, "height": 143.75, "path": "body-accessory.body-hip1d"} + "horn": {"horn": {"x": 56.40647058823529, "y": -19.6, "rotation": -90, "width": 197.64705882352942, "height": 160.0, "path": "agamo-00.horn"}}, + "mouth": { + "mouth": {"x": 19.39, "y": 40.39, "width": 188, "height": 62, "path": "agamo-00.mouth"}, + "mouth-bite": {"x": 21.89, "y": 29.39, "width": 191, "height": 72, "path": "agamo-00.mouth-bite"}, + "mouth-open": {"x": 20.39, "y": 15.39, "width": 186, "height": 140, "path": "agamo-00.mouth-open"}, + "mouth-smile": {"x": 19.39, "y": 43.39, "width": 204, "height": 68, "path": "agamo-00.mouth-smile"} }, - "body-neck": { - "body-neck1a": {"x": -5.4, "y": -54.79, "width": 92.1875, "height": 96.875, "path": "body-accessory.body-neck1a"}, - "body-neck1b": {"x": -5.4, "y": -54.79, "width": 103.125, "height": 117.1875, "path": "body-accessory.body-neck1b"}, - "body-neck1c": {"x": -5.4, "y": -54.79, "width": 79.6875, "height": 110.9375, "path": "body-accessory.body-neck1c"}, - "body-neck1d": {"x": -5.4, "y": -54.79, "width": 121.875, "height": 101.5625, "path": "body-accessory.body-neck1d"}, - "body-neck1e": {"x": -5.4, "y": -54.79, "width": 89.0625, "height": 107.8125, "path": "body-accessory.body-neck1e"}, - "body-neck1f": {"x": -5.4, "y": -54.79, "width": 79.6875, "height": 79.6875, "path": "body-accessory.body-neck1f"} - } + "tail": {"tail": {"x": 48.98, "y": -31.78, "rotation": -20, "width": 337, "height": 207, "path": "agamo-00.tail"}} } } ], "events": {"hit": {}, "hit-buff": {}, "jump": {}, "start-attack": {}}, "keyAnimations": { - "activity/appear": "1639814451", - "activity/bath": "886720603", - "attack/ranged/cast-fly": "3043664647", - "attack/ranged/cast-high": "117147712", - "attack/ranged/cast-low": "66525173", - "attack/ranged/cast-multi": "229216978", - "attack/ranged/cast-tail": "3667073362", - "activity/eat-bite": "3200295228", - "activity/eat-chew": "447085734", - "activity/entrance": "629069415", - "defense/evade": "2561112030", - "activity/evolve": "3241199930", - "battle/get-buff": "922484181", - "battle/get-debuff": "2134002589", - "defense/hit-by-normal": "3772948066", - "defense/hit-by-normal-crit": "3973892445", - "defense/hit-by-normal-dramatic": "3475359579", - "defense/hit-by-ranged-attack": "710052842", - "defense/hit-with-shield": "1910291818", - "attack/melee/horn-gore": "431191473", - "attack/melee/mouth-bite": "2133555169", - "action/move-back": "1829044875", - "action/move-forward": "2128743770", - "attack/melee/multi-attack": "2770379418", - "action/mix/mystic-light-battle": "3979179032", - "action/mix/mystic-light-normal": "1566344788", - "action/idle/normal": "520076436", - "attack/melee/normal-attack": "1326541922", - "activity/prepare": "3156742502", - "action/idle/random-01": "2112863967", - "action/idle/random-02": "2668998474", - "action/idle/random-03": "863131580", - "action/idle/random-04": "3268849333", - "action/idle/random-05": "423222795", - "action/run": "574696387", - "draft/run-origin": "2432345616", - "attack/melee/shrimp": "4155075159", - "activity/sleep": "2980573062", - "attack/melee/tail-multi-slap": "4076098330", - "attack/melee/tail-roll": "1934032146", - "attack/melee/tail-smash": "1747338625", - "attack/melee/tail-thrash": "882476411", - "activity/victory-pose-back-flip": "2870186096" + "activity/appear": "1023093953", + "activity/bath": "3305387968", + "attack/ranged/cast-fly": "4180526371", + "attack/ranged/cast-high": "164191126", + "attack/ranged/cast-low": "198813017", + "attack/ranged/cast-multi": "151119", + "attack/ranged/cast-tail": "997902532", + "activity/eat-bite": "1137807767", + "activity/eat-chew": "1988236421", + "activity/entrance": "3768378365", + "defense/evade": "1735454995", + "activity/evolve": "649307630", + "battle/get-buff": "1455190363", + "battle/get-debuff": "606904312", + "defense/hit-by-normal": "2045974966", + "defense/hit-by-normal-crit": "2130010601", + "defense/hit-by-normal-dramatic": "3823092125", + "defense/hit-by-ranged-attack": "2224561612", + "defense/hit-with-shield": "390714790", + "attack/melee/horn-gore": "1327954218", + "attack/melee/mouth-bite": "2237748264", + "action/move-back": "3766271173", + "action/move-forward": "2945160014", + "attack/melee/multi-attack": "905926802", + "action/idle/normal": "1659336865", + "attack/melee/normal-attack": "3305373483", + "activity/prepare": "405864717", + "action/idle/random-01": "554401889", + "action/idle/random-02": "1085666627", + "action/idle/random-03": "2021333900", + "action/idle/random-04": "1003789695", + "action/idle/random-05": "2745614147", + "action/run": "1438840721", + "draft/run-origin": "3577885069", + "attack/melee/shrimp": "3833448733", + "activity/sleep": "100562494", + "attack/melee/tail-multi-slap": "3317139533", + "attack/melee/tail-roll": "3108617565", + "attack/melee/tail-smash": "519942130", + "attack/melee/tail-thrash": "628713175", + "activity/victory-pose-back-flip": "2227634241" } }, - "summer-as": { + "reptile-08": { "bones": [ {"name": "@root"}, {"name": "@pivot-main", "parent": "@root"}, {"name": "@pivot-back", "parent": "@pivot-main", "x": 205, "y": 180, "color": "ff0101ff"}, {"name": "@pivot-center", "parent": "@pivot-back", "x": -215.11, "y": -5.25, "color": "ff0101ff"}, {"name": "@axie", "parent": "@pivot-center", "length": 213.28, "rotation": 179.04, "x": 196.39, "y": 5.16}, {"name": "@back", "parent": "@axie", "rotation": -179.04, "x": 37.63, "y": -198.19}, - {"name": "back", "parent": "@back", "length": 149.41, "rotation": 58, "x": -13.97, "y": 26.3, "transform": "noScale"}, + {"name": "back", "parent": "@back", "length": 149.41, "rotation": 64, "x": -51.97, "y": -9.7, "transform": "noScale"}, {"name": "@body", "parent": "@axie", "length": 226.28, "rotation": -8.35, "x": 224.58, "y": -0.53}, {"name": "@ear-left", "parent": "@axie", "rotation": -179.04, "x": 112.7, "y": -203.23}, - {"name": "ear-left", "parent": "@ear-left", "length": 113.61, "rotation": 90, "x": -27, "y": 19, "transform": "noScale"}, + {"name": "ear-left", "parent": "@ear-left", "length": 113.61, "rotation": 52, "x": -17, "y": -84, "transform": "noScale"}, {"name": "@ear-right", "parent": "@axie", "rotation": -179.04, "x": 405.28, "y": -235.33}, - {"name": "ear-right", "parent": "@ear-right", "length": 119.39, "rotation": 93, "x": -30, "y": -15, "transform": "noScale"}, + {"name": "ear-right", "parent": "@ear-right", "length": 119.39, "rotation": 93, "x": -91, "y": -122, "transform": "noScale"}, {"name": "@eyes", "parent": "@axie", "rotation": -179.04, "x": 384.24, "y": -113.67}, {"name": "@horn", "parent": "@axie", "rotation": -179.04, "x": 327.92, "y": -214.63}, {"name": "horn", "parent": "@horn", "length": 176.72, "rotation": 90, "y": 18, "transform": "noScale"}, {"name": "@leg-back-left", "parent": "@axie", "length": 76.4, "rotation": 100.96, "x": -15.3, "y": 102.56, "transform": "noScale"}, {"name": "@leg-front-left", "parent": "@axie", "length": 51.19, "rotation": 93.86, "x": 134.77, "y": 149.55, "transform": "noScale"}, {"name": "@leg-front-right", "parent": "@axie", "length": 74.83, "rotation": 83.2, "x": 382.95, "y": 121.78, "transform": "noScale"}, - {"name": "@mouth", "parent": "@axie", "rotation": -179.04, "x": 382.23, "y": 6.31, "color": "abe323ff"}, + {"name": "@mouth", "parent": "@axie", "rotation": -179.04, "x": 382.23, "y": 6.31}, {"name": "body-pattern", "parent": "@body", "rotation": -170.69, "x": -267.21, "y": -49.4, "transform": "noScale"}, {"name": "@shadow", "parent": "@root", "color": "e6d713ff"}, - {"name": "@tail", "parent": "@axie", "rotation": -179.04, "x": -11.76, "y": 61.72}, - {"name": "tail", "parent": "@tail", "length": 203.67, "rotation": -12, "x": 16, "y": 72.87, "transform": "noScale"}, + {"name": "@tail", "parent": "@axie", "rotation": -179.04, "x": -11.76, "y": 61.72}, {"name": "tail", "parent": "@tail", "length": 203.67, "x": -1, "y": 8, "transform": "noScale"}, {"name": "leg-front-right-IK", "parent": "@pivot-main", "x": -195.99, "y": -10.21, "color": "ff3f00ff"}, {"name": "leg-front-left-IK", "parent": "@pivot-main", "x": 42.3, "y": -18.42, "color": "ff3f00ff"}, {"name": "leg-back-left-IK", "parent": "@pivot-main", "x": 208.57, "y": 1.35, "color": "ff3f00ff"}, {"name": "@ball", "parent": "@root", "y": 191, "color": "f3981bff"}, - {"name": "ball", "parent": "@ball", "y": -191, "color": "f4a729ff"}, {"name": "mouth-bubble", "parent": "@mouth", "x": -191.16, "y": -1.83}, - {"name": "mouth-accessory", "parent": "mouth-bubble", "x": -67.84, "y": 101.83}, {"name": "eyes-happy-accessory", "parent": "@eyes", "x": 142.51, "y": 62.21}, - {"name": "ear-right-bubble", "parent": "ear-right", "length": 40.07, "rotation": -179.99, "x": 184.94, "y": -20.48}, - {"name": "ear-left-bubble", "parent": "ear-left", "length": 48.54, "rotation": 176.27, "x": 190.98, "y": -21.07, "scaleX": 0.949}, - {"name": "ear-left-all-bubble", "parent": "ear-left", "length": 26.1, "rotation": 0.95, "x": -6.64, "y": -27.7, "color": "3002ffff"}, - {"name": "ear-right-dot-01", "parent": "ear-left-all-bubble", "rotation": -90.95, "x": -13.64, "y": 22.67, "scaleX": 0.3508, "scaleY": 0.3508, "color": "2f9bffff"}, - {"name": "ear-left-dot-01", "parent": "ear-left-all-bubble", "rotation": -90.95, "x": -28.82, "y": -24.72, "scaleX": 0.7755, "scaleY": 0.7755, "color": "2f9bffff"}, - {"name": "ear-right-bubble-02", "parent": "ear-right-bubble", "rotation": 86.99, "x": 63.76, "y": -22.96}, - {"name": "ear-right-bubble-03", "parent": "ear-right-bubble", "rotation": 86.99, "x": 64.99, "y": -1.59}, - {"name": "ear-right-bubble-04", "parent": "ear-right-bubble", "rotation": 86.99, "x": 66.12, "y": 19.85}, - {"name": "ear-left-bubble-02", "parent": "ear-left-bubble", "rotation": 93.73, "x": 68.81, "y": -22.89}, - {"name": "ear-left-bubble-03", "parent": "ear-left-bubble", "rotation": 93.73, "x": 70.45, "y": -0.4}, - {"name": "ear-left-bubble-04", "parent": "ear-left-bubble", "rotation": 93.73, "x": 65.87, "y": 22.28}, - {"name": "ear-right-bubble-05", "parent": "ear-right", "length": 40.07, "rotation": -179.99, "x": 184.94, "y": -20.48}, - {"name": "ear-right-bubble-06", "parent": "ear-right-bubble-05", "rotation": 86.99, "x": 63.76, "y": -22.96}, - {"name": "ear-right-bubble-07", "parent": "ear-right-bubble-05", "rotation": 86.99, "x": 64.99, "y": -1.59}, - {"name": "ear-right-bubble-08", "parent": "ear-right-bubble-05", "rotation": 86.99, "x": 66.12, "y": 19.85}, - {"name": "ear-left-bubble-05", "parent": "ear-left", "length": 48.54, "rotation": 176.27, "x": 190.98, "y": -21.07, "scaleX": 0.991}, - {"name": "ear-left-bubble-06", "parent": "ear-left-bubble-05", "rotation": 93.73, "x": 67.27, "y": -22.98}, - {"name": "ear-left-bubble-07", "parent": "ear-left-bubble-05", "rotation": 93.73, "x": 65.82, "y": -0.69}, - {"name": "ear-left-bubble-08", "parent": "ear-left-bubble-05", "rotation": 93.73, "x": 64.32, "y": 22.18}, - {"name": "ear-right-dot-02", "parent": "ear-left-all-bubble", "rotation": -95.73, "x": -18.26, "y": -8.1, "scaleX": 0.5668, "scaleY": 0.6813, "color": "2f9bffff"}, - {"name": "ear-left-dot-02", "parent": "ear-left-all-bubble", "rotation": -88.74, "x": 8.57, "y": 59.72, "scaleX": 0.6577, "scaleY": 0.5996, "color": "2f9bffff"}, - {"name": "ear-right-dot-03", "parent": "ear-left-all-bubble", "rotation": -87.96, "x": -25.76, "y": -45.18, "scaleX": 0.2583, "scaleY": 0.2881, "color": "2f9bffff"}, - {"name": "ear-right-dot-04", "parent": "ear-left-all-bubble", "rotation": -88.51, "x": -27.05, "y": -31.17, "scaleX": 0.4361, "scaleY": 0.6365, "color": "2f9bffff"}, - {"name": "ear-right-dot-05", "parent": "ear-left-all-bubble", "rotation": -79.32, "x": -5.28, "y": 34.53, "scaleX": 0.5911, "scaleY": 0.8949, "color": "2f9bffff"}, - {"name": "ear-left-dot-03", "parent": "ear-left-all-bubble", "rotation": -90.95, "x": -10.57, "y": 11.72, "scaleX": 0.8206, "scaleY": 0.8206, "color": "2f9bffff"}, - {"name": "ear-left-dot-04", "parent": "ear-left-all-bubble", "rotation": -90.95, "x": 11.94, "y": 65.23, "scaleX": 0.7096, "scaleY": 0.7096, "color": "2f9bffff"}, - {"name": "ear-left-dot-05", "parent": "ear-left-all-bubble", "rotation": -88.35, "x": 10.11, "y": 68.29, "scaleX": 0.4014, "scaleY": 0.366, "color": "2f9bffff"}, - {"name": "ear-left-dot-06", "parent": "ear-left-all-bubble", "rotation": -90.95, "x": 34.65, "y": 74.95, "scaleX": 0.8206, "scaleY": 0.8206, "color": "2f9bffff"}, - {"name": "ear-right-dot-06", "parent": "ear-left-all-bubble", "rotation": -90.95, "x": -11.77, "y": 50.86, "scaleX": 0.4361, "scaleY": 0.4361, "color": "2f9bffff"}, - {"name": "ear-right-dot-07", "parent": "ear-left-all-bubble", "rotation": -96.07, "x": -32.28, "y": -4.86, "scaleX": 0.5668, "scaleY": 0.6813, "color": "2f9bffff"}, - {"name": "ear-right-dot-08", "parent": "ear-left-all-bubble", "rotation": -90.23, "x": -18.31, "y": -61.25, "scaleX": 0.7405, "scaleY": 0.826, "color": "2f9bffff"}, - {"name": "ear-right-dot-09", "parent": "ear-left-all-bubble", "rotation": -93.53, "x": -9.54, "y": 52.15, "scaleX": 0.2863, "scaleY": 0.3229, "color": "2f9bffff"}, - {"name": "ear-right-dot-10", "parent": "ear-left-all-bubble", "rotation": -81.97, "x": -31.43, "y": 21.83, "scaleX": 0.5911, "scaleY": 0.8949, "color": "2f9bffff"}, - {"name": "ear-right-all-bubble", "parent": "ear-right", "length": 26.1, "rotation": 3.44, "x": -10.08, "y": -8.05, "color": "3002ffff"}, - {"name": "ear-right-dot-11", "parent": "ear-right-all-bubble", "rotation": -96.44, "x": 10.27, "y": -24.86, "scaleX": 0.3508, "scaleY": 0.3508, "color": "2f9bffff"}, - {"name": "ear-left-dot-07", "parent": "ear-right-all-bubble", "rotation": -96.44, "x": 27.18, "y": -39.33, "scaleX": 0.7755, "scaleY": 0.7755, "color": "2f9bffff"}, - {"name": "ear-right-dot-12", "parent": "ear-right-all-bubble", "rotation": -101.56, "x": -18.26, "y": -8.1, "scaleX": 0.5668, "scaleY": 0.6813, "color": "2f9bffff"}, - {"name": "ear-left-dot-08", "parent": "ear-right-all-bubble", "rotation": -93.99, "x": -7.49, "y": -14.12, "scaleX": 0.6577, "scaleY": 0.5996, "color": "2f9bffff"}, - {"name": "ear-right-dot-13", "parent": "ear-right-all-bubble", "rotation": -93.67, "x": 43.59, "y": -57.74, "scaleX": 0.2583, "scaleY": 0.2881, "color": "2f9bffff"}, - {"name": "ear-right-dot-14", "parent": "ear-right-all-bubble", "rotation": -96.49, "x": 8.09, "y": -20.73, "scaleX": 0.4361, "scaleY": 0.6365, "color": "2f9bffff"}, - {"name": "ear-right-dot-15", "parent": "ear-right-all-bubble", "rotation": -84.65, "x": -5.28, "y": 34.53, "scaleX": 0.5911, "scaleY": 0.8949, "color": "2f9bffff"}, - {"name": "ear-left-dot-09", "parent": "ear-right-all-bubble", "rotation": -96.44, "x": -10.57, "y": 11.72, "scaleX": 0.8206, "scaleY": 0.8206, "color": "2f9bffff"}, - {"name": "ear-left-dot-10", "parent": "ear-right-all-bubble", "rotation": -96.44, "x": -13.81, "y": 2.57, "scaleX": 0.7096, "scaleY": 0.7096, "color": "2f9bffff"}, - {"name": "ear-left-dot-11", "parent": "ear-right-all-bubble", "rotation": -93.79, "x": -9.28, "y": 21.87, "scaleX": 0.4014, "scaleY": 0.366, "color": "2f9bffff"}, - {"name": "ear-left-dot-12", "parent": "ear-right-all-bubble", "rotation": -96.44, "x": -2.52, "y": 33.38, "scaleX": 0.8206, "scaleY": 0.8206, "color": "2f9bffff"}, - {"name": "ear-right-dot-16", "parent": "ear-right-all-bubble", "rotation": -96.44, "x": -4.07, "y": -34.4, "scaleX": 0.4361, "scaleY": 0.4361, "color": "2f9bffff"}, - {"name": "ear-right-dot-17", "parent": "ear-right-all-bubble", "rotation": -101.7, "x": 4.16, "y": -7.75, "scaleX": 0.5668, "scaleY": 0.6813, "color": "2f9bffff"}, - {"name": "ear-right-dot-18", "parent": "ear-right-all-bubble", "rotation": -96.34, "x": 27.4, "y": -55.17, "scaleX": 0.7405, "scaleY": 0.826, "color": "2f9bffff"}, - {"name": "ear-right-dot-19", "parent": "ear-right-all-bubble", "rotation": -99.41, "x": -9.54, "y": 52.15, "scaleX": 0.2863, "scaleY": 0.3229, "color": "2f9bffff"}, - {"name": "ear-right-dot-20", "parent": "ear-right-all-bubble", "rotation": -86.28, "x": 12.43, "y": -37.05, "scaleX": 0.5911, "scaleY": 0.8949, "color": "2f9bffff"}, - {"name": "mouth-bubble-core", "parent": "mouth-accessory"}, {"name": "eyes-light-left", "parent": "@eyes", "length": 15.08, "rotation": -135.48, "x": 69.15, "y": -15.18}, - {"name": "eyes-light-right", "parent": "@eyes", "length": 15.08, "rotation": -135.48, "x": -97.9, "y": -16.49}, {"name": "eyes-light-dot", "parent": "@eyes", "x": -66.73, "y": 27.82}, - {"name": "eyes-light-dot-02", "parent": "@eyes", "x": 103.19, "y": 27.82} + {"name": "ball", "parent": "@ball", "y": -191, "color": "f4a729ff"} ], "slots": [ - {"name": "shadow", "bone": "@shadow", "attachment": "shadow"}, {"name": "ball", "bone": "ball"}, - {"name": "leg-front-right", "bone": "@leg-front-right", "attachment": "summer-leg-front-right"}, {"name": "tail", "bone": "tail", "attachment": "tail"}, - {"name": "back", "bone": "back", "attachment": "back"}, {"name": "leg-back-left", "bone": "@leg-back-left", "attachment": "summer-leg-back-left"}, - {"name": "body", "bone": "@body", "attachment": "body"}, {"name": "body-pattern", "bone": "body-pattern"}, {"name": "ear-right-under", "bone": "ear-right", "attachment": "ear-right-under"}, - {"name": "ear-left-dot-07", "bone": "ear-left-dot-07", "color": "ffffff00", "attachment": "ear-left-dot"}, - {"name": "ear-left-dot-10", "bone": "ear-left-dot-10", "color": "ffffff00", "attachment": "ear-left-dot"}, - {"name": "ear-left-dot-09", "bone": "ear-left-dot-09", "color": "ffffff00", "attachment": "ear-left-dot"}, - {"name": "ear-left-dot-12", "bone": "ear-left-dot-12", "color": "ffffff00", "attachment": "ear-left-dot"}, - {"name": "ear-left-dot-08", "bone": "ear-left-dot-08", "color": "ffffff00", "attachment": "ear-left-dot"}, - {"name": "ear-left-dot-11", "bone": "ear-left-dot-11", "color": "ffffff00", "attachment": "ear-left-dot"}, - {"name": "ear-right-dot-11", "bone": "ear-right-dot-11", "color": "ffffff00", "attachment": "ear-right-dot"}, - {"name": "ear-right-dot-16", "bone": "ear-right-dot-16", "color": "ffffff00", "attachment": "ear-right-dot"}, - {"name": "ear-right-dot-12", "bone": "ear-right-dot-12", "color": "ffffff00", "attachment": "ear-right-dot"}, - {"name": "ear-right-dot-17", "bone": "ear-right-dot-17", "color": "ffffff00", "attachment": "ear-right-dot"}, - {"name": "ear-right-dot-13", "bone": "ear-right-dot-13", "color": "ffffff00", "attachment": "ear-right-dot"}, - {"name": "ear-right-dot-18", "bone": "ear-right-dot-18", "color": "ffffff00", "attachment": "ear-right-dot"}, - {"name": "ear-right-dot-14", "bone": "ear-right-dot-14", "color": "ffffff00", "attachment": "ear-right-dot"}, - {"name": "ear-right-dot-19", "bone": "ear-right-dot-19", "color": "ffffff00", "attachment": "ear-right-dot"}, - {"name": "ear-right-dot-15", "bone": "ear-right-dot-15", "color": "ffffff00", "attachment": "ear-right-dot"}, - {"name": "ear-right-dot-20", "bone": "ear-right-dot-20", "color": "ffffff00", "attachment": "ear-right-dot"}, - {"name": "ear-right-bubble", "bone": "ear-right-bubble", "color": "00f7c2ff", "attachment": "ear-right-bubble"}, - {"name": "ear-right-bubble-02", "bone": "ear-right-bubble-05", "attachment": "ear-right-bubble"}, {"name": "ear-right-upper", "bone": "ear-right", "attachment": "ear-right-upper"}, - {"name": "leg-front-left", "bone": "@leg-front-left", "attachment": "summer-leg-front-left"}, {"name": "eyes", "bone": "@eyes", "attachment": "eyes"}, - {"name": "eyes-light-dot", "bone": "eyes-light-dot", "attachment": "eye-light-dot"}, {"name": "eyes-light-dot-02", "bone": "eyes-light-dot-02", "attachment": "eye-light-dot"}, - {"name": "eyes-light-left", "bone": "eyes-light-left", "color": "fff96500", "attachment": "light", "blend": "additive"}, - {"name": "eyes-light-right", "bone": "eyes-light-right", "color": "fff96500", "attachment": "light", "blend": "additive"}, {"name": "eyes-upper", "bone": "@eyes", "attachment": "eyes-upper"}, - {"name": "mouth", "bone": "@mouth", "attachment": "mouth"}, {"name": "horn", "bone": "horn", "attachment": "horn"}, - {"name": "ear-left-under", "bone": "ear-left", "attachment": "ear-left-under"}, {"name": "ear-left-dot-01", "bone": "ear-left-dot-01", "color": "ffffff00", "attachment": "ear-left-dot"}, - {"name": "ear-left-dot-04", "bone": "ear-left-dot-04", "color": "ffffff00", "attachment": "ear-left-dot"}, - {"name": "ear-left-dot-03", "bone": "ear-left-dot-03", "color": "ffffff00", "attachment": "ear-left-dot"}, - {"name": "ear-left-dot-06", "bone": "ear-left-dot-06", "color": "ffffff00", "attachment": "ear-left-dot"}, - {"name": "ear-left-dot-02", "bone": "ear-left-dot-02", "color": "ffffff00", "attachment": "ear-left-dot"}, - {"name": "ear-left-dot-05", "bone": "ear-left-dot-05", "color": "ffffff00", "attachment": "ear-left-dot"}, - {"name": "ear-right-dot-01", "bone": "ear-right-dot-01", "color": "ffffff00", "attachment": "ear-right-dot"}, - {"name": "ear-right-dot-06", "bone": "ear-right-dot-06", "color": "ffffff00", "attachment": "ear-right-dot"}, - {"name": "ear-right-dot-02", "bone": "ear-right-dot-02", "color": "ffffff00", "attachment": "ear-right-dot"}, - {"name": "ear-right-dot-07", "bone": "ear-right-dot-07", "color": "ffffff00", "attachment": "ear-right-dot"}, - {"name": "ear-right-dot-03", "bone": "ear-right-dot-03", "color": "ffffff00", "attachment": "ear-right-dot"}, - {"name": "ear-right-dot-08", "bone": "ear-right-dot-08", "color": "ffffff00", "attachment": "ear-right-dot"}, - {"name": "ear-right-dot-04", "bone": "ear-right-dot-04", "color": "ffffff00", "attachment": "ear-right-dot"}, - {"name": "ear-right-dot-09", "bone": "ear-right-dot-09", "color": "ffffff00", "attachment": "ear-right-dot"}, - {"name": "ear-right-dot-05", "bone": "ear-right-dot-05", "color": "ffffff00", "attachment": "ear-right-dot"}, - {"name": "ear-right-dot-10", "bone": "ear-right-dot-10", "color": "ffffff00", "attachment": "ear-right-dot"}, - {"name": "ear-left-bubble", "bone": "ear-left-bubble", "color": "00f7c2ff", "attachment": "ear-left-bubble"}, - {"name": "ear-left-bubble-02", "bone": "ear-left-bubble-05", "attachment": "ear-left-bubble"}, {"name": "ear-left-upper", "bone": "ear-left", "attachment": "ear-left-upper"}, - {"name": "eyes-happy-accessory", "bone": "eyes-happy-accessory", "color": "ffffff00", "attachment": "eyes-happy-accessory", "blend": "additive"}, - {"name": "mouth-accessory", "bone": "mouth-accessory", "color": "ffffff00", "attachment": "mouth-accessory"} + {"name": "shadow", "bone": "@shadow", "attachment": "shadow"}, {"name": "ball", "bone": "ball"}, {"name": "leg-front-right", "bone": "@leg-front-right", "attachment": "leg-front-right"}, + {"name": "ear-right", "bone": "ear-right", "attachment": "ear-right"}, {"name": "tail", "bone": "tail", "attachment": "tail"}, {"name": "back", "bone": "back", "attachment": "back"}, + {"name": "leg-back-left", "bone": "@leg-back-left", "attachment": "leg-back-left"}, {"name": "body", "bone": "@body", "attachment": "body"}, {"name": "body-pattern", "bone": "body-pattern"}, + {"name": "leg-front-left", "bone": "@leg-front-left", "attachment": "leg-front-left"}, {"name": "eyes", "bone": "@eyes", "attachment": "eyes"}, + {"name": "mouth", "bone": "@mouth", "attachment": "mouth"}, {"name": "ear-left", "bone": "ear-left", "attachment": "ear-left"}, {"name": "horn", "bone": "horn", "attachment": "horn"} ], "ik": [ - {"name": "leg-back-left-IK", "order": 3, "bones": ["@leg-back-left"], "target": "leg-back-left-IK"}, - {"name": "leg-front-left-IK", "order": 2, "bones": ["@leg-front-left"], "target": "leg-front-left-IK"}, + {"name": "leg-back-left-IK", "order": 2, "bones": ["@leg-back-left"], "target": "leg-back-left-IK"}, + {"name": "leg-front-left-IK", "order": 1, "bones": ["@leg-front-left"], "target": "leg-front-left-IK"}, {"name": "leg-front-right-IK", "bones": ["@leg-front-right"], "target": "leg-front-right-IK"} ], - "transform": [{"name": "@mouth", "order": 1, "bones": ["mouth-bubble"], "target": "@mouth", "x": -49.1, "y": 37.9, "rotateMix": 0, "translateMix": 0, "scaleMix": 0, "shearMix": 0}], "skins": [ { "name": "default", "attachments": { - "back": {"back": {"x": 109.94, "y": 18.25, "rotation": -58, "width": 285, "height": 363, "path": "summer-as.back"}}, - "ear-left-bubble": { - "ear-left-bubble": { - "type": "mesh", - "uvs": [ - 0.87714, 0.57697, 0.91393, 0.67811, 0.94364, 0.75977, 0.96133, 0.8176, 0.97838, 0.87333, 1, 0.94398, 0.93104, 0.94427, 0.90524, 0.94438, 0.88494, 0.94447, 0.85255, 0.94461, 0.82176, - 0.94474, 0.79396, 0.94486, 0.76382, 0.94499, 0.73767, 0.9451, 0.70713, 0.94523, 0.67579, 0.94536, 0.64108, 0.94551, 0.61244, 0.94564, 0.5758, 0.94579, 0.5367, 0.94596, 0.50394, - 0.9461, 0.47091, 0.94624, 0.435, 0.94639, 0.39675, 0.94656, 0.36198, 0.94671, 0.32916, 0.94685, 0.29359, 0.947, 0.25022, 0.94718, 0.20956, 0.94736, 0.17261, 0.94751, 0.12749, - 0.94771, 0.1012, 0.94782, 0.07834, 0.94792, 0.0457, 0.94806, 0.02123, 0.94816, 0, 0.94825, 0, 0.86703, 0, 0.81359, 0, 0.73715, 0.02817, 0.68242, 0.07791, 0.5858, 0.37947, 0, 0.46651, - 0, 0.5261, 0, 0.59994, 0, 0.66726, 0, 0.02864, 0.86721, 0.04805, 0.81379, 0.07275, 0.7389, 0.0999, 0.68207, 0.14259, 0.58508, 0.49108, 0.58123, 0.82646, 0.57753, 0.86109, 0.67837, - 0.88458, 0.75835, 0.90003, 0.81734, 0.91424, 0.87292, 0.48557, 0.6802, 0.48069, 0.74867, 0.47772, 0.81558, 0.4758, 0.87009, 0.29126, 0.58344, 0.25576, 0.68132, 0.23492, 0.74278, - 0.2135, 0.81448, 0.19874, 0.86831, 0.19271, 0.49455, 0.4968, 0.48641, 0.79002, 0.48462, 0.25666, 0.37903, 0.50462, 0.35653, 0.74321, 0.36527, 0.68757, 0.57906, 0.70466, 0.67913, - 0.71716, 0.75434, 0.72541, 0.81661, 0.73109, 0.87174, 0.67152, 0.48534, 0.32349, 0.49105, 0.38378, 0.58242, 0.36974, 0.68076, 0.36036, 0.74579, 0.34895, 0.81504, 0.34148, 0.86923, - 0.20652, 0.58437, 0.16979, 0.68173, 0.1462, 0.74066, 0.12077, 0.81409, 0.10379, 0.8677, 0.59158, 0.58012, 0.59921, 0.67965, 0.60299, 0.7516, 0.60776, 0.81612, 0.60866, 0.87095, - 0.76107, 0.57825, 0.78751, 0.67873, 0.81003, 0.75656, 0.82525, 0.81703, 0.83754, 0.87243, 0.10852, 0.73975, 0.08479, 0.81394, 0.06934, 0.86747, 0.15113, 0.868, 0.1657, 0.81428, - 0.18746, 0.74164, 0.29675, 0.74426, 0.28022, 0.81476, 0.26841, 0.86876, 0.41495, 0.7471, 0.40761, 0.81529, 0.4031, 0.86963, 0.53765, 0.87049, 0.53762, 0.81583, 0.53944, 0.75008, - 0.6595, 0.75296, 0.66217, 0.81635, 0.66857, 0.87134, 0.78397, 0.87208, 0.7758, 0.81682, 0.76492, 0.75548, 0.74852, 0.67892, 0.82675, 0.67854, 0.84222, 0.75734, 0.8595, 0.81717, - 0.87132, 0.87264, 0.01186, 0.9147, 0.056, 0.91293, 0.08943, 0.91297, 0.13846, 0.91074, 0.18465, 0.91102, 0.25824, 0.91262, 0.33507, 0.90958, 0.39978, 0.90977, 0.47313, 0.91161, - 0.53714, 0.91117, 0.61061, 0.90948, 0.67252, 0.91178, 0.73471, 0.91209, 0.78925, 0.91054, 0.84557, 0.91105, 0.87872, 0.91169, 0.92292, 0.90979, 0.21772, 0.91173, 0.11081, 0.912, - 0.02923, 0.91401, 0.29821, 0.91104, 0.36548, 0.90967, 0.43685, 0.9107, 0.50336, 0.9114, 0.57635, 0.91027, 0.64066, 0.9106, 0.70543, 0.91195, 0.76031, 0.91136, 0.81833, 0.9108, - 0.89934, 0.9108 - ], - "triangles": [ - 85, 86, 49, 86, 99, 49, 101, 47, 100, 34, 125, 144, 35, 125, 34, 125, 46, 144, 46, 47, 101, 47, 48, 100, 122, 121, 53, 56, 55, 3, 47, 46, 37, 49, 50, 85, 85, 50, 84, 48, 39, 49, 46, - 36, 37, 38, 39, 48, 49, 40, 50, 39, 40, 49, 5, 6, 4, 55, 54, 2, 55, 2, 3, 95, 94, 52, 54, 1, 2, 121, 52, 53, 53, 0, 1, 53, 52, 0, 113, 57, 90, 108, 80, 57, 62, 61, 80, 80, 79, 57, - 80, 61, 79, 57, 89, 90, 57, 51, 89, 57, 79, 51, 90, 72, 73, 90, 89, 72, 40, 69, 66, 84, 66, 61, 61, 78, 79, 61, 66, 78, 51, 79, 67, 51, 67, 89, 67, 79, 78, 89, 77, 72, 89, 67, 77, - 72, 77, 94, 94, 68, 52, 94, 77, 68, 66, 69, 78, 41, 69, 40, 67, 78, 70, 67, 70, 77, 70, 78, 69, 77, 71, 68, 77, 70, 71, 71, 45, 0, 69, 42, 70, 69, 41, 42, 71, 70, 44, 70, 43, 44, 44, - 45, 71, 71, 0, 68, 70, 42, 43, 52, 68, 0, 54, 53, 1, 56, 3, 4, 50, 40, 66, 50, 66, 84, 47, 37, 38, 48, 47, 38, 125, 36, 46, 35, 36, 125, 48, 49, 99, 121, 95, 52, 122, 53, 54, 144, - 46, 126, 100, 48, 99, 62, 84, 61, 123, 54, 55, 94, 73, 72, 85, 84, 62, 113, 90, 91, 141, 56, 4, 6, 141, 4, 124, 55, 56, 17, 150, 16, 17, 135, 150, 16, 136, 15, 16, 150, 136, 15, 151, - 14, 15, 136, 151, 14, 137, 13, 14, 151, 137, 13, 152, 12, 13, 137, 152, 12, 138, 11, 12, 152, 138, 11, 153, 10, 11, 138, 153, 10, 139, 9, 10, 153, 139, 9, 140, 8, 9, 139, 140, 8, - 154, 7, 8, 140, 154, 7, 141, 6, 7, 154, 141, 152, 137, 76, 137, 151, 76, 76, 151, 116, 150, 116, 136, 151, 136, 116, 154, 140, 124, 152, 117, 138, 152, 76, 117, 153, 98, 139, 140, - 139, 124, 139, 98, 124, 154, 56, 141, 154, 124, 56, 98, 153, 117, 116, 150, 93, 153, 138, 117, 150, 135, 93, 98, 123, 124, 124, 123, 55, 117, 97, 98, 98, 97, 123, 76, 118, 117, 117, - 118, 97, 116, 75, 76, 76, 75, 118, 93, 115, 116, 116, 115, 75, 93, 92, 115, 97, 122, 123, 123, 122, 54, 118, 96, 97, 97, 96, 122, 75, 119, 118, 118, 119, 96, 115, 74, 75, 75, 74, - 119, 92, 114, 115, 115, 114, 74, 92, 91, 114, 96, 121, 122, 119, 95, 96, 96, 95, 121, 74, 120, 119, 119, 120, 95, 114, 73, 74, 74, 73, 120, 73, 114, 90, 114, 91, 90, 120, 73, 94, - 120, 94, 95, 58, 57, 113, 25, 131, 24, 24, 146, 23, 24, 131, 146, 23, 132, 22, 23, 146, 132, 22, 147, 21, 22, 132, 147, 20, 133, 148, 20, 21, 133, 21, 147, 133, 20, 148, 19, 19, 134, - 18, 19, 148, 134, 18, 135, 17, 18, 149, 135, 18, 134, 149, 148, 133, 60, 133, 147, 60, 134, 148, 111, 134, 111, 149, 111, 148, 60, 132, 110, 147, 147, 110, 60, 149, 93, 135, 149, - 111, 93, 132, 146, 110, 131, 83, 146, 146, 83, 110, 111, 92, 93, 60, 59, 111, 59, 112, 111, 111, 112, 92, 110, 109, 60, 60, 109, 59, 83, 82, 110, 110, 82, 109, 92, 112, 91, 112, 113, - 91, 59, 58, 112, 112, 58, 113, 109, 108, 59, 59, 108, 58, 82, 81, 109, 109, 81, 108, 58, 108, 57, 81, 80, 108, 34, 144, 33, 126, 46, 101, 33, 126, 32, 33, 144, 126, 32, 127, 31, 32, - 126, 127, 31, 143, 30, 31, 127, 143, 30, 128, 29, 30, 143, 128, 29, 129, 28, 29, 128, 129, 28, 142, 27, 28, 129, 142, 27, 130, 26, 27, 142, 130, 26, 145, 25, 26, 130, 145, 25, 145, - 131, 126, 101, 127, 127, 88, 143, 127, 101, 88, 130, 107, 145, 130, 142, 107, 143, 88, 128, 129, 65, 142, 142, 65, 107, 131, 145, 83, 128, 102, 129, 129, 102, 65, 128, 88, 102, 83, - 145, 107, 107, 106, 83, 83, 106, 82, 65, 64, 107, 107, 64, 106, 102, 103, 65, 65, 103, 64, 88, 87, 102, 102, 87, 103, 101, 100, 88, 88, 100, 87, 106, 105, 82, 82, 105, 81, 64, 63, - 106, 106, 63, 105, 103, 104, 64, 64, 104, 63, 87, 86, 103, 103, 86, 104, 100, 99, 87, 87, 99, 86, 81, 105, 80, 63, 62, 105, 105, 62, 80, 62, 63, 85, 86, 85, 104, 63, 104, 85 - ], - "vertices": [ - 4, 39, 58.43, 20.31, 0.00012, 40, 36.09, 20.31, 0.00054, 41, 13.17, 20.31, 0.12631, 32, 43.2, 34, 0.87302, 3, 40, 39.33, 12.22, 0.00019, 41, 16.41, 12.22, 0.19743, 32, 51.06, 37.76, - 0.80237, 3, 40, 41.94, 5.69, 6e-05, 41, 19.02, 5.69, 0.26715, 32, 57.41, 40.79, 0.73278, 3, 40, 43.5, 1.06, 1e-05, 41, 20.58, 1.06, 0.33542, 32, 61.92, 42.65, 0.66457, 3, 40, 45, - -3.4, 1e-05, 41, 22.08, -3.4, 0.40033, 32, 66.27, 44.44, 0.59966, 3, 40, 46.9, -9.05, 0, 41, 23.98, -9.05, 0.45012, 32, 71.79, 46.7, 0.54988, 3, 40, 40.83, -9.07, 0, 41, 17.91, - -9.07, 0.5829, 32, 72.21, 40.65, 0.4171, 3, 40, 38.56, -9.08, 4e-05, 41, 15.64, -9.08, 0.72131, 32, 72.37, 38.38, 0.27865, 3, 40, 36.78, -9.09, 0.00031, 41, 13.86, -9.09, 0.8264, 32, - 72.49, 36.6, 0.17329, 3, 40, 33.93, -9.1, 0.00157, 41, 11, -9.1, 0.90359, 32, 72.69, 33.76, 0.09484, 3, 40, 31.22, -9.11, 0.00537, 41, 8.3, -9.11, 0.94975, 32, 72.87, 31.05, 0.04488, - 3, 40, 28.77, -9.12, 0.01601, 41, 5.85, -9.12, 0.96404, 32, 73.04, 28.61, 0.01996, 3, 40, 26.12, -9.13, 0.03803, 41, 3.2, -9.13, 0.95562, 32, 73.22, 25.97, 0.00635, 3, 40, 23.82, - -9.14, 0.08031, 41, 0.9, -9.14, 0.91597, 32, 73.38, 23.67, 0.00372, 4, 39, 43.47, -9.15, 0, 40, 21.13, -9.15, 0.14592, 41, -1.79, -9.15, 0.85165, 32, 73.57, 20.99, 0.00243, 4, 39, - 40.71, -9.16, 2e-05, 40, 18.37, -9.16, 0.23867, 41, -4.55, -9.16, 0.75671, 32, 73.76, 18.24, 0.0046, 4, 39, 37.66, -9.17, 0.00014, 40, 15.32, -9.17, 0.35275, 41, -7.6, -9.17, - 0.64256, 32, 73.97, 15.19, 0.00455, 4, 39, 35.13, -9.18, 0.00092, 40, 12.8, -9.18, 0.48034, 41, -10.13, -9.18, 0.51198, 32, 74.14, 12.68, 0.00676, 4, 39, 31.91, -9.19, 0.00375, 40, - 9.57, -9.19, 0.61095, 41, -13.35, -9.19, 0.38019, 32, 74.36, 9.46, 0.00512, 4, 39, 28.47, -9.21, 0.01298, 40, 6.13, -9.21, 0.72267, 41, -16.79, -9.21, 0.25841, 32, 74.6, 6.03, - 0.00594, 4, 39, 25.59, -9.22, 0.03422, 40, 3.25, -9.22, 0.80451, 41, -19.67, -9.22, 0.15782, 32, 74.8, 3.15, 0.00345, 4, 39, 22.68, -9.23, 0.07754, 40, 0.34, -9.23, 0.83155, 41, - -22.58, -9.23, 0.08642, 32, 75, 0.25, 0.00449, 4, 39, 19.52, -9.24, 0.14705, 40, -2.82, -9.24, 0.80991, 41, -25.74, -9.24, 0.04032, 32, 75.22, -2.9, 0.00272, 4, 39, 16.15, -9.25, - 0.24563, 40, -6.18, -9.25, 0.73344, 41, -29.11, -9.25, 0.01645, 32, 75.45, -6.26, 0.00448, 4, 39, 13.09, -9.27, 0.36774, 40, -9.24, -9.27, 0.62371, 41, -32.17, -9.27, 0.00512, 32, - 75.66, -9.31, 0.00344, 4, 39, 10.21, -9.28, 0.50372, 40, -12.13, -9.28, 0.49001, 41, -35.05, -9.28, 0.00135, 32, 75.86, -12.19, 0.00491, 4, 39, 7.08, -9.29, 0.64487, 40, -15.26, - -9.29, 0.35177, 41, -38.18, -9.29, 0.00021, 32, 76.08, -15.32, 0.00314, 4, 39, 3.26, -9.3, 0.77, 40, -19.08, -9.3, 0.22651, 41, -42, -9.3, 3e-05, 32, 76.34, -19.12, 0.00346, 4, 39, - -0.32, -9.32, 0.87272, 40, -22.66, -9.32, 0.1254, 41, -45.58, -9.32, 0, 32, 76.59, -22.69, 0.00188, 3, 39, -3.57, -9.33, 0.9351, 40, -25.91, -9.33, 0.0605, 32, 76.81, -25.94, 0.0044, - 3, 39, -7.54, -9.35, 0.96153, 40, -29.88, -9.35, 0.02278, 32, 77.09, -29.9, 0.01569, 3, 39, -9.85, -9.35, 0.93655, 40, -32.19, -9.35, 0.00657, 32, 77.24, -32.21, 0.05688, 3, 39, - -11.87, -9.36, 0.83576, 40, -34.2, -9.36, 0.00151, 32, 77.38, -34.21, 0.16273, 3, 39, -14.74, -9.37, 0.65143, 40, -37.08, -9.37, 0.00023, 32, 77.58, -37.08, 0.34834, 3, 39, -16.89, - -9.38, 0.4382, 40, -39.23, -9.38, 2e-05, 32, 77.73, -39.23, 0.56178, 3, 39, -18.76, -9.39, 0.27507, 40, -41.1, -9.39, 0, 32, 77.86, -41.09, 0.72493, 3, 39, -18.76, -2.89, 0.21414, - 40, -41.1, -2.89, 2e-05, 32, 71.37, -41.51, 0.78584, 3, 39, -18.76, 1.38, 0.19077, 40, -41.1, 1.38, 0.00024, 32, 67.11, -41.79, 0.80899, 3, 39, -18.76, 7.5, 0.1765, 40, -41.1, 7.5, - 0.00116, 32, 61.01, -42.19, 0.82235, 4, 39, -16.28, 11.88, 0.15382, 40, -38.62, 11.88, 0.00307, 41, -61.54, 11.88, 1e-05, 32, 56.48, -40, 0.84309, 4, 39, -11.9, 19.61, 0.11079, 40, - -34.24, 19.61, 0.0029, 41, -57.16, 19.61, 0.00014, 32, 48.48, -36.13, 0.88617, 4, 39, 14.63, 66.47, 0.04584, 40, -7.7, 66.47, 0.00083, 41, -30.63, 66.47, 0.00037, 32, -0.01, -12.7, - 0.95296, 4, 39, 22.29, 66.47, 0.02247, 40, -0.04, 66.47, 0.00083, 41, -22.97, 66.47, 0.00288, 32, -0.51, -5.06, 0.97382, 4, 39, 27.54, 66.47, 0.01007, 40, 5.2, 66.47, 0.00155, 41, - -17.72, 66.47, 0.0104, 32, -0.85, 0.17, 0.97798, 4, 39, 34.04, 66.47, 0.00272, 40, 11.7, 66.47, 0.00045, 41, -11.22, 66.47, 0.02285, 32, -1.28, 6.66, 0.97398, 4, 39, 39.96, 66.47, - 0.00033, 40, 17.62, 66.47, 0.00011, 41, -5.3, 66.47, 0.0498, 32, -1.66, 12.57, 0.94976, 3, 39, -16.24, -2.91, 0.33437, 40, -38.58, -2.91, 0.0002, 32, 71.23, -39, 0.66543, 3, 39, - -14.53, 1.37, 0.32645, 40, -36.87, 1.37, 0.00078, 32, 66.85, -37.57, 0.67277, 4, 39, -12.36, 7.36, 0.307, 40, -34.7, 7.36, 0.00285, 41, -57.62, 7.36, 1e-05, 32, 60.73, -35.79, - 0.69014, 4, 39, -9.97, 11.91, 0.26477, 40, -32.31, 11.91, 0.00971, 41, -55.23, 11.91, 0.00027, 32, 56.04, -33.7, 0.72525, 4, 39, -6.21, 19.66, 0.19881, 40, -28.55, 19.66, 0.00959, - 41, -51.47, 19.66, 0.00132, 32, 48.05, -30.46, 0.79028, 4, 39, 24.46, 19.97, 0.10712, 40, 2.12, 19.97, 0.11704, 41, -20.8, 19.97, 0.11672, 32, 45.75, 0.12, 0.65912, 4, 39, 53.97, - 20.27, 0.00116, 40, 31.63, 20.27, 0.00313, 41, 8.71, 20.27, 0.2148, 32, 43.53, 29.55, 0.7809, 4, 39, 57.02, 12.2, 0.0001, 40, 34.68, 12.2, 0.00083, 41, 11.76, 12.2, 0.29942, 32, - 51.38, 33.12, 0.69965, 3, 40, 36.75, 5.8, 0.00034, 41, 13.82, 5.8, 0.378, 32, 57.63, 35.6, 0.62166, 3, 40, 38.1, 1.08, 0.00022, 41, 15.18, 1.08, 0.45653, 32, 62.25, 37.26, 0.54325, - 3, 40, 39.36, -3.36, 0.00015, 41, 16.43, -3.36, 0.53433, 32, 66.61, 38.8, 0.46552, 4, 39, 23.97, 12.06, 0.12565, 40, 1.63, 12.06, 0.24275, 41, -21.29, 12.06, 0.14114, 32, 53.68, - 0.15, 0.49046, 4, 39, 23.54, 6.58, 0.11007, 40, 1.2, 6.58, 0.47217, 41, -21.72, 6.58, 0.12893, 32, 59.17, 0.08, 0.28883, 4, 39, 23.28, 1.22, 0.10884, 40, 0.94, 1.22, 0.60558, 41, - -21.98, 1.22, 0.12698, 32, 64.53, 0.17, 0.1586, 4, 39, 23.11, -3.14, 0.10666, 40, 0.77, -3.14, 0.70334, 41, -22.15, -3.14, 0.12133, 32, 68.89, 0.28, 0.06866, 4, 39, 6.87, 19.8, - 0.29773, 40, -15.47, 19.8, 0.06022, 41, -38.39, 19.8, 0.01488, 32, 47.07, -17.41, 0.62717, 4, 39, 3.75, 11.97, 0.44072, 40, -18.59, 11.97, 0.09602, 41, -41.51, 11.97, 0.01064, 32, - 55.08, -20.02, 0.45261, 4, 39, 1.91, 7.05, 0.66419, 40, -20.42, 7.05, 0.11803, 41, -43.35, 7.05, 0.002, 32, 60.11, -21.53, 0.21579, 4, 39, 0.03, 1.31, 0.77187, 40, -22.31, 1.31, - 0.12352, 41, -45.23, 1.31, 0.00043, 32, 65.96, -23.04, 0.10418, 4, 39, -1.27, -2.99, 0.84303, 40, -23.61, -2.99, 0.11246, 41, -46.53, -2.99, 0.00018, 32, 70.34, -24.05, 0.04432, 4, - 39, -1.8, 26.91, 0.12744, 40, -24.14, 26.91, 0.00959, 41, -47.06, 26.91, 0.0076, 32, 40.54, -26.53, 0.85537, 4, 39, 24.96, 27.56, 0.0719, 40, 2.62, 27.56, 0.03639, 41, -20.3, 27.56, - 0.07572, 32, 38.14, 0.13, 0.81598, 4, 39, 50.76, 27.7, 0.00702, 40, 28.42, 27.7, 0.00523, 41, 5.5, 27.7, 0.131, 32, 36.32, 25.87, 0.85675, 4, 39, 3.83, 36.15, 0.04791, 40, -18.51, - 36.15, 0.00352, 41, -41.43, 36.15, 0.00803, 32, 30.95, -21.51, 0.94054, 4, 39, 25.65, 37.95, 0.02662, 40, 3.31, 37.95, 0.00775, 41, -19.61, 37.95, 0.02767, 32, 27.73, 0.14, 0.93795, - 4, 39, 46.64, 37.25, 0.00753, 40, 24.3, 37.25, 0.00227, 41, 1.38, 37.25, 0.04846, 32, 27.06, 21.14, 0.94174, 4, 39, 41.75, 20.15, 0.01306, 40, 19.41, 20.15, 0.04509, 41, -3.51, - 20.15, 0.32134, 32, 44.45, 17.37, 0.62052, 4, 39, 43.25, 12.14, 0.00895, 40, 20.91, 12.14, 0.07841, 41, -2.01, 12.14, 0.49568, 32, 52.34, 19.39, 0.41696, 4, 39, 44.35, 6.12, 0.0015, - 40, 22.01, 6.12, 0.09572, 41, -0.91, 6.12, 0.67014, 32, 58.27, 20.88, 0.23264, 4, 39, 45.08, 1.14, 0.00025, 40, 22.74, 1.14, 0.108, 41, -0.18, 1.14, 0.76841, 32, 63.2, 21.93, - 0.12334, 4, 39, 45.58, -3.27, 0.0001, 40, 23.24, -3.27, 0.10937, 41, 0.32, -3.27, 0.83473, 32, 67.56, 22.71, 0.0558, 4, 39, 40.33, 27.64, 0.02381, 40, 18, 27.64, 0.02132, 41, -4.93, - 27.64, 0.16866, 32, 37.06, 15.47, 0.78621, 4, 39, 9.71, 27.19, 0.16236, 40, -12.63, 27.19, 0.02827, 41, -35.55, 27.19, 0.02548, 32, 39.51, -15.06, 0.78388, 4, 39, 15.01, 19.88, - 0.23124, 40, -7.33, 19.88, 0.11759, 41, -30.25, 19.88, 0.04679, 32, 46.46, -9.29, 0.60438, 4, 39, 13.78, 12.01, 0.29354, 40, -8.56, 12.01, 0.19873, 41, -31.48, 12.01, 0.04427, 32, - 54.39, -10.01, 0.46346, 4, 39, 12.95, 6.81, 0.37869, 40, -9.39, 6.81, 0.34588, 41, -32.31, 6.81, 0.01968, 32, 59.63, -10.5, 0.25575, 4, 39, 11.95, 1.27, 0.42861, 40, -10.39, 1.27, - 0.42317, 41, -33.31, 1.27, 0.01297, 32, 65.23, -11.14, 0.13524, 4, 39, 11.29, -3.07, 0.46725, 40, -11.05, -3.07, 0.46538, 41, -33.97, -3.07, 0.0097, 32, 69.59, -11.51, 0.05768, 4, - 39, -0.59, 19.72, 0.32338, 40, -22.92, 19.72, 0.02881, 41, -45.85, 19.72, 0.003, 32, 47.63, -24.85, 0.64481, 4, 39, -3.82, 11.93, 0.4391, 40, -26.16, 11.93, 0.03345, 41, -49.08, - 11.93, 0.00177, 32, 55.61, -27.57, 0.52567, 4, 39, -5.89, 7.22, 0.65491, 40, -28.23, 7.22, 0.02015, 41, -51.15, 7.22, 0.00017, 32, 60.45, -29.33, 0.32476, 4, 39, -8.13, 1.34, - 0.75275, 40, -30.47, 1.34, 0.01396, 41, -53.39, 1.34, 1e-05, 32, 66.46, -31.18, 0.23328, 3, 39, -9.63, -2.94, 0.80478, 40, -31.96, -2.94, 0.00944, 32, 70.83, -32.39, 0.18578, 4, 39, - 33.3, 20.06, 0.04166, 40, 10.96, 20.06, 0.10286, 41, -11.96, 20.06, 0.24857, 32, 45.08, 8.94, 0.60691, 4, 39, 33.97, 12.1, 0.03817, 40, 11.63, 12.1, 0.17811, 41, -11.29, 12.1, - 0.32257, 32, 52.98, 10.13, 0.46115, 4, 39, 34.3, 6.34, 0.01531, 40, 11.97, 6.34, 0.31162, 41, -10.96, 6.34, 0.40881, 32, 58.71, 10.84, 0.26426, 4, 39, 34.72, 1.18, 0.00955, 40, - 12.39, 1.18, 0.39036, 41, -10.54, 1.18, 0.4561, 32, 63.83, 11.59, 0.14399, 4, 39, 34.8, -3.2, 0.00731, 40, 12.46, -3.2, 0.44195, 41, -10.46, -3.2, 0.48699, 32, 68.2, 11.96, 0.06375, - 4, 39, 48.21, 20.21, 0.00241, 40, 25.88, 20.21, 0.01421, 41, 2.95, 20.21, 0.36275, 32, 43.96, 23.82, 0.62063, 4, 39, 50.54, 12.17, 0.00034, 40, 28.2, 12.17, 0.01068, 41, 5.28, 12.17, - 0.5453, 32, 51.83, 26.66, 0.44368, 4, 39, 52.52, 5.95, 2e-05, 40, 30.19, 5.95, 0.00999, 41, 7.26, 5.95, 0.66888, 32, 57.92, 29.04, 0.32111, 3, 40, 31.52, 1.11, 0.01011, 41, 8.6, - 1.11, 0.76268, 32, 62.66, 30.7, 0.22721, 3, 40, 32.61, -3.32, 0.00863, 41, 9.68, -3.32, 0.83296, 32, 67.01, 32.06, 0.15841, 4, 39, -9.21, 7.29, 0.52586, 40, -31.55, 7.29, 0.0057, 41, - -54.47, 7.29, 1e-05, 32, 60.59, -32.65, 0.46842, 3, 39, -11.3, 1.36, 0.56698, 40, -33.64, 1.36, 0.00311, 32, 66.65, -34.34, 0.42991, 3, 39, -12.66, -2.93, 0.60013, 40, -35, -2.93, - 0.00167, 32, 71.01, -35.42, 0.39821, 4, 39, -5.46, -2.97, 0.89102, 40, -27.8, -2.97, 0.03888, 41, -50.72, -2.97, 1e-05, 32, 70.59, -28.24, 0.07008, 4, 39, -4.18, 1.33, 0.83362, 40, - -26.52, 1.33, 0.04645, 41, -49.44, 1.33, 3e-05, 32, 66.21, -27.24, 0.1199, 4, 39, -2.26, 7.14, 0.75973, 40, -24.6, 7.14, 0.05134, 41, -47.52, 7.14, 0.00026, 32, 60.29, -25.7, - 0.18867, 4, 39, 7.35, 6.93, 0.57235, 40, -14.98, 6.93, 0.23863, 41, -37.91, 6.93, 0.00435, 32, 59.87, -16.09, 0.18467, 4, 39, 5.9, 1.29, 0.63011, 40, -16.44, 1.29, 0.25936, 41, - -39.36, 1.29, 0.00243, 32, 65.6, -17.18, 0.1081, 4, 39, 4.86, -3.03, 0.68809, 40, -17.48, -3.03, 0.26358, 41, -40.4, -3.03, 0.00168, 32, 69.98, -17.93, 0.04665, 4, 39, 17.76, 6.7, - 0.22941, 40, -4.58, 6.7, 0.4879, 41, -27.5, 6.7, 0.05094, 32, 59.42, -5.7, 0.23175, 4, 39, 17.11, 1.25, 0.24296, 40, -5.23, 1.25, 0.56856, 41, -28.15, 1.25, 0.04581, 32, 64.91, - -5.99, 0.14267, 4, 39, 16.71, -3.1, 0.25552, 40, -5.62, -3.1, 0.64168, 41, -28.55, -3.1, 0.03992, 32, 69.27, -6.1, 0.06288, 4, 39, 28.55, -3.17, 0.03276, 40, 6.22, -3.17, 0.62363, - 41, -16.71, -3.17, 0.27658, 32, 68.57, 5.72, 0.06703, 4, 39, 28.55, 1.2, 0.0367, 40, 6.21, 1.21, 0.54514, 41, -16.71, 1.21, 0.26974, 32, 64.21, 5.43, 0.14843, 4, 39, 28.71, 6.47, - 0.04075, 40, 6.37, 6.47, 0.46337, 41, -16.55, 6.47, 0.25797, 32, 58.95, 5.25, 0.23791, 4, 39, 39.28, 6.23, 0.00305, 40, 16.94, 6.24, 0.20572, 41, -5.98, 6.24, 0.59307, 32, 58.49, - 15.81, 0.19817, 4, 39, 39.51, 1.16, 0.00156, 40, 17.17, 1.16, 0.23228, 41, -5.75, 1.16, 0.64631, 32, 63.54, 16.37, 0.11984, 4, 39, 40.07, -3.24, 0.00112, 40, 17.74, -3.24, 0.25061, - 41, -5.19, -3.24, 0.69415, 32, 67.89, 17.22, 0.05412, 4, 39, 50.23, -3.29, 0, 40, 27.89, -3.29, 0.036, 41, 4.97, -3.29, 0.88144, 32, 67.29, 27.36, 0.08255, 4, 39, 49.51, 1.13, 2e-05, - 40, 27.17, 1.13, 0.03826, 41, 4.25, 1.13, 0.81357, 32, 62.92, 26.35, 0.14816, 4, 39, 48.55, 6.03, 0.00027, 40, 26.22, 6.03, 0.03577, 41, 3.29, 6.03, 0.72045, 32, 58.09, 25.08, - 0.24351, 4, 39, 47.11, 12.16, 0.00156, 40, 24.77, 12.16, 0.03311, 41, 1.85, 12.16, 0.61234, 32, 52.07, 23.24, 0.35299, 4, 39, 53.99, 12.19, 1e-05, 40, 31.66, 12.19, 0.00266, 41, - 8.73, 12.19, 0.47035, 32, 51.59, 30.11, 0.52698, 3, 40, 33.02, 5.88, 0.00213, 41, 10.1, 5.88, 0.54797, 32, 57.79, 31.88, 0.4499, 3, 40, 34.54, 1.1, 0.0018, 41, 11.62, 1.1, 0.63247, - 32, 62.47, 33.7, 0.36573, 3, 40, 35.58, -3.34, 0.00152, 41, 12.66, -3.34, 0.71351, 32, 66.83, 35.03, 0.28497, 3, 39, -17.72, -6.71, 0.31251, 40, -40.05, -6.71, 1e-05, 32, 75.11, - -40.22, 0.68748, 3, 39, -13.83, -6.56, 0.64755, 40, -36.17, -6.56, 0.00038, 32, 74.72, -36.36, 0.35207, 3, 39, -10.89, -6.57, 0.83546, 40, -33.23, -6.57, 0.00245, 32, 74.53, -33.42, - 0.1621, 3, 39, -6.58, -6.39, 0.9505, 40, -28.91, -6.39, 0.02598, 32, 74.07, -29.13, 0.02352, 4, 39, -2.51, -6.41, 0.9185, 40, -24.85, -6.41, 0.06986, 41, -47.77, -6.41, 1e-05, 32, - 73.83, -25.07, 0.01163, 4, 39, 3.97, -6.54, 0.7539, 40, -18.37, -6.54, 0.23416, 41, -41.29, -6.54, 0.00019, 32, 73.54, -18.6, 0.01175, 4, 39, 10.73, -6.3, 0.4945, 40, -11.61, -6.29, - 0.48778, 41, -34.53, -6.29, 0.00242, 32, 72.85, -11.87, 0.01529, 4, 39, 16.42, -6.31, 0.24467, 40, -5.92, -6.31, 0.71967, 41, -28.84, -6.31, 0.01969, 32, 72.5, -6.18, 0.01597, 4, 39, - 22.88, -6.46, 0.08074, 40, 0.54, -6.46, 0.81091, 41, -22.38, -6.46, 0.09131, 32, 72.22, 0.27, 0.01704, 4, 39, 28.51, -6.42, 0.01543, 40, 6.17, -6.42, 0.70591, 41, -16.75, -6.42, - 0.26031, 32, 71.82, 5.89, 0.01836, 4, 39, 34.97, -6.29, 0.00164, 40, 12.64, -6.29, 0.47309, 41, -10.29, -6.29, 0.50689, 32, 71.27, 12.33, 0.01837, 4, 39, 40.42, -6.47, 0.0001, 40, - 18.08, -6.47, 0.23958, 41, -4.84, -6.47, 0.7461, 32, 71.1, 17.78, 0.01421, 4, 39, 45.89, -6.5, 0, 40, 23.56, -6.5, 0.08431, 41, 0.63, -6.5, 0.9025, 32, 70.76, 23.24, 0.01319, 3, 40, - 28.36, -6.37, 0.01867, 41, 5.43, -6.37, 0.94991, 32, 70.33, 28.02, 0.03142, 3, 40, 33.31, -6.41, 0.00244, 41, 10.39, -6.41, 0.88788, 32, 70.05, 32.97, 0.10968, 3, 40, 36.23, -6.46, - 0.00046, 41, 13.31, -6.46, 0.80558, 32, 69.91, 35.88, 0.19395, 3, 40, 40.12, -6.31, 1e-05, 41, 17.2, -6.31, 0.61334, 32, 69.5, 39.76, 0.38665, 4, 39, 0.4, -6.47, 0.86555, 40, -21.94, - -6.47, 0.12959, 41, -44.86, -6.47, 1e-05, 32, 73.7, -22.16, 0.00485, 3, 39, -9.01, -6.49, 0.93616, 40, -31.35, -6.49, 0.00716, 32, 74.33, -31.55, 0.05668, 3, 39, -16.19, -6.65, - 0.44814, 40, -38.53, -6.65, 3e-05, 32, 74.96, -38.7, 0.55184, 4, 39, 7.48, -6.41, 0.63866, 40, -14.86, -6.41, 0.354, 41, -37.78, -6.41, 0.00037, 32, 73.18, -15.1, 0.00698, 4, 39, - 13.4, -6.3, 0.36468, 40, -8.94, -6.3, 0.62161, 41, -31.86, -6.3, 0.00581, 32, 72.69, -9.2, 0.0079, 4, 39, 19.68, -6.38, 0.14684, 40, -2.65, -6.38, 0.80383, 41, -25.58, -6.38, - 0.04176, 32, 72.36, -2.92, 0.00757, 4, 39, 25.54, -6.44, 0.03499, 40, 3.2, -6.44, 0.79745, 41, -19.72, -6.44, 0.15898, 32, 72.03, 2.92, 0.00858, 4, 39, 31.96, -6.35, 0.00417, 40, - 9.62, -6.35, 0.60634, 41, -13.3, -6.35, 0.37927, 32, 71.53, 9.32, 0.01022, 4, 39, 37.62, -6.38, 0.00021, 40, 15.28, -6.38, 0.35157, 41, -7.64, -6.38, 0.63918, 32, 71.18, 14.97, - 0.00904, 4, 39, 43.32, -6.48, 1e-05, 40, 20.98, -6.48, 0.14688, 41, -1.94, -6.48, 0.84692, 32, 70.92, 20.67, 0.00619, 3, 40, 25.81, -6.44, 0.03919, 41, 2.89, -6.44, 0.95006, 32, - 70.56, 25.48, 0.01074, 3, 40, 30.92, -6.39, 0.00591, 41, 7.99, -6.39, 0.9433, 32, 70.18, 30.58, 0.05079, 3, 40, 38.04, -6.39, 5e-05, 41, 15.12, -6.39, 0.72615, 32, 69.72, 37.69, - 0.2738 - ], - "hull": 46, - "edges": [ - 80, 82, 90, 0, 10, 8, 70, 72, 72, 74, 74, 76, 4, 6, 6, 8, 76, 78, 78, 80, 4, 2, 2, 0, 72, 92, 74, 94, 92, 94, 76, 96, 94, 96, 78, 98, 96, 98, 80, 100, 98, 100, 82, 84, 84, 86, 86, - 88, 88, 90, 0, 104, 2, 106, 104, 106, 4, 108, 106, 108, 6, 110, 108, 110, 8, 112, 110, 112, 10, 12, 102, 114, 114, 116, 116, 118, 118, 120, 122, 124, 124, 126, 126, 128, 128, 130, - 132, 100, 134, 102, 136, 104, 84, 138, 138, 132, 86, 140, 140, 134, 138, 140, 88, 142, 142, 136, 140, 142, 144, 146, 146, 148, 148, 150, 150, 152, 134, 154, 154, 136, 144, 154, 132, - 156, 156, 134, 122, 156, 102, 158, 158, 122, 114, 160, 160, 124, 158, 160, 160, 162, 162, 164, 164, 166, 100, 168, 168, 122, 98, 170, 170, 124, 168, 170, 170, 172, 172, 174, 174, - 176, 102, 178, 178, 144, 114, 180, 180, 146, 178, 180, 180, 182, 182, 184, 184, 186, 104, 188, 188, 144, 188, 190, 190, 192, 192, 194, 194, 196, 96, 198, 198, 172, 94, 200, 200, 174, - 198, 200, 92, 202, 202, 176, 200, 202, 64, 66, 58, 60, 130, 204, 204, 176, 128, 206, 206, 174, 204, 206, 126, 208, 208, 172, 206, 208, 126, 210, 210, 162, 128, 212, 212, 164, 210, - 212, 130, 214, 214, 166, 212, 214, 116, 216, 216, 162, 118, 218, 218, 164, 216, 218, 120, 220, 220, 166, 218, 220, 120, 222, 222, 186, 118, 224, 224, 184, 222, 224, 116, 226, 226, - 182, 224, 226, 148, 228, 228, 182, 150, 230, 230, 184, 228, 230, 152, 232, 232, 186, 230, 232, 152, 234, 234, 196, 150, 236, 236, 194, 234, 236, 148, 238, 238, 192, 236, 238, 146, - 240, 240, 190, 238, 240, 106, 242, 242, 190, 108, 244, 244, 192, 242, 244, 110, 246, 246, 194, 244, 246, 112, 248, 248, 196, 246, 248, 16, 18, 70, 250, 250, 92, 66, 252, 252, 202, - 64, 254, 254, 176, 252, 254, 60, 256, 256, 204, 58, 258, 258, 130, 256, 258, 54, 260, 260, 214, 50, 262, 262, 166, 46, 264, 264, 220, 42, 266, 266, 120, 38, 268, 268, 222, 34, 270, - 270, 186, 30, 272, 272, 232, 26, 274, 274, 152, 22, 276, 276, 234, 18, 278, 278, 196, 16, 280, 280, 248, 278, 280, 12, 282, 282, 112, 258, 284, 284, 260, 54, 56, 56, 58, 284, 56, - 254, 286, 286, 256, 60, 62, 62, 64, 286, 62, 250, 288, 288, 252, 66, 68, 68, 70, 288, 68, 260, 290, 290, 262, 50, 52, 52, 54, 290, 52, 262, 292, 292, 264, 46, 48, 48, 50, 292, 48, - 264, 294, 294, 266, 42, 44, 44, 46, 294, 44, 266, 296, 296, 268, 38, 40, 40, 42, 296, 40, 268, 298, 298, 270, 34, 36, 36, 38, 298, 36, 270, 300, 300, 272, 30, 32, 32, 34, 300, 32, - 272, 302, 302, 274, 26, 28, 28, 30, 302, 28, 274, 304, 304, 276, 22, 24, 24, 26, 304, 24, 276, 306, 306, 278, 18, 20, 20, 22, 306, 20, 280, 308, 308, 282, 12, 14, 14, 16, 308, 14 - ], - "width": 88, - "height": 80, - "path": "summer-as.ear-left-bubble" + "back": {"back": {"x": 39.23411764705881, "y": 14.788823529411768, "rotation": -64, "width": 369.4117647058824, "height": 385.88235294117646, "path": "reptile-08.back"}}, + "ear-left": {"ear-left": {"x": 37.22764705882352, "y": -29.330588235294115, "rotation": -52, "width": 131.76470588235296, "height": 192.94117647058823, "path": "reptile-08.ear-left"}}, + "ear-right": {"ear-right": {"x": 18.47411764705882, "y": 16.51, "rotation": -93, "width": 89.41176470588236, "height": 200.0, "path": "reptile-08.ear-right"}}, + "eyes": { + "eyes": {"x": 37.91294117647058, "y": 2.348823529411768, "width": 275.29411764705884, "height": 145.88235294117646, "path": "reptile-08.eyes"}, + "eyes-angry": {"x": 37.91294117647058, "y": 11.760588235294115, "width": 275.29411764705884, "height": 167.05882352941177, "path": "reptile-08.eyes-angry"}, + "eyes-happy": {"x": 32.501176470588234, "y": 6.64294117647058, "width": 254.11764705882354, "height": 155.29411764705884, "path": "reptile-08.eyes-happy"}, + "eyes-shut": {"x": 38.3835294117647, "y": 1.348823529411768, "width": 242.3529411764706, "height": 145.88235294117646, "path": "reptile-08.eyes-shut"} + }, + "horn": {"horn": {"x": 79.6135294117647, "y": -25.942352941176477, "rotation": -90, "width": 282.3529411764706, "height": 211.76470588235296, "path": "reptile-08.horn"}}, + "mouth": { + "mouth": {"x": 26.089411764705883, "y": 45.878235294117644, "width": 272.94117647058823, "height": 98.82352941176471, "path": "reptile-08.mouth"}, + "mouth-bite": {"x": 23.56, "y": 39.93705882352941, "width": 320.0, "height": 84.70588235294117, "path": "reptile-08.mouth-bite"}, + "mouth-open": {"x": 27.089411764705883, "y": 22.87823529411765, "width": 272.94117647058823, "height": 138.8235294117647, "path": "reptile-08.mouth-open"}, + "mouth-smile": {"x": 25.030588235294115, "y": 46.17235294117647, "width": 327.05882352941177, "height": 108.23529411764706, "path": "reptile-08.mouth-smile"} + }, + "tail": {"tail": {"x": 133.20705882352942, "y": 33.23117647058823, "width": 364.70588235294116, "height": 254.11764705882354, "path": "reptile-08.tail"}} + } + } + ], + "events": {"hit": {}, "hit-buff": {}, "jump": {}, "start-attack": {}}, + "keyAnimations": { + "activity/appear": "1023093953", + "activity/bath": "3305387968", + "attack/ranged/cast-fly": "4180526371", + "attack/ranged/cast-high": "164191126", + "attack/ranged/cast-low": "198813017", + "attack/ranged/cast-multi": "151119", + "attack/ranged/cast-tail": "997902532", + "activity/eat-bite": "1137807767", + "activity/eat-chew": "1988236421", + "activity/entrance": "3768378365", + "defense/evade": "1735454995", + "activity/evolve": "649307630", + "battle/get-buff": "1455190363", + "battle/get-debuff": "606904312", + "defense/hit-by-normal": "2045974966", + "defense/hit-by-normal-crit": "2130010601", + "defense/hit-by-normal-dramatic": "3823092125", + "defense/hit-by-ranged-attack": "2224561612", + "defense/hit-with-shield": "390714790", + "attack/melee/horn-gore": "1327954218", + "attack/melee/mouth-bite": "2237748264", + "action/move-back": "3766271173", + "action/move-forward": "2945160014", + "attack/melee/multi-attack": "905926802", + "action/idle/normal": "1659336865", + "attack/melee/normal-attack": "3305373483", + "activity/prepare": "405864717", + "action/idle/random-01": "554401889", + "action/idle/random-02": "1085666627", + "action/idle/random-03": "2021333900", + "action/idle/random-04": "1003789695", + "action/idle/random-05": "2745614147", + "action/run": "1438840721", + "draft/run-origin": "3577885069", + "attack/melee/shrimp": "3833448733", + "activity/sleep": "100562494", + "attack/melee/tail-multi-slap": "3317139533", + "attack/melee/tail-roll": "3108617565", + "attack/melee/tail-smash": "519942130", + "attack/melee/tail-thrash": "628713175", + "activity/victory-pose-back-flip": "2227634241" + } + }, + "body-curly": { + "bones": [ + {"name": "@root"}, {"name": "@pivot-main", "parent": "@root"}, {"name": "@pivot-back", "parent": "@pivot-main", "x": 205, "y": 180, "color": "ff0101ff"}, + {"name": "@pivot-center", "parent": "@pivot-back", "x": -215.11, "y": -5.25, "color": "ff0101ff"}, + {"name": "@axie", "parent": "@pivot-center", "length": 213.28, "rotation": 179.04, "x": 196.39, "y": 5.16}, {"name": "@back", "parent": "@axie", "rotation": -179.04, "x": 37.63, "y": -198.19}, + {"name": "@body", "parent": "@axie", "length": 226.28, "rotation": -8.35, "x": 224.58, "y": -0.53}, {"name": "@ear-left", "parent": "@axie", "rotation": -179.04, "x": 112.7, "y": -203.23}, + {"name": "@ear-right", "parent": "@axie", "rotation": -179.04, "x": 405.28, "y": -235.33}, {"name": "@eyes", "parent": "@axie", "rotation": -179.04, "x": 384.24, "y": -113.67}, + {"name": "@horn", "parent": "@axie", "rotation": -179.04, "x": 327.92, "y": -214.63}, + {"name": "@leg-back-left", "parent": "@axie", "length": 76.4, "rotation": 100.96, "x": -15.3, "y": 102.56, "transform": "noScale"}, + {"name": "@leg-front-left", "parent": "@axie", "length": 51.19, "rotation": 93.86, "x": 134.77, "y": 149.55, "transform": "noScale"}, + {"name": "@leg-front-right", "parent": "@axie", "length": 74.83, "rotation": 83.2, "x": 382.95, "y": 121.78, "transform": "noScale"}, + {"name": "@mouth", "parent": "@axie", "rotation": -179.04, "x": 382.23, "y": 6.31}, + {"name": "body-pattern", "parent": "@body", "rotation": -170.69, "x": -267.21, "y": -49.4, "transform": "noScale"}, {"name": "@shadow", "parent": "@root", "color": "e6d713ff"}, + {"name": "@tail", "parent": "@axie", "rotation": -179.04, "x": -11.76, "y": 61.72}, {"name": "leg-front-right-IK", "parent": "@pivot-main", "x": -195.99, "y": -10.21, "color": "ff3f00ff"}, + {"name": "leg-front-left-IK", "parent": "@pivot-main", "x": 42.3, "y": -18.42, "color": "ff3f00ff"}, + {"name": "leg-back-left-IK", "parent": "@pivot-main", "x": 208.57, "y": 1.35, "color": "ff3f00ff"}, {"name": "@ball", "parent": "@root", "y": 191, "color": "f3981bff"}, + {"name": "ball", "parent": "@ball", "y": -191, "color": "f4a729ff"}, {"name": "@body-neck", "parent": "@pivot-center", "x": -161.89, "y": -53.75, "color": "ff0101ff"}, + {"name": "@body-ground", "parent": "@pivot-main", "x": 220, "transform": "noRotationOrReflection", "color": "ff0101ff"}, + {"name": "@body-hip", "parent": "@pivot-center", "x": 240.11, "y": 55.25, "color": "ff0101ff"}, + {"name": "@body-air", "parent": "@pivot-back", "x": 63, "y": 365, "transform": "noRotationOrReflection", "color": "ff0101ff"} + ], + "slots": [ + {"name": "shadow", "bone": "@shadow", "attachment": "shadow"}, {"name": "ball", "bone": "ball"}, {"name": "leg-front-right", "bone": "@leg-front-right", "attachment": "leg-front-right"}, + {"name": "leg-back-left", "bone": "@leg-back-left", "attachment": "leg-back-left"}, {"name": "body", "bone": "@body", "attachment": "body-curly"}, + {"name": "leg-front-left", "bone": "@leg-front-left", "attachment": "leg-front-left"}, {"name": "body-pattern", "bone": "body-pattern"}, + {"name": "body-hip", "bone": "@body-hip", "attachment": "body-hip"}, {"name": "body-neck", "bone": "@body-neck", "attachment": "body-neck"}, + {"name": "body-ground", "bone": "@body-ground", "attachment": "body-ground"}, {"name": "body-air", "bone": "@body-air", "attachment": "body-air"} + ], + "ik": [ + {"name": "leg-back-left-IK", "order": 2, "bones": ["@leg-back-left"], "target": "leg-back-left-IK"}, + {"name": "leg-front-left-IK", "order": 1, "bones": ["@leg-front-left"], "target": "leg-front-left-IK"}, + {"name": "leg-front-right-IK", "bones": ["@leg-front-right"], "target": "leg-front-right-IK"} + ], + "skins": [ + { + "name": "default", + "attachments": { + "ball": {"ball": {"y": 186.0, "width": 392.94117647058823, "height": 400.0, "path": "body-normal.ball", "x": 0.029411764705884025}}, + "body": { + "body-curly": {"x": -1.6788235294117682, "y": -77.98823529411769, "rotation": -170.69, "width": 694.1176470588235, "height": 541.1764705882354, "path": "body-curly.body-curly"} + }, + "leg-back-left": { + "leg-back-left": {"x": 32.56, "y": 0.31764705882352895, "rotation": 83.45, "width": 80.0, "height": 91.76470588235294, "path": "body-normal.leg-back-left"}, + "leg-back-left-long": {"x": 35.037058823529414, "y": -4.5, "rotation": 221.45, "width": 84.70588235294117, "height": 80.0, "path": "body-normal.leg-back-left-long"}, + "leg-back-left-stretch": { + "x": 27.84882352941176, "y": 2.462352941176471, "rotation": 54.45, "width": 65.88235294117648, "height": 68.23529411764706, "path": "body-normal.leg-back-left-stretch" } }, - "ear-left-bubble-02": { - "ear-left-bubble": { - "type": "mesh", - "uvs": [ - 0.87714, 0.57697, 0.91393, 0.67811, 0.94364, 0.75977, 0.96133, 0.8176, 0.97838, 0.87333, 1, 0.94398, 0.93104, 0.94427, 0.90524, 0.94438, 0.88494, 0.94447, 0.85255, 0.94461, 0.82176, - 0.94474, 0.79396, 0.94486, 0.76382, 0.94499, 0.73767, 0.9451, 0.70713, 0.94523, 0.67579, 0.94536, 0.64108, 0.94551, 0.61244, 0.94564, 0.5758, 0.94579, 0.5367, 0.94596, 0.50394, - 0.9461, 0.47091, 0.94624, 0.435, 0.94639, 0.39675, 0.94656, 0.36198, 0.94671, 0.32916, 0.94685, 0.29359, 0.947, 0.25022, 0.94718, 0.20956, 0.94736, 0.17261, 0.94751, 0.12749, - 0.94771, 0.1012, 0.94782, 0.07834, 0.94792, 0.0457, 0.94806, 0.02123, 0.94816, 0, 0.94825, 0, 0.86703, 0, 0.81359, 0, 0.73715, 0.02817, 0.68242, 0.07791, 0.5858, 0.37947, 0, 0.46651, - 0, 0.5261, 0, 0.59994, 0, 0.66726, 0, 0.02864, 0.86721, 0.04805, 0.81379, 0.07275, 0.7389, 0.0999, 0.68207, 0.14259, 0.58508, 0.49108, 0.58123, 0.82646, 0.57753, 0.86109, 0.67837, - 0.88458, 0.75835, 0.90003, 0.81734, 0.91424, 0.87292, 0.48557, 0.6802, 0.48069, 0.74867, 0.47772, 0.81558, 0.4758, 0.87009, 0.29126, 0.58344, 0.25576, 0.68132, 0.23492, 0.74278, - 0.2135, 0.81448, 0.19874, 0.86831, 0.19271, 0.49455, 0.4968, 0.48641, 0.79002, 0.48462, 0.25666, 0.37903, 0.50462, 0.35653, 0.74321, 0.36527, 0.68757, 0.57906, 0.70466, 0.67913, - 0.71716, 0.75434, 0.72541, 0.81661, 0.73109, 0.87174, 0.67152, 0.48534, 0.32349, 0.49105, 0.38378, 0.58242, 0.36974, 0.68076, 0.36036, 0.74579, 0.34895, 0.81504, 0.34148, 0.86923, - 0.20652, 0.58437, 0.16979, 0.68173, 0.1462, 0.74066, 0.12077, 0.81409, 0.10379, 0.8677, 0.59158, 0.58012, 0.59921, 0.67965, 0.60299, 0.7516, 0.60776, 0.81612, 0.60866, 0.87095, - 0.76107, 0.57825, 0.78751, 0.67873, 0.81003, 0.75656, 0.82525, 0.81703, 0.83754, 0.87243, 0.10852, 0.73975, 0.08479, 0.81394, 0.06934, 0.86747, 0.15113, 0.868, 0.1657, 0.81428, - 0.18746, 0.74164, 0.29675, 0.74426, 0.28022, 0.81476, 0.26841, 0.86876, 0.41495, 0.7471, 0.40761, 0.81529, 0.4031, 0.86963, 0.53765, 0.87049, 0.53762, 0.81583, 0.53944, 0.75008, - 0.6595, 0.75296, 0.66217, 0.81635, 0.66857, 0.87134, 0.78397, 0.87208, 0.7758, 0.81682, 0.76492, 0.75548, 0.74852, 0.67892, 0.82675, 0.67854, 0.84222, 0.75734, 0.8595, 0.81717, - 0.87132, 0.87264, 0.01186, 0.9147, 0.056, 0.91293, 0.08943, 0.91297, 0.13846, 0.91074, 0.18465, 0.91102, 0.25824, 0.91262, 0.33507, 0.90958, 0.39978, 0.90977, 0.47313, 0.91161, - 0.53714, 0.91117, 0.61061, 0.90948, 0.67252, 0.91178, 0.73471, 0.91209, 0.78925, 0.91054, 0.84557, 0.91105, 0.87872, 0.91169, 0.92292, 0.90979, 0.21772, 0.91173, 0.11081, 0.912, - 0.02923, 0.91401, 0.29821, 0.91104, 0.36548, 0.90967, 0.43685, 0.9107, 0.50336, 0.9114, 0.57635, 0.91027, 0.64066, 0.9106, 0.70543, 0.91195, 0.76031, 0.91136, 0.81833, 0.9108, - 0.89934, 0.9108 - ], - "triangles": [ - 85, 84, 62, 94, 73, 72, 62, 84, 61, 100, 48, 99, 122, 53, 54, 121, 95, 52, 48, 49, 99, 48, 47, 38, 47, 37, 38, 50, 66, 84, 50, 40, 66, 54, 53, 1, 52, 68, 0, 70, 42, 43, 71, 0, 68, - 44, 45, 71, 70, 43, 44, 71, 70, 44, 69, 41, 42, 69, 42, 70, 71, 45, 0, 77, 70, 71, 77, 71, 68, 70, 78, 69, 67, 70, 77, 67, 78, 70, 41, 69, 40, 66, 69, 78, 94, 77, 68, 94, 68, 52, 72, - 77, 94, 89, 67, 77, 89, 77, 72, 67, 79, 78, 51, 67, 89, 51, 79, 67, 61, 66, 78, 61, 78, 79, 84, 66, 61, 40, 69, 66, 90, 89, 72, 90, 72, 73, 57, 79, 51, 57, 51, 89, 57, 89, 90, 80, - 61, 79, 80, 79, 57, 62, 61, 80, 108, 80, 57, 113, 57, 90, 53, 52, 0, 53, 0, 1, 121, 52, 53, 54, 1, 2, 95, 94, 52, 39, 40, 49, 49, 40, 50, 38, 39, 48, 48, 39, 49, 85, 50, 84, 49, 50, - 85, 122, 121, 53, 47, 48, 100, 86, 99, 49, 85, 86, 49, 55, 2, 3, 55, 54, 2, 123, 54, 55, 5, 6, 4, 56, 3, 4, 56, 55, 3, 35, 36, 125, 35, 125, 34, 34, 125, 144, 47, 46, 37, 125, 46, - 144, 144, 46, 126, 101, 47, 100, 46, 47, 101, 125, 36, 46, 46, 36, 37, 120, 94, 95, 120, 73, 94, 114, 91, 90, 73, 114, 90, 74, 73, 120, 114, 73, 74, 119, 120, 95, 74, 120, 119, 96, - 95, 121, 119, 95, 96, 96, 121, 122, 92, 91, 114, 115, 114, 74, 92, 114, 115, 75, 74, 119, 115, 74, 75, 118, 119, 96, 75, 119, 118, 97, 96, 122, 118, 96, 97, 123, 122, 54, 97, 122, - 123, 93, 92, 115, 116, 115, 75, 93, 115, 116, 76, 75, 118, 116, 75, 76, 117, 118, 97, 76, 118, 117, 98, 97, 123, 117, 97, 98, 124, 123, 55, 98, 123, 124, 150, 135, 93, 153, 138, 117, - 116, 150, 93, 98, 153, 117, 154, 124, 56, 154, 56, 141, 139, 98, 124, 140, 139, 124, 153, 98, 139, 152, 76, 117, 152, 117, 138, 154, 140, 124, 151, 136, 116, 150, 116, 136, 76, 151, - 116, 137, 151, 76, 152, 137, 76, 7, 154, 141, 7, 141, 6, 8, 140, 154, 8, 154, 7, 9, 139, 140, 9, 140, 8, 10, 153, 139, 10, 139, 9, 11, 138, 153, 11, 153, 10, 12, 152, 138, 12, 138, - 11, 13, 137, 152, 13, 152, 12, 14, 151, 137, 14, 137, 13, 15, 136, 151, 15, 151, 14, 16, 150, 136, 16, 136, 15, 17, 135, 150, 17, 150, 16, 124, 55, 56, 6, 141, 4, 141, 56, 4, 113, - 90, 91, 81, 80, 108, 58, 108, 57, 109, 81, 108, 82, 81, 109, 59, 108, 58, 109, 108, 59, 112, 58, 113, 59, 58, 112, 112, 113, 91, 92, 112, 91, 110, 82, 109, 83, 82, 110, 60, 109, 59, - 110, 109, 60, 111, 112, 92, 59, 112, 111, 60, 59, 111, 111, 92, 93, 146, 83, 110, 131, 83, 146, 132, 146, 110, 149, 111, 93, 149, 93, 135, 147, 110, 60, 132, 110, 147, 111, 148, 60, - 134, 111, 149, 134, 148, 111, 133, 147, 60, 148, 133, 60, 18, 134, 149, 18, 149, 135, 18, 135, 17, 19, 148, 134, 19, 134, 18, 20, 148, 19, 21, 147, 133, 20, 21, 133, 20, 133, 148, - 22, 132, 147, 22, 147, 21, 23, 146, 132, 23, 132, 22, 24, 131, 146, 24, 146, 23, 25, 131, 24, 58, 57, 113, 63, 104, 85, 86, 85, 104, 62, 63, 85, 105, 62, 80, 63, 62, 105, 81, 105, - 80, 87, 99, 86, 100, 99, 87, 103, 86, 104, 87, 86, 103, 64, 104, 63, 103, 104, 64, 106, 63, 105, 64, 63, 106, 82, 105, 81, 106, 105, 82, 88, 100, 87, 101, 100, 88, 102, 87, 103, 88, - 87, 102, 65, 103, 64, 102, 103, 65, 107, 64, 106, 65, 64, 107, 83, 106, 82, 107, 106, 83, 83, 145, 107, 128, 88, 102, 129, 102, 65, 128, 102, 129, 131, 145, 83, 142, 65, 107, 129, - 65, 142, 143, 88, 128, 130, 142, 107, 130, 107, 145, 127, 101, 88, 127, 88, 143, 126, 101, 127, 25, 145, 131, 26, 130, 145, 26, 145, 25, 27, 142, 130, 27, 130, 26, 28, 129, 142, 28, - 142, 27, 29, 128, 129, 29, 129, 28, 30, 143, 128, 30, 128, 29, 31, 127, 143, 31, 143, 30, 32, 126, 127, 32, 127, 31, 33, 144, 126, 33, 126, 32, 126, 46, 101, 34, 144, 33 - ], - "vertices": [ - 4, 47, 58.43, 20.31, 0.00012, 48, 36.09, 20.31, 0.00054, 49, 13.17, 20.31, 0.12631, 46, 43.2, 34, 0.87302, 3, 48, 39.33, 12.22, 0.00019, 49, 16.41, 12.22, 0.19743, 46, 51.06, 37.76, - 0.80237, 3, 48, 41.94, 5.69, 6e-05, 49, 19.02, 5.69, 0.26715, 46, 57.41, 40.79, 0.73278, 3, 48, 43.5, 1.06, 1e-05, 49, 20.58, 1.06, 0.33542, 46, 61.92, 42.65, 0.66457, 3, 48, 45, - -3.4, 1e-05, 49, 22.08, -3.4, 0.40033, 46, 66.27, 44.44, 0.59966, 3, 48, 46.9, -9.05, 0, 49, 23.98, -9.05, 0.45012, 46, 71.79, 46.7, 0.54988, 3, 48, 40.83, -9.07, 0, 49, 17.91, - -9.07, 0.5829, 46, 72.21, 40.65, 0.4171, 3, 48, 38.56, -9.08, 4e-05, 49, 15.64, -9.08, 0.72131, 46, 72.37, 38.38, 0.27865, 3, 48, 36.78, -9.09, 0.00031, 49, 13.86, -9.09, 0.8264, 46, - 72.49, 36.6, 0.17329, 3, 48, 33.93, -9.1, 0.00157, 49, 11, -9.1, 0.90359, 46, 72.69, 33.76, 0.09484, 3, 48, 31.22, -9.11, 0.00537, 49, 8.3, -9.11, 0.94975, 46, 72.87, 31.05, 0.04488, - 3, 48, 28.77, -9.12, 0.01601, 49, 5.85, -9.12, 0.96404, 46, 73.04, 28.61, 0.01996, 3, 48, 26.12, -9.13, 0.03803, 49, 3.2, -9.13, 0.95562, 46, 73.22, 25.97, 0.00635, 3, 48, 23.82, - -9.14, 0.08031, 49, 0.9, -9.14, 0.91597, 46, 73.38, 23.67, 0.00372, 4, 47, 43.47, -9.15, 0, 48, 21.13, -9.15, 0.14592, 49, -1.79, -9.15, 0.85165, 46, 73.57, 20.99, 0.00243, 4, 47, - 40.71, -9.16, 2e-05, 48, 18.37, -9.16, 0.23867, 49, -4.55, -9.16, 0.75671, 46, 73.76, 18.24, 0.0046, 4, 47, 37.66, -9.17, 0.00014, 48, 15.32, -9.17, 0.35275, 49, -7.6, -9.17, - 0.64256, 46, 73.97, 15.19, 0.00455, 4, 47, 35.13, -9.18, 0.00092, 48, 12.8, -9.18, 0.48034, 49, -10.13, -9.18, 0.51198, 46, 74.14, 12.68, 0.00676, 4, 47, 31.91, -9.19, 0.00375, 48, - 9.57, -9.19, 0.61095, 49, -13.35, -9.19, 0.38019, 46, 74.36, 9.46, 0.00512, 4, 47, 28.47, -9.21, 0.01298, 48, 6.13, -9.21, 0.72267, 49, -16.79, -9.21, 0.25841, 46, 74.6, 6.03, - 0.00594, 4, 47, 25.59, -9.22, 0.03422, 48, 3.25, -9.22, 0.80451, 49, -19.67, -9.22, 0.15782, 46, 74.8, 3.15, 0.00345, 4, 47, 22.68, -9.23, 0.07754, 48, 0.34, -9.23, 0.83155, 49, - -22.58, -9.23, 0.08642, 46, 75, 0.25, 0.00449, 4, 47, 19.52, -9.24, 0.14705, 48, -2.82, -9.24, 0.80991, 49, -25.74, -9.24, 0.04032, 46, 75.22, -2.9, 0.00272, 4, 47, 16.15, -9.25, - 0.24563, 48, -6.18, -9.25, 0.73344, 49, -29.11, -9.25, 0.01645, 46, 75.45, -6.26, 0.00448, 4, 47, 13.09, -9.27, 0.36774, 48, -9.24, -9.27, 0.62371, 49, -32.17, -9.27, 0.00512, 46, - 75.66, -9.31, 0.00344, 4, 47, 10.21, -9.28, 0.50372, 48, -12.13, -9.28, 0.49001, 49, -35.05, -9.28, 0.00135, 46, 75.86, -12.19, 0.00491, 4, 47, 7.08, -9.29, 0.64487, 48, -15.26, - -9.29, 0.35177, 49, -38.18, -9.29, 0.00021, 46, 76.08, -15.32, 0.00314, 4, 47, 3.26, -9.3, 0.77, 48, -19.08, -9.3, 0.22651, 49, -42, -9.3, 3e-05, 46, 76.34, -19.12, 0.00346, 4, 47, - -0.32, -9.32, 0.87272, 48, -22.66, -9.32, 0.1254, 49, -45.58, -9.32, 0, 46, 76.59, -22.69, 0.00188, 3, 47, -3.57, -9.33, 0.9351, 48, -25.91, -9.33, 0.0605, 46, 76.81, -25.94, 0.0044, - 3, 47, -7.54, -9.35, 0.96153, 48, -29.88, -9.35, 0.02278, 46, 77.09, -29.9, 0.01569, 3, 47, -9.85, -9.35, 0.93655, 48, -32.19, -9.35, 0.00657, 46, 77.24, -32.21, 0.05688, 3, 47, - -11.87, -9.36, 0.83576, 48, -34.2, -9.36, 0.00151, 46, 77.38, -34.21, 0.16273, 3, 47, -14.74, -9.37, 0.65143, 48, -37.08, -9.37, 0.00023, 46, 77.58, -37.08, 0.34834, 3, 47, -16.89, - -9.38, 0.4382, 48, -39.23, -9.38, 2e-05, 46, 77.73, -39.23, 0.56178, 3, 47, -18.76, -9.39, 0.27507, 48, -41.1, -9.39, 0, 46, 77.86, -41.09, 0.72493, 3, 47, -18.76, -2.89, 0.21414, - 48, -41.1, -2.89, 2e-05, 46, 71.37, -41.51, 0.78584, 3, 47, -18.76, 1.38, 0.19077, 48, -41.1, 1.38, 0.00024, 46, 67.11, -41.79, 0.80899, 3, 47, -18.76, 7.5, 0.1765, 48, -41.1, 7.5, - 0.00116, 46, 61.01, -42.19, 0.82235, 4, 47, -16.28, 11.88, 0.15382, 48, -38.62, 11.88, 0.00307, 49, -61.54, 11.88, 1e-05, 46, 56.48, -40, 0.84309, 4, 47, -11.9, 19.61, 0.11079, 48, - -34.24, 19.61, 0.0029, 49, -57.16, 19.61, 0.00014, 46, 48.48, -36.13, 0.88617, 4, 47, 14.63, 66.47, 0.04584, 48, -7.7, 66.47, 0.00083, 49, -30.63, 66.47, 0.00037, 46, -0.01, -12.7, - 0.95296, 4, 47, 22.29, 66.47, 0.02247, 48, -0.04, 66.47, 0.00083, 49, -22.97, 66.47, 0.00288, 46, -0.51, -5.06, 0.97382, 4, 47, 27.54, 66.47, 0.01007, 48, 5.2, 66.47, 0.00155, 49, - -17.72, 66.47, 0.0104, 46, -0.85, 0.17, 0.97798, 4, 47, 34.04, 66.47, 0.00272, 48, 11.7, 66.47, 0.00045, 49, -11.22, 66.47, 0.02285, 46, -1.28, 6.66, 0.97398, 4, 47, 39.96, 66.47, - 0.00033, 48, 17.62, 66.47, 0.00011, 49, -5.3, 66.47, 0.0498, 46, -1.66, 12.57, 0.94976, 3, 47, -16.24, -2.91, 0.33437, 48, -38.58, -2.91, 0.0002, 46, 71.23, -39, 0.66543, 3, 47, - -14.53, 1.37, 0.32645, 48, -36.87, 1.37, 0.00078, 46, 66.85, -37.57, 0.67277, 4, 47, -12.36, 7.36, 0.307, 48, -34.7, 7.36, 0.00285, 49, -57.62, 7.36, 1e-05, 46, 60.73, -35.79, - 0.69014, 4, 47, -9.97, 11.91, 0.26477, 48, -32.31, 11.91, 0.00971, 49, -55.23, 11.91, 0.00027, 46, 56.04, -33.7, 0.72525, 4, 47, -6.21, 19.66, 0.19881, 48, -28.55, 19.66, 0.00959, - 49, -51.47, 19.66, 0.00132, 46, 48.05, -30.46, 0.79028, 4, 47, 24.46, 19.97, 0.10712, 48, 2.12, 19.97, 0.11704, 49, -20.8, 19.97, 0.11672, 46, 45.75, 0.12, 0.65912, 4, 47, 53.97, - 20.27, 0.00116, 48, 31.63, 20.27, 0.00313, 49, 8.71, 20.27, 0.2148, 46, 43.53, 29.55, 0.7809, 4, 47, 57.02, 12.2, 0.0001, 48, 34.68, 12.2, 0.00083, 49, 11.76, 12.2, 0.29942, 46, - 51.38, 33.12, 0.69965, 3, 48, 36.75, 5.8, 0.00034, 49, 13.82, 5.8, 0.378, 46, 57.63, 35.6, 0.62166, 3, 48, 38.1, 1.08, 0.00022, 49, 15.18, 1.08, 0.45653, 46, 62.25, 37.26, 0.54325, - 3, 48, 39.36, -3.36, 0.00015, 49, 16.43, -3.36, 0.53433, 46, 66.61, 38.8, 0.46552, 4, 47, 23.97, 12.06, 0.12565, 48, 1.63, 12.06, 0.24275, 49, -21.29, 12.06, 0.14114, 46, 53.68, - 0.15, 0.49046, 4, 47, 23.54, 6.58, 0.11007, 48, 1.2, 6.58, 0.47217, 49, -21.72, 6.58, 0.12893, 46, 59.17, 0.08, 0.28883, 4, 47, 23.28, 1.22, 0.10884, 48, 0.94, 1.22, 0.60558, 49, - -21.98, 1.22, 0.12698, 46, 64.53, 0.17, 0.1586, 4, 47, 23.11, -3.14, 0.10666, 48, 0.77, -3.14, 0.70334, 49, -22.15, -3.14, 0.12133, 46, 68.89, 0.28, 0.06866, 4, 47, 6.87, 19.8, - 0.29773, 48, -15.47, 19.8, 0.06022, 49, -38.39, 19.8, 0.01488, 46, 47.07, -17.41, 0.62717, 4, 47, 3.75, 11.97, 0.44072, 48, -18.59, 11.97, 0.09602, 49, -41.51, 11.97, 0.01064, 46, - 55.08, -20.02, 0.45261, 4, 47, 1.91, 7.05, 0.66419, 48, -20.42, 7.05, 0.11803, 49, -43.35, 7.05, 0.002, 46, 60.11, -21.53, 0.21579, 4, 47, 0.03, 1.31, 0.77187, 48, -22.31, 1.31, - 0.12352, 49, -45.23, 1.31, 0.00043, 46, 65.96, -23.04, 0.10418, 4, 47, -1.27, -2.99, 0.84303, 48, -23.61, -2.99, 0.11246, 49, -46.53, -2.99, 0.00018, 46, 70.34, -24.05, 0.04432, 4, - 47, -1.8, 26.91, 0.12744, 48, -24.14, 26.91, 0.00959, 49, -47.06, 26.91, 0.0076, 46, 40.54, -26.53, 0.85537, 4, 47, 24.96, 27.56, 0.0719, 48, 2.62, 27.56, 0.03639, 49, -20.3, 27.56, - 0.07572, 46, 38.14, 0.13, 0.81598, 4, 47, 50.76, 27.7, 0.00702, 48, 28.42, 27.7, 0.00523, 49, 5.5, 27.7, 0.131, 46, 36.32, 25.87, 0.85675, 4, 47, 3.83, 36.15, 0.04791, 48, -18.51, - 36.15, 0.00352, 49, -41.43, 36.15, 0.00803, 46, 30.95, -21.51, 0.94054, 4, 47, 25.65, 37.95, 0.02662, 48, 3.31, 37.95, 0.00775, 49, -19.61, 37.95, 0.02767, 46, 27.73, 0.14, 0.93795, - 4, 47, 46.64, 37.25, 0.00753, 48, 24.3, 37.25, 0.00227, 49, 1.38, 37.25, 0.04846, 46, 27.06, 21.14, 0.94174, 4, 47, 41.75, 20.15, 0.01306, 48, 19.41, 20.15, 0.04509, 49, -3.51, - 20.15, 0.32134, 46, 44.45, 17.37, 0.62052, 4, 47, 43.25, 12.14, 0.00895, 48, 20.91, 12.14, 0.07841, 49, -2.01, 12.14, 0.49568, 46, 52.34, 19.39, 0.41696, 4, 47, 44.35, 6.12, 0.0015, - 48, 22.01, 6.12, 0.09572, 49, -0.91, 6.12, 0.67014, 46, 58.27, 20.88, 0.23264, 4, 47, 45.08, 1.14, 0.00025, 48, 22.74, 1.14, 0.108, 49, -0.18, 1.14, 0.76841, 46, 63.2, 21.93, - 0.12334, 4, 47, 45.58, -3.27, 0.0001, 48, 23.24, -3.27, 0.10937, 49, 0.32, -3.27, 0.83473, 46, 67.56, 22.71, 0.0558, 4, 47, 40.33, 27.64, 0.02381, 48, 18, 27.64, 0.02132, 49, -4.93, - 27.64, 0.16866, 46, 37.06, 15.47, 0.78621, 4, 47, 9.71, 27.19, 0.16236, 48, -12.63, 27.19, 0.02827, 49, -35.55, 27.19, 0.02548, 46, 39.51, -15.06, 0.78388, 4, 47, 15.01, 19.88, - 0.23124, 48, -7.33, 19.88, 0.11759, 49, -30.25, 19.88, 0.04679, 46, 46.46, -9.29, 0.60438, 4, 47, 13.78, 12.01, 0.29354, 48, -8.56, 12.01, 0.19873, 49, -31.48, 12.01, 0.04427, 46, - 54.39, -10.01, 0.46346, 4, 47, 12.95, 6.81, 0.37869, 48, -9.39, 6.81, 0.34588, 49, -32.31, 6.81, 0.01968, 46, 59.63, -10.5, 0.25575, 4, 47, 11.95, 1.27, 0.42861, 48, -10.39, 1.27, - 0.42317, 49, -33.31, 1.27, 0.01297, 46, 65.23, -11.14, 0.13524, 4, 47, 11.29, -3.07, 0.46725, 48, -11.05, -3.07, 0.46538, 49, -33.97, -3.07, 0.0097, 46, 69.59, -11.51, 0.05768, 4, - 47, -0.59, 19.72, 0.32338, 48, -22.92, 19.72, 0.02881, 49, -45.85, 19.72, 0.003, 46, 47.63, -24.85, 0.64481, 4, 47, -3.82, 11.93, 0.4391, 48, -26.16, 11.93, 0.03345, 49, -49.08, - 11.93, 0.00177, 46, 55.61, -27.57, 0.52567, 4, 47, -5.89, 7.22, 0.65491, 48, -28.23, 7.22, 0.02015, 49, -51.15, 7.22, 0.00017, 46, 60.45, -29.33, 0.32476, 4, 47, -8.13, 1.34, - 0.75275, 48, -30.47, 1.34, 0.01396, 49, -53.39, 1.34, 1e-05, 46, 66.46, -31.18, 0.23328, 3, 47, -9.63, -2.94, 0.80478, 48, -31.96, -2.94, 0.00944, 46, 70.83, -32.39, 0.18578, 4, 47, - 33.3, 20.06, 0.04166, 48, 10.96, 20.06, 0.10286, 49, -11.96, 20.06, 0.24857, 46, 45.08, 8.94, 0.60691, 4, 47, 33.97, 12.1, 0.03817, 48, 11.63, 12.1, 0.17811, 49, -11.29, 12.1, - 0.32257, 46, 52.98, 10.13, 0.46115, 4, 47, 34.3, 6.34, 0.01531, 48, 11.97, 6.34, 0.31162, 49, -10.96, 6.34, 0.40881, 46, 58.71, 10.84, 0.26426, 4, 47, 34.72, 1.18, 0.00955, 48, - 12.39, 1.18, 0.39036, 49, -10.54, 1.18, 0.4561, 46, 63.83, 11.59, 0.14399, 4, 47, 34.8, -3.2, 0.00731, 48, 12.46, -3.2, 0.44195, 49, -10.46, -3.2, 0.48699, 46, 68.2, 11.96, 0.06375, - 4, 47, 48.21, 20.21, 0.00241, 48, 25.88, 20.21, 0.01421, 49, 2.95, 20.21, 0.36275, 46, 43.96, 23.82, 0.62063, 4, 47, 50.54, 12.17, 0.00034, 48, 28.2, 12.17, 0.01068, 49, 5.28, 12.17, - 0.5453, 46, 51.83, 26.66, 0.44368, 4, 47, 52.52, 5.95, 2e-05, 48, 30.19, 5.95, 0.00999, 49, 7.26, 5.95, 0.66888, 46, 57.92, 29.04, 0.32111, 3, 48, 31.52, 1.11, 0.01011, 49, 8.6, - 1.11, 0.76268, 46, 62.66, 30.7, 0.22721, 3, 48, 32.61, -3.32, 0.00863, 49, 9.68, -3.32, 0.83296, 46, 67.01, 32.06, 0.15841, 4, 47, -9.21, 7.29, 0.52586, 48, -31.55, 7.29, 0.0057, 49, - -54.47, 7.29, 1e-05, 46, 60.59, -32.65, 0.46842, 3, 47, -11.3, 1.36, 0.56698, 48, -33.64, 1.36, 0.00311, 46, 66.65, -34.34, 0.42991, 3, 47, -12.66, -2.93, 0.60013, 48, -35, -2.93, - 0.00167, 46, 71.01, -35.42, 0.39821, 4, 47, -5.46, -2.97, 0.89102, 48, -27.8, -2.97, 0.03888, 49, -50.72, -2.97, 1e-05, 46, 70.59, -28.24, 0.07008, 4, 47, -4.18, 1.33, 0.83362, 48, - -26.52, 1.33, 0.04645, 49, -49.44, 1.33, 3e-05, 46, 66.21, -27.24, 0.1199, 4, 47, -2.26, 7.14, 0.75973, 48, -24.6, 7.14, 0.05134, 49, -47.52, 7.14, 0.00026, 46, 60.29, -25.7, - 0.18867, 4, 47, 7.35, 6.93, 0.57235, 48, -14.98, 6.93, 0.23863, 49, -37.91, 6.93, 0.00435, 46, 59.87, -16.09, 0.18467, 4, 47, 5.9, 1.29, 0.63011, 48, -16.44, 1.29, 0.25936, 49, - -39.36, 1.29, 0.00243, 46, 65.6, -17.18, 0.1081, 4, 47, 4.86, -3.03, 0.68809, 48, -17.48, -3.03, 0.26358, 49, -40.4, -3.03, 0.00168, 46, 69.98, -17.93, 0.04665, 4, 47, 17.76, 6.7, - 0.22941, 48, -4.58, 6.7, 0.4879, 49, -27.5, 6.7, 0.05094, 46, 59.42, -5.7, 0.23175, 4, 47, 17.11, 1.25, 0.24296, 48, -5.23, 1.25, 0.56856, 49, -28.15, 1.25, 0.04581, 46, 64.91, - -5.99, 0.14267, 4, 47, 16.71, -3.1, 0.25552, 48, -5.62, -3.1, 0.64168, 49, -28.55, -3.1, 0.03992, 46, 69.27, -6.1, 0.06288, 4, 47, 28.55, -3.17, 0.03276, 48, 6.22, -3.17, 0.62363, - 49, -16.71, -3.17, 0.27658, 46, 68.57, 5.72, 0.06703, 4, 47, 28.55, 1.2, 0.0367, 48, 6.21, 1.21, 0.54514, 49, -16.71, 1.21, 0.26974, 46, 64.21, 5.43, 0.14843, 4, 47, 28.71, 6.47, - 0.04075, 48, 6.37, 6.47, 0.46337, 49, -16.55, 6.47, 0.25797, 46, 58.95, 5.25, 0.23791, 4, 47, 39.28, 6.23, 0.00305, 48, 16.94, 6.24, 0.20572, 49, -5.98, 6.24, 0.59307, 46, 58.49, - 15.81, 0.19817, 4, 47, 39.51, 1.16, 0.00156, 48, 17.17, 1.16, 0.23228, 49, -5.75, 1.16, 0.64631, 46, 63.54, 16.37, 0.11984, 4, 47, 40.07, -3.24, 0.00112, 48, 17.74, -3.24, 0.25061, - 49, -5.19, -3.24, 0.69415, 46, 67.89, 17.22, 0.05412, 4, 47, 50.23, -3.29, 0, 48, 27.89, -3.29, 0.036, 49, 4.97, -3.29, 0.88144, 46, 67.29, 27.36, 0.08255, 4, 47, 49.51, 1.13, 2e-05, - 48, 27.17, 1.13, 0.03826, 49, 4.25, 1.13, 0.81357, 46, 62.92, 26.35, 0.14816, 4, 47, 48.55, 6.03, 0.00027, 48, 26.22, 6.03, 0.03577, 49, 3.29, 6.03, 0.72045, 46, 58.09, 25.08, - 0.24351, 4, 47, 47.11, 12.16, 0.00156, 48, 24.77, 12.16, 0.03311, 49, 1.85, 12.16, 0.61234, 46, 52.07, 23.24, 0.35299, 4, 47, 53.99, 12.19, 1e-05, 48, 31.66, 12.19, 0.00266, 49, - 8.73, 12.19, 0.47035, 46, 51.59, 30.11, 0.52698, 3, 48, 33.02, 5.88, 0.00213, 49, 10.1, 5.88, 0.54797, 46, 57.79, 31.88, 0.4499, 3, 48, 34.54, 1.1, 0.0018, 49, 11.62, 1.1, 0.63247, - 46, 62.47, 33.7, 0.36573, 3, 48, 35.58, -3.34, 0.00152, 49, 12.66, -3.34, 0.71351, 46, 66.83, 35.03, 0.28497, 3, 47, -17.72, -6.71, 0.31251, 48, -40.05, -6.71, 1e-05, 46, 75.11, - -40.22, 0.68748, 3, 47, -13.83, -6.56, 0.64755, 48, -36.17, -6.56, 0.00038, 46, 74.72, -36.36, 0.35207, 3, 47, -10.89, -6.57, 0.83546, 48, -33.23, -6.57, 0.00245, 46, 74.53, -33.42, - 0.1621, 3, 47, -6.58, -6.39, 0.9505, 48, -28.91, -6.39, 0.02598, 46, 74.07, -29.13, 0.02352, 4, 47, -2.51, -6.41, 0.9185, 48, -24.85, -6.41, 0.06986, 49, -47.77, -6.41, 1e-05, 46, - 73.83, -25.07, 0.01163, 4, 47, 3.97, -6.54, 0.7539, 48, -18.37, -6.54, 0.23416, 49, -41.29, -6.54, 0.00019, 46, 73.54, -18.6, 0.01175, 4, 47, 10.73, -6.3, 0.4945, 48, -11.61, -6.29, - 0.48778, 49, -34.53, -6.29, 0.00242, 46, 72.85, -11.87, 0.01529, 4, 47, 16.42, -6.31, 0.24467, 48, -5.92, -6.31, 0.71967, 49, -28.84, -6.31, 0.01969, 46, 72.5, -6.18, 0.01597, 4, 47, - 22.88, -6.46, 0.08074, 48, 0.54, -6.46, 0.81091, 49, -22.38, -6.46, 0.09131, 46, 72.22, 0.27, 0.01704, 4, 47, 28.51, -6.42, 0.01543, 48, 6.17, -6.42, 0.70591, 49, -16.75, -6.42, - 0.26031, 46, 71.82, 5.89, 0.01836, 4, 47, 34.97, -6.29, 0.00164, 48, 12.64, -6.29, 0.47309, 49, -10.29, -6.29, 0.50689, 46, 71.27, 12.33, 0.01837, 4, 47, 40.42, -6.47, 0.0001, 48, - 18.08, -6.47, 0.23958, 49, -4.84, -6.47, 0.7461, 46, 71.1, 17.78, 0.01421, 4, 47, 45.89, -6.5, 0, 48, 23.56, -6.5, 0.08431, 49, 0.63, -6.5, 0.9025, 46, 70.76, 23.24, 0.01319, 3, 48, - 28.36, -6.37, 0.01867, 49, 5.43, -6.37, 0.94991, 46, 70.33, 28.02, 0.03142, 3, 48, 33.31, -6.41, 0.00244, 49, 10.39, -6.41, 0.88788, 46, 70.05, 32.97, 0.10968, 3, 48, 36.23, -6.46, - 0.00046, 49, 13.31, -6.46, 0.80558, 46, 69.91, 35.88, 0.19395, 3, 48, 40.12, -6.31, 1e-05, 49, 17.2, -6.31, 0.61334, 46, 69.5, 39.76, 0.38665, 4, 47, 0.4, -6.47, 0.86555, 48, -21.94, - -6.47, 0.12959, 49, -44.86, -6.47, 1e-05, 46, 73.7, -22.16, 0.00485, 3, 47, -9.01, -6.49, 0.93616, 48, -31.35, -6.49, 0.00716, 46, 74.33, -31.55, 0.05668, 3, 47, -16.19, -6.65, - 0.44814, 48, -38.53, -6.65, 3e-05, 46, 74.96, -38.7, 0.55184, 4, 47, 7.48, -6.41, 0.63866, 48, -14.86, -6.41, 0.354, 49, -37.78, -6.41, 0.00037, 46, 73.18, -15.1, 0.00698, 4, 47, - 13.4, -6.3, 0.36468, 48, -8.94, -6.3, 0.62161, 49, -31.86, -6.3, 0.00581, 46, 72.69, -9.2, 0.0079, 4, 47, 19.68, -6.38, 0.14684, 48, -2.65, -6.38, 0.80383, 49, -25.58, -6.38, - 0.04176, 46, 72.36, -2.92, 0.00757, 4, 47, 25.54, -6.44, 0.03499, 48, 3.2, -6.44, 0.79745, 49, -19.72, -6.44, 0.15898, 46, 72.03, 2.92, 0.00858, 4, 47, 31.96, -6.35, 0.00417, 48, - 9.62, -6.35, 0.60634, 49, -13.3, -6.35, 0.37927, 46, 71.53, 9.32, 0.01022, 4, 47, 37.62, -6.38, 0.00021, 48, 15.28, -6.38, 0.35157, 49, -7.64, -6.38, 0.63918, 46, 71.18, 14.97, - 0.00904, 4, 47, 43.32, -6.48, 1e-05, 48, 20.98, -6.48, 0.14688, 49, -1.94, -6.48, 0.84692, 46, 70.92, 20.67, 0.00619, 3, 48, 25.81, -6.44, 0.03919, 49, 2.89, -6.44, 0.95006, 46, - 70.56, 25.48, 0.01074, 3, 48, 30.92, -6.39, 0.00591, 49, 7.99, -6.39, 0.9433, 46, 70.18, 30.58, 0.05079, 3, 48, 38.04, -6.39, 5e-05, 49, 15.12, -6.39, 0.72615, 46, 69.72, 37.69, - 0.2738 - ], - "hull": 46, - "edges": [ - 80, 82, 90, 0, 10, 8, 70, 72, 72, 74, 74, 76, 4, 6, 6, 8, 76, 78, 78, 80, 4, 2, 2, 0, 72, 92, 74, 94, 92, 94, 76, 96, 94, 96, 78, 98, 96, 98, 80, 100, 98, 100, 82, 84, 84, 86, 86, - 88, 88, 90, 0, 104, 2, 106, 104, 106, 4, 108, 106, 108, 6, 110, 108, 110, 8, 112, 110, 112, 10, 12, 102, 114, 114, 116, 116, 118, 118, 120, 122, 124, 124, 126, 126, 128, 128, 130, - 132, 100, 134, 102, 136, 104, 84, 138, 138, 132, 86, 140, 140, 134, 138, 140, 88, 142, 142, 136, 140, 142, 144, 146, 146, 148, 148, 150, 150, 152, 134, 154, 154, 136, 144, 154, 132, - 156, 156, 134, 122, 156, 102, 158, 158, 122, 114, 160, 160, 124, 158, 160, 160, 162, 162, 164, 164, 166, 100, 168, 168, 122, 98, 170, 170, 124, 168, 170, 170, 172, 172, 174, 174, - 176, 102, 178, 178, 144, 114, 180, 180, 146, 178, 180, 180, 182, 182, 184, 184, 186, 104, 188, 188, 144, 188, 190, 190, 192, 192, 194, 194, 196, 96, 198, 198, 172, 94, 200, 200, 174, - 198, 200, 92, 202, 202, 176, 200, 202, 64, 66, 58, 60, 130, 204, 204, 176, 128, 206, 206, 174, 204, 206, 126, 208, 208, 172, 206, 208, 126, 210, 210, 162, 128, 212, 212, 164, 210, - 212, 130, 214, 214, 166, 212, 214, 116, 216, 216, 162, 118, 218, 218, 164, 216, 218, 120, 220, 220, 166, 218, 220, 120, 222, 222, 186, 118, 224, 224, 184, 222, 224, 116, 226, 226, - 182, 224, 226, 148, 228, 228, 182, 150, 230, 230, 184, 228, 230, 152, 232, 232, 186, 230, 232, 152, 234, 234, 196, 150, 236, 236, 194, 234, 236, 148, 238, 238, 192, 236, 238, 146, - 240, 240, 190, 238, 240, 106, 242, 242, 190, 108, 244, 244, 192, 242, 244, 110, 246, 246, 194, 244, 246, 112, 248, 248, 196, 246, 248, 16, 18, 70, 250, 250, 92, 66, 252, 252, 202, - 64, 254, 254, 176, 252, 254, 60, 256, 256, 204, 58, 258, 258, 130, 256, 258, 54, 260, 260, 214, 50, 262, 262, 166, 46, 264, 264, 220, 42, 266, 266, 120, 38, 268, 268, 222, 34, 270, - 270, 186, 30, 272, 272, 232, 26, 274, 274, 152, 22, 276, 276, 234, 18, 278, 278, 196, 16, 280, 280, 248, 278, 280, 12, 282, 282, 112, 258, 284, 284, 260, 54, 56, 56, 58, 284, 56, - 254, 286, 286, 256, 60, 62, 62, 64, 286, 62, 250, 288, 288, 252, 66, 68, 68, 70, 288, 68, 260, 290, 290, 262, 50, 52, 52, 54, 290, 52, 262, 292, 292, 264, 46, 48, 48, 50, 292, 48, - 264, 294, 294, 266, 42, 44, 44, 46, 294, 44, 266, 296, 296, 268, 38, 40, 40, 42, 296, 40, 268, 298, 298, 270, 34, 36, 36, 38, 298, 36, 270, 300, 300, 272, 30, 32, 32, 34, 300, 32, - 272, 302, 302, 274, 26, 28, 28, 30, 302, 28, 274, 304, 304, 276, 22, 24, 24, 26, 304, 24, 276, 306, 306, 278, 18, 20, 20, 22, 306, 20, 280, 308, 308, 282, 12, 14, 14, 16, 308, 14 - ], - "width": 88, - "height": 80, - "path": "summer-as.ear-left-bubble" - } - }, - "ear-left-dot-01": {"ear-left-dot": {"x": 0.12, "y": 0.57, "rotation": -0.95, "width": 18, "height": 17, "path": "summer-as.ear-left-dot"}}, - "ear-left-dot-02": {"ear-left-dot": {"x": 0.12, "y": 0.57, "rotation": -0.95, "width": 18, "height": 17, "path": "summer-as.ear-left-dot"}}, - "ear-left-dot-03": {"ear-left-dot": {"x": 0.12, "y": 0.57, "rotation": -0.95, "width": 18, "height": 17, "path": "summer-as.ear-left-dot"}}, - "ear-left-dot-04": {"ear-left-dot": {"x": 0.12, "y": 0.57, "rotation": -0.95, "width": 18, "height": 17, "path": "summer-as.ear-left-dot"}}, - "ear-left-dot-05": {"ear-left-dot": {"x": 0.12, "y": 0.57, "rotation": -0.95, "width": 18, "height": 17, "path": "summer-as.ear-left-dot"}}, - "ear-left-dot-06": {"ear-left-dot": {"x": 0.12, "y": 0.57, "rotation": -0.95, "width": 18, "height": 17, "path": "summer-as.ear-left-dot"}}, - "ear-left-dot-07": {"ear-left-dot": {"x": 0.12, "y": 0.57, "rotation": -0.95, "width": 18, "height": 17, "path": "summer-as.ear-left-dot"}}, - "ear-left-dot-08": {"ear-left-dot": {"x": 0.12, "y": 0.57, "rotation": -0.95, "width": 18, "height": 17, "path": "summer-as.ear-left-dot"}}, - "ear-left-dot-09": {"ear-left-dot": {"x": 0.12, "y": 0.57, "rotation": -0.95, "width": 18, "height": 17, "path": "summer-as.ear-left-dot"}}, - "ear-left-dot-10": {"ear-left-dot": {"x": 0.12, "y": 0.57, "rotation": -0.95, "width": 18, "height": 17, "path": "summer-as.ear-left-dot"}}, - "ear-left-dot-11": {"ear-left-dot": {"x": 0.12, "y": 0.57, "rotation": -0.95, "width": 18, "height": 17, "path": "summer-as.ear-left-dot"}}, - "ear-left-dot-12": {"ear-left-dot": {"x": 0.12, "y": 0.57, "rotation": -0.95, "width": 18, "height": 17, "path": "summer-as.ear-left-dot"}}, - "ear-left-under": {"ear-left-under": {"x": 84.11, "y": -23.37, "rotation": -90, "width": 128, "height": 218, "path": "summer-as.ear-left-under"}}, - "ear-left-upper": {"ear-left-upper": {"x": 85.61, "y": -23.87, "rotation": -90, "width": 145, "height": 231, "path": "summer-as.ear-left-upper"}}, - "ear-right-bubble": { - "ear-right-bubble": { - "type": "mesh", - "uvs": [ - 0.93928, 0.50958, 0.95558, 0.59885, 0.96791, 0.66638, 0.98006, 0.73289, 1, 0.84205, 1, 0.89818, 1, 0.9625, 0.9567, 0.9625, 0.9208, 0.9625, 0.88771, 0.9625, 0.83969, 0.9625, 0.79967, - 0.9625, 0.76574, 0.9625, 0.73418, 0.9625, 0.69508, 0.9625, 0.6661, 0.9625, 0.6319, 0.9625, 0.6046, 0.9625, 0.57454, 0.9625, 0.53755, 0.9625, 0.50387, 0.9625, 0.47341, 0.9625, - 0.44466, 0.9625, 0.41233, 0.9625, 0.37317, 0.9625, 0.33787, 0.9625, 0.30333, 0.9625, 0.2648, 0.9625, 0.21937, 0.9625, 0.17434, 0.9625, 0.12959, 0.9625, 0.08769, 0.9625, 0, 0.9625, - 0.02085, 0.89779, 0.04055, 0.83664, 0.06626, 0.75682, 0.08854, 0.68766, 0.11527, 0.60468, 0.13788, 0.53451, 0.35753, 0.0375, 0.43128, 0.0375, 0.52161, 0.0375, 0.60662, 0.0375, - 0.67954, 0.0375, 0.54109, 0.5336, 0.30907, 0.53412, 0.75362, 0.52077, 0.84707, 0.51514, 0.2081, 0.53435, 0.42115, 0.53387, 0.64269, 0.52747, 0.1892, 0.60156, 0.3018, 0.60447, - 0.41972, 0.60346, 0.54053, 0.60135, 0.64648, 0.59785, 0.76151, 0.59644, 0.87262, 0.58988, 0.16806, 0.67676, 0.29497, 0.67061, 0.41838, 0.66857, 0.54, 0.66508, 0.65011, 0.66538, - 0.7681, 0.65967, 0.89666, 0.66021, 0.14733, 0.75044, 0.28705, 0.74721, 0.41688, 0.74143, 0.53942, 0.73556, 0.6538, 0.73393, 0.7757, 0.7326, 0.91933, 0.7265, 0.12337, 0.83566, 0.2782, - 0.83283, 0.4151, 0.82771, 0.53871, 0.82207, 0.65852, 0.82169, 0.7847, 0.8189, 0.95379, 0.82732, 0.97627, 0.89309, 0.79208, 0.88971, 0.66236, 0.89294, 0.5381, 0.89586, 0.41375, - 0.89349, 0.2717, 0.89571, 0.10571, 0.89844, 0.53197, 0.30141, 0.39415, 0.1884, 0.65961, 0.2117, 0.25473, 0.53425, 0.24202, 0.60293, 0.22911, 0.6738, 0.21379, 0.7489, 0.19729, - 0.83431, 0.18704, 0.8971, 0.36352, 0.534, 0.36013, 0.60397, 0.35748, 0.66957, 0.35288, 0.74428, 0.34802, 0.83022, 0.34383, 0.89458, 0.48024, 0.53373, 0.47847, 0.60244, 0.47433, - 0.66696, 0.47563, 0.73861, 0.47402, 0.82502, 0.47337, 0.89463, 0.58955, 0.53067, 0.59344, 0.5996, 0.59605, 0.66523, 0.5961, 0.73475, 0.60032, 0.82187, 0.60296, 0.89434, 0.69391, - 0.52438, 0.69915, 0.59721, 0.70691, 0.66263, 0.71206, 0.7333, 0.71954, 0.82034, 0.72813, 0.8913, 0.80125, 0.5179, 0.81428, 0.59333, 0.8348, 0.65995, 0.84793, 0.72953, 0.87862, - 0.82358, 0.89305, 0.89156, 0.19669, 0.67537, 0.17782, 0.74974, 0.1594, 0.835, 0.1429, 0.89783, 0.26012, 0.6723, 0.25017, 0.74806, 0.23685, 0.83359, 0.22589, 0.89647, 0.30659, - 0.89517, 0.3131, 0.83153, 0.31569, 0.74593, 0.32231, 0.67016, 0.38717, 0.66908, 0.38553, 0.74282, 0.38068, 0.829, 0.37648, 0.89407, 0.44462, 0.89408, 0.44322, 0.82643, 0.44458, - 0.7401, 0.44621, 0.66777, 0.50711, 0.66602, 0.50646, 0.73714, 0.50582, 0.82357, 0.50482, 0.89523, 0.57134, 0.89508, 0.5687, 0.82197, 0.56865, 0.73514, 0.5654, 0.66515, 0.62192, - 0.6653, 0.6236, 0.73436, 0.62525, 0.8218, 0.62839, 0.89374, 0.69427, 0.89215, 0.76244, 0.89045, 0.84047, 0.89059, 0.93306, 0.89229, 0.91732, 0.8255, 0.82617, 0.82097, 0.75013, - 0.81967, 0.6863, 0.82108, 0.68017, 0.73364, 0.74166, 0.73297, 0.80979, 0.73115, 0.88285, 0.72805, 0.86581, 0.66008, 0.79931, 0.6598, 0.73613, 0.66121, 0.67214, 0.66431, 0.09776, - 0.92671, 0.13724, 0.92534, 0.1817, 0.92459, 0.22313, 0.92439, 0.26892, 0.92268, 0.30526, 0.92265, 0.34139, 0.92236, 0.3751, 0.92252, 0.41313, 0.92351, 0.44464, 0.92289, 0.47339, - 0.92339, 0.5044, 0.9248, 0.53787, 0.92389, 0.57268, 0.92341, 0.60366, 0.9233, 0.62995, 0.92432, 0.66398, 0.92316, 0.69464, 0.92383, 0.73085, 0.92333, 0.76403, 0.92521, 0.79572, - 0.92461, 0.84011, 0.92404, 0.89075, 0.92209, 0.92774, 0.92274, 0.96706, 0.92576 - ], - "triangles": [ - 166, 63, 70, 116, 171, 166, 165, 115, 116, 77, 70, 167, 163, 166, 70, 163, 70, 77, 117, 116, 166, 117, 166, 163, 77, 167, 162, 164, 165, 116, 164, 116, 117, 76, 69, 165, 76, 165, - 164, 162, 122, 123, 80, 77, 162, 158, 163, 77, 158, 77, 80, 159, 162, 123, 80, 162, 159, 118, 117, 163, 118, 163, 158, 124, 123, 161, 159, 123, 124, 157, 164, 117, 157, 117, 118, 81, - 76, 164, 81, 164, 157, 195, 159, 124, 196, 124, 160, 195, 124, 196, 189, 81, 157, 191, 118, 158, 190, 157, 118, 190, 118, 191, 189, 157, 190, 159, 193, 80, 194, 159, 195, 194, 193, - 159, 192, 158, 80, 192, 80, 193, 191, 158, 192, 15, 189, 190, 14, 190, 191, 15, 190, 14, 13, 191, 192, 14, 191, 13, 12, 192, 193, 13, 192, 12, 11, 193, 194, 12, 193, 11, 10, 11, 194, - 9, 194, 195, 10, 194, 9, 8, 195, 196, 9, 195, 8, 8, 196, 7, 151, 109, 110, 68, 152, 151, 146, 145, 68, 104, 103, 146, 155, 154, 69, 155, 69, 76, 111, 110, 154, 111, 154, 155, 150, - 151, 110, 150, 110, 111, 68, 151, 150, 75, 146, 68, 75, 68, 150, 147, 104, 146, 147, 146, 75, 105, 143, 104, 105, 104, 147, 142, 67, 143, 142, 143, 105, 74, 67, 142, 156, 155, 76, - 156, 76, 81, 106, 141, 142, 74, 142, 141, 83, 74, 141, 112, 111, 155, 112, 155, 156, 105, 106, 142, 149, 150, 111, 149, 111, 112, 148, 105, 147, 106, 105, 148, 82, 75, 150, 82, 148, - 147, 147, 75, 82, 150, 149, 82, 182, 141, 106, 187, 112, 156, 183, 106, 148, 182, 106, 183, 186, 149, 112, 186, 112, 187, 182, 181, 83, 182, 83, 141, 185, 148, 82, 185, 82, 149, 185, - 149, 186, 188, 156, 81, 188, 81, 189, 187, 156, 188, 184, 183, 148, 184, 148, 185, 22, 182, 183, 181, 182, 22, 23, 181, 22, 21, 183, 184, 22, 183, 21, 20, 21, 184, 19, 184, 185, 20, - 184, 19, 18, 186, 187, 19, 185, 186, 18, 19, 186, 17, 187, 188, 18, 187, 17, 16, 188, 189, 17, 188, 16, 16, 189, 15, 143, 144, 104, 110, 153, 154, 151, 152, 109, 68, 145, 61, 68, 61, - 152, 146, 103, 145, 83, 139, 74, 181, 140, 83, 23, 180, 181, 138, 137, 67, 98, 136, 97, 98, 97, 138, 135, 59, 136, 135, 136, 98, 66, 59, 135, 130, 129, 66, 74, 138, 67, 139, 98, 138, - 139, 138, 74, 99, 135, 98, 99, 98, 139, 134, 66, 135, 134, 135, 99, 73, 130, 66, 73, 66, 134, 131, 92, 130, 131, 130, 73, 93, 92, 131, 140, 99, 139, 140, 139, 83, 100, 134, 99, 100, - 99, 140, 133, 73, 134, 133, 134, 100, 84, 131, 73, 84, 73, 133, 132, 93, 131, 132, 131, 84, 94, 127, 93, 94, 93, 132, 128, 127, 94, 179, 133, 100, 180, 100, 140, 179, 100, 180, 178, - 84, 133, 178, 133, 179, 177, 132, 84, 177, 84, 178, 180, 140, 181, 176, 94, 132, 176, 132, 177, 175, 128, 94, 175, 94, 176, 174, 85, 128, 174, 128, 175, 30, 173, 174, 31, 173, 30, - 29, 174, 175, 30, 174, 29, 28, 175, 176, 29, 175, 28, 27, 176, 177, 28, 176, 27, 26, 177, 178, 27, 177, 26, 25, 178, 179, 26, 178, 25, 24, 179, 180, 25, 179, 24, 24, 180, 23, 79, 4, - 5, 79, 78, 4, 6, 79, 5, 123, 168, 161, 160, 78, 79, 124, 161, 160, 7, 196, 197, 196, 160, 197, 197, 160, 79, 160, 161, 78, 7, 197, 6, 162, 167, 122, 6, 197, 79, 85, 72, 128, 173, 32, - 85, 31, 32, 173, 173, 85, 174, 85, 32, 33, 66, 129, 59, 167, 170, 121, 167, 121, 122, 70, 63, 170, 70, 170, 167, 166, 171, 63, 123, 122, 168, 130, 91, 129, 92, 91, 130, 122, 169, - 168, 127, 65, 126, 72, 65, 127, 92, 125, 91, 161, 168, 71, 122, 121, 169, 170, 120, 121, 91, 90, 129, 78, 161, 71, 3, 78, 71, 71, 64, 2, 52, 129, 90, 59, 129, 52, 67, 60, 143, 138, - 97, 137, 170, 63, 56, 171, 56, 63, 169, 121, 57, 33, 34, 85, 72, 35, 65, 34, 35, 72, 125, 51, 91, 35, 36, 65, 91, 51, 90, 36, 37, 58, 58, 37, 51, 71, 2, 3, 64, 1, 2, 1, 64, 57, 57, - 0, 1, 87, 39, 40, 88, 42, 43, 88, 86, 41, 88, 41, 42, 0, 88, 43, 47, 88, 0, 86, 88, 113, 47, 119, 88, 119, 46, 88, 46, 113, 88, 50, 86, 113, 107, 86, 50, 44, 86, 107, 87, 41, 86, 41, - 87, 40, 101, 86, 44, 87, 86, 95, 101, 49, 86, 87, 38, 39, 49, 95, 86, 87, 95, 45, 87, 45, 89, 87, 89, 48, 87, 48, 38, 57, 47, 0, 120, 119, 47, 56, 46, 119, 56, 119, 120, 114, 113, - 46, 114, 46, 56, 55, 50, 113, 55, 113, 114, 108, 107, 50, 55, 108, 50, 54, 101, 44, 44, 107, 108, 54, 44, 108, 102, 49, 101, 102, 101, 54, 90, 48, 89, 53, 95, 49, 53, 49, 102, 96, - 45, 95, 96, 95, 53, 52, 89, 45, 52, 45, 96, 90, 89, 52, 171, 114, 56, 115, 114, 171, 172, 55, 114, 172, 114, 115, 54, 145, 102, 152, 54, 108, 61, 54, 152, 153, 109, 108, 55, 153, - 108, 152, 108, 109, 55, 62, 153, 172, 62, 55, 61, 145, 54, 102, 144, 53, 103, 102, 145, 103, 144, 102, 53, 137, 96, 60, 53, 144, 60, 137, 53, 96, 136, 52, 97, 96, 137, 97, 136, 96, - 69, 62, 172, 154, 153, 62, 110, 109, 153, 144, 103, 104, 143, 60, 144, 67, 137, 60, 120, 47, 57, 121, 120, 57, 64, 169, 57, 78, 3, 4, 51, 38, 48, 51, 48, 90, 37, 38, 51, 58, 51, 125, - 65, 36, 58, 120, 170, 56, 154, 62, 69, 116, 115, 171, 165, 172, 115, 69, 172, 165, 59, 52, 136, 126, 58, 125, 65, 58, 126, 168, 169, 64, 168, 64, 71, 85, 34, 72, 126, 125, 92, 93, - 126, 92, 127, 126, 93, 128, 72, 127 - ], - "vertices": [ - 1, 31, 39.72, 33.4, 1, 1, 31, 46.93, 34.38, 1, 1, 31, 52.37, 35.12, 1, 1, 31, 58.6, 36.08, 1, 4, 31, 66.62, 38.45, 0.9295, 36, 61.48, 0.37, 1e-05, 37, 40.07, 0.48, 0.00266, 38, 18.6, - 0.48, 0.06784, 4, 31, 70.87, 39.07, 0.79905, 36, 62.32, -3.84, 1e-05, 37, 40.92, -3.73, 0.00721, 38, 19.44, -3.73, 0.19373, 4, 31, 76.95, 40.59, 0.74731, 36, 64.15, -9.83, 0, 37, - 42.75, -9.72, 0.00973, 38, 21.27, -9.72, 0.24296, 4, 31, 76.59, 36.12, 0.54785, 36, 59.68, -9.71, 1e-05, 37, 38.27, -9.6, 0.02168, 38, 16.8, -9.6, 0.43046, 4, 31, 76.3, 32.42, - 0.43038, 36, 55.96, -9.61, 3e-05, 37, 34.56, -9.5, 0.03847, 38, 13.08, -9.5, 0.53112, 4, 31, 76.02, 29.01, 0.36035, 36, 52.54, -9.51, 9e-05, 37, 31.14, -9.41, 0.06275, 38, 9.66, - -9.41, 0.57681, 4, 31, 75.63, 24.06, 0.2889, 36, 47.58, -9.38, 0.00026, 37, 26.17, -9.27, 0.09917, 38, 4.7, -9.27, 0.61167, 4, 31, 75.3, 19.93, 0.22591, 36, 43.44, -9.26, 0.0007, 37, - 22.03, -9.16, 0.14876, 38, 0.56, -9.16, 0.62463, 4, 31, 75.15, 17.12, 0.17724, 36, 40.62, -9.26, 0.0017, 37, 19.22, -9.16, 0.21115, 38, -2.26, -9.16, 0.60991, 4, 31, 75.01, 14.5, - 0.14418, 36, 38, -9.26, 0.00385, 37, 16.6, -9.16, 0.28407, 38, -4.88, -9.16, 0.5679, 4, 31, 74.84, 11.26, 0.12448, 36, 34.76, -9.26, 0.00813, 37, 13.35, -9.16, 0.36326, 38, -8.12, - -9.16, 0.50413, 4, 31, 74.71, 8.86, 0.11438, 36, 32.35, -9.26, 0.016, 37, 10.95, -9.16, 0.44276, 38, -10.53, -9.16, 0.42686, 4, 31, 74.56, 6.02, 0.11006, 36, 29.51, -9.26, 0.02948, - 37, 8.11, -9.16, 0.51561, 38, -13.37, -9.16, 0.34486, 4, 31, 74.45, 3.76, 0.10858, 36, 27.25, -9.26, 0.05095, 37, 5.84, -9.16, 0.57474, 38, -15.63, -9.16, 0.26573, 4, 31, 74.31, - 1.27, 0.10802, 36, 24.75, -9.26, 0.08291, 37, 3.35, -9.16, 0.614, 38, -18.13, -9.16, 0.19506, 4, 31, 74.15, -1.8, 0.1074, 36, 21.68, -9.26, 0.12742, 37, 0.28, -9.16, 0.62906, 38, - -21.2, -9.16, 0.13612, 4, 31, 74.01, -4.59, 0.10634, 36, 18.89, -9.26, 0.18549, 37, -2.52, -9.16, 0.61812, 38, -23.99, -9.16, 0.09006, 4, 31, 73.87, -7.11, 0.10502, 36, 16.36, -9.26, - 0.25646, 37, -5.05, -9.16, 0.58221, 38, -26.52, -9.16, 0.05631, 4, 31, 73.75, -9.5, 0.10419, 36, 13.97, -9.26, 0.33753, 37, -7.43, -9.16, 0.52513, 38, -28.91, -9.16, 0.03316, 4, 31, - 73.61, -12.18, 0.10536, 36, 11.29, -9.26, 0.42349, 37, -10.12, -9.16, 0.45282, 38, -31.59, -9.16, 0.01833, 4, 31, 73.44, -15.42, 0.11098, 36, 8.04, -9.26, 0.50701, 37, -13.37, -9.16, - 0.37254, 38, -34.84, -9.16, 0.00948, 4, 31, 73.28, -18.35, 0.12436, 36, 5.11, -9.26, 0.57939, 37, -16.3, -9.16, 0.29168, 38, -37.77, -9.16, 0.00457, 4, 31, 73.13, -21.21, 0.149, 36, - 2.24, -9.26, 0.63222, 37, -19.16, -9.16, 0.21673, 38, -40.64, -9.16, 0.00205, 4, 31, 72.96, -24.4, 0.18726, 36, -0.96, -9.26, 0.65948, 37, -22.36, -9.16, 0.15241, 38, -43.84, -9.16, - 0.00085, 4, 31, 72.77, -28.17, 0.23866, 36, -4.73, -9.26, 0.65975, 37, -26.13, -9.16, 0.10126, 38, -47.61, -9.16, 0.00033, 4, 31, 72.57, -31.9, 0.29871, 36, -8.46, -9.26, 0.63741, - 37, -29.87, -9.16, 0.06376, 38, -51.34, -9.16, 0.00012, 4, 31, 72.37, -35.61, 0.35932, 36, -12.18, -9.26, 0.60181, 37, -33.58, -9.16, 0.03884, 38, -55.06, -9.16, 4e-05, 4, 31, 72.19, - -39.08, 0.49297, 36, -15.66, -9.26, 0.48586, 37, -37.06, -9.16, 0.02116, 38, -58.54, -9.16, 1e-05, 4, 31, 71.81, -46.35, 0.66969, 36, -22.93, -9.26, 0.32512, 37, -44.34, -9.16, - 0.00518, 38, -65.81, -9.16, 0, 4, 31, 66.73, -44.35, 0.73638, 36, -21.2, -4.09, 0.26049, 37, -42.61, -3.98, 0.00313, 38, -64.08, -3.98, 0, 4, 31, 61.93, -42.46, 0.74288, 36, -19.57, - 0.8, 0.25402, 37, -40.97, 0.91, 0.00309, 38, -62.45, 0.91, 1e-05, 2, 31, 55.67, -40, 0.86, 36, -17.44, 7.19, 0.14, 2, 31, 50.24, -37.86, 0.87418, 36, -15.59, 12.72, 0.12582, 1, 31, - 43.72, -35.29, 1, 1, 31, 38.22, -33.12, 1, 2, 31, -0.53, -12.83, 0.99965, 36, 6.74, 64.74, 0.00035, 2, 31, -0.21, -6.72, 0.9998, 36, 12.86, 64.74, 0.0002, 3, 31, 0.19, 0.77, 0.99981, - 36, 20.36, 64.74, 9e-05, 38, -22.52, 64.84, 0.0001, 3, 31, 0.56, 7.82, 0.99975, 36, 27.41, 64.74, 1e-05, 38, -15.47, 64.84, 0.00024, 2, 31, 0.88, 13.86, 0.99954, 38, -9.41, 64.84, - 0.00046, 4, 31, 39.9, 0.3, 0.88429, 36, 21.98, 25.05, 0.02526, 37, 0.57, 25.15, 0.06552, 38, -20.9, 25.15, 0.02493, 1, 31, 38.93, -18.93, 1, 4, 31, 39.81, 17.97, 0.94373, 36, 39.62, - 26.07, 0.00089, 37, 18.21, 26.18, 0.01419, 38, -3.26, 26.18, 0.04119, 1, 31, 39.76, 25.74, 1, 1, 31, 38.51, -27.3, 1, 4, 31, 39.4, -9.64, 0.88619, 36, 12.02, 25.03, 0.05505, 37, - -9.38, 25.13, 0.05102, 38, -30.86, 25.13, 0.00774, 4, 31, 39.86, 8.75, 0.89286, 36, 30.41, 25.54, 0.00746, 37, 9, 25.64, 0.04877, 38, -12.47, 25.64, 0.05092, 1, 31, 43.8, -29.15, 1, - 4, 31, 44.52, -19.83, 0.74343, 36, 2.11, 19.38, 0.19678, 37, -19.29, 19.48, 0.05726, 38, -40.77, 19.48, 0.00254, 4, 31, 44.96, -10.05, 0.58833, 36, 11.9, 19.46, 0.20061, 37, -9.5, - 19.56, 0.19026, 38, -30.98, 19.56, 0.0208, 4, 31, 45.31, -0.03, 0.58846, 36, 21.93, 19.63, 0.08112, 37, 0.53, 19.73, 0.24909, 38, -20.95, 19.73, 0.08133, 4, 31, 45.5, 8.76, 0.59817, - 36, 30.72, 19.91, 0.02026, 37, 9.32, 20.01, 0.18761, 38, -12.16, 20.01, 0.19395, 4, 31, 45.89, 18.3, 0.66183, 36, 40.27, 20.02, 0.00346, 37, 18.87, 20.13, 0.07957, 38, -2.61, 20.13, - 0.25514, 1, 31, 45.85, 27.54, 1, 4, 31, 49.71, -31.22, 0.84023, 36, -8.99, 13.6, 0.15068, 37, -30.39, 13.7, 0.00899, 38, -51.87, 13.7, 0.0001, 4, 31, 49.78, -20.68, 0.48016, 36, - 1.55, 14.09, 0.41733, 37, -19.86, 14.19, 0.10062, 38, -41.33, 14.19, 0.0019, 4, 31, 50.15, -10.44, 0.42576, 36, 11.79, 14.25, 0.28082, 37, -9.61, 14.36, 0.27628, 38, -31.09, 14.36, - 0.01714, 4, 31, 50.4, -0.34, 0.43345, 36, 21.89, 14.53, 0.09343, 37, 0.48, 14.63, 0.37698, 38, -20.99, 14.63, 0.09613, 4, 31, 50.91, 8.78, 0.43708, 36, 31.02, 14.51, 0.01603, 37, - 9.62, 14.61, 0.27127, 38, -11.86, 14.61, 0.27562, 4, 31, 50.97, 18.59, 0.51068, 36, 40.82, 14.96, 0.00179, 37, 19.41, 15.07, 0.09933, 38, -2.06, 15.07, 0.3882, 4, 31, 51.57, 29.24, - 0.94195, 36, 51.49, 14.92, 4e-05, 37, 30.08, 15.02, 0.00385, 38, 8.61, 15.02, 0.05416, 4, 31, 55.51, -33.25, 0.72549, 36, -10.71, 7.7, 0.2621, 37, -32.11, 7.81, 0.01235, 38, -53.59, - 7.81, 6e-05, 4, 31, 55.86, -21.65, 0.38729, 36, 0.89, 7.96, 0.4981, 37, -20.51, 8.06, 0.11341, 38, -41.99, 8.06, 0.0012, 4, 31, 55.96, -10.87, 0.32692, 36, 11.67, 8.42, 0.3274, 37, - -9.74, 8.53, 0.32983, 38, -31.21, 8.53, 0.01585, 4, 31, 56.03, -0.69, 0.33677, 36, 21.84, 8.89, 0.10146, 37, 0.43, 9, 0.45593, 38, -21.04, 9, 0.10584, 4, 31, 56.4, 8.8, 0.33839, 36, - 31.33, 9.02, 0.0144, 37, 9.93, 9.13, 0.32329, 38, -11.55, 9.13, 0.32392, 4, 31, 57.13, 19.32, 0.42143, 36, 41.87, 8.84, 0.00109, 37, 20.47, 8.95, 0.11176, 38, -1.01, 8.95, 0.46572, - 4, 31, 58.69, 31.45, 0.79569, 36, 54.07, 7.92, 5e-05, 37, 32.67, 8.03, 0.01091, 38, 11.19, 8.03, 0.19335, 4, 31, 62.21, -35.59, 0.66085, 36, -12.7, 0.88, 0.32566, 37, -34.1, 0.99, - 0.01346, 38, -55.58, 0.99, 3e-05, 4, 31, 62.66, -22.75, 0.31024, 36, 0.16, 1.11, 0.56299, 37, -21.25, 1.21, 0.12589, 38, -42.72, 1.21, 0.00089, 4, 31, 62.85, -11.38, 0.24349, 36, - 11.52, 1.52, 0.36477, 37, -9.89, 1.62, 0.37599, 38, -31.36, 1.62, 0.01574, 4, 31, 62.94, -1.11, 0.2525, 36, 21.78, 1.97, 0.10936, 37, 0.37, 2.08, 0.52284, 38, -21.1, 2.08, 0.1153, 4, - 31, 63.43, 8.82, 0.2544, 36, 31.72, 2, 0.01401, 37, 10.32, 2.11, 0.36809, 38, -11.16, 2.11, 0.3635, 4, 31, 63.63, 19.58, 0.3466, 36, 42.48, 2.36, 0.00077, 37, 21.07, 2.47, 0.1237, - 38, -0.4, 2.47, 0.52893, 4, 31, 65.17, 33.27, 0.69411, 36, 56.23, 1.55, 3e-05, 37, 34.83, 1.66, 0.01435, 38, 13.35, 1.66, 0.29151, 4, 31, 70.52, 34.86, 0.61986, 36, 58.1, -3.71, - 1e-05, 37, 36.69, -3.61, 0.01658, 38, 15.22, -3.61, 0.36355, 4, 31, 69.45, 19.61, 0.28549, 36, 42.81, -3.44, 0.00065, 37, 21.4, -3.34, 0.13463, 38, -0.07, -3.34, 0.57924, 4, 31, - 69.14, 8.84, 0.18483, 36, 32.04, -3.7, 0.01432, 37, 10.64, -3.59, 0.40541, 38, -10.84, -3.59, 0.39544, 4, 31, 68.83, -1.47, 0.18141, 36, 21.73, -3.93, 0.11681, 37, 0.32, -3.83, - 0.57764, 38, -21.15, -3.83, 0.12413, 4, 31, 68.1, -11.77, 0.17479, 36, 11.41, -3.74, 0.39444, 37, -10, -3.64, 0.41447, 38, -31.47, -3.64, 0.0163, 4, 31, 67.66, -23.55, 0.24784, 36, - -0.38, -3.92, 0.61396, 37, -21.79, -3.82, 0.13743, 38, -43.26, -3.82, 0.00077, 4, 31, 67.15, -37.32, 0.59732, 36, -14.16, -4.14, 0.38768, 37, -35.56, -4.03, 0.01499, 38, -57.04, - -4.03, 1e-05, 4, 31, 21.31, 0.52, 0.98403, 36, 21.22, 43.62, 0.00516, 37, -0.19, 43.73, 0.00609, 38, -21.66, 43.73, 0.00473, 3, 31, 11.68, -10.43, 0.98457, 36, 9.78, 52.66, 0.01421, - 37, -11.62, 52.77, 0.00123, 3, 31, 14.7, 11.48, 0.98807, 37, 10.41, 50.91, 0.00101, 38, -11.07, 50.91, 0.01092, 1, 31, 38.71, -23.44, 1, 4, 31, 44.14, -24.78, 0.93122, 36, -2.85, - 19.5, 0.05888, 37, -24.25, 19.61, 0.00959, 38, -45.73, 19.61, 0.0003, 4, 31, 49.74, -26.15, 0.67882, 36, -3.92, 13.83, 0.287, 37, -25.32, 13.94, 0.03374, 38, -46.8, 13.94, 0.00045, - 4, 31, 55.68, -27.73, 0.52353, 36, -5.19, 7.82, 0.4314, 37, -26.59, 7.93, 0.04479, 38, -48.07, 7.93, 0.00029, 4, 31, 62.43, -29.46, 0.41464, 36, -6.56, 0.99, 0.53292, 37, -27.96, - 1.1, 0.05226, 38, -49.44, 1.1, 0.00018, 4, 31, 67.4, -30.57, 0.35706, 36, -7.41, -4.03, 0.58638, 37, -28.81, -3.93, 0.05644, 38, -50.29, -3.93, 0.00012, 4, 31, 39.16, -14.42, - 0.88311, 36, 7.24, 25.02, 0.07338, 37, -14.17, 25.12, 0.03978, 38, -35.64, 25.12, 0.00372, 4, 31, 44.74, -15, 0.62555, 36, 6.96, 19.42, 0.24007, 37, -14.45, 19.52, 0.1259, 38, - -35.92, 19.52, 0.00848, 4, 31, 49.97, -15.49, 0.4342, 36, 6.74, 14.17, 0.37611, 37, -14.67, 14.27, 0.18375, 38, -36.14, 14.27, 0.00595, 4, 31, 55.91, -16.19, 0.33684, 36, 6.35, 8.19, - 0.44427, 37, -15.05, 8.3, 0.21425, 38, -36.53, 8.3, 0.00464, 4, 31, 62.76, -16.95, 0.25537, 36, 5.95, 1.32, 0.49872, 37, -15.45, 1.42, 0.24179, 38, -36.93, 1.42, 0.00413, 4, 31, - 67.88, -17.57, 0.18921, 36, 5.6, -3.83, 0.54119, 37, -15.8, -3.73, 0.26556, 38, -37.28, -3.73, 0.00404, 4, 31, 39.65, -4.74, 0.83361, 36, 16.93, 25.04, 0.05679, 37, -4.48, 25.14, - 0.08927, 38, -25.95, 25.14, 0.02033, 4, 31, 45.13, -5.18, 0.57797, 36, 16.78, 19.54, 0.13938, 37, -4.63, 19.65, 0.23843, 38, -26.1, 19.65, 0.04422, 4, 31, 50.27, -5.8, 0.42696, 36, - 16.43, 14.38, 0.17737, 37, -4.97, 14.48, 0.35156, 38, -26.45, 14.48, 0.04411, 4, 31, 56, -5.99, 0.33132, 36, 16.54, 8.65, 0.20059, 37, -4.86, 8.75, 0.42277, 38, -26.34, 8.75, - 0.04531, 4, 31, 62.89, -6.48, 0.24781, 36, 16.41, 1.73, 0.22055, 37, -4.99, 1.84, 0.48389, 38, -26.47, 1.84, 0.04775, 4, 31, 68.45, -6.83, 0.17763, 36, 16.35, -3.83, 0.23735, 37, - -5.05, -3.73, 0.53429, 38, -26.53, -3.73, 0.05074, 4, 31, 39.88, 4.33, 0.83746, 36, 26, 25.28, 0.02009, 37, 4.59, 25.39, 0.08772, 38, -16.88, 25.39, 0.05473, 4, 31, 45.41, 4.36, - 0.58276, 36, 26.32, 19.77, 0.04346, 37, 4.92, 19.87, 0.23645, 38, -16.56, 19.87, 0.13732, 4, 31, 50.66, 4.3, 0.43226, 36, 26.54, 14.52, 0.04191, 37, 5.13, 14.62, 0.34769, 38, -16.34, - 14.62, 0.17814, 4, 31, 56.21, 4.01, 0.33656, 36, 26.54, 8.96, 0.0422, 37, 5.14, 9.06, 0.41771, 38, -16.34, 9.06, 0.20353, 4, 31, 63.19, 4, 0.25264, 36, 26.89, 1.99, 0.04384, 37, - 5.49, 2.09, 0.47782, 38, -15.99, 2.09, 0.2257, 4, 31, 68.99, 3.91, 0.18189, 36, 27.11, -3.81, 0.04615, 37, 5.71, -3.71, 0.52741, 38, -15.77, -3.71, 0.24456, 4, 31, 39.83, 13, 0.8608, - 36, 34.66, 25.79, 0.00457, 37, 13.26, 25.89, 0.04889, 38, -8.22, 25.89, 0.08574, 4, 31, 45.67, 13.13, 0.60926, 36, 35.09, 19.96, 0.00894, 37, 13.69, 20.06, 0.13479, 38, -7.79, 20.06, - 0.247, 4, 31, 50.93, 13.5, 0.45377, 36, 35.74, 14.73, 0.00554, 37, 14.33, 14.83, 0.18027, 38, -7.14, 14.83, 0.36041, 4, 31, 56.75, 13.83, 0.35749, 36, 36.37, 8.94, 0.00417, 37, - 14.96, 9.04, 0.20976, 38, -6.51, 9.04, 0.42858, 4, 31, 63.53, 14.02, 0.27612, 36, 36.92, 2.18, 0.00359, 37, 15.52, 2.28, 0.23625, 38, -5.96, 2.28, 0.48404, 4, 31, 69.3, 14.3, - 0.20954, 36, 37.5, -3.57, 0.00344, 37, 16.1, -3.46, 0.25903, 38, -5.38, -3.46, 0.52799, 1, 31, 39.78, 21.93, 1, 4, 31, 45.87, 22.69, 0.82489, 36, 44.65, 20.27, 0.00083, 37, 23.25, - 20.37, 0.0268, 38, 1.77, 20.37, 0.14748, 4, 31, 51.28, 24.11, 0.64773, 36, 46.35, 14.94, 0.00052, 37, 24.95, 15.04, 0.04091, 38, 3.47, 15.04, 0.31084, 4, 31, 57.92, 25.42, 0.53225, - 36, 48.01, 8.38, 0.00029, 37, 26.6, 8.49, 0.04857, 38, 5.13, 8.49, 0.41889, 4, 31, 64.49, 27.19, 0.46955, 36, 50.12, 1.91, 0.00016, 37, 28.71, 2.02, 0.05201, 38, 7.24, 2.02, 0.47828, - 4, 31, 70.04, 27.97, 0.41589, 36, 51.19, -3.59, 0.0001, 37, 29.78, -3.48, 0.05591, 38, 8.31, -3.48, 0.5281, 4, 31, 49.73, -28.84, 0.72647, 36, -6.61, 13.71, 0.25381, 37, -28.01, - 13.81, 0.01954, 38, -49.49, 13.81, 0.00018, 4, 31, 55.59, -30.72, 0.64422, 36, -8.18, 7.76, 0.33291, 37, -29.58, 7.86, 0.02275, 38, -51.06, 7.86, 0.00011, 4, 31, 62.32, -32.6, - 0.55448, 36, -9.7, 0.94, 0.41902, 37, -31.11, 1.04, 0.02643, 38, -52.58, 1.04, 7e-05, 4, 31, 67.27, -34.24, 0.44397, 36, -11.07, -4.09, 0.52396, 37, -32.48, -3.99, 0.03202, 38, - -53.95, -3.99, 4e-05, 4, 31, 49.76, -23.57, 0.5094, 36, -1.34, 13.95, 0.4213, 37, -22.75, 14.06, 0.06847, 38, -44.22, 14.06, 0.00083, 4, 31, 55.77, -24.72, 0.42549, 36, -2.17, 7.89, - 0.49746, 37, -23.57, 8, 0.07648, 38, -45.05, 8, 0.00057, 4, 31, 62.54, -26.18, 0.35688, 36, -3.28, 1.05, 0.55926, 37, -24.68, 1.15, 0.08347, 38, -46.16, 1.15, 0.00039, 4, 31, 67.52, - -27.35, 0.29772, 36, -4.19, -3.98, 0.61133, 37, -25.59, -3.88, 0.09064, 38, -47.07, -3.88, 0.00031, 4, 31, 67.77, -20.66, 0.21136, 36, 2.51, -3.88, 0.59029, 37, -18.89, -3.77, - 0.19654, 38, -40.37, -3.77, 0.00182, 4, 31, 62.71, -19.85, 0.275, 36, 3.05, 1.21, 0.54348, 37, -18.35, 1.32, 0.17958, 38, -39.83, 1.32, 0.00194, 4, 31, 55.88, -19.28, 0.35002, 36, - 3.27, 8.06, 0.48643, 37, -18.14, 8.17, 0.16123, 38, -39.61, 8.17, 0.00232, 4, 31, 49.86, -18.41, 0.41881, 36, 3.82, 14.12, 0.43213, 37, -17.59, 14.23, 0.1461, 38, -39.06, 14.23, - 0.00296, 4, 31, 50.06, -13.03, 0.39313, 36, 9.2, 14.21, 0.35299, 37, -12.2, 14.31, 0.24433, 38, -33.68, 14.31, 0.00955, 4, 31, 55.94, -13.47, 0.32258, 36, 9.06, 8.31, 0.39406, 37, - -12.34, 8.41, 0.27473, 38, -33.82, 8.41, 0.00863, 4, 31, 62.8, -14.24, 0.24476, 36, 8.66, 1.42, 0.43744, 37, -12.74, 1.52, 0.30953, 38, -34.22, 1.52, 0.00827, 4, 31, 67.98, -14.86, - 0.17804, 36, 8.31, -3.79, 0.47328, 37, -13.09, -3.69, 0.3403, 38, -34.57, -3.69, 0.00838, 4, 31, 68.28, -9.21, 0.17525, 36, 13.97, -3.79, 0.31355, 37, -7.43, -3.69, 0.48153, 38, - -28.91, -3.69, 0.02968, 4, 31, 62.87, -9.04, 0.24396, 36, 13.85, 1.62, 0.29088, 37, -7.55, 1.73, 0.43695, 38, -29.03, 1.73, 0.02821, 4, 31, 55.98, -8.57, 0.32275, 36, 13.97, 8.53, - 0.26435, 37, -7.44, 8.63, 0.38552, 38, -28.91, 8.63, 0.02739, 4, 31, 50.21, -8.13, 0.39269, 36, 14.1, 14.31, 0.24007, 37, -7.3, 14.42, 0.33961, 38, -28.78, 14.42, 0.02763, 4, 31, - 50.33, -3.07, 0.39835, 36, 19.16, 14.45, 0.13664, 37, -2.25, 14.56, 0.3972, 38, -23.72, 14.56, 0.06781, 4, 31, 56.01, -3.43, 0.32898, 36, 19.1, 8.76, 0.14701, 37, -2.3, 8.87, - 0.45281, 38, -23.78, 8.87, 0.07119, 4, 31, 62.92, -3.84, 0.24968, 36, 19.05, 1.85, 0.15947, 37, -2.36, 1.96, 0.51456, 38, -23.83, 1.96, 0.07629, 4, 31, 68.64, -4.23, 0.17972, 36, - 18.97, -3.88, 0.17094, 37, -2.44, -3.78, 0.56767, 38, -23.91, -3.78, 0.08167, 4, 31, 68.91, 1.29, 0.18179, 36, 24.49, -3.87, 0.07557, 37, 3.08, -3.77, 0.56385, 38, -18.39, -3.77, - 0.17879, 4, 31, 63.06, 1.38, 0.25204, 36, 24.27, 1.98, 0.07119, 37, 2.86, 2.08, 0.51118, 38, -18.61, 2.08, 0.16559, 4, 31, 56.13, 1.74, 0.33157, 36, 24.26, 8.92, 0.0672, 37, 2.86, - 9.03, 0.44995, 38, -18.62, 9.03, 0.15128, 4, 31, 50.52, 1.76, 0.40101, 36, 23.99, 14.52, 0.06478, 37, 2.59, 14.63, 0.39483, 38, -18.89, 14.63, 0.13938, 4, 31, 50.78, 6.45, 0.401, 36, - 28.68, 14.51, 0.0258, 37, 7.28, 14.62, 0.33427, 38, -14.2, 14.62, 0.23894, 4, 31, 56.3, 6.29, 0.3309, 36, 28.82, 8.99, 0.02514, 37, 7.42, 9.09, 0.37908, 38, -14.06, 9.09, 0.26488, 4, - 31, 63.29, 6.06, 0.25155, 36, 28.96, 1.99, 0.02548, 37, 7.56, 2.1, 0.4293, 38, -13.92, 2.1, 0.29367, 4, 31, 69.06, 6.02, 0.18206, 36, 29.22, -3.76, 0.02652, 37, 7.82, -3.66, 0.47284, - 38, -13.66, -3.66, 0.31858, 4, 31, 69.22, 11.49, 0.19245, 36, 34.69, -3.64, 0.00724, 37, 13.29, -3.53, 0.3321, 38, -8.19, -3.53, 0.46821, 4, 31, 69.38, 17.15, 0.23948, 36, 40.35, - -3.5, 0.00153, 37, 18.94, -3.39, 0.19195, 38, -2.53, -3.39, 0.56704, 4, 31, 69.73, 23.61, 0.346, 36, 46.82, -3.51, 0.00026, 37, 25.42, -3.41, 0.08922, 38, 3.94, -3.41, 0.56452, 4, - 31, 70.27, 31.28, 0.48407, 36, 54.51, -3.65, 4e-05, 37, 33.11, -3.54, 0.03358, 38, 11.63, -3.54, 0.48231, 4, 31, 64.84, 30.32, 0.54501, 36, 53.26, 1.73, 7e-05, 37, 31.86, 1.83, - 0.03077, 38, 10.38, 1.83, 0.42415, 4, 31, 64.01, 22.94, 0.40266, 36, 45.85, 2.16, 0.00034, 37, 24.45, 2.27, 0.08247, 38, 2.97, 2.27, 0.51452, 4, 31, 63.58, 16.63, 0.30287, 36, 39.53, - 2.26, 0.00168, 37, 18.13, 2.37, 0.17579, 38, -3.35, 2.37, 0.51965, 4, 31, 63.48, 11.19, 0.25994, 36, 34.09, 2.08, 0.00726, 37, 12.69, 2.19, 0.30245, 38, -8.79, 2.19, 0.43035, 4, 31, - 56.56, 11.07, 0.3382, 36, 33.61, 8.98, 0.00776, 37, 12.21, 9.09, 0.26884, 38, -9.27, 9.09, 0.38519, 4, 31, 56.93, 16.38, 0.37706, 36, 38.93, 8.89, 0.00208, 37, 17.52, 9, 0.15821, 38, - -3.95, 9, 0.46265, 4, 31, 57.5, 22.2, 0.46779, 36, 44.77, 8.63, 0.00052, 37, 23.36, 8.73, 0.07582, 38, 1.89, 8.73, 0.45586, 4, 31, 58.3, 28.37, 0.65325, 36, 50.97, 8.16, 0.00012, 37, - 29.57, 8.26, 0.02541, 38, 8.09, 8.26, 0.32123, 4, 31, 51.42, 26.68, 0.75526, 36, 48.93, 14.93, 0.00017, 37, 27.52, 15.03, 0.02002, 38, 6.05, 15.03, 0.22455, 4, 31, 51.11, 21.17, - 0.52586, 36, 43.41, 14.95, 0.00082, 37, 22, 15.06, 0.07106, 38, 0.53, 15.06, 0.40226, 4, 31, 50.95, 15.93, 0.44455, 36, 38.16, 14.84, 0.00273, 37, 16.76, 14.94, 0.1436, 38, -4.72, - 14.94, 0.40912, 4, 31, 50.92, 10.61, 0.40864, 36, 32.85, 14.59, 0.0088, 37, 11.45, 14.7, 0.23945, 38, -10.03, 14.7, 0.34311, 4, 31, 69.38, -38.1, 0.52059, 36, -14.82, -6.4, 0.45917, - 37, -36.22, -6.3, 0.02022, 38, -57.7, -6.3, 1e-05, 4, 31, 69.44, -34.82, 0.37517, 36, -11.54, -6.29, 0.58803, 37, -32.95, -6.19, 0.03676, 38, -54.42, -6.19, 4e-05, 4, 31, 69.57, - -31.13, 0.31655, 36, -7.85, -6.23, 0.62281, 37, -29.26, -6.13, 0.06054, 38, -50.73, -6.13, 0.00011, 4, 31, 69.74, -27.7, 0.25662, 36, -4.41, -6.22, 0.64624, 37, -25.82, -6.11, - 0.09684, 38, -47.29, -6.11, 0.0003, 4, 31, 69.8, -23.9, 0.20542, 36, -0.61, -6.08, 0.64718, 37, -22.02, -5.97, 0.14662, 38, -43.49, -5.97, 0.00077, 4, 31, 69.96, -20.88, 0.16774, 36, - 2.4, -6.08, 0.62093, 37, -19, -5.97, 0.20946, 38, -40.48, -5.97, 0.00187, 4, 31, 70.09, -17.89, 0.14406, 36, 5.4, -6.05, 0.56885, 37, -16, -5.95, 0.28288, 38, -37.48, -5.95, 0.00421, - 4, 31, 70.25, -15.09, 0.13169, 36, 8.2, -6.07, 0.49722, 37, -13.21, -5.96, 0.36227, 38, -34.68, -5.96, 0.00882, 4, 31, 70.5, -11.95, 0.12708, 36, 11.36, -6.14, 0.41453, 37, -10.05, - -6.04, 0.44117, 38, -31.52, -6.04, 0.01722, 4, 31, 70.58, -9.33, 0.12668, 36, 13.97, -6.1, 0.32958, 37, -7.43, -5.99, 0.51233, 38, -28.91, -5.99, 0.03141, 4, 31, 70.75, -6.95, - 0.12812, 36, 16.36, -6.14, 0.24965, 37, -5.05, -6.03, 0.56851, 38, -26.52, -6.03, 0.05372, 4, 31, 71, -4.39, 0.12979, 36, 18.93, -6.25, 0.1799, 37, -2.47, -6.14, 0.60387, 38, -23.95, - -6.14, 0.08644, 4, 31, 71.07, -1.61, 0.13105, 36, 21.71, -6.18, 0.12302, 37, 0.3, -6.07, 0.61461, 38, -21.17, -6.07, 0.13132, 4, 31, 71.18, 1.28, 0.13159, 36, 24.6, -6.14, 0.07962, - 37, 3.19, -6.03, 0.5998, 38, -18.28, -6.03, 0.18899, 4, 31, 71.31, 3.85, 0.13189, 36, 27.17, -6.13, 0.04862, 37, 5.76, -6.02, 0.56113, 38, -15.71, -6.02, 0.25837, 4, 31, 71.51, 6.02, - 0.13282, 36, 29.35, -6.21, 0.02792, 37, 7.95, -6.1, 0.50297, 38, -13.53, -6.1, 0.33629, 4, 31, 71.56, 8.85, 0.13637, 36, 32.18, -6.12, 0.01503, 37, 10.77, -6.01, 0.43134, 38, -10.7, - -6.01, 0.41726, 4, 31, 71.75, 11.39, 0.14539, 36, 34.72, -6.17, 0.00757, 37, 13.32, -6.07, 0.35328, 38, -8.16, -6.07, 0.49376, 4, 31, 71.87, 14.39, 0.16393, 36, 37.73, -6.13, - 0.00355, 37, 16.32, -6.03, 0.27561, 38, -5.15, -6.03, 0.55691, 4, 31, 72.16, 17.13, 0.19585, 36, 40.48, -6.28, 0.00155, 37, 19.08, -6.18, 0.20422, 38, -2.4, -6.18, 0.59837, 4, 31, - 72.25, 19.76, 0.24372, 36, 43.11, -6.23, 0.00063, 37, 21.71, -6.13, 0.14329, 38, 0.23, -6.13, 0.61235, 4, 31, 72.47, 23.82, 0.30631, 36, 47.17, -6.24, 0.00024, 37, 25.77, -6.14, - 0.09501, 38, 4.29, -6.14, 0.59844, 4, 31, 72.61, 28.41, 0.3775, 36, 51.77, -6.14, 9e-05, 37, 30.37, -6.03, 0.05972, 38, 8.89, -6.03, 0.5627, 4, 31, 72.88, 31.77, 0.44548, 36, 55.14, - -6.23, 3e-05, 37, 33.74, -6.13, 0.03652, 38, 12.26, -6.13, 0.51797, 4, 31, 73.38, 35.45, 0.56131, 36, 58.84, -6.53, 1e-05, 37, 37.44, -6.43, 0.02128, 38, 15.96, -6.43, 0.41739 - ], - "hull": 44, - "edges": [ - 78, 76, 86, 0, 78, 80, 80, 82, 82, 84, 84, 86, 0, 94, 76, 96, 62, 64, 74, 76, 102, 96, 74, 102, 104, 90, 106, 98, 108, 88, 110, 100, 112, 92, 114, 94, 2, 0, 114, 2, 72, 74, 116, 102, - 72, 116, 118, 104, 120, 106, 122, 108, 124, 110, 126, 112, 128, 114, 4, 2, 128, 4, 70, 72, 130, 116, 70, 130, 132, 118, 134, 120, 136, 122, 138, 124, 140, 126, 142, 128, 8, 6, 6, 4, - 142, 6, 68, 70, 144, 130, 68, 144, 146, 132, 148, 134, 150, 136, 152, 138, 154, 140, 156, 142, 156, 8, 8, 10, 10, 12, 12, 158, 158, 156, 10, 158, 160, 154, 162, 152, 164, 150, 166, - 148, 168, 146, 170, 144, 64, 66, 66, 68, 170, 66, 82, 172, 172, 88, 98, 172, 172, 100, 80, 174, 174, 90, 96, 174, 84, 176, 176, 92, 94, 176, 90, 178, 178, 96, 102, 180, 180, 104, - 178, 180, 180, 182, 182, 184, 184, 186, 186, 188, 90, 190, 190, 98, 104, 192, 192, 106, 190, 192, 192, 194, 194, 196, 196, 198, 198, 200, 88, 202, 202, 98, 106, 204, 204, 108, 202, - 204, 204, 206, 206, 208, 208, 210, 210, 212, 88, 214, 214, 100, 108, 216, 216, 110, 214, 216, 216, 218, 218, 220, 220, 222, 222, 224, 92, 226, 226, 100, 110, 228, 228, 112, 226, 228, - 228, 230, 230, 232, 232, 234, 234, 236, 92, 238, 238, 94, 112, 240, 240, 114, 238, 240, 240, 242, 242, 244, 244, 246, 246, 248, 12, 14, 170, 64, 116, 250, 250, 182, 130, 252, 252, - 184, 250, 252, 144, 254, 254, 186, 252, 254, 170, 256, 256, 188, 254, 256, 58, 60, 60, 62, 118, 258, 258, 182, 132, 260, 260, 184, 258, 260, 146, 262, 262, 186, 260, 262, 168, 264, - 264, 188, 262, 264, 54, 56, 56, 58, 50, 52, 52, 54, 168, 266, 266, 200, 146, 268, 268, 198, 266, 268, 132, 270, 270, 196, 268, 270, 118, 272, 272, 194, 270, 272, 120, 274, 274, 194, - 134, 276, 276, 196, 274, 276, 148, 278, 278, 198, 276, 278, 166, 280, 280, 200, 278, 280, 46, 48, 48, 50, 42, 44, 44, 46, 166, 282, 282, 212, 148, 284, 284, 210, 282, 284, 134, 286, - 286, 208, 284, 286, 120, 288, 288, 206, 286, 288, 122, 290, 290, 206, 136, 292, 292, 208, 290, 292, 150, 294, 294, 210, 292, 294, 164, 296, 296, 212, 294, 296, 38, 40, 40, 42, 34, - 36, 36, 38, 164, 298, 298, 224, 150, 300, 300, 222, 298, 300, 136, 302, 302, 220, 300, 302, 122, 304, 304, 218, 302, 304, 124, 306, 306, 218, 138, 308, 308, 220, 306, 308, 152, 310, - 310, 222, 308, 310, 162, 312, 312, 224, 310, 312, 30, 32, 32, 34, 26, 28, 28, 30, 162, 314, 314, 236, 22, 24, 24, 26, 160, 316, 316, 236, 18, 20, 20, 22, 160, 318, 318, 248, 14, 16, - 16, 18, 158, 320, 320, 248, 156, 322, 322, 246, 320, 322, 154, 324, 324, 246, 318, 324, 154, 326, 326, 234, 316, 326, 152, 328, 328, 234, 314, 328, 138, 330, 330, 232, 328, 330, 140, - 332, 332, 232, 326, 332, 140, 334, 334, 244, 324, 334, 142, 336, 336, 244, 322, 336, 128, 338, 338, 242, 336, 338, 126, 340, 340, 242, 334, 340, 126, 342, 342, 230, 332, 342, 124, - 344, 344, 230, 330, 344, 62, 346, 346, 170, 60, 348, 348, 256, 346, 348, 58, 350, 350, 188, 348, 350, 56, 352, 352, 264, 350, 352, 54, 354, 354, 168, 352, 354, 52, 356, 356, 266, - 354, 356, 50, 358, 358, 200, 356, 358, 48, 360, 360, 280, 358, 360, 46, 362, 362, 166, 360, 362, 44, 364, 364, 282, 362, 364, 42, 366, 366, 212, 364, 366, 40, 368, 368, 296, 366, - 368, 38, 370, 370, 164, 368, 370, 36, 372, 372, 298, 370, 372, 34, 374, 374, 224, 372, 374, 32, 376, 376, 312, 374, 376, 30, 378, 378, 162, 376, 378, 28, 380, 380, 314, 378, 380, 26, - 382, 382, 236, 380, 382, 24, 384, 384, 316, 382, 384, 22, 386, 386, 160, 384, 386, 20, 388, 388, 318, 386, 388, 18, 390, 390, 248, 388, 390, 16, 392, 392, 320, 390, 392, 14, 394, - 394, 158, 392, 394 - ], - "width": 83, - "height": 80, - "path": "summer-as.ear-right-bubble" + "leg-front-left": { + "leg-front-left": {"x": 22.685882352941174, "y": 2.091764705882351, "rotation": 97.51, "width": 70.58823529411765, "height": 61.1764705882353, "path": "body-normal.leg-front-left"}, + "leg-front-left-long": { + "x": 28.450588235294116, "y": -5.187058823529413, "rotation": -173.75, "width": 87.05882352941177, "height": 75.29411764705883, "path": "body-normal.leg-front-left-long" + }, + "leg-front-left-stretch": { + "x": 20.12235294117647, "y": -3.107058823529413, "rotation": 142.15, "width": 68.23529411764706, "height": 75.29411764705883, "path": "body-normal.leg-front-left-stretch" } }, - "ear-right-bubble-02": { - "ear-right-bubble": { - "type": "mesh", - "uvs": [ - 0.93928, 0.50958, 0.95558, 0.59885, 0.96791, 0.66638, 0.98006, 0.73289, 1, 0.84205, 1, 0.89818, 1, 0.9625, 0.9567, 0.9625, 0.9208, 0.9625, 0.88771, 0.9625, 0.83969, 0.9625, 0.79967, - 0.9625, 0.76574, 0.9625, 0.73418, 0.9625, 0.69508, 0.9625, 0.6661, 0.9625, 0.6319, 0.9625, 0.6046, 0.9625, 0.57454, 0.9625, 0.53755, 0.9625, 0.50387, 0.9625, 0.47341, 0.9625, - 0.44466, 0.9625, 0.41233, 0.9625, 0.37317, 0.9625, 0.33787, 0.9625, 0.30333, 0.9625, 0.2648, 0.9625, 0.21937, 0.9625, 0.17434, 0.9625, 0.12959, 0.9625, 0.08769, 0.9625, 0, 0.9625, - 0.02085, 0.89779, 0.04055, 0.83664, 0.06626, 0.75682, 0.08854, 0.68766, 0.11527, 0.60468, 0.13788, 0.53451, 0.35753, 0.0375, 0.43128, 0.0375, 0.52161, 0.0375, 0.60662, 0.0375, - 0.67954, 0.0375, 0.54109, 0.5336, 0.30907, 0.53412, 0.75362, 0.52077, 0.84707, 0.51514, 0.2081, 0.53435, 0.42115, 0.53387, 0.64269, 0.52747, 0.1892, 0.60156, 0.3018, 0.60447, - 0.41972, 0.60346, 0.54053, 0.60135, 0.64648, 0.59785, 0.76151, 0.59644, 0.87262, 0.58988, 0.16806, 0.67676, 0.29497, 0.67061, 0.41838, 0.66857, 0.54, 0.66508, 0.65011, 0.66538, - 0.7681, 0.65967, 0.89666, 0.66021, 0.14733, 0.75044, 0.28705, 0.74721, 0.41688, 0.74143, 0.53942, 0.73556, 0.6538, 0.73393, 0.7757, 0.7326, 0.91933, 0.7265, 0.12337, 0.83566, 0.2782, - 0.83283, 0.4151, 0.82771, 0.53871, 0.82207, 0.65852, 0.82169, 0.7847, 0.8189, 0.95379, 0.82732, 0.97627, 0.89309, 0.79208, 0.88971, 0.66236, 0.89294, 0.5381, 0.89586, 0.41375, - 0.89349, 0.2717, 0.89571, 0.10571, 0.89844, 0.53197, 0.30141, 0.39415, 0.1884, 0.65961, 0.2117, 0.25473, 0.53425, 0.24202, 0.60293, 0.22911, 0.6738, 0.21379, 0.7489, 0.19729, - 0.83431, 0.18704, 0.8971, 0.36352, 0.534, 0.36013, 0.60397, 0.35748, 0.66957, 0.35288, 0.74428, 0.34802, 0.83022, 0.34383, 0.89458, 0.48024, 0.53373, 0.47847, 0.60244, 0.47433, - 0.66696, 0.47563, 0.73861, 0.47402, 0.82502, 0.47337, 0.89463, 0.58955, 0.53067, 0.59344, 0.5996, 0.59605, 0.66523, 0.5961, 0.73475, 0.60032, 0.82187, 0.60296, 0.89434, 0.69391, - 0.52438, 0.69915, 0.59721, 0.70691, 0.66263, 0.71206, 0.7333, 0.71954, 0.82034, 0.72813, 0.8913, 0.80125, 0.5179, 0.81428, 0.59333, 0.8348, 0.65995, 0.84793, 0.72953, 0.87862, - 0.82358, 0.89305, 0.89156, 0.19669, 0.67537, 0.17782, 0.74974, 0.1594, 0.835, 0.1429, 0.89783, 0.26012, 0.6723, 0.25017, 0.74806, 0.23685, 0.83359, 0.22589, 0.89647, 0.30659, - 0.89517, 0.3131, 0.83153, 0.31569, 0.74593, 0.32231, 0.67016, 0.38717, 0.66908, 0.38553, 0.74282, 0.38068, 0.829, 0.37648, 0.89407, 0.44462, 0.89408, 0.44322, 0.82643, 0.44458, - 0.7401, 0.44621, 0.66777, 0.50711, 0.66602, 0.50646, 0.73714, 0.50582, 0.82357, 0.50482, 0.89523, 0.57134, 0.89508, 0.5687, 0.82197, 0.56865, 0.73514, 0.5654, 0.66515, 0.62192, - 0.6653, 0.6236, 0.73436, 0.62525, 0.8218, 0.62839, 0.89374, 0.69427, 0.89215, 0.76244, 0.89045, 0.84047, 0.89059, 0.93306, 0.89229, 0.91732, 0.8255, 0.82617, 0.82097, 0.75013, - 0.81967, 0.6863, 0.82108, 0.68017, 0.73364, 0.74166, 0.73297, 0.80979, 0.73115, 0.88285, 0.72805, 0.86581, 0.66008, 0.79931, 0.6598, 0.73613, 0.66121, 0.67214, 0.66431, 0.09776, - 0.92671, 0.13724, 0.92534, 0.1817, 0.92459, 0.22313, 0.92439, 0.26892, 0.92268, 0.30526, 0.92265, 0.34139, 0.92236, 0.3751, 0.92252, 0.41313, 0.92351, 0.44464, 0.92289, 0.47339, - 0.92339, 0.5044, 0.9248, 0.53787, 0.92389, 0.57268, 0.92341, 0.60366, 0.9233, 0.62995, 0.92432, 0.66398, 0.92316, 0.69464, 0.92383, 0.73085, 0.92333, 0.76403, 0.92521, 0.79572, - 0.92461, 0.84011, 0.92404, 0.89075, 0.92209, 0.92774, 0.92274, 0.96706, 0.92576 - ], - "triangles": [ - 166, 63, 70, 116, 171, 166, 165, 115, 116, 77, 70, 167, 163, 166, 70, 163, 70, 77, 117, 116, 166, 117, 166, 163, 77, 167, 162, 164, 165, 116, 164, 116, 117, 76, 69, 165, 76, 165, - 164, 162, 122, 123, 80, 77, 162, 158, 163, 77, 158, 77, 80, 159, 162, 123, 80, 162, 159, 118, 117, 163, 118, 163, 158, 124, 123, 161, 159, 123, 124, 157, 164, 117, 157, 117, 118, 81, - 76, 164, 81, 164, 157, 195, 159, 124, 196, 124, 160, 195, 124, 196, 189, 81, 157, 191, 118, 158, 190, 157, 118, 190, 118, 191, 189, 157, 190, 159, 193, 80, 194, 159, 195, 194, 193, - 159, 192, 158, 80, 192, 80, 193, 191, 158, 192, 15, 189, 190, 14, 190, 191, 15, 190, 14, 13, 191, 192, 14, 191, 13, 12, 192, 193, 13, 192, 12, 11, 193, 194, 12, 193, 11, 10, 11, 194, - 9, 194, 195, 10, 194, 9, 8, 195, 196, 9, 195, 8, 8, 196, 7, 151, 109, 110, 68, 152, 151, 146, 145, 68, 104, 103, 146, 155, 154, 69, 155, 69, 76, 111, 110, 154, 111, 154, 155, 150, - 151, 110, 150, 110, 111, 68, 151, 150, 75, 146, 68, 75, 68, 150, 147, 104, 146, 147, 146, 75, 105, 143, 104, 105, 104, 147, 142, 67, 143, 142, 143, 105, 74, 67, 142, 156, 155, 76, - 156, 76, 81, 106, 141, 142, 74, 142, 141, 83, 74, 141, 112, 111, 155, 112, 155, 156, 105, 106, 142, 149, 150, 111, 149, 111, 112, 148, 105, 147, 106, 105, 148, 82, 75, 150, 82, 148, - 147, 147, 75, 82, 150, 149, 82, 182, 141, 106, 187, 112, 156, 183, 106, 148, 182, 106, 183, 186, 149, 112, 186, 112, 187, 182, 181, 83, 182, 83, 141, 185, 148, 82, 185, 82, 149, 185, - 149, 186, 188, 156, 81, 188, 81, 189, 187, 156, 188, 184, 183, 148, 184, 148, 185, 22, 182, 183, 181, 182, 22, 23, 181, 22, 21, 183, 184, 22, 183, 21, 20, 21, 184, 19, 184, 185, 20, - 184, 19, 18, 186, 187, 19, 185, 186, 18, 19, 186, 17, 187, 188, 18, 187, 17, 16, 188, 189, 17, 188, 16, 16, 189, 15, 143, 144, 104, 110, 153, 154, 151, 152, 109, 68, 145, 61, 68, 61, - 152, 146, 103, 145, 83, 139, 74, 181, 140, 83, 23, 180, 181, 138, 137, 67, 98, 136, 97, 98, 97, 138, 135, 59, 136, 135, 136, 98, 66, 59, 135, 130, 129, 66, 74, 138, 67, 139, 98, 138, - 139, 138, 74, 99, 135, 98, 99, 98, 139, 134, 66, 135, 134, 135, 99, 73, 130, 66, 73, 66, 134, 131, 92, 130, 131, 130, 73, 93, 92, 131, 140, 99, 139, 140, 139, 83, 100, 134, 99, 100, - 99, 140, 133, 73, 134, 133, 134, 100, 84, 131, 73, 84, 73, 133, 132, 93, 131, 132, 131, 84, 94, 127, 93, 94, 93, 132, 128, 127, 94, 179, 133, 100, 180, 100, 140, 179, 100, 180, 178, - 84, 133, 178, 133, 179, 177, 132, 84, 177, 84, 178, 180, 140, 181, 176, 94, 132, 176, 132, 177, 175, 128, 94, 175, 94, 176, 174, 85, 128, 174, 128, 175, 30, 173, 174, 31, 173, 30, - 29, 174, 175, 30, 174, 29, 28, 175, 176, 29, 175, 28, 27, 176, 177, 28, 176, 27, 26, 177, 178, 27, 177, 26, 25, 178, 179, 26, 178, 25, 24, 179, 180, 25, 179, 24, 24, 180, 23, 79, 4, - 5, 79, 78, 4, 6, 79, 5, 123, 168, 161, 160, 78, 79, 124, 161, 160, 7, 196, 197, 196, 160, 197, 197, 160, 79, 160, 161, 78, 7, 197, 6, 162, 167, 122, 6, 197, 79, 85, 72, 128, 173, 32, - 85, 31, 32, 173, 173, 85, 174, 85, 32, 33, 66, 129, 59, 167, 170, 121, 167, 121, 122, 70, 63, 170, 70, 170, 167, 166, 171, 63, 123, 122, 168, 130, 91, 129, 92, 91, 130, 122, 169, - 168, 127, 65, 126, 72, 65, 127, 92, 125, 91, 161, 168, 71, 122, 121, 169, 170, 120, 121, 91, 90, 129, 78, 161, 71, 3, 78, 71, 71, 64, 2, 52, 129, 90, 59, 129, 52, 67, 60, 143, 138, - 97, 137, 170, 63, 56, 171, 56, 63, 169, 121, 57, 33, 34, 85, 72, 35, 65, 34, 35, 72, 125, 51, 91, 35, 36, 65, 91, 51, 90, 36, 37, 58, 58, 37, 51, 71, 2, 3, 64, 1, 2, 1, 64, 57, 57, - 0, 1, 87, 39, 40, 88, 42, 43, 88, 86, 41, 88, 41, 42, 0, 88, 43, 47, 88, 0, 86, 88, 113, 47, 119, 88, 119, 46, 88, 46, 113, 88, 50, 86, 113, 107, 86, 50, 44, 86, 107, 87, 41, 86, 41, - 87, 40, 101, 86, 44, 87, 86, 95, 101, 49, 86, 87, 38, 39, 49, 95, 86, 87, 95, 45, 87, 45, 89, 87, 89, 48, 87, 48, 38, 57, 47, 0, 120, 119, 47, 56, 46, 119, 56, 119, 120, 114, 113, - 46, 114, 46, 56, 55, 50, 113, 55, 113, 114, 108, 107, 50, 55, 108, 50, 54, 101, 44, 44, 107, 108, 54, 44, 108, 102, 49, 101, 102, 101, 54, 90, 48, 89, 53, 95, 49, 53, 49, 102, 96, - 45, 95, 96, 95, 53, 52, 89, 45, 52, 45, 96, 90, 89, 52, 171, 114, 56, 115, 114, 171, 172, 55, 114, 172, 114, 115, 54, 145, 102, 152, 54, 108, 61, 54, 152, 153, 109, 108, 55, 153, - 108, 152, 108, 109, 55, 62, 153, 172, 62, 55, 61, 145, 54, 102, 144, 53, 103, 102, 145, 103, 144, 102, 53, 137, 96, 60, 53, 144, 60, 137, 53, 96, 136, 52, 97, 96, 137, 97, 136, 96, - 69, 62, 172, 154, 153, 62, 110, 109, 153, 144, 103, 104, 143, 60, 144, 67, 137, 60, 120, 47, 57, 121, 120, 57, 64, 169, 57, 78, 3, 4, 51, 38, 48, 51, 48, 90, 37, 38, 51, 58, 51, 125, - 65, 36, 58, 120, 170, 56, 154, 62, 69, 116, 115, 171, 165, 172, 115, 69, 172, 165, 59, 52, 136, 126, 58, 125, 65, 58, 126, 168, 169, 64, 168, 64, 71, 85, 34, 72, 126, 125, 92, 93, - 126, 92, 127, 126, 93, 128, 72, 127 - ], - "vertices": [ - 1, 42, 41.12, 33.33, 1, 1, 42, 48.32, 34.31, 1, 1, 42, 53.77, 35.04, 1, 1, 42, 60, 36.01, 1, 4, 42, 68.02, 38.37, 0.9295, 43, 61.47, -1.03, 1e-05, 44, 40.07, -0.92, 0.00266, 45, - 18.6, -0.92, 0.06784, 4, 42, 72.27, 39, 0.79905, 43, 62.32, -5.24, 1e-05, 44, 40.92, -5.13, 0.00721, 45, 19.44, -5.13, 0.19373, 4, 42, 78.35, 40.51, 0.74731, 43, 64.15, -11.23, 0, - 44, 42.75, -11.12, 0.00973, 45, 21.27, -11.12, 0.24296, 4, 42, 77.99, 36.05, 0.54785, 43, 59.68, -11.11, 1e-05, 44, 38.27, -11, 0.02168, 45, 16.8, -11, 0.43046, 4, 42, 77.69, 32.35, - 0.43038, 43, 55.96, -11, 3e-05, 44, 34.56, -10.9, 0.03847, 45, 13.08, -10.9, 0.53112, 4, 42, 77.42, 28.93, 0.36035, 43, 52.54, -10.91, 9e-05, 44, 31.14, -10.81, 0.06275, 45, 9.66, - -10.81, 0.57681, 4, 42, 77.02, 23.98, 0.2889, 43, 47.58, -10.78, 0.00026, 44, 26.17, -10.67, 0.09917, 45, 4.7, -10.67, 0.61167, 4, 42, 76.69, 19.85, 0.22591, 43, 43.44, -10.66, - 0.0007, 44, 22.03, -10.56, 0.14876, 45, 0.56, -10.56, 0.62463, 4, 42, 76.55, 17.04, 0.17724, 43, 40.62, -10.66, 0.0017, 44, 19.22, -10.56, 0.21115, 45, -2.26, -10.56, 0.60991, 4, 42, - 76.41, 14.43, 0.14418, 43, 38, -10.66, 0.00385, 44, 16.6, -10.56, 0.28407, 45, -4.88, -10.56, 0.5679, 4, 42, 76.24, 11.19, 0.12448, 43, 34.76, -10.66, 0.00813, 44, 13.35, -10.56, - 0.36326, 45, -8.12, -10.56, 0.50413, 4, 42, 76.11, 8.78, 0.11438, 43, 32.35, -10.66, 0.016, 44, 10.95, -10.56, 0.44276, 45, -10.53, -10.56, 0.42686, 4, 42, 75.96, 5.95, 0.11006, 43, - 29.51, -10.66, 0.02948, 44, 8.11, -10.56, 0.51561, 45, -13.37, -10.56, 0.34486, 4, 42, 75.84, 3.69, 0.10858, 43, 27.25, -10.66, 0.05095, 44, 5.84, -10.56, 0.57474, 45, -15.63, - -10.56, 0.26573, 4, 42, 75.71, 1.19, 0.10802, 43, 24.75, -10.66, 0.08291, 44, 3.35, -10.56, 0.614, 45, -18.13, -10.56, 0.19506, 4, 42, 75.55, -1.87, 0.1074, 43, 21.68, -10.66, - 0.12742, 44, 0.28, -10.56, 0.62906, 45, -21.2, -10.56, 0.13612, 4, 42, 75.4, -4.66, 0.10634, 43, 18.89, -10.66, 0.18549, 44, -2.52, -10.56, 0.61812, 45, -23.99, -10.56, 0.09006, 4, - 42, 75.27, -7.19, 0.10502, 43, 16.36, -10.66, 0.25646, 44, -5.05, -10.56, 0.58221, 45, -26.52, -10.56, 0.05631, 4, 42, 75.14, -9.57, 0.10419, 43, 13.97, -10.66, 0.33753, 44, -7.43, - -10.56, 0.52513, 45, -28.91, -10.56, 0.03316, 4, 42, 75, -12.25, 0.10536, 43, 11.29, -10.66, 0.42349, 44, -10.12, -10.56, 0.45282, 45, -31.59, -10.56, 0.01833, 4, 42, 74.83, -15.5, - 0.11098, 43, 8.04, -10.66, 0.50701, 44, -13.37, -10.56, 0.37254, 45, -34.84, -10.56, 0.00948, 4, 42, 74.68, -18.42, 0.12436, 43, 5.11, -10.66, 0.57939, 44, -16.3, -10.56, 0.29168, - 45, -37.77, -10.56, 0.00457, 4, 42, 74.53, -21.28, 0.149, 43, 2.24, -10.66, 0.63222, 44, -19.16, -10.56, 0.21673, 45, -40.64, -10.56, 0.00205, 4, 42, 74.36, -24.48, 0.18726, 43, - -0.96, -10.66, 0.65948, 44, -22.36, -10.56, 0.15241, 45, -43.84, -10.56, 0.00085, 4, 42, 74.16, -28.24, 0.23866, 43, -4.73, -10.66, 0.65975, 44, -26.13, -10.56, 0.10126, 45, -47.61, - -10.56, 0.00033, 4, 42, 73.97, -31.98, 0.29871, 43, -8.46, -10.66, 0.63741, 44, -29.87, -10.56, 0.06376, 45, -51.34, -10.56, 0.00012, 4, 42, 73.77, -35.69, 0.35932, 43, -12.18, - -10.66, 0.60181, 44, -33.58, -10.56, 0.03884, 45, -55.06, -10.56, 4e-05, 4, 42, 73.59, -39.16, 0.49297, 43, -15.66, -10.66, 0.48586, 44, -37.06, -10.56, 0.02116, 45, -58.54, -10.56, - 1e-05, 4, 42, 73.2, -46.43, 0.66969, 43, -22.93, -10.66, 0.32512, 44, -44.34, -10.56, 0.00518, 45, -65.81, -10.56, 0, 4, 42, 68.13, -44.43, 0.73638, 43, -21.2, -5.49, 0.26049, 44, - -42.61, -5.38, 0.00313, 45, -64.08, -5.38, 0, 4, 42, 63.33, -42.54, 0.74288, 43, -19.57, -0.59, 0.25402, 44, -40.97, -0.49, 0.00309, 45, -62.45, -0.49, 1e-05, 2, 42, 57.06, -40.07, - 0.86, 43, -17.44, 5.79, 0.14, 2, 42, 51.63, -37.93, 0.87418, 43, -15.59, 11.32, 0.12582, 1, 42, 45.12, -35.37, 1, 1, 42, 39.61, -33.2, 1, 2, 42, 0.87, -12.9, 0.99965, 43, 6.74, - 63.34, 0.00035, 2, 42, 1.19, -6.79, 0.9998, 43, 12.86, 63.34, 0.0002, 3, 42, 1.58, 0.7, 0.99981, 43, 20.36, 63.34, 9e-05, 45, -22.52, 63.44, 0.0001, 3, 42, 1.95, 7.74, 0.99975, 43, - 27.41, 63.34, 1e-05, 45, -15.46, 63.44, 0.00024, 2, 42, 2.27, 13.79, 0.99954, 45, -9.41, 63.44, 0.00046, 4, 42, 41.3, 0.23, 0.88429, 43, 21.98, 23.65, 0.02526, 44, 0.57, 23.75, - 0.06552, 45, -20.9, 23.75, 0.02493, 1, 42, 40.33, -19.01, 1, 4, 42, 41.2, 17.9, 0.94373, 43, 39.62, 24.67, 0.00089, 44, 18.21, 24.78, 0.01419, 45, -3.26, 24.78, 0.04119, 1, 42, - 41.16, 25.66, 1, 1, 42, 39.91, -27.38, 1, 4, 42, 40.8, -9.72, 0.88619, 43, 12.02, 23.63, 0.05505, 44, -9.38, 23.73, 0.05102, 45, -30.86, 23.73, 0.00774, 4, 42, 41.25, 8.67, 0.89286, - 43, 30.41, 24.14, 0.00746, 44, 9, 24.24, 0.04877, 45, -12.47, 24.24, 0.05092, 1, 42, 45.19, -29.23, 1, 4, 42, 45.92, -19.91, 0.74343, 43, 2.11, 17.98, 0.19678, 44, -19.29, 18.08, - 0.05726, 45, -40.76, 18.08, 0.00254, 4, 42, 46.35, -10.13, 0.58833, 43, 11.9, 18.06, 0.20061, 44, -9.5, 18.16, 0.19026, 45, -30.98, 18.16, 0.0208, 4, 42, 46.71, -0.11, 0.58846, 43, - 21.93, 18.23, 0.08112, 44, 0.53, 18.33, 0.24909, 45, -20.95, 18.33, 0.08133, 4, 42, 46.89, 8.69, 0.59817, 43, 30.72, 18.51, 0.02026, 44, 9.32, 18.61, 0.18761, 45, -12.16, 18.61, - 0.19395, 4, 42, 47.28, 18.23, 0.66183, 43, 40.27, 18.62, 0.00346, 44, 18.87, 18.73, 0.07957, 45, -2.61, 18.73, 0.25514, 1, 42, 47.24, 27.47, 1, 4, 42, 51.11, -31.3, 0.84023, 43, - -8.99, 12.2, 0.15068, 44, -30.39, 12.3, 0.00899, 45, -51.87, 12.3, 0.0001, 4, 42, 51.17, -20.75, 0.48016, 43, 1.55, 12.69, 0.41733, 44, -19.86, 12.79, 0.10062, 45, -41.33, 12.79, - 0.0019, 4, 42, 51.55, -10.51, 0.42576, 43, 11.79, 12.85, 0.28082, 44, -9.61, 12.96, 0.27628, 45, -31.09, 12.96, 0.01714, 4, 42, 51.8, -0.42, 0.43345, 43, 21.89, 13.13, 0.09343, 44, - 0.48, 13.24, 0.37698, 45, -20.99, 13.24, 0.09613, 4, 42, 52.3, 8.71, 0.43708, 43, 31.02, 13.11, 0.01603, 44, 9.62, 13.21, 0.27127, 45, -11.86, 13.21, 0.27562, 4, 42, 52.36, 18.51, - 0.51068, 43, 40.82, 13.56, 0.00179, 44, 19.41, 13.67, 0.09933, 45, -2.06, 13.67, 0.3882, 4, 42, 52.97, 29.16, 0.94195, 43, 51.49, 13.52, 4e-05, 44, 30.08, 13.62, 0.00385, 45, 8.61, - 13.62, 0.05416, 4, 42, 56.91, -33.32, 0.72549, 43, -10.71, 6.3, 0.2621, 44, -32.11, 6.41, 0.01235, 45, -53.59, 6.41, 6e-05, 4, 42, 57.26, -21.73, 0.38729, 43, 0.89, 6.56, 0.4981, 44, - -20.51, 6.66, 0.11341, 45, -41.99, 6.66, 0.0012, 4, 42, 57.36, -10.94, 0.32692, 43, 11.67, 7.02, 0.3274, 44, -9.74, 7.13, 0.32983, 45, -31.21, 7.13, 0.01585, 4, 42, 57.43, -0.76, - 0.33677, 43, 21.84, 7.49, 0.10146, 44, 0.43, 7.6, 0.45593, 45, -21.04, 7.6, 0.10584, 4, 42, 57.8, 8.73, 0.33839, 43, 31.33, 7.62, 0.0144, 44, 9.93, 7.73, 0.32329, 45, -11.55, 7.73, - 0.32392, 4, 42, 58.53, 19.24, 0.42143, 43, 41.87, 7.44, 0.00109, 44, 20.47, 7.55, 0.11176, 45, -1.01, 7.55, 0.46572, 4, 42, 60.09, 31.38, 0.79569, 43, 54.07, 6.52, 5e-05, 44, 32.67, - 6.63, 0.01091, 45, 11.19, 6.63, 0.19335, 4, 42, 63.61, -35.67, 0.66085, 43, -12.7, -0.52, 0.32566, 44, -34.1, -0.41, 0.01346, 45, -55.58, -0.41, 3e-05, 4, 42, 64.06, -22.82, 0.31024, - 43, 0.16, -0.29, 0.56299, 44, -21.25, -0.19, 0.12589, 45, -42.72, -0.19, 0.00089, 4, 42, 64.25, -11.45, 0.24349, 43, 11.52, 0.12, 0.36477, 44, -9.89, 0.22, 0.37599, 45, -31.36, 0.22, - 0.01574, 4, 42, 64.34, -1.18, 0.2525, 43, 21.78, 0.57, 0.10936, 44, 0.37, 0.68, 0.52284, 45, -21.1, 0.68, 0.1153, 4, 42, 64.83, 8.75, 0.2544, 43, 31.72, 0.6, 0.01401, 44, 10.32, - 0.71, 0.36809, 45, -11.16, 0.71, 0.3635, 4, 42, 65.03, 19.51, 0.3466, 43, 42.48, 0.96, 0.00077, 44, 21.07, 1.07, 0.1237, 45, -0.4, 1.07, 0.52893, 4, 42, 66.57, 33.2, 0.69411, 43, - 56.23, 0.15, 3e-05, 44, 34.83, 0.26, 0.01435, 45, 13.35, 0.26, 0.29151, 4, 42, 71.92, 34.78, 0.61986, 43, 58.1, -5.11, 1e-05, 44, 36.69, -5.01, 0.01658, 45, 15.22, -5.01, 0.36355, 4, - 42, 70.84, 19.53, 0.28549, 43, 42.81, -4.84, 0.00065, 44, 21.4, -4.73, 0.13463, 45, -0.07, -4.73, 0.57924, 4, 42, 70.54, 8.77, 0.18483, 43, 32.04, -5.1, 0.01432, 44, 10.64, -4.99, - 0.40541, 45, -10.84, -4.99, 0.39544, 4, 42, 70.23, -1.55, 0.18141, 43, 21.73, -5.33, 0.11681, 44, 0.32, -5.23, 0.57764, 45, -21.15, -5.23, 0.12413, 4, 42, 69.5, -11.84, 0.17479, 43, - 11.41, -5.14, 0.39444, 44, -10, -5.04, 0.41447, 45, -31.47, -5.04, 0.0163, 4, 42, 69.05, -23.63, 0.24784, 43, -0.38, -5.32, 0.61396, 44, -21.79, -5.22, 0.13743, 45, -43.26, -5.22, - 0.00077, 4, 42, 68.55, -37.4, 0.59732, 43, -14.16, -5.54, 0.38768, 44, -35.56, -5.43, 0.01499, 45, -57.04, -5.43, 1e-05, 4, 42, 22.71, 0.45, 0.98403, 43, 21.22, 42.22, 0.00516, 44, - -0.19, 42.33, 0.00609, 45, -21.66, 42.33, 0.00473, 3, 42, 13.08, -10.5, 0.98457, 43, 9.78, 51.26, 0.01421, 44, -11.62, 51.37, 0.00123, 3, 42, 16.1, 11.4, 0.98807, 44, 10.41, 49.51, - 0.00101, 45, -11.07, 49.51, 0.01092, 1, 42, 40.1, -23.51, 1, 4, 42, 45.53, -24.85, 0.93122, 43, -2.85, 18.1, 0.05888, 44, -24.25, 18.21, 0.00959, 45, -45.73, 18.21, 0.0003, 4, 42, - 51.14, -26.22, 0.67882, 43, -3.92, 12.43, 0.287, 44, -25.32, 12.54, 0.03374, 45, -46.8, 12.54, 0.00045, 4, 42, 57.07, -27.81, 0.52353, 43, -5.19, 6.42, 0.4314, 44, -26.59, 6.53, - 0.04479, 45, -48.07, 6.53, 0.00029, 4, 42, 63.82, -29.53, 0.41464, 43, -6.56, -0.41, 0.53292, 44, -27.96, -0.3, 0.05226, 45, -49.44, -0.3, 0.00018, 4, 42, 68.8, -30.65, 0.35706, 43, - -7.41, -5.43, 0.58638, 44, -28.81, -5.33, 0.05644, 45, -50.29, -5.33, 0.00012, 4, 42, 40.56, -14.49, 0.88311, 43, 7.24, 23.62, 0.07338, 44, -14.17, 23.72, 0.03978, 45, -35.64, 23.72, - 0.00372, 4, 42, 46.13, -15.07, 0.62555, 43, 6.96, 18.02, 0.24007, 44, -14.45, 18.12, 0.1259, 45, -35.92, 18.12, 0.00848, 4, 42, 51.36, -15.56, 0.4342, 43, 6.74, 12.77, 0.37611, 44, - -14.67, 12.88, 0.18375, 45, -36.14, 12.88, 0.00595, 4, 42, 57.31, -16.26, 0.33684, 43, 6.35, 6.79, 0.44427, 44, -15.05, 6.9, 0.21425, 45, -36.53, 6.9, 0.00464, 4, 42, 64.16, -17.02, - 0.25537, 43, 5.95, -0.08, 0.49872, 44, -15.45, 0.02, 0.24179, 45, -36.93, 0.02, 0.00413, 4, 42, 69.28, -17.64, 0.18921, 43, 5.6, -5.23, 0.54119, 44, -15.8, -5.13, 0.26556, 45, - -37.28, -5.13, 0.00404, 4, 42, 41.05, -4.82, 0.83361, 43, 16.93, 23.64, 0.05679, 44, -4.48, 23.74, 0.08927, 45, -25.95, 23.74, 0.02033, 4, 42, 46.53, -5.25, 0.57797, 43, 16.78, - 18.14, 0.13938, 44, -4.63, 18.25, 0.23843, 45, -26.1, 18.25, 0.04422, 4, 42, 51.66, -5.87, 0.42696, 43, 16.43, 12.98, 0.17737, 44, -4.97, 13.08, 0.35156, 45, -26.45, 13.08, 0.04411, - 4, 42, 57.39, -6.06, 0.33132, 43, 16.54, 7.25, 0.20059, 44, -4.86, 7.35, 0.42277, 45, -26.34, 7.35, 0.04531, 4, 42, 64.29, -6.56, 0.24781, 43, 16.41, 0.33, 0.22055, 44, -4.99, 0.44, - 0.48389, 45, -26.47, 0.44, 0.04775, 4, 42, 69.85, -6.91, 0.17763, 43, 16.35, -5.23, 0.23735, 44, -5.05, -5.13, 0.53429, 45, -26.52, -5.13, 0.05074, 4, 42, 41.28, 4.25, 0.83746, 43, - 26, 23.88, 0.02009, 44, 4.59, 23.99, 0.08772, 45, -16.88, 23.99, 0.05473, 4, 42, 46.8, 4.29, 0.58276, 43, 26.32, 18.37, 0.04346, 44, 4.92, 18.47, 0.23645, 45, -16.56, 18.47, 0.13732, - 4, 42, 52.06, 4.23, 0.43226, 43, 26.54, 13.12, 0.04191, 44, 5.13, 13.22, 0.34769, 45, -16.34, 13.22, 0.17814, 4, 42, 57.61, 3.94, 0.33656, 43, 26.54, 7.56, 0.0422, 44, 5.14, 7.66, - 0.41771, 45, -16.34, 7.66, 0.20353, 4, 42, 64.59, 3.92, 0.25264, 43, 26.89, 0.59, 0.04384, 44, 5.49, 0.69, 0.47782, 45, -15.99, 0.69, 0.2257, 4, 42, 70.39, 3.84, 0.18189, 43, 27.11, - -5.21, 0.04615, 44, 5.71, -5.11, 0.52741, 45, -15.77, -5.11, 0.24456, 4, 42, 41.23, 12.93, 0.8608, 43, 34.66, 24.39, 0.00457, 44, 13.26, 24.49, 0.04889, 45, -8.22, 24.49, 0.08574, 4, - 42, 47.07, 13.06, 0.60926, 43, 35.09, 18.56, 0.00894, 44, 13.69, 18.67, 0.13479, 45, -7.79, 18.67, 0.247, 4, 42, 52.33, 13.43, 0.45377, 43, 35.74, 13.33, 0.00554, 44, 14.33, 13.43, - 0.18027, 45, -7.14, 13.43, 0.36041, 4, 42, 58.15, 13.75, 0.35749, 43, 36.37, 7.54, 0.00417, 44, 14.96, 7.64, 0.20976, 45, -6.51, 7.64, 0.42858, 4, 42, 64.93, 13.95, 0.27612, 43, - 36.92, 0.78, 0.00359, 44, 15.52, 0.88, 0.23625, 45, -5.96, 0.88, 0.48404, 4, 42, 70.69, 14.22, 0.20954, 43, 37.5, -4.97, 0.00344, 44, 16.1, -4.86, 0.25903, 45, -5.38, -4.86, 0.52799, - 1, 42, 41.18, 21.86, 1, 4, 42, 47.26, 22.62, 0.82489, 43, 44.65, 18.87, 0.00083, 44, 23.25, 18.98, 0.0268, 45, 1.77, 18.98, 0.14748, 4, 42, 52.68, 24.04, 0.64773, 43, 46.35, 13.54, - 0.00052, 44, 24.95, 13.65, 0.04091, 45, 3.47, 13.65, 0.31084, 4, 42, 59.31, 25.35, 0.53225, 43, 48.01, 6.98, 0.00029, 44, 26.6, 7.09, 0.04857, 45, 5.13, 7.09, 0.41889, 4, 42, 65.88, - 27.11, 0.46955, 43, 50.12, 0.51, 0.00016, 44, 28.71, 0.62, 0.05201, 45, 7.24, 0.62, 0.47828, 4, 42, 71.43, 27.89, 0.41589, 43, 51.19, -4.99, 0.0001, 44, 29.78, -4.88, 0.05591, 45, - 8.31, -4.88, 0.5281, 4, 42, 51.12, -28.92, 0.72647, 43, -6.61, 12.31, 0.25381, 44, -28.01, 12.41, 0.01954, 45, -49.49, 12.41, 0.00018, 4, 42, 56.98, -30.79, 0.64422, 43, -8.18, 6.36, - 0.33291, 44, -29.58, 6.46, 0.02275, 45, -51.06, 6.46, 0.00011, 4, 42, 63.71, -32.68, 0.55448, 43, -9.7, -0.46, 0.41902, 44, -31.11, -0.36, 0.02643, 45, -52.58, -0.36, 7e-05, 4, 42, - 68.66, -34.31, 0.44397, 43, -11.07, -5.49, 0.52396, 44, -32.48, -5.38, 0.03202, 45, -53.95, -5.38, 4e-05, 4, 42, 51.16, -23.65, 0.5094, 43, -1.35, 12.55, 0.4213, 44, -22.75, 12.66, - 0.06847, 45, -44.22, 12.66, 0.00083, 4, 42, 57.16, -24.79, 0.42549, 43, -2.17, 6.49, 0.49746, 44, -23.57, 6.6, 0.07648, 45, -45.05, 6.6, 0.00057, 4, 42, 63.94, -26.25, 0.35688, 43, - -3.28, -0.35, 0.55926, 44, -24.68, -0.25, 0.08347, 45, -46.16, -0.25, 0.00039, 4, 42, 68.91, -27.43, 0.29772, 43, -4.19, -5.38, 0.61133, 44, -25.59, -5.28, 0.09064, 45, -47.07, - -5.28, 0.00031, 4, 42, 69.16, -20.73, 0.21136, 43, 2.51, -5.28, 0.59029, 44, -18.89, -5.17, 0.19654, 45, -40.37, -5.17, 0.00182, 4, 42, 64.11, -19.92, 0.275, 43, 3.05, -0.19, - 0.54348, 44, -18.35, -0.08, 0.17958, 45, -39.83, -0.08, 0.00194, 4, 42, 57.28, -19.35, 0.35002, 43, 3.27, 6.66, 0.48643, 44, -18.14, 6.77, 0.16123, 45, -39.61, 6.77, 0.00232, 4, 42, - 51.26, -18.48, 0.41881, 43, 3.82, 12.72, 0.43213, 44, -17.59, 12.83, 0.1461, 45, -39.06, 12.83, 0.00296, 4, 42, 51.45, -13.1, 0.39313, 43, 9.2, 12.81, 0.35299, 44, -12.2, 12.91, - 0.24433, 45, -33.68, 12.91, 0.00955, 4, 42, 57.34, -13.55, 0.32258, 43, 9.06, 6.91, 0.39406, 44, -12.34, 7.02, 0.27473, 45, -33.82, 7.02, 0.00863, 4, 42, 64.2, -14.31, 0.24476, 43, - 8.66, 0.02, 0.43744, 44, -12.74, 0.12, 0.30953, 45, -34.22, 0.12, 0.00827, 4, 42, 69.38, -14.93, 0.17804, 43, 8.31, -5.19, 0.47328, 44, -13.09, -5.08, 0.3403, 45, -34.57, -5.08, - 0.00838, 4, 42, 69.68, -9.29, 0.17525, 43, 13.97, -5.19, 0.31355, 44, -7.44, -5.08, 0.48153, 45, -28.91, -5.08, 0.02968, 4, 42, 64.27, -9.12, 0.24396, 43, 13.85, 0.22, 0.29088, 44, - -7.55, 0.33, 0.43695, 45, -29.03, 0.33, 0.02821, 4, 42, 57.38, -8.64, 0.32275, 43, 13.97, 7.13, 0.26435, 44, -7.44, 7.23, 0.38552, 45, -28.91, 7.23, 0.02739, 4, 42, 51.61, -8.2, - 0.39269, 43, 14.1, 12.92, 0.24007, 44, -7.3, 13.02, 0.33961, 45, -28.78, 13.02, 0.02763, 4, 42, 51.73, -3.15, 0.39835, 43, 19.16, 13.05, 0.13664, 44, -2.25, 13.16, 0.3972, 45, - -23.72, 13.16, 0.06781, 4, 42, 57.41, -3.5, 0.32898, 43, 19.1, 7.37, 0.14701, 44, -2.3, 7.47, 0.45281, 45, -23.78, 7.47, 0.07119, 4, 42, 64.31, -3.92, 0.24968, 43, 19.05, 0.45, - 0.15947, 44, -2.36, 0.56, 0.51456, 45, -23.83, 0.56, 0.07629, 4, 42, 70.03, -4.3, 0.17972, 43, 18.96, -5.28, 0.17094, 44, -2.44, -5.18, 0.56767, 45, -23.91, -5.18, 0.08167, 4, 42, - 70.31, 1.21, 0.18179, 43, 24.49, -5.27, 0.07557, 44, 3.08, -5.17, 0.56385, 45, -18.39, -5.17, 0.17879, 4, 42, 64.46, 1.3, 0.25204, 43, 24.27, 0.58, 0.07119, 44, 2.86, 0.68, 0.51118, - 45, -18.61, 0.68, 0.16559, 4, 42, 57.52, 1.66, 0.33157, 43, 24.26, 7.52, 0.0672, 44, 2.86, 7.63, 0.44995, 45, -18.62, 7.63, 0.15128, 4, 42, 51.92, 1.69, 0.40101, 43, 23.99, 13.13, - 0.06478, 44, 2.59, 13.23, 0.39483, 45, -18.89, 13.23, 0.13938, 4, 42, 52.17, 6.37, 0.401, 43, 28.68, 13.11, 0.0258, 44, 7.28, 13.22, 0.33427, 45, -14.2, 13.22, 0.23894, 4, 42, 57.7, - 6.22, 0.3309, 43, 28.82, 7.59, 0.02514, 44, 7.42, 7.69, 0.37908, 45, -14.06, 7.69, 0.26488, 4, 42, 64.69, 5.99, 0.25155, 43, 28.96, 0.59, 0.02548, 44, 7.56, 0.7, 0.4293, 45, -13.92, - 0.7, 0.29367, 4, 42, 70.45, 5.95, 0.18206, 43, 29.22, -5.16, 0.02652, 44, 7.82, -5.06, 0.47284, 45, -13.66, -5.06, 0.31858, 4, 42, 70.61, 11.41, 0.19245, 43, 34.69, -5.04, 0.00724, - 44, 13.29, -4.93, 0.3321, 45, -8.19, -4.93, 0.46821, 4, 42, 70.77, 17.07, 0.23948, 43, 40.35, -4.9, 0.00153, 44, 18.94, -4.79, 0.19195, 45, -2.53, -4.79, 0.56704, 4, 42, 71.13, - 23.54, 0.346, 43, 46.82, -4.91, 0.00026, 44, 25.42, -4.81, 0.08922, 45, 3.94, -4.81, 0.56452, 4, 42, 71.67, 31.21, 0.48407, 43, 54.51, -5.05, 4e-05, 44, 33.11, -4.94, 0.03358, 45, - 11.63, -4.94, 0.48231, 4, 42, 66.23, 30.24, 0.54501, 43, 53.26, 0.33, 7e-05, 44, 31.86, 0.43, 0.03077, 45, 10.38, 0.43, 0.42415, 4, 42, 65.41, 22.86, 0.40266, 43, 45.85, 0.77, - 0.00034, 44, 24.45, 0.87, 0.08247, 45, 2.97, 0.87, 0.51452, 4, 42, 64.98, 16.56, 0.30287, 43, 39.53, 0.86, 0.00168, 44, 18.13, 0.97, 0.17579, 45, -3.35, 0.97, 0.51965, 4, 42, 64.87, - 11.12, 0.25994, 43, 34.09, 0.68, 0.00726, 44, 12.69, 0.79, 0.30245, 45, -8.79, 0.79, 0.43035, 4, 42, 57.96, 11, 0.3382, 43, 33.61, 7.58, 0.00776, 44, 12.21, 7.69, 0.26884, 45, -9.27, - 7.69, 0.38519, 4, 42, 58.32, 16.31, 0.37706, 43, 38.93, 7.49, 0.00208, 44, 17.52, 7.6, 0.15821, 45, -3.95, 7.6, 0.46265, 4, 42, 58.9, 22.12, 0.46779, 43, 44.77, 7.23, 0.00052, 44, - 23.36, 7.33, 0.07582, 45, 1.89, 7.33, 0.45586, 4, 42, 59.69, 28.3, 0.65325, 43, 50.97, 6.76, 0.00012, 44, 29.57, 6.86, 0.02541, 45, 8.09, 6.86, 0.32123, 4, 42, 52.82, 26.61, 0.75526, - 43, 48.93, 13.53, 0.00017, 44, 27.52, 13.64, 0.02002, 45, 6.05, 13.64, 0.22455, 4, 42, 52.51, 21.1, 0.52586, 43, 43.41, 13.55, 0.00082, 44, 22, 13.66, 0.07106, 45, 0.53, 13.66, - 0.40226, 4, 42, 52.35, 15.86, 0.44455, 43, 38.16, 13.44, 0.00273, 44, 16.76, 13.54, 0.1436, 45, -4.72, 13.54, 0.40912, 4, 42, 52.31, 10.54, 0.40864, 43, 32.85, 13.19, 0.0088, 44, - 11.45, 13.3, 0.23945, 45, -10.03, 13.3, 0.34311, 4, 42, 70.77, -38.17, 0.52059, 43, -14.82, -7.8, 0.45917, 44, -36.22, -7.7, 0.02022, 45, -57.7, -7.7, 1e-05, 4, 42, 70.83, -34.9, - 0.37517, 43, -11.54, -7.69, 0.58803, 44, -32.95, -7.59, 0.03676, 45, -54.42, -7.59, 4e-05, 4, 42, 70.97, -31.21, 0.31655, 43, -7.85, -7.63, 0.62281, 44, -29.26, -7.53, 0.06054, 45, - -50.73, -7.53, 0.00011, 4, 42, 71.13, -27.77, 0.25662, 43, -4.41, -7.62, 0.64624, 44, -25.82, -7.51, 0.09684, 45, -47.29, -7.51, 0.0003, 4, 42, 71.2, -23.97, 0.20542, 43, -0.61, - -7.48, 0.64718, 44, -22.02, -7.37, 0.14662, 45, -43.49, -7.37, 0.00077, 4, 42, 71.35, -20.96, 0.16774, 43, 2.4, -7.48, 0.62093, 44, -19, -7.37, 0.20946, 45, -40.48, -7.37, 0.00187, - 4, 42, 71.49, -17.96, 0.14406, 43, 5.4, -7.45, 0.56885, 44, -16, -7.35, 0.28288, 45, -37.48, -7.35, 0.00421, 4, 42, 71.65, -15.17, 0.13169, 43, 8.2, -7.46, 0.49722, 44, -13.21, - -7.36, 0.36227, 45, -34.68, -7.36, 0.00882, 4, 42, 71.89, -12.02, 0.12708, 43, 11.35, -7.54, 0.41453, 44, -10.05, -7.44, 0.44117, 45, -31.52, -7.44, 0.01722, 4, 42, 71.98, -9.41, - 0.12668, 43, 13.97, -7.49, 0.32958, 44, -7.43, -7.39, 0.51233, 45, -28.91, -7.39, 0.03141, 4, 42, 72.15, -7.02, 0.12812, 43, 16.36, -7.53, 0.24965, 44, -5.05, -7.43, 0.56851, 45, - -26.52, -7.43, 0.05372, 4, 42, 72.39, -4.46, 0.12979, 43, 18.93, -7.65, 0.1799, 44, -2.47, -7.54, 0.60387, 45, -23.95, -7.54, 0.08644, 4, 42, 72.47, -1.68, 0.13105, 43, 21.71, -7.58, - 0.12302, 44, 0.3, -7.47, 0.61461, 45, -21.17, -7.47, 0.13132, 4, 42, 72.58, 1.2, 0.13159, 43, 24.6, -7.54, 0.07962, 44, 3.19, -7.43, 0.5998, 45, -18.28, -7.43, 0.18899, 4, 42, 72.71, - 3.77, 0.13189, 43, 27.17, -7.53, 0.04862, 44, 5.76, -7.42, 0.56113, 45, -15.71, -7.42, 0.25837, 4, 42, 72.9, 5.95, 0.13282, 43, 29.35, -7.61, 0.02792, 44, 7.95, -7.5, 0.50297, 45, - -13.53, -7.5, 0.33629, 4, 42, 72.96, 8.77, 0.13637, 43, 32.18, -7.52, 0.01503, 44, 10.77, -7.41, 0.43134, 45, -10.7, -7.41, 0.41726, 4, 42, 73.15, 11.31, 0.14539, 43, 34.72, -7.57, - 0.00757, 44, 13.32, -7.46, 0.35328, 45, -8.16, -7.46, 0.49376, 4, 42, 73.26, 14.32, 0.16393, 43, 37.73, -7.53, 0.00355, 44, 16.32, -7.43, 0.27561, 45, -5.15, -7.43, 0.55691, 4, 42, - 73.56, 17.06, 0.19585, 43, 40.48, -7.68, 0.00155, 44, 19.08, -7.58, 0.20422, 45, -2.4, -7.58, 0.59837, 4, 42, 73.65, 19.69, 0.24372, 43, 43.11, -7.63, 0.00063, 44, 21.71, -7.53, - 0.14329, 45, 0.23, -7.53, 0.61235, 4, 42, 73.87, 23.74, 0.30631, 43, 47.17, -7.64, 0.00024, 44, 25.77, -7.53, 0.09501, 45, 4.29, -7.53, 0.59844, 4, 42, 74.01, 28.34, 0.3775, 43, - 51.77, -7.54, 9e-05, 44, 30.37, -7.43, 0.05972, 45, 8.89, -7.43, 0.5627, 4, 42, 74.28, 31.7, 0.44548, 43, 55.14, -7.63, 3e-05, 44, 33.74, -7.53, 0.03652, 45, 12.26, -7.53, 0.51797, - 4, 42, 74.78, 35.38, 0.56131, 43, 58.84, -7.93, 1e-05, 44, 37.44, -7.83, 0.02128, 45, 15.96, -7.83, 0.41739 - ], - "hull": 44, - "edges": [ - 78, 76, 86, 0, 78, 80, 80, 82, 82, 84, 84, 86, 0, 94, 76, 96, 62, 64, 74, 76, 102, 96, 74, 102, 104, 90, 106, 98, 108, 88, 110, 100, 112, 92, 114, 94, 2, 0, 114, 2, 72, 74, 116, 102, - 72, 116, 118, 104, 120, 106, 122, 108, 124, 110, 126, 112, 128, 114, 4, 2, 128, 4, 70, 72, 130, 116, 70, 130, 132, 118, 134, 120, 136, 122, 138, 124, 140, 126, 142, 128, 8, 6, 6, 4, - 142, 6, 68, 70, 144, 130, 68, 144, 146, 132, 148, 134, 150, 136, 152, 138, 154, 140, 156, 142, 156, 8, 8, 10, 10, 12, 12, 158, 158, 156, 10, 158, 160, 154, 162, 152, 164, 150, 166, - 148, 168, 146, 170, 144, 64, 66, 66, 68, 170, 66, 82, 172, 172, 88, 98, 172, 172, 100, 80, 174, 174, 90, 96, 174, 84, 176, 176, 92, 94, 176, 90, 178, 178, 96, 102, 180, 180, 104, - 178, 180, 180, 182, 182, 184, 184, 186, 186, 188, 90, 190, 190, 98, 104, 192, 192, 106, 190, 192, 192, 194, 194, 196, 196, 198, 198, 200, 88, 202, 202, 98, 106, 204, 204, 108, 202, - 204, 204, 206, 206, 208, 208, 210, 210, 212, 88, 214, 214, 100, 108, 216, 216, 110, 214, 216, 216, 218, 218, 220, 220, 222, 222, 224, 92, 226, 226, 100, 110, 228, 228, 112, 226, 228, - 228, 230, 230, 232, 232, 234, 234, 236, 92, 238, 238, 94, 112, 240, 240, 114, 238, 240, 240, 242, 242, 244, 244, 246, 246, 248, 12, 14, 170, 64, 116, 250, 250, 182, 130, 252, 252, - 184, 250, 252, 144, 254, 254, 186, 252, 254, 170, 256, 256, 188, 254, 256, 58, 60, 60, 62, 118, 258, 258, 182, 132, 260, 260, 184, 258, 260, 146, 262, 262, 186, 260, 262, 168, 264, - 264, 188, 262, 264, 54, 56, 56, 58, 50, 52, 52, 54, 168, 266, 266, 200, 146, 268, 268, 198, 266, 268, 132, 270, 270, 196, 268, 270, 118, 272, 272, 194, 270, 272, 120, 274, 274, 194, - 134, 276, 276, 196, 274, 276, 148, 278, 278, 198, 276, 278, 166, 280, 280, 200, 278, 280, 46, 48, 48, 50, 42, 44, 44, 46, 166, 282, 282, 212, 148, 284, 284, 210, 282, 284, 134, 286, - 286, 208, 284, 286, 120, 288, 288, 206, 286, 288, 122, 290, 290, 206, 136, 292, 292, 208, 290, 292, 150, 294, 294, 210, 292, 294, 164, 296, 296, 212, 294, 296, 38, 40, 40, 42, 34, - 36, 36, 38, 164, 298, 298, 224, 150, 300, 300, 222, 298, 300, 136, 302, 302, 220, 300, 302, 122, 304, 304, 218, 302, 304, 124, 306, 306, 218, 138, 308, 308, 220, 306, 308, 152, 310, - 310, 222, 308, 310, 162, 312, 312, 224, 310, 312, 30, 32, 32, 34, 26, 28, 28, 30, 162, 314, 314, 236, 22, 24, 24, 26, 160, 316, 316, 236, 18, 20, 20, 22, 160, 318, 318, 248, 14, 16, - 16, 18, 158, 320, 320, 248, 156, 322, 322, 246, 320, 322, 154, 324, 324, 246, 318, 324, 154, 326, 326, 234, 316, 326, 152, 328, 328, 234, 314, 328, 138, 330, 330, 232, 328, 330, 140, - 332, 332, 232, 326, 332, 140, 334, 334, 244, 324, 334, 142, 336, 336, 244, 322, 336, 128, 338, 338, 242, 336, 338, 126, 340, 340, 242, 334, 340, 126, 342, 342, 230, 332, 342, 124, - 344, 344, 230, 330, 344, 62, 346, 346, 170, 60, 348, 348, 256, 346, 348, 58, 350, 350, 188, 348, 350, 56, 352, 352, 264, 350, 352, 54, 354, 354, 168, 352, 354, 52, 356, 356, 266, - 354, 356, 50, 358, 358, 200, 356, 358, 48, 360, 360, 280, 358, 360, 46, 362, 362, 166, 360, 362, 44, 364, 364, 282, 362, 364, 42, 366, 366, 212, 364, 366, 40, 368, 368, 296, 366, - 368, 38, 370, 370, 164, 368, 370, 36, 372, 372, 298, 370, 372, 34, 374, 374, 224, 372, 374, 32, 376, 376, 312, 374, 376, 30, 378, 378, 162, 376, 378, 28, 380, 380, 314, 378, 380, 26, - 382, 382, 236, 380, 382, 24, 384, 384, 316, 382, 384, 22, 386, 386, 160, 384, 386, 20, 388, 388, 318, 386, 388, 18, 390, 390, 248, 388, 390, 16, 392, 392, 320, 390, 392, 14, 394, - 394, 158, 392, 394 - ], - "width": 83, - "height": 80, - "path": "summer-as.ear-right-bubble" - } - }, - "ear-right-dot-01": {"ear-right-dot": {"x": -0.78, "y": -0.78, "rotation": -0.95, "width": 21, "height": 14, "path": "summer-as.ear-right-dot"}}, - "ear-right-dot-02": {"ear-right-dot": {"x": -0.78, "y": -0.78, "rotation": -0.95, "width": 21, "height": 14, "path": "summer-as.ear-right-dot"}}, - "ear-right-dot-03": {"ear-right-dot": {"x": -0.78, "y": -0.78, "rotation": -0.95, "width": 21, "height": 14, "path": "summer-as.ear-right-dot"}}, - "ear-right-dot-04": {"ear-right-dot": {"x": -0.78, "y": -0.78, "rotation": -0.95, "width": 21, "height": 14, "path": "summer-as.ear-right-dot"}}, - "ear-right-dot-05": {"ear-right-dot": {"x": -0.78, "y": -0.78, "rotation": -0.95, "width": 21, "height": 14, "path": "summer-as.ear-right-dot"}}, - "ear-right-dot-06": {"ear-right-dot": {"x": -0.78, "y": -0.78, "rotation": -0.95, "width": 21, "height": 14, "path": "summer-as.ear-right-dot"}}, - "ear-right-dot-07": {"ear-right-dot": {"x": -0.78, "y": -0.78, "rotation": -0.95, "width": 21, "height": 14, "path": "summer-as.ear-right-dot"}}, - "ear-right-dot-08": {"ear-right-dot": {"x": -0.78, "y": -0.78, "rotation": -0.95, "width": 21, "height": 14, "path": "summer-as.ear-right-dot"}}, - "ear-right-dot-09": {"ear-right-dot": {"x": -0.78, "y": -0.78, "rotation": -0.95, "width": 21, "height": 14, "path": "summer-as.ear-right-dot"}}, - "ear-right-dot-10": {"ear-right-dot": {"x": -0.78, "y": -0.78, "rotation": -0.95, "width": 21, "height": 14, "path": "summer-as.ear-right-dot"}}, - "ear-right-dot-11": {"ear-right-dot": {"x": -0.78, "y": -0.78, "rotation": -0.95, "width": 21, "height": 14, "path": "summer-as.ear-right-dot"}}, - "ear-right-dot-12": {"ear-right-dot": {"x": -0.78, "y": -0.78, "rotation": -0.95, "width": 21, "height": 14, "path": "summer-as.ear-right-dot"}}, - "ear-right-dot-13": {"ear-right-dot": {"x": -0.78, "y": -0.78, "rotation": -0.95, "width": 21, "height": 14, "path": "summer-as.ear-right-dot"}}, - "ear-right-dot-14": {"ear-right-dot": {"x": -0.78, "y": -0.78, "rotation": -0.95, "width": 21, "height": 14, "path": "summer-as.ear-right-dot"}}, - "ear-right-dot-15": {"ear-right-dot": {"x": -0.78, "y": -0.78, "rotation": -0.95, "width": 21, "height": 14, "path": "summer-as.ear-right-dot"}}, - "ear-right-dot-16": {"ear-right-dot": {"x": -0.78, "y": -0.78, "rotation": -0.95, "width": 21, "height": 14, "path": "summer-as.ear-right-dot"}}, - "ear-right-dot-17": {"ear-right-dot": {"x": -0.78, "y": -0.78, "rotation": -0.95, "width": 21, "height": 14, "path": "summer-as.ear-right-dot"}}, - "ear-right-dot-18": {"ear-right-dot": {"x": -0.78, "y": -0.78, "rotation": -0.95, "width": 21, "height": 14, "path": "summer-as.ear-right-dot"}}, - "ear-right-dot-19": {"ear-right-dot": {"x": -0.78, "y": -0.78, "rotation": -0.95, "width": 21, "height": 14, "path": "summer-as.ear-right-dot"}}, - "ear-right-dot-20": {"ear-right-dot": {"x": -0.78, "y": -0.78, "rotation": -0.95, "width": 21, "height": 14, "path": "summer-as.ear-right-dot"}}, - "ear-right-under": {"ear-right-under": {"x": 84.87, "y": -16.34, "rotation": -93, "width": 119, "height": 205, "path": "summer-as.ear-right-under"}}, - "ear-right-upper": {"ear-right-upper": {"x": 89.21, "y": -19.57, "rotation": -93, "width": 129, "height": 214, "path": "summer-as.ear-right-upper"}}, - "eyes": { - "eyes": {"x": 23.23, "y": 24.61, "width": 330, "height": 155, "path": "summer-as.eyes"}, - "eyes-angry": {"x": 24.37, "y": 24.61, "width": 330, "height": 155, "path": "summer-as.eyes-angry"}, - "eyes-happy": {"x": 24.37, "y": 24.61, "width": 330, "height": 155, "path": "summer-as.eyes-happy"}, - "eyes-shut": {"x": 24.37, "y": 24.61, "width": 330, "height": 155, "path": "summer-as.eyes-shut"} - }, - "eyes-happy-accessory": {"eyes-happy-accessory": {"x": 0.37, "y": 0.4, "scaleX": 1.4, "scaleY": 1.4, "width": 99, "height": 105, "path": "summer-as.eyes-happy-accessory"}}, - "eyes-light-dot": {"eye-light-dot": {"x": -0.96, "y": 1.51, "width": 70, "height": 72, "path": "summer-as.eye-light-dot"}}, - "eyes-light-dot-02": {"eye-light-dot": {"x": -0.96, "y": 1.51, "width": 70, "height": 72, "path": "summer-as.eye-light-dot"}}, - "eyes-light-left": {"light": {"x": 6.55, "y": 1.56, "scaleX": 1.2, "scaleY": 1.8, "rotation": 178.57, "width": 49, "height": 73, "path": "summer-as.light"}}, - "eyes-light-right": {"light": {"x": 6.55, "y": 1.56, "scaleX": 1.2, "scaleY": 1.8, "rotation": 178.57, "width": 49, "height": 73, "path": "summer-as.light"}}, - "eyes-upper": {"eyes-upper": {"x": 24.04, "y": 24.72, "width": 328, "height": 153, "path": "summer-as.eyes-upper"}}, - "horn": {"horn": {"x": 101.61, "y": -20.37, "rotation": -90, "width": 232, "height": 237, "path": "summer-as.horn"}}, - "mouth": { - "mouth": {"x": -11.63, "y": 54.61, "width": 144, "height": 57, "path": "summer-as.mouth"}, - "mouth-bite": {"x": -1.13, "y": 39.61, "width": 167, "height": 99, "path": "summer-as.mouth-bite"}, - "mouth-open": {"x": -6.63, "y": 16.11, "width": 156, "height": 140, "path": "summer-as.mouth-open"}, - "mouth-smile": {"x": -1.63, "y": 47.61, "width": 166, "height": 65, "path": "summer-as.mouth-smile"} + "leg-front-right": { + "leg-front-right": {"x": 31.35, "y": -0.5423529411764709, "rotation": 87.96, "width": 80.0, "height": 91.76470588235294, "path": "body-normal.leg-front-right"}, + "leg-front-right-long": { + "x": 37.53058823529412, "y": 0.20294117647058696, "rotation": 205.96, "width": 87.05882352941177, "height": 75.29411764705883, "path": "body-normal.leg-front-right-long" + }, + "leg-front-right-stretch": {"x": 31.15, "y": 2.192352941176471, "rotation": 142.01, "width": 80.0, "height": 68.23529411764706, "path": "body-normal.leg-front-right-stretch"} }, - "mouth-accessory": { - "mouth-accessory": { - "type": "mesh", - "uvs": [ - 0.7567, 0.0473, 0.86697, 0.14039, 0.9443, 0.25209, 0.99714, 0.36666, 0.99999, 0.49597, 1, 0.61625, 0.9486, 0.73368, 0.85981, 0.85684, 0.74238, 0.95422, 0.58914, 1, 0.46884, 1, - 0.36484, 0.99858, 0.24169, 0.95082, 0.12854, 0.86646, 0.03732, 0.75174, 0, 0.59723, 0, 0.48254, 0, 0.36237, 0.04691, 0.22488, 0.14286, 0.10888, 0.25027, 0.03298, 0.37916, 0, 0.49749, - 0, 0.62208, 0, 0.48816, 0.49691, 0.38984, 0.47048, 0.40039, 0.4428, 0.42008, 0.42041, 0.44087, 0.4047, 0.46611, 0.39392, 0.49007, 0.39257, 0.5155, 0.39441, 0.54363, 0.40403, 0.56948, - 0.42037, 0.58681, 0.44396, 0.59625, 0.46925, 0.60239, 0.4967, 0.59962, 0.5229, 0.58591, 0.54718, 0.56617, 0.57246, 0.53987, 0.58993, 0.50841, 0.5978, 0.48422, 0.59958, 0.46389, - 0.59563, 0.44255, 0.58693, 0.41915, 0.56782, 0.40098, 0.54296, 0.39091, 0.5164, 0.38677, 0.494, 0.25326, 0.49016, 0.26189, 0.43608, 0.28722, 0.37303, 0.33073, 0.32, 0.38007, 0.28612, - 0.43888, 0.26671, 0.49242, 0.26434, 0.5491, 0.26844, 0.61141, 0.29055, 0.66979, 0.32597, 0.72081, 0.37204, 0.74533, 0.4311, 0.75435, 0.49642, 0.74415, 0.5566, 0.71527, 0.6137, - 0.66814, 0.67121, 0.6053, 0.70764, 0.53338, 0.72221, 0.47953, 0.72167, 0.43531, 0.71188, 0.25606, 0.54343, 0.2836, 0.60497, 0.33013, 0.6593, 0.38745, 0.69572, 0.2371, 0.756, 0.32258, - 0.81152, 0.40412, 0.83877, 0.47432, 0.85748, 0.5622, 0.86577, 0.67514, 0.83328, 0.76201, 0.76212, 0.82762, 0.67147, 0.86788, 0.58544, 0.89046, 0.49617, 0.88879, 0.39439, 0.84496, - 0.30541, 0.77906, 0.22313, 0.69067, 0.15785, 0.58965, 0.1164, 0.49532, 0.10584, 0.40602, 0.11317, 0.30758, 0.14475, 0.22046, 0.19609, 0.15118, 0.28916, 0.11571, 0.39679, 0.10936, - 0.48603, 0.11577, 0.57155, 0.16414, 0.68085 - ], - "triangles": [ - 76, 67, 66, 74, 71, 72, 67, 75, 68, 75, 72, 68, 62, 36, 61, 58, 33, 57, 65, 66, 40, 65, 39, 64, 44, 72, 71, 64, 38, 63, 71, 70, 46, 63, 37, 62, 70, 69, 47, 69, 49, 48, 49, 50, 25, - 50, 51, 26, 26, 51, 52, 52, 53, 28, 57, 32, 56, 56, 31, 55, 53, 54, 29, 55, 29, 54, 35, 34, 59, 41, 42, 24, 40, 41, 24, 43, 24, 42, 39, 40, 24, 24, 43, 44, 44, 45, 24, 39, 24, 38, - 45, 46, 24, 38, 24, 37, 46, 47, 24, 37, 24, 36, 47, 48, 24, 48, 25, 24, 25, 26, 24, 26, 27, 24, 27, 28, 24, 28, 29, 24, 24, 35, 36, 24, 34, 35, 24, 33, 34, 24, 32, 33, 24, 31, 32, - 24, 30, 31, 24, 29, 30, 66, 67, 41, 67, 42, 41, 66, 41, 40, 67, 68, 42, 68, 43, 42, 68, 72, 43, 40, 39, 65, 72, 44, 43, 44, 71, 45, 39, 38, 64, 71, 46, 45, 38, 37, 63, 70, 47, 46, - 37, 36, 62, 69, 48, 47, 36, 35, 60, 48, 49, 25, 25, 50, 26, 34, 33, 58, 27, 26, 52, 27, 52, 28, 28, 53, 29, 33, 32, 57, 32, 31, 56, 30, 29, 55, 31, 30, 55, 61, 36, 60, 60, 35, 59, - 34, 58, 59, 77, 66, 65, 73, 70, 71, 96, 69, 70, 10, 77, 9, 9, 78, 8, 9, 77, 78, 10, 76, 77, 76, 10, 75, 12, 74, 11, 10, 11, 75, 11, 74, 75, 7, 78, 79, 7, 8, 78, 13, 73, 12, 12, 73, - 74, 13, 96, 73, 13, 14, 96, 76, 66, 77, 77, 65, 78, 76, 75, 67, 79, 80, 7, 7, 80, 6, 74, 72, 75, 65, 64, 78, 78, 64, 79, 74, 73, 71, 64, 63, 79, 79, 63, 80, 73, 96, 70, 14, 95, 96, - 14, 15, 95, 80, 81, 6, 6, 81, 5, 96, 95, 69, 63, 62, 80, 80, 62, 81, 81, 82, 5, 82, 4, 5, 95, 16, 94, 95, 15, 16, 62, 61, 81, 81, 61, 82, 69, 94, 49, 69, 95, 94, 61, 60, 82, 60, 83, - 82, 82, 83, 4, 83, 3, 4, 49, 94, 50, 94, 93, 50, 94, 16, 93, 16, 17, 93, 50, 93, 51, 83, 60, 84, 93, 92, 51, 93, 17, 92, 60, 59, 84, 3, 83, 2, 51, 92, 52, 84, 59, 85, 83, 84, 2, 17, - 18, 92, 59, 58, 85, 85, 58, 86, 92, 91, 52, 53, 52, 90, 2, 84, 1, 58, 57, 86, 86, 57, 87, 92, 18, 91, 52, 91, 90, 54, 53, 89, 57, 56, 87, 87, 56, 88, 53, 90, 89, 55, 54, 88, 56, 55, - 88, 88, 54, 89, 84, 85, 1, 18, 19, 91, 1, 85, 0, 90, 91, 20, 85, 86, 0, 0, 86, 23, 91, 19, 20, 89, 90, 21, 86, 87, 23, 23, 87, 22, 90, 20, 21, 88, 89, 22, 87, 88, 22, 22, 89, 21 - ], - "vertices": [ - 1, 29, 42.58, 72.34, 1, 1, 29, 60.45, 57.26, 1, 1, 29, 72.98, 39.16, 1, 1, 29, 81.54, 20.6, 1, 1, 29, 82, -0.34, 1, 1, 29, 82, -19.83, 1, 1, 29, 73.67, -38.85, 1, 1, 29, 59.29, - -58.81, 1, 1, 29, 40.26, -74.58, 1, 1, 29, 15.44, -82, 1, 1, 29, -4.05, -82, 1, 1, 29, -20.9, -81.77, 1, 1, 29, -40.85, -74.03, 1, 1, 29, -59.18, -60.37, 1, 1, 29, -73.95, -41.78, 1, - 1, 29, -82, -16.75, 1, 1, 29, -82, 1.83, 1, 1, 29, -82, 21.3, 1, 1, 29, -72.4, 43.57, 1, 1, 29, -56.86, 62.36, 1, 1, 29, -39.46, 74.66, 1, 1, 29, -18.58, 82, 1, 1, 29, 0.59, 82, 1, - 1, 29, 20.78, 80.84, 1, 1, 81, -0.92, -0.5, 1, 1, 81, -16.85, 3.78, 1, 1, 81, -15.14, 8.27, 1, 1, 81, -11.95, 11.89, 1, 1, 81, -8.58, 14.44, 1, 1, 81, -4.49, 16.19, 1, 1, 81, -0.61, - 16.41, 1, 1, 81, 3.51, 16.11, 1, 1, 81, 8.07, 14.55, 1, 1, 81, 12.26, 11.9, 1, 1, 81, 15.06, 8.08, 1, 1, 81, 16.59, 3.98, 1, 1, 81, 17.59, -0.46, 1, 1, 81, 17.14, -4.71, 1, 1, 81, - 14.92, -8.64, 1, 1, 81, 11.72, -12.74, 1, 1, 81, 7.46, -15.57, 1, 1, 81, 2.36, -16.84, 1, 1, 81, -1.56, -17.13, 1, 1, 81, -4.85, -16.49, 1, 1, 81, -8.31, -15.08, 1, 1, 81, -12.1, - -11.99, 1, 1, 81, -15.04, -7.96, 1, 1, 81, -16.67, -3.66, 1, 1, 81, -17.34, -0.03, 1, 2, 29, -38.97, 0.6, 0.37475, 81, -38.97, 0.6, 0.62525, 2, 29, -37.57, 9.36, 0.38176, 81, -37.57, - 9.36, 0.61824, 2, 29, -33.47, 19.57, 0.39514, 81, -33.47, 19.57, 0.60486, 2, 29, -26.42, 28.16, 0.40154, 81, -26.42, 28.16, 0.59846, 2, 29, -18.43, 33.65, 0.40298, 81, -18.43, 33.65, - 0.59702, 2, 29, -8.9, 36.8, 0.39723, 81, -8.9, 36.8, 0.60277, 2, 29, -0.23, 37.18, 0.38672, 81, -0.23, 37.18, 0.61328, 2, 29, 8.95, 36.51, 0.39243, 81, 8.95, 36.51, 0.60757, 2, 29, - 19.05, 32.93, 0.39729, 81, 19.05, 32.93, 0.60271, 2, 29, 28.51, 27.19, 0.41715, 81, 28.51, 27.19, 0.58285, 2, 29, 36.77, 19.73, 0.45304, 81, 36.77, 19.73, 0.54696, 2, 29, 40.74, - 10.16, 0.44594, 81, 40.74, 10.16, 0.55406, 2, 29, 42.2, -0.42, 0.43856, 81, 42.2, -0.42, 0.56144, 2, 29, 40.55, -10.17, 0.41782, 81, 40.55, -10.17, 0.58218, 2, 29, 35.87, -19.42, - 0.38686, 81, 35.87, -19.42, 0.61314, 2, 29, 28.24, -28.73, 0.36878, 81, 28.24, -28.73, 0.63122, 2, 29, 18.06, -34.64, 0.3386, 81, 18.06, -34.64, 0.6614, 2, 29, 6.41, -37, 0.30037, - 81, 6.41, -37, 0.69963, 2, 29, -2.32, -36.91, 0.28415, 81, -2.32, -36.91, 0.71585, 2, 29, -9.48, -35.32, 0.27399, 81, -9.48, -35.32, 0.72601, 2, 29, -38.52, -8.03, 0.36783, 81, - -38.52, -8.03, 0.63217, 2, 29, -34.06, -18, 0.33446, 81, -34.06, -18, 0.66554, 2, 29, -26.52, -26.8, 0.30599, 81, -26.52, -26.8, 0.69401, 2, 29, -17.23, -32.71, 0.28378, 81, -17.23, - -32.71, 0.71622, 2, 29, -41.59, -42.47, 0.73847, 81, -41.59, -42.47, 0.26153, 2, 29, -27.74, -51.46, 0.71173, 81, -27.74, -51.46, 0.28827, 2, 29, -14.53, -55.88, 0.69513, 81, -14.53, - -55.88, 0.30487, 2, 29, -3.16, -58.91, 0.72225, 81, -3.16, -58.91, 0.27775, 2, 29, 11.08, -60.25, 0.77228, 81, 11.08, -60.25, 0.22772, 2, 29, 29.37, -54.99, 0.80171, 81, 29.37, - -54.99, 0.19829, 2, 29, 43.44, -43.46, 0.78981, 81, 43.44, -43.46, 0.21019, 2, 29, 54.07, -28.78, 0.79382, 81, 54.07, -28.78, 0.20618, 2, 29, 60.6, -14.84, 0.827, 81, 60.6, -14.84, - 0.173, 2, 29, 64.25, -0.38, 0.87698, 81, 64.25, -0.38, 0.12302, 2, 29, 63.98, 16.11, 0.92141, 81, 63.98, 16.11, 0.07859, 2, 29, 56.88, 30.53, 0.90642, 81, 56.88, 30.53, 0.09358, 2, - 29, 46.21, 43.86, 0.90058, 81, 46.21, 43.86, 0.09942, 2, 29, 31.89, 54.43, 0.8953, 81, 31.89, 54.43, 0.1047, 2, 29, 15.52, 61.14, 0.89934, 81, 15.52, 61.14, 0.10066, 2, 29, 0.24, - 62.86, 0.89762, 81, 0.24, 62.86, 0.10238, 2, 29, -14.22, 61.67, 0.90341, 81, -14.22, 61.67, 0.09659, 2, 29, -30.17, 56.55, 0.9151, 81, -30.17, 56.55, 0.0849, 2, 29, -44.28, 48.24, - 0.93596, 81, -44.28, 48.24, 0.06404, 2, 29, -55.51, 33.16, 0.90966, 81, -55.51, 33.16, 0.09034, 2, 29, -61.25, 15.72, 0.86888, 81, -61.25, 15.72, 0.13112, 2, 29, -62.28, 1.26, - 0.83823, 81, -62.28, 1.26, 0.16177, 2, 29, -61.24, -12.59, 0.82811, 81, -61.24, -12.59, 0.17189, 2, 29, -53.41, -30.3, 0.78788, 81, -53.41, -30.3, 0.21212 - ], - "hull": 24, - "edges": [ - 18, 20, 18, 16, 16, 14, 14, 12, 8, 10, 12, 10, 8, 6, 6, 4, 4, 2, 2, 0, 44, 46, 0, 46, 42, 44, 42, 40, 40, 38, 38, 36, 32, 34, 36, 34, 30, 32, 30, 28, 28, 26, 26, 24, 20, 22, 24, 22, - 50, 48, 52, 48, 50, 52, 54, 48, 52, 54, 56, 48, 54, 56, 58, 48, 56, 58, 60, 48, 58, 60, 62, 48, 60, 62, 64, 48, 62, 64, 66, 48, 64, 66, 68, 48, 66, 68, 70, 48, 68, 70, 72, 48, 70, - 72, 74, 48, 72, 74, 76, 48, 74, 76, 78, 48, 76, 78, 80, 48, 78, 80, 82, 48, 80, 82, 84, 48, 82, 84, 86, 48, 84, 86, 88, 48, 86, 88, 90, 48, 88, 90, 92, 48, 90, 92, 94, 48, 92, 94, - 96, 48, 94, 96, 96, 50, 98, 96, 100, 50, 98, 100, 102, 52, 100, 102, 104, 54, 102, 104, 106, 56, 104, 106, 108, 58, 106, 108, 110, 60, 108, 110, 112, 62, 110, 112, 114, 64, 112, 114, - 116, 66, 114, 116, 118, 68, 116, 118, 120, 70, 118, 120, 122, 72, 120, 122, 124, 74, 122, 124, 126, 76, 124, 126, 128, 78, 126, 128, 130, 80, 128, 130, 132, 82, 130, 132, 134, 84, - 132, 134, 136, 86, 134, 136, 138, 94, 98, 138, 140, 92, 138, 140, 142, 90, 140, 142, 144, 88, 142, 144, 144, 136, 26, 146, 146, 142, 24, 148, 148, 144, 146, 148, 22, 150, 150, 136, - 148, 150, 20, 152, 152, 134, 150, 152, 18, 154, 154, 132, 152, 154, 16, 156, 156, 130, 154, 156, 14, 158, 158, 128, 156, 158, 12, 160, 160, 126, 158, 160, 10, 162, 162, 124, 160, - 162, 8, 164, 164, 122, 162, 164, 6, 166, 166, 120, 164, 166, 4, 168, 168, 118, 166, 168, 2, 170, 170, 116, 168, 170, 0, 172, 172, 114, 170, 172, 46, 174, 174, 112, 172, 174, 44, 176, - 176, 110, 174, 176, 42, 178, 178, 108, 176, 178, 40, 180, 180, 106, 178, 180, 38, 182, 182, 104, 180, 182, 36, 184, 184, 102, 182, 184, 34, 186, 186, 100, 184, 186, 32, 188, 188, 98, - 186, 188, 30, 190, 190, 138, 188, 190, 28, 192, 192, 140, 190, 192, 192, 146 - ], - "width": 162, - "height": 162, - "path": "summer-as.mouth-accessory" - } + "shadow": {"shadow": {"width": 945.8823529411765, "height": 190.58823529411765, "path": "body-curly.shadow", "x": 0.05882352941176805, "y": 0.20588235294117396}}, + "body-air": { + "body-air1a_00": {"x": 1.37, "y": 35.21, "width": 209.41176470588235, "height": 129.41176470588235, "path": "body-accessory.body-air1a_00"}, + "body-air1a_01": {"x": 1.37, "y": 35.21, "width": 209.41176470588235, "height": 129.41176470588235, "path": "body-accessory.body-air1a_01"}, + "body-air1a_02": {"x": 1.37, "y": 35.21, "width": 209.41176470588235, "height": 129.41176470588235, "path": "body-accessory.body-air1a_02"}, + "body-air1a_03": {"x": 1.37, "y": 35.21, "width": 209.41176470588235, "height": 129.41176470588235, "path": "body-accessory.body-air1a_03"}, + "body-air1a_04": {"x": 1.37, "y": 35.21, "width": 209.41176470588235, "height": 129.41176470588235, "path": "body-accessory.body-air1a_04"}, + "body-air1a_05": {"x": 1.37, "y": 35.21, "width": 209.41176470588235, "height": 129.41176470588235, "path": "body-accessory.body-air1a_05"}, + "body-air1a_06": {"x": 1.37, "y": 35.21, "width": 209.41176470588235, "height": 129.41176470588235, "path": "body-accessory.body-air1a_06"}, + "body-air1a_07": {"x": 1.37, "y": 35.21, "width": 209.41176470588235, "height": 129.41176470588235, "path": "body-accessory.body-air1a_07"}, + "body-air1b_00": {"x": 1.37, "y": 35.21, "width": 155.29411764705884, "height": 192.94117647058823, "path": "body-accessory.body-air1b_00"}, + "body-air1b_01": {"x": 1.37, "y": 35.21, "width": 155.29411764705884, "height": 192.94117647058823, "path": "body-accessory.body-air1b_01"}, + "body-air1b_02": {"x": 1.37, "y": 35.21, "width": 155.29411764705884, "height": 192.94117647058823, "path": "body-accessory.body-air1b_02"}, + "body-air1c_00": {"x": 1.37, "y": 35.21, "width": 200.0, "height": 289.4117647058824, "path": "body-accessory.body-air1c_00"}, + "body-air1c_01": {"x": 1.37, "y": 35.21, "width": 200.0, "height": 289.4117647058824, "path": "body-accessory.body-air1c_01"}, + "body-air1c_02": {"x": 1.37, "y": 35.21, "width": 200.0, "height": 289.4117647058824, "path": "body-accessory.body-air1c_02"}, + "body-air1c_03": {"x": 1.37, "y": 35.21, "width": 200.0, "height": 289.4117647058824, "path": "body-accessory.body-air1c_03"}, + "body-air1d_00": {"x": 1.37, "y": 35.21, "width": 204.7058823529412, "height": 272.94117647058823, "path": "body-accessory.body-air1d_00"}, + "body-air1d_01": {"x": 1.37, "y": 35.21, "width": 204.7058823529412, "height": 272.94117647058823, "path": "body-accessory.body-air1d_01"}, + "body-air1d_02": {"x": 1.37, "y": 35.21, "width": 204.7058823529412, "height": 272.94117647058823, "path": "body-accessory.body-air1d_02"}, + "body-air1d_03": {"x": 1.37, "y": 35.21, "width": 204.7058823529412, "height": 272.94117647058823, "path": "body-accessory.body-air1d_03"} }, - "tail": {"tail": {"x": 113.64, "y": 3.45, "rotation": 12, "width": 225, "height": 225, "path": "summer-as.tail"}} + "body-ground": { + "body-ground1a_00": {"x": 4.75, "y": 123.01, "width": 254.11764705882354, "height": 272.94117647058823, "path": "body-accessory.body-ground1a_00"}, + "body-ground1a_01": {"x": 4.75, "y": 123.01, "width": 254.11764705882354, "height": 272.94117647058823, "path": "body-accessory.body-ground1a_01"}, + "body-ground1a_02": {"x": 4.75, "y": 123.01, "width": 254.11764705882354, "height": 272.94117647058823, "path": "body-accessory.body-ground1a_02"}, + "body-ground1a_03": {"x": 4.75, "y": 123.01, "width": 254.11764705882354, "height": 272.94117647058823, "path": "body-accessory.body-ground1a_03"} + }, + "body-hip": { + "body-hip1a": {"x": -16.0, "width": 108.23529411764706, "height": 138.8235294117647, "path": "body-accessory.body-hip1a", "y": 0.0}, + "body-hip1b": {"x": -16.0, "width": 209.41176470588235, "height": 214.11764705882354, "path": "body-accessory.body-hip1b", "y": 0.0}, + "body-hip1c": {"x": -16.0, "width": 122.3529411764706, "height": 157.64705882352942, "path": "body-accessory.body-hip1c", "y": 0.0}, + "body-hip1d": {"x": -16.0, "width": 202.35294117647058, "height": 143.52941176470588, "path": "body-accessory.body-hip1d", "y": 0.0} + }, + "body-neck": { + "body-neck1a": {"x": -5.4, "y": -54.79, "width": 91.76470588235294, "height": 96.47058823529412, "path": "body-accessory.body-neck1a"}, + "body-neck1b": {"x": -5.4, "y": -54.79, "width": 103.52941176470588, "height": 117.64705882352942, "path": "body-accessory.body-neck1b"}, + "body-neck1c": {"x": -5.4, "y": -54.79, "width": 80.0, "height": 110.58823529411765, "path": "body-accessory.body-neck1c"}, + "body-neck1d": {"x": -5.4, "y": -54.79, "width": 122.3529411764706, "height": 101.17647058823529, "path": "body-accessory.body-neck1d"}, + "body-neck1e": {"x": -5.4, "y": -54.79, "width": 89.41176470588236, "height": 105.88235294117648, "path": "body-accessory.body-neck1e"}, + "body-neck1f": {"x": -5.4, "y": -54.79, "width": 80.0, "height": 80.0, "path": "body-accessory.body-neck1f"} + } } } ], @@ -6764,14 +4044,12 @@ "attack/ranged/cast-high": "164191126", "attack/ranged/cast-low": "198813017", "attack/ranged/cast-multi": "151119", - "attack/ranged/cast-tail": "3850719809", - "action/mix/ear-animation": "901954966", + "attack/ranged/cast-tail": "1843465463", "activity/eat-bite": "1137807767", "activity/eat-chew": "1988236421", "activity/entrance": "3768378365", "defense/evade": "1735454995", "activity/evolve": "649307630", - "action/mix/eyes-animation": "3799301307", "battle/get-buff": "1455190363", "battle/get-debuff": "606904312", "defense/hit-by-normal": "2045974966", @@ -6783,18 +4061,17 @@ "attack/melee/mouth-bite": "2237748264", "action/move-back": "3766271173", "action/move-forward": "2945160014", - "attack/melee/multi-attack": "3774600630", + "attack/melee/multi-attack": "905926802", "action/idle/normal": "1659336865", "attack/melee/normal-attack": "3305373483", - "action/mix/normal-mouth-animation": "1178295570", "activity/prepare": "405864717", "action/idle/random-01": "554401889", - "action/idle/random-02": "3634120758", + "action/idle/random-02": "1001093024", "action/idle/random-03": "2021333900", "action/idle/random-04": "1003789695", "action/idle/random-05": "2745614147", - "action/run": "3942433225", - "draft/run-origin": "237238075", + "action/run": "1438840721", + "draft/run-origin": "3577885069", "attack/melee/shrimp": "3833448733", "activity/sleep": "100562494", "attack/melee/tail-multi-slap": "3317139533", @@ -6804,16 +4081,16 @@ "activity/victory-pose-back-flip": "2227634241" } }, - "aquatic-12": { + "plant-04": { "bones": [ {"name": "@root"}, {"name": "@pivot-main", "parent": "@root"}, {"name": "@pivot-back", "parent": "@pivot-main", "x": 205, "y": 180, "color": "ff0101ff"}, {"name": "@pivot-center", "parent": "@pivot-back", "x": -215.11, "y": -5.25, "color": "ff0101ff"}, {"name": "@axie", "parent": "@pivot-center", "length": 213.28, "rotation": 179.04, "x": 196.39, "y": 5.16}, {"name": "@back", "parent": "@axie", "rotation": -179.04, "x": 37.63, "y": -198.19}, - {"name": "back", "parent": "@back", "length": 149.41, "rotation": 75, "x": -65.97, "y": 71.3, "transform": "noScale"}, + {"name": "back", "parent": "@back", "length": 149.41, "rotation": 58, "x": -101.97, "y": 46.3, "transform": "noScale"}, {"name": "@body", "parent": "@axie", "length": 226.28, "rotation": -8.35, "x": 224.58, "y": -0.53}, {"name": "@ear-left", "parent": "@axie", "rotation": -179.04, "x": 112.7, "y": -203.23}, - {"name": "ear-left", "parent": "@ear-left", "length": 113.61, "rotation": 56, "x": -17, "y": -13, "transform": "noScale"}, + {"name": "ear-left", "parent": "@ear-left", "length": 113.61, "rotation": 90, "x": -7, "y": 19, "transform": "noScale"}, {"name": "@ear-right", "parent": "@axie", "rotation": -179.04, "x": 405.28, "y": -235.33}, - {"name": "ear-right", "parent": "@ear-right", "length": 119.39, "rotation": 116, "x": -10, "y": -42, "transform": "noScale"}, + {"name": "ear-right", "parent": "@ear-right", "length": 119.39, "rotation": 93, "x": -40, "y": -15, "transform": "noScale"}, {"name": "@eyes", "parent": "@axie", "rotation": -179.04, "x": 384.24, "y": -113.67}, {"name": "@horn", "parent": "@axie", "rotation": -179.04, "x": 327.92, "y": -214.63}, {"name": "horn", "parent": "@horn", "length": 176.72, "rotation": 90, "y": 18, "transform": "noScale"}, {"name": "@leg-back-left", "parent": "@axie", "length": 76.4, "rotation": 100.96, "x": -15.3, "y": 102.56, "transform": "noScale"}, @@ -6822,7 +4099,7 @@ {"name": "@mouth", "parent": "@axie", "rotation": -179.04, "x": 382.23, "y": 6.31}, {"name": "body-pattern", "parent": "@body", "rotation": -170.69, "x": -267.21, "y": -49.4, "transform": "noScale"}, {"name": "@shadow", "parent": "@root", "color": "e6d713ff"}, {"name": "@tail", "parent": "@axie", "rotation": -179.04, "x": -11.76, "y": 61.72}, - {"name": "tail", "parent": "@tail", "length": 203.67, "rotation": -5, "x": 8, "y": 45, "transform": "noScale"}, + {"name": "tail", "parent": "@tail", "length": 203.67, "rotation": -42, "x": 39, "y": 92, "transform": "noScale"}, {"name": "leg-front-right-IK", "parent": "@pivot-main", "x": -195.99, "y": -10.21, "color": "ff3f00ff"}, {"name": "leg-front-left-IK", "parent": "@pivot-main", "x": 42.3, "y": -18.42, "color": "ff3f00ff"}, {"name": "leg-back-left-IK", "parent": "@pivot-main", "x": 208.57, "y": 1.35, "color": "ff3f00ff"}, {"name": "@ball", "parent": "@root", "y": 191, "color": "f3981bff"}, @@ -6844,23 +4121,23 @@ { "name": "default", "attachments": { - "back": {"back": {"x": 92.48, "y": -6.01, "rotation": -75, "width": 225, "height": 309, "path": "aquatic-12.back"}}, - "ear-left": {"ear-left": {"x": 68.22, "y": -8.55, "rotation": -56, "width": 136, "height": 185, "path": "aquatic-12.ear-left"}}, - "ear-right": {"ear-right": {"x": 60.1, "y": 19.93, "rotation": -116, "width": 135, "height": 184, "path": "aquatic-12.ear-right"}}, + "back": {"back": {"x": 106.42588235294116, "y": 19.118235294117653, "rotation": -58, "width": 310.5882352941177, "height": 258.8235294117647, "path": "plant-04.back"}}, + "ear-left": {"ear-left": {"x": -15.175882352941175, "y": -46.205882352941174, "rotation": -90, "width": 169.41176470588235, "height": 169.41176470588235, "path": "plant-04.ear-left"}}, + "ear-right": {"ear-right": {"x": -11.711764705882349, "y": 21.110588235294117, "rotation": -93, "width": 138.8235294117647, "height": 167.05882352941177, "path": "plant-04.ear-right"}}, "eyes": { - "eyes": {"x": 31.22, "y": 17.79, "width": 304, "height": 121, "path": "aquatic-12.eyes"}, - "eyes-angry": {"x": 31.22, "y": 17.79, "width": 304, "height": 121, "path": "aquatic-12.eyes-angry"}, - "eyes-happy": {"x": 31.22, "y": 17.79, "width": 304, "height": 121, "path": "aquatic-12.eyes-happy"}, - "eyes-shut": {"x": 31.22, "y": 17.79, "width": 304, "height": 121, "path": "aquatic-12.eyes-shut"} + "eyes": {"x": 27.794117647058826, "y": 10.42411764705882, "width": 249.41176470588235, "height": 89.41176470588236, "path": "plant-04.eyes"}, + "eyes-angry": {"x": 27.794117647058826, "y": 20.659411764705883, "width": 249.41176470588235, "height": 112.94117647058823, "path": "plant-04.eyes-angry"}, + "eyes-happy": {"x": 25.67647058823529, "y": 16.24764705882353, "width": 237.64705882352942, "height": 51.76470588235294, "path": "plant-04.eyes-happy"}, + "eyes-shut": {"x": 33.970588235294116, "y": -5.987647058823529, "width": 247.05882352941177, "height": 28.235294117647058, "path": "plant-04.eyes-shut"} }, - "horn": {"horn": {"x": 54.28, "y": -15.24, "rotation": -90, "width": 198, "height": 160, "path": "aquatic-12.horn"}}, + "horn": {"horn": {"x": 84.5, "y": -6.272941176470594, "rotation": -90, "width": 120.0, "height": 164.7058823529412, "path": "plant-04.horn"}}, "mouth": { - "mouth": {"x": 13.22, "y": 31.29, "width": 314, "height": 118, "path": "aquatic-12.mouth"}, - "mouth-bite": {"x": 12.72, "y": 40.79, "width": 361, "height": 97, "path": "aquatic-12.mouth-bite"}, - "mouth-open": {"x": 13.72, "y": 17.29, "width": 327, "height": 176, "path": "aquatic-12.mouth-open"}, - "mouth-smile": {"x": 11.72, "y": 36.29, "width": 333, "height": 110, "path": "aquatic-12.mouth-smile"} + "mouth": {"x": 16.029411764705884, "y": 61.83588235294118, "width": 112.94117647058823, "height": 30.58823529411765, "path": "plant-04.mouth"}, + "mouth-bite": {"x": 33.970588235294116, "y": 31.424117647058825, "width": 167.05882352941177, "height": 129.41176470588235, "path": "plant-04.mouth-bite"}, + "mouth-open": {"x": 27.794117647058826, "y": 27.424117647058825, "width": 129.41176470588235, "height": 169.41176470588235, "path": "plant-04.mouth-open"}, + "mouth-smile": {"x": 15.735294117647058, "y": 60.18882352941176, "width": 143.52941176470588, "height": 65.88235294117648, "path": "plant-04.mouth-smile"} }, - "tail": {"tail": {"x": 123.85, "y": 15.63, "rotation": 5, "width": 335, "height": 185, "path": "aquatic-12.tail"}} + "tail": {"tail": {"x": 124.90529411764705, "y": 43.4535294117647, "rotation": 42, "width": 303.5294117647059, "height": 242.3529411764706, "path": "plant-04.tail"}} } } ], @@ -6909,36 +4186,40 @@ "activity/victory-pose-back-flip": "2227634241" } }, - "bird-10": { + "reptile-mystic-02": { "bones": [ {"name": "@root"}, {"name": "@pivot-main", "parent": "@root"}, {"name": "@pivot-back", "parent": "@pivot-main", "x": 205, "y": 180, "color": "ff0101ff"}, {"name": "@pivot-center", "parent": "@pivot-back", "x": -215.11, "y": -5.25, "color": "ff0101ff"}, {"name": "@axie", "parent": "@pivot-center", "length": 213.28, "rotation": 179.04, "x": 196.39, "y": 5.16}, {"name": "@back", "parent": "@axie", "rotation": -179.04, "x": 37.63, "y": -198.19}, - {"name": "back", "parent": "@back", "length": 149.41, "rotation": 73, "x": -127.97, "y": 11.3, "transform": "noScale"}, + {"name": "back", "parent": "@back", "length": 149.41, "rotation": 60, "x": -32.97, "y": 79.3, "transform": "noScale"}, {"name": "@body", "parent": "@axie", "length": 226.28, "rotation": -8.35, "x": 224.58, "y": -0.53}, {"name": "@ear-left", "parent": "@axie", "rotation": -179.04, "x": 112.7, "y": -203.23}, - {"name": "ear-left", "parent": "@ear-left", "length": 113.61, "rotation": -48, "x": -8, "y": -10, "transform": "noScale"}, + {"name": "ear-left", "parent": "@ear-left", "length": 113.61, "rotation": 88, "x": 63, "y": -25, "transform": "noScale"}, {"name": "@ear-right", "parent": "@axie", "rotation": -179.04, "x": 405.28, "y": -235.33}, - {"name": "ear-right", "parent": "@ear-right", "length": 119.39, "rotation": -144, "x": -30, "y": -34, "transform": "noScale"}, + {"name": "ear-right", "parent": "@ear-right", "length": 119.39, "rotation": 94, "x": -23, "y": -72, "transform": "noScale"}, {"name": "@eyes", "parent": "@axie", "rotation": -179.04, "x": 384.24, "y": -113.67}, {"name": "@horn", "parent": "@axie", "rotation": -179.04, "x": 327.92, "y": -214.63}, {"name": "horn", "parent": "@horn", "length": 176.72, "rotation": 90, "y": 18, "transform": "noScale"}, {"name": "@leg-back-left", "parent": "@axie", "length": 76.4, "rotation": 100.96, "x": -15.3, "y": 102.56, "transform": "noScale"}, {"name": "@leg-front-left", "parent": "@axie", "length": 51.19, "rotation": 93.86, "x": 134.77, "y": 149.55, "transform": "noScale"}, {"name": "@leg-front-right", "parent": "@axie", "length": 74.83, "rotation": 83.2, "x": 382.95, "y": 121.78, "transform": "noScale"}, {"name": "@mouth", "parent": "@axie", "rotation": -179.04, "x": 382.23, "y": 6.31}, - {"name": "body-pattern", "parent": "@body", "rotation": -170.69, "x": -267.21, "y": -49.4, "transform": "noScale"}, {"name": "@shadow", "parent": "@root", "color": "e6d713ff"}, + {"name": "body-class", "parent": "@body", "rotation": -170.69, "x": -286.29, "y": -103.48, "transform": "noScale"}, {"name": "@shadow", "parent": "@root", "color": "e6d713ff"}, {"name": "@tail", "parent": "@axie", "rotation": -179.04, "x": -11.76, "y": 61.72}, - {"name": "tail", "parent": "@tail", "length": 203.67, "rotation": -12, "x": 16, "y": 72.87, "transform": "noScale"}, + {"name": "tail", "parent": "@tail", "length": 203.67, "rotation": 15, "x": 38, "y": 10, "transform": "noScale"}, {"name": "leg-front-right-IK", "parent": "@pivot-main", "x": -195.99, "y": -10.21, "color": "ff3f00ff"}, {"name": "leg-front-left-IK", "parent": "@pivot-main", "x": 42.3, "y": -18.42, "color": "ff3f00ff"}, {"name": "leg-back-left-IK", "parent": "@pivot-main", "x": 208.57, "y": 1.35, "color": "ff3f00ff"}, {"name": "@ball", "parent": "@root", "y": 191, "color": "f3981bff"}, - {"name": "ball", "parent": "@ball", "y": -191, "color": "f4a729ff"} + {"name": "ball", "parent": "@ball", "y": -191, "color": "f4a729ff"}, {"name": "body-id", "parent": "@body", "rotation": -170.69, "x": -290.82, "y": -75.84}, + {"name": "mouth-accessory", "parent": "@mouth", "x": 8.74, "y": 77.12}, {"name": "mouth-blink", "parent": "@mouth", "x": 80.68, "y": 82.83} ], "slots": [ - {"name": "shadow", "bone": "@shadow", "attachment": "shadow"}, {"name": "ball", "bone": "ball"}, {"name": "leg-front-right", "bone": "@leg-front-right", "attachment": "leg-front-right"}, - {"name": "ear-right", "bone": "ear-right", "attachment": "ear-right"}, {"name": "tail", "bone": "tail", "attachment": "tail"}, {"name": "back", "bone": "back", "attachment": "back"}, - {"name": "leg-back-left", "bone": "@leg-back-left", "attachment": "leg-back-left"}, {"name": "body", "bone": "@body", "attachment": "body"}, {"name": "body-pattern", "bone": "body-pattern"}, - {"name": "leg-front-left", "bone": "@leg-front-left", "attachment": "leg-front-left"}, {"name": "eyes", "bone": "@eyes", "attachment": "eyes"}, - {"name": "mouth", "bone": "@mouth", "attachment": "mouth"}, {"name": "ear-left", "bone": "ear-left", "attachment": "ear-left"}, {"name": "horn", "bone": "horn", "attachment": "horn"} + {"name": "shadow", "bone": "@shadow", "attachment": "shadow"}, {"name": "ball", "bone": "ball"}, + {"name": "leg-front-right", "bone": "@leg-front-right", "attachment": "mystic-leg-front-right"}, {"name": "ear-right", "bone": "ear-right", "attachment": "ear-right"}, + {"name": "tail", "bone": "tail", "attachment": "tail"}, {"name": "back", "bone": "back", "attachment": "back"}, + {"name": "leg-back-left", "bone": "@leg-back-left", "attachment": "mystic-leg-back-left"}, {"name": "body", "bone": "@body", "attachment": "body-mystic"}, + {"name": "body-class", "bone": "body-class", "attachment": "body-class-aquatic"}, {"name": "leg-front-left", "bone": "@leg-front-left", "attachment": "mystic-leg-front-left"}, + {"name": "eyes", "bone": "@eyes", "attachment": "eyes"}, {"name": "mouth", "bone": "@mouth", "attachment": "mouth"}, {"name": "ear-left", "bone": "ear-left", "attachment": "ear-left"}, + {"name": "horn", "bone": "horn", "attachment": "horn"}, {"name": "body-id", "bone": "body-id", "attachment": "body-id"}, {"name": "mouth-accessory", "bone": "mouth-accessory"}, + {"name": "mouth-blink", "bone": "mouth-blink"} ], "ik": [ {"name": "leg-back-left-IK", "order": 2, "bones": ["@leg-back-left"], "target": "leg-back-left-IK"}, @@ -6949,23 +4230,33 @@ { "name": "default", "attachments": { - "back": {"back": {"x": 143.29, "y": -0.22, "rotation": -73, "width": 336, "height": 353, "path": "bird-10.back"}}, - "ear-left": {"ear-left": {"x": 50.72, "y": 20.4, "rotation": 48, "width": 130, "height": 141, "path": "bird-10.ear-left"}}, - "ear-right": {"ear-right": {"x": 56.99, "y": 3.76, "rotation": 144, "width": 134, "height": 144, "path": "bird-10.ear-right"}}, + "back": {"back": {"x": 82.00411764705882, "y": 22.697058823529407, "rotation": -60, "width": 209.41176470588235, "height": 244.7058823529412, "path": "reptile-mystic-02.back"}}, + "ear-left": { + "ear-left": {"x": 19.567058823529408, "y": -9.974117647058826, "rotation": -88, "width": 204.7058823529412, "height": 230.58823529411765, "path": "reptile-mystic-02.ear-left"} + }, + "ear-right": { + "ear-right": {"x": 27.159411764705883, "y": 22.53647058823529, "rotation": -94, "width": 192.94117647058823, "height": 237.64705882352942, "path": "reptile-mystic-02.ear-right"} + }, "eyes": { - "eyes": {"x": 25.6, "y": -4, "width": 257, "height": 114, "path": "bird-10.eyes"}, - "eyes-angry": {"x": 44.6, "y": 7.5, "width": 295, "height": 137, "path": "bird-10.eyes-angry"}, - "eyes-happy": {"x": 25.6, "y": 4.5, "width": 257, "height": 131, "path": "bird-10.eyes-happy"}, - "eyes-shut": {"x": 25.6, "y": -4, "width": 257, "height": 114, "path": "bird-10.eyes-shut"} + "eyes": {"x": 34.03588235294116, "y": 24.65764705882352, "width": 310.5882352941177, "height": 131.76470588235296, "path": "reptile-mystic-02.eyes"}, + "eyes-angry": {"x": 34.03588235294116, "y": 24.65764705882352, "width": 310.5882352941177, "height": 131.76470588235296, "path": "reptile-mystic-02.eyes-angry"}, + "eyes-happy": {"x": 34.03588235294116, "y": 24.65764705882352, "width": 310.5882352941177, "height": 131.76470588235296, "path": "reptile-mystic-02.eyes-happy"}, + "eyes-shut": {"x": 34.03588235294116, "y": 24.65764705882352, "width": 310.5882352941177, "height": 131.76470588235296, "path": "reptile-mystic-02.eyes-shut"} }, - "horn": {"horn": {"x": 126.46, "y": -47.6, "rotation": -90, "width": 229, "height": 234, "path": "bird-10.horn"}}, + "horn": {"horn": {"x": 99.65764705882353, "y": -27.33, "rotation": -90, "width": 251.76470588235296, "height": 200.0, "path": "reptile-mystic-02.horn"}}, "mouth": { - "mouth": {"x": 14.6, "y": 89.46, "width": 71, "height": 70, "path": "bird-10.mouth"}, - "mouth-bite": {"x": 17.6, "y": 89.96, "width": 83, "height": 79, "path": "bird-10.mouth-bite"}, - "mouth-open": {"x": 16.1, "y": 76.46, "width": 108, "height": 110, "path": "bird-10.mouth-open"}, - "mouth-smile": {"x": 12.1, "y": 76.46, "width": 94, "height": 110, "path": "bird-10.mouth-smile"} + "mouth": {"x": 25.212352941176462, "y": 44.951764705882354, "width": 268.2352941176471, "height": 61.1764705882353, "path": "reptile-mystic-02.mouth"}, + "mouth-bite": {"x": 28.72705882352942, "y": 36.142941176470586, "width": 324.70588235294116, "height": 115.29411764705883, "path": "reptile-mystic-02.mouth-bite"}, + "mouth-open": {"x": 28.609411764705882, "y": 40.90764705882353, "width": 312.94117647058823, "height": 91.76470588235294, "path": "reptile-mystic-02.mouth-open"}, + "mouth-smile": {"x": 32.02117647058823, "y": -14.562941176470595, "width": 334.11764705882354, "height": 204.7058823529412, "path": "reptile-mystic-02.mouth-smile"} + }, + "mouth-accessory": { + "mouth-accessory": {"x": -52.50352941176471, "y": 4.56647058823529, "width": 117.64705882352942, "height": 117.64705882352942, "path": "reptile-mystic-02.mouth-accessory"} + }, + "mouth-blink": { + "mouth-smile-blink": {"x": 0.732941176470587, "y": -0.9670588235294131, "width": 35.294117647058826, "height": 35.294117647058826, "path": "reptile-mystic-02.mouth-smile-blink"} }, - "tail": {"tail": {"x": 113.06, "y": 72.18, "rotation": 12, "width": 191, "height": 297, "path": "bird-10.tail"}} + "tail": {"tail": {"x": 70.25117647058823, "y": -8.88647058823529, "rotation": -15, "width": 214.11764705882354, "height": 202.35294117647058, "path": "reptile-mystic-02.tail"}} } } ], @@ -6977,7 +4268,7 @@ "attack/ranged/cast-high": "164191126", "attack/ranged/cast-low": "198813017", "attack/ranged/cast-multi": "151119", - "attack/ranged/cast-tail": "997902532", + "attack/ranged/cast-tail": "3899988824", "activity/eat-bite": "1137807767", "activity/eat-chew": "1988236421", "activity/entrance": "3768378365", @@ -6994,17 +4285,17 @@ "attack/melee/mouth-bite": "2237748264", "action/move-back": "3766271173", "action/move-forward": "2945160014", - "attack/melee/multi-attack": "905926802", + "attack/melee/multi-attack": "3861365989", "action/idle/normal": "1659336865", "attack/melee/normal-attack": "3305373483", "activity/prepare": "405864717", "action/idle/random-01": "554401889", - "action/idle/random-02": "1085666627", + "action/idle/random-02": "3888196768", "action/idle/random-03": "2021333900", "action/idle/random-04": "1003789695", "action/idle/random-05": "2745614147", - "action/run": "1438840721", - "draft/run-origin": "3577885069", + "action/run": "3858829480", + "draft/run-origin": "3947527336", "attack/melee/shrimp": "3833448733", "activity/sleep": "100562494", "attack/melee/tail-multi-slap": "3317139533", @@ -7014,16 +4305,16 @@ "activity/victory-pose-back-flip": "2227634241" } }, - "plant-06": { + "japan-03": { "bones": [ {"name": "@root"}, {"name": "@pivot-main", "parent": "@root"}, {"name": "@pivot-back", "parent": "@pivot-main", "x": 205, "y": 180, "color": "ff0101ff"}, {"name": "@pivot-center", "parent": "@pivot-back", "x": -215.11, "y": -5.25, "color": "ff0101ff"}, {"name": "@axie", "parent": "@pivot-center", "length": 213.28, "rotation": 179.04, "x": 196.39, "y": 5.16}, {"name": "@back", "parent": "@axie", "rotation": -179.04, "x": 37.63, "y": -198.19}, - {"name": "back", "parent": "@back", "length": 149.41, "rotation": 50, "x": -51.97, "y": 55.3, "transform": "noScale"}, + {"name": "back", "parent": "@back", "length": 149.41, "rotation": 73, "x": -127.97, "y": 11.3, "transform": "noScale"}, {"name": "@body", "parent": "@axie", "length": 226.28, "rotation": -8.35, "x": 224.58, "y": -0.53}, {"name": "@ear-left", "parent": "@axie", "rotation": -179.04, "x": 112.7, "y": -203.23}, - {"name": "ear-left", "parent": "@ear-left", "length": 113.61, "rotation": 50, "x": 35, "y": -43, "transform": "noScale"}, + {"name": "ear-left", "parent": "@ear-left", "length": 113.61, "rotation": 60, "x": -33, "y": -3, "transform": "noScale"}, {"name": "@ear-right", "parent": "@axie", "rotation": -179.04, "x": 405.28, "y": -235.33}, - {"name": "ear-right", "parent": "@ear-right", "length": 119.39, "rotation": 136, "x": -40, "y": -97, "transform": "noScale"}, + {"name": "ear-right", "parent": "@ear-right", "length": 119.39, "rotation": 80, "x": -75, "y": -38, "transform": "noScale"}, {"name": "@eyes", "parent": "@axie", "rotation": -179.04, "x": 384.24, "y": -113.67}, {"name": "@horn", "parent": "@axie", "rotation": -179.04, "x": 327.92, "y": -214.63}, {"name": "horn", "parent": "@horn", "length": 176.72, "rotation": 90, "y": 18, "transform": "noScale"}, {"name": "@leg-back-left", "parent": "@axie", "length": 76.4, "rotation": 100.96, "x": -15.3, "y": 102.56, "transform": "noScale"}, @@ -7032,7 +4323,7 @@ {"name": "@mouth", "parent": "@axie", "rotation": -179.04, "x": 382.23, "y": 6.31}, {"name": "body-pattern", "parent": "@body", "rotation": -170.69, "x": -267.21, "y": -49.4, "transform": "noScale"}, {"name": "@shadow", "parent": "@root", "color": "e6d713ff"}, {"name": "@tail", "parent": "@axie", "rotation": -179.04, "x": -11.76, "y": 61.72}, - {"name": "tail", "parent": "@tail", "length": 203.67, "rotation": 31, "x": 3, "y": -10, "transform": "noScale"}, + {"name": "tail", "parent": "@tail", "length": 203.67, "rotation": 30, "x": 67, "y": 24, "transform": "noScale"}, {"name": "leg-front-right-IK", "parent": "@pivot-main", "x": -195.99, "y": -10.21, "color": "ff3f00ff"}, {"name": "leg-front-left-IK", "parent": "@pivot-main", "x": 42.3, "y": -18.42, "color": "ff3f00ff"}, {"name": "leg-back-left-IK", "parent": "@pivot-main", "x": 208.57, "y": 1.35, "color": "ff3f00ff"}, {"name": "@ball", "parent": "@root", "y": 191, "color": "f3981bff"}, @@ -7054,23 +4345,23 @@ { "name": "default", "attachments": { - "back": {"back": {"x": 126.14, "y": 3.63, "rotation": -50, "width": 246, "height": 250, "path": "plant-06.back"}}, - "ear-left": {"ear-left": {"x": 45.34, "y": 2.25, "rotation": -50, "width": 210, "height": 212, "path": "plant-06.ear-left"}}, - "ear-right": {"ear-right": {"x": 71.32, "y": -6.08, "rotation": -136, "width": 177, "height": 215, "path": "plant-06.ear-right"}}, + "back": {"back": {"x": 151.57235294117646, "y": -25.938235294117653, "rotation": -73, "width": 388.2352941176471, "height": 381.1764705882353, "path": "japan-03.back"}}, + "ear-left": {"ear-left": {"x": 85.23235294117646, "y": -10.482941176470595, "rotation": -60, "width": 148.23529411764707, "height": 164.7058823529412, "path": "japan-03.ear-left"}}, + "ear-right": {"ear-right": {"x": 61.12647058823529, "y": 1.8670588235294059, "rotation": -80, "width": 77.64705882352942, "height": 164.7058823529412, "path": "japan-03.ear-right"}}, "eyes": { - "eyes": {"x": 29.54, "y": 27.4, "width": 333, "height": 159, "path": "plant-06.eyes"}, - "eyes-angry": {"x": 33.04, "y": 27.4, "width": 340, "height": 159, "path": "plant-06.eyes-angry"}, - "eyes-happy": {"x": 33.04, "y": 27.4, "width": 340, "height": 159, "path": "plant-06.eyes-happy"}, - "eyes-shut": {"x": 33.04, "y": 27.4, "width": 340, "height": 159, "path": "plant-06.eyes-shut"} + "eyes": {"x": 32.027058823529416, "y": 19.82823529411765, "width": 284.70588235294116, "height": 138.8235294117647, "path": "japan-03.eyes"}, + "eyes-angry": {"x": 32.027058823529416, "y": 17.24, "width": 284.70588235294116, "height": 160.0, "path": "japan-03.eyes-angry"}, + "eyes-happy": {"x": 23.438823529411767, "y": 29.24, "width": 265.88235294117646, "height": 120.0, "path": "japan-03.eyes-happy"}, + "eyes-shut": {"x": 23.438823529411767, "y": 29.24, "width": 265.88235294117646, "height": 120.0, "path": "japan-03.eyes-shut"} }, - "horn": {"horn": {"x": 107.99, "y": -5.82, "rotation": -90, "width": 179, "height": 194, "path": "plant-06.horn"}}, + "horn": {"horn": {"x": 134.97529411764708, "y": 34.70823529411765, "rotation": -90, "width": 223.52941176470588, "height": 298.8235294117647, "path": "japan-03.horn"}}, "mouth": { - "mouth": {"x": -28.96, "y": 89.9, "width": 168, "height": 76, "path": "plant-06.mouth"}, - "mouth-bite": {"x": -91.96, "y": 80.4, "width": 274, "height": 85, "path": "plant-06.mouth-bite"}, - "mouth-open": {"x": -1.96, "y": 95.9, "width": 118, "height": 82, "path": "plant-06.mouth-open"}, - "mouth-smile": {"x": -22.96, "y": 75.4, "width": 148, "height": 95, "path": "plant-06.mouth-smile"} + "mouth": {"x": 19.67411764705881, "y": 62.71058823529412, "width": 289.4117647058824, "height": 47.05882352941177, "path": "japan-03.mouth"}, + "mouth-bite": {"x": 19.67411764705881, "y": 59.887058823529415, "width": 289.4117647058824, "height": 44.70588235294118, "path": "japan-03.mouth-bite"}, + "mouth-open": {"x": 19.67411764705881, "y": 34.12235294117647, "width": 289.4117647058824, "height": 108.23529411764706, "path": "japan-03.mouth-open"}, + "mouth-smile": {"x": 19.67411764705881, "y": 35.181176470588234, "width": 289.4117647058824, "height": 94.11764705882354, "path": "japan-03.mouth-smile"} }, - "tail": {"tail": {"x": 144.54, "y": -14.61, "rotation": -31, "width": 326, "height": 227, "path": "plant-06.tail"}} + "tail": {"tail": {"x": 112.79588235294118, "y": 46.064705882352925, "rotation": -30, "width": 190.58823529411765, "height": 296.47058823529414, "path": "japan-03.tail"}} } } ], @@ -7119,36 +4410,40 @@ "activity/victory-pose-back-flip": "2227634241" } }, - "plant-08": { + "plant-mystic-02": { "bones": [ {"name": "@root"}, {"name": "@pivot-main", "parent": "@root"}, {"name": "@pivot-back", "parent": "@pivot-main", "x": 205, "y": 180, "color": "ff0101ff"}, {"name": "@pivot-center", "parent": "@pivot-back", "x": -215.11, "y": -5.25, "color": "ff0101ff"}, {"name": "@axie", "parent": "@pivot-center", "length": 213.28, "rotation": 179.04, "x": 196.39, "y": 5.16}, {"name": "@back", "parent": "@axie", "rotation": -179.04, "x": 37.63, "y": -198.19}, - {"name": "back", "parent": "@back", "length": 149.41, "rotation": 58, "x": -41.97, "y": 9.3, "transform": "noScale"}, + {"name": "back", "parent": "@back", "length": 149.41, "rotation": 60, "x": -31.97, "y": 5.3, "transform": "noScale"}, {"name": "@body", "parent": "@axie", "length": 226.28, "rotation": -8.35, "x": 224.58, "y": -0.53}, {"name": "@ear-left", "parent": "@axie", "rotation": -179.04, "x": 112.7, "y": -203.23}, - {"name": "ear-left", "parent": "@ear-left", "length": 113.61, "rotation": 90, "x": 21, "y": -13, "transform": "noScale"}, + {"name": "ear-left", "parent": "@ear-left", "length": 113.61, "rotation": 52, "x": -31, "y": -30, "transform": "noScale"}, {"name": "@ear-right", "parent": "@axie", "rotation": -179.04, "x": 405.28, "y": -235.33}, - {"name": "ear-right", "parent": "@ear-right", "length": 119.39, "rotation": 93, "x": -78, "y": -95, "transform": "noScale"}, + {"name": "ear-right", "parent": "@ear-right", "length": 119.39, "rotation": 74, "x": -47, "y": -70, "transform": "noScale"}, {"name": "@eyes", "parent": "@axie", "rotation": -179.04, "x": 384.24, "y": -113.67}, {"name": "@horn", "parent": "@axie", "rotation": -179.04, "x": 327.92, "y": -214.63}, {"name": "horn", "parent": "@horn", "length": 176.72, "rotation": 90, "y": 18, "transform": "noScale"}, {"name": "@leg-back-left", "parent": "@axie", "length": 76.4, "rotation": 100.96, "x": -15.3, "y": 102.56, "transform": "noScale"}, {"name": "@leg-front-left", "parent": "@axie", "length": 51.19, "rotation": 93.86, "x": 134.77, "y": 149.55, "transform": "noScale"}, {"name": "@leg-front-right", "parent": "@axie", "length": 74.83, "rotation": 83.2, "x": 382.95, "y": 121.78, "transform": "noScale"}, {"name": "@mouth", "parent": "@axie", "rotation": -179.04, "x": 382.23, "y": 6.31}, - {"name": "body-pattern", "parent": "@body", "rotation": -170.69, "x": -267.21, "y": -49.4, "transform": "noScale"}, {"name": "@shadow", "parent": "@root", "color": "e6d713ff"}, + {"name": "body-class", "parent": "@body", "rotation": -170.69, "x": -286.29, "y": -103.48, "transform": "noScale"}, {"name": "@shadow", "parent": "@root", "color": "e6d713ff"}, {"name": "@tail", "parent": "@axie", "rotation": -179.04, "x": -11.76, "y": 61.72}, - {"name": "tail", "parent": "@tail", "length": 203.67, "rotation": 13, "x": -57, "y": 2, "transform": "noScale"}, + {"name": "tail", "parent": "@tail", "length": 203.67, "rotation": 15, "x": -6, "y": 10, "transform": "noScale"}, {"name": "leg-front-right-IK", "parent": "@pivot-main", "x": -195.99, "y": -10.21, "color": "ff3f00ff"}, {"name": "leg-front-left-IK", "parent": "@pivot-main", "x": 42.3, "y": -18.42, "color": "ff3f00ff"}, {"name": "leg-back-left-IK", "parent": "@pivot-main", "x": 208.57, "y": 1.35, "color": "ff3f00ff"}, {"name": "@ball", "parent": "@root", "y": 191, "color": "f3981bff"}, - {"name": "ball", "parent": "@ball", "y": -191, "color": "f4a729ff"} + {"name": "ball", "parent": "@ball", "y": -191, "color": "f4a729ff"}, {"name": "body-id", "parent": "@body", "rotation": -170.69, "x": -290.82, "y": -75.84}, + {"name": "mouth-accessory", "parent": "@mouth", "x": 8.74, "y": 77.12}, {"name": "mouth-blink", "parent": "@mouth", "x": 80.68, "y": 82.83} ], "slots": [ - {"name": "shadow", "bone": "@shadow", "attachment": "shadow"}, {"name": "ball", "bone": "ball"}, {"name": "leg-front-right", "bone": "@leg-front-right", "attachment": "leg-front-right"}, - {"name": "ear-right", "bone": "ear-right", "attachment": "ear-right"}, {"name": "tail", "bone": "tail", "attachment": "tail"}, {"name": "back", "bone": "back", "attachment": "back"}, - {"name": "leg-back-left", "bone": "@leg-back-left", "attachment": "leg-back-left"}, {"name": "body", "bone": "@body", "attachment": "body"}, {"name": "body-pattern", "bone": "body-pattern"}, - {"name": "leg-front-left", "bone": "@leg-front-left", "attachment": "leg-front-left"}, {"name": "eyes", "bone": "@eyes", "attachment": "eyes"}, - {"name": "mouth", "bone": "@mouth", "attachment": "mouth"}, {"name": "ear-left", "bone": "ear-left", "attachment": "ear-left"}, {"name": "horn", "bone": "horn", "attachment": "horn"} + {"name": "shadow", "bone": "@shadow", "attachment": "shadow"}, {"name": "ball", "bone": "ball"}, + {"name": "leg-front-right", "bone": "@leg-front-right", "attachment": "mystic-leg-front-right"}, {"name": "ear-right", "bone": "ear-right", "attachment": "ear-right"}, + {"name": "tail", "bone": "tail", "attachment": "tail"}, {"name": "back", "bone": "back", "attachment": "back"}, + {"name": "leg-back-left", "bone": "@leg-back-left", "attachment": "mystic-leg-back-left"}, {"name": "body", "bone": "@body", "attachment": "body-mystic"}, + {"name": "body-class", "bone": "body-class", "attachment": "body-class-aquatic"}, {"name": "leg-front-left", "bone": "@leg-front-left", "attachment": "mystic-leg-front-left"}, + {"name": "eyes", "bone": "@eyes", "attachment": "eyes"}, {"name": "mouth", "bone": "@mouth", "attachment": "mouth"}, {"name": "ear-left", "bone": "ear-left", "attachment": "ear-left"}, + {"name": "horn", "bone": "horn", "attachment": "horn"}, {"name": "body-id", "bone": "body-id", "attachment": "body-id"}, {"name": "mouth-accessory", "bone": "mouth-accessory"}, + {"name": "mouth-blink", "bone": "mouth-blink"} ], "ik": [ {"name": "leg-back-left-IK", "order": 2, "bones": ["@leg-back-left"], "target": "leg-back-left-IK"}, @@ -7159,23 +4454,31 @@ { "name": "default", "attachments": { - "back": {"back": {"x": 112.37, "y": 3.09, "rotation": -58, "width": 259, "height": 292, "path": "plant-08.back"}}, - "ear-left": {"ear-left": {"x": 6.82, "y": -8.89, "rotation": -90, "width": 171, "height": 199, "path": "plant-08.ear-left"}}, - "ear-right": {"ear-right": {"x": 57.73, "y": 13.57, "rotation": -93, "width": 134, "height": 188, "path": "plant-08.ear-right"}}, + "back": {"back": {"x": 168.22764705882355, "y": -0.30705882352942004, "rotation": -60, "width": 331.7647058823529, "height": 355.29411764705884, "path": "plant-mystic-02.back"}}, + "ear-left": {"ear-left": {"x": 107.9064705882353, "y": 7.19, "rotation": -52, "width": 157.64705882352942, "height": 200.0, "path": "plant-mystic-02.ear-left"}}, + "ear-right": { + "ear-right": {"x": 93.92705882352942, "y": 13.090588235294115, "rotation": -74, "width": 124.70588235294117, "height": 207.05882352941177, "path": "plant-mystic-02.ear-right"} + }, "eyes": { - "eyes": {"x": 29.93, "y": 23.44, "width": 287, "height": 135, "path": "plant-08.eyes"}, - "eyes-angry": {"x": 29.93, "y": 23.44, "width": 287, "height": 135, "path": "plant-08.eyes-angry"}, - "eyes-happy": {"x": 29.93, "y": 23.44, "width": 287, "height": 135, "path": "plant-08.eyes-happy"}, - "eyes-shut": {"x": 29.93, "y": 23.44, "width": 287, "height": 135, "path": "plant-08.eyes-shut"} + "eyes": {"x": 67.17764705882354, "y": 28.62764705882353, "width": 291.7647058823529, "height": 91.76470588235294, "path": "plant-mystic-02.eyes"}, + "eyes-angry": {"x": 67.17764705882354, "y": 28.62764705882353, "width": 291.7647058823529, "height": 91.76470588235294, "path": "plant-mystic-02.eyes-angry"}, + "eyes-happy": {"x": 67.17764705882354, "y": 28.62764705882353, "width": 291.7647058823529, "height": 91.76470588235294, "path": "plant-mystic-02.eyes-happy"}, + "eyes-shut": {"x": 67.17764705882354, "y": 28.62764705882353, "width": 291.7647058823529, "height": 91.76470588235294, "path": "plant-mystic-02.eyes-shut"} }, - "horn": {"horn": {"x": 82.9, "y": -20.92, "rotation": -90, "width": 235, "height": 210, "path": "plant-08.horn"}}, + "horn": {"horn": {"x": 66.01, "y": 6.028235294117638, "rotation": -90, "width": 160.0, "height": 218.82352941176472, "path": "plant-mystic-02.horn"}}, "mouth": { - "mouth": {"x": 27.92, "y": 52.94, "width": 109, "height": 60, "path": "plant-08.mouth"}, - "mouth-bite": {"x": 32.42, "y": 44.44, "width": 246, "height": 79, "path": "plant-08.mouth-bite"}, - "mouth-open": {"x": 24.92, "y": 32.94, "width": 145, "height": 132, "path": "plant-08.mouth-open"}, - "mouth-smile": {"x": 21.42, "y": 45.94, "width": 216, "height": 74, "path": "plant-08.mouth-smile"} + "mouth": {"x": 26.07, "y": 73.26705882352941, "width": 80.0, "height": 44.70588235294118, "path": "plant-mystic-02.mouth"}, + "mouth-bite": {"x": 23.88352941176471, "y": 55.862941176470585, "width": 202.35294117647058, "height": 75.29411764705883, "path": "plant-mystic-02.mouth-bite"}, + "mouth-open": {"x": 30.11882352941176, "y": 44.980588235294114, "width": 105.88235294117648, "height": 127.05882352941177, "path": "plant-mystic-02.mouth-open"}, + "mouth-smile": {"x": 24.177647058823528, "y": 64.62764705882353, "width": 91.76470588235294, "height": 51.76470588235294, "path": "plant-mystic-02.mouth-smile"} + }, + "mouth-accessory": { + "mouth-accessory": {"x": -52.50352941176471, "y": 4.56647058823529, "width": 117.64705882352942, "height": 117.64705882352942, "path": "plant-mystic-02.mouth-accessory"} + }, + "mouth-blink": { + "mouth-smile-blink": {"x": 0.732941176470587, "y": -0.9670588235294131, "width": 35.294117647058826, "height": 35.294117647058826, "path": "plant-mystic-02.mouth-smile-blink"} }, - "tail": {"tail": {"x": 132.17, "y": 3.8, "rotation": -13, "width": 295, "height": 219, "path": "plant-08.tail"}} + "tail": {"tail": {"x": 126.55176470588235, "y": 19.254705882352926, "rotation": -15, "width": 301.1764705882353, "height": 256.47058823529414, "path": "plant-mystic-02.tail"}} } } ], @@ -7187,7 +4490,7 @@ "attack/ranged/cast-high": "164191126", "attack/ranged/cast-low": "198813017", "attack/ranged/cast-multi": "151119", - "attack/ranged/cast-tail": "997902532", + "attack/ranged/cast-tail": "3899988824", "activity/eat-bite": "1137807767", "activity/eat-chew": "1988236421", "activity/entrance": "3768378365", @@ -7204,17 +4507,17 @@ "attack/melee/mouth-bite": "2237748264", "action/move-back": "3766271173", "action/move-forward": "2945160014", - "attack/melee/multi-attack": "905926802", - "action/idle/normal": "1659336865", + "attack/melee/multi-attack": "3861365989", + "action/idle/normal": "1749937284", "attack/melee/normal-attack": "3305373483", "activity/prepare": "405864717", "action/idle/random-01": "554401889", - "action/idle/random-02": "1085666627", + "action/idle/random-02": "3888196768", "action/idle/random-03": "2021333900", "action/idle/random-04": "1003789695", "action/idle/random-05": "2745614147", - "action/run": "1438840721", - "draft/run-origin": "3577885069", + "action/run": "3858829480", + "draft/run-origin": "3947527336", "attack/melee/shrimp": "3833448733", "activity/sleep": "100562494", "attack/melee/tail-multi-slap": "3317139533", @@ -7224,16 +4527,16 @@ "activity/victory-pose-back-flip": "2227634241" } }, - "reptile-04": { + "japan-02": { "bones": [ {"name": "@root"}, {"name": "@pivot-main", "parent": "@root"}, {"name": "@pivot-back", "parent": "@pivot-main", "x": 205, "y": 180, "color": "ff0101ff"}, {"name": "@pivot-center", "parent": "@pivot-back", "x": -215.11, "y": -5.25, "color": "ff0101ff"}, {"name": "@axie", "parent": "@pivot-center", "length": 213.28, "rotation": 179.04, "x": 196.39, "y": 5.16}, {"name": "@back", "parent": "@axie", "rotation": -179.04, "x": 37.63, "y": -198.19}, - {"name": "back", "parent": "@back", "length": 149.41, "rotation": 64, "x": -51.97, "y": -9.7, "transform": "noScale"}, + {"name": "back", "parent": "@back", "length": 149.41, "rotation": 56, "x": -47.97, "y": 51.3, "transform": "noScale"}, {"name": "@body", "parent": "@axie", "length": 226.28, "rotation": -8.35, "x": 224.58, "y": -0.53}, {"name": "@ear-left", "parent": "@axie", "rotation": -179.04, "x": 112.7, "y": -203.23}, - {"name": "ear-left", "parent": "@ear-left", "length": 113.61, "rotation": 52, "x": -27, "y": -17, "transform": "noScale"}, + {"name": "ear-left", "parent": "@ear-left", "length": 113.61, "rotation": 4, "x": 7, "y": -28, "transform": "noScale"}, {"name": "@ear-right", "parent": "@axie", "rotation": -179.04, "x": 405.28, "y": -235.33}, - {"name": "ear-right", "parent": "@ear-right", "length": 119.39, "rotation": 93, "x": -40, "y": -54, "transform": "noScale"}, + {"name": "ear-right", "parent": "@ear-right", "length": 119.39, "rotation": -178, "x": -85, "y": -90, "transform": "noScale"}, {"name": "@eyes", "parent": "@axie", "rotation": -179.04, "x": 384.24, "y": -113.67}, {"name": "@horn", "parent": "@axie", "rotation": -179.04, "x": 327.92, "y": -214.63}, {"name": "horn", "parent": "@horn", "length": 176.72, "rotation": 90, "y": 18, "transform": "noScale"}, {"name": "@leg-back-left", "parent": "@axie", "length": 76.4, "rotation": 100.96, "x": -15.3, "y": 102.56, "transform": "noScale"}, @@ -7241,7 +4544,8 @@ {"name": "@leg-front-right", "parent": "@axie", "length": 74.83, "rotation": 83.2, "x": 382.95, "y": 121.78, "transform": "noScale"}, {"name": "@mouth", "parent": "@axie", "rotation": -179.04, "x": 382.23, "y": 6.31}, {"name": "body-pattern", "parent": "@body", "rotation": -170.69, "x": -267.21, "y": -49.4, "transform": "noScale"}, {"name": "@shadow", "parent": "@root", "color": "e6d713ff"}, - {"name": "@tail", "parent": "@axie", "rotation": -179.04, "x": -11.76, "y": 61.72}, {"name": "tail", "parent": "@tail", "length": 203.67, "x": -47, "y": -1, "transform": "noScale"}, + {"name": "@tail", "parent": "@axie", "rotation": -179.04, "x": -11.76, "y": 61.72}, + {"name": "tail", "parent": "@tail", "length": 203.67, "rotation": -12, "x": 16, "y": 72.87, "transform": "noScale"}, {"name": "leg-front-right-IK", "parent": "@pivot-main", "x": -195.99, "y": -10.21, "color": "ff3f00ff"}, {"name": "leg-front-left-IK", "parent": "@pivot-main", "x": 42.3, "y": -18.42, "color": "ff3f00ff"}, {"name": "leg-back-left-IK", "parent": "@pivot-main", "x": 208.57, "y": 1.35, "color": "ff3f00ff"}, {"name": "@ball", "parent": "@root", "y": 191, "color": "f3981bff"}, @@ -7263,23 +4567,23 @@ { "name": "default", "attachments": { - "back": {"back": {"x": 113.55, "y": 6.84, "rotation": -64, "width": 276, "height": 340, "path": "reptile-04.back"}}, - "ear-left": {"ear-left": {"x": 38.66, "y": -37.22, "rotation": -52, "width": 105, "height": 115, "path": "reptile-04.ear-left"}}, - "ear-right": {"ear-right": {"x": 12.03, "y": 27.78, "rotation": -93, "width": 90, "height": 117, "path": "reptile-04.ear-right"}}, + "back": {"back": {"x": 120.91764705882352, "y": -5.204705882352957, "rotation": -56, "width": 251.76470588235296, "height": 383.5294117647059, "path": "japan-02.back"}}, + "ear-left": {"ear-left": {"x": 59.641176470588235, "y": -4.492352941176478, "rotation": -4, "width": 134.11764705882354, "height": 171.76470588235296, "path": "japan-02.ear-left"}}, + "ear-right": {"ear-right": {"x": 51.90588235294118, "y": 3.111764705882348, "rotation": 178, "width": 150.58823529411765, "height": 141.1764705882353, "path": "japan-02.ear-right"}}, "eyes": { - "eyes": {"x": 29.13, "y": 20.55, "width": 295, "height": 129, "path": "reptile-04.eyes"}, - "eyes-angry": {"x": 29.13, "y": 25.05, "width": 295, "height": 138, "path": "reptile-04.eyes-angry"}, - "eyes-happy": {"x": 28.63, "y": 27.55, "width": 296, "height": 115, "path": "reptile-04.eyes-happy"}, - "eyes-shut": {"x": 15.13, "y": -20.45, "width": 253, "height": 153, "path": "reptile-04.eyes-shut"} + "eyes": {"x": 29.968823529411768, "y": 19.5, "width": 265.88235294117646, "height": 120.0, "path": "japan-02.eyes"}, + "eyes-angry": {"x": 29.968823529411768, "y": 22.147058823529413, "width": 265.88235294117646, "height": 124.70588235294117, "path": "japan-02.eyes-angry"}, + "eyes-happy": {"x": 26.792352941176464, "y": 23.029411764705884, "width": 268.2352941176471, "height": 112.94117647058823, "path": "japan-02.eyes-happy"}, + "eyes-shut": {"x": 29.968823529411768, "y": 19.5, "width": 265.88235294117646, "height": 120.0, "path": "japan-02.eyes-shut"} }, - "horn": {"horn": {"x": 103.05, "y": 5.87, "rotation": -90, "width": 163, "height": 242, "path": "reptile-04.horn"}}, + "horn": {"horn": {"x": 133.64705882352942, "y": -0.7629411764705798, "rotation": -90, "width": 284.70588235294116, "height": 284.70588235294116, "path": "japan-02.horn"}}, "mouth": { - "mouth": {"x": 14.63, "y": 72.05, "width": 60, "height": 42, "path": "reptile-04.mouth"}, - "mouth-bite": {"x": 23.13, "y": 55.55, "width": 143, "height": 69, "path": "reptile-04.mouth-bite"}, - "mouth-open": {"x": 36.63, "y": 33.56, "width": 180, "height": 113, "path": "reptile-04.mouth-open"}, - "mouth-smile": {"x": 20.63, "y": 67.55, "width": 68, "height": 35, "path": "reptile-04.mouth-smile"} + "mouth": {"x": -45.09, "y": 53.970588235294116, "width": 320.0, "height": 87.05882352941177, "path": "japan-02.mouth"}, + "mouth-bite": {"x": -38.73705882352942, "y": 36.970588235294116, "width": 315.29411764705884, "height": 87.05882352941177, "path": "japan-02.mouth-bite"}, + "mouth-open": {"x": -28.619411764705884, "y": 16.088235294117652, "width": 287.05882352941177, "height": 138.8235294117647, "path": "japan-02.mouth-open"}, + "mouth-smile": {"x": -45.325294117647076, "y": 75.61764705882352, "width": 336.47058823529414, "height": 131.76470588235296, "path": "japan-02.mouth-smile"} }, - "tail": {"tail": {"x": 113.13, "y": 27.05, "width": 307, "height": 216, "path": "reptile-04.tail"}} + "tail": {"tail": {"x": 125.53882352941177, "y": -3.22705882352942, "rotation": 12, "width": 305.88235294117646, "height": 235.29411764705884, "path": "japan-02.tail"}} } } ], @@ -7328,130 +4632,16 @@ "activity/victory-pose-back-flip": "2227634241" } }, - "xmas-02": { - "bones": [ - {"name": "@root"}, {"name": "@pivot-main", "parent": "@root"}, {"name": "@pivot-back", "parent": "@pivot-main", "x": 205, "y": 180, "color": "ff0101ff"}, - {"name": "@pivot-center", "parent": "@pivot-back", "x": -215.11, "y": -5.25, "color": "ff0101ff"}, - {"name": "@axie", "parent": "@pivot-center", "length": 213.28, "rotation": 179.04, "x": 196.39, "y": 5.16}, {"name": "@back", "parent": "@axie", "rotation": -179.04, "x": 37.63, "y": -198.19}, - {"name": "back", "parent": "@back", "length": 149.41, "rotation": 48, "x": -58.98, "y": 59.3, "transform": "noScale"}, - {"name": "@body", "parent": "@axie", "length": 226.28, "rotation": -8.35, "x": 224.58, "y": -0.53}, {"name": "@ear-left", "parent": "@axie", "rotation": -179.04, "x": 112.7, "y": -203.23}, - {"name": "ear-left", "parent": "@ear-left", "length": 113.61, "rotation": 24, "x": -27, "y": -5, "transform": "noScale"}, - {"name": "@ear-right", "parent": "@axie", "rotation": -179.04, "x": 405.28, "y": -235.33}, - {"name": "ear-right", "parent": "@ear-right", "length": 119.39, "rotation": 148, "x": -15, "y": -44, "transform": "noScale"}, - {"name": "@eyes", "parent": "@axie", "rotation": -179.04, "x": 384.24, "y": -113.67}, {"name": "@horn", "parent": "@axie", "rotation": -179.04, "x": 327.92, "y": -214.63}, - {"name": "horn", "parent": "@horn", "length": 176.72, "rotation": 90, "y": 18, "transform": "noScale"}, - {"name": "@leg-back-left", "parent": "@axie", "length": 66.78, "rotation": 97.07, "x": -15.3, "y": 102.56, "transform": "noScale"}, - {"name": "@leg-front-left", "parent": "@axie", "length": 68.04, "rotation": 84.88, "x": 135.05, "y": 132.6, "transform": "noScale"}, - {"name": "@leg-front-right", "parent": "@axie", "length": 70.32, "rotation": 92.53, "x": 382.95, "y": 121.78, "transform": "noScale"}, - {"name": "@mouth", "parent": "@axie", "rotation": -179.04, "x": 382.23, "y": 6.31}, {"name": "@shadow", "parent": "@root", "color": "e6d713ff"}, - {"name": "@tail", "parent": "@axie", "rotation": -179.04, "x": -11.76, "y": 61.72}, - {"name": "tail", "parent": "@tail", "length": 203.67, "rotation": 3, "x": 15, "y": 20, "transform": "noScale"}, - {"name": "leg-front-right-IK", "parent": "@pivot-main", "x": -195.99, "y": -10.21, "color": "ff3f00ff"}, - {"name": "leg-front-left-IK", "parent": "@pivot-main", "x": 42.3, "y": -18.42, "color": "ff3f00ff"}, - {"name": "leg-back-left-IK", "parent": "@pivot-main", "x": 208.57, "y": 1.35, "color": "ff3f00ff"}, {"name": "@ball", "parent": "@root", "y": 191, "color": "f3981bff"}, - {"name": "ball", "parent": "@ball", "y": -191, "color": "f4a729ff"}, {"name": "body-bell", "parent": "@body", "rotation": -170.69, "x": 121.75, "y": 84.01} - ], - "slots": [ - {"name": "shadow", "bone": "@shadow", "attachment": "shadow"}, {"name": "ball", "bone": "ball"}, {"name": "leg-front-right", "bone": "@leg-front-right", "attachment": "xmas-leg-front-right"}, - {"name": "leg-front-left", "bone": "@leg-front-left", "attachment": "xmas-leg-front-left"}, {"name": "leg-back-left", "bone": "@leg-back-left", "attachment": "xmas-leg-back-left"}, - {"name": "ear-right", "bone": "ear-right", "attachment": "ear-right"}, {"name": "tail", "bone": "tail", "attachment": "tail"}, {"name": "tail-glow", "bone": "tail"}, - {"name": "back", "bone": "back", "attachment": "back"}, {"name": "body", "bone": "@body", "attachment": "body-xmas-01"}, {"name": "eyes", "bone": "@eyes", "attachment": "eyes"}, - {"name": "mouth", "bone": "@mouth", "attachment": "mouth"}, {"name": "horn", "bone": "horn", "attachment": "horn"}, {"name": "ear-left", "bone": "ear-left", "attachment": "ear-left"}, - {"name": "body-bell", "bone": "body-bell", "attachment": "body-bell"} - ], - "ik": [ - {"name": "leg-back-left-IK", "order": 2, "bones": ["@leg-back-left"], "target": "leg-back-left-IK"}, - {"name": "leg-front-left-IK", "order": 1, "bones": ["@leg-front-left"], "target": "leg-front-left-IK"}, - {"name": "leg-front-right-IK", "bones": ["@leg-front-right"], "target": "leg-front-right-IK"} - ], - "skins": [ - { - "name": "default", - "attachments": { - "back": {"back": {"x": 31.88, "y": -11.57, "rotation": -48, "width": 313, "height": 322, "path": "xmas-02.back"}}, - "ear-left": {"ear-left": {"x": 22.51, "y": 0.32, "rotation": -24, "width": 134, "height": 139, "path": "xmas-02.ear-left"}}, - "ear-right": {"ear-right": {"x": 33.79, "y": 1.72, "rotation": -148, "width": 134, "height": 139, "path": "xmas-02.ear-right"}}, - "eyes": { - "eyes": {"x": 21.43, "y": 11.45, "width": 196, "height": 95, "path": "xmas-02.eyes"}, - "eyes-angry": {"x": 22.93, "y": 3.95, "width": 193, "height": 80, "path": "xmas-02.eyes-angry"}, - "eyes-happy": {"x": 16.93, "y": -6.05, "width": 227, "height": 44, "path": "xmas-02.eyes-happy"}, - "eyes-shut": {"x": 14.43, "y": -17.05, "width": 214, "height": 30, "path": "xmas-02.eyes-shut"} - }, - "horn": {"horn": {"x": 100.45, "y": 10.57, "rotation": -90, "width": 204, "height": 217, "path": "xmas-02.horn"}}, - "mouth": { - "mouth": {"x": 5.43, "y": 83.95, "width": 132, "height": 102, "path": "xmas-02.mouth"}, - "mouth-bite": {"x": 8.43, "y": 98.95, "width": 214, "height": 154, "path": "xmas-02.mouth-bite"}, - "mouth-blink": {"x": -7.07, "y": 98.95, "width": 183, "height": 154, "path": "xmas-02.mouth-blink"}, - "mouth-eat": {"x": 7.15, "y": 1.19, "width": 157, "height": 53, "path": "xmas-02.mouth-eat"}, - "mouth-open": {"x": 14.43, "y": 57.95, "width": 150, "height": 154, "path": "xmas-02.mouth-open"}, - "mouth-smile": {"x": -7.07, "y": 98.95, "width": 183, "height": 154, "path": "xmas-02.mouth-smile"} - }, - "tail": {"tail": {"x": 106.36, "y": 14.9, "rotation": -3, "width": 286, "height": 207, "path": "xmas-02.tail"}}, - "tail-glow": { - "tail-glow-01": {"x": 72.33, "y": 15.18, "rotation": -3, "width": 354, "height": 328, "path": "xmas-02.tail-glow-01"}, - "tail-glow-02": {"x": 107.01, "y": 17.87, "rotation": -3, "width": 287, "height": 241, "path": "xmas-02.tail-glow-02"}, - "tail-glow-03": {"x": 124.33, "y": 13.96, "rotation": -3, "width": 322, "height": 207, "path": "xmas-02.tail-glow-03"} - } - } - } - ], - "events": {"hit": {}, "hit-buff": {}, "jump": {}, "start-attack": {}}, - "keyAnimations": { - "activity/appear": "3921179016", - "activity/bath": "3305387968", - "attack/ranged/cast-fly": "3722823556", - "attack/ranged/cast-high": "3577703416", - "attack/ranged/cast-low": "1793942137", - "attack/ranged/cast-multi": "151119", - "attack/ranged/cast-tail": "977217026", - "activity/eat-bite": "1137807767", - "activity/eat-chew": "2571197086", - "activity/entrance": "3768378365", - "defense/evade": "1735454995", - "activity/evolve": "649307630", - "battle/get-buff": "2993060391", - "battle/get-debuff": "2919546916", - "defense/hit-by-normal": "2695183231", - "defense/hit-by-normal-crit": "721863963", - "defense/hit-by-normal-dramatic": "2501809037", - "defense/hit-by-ranged-attack": "3309952905", - "defense/hit-with-shield": "228539860", - "attack/melee/horn-gore": "3177102970", - "attack/melee/mouth-bite": "1912445836", - "action/move-back": "3766271173", - "action/move-forward": "2945160014", - "attack/melee/multi-attack": "2627626635", - "action/idle/normal": "568166623", - "attack/melee/normal-attack": "3305373483", - "activity/prepare": "405864717", - "action/idle/random-01": "880116349", - "action/idle/random-02": "3151577093", - "action/idle/random-03": "2146505268", - "action/idle/random-04": "3708365579", - "action/idle/random-05": "2745614147", - "action/run": "378584637", - "draft/run-origin": "1973997258", - "attack/melee/shrimp": "244230390", - "status/sitting-duck": "1990830770", - "activity/sleep": "100562494", - "status/stun": "2745614147", - "attack/melee/tail-multi-slap": "2905793214", - "attack/melee/tail-roll": "3678751400", - "attack/melee/tail-smash": "2662497262", - "attack/melee/tail-thrash": "2102433122", - "activity/victory-pose-back-flip": "2227634241" - } - }, - "aquatic-02": { + "bug-10": { "bones": [ {"name": "@root"}, {"name": "@pivot-main", "parent": "@root"}, {"name": "@pivot-back", "parent": "@pivot-main", "x": 205, "y": 180, "color": "ff0101ff"}, {"name": "@pivot-center", "parent": "@pivot-back", "x": -215.11, "y": -5.25, "color": "ff0101ff"}, {"name": "@axie", "parent": "@pivot-center", "length": 213.28, "rotation": 179.04, "x": 196.39, "y": 5.16}, {"name": "@back", "parent": "@axie", "rotation": -179.04, "x": 37.63, "y": -198.19}, - {"name": "back", "parent": "@back", "length": 149.41, "rotation": 60, "x": 6.8, "y": 15, "transform": "noScale"}, + {"name": "back", "parent": "@back", "length": 149.41, "rotation": 58, "x": -87.97, "y": 69.3, "transform": "noScale"}, {"name": "@body", "parent": "@axie", "length": 226.28, "rotation": -8.35, "x": 224.58, "y": -0.53}, {"name": "@ear-left", "parent": "@axie", "rotation": -179.04, "x": 112.7, "y": -203.23}, - {"name": "ear-left", "parent": "@ear-left", "length": 113.61, "rotation": 2, "x": -21, "y": -43, "transform": "noScale"}, + {"name": "ear-left", "parent": "@ear-left", "length": 113.61, "rotation": 55, "x": -8, "y": 3, "transform": "noScale"}, {"name": "@ear-right", "parent": "@axie", "rotation": -179.04, "x": 405.28, "y": -235.33}, - {"name": "ear-right", "parent": "@ear-right", "length": 119.39, "rotation": 9, "x": -120, "y": -105, "transform": "noScale"}, + {"name": "ear-right", "parent": "@ear-right", "length": 119.39, "rotation": 120, "x": -11, "y": -35, "transform": "noScale"}, {"name": "@eyes", "parent": "@axie", "rotation": -179.04, "x": 384.24, "y": -113.67}, {"name": "@horn", "parent": "@axie", "rotation": -179.04, "x": 327.92, "y": -214.63}, {"name": "horn", "parent": "@horn", "length": 176.72, "rotation": 90, "y": 18, "transform": "noScale"}, {"name": "@leg-back-left", "parent": "@axie", "length": 76.4, "rotation": 100.96, "x": -15.3, "y": 102.56, "transform": "noScale"}, @@ -7460,7 +4650,7 @@ {"name": "@mouth", "parent": "@axie", "rotation": -179.04, "x": 382.23, "y": 6.31}, {"name": "body-pattern", "parent": "@body", "rotation": -170.69, "x": -267.21, "y": -49.4, "transform": "noScale"}, {"name": "@shadow", "parent": "@root", "color": "e6d713ff"}, {"name": "@tail", "parent": "@axie", "rotation": -179.04, "x": -11.76, "y": 61.72}, - {"name": "tail", "parent": "@tail", "length": 203.67, "rotation": 6, "x": 16, "y": 72.87, "transform": "noScale"}, + {"name": "tail", "parent": "@tail", "length": 203.67, "rotation": -20, "x": -12, "y": 15, "transform": "noScale"}, {"name": "leg-front-right-IK", "parent": "@pivot-main", "x": -195.99, "y": -10.21, "color": "ff3f00ff"}, {"name": "leg-front-left-IK", "parent": "@pivot-main", "x": 42.3, "y": -18.42, "color": "ff3f00ff"}, {"name": "leg-back-left-IK", "parent": "@pivot-main", "x": 208.57, "y": 1.35, "color": "ff3f00ff"}, {"name": "@ball", "parent": "@root", "y": 191, "color": "f3981bff"}, @@ -7482,23 +4672,23 @@ { "name": "default", "attachments": { - "back": {"back": {"x": 63.26, "y": 57.22, "rotation": -60, "width": 277, "height": 306, "path": "aquatic-02.back"}}, - "ear-left": {"ear-left": {"x": 51.04, "y": 5.47, "rotation": -2, "width": 135, "height": 186, "path": "aquatic-02.ear-left"}}, - "ear-right": {"ear-right": {"x": 28.78, "y": 22.88, "rotation": -9, "width": 77, "height": 178, "path": "aquatic-02.ear-right"}}, + "back": {"back": {"x": 101.34705882352942, "y": -38.06176470588235, "rotation": -58, "width": 364.70588235294116, "height": 258.8235294117647, "path": "bug-10.back"}}, + "ear-left": {"ear-left": {"x": 75.54411764705883, "y": 6.869411764705884, "rotation": -55, "width": 129.41176470588235, "height": 192.94117647058823, "path": "bug-10.ear-left"}}, + "ear-right": {"ear-right": {"x": 74.99411764705883, "y": -5.580588235294116, "rotation": -120, "width": 129.41176470588235, "height": 192.94117647058823, "path": "bug-10.ear-right"}}, "eyes": { - "eyes": {"x": 27.35, "y": 18.6, "width": 268, "height": 121, "path": "aquatic-02.eyes"}, - "eyes-angry": {"x": 27.35, "y": 21.1, "width": 268, "height": 126, "path": "aquatic-02.eyes-angry"}, - "eyes-happy": {"x": 24.35, "y": 21.6, "width": 270, "height": 115, "path": "aquatic-02.eyes-happy"}, - "eyes-shut": {"x": 27.35, "y": 18.6, "width": 268, "height": 121, "path": "aquatic-02.eyes-shut"} + "eyes": {"x": 51.02705882352942, "y": 30.49, "width": 324.70588235294116, "height": 120.0, "path": "bug-10.eyes"}, + "eyes-angry": {"x": 51.02705882352942, "y": 30.49, "width": 324.70588235294116, "height": 120.0, "path": "bug-10.eyes-angry"}, + "eyes-happy": {"x": 51.02705882352942, "y": 30.49, "width": 324.70588235294116, "height": 120.0, "path": "bug-10.eyes-happy"}, + "eyes-shut": {"x": 51.02705882352942, "y": 30.49, "width": 324.70588235294116, "height": 120.0, "path": "bug-10.eyes-shut"} }, - "horn": {"horn": {"x": 67.1, "y": -20.85, "rotation": -90, "width": 273, "height": 162, "path": "aquatic-02.horn"}}, + "horn": {"horn": {"x": 121.07823529411765, "y": 15.44352941176471, "rotation": -90, "width": 138.8235294117647, "height": 202.35294117647058, "path": "bug-10.horn"}}, "mouth": { - "mouth": {"x": 12.85, "y": 43.6, "width": 113, "height": 115, "path": "aquatic-02.mouth"}, - "mouth-bite": {"x": 19.85, "y": 45.1, "width": 255, "height": 98, "path": "aquatic-02.mouth-bite"}, - "mouth-open": {"x": 13.85, "y": 29.1, "width": 141, "height": 174, "path": "aquatic-02.mouth-open"}, - "mouth-smile": {"x": 17.35, "y": 46.1, "width": 188, "height": 106, "path": "aquatic-02.mouth-smile"} + "mouth": {"x": 15.321176470588233, "y": 55.019411764705886, "width": 134.11764705882354, "height": 72.94117647058823, "path": "bug-10.mouth"}, + "mouth-bite": {"x": 14.497647058823523, "y": 59.54882352941176, "width": 131.76470588235296, "height": 65.88235294117648, "path": "bug-10.mouth-bite"}, + "mouth-open": {"x": 16.144705882352945, "y": 48.37235294117647, "width": 176.47058823529412, "height": 108.23529411764706, "path": "bug-10.mouth-open"}, + "mouth-smile": {"x": 20.438823529411767, "y": 57.54882352941176, "width": 225.88235294117646, "height": 65.88235294117648, "path": "bug-10.mouth-smile"} }, - "tail": {"tail": {"x": 98.49, "y": 0.94, "rotation": -6, "width": 315, "height": 252, "path": "aquatic-02.tail"}} + "tail": {"tail": {"x": 81.07941176470588, "y": 17.22, "rotation": 20, "width": 232.94117647058823, "height": 200.0, "path": "bug-10.tail"}} } } ], @@ -7547,16 +4737,16 @@ "activity/victory-pose-back-flip": "2227634241" } }, - "beast-06": { + "bug-04": { "bones": [ {"name": "@root"}, {"name": "@pivot-main", "parent": "@root"}, {"name": "@pivot-back", "parent": "@pivot-main", "x": 205, "y": 180, "color": "ff0101ff"}, {"name": "@pivot-center", "parent": "@pivot-back", "x": -215.11, "y": -5.25, "color": "ff0101ff"}, {"name": "@axie", "parent": "@pivot-center", "length": 213.28, "rotation": 179.04, "x": 196.39, "y": 5.16}, {"name": "@back", "parent": "@axie", "rotation": -179.04, "x": 37.63, "y": -198.19}, - {"name": "back", "parent": "@back", "length": 149.41, "rotation": 58, "x": -13.97, "y": 26.3, "transform": "noScale"}, + {"name": "back", "parent": "@back", "length": 149.41, "rotation": 58, "x": -71.97, "y": -6.7, "transform": "noScale"}, {"name": "@body", "parent": "@axie", "length": 226.28, "rotation": -8.35, "x": 224.58, "y": -0.53}, {"name": "@ear-left", "parent": "@axie", "rotation": -179.04, "x": 112.7, "y": -203.23}, {"name": "ear-left", "parent": "@ear-left", "length": 113.61, "rotation": 90, "x": -27, "y": 19, "transform": "noScale"}, {"name": "@ear-right", "parent": "@axie", "rotation": -179.04, "x": 405.28, "y": -235.33}, - {"name": "ear-right", "parent": "@ear-right", "length": 119.39, "rotation": 93, "x": -30, "y": -15, "transform": "noScale"}, + {"name": "ear-right", "parent": "@ear-right", "length": 119.39, "rotation": 132, "x": -17, "y": -40, "transform": "noScale"}, {"name": "@eyes", "parent": "@axie", "rotation": -179.04, "x": 384.24, "y": -113.67}, {"name": "@horn", "parent": "@axie", "rotation": -179.04, "x": 327.92, "y": -214.63}, {"name": "horn", "parent": "@horn", "length": 176.72, "rotation": 90, "y": 18, "transform": "noScale"}, {"name": "@leg-back-left", "parent": "@axie", "length": 76.4, "rotation": 100.96, "x": -15.3, "y": 102.56, "transform": "noScale"}, @@ -7565,7 +4755,7 @@ {"name": "@mouth", "parent": "@axie", "rotation": -179.04, "x": 382.23, "y": 6.31}, {"name": "body-pattern", "parent": "@body", "rotation": -170.69, "x": -267.21, "y": -49.4, "transform": "noScale"}, {"name": "@shadow", "parent": "@root", "color": "e6d713ff"}, {"name": "@tail", "parent": "@axie", "rotation": -179.04, "x": -11.76, "y": 61.72}, - {"name": "tail", "parent": "@tail", "length": 203.67, "rotation": -12, "x": 16, "y": 72.87, "transform": "noScale"}, + {"name": "tail", "parent": "@tail", "length": 203.67, "rotation": 36, "x": 16, "y": -13, "transform": "noScale"}, {"name": "leg-front-right-IK", "parent": "@pivot-main", "x": -195.99, "y": -10.21, "color": "ff3f00ff"}, {"name": "leg-front-left-IK", "parent": "@pivot-main", "x": 42.3, "y": -18.42, "color": "ff3f00ff"}, {"name": "leg-back-left-IK", "parent": "@pivot-main", "x": 208.57, "y": 1.35, "color": "ff3f00ff"}, {"name": "@ball", "parent": "@root", "y": 191, "color": "f3981bff"}, @@ -7587,23 +4777,23 @@ { "name": "default", "attachments": { - "back": {"back": {"x": 53.04, "y": 78.16, "rotation": -58, "width": 339, "height": 313, "path": "beast-06.back"}}, - "ear-left": {"ear-left": {"x": -132.6, "y": -101.33, "rotation": -90, "width": 218, "height": 251, "path": "beast-06.ear-left"}}, - "ear-right": {"ear-right": {"x": -114.13, "y": 78.76, "rotation": -93, "width": 228, "height": 236, "path": "beast-06.ear-right"}}, + "back": {"back": {"x": 116.03058823529412, "y": 31.417058823529405, "rotation": -58, "width": 287.05882352941177, "height": 244.7058823529412, "path": "bug-04.back"}}, + "ear-left": {"ear-left": {"x": 3.732941176470587, "y": -61.752352941176476, "rotation": -90, "width": 115.29411764705883, "height": 131.76470588235296, "path": "bug-04.ear-left"}}, + "ear-right": {"ear-right": {"x": 42.92294117647059, "y": 9.157647058823521, "rotation": -132, "width": 115.29411764705883, "height": 131.76470588235296, "path": "bug-04.ear-right"}}, "eyes": { - "eyes": {"x": 25.62, "y": 19.83, "width": 283, "height": 94, "path": "beast-06.eyes"}, - "eyes-angry": {"x": 25.62, "y": 16.33, "width": 283, "height": 79, "path": "beast-06.eyes-angry"}, - "eyes-happy": {"x": 25.62, "y": 28.33, "width": 283, "height": 109, "path": "beast-06.eyes-happy"}, - "eyes-shut": {"x": 25.62, "y": 20.83, "width": 283, "height": 92, "path": "beast-06.eyes-shut"} + "eyes": {"x": 44.66411764705881, "y": 21.64470588235294, "width": 369.4117647058824, "height": 136.47058823529412, "path": "bug-04.eyes"}, + "eyes-angry": {"x": 44.66411764705881, "y": 21.64470588235294, "width": 369.4117647058824, "height": 136.47058823529412, "path": "bug-04.eyes-angry"}, + "eyes-happy": {"x": 44.66411764705881, "y": 21.64470588235294, "width": 369.4117647058824, "height": 136.47058823529412, "path": "bug-04.eyes-happy"}, + "eyes-shut": {"x": 44.66411764705881, "y": 21.64470588235294, "width": 369.4117647058824, "height": 136.47058823529412, "path": "bug-04.eyes-shut"} }, - "horn": {"horn": {"x": 80.9, "y": -14.82, "rotation": -90, "width": 339, "height": 192, "path": "beast-06.horn"}}, + "horn": {"horn": {"x": 99.32117647058823, "y": 48.13, "rotation": -90, "width": 294.11764705882354, "height": 200.0, "path": "bug-04.horn"}}, "mouth": { - "mouth": {"x": 12.62, "y": 46.83, "width": 121, "height": 106, "path": "beast-06.mouth"}, - "mouth-bite": {"x": 33.12, "y": 41.83, "width": 278, "height": 116, "path": "beast-06.mouth-bite"}, - "mouth-open": {"x": 14.12, "y": 6.33, "width": 124, "height": 189, "path": "beast-06.mouth-open"}, - "mouth-smile": {"x": 13.62, "y": 48.83, "width": 161, "height": 104, "path": "beast-06.mouth-smile"} + "mouth": {"x": 6.487647058823522, "y": 54.46823529411765, "width": 171.76470588235296, "height": 58.82352941176471, "path": "bug-04.mouth"}, + "mouth-bite": {"x": 7.252352941176464, "y": 50.762352941176474, "width": 148.23529411764707, "height": 68.23529411764706, "path": "bug-04.mouth-bite"}, + "mouth-open": {"x": 13.722941176470579, "y": 32.997647058823524, "width": 235.29411764705884, "height": 131.76470588235296, "path": "bug-04.mouth-open"}, + "mouth-smile": {"x": 5.487647058823522, "y": 52.05647058823529, "width": 171.76470588235296, "height": 117.64705882352942, "path": "bug-04.mouth-smile"} }, - "tail": {"tail": {"x": 101.35, "y": 29.76, "rotation": 12, "width": 232, "height": 316, "path": "beast-06.tail"}} + "tail": {"tail": {"x": 138.6264705882353, "y": 0.20352941176471007, "rotation": -36, "width": 317.6470588235294, "height": 202.35294117647058, "path": "bug-04.tail"}} } } ], @@ -7652,246 +4842,48 @@ "activity/victory-pose-back-flip": "2227634241" } }, - "reptile-02": { + "body-bigyak": { "bones": [ - {"name": "@root"}, {"name": "@pivot-main", "parent": "@root"}, {"name": "@pivot-back", "parent": "@pivot-main", "x": 205, "y": 180, "color": "ff0101ff"}, - {"name": "@pivot-center", "parent": "@pivot-back", "x": -215.11, "y": -5.25, "color": "ff0101ff"}, - {"name": "@axie", "parent": "@pivot-center", "length": 213.28, "rotation": 179.04, "x": 196.39, "y": 5.16}, {"name": "@back", "parent": "@axie", "rotation": -179.04, "x": 37.63, "y": -198.19}, - {"name": "back", "parent": "@back", "length": 149.41, "rotation": 64, "x": -51.97, "y": -9.7, "transform": "noScale"}, - {"name": "@body", "parent": "@axie", "length": 226.28, "rotation": -8.35, "x": 224.58, "y": -0.53}, {"name": "@ear-left", "parent": "@axie", "rotation": -179.04, "x": 112.7, "y": -203.23}, - {"name": "ear-left", "parent": "@ear-left", "length": 113.61, "rotation": 52, "x": -27, "y": -17, "transform": "noScale"}, - {"name": "@ear-right", "parent": "@axie", "rotation": -179.04, "x": 405.28, "y": -235.33}, - {"name": "ear-right", "parent": "@ear-right", "length": 119.39, "rotation": 93, "x": -40, "y": -54, "transform": "noScale"}, - {"name": "@eyes", "parent": "@axie", "rotation": -179.04, "x": 384.24, "y": -113.67}, {"name": "@horn", "parent": "@axie", "rotation": -179.04, "x": 327.92, "y": -214.63}, - {"name": "horn", "parent": "@horn", "length": 176.72, "rotation": 90, "y": 18, "transform": "noScale"}, - {"name": "@leg-back-left", "parent": "@axie", "length": 76.4, "rotation": 100.96, "x": -15.3, "y": 102.56, "transform": "noScale"}, - {"name": "@leg-front-left", "parent": "@axie", "length": 51.19, "rotation": 93.86, "x": 134.77, "y": 149.55, "transform": "noScale"}, - {"name": "@leg-front-right", "parent": "@axie", "length": 74.83, "rotation": 83.2, "x": 382.95, "y": 121.78, "transform": "noScale"}, - {"name": "@mouth", "parent": "@axie", "rotation": -179.04, "x": 382.23, "y": 6.31}, - {"name": "body-pattern", "parent": "@body", "rotation": -170.69, "x": -267.21, "y": -49.4, "transform": "noScale"}, {"name": "@shadow", "parent": "@root", "color": "e6d713ff"}, - {"name": "@tail", "parent": "@axie", "rotation": -179.04, "x": -11.76, "y": 61.72}, - {"name": "tail", "parent": "@tail", "length": 203.67, "rotation": -18, "x": -26, "y": 40, "transform": "noScale"}, - {"name": "leg-front-right-IK", "parent": "@pivot-main", "x": -195.99, "y": -10.21, "color": "ff3f00ff"}, - {"name": "leg-front-left-IK", "parent": "@pivot-main", "x": 42.3, "y": -18.42, "color": "ff3f00ff"}, - {"name": "leg-back-left-IK", "parent": "@pivot-main", "x": 208.57, "y": 1.35, "color": "ff3f00ff"}, {"name": "@ball", "parent": "@root", "y": 191, "color": "f3981bff"}, - {"name": "ball", "parent": "@ball", "y": -191, "color": "f4a729ff"} - ], - "slots": [ - {"name": "shadow", "bone": "@shadow", "attachment": "shadow"}, {"name": "ball", "bone": "ball"}, {"name": "leg-front-right", "bone": "@leg-front-right", "attachment": "leg-front-right"}, - {"name": "ear-right", "bone": "ear-right", "attachment": "ear-right"}, {"name": "tail", "bone": "tail", "attachment": "tail"}, {"name": "back", "bone": "back", "attachment": "back"}, - {"name": "leg-back-left", "bone": "@leg-back-left", "attachment": "leg-back-left"}, {"name": "body", "bone": "@body", "attachment": "body"}, {"name": "body-pattern", "bone": "body-pattern"}, - {"name": "leg-front-left", "bone": "@leg-front-left", "attachment": "leg-front-left"}, {"name": "eyes", "bone": "@eyes", "attachment": "eyes"}, - {"name": "mouth", "bone": "@mouth", "attachment": "mouth"}, {"name": "ear-left", "bone": "ear-left", "attachment": "ear-left"}, {"name": "horn", "bone": "horn", "attachment": "horn"} - ], - "ik": [ - {"name": "leg-back-left-IK", "order": 2, "bones": ["@leg-back-left"], "target": "leg-back-left-IK"}, - {"name": "leg-front-left-IK", "order": 1, "bones": ["@leg-front-left"], "target": "leg-front-left-IK"}, - {"name": "leg-front-right-IK", "bones": ["@leg-front-right"], "target": "leg-front-right-IK"} - ], - "skins": [ - { - "name": "default", - "attachments": { - "back": {"back": {"x": 90.45, "y": -2.55, "rotation": -64, "width": 207, "height": 284, "path": "reptile-02.back"}}, - "ear-left": {"ear-left": {"x": 63.78, "y": -57.97, "rotation": -52, "width": 203, "height": 203, "path": "reptile-02.ear-left"}}, - "ear-right": {"ear-right": {"x": 18.49, "y": 24.62, "rotation": -93, "width": 168, "height": 214, "path": "reptile-02.ear-right"}}, - "eyes": { - "eyes": {"x": 29.45, "y": 22.18, "width": 322, "height": 124, "path": "reptile-02.eyes"}, - "eyes-angry": {"x": 30.45, "y": 27.18, "width": 316, "height": 130, "path": "reptile-02.eyes-angry"}, - "eyes-happy": {"x": 28.45, "y": 24.18, "width": 294, "height": 102, "path": "reptile-02.eyes-happy"}, - "eyes-shut": {"x": 27.45, "y": 22.68, "width": 298, "height": 119, "path": "reptile-02.eyes-shut"} - }, - "horn": {"horn": {"x": 101.68, "y": -23.45, "rotation": -90, "width": 234, "height": 207, "path": "reptile-02.horn"}}, - "mouth": { - "mouth": {"x": 24.95, "y": 36.68, "width": 233, "height": 87, "path": "reptile-02.mouth"}, - "mouth-bite": {"x": 31.94, "y": 46.18, "width": 327, "height": 110, "path": "reptile-02.mouth-bite"}, - "mouth-open": {"x": 29.95, "y": 49.18, "width": 281, "height": 92, "path": "reptile-02.mouth-open"}, - "mouth-smile": {"x": 22.45, "y": 60.68, "width": 278, "height": 71, "path": "reptile-02.mouth-smile"} - }, - "tail": {"tail": {"x": 116.06, "y": 14.77, "rotation": 18, "width": 335, "height": 198, "path": "reptile-02.tail"}} - } - } - ], - "events": {"hit": {}, "hit-buff": {}, "jump": {}, "start-attack": {}}, - "keyAnimations": { - "activity/appear": "1023093953", - "activity/bath": "3305387968", - "attack/ranged/cast-fly": "4180526371", - "attack/ranged/cast-high": "164191126", - "attack/ranged/cast-low": "198813017", - "attack/ranged/cast-multi": "151119", - "attack/ranged/cast-tail": "997902532", - "activity/eat-bite": "1137807767", - "activity/eat-chew": "1988236421", - "activity/entrance": "3768378365", - "defense/evade": "1735454995", - "activity/evolve": "649307630", - "battle/get-buff": "1455190363", - "battle/get-debuff": "606904312", - "defense/hit-by-normal": "2045974966", - "defense/hit-by-normal-crit": "2130010601", - "defense/hit-by-normal-dramatic": "3823092125", - "defense/hit-by-ranged-attack": "2224561612", - "defense/hit-with-shield": "390714790", - "attack/melee/horn-gore": "1327954218", - "attack/melee/mouth-bite": "2237748264", - "action/move-back": "3766271173", - "action/move-forward": "2945160014", - "attack/melee/multi-attack": "905926802", - "action/idle/normal": "1659336865", - "attack/melee/normal-attack": "3305373483", - "activity/prepare": "405864717", - "action/idle/random-01": "554401889", - "action/idle/random-02": "1085666627", - "action/idle/random-03": "2021333900", - "action/idle/random-04": "1003789695", - "action/idle/random-05": "2745614147", - "action/run": "1438840721", - "draft/run-origin": "3577885069", - "attack/melee/shrimp": "3833448733", - "activity/sleep": "100562494", - "attack/melee/tail-multi-slap": "3317139533", - "attack/melee/tail-roll": "3108617565", - "attack/melee/tail-smash": "519942130", - "attack/melee/tail-thrash": "628713175", - "activity/victory-pose-back-flip": "2227634241" - } - }, - "beast-08": { - "bones": [ - {"name": "@root"}, {"name": "@pivot-main", "parent": "@root"}, {"name": "@pivot-back", "parent": "@pivot-main", "x": 205, "y": 180, "color": "ff0101ff"}, - {"name": "@pivot-center", "parent": "@pivot-back", "x": -215.11, "y": -5.25, "color": "ff0101ff"}, - {"name": "@axie", "parent": "@pivot-center", "length": 213.28, "rotation": 179.04, "x": 196.39, "y": 5.16}, {"name": "@back", "parent": "@axie", "rotation": -179.04, "x": 37.63, "y": -198.19}, - {"name": "back", "parent": "@back", "length": 149.41, "rotation": 58, "x": -13.97, "y": 26.3, "transform": "noScale"}, - {"name": "@body", "parent": "@axie", "length": 226.28, "rotation": -8.35, "x": 224.58, "y": -0.53}, {"name": "@ear-left", "parent": "@axie", "rotation": -179.04, "x": 112.7, "y": -203.23}, - {"name": "ear-left", "parent": "@ear-left", "length": 113.61, "rotation": 90, "x": -27, "y": 19, "transform": "noScale"}, - {"name": "@ear-right", "parent": "@axie", "rotation": -179.04, "x": 405.28, "y": -235.33}, - {"name": "ear-right", "parent": "@ear-right", "length": 119.39, "rotation": 93, "x": -30, "y": -15, "transform": "noScale"}, - {"name": "@eyes", "parent": "@axie", "rotation": -179.04, "x": 384.24, "y": -113.67}, {"name": "@horn", "parent": "@axie", "rotation": -179.04, "x": 327.92, "y": -214.63}, - {"name": "horn", "parent": "@horn", "length": 176.72, "rotation": 90, "y": 18, "transform": "noScale"}, - {"name": "@leg-back-left", "parent": "@axie", "length": 76.4, "rotation": 100.96, "x": -15.3, "y": 102.56, "transform": "noScale"}, - {"name": "@leg-front-left", "parent": "@axie", "length": 51.19, "rotation": 93.86, "x": 134.77, "y": 149.55, "transform": "noScale"}, - {"name": "@leg-front-right", "parent": "@axie", "length": 74.83, "rotation": 83.2, "x": 382.95, "y": 121.78, "transform": "noScale"}, - {"name": "@mouth", "parent": "@axie", "rotation": -179.04, "x": 382.23, "y": 6.31}, - {"name": "body-pattern", "parent": "@body", "rotation": -170.69, "x": -267.21, "y": -49.4, "transform": "noScale"}, {"name": "@shadow", "parent": "@root", "color": "e6d713ff"}, - {"name": "@tail", "parent": "@axie", "rotation": -179.04, "x": -11.76, "y": 61.72}, - {"name": "tail", "parent": "@tail", "length": 203.67, "rotation": -12, "x": 16, "y": 72.87, "transform": "noScale"}, - {"name": "leg-front-right-IK", "parent": "@pivot-main", "x": -195.99, "y": -10.21, "color": "ff3f00ff"}, - {"name": "leg-front-left-IK", "parent": "@pivot-main", "x": 42.3, "y": -18.42, "color": "ff3f00ff"}, - {"name": "leg-back-left-IK", "parent": "@pivot-main", "x": 208.57, "y": 1.35, "color": "ff3f00ff"}, {"name": "@ball", "parent": "@root", "y": 191, "color": "f3981bff"}, - {"name": "ball", "parent": "@ball", "y": -191, "color": "f4a729ff"} - ], - "slots": [ - {"name": "shadow", "bone": "@shadow", "attachment": "shadow"}, {"name": "ball", "bone": "ball"}, {"name": "leg-front-right", "bone": "@leg-front-right", "attachment": "leg-front-right"}, - {"name": "ear-right", "bone": "ear-right", "attachment": "ear-right"}, {"name": "tail", "bone": "tail", "attachment": "tail"}, {"name": "back", "bone": "back", "attachment": "back"}, - {"name": "leg-back-left", "bone": "@leg-back-left", "attachment": "leg-back-left"}, {"name": "body", "bone": "@body", "attachment": "body"}, {"name": "body-pattern", "bone": "body-pattern"}, - {"name": "leg-front-left", "bone": "@leg-front-left", "attachment": "leg-front-left"}, {"name": "eyes", "bone": "@eyes", "attachment": "eyes"}, - {"name": "mouth", "bone": "@mouth", "attachment": "mouth"}, {"name": "ear-left", "bone": "ear-left", "attachment": "ear-left"}, {"name": "horn", "bone": "horn", "attachment": "horn"} - ], - "ik": [ - {"name": "leg-back-left-IK", "order": 2, "bones": ["@leg-back-left"], "target": "leg-back-left-IK"}, - {"name": "leg-front-left-IK", "order": 1, "bones": ["@leg-front-left"], "target": "leg-front-left-IK"}, - {"name": "leg-front-right-IK", "bones": ["@leg-front-right"], "target": "leg-front-right-IK"} - ], - "skins": [ - { - "name": "default", - "attachments": { - "back": {"back": {"x": 61.77, "y": 41.12, "rotation": -58, "width": 210, "height": 276, "path": "beast-08.back"}}, - "ear-left": {"ear-left": {"x": -58.83, "y": -65.36, "rotation": -90, "width": 149, "height": 190, "path": "beast-08.ear-left"}}, - "ear-right": {"ear-right": {"x": -64.22, "y": 70.6, "rotation": -93, "width": 142, "height": 180, "path": "beast-08.ear-right"}}, - "eyes": { - "eyes": {"x": 31.36, "y": 30.17, "width": 329, "height": 132, "path": "beast-08.eyes"}, - "eyes-angry": {"x": 31.36, "y": 28.67, "width": 329, "height": 131, "path": "beast-08.eyes-angry"}, - "eyes-happy": {"x": 31.36, "y": 38.17, "width": 329, "height": 148, "path": "beast-08.eyes-happy"}, - "eyes-shut": {"x": 31.36, "y": 29.17, "width": 329, "height": 130, "path": "beast-08.eyes-shut"} - }, - "horn": {"horn": {"x": 121.17, "y": 2.14, "rotation": -90, "width": 254, "height": 262, "path": "beast-08.horn"}}, - "mouth": { - "mouth": {"x": 16.36, "y": 74.67, "width": 57, "height": 55, "path": "beast-08.mouth"}, - "mouth-bite": {"x": 16.36, "y": 54.67, "width": 157, "height": 71, "path": "beast-08.mouth-bite"}, - "mouth-open": {"x": 29.36, "y": 25.17, "width": 101, "height": 172, "path": "beast-08.mouth-open"}, - "mouth-smile": {"x": 17.86, "y": 47.67, "width": 76, "height": 127, "path": "beast-08.mouth-smile"} - }, - "tail": {"tail": {"x": 106.4, "y": -8.26, "rotation": 12, "width": 209, "height": 205, "path": "beast-08.tail"}} - } - } - ], - "events": {"hit": {}, "hit-buff": {}, "jump": {}, "start-attack": {}}, - "keyAnimations": { - "activity/appear": "1023093953", - "activity/bath": "3305387968", - "attack/ranged/cast-fly": "4180526371", - "attack/ranged/cast-high": "164191126", - "attack/ranged/cast-low": "198813017", - "attack/ranged/cast-multi": "151119", - "attack/ranged/cast-tail": "997902532", - "activity/eat-bite": "1137807767", - "activity/eat-chew": "1988236421", - "activity/entrance": "3768378365", - "defense/evade": "1735454995", - "activity/evolve": "649307630", - "battle/get-buff": "1455190363", - "battle/get-debuff": "606904312", - "defense/hit-by-normal": "2045974966", - "defense/hit-by-normal-crit": "2130010601", - "defense/hit-by-normal-dramatic": "3823092125", - "defense/hit-by-ranged-attack": "2224561612", - "defense/hit-with-shield": "390714790", - "attack/melee/horn-gore": "1327954218", - "attack/melee/mouth-bite": "2237748264", - "action/move-back": "3766271173", - "action/move-forward": "2945160014", - "attack/melee/multi-attack": "905926802", - "action/idle/normal": "1659336865", - "attack/melee/normal-attack": "3305373483", - "activity/prepare": "405864717", - "action/idle/random-01": "554401889", - "action/idle/random-02": "1085666627", - "action/idle/random-03": "2021333900", - "action/idle/random-04": "1003789695", - "action/idle/random-05": "2745614147", - "action/run": "1438840721", - "draft/run-origin": "3577885069", - "attack/melee/shrimp": "3833448733", - "activity/sleep": "100562494", - "attack/melee/tail-multi-slap": "3317139533", - "attack/melee/tail-roll": "3108617565", - "attack/melee/tail-smash": "519942130", - "attack/melee/tail-thrash": "628713175", - "activity/victory-pose-back-flip": "2227634241" - } - }, - "bird-06": { - "bones": [ - {"name": "@root"}, {"name": "@pivot-main", "parent": "@root"}, {"name": "@pivot-back", "parent": "@pivot-main", "x": 205, "y": 180, "color": "ff0101ff"}, - {"name": "@pivot-center", "parent": "@pivot-back", "x": -215.11, "y": -5.25, "color": "ff0101ff"}, - {"name": "@axie", "parent": "@pivot-center", "length": 213.28, "rotation": 179.04, "x": 196.39, "y": 5.16}, {"name": "@back", "parent": "@axie", "rotation": -179.04, "x": 37.63, "y": -198.19}, - {"name": "back", "parent": "@back", "length": 149.41, "rotation": 73, "x": 6.03, "y": 11.3, "transform": "noScale"}, - {"name": "@body", "parent": "@axie", "length": 226.28, "rotation": -8.35, "x": 224.58, "y": -0.53}, {"name": "@ear-left", "parent": "@axie", "rotation": -179.04, "x": 112.7, "y": -203.23}, - {"name": "ear-left", "parent": "@ear-left", "length": 113.61, "rotation": 60, "x": 5, "y": -15, "transform": "noScale"}, - {"name": "@ear-right", "parent": "@axie", "rotation": -179.04, "x": 405.28, "y": -235.33}, - {"name": "ear-right", "parent": "@ear-right", "length": 119.39, "rotation": 120, "x": 13, "y": -48, "transform": "noScale"}, - {"name": "@eyes", "parent": "@axie", "rotation": -179.04, "x": 384.24, "y": -113.67}, {"name": "@horn", "parent": "@axie", "rotation": -179.04, "x": 327.92, "y": -214.63}, - {"name": "horn", "parent": "@horn", "length": 176.72, "rotation": 90, "y": 18, "transform": "noScale"}, - {"name": "@leg-back-left", "parent": "@axie", "length": 76.4, "rotation": 100.96, "x": -15.3, "y": 102.56, "transform": "noScale"}, - {"name": "@leg-front-left", "parent": "@axie", "length": 51.19, "rotation": 93.86, "x": 134.77, "y": 149.55, "transform": "noScale"}, - {"name": "@leg-front-right", "parent": "@axie", "length": 74.83, "rotation": 83.2, "x": 382.95, "y": 121.78, "transform": "noScale"}, - {"name": "@mouth", "parent": "@axie", "rotation": -179.04, "x": 382.23, "y": 6.31}, - {"name": "body-pattern", "parent": "@body", "rotation": -170.69, "x": -267.21, "y": -49.4, "transform": "noScale"}, {"name": "@shadow", "parent": "@root", "color": "e6d713ff"}, - {"name": "@tail", "parent": "@axie", "rotation": -179.04, "x": -11.76, "y": 61.72}, - {"name": "tail", "parent": "@tail", "length": 203.67, "rotation": 40, "x": 31, "y": -50, "transform": "noScale"}, - {"name": "leg-front-right-IK", "parent": "@pivot-main", "x": -195.99, "y": -10.21, "color": "ff3f00ff"}, - {"name": "leg-front-left-IK", "parent": "@pivot-main", "x": 42.3, "y": -18.42, "color": "ff3f00ff"}, - {"name": "leg-back-left-IK", "parent": "@pivot-main", "x": 208.57, "y": 1.35, "color": "ff3f00ff"}, {"name": "@ball", "parent": "@root", "y": 191, "color": "f3981bff"}, - {"name": "ball", "parent": "@ball", "y": -191, "color": "f4a729ff"} + {"name": "@root"}, {"name": "@pivot-main", "parent": "@root"}, {"name": "@pivot-back", "parent": "@pivot-main", "x": 232, "y": 264.98, "color": "ff0101ff"}, + {"name": "@pivot-center", "parent": "@pivot-back", "x": -243, "y": -5.25, "color": "ff0101ff"}, + {"name": "@axie", "parent": "@pivot-center", "length": 213.28, "rotation": 179.04, "x": 224.28, "y": 5.16}, {"name": "@back", "parent": "@axie", "rotation": -179.04, "x": 65.65, "y": -260.05}, + {"name": "@body", "parent": "@axie", "length": 226.28, "rotation": -8.35, "x": 224.58, "y": -0.53}, {"name": "@ear-left", "parent": "@axie", "rotation": -179.04, "x": 133.95, "y": -217.9}, + {"name": "@ear-right", "parent": "@axie", "rotation": -179.04, "x": 497.52, "y": -248.81}, {"name": "@eyes", "parent": "@axie", "rotation": -179.04, "x": 423.48, "y": -128.03}, + {"name": "@horn", "parent": "@axie", "rotation": -179.04, "x": 377.17, "y": -228.83}, + {"name": "@leg-back-left", "parent": "@axie", "length": 82.39, "rotation": 99.1, "x": -7.41, "y": 183.62, "transform": "noScale"}, + {"name": "@leg-front-left", "parent": "@axie", "length": 87.35, "rotation": 89.4, "x": 146.09, "y": 187.6, "transform": "noScale"}, + {"name": "@leg-front-right", "parent": "@axie", "length": 90.99, "rotation": 75.06, "x": 455.08, "y": 185.83, "transform": "noScale"}, + {"name": "@mouth", "parent": "@axie", "rotation": -179.04, "x": 421.46, "y": -8.05}, + {"name": "body-pattern", "parent": "@body", "rotation": -170.69, "x": -287.64, "y": -107.32, "transform": "noScale"}, {"name": "@shadow", "parent": "@root", "color": "e6d713ff"}, + {"name": "@tail", "parent": "@axie", "rotation": -179.04, "x": -73.63, "y": 113.67}, + {"name": "leg-front-right-IK", "parent": "@pivot-main", "x": -263.59, "y": -3.12, "transform": "noScale", "color": "ff3f00ff"}, + {"name": "leg-front-left-IK", "parent": "@pivot-main", "x": 73.81, "y": -7.07, "transform": "noScale", "color": "ff3f00ff"}, + {"name": "leg-back-left-IK", "parent": "@pivot-main", "x": 246.97, "y": 2.5, "transform": "noScale", "color": "ff3f00ff"}, {"name": "@ball", "parent": "@root", "y": 191, "color": "f3981bff"}, + {"name": "ball", "parent": "@ball", "y": -191, "color": "f4a729ff"}, + {"name": "@body5", "parent": "@body", "length": 232.03, "rotation": 128.83, "x": -109.81, "y": -267.24, "color": "b82cddff"}, + {"name": "body-braid2", "parent": "@body5", "length": 73.46, "rotation": -19.45, "x": 172.03, "y": -68.52, "color": "ff6fd9ff"}, + {"name": "body-braid3", "parent": "body-braid2", "length": 68.84, "rotation": 3.21, "x": 73.46, "color": "ff6fd9ff"}, + {"name": "body-braid4", "parent": "body-braid3", "length": 88, "rotation": 14.3, "x": 68.84, "color": "ff6fd9ff"}, + {"name": "body-braid", "parent": "@body5", "length": 75.4, "rotation": -23.86, "x": 218.25, "y": 58.36, "color": "ff6fd9ff"}, + {"name": "body-braid5", "parent": "body-braid", "length": 63.5, "rotation": 6.01, "x": 75.4, "color": "ff6fd9ff"}, + {"name": "body-braid6", "parent": "body-braid5", "length": 94.52, "rotation": 22.01, "x": 63.5, "color": "ff6fd9ff"}, + {"name": "@body2", "parent": "@body", "length": 221.53, "rotation": 88.49, "x": 310.71, "y": 44.29, "color": "b82cddff"}, + {"name": "@body3", "parent": "@body", "length": 228, "rotation": 103.82, "x": 122.81, "y": 35.41, "color": "b82cddff"}, + {"name": "@body4", "parent": "@body", "length": 237.61, "rotation": 109.26, "x": -85.84, "y": -13.63, "color": "b82cddff"}, + {"name": "@face", "parent": "@body", "length": 282.07, "rotation": -80.81, "x": 166.36, "y": 1.06, "color": "6b0e8eff"}, + {"name": "@body6", "parent": "@body5", "length": 249.43, "rotation": -20.36, "x": 239.65, "y": -3.56, "color": "b82cddff"}, + {"name": "@body-neck", "parent": "@pivot-center", "x": -161.89, "y": -53.75, "color": "ff0101ff"}, + {"name": "@body-ground", "parent": "@pivot-main", "x": 220, "transform": "noRotationOrReflection", "color": "ff0101ff"}, + {"name": "@body-air", "parent": "@pivot-back", "x": 63, "y": 365, "transform": "noRotationOrReflection", "color": "ff0101ff"}, + {"name": "@body-cheek", "parent": "@pivot-center", "x": 15.11, "y": 47.25, "color": "ff0101ff"} ], "slots": [ - {"name": "shadow", "bone": "@shadow", "attachment": "shadow"}, {"name": "ball", "bone": "ball"}, {"name": "leg-front-right", "bone": "@leg-front-right", "attachment": "leg-front-right"}, - {"name": "ear-right", "bone": "ear-right", "attachment": "ear-right"}, {"name": "tail", "bone": "tail", "attachment": "tail"}, {"name": "back", "bone": "back", "attachment": "back"}, - {"name": "leg-back-left", "bone": "@leg-back-left", "attachment": "leg-back-left"}, {"name": "body", "bone": "@body", "attachment": "body"}, {"name": "body-pattern", "bone": "body-pattern"}, - {"name": "leg-front-left", "bone": "@leg-front-left", "attachment": "leg-front-left"}, {"name": "eyes", "bone": "@eyes", "attachment": "eyes"}, - {"name": "mouth", "bone": "@mouth", "attachment": "mouth"}, {"name": "ear-left", "bone": "ear-left", "attachment": "ear-left"}, {"name": "horn", "bone": "horn", "attachment": "horn"} + {"name": "shadow", "bone": "@shadow", "attachment": "shadow"}, {"name": "ball", "bone": "ball"}, {"name": "leg-front-right", "bone": "@leg-front-right", "attachment": "sumo-leg-front-right"}, + {"name": "leg-back-left", "bone": "@leg-back-left", "attachment": "sumo-leg-back-left"}, {"name": "leg-front-left", "bone": "@leg-front-left", "attachment": "sumo-leg-front-left"}, + {"name": "body", "bone": "@body", "attachment": "body-bigyak"}, {"name": "body-pattern", "bone": "body-pattern"}, {"name": "body-braid", "bone": "body-braid", "attachment": "body-braid"}, + {"name": "body-braid2", "bone": "body-braid2", "attachment": "body-braid2"}, {"name": "body-neck", "bone": "@body-neck", "attachment": "body-neck"}, + {"name": "body-ground", "bone": "@body-ground", "attachment": "body-ground"}, {"name": "body-air", "bone": "@body-air", "attachment": "body-air"}, + {"name": "body-cheek", "bone": "@body-cheek", "attachment": "body-cheek"} ], "ik": [ {"name": "leg-back-left-IK", "order": 2, "bones": ["@leg-back-left"], "target": "leg-back-left-IK"}, @@ -7902,55 +4894,16634 @@ { "name": "default", "attachments": { - "back": {"back": {"x": 139.71, "y": 78.67, "rotation": -73, "width": 328, "height": 302, "path": "bird-06.back"}}, - "ear-left": {"ear-left": {"x": 74.84, "y": -5.42, "rotation": -60, "width": 135, "height": 187, "path": "bird-06.ear-left"}}, - "ear-right": {"ear-right": {"x": 67.76, "y": 1.16, "rotation": -120, "width": 135, "height": 187, "path": "bird-06.ear-right"}}, - "eyes": { - "eyes": {"x": 28.16, "y": 17.98, "width": 293, "height": 97, "path": "bird-06.eyes"}, - "eyes-angry": {"x": 28.16, "y": 17.98, "width": 293, "height": 97, "path": "bird-06.eyes-angry"}, - "eyes-happy": {"x": 28.16, "y": 15.48, "width": 293, "height": 60, "path": "bird-06.eyes-happy"}, - "eyes-shut": {"x": 26.16, "y": 7.98, "width": 289, "height": 49, "path": "bird-06.eyes-shut"} - }, - "horn": {"horn": {"x": 110.61, "y": -88.62, "rotation": -90, "width": 338, "height": 232, "path": "bird-06.horn"}}, - "mouth": { - "mouth": {"x": 2.66, "y": 67.48, "width": 100, "height": 124, "path": "bird-06.mouth"}, - "mouth-bite": {"x": 8.66, "y": 73.98, "width": 140, "height": 111, "path": "bird-06.mouth-bite"}, - "mouth-open": {"x": 3.16, "y": 55.48, "width": 99, "height": 180, "path": "bird-06.mouth-open"}, - "mouth-smile": {"x": 11.66, "y": 67.48, "width": 118, "height": 124, "path": "bird-06.mouth-smile"} - }, - "tail": {"tail": {"x": 129.37, "y": 7.76, "rotation": -40, "width": 205, "height": 197, "path": "bird-06.tail"}} - } - } - ], - "events": {"hit": {}, "hit-buff": {}, "jump": {}, "start-attack": {}}, - "keyAnimations": { - "activity/appear": "1023093953", - "activity/bath": "3305387968", - "attack/ranged/cast-fly": "4180526371", - "attack/ranged/cast-high": "164191126", - "attack/ranged/cast-low": "198813017", - "attack/ranged/cast-multi": "151119", - "attack/ranged/cast-tail": "997902532", - "activity/eat-bite": "1137807767", - "activity/eat-chew": "1988236421", - "activity/entrance": "3768378365", - "defense/evade": "1735454995", - "activity/evolve": "649307630", - "battle/get-buff": "1455190363", - "battle/get-debuff": "606904312", - "defense/hit-by-normal": "2045974966", - "defense/hit-by-normal-crit": "2130010601", - "defense/hit-by-normal-dramatic": "3823092125", - "defense/hit-by-ranged-attack": "2224561612", - "defense/hit-with-shield": "390714790", - "attack/melee/horn-gore": "1327954218", - "attack/melee/mouth-bite": "2237748264", - "action/move-back": "3766271173", - "action/move-forward": "2945160014", - "attack/melee/multi-attack": "905926802", - "action/idle/normal": "1659336865", - "attack/melee/normal-attack": "3305373483", - "activity/prepare": "405864717", + "ball": {"ball": {"y": 186.0, "width": 392.94117647058823, "height": 400.0, "path": "body-normal.ball", "x": 0.029411764705884025}}, + "body": { + "body-bigyak": { + "type": "mesh", + "uvs": [ + 0.56514, 0.01755, 0.61336, 0.04368, 0.67817, 0.08299, 0.74298, 0.12541, 0.80115, 0.173, 0.86097, 0.22784, 0.89421, 0.31268, 0.91332, 0.37682, 0.9449, 0.44408, 0.98146, 0.50512, + 0.96318, 0.56823, 0.95902, 0.63031, 0.97065, 0.71101, 0.98229, 0.78757, 0.97647, 0.8631, 0.92911, 0.90035, 0.87427, 0.93759, 0.80197, 0.96139, 0.77254, 0.97055, 0.72481, 0.98514, + 0.66973, 0.97978, 0.63646, 0.96502, 0.58347, 0.97827, 0.53759, 0.9772, 0.51518, 0.97668, 0.45205, 0.97978, 0.39383, 0.9911, 0.3357, 0.98909, 0.23765, 0.98185, 0.16453, 0.97151, + 0.12033, 0.95399, 0.09141, 0.94254, 0.03574, 0.87942, 0, 0.82355, 0, 0.71906, 0, 0.61559, 0, 0.50903, 0.03586, 0.47615, 0.04999, 0.39027, 0.0932, 0.29302, 0.15303, 0.1937, 0.24775, + 0.08506, 0.28431, 0, 0.34995, 0, 0.53276, 0, 0.24474, 0.92924, 0.24823, 0.83911, 0.25259, 0.76744, 0.25782, 0.686, 0.25957, 0.57416, 0.26742, 0.49598, 0.18457, 0.50466, 0.1741, + 0.57416, 0.16538, 0.62737, 0.15579, 0.68275, 0.14445, 0.75767, 0.13137, 0.81957, 0.12614, 0.8858, 0.10957, 0.49163, 0.09823, 0.57416, 0.08689, 0.64257, 0.07033, 0.73052, 0.04416, + 0.83151, 0.39823, 0.92126, 0.39125, 0.83439, 0.38689, 0.76163, 0.38253, 0.67259, 0.3773, 0.6031, 0.33718, 0.55532, 0.33457, 0.67585, 0.33195, 0.78878, 0.33457, 0.89302, 0.33867, + 0.49069, 0.65287, 0.48738, 0.64503, 0.24849, 0.58049, 0.21809, 0.34462, 0.23188, 0.34187, 0.35151, 0.64802, 0.33951, 0.34025, 0.42209, 0.65005, 0.4013, 0.65674, 0.19, 0.6929, + 0.24198, 0.72692, 0.32125, 0.75482, 0.38205, 0.77924, 0.44503, 0.81848, 0.5319, 0.67197, 0.25066, 0.68942, 0.33102, 0.69901, 0.39943, 0.71296, 0.47218, 0.72604, 0.55145, 0.74, + 0.63832, 0.7461, 0.70456, 0.75221, 0.76211, 0.7618, 0.82943, 0.77052, 0.88916, 0.83593, 0.62689, 0.84465, 0.71376, 0.8525, 0.78326, 0.85947, 0.83429, 0.87059, 0.9119, 0.93011, + 0.81366, 0.92575, 0.72679, 0.91528, 0.63992, 0.90482, 0.57586, 0.89872, 0.52265, 0.88825, 0.46184, 0.85947, 0.39669, 0.82372, 0.33371, 0.78883, 0.27073, 0.75569, 0.22078, 0.71645, + 0.17843, 0.66662, 0.14066, 0.59802, 0.12508, 0.3866, 0.49019, 0.39447, 0.55555, 0.52352, 0.48875, 0.52441, 0.54795, 0.52616, 0.60767, 0.52877, 0.6978, 0.53139, 0.78467, 0.53313, + 0.86177, 0.5375, 0.92909, 0.47296, 0.92801, 0.47558, 0.85199, 0.47296, 0.7673, 0.46162, 0.69346, 0.45465, 0.61636, 0.44767, 0.55772, 0.44585, 0.48957, 0.59466, 0.488, 0.61124, + 0.57928, 0.6313, 0.67918, 0.64525, 0.76279, 0.6531, 0.85292, 0.66095, 0.94522, 0.58833, 0.40544, 0.58371, 0.34203, 0.12568, 0.39857, 0.15376, 0.30726, 0.20391, 0.20384, 0.20173, + 0.40691, 0.2194, 0.3227, 0.24537, 0.2121, 0.25882, 0.62234, 0.3359, 0.61431, 0.80029, 0.49163, 0.60387, 0.53869, 0.67305, 0.57514, 0.6852, 0.6594, 0.69648, 0.72962, 0.70516, 0.81173, + 0.7173, 0.9122, 0.58803, 0.17808, 0.52384, 0.2214 + ], + "triangles": [ + 18, 96, 17, 17, 101, 16, 17, 96, 101, 16, 101, 15, 96, 100, 101, 101, 100, 15, 15, 102, 14, 15, 100, 102, 96, 95, 100, 14, 102, 13, 95, 99, 100, 100, 99, 102, 95, 94, 99, 99, 103, + 102, 102, 103, 13, 103, 12, 13, 94, 98, 99, 99, 98, 103, 94, 93, 98, 98, 104, 103, 12, 104, 11, 12, 103, 104, 93, 97, 98, 98, 97, 104, 93, 92, 97, 97, 105, 104, 104, 105, 11, 92, 86, + 97, 11, 105, 10, 105, 97, 86, 105, 106, 10, 10, 106, 9, 105, 86, 106, 92, 91, 86, 91, 147, 86, 147, 90, 85, 147, 91, 90, 106, 86, 107, 86, 147, 107, 106, 8, 9, 106, 107, 8, 147, 108, + 107, 147, 85, 108, 90, 84, 85, 90, 89, 84, 107, 7, 8, 107, 108, 7, 85, 109, 108, 85, 84, 109, 89, 83, 84, 89, 88, 83, 108, 6, 7, 108, 109, 6, 84, 110, 109, 84, 83, 110, 109, 5, 6, + 109, 110, 5, 88, 82, 83, 88, 87, 82, 83, 111, 110, 83, 82, 111, 110, 4, 5, 110, 111, 4, 82, 112, 111, 4, 111, 3, 149, 91, 92, 20, 153, 19, 19, 153, 18, 21, 136, 20, 20, 136, 153, 21, + 22, 123, 24, 123, 23, 22, 23, 123, 153, 96, 18, 136, 21, 135, 21, 123, 135, 136, 135, 153, 123, 122, 135, 135, 152, 153, 153, 95, 96, 153, 152, 95, 122, 121, 135, 121, 134, 135, 135, + 134, 152, 152, 94, 95, 134, 151, 152, 152, 151, 94, 134, 120, 133, 134, 121, 120, 134, 133, 151, 151, 93, 94, 133, 150, 151, 151, 150, 93, 150, 92, 93, 120, 119, 133, 119, 132, 133, + 133, 149, 150, 133, 132, 149, 150, 149, 92, 132, 119, 118, 132, 148, 149, 26, 63, 25, 26, 27, 63, 28, 45, 27, 45, 71, 27, 27, 71, 63, 25, 124, 24, 25, 63, 124, 24, 124, 123, 45, 46, + 71, 124, 122, 123, 124, 125, 122, 124, 63, 125, 71, 64, 63, 63, 64, 125, 46, 70, 71, 64, 70, 65, 64, 71, 70, 125, 121, 122, 64, 126, 125, 125, 126, 121, 70, 69, 65, 69, 66, 65, 64, + 65, 126, 70, 48, 69, 126, 120, 121, 65, 127, 126, 126, 127, 120, 65, 66, 127, 66, 128, 127, 127, 128, 119, 69, 146, 66, 127, 119, 120, 59, 35, 36, 73, 89, 90, 132, 118, 148, 148, 73, + 149, 48, 145, 69, 48, 53, 145, 60, 59, 53, 59, 36, 37, 129, 118, 119, 116, 128, 67, 87, 74, 81, 78, 74, 87, 118, 117, 131, 131, 137, 80, 137, 78, 80, 80, 78, 88, 73, 131, 80, 113, + 114, 2, 74, 75, 81, 81, 75, 154, 154, 114, 81, 114, 0, 1, 114, 154, 155, 75, 155, 154, 118, 129, 130, 38, 39, 139, 145, 49, 146, 146, 68, 67, 146, 49, 68, 67, 68, 116, 49, 50, 68, + 49, 51, 50, 116, 68, 115, 68, 72, 115, 116, 115, 130, 68, 50, 72, 51, 142, 50, 72, 50, 79, 72, 79, 115, 79, 50, 142, 115, 79, 130, 137, 130, 79, 137, 77, 138, 137, 79, 77, 142, 143, + 79, 79, 143, 77, 139, 140, 142, 142, 140, 143, 139, 39, 140, 77, 155, 138, 77, 76, 155, 77, 143, 76, 76, 143, 144, 140, 141, 143, 143, 141, 144, 39, 40, 140, 140, 40, 141, 144, 41, + 76, 76, 41, 43, 76, 43, 155, 43, 41, 42, 155, 43, 44, 144, 141, 41, 141, 40, 41, 44, 0, 155, 51, 139, 142, 116, 130, 129, 117, 130, 137, 118, 130, 117, 155, 75, 138, 0, 114, 155, + 114, 1, 2, 138, 75, 74, 81, 114, 113, 137, 138, 78, 138, 74, 78, 117, 137, 131, 58, 139, 51, 52, 51, 49, 52, 58, 51, 58, 38, 139, 49, 53, 52, 59, 58, 52, 59, 37, 58, 37, 38, 58, 129, + 128, 116, 145, 53, 49, 53, 59, 52, 128, 129, 119, 113, 2, 3, 69, 145, 146, 146, 67, 66, 67, 128, 66, 118, 131, 148, 148, 131, 73, 73, 80, 89, 80, 88, 89, 78, 87, 88, 81, 113, 112, + 82, 87, 81, 112, 113, 3, 82, 81, 112, 91, 149, 73, 91, 73, 90, 54, 53, 48, 111, 112, 3, 28, 29, 45, 45, 29, 57, 29, 30, 57, 30, 31, 57, 31, 32, 57, 45, 57, 46, 32, 62, 57, 57, 56, + 46, 57, 62, 56, 32, 33, 62, 56, 55, 46, 46, 55, 47, 56, 62, 61, 61, 62, 34, 62, 33, 34, 56, 61, 55, 55, 54, 47, 47, 54, 48, 55, 61, 54, 61, 60, 54, 61, 34, 60, 34, 35, 60, 54, 60, + 53, 60, 35, 59, 46, 47, 70, 47, 48, 70 + ], + "vertices": [ + 1, 33, 390.2, -203.26, 1, 7, 30, -457.75, 316.61, 0.00216, 33, 371.43, -246.65, 0.90281, 31, -394.08, 241.72, 0.00124, 32, -391.89, 64.9, 0.00701, 23, -164.99, 14.71, 0.07872, 2, + -160.17, 400.98, 0.00169, 34, -385.72, -123.65, 0.00638, 7, 30, -440.81, 379.16, 0.00136, 33, 343.16, -304.98, 0.7602, 31, -361.21, 297.58, 0.00115, 32, -353.86, 117.38, 0.01191, 23, + -111.58, 51.42, 0.19911, 2, -101.9, 372.59, 0.00388, 34, -348.41, -70.65, 0.0224, 7, 30, -421.66, 442.14, 0.00086, 33, 312.66, -363.31, 0.60259, 31, -326.09, 353.26, 0.00079, 32, + -313.62, 169.48, 0.00989, 23, -56.22, 87.03, 0.33022, 2, -43.64, 341.97, 0.00322, 34, -308.9, -18.01, 0.05244, 7, 30, -397.72, 499.95, 0.00054, 33, 278.41, -415.67, 0.34942, 31, + -287.73, 402.69, 0.00053, 32, -270.74, 215.04, 0.00815, 23, -0.55, 115.59, 0.5243, 2, 8.65, 307.6, 0.00255, 34, -266.65, 28.14, 0.1145, 7, 30, -368.92, 560.21, 0.00025, 33, 238.93, + -469.54, 0.26096, 31, -244.04, 453.19, 0.00025, 32, -222.45, 261.17, 0.00488, 23, 60.4, 142.88, 0.56416, 2, 62.44, 268.01, 0.00137, 34, -218.99, 74.93, 0.16813, 7, 30, -314.36, + 601.05, 0.00012, 33, 177.74, -499.55, 0.18521, 31, -180.62, 478.17, 0.00012, 32, -156.95, 280.01, 0.00337, 23, 128.43, 138.7, 0.57624, 2, 92.32, 206.76, 0.0007, 34, -153.76, 94.68, + 0.23425, 7, 30, -272.09, 626.62, 5e-05, 33, 131.46, -516.83, 0.12481, 31, -133.1, 491.66, 6e-05, 32, -108.36, 288.93, 0.00331, 23, 177.19, 130.83, 0.56002, 2, 109.5, 160.44, 0.00036, + 34, -105.3, 104.26, 0.31139, 7, 30, -229.73, 663.61, 3e-05, 33, 82.97, -545.31, 0.0798, 31, -82.47, 516.14, 5e-05, 32, -55.63, 308.49, 0.00478, 23, 233.43, 131.6, 0.51889, 2, 137.88, + 111.89, 0.00023, 34, -52.85, 124.55, 0.39623, 7, 30, -192.61, 704.17, 1e-05, 33, 38.96, -578.28, 0.04836, 31, -35.95, 545.44, 7e-05, 32, -6.54, 333.25, 0.00818, 23, 287.98, 138.48, + 0.45935, 2, 170.75, 67.82, 0.00028, 34, -4.1, 149.98, 0.48375, 7, 30, -144.76, 696.57, 0, 33, -6.64, -561.94, 0.02774, 31, 8.19, 525.48, 0.00014, 32, 35.5, 309.18, 0.01425, 23, + 319.53, 101.73, 0.38965, 2, 154.32, 22.25, 0.00052, 34, 38.27, 126.5, 0.56769, 7, 30, -100.04, 701.32, 0, 33, -51.47, -558.3, 0.01506, 31, 52.57, 518.24, 0.0003, 32, 79, 297.76, + 0.02396, 23, 356.69, 76.39, 0.31843, 2, 150.58, -22.57, 0.00107, 34, 81.92, 115.68, 0.64117, 7, 30, -44.77, 722.52, 0, 33, -109.71, -568.88, 0.00781, 31, 111.48, 524.08, 0.00064, 32, + 138.2, 297.98, 0.03838, 23, 412.54, 56.78, 0.25353, 2, 161.04, -80.84, 0.0021, 34, 141.11, 116.72, 0.69754, 7, 30, 7.56, 743.17, 1e-05, 33, -164.97, -579.45, 0.00409, 31, 167.41, + 530.17, 0.00128, 32, 194.45, 298.73, 0.05851, 23, 465.8, 38.64, 0.20115, 2, 171.5, -136.11, 0.00388, 34, 197.34, 118.24, 0.73109, 7, 30, 62.11, 748.26, 2e-05, 33, -219.51, -574.34, + 0.0027, 31, 221.36, 520.67, 0.00242, 32, 247.26, 284.15, 0.085, 23, 510.67, 7.22, 0.16547, 2, 166.27, -190.65, 0.00673, 34, 250.35, 104.39, 0.73766, 7, 30, 96.51, 711.49, 4e-05, 33, + -246.49, -531.82, 0.00314, 31, 244.83, 476.11, 0.00434, 32, 266.38, 237.57, 0.11794, 23, 513.09, -43.08, 0.14843, 2, 123.7, -217.54, 0.01097, 34, 270.11, 58.08, 0.71514, 7, 30, + 132.18, 668.1, 0.00014, 33, -273.49, -482.57, 0.00474, 31, 267.76, 424.85, 0.00967, 32, 284.35, 184.36, 0.19141, 23, 512.19, -99.24, 0.11768, 2, 74.39, -244.43, 0.02159, 34, 288.81, + 5.12, 0.65477, 7, 30, 161.25, 607.49, 0.00043, 33, -290.8, -417.61, 0.00876, 31, 279.78, 358.7, 0.02133, 32, 290.03, 117.37, 0.30855, 23, 495.12, -164.26, 0.08681, 2, 9.39, -261.61, + 0.03875, 34, 295.42, -61.78, 0.53538, 7, 30, 172.71, 582.74, 0.00094, 33, -297.47, -391.17, 0.01689, 31, 284.3, 331.8, 0.03605, 32, 291.98, 90.16, 0.42128, 23, 487.83, -190.54, + 0.07203, 2, -17.07, -268.23, 0.05653, 34, 297.74, -88.96, 0.39628, 7, 30, 191.11, 542.57, 0.00244, 33, -308.1, -348.28, 0.03059, 31, 291.43, 288.2, 0.06798, 32, 294.93, 46.08, + 0.52863, 23, 475.85, -233.07, 0.05604, 2, -59.97, -278.76, 0.04741, 34, 301.3, -132.99, 0.2669, 7, 30, 196.6, 493.21, 0.00558, 33, -304.33, -298.76, 0.03338, 31, 283.68, 239.14, + 0.12415, 32, 282.56, -2.02, 0.59606, 23, 448.09, -274.25, 0.03547, 2, -109.49, -274.89, 0.03008, 34, 289.6, -181.26, 0.17528, 7, 30, 191.74, 461.83, 0.01265, 33, -293.74, -268.82, + 0.03059, 31, 270.7, 210.16, 0.21309, 32, 266.89, -29.64, 0.5738, 23, 424.07, -295.03, 0.02174, 2, -139.4, -264.23, 0.02044, 34, 274.31, -209.1, 0.1277, 7, 30, 210.08, 416.83, + 0.02241, 33, -303.41, -221.2, 0.03821, 31, 276.5, 161.92, 0.30177, 32, 268.08, -78.21, 0.52703, 23, 408.93, -341.2, 0.01378, 2, -187.04, -273.8, 0.01258, 34, 276.17, -257.65, + 0.08422, 7, 30, 217.06, 376.17, 0.03602, 33, -302.72, -179.96, 0.05747, 31, 272.49, 120.86, 0.38484, 32, 260.19, -118.7, 0.45988, 23, 387.93, -376.7, 0.01002, 2, -228.28, -273.03, + 0.00642, 34, 268.84, -298.24, 0.04536, 7, 30, 220.47, 356.32, 0.06836, 33, -302.39, -159.81, 0.07181, 31, 270.53, 100.81, 0.46448, 32, 256.34, -138.48, 0.35868, 23, 377.67, -394.05, + 0.00601, 2, -248.43, -272.65, 0.0035, 34, 265.26, -318.07, 0.02716, 7, 30, 233.32, 300.99, 0.10701, 33, -304.75, -103.06, 0.10199, 31, 268.3, 44.05, 0.52467, 32, 248.73, -194.77, + 0.2485, 23, 351.65, -444.54, 0.00397, 2, -305.18, -274.89, 0.00151, 34, 258.43, -374.46, 0.01235, 7, 30, 251.17, 251.11, 0.18202, 33, -313.03, -50.74, 0.1285, 31, 272.34, -8.77, + 0.53002, 32, 247.74, -247.74, 0.15081, 23, 332.97, -494.11, 0.00271, 2, -357.53, -283.06, 0.00064, 34, 258.16, -427.43, 0.00529, 7, 30, 259.55, 199.51, 0.2942, 33, -311.69, 1.52, + 0.14368, 31, 266.79, -60.75, 0.4705, 32, 237.27, -298.95, 0.08701, 23, 305.96, -538.86, 0.00216, 2, -409.78, -281.61, 0.00031, 34, 248.41, -478.79, 0.00215, 7, 30, 270.95, 111.95, + 0.4386, 33, -306.65, 89.68, 0.13219, 31, 254.65, -148.21, 0.37872, 32, 216.89, -384.87, 0.04823, 23, 257.97, -612.99, 0.00128, 2, -497.93, -276.39, 0.00013, 34, 229.21, -564.98, + 0.00085, 7, 30, 275.95, 45.98, 0.55894, 33, -299.32, 155.43, 0.1224, 31, 242.04, -213.16, 0.28754, 32, 198.16, -448.32, 0.02979, 23, 219.08, -666.51, 0.00086, 2, -563.66, -268.92, + 7e-05, 34, 211.36, -628.69, 0.0004, 7, 30, 270.99, 4.58, 0.65666, 33, -286.76, 195.19, 0.13583, 31, 226.31, -251.78, 0.19126, 32, 178.84, -485.28, 0.01522, 23, 188.49, -694.85, + 0.00084, 2, -603.4, -256.27, 5e-05, 34, 192.55, -665.9, 0.00014, 7, 30, 267.74, -22.51, 0.70274, 33, -278.54, 221.21, 0.15349, 31, 216.02, -277.05, 0.13384, 32, 166.2, -509.45, + 0.009, 23, 168.48, -713.4, 0.00083, 2, -629.4, -248, 5e-05, 34, 180.25, -690.25, 6e-05, 7, 30, 232.38, -80.22, 0.71269, 33, -233.08, 271.35, 0.19848, 31, 166.66, -323.36, 0.08263, + 32, 112.67, -550.87, 0.00494, 23, 104.17, -734.5, 0.00118, 2, -679.45, -202.43, 7e-05, 34, 127.29, -732.41, 2e-05, 7, 30, 198.78, -119.35, 0.71094, 33, -192.81, 303.57, 0.22921, 31, + 123.93, -352.22, 0.05568, 32, 67.38, -575.54, 0.003, 23, 53.24, -742.57, 0.0011, 2, -711.58, -162.09, 6e-05, 34, 82.35, -757.7, 1e-05, 7, 30, 124.68, -133.51, 0.67119, 33, -117.36, + 303.73, 0.28869, 31, 48.71, -346.29, 0.0364, 32, -6.93, -562.5, 0.00222, 23, -12.41, -705.39, 0.00141, 2, -711.58, -86.65, 9e-05, 34, 7.86, -745.68, 1e-05, 7, 30, 51.3, -147.52, + 0.59641, 33, -42.66, 303.88, 0.37476, 31, -25.76, -340.42, 0.02398, 32, -80.5, -549.59, 0.00244, 23, -77.41, -668.58, 0.00221, 2, -711.58, -11.95, 0.00017, 34, -65.88, -733.79, + 3e-05, 7, 30, -24.27, -161.96, 0.46205, 33, 34.28, 304.05, 0.51396, 31, -102.46, -334.38, 0.01654, 32, -156.29, -536.29, 0.00351, 23, -144.36, -630.67, 0.00355, 2, -711.58, 64.99, + 0.00033, 34, -141.84, -721.53, 6e-05, 7, 30, -53.64, -134.75, 0.24559, 33, 58.09, 271.85, 0.73381, 31, -123.59, -300.37, 0.01123, 32, -174.09, -500.43, 0.00436, 23, -149.13, -590.91, + 0.00444, 2, -679.33, 88.73, 0.00046, 34, -160.14, -685.92, 0.00011, 7, 30, -116.92, -133.91, 0.14442, 33, 120.11, 259.29, 0.82719, 31, -184.4, -282.84, 0.01314, 32, -232.97, -477.2, + 0.00706, 23, -196.82, -549.31, 0.00716, 2, -666.63, 150.73, 0.00079, 34, -219.33, -663.51, 0.00024, 7, 30, -193.18, -108.93, 0.07506, 33, 190.41, 220.59, 0.90208, 31, -251.35, + -238.6, 0.00822, 32, -295.41, -426.8, 0.00618, 23, -238.78, -480.91, 0.00746, 2, -627.79, 220.95, 0.00076, 34, -282.46, -613.98, 0.00024, 7, 30, -273.71, -69.56, 0.08289, 33, 262.24, + 166.96, 0.87667, 31, -318.62, -179.35, 0.01037, 32, -356.75, -361.43, 0.01102, 23, -274.68, -398.77, 0.01707, 2, -574.01, 292.66, 0.00145, 34, -344.69, -549.46, 0.00053, 1, 33, + 340.85, 81.96, 1, 1, 33, 402.34, 49.23, 1, 1, 33, 402.46, -9.79, 1, 1, 33, 402.81, -174.13, 1, 7, 30, 232.45, 111.08, 0.44637, 33, -268.65, 83.38, 0.15763, 31, 217.28, -138.87, + 0.35988, 32, 180.57, -372.02, 0.03409, 23, 228.06, -588.72, 0.00149, 2, -491.55, -238.4, 0.00012, 34, 192.72, -552.64, 0.00043, 7, 30, 167.94, 101.95, 0.44089, 33, -203.57, 80.38, + 0.20198, 31, 152.66, -130.63, 0.32987, 32, 117.02, -357.69, 0.02466, 23, 172.98, -553.93, 0.00221, 2, -488.42, -173.33, 0.00018, 34, 128.98, -539.18, 0.00021, 7, 30, 116.38, 96.09, + 0.42165, 33, -151.82, 76.57, 0.26271, 31, 101.38, -122.66, 0.29183, 32, 66.74, -344.88, 0.0198, 23, 129.89, -525.02, 0.00357, 2, -484.5, -121.58, 0.00032, 34, 78.52, -527.07, + 0.00013, 7, 30, 57.74, 89.68, 0.38908, 33, -93.01, 71.99, 0.33587, 31, 43.13, -113.35, 0.24924, 32, 9.63, -330.08, 0.01934, 23, 81.04, -491.95, 0.00576, 2, -479.79, -62.78, 0.00058, + 34, 21.22, -513.06, 0.00013, 7, 30, -21.87, 76.07, 0.20805, 33, -12.25, 70.6, 0.64119, 31, -37.25, -105.44, 0.11679, 32, -69.63, -314.58, 0.02243, 23, 11.55, -450.79, 0.00992, 2, + -478.23, 17.97, 0.00125, 34, -58.25, -498.65, 0.00037, 7, 30, -78.64, 72.41, 0.11459, 33, 44.21, 63.66, 0.78311, 31, -92.96, -93.97, 0.06796, 32, -124.01, -297.87, 0.02104, 23, + -34.09, -416.83, 0.01114, 2, -471.17, 74.42, 0.00155, 34, -112.86, -482.69, 0.0006, 7, 30, -58.5, 0.43, 0.10734, 33, 37.78, 138.13, 0.83109, 31, -92.56, -168.72, 0.03894, 32, + -130.71, -372.31, 0.01259, 23, -65.34, -484.73, 0.00851, 2, -545.65, 68.15, 0.00111, 34, -118.53, -557.22, 0.00042, 7, 30, -7.45, 0.6, 0.22841, 33, -12.41, 147.43, 0.66789, 31, + -43.28, -182.04, 0.07781, 32, -82.91, -390.25, 0.01576, 23, -26.31, -517.65, 0.0088, 2, -555.06, 17.97, 0.00105, 34, -70.49, -574.5, 0.00028, 7, 30, 31.75, 0.11, 0.34964, 33, -50.85, + 155.19, 0.51526, 31, -5.6, -192.87, 0.10657, 32, -46.43, -404.62, 0.01797, 23, 3.25, -543.4, 0.00928, 2, -562.9, -20.45, 0.00104, 34, -33.81, -588.36, 0.00024, 7, 30, 72.65, -0.86, + 0.48764, 33, -90.85, 163.73, 0.38425, 31, 33.58, -204.61, 0.10837, 32, -8.54, -420.02, 0.01279, 23, 33.79, -570.61, 0.00623, 2, -571.52, -60.43, 0.00062, 34, 4.29, -603.24, 0.00011, + 7, 30, 127.69, -0.72, 0.57888, 33, -144.97, 173.8, 0.2939, 31, 86.71, -219.02, 0.11355, 32, 42.98, -439.41, 0.00948, 23, 75.84, -606.13, 0.0038, 2, -581.71, -114.53, 0.00033, 34, + 56.07, -621.92, 5e-05, 7, 30, 173.79, -3.88, 0.63951, 33, -189.68, 185.47, 0.21913, 31, 130.34, -234.26, 0.13006, 32, 84.96, -458.72, 0.00884, 23, 108.93, -638.39, 0.00225, 2, + -593.47, -159.21, 0.00017, 34, 98.32, -640.65, 4e-05, 7, 30, 221.65, 0.47, 0.66551, 33, -237.51, 190.07, 0.16543, 31, 177.64, -242.7, 0.15686, 32, 131.25, -471.62, 0.01072, 23, + 148.23, -666.05, 0.00132, 2, -598.18, -207.04, 9e-05, 34, 144.78, -652.91, 7e-05, 7, 30, -55.09, -67.56, 0.1263, 33, 47.05, 205.57, 0.82479, 31, -107.24, -235.19, 0.03163, 32, + -151.63, -437.1, 0.00934, 23, -106.75, -538.77, 0.00684, 2, -613.07, 77.55, 0.00083, 34, -138.55, -622.29, 0.00026, 7, 30, 5.35, -66.39, 0.33729, 33, -12.56, 215.64, 0.55821, 31, + -48.64, -250.04, 0.07915, 32, -94.7, -457.44, 0.01499, 23, -59.93, -577, 0.00911, 2, -623.27, 17.97, 0.00102, 34, -81.35, -641.84, 0.00024, 7, 30, 55.77, -67.14, 0.4963, 33, -61.97, + 225.72, 0.41554, 31, -0.2, -264.08, 0.07107, 32, -47.82, -476.01, 0.01018, 23, -21.97, -610.21, 0.0062, 2, -633.46, -31.42, 0.00061, 34, -34.21, -659.77, 0.00011, 7, 30, 120.95, + -69.85, 0.60006, 33, -125.51, 240.49, 0.32427, 31, 61.93, -283.92, 0.06506, 32, 12.16, -501.66, 0.00653, 23, 25.95, -654.46, 0.00372, 2, -648.35, -94.93, 0.00032, 34, 26.11, -684.59, + 4e-05, 7, 30, 196.98, -79.27, 0.67403, 33, -198.47, 263.85, 0.24961, 31, 132.77, -313.09, 0.06913, 32, 79.9, -537.43, 0.0049, 23, 77.8, -710.86, 0.00215, 2, -671.87, -167.84, + 0.00016, 34, 94.34, -719.42, 2e-05, 7, 30, 200.89, 245.53, 0.15256, 33, -262.59, -54.59, 0.16406, 31, 222.38, -0.86, 0.55578, 32, 198.75, -235.12, 0.12087, 23, 291.04, -465.82, + 0.00323, 2, -353.57, -232.64, 0.00048, 34, 209.01, -415.5, 0.00302, 7, 30, 140.47, 227.61, 0.1325, 33, -199.89, -48.18, 0.21654, 31, 159.36, -2.19, 0.54752, 32, 135.89, -230.46, + 0.09653, 23, 233.37, -440.37, 0.0047, 2, -359.84, -169.92, 0.00055, 34, 146.09, -411.7, 0.00166, 7, 30, 89.61, 213.9, 0.12408, 33, -147.37, -44.15, 0.28252, 31, 106.69, -1.97, + 0.50487, 32, 83.48, -225.24, 0.07948, 23, 185.73, -417.89, 0.00728, 2, -363.76, -117.39, 0.00084, 34, 93.61, -407.21, 0.00093, 7, 30, 27.2, 197.98, 0.12796, 33, -83.09, -40.1, + 0.35623, 31, 42.29, -0.83, 0.43219, 32, 19.48, -217.99, 0.07033, 23, 127.86, -389.62, 0.01121, 2, -367.68, -53.1, 0.00141, 34, 29.52, -400.84, 0.00067, 7, 30, -21.21, 183.95, + 0.13479, 33, -32.92, -35.29, 0.4637, 31, -8.1, -1.57, 0.31798, 32, -30.76, -213.94, 0.06476, 23, 81.88, -368.99, 0.01585, 2, -372.39, -2.92, 0.00219, 34, -20.77, -397.49, 0.00074, 7, + 30, -48.32, 142.05, 0.13714, 33, 1.5, 0.85, 0.59937, 31, -45.32, -34.81, 0.20012, 32, -70.97, -243.5, 0.0454, 23, 34.1, -383.37, 0.01508, 2, -408.45, 31.57, 0.00212, 34, -60.57, + -427.6, 0.00077, 7, 30, 37.6, 156.07, 0.20705, 33, -85.53, 3.02, 0.33037, 31, 41.25, -44, 0.40185, 32, 14.34, -260.86, 0.05046, 23, 108.66, -428.3, 0.00876, 2, -410.8, -55.45, + 0.00103, 34, 24.97, -443.78, 0.00048, 7, 30, 118.13, 169.06, 0.23108, 33, -167.07, 5.2, 0.25824, 31, 122.35, -52.75, 0.4478, 32, 94.24, -277.27, 0.05606, 23, 178.45, -470.53, + 0.00555, 2, -413.15, -136.99, 0.0006, 34, 105.09, -459.09, 0.00066, 7, 30, 191.61, 185.49, 0.26102, 33, -242.33, 2.69, 0.19419, 31, 197.56, -56.32, 0.47134, 32, 168.78, -287.97, + 0.06846, 23, 245.1, -505.57, 0.00343, 2, -410.8, -212.25, 0.00037, 34, 179.77, -468.75, 0.00118, 7, 30, -94.4, 134.61, 0.07675, 33, 48.16, -0.39, 0.78223, 31, -91.73, -29.82, + 0.08198, 32, -116.69, -234.12, 0.03629, 23, -5.85, -359.22, 0.01854, 2, -407.11, 78.23, 0.0028, 34, -106.42, -418.85, 0.00141, 7, 30, -149.75, 411.62, 0.01465, 33, 51.14, -282.85, + 0.4224, 31, -71.92, 251.97, 0.03591, 32, -70.22, 44.51, 0.22538, 23, 131.27, -112.25, 0.19988, 2, -124.64, 80.62, 0.04232, 34, -63.79, -139.6, 0.05946, 7, 30, -317.85, 372.32, + 0.00837, 33, 223.61, -275.43, 0.6555, 31, -244.42, 258.49, 0.01022, 32, -241.32, 67.38, 0.06645, 23, -22.29, -33.39, 0.22168, 2, -131.7, 253.1, 0.01766, 34, -235.19, -119.1, 0.02013, + 1, 33, 245.44, -217.37, 1, 7, 30, -278.95, 104.8, 0.01336, 33, 235.03, -5.35, 0.95817, 31, -277.6, -9.8, 0.00424, 32, -299.82, -196.55, 0.00749, 23, -165.81, -262.48, 0.0149, 2, + -401.76, 265.1, 0.00112, 34, -290.05, -383.8, 0.00072, 7, 30, -193.65, 118.58, 0.00663, 33, 148.66, -3.05, 0.97677, 31, -191.69, -19.05, 0.00341, 32, -215.18, -213.91, 0.00534, 23, + -91.87, -307.19, 0.00657, 2, -404.24, 178.72, 0.00077, 34, -205.17, -400, 0.0005, 7, 30, -253.8, 387.29, 0.01718, 33, 157.9, -278.26, 0.67604, 31, -178.7, 256, 0.0193, 32, -176.13, + 58.67, 0.09024, 23, 36.22, -63.43, 0.16209, 2, -129.01, 187.39, 0.01802, 34, -169.89, -126.91, 0.01714, 7, 30, -143.32, 126.71, 0.05388, 33, 97.69, -1.7, 0.8242, 31, -141, -24.51, + 0.03869, 32, -165.23, -224.16, 0.04053, 23, -48.25, -333.58, 0.03421, 2, -405.69, 127.76, 0.00501, 34, -155.09, -409.56, 0.00348, 7, 30, -210.33, 397.46, 0.02223, 33, 113.29, + -280.18, 0.58217, 31, -134.08, 254.32, 0.03167, 32, -131.87, 52.75, 0.14752, 23, 75.94, -83.83, 0.16152, 2, -127.18, 142.77, 0.02632, 34, -125.55, -132.21, 0.02855, 7, 30, -361.3, + 374.74, 0.0033, 33, 265.86, -285.88, 0.58507, 31, -285.69, 272.3, 0.00497, 32, -281.09, 85.05, 0.05574, 23, -53.84, -3.42, 0.30014, 2, -121.17, 295.33, 0.02002, 34, -275.2, -101.98, + 0.03077, 7, 30, -330.54, 413.72, 0.00271, 33, 228.4, -318.47, 0.40045, 31, -245.73, 301.77, 0.0051, 32, -238.51, 110.59, 0.07758, 23, -5.17, 6.38, 0.4252, 2, -88.65, 257.8, 0.03146, + 34, -232.98, -75.85, 0.0575, 7, 30, -280.07, 454.49, 0.00217, 33, 171.24, -349.16, 0.29204, 31, -186.27, 327.75, 0.00541, 32, -176.86, 130.81, 0.09594, 23, 59.7, 4.78, 0.47291, 2, + -58.08, 200.57, 0.04063, 34, -171.61, -54.78, 0.09089, 7, 30, -241.65, 487.37, 0.00216, 33, 127.39, -374.34, 0.2428, 31, -140.53, 349.31, 0.00659, 32, -129.28, 147.93, 0.11475, 23, + 110.26, 4.98, 0.45735, 2, -32.99, 156.67, 0.04745, 34, -124.27, -37.01, 0.1289, 7, 30, -201.1, 517.46, 0.00286, 33, 81.96, -396.39, 0.20622, 31, -93.48, 367.62, 0.00914, 32, -80.69, + 161.69, 0.1398, 23, 160.65, 1.67, 0.41369, 2, -11.04, 111.2, 0.05349, 34, -75.88, -22.58, 0.17479, 7, 30, -146.12, 563.89, 0.00084, 33, 19.31, -431.8, 0.09246, 31, -28.18, 397.87, + 0.0037, 32, -12.82, 185.6, 0.09291, 23, 232.61, 1.46, 0.38431, 2, 24.24, 48.48, 0.03615, 34, -8.34, 2.26, 0.38963, 7, 30, -320.85, 396.41, 0.00288, 33, 222.09, -299.66, 0.46048, 31, + -240.96, 282.52, 0.00597, 32, -235.59, 90.97, 0.0869, 23, -8.99, -13.08, 0.36865, 2, -107.47, 251.53, 0.0338, 34, -229.79, -95.43, 0.04132, 7, 30, -266.81, 422.7, 0.00316, 33, + 164.11, -315.47, 0.32813, 31, -181.89, 293.59, 0.00849, 32, -175.73, 96.38, 0.12923, 23, 49.22, -28.03, 0.41836, 2, -91.79, 193.52, 0.0501, 34, -170.01, -89.19, 0.06252, 7, 30, + -219.91, 440.44, 0.00402, 33, 114.74, -324.2, 0.27995, 31, -131.97, 298.31, 0.01189, 32, -125.59, 96.34, 0.16379, 23, 96.45, -44.86, 0.39319, 2, -83.17, 144.12, 0.05978, 34, -119.88, + -88.54, 0.08738, 7, 30, -170.67, 462.62, 0.00599, 33, 62.23, -336.85, 0.25311, 31, -78.62, 306.68, 0.01716, 32, -71.69, 99.61, 0.19842, 23, 148.34, -59.83, 0.34086, 2, -70.62, 91.6, + 0.0651, 34, -66.02, -84.52, 0.11936, 7, 30, -116.66, 484.91, 0.00349, 33, 5.03, -348.73, 0.18055, 31, -20.64, 313.91, 0.01229, 32, -13.29, 101.3, 0.24233, 23, 203.94, -77.8, 0.30831, + 2, -58.86, 34.36, 0.09292, 34, -7.65, -82.03, 0.16013, 7, 30, -57.41, 509, 0.00198, 33, -57.67, -361.41, 0.12238, 31, 42.87, 321.49, 0.00968, 32, 50.66, 102.82, 0.28485, 23, 264.69, + -97.8, 0.26376, 2, -46.32, -28.36, 0.1121, 34, 56.27, -79.63, 0.20525, 7, 30, -11.47, 523.36, 0.0011, 33, -105.48, -367, 0.07898, 31, 90.98, 323.2, 0.00929, 32, 98.71, 99.96, + 0.32456, 23, 309.01, -116.59, 0.21375, 2, -40.83, -76.18, 0.12022, 34, 104.36, -81.83, 0.2521, 7, 30, 28.32, 536.55, 0.00063, 33, -147.02, -372.57, 0.04893, 31, 132.83, 325.41, + 0.01131, 32, 140.59, 98.18, 0.35988, 23, 347.87, -132.29, 0.16489, 2, -35.34, -117.73, 0.11679, 34, 146.25, -83.03, 0.29757, 7, 30, 74.44, 554.14, 0.00046, 33, -195.61, -381.3, + 0.02997, 31, 181.97, 330.19, 0.01612, 32, 189.95, 98.27, 0.3891, 23, 394.42, -148.74, 0.12269, 2, -26.72, -166.34, 0.10315, 34, 195.61, -82.26, 0.3385, 7, 30, 115.33, 569.93, + 0.00055, 33, -238.71, -389.23, 0.01984, 31, 225.57, 334.61, 0.02421, 32, 233.78, 98.54, 0.41027, 23, 435.8, -163.16, 0.09103, 2, -18.88, -209.46, 0.08198, 34, 239.43, -81.39, + 0.37211, 7, 30, -81.7, 592.16, 0.00043, 33, -49.23, -447.63, 0.05721, 31, 41.42, 408.11, 0.00249, 32, 57.44, 189.18, 0.08277, 23, 300.01, -18.69, 0.34056, 2, 39.92, -20.1, 0.02781, + 34, 61.86, 6.82, 0.48872, 7, 30, -21.56, 611.63, 0.00021, 33, -111.94, -455.6, 0.03359, 31, 104.56, 411, 0.00204, 32, 120.57, 186.06, 0.08357, 23, 358.45, -42.77, 0.28657, 2, 47.76, + -82.82, 0.02121, 34, 125.03, 4.57, 0.5728, 7, 30, 26.4, 627.97, 0.0001, 33, -162.1, -462.76, 0.01878, 31, 155.14, 414.09, 0.00235, 32, 171.21, 184.34, 0.09583, 23, 405.59, -61.36, + 0.23054, 2, 54.82, -133, 0.01709, 34, 175.69, 3.54, 0.6353, 7, 30, 61.41, 641.05, 6e-05, 33, -198.93, -469.11, 0.01022, 31, 192.36, 417.45, 0.00354, 32, 208.59, 184.15, 0.1191, 23, + 440.74, -74.06, 0.18006, 2, 61.09, -169.85, 0.01583, 34, 213.06, 3.87, 0.6712, 7, 30, 114.58, 661.38, 7e-05, 33, -254.94, -479.22, 0.00593, 31, 249.01, 423.01, 0.00586, 32, 265.51, + 184.3, 0.15184, 23, 494.43, -92.98, 0.14111, 2, 71.08, -225.88, 0.01744, 34, 269.97, 4.81, 0.67774, 7, 30, 34.87, 700.63, 2e-05, 33, -183.9, -532.59, 0.00465, 31, 182.5, 481.92, + 0.00242, 32, 204.89, 249.27, 0.08502, 23, 459.07, -11.46, 0.18679, 2, 124.59, -154.95, 0.00673, 34, 208.47, 68.93, 0.71438, 7, 30, -26, 685.01, 1e-05, 33, -121.19, -528.53, 0.00851, + 31, 119.67, 482.95, 0.00128, 32, 142.44, 256.25, 0.05856, 23, 402.57, 16.04, 0.24174, 2, 120.67, -92.23, 0.00389, 34, 145.93, 75.05, 0.68602, 7, 30, -85.84, 664, 0, 33, -58.49, + -518.99, 0.0157, 31, 56.4, 478.49, 0.00064, 32, 79.04, 257.83, 0.03851, 23, 343.36, 38.76, 0.30934, 2, 111.27, -29.51, 0.00213, 34, 82.51, 75.75, 0.63367, 7, 30, -129.51, 646.08, 0, + 33, -12.25, -509.49, 0.02776, 31, 9.55, 472.75, 0.00031, 32, 31.85, 256.56, 0.02426, 23, 298.47, 53.36, 0.3837, 2, 101.86, 16.74, 0.00114, 34, 35.34, 73.83, 0.56282, 7, 30, -166.22, + 633.48, 1e-05, 33, 26.15, -503.92, 0.0466, 31, -29.18, 470.3, 0.00016, 32, -6.93, 257.79, 0.01489, 23, 262.34, 67.52, 0.45741, 2, 96.37, 55.16, 0.0007, 34, -3.46, 74.53, 0.48022, 7, + 30, -207.58, 616, 3e-05, 33, 70.03, -494.42, 0.07425, 31, -73.68, 464.37, 0.00011, 32, -51.8, 256.12, 0.00947, 23, 219.5, 80.97, 0.52236, 2, 86.96, 99.06, 0.00067, 34, -48.3, 72.24, + 0.39311, 7, 30, -248.93, 581.76, 7e-05, 33, 117.02, -468.45, 0.11241, 31, -122.61, 442.27, 0.00015, 32, -102.61, 238.77, 0.00722, 23, 165.82, 81.64, 0.57085, 2, 61.09, 146.1, + 0.00104, 34, -98.86, 54.19, 0.30827, 7, 30, -287.56, 541.65, 0.00015, 33, 162.42, -436.21, 0.16192, 31, -170.47, 413.8, 0.00027, 32, -152.95, 214.97, 0.00771, 23, 110.41, 76.07, + 0.59683, 2, 28.95, 191.58, 0.0019, 34, -148.87, 29.7, 0.23123, 7, 30, -326.34, 502.32, 0.00032, 33, 207.83, -404.75, 0.22226, 31, -218.26, 386.11, 0.00051, 32, -203.16, 191.94, + 0.01087, 23, 55.39, 71.19, 0.59682, 2, -2.41, 237.05, 0.00345, 34, -198.75, 5.98, 0.16577, 7, 30, -356.17, 466.29, 0.00063, 33, 243.83, -374.88, 0.3079, 31, -256.56, 359.24, 0.00095, + 32, -243.83, 168.83, 0.01661, 23, 9.33, 63.04, 0.55701, 2, -32.21, 273.11, 0.0058, 34, -239.1, -17.69, 0.1111, 7, 30, -379.58, 425.9, 0.00098, 33, 274.33, -339.54, 0.50139, 31, + -289.81, 326.47, 0.00142, 32, -280.04, 139.37, 0.02098, 23, -34.67, 47.41, 0.40846, 2, -67.49, 303.69, 0.00756, 34, -274.91, -47.65, 0.05921, 7, 30, -397.96, 376.78, 0.00145, 33, + 301.51, -294.68, 0.66094, 31, -320.51, 283.96, 0.00196, 32, -314.65, 99.96, 0.02465, 23, -80.47, 21.87, 0.27223, 2, -112.28, 330.96, 0.00885, 34, -308.96, -87.53, 0.02991, 7, 30, + -397.44, 314.09, 0.00027, 33, 312.62, -232.99, 0.99169, 31, -336.57, 223.36, 0.00019, 32, -336.39, 41.16, 0.0009, 23, -120.65, -26.26, 0.00638, 2, -173.96, 342.2, 0.00018, 34, + -329.89, -146.63, 0.0004, 7, 30, -102.85, 176.87, 0.05997, 33, 48.61, -43.48, 0.7435, 31, -88.71, 13.17, 0.10219, 32, -109.6, -191.61, 0.06393, 23, 15.07, -321.54, 0.02423, 2, + -364.02, 78.6, 0.00408, 34, -99.91, -376.25, 0.0021, 7, 30, -57.82, 192.68, 0.10294, 33, 1.44, -50.66, 0.57596, 31, -41.11, 16.52, 0.23475, 32, -61.9, -192.8, 0.06571, 23, 59.62, + -338.64, 0.01711, 2, -356.94, 31.4, 0.00257, 34, -52.2, -376.78, 0.00096, 7, 30, -126.97, 297.57, 0.02528, 33, 49.91, -166.56, 0.63967, 31, -80.08, 135.96, 0.103, 32, -89.35, -70.2, + 0.15676, 23, 74.82, -213.92, 0.05575, 2, -240.93, 79.64, 0.01069, 34, -81.34, -254.57, 0.00885, 7, 30, -85.13, 306.39, 0.02182, 33, 7.17, -167.46, 0.46369, 31, -37.4, 133.4, 0.17048, + 32, -47.11, -76.79, 0.264, 23, 112.41, -234.29, 0.06056, 2, -240.13, 36.89, 0.01131, 34, -39.01, -260.58, 0.00814, 7, 30, -43.07, 316.02, 0.01714, 33, -35.94, -169.12, 0.2903, 31, + 5.71, 131.58, 0.24471, 32, -4.37, -82.7, 0.37311, 23, 150.71, -254.17, 0.05653, 2, -238.56, -6.23, 0.01021, 34, 3.81, -265.9, 0.00799, 7, 30, 20.4, 330.54, 0.01281, 33, -101.01, + -171.61, 0.22471, 31, 70.76, 128.81, 0.28438, 32, 60.13, -91.64, 0.41945, 23, 208.49, -284.19, 0.04229, 2, -236.21, -71.3, 0.00748, 34, 68.42, -273.94, 0.00888, 7, 30, 81.57, 344.62, + 0.01255, 33, -163.73, -174.09, 0.16564, 31, 133.47, 126.23, 0.32054, 32, 122.31, -100.16, 0.45272, 23, 264.22, -313.05, 0.03032, 2, -233.86, -134.02, 0.00559, 34, 130.72, -281.61, + 0.01263, 7, 30, 135.95, 356.6, 0.01618, 33, -219.39, -175.78, 0.11685, 31, 189.09, 123.42, 0.35068, 32, 177.41, -108.24, 0.47104, 23, 313.43, -339.12, 0.0209, 2, -232.29, -189.68, + 0.00471, 34, 185.92, -288.92, 0.01964, 7, 30, 182.96, 369.57, 0.02386, 33, -267.99, -179.8, 0.0805, 31, 237.85, 123.51, 0.37272, 32, 225.96, -112.78, 0.47345, 23, 357.66, -359.66, + 0.01411, 2, -228.37, -238.29, 0.00494, 34, 234.53, -292.8, 0.03041, 7, 30, 193.07, 312.44, 0.08027, 33, -267.33, -121.78, 0.12907, 31, 232.52, 65.73, 0.54457, 32, 215.16, -169.79, + 0.23255, 23, 328.39, -409.76, 0.00495, 2, -286.38, -237.51, 0.00111, 34, 224.52, -349.95, 0.00748, 7, 30, 138.73, 304.45, 0.06212, 33, -212.44, -124.02, 0.17311, 31, 177.99, 72.39, + 0.5376, 32, 161.52, -157.99, 0.21443, 23, 281.79, -380.66, 0.00723, 2, -284.03, -182.63, 0.00114, 34, 170.71, -338.88, 0.00436, 7, 30, 79.1, 290.67, 0.05344, 33, -151.29, -121.54, + 0.23144, 31, 116.84, 74.85, 0.50546, 32, 100.88, -149.73, 0.19458, 23, 227.42, -352.58, 0.01093, 2, -286.38, -121.48, 0.00158, 34, 109.97, -331.47, 0.00257, 7, 30, 28.65, 270.65, + 0.05474, 33, -98, -111.23, 0.29906, 31, 62.89, 68.88, 0.45199, 32, 46.61, -150.55, 0.17375, 23, 176.01, -335.17, 0.01627, 2, -296.58, -68.16, 0.00242, 34, 55.71, -333.04, 0.00178, 7, + 30, -24.85, 254.05, 0.06625, 33, -42.35, -104.85, 0.36899, 31, 6.91, 67, 0.38266, 32, -9.3, -147.11, 0.1531, 23, 124.48, -313.2, 0.02347, 2, -302.85, -12.5, 0.00371, 34, -0.24, + -330.36, 0.00182, 7, 30, -65.26, 239.94, 0.07225, 33, -0.03, -98.48, 0.53411, 31, -35.79, 64.07, 0.24977, 32, -52.09, -145.97, 0.11029, 23, 84.55, -297.8, 0.02689, 2, -309.12, 29.84, + 0.0045, 34, -43.03, -329.81, 0.00219, 7, 30, -113.28, 229.11, 0.04488, 33, 49.18, -96.75, 0.6858, 31, -84.98, 66.31, 0.12869, 32, -100.84, -139.07, 0.09874, 23, 40.93, -274.97, + 0.03239, 2, -310.75, 79.05, 0.00585, 34, -91.88, -323.59, 0.00365, 7, 30, -139.5, 360.3, 0.01855, 33, 50.59, -230.52, 0.62104, 31, -75.59, 199.76, 0.05196, 32, -78.83, -7.11, + 0.17599, 23, 105.87, -158, 0.0937, 2, -176.97, 80.18, 0.01847, 34, -71.69, -191.34, 0.02029, 7, 30, -77.56, 387.3, 0.0101, 33, -15.29, -245.57, 0.28941, 31, -8.72, 209.44, 0.05396, + 32, -11.33, -3.82, 0.49215, 23, 170.56, -177.51, 0.09689, 2, -162.07, 14.27, 0.02143, 34, -4.25, -187.12, 0.03606, 7, 30, -10.1, 418.55, 0.00636, 33, -87.38, -263.75, 0.18688, 31, + 64.6, 221.75, 0.05515, 32, 62.82, 1.47, 0.60001, 23, 242.21, -197.36, 0.0807, 2, -144.04, -57.86, 0.02015, 34, 69.83, -180.81, 0.05076, 7, 30, 46.85, 442.2, 0.0041, 33, -147.72, + -276.42, 0.1279, 31, 125.77, 229.51, 0.06149, 32, 124.45, 3.39, 0.65321, 23, 300.92, -216.2, 0.06247, 2, -131.49, -118.23, 0.01942, 34, 131.43, -178.04, 0.07141, 7, 30, 109.44, + 461.34, 0.00329, 33, -212.77, -283.61, 0.08339, 31, 191.2, 231.44, 0.07546, 32, 189.76, -0.91, 0.66956, 23, 361.02, -242.12, 0.04793, 2, -124.44, -183.3, 0.02073, 34, 196.79, + -181.43, 0.09965, 7, 30, 173.57, 480.77, 0.00376, 33, -279.4, -290.81, 0.05247, 31, 258.18, 233.23, 0.09672, 32, 256.62, -5.48, 0.64938, 23, 422.49, -268.82, 0.03852, 2, -117.38, + -249.94, 0.02434, 34, 263.71, -185.08, 0.13481, 7, 30, -196.98, 343.52, 0.02386, 33, 110.18, -224.7, 0.78085, 31, -135.46, 198.77, 0.0274, 32, -138.52, -2.42, 0.07895, 23, 51.2, + -133.59, 0.06805, 2, -182.67, 139.78, 0.01091, 34, -131.44, -187.47, 0.00999, 7, 30, -241.17, 330.84, 0.01171, 33, 155.96, -220.45, 0.89893, 31, -181.43, 198.22, 0.00962, 32, + -184.33, 1.41, 0.0296, 23, 9.31, -114.64, 0.04141, 2, -186.83, 185.57, 0.00483, 34, -177.3, -184.28, 0.00389, 7, 30, -123.8, -65.95, 0.04474, 33, 114.27, 191.23, 0.93692, 31, + -173.08, -215.48, 0.00886, 32, -215.3, -411.22, 0.00459, 23, -158.08, -493.06, 0.00417, 2, -598.59, 144.74, 0.00051, 34, -202.58, -597.29, 0.0002, 7, 30, -193.29, -53.52, 0.00444, + 33, 180.24, 166.12, 0.99338, 31, -236.82, -185.13, 0.00077, 32, -275.87, -374.95, 0.00061, 23, -203, -438.6, 0.00069, 2, -573.34, 210.67, 8e-05, 34, -263.64, -561.86, 3e-05, 7, 30, + -275.1, -23.25, 0.00598, 33, 255.01, 121.2, 0.99056, 31, -307.72, -134.32, 0.00097, 32, -341.63, -317.64, 0.00099, 23, -245.76, -362.57, 0.00134, 2, -528.26, 285.34, 0.00013, 34, + -330.18, -505.46, 5e-05, 7, 30, -130.72, 2.34, 0.07078, 33, 108.39, 122.85, 0.87018, 31, -161.71, -147.79, 0.02454, 32, -197.56, -344.92, 0.01678, 23, -119.15, -436.53, 0.01472, 2, + -530.22, 138.72, 0.00198, 34, -185.75, -530.75, 0.00103, 7, 30, -193.42, 6.53, 0.01773, 33, 169.22, 107.09, 0.96457, 31, -221.07, -127.18, 0.00517, 32, -254.69, -318.77, 0.00534, 23, + -164.23, -392.75, 0.00612, 2, -514.34, 199.52, 0.00071, 34, -243.24, -505.39, 0.00036, 1, 33, 249.13, 83.91, 1, 7, 30, 12.43, 81.93, 0.31303, 33, -47.04, 71.2, 0.46993, 31, -2.62, + -108.85, 0.18658, 32, -35.49, -321.26, 0.02106, 23, 41.48, -468.52, 0.00824, 2, -478.9, -16.81, 0.00094, 34, -24.02, -504.86, 0.00022, 7, 30, -6.27, 148.91, 0.18642, 33, -41.1, 1.91, + 0.41602, 31, -2.95, -39.31, 0.33139, 32, -29.21, -252, 0.05076, 23, 70.59, -405.36, 0.01313, 2, -409.6, -11.02, 0.0017, 34, -18.7, -435.52, 0.00057, 7, 30, -171.61, 542.36, 0.00159, + 33, 48.36, -415.39, 0.14175, 31, -58.46, 383.84, 0.00583, 32, -44.29, 174.51, 0.11262, 23, 199.24, 1.56, 0.41038, 2, 7.88, 77.56, 0.04515, 34, -39.66, -9.26, 0.28269, 7, 30, -105.1, + 375.29, 0.01454, 33, 14.01, -238.88, 0.44958, 31, -38.46, 205.14, 0.05374, 32, -41.35, -5.28, 0.33318, 23, 141.79, -168.84, 0.10178, 2, -168.7, 43.58, 0.02107, 34, -34.24, -188.99, + 0.02611, 7, 30, -90.93, 441.32, 0.0098, 33, -12.17, -301.13, 0.2781, 31, -7.34, 265.08, 0.03183, 32, -4.68, 51.43, 0.34283, 23, 195.34, -127.68, 0.19348, 2, -106.5, 17.26, 0.05699, + 34, 1.65, -131.78, 0.08697, 7, 30, -33.22, 463.46, 0.00587, 33, -72.99, -312.18, 0.20071, 31, 54.17, 271.18, 0.02877, 32, 57.14, 51.66, 0.42459, 23, 253.66, -148.16, 0.16243, 2, + -95.58, -43.58, 0.06315, 34, 63.45, -130.69, 0.11449, 7, 30, 14.68, 482.94, 0.00354, 33, -123.67, -322.42, 0.13703, 31, 105.51, 277.31, 0.0306, 32, 108.83, 52.89, 0.48687, 23, + 302.78, -164.32, 0.12983, 2, -85.44, -94.28, 0.06451, 34, 115.12, -128.76, 0.14761, 7, 30, 71.44, 501.72, 0.00233, 33, -182.93, -330.35, 0.08836, 31, 165.22, 280.43, 0.03764, 32, + 168.56, 50.32, 0.52566, 23, 358.2, -186.75, 0.09918, 2, -77.64, -153.56, 0.06151, 34, 174.88, -130.5, 0.18532, 7, 30, 140.65, 526.06, 0.00198, 33, -255.45, -341.42, 0.05365, 31, + 238.4, 285.61, 0.05013, 32, 241.9, 48.54, 0.53936, 23, 426.7, -212.99, 0.0737, 2, -66.72, -226.1, 0.0553, 34, 248.24, -131.27, 0.22588, 1, 33, 274.34, -224.09, 1, 7, 30, -316.62, + 261.64, 0.00413, 33, 242.94, -166.45, 0.97085, 31, -272.48, 151.42, 0.00181, 32, -279.42, -36.54, 0.00521, 23, -92.99, -118.55, 0.01628, 2, -240.64, 272.66, 0.00087, 34, -271.85, + -223.53, 0.00085 + ], + "hull": 45, + "edges": [ + 74, 76, 76, 78, 78, 80, 80, 82, 82, 84, 84, 86, 86, 88, 2, 4, 4, 6, 6, 8, 8, 10, 10, 12, 12, 14, 14, 16, 16, 18, 18, 20, 20, 22, 22, 24, 24, 26, 26, 28, 28, 30, 30, 32, 32, 34, 38, + 40, 40, 42, 42, 44, 48, 50, 50, 52, 52, 54, 54, 56, 56, 58, 62, 64, 64, 66, 66, 68, 68, 70, 70, 72, 72, 74, 56, 90, 90, 92, 92, 94, 94, 96, 98, 100, 102, 104, 104, 106, 106, 108, + 108, 110, 110, 112, 112, 114, 58, 60, 60, 62, 114, 60, 116, 118, 118, 120, 120, 122, 122, 124, 124, 64, 52, 126, 126, 128, 128, 130, 130, 132, 132, 134, 134, 136, 138, 140, 140, 142, + 142, 54, 144, 136, 100, 144, 86, 152, 154, 152, 156, 148, 144, 158, 158, 154, 146, 160, 160, 156, 162, 148, 162, 164, 164, 166, 166, 168, 168, 170, 162, 174, 174, 176, 176, 178, 178, + 180, 180, 182, 182, 184, 184, 186, 186, 188, 188, 190, 190, 192, 34, 36, 36, 38, 192, 36, 172, 194, 194, 196, 196, 198, 198, 200, 32, 202, 202, 200, 30, 204, 204, 206, 206, 208, 208, + 210, 210, 212, 212, 214, 214, 216, 216, 218, 218, 220, 220, 222, 222, 224, 4, 226, 226, 162, 224, 226, 2, 228, 144, 230, 234, 236, 236, 238, 238, 240, 240, 242, 242, 244, 244, 246, + 44, 46, 46, 48, 246, 46, 50, 248, 248, 250, 250, 252, 252, 254, 254, 256, 256, 258, 230, 260, 260, 234, 258, 260, 146, 262, 262, 234, 264, 266, 266, 268, 268, 270, 270, 272, 272, 40, + 146, 180, 180, 170, 158, 274, 274, 160, 262, 274, 154, 276, 276, 156, 274, 276, 276, 150, 76, 278, 116, 278, 78, 280, 278, 280, 80, 282, 280, 282, 158, 284, 284, 278, 102, 284, 154, + 286, 286, 280, 284, 286, 152, 288, 288, 282, 286, 288, 102, 100, 102, 116, 98, 136, 136, 232, 232, 258, 232, 134, 118, 106, 104, 118, 106, 98, 98, 104, 96, 290, 290, 98, 136, 292, + 292, 138, 170, 294, 294, 172, 262, 296, 296, 264, 146, 298, 298, 300, 300, 302, 302, 304, 304, 306, 306, 38, 150, 308, 308, 228, 150, 310, 310, 152, 2, 0, 0, 88, 310, 0, 152, 82 + ], + "width": 898.8235294117648, + "height": 720.0, + "path": "body-bigyak.body-bigyak", + "x": 0.08823529411762365, + "y": 1.0 + } + }, + "body-braid": { + "body-braid": { + "type": "mesh", + "uvs": [ + 0.63496, 0.09751, 0.61702, 0.20683, 0.59831, 0.32082, 0.59592, 0.44317, 0.62464, 0.56027, 0.76357, 0.56074, 1, 0.56154, 1, 0.77652, 1, 0.90761, 0.87349, 1, 0.49064, 1, 0.3351, + 0.92684, 0.31354, 0.7573, 0.3016, 0.66339, 0.18914, 0.51483, 0.1341, 0.375, 0.07624, 0.27546, 0, 0.14429, 0, 0, 0.35424, 0, 0.65096, 0, 0.4021, 0.37675, 0.37099, 0.14953, 0.37817, + 0.26664, 0.42842, 0.48861, 0.46431, 0.63368, 0.56242, 0.72584, 0.73231, 0.83071, 0.80649, 0.92509 + ], + "triangles": [ + 10, 28, 9, 9, 28, 8, 10, 27, 28, 10, 11, 27, 11, 26, 27, 11, 12, 26, 8, 28, 7, 28, 27, 7, 6, 7, 27, 27, 26, 5, 27, 5, 6, 12, 25, 26, 12, 13, 25, 26, 4, 5, 26, 25, 4, 13, 24, 25, 25, + 24, 4, 24, 3, 4, 13, 14, 24, 14, 21, 24, 14, 15, 21, 24, 21, 3, 3, 21, 2, 15, 23, 21, 21, 23, 2, 15, 16, 23, 2, 23, 1, 16, 22, 23, 16, 17, 22, 23, 22, 1, 1, 22, 0, 17, 19, 22, 22, + 19, 0, 17, 18, 19, 0, 19, 20 + ], + "vertices": [ + 1, 27, 19.57, 47, 1, 3, 27, 44.29, 41.52, 0.7839, 28, -26.59, 44.55, 0.16555, 29, -58.07, 82.04, 0.05055, 3, 27, 70.07, 35.8, 0.5709, 28, -1.55, 36.17, 0.29298, 29, -40.03, 62.75, + 0.13612, 3, 27, 98.04, 32.63, 0.32448, 28, 25.93, 30.08, 0.36824, 29, -18.75, 44.33, 0.30727, 3, 27, 125.32, 34.77, 0.21851, 28, 53.28, 29.36, 0.2975, 29, 4.97, 30.69, 0.48399, 3, + 27, 127.73, 57.99, 0.15115, 28, 58.11, 52.19, 0.2481, 29, 20.07, 48.48, 0.60074, 3, 27, 131.82, 97.5, 0.10405, 28, 66.32, 91.06, 0.20773, 29, 45.78, 78.76, 0.68823, 3, 27, 181.03, + 92.62, 0.06625, 28, 114.74, 81.06, 0.1694, 29, 83.62, 46.93, 0.76435, 3, 27, 211.03, 89.65, 0.05296, 28, 144.27, 74.96, 0.15492, 29, 106.7, 27.52, 0.79212, 3, 27, 230.08, 66.4, + 0.05293, 28, 160.78, 49.85, 0.15497, 29, 109.28, -2.42, 0.79209, 3, 27, 223.74, 2.4, 0.06616, 28, 147.77, -13.14, 0.16956, 29, 67.88, -51.64, 0.76428, 3, 27, 204.42, -21.95, 0.10381, + 28, 126.01, -35.33, 0.20813, 29, 38.18, -60.81, 0.68806, 3, 27, 165.26, -21.7, 0.15055, 28, 87.09, -30.99, 0.24914, 29, 6.01, -38.48, 0.60031, 3, 27, 143.57, -21.57, 0.21693, 28, + 65.53, -28.59, 0.3002, 29, -11.81, -26.11, 0.48287, 3, 27, 107.7, -37, 0.32036, 28, 28.25, -40.18, 0.37528, 29, -50.13, -18.58, 0.30436, 3, 27, 74.79, -43.03, 0.56691, 28, -5.12, + -42.73, 0.29912, 29, -80.69, -4.95, 0.13396, 3, 27, 51.04, -50.45, 0.78057, 28, -29.51, -47.62, 0.17001, 29, -104.47, 2.35, 0.04942, 2, 27, 19.76, -60.22, 0.99676, 28, -61.64, + -54.06, 0.00324, 1, 27, -13.27, -56.95, 1, 1, 27, -7.4, 2.28, 1, 1, 27, -2.48, 51.88, 1, 3, 27, 79.63, 1.73, 0.63525, 28, 4.38, 1.28, 0.27499, 29, -51.4, 29.25, 0.08976, 1, 27, 27.1, + 1.69, 1, 3, 27, 54.03, 0.23, 0.79528, 28, -21.24, 2.47, 0.16509, 29, -73.37, 42.47, 0.03963, 3, 27, 105.66, 3.6, 0.30104, 28, 30.47, 0.41, 0.41196, 29, -28.86, 16.07, 0.287, 3, 27, + 139.46, 6.31, 0.18962, 28, 64.37, -0.43, 0.27987, 29, 0.55, -0.79, 0.53051, 3, 27, 162.18, 20.62, 0.14592, 28, 88.46, 11.42, 0.24641, 29, 27.38, -1.82, 0.60767, 3, 27, 189, 46.64, + 0.11208, 28, 117.85, 34.49, 0.21738, 29, 64.21, 4.49, 0.67055, 3, 27, 211.83, 56.9, 0.0595, 28, 141.63, 42.31, 0.1627, 29, 88.85, 0.06, 0.7778 + ], + "hull": 21, + "edges": [ + 4, 42, 42, 30, 34, 36, 34, 44, 40, 0, 44, 0, 36, 38, 38, 40, 38, 44, 34, 32, 32, 30, 32, 46, 4, 2, 2, 0, 46, 2, 44, 46, 46, 42, 30, 28, 28, 48, 48, 6, 6, 4, 6, 8, 8, 50, 50, 26, 26, + 28, 22, 20, 26, 24, 24, 22, 24, 52, 50, 52, 12, 10, 10, 8, 52, 10, 52, 54, 54, 12, 54, 22, 20, 56, 12, 14, 56, 14, 14, 16, 18, 20, 16, 18 + ], + "width": 167.05882352941177, + "height": 228.23529411764707, + "path": "body-bigyak.body-braid", + "x": 0.470588235294116, + "y": 0.8823529411764639 + } + }, + "body-braid2": { + "body-braid2": { + "type": "mesh", + "uvs": [ + 0.76452, 0.07445, 0.75152, 0.17116, 0.73432, 0.29916, 0.70555, 0.40315, 0.66462, 0.55109, 0.78457, 0.611, 0.90879, 0.67306, 1, 0.71862, 1, 0.82158, 0.94878, 0.93152, 0.76113, 1, + 0.54399, 1, 0.36139, 0.97254, 0.24307, 0.87252, 0.27124, 0.75345, 0.29206, 0.66547, 0.31344, 0.57506, 0.21043, 0.43979, 0.14188, 0.34977, 0.07072, 0.23161, 0, 0.11418, 0, 0, 0.3751, + 0, 0.77453, 0, 0.50646, 0.58076, 0.47161, 0.46209, 0.55828, 0.66607, 0.60819, 0.74824, 0.66371, 0.83963, 0.70599, 0.90923, 0.44724, 0.32368, 0.41521, 0.20102, 0.39118, 0.09385 + ], + "triangles": [ + 11, 29, 10, 10, 29, 9, 11, 12, 29, 12, 28, 29, 12, 13, 28, 9, 29, 8, 29, 28, 8, 13, 27, 28, 13, 14, 27, 8, 28, 7, 28, 27, 6, 28, 6, 7, 14, 26, 27, 14, 15, 26, 27, 5, 6, 27, 26, 5, + 26, 15, 24, 15, 16, 24, 26, 4, 5, 26, 24, 4, 16, 25, 24, 24, 25, 4, 16, 17, 25, 4, 25, 3, 17, 30, 25, 25, 30, 3, 17, 18, 30, 3, 30, 2, 18, 31, 30, 18, 19, 31, 30, 31, 2, 2, 31, 1, + 19, 32, 31, 19, 20, 32, 31, 32, 1, 1, 32, 0, 20, 22, 32, 20, 21, 22, 32, 22, 0, 0, 22, 23 + ], + "vertices": [ + 2, 24, 23.29, 61.99, 0.9947, 25, -53.08, 59.53, 0.0053, 3, 24, 47.19, 55.55, 0.78053, 25, -28.89, 54.24, 0.13577, 26, -81.3, 76.7, 0.0837, 3, 24, 78.83, 47.04, 0.5816, 25, 3.11, + 47.24, 0.23384, 26, -52.02, 62.01, 0.18457, 3, 24, 104.1, 37.7, 0.40473, 25, 28.81, 39.12, 0.2761, 26, -29.13, 47.79, 0.31917, 3, 24, 140.06, 24.41, 0.29394, 25, 65.35, 27.56, + 0.22993, 26, 3.43, 27.57, 0.47614, 3, 24, 158.58, 41.35, 0.21919, 25, 83.05, 45.36, 0.19742, 26, 24.98, 40.44, 0.58339, 3, 24, 177.77, 58.88, 0.16149, 25, 101.38, 63.79, 0.17041, 26, + 47.29, 53.78, 0.66811, 3, 24, 191.85, 71.76, 0.11854, 25, 114.83, 77.33, 0.14864, 26, 63.67, 63.57, 0.73281, 3, 24, 217.7, 67.17, 0.09078, 25, 140.87, 73.97, 0.1336, 26, 88.08, + 53.88, 0.77562, 3, 24, 243.82, 53.89, 0.07864, 25, 167.59, 61.96, 0.12672, 26, 111, 35.64, 0.79464, 3, 24, 255.57, 20.17, 0.07741, 25, 180.93, 28.84, 0.12603, 26, 115.74, 0.25, + 0.79656, 3, 24, 249.27, -15.32, 0.07864, 25, 176.33, -6.91, 0.12672, 26, 102.45, -33.26, 0.79463, 3, 24, 237.07, -43.94, 0.09078, 25, 165.52, -36.08, 0.1336, 26, 84.77, -58.85, + 0.77562, 3, 24, 208.53, -58.82, 0.11855, 25, 137.72, -52.31, 0.14865, 26, 53.82, -67.7, 0.7328, 3, 24, 179.45, -48.9, 0.1615, 25, 108.2, -43.79, 0.17042, 26, 27.32, -52.16, 0.66808, + 3, 24, 157.96, -41.58, 0.21922, 25, 86.39, -37.5, 0.19746, 26, 7.74, -40.67, 0.58332, 3, 24, 135.88, -34.05, 0.29401, 25, 63.97, -31.04, 0.23004, 26, -12.38, -28.87, 0.47595, 3, 24, + 98.93, -44.86, 0.40494, 25, 27.58, -43.59, 0.27638, 26, -50.75, -32.05, 0.31868, 3, 24, 74.34, -52.05, 0.58193, 25, 3.36, -51.95, 0.23387, 26, -76.28, -34.16, 0.1842, 3, 24, 42.61, + -58.41, 0.78121, 25, -28.03, -59.82, 0.13528, 26, -108.65, -34.03, 0.08351, 2, 24, 11.07, -64.74, 0.99636, 25, -59.23, -67.64, 0.00364, 1, 24, -17.59, -59.65, 1, 1, 24, -6.71, 1.66, + 1, 1, 24, 4.88, 66.95, 1, 3, 24, 142.92, -2.76, 0.26407, 25, 69.51, 0.56, 0.21764, 26, 0.78, 0.37, 0.5183, 3, 24, 112.11, -3.17, 0.454, 25, 38.75, -1.32, 0.28347, 26, -29.48, 6.15, + 0.26253, 3, 24, 165.84, 1.91, 0.21215, 25, 92.18, 6.31, 0.19465, 26, 24.18, 0.35, 0.59321, 3, 24, 187.92, 6.4, 0.15913, 25, 114.02, 11.85, 0.16951, 26, 46.71, 0.32, 0.67135, 3, 24, + 212.48, 11.4, 0.11711, 25, 138.31, 18.02, 0.14802, 26, 71.77, 0.3, 0.73486, 3, 24, 231.18, 15.21, 0.08952, 25, 156.81, 22.71, 0.13294, 26, 90.85, 0.28, 0.77753, 3, 24, 76.65, -0.98, + 0.59027, 25, 3.23, -0.83, 0.23885, 26, -63.78, 15.41, 0.17089, 3, 24, 44.93, -0.74, 0.78253, 25, -28.47, -2.11, 0.13744, 26, -94.81, 22, 0.08003, 1, 24, 17.32, 0.11, 1 + ], + "hull": 24, + "edges": [ + 40, 42, 46, 0, 40, 38, 38, 36, 4, 2, 2, 0, 32, 48, 48, 8, 36, 34, 34, 32, 34, 50, 4, 6, 6, 8, 50, 6, 32, 30, 52, 48, 30, 52, 10, 8, 52, 10, 14, 12, 12, 10, 54, 52, 12, 54, 28, 30, + 54, 28, 26, 28, 56, 54, 26, 56, 56, 14, 14, 16, 20, 58, 58, 56, 16, 58, 24, 58, 26, 24, 20, 22, 24, 22, 20, 18, 18, 16, 4, 60, 60, 36, 50, 60, 2, 62, 62, 38, 60, 62, 0, 64, 64, 40, + 62, 64, 42, 44, 44, 46, 64, 44 + ], + "width": 164.7058823529412, + "height": 254.11764705882354, + "path": "body-bigyak.body-braid2", + "x": 0.6470588235294059, + "y": 0.44117647058823195 + } + }, + "body-pattern": {"body-pattern": {"x": -3.648235294117648, "y": 0.006470588235289926, "width": 61.1764705882353, "height": 117.64705882352942, "path": "body-bigyak.body-pattern"}}, + "leg-back-left": { + "sumo-leg-back-left": { + "x": 35.715294117647055, "y": -2.7788235294117682, "rotation": 69.54, "width": 103.52941176470588, "height": 94.11764705882354, "path": "body-normal.sumo-leg-back-left" + }, + "sumo-leg-back-left-long": { + "x": 35.38823529411764, "y": 3.015882352941174, "rotation": 216.69, "width": 98.82352941176471, "height": 110.58823529411765, "path": "body-normal.sumo-leg-back-left-long" + }, + "sumo-leg-back-left-stretch": { + "x": 34.941764705882356, "y": 5.295294117647058, "rotation": 37.34, "width": 101.17647058823529, "height": 103.52941176470588, "path": "body-normal.sumo-leg-back-left-stretch" + } + }, + "leg-front-left": { + "sumo-leg-front-left": { + "x": 39.735882352941175, "y": -4.921764705882355, "rotation": 83.6, "width": 110.58823529411765, "height": 98.82352941176471, "path": "body-normal.sumo-leg-front-left" + }, + "sumo-leg-front-left-long": { + "x": 44.705882352941174, "y": 1.959411764705884, "rotation": 221.6, "width": 110.58823529411765, "height": 112.94117647058823, "path": "body-normal.sumo-leg-front-left-long" + }, + "sumo-leg-front-left-stretch": { + "x": 36.08588235294118, "y": 0.125294117647058, "rotation": 151.6, "width": 110.58823529411765, "height": 103.52941176470588, "path": "body-normal.sumo-leg-front-left-stretch" + } + }, + "leg-front-right": { + "sumo-leg-front-right": { + "x": 42.945882352941176, "y": 8.718235294117644, "rotation": 101.78, "width": 110.58823529411765, "height": 98.82352941176471, "path": "body-normal.sumo-leg-front-right" + }, + "sumo-leg-front-right-long": { + "x": 40.17588235294117, "y": -1.5005882352941158, "rotation": 219.78, "width": 110.58823529411765, "height": 112.94117647058823, "path": "body-normal.sumo-leg-front-right-long" + }, + "sumo-leg-front-right-stretch": { + "x": 44.34882352941176, "y": 4.211764705882355, "rotation": 137.24, "width": 105.88235294117648, "height": 101.17647058823529, "path": "body-normal.sumo-leg-front-right-stretch" + } + }, + "shadow": {"shadow": {"width": 1047.0588235294117, "height": 209.41176470588235, "path": "body-bigyak.shadow", "x": 0.9705882352941444, "y": 0.794117647058826}}, + "body-air": { + "body-air1a_00": {"x": 1.37, "y": 35.21, "width": 209.41176470588235, "height": 129.41176470588235, "path": "body-accessory.body-air1a_00"}, + "body-air1a_01": {"x": 1.37, "y": 35.21, "width": 209.41176470588235, "height": 129.41176470588235, "path": "body-accessory.body-air1a_01"}, + "body-air1a_02": {"x": 1.37, "y": 35.21, "width": 209.41176470588235, "height": 129.41176470588235, "path": "body-accessory.body-air1a_02"}, + "body-air1a_03": {"x": 1.37, "y": 35.21, "width": 209.41176470588235, "height": 129.41176470588235, "path": "body-accessory.body-air1a_03"}, + "body-air1a_04": {"x": 1.37, "y": 35.21, "width": 209.41176470588235, "height": 129.41176470588235, "path": "body-accessory.body-air1a_04"}, + "body-air1a_05": {"x": 1.37, "y": 35.21, "width": 209.41176470588235, "height": 129.41176470588235, "path": "body-accessory.body-air1a_05"}, + "body-air1a_06": {"x": 1.37, "y": 35.21, "width": 209.41176470588235, "height": 129.41176470588235, "path": "body-accessory.body-air1a_06"}, + "body-air1a_07": {"x": 1.37, "y": 35.21, "width": 209.41176470588235, "height": 129.41176470588235, "path": "body-accessory.body-air1a_07"}, + "body-air1b_00": {"x": 1.37, "y": 35.21, "width": 155.29411764705884, "height": 192.94117647058823, "path": "body-accessory.body-air1b_00"}, + "body-air1b_01": {"x": 1.37, "y": 35.21, "width": 155.29411764705884, "height": 192.94117647058823, "path": "body-accessory.body-air1b_01"}, + "body-air1b_02": {"x": 1.37, "y": 35.21, "width": 155.29411764705884, "height": 192.94117647058823, "path": "body-accessory.body-air1b_02"}, + "body-air1c_00": {"x": 1.37, "y": 35.21, "width": 200.0, "height": 289.4117647058824, "path": "body-accessory.body-air1c_00"}, + "body-air1c_01": {"x": 1.37, "y": 35.21, "width": 200.0, "height": 289.4117647058824, "path": "body-accessory.body-air1c_01"}, + "body-air1c_02": {"x": 1.37, "y": 35.21, "width": 200.0, "height": 289.4117647058824, "path": "body-accessory.body-air1c_02"}, + "body-air1c_03": {"x": 1.37, "y": 35.21, "width": 200.0, "height": 289.4117647058824, "path": "body-accessory.body-air1c_03"}, + "body-air1d_00": {"x": 1.37, "y": 35.21, "width": 204.7058823529412, "height": 272.94117647058823, "path": "body-accessory.body-air1d_00"}, + "body-air1d_01": {"x": 1.37, "y": 35.21, "width": 204.7058823529412, "height": 272.94117647058823, "path": "body-accessory.body-air1d_01"}, + "body-air1d_02": {"x": 1.37, "y": 35.21, "width": 204.7058823529412, "height": 272.94117647058823, "path": "body-accessory.body-air1d_02"}, + "body-air1d_03": {"x": 1.37, "y": 35.21, "width": 204.7058823529412, "height": 272.94117647058823, "path": "body-accessory.body-air1d_03"} + }, + "body-cheek": { + "body-cheek1a": {"x": 1.52, "y": 3.04, "width": 58.82352941176471, "height": 58.82352941176471, "path": "body-accessory.body-cheek1a"}, + "body-cheek1b": {"x": 1.52, "y": 3.04, "width": 49.411764705882355, "height": 77.64705882352942, "path": "body-accessory.body-cheek1b"}, + "body-cheek1c": {"x": 1.52, "y": 3.04, "width": 49.411764705882355, "height": 77.64705882352942, "path": "body-accessory.body-cheek1c"}, + "body-cheek1d": {"x": 1.52, "y": 3.04, "width": 49.411764705882355, "height": 75.29411764705883, "path": "body-accessory.body-cheek1d"}, + "body-cheek1e": {"x": 1.52, "y": 3.04, "width": 54.11764705882353, "height": 80.0, "path": "body-accessory.body-cheek1e"}, + "body-cheek1f": {"x": 1.52, "y": 3.04, "width": 56.470588235294116, "height": 58.82352941176471, "path": "body-accessory.body-cheek1f"}, + "body-cheek1g": {"x": 1.52, "y": 3.04, "width": 103.52941176470588, "height": 96.47058823529412, "path": "body-accessory.body-cheek1g"} + }, + "body-ground": { + "body-ground1a_00": {"x": 4.75, "y": 123.01, "width": 254.11764705882354, "height": 272.94117647058823, "path": "body-accessory.body-ground1a_00"}, + "body-ground1a_01": {"x": 4.75, "y": 123.01, "width": 254.11764705882354, "height": 272.94117647058823, "path": "body-accessory.body-ground1a_01"}, + "body-ground1a_02": {"x": 4.75, "y": 123.01, "width": 254.11764705882354, "height": 272.94117647058823, "path": "body-accessory.body-ground1a_02"}, + "body-ground1a_03": {"x": 4.75, "y": 123.01, "width": 254.11764705882354, "height": 272.94117647058823, "path": "body-accessory.body-ground1a_03"} + }, + "body-neck": { + "body-neck1a": {"x": -5.4, "y": -54.79, "width": 91.76470588235294, "height": 96.47058823529412, "path": "body-accessory.body-neck1a"}, + "body-neck1b": {"x": -5.4, "y": -54.79, "width": 103.52941176470588, "height": 117.64705882352942, "path": "body-accessory.body-neck1b"}, + "body-neck1c": {"x": -5.4, "y": -54.79, "width": 80.0, "height": 110.58823529411765, "path": "body-accessory.body-neck1c"}, + "body-neck1d": {"x": -5.4, "y": -54.79, "width": 122.3529411764706, "height": 101.17647058823529, "path": "body-accessory.body-neck1d"}, + "body-neck1e": {"x": -5.4, "y": -54.79, "width": 89.41176470588236, "height": 105.88235294117648, "path": "body-accessory.body-neck1e"}, + "body-neck1f": {"x": -5.4, "y": -54.79, "width": 80.0, "height": 80.0, "path": "body-accessory.body-neck1f"} + } + } + } + ], + "events": {"hit": {}, "hit-buff": {}, "jump": {}, "start-attack": {}}, + "keyAnimations": { + "activity/appear": "4036940331", + "attack/melee/multi-attack/attack-01": "3897908807", + "attack/melee/multi-attack/attack-02": "445763679", + "attack/melee/multi-attack/attack-03": "3663130631", + "activity/bath": "1257499719", + "attack/ranged/cast-fly": "1577594643", + "attack/ranged/cast-high": "3051257523", + "attack/ranged/cast-low": "983904028", + "attack/ranged/cast-multi": "2051614957", + "attack/ranged/cast-tail": "2283838223", + "activity/eat-bite": "1684684533", + "activity/eat-chew": "2711256467", + "attack/melee/multi-attack/end": "989689103", + "activity/entrance": "2809240631", + "defense/evade": "180682469", + "activity/evolve": "3760369471", + "battle/get-buff": "2742360208", + "battle/get-debuff": "2375931044", + "defense/hit-by-normal": "576133560", + "defense/hit-by-normal-crit": "2310646130", + "defense/hit-by-normal-dramatic": "2525036827", + "defense/hit-by-ranged-attack": "3095766500", + "defense/hit-with-shield": "3945863285", + "attack/melee/horn-gore": "2469511866", + "attack/melee/mouth-bite": "2815381870", + "action/move-back": "1919486595", + "action/move-forward": "334169668", + "attack/melee/multi-attack": "160342495", + "action/idle/normal": "928719411", + "attack/melee/normal-attack": "2954738379", + "draft/normal-draft": "3304507361", + "activity/prepare": "3475256849", + "action/idle/random-01": "3774510935", + "action/idle/random-02": "3087086321", + "action/idle/random-03": "1540593521", + "action/idle/random-04": "1912966198", + "action/idle/random-05": "2745614147", + "action/run": "980943882", + "draft/run-origin": "1255318387", + "attack/melee/shrimp": "4163974862", + "activity/sleep": "2481023416", + "attack/melee/multi-attack/start": "3455714621", + "attack/melee/tail-multi-slap": "1930192816", + "attack/melee/tail-roll": "1797279783", + "attack/melee/tail-smash": "2686448266", + "attack/melee/tail-thrash": "3253321365", + "activity/victory-pose-back-flip": "4217013558" + } + }, + "bug-02": { + "bones": [ + {"name": "@root"}, {"name": "@pivot-main", "parent": "@root"}, {"name": "@pivot-back", "parent": "@pivot-main", "x": 205, "y": 180, "color": "ff0101ff"}, + {"name": "@pivot-center", "parent": "@pivot-back", "x": -215.11, "y": -5.25, "color": "ff0101ff"}, + {"name": "@axie", "parent": "@pivot-center", "length": 213.28, "rotation": 179.04, "x": 196.39, "y": 5.16}, {"name": "@back", "parent": "@axie", "rotation": -179.04, "x": 37.63, "y": -198.19}, + {"name": "back", "parent": "@back", "length": 149.41, "rotation": 58, "x": -101.97, "y": 46.3, "transform": "noScale"}, + {"name": "@body", "parent": "@axie", "length": 226.28, "rotation": -8.35, "x": 224.58, "y": -0.53}, {"name": "@ear-left", "parent": "@axie", "rotation": -179.04, "x": 112.7, "y": -203.23}, + {"name": "ear-left", "parent": "@ear-left", "length": 113.61, "rotation": 90, "x": -7, "y": 19, "transform": "noScale"}, + {"name": "@ear-right", "parent": "@axie", "rotation": -179.04, "x": 405.28, "y": -235.33}, + {"name": "ear-right", "parent": "@ear-right", "length": 119.39, "rotation": 93, "x": -40, "y": -15, "transform": "noScale"}, + {"name": "@eyes", "parent": "@axie", "rotation": -179.04, "x": 384.24, "y": -113.67}, {"name": "@horn", "parent": "@axie", "rotation": -179.04, "x": 327.92, "y": -214.63}, + {"name": "horn", "parent": "@horn", "length": 176.72, "rotation": 90, "y": 18, "transform": "noScale"}, + {"name": "@leg-back-left", "parent": "@axie", "length": 76.4, "rotation": 100.96, "x": -15.3, "y": 102.56, "transform": "noScale"}, + {"name": "@leg-front-left", "parent": "@axie", "length": 51.19, "rotation": 93.86, "x": 134.77, "y": 149.55, "transform": "noScale"}, + {"name": "@leg-front-right", "parent": "@axie", "length": 74.83, "rotation": 83.2, "x": 382.95, "y": 121.78, "transform": "noScale"}, + {"name": "@mouth", "parent": "@axie", "rotation": -179.04, "x": 382.23, "y": 6.31}, + {"name": "body-pattern", "parent": "@body", "rotation": -170.69, "x": -267.21, "y": -49.4, "transform": "noScale"}, {"name": "@shadow", "parent": "@root", "color": "e6d713ff"}, + {"name": "@tail", "parent": "@axie", "rotation": -179.04, "x": -11.76, "y": 61.72}, + {"name": "tail", "parent": "@tail", "length": 203.67, "rotation": -42, "x": 39, "y": 92, "transform": "noScale"}, + {"name": "leg-front-right-IK", "parent": "@pivot-main", "x": -195.99, "y": -10.21, "color": "ff3f00ff"}, + {"name": "leg-front-left-IK", "parent": "@pivot-main", "x": 42.3, "y": -18.42, "color": "ff3f00ff"}, + {"name": "leg-back-left-IK", "parent": "@pivot-main", "x": 208.57, "y": 1.35, "color": "ff3f00ff"}, {"name": "@ball", "parent": "@root", "y": 191, "color": "f3981bff"}, + {"name": "ball", "parent": "@ball", "y": -191, "color": "f4a729ff"} + ], + "slots": [ + {"name": "shadow", "bone": "@shadow", "attachment": "shadow"}, {"name": "ball", "bone": "ball"}, {"name": "leg-front-right", "bone": "@leg-front-right", "attachment": "leg-front-right"}, + {"name": "ear-right", "bone": "ear-right", "attachment": "ear-right"}, {"name": "tail", "bone": "tail", "attachment": "tail"}, {"name": "back", "bone": "back", "attachment": "back"}, + {"name": "leg-back-left", "bone": "@leg-back-left", "attachment": "leg-back-left"}, {"name": "body", "bone": "@body", "attachment": "body"}, {"name": "body-pattern", "bone": "body-pattern"}, + {"name": "leg-front-left", "bone": "@leg-front-left", "attachment": "leg-front-left"}, {"name": "eyes", "bone": "@eyes", "attachment": "eyes"}, + {"name": "mouth", "bone": "@mouth", "attachment": "mouth"}, {"name": "ear-left", "bone": "ear-left", "attachment": "ear-left"}, {"name": "horn", "bone": "horn", "attachment": "horn"} + ], + "ik": [ + {"name": "leg-back-left-IK", "order": 2, "bones": ["@leg-back-left"], "target": "leg-back-left-IK"}, + {"name": "leg-front-left-IK", "order": 1, "bones": ["@leg-front-left"], "target": "leg-front-left-IK"}, + {"name": "leg-front-right-IK", "bones": ["@leg-front-right"], "target": "leg-front-right-IK"} + ], + "skins": [ + { + "name": "default", + "attachments": { + "back": {"back": {"x": 77.14588235294117, "y": 10.092352941176465, "rotation": -58, "width": 230.58823529411765, "height": 228.23529411764707, "path": "bug-02.back"}}, + "ear-left": {"ear-left": {"x": 49.01764705882353, "y": 33.07764705882353, "rotation": -90, "width": 91.76470588235294, "height": 91.76470588235294, "path": "bug-02.ear-left"}}, + "ear-right": {"ear-right": {"x": 48.4035294117647, "y": 41.32411764705882, "rotation": -93, "width": 122.3529411764706, "height": 89.41176470588236, "path": "bug-02.ear-right"}}, + "eyes": { + "eyes": {"x": 30.157647058823535, "y": 28.07647058823529, "width": 331.7647058823529, "height": 157.64705882352942, "path": "bug-02.eyes"}, + "eyes-angry": {"x": 33.62823529411765, "y": 28.07647058823529, "width": 338.8235294117647, "height": 157.64705882352942, "path": "bug-02.eyes-angry"}, + "eyes-happy": {"x": 33.62823529411765, "y": 28.07647058823529, "width": 338.8235294117647, "height": 157.64705882352942, "path": "bug-02.eyes-happy"}, + "eyes-shut": {"x": 33.62823529411765, "y": 28.07647058823529, "width": 338.8235294117647, "height": 157.64705882352942, "path": "bug-02.eyes-shut"} + }, + "horn": {"horn": {"x": 95.25294117647059, "y": -1.510588235294116, "rotation": -90, "width": 235.29411764705884, "height": 192.94117647058823, "path": "bug-02.horn"}}, + "mouth": { + "mouth": {"x": -28.489411764705885, "y": 90.25294117647059, "width": 167.05882352941177, "height": 75.29411764705883, "path": "bug-02.mouth"}, + "mouth-bite": {"x": -68.81117647058824, "y": 84.51294117647058, "width": 225.88235294117646, "height": 75.29411764705883, "path": "bug-02.mouth-bite"}, + "mouth-open": {"x": -1.78352941176471, "y": 96.9, "width": 117.64705882352942, "height": 80.0, "path": "bug-02.mouth-open"}, + "mouth-smile": {"x": -21.901176470588233, "y": 75.84117647058824, "width": 145.88235294117646, "height": 94.11764705882354, "path": "bug-02.mouth-smile"} + }, + "tail": {"tail": {"x": 90.11, "y": 1.78647058823529, "rotation": 42, "width": 200.0, "height": 197.64705882352942, "path": "bug-02.tail"}} + } + } + ], + "events": {"hit": {}, "hit-buff": {}, "jump": {}, "start-attack": {}}, + "keyAnimations": { + "activity/appear": "1023093953", + "activity/bath": "3305387968", + "attack/ranged/cast-fly": "4180526371", + "attack/ranged/cast-high": "164191126", + "attack/ranged/cast-low": "198813017", + "attack/ranged/cast-multi": "151119", + "attack/ranged/cast-tail": "997902532", + "activity/eat-bite": "1137807767", + "activity/eat-chew": "1988236421", + "activity/entrance": "3768378365", + "defense/evade": "1735454995", + "activity/evolve": "649307630", + "battle/get-buff": "1455190363", + "battle/get-debuff": "606904312", + "defense/hit-by-normal": "2045974966", + "defense/hit-by-normal-crit": "2130010601", + "defense/hit-by-normal-dramatic": "3823092125", + "defense/hit-by-ranged-attack": "2224561612", + "defense/hit-with-shield": "390714790", + "attack/melee/horn-gore": "1327954218", + "attack/melee/mouth-bite": "2237748264", + "action/move-back": "3766271173", + "action/move-forward": "2945160014", + "attack/melee/multi-attack": "905926802", + "action/idle/normal": "1659336865", + "attack/melee/normal-attack": "3305373483", + "activity/prepare": "405864717", + "action/idle/random-01": "554401889", + "action/idle/random-02": "1085666627", + "action/idle/random-03": "2021333900", + "action/idle/random-04": "1003789695", + "action/idle/random-05": "2745614147", + "action/run": "1438840721", + "draft/run-origin": "3577885069", + "attack/melee/shrimp": "3833448733", + "activity/sleep": "100562494", + "attack/melee/tail-multi-slap": "3317139533", + "attack/melee/tail-roll": "3108617565", + "attack/melee/tail-smash": "519942130", + "attack/melee/tail-thrash": "628713175", + "activity/victory-pose-back-flip": "2227634241" + } + }, + "beast-mystic-02": { + "bones": [ + {"name": "@root"}, {"name": "@pivot-main", "parent": "@root"}, {"name": "@pivot-back", "parent": "@pivot-main", "x": 205, "y": 180, "color": "ff0101ff"}, + {"name": "@pivot-center", "parent": "@pivot-back", "x": -215.11, "y": -5.25, "color": "ff0101ff"}, + {"name": "@axie", "parent": "@pivot-center", "length": 213.28, "rotation": 179.04, "x": 196.39, "y": 5.16}, {"name": "@back", "parent": "@axie", "rotation": -179.04, "x": 37.63, "y": -198.19}, + {"name": "back", "parent": "@back", "length": 149.41, "rotation": 60, "x": -32.97, "y": 79.3, "transform": "noScale"}, + {"name": "@body", "parent": "@axie", "length": 226.28, "rotation": -8.35, "x": 224.58, "y": -0.53}, {"name": "@ear-left", "parent": "@axie", "rotation": -179.04, "x": 112.7, "y": -203.23}, + {"name": "ear-left", "parent": "@ear-left", "length": 113.61, "rotation": 88, "x": -30, "y": 39.08, "transform": "noScale"}, + {"name": "@ear-right", "parent": "@axie", "rotation": -179.04, "x": 405.28, "y": -235.33}, + {"name": "ear-right", "parent": "@ear-right", "length": 119.39, "rotation": 94, "x": -23, "transform": "noScale"}, + {"name": "@eyes", "parent": "@axie", "rotation": -179.04, "x": 384.24, "y": -113.67}, {"name": "@horn", "parent": "@axie", "rotation": -179.04, "x": 327.92, "y": -214.63}, + {"name": "horn", "parent": "@horn", "length": 176.72, "rotation": 90, "y": 18, "transform": "noScale"}, + {"name": "@leg-back-left", "parent": "@axie", "length": 76.4, "rotation": 100.96, "x": -15.3, "y": 102.56, "transform": "noScale"}, + {"name": "@leg-front-left", "parent": "@axie", "length": 51.19, "rotation": 93.86, "x": 134.77, "y": 149.55, "transform": "noScale"}, + {"name": "@leg-front-right", "parent": "@axie", "length": 74.83, "rotation": 83.2, "x": 382.95, "y": 121.78, "transform": "noScale"}, + {"name": "@mouth", "parent": "@axie", "rotation": -179.04, "x": 382.23, "y": 6.31}, + {"name": "body-class", "parent": "@body", "rotation": -170.69, "x": -286.29, "y": -103.48, "transform": "noScale"}, {"name": "@shadow", "parent": "@root", "color": "e6d713ff"}, + {"name": "@tail", "parent": "@axie", "rotation": -179.04, "x": -11.76, "y": 61.72}, + {"name": "tail", "parent": "@tail", "length": 203.67, "rotation": 15, "x": -6, "y": 10, "transform": "noScale"}, + {"name": "leg-front-right-IK", "parent": "@pivot-main", "x": -195.99, "y": -10.21, "color": "ff3f00ff"}, + {"name": "leg-front-left-IK", "parent": "@pivot-main", "x": 42.3, "y": -18.42, "color": "ff3f00ff"}, + {"name": "leg-back-left-IK", "parent": "@pivot-main", "x": 208.57, "y": 1.35, "color": "ff3f00ff"}, {"name": "@ball", "parent": "@root", "y": 191, "color": "f3981bff"}, + {"name": "ball", "parent": "@ball", "y": -191, "color": "f4a729ff"}, {"name": "body-id", "parent": "@body", "rotation": -170.69, "x": -290.82, "y": -75.84}, + {"name": "mouth-accessory", "parent": "@mouth", "x": 8.74, "y": 77.12}, {"name": "mouth-blink", "parent": "@mouth", "x": 80.68, "y": 82.83} + ], + "slots": [ + {"name": "shadow", "bone": "@shadow", "attachment": "shadow"}, {"name": "ball", "bone": "ball"}, + {"name": "leg-front-right", "bone": "@leg-front-right", "attachment": "mystic-leg-front-right"}, {"name": "ear-right", "bone": "ear-right", "attachment": "ear-right"}, + {"name": "tail", "bone": "tail", "attachment": "tail"}, {"name": "back", "bone": "back", "attachment": "back"}, + {"name": "leg-back-left", "bone": "@leg-back-left", "attachment": "mystic-leg-back-left"}, {"name": "body", "bone": "@body", "attachment": "body-mystic"}, + {"name": "body-class", "bone": "body-class", "attachment": "body-class-aquatic"}, {"name": "leg-front-left", "bone": "@leg-front-left", "attachment": "mystic-leg-front-left"}, + {"name": "eyes", "bone": "@eyes", "attachment": "eyes"}, {"name": "mouth", "bone": "@mouth", "attachment": "mouth"}, {"name": "ear-left", "bone": "ear-left", "attachment": "ear-left"}, + {"name": "horn", "bone": "horn", "attachment": "horn"}, {"name": "body-id", "bone": "body-id", "attachment": "body-id"}, {"name": "mouth-accessory", "bone": "mouth-accessory"}, + {"name": "mouth-blink", "bone": "mouth-blink"} + ], + "ik": [ + {"name": "leg-back-left-IK", "order": 2, "bones": ["@leg-back-left"], "target": "leg-back-left-IK"}, + {"name": "leg-front-left-IK", "order": 1, "bones": ["@leg-front-left"], "target": "leg-front-left-IK"}, + {"name": "leg-front-right-IK", "bones": ["@leg-front-right"], "target": "leg-front-right-IK"} + ], + "skins": [ + { + "name": "default", + "attachments": { + "back": {"back": {"x": 147.09470588235294, "y": -21.100588235294115, "rotation": -60, "width": 256.47058823529414, "height": 272.94117647058823, "path": "beast-mystic-02.back"}}, + "ear-left": { + "ear-left": {"x": 79.21411764705883, "y": -21.994705882352942, "rotation": -88, "width": 169.41176470588235, "height": 223.52941176470588, "path": "beast-mystic-02.ear-left"} + }, + "ear-right": { + "ear-right": {"x": 74.18529411764706, "y": -5.610588235294116, "rotation": -94, "width": 143.52941176470588, "height": 232.94117647058823, "path": "beast-mystic-02.ear-right"} + }, + "eyes": { + "eyes": {"x": 43.29823529411764, "y": 36.90823529411765, "width": 218.82352941176472, "height": 138.8235294117647, "path": "beast-mystic-02.eyes"}, + "eyes-angry": {"x": 38.592352941176465, "y": 36.90823529411765, "width": 228.23529411764707, "height": 138.8235294117647, "path": "beast-mystic-02.eyes-angry"}, + "eyes-happy": {"x": 43.29823529411764, "y": 41.202352941176464, "width": 218.82352941176472, "height": 148.23529411764707, "path": "beast-mystic-02.eyes-happy"}, + "eyes-shut": {"x": 46.82764705882352, "y": 36.90823529411765, "width": 211.76470588235296, "height": 138.8235294117647, "path": "beast-mystic-02.eyes-shut"} + }, + "horn": {"horn": {"x": 131.66, "y": 11.824117647058825, "rotation": -90, "width": 240.0, "height": 249.41176470588235, "path": "beast-mystic-02.horn"}}, + "mouth": { + "mouth": {"x": 14.47, "y": 63.4835294117647, "width": 120.0, "height": 82.3529411764706, "path": "beast-mystic-02.mouth"}, + "mouth-bite": {"x": 34.6464705882353, "y": 55.012941176470584, "width": 277.6470588235294, "height": 115.29411764705883, "path": "beast-mystic-02.mouth-bite"}, + "mouth-open": {"x": 16.293529411764702, "y": 19.542352941176464, "width": 122.3529411764706, "height": 188.23529411764707, "path": "beast-mystic-02.mouth-open"}, + "mouth-smile": {"x": 15.47, "y": 61.895294117647055, "width": 160.0, "height": 103.52941176470588, "path": "beast-mystic-02.mouth-smile"} + }, + "mouth-accessory": { + "mouth-accessory": {"x": -52.50352941176471, "y": 4.56647058823529, "width": 117.64705882352942, "height": 117.64705882352942, "path": "beast-mystic-02.mouth-accessory"} + }, + "mouth-blink": { + "mouth-smile-blink": {"x": 0.732941176470587, "y": -0.9670588235294131, "width": 35.294117647058826, "height": 35.294117647058826, "path": "beast-mystic-02.mouth-smile-blink"} + }, + "tail": {"tail": {"x": 118.7570588235294, "y": 34.06588235294117, "rotation": -15, "width": 244.7058823529412, "height": 230.58823529411765, "path": "beast-mystic-02.tail"}} + } + } + ], + "events": {"hit": {}, "hit-buff": {}, "jump": {}, "start-attack": {}}, + "keyAnimations": { + "activity/appear": "1023093953", + "activity/bath": "3305387968", + "attack/ranged/cast-fly": "4180526371", + "attack/ranged/cast-high": "164191126", + "attack/ranged/cast-low": "198813017", + "attack/ranged/cast-multi": "151119", + "attack/ranged/cast-tail": "3899988824", + "activity/eat-bite": "1137807767", + "activity/eat-chew": "1988236421", + "activity/entrance": "3768378365", + "defense/evade": "1735454995", + "activity/evolve": "649307630", + "battle/get-buff": "1455190363", + "battle/get-debuff": "606904312", + "defense/hit-by-normal": "2045974966", + "defense/hit-by-normal-crit": "2130010601", + "defense/hit-by-normal-dramatic": "3823092125", + "defense/hit-by-ranged-attack": "2224561612", + "defense/hit-with-shield": "390714790", + "attack/melee/horn-gore": "1327954218", + "attack/melee/mouth-bite": "2237748264", + "action/move-back": "3766271173", + "action/move-forward": "2945160014", + "attack/melee/multi-attack": "3861365989", + "action/idle/normal": "1659336865", + "attack/melee/normal-attack": "3305373483", + "activity/prepare": "405864717", + "action/idle/random-01": "554401889", + "action/idle/random-02": "3888196768", + "action/idle/random-03": "2021333900", + "action/idle/random-04": "1003789695", + "action/idle/random-05": "2745614147", + "action/run": "3858829480", + "draft/run-origin": "3947527336", + "attack/melee/shrimp": "3833448733", + "activity/sleep": "100562494", + "attack/melee/tail-multi-slap": "3317139533", + "attack/melee/tail-roll": "3108617565", + "attack/melee/tail-smash": "519942130", + "attack/melee/tail-thrash": "628713175", + "activity/victory-pose-back-flip": "2227634241" + } + }, + "reptile-12": { + "bones": [ + {"name": "@root"}, {"name": "@pivot-main", "parent": "@root"}, {"name": "@pivot-back", "parent": "@pivot-main", "x": 205, "y": 180, "color": "ff0101ff"}, + {"name": "@pivot-center", "parent": "@pivot-back", "x": -215.11, "y": -5.25, "color": "ff0101ff"}, + {"name": "@axie", "parent": "@pivot-center", "length": 213.28, "rotation": 179.04, "x": 196.39, "y": 5.16}, {"name": "@back", "parent": "@axie", "rotation": -179.04, "x": 37.63, "y": -198.19}, + {"name": "back", "parent": "@back", "length": 149.41, "rotation": 64, "x": -51.97, "y": -9.7, "transform": "noScale"}, + {"name": "@body", "parent": "@axie", "length": 226.28, "rotation": -8.35, "x": 224.58, "y": -0.53}, {"name": "@ear-left", "parent": "@axie", "rotation": -179.04, "x": 112.7, "y": -203.23}, + {"name": "ear-left", "parent": "@ear-left", "length": 113.61, "rotation": 52, "x": -27, "y": -17, "transform": "noScale"}, + {"name": "@ear-right", "parent": "@axie", "rotation": -179.04, "x": 405.28, "y": -235.33}, + {"name": "ear-right", "parent": "@ear-right", "length": 119.39, "rotation": 93, "x": -40, "y": -54, "transform": "noScale"}, + {"name": "@eyes", "parent": "@axie", "rotation": -179.04, "x": 384.24, "y": -113.67}, {"name": "@horn", "parent": "@axie", "rotation": -179.04, "x": 327.92, "y": -214.63}, + {"name": "horn", "parent": "@horn", "length": 176.72, "rotation": 90, "y": 18, "transform": "noScale"}, + {"name": "@leg-back-left", "parent": "@axie", "length": 76.4, "rotation": 100.96, "x": -15.3, "y": 102.56, "transform": "noScale"}, + {"name": "@leg-front-left", "parent": "@axie", "length": 51.19, "rotation": 93.86, "x": 134.77, "y": 149.55, "transform": "noScale"}, + {"name": "@leg-front-right", "parent": "@axie", "length": 74.83, "rotation": 83.2, "x": 382.95, "y": 121.78, "transform": "noScale"}, + {"name": "@mouth", "parent": "@axie", "rotation": -179.04, "x": 382.23, "y": 6.31}, + {"name": "body-pattern", "parent": "@body", "rotation": -170.69, "x": -267.21, "y": -49.4, "transform": "noScale"}, {"name": "@shadow", "parent": "@root", "color": "e6d713ff"}, + {"name": "@tail", "parent": "@axie", "rotation": -179.04, "x": -11.76, "y": 61.72}, + {"name": "tail", "parent": "@tail", "length": 203.67, "rotation": -27, "x": 3, "y": 37, "transform": "noScale"}, + {"name": "leg-front-right-IK", "parent": "@pivot-main", "x": -195.99, "y": -10.21, "color": "ff3f00ff"}, + {"name": "leg-front-left-IK", "parent": "@pivot-main", "x": 42.3, "y": -18.42, "color": "ff3f00ff"}, + {"name": "leg-back-left-IK", "parent": "@pivot-main", "x": 208.57, "y": 1.35, "color": "ff3f00ff"}, {"name": "@ball", "parent": "@root", "y": 191, "color": "f3981bff"}, + {"name": "ball", "parent": "@ball", "y": -191, "color": "f4a729ff"} + ], + "slots": [ + {"name": "shadow", "bone": "@shadow", "attachment": "shadow"}, {"name": "ball", "bone": "ball"}, {"name": "leg-front-right", "bone": "@leg-front-right", "attachment": "leg-front-right"}, + {"name": "ear-right", "bone": "ear-right", "attachment": "ear-right"}, {"name": "tail", "bone": "tail", "attachment": "tail"}, {"name": "back", "bone": "back", "attachment": "back"}, + {"name": "leg-back-left", "bone": "@leg-back-left", "attachment": "leg-back-left"}, {"name": "body", "bone": "@body", "attachment": "body"}, {"name": "body-pattern", "bone": "body-pattern"}, + {"name": "leg-front-left", "bone": "@leg-front-left", "attachment": "leg-front-left"}, {"name": "eyes", "bone": "@eyes", "attachment": "eyes"}, + {"name": "mouth", "bone": "@mouth", "attachment": "mouth"}, {"name": "ear-left", "bone": "ear-left", "attachment": "ear-left"}, {"name": "horn", "bone": "horn", "attachment": "horn"} + ], + "ik": [ + {"name": "leg-back-left-IK", "order": 2, "bones": ["@leg-back-left"], "target": "leg-back-left-IK"}, + {"name": "leg-front-left-IK", "order": 1, "bones": ["@leg-front-left"], "target": "leg-front-left-IK"}, + {"name": "leg-front-right-IK", "bones": ["@leg-front-right"], "target": "leg-front-right-IK"} + ], + "skins": [ + { + "name": "default", + "attachments": { + "back": {"back": {"x": 89.76882352941176, "y": 16.438235294117653, "rotation": -64, "width": 265.88235294117646, "height": 258.8235294117647, "path": "reptile-12.back"}}, + "ear-left": {"ear-left": {"x": 46.4, "y": -36.98470588235294, "rotation": -52, "width": 160.0, "height": 143.52941176470588, "path": "reptile-12.ear-left"}}, + "ear-right": {"ear-right": {"x": 7.807647058823522, "y": 5.468823529411768, "rotation": -93, "width": 131.76470588235296, "height": 145.88235294117646, "path": "reptile-12.ear-right"}}, + "eyes": { + "eyes": {"x": 22.33, "y": -11.04, "width": 284, "height": 33, "path": "reptile-12.eyes"}, + "eyes-angry": {"x": 0.33, "y": -9.04, "width": 328, "height": 135, "path": "reptile-12.eyes-angry"}, + "eyes-happy": {"x": 22.33, "y": -11.04, "width": 284, "height": 33, "path": "reptile-12.eyes-happy"}, + "eyes-shut": {"x": 22.33, "y": -12.04, "width": 284, "height": 31, "path": "reptile-12.eyes-shut"} + }, + "horn": {"horn": {"x": 97.45882352941177, "y": -1.131176470588232, "rotation": -90, "width": 265.88235294117646, "height": 225.88235294117646, "path": "reptile-12.horn"}}, + "mouth": { + "mouth": {"x": 14.33, "y": 61.96, "width": 94, "height": 17, "path": "reptile-12.mouth"}, + "mouth-bite": {"x": 16.33, "y": 45.46, "width": 204, "height": 76, "path": "reptile-12.mouth-bite"}, + "mouth-open": {"x": 22.83, "y": 34.46, "width": 107, "height": 128, "path": "reptile-12.mouth-open"}, + "mouth-smile": {"x": 20.83, "y": 57.96, "width": 91, "height": 41, "path": "reptile-12.mouth-smile"} + }, + "tail": {"tail": {"x": 103.88588235294117, "y": 9.735294117647058, "rotation": 27, "width": 310.5882352941177, "height": 183.52941176470588, "path": "reptile-12.tail"}} + } + } + ], + "events": {"hit": {}, "hit-buff": {}, "jump": {}, "start-attack": {}}, + "keyAnimations": { + "activity/appear": "1023093953", + "activity/bath": "3305387968", + "attack/ranged/cast-fly": "4180526371", + "attack/ranged/cast-high": "164191126", + "attack/ranged/cast-low": "198813017", + "attack/ranged/cast-multi": "151119", + "attack/ranged/cast-tail": "997902532", + "activity/eat-bite": "1137807767", + "activity/eat-chew": "1988236421", + "activity/entrance": "3768378365", + "defense/evade": "1735454995", + "activity/evolve": "649307630", + "battle/get-buff": "1455190363", + "battle/get-debuff": "606904312", + "defense/hit-by-normal": "2045974966", + "defense/hit-by-normal-crit": "2130010601", + "defense/hit-by-normal-dramatic": "3823092125", + "defense/hit-by-ranged-attack": "2224561612", + "defense/hit-with-shield": "390714790", + "attack/melee/horn-gore": "1327954218", + "attack/melee/mouth-bite": "2237748264", + "action/move-back": "3766271173", + "action/move-forward": "2945160014", + "attack/melee/multi-attack": "905926802", + "action/idle/normal": "1659336865", + "attack/melee/normal-attack": "3305373483", + "activity/prepare": "405864717", + "action/idle/random-01": "554401889", + "action/idle/random-02": "1085666627", + "action/idle/random-03": "2021333900", + "action/idle/random-04": "1003789695", + "action/idle/random-05": "2745614147", + "action/run": "1438840721", + "draft/run-origin": "3577885069", + "attack/melee/shrimp": "3833448733", + "activity/sleep": "100562494", + "attack/melee/tail-multi-slap": "3317139533", + "attack/melee/tail-roll": "3108617565", + "attack/melee/tail-smash": "519942130", + "attack/melee/tail-thrash": "628713175", + "activity/victory-pose-back-flip": "2227634241" + } + }, + "body-normal": { + "bones": [ + {"name": "@root"}, {"name": "@pivot-main", "parent": "@root"}, {"name": "@pivot-back", "parent": "@pivot-main", "x": 205, "y": 180, "color": "ff0101ff"}, + {"name": "@pivot-center", "parent": "@pivot-back", "x": -215.11, "y": -5.25, "color": "ff0101ff"}, + {"name": "@axie", "parent": "@pivot-center", "length": 213.28, "rotation": 179.04, "x": 196.39, "y": 5.16}, {"name": "@back", "parent": "@axie", "rotation": -179.04, "x": 37.63, "y": -198.19}, + {"name": "@body", "parent": "@axie", "length": 226.28, "rotation": -8.35, "x": 224.58, "y": -0.53}, {"name": "@ear-left", "parent": "@axie", "rotation": -179.04, "x": 112.7, "y": -203.23}, + {"name": "@ear-right", "parent": "@axie", "rotation": -179.04, "x": 405.28, "y": -235.33}, {"name": "@eyes", "parent": "@axie", "rotation": -179.04, "x": 384.24, "y": -113.67}, + {"name": "@horn", "parent": "@axie", "rotation": -179.04, "x": 327.92, "y": -214.63}, + {"name": "@leg-back-left", "parent": "@axie", "length": 76.4, "rotation": 100.96, "x": -15.3, "y": 102.56, "transform": "noScale"}, + {"name": "@leg-front-left", "parent": "@axie", "length": 51.19, "rotation": 93.86, "x": 134.77, "y": 149.55, "transform": "noScale"}, + {"name": "@leg-front-right", "parent": "@axie", "length": 74.83, "rotation": 83.2, "x": 382.95, "y": 121.78, "transform": "noScale"}, + {"name": "@mouth", "parent": "@axie", "rotation": -179.04, "x": 382.23, "y": 6.31}, + {"name": "body-pattern", "parent": "@body", "rotation": -170.69, "x": -267.21, "y": -49.4, "transform": "noScale"}, {"name": "@shadow", "parent": "@root", "color": "e6d713ff"}, + {"name": "@tail", "parent": "@axie", "rotation": -179.04, "x": -11.76, "y": 61.72}, {"name": "leg-front-right-IK", "parent": "@pivot-main", "x": -195.99, "y": -10.21, "color": "ff3f00ff"}, + {"name": "leg-front-left-IK", "parent": "@pivot-main", "x": 42.3, "y": -18.42, "color": "ff3f00ff"}, + {"name": "leg-back-left-IK", "parent": "@pivot-main", "x": 208.57, "y": 1.35, "color": "ff3f00ff"}, {"name": "@ball", "parent": "@root", "y": 191, "color": "f3981bff"}, + {"name": "ball", "parent": "@ball", "y": -191, "color": "f4a729ff"}, {"name": "@body-neck", "parent": "@pivot-center", "x": -161.89, "y": -53.75, "color": "ff0101ff"}, + {"name": "@body-ground", "parent": "@pivot-main", "x": 220, "transform": "noRotationOrReflection", "color": "ff0101ff"}, + {"name": "@body-hip", "parent": "@pivot-center", "x": 240.11, "y": 55.25, "color": "ff0101ff"}, + {"name": "@body-air", "parent": "@pivot-back", "x": 63, "y": 365, "transform": "noRotationOrReflection", "color": "ff0101ff"}, + {"name": "@body-cheek", "parent": "@pivot-center", "x": 15.11, "y": 47.25, "color": "ff0101ff"} + ], + "slots": [ + {"name": "shadow", "bone": "@shadow", "attachment": "shadow"}, {"name": "ball", "bone": "ball"}, {"name": "leg-front-right", "bone": "@leg-front-right", "attachment": "leg-front-right"}, + {"name": "leg-back-left", "bone": "@leg-back-left", "attachment": "leg-back-left"}, {"name": "body", "bone": "@body", "attachment": "body"}, {"name": "body-pattern", "bone": "body-pattern"}, + {"name": "body-hip", "bone": "@body-hip", "attachment": "body-hip"}, {"name": "leg-front-left", "bone": "@leg-front-left", "attachment": "leg-front-left"}, + {"name": "body-neck", "bone": "@body-neck", "attachment": "body-neck"}, {"name": "body-ground", "bone": "@body-ground", "attachment": "body-ground"}, + {"name": "body-air", "bone": "@body-air", "attachment": "body-air"}, {"name": "body-cheek", "bone": "@body-cheek", "attachment": "body-cheek"} + ], + "ik": [ + {"name": "leg-back-left-IK", "order": 2, "bones": ["@leg-back-left"], "target": "leg-back-left-IK"}, + {"name": "leg-front-left-IK", "order": 1, "bones": ["@leg-front-left"], "target": "leg-front-left-IK"}, + {"name": "leg-front-right-IK", "bones": ["@leg-front-right"], "target": "leg-front-right-IK"} + ], + "skins": [ + { + "name": "default", + "attachments": { + "ball": {"ball": {"y": 191.0, "width": 392.94117647058823, "height": 400.0, "path": "body-normal.ball", "x": 0.029411764705884025}}, + "body": {"body": {"x": -0.6435294117646959, "y": -73.31764705882354, "rotation": -170.69, "width": 677.6470588235294, "height": 508.2352941176471, "path": "body-normal.body"}}, + "body-air": { + "body-air1a_00": {"x": 1.37, "y": 35.21, "width": 209.41176470588235, "height": 129.41176470588235, "path": "body-accessory.body-air1a_00"}, + "body-air1a_01": {"x": 1.37, "y": 35.21, "width": 209.41176470588235, "height": 129.41176470588235, "path": "body-accessory.body-air1a_01"}, + "body-air1a_02": {"x": 1.37, "y": 35.21, "width": 209.41176470588235, "height": 129.41176470588235, "path": "body-accessory.body-air1a_02"}, + "body-air1a_03": {"x": 1.37, "y": 35.21, "width": 209.41176470588235, "height": 129.41176470588235, "path": "body-accessory.body-air1a_03"}, + "body-air1a_04": {"x": 1.37, "y": 35.21, "width": 209.41176470588235, "height": 129.41176470588235, "path": "body-accessory.body-air1a_04"}, + "body-air1a_05": {"x": 1.37, "y": 35.21, "width": 209.41176470588235, "height": 129.41176470588235, "path": "body-accessory.body-air1a_05"}, + "body-air1a_06": {"x": 1.37, "y": 35.21, "width": 209.41176470588235, "height": 129.41176470588235, "path": "body-accessory.body-air1a_06"}, + "body-air1a_07": {"x": 1.37, "y": 35.21, "width": 209.41176470588235, "height": 129.41176470588235, "path": "body-accessory.body-air1a_07"}, + "body-air1b_00": {"x": 1.37, "y": 35.21, "width": 155.29411764705884, "height": 192.94117647058823, "path": "body-accessory.body-air1b_00"}, + "body-air1b_01": {"x": 1.37, "y": 35.21, "width": 155.29411764705884, "height": 192.94117647058823, "path": "body-accessory.body-air1b_01"}, + "body-air1b_02": {"x": 1.37, "y": 35.21, "width": 155.29411764705884, "height": 192.94117647058823, "path": "body-accessory.body-air1b_02"}, + "body-air1c_00": {"x": 1.37, "y": 35.21, "width": 200.0, "height": 289.4117647058824, "path": "body-accessory.body-air1c_00"}, + "body-air1c_01": {"x": 1.37, "y": 35.21, "width": 200.0, "height": 289.4117647058824, "path": "body-accessory.body-air1c_01"}, + "body-air1c_02": {"x": 1.37, "y": 35.21, "width": 200.0, "height": 289.4117647058824, "path": "body-accessory.body-air1c_02"}, + "body-air1c_03": {"x": 1.37, "y": 35.21, "width": 200.0, "height": 289.4117647058824, "path": "body-accessory.body-air1c_03"}, + "body-air1d_00": {"x": 1.37, "y": 35.21, "width": 204.7058823529412, "height": 272.94117647058823, "path": "body-accessory.body-air1d_00"}, + "body-air1d_01": {"x": 1.37, "y": 35.21, "width": 204.7058823529412, "height": 272.94117647058823, "path": "body-accessory.body-air1d_01"}, + "body-air1d_02": {"x": 1.37, "y": 35.21, "width": 204.7058823529412, "height": 272.94117647058823, "path": "body-accessory.body-air1d_02"}, + "body-air1d_03": {"x": 1.37, "y": 35.21, "width": 204.7058823529412, "height": 272.94117647058823, "path": "body-accessory.body-air1d_03"} + }, + "body-cheek": { + "body-cheek1a": {"x": 1.52, "y": 3.04, "width": 58.82352941176471, "height": 58.82352941176471, "path": "body-accessory.body-cheek1a"}, + "body-cheek1b": {"x": 1.52, "y": 3.04, "width": 49.411764705882355, "height": 77.64705882352942, "path": "body-accessory.body-cheek1b"}, + "body-cheek1c": {"x": 1.52, "y": 3.04, "width": 49.411764705882355, "height": 77.64705882352942, "path": "body-accessory.body-cheek1c"}, + "body-cheek1d": {"x": 1.52, "y": 3.04, "width": 49.411764705882355, "height": 75.29411764705883, "path": "body-accessory.body-cheek1d"}, + "body-cheek1e": {"x": 1.52, "y": 3.04, "width": 54.11764705882353, "height": 80.0, "path": "body-accessory.body-cheek1e"}, + "body-cheek1f": {"x": 1.52, "y": 3.04, "width": 56.470588235294116, "height": 58.82352941176471, "path": "body-accessory.body-cheek1f"}, + "body-cheek1g": {"x": 1.52, "y": 3.04, "width": 103.52941176470588, "height": 96.47058823529412, "path": "body-accessory.body-cheek1g"} + }, + "body-ground": { + "body-ground1a_00": {"x": 4.75, "y": 123.01, "width": 254.11764705882354, "height": 272.94117647058823, "path": "body-accessory.body-ground1a_00"}, + "body-ground1a_01": {"x": 4.75, "y": 123.01, "width": 254.11764705882354, "height": 272.94117647058823, "path": "body-accessory.body-ground1a_01"}, + "body-ground1a_02": {"x": 4.75, "y": 123.01, "width": 254.11764705882354, "height": 272.94117647058823, "path": "body-accessory.body-ground1a_02"}, + "body-ground1a_03": {"x": 4.75, "y": 123.01, "width": 254.11764705882354, "height": 272.94117647058823, "path": "body-accessory.body-ground1a_03"} + }, + "body-hip": { + "body-hip1a": {"x": -16.0, "width": 108.23529411764706, "height": 138.8235294117647, "path": "body-accessory.body-hip1a", "y": 0.0}, + "body-hip1b": {"x": -16.0, "width": 209.41176470588235, "height": 214.11764705882354, "path": "body-accessory.body-hip1b", "y": 0.0}, + "body-hip1c": {"x": -16.0, "width": 122.3529411764706, "height": 157.64705882352942, "path": "body-accessory.body-hip1c", "y": 0.0}, + "body-hip1d": {"x": -16.0, "width": 202.35294117647058, "height": 143.52941176470588, "path": "body-accessory.body-hip1d", "y": 0.0} + }, + "body-neck": { + "body-neck1a": {"x": -5.4, "y": -54.79, "width": 91.76470588235294, "height": 96.47058823529412, "path": "body-accessory.body-neck1a"}, + "body-neck1b": {"x": -5.4, "y": -54.79, "width": 103.52941176470588, "height": 117.64705882352942, "path": "body-accessory.body-neck1b"}, + "body-neck1c": {"x": -5.4, "y": -54.79, "width": 80.0, "height": 110.58823529411765, "path": "body-accessory.body-neck1c"}, + "body-neck1d": {"x": -5.4, "y": -54.79, "width": 122.3529411764706, "height": 101.17647058823529, "path": "body-accessory.body-neck1d"}, + "body-neck1e": {"x": -5.4, "y": -54.79, "width": 89.41176470588236, "height": 105.88235294117648, "path": "body-accessory.body-neck1e"}, + "body-neck1f": {"x": -5.4, "y": -54.79, "width": 80.0, "height": 80.0, "path": "body-accessory.body-neck1f"} + }, + "leg-back-left": { + "leg-back-left": {"x": 32.56, "y": 0.31764705882352895, "rotation": 83.45, "width": 80.0, "height": 91.76470588235294, "path": "body-normal.leg-back-left"}, + "leg-back-left-long": {"x": 35.037058823529414, "y": -4.5, "rotation": 221.45, "width": 84.70588235294117, "height": 80.0, "path": "body-normal.leg-back-left-long"}, + "leg-back-left-stretch": { + "x": 27.84882352941176, "y": 2.462352941176471, "rotation": 54.45, "width": 65.88235294117648, "height": 68.23529411764706, "path": "body-normal.leg-back-left-stretch" + } + }, + "leg-front-left": { + "leg-front-left": {"x": 22.685882352941174, "y": 2.091764705882351, "rotation": 97.51, "width": 70.58823529411765, "height": 61.1764705882353, "path": "body-normal.leg-front-left"}, + "leg-front-left-long": { + "x": 28.450588235294116, "y": -5.187058823529413, "rotation": -173.75, "width": 87.05882352941177, "height": 75.29411764705883, "path": "body-normal.leg-front-left-long" + }, + "leg-front-left-stretch": { + "x": 20.12235294117647, "y": -3.107058823529413, "rotation": 142.15, "width": 68.23529411764706, "height": 75.29411764705883, "path": "body-normal.leg-front-left-stretch" + } + }, + "leg-front-right": { + "leg-front-right": {"x": 31.35, "y": -0.5423529411764709, "rotation": 87.96, "width": 80.0, "height": 91.76470588235294, "path": "body-normal.leg-front-right"}, + "leg-front-right-long": { + "x": 37.53058823529412, "y": 0.20294117647058696, "rotation": 205.96, "width": 87.05882352941177, "height": 75.29411764705883, "path": "body-normal.leg-front-right-long" + }, + "leg-front-right-stretch": {"x": 31.15, "y": 2.192352941176471, "rotation": 142.01, "width": 80.0, "height": 68.23529411764706, "path": "body-normal.leg-front-right-stretch"} + }, + "shadow": {"shadow": {"width": 945.8823529411765, "height": 190.58823529411765, "path": "body-normal.shadow", "x": 0.05882352941176805, "y": 0.20588235294117396}} + } + } + ], + "events": {"hit": {}, "hit-buff": {}, "jump": {}, "start-attack": {}}, + "keyAnimations": { + "activity/appear": "1023093953", + "activity/bath": "3305387968", + "attack/ranged/cast-fly": "4180526371", + "attack/ranged/cast-high": "164191126", + "attack/ranged/cast-low": "198813017", + "attack/ranged/cast-multi": "151119", + "attack/ranged/cast-tail": "997902532", + "activity/eat-bite": "1137807767", + "activity/eat-chew": "1988236421", + "activity/entrance": "3768378365", + "defense/evade": "1735454995", + "activity/evolve": "649307630", + "battle/get-buff": "1455190363", + "battle/get-debuff": "606904312", + "defense/hit-by-normal": "2045974966", + "defense/hit-by-normal-crit": "2130010601", + "defense/hit-by-normal-dramatic": "3823092125", + "defense/hit-by-ranged-attack": "2224561612", + "defense/hit-with-shield": "390714790", + "attack/melee/horn-gore": "1327954218", + "attack/melee/mouth-bite": "2237748264", + "action/move-back": "3766271173", + "action/move-forward": "2945160014", + "attack/melee/multi-attack": "905926802", + "action/idle/normal": "1659336865", + "attack/melee/normal-attack": "3305373483", + "activity/prepare": "405864717", + "action/idle/random-01": "554401889", + "action/idle/random-02": "1085666627", + "action/idle/random-03": "2021333900", + "action/idle/random-04": "1003789695", + "action/idle/random-05": "2745614147", + "action/run": "1438840721", + "draft/run-origin": "3577885069", + "attack/melee/shrimp": "3833448733", + "activity/sleep": "100562494", + "attack/melee/tail-multi-slap": "3317139533", + "attack/melee/tail-roll": "3108617565", + "attack/melee/tail-smash": "519942130", + "attack/melee/tail-thrash": "628713175", + "activity/victory-pose-back-flip": "2227634241" + } + }, + "plant-10": { + "bones": [ + {"name": "@root"}, {"name": "@pivot-main", "parent": "@root"}, {"name": "@pivot-back", "parent": "@pivot-main", "x": 205, "y": 180, "color": "ff0101ff"}, + {"name": "@pivot-center", "parent": "@pivot-back", "x": -215.11, "y": -5.25, "color": "ff0101ff"}, + {"name": "@axie", "parent": "@pivot-center", "length": 213.28, "rotation": 179.04, "x": 196.39, "y": 5.16}, {"name": "@back", "parent": "@axie", "rotation": -179.04, "x": 37.63, "y": -198.19}, + {"name": "back", "parent": "@back", "length": 149.41, "rotation": 58, "x": -15.97, "y": 46.3, "transform": "noScale"}, + {"name": "@body", "parent": "@axie", "length": 226.28, "rotation": -8.35, "x": 224.58, "y": -0.53}, {"name": "@ear-left", "parent": "@axie", "rotation": -179.04, "x": 112.7, "y": -203.23}, + {"name": "ear-left", "parent": "@ear-left", "length": 113.61, "rotation": 46, "x": -7, "y": -73, "transform": "noScale"}, + {"name": "@ear-right", "parent": "@axie", "rotation": -179.04, "x": 405.28, "y": -235.33}, + {"name": "ear-right", "parent": "@ear-right", "length": 119.39, "rotation": 133, "x": -77, "y": -96, "transform": "noScale"}, + {"name": "@eyes", "parent": "@axie", "rotation": -179.04, "x": 384.24, "y": -113.67}, {"name": "@horn", "parent": "@axie", "rotation": -179.04, "x": 327.92, "y": -214.63}, + {"name": "horn", "parent": "@horn", "length": 176.72, "rotation": 90, "y": 18, "transform": "noScale"}, + {"name": "@leg-back-left", "parent": "@axie", "length": 76.4, "rotation": 100.96, "x": -15.3, "y": 102.56, "transform": "noScale"}, + {"name": "@leg-front-left", "parent": "@axie", "length": 51.19, "rotation": 93.86, "x": 134.77, "y": 149.55, "transform": "noScale"}, + {"name": "@leg-front-right", "parent": "@axie", "length": 74.83, "rotation": 83.2, "x": 382.95, "y": 121.78, "transform": "noScale"}, + {"name": "@mouth", "parent": "@axie", "rotation": -179.04, "x": 382.23, "y": 6.31}, + {"name": "body-pattern", "parent": "@body", "rotation": -170.69, "x": -267.21, "y": -49.4, "transform": "noScale"}, {"name": "@shadow", "parent": "@root", "color": "e6d713ff"}, + {"name": "@tail", "parent": "@axie", "rotation": -179.04, "x": -11.76, "y": 61.72}, + {"name": "tail", "parent": "@tail", "length": 203.67, "rotation": 42, "x": 39, "y": -22, "transform": "noScale"}, + {"name": "leg-front-right-IK", "parent": "@pivot-main", "x": -195.99, "y": -10.21, "color": "ff3f00ff"}, + {"name": "leg-front-left-IK", "parent": "@pivot-main", "x": 42.3, "y": -18.42, "color": "ff3f00ff"}, + {"name": "leg-back-left-IK", "parent": "@pivot-main", "x": 208.57, "y": 1.35, "color": "ff3f00ff"}, {"name": "@ball", "parent": "@root", "y": 191, "color": "f3981bff"}, + {"name": "ball", "parent": "@ball", "y": -191, "color": "f4a729ff"} + ], + "slots": [ + {"name": "shadow", "bone": "@shadow", "attachment": "shadow"}, {"name": "ball", "bone": "ball"}, {"name": "leg-front-right", "bone": "@leg-front-right", "attachment": "leg-front-right"}, + {"name": "ear-right", "bone": "ear-right", "attachment": "ear-right"}, {"name": "tail", "bone": "tail", "attachment": "tail"}, {"name": "back", "bone": "back", "attachment": "back"}, + {"name": "leg-back-left", "bone": "@leg-back-left", "attachment": "leg-back-left"}, {"name": "body", "bone": "@body", "attachment": "body"}, {"name": "body-pattern", "bone": "body-pattern"}, + {"name": "leg-front-left", "bone": "@leg-front-left", "attachment": "leg-front-left"}, {"name": "eyes", "bone": "@eyes", "attachment": "eyes"}, + {"name": "mouth", "bone": "@mouth", "attachment": "mouth"}, {"name": "ear-left", "bone": "ear-left", "attachment": "ear-left"}, {"name": "horn", "bone": "horn", "attachment": "horn"} + ], + "ik": [ + {"name": "leg-back-left-IK", "order": 2, "bones": ["@leg-back-left"], "target": "leg-back-left-IK"}, + {"name": "leg-front-left-IK", "order": 1, "bones": ["@leg-front-left"], "target": "leg-front-left-IK"}, + {"name": "leg-front-right-IK", "bones": ["@leg-front-right"], "target": "leg-front-right-IK"} + ], + "skins": [ + { + "name": "default", + "attachments": { + "back": {"back": {"x": 48.8835294117647, "y": 22.317058823529422, "rotation": -58, "width": 282.3529411764706, "height": 364.70588235294116, "path": "plant-10.back"}}, + "ear-left": {"ear-left": {"x": 69.83470588235294, "y": 20.755294117647058, "rotation": -46, "width": 136.47058823529412, "height": 183.52941176470588, "path": "plant-10.ear-left"}}, + "ear-right": {"ear-right": {"x": 24.479411764705883, "y": 3.118823529411768, "rotation": -133, "width": 112.94117647058823, "height": 145.88235294117646, "path": "plant-10.ear-right"}}, + "eyes": { + "eyes": {"x": 22.312352941176464, "y": -0.3935294117647101, "width": 268.2352941176471, "height": 117.64705882352942, "path": "plant-10.eyes"}, + "eyes-angry": {"x": 22.312352941176464, "y": -0.3935294117647101, "width": 268.2352941176471, "height": 117.64705882352942, "path": "plant-10.eyes-angry"}, + "eyes-happy": {"x": 22.312352941176464, "y": -0.3935294117647101, "width": 268.2352941176471, "height": 117.64705882352942, "path": "plant-10.eyes-happy"}, + "eyes-shut": {"x": 22.312352941176464, "y": -0.3935294117647101, "width": 268.2352941176471, "height": 117.64705882352942, "path": "plant-10.eyes-shut"} + }, + "horn": {"horn": {"x": 92.9970588235294, "y": 8.628823529411768, "rotation": -90, "width": 204.7058823529412, "height": 225.88235294117646, "path": "plant-10.horn"}}, + "mouth": { + "mouth": {"x": 28.467647058823523, "y": 13.172352941176463, "width": 171.76470588235296, "height": 188.23529411764707, "path": "plant-10.mouth"}, + "mouth-bite": {"x": 28.467647058823523, "y": 13.172352941176463, "width": 171.76470588235296, "height": 188.23529411764707, "path": "plant-10.mouth-bite"}, + "mouth-open": {"x": 26.224705882352943, "y": 12.852352941176465, "width": 176.47058823529412, "height": 188.23529411764707, "path": "plant-10.mouth-open"}, + "mouth-smile": {"x": 28.54764705882352, "y": 13.312352941176464, "width": 171.76470588235296, "height": 188.23529411764707, "path": "plant-10.mouth-smile"} + }, + "tail": {"tail": {"x": 115.93882352941176, "y": -23.32117647058823, "rotation": -42, "width": 265.88235294117646, "height": 185.88235294117646, "path": "plant-10.tail"}} + } + } + ], + "events": {"hit": {}, "hit-buff": {}, "jump": {}, "start-attack": {}}, + "keyAnimations": { + "activity/appear": "1023093953", + "activity/bath": "3305387968", + "attack/ranged/cast-fly": "4180526371", + "attack/ranged/cast-high": "164191126", + "attack/ranged/cast-low": "198813017", + "attack/ranged/cast-multi": "151119", + "attack/ranged/cast-tail": "997902532", + "activity/eat-bite": "1137807767", + "activity/eat-chew": "1988236421", + "activity/entrance": "3768378365", + "defense/evade": "1735454995", + "activity/evolve": "649307630", + "battle/get-buff": "1455190363", + "battle/get-debuff": "606904312", + "defense/hit-by-normal": "2045974966", + "defense/hit-by-normal-crit": "2130010601", + "defense/hit-by-normal-dramatic": "3823092125", + "defense/hit-by-ranged-attack": "2224561612", + "defense/hit-with-shield": "390714790", + "attack/melee/horn-gore": "1327954218", + "attack/melee/mouth-bite": "2237748264", + "action/move-back": "3766271173", + "action/move-forward": "2945160014", + "attack/melee/multi-attack": "905926802", + "action/idle/normal": "1659336865", + "attack/melee/normal-attack": "3305373483", + "activity/prepare": "405864717", + "action/idle/random-01": "554401889", + "action/idle/random-02": "1085666627", + "action/idle/random-03": "2021333900", + "action/idle/random-04": "1003789695", + "action/idle/random-05": "2745614147", + "action/run": "1438840721", + "draft/run-origin": "3577885069", + "attack/melee/shrimp": "3833448733", + "activity/sleep": "100562494", + "attack/melee/tail-multi-slap": "3317139533", + "attack/melee/tail-roll": "3108617565", + "attack/melee/tail-smash": "519942130", + "attack/melee/tail-thrash": "628713175", + "activity/victory-pose-back-flip": "2227634241" + } + }, + "beast-10": { + "bones": [ + {"name": "@root"}, {"name": "@pivot-main", "parent": "@root"}, {"name": "@pivot-back", "parent": "@pivot-main", "x": 205, "y": 180, "color": "ff0101ff"}, + {"name": "@pivot-center", "parent": "@pivot-back", "x": -215.11, "y": -5.25, "color": "ff0101ff"}, + {"name": "@axie", "parent": "@pivot-center", "length": 213.28, "rotation": 179.04, "x": 196.39, "y": 5.16}, {"name": "@back", "parent": "@axie", "rotation": -179.04, "x": 37.63, "y": -198.19}, + {"name": "back", "parent": "@back", "length": 149.41, "rotation": 58, "x": -13.97, "y": 26.3, "transform": "noScale"}, + {"name": "@body", "parent": "@axie", "length": 226.28, "rotation": -8.35, "x": 224.58, "y": -0.53}, {"name": "@ear-left", "parent": "@axie", "rotation": -179.04, "x": 112.7, "y": -203.23}, + {"name": "ear-left", "parent": "@ear-left", "length": 113.61, "rotation": 90, "x": -27, "y": 19, "transform": "noScale"}, + {"name": "@ear-right", "parent": "@axie", "rotation": -179.04, "x": 405.28, "y": -235.33}, + {"name": "ear-right", "parent": "@ear-right", "length": 119.39, "rotation": 93, "x": -30, "y": -15, "transform": "noScale"}, + {"name": "@eyes", "parent": "@axie", "rotation": -179.04, "x": 384.24, "y": -113.67}, {"name": "@horn", "parent": "@axie", "rotation": -179.04, "x": 327.92, "y": -214.63}, + {"name": "horn", "parent": "@horn", "length": 176.72, "rotation": 90, "y": 18, "transform": "noScale"}, + {"name": "@leg-back-left", "parent": "@axie", "length": 76.4, "rotation": 100.96, "x": -15.3, "y": 102.56, "transform": "noScale"}, + {"name": "@leg-front-left", "parent": "@axie", "length": 51.19, "rotation": 93.86, "x": 134.77, "y": 149.55, "transform": "noScale"}, + {"name": "@leg-front-right", "parent": "@axie", "length": 74.83, "rotation": 83.2, "x": 382.95, "y": 121.78, "transform": "noScale"}, + {"name": "@mouth", "parent": "@axie", "rotation": -179.04, "x": 382.23, "y": 6.31}, + {"name": "body-pattern", "parent": "@body", "rotation": -170.69, "x": -267.21, "y": -49.4, "transform": "noScale"}, {"name": "@shadow", "parent": "@root", "color": "e6d713ff"}, + {"name": "@tail", "parent": "@axie", "rotation": -179.04, "x": -11.76, "y": 61.72}, + {"name": "tail", "parent": "@tail", "length": 203.67, "rotation": -12, "x": 16, "y": 72.87, "transform": "noScale"}, + {"name": "leg-front-right-IK", "parent": "@pivot-main", "x": -195.99, "y": -10.21, "color": "ff3f00ff"}, + {"name": "leg-front-left-IK", "parent": "@pivot-main", "x": 42.3, "y": -18.42, "color": "ff3f00ff"}, + {"name": "leg-back-left-IK", "parent": "@pivot-main", "x": 208.57, "y": 1.35, "color": "ff3f00ff"}, {"name": "@ball", "parent": "@root", "y": 191, "color": "f3981bff"}, + {"name": "ball", "parent": "@ball", "y": -191, "color": "f4a729ff"} + ], + "slots": [ + {"name": "shadow", "bone": "@shadow", "attachment": "shadow"}, {"name": "ball", "bone": "ball"}, {"name": "leg-front-right", "bone": "@leg-front-right", "attachment": "leg-front-right"}, + {"name": "tail", "bone": "tail", "attachment": "tail"}, {"name": "back", "bone": "back", "attachment": "back"}, + {"name": "leg-back-left", "bone": "@leg-back-left", "attachment": "leg-back-left"}, {"name": "body", "bone": "@body", "attachment": "body"}, + {"name": "ear-right", "bone": "ear-right", "attachment": "ear-right"}, {"name": "body-pattern", "bone": "body-pattern"}, + {"name": "leg-front-left", "bone": "@leg-front-left", "attachment": "leg-front-left"}, {"name": "eyes", "bone": "@eyes", "attachment": "eyes"}, + {"name": "mouth", "bone": "@mouth", "attachment": "mouth"}, {"name": "ear-left", "bone": "ear-left", "attachment": "ear-left"}, {"name": "horn", "bone": "horn", "attachment": "horn"} + ], + "ik": [ + {"name": "leg-back-left-IK", "order": 2, "bones": ["@leg-back-left"], "target": "leg-back-left-IK"}, + {"name": "leg-front-left-IK", "order": 1, "bones": ["@leg-front-left"], "target": "leg-front-left-IK"}, + {"name": "leg-front-right-IK", "bones": ["@leg-front-right"], "target": "leg-front-right-IK"} + ], + "skins": [ + { + "name": "default", + "attachments": { + "back": {"back": {"x": 58.53588235294116, "y": 39.09764705882353, "rotation": -58, "width": 350.5882352941177, "height": 371.7647058823529, "path": "beast-10.back"}}, + "ear-left": {"ear-left": {"x": 65.58058823529412, "y": 4.132352941176471, "rotation": -90, "width": 127.05882352941177, "height": 108.23529411764706, "path": "beast-10.ear-left"}}, + "ear-right": {"ear-right": {"x": 59.35058823529412, "y": 3.599411764705884, "rotation": -93, "width": 127.05882352941177, "height": 112.94117647058823, "path": "beast-10.ear-right"}}, + "eyes": { + "eyes": {"x": 25.644117647058827, "y": 2.5417647058823514, "width": 209.41176470588235, "height": 61.1764705882353, "path": "beast-10.eyes"}, + "eyes-angry": {"x": 25.644117647058827, "y": 3.188823529411761, "width": 209.41176470588235, "height": 65.88235294117648, "path": "beast-10.eyes-angry"}, + "eyes-happy": {"x": 29.17352941176471, "y": 33.777058823529416, "width": 202.35294117647058, "height": 124.70588235294117, "path": "beast-10.eyes-happy"}, + "eyes-shut": {"x": 19.70294117647058, "y": -4.399411764705884, "width": 195.29411764705884, "height": 47.05882352941177, "path": "beast-10.eyes-shut"} + }, + "horn": {"horn": {"x": 123.89470588235294, "y": -27.879411764705885, "rotation": -90, "width": 216.47058823529412, "height": 247.05882352941177, "path": "beast-10.horn"}}, + "mouth": { + "mouth": {"x": 11.055882352941174, "y": 45.36529411764706, "width": 110.58823529411765, "height": 63.529411764705884, "path": "beast-10.mouth"}, + "mouth-bite": {"x": 31.35, "y": 40.83588235294118, "width": 200.0, "height": 110.58823529411765, "path": "beast-10.mouth-bite"}, + "mouth-open": {"x": 26.35, "y": 16.13, "width": 160.0, "height": 160.0, "path": "beast-10.mouth-open"}, + "mouth-smile": {"x": 26.938235294117653, "y": 45.36529411764706, "width": 138.8235294117647, "height": 63.529411764705884, "path": "beast-10.mouth-smile"} + }, + "tail": {"tail": {"x": 97.20705882352941, "y": 28.497058823529407, "rotation": 12, "width": 204.7058823529412, "height": 244.7058823529412, "path": "beast-10.tail"}} + } + } + ], + "events": {"hit": {}, "hit-buff": {}, "jump": {}, "start-attack": {}}, + "keyAnimations": { + "activity/appear": "1023093953", + "activity/bath": "3305387968", + "attack/ranged/cast-fly": "4180526371", + "attack/ranged/cast-high": "164191126", + "attack/ranged/cast-low": "198813017", + "attack/ranged/cast-multi": "151119", + "attack/ranged/cast-tail": "1843465463", + "activity/eat-bite": "1137807767", + "activity/eat-chew": "1988236421", + "activity/entrance": "3768378365", + "defense/evade": "1735454995", + "activity/evolve": "649307630", + "battle/get-buff": "1455190363", + "battle/get-debuff": "606904312", + "defense/hit-by-normal": "2045974966", + "defense/hit-by-normal-crit": "2130010601", + "defense/hit-by-normal-dramatic": "3823092125", + "defense/hit-by-ranged-attack": "2224561612", + "defense/hit-with-shield": "390714790", + "attack/melee/horn-gore": "1327954218", + "attack/melee/mouth-bite": "2237748264", + "action/move-back": "3766271173", + "action/move-forward": "2945160014", + "attack/melee/multi-attack": "905926802", + "action/idle/normal": "1659336865", + "attack/melee/normal-attack": "3305373483", + "activity/prepare": "405864717", + "action/idle/random-01": "554401889", + "action/idle/random-02": "1001093024", + "action/idle/random-03": "2021333900", + "action/idle/random-04": "1003789695", + "action/idle/random-05": "2745614147", + "action/run": "1438840721", + "draft/run-origin": "3577885069", + "attack/melee/shrimp": "3833448733", + "activity/sleep": "100562494", + "attack/melee/tail-multi-slap": "3317139533", + "attack/melee/tail-roll": "3108617565", + "attack/melee/tail-smash": "519942130", + "attack/melee/tail-thrash": "628713175", + "activity/victory-pose-back-flip": "2227634241" + } + }, + "body-mystic-normal": { + "bones": [ + {"name": "@root"}, {"name": "@pivot-main", "parent": "@root"}, {"name": "@pivot-back", "parent": "@pivot-main", "x": 205, "y": 180, "color": "ff0101ff"}, + {"name": "@pivot-center", "parent": "@pivot-back", "x": -215.11, "y": -5.25, "color": "ff0101ff"}, + {"name": "@axie", "parent": "@pivot-center", "length": 213.28, "rotation": 179.04, "x": 196.39, "y": 5.16}, {"name": "@back", "parent": "@axie", "rotation": -179.04, "x": 37.63, "y": -198.19}, + {"name": "@body", "parent": "@axie", "length": 226.28, "rotation": -8.35, "x": 224.58, "y": -0.53}, {"name": "@ear-left", "parent": "@axie", "rotation": -179.04, "x": 112.7, "y": -203.23}, + {"name": "@ear-right", "parent": "@axie", "rotation": -179.04, "x": 405.28, "y": -235.33}, {"name": "@eyes", "parent": "@axie", "rotation": -179.04, "x": 384.24, "y": -113.67}, + {"name": "@horn", "parent": "@axie", "rotation": -179.04, "x": 327.92, "y": -214.63}, + {"name": "@leg-back-left", "parent": "@axie", "length": 76.4, "rotation": 100.96, "x": -15.3, "y": 102.56, "transform": "noScale"}, + {"name": "@leg-front-left", "parent": "@axie", "length": 51.19, "rotation": 93.86, "x": 134.77, "y": 149.55, "transform": "noScale"}, + {"name": "@leg-front-right", "parent": "@axie", "length": 74.83, "rotation": 83.2, "x": 382.95, "y": 121.78, "transform": "noScale"}, + {"name": "@mouth", "parent": "@axie", "rotation": -179.04, "x": 382.23, "y": 6.31}, + {"name": "body-class", "parent": "@body", "rotation": -170.69, "x": -286.29, "y": -103.48, "transform": "noScale"}, {"name": "@shadow", "parent": "@root", "color": "e6d713ff"}, + {"name": "@tail", "parent": "@axie", "rotation": -179.04, "x": -11.76, "y": 61.72}, {"name": "leg-front-right-IK", "parent": "@pivot-main", "x": -195.99, "y": -10.21, "color": "ff3f00ff"}, + {"name": "leg-front-left-IK", "parent": "@pivot-main", "x": 42.3, "y": -18.42, "color": "ff3f00ff"}, + {"name": "leg-back-left-IK", "parent": "@pivot-main", "x": 208.57, "y": 1.35, "color": "ff3f00ff"}, {"name": "@ball", "parent": "@root", "y": 191, "color": "f3981bff"}, + {"name": "ball", "parent": "@ball", "y": -191, "color": "f4a729ff"}, {"name": "body-id", "parent": "@body", "rotation": -170.69, "x": -292.44, "y": -65.98}, + {"name": "body-id-a", "parent": "body-id", "x": 23, "y": 10}, {"name": "body-id-b", "parent": "body-id", "x": 13, "y": 10}, {"name": "body-id-c", "parent": "body-id", "x": 3, "y": 10}, + {"name": "body-id-d", "parent": "body-id", "x": -7, "y": 10}, {"name": "body-id-e", "parent": "body-id", "x": -17, "y": 10}, {"name": "body-id-f", "parent": "body-id", "x": -27, "y": 10}, + {"name": "body-light-life", "parent": "@body", "rotation": -95.65, "x": -248.57, "y": -126.52}, + {"name": "@body-neck", "parent": "@pivot-center", "x": -161.89, "y": -53.75, "color": "ff0101ff"}, + {"name": "@body-ground", "parent": "@pivot-main", "x": 220, "transform": "noRotationOrReflection", "color": "ff0101ff"}, + {"name": "@body-hip", "parent": "@pivot-center", "x": 240.11, "y": 55.25, "color": "ff0101ff"}, + {"name": "@body-air", "parent": "@pivot-back", "x": 63, "y": 365, "transform": "noRotationOrReflection", "color": "ff0101ff"}, + {"name": "@body-cheek", "parent": "@pivot-center", "x": 15.11, "y": 47.25, "color": "ff0101ff"} + ], + "slots": [ + {"name": "shadow", "bone": "@shadow", "attachment": "shadow"}, {"name": "ball", "bone": "ball"}, + {"name": "leg-front-right", "bone": "@leg-front-right", "attachment": "mystic-leg-front-right"}, {"name": "leg-back-left", "bone": "@leg-back-left", "attachment": "mystic-leg-back-left"}, + {"name": "body-light-life", "bone": "body-light-life", "attachment": "body-light-life"}, {"name": "body", "bone": "@body", "attachment": "body-mystic"}, + {"name": "body-light-breath", "bone": "@body", "attachment": "body-light-breath"}, {"name": "body-light-pulse", "bone": "@body", "attachment": "body-light-pulse"}, + {"name": "body-id-a", "bone": "body-id-a", "attachment": "body-id-a-01"}, {"name": "body-id-b", "bone": "body-id-b", "attachment": "body-id-b-09"}, + {"name": "body-id-c", "bone": "body-id-c", "attachment": "body-id-c-08"}, {"name": "body-id-d", "bone": "body-id-d", "attachment": "body-id-d-00"}, + {"name": "body-id-e", "bone": "body-id-e", "attachment": "body-id-e-03"}, {"name": "body-id-f", "bone": "body-id-f", "attachment": "body-id-f-00"}, + {"name": "body-class", "bone": "body-class", "attachment": "body-class-aquatic"}, {"name": "leg-front-left", "bone": "@leg-front-left", "attachment": "mystic-leg-front-left"}, + {"name": "body-hip", "bone": "@body-hip", "attachment": "body-hip"}, {"name": "body-neck", "bone": "@body-neck", "attachment": "body-neck"}, + {"name": "body-ground", "bone": "@body-ground", "attachment": "body-ground"}, {"name": "body-air", "bone": "@body-air", "attachment": "body-air"}, + {"name": "body-cheek", "bone": "@body-cheek", "attachment": "body-cheek"} + ], + "ik": [ + {"name": "leg-back-left-IK", "order": 2, "bones": ["@leg-back-left"], "target": "leg-back-left-IK"}, + {"name": "leg-front-left-IK", "order": 1, "bones": ["@leg-front-left"], "target": "leg-front-left-IK"}, + {"name": "leg-front-right-IK", "bones": ["@leg-front-right"], "target": "leg-front-right-IK"} + ], + "skins": [ + { + "name": "default", + "attachments": { + "ball": {"ball": {"y": 186.0, "width": 392.94117647058823, "height": 400.0, "path": "body-normal.ball", "x": 0.029411764705884025}}, + "body": { + "body-mystic": { + "x": -4.102941176470608, "y": -74.09764705882354, "rotation": -170.69, "width": 684.7058823529412, "height": 508.2352941176471, "path": "body-mystic-normal.body-mystic" + } + }, + "body-class": { + "body-class-aquatic": {"x": -0.54, "y": 5.197058823529409, "width": 40.0, "height": 44.70588235294118, "path": "body-normal.body-class-aquatic"}, + "body-class-beast": {"x": -1.187058823529413, "y": 3.55, "width": 35.294117647058826, "height": 40.0, "path": "body-normal.body-class-beast"}, + "body-class-bird": {"x": 1.342352941176471, "y": 4.373529411764706, "width": 28.235294117647058, "height": 42.35294117647059, "path": "body-normal.body-class-bird"}, + "body-class-bug": {"x": -0.18705882352941305, "y": 2.902941176470587, "width": 35.294117647058826, "height": 35.294117647058826, "path": "body-normal.body-class-bug"}, + "body-class-plant": {"x": -1.54, "y": 1.55, "width": 40.0, "height": 40.0, "path": "body-normal.body-class-plant"}, + "body-class-reptile": {"x": -0.54, "y": 3.55, "width": 40.0, "height": 40.0, "path": "body-normal.body-class-reptile"} + }, + "body-id-a": { + "body-id-a-00": {"x": -0.17941176470588227, "y": 0.847647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-a-00"}, + "body-id-a-01": {"x": 0.9970588235294117, "y": 0.847647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-a-01"}, + "body-id-a-02": {"x": 0.8205882352941177, "y": 0.847647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-a-02"}, + "body-id-a-03": {"x": 0.9970588235294117, "y": 1.0241176470588234, "width": 4.705882352941177, "height": 9.411764705882353, "path": "body-normal.body-id-a-03"}, + "body-id-a-04": {"x": 0.9970588235294117, "y": 0.847647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-a-04"}, + "body-id-a-05": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-a-05"}, + "body-id-a-06": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-a-06"}, + "body-id-a-07": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-a-07"}, + "body-id-a-08": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-a-08"}, + "body-id-a-09": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-a-09"}, + "body-id-00-aquatic": {"x": -0.17941176470588227, "y": 0.847647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-00-aquatic"}, + "body-id-00-aquatic-flipx": { + "x": -0.17941176470588227, "y": 0.847647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-00-aquatic-flipx" + }, + "body-id-00-beast": {"x": -0.17941176470588227, "y": 0.847647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-00-beast"}, + "body-id-00-beast-flipx": {"x": -0.17941176470588227, "y": 0.847647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-00-beast-flipx"}, + "body-id-00-bird": {"x": -0.17941176470588227, "y": 0.847647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-00-bird"}, + "body-id-00-bird-flipx": {"x": -0.17941176470588227, "y": 0.847647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-00-bird-flipx"}, + "body-id-00-bug": {"x": -0.17941176470588227, "y": 0.847647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-00-bug"}, + "body-id-00-bug-flipx": {"x": -0.17941176470588227, "y": 0.847647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-00-bug-flipx"}, + "body-id-00-plant": {"x": -0.17941176470588227, "y": 0.847647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-00-plant"}, + "body-id-00-plant-flipx": {"x": -0.17941176470588227, "y": 0.847647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-00-plant-flipx"}, + "body-id-00-reptile": {"x": -0.17941176470588227, "y": 0.847647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-00-reptile"}, + "body-id-00-reptile-flipx": { + "x": -0.17941176470588227, "y": 0.847647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-00-reptile-flipx" + }, + "body-id-01-aquatic": {"x": 0.9970588235294117, "y": 0.847647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-01-aquatic"}, + "body-id-01-aquatic-flipx": {"x": 0.9970588235294117, "y": 0.847647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-01-aquatic-flipx"}, + "body-id-01-beast": {"x": 0.9970588235294117, "y": 0.847647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-01-beast"}, + "body-id-01-beast-flipx": {"x": 0.9970588235294117, "y": 0.847647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-01-beast-flipx"}, + "body-id-01-bird": {"x": 0.9970588235294117, "y": 0.847647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-01-bird"}, + "body-id-01-bird-flipx": {"x": 0.9970588235294117, "y": 0.847647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-01-bird-flipx"}, + "body-id-01-bug": {"x": 0.9970588235294117, "y": 0.847647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-01-bug"}, + "body-id-01-bug-flipx": {"x": 0.9970588235294117, "y": 0.847647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-01-bug-flipx"}, + "body-id-01-plant": {"x": 0.9970588235294117, "y": 0.847647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-01-plant"}, + "body-id-01-plant-flipx": {"x": 0.9970588235294117, "y": 0.847647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-01-plant-flipx"}, + "body-id-01-reptile": {"x": 0.9970588235294117, "y": 0.847647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-01-reptile"}, + "body-id-01-reptile-flipx": {"x": 0.9970588235294117, "y": 0.847647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-01-reptile-flipx"}, + "body-id-02-aquatic": {"x": 0.8205882352941177, "y": 0.847647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-02-aquatic"}, + "body-id-02-aquatic-flipx": { + "x": 0.8205882352941177, "y": 0.847647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-02-aquatic-flipx" + }, + "body-id-02-beast": {"x": 0.8205882352941177, "y": 0.847647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-02-beast"}, + "body-id-02-beast-flipx": {"x": 0.8205882352941177, "y": 0.847647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-02-beast-flipx"}, + "body-id-02-bird": {"x": 0.8205882352941177, "y": 0.847647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-02-bird"}, + "body-id-02-bird-flipx": {"x": 0.8205882352941177, "y": 0.847647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-02-bird-flipx"}, + "body-id-02-bug": {"x": 0.8205882352941177, "y": 0.847647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-02-bug"}, + "body-id-02-bug-flipx": {"x": 0.8205882352941177, "y": 0.847647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-02-bug-flipx"}, + "body-id-02-plant": {"x": 0.8205882352941177, "y": 0.847647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-02-plant"}, + "body-id-02-plant-flipx": {"x": 0.8205882352941177, "y": 0.847647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-02-plant-flipx"}, + "body-id-02-reptile": {"x": 0.8205882352941177, "y": 0.847647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-02-reptile"}, + "body-id-02-reptile-flipx": { + "x": 0.8205882352941177, "y": 0.847647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-02-reptile-flipx" + }, + "body-id-03-aquatic": {"x": 0.9970588235294117, "y": 1.0241176470588234, "width": 4.705882352941177, "height": 9.411764705882353, "path": "body-normal.body-id-03-aquatic"}, + "body-id-03-aquatic-flipx": {"x": 0.9970588235294117, "y": 1.0241176470588234, "width": 4.705882352941177, "height": 9.411764705882353, "path": "body-normal.body-id-03-aquatic-flipx"}, + "body-id-03-beast": {"x": 0.9970588235294117, "y": 1.0241176470588234, "width": 4.705882352941177, "height": 9.411764705882353, "path": "body-normal.body-id-03-beast"}, + "body-id-03-beast-flipx": {"x": 0.9970588235294117, "y": 1.0241176470588234, "width": 4.705882352941177, "height": 9.411764705882353, "path": "body-normal.body-id-03-beast-flipx"}, + "body-id-03-bird": {"x": 0.9970588235294117, "y": 1.0241176470588234, "width": 4.705882352941177, "height": 9.411764705882353, "path": "body-normal.body-id-03-bird"}, + "body-id-03-bird-flipx": {"x": 0.9970588235294117, "y": 1.0241176470588234, "width": 4.705882352941177, "height": 9.411764705882353, "path": "body-normal.body-id-03-bird-flipx"}, + "body-id-03-bug": {"x": 0.9970588235294117, "y": 1.0241176470588234, "width": 4.705882352941177, "height": 9.411764705882353, "path": "body-normal.body-id-03-bug"}, + "body-id-03-bug-flipx": {"x": 0.9970588235294117, "y": 1.0241176470588234, "width": 4.705882352941177, "height": 9.411764705882353, "path": "body-normal.body-id-03-bug-flipx"}, + "body-id-03-plant": {"x": 0.9970588235294117, "y": 1.0241176470588234, "width": 4.705882352941177, "height": 9.411764705882353, "path": "body-normal.body-id-03-plant"}, + "body-id-03-plant-flipx": {"x": 0.9970588235294117, "y": 1.0241176470588234, "width": 4.705882352941177, "height": 9.411764705882353, "path": "body-normal.body-id-03-plant-flipx"}, + "body-id-03-reptile": {"x": 0.9970588235294117, "y": 1.0241176470588234, "width": 4.705882352941177, "height": 9.411764705882353, "path": "body-normal.body-id-03-reptile"}, + "body-id-03-reptile-flipx": {"x": 0.9970588235294117, "y": 1.0241176470588234, "width": 4.705882352941177, "height": 9.411764705882353, "path": "body-normal.body-id-03-reptile-flipx"}, + "body-id-04-aquatic": {"x": 0.9970588235294117, "y": 0.847647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-04-aquatic"}, + "body-id-04-aquatic-flipx": {"x": 0.9970588235294117, "y": 0.847647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-04-aquatic-flipx"}, + "body-id-04-beast": {"x": 0.9970588235294117, "y": 0.847647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-04-beast"}, + "body-id-04-beast-flipx": {"x": 0.9970588235294117, "y": 0.847647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-04-beast-flipx"}, + "body-id-04-bird": {"x": 0.9970588235294117, "y": 0.847647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-04-bird"}, + "body-id-04-bird-flipx": {"x": 0.9970588235294117, "y": 0.847647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-04-bird-flipx"}, + "body-id-04-bug": {"x": 0.9970588235294117, "y": 0.847647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-04-bug"}, + "body-id-04-bug-flipx": {"x": 0.9970588235294117, "y": 0.847647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-04-bug-flipx"}, + "body-id-04-plant": {"x": 0.9970588235294117, "y": 0.847647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-04-plant"}, + "body-id-04-plant-flipx": {"x": 0.9970588235294117, "y": 0.847647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-04-plant-flipx"}, + "body-id-04-reptile": {"x": 0.9970588235294117, "y": 0.847647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-04-reptile"}, + "body-id-04-reptile-flipx": {"x": 0.9970588235294117, "y": 0.847647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-04-reptile-flipx"}, + "body-id-05-aquatic": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-05-aquatic"}, + "body-id-05-aquatic-flipx": { + "x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-05-aquatic-flipx" + }, + "body-id-05-beast": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-05-beast"}, + "body-id-05-beast-flipx": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-05-beast-flipx"}, + "body-id-05-bird": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-05-bird"}, + "body-id-05-bird-flipx": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-05-bird-flipx"}, + "body-id-05-bug": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-05-bug"}, + "body-id-05-bug-flipx": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-05-bug-flipx"}, + "body-id-05-plant": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-05-plant"}, + "body-id-05-plant-flipx": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-05-plant-flipx"}, + "body-id-05-reptile": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-05-reptile"}, + "body-id-05-reptile-flipx": { + "x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-05-reptile-flipx" + }, + "body-id-06-aquatic": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-06-aquatic"}, + "body-id-06-aquatic-flipx": { + "x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-06-aquatic-flipx" + }, + "body-id-06-beast": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-06-beast"}, + "body-id-06-beast-flipx": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-06-beast-flipx"}, + "body-id-06-bird": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-06-bird"}, + "body-id-06-bird-flipx": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-06-bird-flipx"}, + "body-id-06-bug": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-06-bug"}, + "body-id-06-bug-flipx": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-06-bug-flipx"}, + "body-id-06-plant": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-06-plant"}, + "body-id-06-plant-flipx": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-06-plant-flipx"}, + "body-id-06-reptile": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-06-reptile"}, + "body-id-06-reptile-flipx": { + "x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-06-reptile-flipx" + }, + "body-id-07-aquatic": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-07-aquatic"}, + "body-id-07-aquatic-flipx": { + "x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-07-aquatic-flipx" + }, + "body-id-07-beast": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-07-beast"}, + "body-id-07-beast-flipx": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-07-beast-flipx"}, + "body-id-07-bird": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-07-bird"}, + "body-id-07-bird-flipx": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-07-bird-flipx"}, + "body-id-07-bug": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-07-bug"}, + "body-id-07-bug-flipx": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-07-bug-flipx"}, + "body-id-07-plant": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-07-plant"}, + "body-id-07-plant-flipx": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-07-plant-flipx"}, + "body-id-07-reptile": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-07-reptile"}, + "body-id-07-reptile-flipx": { + "x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-07-reptile-flipx" + }, + "body-id-08-aquatic": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-08-aquatic"}, + "body-id-08-aquatic-flipx": { + "x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-08-aquatic-flipx" + }, + "body-id-08-beast": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-08-beast"}, + "body-id-08-beast-flipx": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-08-beast-flipx"}, + "body-id-08-bird": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-08-bird"}, + "body-id-08-bird-flipx": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-08-bird-flipx"}, + "body-id-08-bug": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-08-bug"}, + "body-id-08-bug-flipx": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-08-bug-flipx"}, + "body-id-08-plant": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-08-plant"}, + "body-id-08-plant-flipx": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-08-plant-flipx"}, + "body-id-08-reptile": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-08-reptile"}, + "body-id-08-reptile-flipx": { + "x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-08-reptile-flipx" + }, + "body-id-09-aquatic": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-09-aquatic"}, + "body-id-09-aquatic-flipx": { + "x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-09-aquatic-flipx" + }, + "body-id-09-beast": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-09-beast"}, + "body-id-09-beast-flipx": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-09-beast-flipx"}, + "body-id-09-bird": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-09-bird"}, + "body-id-09-bird-flipx": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-09-bird-flipx"}, + "body-id-09-bug": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-09-bug"}, + "body-id-09-bug-flipx": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-09-bug-flipx"}, + "body-id-09-plant": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-09-plant"}, + "body-id-09-plant-flipx": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-09-plant-flipx"}, + "body-id-09-reptile": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-09-reptile"}, + "body-id-09-reptile-flipx": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-09-reptile-flipx"} + }, + "body-id-b": { + "body-id-b-00": {"x": -0.17941176470588227, "y": 0.847647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-b-00"}, + "body-id-b-01": {"x": 0.9970588235294117, "y": 0.847647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-b-01"}, + "body-id-b-02": {"x": 0.8205882352941177, "y": 0.847647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-b-02"}, + "body-id-b-03": {"x": 0.9970588235294117, "y": 1.0241176470588234, "width": 4.705882352941177, "height": 9.411764705882353, "path": "body-normal.body-id-b-03"}, + "body-id-b-04": {"x": 0.9970588235294117, "y": 0.847647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-b-04"}, + "body-id-b-05": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-b-05"}, + "body-id-b-06": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-b-06"}, + "body-id-b-07": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-b-07"}, + "body-id-b-08": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-b-08"}, + "body-id-b-09": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-b-09"}, + "body-id-00-aquatic": {"x": -0.17941176470588227, "y": 0.847647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-00-aquatic"}, + "body-id-00-aquatic-flipx": { + "x": -0.17941176470588227, "y": 0.847647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-00-aquatic-flipx" + }, + "body-id-00-beast": {"x": -0.17941176470588227, "y": 0.847647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-00-beast"}, + "body-id-00-beast-flipx": {"x": -0.17941176470588227, "y": 0.847647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-00-beast-flipx"}, + "body-id-00-bird": {"x": -0.17941176470588227, "y": 0.847647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-00-bird"}, + "body-id-00-bird-flipx": {"x": -0.17941176470588227, "y": 0.847647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-00-bird-flipx"}, + "body-id-00-bug": {"x": -0.17941176470588227, "y": 0.847647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-00-bug"}, + "body-id-00-bug-flipx": {"x": -0.17941176470588227, "y": 0.847647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-00-bug-flipx"}, + "body-id-00-plant": {"x": -0.17941176470588227, "y": 0.847647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-00-plant"}, + "body-id-00-plant-flipx": {"x": -0.17941176470588227, "y": 0.847647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-00-plant-flipx"}, + "body-id-00-reptile": {"x": -0.17941176470588227, "y": 0.847647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-00-reptile"}, + "body-id-00-reptile-flipx": { + "x": -0.17941176470588227, "y": 0.847647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-00-reptile-flipx" + }, + "body-id-01-aquatic": {"x": 0.9970588235294117, "y": 0.847647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-01-aquatic"}, + "body-id-01-aquatic-flipx": {"x": 0.9970588235294117, "y": 0.847647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-01-aquatic-flipx"}, + "body-id-01-beast": {"x": 0.9970588235294117, "y": 0.847647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-01-beast"}, + "body-id-01-beast-flipx": {"x": 0.9970588235294117, "y": 0.847647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-01-beast-flipx"}, + "body-id-01-bird": {"x": 0.9970588235294117, "y": 0.847647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-01-bird"}, + "body-id-01-bird-flipx": {"x": 0.9970588235294117, "y": 0.847647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-01-bird-flipx"}, + "body-id-01-bug": {"x": 0.9970588235294117, "y": 0.847647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-01-bug"}, + "body-id-01-bug-flipx": {"x": 0.9970588235294117, "y": 0.847647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-01-bug-flipx"}, + "body-id-01-plant": {"x": 0.9970588235294117, "y": 0.847647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-01-plant"}, + "body-id-01-plant-flipx": {"x": 0.9970588235294117, "y": 0.847647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-01-plant-flipx"}, + "body-id-01-reptile": {"x": 0.9970588235294117, "y": 0.847647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-01-reptile"}, + "body-id-01-reptile-flipx": {"x": 0.9970588235294117, "y": 0.847647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-01-reptile-flipx"}, + "body-id-02-aquatic": {"x": 0.8205882352941177, "y": 0.847647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-02-aquatic"}, + "body-id-02-aquatic-flipx": { + "x": 0.8205882352941177, "y": 0.847647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-02-aquatic-flipx" + }, + "body-id-02-beast": {"x": 0.8205882352941177, "y": 0.847647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-02-beast"}, + "body-id-02-beast-flipx": {"x": 0.8205882352941177, "y": 0.847647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-02-beast-flipx"}, + "body-id-02-bird": {"x": 0.8205882352941177, "y": 0.847647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-02-bird"}, + "body-id-02-bird-flipx": {"x": 0.8205882352941177, "y": 0.847647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-02-bird-flipx"}, + "body-id-02-bug": {"x": 0.8205882352941177, "y": 0.847647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-02-bug"}, + "body-id-02-bug-flipx": {"x": 0.8205882352941177, "y": 0.847647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-02-bug-flipx"}, + "body-id-02-plant": {"x": 0.8205882352941177, "y": 0.847647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-02-plant"}, + "body-id-02-plant-flipx": {"x": 0.8205882352941177, "y": 0.847647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-02-plant-flipx"}, + "body-id-02-reptile": {"x": 0.8205882352941177, "y": 0.847647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-02-reptile"}, + "body-id-02-reptile-flipx": { + "x": 0.8205882352941177, "y": 0.847647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-02-reptile-flipx" + }, + "body-id-03-aquatic": {"x": 0.9970588235294117, "y": 1.0241176470588234, "width": 4.705882352941177, "height": 9.411764705882353, "path": "body-normal.body-id-03-aquatic"}, + "body-id-03-aquatic-flipx": {"x": 0.9970588235294117, "y": 1.0241176470588234, "width": 4.705882352941177, "height": 9.411764705882353, "path": "body-normal.body-id-03-aquatic-flipx"}, + "body-id-03-beast": {"x": 0.9970588235294117, "y": 1.0241176470588234, "width": 4.705882352941177, "height": 9.411764705882353, "path": "body-normal.body-id-03-beast"}, + "body-id-03-beast-flipx": {"x": 0.9970588235294117, "y": 1.0241176470588234, "width": 4.705882352941177, "height": 9.411764705882353, "path": "body-normal.body-id-03-beast-flipx"}, + "body-id-03-bird": {"x": 0.9970588235294117, "y": 1.0241176470588234, "width": 4.705882352941177, "height": 9.411764705882353, "path": "body-normal.body-id-03-bird"}, + "body-id-03-bird-flipx": {"x": 0.9970588235294117, "y": 1.0241176470588234, "width": 4.705882352941177, "height": 9.411764705882353, "path": "body-normal.body-id-03-bird-flipx"}, + "body-id-03-bug": {"x": 0.9970588235294117, "y": 1.0241176470588234, "width": 4.705882352941177, "height": 9.411764705882353, "path": "body-normal.body-id-03-bug"}, + "body-id-03-bug-flipx": {"x": 0.9970588235294117, "y": 1.0241176470588234, "width": 4.705882352941177, "height": 9.411764705882353, "path": "body-normal.body-id-03-bug-flipx"}, + "body-id-03-plant": {"x": 0.9970588235294117, "y": 1.0241176470588234, "width": 4.705882352941177, "height": 9.411764705882353, "path": "body-normal.body-id-03-plant"}, + "body-id-03-plant-flipx": {"x": 0.9970588235294117, "y": 1.0241176470588234, "width": 4.705882352941177, "height": 9.411764705882353, "path": "body-normal.body-id-03-plant-flipx"}, + "body-id-03-reptile": {"x": 0.9970588235294117, "y": 1.0241176470588234, "width": 4.705882352941177, "height": 9.411764705882353, "path": "body-normal.body-id-03-reptile"}, + "body-id-03-reptile-flipx": {"x": 0.9970588235294117, "y": 1.0241176470588234, "width": 4.705882352941177, "height": 9.411764705882353, "path": "body-normal.body-id-03-reptile-flipx"}, + "body-id-04-aquatic": {"x": 0.9970588235294117, "y": 0.847647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-04-aquatic"}, + "body-id-04-aquatic-flipx": {"x": 0.9970588235294117, "y": 0.847647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-04-aquatic-flipx"}, + "body-id-04-beast": {"x": 0.9970588235294117, "y": 0.847647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-04-beast"}, + "body-id-04-beast-flipx": {"x": 0.9970588235294117, "y": 0.847647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-04-beast-flipx"}, + "body-id-04-bird": {"x": 0.9970588235294117, "y": 0.847647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-04-bird"}, + "body-id-04-bird-flipx": {"x": 0.9970588235294117, "y": 0.847647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-04-bird-flipx"}, + "body-id-04-bug": {"x": 0.9970588235294117, "y": 0.847647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-04-bug"}, + "body-id-04-bug-flipx": {"x": 0.9970588235294117, "y": 0.847647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-04-bug-flipx"}, + "body-id-04-plant": {"x": 0.9970588235294117, "y": 0.847647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-04-plant"}, + "body-id-04-plant-flipx": {"x": 0.9970588235294117, "y": 0.847647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-04-plant-flipx"}, + "body-id-04-reptile": {"x": 0.9970588235294117, "y": 0.847647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-04-reptile"}, + "body-id-04-reptile-flipx": {"x": 0.9970588235294117, "y": 0.847647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-04-reptile-flipx"}, + "body-id-05-aquatic": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-05-aquatic"}, + "body-id-05-aquatic-flipx": { + "x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-05-aquatic-flipx" + }, + "body-id-05-beast": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-05-beast"}, + "body-id-05-beast-flipx": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-05-beast-flipx"}, + "body-id-05-bird": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-05-bird"}, + "body-id-05-bird-flipx": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-05-bird-flipx"}, + "body-id-05-bug": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-05-bug"}, + "body-id-05-bug-flipx": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-05-bug-flipx"}, + "body-id-05-plant": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-05-plant"}, + "body-id-05-plant-flipx": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-05-plant-flipx"}, + "body-id-05-reptile": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-05-reptile"}, + "body-id-05-reptile-flipx": { + "x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-05-reptile-flipx" + }, + "body-id-06-aquatic": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-06-aquatic"}, + "body-id-06-aquatic-flipx": { + "x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-06-aquatic-flipx" + }, + "body-id-06-beast": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-06-beast"}, + "body-id-06-beast-flipx": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-06-beast-flipx"}, + "body-id-06-bird": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-06-bird"}, + "body-id-06-bird-flipx": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-06-bird-flipx"}, + "body-id-06-bug": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-06-bug"}, + "body-id-06-bug-flipx": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-06-bug-flipx"}, + "body-id-06-plant": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-06-plant"}, + "body-id-06-plant-flipx": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-06-plant-flipx"}, + "body-id-06-reptile": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-06-reptile"}, + "body-id-06-reptile-flipx": { + "x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-06-reptile-flipx" + }, + "body-id-07-aquatic": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-07-aquatic"}, + "body-id-07-aquatic-flipx": { + "x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-07-aquatic-flipx" + }, + "body-id-07-beast": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-07-beast"}, + "body-id-07-beast-flipx": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-07-beast-flipx"}, + "body-id-07-bird": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-07-bird"}, + "body-id-07-bird-flipx": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-07-bird-flipx"}, + "body-id-07-bug": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-07-bug"}, + "body-id-07-bug-flipx": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-07-bug-flipx"}, + "body-id-07-plant": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-07-plant"}, + "body-id-07-plant-flipx": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-07-plant-flipx"}, + "body-id-07-reptile": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-07-reptile"}, + "body-id-07-reptile-flipx": { + "x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-07-reptile-flipx" + }, + "body-id-08-aquatic": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-08-aquatic"}, + "body-id-08-aquatic-flipx": { + "x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-08-aquatic-flipx" + }, + "body-id-08-beast": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-08-beast"}, + "body-id-08-beast-flipx": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-08-beast-flipx"}, + "body-id-08-bird": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-08-bird"}, + "body-id-08-bird-flipx": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-08-bird-flipx"}, + "body-id-08-bug": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-08-bug"}, + "body-id-08-bug-flipx": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-08-bug-flipx"}, + "body-id-08-plant": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-08-plant"}, + "body-id-08-plant-flipx": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-08-plant-flipx"}, + "body-id-08-reptile": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-08-reptile"}, + "body-id-08-reptile-flipx": { + "x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-08-reptile-flipx" + }, + "body-id-09-aquatic": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-09-aquatic"}, + "body-id-09-aquatic-flipx": { + "x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-09-aquatic-flipx" + }, + "body-id-09-beast": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-09-beast"}, + "body-id-09-beast-flipx": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-09-beast-flipx"}, + "body-id-09-bird": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-09-bird"}, + "body-id-09-bird-flipx": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-09-bird-flipx"}, + "body-id-09-bug": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-09-bug"}, + "body-id-09-bug-flipx": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-09-bug-flipx"}, + "body-id-09-plant": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-09-plant"}, + "body-id-09-plant-flipx": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-09-plant-flipx"}, + "body-id-09-reptile": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-09-reptile"}, + "body-id-09-reptile-flipx": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-09-reptile-flipx"} + }, + "body-id-c": { + "body-id-c-00": {"x": -0.17941176470588227, "y": 0.847647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-c-00"}, + "body-id-c-01": {"x": -0.002941176470588336, "y": 0.847647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-c-01"}, + "body-id-c-02": {"x": -0.17941176470588227, "y": 0.347647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-c-02"}, + "body-id-c-03": {"x": 0.49705882352941166, "y": 1.0241176470588234, "width": 4.705882352941177, "height": 9.411764705882353, "path": "body-normal.body-id-c-03"}, + "body-id-c-04": {"x": 0.49705882352941166, "y": 0.347647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-c-04"}, + "body-id-c-05": {"x": 0.32058823529411773, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-c-05"}, + "body-id-c-06": {"x": 0.32058823529411773, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-c-06"}, + "body-id-c-07": {"x": 0.32058823529411773, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-c-07"}, + "body-id-c-08": {"x": 0.32058823529411773, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-c-08"}, + "body-id-c-09": {"x": 0.32058823529411773, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-c-09"}, + "body-id-00-aquatic": {"x": -0.17941176470588227, "y": 0.847647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-00-aquatic"}, + "body-id-00-aquatic-flipx": { + "x": -0.17941176470588227, "y": 0.847647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-00-aquatic-flipx" + }, + "body-id-00-beast": {"x": -0.17941176470588227, "y": 0.847647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-00-beast"}, + "body-id-00-beast-flipx": {"x": -0.17941176470588227, "y": 0.847647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-00-beast-flipx"}, + "body-id-00-bird": {"x": -0.17941176470588227, "y": 0.847647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-00-bird"}, + "body-id-00-bird-flipx": {"x": -0.17941176470588227, "y": 0.847647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-00-bird-flipx"}, + "body-id-00-bug": {"x": -0.17941176470588227, "y": 0.847647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-00-bug"}, + "body-id-00-bug-flipx": {"x": -0.17941176470588227, "y": 0.847647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-00-bug-flipx"}, + "body-id-00-plant": {"x": -0.17941176470588227, "y": 0.847647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-00-plant"}, + "body-id-00-plant-flipx": {"x": -0.17941176470588227, "y": 0.847647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-00-plant-flipx"}, + "body-id-00-reptile": {"x": -0.17941176470588227, "y": 0.847647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-00-reptile"}, + "body-id-00-reptile-flipx": { + "x": -0.17941176470588227, "y": 0.847647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-00-reptile-flipx" + }, + "body-id-01-aquatic": {"x": -0.002941176470588336, "y": 0.847647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-01-aquatic"}, + "body-id-01-aquatic-flipx": { + "x": -0.002941176470588336, "y": 0.847647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-01-aquatic-flipx" + }, + "body-id-01-beast": {"x": -0.002941176470588336, "y": 0.847647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-01-beast"}, + "body-id-01-beast-flipx": {"x": -0.002941176470588336, "y": 0.847647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-01-beast-flipx"}, + "body-id-01-bird": {"x": -0.002941176470588336, "y": 0.847647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-01-bird"}, + "body-id-01-bird-flipx": {"x": -0.002941176470588336, "y": 0.847647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-01-bird-flipx"}, + "body-id-01-bug": {"x": -0.002941176470588336, "y": 0.847647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-01-bug"}, + "body-id-01-bug-flipx": {"x": -0.002941176470588336, "y": 0.847647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-01-bug-flipx"}, + "body-id-01-plant": {"x": -0.002941176470588336, "y": 0.847647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-01-plant"}, + "body-id-01-plant-flipx": {"x": -0.002941176470588336, "y": 0.847647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-01-plant-flipx"}, + "body-id-01-reptile": {"x": -0.002941176470588336, "y": 0.847647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-01-reptile"}, + "body-id-01-reptile-flipx": { + "x": -0.002941176470588336, "y": 0.847647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-01-reptile-flipx" + }, + "body-id-02-aquatic": {"x": -0.17941176470588227, "y": 0.347647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-02-aquatic"}, + "body-id-02-aquatic-flipx": { + "x": -0.17941176470588227, "y": 0.347647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-02-aquatic-flipx" + }, + "body-id-02-beast": {"x": -0.17941176470588227, "y": 0.347647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-02-beast"}, + "body-id-02-beast-flipx": {"x": -0.17941176470588227, "y": 0.347647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-02-beast-flipx"}, + "body-id-02-bird": {"x": -0.17941176470588227, "y": 0.347647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-02-bird"}, + "body-id-02-bird-flipx": {"x": -0.17941176470588227, "y": 0.347647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-02-bird-flipx"}, + "body-id-02-bug": {"x": -0.17941176470588227, "y": 0.347647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-02-bug"}, + "body-id-02-bug-flipx": {"x": -0.17941176470588227, "y": 0.347647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-02-bug-flipx"}, + "body-id-02-plant": {"x": -0.17941176470588227, "y": 0.347647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-02-plant"}, + "body-id-02-plant-flipx": {"x": -0.17941176470588227, "y": 0.347647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-02-plant-flipx"}, + "body-id-02-reptile": {"x": -0.17941176470588227, "y": 0.347647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-02-reptile"}, + "body-id-02-reptile-flipx": { + "x": -0.17941176470588227, "y": 0.347647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-02-reptile-flipx" + }, + "body-id-03-aquatic": {"x": 0.49705882352941166, "y": 1.0241176470588234, "width": 4.705882352941177, "height": 9.411764705882353, "path": "body-normal.body-id-03-aquatic"}, + "body-id-03-aquatic-flipx": { + "x": 0.49705882352941166, "y": 1.0241176470588234, "width": 4.705882352941177, "height": 9.411764705882353, "path": "body-normal.body-id-03-aquatic-flipx" + }, + "body-id-03-beast": {"x": 0.49705882352941166, "y": 1.0241176470588234, "width": 4.705882352941177, "height": 9.411764705882353, "path": "body-normal.body-id-03-beast"}, + "body-id-03-beast-flipx": {"x": 0.49705882352941166, "y": 1.0241176470588234, "width": 4.705882352941177, "height": 9.411764705882353, "path": "body-normal.body-id-03-beast-flipx"}, + "body-id-03-bird": {"x": 0.49705882352941166, "y": 1.0241176470588234, "width": 4.705882352941177, "height": 9.411764705882353, "path": "body-normal.body-id-03-bird"}, + "body-id-03-bird-flipx": {"x": 0.49705882352941166, "y": 1.0241176470588234, "width": 4.705882352941177, "height": 9.411764705882353, "path": "body-normal.body-id-03-bird-flipx"}, + "body-id-03-bug": {"x": 0.49705882352941166, "y": 1.0241176470588234, "width": 4.705882352941177, "height": 9.411764705882353, "path": "body-normal.body-id-03-bug"}, + "body-id-03-bug-flipx": {"x": 0.49705882352941166, "y": 1.0241176470588234, "width": 4.705882352941177, "height": 9.411764705882353, "path": "body-normal.body-id-03-bug-flipx"}, + "body-id-03-plant": {"x": 0.49705882352941166, "y": 1.0241176470588234, "width": 4.705882352941177, "height": 9.411764705882353, "path": "body-normal.body-id-03-plant"}, + "body-id-03-plant-flipx": {"x": 0.49705882352941166, "y": 1.0241176470588234, "width": 4.705882352941177, "height": 9.411764705882353, "path": "body-normal.body-id-03-plant-flipx"}, + "body-id-03-reptile": {"x": 0.49705882352941166, "y": 1.0241176470588234, "width": 4.705882352941177, "height": 9.411764705882353, "path": "body-normal.body-id-03-reptile"}, + "body-id-03-reptile-flipx": { + "x": 0.49705882352941166, "y": 1.0241176470588234, "width": 4.705882352941177, "height": 9.411764705882353, "path": "body-normal.body-id-03-reptile-flipx" + }, + "body-id-04-aquatic": {"x": 0.49705882352941166, "y": 0.347647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-04-aquatic"}, + "body-id-04-aquatic-flipx": { + "x": 0.49705882352941166, "y": 0.347647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-04-aquatic-flipx" + }, + "body-id-04-beast": {"x": 0.49705882352941166, "y": 0.347647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-04-beast"}, + "body-id-04-beast-flipx": {"x": 0.49705882352941166, "y": 0.347647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-04-beast-flipx"}, + "body-id-04-bird": {"x": 0.49705882352941166, "y": 0.347647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-04-bird"}, + "body-id-04-bird-flipx": {"x": 0.49705882352941166, "y": 0.347647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-04-bird-flipx"}, + "body-id-04-bug": {"x": 0.49705882352941166, "y": 0.347647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-04-bug"}, + "body-id-04-bug-flipx": {"x": 0.49705882352941166, "y": 0.347647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-04-bug-flipx"}, + "body-id-04-plant": {"x": 0.49705882352941166, "y": 0.347647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-04-plant"}, + "body-id-04-plant-flipx": {"x": 0.49705882352941166, "y": 0.347647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-04-plant-flipx"}, + "body-id-04-reptile": {"x": 0.49705882352941166, "y": 0.347647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-04-reptile"}, + "body-id-04-reptile-flipx": { + "x": 0.49705882352941166, "y": 0.347647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-04-reptile-flipx" + }, + "body-id-05-aquatic": {"x": 0.32058823529411773, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-05-aquatic"}, + "body-id-05-aquatic-flipx": { + "x": 0.32058823529411773, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-05-aquatic-flipx" + }, + "body-id-05-beast": {"x": 0.32058823529411773, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-05-beast"}, + "body-id-05-beast-flipx": {"x": 0.32058823529411773, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-05-beast-flipx"}, + "body-id-05-bird": {"x": 0.32058823529411773, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-05-bird"}, + "body-id-05-bird-flipx": {"x": 0.32058823529411773, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-05-bird-flipx"}, + "body-id-05-bug": {"x": 0.32058823529411773, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-05-bug"}, + "body-id-05-bug-flipx": {"x": 0.32058823529411773, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-05-bug-flipx"}, + "body-id-05-plant": {"x": 0.32058823529411773, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-05-plant"}, + "body-id-05-plant-flipx": {"x": 0.32058823529411773, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-05-plant-flipx"}, + "body-id-05-reptile": {"x": 0.32058823529411773, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-05-reptile"}, + "body-id-05-reptile-flipx": { + "x": 0.32058823529411773, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-05-reptile-flipx" + }, + "body-id-06-aquatic": {"x": 0.32058823529411773, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-06-aquatic"}, + "body-id-06-aquatic-flipx": { + "x": 0.32058823529411773, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-06-aquatic-flipx" + }, + "body-id-06-beast": {"x": 0.32058823529411773, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-06-beast"}, + "body-id-06-beast-flipx": {"x": 0.32058823529411773, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-06-beast-flipx"}, + "body-id-06-bird": {"x": 0.32058823529411773, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-06-bird"}, + "body-id-06-bird-flipx": {"x": 0.32058823529411773, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-06-bird-flipx"}, + "body-id-06-bug": {"x": 0.32058823529411773, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-06-bug"}, + "body-id-06-bug-flipx": {"x": 0.32058823529411773, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-06-bug-flipx"}, + "body-id-06-plant": {"x": 0.32058823529411773, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-06-plant"}, + "body-id-06-plant-flipx": {"x": 0.32058823529411773, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-06-plant-flipx"}, + "body-id-06-reptile": {"x": 0.32058823529411773, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-06-reptile"}, + "body-id-06-reptile-flipx": { + "x": 0.32058823529411773, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-06-reptile-flipx" + }, + "body-id-07-aquatic": {"x": 0.32058823529411773, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-07-aquatic"}, + "body-id-07-aquatic-flipx": { + "x": 0.32058823529411773, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-07-aquatic-flipx" + }, + "body-id-07-beast": {"x": 0.32058823529411773, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-07-beast"}, + "body-id-07-beast-flipx": {"x": 0.32058823529411773, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-07-beast-flipx"}, + "body-id-07-bird": {"x": 0.32058823529411773, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-07-bird"}, + "body-id-07-bird-flipx": {"x": 0.32058823529411773, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-07-bird-flipx"}, + "body-id-07-bug": {"x": 0.32058823529411773, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-07-bug"}, + "body-id-07-bug-flipx": {"x": 0.32058823529411773, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-07-bug-flipx"}, + "body-id-07-plant": {"x": 0.32058823529411773, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-07-plant"}, + "body-id-07-plant-flipx": {"x": 0.32058823529411773, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-07-plant-flipx"}, + "body-id-07-reptile": {"x": 0.32058823529411773, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-07-reptile"}, + "body-id-07-reptile-flipx": { + "x": 0.32058823529411773, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-07-reptile-flipx" + }, + "body-id-08-aquatic": {"x": 0.32058823529411773, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-08-aquatic"}, + "body-id-08-aquatic-flipx": { + "x": 0.32058823529411773, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-08-aquatic-flipx" + }, + "body-id-08-beast": {"x": 0.32058823529411773, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-08-beast"}, + "body-id-08-beast-flipx": {"x": 0.32058823529411773, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-08-beast-flipx"}, + "body-id-08-bird": {"x": 0.32058823529411773, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-08-bird"}, + "body-id-08-bird-flipx": {"x": 0.32058823529411773, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-08-bird-flipx"}, + "body-id-08-bug": {"x": 0.32058823529411773, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-08-bug"}, + "body-id-08-bug-flipx": {"x": 0.32058823529411773, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-08-bug-flipx"}, + "body-id-08-plant": {"x": 0.32058823529411773, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-08-plant"}, + "body-id-08-plant-flipx": {"x": 0.32058823529411773, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-08-plant-flipx"}, + "body-id-08-reptile": {"x": 0.32058823529411773, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-08-reptile"}, + "body-id-08-reptile-flipx": { + "x": 0.32058823529411773, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-08-reptile-flipx" + }, + "body-id-09-aquatic": {"x": 0.32058823529411773, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-09-aquatic"}, + "body-id-09-aquatic-flipx": { + "x": 0.32058823529411773, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-09-aquatic-flipx" + }, + "body-id-09-beast": {"x": 0.32058823529411773, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-09-beast"}, + "body-id-09-beast-flipx": {"x": 0.32058823529411773, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-09-beast-flipx"}, + "body-id-09-bird": {"x": 0.32058823529411773, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-09-bird"}, + "body-id-09-bird-flipx": {"x": 0.32058823529411773, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-09-bird-flipx"}, + "body-id-09-bug": {"x": 0.32058823529411773, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-09-bug"}, + "body-id-09-bug-flipx": {"x": 0.32058823529411773, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-09-bug-flipx"}, + "body-id-09-plant": {"x": 0.32058823529411773, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-09-plant"}, + "body-id-09-plant-flipx": {"x": 0.32058823529411773, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-09-plant-flipx"}, + "body-id-09-reptile": {"x": 0.32058823529411773, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-09-reptile"}, + "body-id-09-reptile-flipx": { + "x": 0.32058823529411773, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-09-reptile-flipx" + } + }, + "body-id-d": { + "body-id-d-00": {"x": -0.17941176470588227, "y": 0.847647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-d-00"}, + "body-id-d-01": {"x": 0.9970588235294117, "y": 0.847647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-d-01"}, + "body-id-d-02": {"x": 0.8205882352941177, "y": 0.847647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-d-02"}, + "body-id-d-03": {"x": 0.9970588235294117, "y": 1.0241176470588234, "width": 4.705882352941177, "height": 9.411764705882353, "path": "body-normal.body-id-d-03"}, + "body-id-d-04": {"x": 0.9970588235294117, "y": 0.847647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-d-04"}, + "body-id-d-05": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-d-05"}, + "body-id-d-06": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-d-06"}, + "body-id-d-07": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-d-07"}, + "body-id-d-08": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-d-08"}, + "body-id-d-09": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-d-09"}, + "body-id-00-aquatic": {"x": -0.17941176470588227, "y": 0.847647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-00-aquatic"}, + "body-id-00-aquatic-flipx": { + "x": -0.17941176470588227, "y": 0.847647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-00-aquatic-flipx" + }, + "body-id-00-beast": {"x": -0.17941176470588227, "y": 0.847647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-00-beast"}, + "body-id-00-beast-flipx": {"x": -0.17941176470588227, "y": 0.847647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-00-beast-flipx"}, + "body-id-00-bird": {"x": -0.17941176470588227, "y": 0.847647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-00-bird"}, + "body-id-00-bird-flipx": {"x": -0.17941176470588227, "y": 0.847647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-00-bird-flipx"}, + "body-id-00-bug": {"x": -0.17941176470588227, "y": 0.847647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-00-bug"}, + "body-id-00-bug-flipx": {"x": -0.17941176470588227, "y": 0.847647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-00-bug-flipx"}, + "body-id-00-plant": {"x": -0.17941176470588227, "y": 0.847647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-00-plant"}, + "body-id-00-plant-flipx": {"x": -0.17941176470588227, "y": 0.847647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-00-plant-flipx"}, + "body-id-00-reptile": {"x": -0.17941176470588227, "y": 0.847647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-00-reptile"}, + "body-id-00-reptile-flipx": { + "x": -0.17941176470588227, "y": 0.847647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-00-reptile-flipx" + }, + "body-id-01-aquatic": {"x": 0.9970588235294117, "y": 0.847647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-01-aquatic"}, + "body-id-01-aquatic-flipx": {"x": 0.9970588235294117, "y": 0.847647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-01-aquatic-flipx"}, + "body-id-01-beast": {"x": 0.9970588235294117, "y": 0.847647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-01-beast"}, + "body-id-01-beast-flipx": {"x": 0.9970588235294117, "y": 0.847647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-01-beast-flipx"}, + "body-id-01-bird": {"x": 0.9970588235294117, "y": 0.847647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-01-bird"}, + "body-id-01-bird-flipx": {"x": 0.9970588235294117, "y": 0.847647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-01-bird-flipx"}, + "body-id-01-bug": {"x": 0.9970588235294117, "y": 0.847647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-01-bug"}, + "body-id-01-bug-flipx": {"x": 0.9970588235294117, "y": 0.847647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-01-bug-flipx"}, + "body-id-01-plant": {"x": 0.9970588235294117, "y": 0.847647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-01-plant"}, + "body-id-01-plant-flipx": {"x": 0.9970588235294117, "y": 0.847647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-01-plant-flipx"}, + "body-id-01-reptile": {"x": 0.9970588235294117, "y": 0.847647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-01-reptile"}, + "body-id-01-reptile-flipx": {"x": 0.9970588235294117, "y": 0.847647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-01-reptile-flipx"}, + "body-id-02-aquatic": {"x": 0.8205882352941177, "y": 0.847647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-02-aquatic"}, + "body-id-02-aquatic-flipx": { + "x": 0.8205882352941177, "y": 0.847647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-02-aquatic-flipx" + }, + "body-id-02-beast": {"x": 0.8205882352941177, "y": 0.847647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-02-beast"}, + "body-id-02-beast-flipx": {"x": 0.8205882352941177, "y": 0.847647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-02-beast-flipx"}, + "body-id-02-bird": {"x": 0.8205882352941177, "y": 0.847647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-02-bird"}, + "body-id-02-bird-flipx": {"x": 0.8205882352941177, "y": 0.847647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-02-bird-flipx"}, + "body-id-02-bug": {"x": 0.8205882352941177, "y": 0.847647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-02-bug"}, + "body-id-02-bug-flipx": {"x": 0.8205882352941177, "y": 0.847647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-02-bug-flipx"}, + "body-id-02-plant": {"x": 0.8205882352941177, "y": 0.847647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-02-plant"}, + "body-id-02-plant-flipx": {"x": 0.8205882352941177, "y": 0.847647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-02-plant-flipx"}, + "body-id-02-reptile": {"x": 0.8205882352941177, "y": 0.847647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-02-reptile"}, + "body-id-02-reptile-flipx": { + "x": 0.8205882352941177, "y": 0.847647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-02-reptile-flipx" + }, + "body-id-03-aquatic": {"x": 0.9970588235294117, "y": 1.0241176470588234, "width": 4.705882352941177, "height": 9.411764705882353, "path": "body-normal.body-id-03-aquatic"}, + "body-id-03-aquatic-flipx": {"x": 0.9970588235294117, "y": 1.0241176470588234, "width": 4.705882352941177, "height": 9.411764705882353, "path": "body-normal.body-id-03-aquatic-flipx"}, + "body-id-03-beast": {"x": 0.9970588235294117, "y": 1.0241176470588234, "width": 4.705882352941177, "height": 9.411764705882353, "path": "body-normal.body-id-03-beast"}, + "body-id-03-beast-flipx": {"x": 0.9970588235294117, "y": 1.0241176470588234, "width": 4.705882352941177, "height": 9.411764705882353, "path": "body-normal.body-id-03-beast-flipx"}, + "body-id-03-bird": {"x": 0.9970588235294117, "y": 1.0241176470588234, "width": 4.705882352941177, "height": 9.411764705882353, "path": "body-normal.body-id-03-bird"}, + "body-id-03-bird-flipx": {"x": 0.9970588235294117, "y": 1.0241176470588234, "width": 4.705882352941177, "height": 9.411764705882353, "path": "body-normal.body-id-03-bird-flipx"}, + "body-id-03-bug": {"x": 0.9970588235294117, "y": 1.0241176470588234, "width": 4.705882352941177, "height": 9.411764705882353, "path": "body-normal.body-id-03-bug"}, + "body-id-03-bug-flipx": {"x": 0.9970588235294117, "y": 1.0241176470588234, "width": 4.705882352941177, "height": 9.411764705882353, "path": "body-normal.body-id-03-bug-flipx"}, + "body-id-03-plant": {"x": 0.9970588235294117, "y": 1.0241176470588234, "width": 4.705882352941177, "height": 9.411764705882353, "path": "body-normal.body-id-03-plant"}, + "body-id-03-plant-flipx": {"x": 0.9970588235294117, "y": 1.0241176470588234, "width": 4.705882352941177, "height": 9.411764705882353, "path": "body-normal.body-id-03-plant-flipx"}, + "body-id-03-reptile": {"x": 0.9970588235294117, "y": 1.0241176470588234, "width": 4.705882352941177, "height": 9.411764705882353, "path": "body-normal.body-id-03-reptile"}, + "body-id-03-reptile-flipx": {"x": 0.9970588235294117, "y": 1.0241176470588234, "width": 4.705882352941177, "height": 9.411764705882353, "path": "body-normal.body-id-03-reptile-flipx"}, + "body-id-04-aquatic": {"x": 0.9970588235294117, "y": 0.847647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-04-aquatic"}, + "body-id-04-aquatic-flipx": {"x": 0.9970588235294117, "y": 0.847647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-04-aquatic-flipx"}, + "body-id-04-beast": {"x": 0.9970588235294117, "y": 0.847647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-04-beast"}, + "body-id-04-beast-flipx": {"x": 0.9970588235294117, "y": 0.847647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-04-beast-flipx"}, + "body-id-04-bird": {"x": 0.9970588235294117, "y": 0.847647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-04-bird"}, + "body-id-04-bird-flipx": {"x": 0.9970588235294117, "y": 0.847647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-04-bird-flipx"}, + "body-id-04-bug": {"x": 0.9970588235294117, "y": 0.847647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-04-bug"}, + "body-id-04-bug-flipx": {"x": 0.9970588235294117, "y": 0.847647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-04-bug-flipx"}, + "body-id-04-plant": {"x": 0.9970588235294117, "y": 0.847647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-04-plant"}, + "body-id-04-plant-flipx": {"x": 0.9970588235294117, "y": 0.847647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-04-plant-flipx"}, + "body-id-04-reptile": {"x": 0.9970588235294117, "y": 0.847647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-04-reptile"}, + "body-id-04-reptile-flipx": {"x": 0.9970588235294117, "y": 0.847647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-04-reptile-flipx"}, + "body-id-05-aquatic": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-05-aquatic"}, + "body-id-05-aquatic-flipx": { + "x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-05-aquatic-flipx" + }, + "body-id-05-beast": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-05-beast"}, + "body-id-05-beast-flipx": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-05-beast-flipx"}, + "body-id-05-bird": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-05-bird"}, + "body-id-05-bird-flipx": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-05-bird-flipx"}, + "body-id-05-bug": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-05-bug"}, + "body-id-05-bug-flipx": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-05-bug-flipx"}, + "body-id-05-plant": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-05-plant"}, + "body-id-05-plant-flipx": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-05-plant-flipx"}, + "body-id-05-reptile": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-05-reptile"}, + "body-id-05-reptile-flipx": { + "x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-05-reptile-flipx" + }, + "body-id-06-aquatic": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-06-aquatic"}, + "body-id-06-aquatic-flipx": { + "x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-06-aquatic-flipx" + }, + "body-id-06-beast": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-06-beast"}, + "body-id-06-beast-flipx": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-06-beast-flipx"}, + "body-id-06-bird": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-06-bird"}, + "body-id-06-bird-flipx": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-06-bird-flipx"}, + "body-id-06-bug": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-06-bug"}, + "body-id-06-bug-flipx": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-06-bug-flipx"}, + "body-id-06-plant": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-06-plant"}, + "body-id-06-plant-flipx": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-06-plant-flipx"}, + "body-id-06-reptile": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-06-reptile"}, + "body-id-06-reptile-flipx": { + "x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-06-reptile-flipx" + }, + "body-id-07-aquatic": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-07-aquatic"}, + "body-id-07-aquatic-flipx": { + "x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-07-aquatic-flipx" + }, + "body-id-07-beast": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-07-beast"}, + "body-id-07-beast-flipx": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-07-beast-flipx"}, + "body-id-07-bird": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-07-bird"}, + "body-id-07-bird-flipx": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-07-bird-flipx"}, + "body-id-07-bug": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-07-bug"}, + "body-id-07-bug-flipx": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-07-bug-flipx"}, + "body-id-07-plant": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-07-plant"}, + "body-id-07-plant-flipx": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-07-plant-flipx"}, + "body-id-07-reptile": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-07-reptile"}, + "body-id-07-reptile-flipx": { + "x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-07-reptile-flipx" + }, + "body-id-08-aquatic": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-08-aquatic"}, + "body-id-08-aquatic-flipx": { + "x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-08-aquatic-flipx" + }, + "body-id-08-beast": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-08-beast"}, + "body-id-08-beast-flipx": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-08-beast-flipx"}, + "body-id-08-bird": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-08-bird"}, + "body-id-08-bird-flipx": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-08-bird-flipx"}, + "body-id-08-bug": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-08-bug"}, + "body-id-08-bug-flipx": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-08-bug-flipx"}, + "body-id-08-plant": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-08-plant"}, + "body-id-08-plant-flipx": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-08-plant-flipx"}, + "body-id-08-reptile": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-08-reptile"}, + "body-id-08-reptile-flipx": { + "x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-08-reptile-flipx" + }, + "body-id-09-aquatic": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-09-aquatic"}, + "body-id-09-aquatic-flipx": { + "x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-09-aquatic-flipx" + }, + "body-id-09-beast": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-09-beast"}, + "body-id-09-beast-flipx": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-09-beast-flipx"}, + "body-id-09-bird": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-09-bird"}, + "body-id-09-bird-flipx": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-09-bird-flipx"}, + "body-id-09-bug": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-09-bug"}, + "body-id-09-bug-flipx": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-09-bug-flipx"}, + "body-id-09-plant": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-09-plant"}, + "body-id-09-plant-flipx": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-09-plant-flipx"}, + "body-id-09-reptile": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-09-reptile"}, + "body-id-09-reptile-flipx": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-09-reptile-flipx"} + }, + "body-id-e": { + "body-id-e-00": {"x": -0.17941176470588227, "y": 0.847647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-e-00"}, + "body-id-e-01": {"x": 0.9970588235294117, "y": 0.847647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-e-01"}, + "body-id-e-02": {"x": 0.8205882352941177, "y": 0.847647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-e-02"}, + "body-id-e-03": {"x": 0.9970588235294117, "y": 1.0241176470588234, "width": 4.705882352941177, "height": 9.411764705882353, "path": "body-normal.body-id-e-03"}, + "body-id-e-04": {"x": 0.9970588235294117, "y": 0.847647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-e-04"}, + "body-id-e-05": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-e-05"}, + "body-id-e-06": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-e-06"}, + "body-id-e-07": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-e-07"}, + "body-id-e-08": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-e-08"}, + "body-id-e-09": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-e-09"}, + "body-id-00-aquatic": {"x": -0.17941176470588227, "y": 0.847647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-00-aquatic"}, + "body-id-00-aquatic-flipx": { + "x": -0.17941176470588227, "y": 0.847647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-00-aquatic-flipx" + }, + "body-id-00-beast": {"x": -0.17941176470588227, "y": 0.847647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-00-beast"}, + "body-id-00-beast-flipx": {"x": -0.17941176470588227, "y": 0.847647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-00-beast-flipx"}, + "body-id-00-bird": {"x": -0.17941176470588227, "y": 0.847647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-00-bird"}, + "body-id-00-bird-flipx": {"x": -0.17941176470588227, "y": 0.847647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-00-bird-flipx"}, + "body-id-00-bug": {"x": -0.17941176470588227, "y": 0.847647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-00-bug"}, + "body-id-00-bug-flipx": {"x": -0.17941176470588227, "y": 0.847647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-00-bug-flipx"}, + "body-id-00-plant": {"x": -0.17941176470588227, "y": 0.847647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-00-plant"}, + "body-id-00-plant-flipx": {"x": -0.17941176470588227, "y": 0.847647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-00-plant-flipx"}, + "body-id-00-reptile": {"x": -0.17941176470588227, "y": 0.847647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-00-reptile"}, + "body-id-00-reptile-flipx": { + "x": -0.17941176470588227, "y": 0.847647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-00-reptile-flipx" + }, + "body-id-01-aquatic": {"x": 0.9970588235294117, "y": 0.847647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-01-aquatic"}, + "body-id-01-aquatic-flipx": {"x": 0.9970588235294117, "y": 0.847647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-01-aquatic-flipx"}, + "body-id-01-beast": {"x": 0.9970588235294117, "y": 0.847647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-01-beast"}, + "body-id-01-beast-flipx": {"x": 0.9970588235294117, "y": 0.847647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-01-beast-flipx"}, + "body-id-01-bird": {"x": 0.9970588235294117, "y": 0.847647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-01-bird"}, + "body-id-01-bird-flipx": {"x": 0.9970588235294117, "y": 0.847647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-01-bird-flipx"}, + "body-id-01-bug": {"x": 0.9970588235294117, "y": 0.847647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-01-bug"}, + "body-id-01-bug-flipx": {"x": 0.9970588235294117, "y": 0.847647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-01-bug-flipx"}, + "body-id-01-plant": {"x": 0.9970588235294117, "y": 0.847647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-01-plant"}, + "body-id-01-plant-flipx": {"x": 0.9970588235294117, "y": 0.847647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-01-plant-flipx"}, + "body-id-01-reptile": {"x": 0.9970588235294117, "y": 0.847647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-01-reptile"}, + "body-id-01-reptile-flipx": {"x": 0.9970588235294117, "y": 0.847647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-01-reptile-flipx"}, + "body-id-02-aquatic": {"x": 0.8205882352941177, "y": 0.847647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-02-aquatic"}, + "body-id-02-aquatic-flipx": { + "x": 0.8205882352941177, "y": 0.847647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-02-aquatic-flipx" + }, + "body-id-02-beast": {"x": 0.8205882352941177, "y": 0.847647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-02-beast"}, + "body-id-02-beast-flipx": {"x": 0.8205882352941177, "y": 0.847647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-02-beast-flipx"}, + "body-id-02-bird": {"x": 0.8205882352941177, "y": 0.847647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-02-bird"}, + "body-id-02-bird-flipx": {"x": 0.8205882352941177, "y": 0.847647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-02-bird-flipx"}, + "body-id-02-bug": {"x": 0.8205882352941177, "y": 0.847647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-02-bug"}, + "body-id-02-bug-flipx": {"x": 0.8205882352941177, "y": 0.847647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-02-bug-flipx"}, + "body-id-02-plant": {"x": 0.8205882352941177, "y": 0.847647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-02-plant"}, + "body-id-02-plant-flipx": {"x": 0.8205882352941177, "y": 0.847647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-02-plant-flipx"}, + "body-id-02-reptile": {"x": 0.8205882352941177, "y": 0.847647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-02-reptile"}, + "body-id-02-reptile-flipx": { + "x": 0.8205882352941177, "y": 0.847647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-02-reptile-flipx" + }, + "body-id-03-aquatic": {"x": 0.9970588235294117, "y": 1.0241176470588234, "width": 4.705882352941177, "height": 9.411764705882353, "path": "body-normal.body-id-03-aquatic"}, + "body-id-03-aquatic-flipx": {"x": 0.9970588235294117, "y": 1.0241176470588234, "width": 4.705882352941177, "height": 9.411764705882353, "path": "body-normal.body-id-03-aquatic-flipx"}, + "body-id-03-beast": {"x": 0.9970588235294117, "y": 1.0241176470588234, "width": 4.705882352941177, "height": 9.411764705882353, "path": "body-normal.body-id-03-beast"}, + "body-id-03-beast-flipx": {"x": 0.9970588235294117, "y": 1.0241176470588234, "width": 4.705882352941177, "height": 9.411764705882353, "path": "body-normal.body-id-03-beast-flipx"}, + "body-id-03-bird": {"x": 0.9970588235294117, "y": 1.0241176470588234, "width": 4.705882352941177, "height": 9.411764705882353, "path": "body-normal.body-id-03-bird"}, + "body-id-03-bird-flipx": {"x": 0.9970588235294117, "y": 1.0241176470588234, "width": 4.705882352941177, "height": 9.411764705882353, "path": "body-normal.body-id-03-bird-flipx"}, + "body-id-03-bug": {"x": 0.9970588235294117, "y": 1.0241176470588234, "width": 4.705882352941177, "height": 9.411764705882353, "path": "body-normal.body-id-03-bug"}, + "body-id-03-bug-flipx": {"x": 0.9970588235294117, "y": 1.0241176470588234, "width": 4.705882352941177, "height": 9.411764705882353, "path": "body-normal.body-id-03-bug-flipx"}, + "body-id-03-plant": {"x": 0.9970588235294117, "y": 1.0241176470588234, "width": 4.705882352941177, "height": 9.411764705882353, "path": "body-normal.body-id-03-plant"}, + "body-id-03-plant-flipx": {"x": 0.9970588235294117, "y": 1.0241176470588234, "width": 4.705882352941177, "height": 9.411764705882353, "path": "body-normal.body-id-03-plant-flipx"}, + "body-id-03-reptile": {"x": 0.9970588235294117, "y": 1.0241176470588234, "width": 4.705882352941177, "height": 9.411764705882353, "path": "body-normal.body-id-03-reptile"}, + "body-id-03-reptile-flipx": {"x": 0.9970588235294117, "y": 1.0241176470588234, "width": 4.705882352941177, "height": 9.411764705882353, "path": "body-normal.body-id-03-reptile-flipx"}, + "body-id-04-aquatic": {"x": 0.9970588235294117, "y": 0.847647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-04-aquatic"}, + "body-id-04-aquatic-flipx": {"x": 0.9970588235294117, "y": 0.847647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-04-aquatic-flipx"}, + "body-id-04-beast": {"x": 0.9970588235294117, "y": 0.847647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-04-beast"}, + "body-id-04-beast-flipx": {"x": 0.9970588235294117, "y": 0.847647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-04-beast-flipx"}, + "body-id-04-bird": {"x": 0.9970588235294117, "y": 0.847647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-04-bird"}, + "body-id-04-bird-flipx": {"x": 0.9970588235294117, "y": 0.847647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-04-bird-flipx"}, + "body-id-04-bug": {"x": 0.9970588235294117, "y": 0.847647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-04-bug"}, + "body-id-04-bug-flipx": {"x": 0.9970588235294117, "y": 0.847647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-04-bug-flipx"}, + "body-id-04-plant": {"x": 0.9970588235294117, "y": 0.847647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-04-plant"}, + "body-id-04-plant-flipx": {"x": 0.9970588235294117, "y": 0.847647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-04-plant-flipx"}, + "body-id-04-reptile": {"x": 0.9970588235294117, "y": 0.847647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-04-reptile"}, + "body-id-04-reptile-flipx": {"x": 0.9970588235294117, "y": 0.847647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-04-reptile-flipx"}, + "body-id-05-aquatic": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-05-aquatic"}, + "body-id-05-aquatic-flipx": { + "x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-05-aquatic-flipx" + }, + "body-id-05-beast": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-05-beast"}, + "body-id-05-beast-flipx": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-05-beast-flipx"}, + "body-id-05-bird": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-05-bird"}, + "body-id-05-bird-flipx": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-05-bird-flipx"}, + "body-id-05-bug": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-05-bug"}, + "body-id-05-bug-flipx": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-05-bug-flipx"}, + "body-id-05-plant": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-05-plant"}, + "body-id-05-plant-flipx": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-05-plant-flipx"}, + "body-id-05-reptile": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-05-reptile"}, + "body-id-05-reptile-flipx": { + "x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-05-reptile-flipx" + }, + "body-id-06-aquatic": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-06-aquatic"}, + "body-id-06-aquatic-flipx": { + "x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-06-aquatic-flipx" + }, + "body-id-06-beast": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-06-beast"}, + "body-id-06-beast-flipx": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-06-beast-flipx"}, + "body-id-06-bird": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-06-bird"}, + "body-id-06-bird-flipx": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-06-bird-flipx"}, + "body-id-06-bug": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-06-bug"}, + "body-id-06-bug-flipx": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-06-bug-flipx"}, + "body-id-06-plant": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-06-plant"}, + "body-id-06-plant-flipx": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-06-plant-flipx"}, + "body-id-06-reptile": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-06-reptile"}, + "body-id-06-reptile-flipx": { + "x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-06-reptile-flipx" + }, + "body-id-07-aquatic": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-07-aquatic"}, + "body-id-07-aquatic-flipx": { + "x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-07-aquatic-flipx" + }, + "body-id-07-beast": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-07-beast"}, + "body-id-07-beast-flipx": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-07-beast-flipx"}, + "body-id-07-bird": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-07-bird"}, + "body-id-07-bird-flipx": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-07-bird-flipx"}, + "body-id-07-bug": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-07-bug"}, + "body-id-07-bug-flipx": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-07-bug-flipx"}, + "body-id-07-plant": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-07-plant"}, + "body-id-07-plant-flipx": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-07-plant-flipx"}, + "body-id-07-reptile": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-07-reptile"}, + "body-id-07-reptile-flipx": { + "x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-07-reptile-flipx" + }, + "body-id-08-aquatic": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-08-aquatic"}, + "body-id-08-aquatic-flipx": { + "x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-08-aquatic-flipx" + }, + "body-id-08-beast": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-08-beast"}, + "body-id-08-beast-flipx": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-08-beast-flipx"}, + "body-id-08-bird": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-08-bird"}, + "body-id-08-bird-flipx": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-08-bird-flipx"}, + "body-id-08-bug": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-08-bug"}, + "body-id-08-bug-flipx": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-08-bug-flipx"}, + "body-id-08-plant": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-08-plant"}, + "body-id-08-plant-flipx": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-08-plant-flipx"}, + "body-id-08-reptile": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-08-reptile"}, + "body-id-08-reptile-flipx": { + "x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-08-reptile-flipx" + }, + "body-id-09-aquatic": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-09-aquatic"}, + "body-id-09-aquatic-flipx": { + "x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-09-aquatic-flipx" + }, + "body-id-09-beast": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-09-beast"}, + "body-id-09-beast-flipx": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-09-beast-flipx"}, + "body-id-09-bird": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-09-bird"}, + "body-id-09-bird-flipx": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-09-bird-flipx"}, + "body-id-09-bug": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-09-bug"}, + "body-id-09-bug-flipx": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-09-bug-flipx"}, + "body-id-09-plant": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-09-plant"}, + "body-id-09-plant-flipx": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-09-plant-flipx"}, + "body-id-09-reptile": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-09-reptile"}, + "body-id-09-reptile-flipx": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-09-reptile-flipx"} + }, + "body-id-f": { + "body-id-f-00": {"x": -0.17941176470588227, "y": 0.847647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-f-00"}, + "body-id-f-01": {"x": 0.9970588235294117, "y": 0.847647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-f-01"}, + "body-id-f-02": {"x": 0.8205882352941177, "y": 0.847647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-f-02"}, + "body-id-f-03": {"x": 0.9970588235294117, "y": 1.0241176470588234, "width": 4.705882352941177, "height": 9.411764705882353, "path": "body-normal.body-id-f-03"}, + "body-id-f-04": {"x": 0.9970588235294117, "y": 0.847647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-f-04"}, + "body-id-f-05": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-f-05"}, + "body-id-f-06": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-f-06"}, + "body-id-f-07": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-f-07"}, + "body-id-f-08": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-f-08"}, + "body-id-f-09": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-f-09"}, + "body-id-00-aquatic": {"x": -0.17941176470588227, "y": 0.847647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-00-aquatic"}, + "body-id-00-aquatic-flipx": { + "x": -0.17941176470588227, "y": 0.847647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-00-aquatic-flipx" + }, + "body-id-00-beast": {"x": -0.17941176470588227, "y": 0.847647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-00-beast"}, + "body-id-00-beast-flipx": {"x": -0.17941176470588227, "y": 0.847647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-00-beast-flipx"}, + "body-id-00-bird": {"x": -0.17941176470588227, "y": 0.847647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-00-bird"}, + "body-id-00-bird-flipx": {"x": -0.17941176470588227, "y": 0.847647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-00-bird-flipx"}, + "body-id-00-bug": {"x": -0.17941176470588227, "y": 0.847647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-00-bug"}, + "body-id-00-bug-flipx": {"x": -0.17941176470588227, "y": 0.847647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-00-bug-flipx"}, + "body-id-00-plant": {"x": -0.17941176470588227, "y": 0.847647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-00-plant"}, + "body-id-00-plant-flipx": {"x": -0.17941176470588227, "y": 0.847647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-00-plant-flipx"}, + "body-id-00-reptile": {"x": -0.17941176470588227, "y": 0.847647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-00-reptile"}, + "body-id-00-reptile-flipx": { + "x": -0.17941176470588227, "y": 0.847647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-00-reptile-flipx" + }, + "body-id-01-aquatic": {"x": 0.9970588235294117, "y": 0.847647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-01-aquatic"}, + "body-id-01-aquatic-flipx": {"x": 0.9970588235294117, "y": 0.847647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-01-aquatic-flipx"}, + "body-id-01-beast": {"x": 0.9970588235294117, "y": 0.847647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-01-beast"}, + "body-id-01-beast-flipx": {"x": 0.9970588235294117, "y": 0.847647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-01-beast-flipx"}, + "body-id-01-bird": {"x": 0.9970588235294117, "y": 0.847647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-01-bird"}, + "body-id-01-bird-flipx": {"x": 0.9970588235294117, "y": 0.847647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-01-bird-flipx"}, + "body-id-01-bug": {"x": 0.9970588235294117, "y": 0.847647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-01-bug"}, + "body-id-01-bug-flipx": {"x": 0.9970588235294117, "y": 0.847647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-01-bug-flipx"}, + "body-id-01-plant": {"x": 0.9970588235294117, "y": 0.847647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-01-plant"}, + "body-id-01-plant-flipx": {"x": 0.9970588235294117, "y": 0.847647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-01-plant-flipx"}, + "body-id-01-reptile": {"x": 0.9970588235294117, "y": 0.847647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-01-reptile"}, + "body-id-01-reptile-flipx": {"x": 0.9970588235294117, "y": 0.847647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-01-reptile-flipx"}, + "body-id-02-aquatic": {"x": 0.8205882352941177, "y": 0.847647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-02-aquatic"}, + "body-id-02-aquatic-flipx": { + "x": 0.8205882352941177, "y": 0.847647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-02-aquatic-flipx" + }, + "body-id-02-beast": {"x": 0.8205882352941177, "y": 0.847647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-02-beast"}, + "body-id-02-beast-flipx": {"x": 0.8205882352941177, "y": 0.847647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-02-beast-flipx"}, + "body-id-02-bird": {"x": 0.8205882352941177, "y": 0.847647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-02-bird"}, + "body-id-02-bird-flipx": {"x": 0.8205882352941177, "y": 0.847647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-02-bird-flipx"}, + "body-id-02-bug": {"x": 0.8205882352941177, "y": 0.847647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-02-bug"}, + "body-id-02-bug-flipx": {"x": 0.8205882352941177, "y": 0.847647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-02-bug-flipx"}, + "body-id-02-plant": {"x": 0.8205882352941177, "y": 0.847647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-02-plant"}, + "body-id-02-plant-flipx": {"x": 0.8205882352941177, "y": 0.847647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-02-plant-flipx"}, + "body-id-02-reptile": {"x": 0.8205882352941177, "y": 0.847647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-02-reptile"}, + "body-id-02-reptile-flipx": { + "x": 0.8205882352941177, "y": 0.847647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-02-reptile-flipx" + }, + "body-id-03-aquatic": {"x": 0.9970588235294117, "y": 1.0241176470588234, "width": 4.705882352941177, "height": 9.411764705882353, "path": "body-normal.body-id-03-aquatic"}, + "body-id-03-aquatic-flipx": {"x": 0.9970588235294117, "y": 1.0241176470588234, "width": 4.705882352941177, "height": 9.411764705882353, "path": "body-normal.body-id-03-aquatic-flipx"}, + "body-id-03-beast": {"x": 0.9970588235294117, "y": 1.0241176470588234, "width": 4.705882352941177, "height": 9.411764705882353, "path": "body-normal.body-id-03-beast"}, + "body-id-03-beast-flipx": {"x": 0.9970588235294117, "y": 1.0241176470588234, "width": 4.705882352941177, "height": 9.411764705882353, "path": "body-normal.body-id-03-beast-flipx"}, + "body-id-03-bird": {"x": 0.9970588235294117, "y": 1.0241176470588234, "width": 4.705882352941177, "height": 9.411764705882353, "path": "body-normal.body-id-03-bird"}, + "body-id-03-bird-flipx": {"x": 0.9970588235294117, "y": 1.0241176470588234, "width": 4.705882352941177, "height": 9.411764705882353, "path": "body-normal.body-id-03-bird-flipx"}, + "body-id-03-bug": {"x": 0.9970588235294117, "y": 1.0241176470588234, "width": 4.705882352941177, "height": 9.411764705882353, "path": "body-normal.body-id-03-bug"}, + "body-id-03-bug-flipx": {"x": 0.9970588235294117, "y": 1.0241176470588234, "width": 4.705882352941177, "height": 9.411764705882353, "path": "body-normal.body-id-03-bug-flipx"}, + "body-id-03-plant": {"x": 0.9970588235294117, "y": 1.0241176470588234, "width": 4.705882352941177, "height": 9.411764705882353, "path": "body-normal.body-id-03-plant"}, + "body-id-03-plant-flipx": {"x": 0.9970588235294117, "y": 1.0241176470588234, "width": 4.705882352941177, "height": 9.411764705882353, "path": "body-normal.body-id-03-plant-flipx"}, + "body-id-03-reptile": {"x": 0.9970588235294117, "y": 1.0241176470588234, "width": 4.705882352941177, "height": 9.411764705882353, "path": "body-normal.body-id-03-reptile"}, + "body-id-03-reptile-flipx": {"x": 0.9970588235294117, "y": 1.0241176470588234, "width": 4.705882352941177, "height": 9.411764705882353, "path": "body-normal.body-id-03-reptile-flipx"}, + "body-id-04-aquatic": {"x": 0.9970588235294117, "y": 0.847647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-04-aquatic"}, + "body-id-04-aquatic-flipx": {"x": 0.9970588235294117, "y": 0.847647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-04-aquatic-flipx"}, + "body-id-04-beast": {"x": 0.9970588235294117, "y": 0.847647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-04-beast"}, + "body-id-04-beast-flipx": {"x": 0.9970588235294117, "y": 0.847647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-04-beast-flipx"}, + "body-id-04-bird": {"x": 0.9970588235294117, "y": 0.847647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-04-bird"}, + "body-id-04-bird-flipx": {"x": 0.9970588235294117, "y": 0.847647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-04-bird-flipx"}, + "body-id-04-bug": {"x": 0.9970588235294117, "y": 0.847647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-04-bug"}, + "body-id-04-bug-flipx": {"x": 0.9970588235294117, "y": 0.847647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-04-bug-flipx"}, + "body-id-04-plant": {"x": 0.9970588235294117, "y": 0.847647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-04-plant"}, + "body-id-04-plant-flipx": {"x": 0.9970588235294117, "y": 0.847647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-04-plant-flipx"}, + "body-id-04-reptile": {"x": 0.9970588235294117, "y": 0.847647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-04-reptile"}, + "body-id-04-reptile-flipx": {"x": 0.9970588235294117, "y": 0.847647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-04-reptile-flipx"}, + "body-id-05-aquatic": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-05-aquatic"}, + "body-id-05-aquatic-flipx": { + "x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-05-aquatic-flipx" + }, + "body-id-05-beast": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-05-beast"}, + "body-id-05-beast-flipx": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-05-beast-flipx"}, + "body-id-05-bird": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-05-bird"}, + "body-id-05-bird-flipx": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-05-bird-flipx"}, + "body-id-05-bug": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-05-bug"}, + "body-id-05-bug-flipx": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-05-bug-flipx"}, + "body-id-05-plant": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-05-plant"}, + "body-id-05-plant-flipx": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-05-plant-flipx"}, + "body-id-05-reptile": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-05-reptile"}, + "body-id-05-reptile-flipx": { + "x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-05-reptile-flipx" + }, + "body-id-06-aquatic": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-06-aquatic"}, + "body-id-06-aquatic-flipx": { + "x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-06-aquatic-flipx" + }, + "body-id-06-beast": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-06-beast"}, + "body-id-06-beast-flipx": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-06-beast-flipx"}, + "body-id-06-bird": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-06-bird"}, + "body-id-06-bird-flipx": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-06-bird-flipx"}, + "body-id-06-bug": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-06-bug"}, + "body-id-06-bug-flipx": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-06-bug-flipx"}, + "body-id-06-plant": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-06-plant"}, + "body-id-06-plant-flipx": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-06-plant-flipx"}, + "body-id-06-reptile": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-06-reptile"}, + "body-id-06-reptile-flipx": { + "x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-06-reptile-flipx" + }, + "body-id-07-aquatic": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-07-aquatic"}, + "body-id-07-aquatic-flipx": { + "x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-07-aquatic-flipx" + }, + "body-id-07-beast": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-07-beast"}, + "body-id-07-beast-flipx": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-07-beast-flipx"}, + "body-id-07-bird": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-07-bird"}, + "body-id-07-bird-flipx": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-07-bird-flipx"}, + "body-id-07-bug": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-07-bug"}, + "body-id-07-bug-flipx": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-07-bug-flipx"}, + "body-id-07-plant": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-07-plant"}, + "body-id-07-plant-flipx": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-07-plant-flipx"}, + "body-id-07-reptile": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-07-reptile"}, + "body-id-07-reptile-flipx": { + "x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-07-reptile-flipx" + }, + "body-id-08-aquatic": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-08-aquatic"}, + "body-id-08-aquatic-flipx": { + "x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-08-aquatic-flipx" + }, + "body-id-08-beast": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-08-beast"}, + "body-id-08-beast-flipx": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-08-beast-flipx"}, + "body-id-08-bird": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-08-bird"}, + "body-id-08-bird-flipx": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-08-bird-flipx"}, + "body-id-08-bug": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-08-bug"}, + "body-id-08-bug-flipx": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-08-bug-flipx"}, + "body-id-08-plant": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-08-plant"}, + "body-id-08-plant-flipx": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-08-plant-flipx"}, + "body-id-08-reptile": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-08-reptile"}, + "body-id-08-reptile-flipx": { + "x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-08-reptile-flipx" + }, + "body-id-09-aquatic": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-09-aquatic"}, + "body-id-09-aquatic-flipx": { + "x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-09-aquatic-flipx" + }, + "body-id-09-beast": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-09-beast"}, + "body-id-09-beast-flipx": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-09-beast-flipx"}, + "body-id-09-bird": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-09-bird"}, + "body-id-09-bird-flipx": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-09-bird-flipx"}, + "body-id-09-bug": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-09-bug"}, + "body-id-09-bug-flipx": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-09-bug-flipx"}, + "body-id-09-plant": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-09-plant"}, + "body-id-09-plant-flipx": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-09-plant-flipx"}, + "body-id-09-reptile": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-09-reptile"}, + "body-id-09-reptile-flipx": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-09-reptile-flipx"} + }, + "body-light-breath": { + "body-light-breath": { + "x": -142.35352941176473, "y": 11.966470588235289, "rotation": -170.69, "width": 77.64705882352942, "height": 77.64705882352942, "path": "body-normal.body-light-breath" + } + }, + "body-light-life": { + "body-light-life": {"x": 1.048823529411768, "y": 1.7188235294117682, "width": 145.88235294117646, "height": 145.88235294117646, "path": "body-normal.body-light-life"} + }, + "body-light-pulse": { + "body-light-pulse": { + "x": -244.86882352941177, "y": -185.33235294117645, "rotation": -170.69, "width": 14.117647058823529, "height": 11.764705882352942, "path": "body-normal.body-light-pulse" + } + }, + "leg-back-left": { + "mystic-leg-back-left": {"x": 32.56, "y": -0.18235294117647105, "rotation": 83.45, "width": 80.0, "height": 91.76470588235294, "path": "body-normal.mystic-leg-back-left"}, + "mystic-leg-back-left-long": {"x": 35.037058823529414, "y": -4.5, "rotation": 221.45, "width": 84.70588235294117, "height": 80.0, "path": "body-normal.mystic-leg-back-left-long"}, + "mystic-leg-back-left-stretch": { + "x": 27.84882352941176, "y": 2.462352941176471, "rotation": 54.45, "width": 65.88235294117648, "height": 68.23529411764706, "path": "body-normal.mystic-leg-back-left-stretch" + } + }, + "leg-front-left": { + "mystic-leg-front-left": { + "x": 22.86235294117647, "y": 2.091764705882351, "rotation": 97.51, "width": 68.23529411764706, "height": 61.1764705882353, "path": "body-normal.mystic-leg-front-left" + }, + "mystic-leg-front-left-long": { + "x": 28.450588235294116, "y": -5.187058823529413, "rotation": -173.75, "width": 87.05882352941177, "height": 75.29411764705883, "path": "body-normal.mystic-leg-front-left-long" + }, + "mystic-leg-front-left-stretch": { + "x": 20.12235294117647, "y": -3.107058823529413, "rotation": 142.15, "width": 68.23529411764706, "height": 75.29411764705883, "path": "body-normal.mystic-leg-front-left-stretch" + } + }, + "leg-front-right": { + "mystic-leg-front-right": {"x": 31.35, "y": -0.5423529411764709, "rotation": 87.96, "width": 80.0, "height": 91.76470588235294, "path": "body-normal.mystic-leg-front-right"}, + "mystic-leg-front-right-long": { + "x": 37.53058823529412, "y": 0.20294117647058696, "rotation": 205.96, "width": 87.05882352941177, "height": 75.29411764705883, "path": "body-normal.mystic-leg-front-right-long" + }, + "mystic-leg-front-right-stretch": { + "x": 31.15, "y": 2.192352941176471, "rotation": 142.01, "width": 80.0, "height": 68.23529411764706, "path": "body-normal.mystic-leg-front-right-stretch" + } + }, + "shadow": {"shadow": {"width": 945.8823529411765, "height": 190.58823529411765, "path": "body-mystic-normal.shadow", "x": 0.05882352941176805, "y": 0.20588235294117396}}, + "body-air": { + "body-air1a_00": {"x": 1.37, "y": 35.21, "width": 209.41176470588235, "height": 129.41176470588235, "path": "body-accessory.body-air1a_00"}, + "body-air1a_01": {"x": 1.37, "y": 35.21, "width": 209.41176470588235, "height": 129.41176470588235, "path": "body-accessory.body-air1a_01"}, + "body-air1a_02": {"x": 1.37, "y": 35.21, "width": 209.41176470588235, "height": 129.41176470588235, "path": "body-accessory.body-air1a_02"}, + "body-air1a_03": {"x": 1.37, "y": 35.21, "width": 209.41176470588235, "height": 129.41176470588235, "path": "body-accessory.body-air1a_03"}, + "body-air1a_04": {"x": 1.37, "y": 35.21, "width": 209.41176470588235, "height": 129.41176470588235, "path": "body-accessory.body-air1a_04"}, + "body-air1a_05": {"x": 1.37, "y": 35.21, "width": 209.41176470588235, "height": 129.41176470588235, "path": "body-accessory.body-air1a_05"}, + "body-air1a_06": {"x": 1.37, "y": 35.21, "width": 209.41176470588235, "height": 129.41176470588235, "path": "body-accessory.body-air1a_06"}, + "body-air1a_07": {"x": 1.37, "y": 35.21, "width": 209.41176470588235, "height": 129.41176470588235, "path": "body-accessory.body-air1a_07"}, + "body-air1b_00": {"x": 1.37, "y": 35.21, "width": 155.29411764705884, "height": 192.94117647058823, "path": "body-accessory.body-air1b_00"}, + "body-air1b_01": {"x": 1.37, "y": 35.21, "width": 155.29411764705884, "height": 192.94117647058823, "path": "body-accessory.body-air1b_01"}, + "body-air1b_02": {"x": 1.37, "y": 35.21, "width": 155.29411764705884, "height": 192.94117647058823, "path": "body-accessory.body-air1b_02"}, + "body-air1c_00": {"x": 1.37, "y": 35.21, "width": 200.0, "height": 289.4117647058824, "path": "body-accessory.body-air1c_00"}, + "body-air1c_01": {"x": 1.37, "y": 35.21, "width": 200.0, "height": 289.4117647058824, "path": "body-accessory.body-air1c_01"}, + "body-air1c_02": {"x": 1.37, "y": 35.21, "width": 200.0, "height": 289.4117647058824, "path": "body-accessory.body-air1c_02"}, + "body-air1c_03": {"x": 1.37, "y": 35.21, "width": 200.0, "height": 289.4117647058824, "path": "body-accessory.body-air1c_03"}, + "body-air1d_00": {"x": 1.37, "y": 35.21, "width": 204.7058823529412, "height": 272.94117647058823, "path": "body-accessory.body-air1d_00"}, + "body-air1d_01": {"x": 1.37, "y": 35.21, "width": 204.7058823529412, "height": 272.94117647058823, "path": "body-accessory.body-air1d_01"}, + "body-air1d_02": {"x": 1.37, "y": 35.21, "width": 204.7058823529412, "height": 272.94117647058823, "path": "body-accessory.body-air1d_02"}, + "body-air1d_03": {"x": 1.37, "y": 35.21, "width": 204.7058823529412, "height": 272.94117647058823, "path": "body-accessory.body-air1d_03"} + }, + "body-cheek": { + "body-cheek1a": {"x": 1.52, "y": 3.04, "width": 58.82352941176471, "height": 58.82352941176471, "path": "body-accessory.body-cheek1a"}, + "body-cheek1b": {"x": 1.52, "y": 3.04, "width": 49.411764705882355, "height": 77.64705882352942, "path": "body-accessory.body-cheek1b"}, + "body-cheek1c": {"x": 1.52, "y": 3.04, "width": 49.411764705882355, "height": 77.64705882352942, "path": "body-accessory.body-cheek1c"}, + "body-cheek1d": {"x": 1.52, "y": 3.04, "width": 49.411764705882355, "height": 75.29411764705883, "path": "body-accessory.body-cheek1d"}, + "body-cheek1e": {"x": 1.52, "y": 3.04, "width": 54.11764705882353, "height": 80.0, "path": "body-accessory.body-cheek1e"}, + "body-cheek1f": {"x": 1.52, "y": 3.04, "width": 56.470588235294116, "height": 58.82352941176471, "path": "body-accessory.body-cheek1f"}, + "body-cheek1g": {"x": 1.52, "y": 3.04, "width": 103.52941176470588, "height": 96.47058823529412, "path": "body-accessory.body-cheek1g"} + }, + "body-ground": { + "body-ground1a_00": {"x": 4.75, "y": 123.01, "width": 254.11764705882354, "height": 272.94117647058823, "path": "body-accessory.body-ground1a_00"}, + "body-ground1a_01": {"x": 4.75, "y": 123.01, "width": 254.11764705882354, "height": 272.94117647058823, "path": "body-accessory.body-ground1a_01"}, + "body-ground1a_02": {"x": 4.75, "y": 123.01, "width": 254.11764705882354, "height": 272.94117647058823, "path": "body-accessory.body-ground1a_02"}, + "body-ground1a_03": {"x": 4.75, "y": 123.01, "width": 254.11764705882354, "height": 272.94117647058823, "path": "body-accessory.body-ground1a_03"} + }, + "body-hip": { + "body-hip1a": {"x": -16.0, "width": 108.23529411764706, "height": 138.8235294117647, "path": "body-accessory.body-hip1a", "y": 0.0}, + "body-hip1b": {"x": -16.0, "width": 209.41176470588235, "height": 214.11764705882354, "path": "body-accessory.body-hip1b", "y": 0.0}, + "body-hip1c": {"x": -16.0, "width": 122.3529411764706, "height": 157.64705882352942, "path": "body-accessory.body-hip1c", "y": 0.0}, + "body-hip1d": {"x": -16.0, "width": 202.35294117647058, "height": 143.52941176470588, "path": "body-accessory.body-hip1d", "y": 0.0} + }, + "body-neck": { + "body-neck1a": {"x": -5.4, "y": -54.79, "width": 91.76470588235294, "height": 96.47058823529412, "path": "body-accessory.body-neck1a"}, + "body-neck1b": {"x": -5.4, "y": -54.79, "width": 103.52941176470588, "height": 117.64705882352942, "path": "body-accessory.body-neck1b"}, + "body-neck1c": {"x": -5.4, "y": -54.79, "width": 80.0, "height": 110.58823529411765, "path": "body-accessory.body-neck1c"}, + "body-neck1d": {"x": -5.4, "y": -54.79, "width": 122.3529411764706, "height": 101.17647058823529, "path": "body-accessory.body-neck1d"}, + "body-neck1e": {"x": -5.4, "y": -54.79, "width": 89.41176470588236, "height": 105.88235294117648, "path": "body-accessory.body-neck1e"}, + "body-neck1f": {"x": -5.4, "y": -54.79, "width": 80.0, "height": 80.0, "path": "body-accessory.body-neck1f"} + } + } + } + ], + "events": {"hit": {}, "hit-buff": {}, "jump": {}, "start-attack": {}}, + "keyAnimations": { + "activity/appear": "1023093953", + "activity/bath": "3305387968", + "attack/ranged/cast-fly": "4180526371", + "attack/ranged/cast-high": "164191126", + "attack/ranged/cast-low": "198813017", + "attack/ranged/cast-multi": "151119", + "attack/ranged/cast-tail": "645705789", + "activity/eat-bite": "1137807767", + "activity/eat-chew": "1988236421", + "activity/entrance": "3768378365", + "defense/evade": "1735454995", + "activity/evolve": "649307630", + "battle/get-buff": "1455190363", + "battle/get-debuff": "606904312", + "defense/hit-by-normal": "2045974966", + "defense/hit-by-normal-crit": "2130010601", + "defense/hit-by-normal-dramatic": "3823092125", + "defense/hit-by-ranged-attack": "2224561612", + "defense/hit-with-shield": "390714790", + "attack/melee/horn-gore": "1327954218", + "attack/melee/mouth-bite": "2237748264", + "action/move-back": "3766271173", + "action/move-forward": "2945160014", + "attack/melee/multi-attack": "3861365989", + "action/mix/mystic-light-battle": "3979179032", + "action/mix/mystic-light-normal": "1566344788", + "action/idle/normal": "25318063", + "attack/melee/normal-attack": "3305373483", + "activity/prepare": "405864717", + "action/idle/random-01": "2880388010", + "action/idle/random-02": "3902657344", + "action/idle/random-03": "2021333900", + "action/idle/random-04": "1003789695", + "action/idle/random-05": "2745614147", + "action/run": "3858829480", + "draft/run-origin": "3947527336", + "attack/melee/shrimp": "3833448733", + "activity/sleep": "100562494", + "attack/melee/tail-multi-slap": "3317139533", + "attack/melee/tail-roll": "3108617565", + "attack/melee/tail-smash": "519942130", + "attack/melee/tail-thrash": "628713175", + "activity/victory-pose-back-flip": "2227634241" + } + }, + "body-mystic-fuzzy": { + "bones": [ + {"name": "@root"}, {"name": "@pivot-main", "parent": "@root"}, {"name": "@pivot-back", "parent": "@pivot-main", "x": 205, "y": 180, "color": "ff0101ff"}, + {"name": "@pivot-center", "parent": "@pivot-back", "x": -215.11, "y": -5.25, "color": "ff0101ff"}, + {"name": "@axie", "parent": "@pivot-center", "length": 213.28, "rotation": 179.04, "x": 196.39, "y": 5.16}, {"name": "@back", "parent": "@axie", "rotation": -179.04, "x": 37.63, "y": -198.19}, + {"name": "@body", "parent": "@axie", "length": 226.28, "rotation": -8.35, "x": 224.58, "y": -0.53}, {"name": "@ear-left", "parent": "@axie", "rotation": -179.04, "x": 112.7, "y": -203.23}, + {"name": "@ear-right", "parent": "@axie", "rotation": -179.04, "x": 405.28, "y": -235.33}, {"name": "@eyes", "parent": "@axie", "rotation": -179.04, "x": 384.24, "y": -113.67}, + {"name": "@horn", "parent": "@axie", "rotation": -179.04, "x": 327.92, "y": -214.63}, + {"name": "@leg-back-left", "parent": "@axie", "length": 76.4, "rotation": 100.96, "x": -15.3, "y": 102.56, "transform": "noScale"}, + {"name": "@leg-front-left", "parent": "@axie", "length": 51.19, "rotation": 93.86, "x": 134.77, "y": 149.55, "transform": "noScale"}, + {"name": "@leg-front-right", "parent": "@axie", "length": 74.83, "rotation": 83.2, "x": 382.95, "y": 121.78, "transform": "noScale"}, + {"name": "@mouth", "parent": "@axie", "rotation": -179.04, "x": 382.23, "y": 6.31}, + {"name": "body-class", "parent": "@body", "rotation": -170.69, "x": -286.29, "y": -103.48, "transform": "noScale"}, {"name": "@shadow", "parent": "@root", "color": "e6d713ff"}, + {"name": "@tail", "parent": "@axie", "rotation": -179.04, "x": -11.76, "y": 61.72}, {"name": "leg-front-right-IK", "parent": "@pivot-main", "x": -195.99, "y": -10.21, "color": "ff3f00ff"}, + {"name": "leg-front-left-IK", "parent": "@pivot-main", "x": 42.3, "y": -18.42, "color": "ff3f00ff"}, + {"name": "leg-back-left-IK", "parent": "@pivot-main", "x": 208.57, "y": 1.35, "color": "ff3f00ff"}, {"name": "@ball", "parent": "@root", "y": 191, "color": "f3981bff"}, + {"name": "ball", "parent": "@ball", "y": -191, "color": "f4a729ff"}, {"name": "body-id", "parent": "@body", "rotation": -170.69, "x": -292.44, "y": -65.98}, + {"name": "body-id-a", "parent": "body-id", "x": 23, "y": 10}, {"name": "body-id-b", "parent": "body-id", "x": 13, "y": 10}, {"name": "body-id-c", "parent": "body-id", "x": 3, "y": 10}, + {"name": "body-id-d", "parent": "body-id", "x": -7, "y": 10}, {"name": "body-id-e", "parent": "body-id", "x": -17, "y": 10}, {"name": "body-id-f", "parent": "body-id", "x": -27, "y": 10}, + {"name": "body-light-life", "parent": "@body", "rotation": -95.65, "x": -248.57, "y": -126.52}, + {"name": "body-fur-1", "parent": "@body", "length": 82.06, "rotation": -150.38, "x": -148.49, "y": -210.82, "color": "ff6700ff"}, + {"name": "body-fur-2", "parent": "body-fur-1", "length": 61.3, "rotation": -13.95, "x": 82.06, "color": "ff6700ff"}, + {"name": "body-fur-3", "parent": "@body", "length": 107.51, "rotation": -131.46, "x": -40.58, "y": -242.54, "color": "ff6700ff"}, + {"name": "body-fur-4", "parent": "body-fur-3", "length": 81.8, "rotation": 8.85, "x": 106.98, "y": 0.51, "color": "ff6700ff"}, + {"name": "body-fur-5", "parent": "@body", "length": 82.06, "rotation": -97.88, "x": 131.08, "y": -279.5, "color": "ff6700ff"}, + {"name": "body-fur-6", "parent": "body-fur-5", "length": 61.3, "rotation": -10.39, "x": 82.06, "color": "ff6700ff"}, + {"name": "body-fur-7", "parent": "@body", "length": 105.16, "rotation": -69.66, "x": 255.56, "y": -184.43, "color": "ff6700ff"}, + {"name": "body-fur-8", "parent": "@body", "length": 61.24, "rotation": -11.73, "x": 273.06, "y": -20.97, "color": "ff6700ff"}, + {"name": "body-fur-9", "parent": "body-fur-8", "length": 48.47, "rotation": -10.39, "x": 61.13, "y": -0.21, "color": "ff6700ff"}, + {"name": "@body-neck", "parent": "@pivot-center", "x": -161.89, "y": -53.75, "color": "ff0101ff"}, + {"name": "@body-ground", "parent": "@pivot-main", "x": 220, "transform": "noRotationOrReflection", "color": "ff0101ff"}, + {"name": "@body-hip", "parent": "@pivot-center", "x": 240.11, "y": 55.25, "color": "ff0101ff"}, + {"name": "@body-air", "parent": "@pivot-back", "x": 63, "y": 365, "transform": "noRotationOrReflection", "color": "ff0101ff"}, + {"name": "@body-cheek", "parent": "@pivot-center", "x": 15.11, "y": 47.25, "color": "ff0101ff"} + ], + "slots": [ + {"name": "shadow", "bone": "@shadow", "attachment": "shadow"}, {"name": "ball", "bone": "ball"}, + {"name": "leg-front-right", "bone": "@leg-front-right", "attachment": "mystic-leg-front-right"}, {"name": "leg-back-left", "bone": "@leg-back-left", "attachment": "mystic-leg-back-left"}, + {"name": "body-light-life", "bone": "body-light-life", "attachment": "body-light-life"}, {"name": "body", "bone": "@body", "attachment": "body-mystic"}, + {"name": "body-mfuzzy", "bone": "@body", "attachment": "body-mfuzzy"}, {"name": "body-light-breath", "bone": "@body", "attachment": "body-light-breath"}, + {"name": "body-light-pulse", "bone": "@body", "attachment": "body-light-pulse"}, {"name": "body-id-a", "bone": "body-id-a", "attachment": "body-id-a-01"}, + {"name": "body-id-b", "bone": "body-id-b", "attachment": "body-id-b-09"}, {"name": "body-id-c", "bone": "body-id-c", "attachment": "body-id-c-08"}, + {"name": "body-id-d", "bone": "body-id-d", "attachment": "body-id-d-00"}, {"name": "body-id-e", "bone": "body-id-e", "attachment": "body-id-e-03"}, + {"name": "body-id-f", "bone": "body-id-f", "attachment": "body-id-f-00"}, {"name": "body-class", "bone": "body-class", "attachment": "body-class-aquatic"}, + {"name": "leg-front-left", "bone": "@leg-front-left", "attachment": "mystic-leg-front-left"}, {"name": "body-hip", "bone": "@body-hip", "attachment": "body-hip"}, + {"name": "body-neck", "bone": "@body-neck", "attachment": "body-neck"}, {"name": "body-ground", "bone": "@body-ground", "attachment": "body-ground"}, + {"name": "body-air", "bone": "@body-air", "attachment": "body-air"}, {"name": "body-cheek", "bone": "@body-cheek", "attachment": "body-cheek"} + ], + "ik": [ + {"name": "leg-back-left-IK", "order": 2, "bones": ["@leg-back-left"], "target": "leg-back-left-IK"}, + {"name": "leg-front-left-IK", "order": 1, "bones": ["@leg-front-left"], "target": "leg-front-left-IK"}, + {"name": "leg-front-right-IK", "bones": ["@leg-front-right"], "target": "leg-front-right-IK"} + ], + "skins": [ + { + "name": "default", + "attachments": { + "ball": {"ball": {"y": 186.0, "width": 392.94117647058823, "height": 400.0, "path": "body-normal.ball", "x": 0.029411764705884025}}, + "body": { + "body-mystic": {"x": -4.102941176470608, "y": -74.09764705882354, "rotation": -170.69, "width": 684.7058823529412, "height": 508.2352941176471, "path": "body-mystic-fuzzy.body-mystic"} + }, + "body-class": { + "body-class-aquatic": {"x": 0.45999999999999996, "y": 6.197058823529409, "width": 40.0, "height": 44.70588235294118, "path": "body-normal.body-class-aquatic"}, + "body-class-beast": {"x": -1.187058823529413, "y": 3.55, "width": 35.294117647058826, "height": 40.0, "path": "body-normal.body-class-beast"}, + "body-class-bird": {"x": 1.342352941176471, "y": 4.373529411764706, "width": 28.235294117647058, "height": 42.35294117647059, "path": "body-normal.body-class-bird"}, + "body-class-bug": {"x": -0.18705882352941305, "y": 2.902941176470587, "width": 35.294117647058826, "height": 35.294117647058826, "path": "body-normal.body-class-bug"}, + "body-class-plant": {"x": -1.54, "y": 1.55, "width": 40.0, "height": 40.0, "path": "body-normal.body-class-plant"}, + "body-class-reptile": {"x": -0.54, "y": 3.55, "width": 40.0, "height": 40.0, "path": "body-normal.body-class-reptile"} + }, + "body-id-a": { + "body-id-a-00": {"x": -0.17941176470588227, "y": 0.847647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-a-00"}, + "body-id-a-01": {"x": 0.9970588235294117, "y": 0.847647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-a-01"}, + "body-id-a-02": {"x": 0.8205882352941177, "y": 0.847647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-a-02"}, + "body-id-a-03": {"x": 0.9970588235294117, "y": 1.0241176470588234, "width": 4.705882352941177, "height": 9.411764705882353, "path": "body-normal.body-id-a-03"}, + "body-id-a-04": {"x": 0.9970588235294117, "y": 0.847647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-a-04"}, + "body-id-a-05": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-a-05"}, + "body-id-a-06": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-a-06"}, + "body-id-a-07": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-a-07"}, + "body-id-a-08": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-a-08"}, + "body-id-a-09": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-a-09"}, + "body-id-00-aquatic": {"x": -0.17941176470588227, "y": 0.847647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-00-aquatic"}, + "body-id-00-aquatic-flipx": { + "x": -0.17941176470588227, "y": 0.847647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-00-aquatic-flipx" + }, + "body-id-00-beast": {"x": -0.17941176470588227, "y": 0.847647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-00-beast"}, + "body-id-00-beast-flipx": {"x": -0.17941176470588227, "y": 0.847647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-00-beast-flipx"}, + "body-id-00-bird": {"x": -0.17941176470588227, "y": 0.847647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-00-bird"}, + "body-id-00-bird-flipx": {"x": -0.17941176470588227, "y": 0.847647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-00-bird-flipx"}, + "body-id-00-bug": {"x": -0.17941176470588227, "y": 0.847647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-00-bug"}, + "body-id-00-bug-flipx": {"x": -0.17941176470588227, "y": 0.847647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-00-bug-flipx"}, + "body-id-00-plant": {"x": -0.17941176470588227, "y": 0.847647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-00-plant"}, + "body-id-00-plant-flipx": {"x": -0.17941176470588227, "y": 0.847647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-00-plant-flipx"}, + "body-id-00-reptile": {"x": -0.17941176470588227, "y": 0.847647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-00-reptile"}, + "body-id-00-reptile-flipx": { + "x": -0.17941176470588227, "y": 0.847647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-00-reptile-flipx" + }, + "body-id-01-aquatic": {"x": 0.9970588235294117, "y": 0.847647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-01-aquatic"}, + "body-id-01-aquatic-flipx": {"x": 0.9970588235294117, "y": 0.847647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-01-aquatic-flipx"}, + "body-id-01-beast": {"x": 0.9970588235294117, "y": 0.847647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-01-beast"}, + "body-id-01-beast-flipx": {"x": 0.9970588235294117, "y": 0.847647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-01-beast-flipx"}, + "body-id-01-bird": {"x": 0.9970588235294117, "y": 0.847647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-01-bird"}, + "body-id-01-bird-flipx": {"x": 0.9970588235294117, "y": 0.847647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-01-bird-flipx"}, + "body-id-01-bug": {"x": 0.9970588235294117, "y": 0.847647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-01-bug"}, + "body-id-01-bug-flipx": {"x": 0.9970588235294117, "y": 0.847647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-01-bug-flipx"}, + "body-id-01-plant": {"x": 0.9970588235294117, "y": 0.847647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-01-plant"}, + "body-id-01-plant-flipx": {"x": 0.9970588235294117, "y": 0.847647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-01-plant-flipx"}, + "body-id-01-reptile": {"x": 0.9970588235294117, "y": 0.847647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-01-reptile"}, + "body-id-01-reptile-flipx": {"x": 0.9970588235294117, "y": 0.847647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-01-reptile-flipx"}, + "body-id-02-aquatic": {"x": 0.8205882352941177, "y": 0.847647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-02-aquatic"}, + "body-id-02-aquatic-flipx": { + "x": 0.8205882352941177, "y": 0.847647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-02-aquatic-flipx" + }, + "body-id-02-beast": {"x": 0.8205882352941177, "y": 0.847647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-02-beast"}, + "body-id-02-beast-flipx": {"x": 0.8205882352941177, "y": 0.847647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-02-beast-flipx"}, + "body-id-02-bird": {"x": 0.8205882352941177, "y": 0.847647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-02-bird"}, + "body-id-02-bird-flipx": {"x": 0.8205882352941177, "y": 0.847647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-02-bird-flipx"}, + "body-id-02-bug": {"x": 0.8205882352941177, "y": 0.847647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-02-bug"}, + "body-id-02-bug-flipx": {"x": 0.8205882352941177, "y": 0.847647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-02-bug-flipx"}, + "body-id-02-plant": {"x": 0.8205882352941177, "y": 0.847647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-02-plant"}, + "body-id-02-plant-flipx": {"x": 0.8205882352941177, "y": 0.847647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-02-plant-flipx"}, + "body-id-02-reptile": {"x": 0.8205882352941177, "y": 0.847647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-02-reptile"}, + "body-id-02-reptile-flipx": { + "x": 0.8205882352941177, "y": 0.847647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-02-reptile-flipx" + }, + "body-id-03-aquatic": {"x": 0.9970588235294117, "y": 1.0241176470588234, "width": 4.705882352941177, "height": 9.411764705882353, "path": "body-normal.body-id-03-aquatic"}, + "body-id-03-aquatic-flipx": {"x": 0.9970588235294117, "y": 1.0241176470588234, "width": 4.705882352941177, "height": 9.411764705882353, "path": "body-normal.body-id-03-aquatic-flipx"}, + "body-id-03-beast": {"x": 0.9970588235294117, "y": 1.0241176470588234, "width": 4.705882352941177, "height": 9.411764705882353, "path": "body-normal.body-id-03-beast"}, + "body-id-03-beast-flipx": {"x": 0.9970588235294117, "y": 1.0241176470588234, "width": 4.705882352941177, "height": 9.411764705882353, "path": "body-normal.body-id-03-beast-flipx"}, + "body-id-03-bird": {"x": 0.9970588235294117, "y": 1.0241176470588234, "width": 4.705882352941177, "height": 9.411764705882353, "path": "body-normal.body-id-03-bird"}, + "body-id-03-bird-flipx": {"x": 0.9970588235294117, "y": 1.0241176470588234, "width": 4.705882352941177, "height": 9.411764705882353, "path": "body-normal.body-id-03-bird-flipx"}, + "body-id-03-bug": {"x": 0.9970588235294117, "y": 1.0241176470588234, "width": 4.705882352941177, "height": 9.411764705882353, "path": "body-normal.body-id-03-bug"}, + "body-id-03-bug-flipx": {"x": 0.9970588235294117, "y": 1.0241176470588234, "width": 4.705882352941177, "height": 9.411764705882353, "path": "body-normal.body-id-03-bug-flipx"}, + "body-id-03-plant": {"x": 0.9970588235294117, "y": 1.0241176470588234, "width": 4.705882352941177, "height": 9.411764705882353, "path": "body-normal.body-id-03-plant"}, + "body-id-03-plant-flipx": {"x": 0.9970588235294117, "y": 1.0241176470588234, "width": 4.705882352941177, "height": 9.411764705882353, "path": "body-normal.body-id-03-plant-flipx"}, + "body-id-03-reptile": {"x": 0.9970588235294117, "y": 1.0241176470588234, "width": 4.705882352941177, "height": 9.411764705882353, "path": "body-normal.body-id-03-reptile"}, + "body-id-03-reptile-flipx": {"x": 0.9970588235294117, "y": 1.0241176470588234, "width": 4.705882352941177, "height": 9.411764705882353, "path": "body-normal.body-id-03-reptile-flipx"}, + "body-id-04-aquatic": {"x": 0.9970588235294117, "y": 0.847647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-04-aquatic"}, + "body-id-04-aquatic-flipx": {"x": 0.9970588235294117, "y": 0.847647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-04-aquatic-flipx"}, + "body-id-04-beast": {"x": 0.9970588235294117, "y": 0.847647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-04-beast"}, + "body-id-04-beast-flipx": {"x": 0.9970588235294117, "y": 0.847647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-04-beast-flipx"}, + "body-id-04-bird": {"x": 0.9970588235294117, "y": 0.847647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-04-bird"}, + "body-id-04-bird-flipx": {"x": 0.9970588235294117, "y": 0.847647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-04-bird-flipx"}, + "body-id-04-bug": {"x": 0.9970588235294117, "y": 0.847647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-04-bug"}, + "body-id-04-bug-flipx": {"x": 0.9970588235294117, "y": 0.847647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-04-bug-flipx"}, + "body-id-04-plant": {"x": 0.9970588235294117, "y": 0.847647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-04-plant"}, + "body-id-04-plant-flipx": {"x": 0.9970588235294117, "y": 0.847647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-04-plant-flipx"}, + "body-id-04-reptile": {"x": 0.9970588235294117, "y": 0.847647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-04-reptile"}, + "body-id-04-reptile-flipx": {"x": 0.9970588235294117, "y": 0.847647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-04-reptile-flipx"}, + "body-id-05-aquatic": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-05-aquatic"}, + "body-id-05-aquatic-flipx": { + "x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-05-aquatic-flipx" + }, + "body-id-05-beast": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-05-beast"}, + "body-id-05-beast-flipx": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-05-beast-flipx"}, + "body-id-05-bird": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-05-bird"}, + "body-id-05-bird-flipx": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-05-bird-flipx"}, + "body-id-05-bug": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-05-bug"}, + "body-id-05-bug-flipx": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-05-bug-flipx"}, + "body-id-05-plant": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-05-plant"}, + "body-id-05-plant-flipx": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-05-plant-flipx"}, + "body-id-05-reptile": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-05-reptile"}, + "body-id-05-reptile-flipx": { + "x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-05-reptile-flipx" + }, + "body-id-06-aquatic": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-06-aquatic"}, + "body-id-06-aquatic-flipx": { + "x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-06-aquatic-flipx" + }, + "body-id-06-beast": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-06-beast"}, + "body-id-06-beast-flipx": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-06-beast-flipx"}, + "body-id-06-bird": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-06-bird"}, + "body-id-06-bird-flipx": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-06-bird-flipx"}, + "body-id-06-bug": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-06-bug"}, + "body-id-06-bug-flipx": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-06-bug-flipx"}, + "body-id-06-plant": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-06-plant"}, + "body-id-06-plant-flipx": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-06-plant-flipx"}, + "body-id-06-reptile": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-06-reptile"}, + "body-id-06-reptile-flipx": { + "x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-06-reptile-flipx" + }, + "body-id-07-aquatic": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-07-aquatic"}, + "body-id-07-aquatic-flipx": { + "x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-07-aquatic-flipx" + }, + "body-id-07-beast": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-07-beast"}, + "body-id-07-beast-flipx": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-07-beast-flipx"}, + "body-id-07-bird": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-07-bird"}, + "body-id-07-bird-flipx": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-07-bird-flipx"}, + "body-id-07-bug": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-07-bug"}, + "body-id-07-bug-flipx": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-07-bug-flipx"}, + "body-id-07-plant": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-07-plant"}, + "body-id-07-plant-flipx": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-07-plant-flipx"}, + "body-id-07-reptile": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-07-reptile"}, + "body-id-07-reptile-flipx": { + "x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-07-reptile-flipx" + }, + "body-id-08-aquatic": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-08-aquatic"}, + "body-id-08-aquatic-flipx": { + "x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-08-aquatic-flipx" + }, + "body-id-08-beast": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-08-beast"}, + "body-id-08-beast-flipx": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-08-beast-flipx"}, + "body-id-08-bird": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-08-bird"}, + "body-id-08-bird-flipx": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-08-bird-flipx"}, + "body-id-08-bug": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-08-bug"}, + "body-id-08-bug-flipx": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-08-bug-flipx"}, + "body-id-08-plant": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-08-plant"}, + "body-id-08-plant-flipx": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-08-plant-flipx"}, + "body-id-08-reptile": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-08-reptile"}, + "body-id-08-reptile-flipx": { + "x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-08-reptile-flipx" + }, + "body-id-09-aquatic": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-09-aquatic"}, + "body-id-09-aquatic-flipx": { + "x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-09-aquatic-flipx" + }, + "body-id-09-beast": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-09-beast"}, + "body-id-09-beast-flipx": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-09-beast-flipx"}, + "body-id-09-bird": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-09-bird"}, + "body-id-09-bird-flipx": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-09-bird-flipx"}, + "body-id-09-bug": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-09-bug"}, + "body-id-09-bug-flipx": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-09-bug-flipx"}, + "body-id-09-plant": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-09-plant"}, + "body-id-09-plant-flipx": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-09-plant-flipx"}, + "body-id-09-reptile": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-09-reptile"}, + "body-id-09-reptile-flipx": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-09-reptile-flipx"} + }, + "body-id-b": { + "body-id-b-00": {"x": -0.17941176470588227, "y": 0.847647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-b-00"}, + "body-id-b-01": {"x": 0.9970588235294117, "y": 0.847647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-b-01"}, + "body-id-b-02": {"x": 0.8205882352941177, "y": 0.847647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-b-02"}, + "body-id-b-03": {"x": 0.9970588235294117, "y": 1.0241176470588234, "width": 4.705882352941177, "height": 9.411764705882353, "path": "body-normal.body-id-b-03"}, + "body-id-b-04": {"x": 0.9970588235294117, "y": 0.847647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-b-04"}, + "body-id-b-05": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-b-05"}, + "body-id-b-06": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-b-06"}, + "body-id-b-07": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-b-07"}, + "body-id-b-08": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-b-08"}, + "body-id-b-09": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-b-09"}, + "body-id-00-aquatic": {"x": -0.17941176470588227, "y": 0.847647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-00-aquatic"}, + "body-id-00-aquatic-flipx": { + "x": -0.17941176470588227, "y": 0.847647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-00-aquatic-flipx" + }, + "body-id-00-beast": {"x": -0.17941176470588227, "y": 0.847647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-00-beast"}, + "body-id-00-beast-flipx": {"x": -0.17941176470588227, "y": 0.847647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-00-beast-flipx"}, + "body-id-00-bird": {"x": -0.17941176470588227, "y": 0.847647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-00-bird"}, + "body-id-00-bird-flipx": {"x": -0.17941176470588227, "y": 0.847647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-00-bird-flipx"}, + "body-id-00-bug": {"x": -0.17941176470588227, "y": 0.847647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-00-bug"}, + "body-id-00-bug-flipx": {"x": -0.17941176470588227, "y": 0.847647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-00-bug-flipx"}, + "body-id-00-plant": {"x": -0.17941176470588227, "y": 0.847647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-00-plant"}, + "body-id-00-plant-flipx": {"x": -0.17941176470588227, "y": 0.847647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-00-plant-flipx"}, + "body-id-00-reptile": {"x": -0.17941176470588227, "y": 0.847647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-00-reptile"}, + "body-id-00-reptile-flipx": { + "x": -0.17941176470588227, "y": 0.847647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-00-reptile-flipx" + }, + "body-id-01-aquatic": {"x": 0.9970588235294117, "y": 0.847647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-01-aquatic"}, + "body-id-01-aquatic-flipx": {"x": 0.9970588235294117, "y": 0.847647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-01-aquatic-flipx"}, + "body-id-01-beast": {"x": 0.9970588235294117, "y": 0.847647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-01-beast"}, + "body-id-01-beast-flipx": {"x": 0.9970588235294117, "y": 0.847647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-01-beast-flipx"}, + "body-id-01-bird": {"x": 0.9970588235294117, "y": 0.847647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-01-bird"}, + "body-id-01-bird-flipx": {"x": 0.9970588235294117, "y": 0.847647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-01-bird-flipx"}, + "body-id-01-bug": {"x": 0.9970588235294117, "y": 0.847647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-01-bug"}, + "body-id-01-bug-flipx": {"x": 0.9970588235294117, "y": 0.847647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-01-bug-flipx"}, + "body-id-01-plant": {"x": 0.9970588235294117, "y": 0.847647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-01-plant"}, + "body-id-01-plant-flipx": {"x": 0.9970588235294117, "y": 0.847647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-01-plant-flipx"}, + "body-id-01-reptile": {"x": 0.9970588235294117, "y": 0.847647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-01-reptile"}, + "body-id-01-reptile-flipx": {"x": 0.9970588235294117, "y": 0.847647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-01-reptile-flipx"}, + "body-id-02-aquatic": {"x": 0.8205882352941177, "y": 0.847647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-02-aquatic"}, + "body-id-02-aquatic-flipx": { + "x": 0.8205882352941177, "y": 0.847647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-02-aquatic-flipx" + }, + "body-id-02-beast": {"x": 0.8205882352941177, "y": 0.847647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-02-beast"}, + "body-id-02-beast-flipx": {"x": 0.8205882352941177, "y": 0.847647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-02-beast-flipx"}, + "body-id-02-bird": {"x": 0.8205882352941177, "y": 0.847647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-02-bird"}, + "body-id-02-bird-flipx": {"x": 0.8205882352941177, "y": 0.847647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-02-bird-flipx"}, + "body-id-02-bug": {"x": 0.8205882352941177, "y": 0.847647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-02-bug"}, + "body-id-02-bug-flipx": {"x": 0.8205882352941177, "y": 0.847647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-02-bug-flipx"}, + "body-id-02-plant": {"x": 0.8205882352941177, "y": 0.847647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-02-plant"}, + "body-id-02-plant-flipx": {"x": 0.8205882352941177, "y": 0.847647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-02-plant-flipx"}, + "body-id-02-reptile": {"x": 0.8205882352941177, "y": 0.847647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-02-reptile"}, + "body-id-02-reptile-flipx": { + "x": 0.8205882352941177, "y": 0.847647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-02-reptile-flipx" + }, + "body-id-03-aquatic": {"x": 0.9970588235294117, "y": 1.0241176470588234, "width": 4.705882352941177, "height": 9.411764705882353, "path": "body-normal.body-id-03-aquatic"}, + "body-id-03-aquatic-flipx": {"x": 0.9970588235294117, "y": 1.0241176470588234, "width": 4.705882352941177, "height": 9.411764705882353, "path": "body-normal.body-id-03-aquatic-flipx"}, + "body-id-03-beast": {"x": 0.9970588235294117, "y": 1.0241176470588234, "width": 4.705882352941177, "height": 9.411764705882353, "path": "body-normal.body-id-03-beast"}, + "body-id-03-beast-flipx": {"x": 0.9970588235294117, "y": 1.0241176470588234, "width": 4.705882352941177, "height": 9.411764705882353, "path": "body-normal.body-id-03-beast-flipx"}, + "body-id-03-bird": {"x": 0.9970588235294117, "y": 1.0241176470588234, "width": 4.705882352941177, "height": 9.411764705882353, "path": "body-normal.body-id-03-bird"}, + "body-id-03-bird-flipx": {"x": 0.9970588235294117, "y": 1.0241176470588234, "width": 4.705882352941177, "height": 9.411764705882353, "path": "body-normal.body-id-03-bird-flipx"}, + "body-id-03-bug": {"x": 0.9970588235294117, "y": 1.0241176470588234, "width": 4.705882352941177, "height": 9.411764705882353, "path": "body-normal.body-id-03-bug"}, + "body-id-03-bug-flipx": {"x": 0.9970588235294117, "y": 1.0241176470588234, "width": 4.705882352941177, "height": 9.411764705882353, "path": "body-normal.body-id-03-bug-flipx"}, + "body-id-03-plant": {"x": 0.9970588235294117, "y": 1.0241176470588234, "width": 4.705882352941177, "height": 9.411764705882353, "path": "body-normal.body-id-03-plant"}, + "body-id-03-plant-flipx": {"x": 0.9970588235294117, "y": 1.0241176470588234, "width": 4.705882352941177, "height": 9.411764705882353, "path": "body-normal.body-id-03-plant-flipx"}, + "body-id-03-reptile": {"x": 0.9970588235294117, "y": 1.0241176470588234, "width": 4.705882352941177, "height": 9.411764705882353, "path": "body-normal.body-id-03-reptile"}, + "body-id-03-reptile-flipx": {"x": 0.9970588235294117, "y": 1.0241176470588234, "width": 4.705882352941177, "height": 9.411764705882353, "path": "body-normal.body-id-03-reptile-flipx"}, + "body-id-04-aquatic": {"x": 0.9970588235294117, "y": 0.847647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-04-aquatic"}, + "body-id-04-aquatic-flipx": {"x": 0.9970588235294117, "y": 0.847647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-04-aquatic-flipx"}, + "body-id-04-beast": {"x": 0.9970588235294117, "y": 0.847647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-04-beast"}, + "body-id-04-beast-flipx": {"x": 0.9970588235294117, "y": 0.847647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-04-beast-flipx"}, + "body-id-04-bird": {"x": 0.9970588235294117, "y": 0.847647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-04-bird"}, + "body-id-04-bird-flipx": {"x": 0.9970588235294117, "y": 0.847647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-04-bird-flipx"}, + "body-id-04-bug": {"x": 0.9970588235294117, "y": 0.847647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-04-bug"}, + "body-id-04-bug-flipx": {"x": 0.9970588235294117, "y": 0.847647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-04-bug-flipx"}, + "body-id-04-plant": {"x": 0.9970588235294117, "y": 0.847647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-04-plant"}, + "body-id-04-plant-flipx": {"x": 0.9970588235294117, "y": 0.847647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-04-plant-flipx"}, + "body-id-04-reptile": {"x": 0.9970588235294117, "y": 0.847647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-04-reptile"}, + "body-id-04-reptile-flipx": {"x": 0.9970588235294117, "y": 0.847647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-04-reptile-flipx"}, + "body-id-05-aquatic": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-05-aquatic"}, + "body-id-05-aquatic-flipx": { + "x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-05-aquatic-flipx" + }, + "body-id-05-beast": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-05-beast"}, + "body-id-05-beast-flipx": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-05-beast-flipx"}, + "body-id-05-bird": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-05-bird"}, + "body-id-05-bird-flipx": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-05-bird-flipx"}, + "body-id-05-bug": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-05-bug"}, + "body-id-05-bug-flipx": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-05-bug-flipx"}, + "body-id-05-plant": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-05-plant"}, + "body-id-05-plant-flipx": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-05-plant-flipx"}, + "body-id-05-reptile": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-05-reptile"}, + "body-id-05-reptile-flipx": { + "x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-05-reptile-flipx" + }, + "body-id-06-aquatic": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-06-aquatic"}, + "body-id-06-aquatic-flipx": { + "x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-06-aquatic-flipx" + }, + "body-id-06-beast": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-06-beast"}, + "body-id-06-beast-flipx": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-06-beast-flipx"}, + "body-id-06-bird": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-06-bird"}, + "body-id-06-bird-flipx": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-06-bird-flipx"}, + "body-id-06-bug": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-06-bug"}, + "body-id-06-bug-flipx": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-06-bug-flipx"}, + "body-id-06-plant": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-06-plant"}, + "body-id-06-plant-flipx": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-06-plant-flipx"}, + "body-id-06-reptile": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-06-reptile"}, + "body-id-06-reptile-flipx": { + "x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-06-reptile-flipx" + }, + "body-id-07-aquatic": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-07-aquatic"}, + "body-id-07-aquatic-flipx": { + "x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-07-aquatic-flipx" + }, + "body-id-07-beast": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-07-beast"}, + "body-id-07-beast-flipx": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-07-beast-flipx"}, + "body-id-07-bird": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-07-bird"}, + "body-id-07-bird-flipx": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-07-bird-flipx"}, + "body-id-07-bug": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-07-bug"}, + "body-id-07-bug-flipx": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-07-bug-flipx"}, + "body-id-07-plant": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-07-plant"}, + "body-id-07-plant-flipx": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-07-plant-flipx"}, + "body-id-07-reptile": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-07-reptile"}, + "body-id-07-reptile-flipx": { + "x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-07-reptile-flipx" + }, + "body-id-08-aquatic": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-08-aquatic"}, + "body-id-08-aquatic-flipx": { + "x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-08-aquatic-flipx" + }, + "body-id-08-beast": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-08-beast"}, + "body-id-08-beast-flipx": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-08-beast-flipx"}, + "body-id-08-bird": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-08-bird"}, + "body-id-08-bird-flipx": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-08-bird-flipx"}, + "body-id-08-bug": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-08-bug"}, + "body-id-08-bug-flipx": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-08-bug-flipx"}, + "body-id-08-plant": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-08-plant"}, + "body-id-08-plant-flipx": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-08-plant-flipx"}, + "body-id-08-reptile": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-08-reptile"}, + "body-id-08-reptile-flipx": { + "x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-08-reptile-flipx" + }, + "body-id-09-aquatic": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-09-aquatic"}, + "body-id-09-aquatic-flipx": { + "x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-09-aquatic-flipx" + }, + "body-id-09-beast": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-09-beast"}, + "body-id-09-beast-flipx": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-09-beast-flipx"}, + "body-id-09-bird": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-09-bird"}, + "body-id-09-bird-flipx": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-09-bird-flipx"}, + "body-id-09-bug": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-09-bug"}, + "body-id-09-bug-flipx": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-09-bug-flipx"}, + "body-id-09-plant": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-09-plant"}, + "body-id-09-plant-flipx": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-09-plant-flipx"}, + "body-id-09-reptile": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-09-reptile"}, + "body-id-09-reptile-flipx": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-09-reptile-flipx"} + }, + "body-id-c": { + "body-id-c-00": {"x": -0.17941176470588227, "y": 0.847647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-c-00"}, + "body-id-c-01": {"x": -0.002941176470588336, "y": 0.847647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-c-01"}, + "body-id-c-02": {"x": -0.17941176470588227, "y": 0.347647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-c-02"}, + "body-id-c-03": {"x": 0.49705882352941166, "y": 1.0241176470588234, "width": 4.705882352941177, "height": 9.411764705882353, "path": "body-normal.body-id-c-03"}, + "body-id-c-04": {"x": 0.49705882352941166, "y": 0.347647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-c-04"}, + "body-id-c-05": {"x": 0.32058823529411773, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-c-05"}, + "body-id-c-06": {"x": 0.32058823529411773, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-c-06"}, + "body-id-c-07": {"x": 0.32058823529411773, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-c-07"}, + "body-id-c-08": {"x": 0.32058823529411773, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-c-08"}, + "body-id-c-09": {"x": 0.32058823529411773, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-c-09"}, + "body-id-00-aquatic": {"x": -0.17941176470588227, "y": 0.847647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-00-aquatic"}, + "body-id-00-aquatic-flipx": { + "x": -0.17941176470588227, "y": 0.847647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-00-aquatic-flipx" + }, + "body-id-00-beast": {"x": -0.17941176470588227, "y": 0.847647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-00-beast"}, + "body-id-00-beast-flipx": {"x": -0.17941176470588227, "y": 0.847647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-00-beast-flipx"}, + "body-id-00-bird": {"x": -0.17941176470588227, "y": 0.847647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-00-bird"}, + "body-id-00-bird-flipx": {"x": -0.17941176470588227, "y": 0.847647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-00-bird-flipx"}, + "body-id-00-bug": {"x": -0.17941176470588227, "y": 0.847647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-00-bug"}, + "body-id-00-bug-flipx": {"x": -0.17941176470588227, "y": 0.847647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-00-bug-flipx"}, + "body-id-00-plant": {"x": -0.17941176470588227, "y": 0.847647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-00-plant"}, + "body-id-00-plant-flipx": {"x": -0.17941176470588227, "y": 0.847647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-00-plant-flipx"}, + "body-id-00-reptile": {"x": -0.17941176470588227, "y": 0.847647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-00-reptile"}, + "body-id-00-reptile-flipx": { + "x": -0.17941176470588227, "y": 0.847647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-00-reptile-flipx" + }, + "body-id-01-aquatic": {"x": -0.002941176470588336, "y": 0.847647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-01-aquatic"}, + "body-id-01-aquatic-flipx": { + "x": -0.002941176470588336, "y": 0.847647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-01-aquatic-flipx" + }, + "body-id-01-beast": {"x": -0.002941176470588336, "y": 0.847647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-01-beast"}, + "body-id-01-beast-flipx": {"x": -0.002941176470588336, "y": 0.847647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-01-beast-flipx"}, + "body-id-01-bird": {"x": -0.002941176470588336, "y": 0.847647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-01-bird"}, + "body-id-01-bird-flipx": {"x": -0.002941176470588336, "y": 0.847647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-01-bird-flipx"}, + "body-id-01-bug": {"x": -0.002941176470588336, "y": 0.847647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-01-bug"}, + "body-id-01-bug-flipx": {"x": -0.002941176470588336, "y": 0.847647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-01-bug-flipx"}, + "body-id-01-plant": {"x": -0.002941176470588336, "y": 0.847647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-01-plant"}, + "body-id-01-plant-flipx": {"x": -0.002941176470588336, "y": 0.847647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-01-plant-flipx"}, + "body-id-01-reptile": {"x": -0.002941176470588336, "y": 0.847647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-01-reptile"}, + "body-id-01-reptile-flipx": { + "x": -0.002941176470588336, "y": 0.847647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-01-reptile-flipx" + }, + "body-id-02-aquatic": {"x": -0.17941176470588227, "y": 0.347647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-02-aquatic"}, + "body-id-02-aquatic-flipx": { + "x": -0.17941176470588227, "y": 0.347647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-02-aquatic-flipx" + }, + "body-id-02-beast": {"x": -0.17941176470588227, "y": 0.347647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-02-beast"}, + "body-id-02-beast-flipx": {"x": -0.17941176470588227, "y": 0.347647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-02-beast-flipx"}, + "body-id-02-bird": {"x": -0.17941176470588227, "y": 0.347647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-02-bird"}, + "body-id-02-bird-flipx": {"x": -0.17941176470588227, "y": 0.347647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-02-bird-flipx"}, + "body-id-02-bug": {"x": -0.17941176470588227, "y": 0.347647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-02-bug"}, + "body-id-02-bug-flipx": {"x": -0.17941176470588227, "y": 0.347647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-02-bug-flipx"}, + "body-id-02-plant": {"x": -0.17941176470588227, "y": 0.347647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-02-plant"}, + "body-id-02-plant-flipx": {"x": -0.17941176470588227, "y": 0.347647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-02-plant-flipx"}, + "body-id-02-reptile": {"x": -0.17941176470588227, "y": 0.347647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-02-reptile"}, + "body-id-02-reptile-flipx": { + "x": -0.17941176470588227, "y": 0.347647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-02-reptile-flipx" + }, + "body-id-03-aquatic": {"x": 0.49705882352941166, "y": 1.0241176470588234, "width": 4.705882352941177, "height": 9.411764705882353, "path": "body-normal.body-id-03-aquatic"}, + "body-id-03-aquatic-flipx": { + "x": 0.49705882352941166, "y": 1.0241176470588234, "width": 4.705882352941177, "height": 9.411764705882353, "path": "body-normal.body-id-03-aquatic-flipx" + }, + "body-id-03-beast": {"x": 0.49705882352941166, "y": 1.0241176470588234, "width": 4.705882352941177, "height": 9.411764705882353, "path": "body-normal.body-id-03-beast"}, + "body-id-03-beast-flipx": {"x": 0.49705882352941166, "y": 1.0241176470588234, "width": 4.705882352941177, "height": 9.411764705882353, "path": "body-normal.body-id-03-beast-flipx"}, + "body-id-03-bird": {"x": 0.49705882352941166, "y": 1.0241176470588234, "width": 4.705882352941177, "height": 9.411764705882353, "path": "body-normal.body-id-03-bird"}, + "body-id-03-bird-flipx": {"x": 0.49705882352941166, "y": 1.0241176470588234, "width": 4.705882352941177, "height": 9.411764705882353, "path": "body-normal.body-id-03-bird-flipx"}, + "body-id-03-bug": {"x": 0.49705882352941166, "y": 1.0241176470588234, "width": 4.705882352941177, "height": 9.411764705882353, "path": "body-normal.body-id-03-bug"}, + "body-id-03-bug-flipx": {"x": 0.49705882352941166, "y": 1.0241176470588234, "width": 4.705882352941177, "height": 9.411764705882353, "path": "body-normal.body-id-03-bug-flipx"}, + "body-id-03-plant": {"x": 0.49705882352941166, "y": 1.0241176470588234, "width": 4.705882352941177, "height": 9.411764705882353, "path": "body-normal.body-id-03-plant"}, + "body-id-03-plant-flipx": {"x": 0.49705882352941166, "y": 1.0241176470588234, "width": 4.705882352941177, "height": 9.411764705882353, "path": "body-normal.body-id-03-plant-flipx"}, + "body-id-03-reptile": {"x": 0.49705882352941166, "y": 1.0241176470588234, "width": 4.705882352941177, "height": 9.411764705882353, "path": "body-normal.body-id-03-reptile"}, + "body-id-03-reptile-flipx": { + "x": 0.49705882352941166, "y": 1.0241176470588234, "width": 4.705882352941177, "height": 9.411764705882353, "path": "body-normal.body-id-03-reptile-flipx" + }, + "body-id-04-aquatic": {"x": 0.49705882352941166, "y": 0.347647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-04-aquatic"}, + "body-id-04-aquatic-flipx": { + "x": 0.49705882352941166, "y": 0.347647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-04-aquatic-flipx" + }, + "body-id-04-beast": {"x": 0.49705882352941166, "y": 0.347647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-04-beast"}, + "body-id-04-beast-flipx": {"x": 0.49705882352941166, "y": 0.347647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-04-beast-flipx"}, + "body-id-04-bird": {"x": 0.49705882352941166, "y": 0.347647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-04-bird"}, + "body-id-04-bird-flipx": {"x": 0.49705882352941166, "y": 0.347647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-04-bird-flipx"}, + "body-id-04-bug": {"x": 0.49705882352941166, "y": 0.347647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-04-bug"}, + "body-id-04-bug-flipx": {"x": 0.49705882352941166, "y": 0.347647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-04-bug-flipx"}, + "body-id-04-plant": {"x": 0.49705882352941166, "y": 0.347647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-04-plant"}, + "body-id-04-plant-flipx": {"x": 0.49705882352941166, "y": 0.347647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-04-plant-flipx"}, + "body-id-04-reptile": {"x": 0.49705882352941166, "y": 0.347647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-04-reptile"}, + "body-id-04-reptile-flipx": { + "x": 0.49705882352941166, "y": 0.347647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-04-reptile-flipx" + }, + "body-id-05-aquatic": {"x": 0.32058823529411773, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-05-aquatic"}, + "body-id-05-aquatic-flipx": { + "x": 0.32058823529411773, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-05-aquatic-flipx" + }, + "body-id-05-beast": {"x": 0.32058823529411773, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-05-beast"}, + "body-id-05-beast-flipx": {"x": 0.32058823529411773, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-05-beast-flipx"}, + "body-id-05-bird": {"x": 0.32058823529411773, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-05-bird"}, + "body-id-05-bird-flipx": {"x": 0.32058823529411773, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-05-bird-flipx"}, + "body-id-05-bug": {"x": 0.32058823529411773, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-05-bug"}, + "body-id-05-bug-flipx": {"x": 0.32058823529411773, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-05-bug-flipx"}, + "body-id-05-plant": {"x": 0.32058823529411773, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-05-plant"}, + "body-id-05-plant-flipx": {"x": 0.32058823529411773, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-05-plant-flipx"}, + "body-id-05-reptile": {"x": 0.32058823529411773, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-05-reptile"}, + "body-id-05-reptile-flipx": { + "x": 0.32058823529411773, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-05-reptile-flipx" + }, + "body-id-06-aquatic": {"x": 0.32058823529411773, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-06-aquatic"}, + "body-id-06-aquatic-flipx": { + "x": 0.32058823529411773, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-06-aquatic-flipx" + }, + "body-id-06-beast": {"x": 0.32058823529411773, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-06-beast"}, + "body-id-06-beast-flipx": {"x": 0.32058823529411773, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-06-beast-flipx"}, + "body-id-06-bird": {"x": 0.32058823529411773, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-06-bird"}, + "body-id-06-bird-flipx": {"x": 0.32058823529411773, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-06-bird-flipx"}, + "body-id-06-bug": {"x": 0.32058823529411773, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-06-bug"}, + "body-id-06-bug-flipx": {"x": 0.32058823529411773, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-06-bug-flipx"}, + "body-id-06-plant": {"x": 0.32058823529411773, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-06-plant"}, + "body-id-06-plant-flipx": {"x": 0.32058823529411773, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-06-plant-flipx"}, + "body-id-06-reptile": {"x": 0.32058823529411773, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-06-reptile"}, + "body-id-06-reptile-flipx": { + "x": 0.32058823529411773, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-06-reptile-flipx" + }, + "body-id-07-aquatic": {"x": 0.32058823529411773, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-07-aquatic"}, + "body-id-07-aquatic-flipx": { + "x": 0.32058823529411773, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-07-aquatic-flipx" + }, + "body-id-07-beast": {"x": 0.32058823529411773, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-07-beast"}, + "body-id-07-beast-flipx": {"x": 0.32058823529411773, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-07-beast-flipx"}, + "body-id-07-bird": {"x": 0.32058823529411773, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-07-bird"}, + "body-id-07-bird-flipx": {"x": 0.32058823529411773, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-07-bird-flipx"}, + "body-id-07-bug": {"x": 0.32058823529411773, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-07-bug"}, + "body-id-07-bug-flipx": {"x": 0.32058823529411773, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-07-bug-flipx"}, + "body-id-07-plant": {"x": 0.32058823529411773, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-07-plant"}, + "body-id-07-plant-flipx": {"x": 0.32058823529411773, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-07-plant-flipx"}, + "body-id-07-reptile": {"x": 0.32058823529411773, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-07-reptile"}, + "body-id-07-reptile-flipx": { + "x": 0.32058823529411773, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-07-reptile-flipx" + }, + "body-id-08-aquatic": {"x": 0.32058823529411773, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-08-aquatic"}, + "body-id-08-aquatic-flipx": { + "x": 0.32058823529411773, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-08-aquatic-flipx" + }, + "body-id-08-beast": {"x": 0.32058823529411773, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-08-beast"}, + "body-id-08-beast-flipx": {"x": 0.32058823529411773, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-08-beast-flipx"}, + "body-id-08-bird": {"x": 0.32058823529411773, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-08-bird"}, + "body-id-08-bird-flipx": {"x": 0.32058823529411773, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-08-bird-flipx"}, + "body-id-08-bug": {"x": 0.32058823529411773, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-08-bug"}, + "body-id-08-bug-flipx": {"x": 0.32058823529411773, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-08-bug-flipx"}, + "body-id-08-plant": {"x": 0.32058823529411773, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-08-plant"}, + "body-id-08-plant-flipx": {"x": 0.32058823529411773, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-08-plant-flipx"}, + "body-id-08-reptile": {"x": 0.32058823529411773, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-08-reptile"}, + "body-id-08-reptile-flipx": { + "x": 0.32058823529411773, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-08-reptile-flipx" + }, + "body-id-09-aquatic": {"x": 0.32058823529411773, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-09-aquatic"}, + "body-id-09-aquatic-flipx": { + "x": 0.32058823529411773, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-09-aquatic-flipx" + }, + "body-id-09-beast": {"x": 0.32058823529411773, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-09-beast"}, + "body-id-09-beast-flipx": {"x": 0.32058823529411773, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-09-beast-flipx"}, + "body-id-09-bird": {"x": 0.32058823529411773, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-09-bird"}, + "body-id-09-bird-flipx": {"x": 0.32058823529411773, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-09-bird-flipx"}, + "body-id-09-bug": {"x": 0.32058823529411773, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-09-bug"}, + "body-id-09-bug-flipx": {"x": 0.32058823529411773, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-09-bug-flipx"}, + "body-id-09-plant": {"x": 0.32058823529411773, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-09-plant"}, + "body-id-09-plant-flipx": {"x": 0.32058823529411773, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-09-plant-flipx"}, + "body-id-09-reptile": {"x": 0.32058823529411773, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-09-reptile"}, + "body-id-09-reptile-flipx": { + "x": 0.32058823529411773, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-09-reptile-flipx" + } + }, + "body-id-d": { + "body-id-d-00": {"x": -0.17941176470588227, "y": 0.847647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-d-00"}, + "body-id-d-01": {"x": 0.9970588235294117, "y": 0.847647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-d-01"}, + "body-id-d-02": {"x": 0.8205882352941177, "y": 0.847647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-d-02"}, + "body-id-d-03": {"x": 0.9970588235294117, "y": 1.0241176470588234, "width": 4.705882352941177, "height": 9.411764705882353, "path": "body-normal.body-id-d-03"}, + "body-id-d-04": {"x": 0.9970588235294117, "y": 0.847647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-d-04"}, + "body-id-d-05": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-d-05"}, + "body-id-d-06": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-d-06"}, + "body-id-d-07": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-d-07"}, + "body-id-d-08": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-d-08"}, + "body-id-d-09": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-d-09"}, + "body-id-00-aquatic": {"x": -0.17941176470588227, "y": 0.847647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-00-aquatic"}, + "body-id-00-aquatic-flipx": { + "x": -0.17941176470588227, "y": 0.847647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-00-aquatic-flipx" + }, + "body-id-00-beast": {"x": -0.17941176470588227, "y": 0.847647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-00-beast"}, + "body-id-00-beast-flipx": {"x": -0.17941176470588227, "y": 0.847647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-00-beast-flipx"}, + "body-id-00-bird": {"x": -0.17941176470588227, "y": 0.847647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-00-bird"}, + "body-id-00-bird-flipx": {"x": -0.17941176470588227, "y": 0.847647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-00-bird-flipx"}, + "body-id-00-bug": {"x": -0.17941176470588227, "y": 0.847647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-00-bug"}, + "body-id-00-bug-flipx": {"x": -0.17941176470588227, "y": 0.847647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-00-bug-flipx"}, + "body-id-00-plant": {"x": -0.17941176470588227, "y": 0.847647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-00-plant"}, + "body-id-00-plant-flipx": {"x": -0.17941176470588227, "y": 0.847647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-00-plant-flipx"}, + "body-id-00-reptile": {"x": -0.17941176470588227, "y": 0.847647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-00-reptile"}, + "body-id-00-reptile-flipx": { + "x": -0.17941176470588227, "y": 0.847647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-00-reptile-flipx" + }, + "body-id-01-aquatic": {"x": 0.9970588235294117, "y": 0.847647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-01-aquatic"}, + "body-id-01-aquatic-flipx": {"x": 0.9970588235294117, "y": 0.847647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-01-aquatic-flipx"}, + "body-id-01-beast": {"x": 0.9970588235294117, "y": 0.847647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-01-beast"}, + "body-id-01-beast-flipx": {"x": 0.9970588235294117, "y": 0.847647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-01-beast-flipx"}, + "body-id-01-bird": {"x": 0.9970588235294117, "y": 0.847647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-01-bird"}, + "body-id-01-bird-flipx": {"x": 0.9970588235294117, "y": 0.847647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-01-bird-flipx"}, + "body-id-01-bug": {"x": 0.9970588235294117, "y": 0.847647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-01-bug"}, + "body-id-01-bug-flipx": {"x": 0.9970588235294117, "y": 0.847647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-01-bug-flipx"}, + "body-id-01-plant": {"x": 0.9970588235294117, "y": 0.847647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-01-plant"}, + "body-id-01-plant-flipx": {"x": 0.9970588235294117, "y": 0.847647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-01-plant-flipx"}, + "body-id-01-reptile": {"x": 0.9970588235294117, "y": 0.847647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-01-reptile"}, + "body-id-01-reptile-flipx": {"x": 0.9970588235294117, "y": 0.847647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-01-reptile-flipx"}, + "body-id-02-aquatic": {"x": 0.8205882352941177, "y": 0.847647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-02-aquatic"}, + "body-id-02-aquatic-flipx": { + "x": 0.8205882352941177, "y": 0.847647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-02-aquatic-flipx" + }, + "body-id-02-beast": {"x": 0.8205882352941177, "y": 0.847647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-02-beast"}, + "body-id-02-beast-flipx": {"x": 0.8205882352941177, "y": 0.847647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-02-beast-flipx"}, + "body-id-02-bird": {"x": 0.8205882352941177, "y": 0.847647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-02-bird"}, + "body-id-02-bird-flipx": {"x": 0.8205882352941177, "y": 0.847647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-02-bird-flipx"}, + "body-id-02-bug": {"x": 0.8205882352941177, "y": 0.847647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-02-bug"}, + "body-id-02-bug-flipx": {"x": 0.8205882352941177, "y": 0.847647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-02-bug-flipx"}, + "body-id-02-plant": {"x": 0.8205882352941177, "y": 0.847647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-02-plant"}, + "body-id-02-plant-flipx": {"x": 0.8205882352941177, "y": 0.847647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-02-plant-flipx"}, + "body-id-02-reptile": {"x": 0.8205882352941177, "y": 0.847647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-02-reptile"}, + "body-id-02-reptile-flipx": { + "x": 0.8205882352941177, "y": 0.847647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-02-reptile-flipx" + }, + "body-id-03-aquatic": {"x": 0.9970588235294117, "y": 1.0241176470588234, "width": 4.705882352941177, "height": 9.411764705882353, "path": "body-normal.body-id-03-aquatic"}, + "body-id-03-aquatic-flipx": {"x": 0.9970588235294117, "y": 1.0241176470588234, "width": 4.705882352941177, "height": 9.411764705882353, "path": "body-normal.body-id-03-aquatic-flipx"}, + "body-id-03-beast": {"x": 0.9970588235294117, "y": 1.0241176470588234, "width": 4.705882352941177, "height": 9.411764705882353, "path": "body-normal.body-id-03-beast"}, + "body-id-03-beast-flipx": {"x": 0.9970588235294117, "y": 1.0241176470588234, "width": 4.705882352941177, "height": 9.411764705882353, "path": "body-normal.body-id-03-beast-flipx"}, + "body-id-03-bird": {"x": 0.9970588235294117, "y": 1.0241176470588234, "width": 4.705882352941177, "height": 9.411764705882353, "path": "body-normal.body-id-03-bird"}, + "body-id-03-bird-flipx": {"x": 0.9970588235294117, "y": 1.0241176470588234, "width": 4.705882352941177, "height": 9.411764705882353, "path": "body-normal.body-id-03-bird-flipx"}, + "body-id-03-bug": {"x": 0.9970588235294117, "y": 1.0241176470588234, "width": 4.705882352941177, "height": 9.411764705882353, "path": "body-normal.body-id-03-bug"}, + "body-id-03-bug-flipx": {"x": 0.9970588235294117, "y": 1.0241176470588234, "width": 4.705882352941177, "height": 9.411764705882353, "path": "body-normal.body-id-03-bug-flipx"}, + "body-id-03-plant": {"x": 0.9970588235294117, "y": 1.0241176470588234, "width": 4.705882352941177, "height": 9.411764705882353, "path": "body-normal.body-id-03-plant"}, + "body-id-03-plant-flipx": {"x": 0.9970588235294117, "y": 1.0241176470588234, "width": 4.705882352941177, "height": 9.411764705882353, "path": "body-normal.body-id-03-plant-flipx"}, + "body-id-03-reptile": {"x": 0.9970588235294117, "y": 1.0241176470588234, "width": 4.705882352941177, "height": 9.411764705882353, "path": "body-normal.body-id-03-reptile"}, + "body-id-03-reptile-flipx": {"x": 0.9970588235294117, "y": 1.0241176470588234, "width": 4.705882352941177, "height": 9.411764705882353, "path": "body-normal.body-id-03-reptile-flipx"}, + "body-id-04-aquatic": {"x": 0.9970588235294117, "y": 0.847647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-04-aquatic"}, + "body-id-04-aquatic-flipx": {"x": 0.9970588235294117, "y": 0.847647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-04-aquatic-flipx"}, + "body-id-04-beast": {"x": 0.9970588235294117, "y": 0.847647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-04-beast"}, + "body-id-04-beast-flipx": {"x": 0.9970588235294117, "y": 0.847647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-04-beast-flipx"}, + "body-id-04-bird": {"x": 0.9970588235294117, "y": 0.847647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-04-bird"}, + "body-id-04-bird-flipx": {"x": 0.9970588235294117, "y": 0.847647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-04-bird-flipx"}, + "body-id-04-bug": {"x": 0.9970588235294117, "y": 0.847647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-04-bug"}, + "body-id-04-bug-flipx": {"x": 0.9970588235294117, "y": 0.847647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-04-bug-flipx"}, + "body-id-04-plant": {"x": 0.9970588235294117, "y": 0.847647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-04-plant"}, + "body-id-04-plant-flipx": {"x": 0.9970588235294117, "y": 0.847647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-04-plant-flipx"}, + "body-id-04-reptile": {"x": 0.9970588235294117, "y": 0.847647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-04-reptile"}, + "body-id-04-reptile-flipx": {"x": 0.9970588235294117, "y": 0.847647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-04-reptile-flipx"}, + "body-id-05-aquatic": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-05-aquatic"}, + "body-id-05-aquatic-flipx": { + "x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-05-aquatic-flipx" + }, + "body-id-05-beast": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-05-beast"}, + "body-id-05-beast-flipx": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-05-beast-flipx"}, + "body-id-05-bird": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-05-bird"}, + "body-id-05-bird-flipx": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-05-bird-flipx"}, + "body-id-05-bug": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-05-bug"}, + "body-id-05-bug-flipx": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-05-bug-flipx"}, + "body-id-05-plant": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-05-plant"}, + "body-id-05-plant-flipx": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-05-plant-flipx"}, + "body-id-05-reptile": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-05-reptile"}, + "body-id-05-reptile-flipx": { + "x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-05-reptile-flipx" + }, + "body-id-06-aquatic": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-06-aquatic"}, + "body-id-06-aquatic-flipx": { + "x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-06-aquatic-flipx" + }, + "body-id-06-beast": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-06-beast"}, + "body-id-06-beast-flipx": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-06-beast-flipx"}, + "body-id-06-bird": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-06-bird"}, + "body-id-06-bird-flipx": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-06-bird-flipx"}, + "body-id-06-bug": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-06-bug"}, + "body-id-06-bug-flipx": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-06-bug-flipx"}, + "body-id-06-plant": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-06-plant"}, + "body-id-06-plant-flipx": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-06-plant-flipx"}, + "body-id-06-reptile": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-06-reptile"}, + "body-id-06-reptile-flipx": { + "x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-06-reptile-flipx" + }, + "body-id-07-aquatic": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-07-aquatic"}, + "body-id-07-aquatic-flipx": { + "x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-07-aquatic-flipx" + }, + "body-id-07-beast": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-07-beast"}, + "body-id-07-beast-flipx": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-07-beast-flipx"}, + "body-id-07-bird": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-07-bird"}, + "body-id-07-bird-flipx": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-07-bird-flipx"}, + "body-id-07-bug": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-07-bug"}, + "body-id-07-bug-flipx": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-07-bug-flipx"}, + "body-id-07-plant": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-07-plant"}, + "body-id-07-plant-flipx": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-07-plant-flipx"}, + "body-id-07-reptile": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-07-reptile"}, + "body-id-07-reptile-flipx": { + "x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-07-reptile-flipx" + }, + "body-id-08-aquatic": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-08-aquatic"}, + "body-id-08-aquatic-flipx": { + "x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-08-aquatic-flipx" + }, + "body-id-08-beast": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-08-beast"}, + "body-id-08-beast-flipx": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-08-beast-flipx"}, + "body-id-08-bird": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-08-bird"}, + "body-id-08-bird-flipx": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-08-bird-flipx"}, + "body-id-08-bug": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-08-bug"}, + "body-id-08-bug-flipx": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-08-bug-flipx"}, + "body-id-08-plant": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-08-plant"}, + "body-id-08-plant-flipx": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-08-plant-flipx"}, + "body-id-08-reptile": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-08-reptile"}, + "body-id-08-reptile-flipx": { + "x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-08-reptile-flipx" + }, + "body-id-09-aquatic": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-09-aquatic"}, + "body-id-09-aquatic-flipx": { + "x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-09-aquatic-flipx" + }, + "body-id-09-beast": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-09-beast"}, + "body-id-09-beast-flipx": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-09-beast-flipx"}, + "body-id-09-bird": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-09-bird"}, + "body-id-09-bird-flipx": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-09-bird-flipx"}, + "body-id-09-bug": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-09-bug"}, + "body-id-09-bug-flipx": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-09-bug-flipx"}, + "body-id-09-plant": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-09-plant"}, + "body-id-09-plant-flipx": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-09-plant-flipx"}, + "body-id-09-reptile": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-09-reptile"}, + "body-id-09-reptile-flipx": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-09-reptile-flipx"} + }, + "body-id-e": { + "body-id-e-00": {"x": -0.17941176470588227, "y": 0.847647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-e-00"}, + "body-id-e-01": {"x": 0.9970588235294117, "y": 0.847647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-e-01"}, + "body-id-e-02": {"x": 0.8205882352941177, "y": 0.847647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-e-02"}, + "body-id-e-03": {"x": 0.9970588235294117, "y": 1.0241176470588234, "width": 4.705882352941177, "height": 9.411764705882353, "path": "body-normal.body-id-e-03"}, + "body-id-e-04": {"x": 0.9970588235294117, "y": 0.847647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-e-04"}, + "body-id-e-05": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-e-05"}, + "body-id-e-06": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-e-06"}, + "body-id-e-07": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-e-07"}, + "body-id-e-08": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-e-08"}, + "body-id-e-09": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-e-09"}, + "body-id-00-aquatic": {"x": -0.17941176470588227, "y": 0.847647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-00-aquatic"}, + "body-id-00-aquatic-flipx": { + "x": -0.17941176470588227, "y": 0.847647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-00-aquatic-flipx" + }, + "body-id-00-beast": {"x": -0.17941176470588227, "y": 0.847647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-00-beast"}, + "body-id-00-beast-flipx": {"x": -0.17941176470588227, "y": 0.847647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-00-beast-flipx"}, + "body-id-00-bird": {"x": -0.17941176470588227, "y": 0.847647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-00-bird"}, + "body-id-00-bird-flipx": {"x": -0.17941176470588227, "y": 0.847647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-00-bird-flipx"}, + "body-id-00-bug": {"x": -0.17941176470588227, "y": 0.847647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-00-bug"}, + "body-id-00-bug-flipx": {"x": -0.17941176470588227, "y": 0.847647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-00-bug-flipx"}, + "body-id-00-plant": {"x": -0.17941176470588227, "y": 0.847647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-00-plant"}, + "body-id-00-plant-flipx": {"x": -0.17941176470588227, "y": 0.847647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-00-plant-flipx"}, + "body-id-00-reptile": {"x": -0.17941176470588227, "y": 0.847647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-00-reptile"}, + "body-id-00-reptile-flipx": { + "x": -0.17941176470588227, "y": 0.847647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-00-reptile-flipx" + }, + "body-id-01-aquatic": {"x": 0.9970588235294117, "y": 0.847647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-01-aquatic"}, + "body-id-01-aquatic-flipx": {"x": 0.9970588235294117, "y": 0.847647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-01-aquatic-flipx"}, + "body-id-01-beast": {"x": 0.9970588235294117, "y": 0.847647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-01-beast"}, + "body-id-01-beast-flipx": {"x": 0.9970588235294117, "y": 0.847647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-01-beast-flipx"}, + "body-id-01-bird": {"x": 0.9970588235294117, "y": 0.847647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-01-bird"}, + "body-id-01-bird-flipx": {"x": 0.9970588235294117, "y": 0.847647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-01-bird-flipx"}, + "body-id-01-bug": {"x": 0.9970588235294117, "y": 0.847647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-01-bug"}, + "body-id-01-bug-flipx": {"x": 0.9970588235294117, "y": 0.847647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-01-bug-flipx"}, + "body-id-01-plant": {"x": 0.9970588235294117, "y": 0.847647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-01-plant"}, + "body-id-01-plant-flipx": {"x": 0.9970588235294117, "y": 0.847647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-01-plant-flipx"}, + "body-id-01-reptile": {"x": 0.9970588235294117, "y": 0.847647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-01-reptile"}, + "body-id-01-reptile-flipx": {"x": 0.9970588235294117, "y": 0.847647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-01-reptile-flipx"}, + "body-id-02-aquatic": {"x": 0.8205882352941177, "y": 0.847647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-02-aquatic"}, + "body-id-02-aquatic-flipx": { + "x": 0.8205882352941177, "y": 0.847647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-02-aquatic-flipx" + }, + "body-id-02-beast": {"x": 0.8205882352941177, "y": 0.847647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-02-beast"}, + "body-id-02-beast-flipx": {"x": 0.8205882352941177, "y": 0.847647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-02-beast-flipx"}, + "body-id-02-bird": {"x": 0.8205882352941177, "y": 0.847647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-02-bird"}, + "body-id-02-bird-flipx": {"x": 0.8205882352941177, "y": 0.847647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-02-bird-flipx"}, + "body-id-02-bug": {"x": 0.8205882352941177, "y": 0.847647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-02-bug"}, + "body-id-02-bug-flipx": {"x": 0.8205882352941177, "y": 0.847647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-02-bug-flipx"}, + "body-id-02-plant": {"x": 0.8205882352941177, "y": 0.847647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-02-plant"}, + "body-id-02-plant-flipx": {"x": 0.8205882352941177, "y": 0.847647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-02-plant-flipx"}, + "body-id-02-reptile": {"x": 0.8205882352941177, "y": 0.847647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-02-reptile"}, + "body-id-02-reptile-flipx": { + "x": 0.8205882352941177, "y": 0.847647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-02-reptile-flipx" + }, + "body-id-03-aquatic": {"x": 0.9970588235294117, "y": 1.0241176470588234, "width": 4.705882352941177, "height": 9.411764705882353, "path": "body-normal.body-id-03-aquatic"}, + "body-id-03-aquatic-flipx": {"x": 0.9970588235294117, "y": 1.0241176470588234, "width": 4.705882352941177, "height": 9.411764705882353, "path": "body-normal.body-id-03-aquatic-flipx"}, + "body-id-03-beast": {"x": 0.9970588235294117, "y": 1.0241176470588234, "width": 4.705882352941177, "height": 9.411764705882353, "path": "body-normal.body-id-03-beast"}, + "body-id-03-beast-flipx": {"x": 0.9970588235294117, "y": 1.0241176470588234, "width": 4.705882352941177, "height": 9.411764705882353, "path": "body-normal.body-id-03-beast-flipx"}, + "body-id-03-bird": {"x": 0.9970588235294117, "y": 1.0241176470588234, "width": 4.705882352941177, "height": 9.411764705882353, "path": "body-normal.body-id-03-bird"}, + "body-id-03-bird-flipx": {"x": 0.9970588235294117, "y": 1.0241176470588234, "width": 4.705882352941177, "height": 9.411764705882353, "path": "body-normal.body-id-03-bird-flipx"}, + "body-id-03-bug": {"x": 0.9970588235294117, "y": 1.0241176470588234, "width": 4.705882352941177, "height": 9.411764705882353, "path": "body-normal.body-id-03-bug"}, + "body-id-03-bug-flipx": {"x": 0.9970588235294117, "y": 1.0241176470588234, "width": 4.705882352941177, "height": 9.411764705882353, "path": "body-normal.body-id-03-bug-flipx"}, + "body-id-03-plant": {"x": 0.9970588235294117, "y": 1.0241176470588234, "width": 4.705882352941177, "height": 9.411764705882353, "path": "body-normal.body-id-03-plant"}, + "body-id-03-plant-flipx": {"x": 0.9970588235294117, "y": 1.0241176470588234, "width": 4.705882352941177, "height": 9.411764705882353, "path": "body-normal.body-id-03-plant-flipx"}, + "body-id-03-reptile": {"x": 0.9970588235294117, "y": 1.0241176470588234, "width": 4.705882352941177, "height": 9.411764705882353, "path": "body-normal.body-id-03-reptile"}, + "body-id-03-reptile-flipx": {"x": 0.9970588235294117, "y": 1.0241176470588234, "width": 4.705882352941177, "height": 9.411764705882353, "path": "body-normal.body-id-03-reptile-flipx"}, + "body-id-04-aquatic": {"x": 0.9970588235294117, "y": 0.847647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-04-aquatic"}, + "body-id-04-aquatic-flipx": {"x": 0.9970588235294117, "y": 0.847647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-04-aquatic-flipx"}, + "body-id-04-beast": {"x": 0.9970588235294117, "y": 0.847647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-04-beast"}, + "body-id-04-beast-flipx": {"x": 0.9970588235294117, "y": 0.847647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-04-beast-flipx"}, + "body-id-04-bird": {"x": 0.9970588235294117, "y": 0.847647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-04-bird"}, + "body-id-04-bird-flipx": {"x": 0.9970588235294117, "y": 0.847647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-04-bird-flipx"}, + "body-id-04-bug": {"x": 0.9970588235294117, "y": 0.847647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-04-bug"}, + "body-id-04-bug-flipx": {"x": 0.9970588235294117, "y": 0.847647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-04-bug-flipx"}, + "body-id-04-plant": {"x": 0.9970588235294117, "y": 0.847647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-04-plant"}, + "body-id-04-plant-flipx": {"x": 0.9970588235294117, "y": 0.847647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-04-plant-flipx"}, + "body-id-04-reptile": {"x": 0.9970588235294117, "y": 0.847647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-04-reptile"}, + "body-id-04-reptile-flipx": {"x": 0.9970588235294117, "y": 0.847647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-04-reptile-flipx"}, + "body-id-05-aquatic": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-05-aquatic"}, + "body-id-05-aquatic-flipx": { + "x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-05-aquatic-flipx" + }, + "body-id-05-beast": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-05-beast"}, + "body-id-05-beast-flipx": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-05-beast-flipx"}, + "body-id-05-bird": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-05-bird"}, + "body-id-05-bird-flipx": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-05-bird-flipx"}, + "body-id-05-bug": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-05-bug"}, + "body-id-05-bug-flipx": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-05-bug-flipx"}, + "body-id-05-plant": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-05-plant"}, + "body-id-05-plant-flipx": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-05-plant-flipx"}, + "body-id-05-reptile": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-05-reptile"}, + "body-id-05-reptile-flipx": { + "x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-05-reptile-flipx" + }, + "body-id-06-aquatic": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-06-aquatic"}, + "body-id-06-aquatic-flipx": { + "x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-06-aquatic-flipx" + }, + "body-id-06-beast": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-06-beast"}, + "body-id-06-beast-flipx": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-06-beast-flipx"}, + "body-id-06-bird": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-06-bird"}, + "body-id-06-bird-flipx": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-06-bird-flipx"}, + "body-id-06-bug": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-06-bug"}, + "body-id-06-bug-flipx": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-06-bug-flipx"}, + "body-id-06-plant": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-06-plant"}, + "body-id-06-plant-flipx": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-06-plant-flipx"}, + "body-id-06-reptile": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-06-reptile"}, + "body-id-06-reptile-flipx": { + "x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-06-reptile-flipx" + }, + "body-id-07-aquatic": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-07-aquatic"}, + "body-id-07-aquatic-flipx": { + "x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-07-aquatic-flipx" + }, + "body-id-07-beast": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-07-beast"}, + "body-id-07-beast-flipx": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-07-beast-flipx"}, + "body-id-07-bird": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-07-bird"}, + "body-id-07-bird-flipx": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-07-bird-flipx"}, + "body-id-07-bug": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-07-bug"}, + "body-id-07-bug-flipx": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-07-bug-flipx"}, + "body-id-07-plant": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-07-plant"}, + "body-id-07-plant-flipx": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-07-plant-flipx"}, + "body-id-07-reptile": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-07-reptile"}, + "body-id-07-reptile-flipx": { + "x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-07-reptile-flipx" + }, + "body-id-08-aquatic": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-08-aquatic"}, + "body-id-08-aquatic-flipx": { + "x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-08-aquatic-flipx" + }, + "body-id-08-beast": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-08-beast"}, + "body-id-08-beast-flipx": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-08-beast-flipx"}, + "body-id-08-bird": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-08-bird"}, + "body-id-08-bird-flipx": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-08-bird-flipx"}, + "body-id-08-bug": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-08-bug"}, + "body-id-08-bug-flipx": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-08-bug-flipx"}, + "body-id-08-plant": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-08-plant"}, + "body-id-08-plant-flipx": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-08-plant-flipx"}, + "body-id-08-reptile": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-08-reptile"}, + "body-id-08-reptile-flipx": { + "x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-08-reptile-flipx" + }, + "body-id-09-aquatic": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-09-aquatic"}, + "body-id-09-aquatic-flipx": { + "x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-09-aquatic-flipx" + }, + "body-id-09-beast": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-09-beast"}, + "body-id-09-beast-flipx": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-09-beast-flipx"}, + "body-id-09-bird": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-09-bird"}, + "body-id-09-bird-flipx": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-09-bird-flipx"}, + "body-id-09-bug": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-09-bug"}, + "body-id-09-bug-flipx": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-09-bug-flipx"}, + "body-id-09-plant": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-09-plant"}, + "body-id-09-plant-flipx": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-09-plant-flipx"}, + "body-id-09-reptile": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-09-reptile"}, + "body-id-09-reptile-flipx": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-09-reptile-flipx"} + }, + "body-id-f": { + "body-id-f-00": {"x": -0.17941176470588227, "y": 0.847647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-f-00"}, + "body-id-f-01": {"x": 0.9970588235294117, "y": 0.847647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-f-01"}, + "body-id-f-02": {"x": 0.8205882352941177, "y": 0.847647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-f-02"}, + "body-id-f-03": {"x": 0.9970588235294117, "y": 1.0241176470588234, "width": 4.705882352941177, "height": 9.411764705882353, "path": "body-normal.body-id-f-03"}, + "body-id-f-04": {"x": 0.9970588235294117, "y": 0.847647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-f-04"}, + "body-id-f-05": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-f-05"}, + "body-id-f-06": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-f-06"}, + "body-id-f-07": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-f-07"}, + "body-id-f-08": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-f-08"}, + "body-id-f-09": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-f-09"}, + "body-id-00-aquatic": {"x": -0.17941176470588227, "y": 0.847647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-00-aquatic"}, + "body-id-00-aquatic-flipx": { + "x": -0.17941176470588227, "y": 0.847647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-00-aquatic-flipx" + }, + "body-id-00-beast": {"x": -0.17941176470588227, "y": 0.847647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-00-beast"}, + "body-id-00-beast-flipx": {"x": -0.17941176470588227, "y": 0.847647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-00-beast-flipx"}, + "body-id-00-bird": {"x": -0.17941176470588227, "y": 0.847647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-00-bird"}, + "body-id-00-bird-flipx": {"x": -0.17941176470588227, "y": 0.847647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-00-bird-flipx"}, + "body-id-00-bug": {"x": -0.17941176470588227, "y": 0.847647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-00-bug"}, + "body-id-00-bug-flipx": {"x": -0.17941176470588227, "y": 0.847647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-00-bug-flipx"}, + "body-id-00-plant": {"x": -0.17941176470588227, "y": 0.847647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-00-plant"}, + "body-id-00-plant-flipx": {"x": -0.17941176470588227, "y": 0.847647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-00-plant-flipx"}, + "body-id-00-reptile": {"x": -0.17941176470588227, "y": 0.847647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-00-reptile"}, + "body-id-00-reptile-flipx": { + "x": -0.17941176470588227, "y": 0.847647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-00-reptile-flipx" + }, + "body-id-01-aquatic": {"x": 0.9970588235294117, "y": 0.847647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-01-aquatic"}, + "body-id-01-aquatic-flipx": {"x": 0.9970588235294117, "y": 0.847647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-01-aquatic-flipx"}, + "body-id-01-beast": {"x": 0.9970588235294117, "y": 0.847647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-01-beast"}, + "body-id-01-beast-flipx": {"x": 0.9970588235294117, "y": 0.847647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-01-beast-flipx"}, + "body-id-01-bird": {"x": 0.9970588235294117, "y": 0.847647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-01-bird"}, + "body-id-01-bird-flipx": {"x": 0.9970588235294117, "y": 0.847647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-01-bird-flipx"}, + "body-id-01-bug": {"x": 0.9970588235294117, "y": 0.847647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-01-bug"}, + "body-id-01-bug-flipx": {"x": 0.9970588235294117, "y": 0.847647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-01-bug-flipx"}, + "body-id-01-plant": {"x": 0.9970588235294117, "y": 0.847647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-01-plant"}, + "body-id-01-plant-flipx": {"x": 0.9970588235294117, "y": 0.847647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-01-plant-flipx"}, + "body-id-01-reptile": {"x": 0.9970588235294117, "y": 0.847647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-01-reptile"}, + "body-id-01-reptile-flipx": {"x": 0.9970588235294117, "y": 0.847647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-01-reptile-flipx"}, + "body-id-02-aquatic": {"x": 0.8205882352941177, "y": 0.847647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-02-aquatic"}, + "body-id-02-aquatic-flipx": { + "x": 0.8205882352941177, "y": 0.847647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-02-aquatic-flipx" + }, + "body-id-02-beast": {"x": 0.8205882352941177, "y": 0.847647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-02-beast"}, + "body-id-02-beast-flipx": {"x": 0.8205882352941177, "y": 0.847647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-02-beast-flipx"}, + "body-id-02-bird": {"x": 0.8205882352941177, "y": 0.847647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-02-bird"}, + "body-id-02-bird-flipx": {"x": 0.8205882352941177, "y": 0.847647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-02-bird-flipx"}, + "body-id-02-bug": {"x": 0.8205882352941177, "y": 0.847647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-02-bug"}, + "body-id-02-bug-flipx": {"x": 0.8205882352941177, "y": 0.847647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-02-bug-flipx"}, + "body-id-02-plant": {"x": 0.8205882352941177, "y": 0.847647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-02-plant"}, + "body-id-02-plant-flipx": {"x": 0.8205882352941177, "y": 0.847647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-02-plant-flipx"}, + "body-id-02-reptile": {"x": 0.8205882352941177, "y": 0.847647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-02-reptile"}, + "body-id-02-reptile-flipx": { + "x": 0.8205882352941177, "y": 0.847647058823529, "width": 7.0588235294117645, "height": 11.764705882352942, "path": "body-normal.body-id-02-reptile-flipx" + }, + "body-id-03-aquatic": {"x": 0.9970588235294117, "y": 1.0241176470588234, "width": 4.705882352941177, "height": 9.411764705882353, "path": "body-normal.body-id-03-aquatic"}, + "body-id-03-aquatic-flipx": {"x": 0.9970588235294117, "y": 1.0241176470588234, "width": 4.705882352941177, "height": 9.411764705882353, "path": "body-normal.body-id-03-aquatic-flipx"}, + "body-id-03-beast": {"x": 0.9970588235294117, "y": 1.0241176470588234, "width": 4.705882352941177, "height": 9.411764705882353, "path": "body-normal.body-id-03-beast"}, + "body-id-03-beast-flipx": {"x": 0.9970588235294117, "y": 1.0241176470588234, "width": 4.705882352941177, "height": 9.411764705882353, "path": "body-normal.body-id-03-beast-flipx"}, + "body-id-03-bird": {"x": 0.9970588235294117, "y": 1.0241176470588234, "width": 4.705882352941177, "height": 9.411764705882353, "path": "body-normal.body-id-03-bird"}, + "body-id-03-bird-flipx": {"x": 0.9970588235294117, "y": 1.0241176470588234, "width": 4.705882352941177, "height": 9.411764705882353, "path": "body-normal.body-id-03-bird-flipx"}, + "body-id-03-bug": {"x": 0.9970588235294117, "y": 1.0241176470588234, "width": 4.705882352941177, "height": 9.411764705882353, "path": "body-normal.body-id-03-bug"}, + "body-id-03-bug-flipx": {"x": 0.9970588235294117, "y": 1.0241176470588234, "width": 4.705882352941177, "height": 9.411764705882353, "path": "body-normal.body-id-03-bug-flipx"}, + "body-id-03-plant": {"x": 0.9970588235294117, "y": 1.0241176470588234, "width": 4.705882352941177, "height": 9.411764705882353, "path": "body-normal.body-id-03-plant"}, + "body-id-03-plant-flipx": {"x": 0.9970588235294117, "y": 1.0241176470588234, "width": 4.705882352941177, "height": 9.411764705882353, "path": "body-normal.body-id-03-plant-flipx"}, + "body-id-03-reptile": {"x": 0.9970588235294117, "y": 1.0241176470588234, "width": 4.705882352941177, "height": 9.411764705882353, "path": "body-normal.body-id-03-reptile"}, + "body-id-03-reptile-flipx": {"x": 0.9970588235294117, "y": 1.0241176470588234, "width": 4.705882352941177, "height": 9.411764705882353, "path": "body-normal.body-id-03-reptile-flipx"}, + "body-id-04-aquatic": {"x": 0.9970588235294117, "y": 0.847647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-04-aquatic"}, + "body-id-04-aquatic-flipx": {"x": 0.9970588235294117, "y": 0.847647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-04-aquatic-flipx"}, + "body-id-04-beast": {"x": 0.9970588235294117, "y": 0.847647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-04-beast"}, + "body-id-04-beast-flipx": {"x": 0.9970588235294117, "y": 0.847647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-04-beast-flipx"}, + "body-id-04-bird": {"x": 0.9970588235294117, "y": 0.847647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-04-bird"}, + "body-id-04-bird-flipx": {"x": 0.9970588235294117, "y": 0.847647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-04-bird-flipx"}, + "body-id-04-bug": {"x": 0.9970588235294117, "y": 0.847647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-04-bug"}, + "body-id-04-bug-flipx": {"x": 0.9970588235294117, "y": 0.847647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-04-bug-flipx"}, + "body-id-04-plant": {"x": 0.9970588235294117, "y": 0.847647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-04-plant"}, + "body-id-04-plant-flipx": {"x": 0.9970588235294117, "y": 0.847647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-04-plant-flipx"}, + "body-id-04-reptile": {"x": 0.9970588235294117, "y": 0.847647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-04-reptile"}, + "body-id-04-reptile-flipx": {"x": 0.9970588235294117, "y": 0.847647058823529, "width": 4.705882352941177, "height": 11.764705882352942, "path": "body-normal.body-id-04-reptile-flipx"}, + "body-id-05-aquatic": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-05-aquatic"}, + "body-id-05-aquatic-flipx": { + "x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-05-aquatic-flipx" + }, + "body-id-05-beast": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-05-beast"}, + "body-id-05-beast-flipx": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-05-beast-flipx"}, + "body-id-05-bird": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-05-bird"}, + "body-id-05-bird-flipx": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-05-bird-flipx"}, + "body-id-05-bug": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-05-bug"}, + "body-id-05-bug-flipx": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-05-bug-flipx"}, + "body-id-05-plant": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-05-plant"}, + "body-id-05-plant-flipx": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-05-plant-flipx"}, + "body-id-05-reptile": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-05-reptile"}, + "body-id-05-reptile-flipx": { + "x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-05-reptile-flipx" + }, + "body-id-06-aquatic": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-06-aquatic"}, + "body-id-06-aquatic-flipx": { + "x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-06-aquatic-flipx" + }, + "body-id-06-beast": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-06-beast"}, + "body-id-06-beast-flipx": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-06-beast-flipx"}, + "body-id-06-bird": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-06-bird"}, + "body-id-06-bird-flipx": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-06-bird-flipx"}, + "body-id-06-bug": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-06-bug"}, + "body-id-06-bug-flipx": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-06-bug-flipx"}, + "body-id-06-plant": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-06-plant"}, + "body-id-06-plant-flipx": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-06-plant-flipx"}, + "body-id-06-reptile": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-06-reptile"}, + "body-id-06-reptile-flipx": { + "x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-06-reptile-flipx" + }, + "body-id-07-aquatic": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-07-aquatic"}, + "body-id-07-aquatic-flipx": { + "x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-07-aquatic-flipx" + }, + "body-id-07-beast": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-07-beast"}, + "body-id-07-beast-flipx": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-07-beast-flipx"}, + "body-id-07-bird": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-07-bird"}, + "body-id-07-bird-flipx": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-07-bird-flipx"}, + "body-id-07-bug": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-07-bug"}, + "body-id-07-bug-flipx": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-07-bug-flipx"}, + "body-id-07-plant": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-07-plant"}, + "body-id-07-plant-flipx": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-07-plant-flipx"}, + "body-id-07-reptile": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-07-reptile"}, + "body-id-07-reptile-flipx": { + "x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-07-reptile-flipx" + }, + "body-id-08-aquatic": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-08-aquatic"}, + "body-id-08-aquatic-flipx": { + "x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-08-aquatic-flipx" + }, + "body-id-08-beast": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-08-beast"}, + "body-id-08-beast-flipx": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-08-beast-flipx"}, + "body-id-08-bird": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-08-bird"}, + "body-id-08-bird-flipx": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-08-bird-flipx"}, + "body-id-08-bug": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-08-bug"}, + "body-id-08-bug-flipx": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-08-bug-flipx"}, + "body-id-08-plant": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-08-plant"}, + "body-id-08-plant-flipx": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-08-plant-flipx"}, + "body-id-08-reptile": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-08-reptile"}, + "body-id-08-reptile-flipx": { + "x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-08-reptile-flipx" + }, + "body-id-09-aquatic": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-09-aquatic"}, + "body-id-09-aquatic-flipx": { + "x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-09-aquatic-flipx" + }, + "body-id-09-beast": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-09-beast"}, + "body-id-09-beast-flipx": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-09-beast-flipx"}, + "body-id-09-bird": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-09-bird"}, + "body-id-09-bird-flipx": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-09-bird-flipx"}, + "body-id-09-bug": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-09-bug"}, + "body-id-09-bug-flipx": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-09-bug-flipx"}, + "body-id-09-plant": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-09-plant"}, + "body-id-09-plant-flipx": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-09-plant-flipx"}, + "body-id-09-reptile": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-09-reptile"}, + "body-id-09-reptile-flipx": {"x": 0.8205882352941177, "y": 1.0241176470588234, "width": 7.0588235294117645, "height": 9.411764705882353, "path": "body-normal.body-id-09-reptile-flipx"} + }, + "body-light-breath": { + "body-light-breath": { + "x": -142.35352941176473, "y": 11.966470588235289, "rotation": -170.69, "width": 77.64705882352942, "height": 77.64705882352942, "path": "body-normal.body-light-breath" + } + }, + "body-light-life": { + "body-light-life": {"x": 1.048823529411768, "y": 1.7188235294117682, "width": 145.88235294117646, "height": 145.88235294117646, "path": "body-normal.body-light-life"} + }, + "body-light-pulse": { + "body-light-pulse": { + "x": -244.86882352941177, "y": -185.33235294117645, "rotation": -170.69, "width": 14.117647058823529, "height": 11.764705882352942, "path": "body-normal.body-light-pulse" + } + }, + "body-mfuzzy": { + "body-mfuzzy": { + "type": "mesh", + "uvs": [ + 0, 0.59099, 0, 0.63956, 0.02445, 0.70612, 0.06062, 0.75469, 0.08774, 0.77508, 0.12781, 0.88168, 0.21693, 0.97076, 0.3552, 1, 0.47229, 0.99621, 0.59119, 0.95423, 0.67211, 0.8475, + 0.74226, 0.70659, 0.79108, 0.55849, 0.84941, 0.50152, 0.89168, 0.50505, 0.92853, 0.50812, 0.95366, 0.49336, 0.97961, 0.47814, 1, 0.42537, 1, 0.3852, 0.95113, 0.33603, 0.87337, + 0.30365, 0.87699, 0.2161, 0.86187, 0.09979, 0.77778, 0.09679, 0.68104, 0.10818, 0.65211, 0.06861, 0.55943, 0.10278, 0.50202, 0, 0.45139, 0, 0.36685, 0.04942, 0.3022, 0.12797, + 0.26152, 0.21012, 0.17426, 0.18613, 0.12581, 0.26107, 0.10683, 0.34802, 0.07744, 0.34442, 0.05619, 0.43376, 0.0571, 0.54469, 0.11098, 0.76022, 0.08306, 0.72228, 0.05684, 0.68299, + 0.03083, 0.6269, 0.06028, 0.59484, 0.09467, 0.56797, 0.08828, 0.50932, 0.08976, 0.45706, 0.09567, 0.40658, 0.11114, 0.43993, 0.12553, 0.47578, 0.12943, 0.4344, 0.1404, 0.38064, + 0.15803, 0.31433, 0.17485, 0.26694, 0.19151, 0.23485, 0.22351, 0.25242, 0.27558, 0.27856, 0.30173, 0.22442, 0.33679, 0.16719, 0.37247, 0.11656, 0.41864, 0.07588, 0.48082, 0.0449, + 0.50326, 0.10725, 0.53735, 0.19358, 0.58637, 0.1543, 0.64461, 0.11982, 0.6462, 0.15935, 0.64175, 0.21158, 0.67351, 0.16651, 0.73576, 0.14665, 0.79457, 0.14018, 0.83388, 0.13977, + 0.83693, 0.20202, 0.83083, 0.28124, 0.80737, 0.3645, 0.84027, 0.3502, 0.89076, 0.35878, 0.93715, 0.38745, 0.96988, 0.41116, 0.95351, 0.45023, 0.9233, 0.47795, 0.07568, 0.65845, + 0.11684, 0.68341, 0.15212, 0.70108, 0.21284, 0.39863, 0.40981, 0.25755, 0.42812, 0.17944, 0.44751, 0.10323, 0.64387, 0.38092, 0.70824, 0.31387, 0.76311, 0.25026, 0.81237, 0.18378, + 0.78959, 0.47118, 0.8498, 0.44586, 0.89916, 0.42448, 0.3144, 0.31426, 0.15836, 0.53904, 0.15868, 0.82395, 0.54315, 0.28691, 0.73079, 0.41927, 0.8687, 0.47643, 0.81725, 0.49587, + 0.79054, 0.52691, 0.7583, 0.58688 + ], + "triangles": [ + 16, 79, 17, 80, 94, 79, 80, 79, 16, 102, 99, 92, 101, 92, 93, 100, 94, 80, 101, 93, 100, 13, 101, 100, 14, 100, 80, 13, 100, 14, 15, 80, 16, 14, 80, 15, 102, 92, 101, 12, 102, 101, + 12, 101, 13, 102, 103, 99, 103, 102, 12, 11, 103, 12, 4, 3, 40, 39, 4, 40, 95, 97, 83, 39, 83, 97, 103, 10, 88, 11, 10, 103, 97, 4, 39, 5, 4, 97, 88, 8, 95, 6, 97, 7, 5, 97, 6, 8, + 88, 10, 95, 8, 97, 8, 10, 9, 8, 7, 97, 100, 93, 94, 93, 75, 76, 93, 76, 94, 74, 75, 93, 92, 99, 74, 92, 74, 93, 76, 21, 20, 75, 21, 76, 77, 76, 20, 78, 77, 20, 19, 78, 20, 94, 76, + 77, 94, 77, 78, 78, 19, 18, 79, 94, 78, 18, 79, 78, 17, 79, 18, 65, 27, 26, 65, 26, 25, 64, 27, 65, 68, 66, 65, 64, 65, 66, 25, 68, 65, 67, 64, 66, 67, 66, 68, 67, 98, 63, 67, 63, + 64, 90, 89, 68, 67, 68, 89, 89, 90, 74, 88, 67, 89, 98, 67, 88, 99, 89, 74, 88, 89, 99, 99, 103, 88, 88, 95, 98, 71, 24, 23, 70, 24, 71, 69, 25, 24, 69, 24, 70, 68, 25, 69, 91, 70, + 71, 22, 72, 71, 91, 71, 72, 22, 71, 23, 91, 90, 69, 91, 69, 70, 73, 91, 72, 73, 72, 22, 90, 91, 73, 21, 73, 22, 90, 68, 69, 75, 73, 21, 74, 90, 73, 74, 73, 75, 59, 30, 60, 31, 30, + 59, 58, 31, 59, 87, 59, 60, 86, 59, 87, 58, 57, 31, 86, 58, 59, 85, 58, 86, 57, 58, 85, 63, 85, 86, 98, 85, 63, 95, 57, 85, 95, 85, 98, 61, 29, 28, 60, 30, 29, 60, 29, 61, 62, 61, + 28, 87, 60, 61, 27, 62, 28, 87, 61, 62, 63, 62, 27, 63, 27, 64, 86, 87, 62, 62, 63, 86, 57, 32, 31, 54, 33, 32, 55, 54, 32, 53, 34, 33, 54, 53, 33, 56, 32, 57, 55, 32, 56, 56, 57, + 95, 52, 34, 53, 52, 35, 34, 51, 35, 52, 54, 84, 53, 84, 55, 56, 84, 56, 95, 53, 84, 52, 54, 55, 84, 51, 52, 84, 47, 36, 35, 47, 35, 51, 37, 36, 47, 50, 47, 51, 48, 47, 50, 46, 37, + 47, 46, 47, 48, 49, 48, 50, 46, 48, 49, 45, 37, 46, 45, 46, 49, 84, 50, 51, 84, 49, 50, 96, 49, 84, 96, 44, 45, 96, 45, 49, 96, 95, 83, 96, 84, 95, 41, 42, 81, 82, 44, 96, 81, 44, + 82, 83, 82, 96, 40, 81, 82, 41, 81, 40, 3, 41, 40, 2, 41, 3, 39, 40, 82, 39, 82, 83, 38, 37, 45, 38, 45, 44, 43, 38, 44, 0, 38, 43, 42, 0, 43, 1, 0, 42, 81, 43, 44, 42, 43, 81, 2, 1, + 42, 2, 42, 41 + ], + "vertices": [ + 4, 39, 59.38, -4.61, 0.73379, 38, 118.71, -15.45, 0.10803, 37, -71.06, 165.61, 0.15679, 6, 386.15, -60.24, 0.00139, 4, 39, 46.03, 17.23, 0.7372, 38, 109.52, 8.43, 0.20192, 37, + -96.19, 170.51, 0.05083, 6, 382.01, -34.98, 0.01005, 4, 39, 13.15, 38.24, 0.54527, 38, 80.97, 35.03, 0.34127, 37, -133.88, 160.44, 0.00823, 6, 359.46, -3.13, 0.10523, 4, 39, -21.77, + 46.9, 0.30902, 38, 48.18, 49.85, 0.46464, 37, -163.84, 140.52, 4e-05, 6, 330.38, 18.04, 0.2263, 1, 6, 309.93, 25.57, 1, 1, 6, 273.2, 76.48, 1, 1, 6, 204.13, 112.73, 1, 1, 6, 106.26, + 112.3, 1, 1, 6, 25.82, 97.09, 1, 1, 6, -52.62, 61.81, 1, 1, 6, -99.34, -2.85, 1, 1, 6, -135.71, -84.06, 1, 1, 6, -156.76, -166.6, 1, 5, 34, -57.56, -133.13, 0, 33, 70.58, -139.89, + 0.00031, 32, -39.76, -39.27, 0.00281, 31, 34, -28.52, 0.00881, 6, -192.14, -202.82, 0.98808, 1, 6, -221.6, -205.77, 1, 1, 6, -247.28, -208.34, 1, 1, 6, -263.36, -218.86, 1, 4, 34, + 12.41, -192.61, 0.0008, 32, 52.05, -37.09, 0.67381, 31, 123.63, -48.54, 0.14938, 6, -279.96, -229.71, 0.176, 4, 34, 42.63, -184.64, 0.0184, 33, 177.49, -175.38, 0.00095, 32, 69.3, + -11.03, 0.9002, 31, 146.65, -27.41, 0.08045, 4, 34, 58.38, -170.49, 0.08596, 33, 190.88, -158.98, 0.00284, 32, 71.64, 10.01, 0.85259, 31, 154, -7.55, 0.05861, 4, 34, 54.84, -127.76, + 0.23776, 33, 180.81, -117.3, 0.00568, 32, 40.56, 39.55, 0.66664, 31, 130.95, 28.6, 0.08991, 6, 36, 48.01, -312.32, 0.00041, 35, 72.95, -315.86, 8e-05, 34, 31.22, -75.92, 0.4621, 33, + 149.51, -69.71, 0.00841, 32, -11.57, 62.52, 0.41961, 31, 85.9, 63.47, 0.10938, 6, 36, 90.07, -293.2, 0.00549, 35, 117.77, -304.64, 0.00243, 34, 67.24, -46.98, 0.67125, 33, 180.64, + -35.57, 0.02838, 32, -3.96, 108.09, 0.19498, 31, 104.28, 105.86, 0.09748, 6, 36, 139.51, -255.45, 0.02177, 35, 173.21, -276.42, 0.01039, 34, 105.79, 1.84, 0.76569, 33, 211.23, 18.59, + 0.08403, 32, -7.68, 170.19, 0.06301, 31, 115.64, 167.02, 0.05511, 6, 36, 113.7, -202.62, 0.06514, 35, 157.35, -219.8, 0.03088, 34, 67.69, 46.63, 0.68964, 33, 166.7, 56.99, 0.18361, + 32, -65.92, 178.26, 0.00988, 31, 61.06, 188.89, 0.02084, 6, 36, 77.06, -145.46, 0.15973, 35, 131.62, -156.98, 0.05738, 34, 18.05, 92.93, 0.50433, 33, 110.53, 95.11, 0.27518, 32, + -133.79, 179.78, 0.00071, 31, -4.44, 206.73, 0.00266, 4, 36, 86.18, -117.88, 0.32296, 35, 145.57, -131.49, 0.07984, 34, 20.05, 121.91, 0.2938, 33, 108.05, 124.06, 0.30339, 5, 37, + 106.68, -267.42, 0.00096, 36, 40.22, -68.8, 0.51925, 35, 109.21, -74.93, 0.0986, 34, -36.63, 158.08, 0.14083, 33, 46.48, 151.08, 0.24036, 5, 37, 167.52, -238.39, 0.00993, 36, 69.65, + -8.15, 0.65142, 35, 149.1, -20.58, 0.14932, 34, -23.14, 224.13, 0.05147, 33, 49.66, 218.42, 0.13785, 5, 37, 174.29, -203.65, 0.05005, 36, 53.26, 23.22, 0.62805, 35, 138.63, 13.23, + 0.25588, 34, -46.78, 250.47, 0.01479, 33, 22.25, 240.8, 0.05123, 5, 37, 160.03, -140.67, 0.15546, 36, 2.82, 63.53, 0.45652, 35, 96.29, 61.98, 0.37497, 34, -105.64, 277.03, 0.00204, + 33, -40, 258.01, 0.01101, 7, 39, 6.4, -322.98, 0.0004, 38, 9.17, -319.05, 2e-05, 37, 128.04, -88.4, 0.34164, 36, -54.8, 84.42, 0.24086, 35, 43.38, 92.92, 0.41699, 34, -166.63, 283, + 1e-05, 33, -101.18, 254.52, 8e-05, 5, 39, 8.09, -271.21, 0.00467, 38, 20.17, -268.43, 0.00117, 37, 90.99, -52.2, 0.57165, 36, -106.34, 89.58, 0.08557, 35, -6.38, 107.29, 0.33695, 5, + 39, 66.71, -250.19, 0.01762, 38, 81.63, -258.33, 0.00505, 37, 115.06, 5.24, 0.76786, 36, -123.37, 149.49, 0.01703, 35, -12.33, 169.29, 0.19243, 5, 39, 75.02, -198.83, 0.04674, 38, + 99.06, -209.31, 0.01526, 37, 82.77, 46.04, 0.8663, 36, -174.06, 161.22, 0.00084, 35, -60.07, 189.97, 0.07086, 4, 39, 62.44, -152.81, 0.10417, 38, 94.99, -161.78, 0.03432, 37, 40.34, + 67.83, 0.84761, 35, -107.77, 189.1, 0.0139, 3, 39, 80.96, -143.72, 0.21239, 38, 114.85, -156.17, 0.05746, 37, 46.13, 87.63, 0.73015, 3, 39, 69.08, -95.8, 0.38361, 38, 111.8, -106.89, + 0.07384, 37, 2.75, 111.21, 0.54255, 4, 39, 38.05, -46.25, 0.58771, 38, 90.22, -52.56, 0.07907, 37, -54.75, 121.77, 0.33322, 6, 350.71, -90.78, 0, 3, 39, -53.32, 31.03, 0.05161, 38, + 14.29, 39.92, 0.23639, 6, 295.17, 15.22, 0.712, 4, 39, -26.24, 24.15, 0.22586, 38, 39.68, 28.27, 0.53683, 37, -150.08, 121.86, 0.00184, 6, 317.66, -1.36, 0.23548, 4, 39, 0.2, 16.04, + 0.41793, 38, 64.22, 15.53, 0.50584, 37, -126.25, 135.89, 0.01199, 6, 339.1, -18.82, 0.06424, 5, 39, 31.13, 0.3, 0.5098, 38, 91.8, -5.53, 0.44038, 37, -93.76, 148.08, 0.0421, 35, + -263.88, 196.41, 0, 6, 361.82, -45.05, 0.00772, 4, 39, 22.37, -24.86, 0.58199, 38, 78.66, -28.69, 0.27798, 37, -81.11, 124.64, 0.13923, 6, 344.24, -65.06, 0.0008, 4, 39, 9.25, + -49.47, 0.51354, 38, 61.31, -50.54, 0.2129, 37, -71.81, 98.34, 0.27356, 6, 322.81, -82.92, 0, 4, 39, 29.18, -73.52, 0.39066, 38, 76.57, -77.78, 0.18247, 37, -40.62, 96.81, 0.42687, + 6, 332.22, -112.7, 0, 4, 39, 42.66, -97.56, 0.28223, 38, 85.5, -103.86, 0.15403, 37, -13.78, 90.53, 0.56363, 6, 335.65, -140.05, 0.00011, 4, 39, 53, -122.41, 0.21865, 38, 91.19, + -130.17, 0.12816, 37, 11.54, 81.38, 0.65285, 6, 335.88, -166.97, 0.00033, 4, 39, 34.61, -113.05, 0.1849, 38, 74.79, -117.65, 0.11637, 37, -7.78, 74.13, 0.69806, 6, 322.37, -151.37, + 0.00067, 4, 39, 16.18, -102.18, 0.15794, 38, 58.62, -103.63, 0.10816, 37, -28.25, 67.87, 0.73308, 6, 309.38, -134.35, 0.00081, 4, 39, 25.22, -122.21, 0.12444, 38, 63.9, -124.96, + 0.08758, 37, -7.37, 61.03, 0.78726, 6, 310.22, -156.31, 0.00072, 5, 39, 33.45, -150.38, 0.0831, 38, 66.92, -154.16, 0.05533, 37, 18.98, 48.08, 0.8611, 35, -117.26, 161.6, 7e-05, 6, + 307.23, -185.51, 0.0004, 5, 39, 41.16, -186.62, 0.04445, 38, 67.97, -191.19, 0.02606, 37, 50.92, 29.3, 0.92676, 35, -80.23, 160.16, 0.00259, 6, 300.73, -221.99, 0.00015, 6, 39, + 44.16, -214.06, 0.02045, 38, 65.96, -218.73, 0.0161, 37, 73.18, 12.98, 0.93579, 35, -52.9, 156.31, 0.02623, 33, -216.45, 254.1, 8e-05, 6, 293.16, -248.54, 0.00134, 6, 39, 43.04, + -234.57, 0.01054, 38, 61.16, -238.69, 0.04152, 37, 87.56, -1.69, 0.84314, 35, -33.3, 150.18, 0.1009, 33, -196.74, 259.83, 0.00021, 6, 284.41, -267.11, 0.00369, 7, 39, 19.13, -238.33, + 0.00337, 38, 36.96, -238.08, 0.00802, 37, 74.19, -21.87, 0.7895, 36, -138.4, 102.8, 0.00046, 35, -35.53, 126.08, 0.19653, 33, -185.27, 238.51, 9e-05, 6, 260.84, -261.6, 0.00203, 7, + 39, -19.11, -245.56, 6e-05, 38, -1.96, -238.3, 1e-05, 37, 53.71, -54.96, 0.63522, 36, -133.75, 64.16, 0.00626, 35, -37.93, 87.23, 0.35744, 33, -165.79, 204.82, 1e-05, 6, 222.69, + -253.89, 0.00102, 5, 37, 78.22, -78.36, 0.43479, 36, -100, 61.17, 0.04239, 35, -5.27, 78.2, 0.52191, 33, -133.58, 215.36, 1e-05, 6, 209.27, -285, 0.0009, 6, 37, 103.13, -108.18, + 0.25316, 36, -61.92, 53.42, 0.1443, 35, 30.78, 63.71, 0.60187, 34, -165.86, 251.2, 2e-05, 33, -95.53, 223.22, 0.00015, 6, 189.96, -318.73, 0.00049, 6, 37, 124.55, -137.76, 0.12076, + 36, -26.73, 43.67, 0.32134, 35, 63.64, 47.77, 0.55446, 34, -129.34, 250.47, 0.00034, 33, -59.33, 228.11, 0.00292, 6, 169.67, -349.09, 0.00018, 6, 37, 139.42, -173.54, 0.04516, 36, + 7.22, 24.99, 0.50008, 35, 93.67, 23.28, 0.43627, 34, -91.83, 240.78, 0.00155, 33, -20.77, 224.31, 0.01691, 6, 141.29, -375.47, 2e-05, 6, 37, 147.13, -219.32, 0.00916, 36, 41.82, + -5.97, 0.57981, 35, 122.11, -13.42, 0.35244, 34, -50.64, 219.35, 0.00585, 33, 23.21, 209.46, 0.05274, 6, 101.04, -398.61, 1e-05, 6, 37, 111.88, -228.43, 0.00173, 36, 19.95, -35.09, + 0.54937, 35, 95.35, -38.12, 0.26285, 34, -64.61, 185.72, 0.02506, 33, 14.58, 174.09, 0.16096, 6, 80.25, -368.72, 3e-05, 6, 37, 62.67, -243.12, 0.00013, 36, -9.34, -77.28, 0.42134, + 35, 58.94, -74.33, 0.23503, 34, -82.54, 137.6, 0.05933, 33, 4.26, 123.78, 0.28414, 6, 49.37, -327.68, 4e-05, 5, 36, 24.88, -98.07, 0.28209, 35, 88.84, -100.95, 0.20996, 34, -44.25, + 125.93, 0.10441, 33, 43.9, 118.14, 0.40351, 6, 18.9, -353.66, 3e-05, 5, 36, 59.84, -125.74, 0.19389, 35, 118.23, -134.47, 0.16207, 34, -3.53, 107.78, 0.1474, 33, 86.92, 106.46, + 0.49663, 6, -18.33, -378.17, 2e-05, 5, 36, 41.89, -136.36, 0.14245, 35, 98.66, -141.68, 0.11524, 34, -18.29, 93.04, 0.19511, 33, 74.61, 89.63, 0.54719, 6, -22.79, -357.8, 1e-05, 4, + 36, 16.05, -146.36, 0.10865, 35, 71.45, -146.85, 0.08101, 34, -40.84, 76.96, 0.28069, 33, 54.79, 70.27, 0.52965, 4, 36, 47.38, -155.03, 0.07532, 35, 100.7, -161.04, 0.05543, 34, + -8.34, 76.31, 0.43397, 33, 87.01, 74.63, 0.43528, 6, 36, 76.81, -188.75, 0.04635, 35, 123.56, -199.51, 0.03163, 34, 28.52, 50.93, 0.63283, 33, 127.33, 55.22, 0.28777, 32, -98.02, + 155.4, 0.00025, 31, 24.4, 174.45, 0.00117, 6, 36, 98.86, -223.61, 0.02255, 35, 138.97, -237.77, 0.01338, 34, 58.52, 22.62, 0.80221, 33, 161.33, 31.86, 0.14762, 32, -56.79, 154.24, + 0.00232, 31, 64.14, 163.38, 0.01193, 6, 36, 111.77, -247.87, 0.00816, 35, 147.3, -263.96, 0.00373, 34, 77.04, 2.32, 0.85962, 33, 182.75, 14.64, 0.06765, 32, -29.45, 151.41, 0.00655, + 31, 89.98, 154.04, 0.0543, 6, 36, 83.69, -264.94, 0.00173, 35, 116.59, -275.69, 0.00053, 34, 54.05, -21.18, 0.77848, 33, 163.65, -12.11, 0.05782, 32, -30.97, 118.57, 0.01489, 31, + 80.59, 122.54, 0.14656, 6, 36, 44.71, -280.5, 0.00017, 35, 75.45, -283.96, 2e-05, 34, 20.14, -45.91, 0.59408, 33, 133.95, -41.75, 0.08713, 32, -39.82, 77.55, 0.04053, 31, 62.11, + 84.86, 0.27806, 5, 36, -1.77, -286.28, 0, 34, -23.46, -63.02, 0.39195, 33, 93.49, -65.37, 0.10627, 32, -60.97, 35.76, 0.1191, 31, 31.5, 49.4, 0.38267, 4, 34, -2.49, -75.09, 0.22677, + 33, 116.07, -74.08, 0.09437, 32, -37.29, 40.7, 0.28025, 31, 55.68, 48.49, 0.3986, 4, 34, 17.72, -104.38, 0.12329, 33, 140.54, -99.9, 0.05726, 32, -2.71, 32.3, 0.49549, 31, 87.21, 32, + 0.32396, 4, 34, 28.14, -138.6, 0.05752, 33, 156.1, -132.11, 0.02344, 32, 27.84, 13.7, 0.66549, 31, 112.38, 6.58, 0.25355, 4, 34, 34.13, -163.97, 0.01679, 33, 165.92, -156.26, + 0.00378, 32, 49.2, -1.25, 0.69251, 31, 129.5, -13.08, 0.28693, 5, 34, 11.17, -169.21, 0.00296, 33, 144.04, -164.98, 0.0002, 32, 35.55, -20.45, 0.54576, 31, 111.63, -28.42, 0.19508, + 6, -259.58, -241.27, 0.256, 1, 6, -241.1, -223.44, 1, 6, 39, -4.3, -1.87, 0.37171, 38, 56.57, -1.27, 0.58035, 37, -116.07, 120.48, 0.0251, 35, -270.49, 161.54, 3e-05, 33, -400.65, + 138.13, 0, 6, 328.19, -33.72, 0.02282, 6, 39, -35.7, -5.65, 0.19097, 38, 25, 0.67, 0.65765, 37, -134.49, 94.76, 0.06461, 35, -274.55, 130.17, 8e-05, 33, -386.68, 109.75, 1e-05, 6, + 297.67, -25.39, 0.08669, 6, 39, -61.6, -10.56, 0.06285, 38, -1.37, 0.51, 0.54355, 37, -148.35, 72.34, 0.16709, 35, -276.16, 103.86, 0.01021, 33, -373.47, 86.93, 0.0001, 6, 271.83, + -20.19, 0.2162, 8, 39, -14.69, -168.7, 0.01908, 38, 16.26, -163.49, 0.14978, 37, -0.01, 0.2, 0.61527, 36, -210.15, 73.74, 0.00099, 35, -111.35, 110.43, 0.17947, 34, -314.5, 234.18, + 0.0001, 33, -239.78, 183.55, 0.01103, 6, 255.74, -184.35, 0.02428, 9, 39, -93.39, -303.94, 0.00273, 38, -85.55, -282.32, 0.00794, 37, 46.63, -149.17, 0.17295, 36, -80.49, -13.87, + 0.09069, 35, 0.38, 0.87, 0.53348, 34, -167.19, 181.41, 0.0007, 33, -86.11, 154.06, 0.17599, 31, -209.57, 198.7, 0.00964, 6, 131.89, -280, 0.00589, 9, 39, -82.85, -345.74, 0, 38, + -82.71, -325.34, 1e-05, 37, 84.59, -169.61, 0.06606, 36, -38.08, -6.16, 0.29214, 35, 43.49, 0.81, 0.56923, 34, -128.01, 199.39, 0.0007, 33, -50.16, 177.84, 0.06931, 31, -183.28, + 232.86, 1e-05, 6, 125.92, -322.69, 0.00255, 6, 37, 121.41, -190.59, 0.01568, 36, 3.79, 0.43, 0.48433, 35, 85.86, -0.26, 0.46641, 34, -89.07, 216.13, 0.00168, 33, -14.26, 200.38, + 0.03097, 6, 119.04, -364.51, 0.00093, 8, 37, -48.48, -297.32, 0.01045, 36, -62.36, -188.99, 0.00705, 35, -13.37, -174.64, 0.16439, 34, -106.26, 16.24, 0.06722, 33, -0.51, 0.22, + 0.56882, 32, -175.52, 39.8, 2e-05, 31, -78.69, 80.95, 0.17693, 6, -40.08, -242.3, 0.00513, 8, 37, -22.4, -348.24, 7e-05, 36, -10.21, -212.51, 0.00369, 35, 33.69, -207.18, 0.06109, + 34, -49.9, 6.36, 0.24734, 33, 56.69, -0.88, 0.62279, 32, -126.89, 69.94, 3e-05, 31, -24.22, 98.47, 0.06334, 6, -78.77, -284.45, 0.00166, 8, 37, 3.17, -392.3, 1e-05, 36, 37.26, + -230.98, 0.00138, 35, 77.05, -233.91, 0.01218, 34, 0.66, 0.22, 0.44222, 33, 107.6, 0.83, 0.53012, 32, -85.06, 99.01, 6e-05, 31, 23.38, 116.6, 0.01341, 6, -111.19, -323.74, 0.00061, + 8, 37, 30.97, -432.79, 0, 36, 84.25, -245.27, 7e-05, 35, 120.69, -256.45, 9e-05, 34, 49.73, -1.99, 0.55124, 33, 156.43, 6.19, 0.44783, 32, -46.97, 130.02, 8e-05, 31, 67.83, 137.51, + 0.00067, 6, -139.5, -363.88, 2e-05, 8, 37, -114.65, -388.2, 0, 36, -57.36, -301.29, 0.00078, 35, -28.7, -286.01, 0.00711, 34, -73.6, -91.33, 9e-05, 33, 48.3, -101.05, 0.14504, 32, + -79.55, -18.74, 0.05299, 31, 0.34, 0.99, 0.53264, 6, -148.29, -211.84, 0.26136, 8, 37, -109.61, -432.07, 0, 36, -26.05, -332.42, 0, 35, -3.51, -322.28, 3e-05, 34, -35.55, -113.74, + 0.00028, 33, 89.34, -117.34, 0.06436, 32, -36.24, -10.14, 0.21729, 31, 44.44, -1.11, 0.59073, 6, -187.67, -231.82, 0.1273, 5, 34, -4.12, -131.88, 0.00399, 33, 123.19, -130.43, + 0.01612, 32, -0.71, -2.76, 0.48554, 31, 80.71, -2.51, 0.49203, 6, -219.89, -248.52, 0.00232, 9, 39, -52.08, -243.65, 0.01004, 38, -34.03, -230.48, 0.05642, 37, 30.05, -77.99, + 0.42744, 36, -137.87, 31.4, 0.02401, 35, -47.89, 55.75, 0.4066, 34, -233.99, 211.07, 0.00035, 33, -156.68, 173.09, 0.06683, 31, -282.49, 193.81, 1e-05, 6, 192.87, -239.71, 0.00829, + 6, 39, -20.79, -85.7, 0.03059, 38, 25.23, -80.76, 0.38793, 37, -65.36, 51.72, 0.42223, 35, -193.29, 124.93, 0.06658, 33, -316.08, 150.32, 0.00032, 6, 281.34, -105.17, 0.09236, 6, 39, + -99.28, 42.3, 0.00186, 38, -28.89, 59.3, 0.04861, 37, -212.78, 80.22, 0.00709, 35, -336.67, 80.34, 1e-05, 33, -410.88, 33.88, 0, 6, 256.83, 42.97, 0.94243, 9, 39, -180.99, -339.34, + 0, 38, -178.09, -301.35, 1e-05, 37, 13.62, -237.69, 0.0659, 36, -51.05, -103.65, 0.02943, 35, 13.15, -92.74, 0.39941, 34, -116.43, 101.72, 0.01499, 33, -23.7, 83.12, 0.42263, 31, + -127.52, 151.84, 0.06301, 6, 37.41, -279.8, 0.00462, 8, 37, -79.94, -353.09, 7e-05, 36, -52.14, -252.2, 0.00366, 35, -14.72, -238.66, 0.06106, 34, -80.7, -42.47, 0.01448, 33, 33.77, + -53.87, 0.42982, 32, -117.37, 12.99, 0.01246, 31, -28.72, 40.91, 0.46119, 6, -103.3, -232.19, 0.01727, 1, 6, -203.31, -218.06, 1, 1, 6, -169.47, -202.13, 1, 1, 6, -153.7, -182.96, 1, + 8, 37, -170.31, -355.07, 1e-05, 36, -121.53, -310.14, 0.00081, 35, -93.41, -283.14, 0.01347, 34, -133.58, -115.79, 0.00319, 33, -7.2, -134.45, 0.0948, 32, -108.03, -76.92, 0.00275, + 31, -41.33, -48.61, 0.10172, 6, -136.57, -148.13, 0.78324 + ], + "hull": 39, + "edges": [ + 0, 2, 2, 4, 4, 6, 6, 8, 8, 10, 14, 16, 16, 18, 18, 20, 20, 22, 22, 24, 24, 26, 34, 36, 36, 38, 38, 40, 40, 42, 42, 44, 44, 46, 46, 48, 48, 50, 50, 52, 52, 54, 54, 56, 56, 58, 58, 60, + 60, 62, 62, 64, 64, 66, 66, 68, 68, 70, 70, 72, 72, 74, 74, 76, 0, 76, 8, 78, 78, 80, 80, 82, 82, 84, 84, 86, 86, 88, 88, 90, 90, 92, 92, 94, 94, 96, 96, 98, 98, 100, 100, 102, 102, + 104, 104, 106, 106, 108, 108, 110, 110, 112, 112, 114, 114, 116, 116, 118, 118, 120, 120, 122, 122, 124, 124, 126, 126, 128, 128, 130, 130, 132, 132, 134, 134, 136, 136, 138, 138, + 140, 140, 142, 142, 144, 144, 146, 146, 148, 148, 150, 150, 152, 152, 154, 154, 156, 156, 158, 158, 160, 26, 28, 28, 30, 160, 28, 84, 162, 162, 164, 164, 166, 108, 168, 170, 172, + 172, 174, 174, 122, 176, 178, 178, 180, 180, 182, 184, 186, 186, 188, 188, 156, 170, 190, 190, 168, 168, 192, 192, 166, 166, 194, 10, 12, 194, 12, 170, 196, 196, 176, 176, 198, 198, + 184, 12, 14, 30, 32, 32, 34, 160, 32, 160, 200, 200, 202, 24, 204, 204, 184, 202, 204, 204, 206, 206, 22 + ], + "width": 698.8235294117648, + "height": 524.7058823529412, + "path": "body-mystic-fuzzy.body-mfuzzy", + "x": 0.08823529411762365, + "y": 1.1470588235293917 + } + }, + "leg-back-left": { + "mystic-leg-back-left": {"x": 32.56, "y": -0.18235294117647105, "rotation": 83.45, "width": 80.0, "height": 91.76470588235294, "path": "body-normal.mystic-leg-back-left"}, + "mystic-leg-back-left-long": {"x": 35.037058823529414, "y": -4.5, "rotation": 221.45, "width": 84.70588235294117, "height": 80.0, "path": "body-normal.mystic-leg-back-left-long"}, + "mystic-leg-back-left-stretch": { + "x": 27.84882352941176, "y": 2.462352941176471, "rotation": 54.45, "width": 65.88235294117648, "height": 68.23529411764706, "path": "body-normal.mystic-leg-back-left-stretch" + } + }, + "leg-front-left": { + "mystic-leg-front-left": { + "x": 22.86235294117647, "y": 2.091764705882351, "rotation": 97.51, "width": 68.23529411764706, "height": 61.1764705882353, "path": "body-normal.mystic-leg-front-left" + }, + "mystic-leg-front-left-long": { + "x": 28.450588235294116, "y": -5.187058823529413, "rotation": -173.75, "width": 87.05882352941177, "height": 75.29411764705883, "path": "body-normal.mystic-leg-front-left-long" + }, + "mystic-leg-front-left-stretch": { + "x": 20.12235294117647, "y": -3.107058823529413, "rotation": 142.15, "width": 68.23529411764706, "height": 75.29411764705883, "path": "body-normal.mystic-leg-front-left-stretch" + } + }, + "leg-front-right": { + "mystic-leg-front-right": {"x": 31.35, "y": -0.5423529411764709, "rotation": 87.96, "width": 80.0, "height": 91.76470588235294, "path": "body-normal.mystic-leg-front-right"}, + "mystic-leg-front-right-long": { + "x": 37.53058823529412, "y": 0.20294117647058696, "rotation": 205.96, "width": 87.05882352941177, "height": 75.29411764705883, "path": "body-normal.mystic-leg-front-right-long" + }, + "mystic-leg-front-right-stretch": { + "x": 31.15, "y": 2.192352941176471, "rotation": 142.01, "width": 80.0, "height": 68.23529411764706, "path": "body-normal.mystic-leg-front-right-stretch" + } + }, + "shadow": {"shadow": {"width": 945.8823529411765, "height": 190.58823529411765, "path": "body-mystic-fuzzy.shadow", "x": 0.05882352941176805, "y": 0.20588235294117396}}, + "body-air": { + "body-air1a_00": {"x": 1.37, "y": 35.21, "width": 209.41176470588235, "height": 129.41176470588235, "path": "body-accessory.body-air1a_00"}, + "body-air1a_01": {"x": 1.37, "y": 35.21, "width": 209.41176470588235, "height": 129.41176470588235, "path": "body-accessory.body-air1a_01"}, + "body-air1a_02": {"x": 1.37, "y": 35.21, "width": 209.41176470588235, "height": 129.41176470588235, "path": "body-accessory.body-air1a_02"}, + "body-air1a_03": {"x": 1.37, "y": 35.21, "width": 209.41176470588235, "height": 129.41176470588235, "path": "body-accessory.body-air1a_03"}, + "body-air1a_04": {"x": 1.37, "y": 35.21, "width": 209.41176470588235, "height": 129.41176470588235, "path": "body-accessory.body-air1a_04"}, + "body-air1a_05": {"x": 1.37, "y": 35.21, "width": 209.41176470588235, "height": 129.41176470588235, "path": "body-accessory.body-air1a_05"}, + "body-air1a_06": {"x": 1.37, "y": 35.21, "width": 209.41176470588235, "height": 129.41176470588235, "path": "body-accessory.body-air1a_06"}, + "body-air1a_07": {"x": 1.37, "y": 35.21, "width": 209.41176470588235, "height": 129.41176470588235, "path": "body-accessory.body-air1a_07"}, + "body-air1b_00": {"x": 1.37, "y": 35.21, "width": 155.29411764705884, "height": 192.94117647058823, "path": "body-accessory.body-air1b_00"}, + "body-air1b_01": {"x": 1.37, "y": 35.21, "width": 155.29411764705884, "height": 192.94117647058823, "path": "body-accessory.body-air1b_01"}, + "body-air1b_02": {"x": 1.37, "y": 35.21, "width": 155.29411764705884, "height": 192.94117647058823, "path": "body-accessory.body-air1b_02"}, + "body-air1c_00": {"x": 1.37, "y": 35.21, "width": 200.0, "height": 289.4117647058824, "path": "body-accessory.body-air1c_00"}, + "body-air1c_01": {"x": 1.37, "y": 35.21, "width": 200.0, "height": 289.4117647058824, "path": "body-accessory.body-air1c_01"}, + "body-air1c_02": {"x": 1.37, "y": 35.21, "width": 200.0, "height": 289.4117647058824, "path": "body-accessory.body-air1c_02"}, + "body-air1c_03": {"x": 1.37, "y": 35.21, "width": 200.0, "height": 289.4117647058824, "path": "body-accessory.body-air1c_03"}, + "body-air1d_00": {"x": 1.37, "y": 35.21, "width": 204.7058823529412, "height": 272.94117647058823, "path": "body-accessory.body-air1d_00"}, + "body-air1d_01": {"x": 1.37, "y": 35.21, "width": 204.7058823529412, "height": 272.94117647058823, "path": "body-accessory.body-air1d_01"}, + "body-air1d_02": {"x": 1.37, "y": 35.21, "width": 204.7058823529412, "height": 272.94117647058823, "path": "body-accessory.body-air1d_02"}, + "body-air1d_03": {"x": 1.37, "y": 35.21, "width": 204.7058823529412, "height": 272.94117647058823, "path": "body-accessory.body-air1d_03"} + }, + "body-cheek": { + "body-cheek1a": {"x": 1.52, "y": 3.04, "width": 58.82352941176471, "height": 58.82352941176471, "path": "body-accessory.body-cheek1a"}, + "body-cheek1b": {"x": 1.52, "y": 3.04, "width": 49.411764705882355, "height": 77.64705882352942, "path": "body-accessory.body-cheek1b"}, + "body-cheek1c": {"x": 1.52, "y": 3.04, "width": 49.411764705882355, "height": 77.64705882352942, "path": "body-accessory.body-cheek1c"}, + "body-cheek1d": {"x": 1.52, "y": 3.04, "width": 49.411764705882355, "height": 75.29411764705883, "path": "body-accessory.body-cheek1d"}, + "body-cheek1e": {"x": 1.52, "y": 3.04, "width": 54.11764705882353, "height": 80.0, "path": "body-accessory.body-cheek1e"}, + "body-cheek1f": {"x": 1.52, "y": 3.04, "width": 56.470588235294116, "height": 58.82352941176471, "path": "body-accessory.body-cheek1f"}, + "body-cheek1g": {"x": 1.52, "y": 3.04, "width": 103.52941176470588, "height": 96.47058823529412, "path": "body-accessory.body-cheek1g"} + }, + "body-ground": { + "body-ground1a_00": {"x": 4.75, "y": 123.01, "width": 254.11764705882354, "height": 272.94117647058823, "path": "body-accessory.body-ground1a_00"}, + "body-ground1a_01": {"x": 4.75, "y": 123.01, "width": 254.11764705882354, "height": 272.94117647058823, "path": "body-accessory.body-ground1a_01"}, + "body-ground1a_02": {"x": 4.75, "y": 123.01, "width": 254.11764705882354, "height": 272.94117647058823, "path": "body-accessory.body-ground1a_02"}, + "body-ground1a_03": {"x": 4.75, "y": 123.01, "width": 254.11764705882354, "height": 272.94117647058823, "path": "body-accessory.body-ground1a_03"} + }, + "body-hip": { + "body-hip1a": {"x": -16.0, "width": 108.23529411764706, "height": 138.8235294117647, "path": "body-accessory.body-hip1a", "y": 0.0}, + "body-hip1b": {"x": -16.0, "width": 209.41176470588235, "height": 214.11764705882354, "path": "body-accessory.body-hip1b", "y": 0.0}, + "body-hip1c": {"x": -16.0, "width": 122.3529411764706, "height": 157.64705882352942, "path": "body-accessory.body-hip1c", "y": 0.0}, + "body-hip1d": {"x": -16.0, "width": 202.35294117647058, "height": 143.52941176470588, "path": "body-accessory.body-hip1d", "y": 0.0} + }, + "body-neck": { + "body-neck1a": {"x": -5.4, "y": -54.79, "width": 91.76470588235294, "height": 96.47058823529412, "path": "body-accessory.body-neck1a"}, + "body-neck1b": {"x": -5.4, "y": -54.79, "width": 103.52941176470588, "height": 117.64705882352942, "path": "body-accessory.body-neck1b"}, + "body-neck1c": {"x": -5.4, "y": -54.79, "width": 80.0, "height": 110.58823529411765, "path": "body-accessory.body-neck1c"}, + "body-neck1d": {"x": -5.4, "y": -54.79, "width": 122.3529411764706, "height": 101.17647058823529, "path": "body-accessory.body-neck1d"}, + "body-neck1e": {"x": -5.4, "y": -54.79, "width": 89.41176470588236, "height": 105.88235294117648, "path": "body-accessory.body-neck1e"}, + "body-neck1f": {"x": -5.4, "y": -54.79, "width": 80.0, "height": 80.0, "path": "body-accessory.body-neck1f"} + } + } + } + ], + "events": {"hit": {}, "hit-buff": {}, "jump": {}, "start-attack": {}}, + "keyAnimations": { + "activity/appear": "1639814451", + "activity/bath": "886720603", + "attack/ranged/cast-fly": "3043664647", + "attack/ranged/cast-high": "117147712", + "attack/ranged/cast-low": "66525173", + "attack/ranged/cast-multi": "229216978", + "attack/ranged/cast-tail": "3667073362", + "activity/eat-bite": "3200295228", + "activity/eat-chew": "447085734", + "activity/entrance": "629069415", + "defense/evade": "2561112030", + "activity/evolve": "3241199930", + "battle/get-buff": "922484181", + "battle/get-debuff": "2134002589", + "defense/hit-by-normal": "3772948066", + "defense/hit-by-normal-crit": "3973892445", + "defense/hit-by-normal-dramatic": "3475359579", + "defense/hit-by-ranged-attack": "710052842", + "defense/hit-with-shield": "1910291818", + "attack/melee/horn-gore": "431191473", + "attack/melee/mouth-bite": "2133555169", + "action/move-back": "1829044875", + "action/move-forward": "2128743770", + "attack/melee/multi-attack": "2770379418", + "action/mix/mystic-light-battle": "3979179032", + "action/mix/mystic-light-normal": "1566344788", + "action/idle/normal": "520076436", + "attack/melee/normal-attack": "1326541922", + "activity/prepare": "3156742502", + "action/idle/random-01": "2112863967", + "action/idle/random-02": "2668998474", + "action/idle/random-03": "863131580", + "action/idle/random-04": "3268849333", + "action/idle/random-05": "423222795", + "action/run": "574696387", + "draft/run-origin": "2432345616", + "attack/melee/shrimp": "4155075159", + "activity/sleep": "2980573062", + "attack/melee/tail-multi-slap": "4076098330", + "attack/melee/tail-roll": "1934032146", + "attack/melee/tail-smash": "1747338625", + "attack/melee/tail-thrash": "882476411", + "activity/victory-pose-back-flip": "2870186096" + } + }, + "summer-as": { + "bones": [ + {"name": "@root"}, {"name": "@pivot-main", "parent": "@root"}, {"name": "@pivot-back", "parent": "@pivot-main", "x": 205, "y": 180, "color": "ff0101ff"}, + {"name": "@pivot-center", "parent": "@pivot-back", "x": -215.11, "y": -5.25, "color": "ff0101ff"}, + {"name": "@axie", "parent": "@pivot-center", "length": 213.28, "rotation": 179.04, "x": 196.39, "y": 5.16}, {"name": "@back", "parent": "@axie", "rotation": -179.04, "x": 37.63, "y": -198.19}, + {"name": "back", "parent": "@back", "length": 149.41, "rotation": 58, "x": -13.97, "y": 26.3, "transform": "noScale"}, + {"name": "@body", "parent": "@axie", "length": 226.28, "rotation": -8.35, "x": 224.58, "y": -0.53}, {"name": "@ear-left", "parent": "@axie", "rotation": -179.04, "x": 112.7, "y": -203.23}, + {"name": "ear-left", "parent": "@ear-left", "length": 113.61, "rotation": 90, "x": -27, "y": 19, "transform": "noScale"}, + {"name": "@ear-right", "parent": "@axie", "rotation": -179.04, "x": 405.28, "y": -235.33}, + {"name": "ear-right", "parent": "@ear-right", "length": 119.39, "rotation": 93, "x": -30, "y": -15, "transform": "noScale"}, + {"name": "@eyes", "parent": "@axie", "rotation": -179.04, "x": 384.24, "y": -113.67}, {"name": "@horn", "parent": "@axie", "rotation": -179.04, "x": 327.92, "y": -214.63}, + {"name": "horn", "parent": "@horn", "length": 176.72, "rotation": 90, "y": 18, "transform": "noScale"}, + {"name": "@leg-back-left", "parent": "@axie", "length": 76.4, "rotation": 100.96, "x": -15.3, "y": 102.56, "transform": "noScale"}, + {"name": "@leg-front-left", "parent": "@axie", "length": 51.19, "rotation": 93.86, "x": 134.77, "y": 149.55, "transform": "noScale"}, + {"name": "@leg-front-right", "parent": "@axie", "length": 74.83, "rotation": 83.2, "x": 382.95, "y": 121.78, "transform": "noScale"}, + {"name": "@mouth", "parent": "@axie", "rotation": -179.04, "x": 382.23, "y": 6.31, "color": "abe323ff"}, + {"name": "body-pattern", "parent": "@body", "rotation": -170.69, "x": -267.21, "y": -49.4, "transform": "noScale"}, {"name": "@shadow", "parent": "@root", "color": "e6d713ff"}, + {"name": "@tail", "parent": "@axie", "rotation": -179.04, "x": -11.76, "y": 61.72}, + {"name": "tail", "parent": "@tail", "length": 203.67, "rotation": -12, "x": 16, "y": 72.87, "transform": "noScale"}, + {"name": "leg-front-right-IK", "parent": "@pivot-main", "x": -195.99, "y": -10.21, "color": "ff3f00ff"}, + {"name": "leg-front-left-IK", "parent": "@pivot-main", "x": 42.3, "y": -18.42, "color": "ff3f00ff"}, + {"name": "leg-back-left-IK", "parent": "@pivot-main", "x": 208.57, "y": 1.35, "color": "ff3f00ff"}, {"name": "@ball", "parent": "@root", "y": 191, "color": "f3981bff"}, + {"name": "ball", "parent": "@ball", "y": -191, "color": "f4a729ff"}, {"name": "mouth-bubble", "parent": "@mouth", "x": -191.16, "y": -1.83}, + {"name": "mouth-accessory", "parent": "mouth-bubble", "x": -67.84, "y": 101.83}, {"name": "eyes-happy-accessory", "parent": "@eyes", "x": 142.51, "y": 62.21}, + {"name": "ear-right-bubble", "parent": "ear-right", "length": 40.07, "rotation": -179.99, "x": 184.94, "y": -20.48}, + {"name": "ear-left-bubble", "parent": "ear-left", "length": 48.54, "rotation": 176.27, "x": 190.98, "y": -21.07, "scaleX": 0.949}, + {"name": "ear-left-all-bubble", "parent": "ear-left", "length": 26.1, "rotation": 0.95, "x": -6.64, "y": -27.7, "color": "3002ffff"}, + {"name": "ear-right-dot-01", "parent": "ear-left-all-bubble", "rotation": -90.95, "x": -13.64, "y": 22.67, "scaleX": 0.3508, "scaleY": 0.3508, "color": "2f9bffff"}, + {"name": "ear-left-dot-01", "parent": "ear-left-all-bubble", "rotation": -90.95, "x": -28.82, "y": -24.72, "scaleX": 0.7755, "scaleY": 0.7755, "color": "2f9bffff"}, + {"name": "ear-right-bubble-02", "parent": "ear-right-bubble", "rotation": 86.99, "x": 63.76, "y": -22.96}, + {"name": "ear-right-bubble-03", "parent": "ear-right-bubble", "rotation": 86.99, "x": 64.99, "y": -1.59}, + {"name": "ear-right-bubble-04", "parent": "ear-right-bubble", "rotation": 86.99, "x": 66.12, "y": 19.85}, + {"name": "ear-left-bubble-02", "parent": "ear-left-bubble", "rotation": 93.73, "x": 68.81, "y": -22.89}, + {"name": "ear-left-bubble-03", "parent": "ear-left-bubble", "rotation": 93.73, "x": 70.45, "y": -0.4}, + {"name": "ear-left-bubble-04", "parent": "ear-left-bubble", "rotation": 93.73, "x": 65.87, "y": 22.28}, + {"name": "ear-right-bubble-05", "parent": "ear-right", "length": 40.07, "rotation": -179.99, "x": 184.94, "y": -20.48}, + {"name": "ear-right-bubble-06", "parent": "ear-right-bubble-05", "rotation": 86.99, "x": 63.76, "y": -22.96}, + {"name": "ear-right-bubble-07", "parent": "ear-right-bubble-05", "rotation": 86.99, "x": 64.99, "y": -1.59}, + {"name": "ear-right-bubble-08", "parent": "ear-right-bubble-05", "rotation": 86.99, "x": 66.12, "y": 19.85}, + {"name": "ear-left-bubble-05", "parent": "ear-left", "length": 48.54, "rotation": 176.27, "x": 190.98, "y": -21.07, "scaleX": 0.991}, + {"name": "ear-left-bubble-06", "parent": "ear-left-bubble-05", "rotation": 93.73, "x": 67.27, "y": -22.98}, + {"name": "ear-left-bubble-07", "parent": "ear-left-bubble-05", "rotation": 93.73, "x": 65.82, "y": -0.69}, + {"name": "ear-left-bubble-08", "parent": "ear-left-bubble-05", "rotation": 93.73, "x": 64.32, "y": 22.18}, + {"name": "ear-right-dot-02", "parent": "ear-left-all-bubble", "rotation": -95.73, "x": -18.26, "y": -8.1, "scaleX": 0.5668, "scaleY": 0.6813, "color": "2f9bffff"}, + {"name": "ear-left-dot-02", "parent": "ear-left-all-bubble", "rotation": -88.74, "x": 8.57, "y": 59.72, "scaleX": 0.6577, "scaleY": 0.5996, "color": "2f9bffff"}, + {"name": "ear-right-dot-03", "parent": "ear-left-all-bubble", "rotation": -87.96, "x": -25.76, "y": -45.18, "scaleX": 0.2583, "scaleY": 0.2881, "color": "2f9bffff"}, + {"name": "ear-right-dot-04", "parent": "ear-left-all-bubble", "rotation": -88.51, "x": -27.05, "y": -31.17, "scaleX": 0.4361, "scaleY": 0.6365, "color": "2f9bffff"}, + {"name": "ear-right-dot-05", "parent": "ear-left-all-bubble", "rotation": -79.32, "x": -5.28, "y": 34.53, "scaleX": 0.5911, "scaleY": 0.8949, "color": "2f9bffff"}, + {"name": "ear-left-dot-03", "parent": "ear-left-all-bubble", "rotation": -90.95, "x": -10.57, "y": 11.72, "scaleX": 0.8206, "scaleY": 0.8206, "color": "2f9bffff"}, + {"name": "ear-left-dot-04", "parent": "ear-left-all-bubble", "rotation": -90.95, "x": 11.94, "y": 65.23, "scaleX": 0.7096, "scaleY": 0.7096, "color": "2f9bffff"}, + {"name": "ear-left-dot-05", "parent": "ear-left-all-bubble", "rotation": -88.35, "x": 10.11, "y": 68.29, "scaleX": 0.4014, "scaleY": 0.366, "color": "2f9bffff"}, + {"name": "ear-left-dot-06", "parent": "ear-left-all-bubble", "rotation": -90.95, "x": 34.65, "y": 74.95, "scaleX": 0.8206, "scaleY": 0.8206, "color": "2f9bffff"}, + {"name": "ear-right-dot-06", "parent": "ear-left-all-bubble", "rotation": -90.95, "x": -11.77, "y": 50.86, "scaleX": 0.4361, "scaleY": 0.4361, "color": "2f9bffff"}, + {"name": "ear-right-dot-07", "parent": "ear-left-all-bubble", "rotation": -96.07, "x": -32.28, "y": -4.86, "scaleX": 0.5668, "scaleY": 0.6813, "color": "2f9bffff"}, + {"name": "ear-right-dot-08", "parent": "ear-left-all-bubble", "rotation": -90.23, "x": -18.31, "y": -61.25, "scaleX": 0.7405, "scaleY": 0.826, "color": "2f9bffff"}, + {"name": "ear-right-dot-09", "parent": "ear-left-all-bubble", "rotation": -93.53, "x": -9.54, "y": 52.15, "scaleX": 0.2863, "scaleY": 0.3229, "color": "2f9bffff"}, + {"name": "ear-right-dot-10", "parent": "ear-left-all-bubble", "rotation": -81.97, "x": -31.43, "y": 21.83, "scaleX": 0.5911, "scaleY": 0.8949, "color": "2f9bffff"}, + {"name": "ear-right-all-bubble", "parent": "ear-right", "length": 26.1, "rotation": 3.44, "x": -10.08, "y": -8.05, "color": "3002ffff"}, + {"name": "ear-right-dot-11", "parent": "ear-right-all-bubble", "rotation": -96.44, "x": 10.27, "y": -24.86, "scaleX": 0.3508, "scaleY": 0.3508, "color": "2f9bffff"}, + {"name": "ear-left-dot-07", "parent": "ear-right-all-bubble", "rotation": -96.44, "x": 27.18, "y": -39.33, "scaleX": 0.7755, "scaleY": 0.7755, "color": "2f9bffff"}, + {"name": "ear-right-dot-12", "parent": "ear-right-all-bubble", "rotation": -101.56, "x": -18.26, "y": -8.1, "scaleX": 0.5668, "scaleY": 0.6813, "color": "2f9bffff"}, + {"name": "ear-left-dot-08", "parent": "ear-right-all-bubble", "rotation": -93.99, "x": -7.49, "y": -14.12, "scaleX": 0.6577, "scaleY": 0.5996, "color": "2f9bffff"}, + {"name": "ear-right-dot-13", "parent": "ear-right-all-bubble", "rotation": -93.67, "x": 43.59, "y": -57.74, "scaleX": 0.2583, "scaleY": 0.2881, "color": "2f9bffff"}, + {"name": "ear-right-dot-14", "parent": "ear-right-all-bubble", "rotation": -96.49, "x": 8.09, "y": -20.73, "scaleX": 0.4361, "scaleY": 0.6365, "color": "2f9bffff"}, + {"name": "ear-right-dot-15", "parent": "ear-right-all-bubble", "rotation": -84.65, "x": -5.28, "y": 34.53, "scaleX": 0.5911, "scaleY": 0.8949, "color": "2f9bffff"}, + {"name": "ear-left-dot-09", "parent": "ear-right-all-bubble", "rotation": -96.44, "x": -10.57, "y": 11.72, "scaleX": 0.8206, "scaleY": 0.8206, "color": "2f9bffff"}, + {"name": "ear-left-dot-10", "parent": "ear-right-all-bubble", "rotation": -96.44, "x": -13.81, "y": 2.57, "scaleX": 0.7096, "scaleY": 0.7096, "color": "2f9bffff"}, + {"name": "ear-left-dot-11", "parent": "ear-right-all-bubble", "rotation": -93.79, "x": -9.28, "y": 21.87, "scaleX": 0.4014, "scaleY": 0.366, "color": "2f9bffff"}, + {"name": "ear-left-dot-12", "parent": "ear-right-all-bubble", "rotation": -96.44, "x": -2.52, "y": 33.38, "scaleX": 0.8206, "scaleY": 0.8206, "color": "2f9bffff"}, + {"name": "ear-right-dot-16", "parent": "ear-right-all-bubble", "rotation": -96.44, "x": -4.07, "y": -34.4, "scaleX": 0.4361, "scaleY": 0.4361, "color": "2f9bffff"}, + {"name": "ear-right-dot-17", "parent": "ear-right-all-bubble", "rotation": -101.7, "x": 4.16, "y": -7.75, "scaleX": 0.5668, "scaleY": 0.6813, "color": "2f9bffff"}, + {"name": "ear-right-dot-18", "parent": "ear-right-all-bubble", "rotation": -96.34, "x": 27.4, "y": -55.17, "scaleX": 0.7405, "scaleY": 0.826, "color": "2f9bffff"}, + {"name": "ear-right-dot-19", "parent": "ear-right-all-bubble", "rotation": -99.41, "x": -9.54, "y": 52.15, "scaleX": 0.2863, "scaleY": 0.3229, "color": "2f9bffff"}, + {"name": "ear-right-dot-20", "parent": "ear-right-all-bubble", "rotation": -86.28, "x": 12.43, "y": -37.05, "scaleX": 0.5911, "scaleY": 0.8949, "color": "2f9bffff"}, + {"name": "mouth-bubble-core", "parent": "mouth-accessory"}, {"name": "eyes-light-left", "parent": "@eyes", "length": 15.08, "rotation": -135.48, "x": 69.15, "y": -15.18}, + {"name": "eyes-light-right", "parent": "@eyes", "length": 15.08, "rotation": -135.48, "x": -97.9, "y": -16.49}, {"name": "eyes-light-dot", "parent": "@eyes", "x": -66.73, "y": 27.82}, + {"name": "eyes-light-dot-02", "parent": "@eyes", "x": 103.19, "y": 27.82} + ], + "slots": [ + {"name": "shadow", "bone": "@shadow", "attachment": "shadow"}, {"name": "ball", "bone": "ball"}, + {"name": "leg-front-right", "bone": "@leg-front-right", "attachment": "summer-leg-front-right"}, {"name": "tail", "bone": "tail", "attachment": "tail"}, + {"name": "back", "bone": "back", "attachment": "back"}, {"name": "leg-back-left", "bone": "@leg-back-left", "attachment": "summer-leg-back-left"}, + {"name": "body", "bone": "@body", "attachment": "body"}, {"name": "body-pattern", "bone": "body-pattern"}, {"name": "ear-right-under", "bone": "ear-right", "attachment": "ear-right-under"}, + {"name": "ear-left-dot-07", "bone": "ear-left-dot-07", "color": "ffffff00", "attachment": "ear-left-dot"}, + {"name": "ear-left-dot-10", "bone": "ear-left-dot-10", "color": "ffffff00", "attachment": "ear-left-dot"}, + {"name": "ear-left-dot-09", "bone": "ear-left-dot-09", "color": "ffffff00", "attachment": "ear-left-dot"}, + {"name": "ear-left-dot-12", "bone": "ear-left-dot-12", "color": "ffffff00", "attachment": "ear-left-dot"}, + {"name": "ear-left-dot-08", "bone": "ear-left-dot-08", "color": "ffffff00", "attachment": "ear-left-dot"}, + {"name": "ear-left-dot-11", "bone": "ear-left-dot-11", "color": "ffffff00", "attachment": "ear-left-dot"}, + {"name": "ear-right-dot-11", "bone": "ear-right-dot-11", "color": "ffffff00", "attachment": "ear-right-dot"}, + {"name": "ear-right-dot-16", "bone": "ear-right-dot-16", "color": "ffffff00", "attachment": "ear-right-dot"}, + {"name": "ear-right-dot-12", "bone": "ear-right-dot-12", "color": "ffffff00", "attachment": "ear-right-dot"}, + {"name": "ear-right-dot-17", "bone": "ear-right-dot-17", "color": "ffffff00", "attachment": "ear-right-dot"}, + {"name": "ear-right-dot-13", "bone": "ear-right-dot-13", "color": "ffffff00", "attachment": "ear-right-dot"}, + {"name": "ear-right-dot-18", "bone": "ear-right-dot-18", "color": "ffffff00", "attachment": "ear-right-dot"}, + {"name": "ear-right-dot-14", "bone": "ear-right-dot-14", "color": "ffffff00", "attachment": "ear-right-dot"}, + {"name": "ear-right-dot-19", "bone": "ear-right-dot-19", "color": "ffffff00", "attachment": "ear-right-dot"}, + {"name": "ear-right-dot-15", "bone": "ear-right-dot-15", "color": "ffffff00", "attachment": "ear-right-dot"}, + {"name": "ear-right-dot-20", "bone": "ear-right-dot-20", "color": "ffffff00", "attachment": "ear-right-dot"}, + {"name": "ear-right-bubble", "bone": "ear-right-bubble", "color": "00f7c2ff", "attachment": "ear-right-bubble"}, + {"name": "ear-right-bubble-02", "bone": "ear-right-bubble-05", "attachment": "ear-right-bubble"}, {"name": "ear-right-upper", "bone": "ear-right", "attachment": "ear-right-upper"}, + {"name": "leg-front-left", "bone": "@leg-front-left", "attachment": "summer-leg-front-left"}, {"name": "eyes", "bone": "@eyes", "attachment": "eyes"}, + {"name": "eyes-light-dot", "bone": "eyes-light-dot", "attachment": "eye-light-dot"}, {"name": "eyes-light-dot-02", "bone": "eyes-light-dot-02", "attachment": "eye-light-dot"}, + {"name": "eyes-light-left", "bone": "eyes-light-left", "color": "fff96500", "attachment": "light", "blend": "additive"}, + {"name": "eyes-light-right", "bone": "eyes-light-right", "color": "fff96500", "attachment": "light", "blend": "additive"}, {"name": "eyes-upper", "bone": "@eyes", "attachment": "eyes-upper"}, + {"name": "mouth", "bone": "@mouth", "attachment": "mouth"}, {"name": "horn", "bone": "horn", "attachment": "horn"}, + {"name": "ear-left-under", "bone": "ear-left", "attachment": "ear-left-under"}, {"name": "ear-left-dot-01", "bone": "ear-left-dot-01", "color": "ffffff00", "attachment": "ear-left-dot"}, + {"name": "ear-left-dot-04", "bone": "ear-left-dot-04", "color": "ffffff00", "attachment": "ear-left-dot"}, + {"name": "ear-left-dot-03", "bone": "ear-left-dot-03", "color": "ffffff00", "attachment": "ear-left-dot"}, + {"name": "ear-left-dot-06", "bone": "ear-left-dot-06", "color": "ffffff00", "attachment": "ear-left-dot"}, + {"name": "ear-left-dot-02", "bone": "ear-left-dot-02", "color": "ffffff00", "attachment": "ear-left-dot"}, + {"name": "ear-left-dot-05", "bone": "ear-left-dot-05", "color": "ffffff00", "attachment": "ear-left-dot"}, + {"name": "ear-right-dot-01", "bone": "ear-right-dot-01", "color": "ffffff00", "attachment": "ear-right-dot"}, + {"name": "ear-right-dot-06", "bone": "ear-right-dot-06", "color": "ffffff00", "attachment": "ear-right-dot"}, + {"name": "ear-right-dot-02", "bone": "ear-right-dot-02", "color": "ffffff00", "attachment": "ear-right-dot"}, + {"name": "ear-right-dot-07", "bone": "ear-right-dot-07", "color": "ffffff00", "attachment": "ear-right-dot"}, + {"name": "ear-right-dot-03", "bone": "ear-right-dot-03", "color": "ffffff00", "attachment": "ear-right-dot"}, + {"name": "ear-right-dot-08", "bone": "ear-right-dot-08", "color": "ffffff00", "attachment": "ear-right-dot"}, + {"name": "ear-right-dot-04", "bone": "ear-right-dot-04", "color": "ffffff00", "attachment": "ear-right-dot"}, + {"name": "ear-right-dot-09", "bone": "ear-right-dot-09", "color": "ffffff00", "attachment": "ear-right-dot"}, + {"name": "ear-right-dot-05", "bone": "ear-right-dot-05", "color": "ffffff00", "attachment": "ear-right-dot"}, + {"name": "ear-right-dot-10", "bone": "ear-right-dot-10", "color": "ffffff00", "attachment": "ear-right-dot"}, + {"name": "ear-left-bubble", "bone": "ear-left-bubble", "color": "00f7c2ff", "attachment": "ear-left-bubble"}, + {"name": "ear-left-bubble-02", "bone": "ear-left-bubble-05", "attachment": "ear-left-bubble"}, {"name": "ear-left-upper", "bone": "ear-left", "attachment": "ear-left-upper"}, + {"name": "eyes-happy-accessory", "bone": "eyes-happy-accessory", "color": "ffffff00", "attachment": "eyes-happy-accessory", "blend": "additive"}, + {"name": "mouth-accessory", "bone": "mouth-accessory", "color": "ffffff00", "attachment": "mouth-accessory"} + ], + "ik": [ + {"name": "leg-back-left-IK", "order": 3, "bones": ["@leg-back-left"], "target": "leg-back-left-IK"}, + {"name": "leg-front-left-IK", "order": 2, "bones": ["@leg-front-left"], "target": "leg-front-left-IK"}, + {"name": "leg-front-right-IK", "bones": ["@leg-front-right"], "target": "leg-front-right-IK"} + ], + "transform": [{"name": "@mouth", "order": 1, "bones": ["mouth-bubble"], "target": "@mouth", "x": -49.1, "y": 37.9, "rotateMix": 0, "translateMix": 0, "scaleMix": 0, "shearMix": 0}], + "skins": [ + { + "name": "default", + "attachments": { + "back": {"back": {"x": 110.08705882352942, "y": 18.573529411764696, "rotation": -58, "width": 284.70588235294116, "height": 362.3529411764706, "path": "summer-as.back"}}, + "ear-left-bubble": { + "ear-left-bubble": { + "type": "mesh", + "uvs": [ + 0.87714, 0.57697, 0.91393, 0.67811, 0.94364, 0.75977, 0.96133, 0.8176, 0.97838, 0.87333, 1, 0.94398, 0.93104, 0.94427, 0.90524, 0.94438, 0.88494, 0.94447, 0.85255, 0.94461, 0.82176, + 0.94474, 0.79396, 0.94486, 0.76382, 0.94499, 0.73767, 0.9451, 0.70713, 0.94523, 0.67579, 0.94536, 0.64108, 0.94551, 0.61244, 0.94564, 0.5758, 0.94579, 0.5367, 0.94596, 0.50394, + 0.9461, 0.47091, 0.94624, 0.435, 0.94639, 0.39675, 0.94656, 0.36198, 0.94671, 0.32916, 0.94685, 0.29359, 0.947, 0.25022, 0.94718, 0.20956, 0.94736, 0.17261, 0.94751, 0.12749, + 0.94771, 0.1012, 0.94782, 0.07834, 0.94792, 0.0457, 0.94806, 0.02123, 0.94816, 0, 0.94825, 0, 0.86703, 0, 0.81359, 0, 0.73715, 0.02817, 0.68242, 0.07791, 0.5858, 0.37947, 0, 0.46651, + 0, 0.5261, 0, 0.59994, 0, 0.66726, 0, 0.02864, 0.86721, 0.04805, 0.81379, 0.07275, 0.7389, 0.0999, 0.68207, 0.14259, 0.58508, 0.49108, 0.58123, 0.82646, 0.57753, 0.86109, 0.67837, + 0.88458, 0.75835, 0.90003, 0.81734, 0.91424, 0.87292, 0.48557, 0.6802, 0.48069, 0.74867, 0.47772, 0.81558, 0.4758, 0.87009, 0.29126, 0.58344, 0.25576, 0.68132, 0.23492, 0.74278, + 0.2135, 0.81448, 0.19874, 0.86831, 0.19271, 0.49455, 0.4968, 0.48641, 0.79002, 0.48462, 0.25666, 0.37903, 0.50462, 0.35653, 0.74321, 0.36527, 0.68757, 0.57906, 0.70466, 0.67913, + 0.71716, 0.75434, 0.72541, 0.81661, 0.73109, 0.87174, 0.67152, 0.48534, 0.32349, 0.49105, 0.38378, 0.58242, 0.36974, 0.68076, 0.36036, 0.74579, 0.34895, 0.81504, 0.34148, 0.86923, + 0.20652, 0.58437, 0.16979, 0.68173, 0.1462, 0.74066, 0.12077, 0.81409, 0.10379, 0.8677, 0.59158, 0.58012, 0.59921, 0.67965, 0.60299, 0.7516, 0.60776, 0.81612, 0.60866, 0.87095, + 0.76107, 0.57825, 0.78751, 0.67873, 0.81003, 0.75656, 0.82525, 0.81703, 0.83754, 0.87243, 0.10852, 0.73975, 0.08479, 0.81394, 0.06934, 0.86747, 0.15113, 0.868, 0.1657, 0.81428, + 0.18746, 0.74164, 0.29675, 0.74426, 0.28022, 0.81476, 0.26841, 0.86876, 0.41495, 0.7471, 0.40761, 0.81529, 0.4031, 0.86963, 0.53765, 0.87049, 0.53762, 0.81583, 0.53944, 0.75008, + 0.6595, 0.75296, 0.66217, 0.81635, 0.66857, 0.87134, 0.78397, 0.87208, 0.7758, 0.81682, 0.76492, 0.75548, 0.74852, 0.67892, 0.82675, 0.67854, 0.84222, 0.75734, 0.8595, 0.81717, + 0.87132, 0.87264, 0.01186, 0.9147, 0.056, 0.91293, 0.08943, 0.91297, 0.13846, 0.91074, 0.18465, 0.91102, 0.25824, 0.91262, 0.33507, 0.90958, 0.39978, 0.90977, 0.47313, 0.91161, + 0.53714, 0.91117, 0.61061, 0.90948, 0.67252, 0.91178, 0.73471, 0.91209, 0.78925, 0.91054, 0.84557, 0.91105, 0.87872, 0.91169, 0.92292, 0.90979, 0.21772, 0.91173, 0.11081, 0.912, + 0.02923, 0.91401, 0.29821, 0.91104, 0.36548, 0.90967, 0.43685, 0.9107, 0.50336, 0.9114, 0.57635, 0.91027, 0.64066, 0.9106, 0.70543, 0.91195, 0.76031, 0.91136, 0.81833, 0.9108, + 0.89934, 0.9108 + ], + "triangles": [ + 85, 86, 49, 86, 99, 49, 101, 47, 100, 34, 125, 144, 35, 125, 34, 125, 46, 144, 46, 47, 101, 47, 48, 100, 122, 121, 53, 56, 55, 3, 47, 46, 37, 49, 50, 85, 85, 50, 84, 48, 39, 49, 46, + 36, 37, 38, 39, 48, 49, 40, 50, 39, 40, 49, 5, 6, 4, 55, 54, 2, 55, 2, 3, 95, 94, 52, 54, 1, 2, 121, 52, 53, 53, 0, 1, 53, 52, 0, 113, 57, 90, 108, 80, 57, 62, 61, 80, 80, 79, 57, + 80, 61, 79, 57, 89, 90, 57, 51, 89, 57, 79, 51, 90, 72, 73, 90, 89, 72, 40, 69, 66, 84, 66, 61, 61, 78, 79, 61, 66, 78, 51, 79, 67, 51, 67, 89, 67, 79, 78, 89, 77, 72, 89, 67, 77, + 72, 77, 94, 94, 68, 52, 94, 77, 68, 66, 69, 78, 41, 69, 40, 67, 78, 70, 67, 70, 77, 70, 78, 69, 77, 71, 68, 77, 70, 71, 71, 45, 0, 69, 42, 70, 69, 41, 42, 71, 70, 44, 70, 43, 44, 44, + 45, 71, 71, 0, 68, 70, 42, 43, 52, 68, 0, 54, 53, 1, 56, 3, 4, 50, 40, 66, 50, 66, 84, 47, 37, 38, 48, 47, 38, 125, 36, 46, 35, 36, 125, 48, 49, 99, 121, 95, 52, 122, 53, 54, 144, + 46, 126, 100, 48, 99, 62, 84, 61, 123, 54, 55, 94, 73, 72, 85, 84, 62, 113, 90, 91, 141, 56, 4, 6, 141, 4, 124, 55, 56, 17, 150, 16, 17, 135, 150, 16, 136, 15, 16, 150, 136, 15, 151, + 14, 15, 136, 151, 14, 137, 13, 14, 151, 137, 13, 152, 12, 13, 137, 152, 12, 138, 11, 12, 152, 138, 11, 153, 10, 11, 138, 153, 10, 139, 9, 10, 153, 139, 9, 140, 8, 9, 139, 140, 8, + 154, 7, 8, 140, 154, 7, 141, 6, 7, 154, 141, 152, 137, 76, 137, 151, 76, 76, 151, 116, 150, 116, 136, 151, 136, 116, 154, 140, 124, 152, 117, 138, 152, 76, 117, 153, 98, 139, 140, + 139, 124, 139, 98, 124, 154, 56, 141, 154, 124, 56, 98, 153, 117, 116, 150, 93, 153, 138, 117, 150, 135, 93, 98, 123, 124, 124, 123, 55, 117, 97, 98, 98, 97, 123, 76, 118, 117, 117, + 118, 97, 116, 75, 76, 76, 75, 118, 93, 115, 116, 116, 115, 75, 93, 92, 115, 97, 122, 123, 123, 122, 54, 118, 96, 97, 97, 96, 122, 75, 119, 118, 118, 119, 96, 115, 74, 75, 75, 74, + 119, 92, 114, 115, 115, 114, 74, 92, 91, 114, 96, 121, 122, 119, 95, 96, 96, 95, 121, 74, 120, 119, 119, 120, 95, 114, 73, 74, 74, 73, 120, 73, 114, 90, 114, 91, 90, 120, 73, 94, + 120, 94, 95, 58, 57, 113, 25, 131, 24, 24, 146, 23, 24, 131, 146, 23, 132, 22, 23, 146, 132, 22, 147, 21, 22, 132, 147, 20, 133, 148, 20, 21, 133, 21, 147, 133, 20, 148, 19, 19, 134, + 18, 19, 148, 134, 18, 135, 17, 18, 149, 135, 18, 134, 149, 148, 133, 60, 133, 147, 60, 134, 148, 111, 134, 111, 149, 111, 148, 60, 132, 110, 147, 147, 110, 60, 149, 93, 135, 149, + 111, 93, 132, 146, 110, 131, 83, 146, 146, 83, 110, 111, 92, 93, 60, 59, 111, 59, 112, 111, 111, 112, 92, 110, 109, 60, 60, 109, 59, 83, 82, 110, 110, 82, 109, 92, 112, 91, 112, 113, + 91, 59, 58, 112, 112, 58, 113, 109, 108, 59, 59, 108, 58, 82, 81, 109, 109, 81, 108, 58, 108, 57, 81, 80, 108, 34, 144, 33, 126, 46, 101, 33, 126, 32, 33, 144, 126, 32, 127, 31, 32, + 126, 127, 31, 143, 30, 31, 127, 143, 30, 128, 29, 30, 143, 128, 29, 129, 28, 29, 128, 129, 28, 142, 27, 28, 129, 142, 27, 130, 26, 27, 142, 130, 26, 145, 25, 26, 130, 145, 25, 145, + 131, 126, 101, 127, 127, 88, 143, 127, 101, 88, 130, 107, 145, 130, 142, 107, 143, 88, 128, 129, 65, 142, 142, 65, 107, 131, 145, 83, 128, 102, 129, 129, 102, 65, 128, 88, 102, 83, + 145, 107, 107, 106, 83, 83, 106, 82, 65, 64, 107, 107, 64, 106, 102, 103, 65, 65, 103, 64, 88, 87, 102, 102, 87, 103, 101, 100, 88, 88, 100, 87, 106, 105, 82, 82, 105, 81, 64, 63, + 106, 106, 63, 105, 103, 104, 64, 64, 104, 63, 87, 86, 103, 103, 86, 104, 100, 99, 87, 87, 99, 86, 81, 105, 80, 63, 62, 105, 105, 62, 80, 62, 63, 85, 86, 85, 104, 63, 104, 85 + ], + "vertices": [ + 4, 39, 58.43, 20.31, 0.00012, 40, 36.09, 20.31, 0.00054, 41, 13.17, 20.31, 0.12631, 32, 43.2, 34, 0.87302, 3, 40, 39.33, 12.22, 0.00019, 41, 16.41, 12.22, 0.19743, 32, 51.06, 37.76, + 0.80237, 3, 40, 41.94, 5.69, 6e-05, 41, 19.02, 5.69, 0.26715, 32, 57.41, 40.79, 0.73278, 3, 40, 43.5, 1.06, 1e-05, 41, 20.58, 1.06, 0.33542, 32, 61.92, 42.65, 0.66457, 3, 40, 45, + -3.4, 1e-05, 41, 22.08, -3.4, 0.40033, 32, 66.27, 44.44, 0.59966, 3, 40, 46.9, -9.05, 0, 41, 23.98, -9.05, 0.45012, 32, 71.79, 46.7, 0.54988, 3, 40, 40.83, -9.07, 0, 41, 17.91, + -9.07, 0.5829, 32, 72.21, 40.65, 0.4171, 3, 40, 38.56, -9.08, 4e-05, 41, 15.64, -9.08, 0.72131, 32, 72.37, 38.38, 0.27865, 3, 40, 36.78, -9.09, 0.00031, 41, 13.86, -9.09, 0.8264, 32, + 72.49, 36.6, 0.17329, 3, 40, 33.93, -9.1, 0.00157, 41, 11, -9.1, 0.90359, 32, 72.69, 33.76, 0.09484, 3, 40, 31.22, -9.11, 0.00537, 41, 8.3, -9.11, 0.94975, 32, 72.87, 31.05, 0.04488, + 3, 40, 28.77, -9.12, 0.01601, 41, 5.85, -9.12, 0.96404, 32, 73.04, 28.61, 0.01996, 3, 40, 26.12, -9.13, 0.03803, 41, 3.2, -9.13, 0.95562, 32, 73.22, 25.97, 0.00635, 3, 40, 23.82, + -9.14, 0.08031, 41, 0.9, -9.14, 0.91597, 32, 73.38, 23.67, 0.00372, 4, 39, 43.47, -9.15, 0, 40, 21.13, -9.15, 0.14592, 41, -1.79, -9.15, 0.85165, 32, 73.57, 20.99, 0.00243, 4, 39, + 40.71, -9.16, 2e-05, 40, 18.37, -9.16, 0.23867, 41, -4.55, -9.16, 0.75671, 32, 73.76, 18.24, 0.0046, 4, 39, 37.66, -9.17, 0.00014, 40, 15.32, -9.17, 0.35275, 41, -7.6, -9.17, + 0.64256, 32, 73.97, 15.19, 0.00455, 4, 39, 35.13, -9.18, 0.00092, 40, 12.8, -9.18, 0.48034, 41, -10.13, -9.18, 0.51198, 32, 74.14, 12.68, 0.00676, 4, 39, 31.91, -9.19, 0.00375, 40, + 9.57, -9.19, 0.61095, 41, -13.35, -9.19, 0.38019, 32, 74.36, 9.46, 0.00512, 4, 39, 28.47, -9.21, 0.01298, 40, 6.13, -9.21, 0.72267, 41, -16.79, -9.21, 0.25841, 32, 74.6, 6.03, + 0.00594, 4, 39, 25.59, -9.22, 0.03422, 40, 3.25, -9.22, 0.80451, 41, -19.67, -9.22, 0.15782, 32, 74.8, 3.15, 0.00345, 4, 39, 22.68, -9.23, 0.07754, 40, 0.34, -9.23, 0.83155, 41, + -22.58, -9.23, 0.08642, 32, 75, 0.25, 0.00449, 4, 39, 19.52, -9.24, 0.14705, 40, -2.82, -9.24, 0.80991, 41, -25.74, -9.24, 0.04032, 32, 75.22, -2.9, 0.00272, 4, 39, 16.15, -9.25, + 0.24563, 40, -6.18, -9.25, 0.73344, 41, -29.11, -9.25, 0.01645, 32, 75.45, -6.26, 0.00448, 4, 39, 13.09, -9.27, 0.36774, 40, -9.24, -9.27, 0.62371, 41, -32.17, -9.27, 0.00512, 32, + 75.66, -9.31, 0.00344, 4, 39, 10.21, -9.28, 0.50372, 40, -12.13, -9.28, 0.49001, 41, -35.05, -9.28, 0.00135, 32, 75.86, -12.19, 0.00491, 4, 39, 7.08, -9.29, 0.64487, 40, -15.26, + -9.29, 0.35177, 41, -38.18, -9.29, 0.00021, 32, 76.08, -15.32, 0.00314, 4, 39, 3.26, -9.3, 0.77, 40, -19.08, -9.3, 0.22651, 41, -42, -9.3, 3e-05, 32, 76.34, -19.12, 0.00346, 4, 39, + -0.32, -9.32, 0.87272, 40, -22.66, -9.32, 0.1254, 41, -45.58, -9.32, 0, 32, 76.59, -22.69, 0.00188, 3, 39, -3.57, -9.33, 0.9351, 40, -25.91, -9.33, 0.0605, 32, 76.81, -25.94, 0.0044, + 3, 39, -7.54, -9.35, 0.96153, 40, -29.88, -9.35, 0.02278, 32, 77.09, -29.9, 0.01569, 3, 39, -9.85, -9.35, 0.93655, 40, -32.19, -9.35, 0.00657, 32, 77.24, -32.21, 0.05688, 3, 39, + -11.87, -9.36, 0.83576, 40, -34.2, -9.36, 0.00151, 32, 77.38, -34.21, 0.16273, 3, 39, -14.74, -9.37, 0.65143, 40, -37.08, -9.37, 0.00023, 32, 77.58, -37.08, 0.34834, 3, 39, -16.89, + -9.38, 0.4382, 40, -39.23, -9.38, 2e-05, 32, 77.73, -39.23, 0.56178, 3, 39, -18.76, -9.39, 0.27507, 40, -41.1, -9.39, 0, 32, 77.86, -41.09, 0.72493, 3, 39, -18.76, -2.89, 0.21414, + 40, -41.1, -2.89, 2e-05, 32, 71.37, -41.51, 0.78584, 3, 39, -18.76, 1.38, 0.19077, 40, -41.1, 1.38, 0.00024, 32, 67.11, -41.79, 0.80899, 3, 39, -18.76, 7.5, 0.1765, 40, -41.1, 7.5, + 0.00116, 32, 61.01, -42.19, 0.82235, 4, 39, -16.28, 11.88, 0.15382, 40, -38.62, 11.88, 0.00307, 41, -61.54, 11.88, 1e-05, 32, 56.48, -40, 0.84309, 4, 39, -11.9, 19.61, 0.11079, 40, + -34.24, 19.61, 0.0029, 41, -57.16, 19.61, 0.00014, 32, 48.48, -36.13, 0.88617, 4, 39, 14.63, 66.47, 0.04584, 40, -7.7, 66.47, 0.00083, 41, -30.63, 66.47, 0.00037, 32, -0.01, -12.7, + 0.95296, 4, 39, 22.29, 66.47, 0.02247, 40, -0.04, 66.47, 0.00083, 41, -22.97, 66.47, 0.00288, 32, -0.51, -5.06, 0.97382, 4, 39, 27.54, 66.47, 0.01007, 40, 5.2, 66.47, 0.00155, 41, + -17.72, 66.47, 0.0104, 32, -0.85, 0.17, 0.97798, 4, 39, 34.04, 66.47, 0.00272, 40, 11.7, 66.47, 0.00045, 41, -11.22, 66.47, 0.02285, 32, -1.28, 6.66, 0.97398, 4, 39, 39.96, 66.47, + 0.00033, 40, 17.62, 66.47, 0.00011, 41, -5.3, 66.47, 0.0498, 32, -1.66, 12.57, 0.94976, 3, 39, -16.24, -2.91, 0.33437, 40, -38.58, -2.91, 0.0002, 32, 71.23, -39, 0.66543, 3, 39, + -14.53, 1.37, 0.32645, 40, -36.87, 1.37, 0.00078, 32, 66.85, -37.57, 0.67277, 4, 39, -12.36, 7.36, 0.307, 40, -34.7, 7.36, 0.00285, 41, -57.62, 7.36, 1e-05, 32, 60.73, -35.79, + 0.69014, 4, 39, -9.97, 11.91, 0.26477, 40, -32.31, 11.91, 0.00971, 41, -55.23, 11.91, 0.00027, 32, 56.04, -33.7, 0.72525, 4, 39, -6.21, 19.66, 0.19881, 40, -28.55, 19.66, 0.00959, + 41, -51.47, 19.66, 0.00132, 32, 48.05, -30.46, 0.79028, 4, 39, 24.46, 19.97, 0.10712, 40, 2.12, 19.97, 0.11704, 41, -20.8, 19.97, 0.11672, 32, 45.75, 0.12, 0.65912, 4, 39, 53.97, + 20.27, 0.00116, 40, 31.63, 20.27, 0.00313, 41, 8.71, 20.27, 0.2148, 32, 43.53, 29.55, 0.7809, 4, 39, 57.02, 12.2, 0.0001, 40, 34.68, 12.2, 0.00083, 41, 11.76, 12.2, 0.29942, 32, + 51.38, 33.12, 0.69965, 3, 40, 36.75, 5.8, 0.00034, 41, 13.82, 5.8, 0.378, 32, 57.63, 35.6, 0.62166, 3, 40, 38.1, 1.08, 0.00022, 41, 15.18, 1.08, 0.45653, 32, 62.25, 37.26, 0.54325, + 3, 40, 39.36, -3.36, 0.00015, 41, 16.43, -3.36, 0.53433, 32, 66.61, 38.8, 0.46552, 4, 39, 23.97, 12.06, 0.12565, 40, 1.63, 12.06, 0.24275, 41, -21.29, 12.06, 0.14114, 32, 53.68, + 0.15, 0.49046, 4, 39, 23.54, 6.58, 0.11007, 40, 1.2, 6.58, 0.47217, 41, -21.72, 6.58, 0.12893, 32, 59.17, 0.08, 0.28883, 4, 39, 23.28, 1.22, 0.10884, 40, 0.94, 1.22, 0.60558, 41, + -21.98, 1.22, 0.12698, 32, 64.53, 0.17, 0.1586, 4, 39, 23.11, -3.14, 0.10666, 40, 0.77, -3.14, 0.70334, 41, -22.15, -3.14, 0.12133, 32, 68.89, 0.28, 0.06866, 4, 39, 6.87, 19.8, + 0.29773, 40, -15.47, 19.8, 0.06022, 41, -38.39, 19.8, 0.01488, 32, 47.07, -17.41, 0.62717, 4, 39, 3.75, 11.97, 0.44072, 40, -18.59, 11.97, 0.09602, 41, -41.51, 11.97, 0.01064, 32, + 55.08, -20.02, 0.45261, 4, 39, 1.91, 7.05, 0.66419, 40, -20.42, 7.05, 0.11803, 41, -43.35, 7.05, 0.002, 32, 60.11, -21.53, 0.21579, 4, 39, 0.03, 1.31, 0.77187, 40, -22.31, 1.31, + 0.12352, 41, -45.23, 1.31, 0.00043, 32, 65.96, -23.04, 0.10418, 4, 39, -1.27, -2.99, 0.84303, 40, -23.61, -2.99, 0.11246, 41, -46.53, -2.99, 0.00018, 32, 70.34, -24.05, 0.04432, 4, + 39, -1.8, 26.91, 0.12744, 40, -24.14, 26.91, 0.00959, 41, -47.06, 26.91, 0.0076, 32, 40.54, -26.53, 0.85537, 4, 39, 24.96, 27.56, 0.0719, 40, 2.62, 27.56, 0.03639, 41, -20.3, 27.56, + 0.07572, 32, 38.14, 0.13, 0.81598, 4, 39, 50.76, 27.7, 0.00702, 40, 28.42, 27.7, 0.00523, 41, 5.5, 27.7, 0.131, 32, 36.32, 25.87, 0.85675, 4, 39, 3.83, 36.15, 0.04791, 40, -18.51, + 36.15, 0.00352, 41, -41.43, 36.15, 0.00803, 32, 30.95, -21.51, 0.94054, 4, 39, 25.65, 37.95, 0.02662, 40, 3.31, 37.95, 0.00775, 41, -19.61, 37.95, 0.02767, 32, 27.73, 0.14, 0.93795, + 4, 39, 46.64, 37.25, 0.00753, 40, 24.3, 37.25, 0.00227, 41, 1.38, 37.25, 0.04846, 32, 27.06, 21.14, 0.94174, 4, 39, 41.75, 20.15, 0.01306, 40, 19.41, 20.15, 0.04509, 41, -3.51, + 20.15, 0.32134, 32, 44.45, 17.37, 0.62052, 4, 39, 43.25, 12.14, 0.00895, 40, 20.91, 12.14, 0.07841, 41, -2.01, 12.14, 0.49568, 32, 52.34, 19.39, 0.41696, 4, 39, 44.35, 6.12, 0.0015, + 40, 22.01, 6.12, 0.09572, 41, -0.91, 6.12, 0.67014, 32, 58.27, 20.88, 0.23264, 4, 39, 45.08, 1.14, 0.00025, 40, 22.74, 1.14, 0.108, 41, -0.18, 1.14, 0.76841, 32, 63.2, 21.93, + 0.12334, 4, 39, 45.58, -3.27, 0.0001, 40, 23.24, -3.27, 0.10937, 41, 0.32, -3.27, 0.83473, 32, 67.56, 22.71, 0.0558, 4, 39, 40.33, 27.64, 0.02381, 40, 18, 27.64, 0.02132, 41, -4.93, + 27.64, 0.16866, 32, 37.06, 15.47, 0.78621, 4, 39, 9.71, 27.19, 0.16236, 40, -12.63, 27.19, 0.02827, 41, -35.55, 27.19, 0.02548, 32, 39.51, -15.06, 0.78388, 4, 39, 15.01, 19.88, + 0.23124, 40, -7.33, 19.88, 0.11759, 41, -30.25, 19.88, 0.04679, 32, 46.46, -9.29, 0.60438, 4, 39, 13.78, 12.01, 0.29354, 40, -8.56, 12.01, 0.19873, 41, -31.48, 12.01, 0.04427, 32, + 54.39, -10.01, 0.46346, 4, 39, 12.95, 6.81, 0.37869, 40, -9.39, 6.81, 0.34588, 41, -32.31, 6.81, 0.01968, 32, 59.63, -10.5, 0.25575, 4, 39, 11.95, 1.27, 0.42861, 40, -10.39, 1.27, + 0.42317, 41, -33.31, 1.27, 0.01297, 32, 65.23, -11.14, 0.13524, 4, 39, 11.29, -3.07, 0.46725, 40, -11.05, -3.07, 0.46538, 41, -33.97, -3.07, 0.0097, 32, 69.59, -11.51, 0.05768, 4, + 39, -0.59, 19.72, 0.32338, 40, -22.92, 19.72, 0.02881, 41, -45.85, 19.72, 0.003, 32, 47.63, -24.85, 0.64481, 4, 39, -3.82, 11.93, 0.4391, 40, -26.16, 11.93, 0.03345, 41, -49.08, + 11.93, 0.00177, 32, 55.61, -27.57, 0.52567, 4, 39, -5.89, 7.22, 0.65491, 40, -28.23, 7.22, 0.02015, 41, -51.15, 7.22, 0.00017, 32, 60.45, -29.33, 0.32476, 4, 39, -8.13, 1.34, + 0.75275, 40, -30.47, 1.34, 0.01396, 41, -53.39, 1.34, 1e-05, 32, 66.46, -31.18, 0.23328, 3, 39, -9.63, -2.94, 0.80478, 40, -31.96, -2.94, 0.00944, 32, 70.83, -32.39, 0.18578, 4, 39, + 33.3, 20.06, 0.04166, 40, 10.96, 20.06, 0.10286, 41, -11.96, 20.06, 0.24857, 32, 45.08, 8.94, 0.60691, 4, 39, 33.97, 12.1, 0.03817, 40, 11.63, 12.1, 0.17811, 41, -11.29, 12.1, + 0.32257, 32, 52.98, 10.13, 0.46115, 4, 39, 34.3, 6.34, 0.01531, 40, 11.97, 6.34, 0.31162, 41, -10.96, 6.34, 0.40881, 32, 58.71, 10.84, 0.26426, 4, 39, 34.72, 1.18, 0.00955, 40, + 12.39, 1.18, 0.39036, 41, -10.54, 1.18, 0.4561, 32, 63.83, 11.59, 0.14399, 4, 39, 34.8, -3.2, 0.00731, 40, 12.46, -3.2, 0.44195, 41, -10.46, -3.2, 0.48699, 32, 68.2, 11.96, 0.06375, + 4, 39, 48.21, 20.21, 0.00241, 40, 25.88, 20.21, 0.01421, 41, 2.95, 20.21, 0.36275, 32, 43.96, 23.82, 0.62063, 4, 39, 50.54, 12.17, 0.00034, 40, 28.2, 12.17, 0.01068, 41, 5.28, 12.17, + 0.5453, 32, 51.83, 26.66, 0.44368, 4, 39, 52.52, 5.95, 2e-05, 40, 30.19, 5.95, 0.00999, 41, 7.26, 5.95, 0.66888, 32, 57.92, 29.04, 0.32111, 3, 40, 31.52, 1.11, 0.01011, 41, 8.6, + 1.11, 0.76268, 32, 62.66, 30.7, 0.22721, 3, 40, 32.61, -3.32, 0.00863, 41, 9.68, -3.32, 0.83296, 32, 67.01, 32.06, 0.15841, 4, 39, -9.21, 7.29, 0.52586, 40, -31.55, 7.29, 0.0057, 41, + -54.47, 7.29, 1e-05, 32, 60.59, -32.65, 0.46842, 3, 39, -11.3, 1.36, 0.56698, 40, -33.64, 1.36, 0.00311, 32, 66.65, -34.34, 0.42991, 3, 39, -12.66, -2.93, 0.60013, 40, -35, -2.93, + 0.00167, 32, 71.01, -35.42, 0.39821, 4, 39, -5.46, -2.97, 0.89102, 40, -27.8, -2.97, 0.03888, 41, -50.72, -2.97, 1e-05, 32, 70.59, -28.24, 0.07008, 4, 39, -4.18, 1.33, 0.83362, 40, + -26.52, 1.33, 0.04645, 41, -49.44, 1.33, 3e-05, 32, 66.21, -27.24, 0.1199, 4, 39, -2.26, 7.14, 0.75973, 40, -24.6, 7.14, 0.05134, 41, -47.52, 7.14, 0.00026, 32, 60.29, -25.7, + 0.18867, 4, 39, 7.35, 6.93, 0.57235, 40, -14.98, 6.93, 0.23863, 41, -37.91, 6.93, 0.00435, 32, 59.87, -16.09, 0.18467, 4, 39, 5.9, 1.29, 0.63011, 40, -16.44, 1.29, 0.25936, 41, + -39.36, 1.29, 0.00243, 32, 65.6, -17.18, 0.1081, 4, 39, 4.86, -3.03, 0.68809, 40, -17.48, -3.03, 0.26358, 41, -40.4, -3.03, 0.00168, 32, 69.98, -17.93, 0.04665, 4, 39, 17.76, 6.7, + 0.22941, 40, -4.58, 6.7, 0.4879, 41, -27.5, 6.7, 0.05094, 32, 59.42, -5.7, 0.23175, 4, 39, 17.11, 1.25, 0.24296, 40, -5.23, 1.25, 0.56856, 41, -28.15, 1.25, 0.04581, 32, 64.91, + -5.99, 0.14267, 4, 39, 16.71, -3.1, 0.25552, 40, -5.62, -3.1, 0.64168, 41, -28.55, -3.1, 0.03992, 32, 69.27, -6.1, 0.06288, 4, 39, 28.55, -3.17, 0.03276, 40, 6.22, -3.17, 0.62363, + 41, -16.71, -3.17, 0.27658, 32, 68.57, 5.72, 0.06703, 4, 39, 28.55, 1.2, 0.0367, 40, 6.21, 1.21, 0.54514, 41, -16.71, 1.21, 0.26974, 32, 64.21, 5.43, 0.14843, 4, 39, 28.71, 6.47, + 0.04075, 40, 6.37, 6.47, 0.46337, 41, -16.55, 6.47, 0.25797, 32, 58.95, 5.25, 0.23791, 4, 39, 39.28, 6.23, 0.00305, 40, 16.94, 6.24, 0.20572, 41, -5.98, 6.24, 0.59307, 32, 58.49, + 15.81, 0.19817, 4, 39, 39.51, 1.16, 0.00156, 40, 17.17, 1.16, 0.23228, 41, -5.75, 1.16, 0.64631, 32, 63.54, 16.37, 0.11984, 4, 39, 40.07, -3.24, 0.00112, 40, 17.74, -3.24, 0.25061, + 41, -5.19, -3.24, 0.69415, 32, 67.89, 17.22, 0.05412, 4, 39, 50.23, -3.29, 0, 40, 27.89, -3.29, 0.036, 41, 4.97, -3.29, 0.88144, 32, 67.29, 27.36, 0.08255, 4, 39, 49.51, 1.13, 2e-05, + 40, 27.17, 1.13, 0.03826, 41, 4.25, 1.13, 0.81357, 32, 62.92, 26.35, 0.14816, 4, 39, 48.55, 6.03, 0.00027, 40, 26.22, 6.03, 0.03577, 41, 3.29, 6.03, 0.72045, 32, 58.09, 25.08, + 0.24351, 4, 39, 47.11, 12.16, 0.00156, 40, 24.77, 12.16, 0.03311, 41, 1.85, 12.16, 0.61234, 32, 52.07, 23.24, 0.35299, 4, 39, 53.99, 12.19, 1e-05, 40, 31.66, 12.19, 0.00266, 41, + 8.73, 12.19, 0.47035, 32, 51.59, 30.11, 0.52698, 3, 40, 33.02, 5.88, 0.00213, 41, 10.1, 5.88, 0.54797, 32, 57.79, 31.88, 0.4499, 3, 40, 34.54, 1.1, 0.0018, 41, 11.62, 1.1, 0.63247, + 32, 62.47, 33.7, 0.36573, 3, 40, 35.58, -3.34, 0.00152, 41, 12.66, -3.34, 0.71351, 32, 66.83, 35.03, 0.28497, 3, 39, -17.72, -6.71, 0.31251, 40, -40.05, -6.71, 1e-05, 32, 75.11, + -40.22, 0.68748, 3, 39, -13.83, -6.56, 0.64755, 40, -36.17, -6.56, 0.00038, 32, 74.72, -36.36, 0.35207, 3, 39, -10.89, -6.57, 0.83546, 40, -33.23, -6.57, 0.00245, 32, 74.53, -33.42, + 0.1621, 3, 39, -6.58, -6.39, 0.9505, 40, -28.91, -6.39, 0.02598, 32, 74.07, -29.13, 0.02352, 4, 39, -2.51, -6.41, 0.9185, 40, -24.85, -6.41, 0.06986, 41, -47.77, -6.41, 1e-05, 32, + 73.83, -25.07, 0.01163, 4, 39, 3.97, -6.54, 0.7539, 40, -18.37, -6.54, 0.23416, 41, -41.29, -6.54, 0.00019, 32, 73.54, -18.6, 0.01175, 4, 39, 10.73, -6.3, 0.4945, 40, -11.61, -6.29, + 0.48778, 41, -34.53, -6.29, 0.00242, 32, 72.85, -11.87, 0.01529, 4, 39, 16.42, -6.31, 0.24467, 40, -5.92, -6.31, 0.71967, 41, -28.84, -6.31, 0.01969, 32, 72.5, -6.18, 0.01597, 4, 39, + 22.88, -6.46, 0.08074, 40, 0.54, -6.46, 0.81091, 41, -22.38, -6.46, 0.09131, 32, 72.22, 0.27, 0.01704, 4, 39, 28.51, -6.42, 0.01543, 40, 6.17, -6.42, 0.70591, 41, -16.75, -6.42, + 0.26031, 32, 71.82, 5.89, 0.01836, 4, 39, 34.97, -6.29, 0.00164, 40, 12.64, -6.29, 0.47309, 41, -10.29, -6.29, 0.50689, 32, 71.27, 12.33, 0.01837, 4, 39, 40.42, -6.47, 0.0001, 40, + 18.08, -6.47, 0.23958, 41, -4.84, -6.47, 0.7461, 32, 71.1, 17.78, 0.01421, 4, 39, 45.89, -6.5, 0, 40, 23.56, -6.5, 0.08431, 41, 0.63, -6.5, 0.9025, 32, 70.76, 23.24, 0.01319, 3, 40, + 28.36, -6.37, 0.01867, 41, 5.43, -6.37, 0.94991, 32, 70.33, 28.02, 0.03142, 3, 40, 33.31, -6.41, 0.00244, 41, 10.39, -6.41, 0.88788, 32, 70.05, 32.97, 0.10968, 3, 40, 36.23, -6.46, + 0.00046, 41, 13.31, -6.46, 0.80558, 32, 69.91, 35.88, 0.19395, 3, 40, 40.12, -6.31, 1e-05, 41, 17.2, -6.31, 0.61334, 32, 69.5, 39.76, 0.38665, 4, 39, 0.4, -6.47, 0.86555, 40, -21.94, + -6.47, 0.12959, 41, -44.86, -6.47, 1e-05, 32, 73.7, -22.16, 0.00485, 3, 39, -9.01, -6.49, 0.93616, 40, -31.35, -6.49, 0.00716, 32, 74.33, -31.55, 0.05668, 3, 39, -16.19, -6.65, + 0.44814, 40, -38.53, -6.65, 3e-05, 32, 74.96, -38.7, 0.55184, 4, 39, 7.48, -6.41, 0.63866, 40, -14.86, -6.41, 0.354, 41, -37.78, -6.41, 0.00037, 32, 73.18, -15.1, 0.00698, 4, 39, + 13.4, -6.3, 0.36468, 40, -8.94, -6.3, 0.62161, 41, -31.86, -6.3, 0.00581, 32, 72.69, -9.2, 0.0079, 4, 39, 19.68, -6.38, 0.14684, 40, -2.65, -6.38, 0.80383, 41, -25.58, -6.38, + 0.04176, 32, 72.36, -2.92, 0.00757, 4, 39, 25.54, -6.44, 0.03499, 40, 3.2, -6.44, 0.79745, 41, -19.72, -6.44, 0.15898, 32, 72.03, 2.92, 0.00858, 4, 39, 31.96, -6.35, 0.00417, 40, + 9.62, -6.35, 0.60634, 41, -13.3, -6.35, 0.37927, 32, 71.53, 9.32, 0.01022, 4, 39, 37.62, -6.38, 0.00021, 40, 15.28, -6.38, 0.35157, 41, -7.64, -6.38, 0.63918, 32, 71.18, 14.97, + 0.00904, 4, 39, 43.32, -6.48, 1e-05, 40, 20.98, -6.48, 0.14688, 41, -1.94, -6.48, 0.84692, 32, 70.92, 20.67, 0.00619, 3, 40, 25.81, -6.44, 0.03919, 41, 2.89, -6.44, 0.95006, 32, + 70.56, 25.48, 0.01074, 3, 40, 30.92, -6.39, 0.00591, 41, 7.99, -6.39, 0.9433, 32, 70.18, 30.58, 0.05079, 3, 40, 38.04, -6.39, 5e-05, 41, 15.12, -6.39, 0.72615, 32, 69.72, 37.69, + 0.2738 + ], + "hull": 46, + "edges": [ + 80, 82, 90, 0, 10, 8, 70, 72, 72, 74, 74, 76, 4, 6, 6, 8, 76, 78, 78, 80, 4, 2, 2, 0, 72, 92, 74, 94, 92, 94, 76, 96, 94, 96, 78, 98, 96, 98, 80, 100, 98, 100, 82, 84, 84, 86, 86, + 88, 88, 90, 0, 104, 2, 106, 104, 106, 4, 108, 106, 108, 6, 110, 108, 110, 8, 112, 110, 112, 10, 12, 102, 114, 114, 116, 116, 118, 118, 120, 122, 124, 124, 126, 126, 128, 128, 130, + 132, 100, 134, 102, 136, 104, 84, 138, 138, 132, 86, 140, 140, 134, 138, 140, 88, 142, 142, 136, 140, 142, 144, 146, 146, 148, 148, 150, 150, 152, 134, 154, 154, 136, 144, 154, 132, + 156, 156, 134, 122, 156, 102, 158, 158, 122, 114, 160, 160, 124, 158, 160, 160, 162, 162, 164, 164, 166, 100, 168, 168, 122, 98, 170, 170, 124, 168, 170, 170, 172, 172, 174, 174, + 176, 102, 178, 178, 144, 114, 180, 180, 146, 178, 180, 180, 182, 182, 184, 184, 186, 104, 188, 188, 144, 188, 190, 190, 192, 192, 194, 194, 196, 96, 198, 198, 172, 94, 200, 200, 174, + 198, 200, 92, 202, 202, 176, 200, 202, 64, 66, 58, 60, 130, 204, 204, 176, 128, 206, 206, 174, 204, 206, 126, 208, 208, 172, 206, 208, 126, 210, 210, 162, 128, 212, 212, 164, 210, + 212, 130, 214, 214, 166, 212, 214, 116, 216, 216, 162, 118, 218, 218, 164, 216, 218, 120, 220, 220, 166, 218, 220, 120, 222, 222, 186, 118, 224, 224, 184, 222, 224, 116, 226, 226, + 182, 224, 226, 148, 228, 228, 182, 150, 230, 230, 184, 228, 230, 152, 232, 232, 186, 230, 232, 152, 234, 234, 196, 150, 236, 236, 194, 234, 236, 148, 238, 238, 192, 236, 238, 146, + 240, 240, 190, 238, 240, 106, 242, 242, 190, 108, 244, 244, 192, 242, 244, 110, 246, 246, 194, 244, 246, 112, 248, 248, 196, 246, 248, 16, 18, 70, 250, 250, 92, 66, 252, 252, 202, + 64, 254, 254, 176, 252, 254, 60, 256, 256, 204, 58, 258, 258, 130, 256, 258, 54, 260, 260, 214, 50, 262, 262, 166, 46, 264, 264, 220, 42, 266, 266, 120, 38, 268, 268, 222, 34, 270, + 270, 186, 30, 272, 272, 232, 26, 274, 274, 152, 22, 276, 276, 234, 18, 278, 278, 196, 16, 280, 280, 248, 278, 280, 12, 282, 282, 112, 258, 284, 284, 260, 54, 56, 56, 58, 284, 56, + 254, 286, 286, 256, 60, 62, 62, 64, 286, 62, 250, 288, 288, 252, 66, 68, 68, 70, 288, 68, 260, 290, 290, 262, 50, 52, 52, 54, 290, 52, 262, 292, 292, 264, 46, 48, 48, 50, 292, 48, + 264, 294, 294, 266, 42, 44, 44, 46, 294, 44, 266, 296, 296, 268, 38, 40, 40, 42, 296, 40, 268, 298, 298, 270, 34, 36, 36, 38, 298, 36, 270, 300, 300, 272, 30, 32, 32, 34, 300, 32, + 272, 302, 302, 274, 26, 28, 28, 30, 302, 28, 274, 304, 304, 276, 22, 24, 24, 26, 304, 24, 276, 306, 306, 278, 18, 20, 20, 22, 306, 20, 280, 308, 308, 282, 12, 14, 14, 16, 308, 14 + ], + "width": 87.05882352941177, + "height": 80.0, + "path": "summer-as.ear-left-bubble", + "x": 0.470588235294116, + "y": 0.0 + } + }, + "ear-left-bubble-02": { + "ear-left-bubble": { + "type": "mesh", + "uvs": [ + 0.87714, 0.57697, 0.91393, 0.67811, 0.94364, 0.75977, 0.96133, 0.8176, 0.97838, 0.87333, 1, 0.94398, 0.93104, 0.94427, 0.90524, 0.94438, 0.88494, 0.94447, 0.85255, 0.94461, 0.82176, + 0.94474, 0.79396, 0.94486, 0.76382, 0.94499, 0.73767, 0.9451, 0.70713, 0.94523, 0.67579, 0.94536, 0.64108, 0.94551, 0.61244, 0.94564, 0.5758, 0.94579, 0.5367, 0.94596, 0.50394, + 0.9461, 0.47091, 0.94624, 0.435, 0.94639, 0.39675, 0.94656, 0.36198, 0.94671, 0.32916, 0.94685, 0.29359, 0.947, 0.25022, 0.94718, 0.20956, 0.94736, 0.17261, 0.94751, 0.12749, + 0.94771, 0.1012, 0.94782, 0.07834, 0.94792, 0.0457, 0.94806, 0.02123, 0.94816, 0, 0.94825, 0, 0.86703, 0, 0.81359, 0, 0.73715, 0.02817, 0.68242, 0.07791, 0.5858, 0.37947, 0, 0.46651, + 0, 0.5261, 0, 0.59994, 0, 0.66726, 0, 0.02864, 0.86721, 0.04805, 0.81379, 0.07275, 0.7389, 0.0999, 0.68207, 0.14259, 0.58508, 0.49108, 0.58123, 0.82646, 0.57753, 0.86109, 0.67837, + 0.88458, 0.75835, 0.90003, 0.81734, 0.91424, 0.87292, 0.48557, 0.6802, 0.48069, 0.74867, 0.47772, 0.81558, 0.4758, 0.87009, 0.29126, 0.58344, 0.25576, 0.68132, 0.23492, 0.74278, + 0.2135, 0.81448, 0.19874, 0.86831, 0.19271, 0.49455, 0.4968, 0.48641, 0.79002, 0.48462, 0.25666, 0.37903, 0.50462, 0.35653, 0.74321, 0.36527, 0.68757, 0.57906, 0.70466, 0.67913, + 0.71716, 0.75434, 0.72541, 0.81661, 0.73109, 0.87174, 0.67152, 0.48534, 0.32349, 0.49105, 0.38378, 0.58242, 0.36974, 0.68076, 0.36036, 0.74579, 0.34895, 0.81504, 0.34148, 0.86923, + 0.20652, 0.58437, 0.16979, 0.68173, 0.1462, 0.74066, 0.12077, 0.81409, 0.10379, 0.8677, 0.59158, 0.58012, 0.59921, 0.67965, 0.60299, 0.7516, 0.60776, 0.81612, 0.60866, 0.87095, + 0.76107, 0.57825, 0.78751, 0.67873, 0.81003, 0.75656, 0.82525, 0.81703, 0.83754, 0.87243, 0.10852, 0.73975, 0.08479, 0.81394, 0.06934, 0.86747, 0.15113, 0.868, 0.1657, 0.81428, + 0.18746, 0.74164, 0.29675, 0.74426, 0.28022, 0.81476, 0.26841, 0.86876, 0.41495, 0.7471, 0.40761, 0.81529, 0.4031, 0.86963, 0.53765, 0.87049, 0.53762, 0.81583, 0.53944, 0.75008, + 0.6595, 0.75296, 0.66217, 0.81635, 0.66857, 0.87134, 0.78397, 0.87208, 0.7758, 0.81682, 0.76492, 0.75548, 0.74852, 0.67892, 0.82675, 0.67854, 0.84222, 0.75734, 0.8595, 0.81717, + 0.87132, 0.87264, 0.01186, 0.9147, 0.056, 0.91293, 0.08943, 0.91297, 0.13846, 0.91074, 0.18465, 0.91102, 0.25824, 0.91262, 0.33507, 0.90958, 0.39978, 0.90977, 0.47313, 0.91161, + 0.53714, 0.91117, 0.61061, 0.90948, 0.67252, 0.91178, 0.73471, 0.91209, 0.78925, 0.91054, 0.84557, 0.91105, 0.87872, 0.91169, 0.92292, 0.90979, 0.21772, 0.91173, 0.11081, 0.912, + 0.02923, 0.91401, 0.29821, 0.91104, 0.36548, 0.90967, 0.43685, 0.9107, 0.50336, 0.9114, 0.57635, 0.91027, 0.64066, 0.9106, 0.70543, 0.91195, 0.76031, 0.91136, 0.81833, 0.9108, + 0.89934, 0.9108 + ], + "triangles": [ + 85, 84, 62, 94, 73, 72, 62, 84, 61, 100, 48, 99, 122, 53, 54, 121, 95, 52, 48, 49, 99, 48, 47, 38, 47, 37, 38, 50, 66, 84, 50, 40, 66, 54, 53, 1, 52, 68, 0, 70, 42, 43, 71, 0, 68, + 44, 45, 71, 70, 43, 44, 71, 70, 44, 69, 41, 42, 69, 42, 70, 71, 45, 0, 77, 70, 71, 77, 71, 68, 70, 78, 69, 67, 70, 77, 67, 78, 70, 41, 69, 40, 66, 69, 78, 94, 77, 68, 94, 68, 52, 72, + 77, 94, 89, 67, 77, 89, 77, 72, 67, 79, 78, 51, 67, 89, 51, 79, 67, 61, 66, 78, 61, 78, 79, 84, 66, 61, 40, 69, 66, 90, 89, 72, 90, 72, 73, 57, 79, 51, 57, 51, 89, 57, 89, 90, 80, + 61, 79, 80, 79, 57, 62, 61, 80, 108, 80, 57, 113, 57, 90, 53, 52, 0, 53, 0, 1, 121, 52, 53, 54, 1, 2, 95, 94, 52, 39, 40, 49, 49, 40, 50, 38, 39, 48, 48, 39, 49, 85, 50, 84, 49, 50, + 85, 122, 121, 53, 47, 48, 100, 86, 99, 49, 85, 86, 49, 55, 2, 3, 55, 54, 2, 123, 54, 55, 5, 6, 4, 56, 3, 4, 56, 55, 3, 35, 36, 125, 35, 125, 34, 34, 125, 144, 47, 46, 37, 125, 46, + 144, 144, 46, 126, 101, 47, 100, 46, 47, 101, 125, 36, 46, 46, 36, 37, 120, 94, 95, 120, 73, 94, 114, 91, 90, 73, 114, 90, 74, 73, 120, 114, 73, 74, 119, 120, 95, 74, 120, 119, 96, + 95, 121, 119, 95, 96, 96, 121, 122, 92, 91, 114, 115, 114, 74, 92, 114, 115, 75, 74, 119, 115, 74, 75, 118, 119, 96, 75, 119, 118, 97, 96, 122, 118, 96, 97, 123, 122, 54, 97, 122, + 123, 93, 92, 115, 116, 115, 75, 93, 115, 116, 76, 75, 118, 116, 75, 76, 117, 118, 97, 76, 118, 117, 98, 97, 123, 117, 97, 98, 124, 123, 55, 98, 123, 124, 150, 135, 93, 153, 138, 117, + 116, 150, 93, 98, 153, 117, 154, 124, 56, 154, 56, 141, 139, 98, 124, 140, 139, 124, 153, 98, 139, 152, 76, 117, 152, 117, 138, 154, 140, 124, 151, 136, 116, 150, 116, 136, 76, 151, + 116, 137, 151, 76, 152, 137, 76, 7, 154, 141, 7, 141, 6, 8, 140, 154, 8, 154, 7, 9, 139, 140, 9, 140, 8, 10, 153, 139, 10, 139, 9, 11, 138, 153, 11, 153, 10, 12, 152, 138, 12, 138, + 11, 13, 137, 152, 13, 152, 12, 14, 151, 137, 14, 137, 13, 15, 136, 151, 15, 151, 14, 16, 150, 136, 16, 136, 15, 17, 135, 150, 17, 150, 16, 124, 55, 56, 6, 141, 4, 141, 56, 4, 113, + 90, 91, 81, 80, 108, 58, 108, 57, 109, 81, 108, 82, 81, 109, 59, 108, 58, 109, 108, 59, 112, 58, 113, 59, 58, 112, 112, 113, 91, 92, 112, 91, 110, 82, 109, 83, 82, 110, 60, 109, 59, + 110, 109, 60, 111, 112, 92, 59, 112, 111, 60, 59, 111, 111, 92, 93, 146, 83, 110, 131, 83, 146, 132, 146, 110, 149, 111, 93, 149, 93, 135, 147, 110, 60, 132, 110, 147, 111, 148, 60, + 134, 111, 149, 134, 148, 111, 133, 147, 60, 148, 133, 60, 18, 134, 149, 18, 149, 135, 18, 135, 17, 19, 148, 134, 19, 134, 18, 20, 148, 19, 21, 147, 133, 20, 21, 133, 20, 133, 148, + 22, 132, 147, 22, 147, 21, 23, 146, 132, 23, 132, 22, 24, 131, 146, 24, 146, 23, 25, 131, 24, 58, 57, 113, 63, 104, 85, 86, 85, 104, 62, 63, 85, 105, 62, 80, 63, 62, 105, 81, 105, + 80, 87, 99, 86, 100, 99, 87, 103, 86, 104, 87, 86, 103, 64, 104, 63, 103, 104, 64, 106, 63, 105, 64, 63, 106, 82, 105, 81, 106, 105, 82, 88, 100, 87, 101, 100, 88, 102, 87, 103, 88, + 87, 102, 65, 103, 64, 102, 103, 65, 107, 64, 106, 65, 64, 107, 83, 106, 82, 107, 106, 83, 83, 145, 107, 128, 88, 102, 129, 102, 65, 128, 102, 129, 131, 145, 83, 142, 65, 107, 129, + 65, 142, 143, 88, 128, 130, 142, 107, 130, 107, 145, 127, 101, 88, 127, 88, 143, 126, 101, 127, 25, 145, 131, 26, 130, 145, 26, 145, 25, 27, 142, 130, 27, 130, 26, 28, 129, 142, 28, + 142, 27, 29, 128, 129, 29, 129, 28, 30, 143, 128, 30, 128, 29, 31, 127, 143, 31, 143, 30, 32, 126, 127, 32, 127, 31, 33, 144, 126, 33, 126, 32, 126, 46, 101, 34, 144, 33 + ], + "vertices": [ + 4, 47, 58.43, 20.31, 0.00012, 48, 36.09, 20.31, 0.00054, 49, 13.17, 20.31, 0.12631, 46, 43.2, 34, 0.87302, 3, 48, 39.33, 12.22, 0.00019, 49, 16.41, 12.22, 0.19743, 46, 51.06, 37.76, + 0.80237, 3, 48, 41.94, 5.69, 6e-05, 49, 19.02, 5.69, 0.26715, 46, 57.41, 40.79, 0.73278, 3, 48, 43.5, 1.06, 1e-05, 49, 20.58, 1.06, 0.33542, 46, 61.92, 42.65, 0.66457, 3, 48, 45, + -3.4, 1e-05, 49, 22.08, -3.4, 0.40033, 46, 66.27, 44.44, 0.59966, 3, 48, 46.9, -9.05, 0, 49, 23.98, -9.05, 0.45012, 46, 71.79, 46.7, 0.54988, 3, 48, 40.83, -9.07, 0, 49, 17.91, + -9.07, 0.5829, 46, 72.21, 40.65, 0.4171, 3, 48, 38.56, -9.08, 4e-05, 49, 15.64, -9.08, 0.72131, 46, 72.37, 38.38, 0.27865, 3, 48, 36.78, -9.09, 0.00031, 49, 13.86, -9.09, 0.8264, 46, + 72.49, 36.6, 0.17329, 3, 48, 33.93, -9.1, 0.00157, 49, 11, -9.1, 0.90359, 46, 72.69, 33.76, 0.09484, 3, 48, 31.22, -9.11, 0.00537, 49, 8.3, -9.11, 0.94975, 46, 72.87, 31.05, 0.04488, + 3, 48, 28.77, -9.12, 0.01601, 49, 5.85, -9.12, 0.96404, 46, 73.04, 28.61, 0.01996, 3, 48, 26.12, -9.13, 0.03803, 49, 3.2, -9.13, 0.95562, 46, 73.22, 25.97, 0.00635, 3, 48, 23.82, + -9.14, 0.08031, 49, 0.9, -9.14, 0.91597, 46, 73.38, 23.67, 0.00372, 4, 47, 43.47, -9.15, 0, 48, 21.13, -9.15, 0.14592, 49, -1.79, -9.15, 0.85165, 46, 73.57, 20.99, 0.00243, 4, 47, + 40.71, -9.16, 2e-05, 48, 18.37, -9.16, 0.23867, 49, -4.55, -9.16, 0.75671, 46, 73.76, 18.24, 0.0046, 4, 47, 37.66, -9.17, 0.00014, 48, 15.32, -9.17, 0.35275, 49, -7.6, -9.17, + 0.64256, 46, 73.97, 15.19, 0.00455, 4, 47, 35.13, -9.18, 0.00092, 48, 12.8, -9.18, 0.48034, 49, -10.13, -9.18, 0.51198, 46, 74.14, 12.68, 0.00676, 4, 47, 31.91, -9.19, 0.00375, 48, + 9.57, -9.19, 0.61095, 49, -13.35, -9.19, 0.38019, 46, 74.36, 9.46, 0.00512, 4, 47, 28.47, -9.21, 0.01298, 48, 6.13, -9.21, 0.72267, 49, -16.79, -9.21, 0.25841, 46, 74.6, 6.03, + 0.00594, 4, 47, 25.59, -9.22, 0.03422, 48, 3.25, -9.22, 0.80451, 49, -19.67, -9.22, 0.15782, 46, 74.8, 3.15, 0.00345, 4, 47, 22.68, -9.23, 0.07754, 48, 0.34, -9.23, 0.83155, 49, + -22.58, -9.23, 0.08642, 46, 75, 0.25, 0.00449, 4, 47, 19.52, -9.24, 0.14705, 48, -2.82, -9.24, 0.80991, 49, -25.74, -9.24, 0.04032, 46, 75.22, -2.9, 0.00272, 4, 47, 16.15, -9.25, + 0.24563, 48, -6.18, -9.25, 0.73344, 49, -29.11, -9.25, 0.01645, 46, 75.45, -6.26, 0.00448, 4, 47, 13.09, -9.27, 0.36774, 48, -9.24, -9.27, 0.62371, 49, -32.17, -9.27, 0.00512, 46, + 75.66, -9.31, 0.00344, 4, 47, 10.21, -9.28, 0.50372, 48, -12.13, -9.28, 0.49001, 49, -35.05, -9.28, 0.00135, 46, 75.86, -12.19, 0.00491, 4, 47, 7.08, -9.29, 0.64487, 48, -15.26, + -9.29, 0.35177, 49, -38.18, -9.29, 0.00021, 46, 76.08, -15.32, 0.00314, 4, 47, 3.26, -9.3, 0.77, 48, -19.08, -9.3, 0.22651, 49, -42, -9.3, 3e-05, 46, 76.34, -19.12, 0.00346, 4, 47, + -0.32, -9.32, 0.87272, 48, -22.66, -9.32, 0.1254, 49, -45.58, -9.32, 0, 46, 76.59, -22.69, 0.00188, 3, 47, -3.57, -9.33, 0.9351, 48, -25.91, -9.33, 0.0605, 46, 76.81, -25.94, 0.0044, + 3, 47, -7.54, -9.35, 0.96153, 48, -29.88, -9.35, 0.02278, 46, 77.09, -29.9, 0.01569, 3, 47, -9.85, -9.35, 0.93655, 48, -32.19, -9.35, 0.00657, 46, 77.24, -32.21, 0.05688, 3, 47, + -11.87, -9.36, 0.83576, 48, -34.2, -9.36, 0.00151, 46, 77.38, -34.21, 0.16273, 3, 47, -14.74, -9.37, 0.65143, 48, -37.08, -9.37, 0.00023, 46, 77.58, -37.08, 0.34834, 3, 47, -16.89, + -9.38, 0.4382, 48, -39.23, -9.38, 2e-05, 46, 77.73, -39.23, 0.56178, 3, 47, -18.76, -9.39, 0.27507, 48, -41.1, -9.39, 0, 46, 77.86, -41.09, 0.72493, 3, 47, -18.76, -2.89, 0.21414, + 48, -41.1, -2.89, 2e-05, 46, 71.37, -41.51, 0.78584, 3, 47, -18.76, 1.38, 0.19077, 48, -41.1, 1.38, 0.00024, 46, 67.11, -41.79, 0.80899, 3, 47, -18.76, 7.5, 0.1765, 48, -41.1, 7.5, + 0.00116, 46, 61.01, -42.19, 0.82235, 4, 47, -16.28, 11.88, 0.15382, 48, -38.62, 11.88, 0.00307, 49, -61.54, 11.88, 1e-05, 46, 56.48, -40, 0.84309, 4, 47, -11.9, 19.61, 0.11079, 48, + -34.24, 19.61, 0.0029, 49, -57.16, 19.61, 0.00014, 46, 48.48, -36.13, 0.88617, 4, 47, 14.63, 66.47, 0.04584, 48, -7.7, 66.47, 0.00083, 49, -30.63, 66.47, 0.00037, 46, -0.01, -12.7, + 0.95296, 4, 47, 22.29, 66.47, 0.02247, 48, -0.04, 66.47, 0.00083, 49, -22.97, 66.47, 0.00288, 46, -0.51, -5.06, 0.97382, 4, 47, 27.54, 66.47, 0.01007, 48, 5.2, 66.47, 0.00155, 49, + -17.72, 66.47, 0.0104, 46, -0.85, 0.17, 0.97798, 4, 47, 34.04, 66.47, 0.00272, 48, 11.7, 66.47, 0.00045, 49, -11.22, 66.47, 0.02285, 46, -1.28, 6.66, 0.97398, 4, 47, 39.96, 66.47, + 0.00033, 48, 17.62, 66.47, 0.00011, 49, -5.3, 66.47, 0.0498, 46, -1.66, 12.57, 0.94976, 3, 47, -16.24, -2.91, 0.33437, 48, -38.58, -2.91, 0.0002, 46, 71.23, -39, 0.66543, 3, 47, + -14.53, 1.37, 0.32645, 48, -36.87, 1.37, 0.00078, 46, 66.85, -37.57, 0.67277, 4, 47, -12.36, 7.36, 0.307, 48, -34.7, 7.36, 0.00285, 49, -57.62, 7.36, 1e-05, 46, 60.73, -35.79, + 0.69014, 4, 47, -9.97, 11.91, 0.26477, 48, -32.31, 11.91, 0.00971, 49, -55.23, 11.91, 0.00027, 46, 56.04, -33.7, 0.72525, 4, 47, -6.21, 19.66, 0.19881, 48, -28.55, 19.66, 0.00959, + 49, -51.47, 19.66, 0.00132, 46, 48.05, -30.46, 0.79028, 4, 47, 24.46, 19.97, 0.10712, 48, 2.12, 19.97, 0.11704, 49, -20.8, 19.97, 0.11672, 46, 45.75, 0.12, 0.65912, 4, 47, 53.97, + 20.27, 0.00116, 48, 31.63, 20.27, 0.00313, 49, 8.71, 20.27, 0.2148, 46, 43.53, 29.55, 0.7809, 4, 47, 57.02, 12.2, 0.0001, 48, 34.68, 12.2, 0.00083, 49, 11.76, 12.2, 0.29942, 46, + 51.38, 33.12, 0.69965, 3, 48, 36.75, 5.8, 0.00034, 49, 13.82, 5.8, 0.378, 46, 57.63, 35.6, 0.62166, 3, 48, 38.1, 1.08, 0.00022, 49, 15.18, 1.08, 0.45653, 46, 62.25, 37.26, 0.54325, + 3, 48, 39.36, -3.36, 0.00015, 49, 16.43, -3.36, 0.53433, 46, 66.61, 38.8, 0.46552, 4, 47, 23.97, 12.06, 0.12565, 48, 1.63, 12.06, 0.24275, 49, -21.29, 12.06, 0.14114, 46, 53.68, + 0.15, 0.49046, 4, 47, 23.54, 6.58, 0.11007, 48, 1.2, 6.58, 0.47217, 49, -21.72, 6.58, 0.12893, 46, 59.17, 0.08, 0.28883, 4, 47, 23.28, 1.22, 0.10884, 48, 0.94, 1.22, 0.60558, 49, + -21.98, 1.22, 0.12698, 46, 64.53, 0.17, 0.1586, 4, 47, 23.11, -3.14, 0.10666, 48, 0.77, -3.14, 0.70334, 49, -22.15, -3.14, 0.12133, 46, 68.89, 0.28, 0.06866, 4, 47, 6.87, 19.8, + 0.29773, 48, -15.47, 19.8, 0.06022, 49, -38.39, 19.8, 0.01488, 46, 47.07, -17.41, 0.62717, 4, 47, 3.75, 11.97, 0.44072, 48, -18.59, 11.97, 0.09602, 49, -41.51, 11.97, 0.01064, 46, + 55.08, -20.02, 0.45261, 4, 47, 1.91, 7.05, 0.66419, 48, -20.42, 7.05, 0.11803, 49, -43.35, 7.05, 0.002, 46, 60.11, -21.53, 0.21579, 4, 47, 0.03, 1.31, 0.77187, 48, -22.31, 1.31, + 0.12352, 49, -45.23, 1.31, 0.00043, 46, 65.96, -23.04, 0.10418, 4, 47, -1.27, -2.99, 0.84303, 48, -23.61, -2.99, 0.11246, 49, -46.53, -2.99, 0.00018, 46, 70.34, -24.05, 0.04432, 4, + 47, -1.8, 26.91, 0.12744, 48, -24.14, 26.91, 0.00959, 49, -47.06, 26.91, 0.0076, 46, 40.54, -26.53, 0.85537, 4, 47, 24.96, 27.56, 0.0719, 48, 2.62, 27.56, 0.03639, 49, -20.3, 27.56, + 0.07572, 46, 38.14, 0.13, 0.81598, 4, 47, 50.76, 27.7, 0.00702, 48, 28.42, 27.7, 0.00523, 49, 5.5, 27.7, 0.131, 46, 36.32, 25.87, 0.85675, 4, 47, 3.83, 36.15, 0.04791, 48, -18.51, + 36.15, 0.00352, 49, -41.43, 36.15, 0.00803, 46, 30.95, -21.51, 0.94054, 4, 47, 25.65, 37.95, 0.02662, 48, 3.31, 37.95, 0.00775, 49, -19.61, 37.95, 0.02767, 46, 27.73, 0.14, 0.93795, + 4, 47, 46.64, 37.25, 0.00753, 48, 24.3, 37.25, 0.00227, 49, 1.38, 37.25, 0.04846, 46, 27.06, 21.14, 0.94174, 4, 47, 41.75, 20.15, 0.01306, 48, 19.41, 20.15, 0.04509, 49, -3.51, + 20.15, 0.32134, 46, 44.45, 17.37, 0.62052, 4, 47, 43.25, 12.14, 0.00895, 48, 20.91, 12.14, 0.07841, 49, -2.01, 12.14, 0.49568, 46, 52.34, 19.39, 0.41696, 4, 47, 44.35, 6.12, 0.0015, + 48, 22.01, 6.12, 0.09572, 49, -0.91, 6.12, 0.67014, 46, 58.27, 20.88, 0.23264, 4, 47, 45.08, 1.14, 0.00025, 48, 22.74, 1.14, 0.108, 49, -0.18, 1.14, 0.76841, 46, 63.2, 21.93, + 0.12334, 4, 47, 45.58, -3.27, 0.0001, 48, 23.24, -3.27, 0.10937, 49, 0.32, -3.27, 0.83473, 46, 67.56, 22.71, 0.0558, 4, 47, 40.33, 27.64, 0.02381, 48, 18, 27.64, 0.02132, 49, -4.93, + 27.64, 0.16866, 46, 37.06, 15.47, 0.78621, 4, 47, 9.71, 27.19, 0.16236, 48, -12.63, 27.19, 0.02827, 49, -35.55, 27.19, 0.02548, 46, 39.51, -15.06, 0.78388, 4, 47, 15.01, 19.88, + 0.23124, 48, -7.33, 19.88, 0.11759, 49, -30.25, 19.88, 0.04679, 46, 46.46, -9.29, 0.60438, 4, 47, 13.78, 12.01, 0.29354, 48, -8.56, 12.01, 0.19873, 49, -31.48, 12.01, 0.04427, 46, + 54.39, -10.01, 0.46346, 4, 47, 12.95, 6.81, 0.37869, 48, -9.39, 6.81, 0.34588, 49, -32.31, 6.81, 0.01968, 46, 59.63, -10.5, 0.25575, 4, 47, 11.95, 1.27, 0.42861, 48, -10.39, 1.27, + 0.42317, 49, -33.31, 1.27, 0.01297, 46, 65.23, -11.14, 0.13524, 4, 47, 11.29, -3.07, 0.46725, 48, -11.05, -3.07, 0.46538, 49, -33.97, -3.07, 0.0097, 46, 69.59, -11.51, 0.05768, 4, + 47, -0.59, 19.72, 0.32338, 48, -22.92, 19.72, 0.02881, 49, -45.85, 19.72, 0.003, 46, 47.63, -24.85, 0.64481, 4, 47, -3.82, 11.93, 0.4391, 48, -26.16, 11.93, 0.03345, 49, -49.08, + 11.93, 0.00177, 46, 55.61, -27.57, 0.52567, 4, 47, -5.89, 7.22, 0.65491, 48, -28.23, 7.22, 0.02015, 49, -51.15, 7.22, 0.00017, 46, 60.45, -29.33, 0.32476, 4, 47, -8.13, 1.34, + 0.75275, 48, -30.47, 1.34, 0.01396, 49, -53.39, 1.34, 1e-05, 46, 66.46, -31.18, 0.23328, 3, 47, -9.63, -2.94, 0.80478, 48, -31.96, -2.94, 0.00944, 46, 70.83, -32.39, 0.18578, 4, 47, + 33.3, 20.06, 0.04166, 48, 10.96, 20.06, 0.10286, 49, -11.96, 20.06, 0.24857, 46, 45.08, 8.94, 0.60691, 4, 47, 33.97, 12.1, 0.03817, 48, 11.63, 12.1, 0.17811, 49, -11.29, 12.1, + 0.32257, 46, 52.98, 10.13, 0.46115, 4, 47, 34.3, 6.34, 0.01531, 48, 11.97, 6.34, 0.31162, 49, -10.96, 6.34, 0.40881, 46, 58.71, 10.84, 0.26426, 4, 47, 34.72, 1.18, 0.00955, 48, + 12.39, 1.18, 0.39036, 49, -10.54, 1.18, 0.4561, 46, 63.83, 11.59, 0.14399, 4, 47, 34.8, -3.2, 0.00731, 48, 12.46, -3.2, 0.44195, 49, -10.46, -3.2, 0.48699, 46, 68.2, 11.96, 0.06375, + 4, 47, 48.21, 20.21, 0.00241, 48, 25.88, 20.21, 0.01421, 49, 2.95, 20.21, 0.36275, 46, 43.96, 23.82, 0.62063, 4, 47, 50.54, 12.17, 0.00034, 48, 28.2, 12.17, 0.01068, 49, 5.28, 12.17, + 0.5453, 46, 51.83, 26.66, 0.44368, 4, 47, 52.52, 5.95, 2e-05, 48, 30.19, 5.95, 0.00999, 49, 7.26, 5.95, 0.66888, 46, 57.92, 29.04, 0.32111, 3, 48, 31.52, 1.11, 0.01011, 49, 8.6, + 1.11, 0.76268, 46, 62.66, 30.7, 0.22721, 3, 48, 32.61, -3.32, 0.00863, 49, 9.68, -3.32, 0.83296, 46, 67.01, 32.06, 0.15841, 4, 47, -9.21, 7.29, 0.52586, 48, -31.55, 7.29, 0.0057, 49, + -54.47, 7.29, 1e-05, 46, 60.59, -32.65, 0.46842, 3, 47, -11.3, 1.36, 0.56698, 48, -33.64, 1.36, 0.00311, 46, 66.65, -34.34, 0.42991, 3, 47, -12.66, -2.93, 0.60013, 48, -35, -2.93, + 0.00167, 46, 71.01, -35.42, 0.39821, 4, 47, -5.46, -2.97, 0.89102, 48, -27.8, -2.97, 0.03888, 49, -50.72, -2.97, 1e-05, 46, 70.59, -28.24, 0.07008, 4, 47, -4.18, 1.33, 0.83362, 48, + -26.52, 1.33, 0.04645, 49, -49.44, 1.33, 3e-05, 46, 66.21, -27.24, 0.1199, 4, 47, -2.26, 7.14, 0.75973, 48, -24.6, 7.14, 0.05134, 49, -47.52, 7.14, 0.00026, 46, 60.29, -25.7, + 0.18867, 4, 47, 7.35, 6.93, 0.57235, 48, -14.98, 6.93, 0.23863, 49, -37.91, 6.93, 0.00435, 46, 59.87, -16.09, 0.18467, 4, 47, 5.9, 1.29, 0.63011, 48, -16.44, 1.29, 0.25936, 49, + -39.36, 1.29, 0.00243, 46, 65.6, -17.18, 0.1081, 4, 47, 4.86, -3.03, 0.68809, 48, -17.48, -3.03, 0.26358, 49, -40.4, -3.03, 0.00168, 46, 69.98, -17.93, 0.04665, 4, 47, 17.76, 6.7, + 0.22941, 48, -4.58, 6.7, 0.4879, 49, -27.5, 6.7, 0.05094, 46, 59.42, -5.7, 0.23175, 4, 47, 17.11, 1.25, 0.24296, 48, -5.23, 1.25, 0.56856, 49, -28.15, 1.25, 0.04581, 46, 64.91, + -5.99, 0.14267, 4, 47, 16.71, -3.1, 0.25552, 48, -5.62, -3.1, 0.64168, 49, -28.55, -3.1, 0.03992, 46, 69.27, -6.1, 0.06288, 4, 47, 28.55, -3.17, 0.03276, 48, 6.22, -3.17, 0.62363, + 49, -16.71, -3.17, 0.27658, 46, 68.57, 5.72, 0.06703, 4, 47, 28.55, 1.2, 0.0367, 48, 6.21, 1.21, 0.54514, 49, -16.71, 1.21, 0.26974, 46, 64.21, 5.43, 0.14843, 4, 47, 28.71, 6.47, + 0.04075, 48, 6.37, 6.47, 0.46337, 49, -16.55, 6.47, 0.25797, 46, 58.95, 5.25, 0.23791, 4, 47, 39.28, 6.23, 0.00305, 48, 16.94, 6.24, 0.20572, 49, -5.98, 6.24, 0.59307, 46, 58.49, + 15.81, 0.19817, 4, 47, 39.51, 1.16, 0.00156, 48, 17.17, 1.16, 0.23228, 49, -5.75, 1.16, 0.64631, 46, 63.54, 16.37, 0.11984, 4, 47, 40.07, -3.24, 0.00112, 48, 17.74, -3.24, 0.25061, + 49, -5.19, -3.24, 0.69415, 46, 67.89, 17.22, 0.05412, 4, 47, 50.23, -3.29, 0, 48, 27.89, -3.29, 0.036, 49, 4.97, -3.29, 0.88144, 46, 67.29, 27.36, 0.08255, 4, 47, 49.51, 1.13, 2e-05, + 48, 27.17, 1.13, 0.03826, 49, 4.25, 1.13, 0.81357, 46, 62.92, 26.35, 0.14816, 4, 47, 48.55, 6.03, 0.00027, 48, 26.22, 6.03, 0.03577, 49, 3.29, 6.03, 0.72045, 46, 58.09, 25.08, + 0.24351, 4, 47, 47.11, 12.16, 0.00156, 48, 24.77, 12.16, 0.03311, 49, 1.85, 12.16, 0.61234, 46, 52.07, 23.24, 0.35299, 4, 47, 53.99, 12.19, 1e-05, 48, 31.66, 12.19, 0.00266, 49, + 8.73, 12.19, 0.47035, 46, 51.59, 30.11, 0.52698, 3, 48, 33.02, 5.88, 0.00213, 49, 10.1, 5.88, 0.54797, 46, 57.79, 31.88, 0.4499, 3, 48, 34.54, 1.1, 0.0018, 49, 11.62, 1.1, 0.63247, + 46, 62.47, 33.7, 0.36573, 3, 48, 35.58, -3.34, 0.00152, 49, 12.66, -3.34, 0.71351, 46, 66.83, 35.03, 0.28497, 3, 47, -17.72, -6.71, 0.31251, 48, -40.05, -6.71, 1e-05, 46, 75.11, + -40.22, 0.68748, 3, 47, -13.83, -6.56, 0.64755, 48, -36.17, -6.56, 0.00038, 46, 74.72, -36.36, 0.35207, 3, 47, -10.89, -6.57, 0.83546, 48, -33.23, -6.57, 0.00245, 46, 74.53, -33.42, + 0.1621, 3, 47, -6.58, -6.39, 0.9505, 48, -28.91, -6.39, 0.02598, 46, 74.07, -29.13, 0.02352, 4, 47, -2.51, -6.41, 0.9185, 48, -24.85, -6.41, 0.06986, 49, -47.77, -6.41, 1e-05, 46, + 73.83, -25.07, 0.01163, 4, 47, 3.97, -6.54, 0.7539, 48, -18.37, -6.54, 0.23416, 49, -41.29, -6.54, 0.00019, 46, 73.54, -18.6, 0.01175, 4, 47, 10.73, -6.3, 0.4945, 48, -11.61, -6.29, + 0.48778, 49, -34.53, -6.29, 0.00242, 46, 72.85, -11.87, 0.01529, 4, 47, 16.42, -6.31, 0.24467, 48, -5.92, -6.31, 0.71967, 49, -28.84, -6.31, 0.01969, 46, 72.5, -6.18, 0.01597, 4, 47, + 22.88, -6.46, 0.08074, 48, 0.54, -6.46, 0.81091, 49, -22.38, -6.46, 0.09131, 46, 72.22, 0.27, 0.01704, 4, 47, 28.51, -6.42, 0.01543, 48, 6.17, -6.42, 0.70591, 49, -16.75, -6.42, + 0.26031, 46, 71.82, 5.89, 0.01836, 4, 47, 34.97, -6.29, 0.00164, 48, 12.64, -6.29, 0.47309, 49, -10.29, -6.29, 0.50689, 46, 71.27, 12.33, 0.01837, 4, 47, 40.42, -6.47, 0.0001, 48, + 18.08, -6.47, 0.23958, 49, -4.84, -6.47, 0.7461, 46, 71.1, 17.78, 0.01421, 4, 47, 45.89, -6.5, 0, 48, 23.56, -6.5, 0.08431, 49, 0.63, -6.5, 0.9025, 46, 70.76, 23.24, 0.01319, 3, 48, + 28.36, -6.37, 0.01867, 49, 5.43, -6.37, 0.94991, 46, 70.33, 28.02, 0.03142, 3, 48, 33.31, -6.41, 0.00244, 49, 10.39, -6.41, 0.88788, 46, 70.05, 32.97, 0.10968, 3, 48, 36.23, -6.46, + 0.00046, 49, 13.31, -6.46, 0.80558, 46, 69.91, 35.88, 0.19395, 3, 48, 40.12, -6.31, 1e-05, 49, 17.2, -6.31, 0.61334, 46, 69.5, 39.76, 0.38665, 4, 47, 0.4, -6.47, 0.86555, 48, -21.94, + -6.47, 0.12959, 49, -44.86, -6.47, 1e-05, 46, 73.7, -22.16, 0.00485, 3, 47, -9.01, -6.49, 0.93616, 48, -31.35, -6.49, 0.00716, 46, 74.33, -31.55, 0.05668, 3, 47, -16.19, -6.65, + 0.44814, 48, -38.53, -6.65, 3e-05, 46, 74.96, -38.7, 0.55184, 4, 47, 7.48, -6.41, 0.63866, 48, -14.86, -6.41, 0.354, 49, -37.78, -6.41, 0.00037, 46, 73.18, -15.1, 0.00698, 4, 47, + 13.4, -6.3, 0.36468, 48, -8.94, -6.3, 0.62161, 49, -31.86, -6.3, 0.00581, 46, 72.69, -9.2, 0.0079, 4, 47, 19.68, -6.38, 0.14684, 48, -2.65, -6.38, 0.80383, 49, -25.58, -6.38, + 0.04176, 46, 72.36, -2.92, 0.00757, 4, 47, 25.54, -6.44, 0.03499, 48, 3.2, -6.44, 0.79745, 49, -19.72, -6.44, 0.15898, 46, 72.03, 2.92, 0.00858, 4, 47, 31.96, -6.35, 0.00417, 48, + 9.62, -6.35, 0.60634, 49, -13.3, -6.35, 0.37927, 46, 71.53, 9.32, 0.01022, 4, 47, 37.62, -6.38, 0.00021, 48, 15.28, -6.38, 0.35157, 49, -7.64, -6.38, 0.63918, 46, 71.18, 14.97, + 0.00904, 4, 47, 43.32, -6.48, 1e-05, 48, 20.98, -6.48, 0.14688, 49, -1.94, -6.48, 0.84692, 46, 70.92, 20.67, 0.00619, 3, 48, 25.81, -6.44, 0.03919, 49, 2.89, -6.44, 0.95006, 46, + 70.56, 25.48, 0.01074, 3, 48, 30.92, -6.39, 0.00591, 49, 7.99, -6.39, 0.9433, 46, 70.18, 30.58, 0.05079, 3, 48, 38.04, -6.39, 5e-05, 49, 15.12, -6.39, 0.72615, 46, 69.72, 37.69, + 0.2738 + ], + "hull": 46, + "edges": [ + 80, 82, 90, 0, 10, 8, 70, 72, 72, 74, 74, 76, 4, 6, 6, 8, 76, 78, 78, 80, 4, 2, 2, 0, 72, 92, 74, 94, 92, 94, 76, 96, 94, 96, 78, 98, 96, 98, 80, 100, 98, 100, 82, 84, 84, 86, 86, + 88, 88, 90, 0, 104, 2, 106, 104, 106, 4, 108, 106, 108, 6, 110, 108, 110, 8, 112, 110, 112, 10, 12, 102, 114, 114, 116, 116, 118, 118, 120, 122, 124, 124, 126, 126, 128, 128, 130, + 132, 100, 134, 102, 136, 104, 84, 138, 138, 132, 86, 140, 140, 134, 138, 140, 88, 142, 142, 136, 140, 142, 144, 146, 146, 148, 148, 150, 150, 152, 134, 154, 154, 136, 144, 154, 132, + 156, 156, 134, 122, 156, 102, 158, 158, 122, 114, 160, 160, 124, 158, 160, 160, 162, 162, 164, 164, 166, 100, 168, 168, 122, 98, 170, 170, 124, 168, 170, 170, 172, 172, 174, 174, + 176, 102, 178, 178, 144, 114, 180, 180, 146, 178, 180, 180, 182, 182, 184, 184, 186, 104, 188, 188, 144, 188, 190, 190, 192, 192, 194, 194, 196, 96, 198, 198, 172, 94, 200, 200, 174, + 198, 200, 92, 202, 202, 176, 200, 202, 64, 66, 58, 60, 130, 204, 204, 176, 128, 206, 206, 174, 204, 206, 126, 208, 208, 172, 206, 208, 126, 210, 210, 162, 128, 212, 212, 164, 210, + 212, 130, 214, 214, 166, 212, 214, 116, 216, 216, 162, 118, 218, 218, 164, 216, 218, 120, 220, 220, 166, 218, 220, 120, 222, 222, 186, 118, 224, 224, 184, 222, 224, 116, 226, 226, + 182, 224, 226, 148, 228, 228, 182, 150, 230, 230, 184, 228, 230, 152, 232, 232, 186, 230, 232, 152, 234, 234, 196, 150, 236, 236, 194, 234, 236, 148, 238, 238, 192, 236, 238, 146, + 240, 240, 190, 238, 240, 106, 242, 242, 190, 108, 244, 244, 192, 242, 244, 110, 246, 246, 194, 244, 246, 112, 248, 248, 196, 246, 248, 16, 18, 70, 250, 250, 92, 66, 252, 252, 202, + 64, 254, 254, 176, 252, 254, 60, 256, 256, 204, 58, 258, 258, 130, 256, 258, 54, 260, 260, 214, 50, 262, 262, 166, 46, 264, 264, 220, 42, 266, 266, 120, 38, 268, 268, 222, 34, 270, + 270, 186, 30, 272, 272, 232, 26, 274, 274, 152, 22, 276, 276, 234, 18, 278, 278, 196, 16, 280, 280, 248, 278, 280, 12, 282, 282, 112, 258, 284, 284, 260, 54, 56, 56, 58, 284, 56, + 254, 286, 286, 256, 60, 62, 62, 64, 286, 62, 250, 288, 288, 252, 66, 68, 68, 70, 288, 68, 260, 290, 290, 262, 50, 52, 52, 54, 290, 52, 262, 292, 292, 264, 46, 48, 48, 50, 292, 48, + 264, 294, 294, 266, 42, 44, 44, 46, 294, 44, 266, 296, 296, 268, 38, 40, 40, 42, 296, 40, 268, 298, 298, 270, 34, 36, 36, 38, 298, 36, 270, 300, 300, 272, 30, 32, 32, 34, 300, 32, + 272, 302, 302, 274, 26, 28, 28, 30, 302, 28, 274, 304, 304, 276, 22, 24, 24, 26, 304, 24, 276, 306, 306, 278, 18, 20, 20, 22, 306, 20, 280, 308, 308, 282, 12, 14, 14, 16, 308, 14 + ], + "width": 87.05882352941177, + "height": 80.0, + "path": "summer-as.ear-left-bubble", + "x": 0.470588235294116, + "y": 0.0 + } + }, + "ear-left-dot-01": { + "ear-left-dot": {"x": 0.8847058823529402, "y": 0.8347058823529402, "rotation": -0.95, "width": 16.47058823529412, "height": 16.47058823529412, "path": "summer-as.ear-left-dot"} + }, + "ear-left-dot-02": { + "ear-left-dot": {"x": 0.8847058823529402, "y": 0.8347058823529402, "rotation": -0.95, "width": 16.47058823529412, "height": 16.47058823529412, "path": "summer-as.ear-left-dot"} + }, + "ear-left-dot-03": { + "ear-left-dot": {"x": 0.8847058823529402, "y": 0.8347058823529402, "rotation": -0.95, "width": 16.47058823529412, "height": 16.47058823529412, "path": "summer-as.ear-left-dot"} + }, + "ear-left-dot-04": { + "ear-left-dot": {"x": 0.8847058823529402, "y": 0.8347058823529402, "rotation": -0.95, "width": 16.47058823529412, "height": 16.47058823529412, "path": "summer-as.ear-left-dot"} + }, + "ear-left-dot-05": { + "ear-left-dot": {"x": 0.8847058823529402, "y": 0.8347058823529402, "rotation": -0.95, "width": 16.47058823529412, "height": 16.47058823529412, "path": "summer-as.ear-left-dot"} + }, + "ear-left-dot-06": { + "ear-left-dot": {"x": 0.8847058823529402, "y": 0.8347058823529402, "rotation": -0.95, "width": 16.47058823529412, "height": 16.47058823529412, "path": "summer-as.ear-left-dot"} + }, + "ear-left-dot-07": { + "ear-left-dot": {"x": 0.8847058823529402, "y": 0.8347058823529402, "rotation": -0.95, "width": 16.47058823529412, "height": 16.47058823529412, "path": "summer-as.ear-left-dot"} + }, + "ear-left-dot-08": { + "ear-left-dot": {"x": 0.8847058823529402, "y": 0.8347058823529402, "rotation": -0.95, "width": 16.47058823529412, "height": 16.47058823529412, "path": "summer-as.ear-left-dot"} + }, + "ear-left-dot-09": { + "ear-left-dot": {"x": 0.8847058823529402, "y": 0.8347058823529402, "rotation": -0.95, "width": 16.47058823529412, "height": 16.47058823529412, "path": "summer-as.ear-left-dot"} + }, + "ear-left-dot-10": { + "ear-left-dot": {"x": 0.8847058823529402, "y": 0.8347058823529402, "rotation": -0.95, "width": 16.47058823529412, "height": 16.47058823529412, "path": "summer-as.ear-left-dot"} + }, + "ear-left-dot-11": { + "ear-left-dot": {"x": 0.8847058823529402, "y": 0.8347058823529402, "rotation": -0.95, "width": 16.47058823529412, "height": 16.47058823529412, "path": "summer-as.ear-left-dot"} + }, + "ear-left-dot-12": { + "ear-left-dot": {"x": 0.8847058823529402, "y": 0.8347058823529402, "rotation": -0.95, "width": 16.47058823529412, "height": 16.47058823529412, "path": "summer-as.ear-left-dot"} + }, + "ear-left-under": { + "ear-left-under": {"x": 84.58058823529412, "y": -22.60529411764706, "rotation": -90, "width": 127.05882352941177, "height": 216.47058823529412, "path": "summer-as.ear-left-under"} + }, + "ear-left-upper": { + "ear-left-upper": {"x": 86.34529411764706, "y": -23.664117647058827, "rotation": -90, "width": 143.52941176470588, "height": 230.58823529411765, "path": "summer-as.ear-left-upper"} + }, + "ear-right-bubble": { + "ear-right-bubble": { + "type": "mesh", + "uvs": [ + 0.93928, 0.50958, 0.95558, 0.59885, 0.96791, 0.66638, 0.98006, 0.73289, 1, 0.84205, 1, 0.89818, 1, 0.9625, 0.9567, 0.9625, 0.9208, 0.9625, 0.88771, 0.9625, 0.83969, 0.9625, 0.79967, + 0.9625, 0.76574, 0.9625, 0.73418, 0.9625, 0.69508, 0.9625, 0.6661, 0.9625, 0.6319, 0.9625, 0.6046, 0.9625, 0.57454, 0.9625, 0.53755, 0.9625, 0.50387, 0.9625, 0.47341, 0.9625, + 0.44466, 0.9625, 0.41233, 0.9625, 0.37317, 0.9625, 0.33787, 0.9625, 0.30333, 0.9625, 0.2648, 0.9625, 0.21937, 0.9625, 0.17434, 0.9625, 0.12959, 0.9625, 0.08769, 0.9625, 0, 0.9625, + 0.02085, 0.89779, 0.04055, 0.83664, 0.06626, 0.75682, 0.08854, 0.68766, 0.11527, 0.60468, 0.13788, 0.53451, 0.35753, 0.0375, 0.43128, 0.0375, 0.52161, 0.0375, 0.60662, 0.0375, + 0.67954, 0.0375, 0.54109, 0.5336, 0.30907, 0.53412, 0.75362, 0.52077, 0.84707, 0.51514, 0.2081, 0.53435, 0.42115, 0.53387, 0.64269, 0.52747, 0.1892, 0.60156, 0.3018, 0.60447, + 0.41972, 0.60346, 0.54053, 0.60135, 0.64648, 0.59785, 0.76151, 0.59644, 0.87262, 0.58988, 0.16806, 0.67676, 0.29497, 0.67061, 0.41838, 0.66857, 0.54, 0.66508, 0.65011, 0.66538, + 0.7681, 0.65967, 0.89666, 0.66021, 0.14733, 0.75044, 0.28705, 0.74721, 0.41688, 0.74143, 0.53942, 0.73556, 0.6538, 0.73393, 0.7757, 0.7326, 0.91933, 0.7265, 0.12337, 0.83566, 0.2782, + 0.83283, 0.4151, 0.82771, 0.53871, 0.82207, 0.65852, 0.82169, 0.7847, 0.8189, 0.95379, 0.82732, 0.97627, 0.89309, 0.79208, 0.88971, 0.66236, 0.89294, 0.5381, 0.89586, 0.41375, + 0.89349, 0.2717, 0.89571, 0.10571, 0.89844, 0.53197, 0.30141, 0.39415, 0.1884, 0.65961, 0.2117, 0.25473, 0.53425, 0.24202, 0.60293, 0.22911, 0.6738, 0.21379, 0.7489, 0.19729, + 0.83431, 0.18704, 0.8971, 0.36352, 0.534, 0.36013, 0.60397, 0.35748, 0.66957, 0.35288, 0.74428, 0.34802, 0.83022, 0.34383, 0.89458, 0.48024, 0.53373, 0.47847, 0.60244, 0.47433, + 0.66696, 0.47563, 0.73861, 0.47402, 0.82502, 0.47337, 0.89463, 0.58955, 0.53067, 0.59344, 0.5996, 0.59605, 0.66523, 0.5961, 0.73475, 0.60032, 0.82187, 0.60296, 0.89434, 0.69391, + 0.52438, 0.69915, 0.59721, 0.70691, 0.66263, 0.71206, 0.7333, 0.71954, 0.82034, 0.72813, 0.8913, 0.80125, 0.5179, 0.81428, 0.59333, 0.8348, 0.65995, 0.84793, 0.72953, 0.87862, + 0.82358, 0.89305, 0.89156, 0.19669, 0.67537, 0.17782, 0.74974, 0.1594, 0.835, 0.1429, 0.89783, 0.26012, 0.6723, 0.25017, 0.74806, 0.23685, 0.83359, 0.22589, 0.89647, 0.30659, + 0.89517, 0.3131, 0.83153, 0.31569, 0.74593, 0.32231, 0.67016, 0.38717, 0.66908, 0.38553, 0.74282, 0.38068, 0.829, 0.37648, 0.89407, 0.44462, 0.89408, 0.44322, 0.82643, 0.44458, + 0.7401, 0.44621, 0.66777, 0.50711, 0.66602, 0.50646, 0.73714, 0.50582, 0.82357, 0.50482, 0.89523, 0.57134, 0.89508, 0.5687, 0.82197, 0.56865, 0.73514, 0.5654, 0.66515, 0.62192, + 0.6653, 0.6236, 0.73436, 0.62525, 0.8218, 0.62839, 0.89374, 0.69427, 0.89215, 0.76244, 0.89045, 0.84047, 0.89059, 0.93306, 0.89229, 0.91732, 0.8255, 0.82617, 0.82097, 0.75013, + 0.81967, 0.6863, 0.82108, 0.68017, 0.73364, 0.74166, 0.73297, 0.80979, 0.73115, 0.88285, 0.72805, 0.86581, 0.66008, 0.79931, 0.6598, 0.73613, 0.66121, 0.67214, 0.66431, 0.09776, + 0.92671, 0.13724, 0.92534, 0.1817, 0.92459, 0.22313, 0.92439, 0.26892, 0.92268, 0.30526, 0.92265, 0.34139, 0.92236, 0.3751, 0.92252, 0.41313, 0.92351, 0.44464, 0.92289, 0.47339, + 0.92339, 0.5044, 0.9248, 0.53787, 0.92389, 0.57268, 0.92341, 0.60366, 0.9233, 0.62995, 0.92432, 0.66398, 0.92316, 0.69464, 0.92383, 0.73085, 0.92333, 0.76403, 0.92521, 0.79572, + 0.92461, 0.84011, 0.92404, 0.89075, 0.92209, 0.92774, 0.92274, 0.96706, 0.92576 + ], + "triangles": [ + 166, 63, 70, 116, 171, 166, 165, 115, 116, 77, 70, 167, 163, 166, 70, 163, 70, 77, 117, 116, 166, 117, 166, 163, 77, 167, 162, 164, 165, 116, 164, 116, 117, 76, 69, 165, 76, 165, + 164, 162, 122, 123, 80, 77, 162, 158, 163, 77, 158, 77, 80, 159, 162, 123, 80, 162, 159, 118, 117, 163, 118, 163, 158, 124, 123, 161, 159, 123, 124, 157, 164, 117, 157, 117, 118, 81, + 76, 164, 81, 164, 157, 195, 159, 124, 196, 124, 160, 195, 124, 196, 189, 81, 157, 191, 118, 158, 190, 157, 118, 190, 118, 191, 189, 157, 190, 159, 193, 80, 194, 159, 195, 194, 193, + 159, 192, 158, 80, 192, 80, 193, 191, 158, 192, 15, 189, 190, 14, 190, 191, 15, 190, 14, 13, 191, 192, 14, 191, 13, 12, 192, 193, 13, 192, 12, 11, 193, 194, 12, 193, 11, 10, 11, 194, + 9, 194, 195, 10, 194, 9, 8, 195, 196, 9, 195, 8, 8, 196, 7, 151, 109, 110, 68, 152, 151, 146, 145, 68, 104, 103, 146, 155, 154, 69, 155, 69, 76, 111, 110, 154, 111, 154, 155, 150, + 151, 110, 150, 110, 111, 68, 151, 150, 75, 146, 68, 75, 68, 150, 147, 104, 146, 147, 146, 75, 105, 143, 104, 105, 104, 147, 142, 67, 143, 142, 143, 105, 74, 67, 142, 156, 155, 76, + 156, 76, 81, 106, 141, 142, 74, 142, 141, 83, 74, 141, 112, 111, 155, 112, 155, 156, 105, 106, 142, 149, 150, 111, 149, 111, 112, 148, 105, 147, 106, 105, 148, 82, 75, 150, 82, 148, + 147, 147, 75, 82, 150, 149, 82, 182, 141, 106, 187, 112, 156, 183, 106, 148, 182, 106, 183, 186, 149, 112, 186, 112, 187, 182, 181, 83, 182, 83, 141, 185, 148, 82, 185, 82, 149, 185, + 149, 186, 188, 156, 81, 188, 81, 189, 187, 156, 188, 184, 183, 148, 184, 148, 185, 22, 182, 183, 181, 182, 22, 23, 181, 22, 21, 183, 184, 22, 183, 21, 20, 21, 184, 19, 184, 185, 20, + 184, 19, 18, 186, 187, 19, 185, 186, 18, 19, 186, 17, 187, 188, 18, 187, 17, 16, 188, 189, 17, 188, 16, 16, 189, 15, 143, 144, 104, 110, 153, 154, 151, 152, 109, 68, 145, 61, 68, 61, + 152, 146, 103, 145, 83, 139, 74, 181, 140, 83, 23, 180, 181, 138, 137, 67, 98, 136, 97, 98, 97, 138, 135, 59, 136, 135, 136, 98, 66, 59, 135, 130, 129, 66, 74, 138, 67, 139, 98, 138, + 139, 138, 74, 99, 135, 98, 99, 98, 139, 134, 66, 135, 134, 135, 99, 73, 130, 66, 73, 66, 134, 131, 92, 130, 131, 130, 73, 93, 92, 131, 140, 99, 139, 140, 139, 83, 100, 134, 99, 100, + 99, 140, 133, 73, 134, 133, 134, 100, 84, 131, 73, 84, 73, 133, 132, 93, 131, 132, 131, 84, 94, 127, 93, 94, 93, 132, 128, 127, 94, 179, 133, 100, 180, 100, 140, 179, 100, 180, 178, + 84, 133, 178, 133, 179, 177, 132, 84, 177, 84, 178, 180, 140, 181, 176, 94, 132, 176, 132, 177, 175, 128, 94, 175, 94, 176, 174, 85, 128, 174, 128, 175, 30, 173, 174, 31, 173, 30, + 29, 174, 175, 30, 174, 29, 28, 175, 176, 29, 175, 28, 27, 176, 177, 28, 176, 27, 26, 177, 178, 27, 177, 26, 25, 178, 179, 26, 178, 25, 24, 179, 180, 25, 179, 24, 24, 180, 23, 79, 4, + 5, 79, 78, 4, 6, 79, 5, 123, 168, 161, 160, 78, 79, 124, 161, 160, 7, 196, 197, 196, 160, 197, 197, 160, 79, 160, 161, 78, 7, 197, 6, 162, 167, 122, 6, 197, 79, 85, 72, 128, 173, 32, + 85, 31, 32, 173, 173, 85, 174, 85, 32, 33, 66, 129, 59, 167, 170, 121, 167, 121, 122, 70, 63, 170, 70, 170, 167, 166, 171, 63, 123, 122, 168, 130, 91, 129, 92, 91, 130, 122, 169, + 168, 127, 65, 126, 72, 65, 127, 92, 125, 91, 161, 168, 71, 122, 121, 169, 170, 120, 121, 91, 90, 129, 78, 161, 71, 3, 78, 71, 71, 64, 2, 52, 129, 90, 59, 129, 52, 67, 60, 143, 138, + 97, 137, 170, 63, 56, 171, 56, 63, 169, 121, 57, 33, 34, 85, 72, 35, 65, 34, 35, 72, 125, 51, 91, 35, 36, 65, 91, 51, 90, 36, 37, 58, 58, 37, 51, 71, 2, 3, 64, 1, 2, 1, 64, 57, 57, + 0, 1, 87, 39, 40, 88, 42, 43, 88, 86, 41, 88, 41, 42, 0, 88, 43, 47, 88, 0, 86, 88, 113, 47, 119, 88, 119, 46, 88, 46, 113, 88, 50, 86, 113, 107, 86, 50, 44, 86, 107, 87, 41, 86, 41, + 87, 40, 101, 86, 44, 87, 86, 95, 101, 49, 86, 87, 38, 39, 49, 95, 86, 87, 95, 45, 87, 45, 89, 87, 89, 48, 87, 48, 38, 57, 47, 0, 120, 119, 47, 56, 46, 119, 56, 119, 120, 114, 113, + 46, 114, 46, 56, 55, 50, 113, 55, 113, 114, 108, 107, 50, 55, 108, 50, 54, 101, 44, 44, 107, 108, 54, 44, 108, 102, 49, 101, 102, 101, 54, 90, 48, 89, 53, 95, 49, 53, 49, 102, 96, + 45, 95, 96, 95, 53, 52, 89, 45, 52, 45, 96, 90, 89, 52, 171, 114, 56, 115, 114, 171, 172, 55, 114, 172, 114, 115, 54, 145, 102, 152, 54, 108, 61, 54, 152, 153, 109, 108, 55, 153, + 108, 152, 108, 109, 55, 62, 153, 172, 62, 55, 61, 145, 54, 102, 144, 53, 103, 102, 145, 103, 144, 102, 53, 137, 96, 60, 53, 144, 60, 137, 53, 96, 136, 52, 97, 96, 137, 97, 136, 96, + 69, 62, 172, 154, 153, 62, 110, 109, 153, 144, 103, 104, 143, 60, 144, 67, 137, 60, 120, 47, 57, 121, 120, 57, 64, 169, 57, 78, 3, 4, 51, 38, 48, 51, 48, 90, 37, 38, 51, 58, 51, 125, + 65, 36, 58, 120, 170, 56, 154, 62, 69, 116, 115, 171, 165, 172, 115, 69, 172, 165, 59, 52, 136, 126, 58, 125, 65, 58, 126, 168, 169, 64, 168, 64, 71, 85, 34, 72, 126, 125, 92, 93, + 126, 92, 127, 126, 93, 128, 72, 127 + ], + "vertices": [ + 1, 31, 39.72, 33.4, 1, 1, 31, 46.93, 34.38, 1, 1, 31, 52.37, 35.12, 1, 1, 31, 58.6, 36.08, 1, 4, 31, 66.62, 38.45, 0.9295, 36, 61.48, 0.37, 1e-05, 37, 40.07, 0.48, 0.00266, 38, 18.6, + 0.48, 0.06784, 4, 31, 70.87, 39.07, 0.79905, 36, 62.32, -3.84, 1e-05, 37, 40.92, -3.73, 0.00721, 38, 19.44, -3.73, 0.19373, 4, 31, 76.95, 40.59, 0.74731, 36, 64.15, -9.83, 0, 37, + 42.75, -9.72, 0.00973, 38, 21.27, -9.72, 0.24296, 4, 31, 76.59, 36.12, 0.54785, 36, 59.68, -9.71, 1e-05, 37, 38.27, -9.6, 0.02168, 38, 16.8, -9.6, 0.43046, 4, 31, 76.3, 32.42, + 0.43038, 36, 55.96, -9.61, 3e-05, 37, 34.56, -9.5, 0.03847, 38, 13.08, -9.5, 0.53112, 4, 31, 76.02, 29.01, 0.36035, 36, 52.54, -9.51, 9e-05, 37, 31.14, -9.41, 0.06275, 38, 9.66, + -9.41, 0.57681, 4, 31, 75.63, 24.06, 0.2889, 36, 47.58, -9.38, 0.00026, 37, 26.17, -9.27, 0.09917, 38, 4.7, -9.27, 0.61167, 4, 31, 75.3, 19.93, 0.22591, 36, 43.44, -9.26, 0.0007, 37, + 22.03, -9.16, 0.14876, 38, 0.56, -9.16, 0.62463, 4, 31, 75.15, 17.12, 0.17724, 36, 40.62, -9.26, 0.0017, 37, 19.22, -9.16, 0.21115, 38, -2.26, -9.16, 0.60991, 4, 31, 75.01, 14.5, + 0.14418, 36, 38, -9.26, 0.00385, 37, 16.6, -9.16, 0.28407, 38, -4.88, -9.16, 0.5679, 4, 31, 74.84, 11.26, 0.12448, 36, 34.76, -9.26, 0.00813, 37, 13.35, -9.16, 0.36326, 38, -8.12, + -9.16, 0.50413, 4, 31, 74.71, 8.86, 0.11438, 36, 32.35, -9.26, 0.016, 37, 10.95, -9.16, 0.44276, 38, -10.53, -9.16, 0.42686, 4, 31, 74.56, 6.02, 0.11006, 36, 29.51, -9.26, 0.02948, + 37, 8.11, -9.16, 0.51561, 38, -13.37, -9.16, 0.34486, 4, 31, 74.45, 3.76, 0.10858, 36, 27.25, -9.26, 0.05095, 37, 5.84, -9.16, 0.57474, 38, -15.63, -9.16, 0.26573, 4, 31, 74.31, + 1.27, 0.10802, 36, 24.75, -9.26, 0.08291, 37, 3.35, -9.16, 0.614, 38, -18.13, -9.16, 0.19506, 4, 31, 74.15, -1.8, 0.1074, 36, 21.68, -9.26, 0.12742, 37, 0.28, -9.16, 0.62906, 38, + -21.2, -9.16, 0.13612, 4, 31, 74.01, -4.59, 0.10634, 36, 18.89, -9.26, 0.18549, 37, -2.52, -9.16, 0.61812, 38, -23.99, -9.16, 0.09006, 4, 31, 73.87, -7.11, 0.10502, 36, 16.36, -9.26, + 0.25646, 37, -5.05, -9.16, 0.58221, 38, -26.52, -9.16, 0.05631, 4, 31, 73.75, -9.5, 0.10419, 36, 13.97, -9.26, 0.33753, 37, -7.43, -9.16, 0.52513, 38, -28.91, -9.16, 0.03316, 4, 31, + 73.61, -12.18, 0.10536, 36, 11.29, -9.26, 0.42349, 37, -10.12, -9.16, 0.45282, 38, -31.59, -9.16, 0.01833, 4, 31, 73.44, -15.42, 0.11098, 36, 8.04, -9.26, 0.50701, 37, -13.37, -9.16, + 0.37254, 38, -34.84, -9.16, 0.00948, 4, 31, 73.28, -18.35, 0.12436, 36, 5.11, -9.26, 0.57939, 37, -16.3, -9.16, 0.29168, 38, -37.77, -9.16, 0.00457, 4, 31, 73.13, -21.21, 0.149, 36, + 2.24, -9.26, 0.63222, 37, -19.16, -9.16, 0.21673, 38, -40.64, -9.16, 0.00205, 4, 31, 72.96, -24.4, 0.18726, 36, -0.96, -9.26, 0.65948, 37, -22.36, -9.16, 0.15241, 38, -43.84, -9.16, + 0.00085, 4, 31, 72.77, -28.17, 0.23866, 36, -4.73, -9.26, 0.65975, 37, -26.13, -9.16, 0.10126, 38, -47.61, -9.16, 0.00033, 4, 31, 72.57, -31.9, 0.29871, 36, -8.46, -9.26, 0.63741, + 37, -29.87, -9.16, 0.06376, 38, -51.34, -9.16, 0.00012, 4, 31, 72.37, -35.61, 0.35932, 36, -12.18, -9.26, 0.60181, 37, -33.58, -9.16, 0.03884, 38, -55.06, -9.16, 4e-05, 4, 31, 72.19, + -39.08, 0.49297, 36, -15.66, -9.26, 0.48586, 37, -37.06, -9.16, 0.02116, 38, -58.54, -9.16, 1e-05, 4, 31, 71.81, -46.35, 0.66969, 36, -22.93, -9.26, 0.32512, 37, -44.34, -9.16, + 0.00518, 38, -65.81, -9.16, 0, 4, 31, 66.73, -44.35, 0.73638, 36, -21.2, -4.09, 0.26049, 37, -42.61, -3.98, 0.00313, 38, -64.08, -3.98, 0, 4, 31, 61.93, -42.46, 0.74288, 36, -19.57, + 0.8, 0.25402, 37, -40.97, 0.91, 0.00309, 38, -62.45, 0.91, 1e-05, 2, 31, 55.67, -40, 0.86, 36, -17.44, 7.19, 0.14, 2, 31, 50.24, -37.86, 0.87418, 36, -15.59, 12.72, 0.12582, 1, 31, + 43.72, -35.29, 1, 1, 31, 38.22, -33.12, 1, 2, 31, -0.53, -12.83, 0.99965, 36, 6.74, 64.74, 0.00035, 2, 31, -0.21, -6.72, 0.9998, 36, 12.86, 64.74, 0.0002, 3, 31, 0.19, 0.77, 0.99981, + 36, 20.36, 64.74, 9e-05, 38, -22.52, 64.84, 0.0001, 3, 31, 0.56, 7.82, 0.99975, 36, 27.41, 64.74, 1e-05, 38, -15.47, 64.84, 0.00024, 2, 31, 0.88, 13.86, 0.99954, 38, -9.41, 64.84, + 0.00046, 4, 31, 39.9, 0.3, 0.88429, 36, 21.98, 25.05, 0.02526, 37, 0.57, 25.15, 0.06552, 38, -20.9, 25.15, 0.02493, 1, 31, 38.93, -18.93, 1, 4, 31, 39.81, 17.97, 0.94373, 36, 39.62, + 26.07, 0.00089, 37, 18.21, 26.18, 0.01419, 38, -3.26, 26.18, 0.04119, 1, 31, 39.76, 25.74, 1, 1, 31, 38.51, -27.3, 1, 4, 31, 39.4, -9.64, 0.88619, 36, 12.02, 25.03, 0.05505, 37, + -9.38, 25.13, 0.05102, 38, -30.86, 25.13, 0.00774, 4, 31, 39.86, 8.75, 0.89286, 36, 30.41, 25.54, 0.00746, 37, 9, 25.64, 0.04877, 38, -12.47, 25.64, 0.05092, 1, 31, 43.8, -29.15, 1, + 4, 31, 44.52, -19.83, 0.74343, 36, 2.11, 19.38, 0.19678, 37, -19.29, 19.48, 0.05726, 38, -40.77, 19.48, 0.00254, 4, 31, 44.96, -10.05, 0.58833, 36, 11.9, 19.46, 0.20061, 37, -9.5, + 19.56, 0.19026, 38, -30.98, 19.56, 0.0208, 4, 31, 45.31, -0.03, 0.58846, 36, 21.93, 19.63, 0.08112, 37, 0.53, 19.73, 0.24909, 38, -20.95, 19.73, 0.08133, 4, 31, 45.5, 8.76, 0.59817, + 36, 30.72, 19.91, 0.02026, 37, 9.32, 20.01, 0.18761, 38, -12.16, 20.01, 0.19395, 4, 31, 45.89, 18.3, 0.66183, 36, 40.27, 20.02, 0.00346, 37, 18.87, 20.13, 0.07957, 38, -2.61, 20.13, + 0.25514, 1, 31, 45.85, 27.54, 1, 4, 31, 49.71, -31.22, 0.84023, 36, -8.99, 13.6, 0.15068, 37, -30.39, 13.7, 0.00899, 38, -51.87, 13.7, 0.0001, 4, 31, 49.78, -20.68, 0.48016, 36, + 1.55, 14.09, 0.41733, 37, -19.86, 14.19, 0.10062, 38, -41.33, 14.19, 0.0019, 4, 31, 50.15, -10.44, 0.42576, 36, 11.79, 14.25, 0.28082, 37, -9.61, 14.36, 0.27628, 38, -31.09, 14.36, + 0.01714, 4, 31, 50.4, -0.34, 0.43345, 36, 21.89, 14.53, 0.09343, 37, 0.48, 14.63, 0.37698, 38, -20.99, 14.63, 0.09613, 4, 31, 50.91, 8.78, 0.43708, 36, 31.02, 14.51, 0.01603, 37, + 9.62, 14.61, 0.27127, 38, -11.86, 14.61, 0.27562, 4, 31, 50.97, 18.59, 0.51068, 36, 40.82, 14.96, 0.00179, 37, 19.41, 15.07, 0.09933, 38, -2.06, 15.07, 0.3882, 4, 31, 51.57, 29.24, + 0.94195, 36, 51.49, 14.92, 4e-05, 37, 30.08, 15.02, 0.00385, 38, 8.61, 15.02, 0.05416, 4, 31, 55.51, -33.25, 0.72549, 36, -10.71, 7.7, 0.2621, 37, -32.11, 7.81, 0.01235, 38, -53.59, + 7.81, 6e-05, 4, 31, 55.86, -21.65, 0.38729, 36, 0.89, 7.96, 0.4981, 37, -20.51, 8.06, 0.11341, 38, -41.99, 8.06, 0.0012, 4, 31, 55.96, -10.87, 0.32692, 36, 11.67, 8.42, 0.3274, 37, + -9.74, 8.53, 0.32983, 38, -31.21, 8.53, 0.01585, 4, 31, 56.03, -0.69, 0.33677, 36, 21.84, 8.89, 0.10146, 37, 0.43, 9, 0.45593, 38, -21.04, 9, 0.10584, 4, 31, 56.4, 8.8, 0.33839, 36, + 31.33, 9.02, 0.0144, 37, 9.93, 9.13, 0.32329, 38, -11.55, 9.13, 0.32392, 4, 31, 57.13, 19.32, 0.42143, 36, 41.87, 8.84, 0.00109, 37, 20.47, 8.95, 0.11176, 38, -1.01, 8.95, 0.46572, + 4, 31, 58.69, 31.45, 0.79569, 36, 54.07, 7.92, 5e-05, 37, 32.67, 8.03, 0.01091, 38, 11.19, 8.03, 0.19335, 4, 31, 62.21, -35.59, 0.66085, 36, -12.7, 0.88, 0.32566, 37, -34.1, 0.99, + 0.01346, 38, -55.58, 0.99, 3e-05, 4, 31, 62.66, -22.75, 0.31024, 36, 0.16, 1.11, 0.56299, 37, -21.25, 1.21, 0.12589, 38, -42.72, 1.21, 0.00089, 4, 31, 62.85, -11.38, 0.24349, 36, + 11.52, 1.52, 0.36477, 37, -9.89, 1.62, 0.37599, 38, -31.36, 1.62, 0.01574, 4, 31, 62.94, -1.11, 0.2525, 36, 21.78, 1.97, 0.10936, 37, 0.37, 2.08, 0.52284, 38, -21.1, 2.08, 0.1153, 4, + 31, 63.43, 8.82, 0.2544, 36, 31.72, 2, 0.01401, 37, 10.32, 2.11, 0.36809, 38, -11.16, 2.11, 0.3635, 4, 31, 63.63, 19.58, 0.3466, 36, 42.48, 2.36, 0.00077, 37, 21.07, 2.47, 0.1237, + 38, -0.4, 2.47, 0.52893, 4, 31, 65.17, 33.27, 0.69411, 36, 56.23, 1.55, 3e-05, 37, 34.83, 1.66, 0.01435, 38, 13.35, 1.66, 0.29151, 4, 31, 70.52, 34.86, 0.61986, 36, 58.1, -3.71, + 1e-05, 37, 36.69, -3.61, 0.01658, 38, 15.22, -3.61, 0.36355, 4, 31, 69.45, 19.61, 0.28549, 36, 42.81, -3.44, 0.00065, 37, 21.4, -3.34, 0.13463, 38, -0.07, -3.34, 0.57924, 4, 31, + 69.14, 8.84, 0.18483, 36, 32.04, -3.7, 0.01432, 37, 10.64, -3.59, 0.40541, 38, -10.84, -3.59, 0.39544, 4, 31, 68.83, -1.47, 0.18141, 36, 21.73, -3.93, 0.11681, 37, 0.32, -3.83, + 0.57764, 38, -21.15, -3.83, 0.12413, 4, 31, 68.1, -11.77, 0.17479, 36, 11.41, -3.74, 0.39444, 37, -10, -3.64, 0.41447, 38, -31.47, -3.64, 0.0163, 4, 31, 67.66, -23.55, 0.24784, 36, + -0.38, -3.92, 0.61396, 37, -21.79, -3.82, 0.13743, 38, -43.26, -3.82, 0.00077, 4, 31, 67.15, -37.32, 0.59732, 36, -14.16, -4.14, 0.38768, 37, -35.56, -4.03, 0.01499, 38, -57.04, + -4.03, 1e-05, 4, 31, 21.31, 0.52, 0.98403, 36, 21.22, 43.62, 0.00516, 37, -0.19, 43.73, 0.00609, 38, -21.66, 43.73, 0.00473, 3, 31, 11.68, -10.43, 0.98457, 36, 9.78, 52.66, 0.01421, + 37, -11.62, 52.77, 0.00123, 3, 31, 14.7, 11.48, 0.98807, 37, 10.41, 50.91, 0.00101, 38, -11.07, 50.91, 0.01092, 1, 31, 38.71, -23.44, 1, 4, 31, 44.14, -24.78, 0.93122, 36, -2.85, + 19.5, 0.05888, 37, -24.25, 19.61, 0.00959, 38, -45.73, 19.61, 0.0003, 4, 31, 49.74, -26.15, 0.67882, 36, -3.92, 13.83, 0.287, 37, -25.32, 13.94, 0.03374, 38, -46.8, 13.94, 0.00045, + 4, 31, 55.68, -27.73, 0.52353, 36, -5.19, 7.82, 0.4314, 37, -26.59, 7.93, 0.04479, 38, -48.07, 7.93, 0.00029, 4, 31, 62.43, -29.46, 0.41464, 36, -6.56, 0.99, 0.53292, 37, -27.96, + 1.1, 0.05226, 38, -49.44, 1.1, 0.00018, 4, 31, 67.4, -30.57, 0.35706, 36, -7.41, -4.03, 0.58638, 37, -28.81, -3.93, 0.05644, 38, -50.29, -3.93, 0.00012, 4, 31, 39.16, -14.42, + 0.88311, 36, 7.24, 25.02, 0.07338, 37, -14.17, 25.12, 0.03978, 38, -35.64, 25.12, 0.00372, 4, 31, 44.74, -15, 0.62555, 36, 6.96, 19.42, 0.24007, 37, -14.45, 19.52, 0.1259, 38, + -35.92, 19.52, 0.00848, 4, 31, 49.97, -15.49, 0.4342, 36, 6.74, 14.17, 0.37611, 37, -14.67, 14.27, 0.18375, 38, -36.14, 14.27, 0.00595, 4, 31, 55.91, -16.19, 0.33684, 36, 6.35, 8.19, + 0.44427, 37, -15.05, 8.3, 0.21425, 38, -36.53, 8.3, 0.00464, 4, 31, 62.76, -16.95, 0.25537, 36, 5.95, 1.32, 0.49872, 37, -15.45, 1.42, 0.24179, 38, -36.93, 1.42, 0.00413, 4, 31, + 67.88, -17.57, 0.18921, 36, 5.6, -3.83, 0.54119, 37, -15.8, -3.73, 0.26556, 38, -37.28, -3.73, 0.00404, 4, 31, 39.65, -4.74, 0.83361, 36, 16.93, 25.04, 0.05679, 37, -4.48, 25.14, + 0.08927, 38, -25.95, 25.14, 0.02033, 4, 31, 45.13, -5.18, 0.57797, 36, 16.78, 19.54, 0.13938, 37, -4.63, 19.65, 0.23843, 38, -26.1, 19.65, 0.04422, 4, 31, 50.27, -5.8, 0.42696, 36, + 16.43, 14.38, 0.17737, 37, -4.97, 14.48, 0.35156, 38, -26.45, 14.48, 0.04411, 4, 31, 56, -5.99, 0.33132, 36, 16.54, 8.65, 0.20059, 37, -4.86, 8.75, 0.42277, 38, -26.34, 8.75, + 0.04531, 4, 31, 62.89, -6.48, 0.24781, 36, 16.41, 1.73, 0.22055, 37, -4.99, 1.84, 0.48389, 38, -26.47, 1.84, 0.04775, 4, 31, 68.45, -6.83, 0.17763, 36, 16.35, -3.83, 0.23735, 37, + -5.05, -3.73, 0.53429, 38, -26.53, -3.73, 0.05074, 4, 31, 39.88, 4.33, 0.83746, 36, 26, 25.28, 0.02009, 37, 4.59, 25.39, 0.08772, 38, -16.88, 25.39, 0.05473, 4, 31, 45.41, 4.36, + 0.58276, 36, 26.32, 19.77, 0.04346, 37, 4.92, 19.87, 0.23645, 38, -16.56, 19.87, 0.13732, 4, 31, 50.66, 4.3, 0.43226, 36, 26.54, 14.52, 0.04191, 37, 5.13, 14.62, 0.34769, 38, -16.34, + 14.62, 0.17814, 4, 31, 56.21, 4.01, 0.33656, 36, 26.54, 8.96, 0.0422, 37, 5.14, 9.06, 0.41771, 38, -16.34, 9.06, 0.20353, 4, 31, 63.19, 4, 0.25264, 36, 26.89, 1.99, 0.04384, 37, + 5.49, 2.09, 0.47782, 38, -15.99, 2.09, 0.2257, 4, 31, 68.99, 3.91, 0.18189, 36, 27.11, -3.81, 0.04615, 37, 5.71, -3.71, 0.52741, 38, -15.77, -3.71, 0.24456, 4, 31, 39.83, 13, 0.8608, + 36, 34.66, 25.79, 0.00457, 37, 13.26, 25.89, 0.04889, 38, -8.22, 25.89, 0.08574, 4, 31, 45.67, 13.13, 0.60926, 36, 35.09, 19.96, 0.00894, 37, 13.69, 20.06, 0.13479, 38, -7.79, 20.06, + 0.247, 4, 31, 50.93, 13.5, 0.45377, 36, 35.74, 14.73, 0.00554, 37, 14.33, 14.83, 0.18027, 38, -7.14, 14.83, 0.36041, 4, 31, 56.75, 13.83, 0.35749, 36, 36.37, 8.94, 0.00417, 37, + 14.96, 9.04, 0.20976, 38, -6.51, 9.04, 0.42858, 4, 31, 63.53, 14.02, 0.27612, 36, 36.92, 2.18, 0.00359, 37, 15.52, 2.28, 0.23625, 38, -5.96, 2.28, 0.48404, 4, 31, 69.3, 14.3, + 0.20954, 36, 37.5, -3.57, 0.00344, 37, 16.1, -3.46, 0.25903, 38, -5.38, -3.46, 0.52799, 1, 31, 39.78, 21.93, 1, 4, 31, 45.87, 22.69, 0.82489, 36, 44.65, 20.27, 0.00083, 37, 23.25, + 20.37, 0.0268, 38, 1.77, 20.37, 0.14748, 4, 31, 51.28, 24.11, 0.64773, 36, 46.35, 14.94, 0.00052, 37, 24.95, 15.04, 0.04091, 38, 3.47, 15.04, 0.31084, 4, 31, 57.92, 25.42, 0.53225, + 36, 48.01, 8.38, 0.00029, 37, 26.6, 8.49, 0.04857, 38, 5.13, 8.49, 0.41889, 4, 31, 64.49, 27.19, 0.46955, 36, 50.12, 1.91, 0.00016, 37, 28.71, 2.02, 0.05201, 38, 7.24, 2.02, 0.47828, + 4, 31, 70.04, 27.97, 0.41589, 36, 51.19, -3.59, 0.0001, 37, 29.78, -3.48, 0.05591, 38, 8.31, -3.48, 0.5281, 4, 31, 49.73, -28.84, 0.72647, 36, -6.61, 13.71, 0.25381, 37, -28.01, + 13.81, 0.01954, 38, -49.49, 13.81, 0.00018, 4, 31, 55.59, -30.72, 0.64422, 36, -8.18, 7.76, 0.33291, 37, -29.58, 7.86, 0.02275, 38, -51.06, 7.86, 0.00011, 4, 31, 62.32, -32.6, + 0.55448, 36, -9.7, 0.94, 0.41902, 37, -31.11, 1.04, 0.02643, 38, -52.58, 1.04, 7e-05, 4, 31, 67.27, -34.24, 0.44397, 36, -11.07, -4.09, 0.52396, 37, -32.48, -3.99, 0.03202, 38, + -53.95, -3.99, 4e-05, 4, 31, 49.76, -23.57, 0.5094, 36, -1.34, 13.95, 0.4213, 37, -22.75, 14.06, 0.06847, 38, -44.22, 14.06, 0.00083, 4, 31, 55.77, -24.72, 0.42549, 36, -2.17, 7.89, + 0.49746, 37, -23.57, 8, 0.07648, 38, -45.05, 8, 0.00057, 4, 31, 62.54, -26.18, 0.35688, 36, -3.28, 1.05, 0.55926, 37, -24.68, 1.15, 0.08347, 38, -46.16, 1.15, 0.00039, 4, 31, 67.52, + -27.35, 0.29772, 36, -4.19, -3.98, 0.61133, 37, -25.59, -3.88, 0.09064, 38, -47.07, -3.88, 0.00031, 4, 31, 67.77, -20.66, 0.21136, 36, 2.51, -3.88, 0.59029, 37, -18.89, -3.77, + 0.19654, 38, -40.37, -3.77, 0.00182, 4, 31, 62.71, -19.85, 0.275, 36, 3.05, 1.21, 0.54348, 37, -18.35, 1.32, 0.17958, 38, -39.83, 1.32, 0.00194, 4, 31, 55.88, -19.28, 0.35002, 36, + 3.27, 8.06, 0.48643, 37, -18.14, 8.17, 0.16123, 38, -39.61, 8.17, 0.00232, 4, 31, 49.86, -18.41, 0.41881, 36, 3.82, 14.12, 0.43213, 37, -17.59, 14.23, 0.1461, 38, -39.06, 14.23, + 0.00296, 4, 31, 50.06, -13.03, 0.39313, 36, 9.2, 14.21, 0.35299, 37, -12.2, 14.31, 0.24433, 38, -33.68, 14.31, 0.00955, 4, 31, 55.94, -13.47, 0.32258, 36, 9.06, 8.31, 0.39406, 37, + -12.34, 8.41, 0.27473, 38, -33.82, 8.41, 0.00863, 4, 31, 62.8, -14.24, 0.24476, 36, 8.66, 1.42, 0.43744, 37, -12.74, 1.52, 0.30953, 38, -34.22, 1.52, 0.00827, 4, 31, 67.98, -14.86, + 0.17804, 36, 8.31, -3.79, 0.47328, 37, -13.09, -3.69, 0.3403, 38, -34.57, -3.69, 0.00838, 4, 31, 68.28, -9.21, 0.17525, 36, 13.97, -3.79, 0.31355, 37, -7.43, -3.69, 0.48153, 38, + -28.91, -3.69, 0.02968, 4, 31, 62.87, -9.04, 0.24396, 36, 13.85, 1.62, 0.29088, 37, -7.55, 1.73, 0.43695, 38, -29.03, 1.73, 0.02821, 4, 31, 55.98, -8.57, 0.32275, 36, 13.97, 8.53, + 0.26435, 37, -7.44, 8.63, 0.38552, 38, -28.91, 8.63, 0.02739, 4, 31, 50.21, -8.13, 0.39269, 36, 14.1, 14.31, 0.24007, 37, -7.3, 14.42, 0.33961, 38, -28.78, 14.42, 0.02763, 4, 31, + 50.33, -3.07, 0.39835, 36, 19.16, 14.45, 0.13664, 37, -2.25, 14.56, 0.3972, 38, -23.72, 14.56, 0.06781, 4, 31, 56.01, -3.43, 0.32898, 36, 19.1, 8.76, 0.14701, 37, -2.3, 8.87, + 0.45281, 38, -23.78, 8.87, 0.07119, 4, 31, 62.92, -3.84, 0.24968, 36, 19.05, 1.85, 0.15947, 37, -2.36, 1.96, 0.51456, 38, -23.83, 1.96, 0.07629, 4, 31, 68.64, -4.23, 0.17972, 36, + 18.97, -3.88, 0.17094, 37, -2.44, -3.78, 0.56767, 38, -23.91, -3.78, 0.08167, 4, 31, 68.91, 1.29, 0.18179, 36, 24.49, -3.87, 0.07557, 37, 3.08, -3.77, 0.56385, 38, -18.39, -3.77, + 0.17879, 4, 31, 63.06, 1.38, 0.25204, 36, 24.27, 1.98, 0.07119, 37, 2.86, 2.08, 0.51118, 38, -18.61, 2.08, 0.16559, 4, 31, 56.13, 1.74, 0.33157, 36, 24.26, 8.92, 0.0672, 37, 2.86, + 9.03, 0.44995, 38, -18.62, 9.03, 0.15128, 4, 31, 50.52, 1.76, 0.40101, 36, 23.99, 14.52, 0.06478, 37, 2.59, 14.63, 0.39483, 38, -18.89, 14.63, 0.13938, 4, 31, 50.78, 6.45, 0.401, 36, + 28.68, 14.51, 0.0258, 37, 7.28, 14.62, 0.33427, 38, -14.2, 14.62, 0.23894, 4, 31, 56.3, 6.29, 0.3309, 36, 28.82, 8.99, 0.02514, 37, 7.42, 9.09, 0.37908, 38, -14.06, 9.09, 0.26488, 4, + 31, 63.29, 6.06, 0.25155, 36, 28.96, 1.99, 0.02548, 37, 7.56, 2.1, 0.4293, 38, -13.92, 2.1, 0.29367, 4, 31, 69.06, 6.02, 0.18206, 36, 29.22, -3.76, 0.02652, 37, 7.82, -3.66, 0.47284, + 38, -13.66, -3.66, 0.31858, 4, 31, 69.22, 11.49, 0.19245, 36, 34.69, -3.64, 0.00724, 37, 13.29, -3.53, 0.3321, 38, -8.19, -3.53, 0.46821, 4, 31, 69.38, 17.15, 0.23948, 36, 40.35, + -3.5, 0.00153, 37, 18.94, -3.39, 0.19195, 38, -2.53, -3.39, 0.56704, 4, 31, 69.73, 23.61, 0.346, 36, 46.82, -3.51, 0.00026, 37, 25.42, -3.41, 0.08922, 38, 3.94, -3.41, 0.56452, 4, + 31, 70.27, 31.28, 0.48407, 36, 54.51, -3.65, 4e-05, 37, 33.11, -3.54, 0.03358, 38, 11.63, -3.54, 0.48231, 4, 31, 64.84, 30.32, 0.54501, 36, 53.26, 1.73, 7e-05, 37, 31.86, 1.83, + 0.03077, 38, 10.38, 1.83, 0.42415, 4, 31, 64.01, 22.94, 0.40266, 36, 45.85, 2.16, 0.00034, 37, 24.45, 2.27, 0.08247, 38, 2.97, 2.27, 0.51452, 4, 31, 63.58, 16.63, 0.30287, 36, 39.53, + 2.26, 0.00168, 37, 18.13, 2.37, 0.17579, 38, -3.35, 2.37, 0.51965, 4, 31, 63.48, 11.19, 0.25994, 36, 34.09, 2.08, 0.00726, 37, 12.69, 2.19, 0.30245, 38, -8.79, 2.19, 0.43035, 4, 31, + 56.56, 11.07, 0.3382, 36, 33.61, 8.98, 0.00776, 37, 12.21, 9.09, 0.26884, 38, -9.27, 9.09, 0.38519, 4, 31, 56.93, 16.38, 0.37706, 36, 38.93, 8.89, 0.00208, 37, 17.52, 9, 0.15821, 38, + -3.95, 9, 0.46265, 4, 31, 57.5, 22.2, 0.46779, 36, 44.77, 8.63, 0.00052, 37, 23.36, 8.73, 0.07582, 38, 1.89, 8.73, 0.45586, 4, 31, 58.3, 28.37, 0.65325, 36, 50.97, 8.16, 0.00012, 37, + 29.57, 8.26, 0.02541, 38, 8.09, 8.26, 0.32123, 4, 31, 51.42, 26.68, 0.75526, 36, 48.93, 14.93, 0.00017, 37, 27.52, 15.03, 0.02002, 38, 6.05, 15.03, 0.22455, 4, 31, 51.11, 21.17, + 0.52586, 36, 43.41, 14.95, 0.00082, 37, 22, 15.06, 0.07106, 38, 0.53, 15.06, 0.40226, 4, 31, 50.95, 15.93, 0.44455, 36, 38.16, 14.84, 0.00273, 37, 16.76, 14.94, 0.1436, 38, -4.72, + 14.94, 0.40912, 4, 31, 50.92, 10.61, 0.40864, 36, 32.85, 14.59, 0.0088, 37, 11.45, 14.7, 0.23945, 38, -10.03, 14.7, 0.34311, 4, 31, 69.38, -38.1, 0.52059, 36, -14.82, -6.4, 0.45917, + 37, -36.22, -6.3, 0.02022, 38, -57.7, -6.3, 1e-05, 4, 31, 69.44, -34.82, 0.37517, 36, -11.54, -6.29, 0.58803, 37, -32.95, -6.19, 0.03676, 38, -54.42, -6.19, 4e-05, 4, 31, 69.57, + -31.13, 0.31655, 36, -7.85, -6.23, 0.62281, 37, -29.26, -6.13, 0.06054, 38, -50.73, -6.13, 0.00011, 4, 31, 69.74, -27.7, 0.25662, 36, -4.41, -6.22, 0.64624, 37, -25.82, -6.11, + 0.09684, 38, -47.29, -6.11, 0.0003, 4, 31, 69.8, -23.9, 0.20542, 36, -0.61, -6.08, 0.64718, 37, -22.02, -5.97, 0.14662, 38, -43.49, -5.97, 0.00077, 4, 31, 69.96, -20.88, 0.16774, 36, + 2.4, -6.08, 0.62093, 37, -19, -5.97, 0.20946, 38, -40.48, -5.97, 0.00187, 4, 31, 70.09, -17.89, 0.14406, 36, 5.4, -6.05, 0.56885, 37, -16, -5.95, 0.28288, 38, -37.48, -5.95, 0.00421, + 4, 31, 70.25, -15.09, 0.13169, 36, 8.2, -6.07, 0.49722, 37, -13.21, -5.96, 0.36227, 38, -34.68, -5.96, 0.00882, 4, 31, 70.5, -11.95, 0.12708, 36, 11.36, -6.14, 0.41453, 37, -10.05, + -6.04, 0.44117, 38, -31.52, -6.04, 0.01722, 4, 31, 70.58, -9.33, 0.12668, 36, 13.97, -6.1, 0.32958, 37, -7.43, -5.99, 0.51233, 38, -28.91, -5.99, 0.03141, 4, 31, 70.75, -6.95, + 0.12812, 36, 16.36, -6.14, 0.24965, 37, -5.05, -6.03, 0.56851, 38, -26.52, -6.03, 0.05372, 4, 31, 71, -4.39, 0.12979, 36, 18.93, -6.25, 0.1799, 37, -2.47, -6.14, 0.60387, 38, -23.95, + -6.14, 0.08644, 4, 31, 71.07, -1.61, 0.13105, 36, 21.71, -6.18, 0.12302, 37, 0.3, -6.07, 0.61461, 38, -21.17, -6.07, 0.13132, 4, 31, 71.18, 1.28, 0.13159, 36, 24.6, -6.14, 0.07962, + 37, 3.19, -6.03, 0.5998, 38, -18.28, -6.03, 0.18899, 4, 31, 71.31, 3.85, 0.13189, 36, 27.17, -6.13, 0.04862, 37, 5.76, -6.02, 0.56113, 38, -15.71, -6.02, 0.25837, 4, 31, 71.51, 6.02, + 0.13282, 36, 29.35, -6.21, 0.02792, 37, 7.95, -6.1, 0.50297, 38, -13.53, -6.1, 0.33629, 4, 31, 71.56, 8.85, 0.13637, 36, 32.18, -6.12, 0.01503, 37, 10.77, -6.01, 0.43134, 38, -10.7, + -6.01, 0.41726, 4, 31, 71.75, 11.39, 0.14539, 36, 34.72, -6.17, 0.00757, 37, 13.32, -6.07, 0.35328, 38, -8.16, -6.07, 0.49376, 4, 31, 71.87, 14.39, 0.16393, 36, 37.73, -6.13, + 0.00355, 37, 16.32, -6.03, 0.27561, 38, -5.15, -6.03, 0.55691, 4, 31, 72.16, 17.13, 0.19585, 36, 40.48, -6.28, 0.00155, 37, 19.08, -6.18, 0.20422, 38, -2.4, -6.18, 0.59837, 4, 31, + 72.25, 19.76, 0.24372, 36, 43.11, -6.23, 0.00063, 37, 21.71, -6.13, 0.14329, 38, 0.23, -6.13, 0.61235, 4, 31, 72.47, 23.82, 0.30631, 36, 47.17, -6.24, 0.00024, 37, 25.77, -6.14, + 0.09501, 38, 4.29, -6.14, 0.59844, 4, 31, 72.61, 28.41, 0.3775, 36, 51.77, -6.14, 9e-05, 37, 30.37, -6.03, 0.05972, 38, 8.89, -6.03, 0.5627, 4, 31, 72.88, 31.77, 0.44548, 36, 55.14, + -6.23, 3e-05, 37, 33.74, -6.13, 0.03652, 38, 12.26, -6.13, 0.51797, 4, 31, 73.38, 35.45, 0.56131, 36, 58.84, -6.53, 1e-05, 37, 37.44, -6.43, 0.02128, 38, 15.96, -6.43, 0.41739 + ], + "hull": 44, + "edges": [ + 78, 76, 86, 0, 78, 80, 80, 82, 82, 84, 84, 86, 0, 94, 76, 96, 62, 64, 74, 76, 102, 96, 74, 102, 104, 90, 106, 98, 108, 88, 110, 100, 112, 92, 114, 94, 2, 0, 114, 2, 72, 74, 116, 102, + 72, 116, 118, 104, 120, 106, 122, 108, 124, 110, 126, 112, 128, 114, 4, 2, 128, 4, 70, 72, 130, 116, 70, 130, 132, 118, 134, 120, 136, 122, 138, 124, 140, 126, 142, 128, 8, 6, 6, 4, + 142, 6, 68, 70, 144, 130, 68, 144, 146, 132, 148, 134, 150, 136, 152, 138, 154, 140, 156, 142, 156, 8, 8, 10, 10, 12, 12, 158, 158, 156, 10, 158, 160, 154, 162, 152, 164, 150, 166, + 148, 168, 146, 170, 144, 64, 66, 66, 68, 170, 66, 82, 172, 172, 88, 98, 172, 172, 100, 80, 174, 174, 90, 96, 174, 84, 176, 176, 92, 94, 176, 90, 178, 178, 96, 102, 180, 180, 104, + 178, 180, 180, 182, 182, 184, 184, 186, 186, 188, 90, 190, 190, 98, 104, 192, 192, 106, 190, 192, 192, 194, 194, 196, 196, 198, 198, 200, 88, 202, 202, 98, 106, 204, 204, 108, 202, + 204, 204, 206, 206, 208, 208, 210, 210, 212, 88, 214, 214, 100, 108, 216, 216, 110, 214, 216, 216, 218, 218, 220, 220, 222, 222, 224, 92, 226, 226, 100, 110, 228, 228, 112, 226, 228, + 228, 230, 230, 232, 232, 234, 234, 236, 92, 238, 238, 94, 112, 240, 240, 114, 238, 240, 240, 242, 242, 244, 244, 246, 246, 248, 12, 14, 170, 64, 116, 250, 250, 182, 130, 252, 252, + 184, 250, 252, 144, 254, 254, 186, 252, 254, 170, 256, 256, 188, 254, 256, 58, 60, 60, 62, 118, 258, 258, 182, 132, 260, 260, 184, 258, 260, 146, 262, 262, 186, 260, 262, 168, 264, + 264, 188, 262, 264, 54, 56, 56, 58, 50, 52, 52, 54, 168, 266, 266, 200, 146, 268, 268, 198, 266, 268, 132, 270, 270, 196, 268, 270, 118, 272, 272, 194, 270, 272, 120, 274, 274, 194, + 134, 276, 276, 196, 274, 276, 148, 278, 278, 198, 276, 278, 166, 280, 280, 200, 278, 280, 46, 48, 48, 50, 42, 44, 44, 46, 166, 282, 282, 212, 148, 284, 284, 210, 282, 284, 134, 286, + 286, 208, 284, 286, 120, 288, 288, 206, 286, 288, 122, 290, 290, 206, 136, 292, 292, 208, 290, 292, 150, 294, 294, 210, 292, 294, 164, 296, 296, 212, 294, 296, 38, 40, 40, 42, 34, + 36, 36, 38, 164, 298, 298, 224, 150, 300, 300, 222, 298, 300, 136, 302, 302, 220, 300, 302, 122, 304, 304, 218, 302, 304, 124, 306, 306, 218, 138, 308, 308, 220, 306, 308, 152, 310, + 310, 222, 308, 310, 162, 312, 312, 224, 310, 312, 30, 32, 32, 34, 26, 28, 28, 30, 162, 314, 314, 236, 22, 24, 24, 26, 160, 316, 316, 236, 18, 20, 20, 22, 160, 318, 318, 248, 14, 16, + 16, 18, 158, 320, 320, 248, 156, 322, 322, 246, 320, 322, 154, 324, 324, 246, 318, 324, 154, 326, 326, 234, 316, 326, 152, 328, 328, 234, 314, 328, 138, 330, 330, 232, 328, 330, 140, + 332, 332, 232, 326, 332, 140, 334, 334, 244, 324, 334, 142, 336, 336, 244, 322, 336, 128, 338, 338, 242, 336, 338, 126, 340, 340, 242, 334, 340, 126, 342, 342, 230, 332, 342, 124, + 344, 344, 230, 330, 344, 62, 346, 346, 170, 60, 348, 348, 256, 346, 348, 58, 350, 350, 188, 348, 350, 56, 352, 352, 264, 350, 352, 54, 354, 354, 168, 352, 354, 52, 356, 356, 266, + 354, 356, 50, 358, 358, 200, 356, 358, 48, 360, 360, 280, 358, 360, 46, 362, 362, 166, 360, 362, 44, 364, 364, 282, 362, 364, 42, 366, 366, 212, 364, 366, 40, 368, 368, 296, 366, + 368, 38, 370, 370, 164, 368, 370, 36, 372, 372, 298, 370, 372, 34, 374, 374, 224, 372, 374, 32, 376, 376, 312, 374, 376, 30, 378, 378, 162, 376, 378, 28, 380, 380, 314, 378, 380, 26, + 382, 382, 236, 380, 382, 24, 384, 384, 316, 382, 384, 22, 386, 386, 160, 384, 386, 20, 388, 388, 318, 386, 388, 18, 390, 390, 248, 388, 390, 16, 392, 392, 320, 390, 392, 14, 394, + 394, 158, 392, 394 + ], + "width": 82.3529411764706, + "height": 80.0, + "path": "summer-as.ear-right-bubble", + "x": 0.32352941176470296, + "y": 0.0 + } + }, + "ear-right-bubble-02": { + "ear-right-bubble": { + "type": "mesh", + "uvs": [ + 0.93928, 0.50958, 0.95558, 0.59885, 0.96791, 0.66638, 0.98006, 0.73289, 1, 0.84205, 1, 0.89818, 1, 0.9625, 0.9567, 0.9625, 0.9208, 0.9625, 0.88771, 0.9625, 0.83969, 0.9625, 0.79967, + 0.9625, 0.76574, 0.9625, 0.73418, 0.9625, 0.69508, 0.9625, 0.6661, 0.9625, 0.6319, 0.9625, 0.6046, 0.9625, 0.57454, 0.9625, 0.53755, 0.9625, 0.50387, 0.9625, 0.47341, 0.9625, + 0.44466, 0.9625, 0.41233, 0.9625, 0.37317, 0.9625, 0.33787, 0.9625, 0.30333, 0.9625, 0.2648, 0.9625, 0.21937, 0.9625, 0.17434, 0.9625, 0.12959, 0.9625, 0.08769, 0.9625, 0, 0.9625, + 0.02085, 0.89779, 0.04055, 0.83664, 0.06626, 0.75682, 0.08854, 0.68766, 0.11527, 0.60468, 0.13788, 0.53451, 0.35753, 0.0375, 0.43128, 0.0375, 0.52161, 0.0375, 0.60662, 0.0375, + 0.67954, 0.0375, 0.54109, 0.5336, 0.30907, 0.53412, 0.75362, 0.52077, 0.84707, 0.51514, 0.2081, 0.53435, 0.42115, 0.53387, 0.64269, 0.52747, 0.1892, 0.60156, 0.3018, 0.60447, + 0.41972, 0.60346, 0.54053, 0.60135, 0.64648, 0.59785, 0.76151, 0.59644, 0.87262, 0.58988, 0.16806, 0.67676, 0.29497, 0.67061, 0.41838, 0.66857, 0.54, 0.66508, 0.65011, 0.66538, + 0.7681, 0.65967, 0.89666, 0.66021, 0.14733, 0.75044, 0.28705, 0.74721, 0.41688, 0.74143, 0.53942, 0.73556, 0.6538, 0.73393, 0.7757, 0.7326, 0.91933, 0.7265, 0.12337, 0.83566, 0.2782, + 0.83283, 0.4151, 0.82771, 0.53871, 0.82207, 0.65852, 0.82169, 0.7847, 0.8189, 0.95379, 0.82732, 0.97627, 0.89309, 0.79208, 0.88971, 0.66236, 0.89294, 0.5381, 0.89586, 0.41375, + 0.89349, 0.2717, 0.89571, 0.10571, 0.89844, 0.53197, 0.30141, 0.39415, 0.1884, 0.65961, 0.2117, 0.25473, 0.53425, 0.24202, 0.60293, 0.22911, 0.6738, 0.21379, 0.7489, 0.19729, + 0.83431, 0.18704, 0.8971, 0.36352, 0.534, 0.36013, 0.60397, 0.35748, 0.66957, 0.35288, 0.74428, 0.34802, 0.83022, 0.34383, 0.89458, 0.48024, 0.53373, 0.47847, 0.60244, 0.47433, + 0.66696, 0.47563, 0.73861, 0.47402, 0.82502, 0.47337, 0.89463, 0.58955, 0.53067, 0.59344, 0.5996, 0.59605, 0.66523, 0.5961, 0.73475, 0.60032, 0.82187, 0.60296, 0.89434, 0.69391, + 0.52438, 0.69915, 0.59721, 0.70691, 0.66263, 0.71206, 0.7333, 0.71954, 0.82034, 0.72813, 0.8913, 0.80125, 0.5179, 0.81428, 0.59333, 0.8348, 0.65995, 0.84793, 0.72953, 0.87862, + 0.82358, 0.89305, 0.89156, 0.19669, 0.67537, 0.17782, 0.74974, 0.1594, 0.835, 0.1429, 0.89783, 0.26012, 0.6723, 0.25017, 0.74806, 0.23685, 0.83359, 0.22589, 0.89647, 0.30659, + 0.89517, 0.3131, 0.83153, 0.31569, 0.74593, 0.32231, 0.67016, 0.38717, 0.66908, 0.38553, 0.74282, 0.38068, 0.829, 0.37648, 0.89407, 0.44462, 0.89408, 0.44322, 0.82643, 0.44458, + 0.7401, 0.44621, 0.66777, 0.50711, 0.66602, 0.50646, 0.73714, 0.50582, 0.82357, 0.50482, 0.89523, 0.57134, 0.89508, 0.5687, 0.82197, 0.56865, 0.73514, 0.5654, 0.66515, 0.62192, + 0.6653, 0.6236, 0.73436, 0.62525, 0.8218, 0.62839, 0.89374, 0.69427, 0.89215, 0.76244, 0.89045, 0.84047, 0.89059, 0.93306, 0.89229, 0.91732, 0.8255, 0.82617, 0.82097, 0.75013, + 0.81967, 0.6863, 0.82108, 0.68017, 0.73364, 0.74166, 0.73297, 0.80979, 0.73115, 0.88285, 0.72805, 0.86581, 0.66008, 0.79931, 0.6598, 0.73613, 0.66121, 0.67214, 0.66431, 0.09776, + 0.92671, 0.13724, 0.92534, 0.1817, 0.92459, 0.22313, 0.92439, 0.26892, 0.92268, 0.30526, 0.92265, 0.34139, 0.92236, 0.3751, 0.92252, 0.41313, 0.92351, 0.44464, 0.92289, 0.47339, + 0.92339, 0.5044, 0.9248, 0.53787, 0.92389, 0.57268, 0.92341, 0.60366, 0.9233, 0.62995, 0.92432, 0.66398, 0.92316, 0.69464, 0.92383, 0.73085, 0.92333, 0.76403, 0.92521, 0.79572, + 0.92461, 0.84011, 0.92404, 0.89075, 0.92209, 0.92774, 0.92274, 0.96706, 0.92576 + ], + "triangles": [ + 166, 63, 70, 116, 171, 166, 165, 115, 116, 77, 70, 167, 163, 166, 70, 163, 70, 77, 117, 116, 166, 117, 166, 163, 77, 167, 162, 164, 165, 116, 164, 116, 117, 76, 69, 165, 76, 165, + 164, 162, 122, 123, 80, 77, 162, 158, 163, 77, 158, 77, 80, 159, 162, 123, 80, 162, 159, 118, 117, 163, 118, 163, 158, 124, 123, 161, 159, 123, 124, 157, 164, 117, 157, 117, 118, 81, + 76, 164, 81, 164, 157, 195, 159, 124, 196, 124, 160, 195, 124, 196, 189, 81, 157, 191, 118, 158, 190, 157, 118, 190, 118, 191, 189, 157, 190, 159, 193, 80, 194, 159, 195, 194, 193, + 159, 192, 158, 80, 192, 80, 193, 191, 158, 192, 15, 189, 190, 14, 190, 191, 15, 190, 14, 13, 191, 192, 14, 191, 13, 12, 192, 193, 13, 192, 12, 11, 193, 194, 12, 193, 11, 10, 11, 194, + 9, 194, 195, 10, 194, 9, 8, 195, 196, 9, 195, 8, 8, 196, 7, 151, 109, 110, 68, 152, 151, 146, 145, 68, 104, 103, 146, 155, 154, 69, 155, 69, 76, 111, 110, 154, 111, 154, 155, 150, + 151, 110, 150, 110, 111, 68, 151, 150, 75, 146, 68, 75, 68, 150, 147, 104, 146, 147, 146, 75, 105, 143, 104, 105, 104, 147, 142, 67, 143, 142, 143, 105, 74, 67, 142, 156, 155, 76, + 156, 76, 81, 106, 141, 142, 74, 142, 141, 83, 74, 141, 112, 111, 155, 112, 155, 156, 105, 106, 142, 149, 150, 111, 149, 111, 112, 148, 105, 147, 106, 105, 148, 82, 75, 150, 82, 148, + 147, 147, 75, 82, 150, 149, 82, 182, 141, 106, 187, 112, 156, 183, 106, 148, 182, 106, 183, 186, 149, 112, 186, 112, 187, 182, 181, 83, 182, 83, 141, 185, 148, 82, 185, 82, 149, 185, + 149, 186, 188, 156, 81, 188, 81, 189, 187, 156, 188, 184, 183, 148, 184, 148, 185, 22, 182, 183, 181, 182, 22, 23, 181, 22, 21, 183, 184, 22, 183, 21, 20, 21, 184, 19, 184, 185, 20, + 184, 19, 18, 186, 187, 19, 185, 186, 18, 19, 186, 17, 187, 188, 18, 187, 17, 16, 188, 189, 17, 188, 16, 16, 189, 15, 143, 144, 104, 110, 153, 154, 151, 152, 109, 68, 145, 61, 68, 61, + 152, 146, 103, 145, 83, 139, 74, 181, 140, 83, 23, 180, 181, 138, 137, 67, 98, 136, 97, 98, 97, 138, 135, 59, 136, 135, 136, 98, 66, 59, 135, 130, 129, 66, 74, 138, 67, 139, 98, 138, + 139, 138, 74, 99, 135, 98, 99, 98, 139, 134, 66, 135, 134, 135, 99, 73, 130, 66, 73, 66, 134, 131, 92, 130, 131, 130, 73, 93, 92, 131, 140, 99, 139, 140, 139, 83, 100, 134, 99, 100, + 99, 140, 133, 73, 134, 133, 134, 100, 84, 131, 73, 84, 73, 133, 132, 93, 131, 132, 131, 84, 94, 127, 93, 94, 93, 132, 128, 127, 94, 179, 133, 100, 180, 100, 140, 179, 100, 180, 178, + 84, 133, 178, 133, 179, 177, 132, 84, 177, 84, 178, 180, 140, 181, 176, 94, 132, 176, 132, 177, 175, 128, 94, 175, 94, 176, 174, 85, 128, 174, 128, 175, 30, 173, 174, 31, 173, 30, + 29, 174, 175, 30, 174, 29, 28, 175, 176, 29, 175, 28, 27, 176, 177, 28, 176, 27, 26, 177, 178, 27, 177, 26, 25, 178, 179, 26, 178, 25, 24, 179, 180, 25, 179, 24, 24, 180, 23, 79, 4, + 5, 79, 78, 4, 6, 79, 5, 123, 168, 161, 160, 78, 79, 124, 161, 160, 7, 196, 197, 196, 160, 197, 197, 160, 79, 160, 161, 78, 7, 197, 6, 162, 167, 122, 6, 197, 79, 85, 72, 128, 173, 32, + 85, 31, 32, 173, 173, 85, 174, 85, 32, 33, 66, 129, 59, 167, 170, 121, 167, 121, 122, 70, 63, 170, 70, 170, 167, 166, 171, 63, 123, 122, 168, 130, 91, 129, 92, 91, 130, 122, 169, + 168, 127, 65, 126, 72, 65, 127, 92, 125, 91, 161, 168, 71, 122, 121, 169, 170, 120, 121, 91, 90, 129, 78, 161, 71, 3, 78, 71, 71, 64, 2, 52, 129, 90, 59, 129, 52, 67, 60, 143, 138, + 97, 137, 170, 63, 56, 171, 56, 63, 169, 121, 57, 33, 34, 85, 72, 35, 65, 34, 35, 72, 125, 51, 91, 35, 36, 65, 91, 51, 90, 36, 37, 58, 58, 37, 51, 71, 2, 3, 64, 1, 2, 1, 64, 57, 57, + 0, 1, 87, 39, 40, 88, 42, 43, 88, 86, 41, 88, 41, 42, 0, 88, 43, 47, 88, 0, 86, 88, 113, 47, 119, 88, 119, 46, 88, 46, 113, 88, 50, 86, 113, 107, 86, 50, 44, 86, 107, 87, 41, 86, 41, + 87, 40, 101, 86, 44, 87, 86, 95, 101, 49, 86, 87, 38, 39, 49, 95, 86, 87, 95, 45, 87, 45, 89, 87, 89, 48, 87, 48, 38, 57, 47, 0, 120, 119, 47, 56, 46, 119, 56, 119, 120, 114, 113, + 46, 114, 46, 56, 55, 50, 113, 55, 113, 114, 108, 107, 50, 55, 108, 50, 54, 101, 44, 44, 107, 108, 54, 44, 108, 102, 49, 101, 102, 101, 54, 90, 48, 89, 53, 95, 49, 53, 49, 102, 96, + 45, 95, 96, 95, 53, 52, 89, 45, 52, 45, 96, 90, 89, 52, 171, 114, 56, 115, 114, 171, 172, 55, 114, 172, 114, 115, 54, 145, 102, 152, 54, 108, 61, 54, 152, 153, 109, 108, 55, 153, + 108, 152, 108, 109, 55, 62, 153, 172, 62, 55, 61, 145, 54, 102, 144, 53, 103, 102, 145, 103, 144, 102, 53, 137, 96, 60, 53, 144, 60, 137, 53, 96, 136, 52, 97, 96, 137, 97, 136, 96, + 69, 62, 172, 154, 153, 62, 110, 109, 153, 144, 103, 104, 143, 60, 144, 67, 137, 60, 120, 47, 57, 121, 120, 57, 64, 169, 57, 78, 3, 4, 51, 38, 48, 51, 48, 90, 37, 38, 51, 58, 51, 125, + 65, 36, 58, 120, 170, 56, 154, 62, 69, 116, 115, 171, 165, 172, 115, 69, 172, 165, 59, 52, 136, 126, 58, 125, 65, 58, 126, 168, 169, 64, 168, 64, 71, 85, 34, 72, 126, 125, 92, 93, + 126, 92, 127, 126, 93, 128, 72, 127 + ], + "vertices": [ + 1, 42, 41.12, 33.33, 1, 1, 42, 48.32, 34.31, 1, 1, 42, 53.77, 35.04, 1, 1, 42, 60, 36.01, 1, 4, 42, 68.02, 38.37, 0.9295, 43, 61.47, -1.03, 1e-05, 44, 40.07, -0.92, 0.00266, 45, + 18.6, -0.92, 0.06784, 4, 42, 72.27, 39, 0.79905, 43, 62.32, -5.24, 1e-05, 44, 40.92, -5.13, 0.00721, 45, 19.44, -5.13, 0.19373, 4, 42, 78.35, 40.51, 0.74731, 43, 64.15, -11.23, 0, + 44, 42.75, -11.12, 0.00973, 45, 21.27, -11.12, 0.24296, 4, 42, 77.99, 36.05, 0.54785, 43, 59.68, -11.11, 1e-05, 44, 38.27, -11, 0.02168, 45, 16.8, -11, 0.43046, 4, 42, 77.69, 32.35, + 0.43038, 43, 55.96, -11, 3e-05, 44, 34.56, -10.9, 0.03847, 45, 13.08, -10.9, 0.53112, 4, 42, 77.42, 28.93, 0.36035, 43, 52.54, -10.91, 9e-05, 44, 31.14, -10.81, 0.06275, 45, 9.66, + -10.81, 0.57681, 4, 42, 77.02, 23.98, 0.2889, 43, 47.58, -10.78, 0.00026, 44, 26.17, -10.67, 0.09917, 45, 4.7, -10.67, 0.61167, 4, 42, 76.69, 19.85, 0.22591, 43, 43.44, -10.66, + 0.0007, 44, 22.03, -10.56, 0.14876, 45, 0.56, -10.56, 0.62463, 4, 42, 76.55, 17.04, 0.17724, 43, 40.62, -10.66, 0.0017, 44, 19.22, -10.56, 0.21115, 45, -2.26, -10.56, 0.60991, 4, 42, + 76.41, 14.43, 0.14418, 43, 38, -10.66, 0.00385, 44, 16.6, -10.56, 0.28407, 45, -4.88, -10.56, 0.5679, 4, 42, 76.24, 11.19, 0.12448, 43, 34.76, -10.66, 0.00813, 44, 13.35, -10.56, + 0.36326, 45, -8.12, -10.56, 0.50413, 4, 42, 76.11, 8.78, 0.11438, 43, 32.35, -10.66, 0.016, 44, 10.95, -10.56, 0.44276, 45, -10.53, -10.56, 0.42686, 4, 42, 75.96, 5.95, 0.11006, 43, + 29.51, -10.66, 0.02948, 44, 8.11, -10.56, 0.51561, 45, -13.37, -10.56, 0.34486, 4, 42, 75.84, 3.69, 0.10858, 43, 27.25, -10.66, 0.05095, 44, 5.84, -10.56, 0.57474, 45, -15.63, + -10.56, 0.26573, 4, 42, 75.71, 1.19, 0.10802, 43, 24.75, -10.66, 0.08291, 44, 3.35, -10.56, 0.614, 45, -18.13, -10.56, 0.19506, 4, 42, 75.55, -1.87, 0.1074, 43, 21.68, -10.66, + 0.12742, 44, 0.28, -10.56, 0.62906, 45, -21.2, -10.56, 0.13612, 4, 42, 75.4, -4.66, 0.10634, 43, 18.89, -10.66, 0.18549, 44, -2.52, -10.56, 0.61812, 45, -23.99, -10.56, 0.09006, 4, + 42, 75.27, -7.19, 0.10502, 43, 16.36, -10.66, 0.25646, 44, -5.05, -10.56, 0.58221, 45, -26.52, -10.56, 0.05631, 4, 42, 75.14, -9.57, 0.10419, 43, 13.97, -10.66, 0.33753, 44, -7.43, + -10.56, 0.52513, 45, -28.91, -10.56, 0.03316, 4, 42, 75, -12.25, 0.10536, 43, 11.29, -10.66, 0.42349, 44, -10.12, -10.56, 0.45282, 45, -31.59, -10.56, 0.01833, 4, 42, 74.83, -15.5, + 0.11098, 43, 8.04, -10.66, 0.50701, 44, -13.37, -10.56, 0.37254, 45, -34.84, -10.56, 0.00948, 4, 42, 74.68, -18.42, 0.12436, 43, 5.11, -10.66, 0.57939, 44, -16.3, -10.56, 0.29168, + 45, -37.77, -10.56, 0.00457, 4, 42, 74.53, -21.28, 0.149, 43, 2.24, -10.66, 0.63222, 44, -19.16, -10.56, 0.21673, 45, -40.64, -10.56, 0.00205, 4, 42, 74.36, -24.48, 0.18726, 43, + -0.96, -10.66, 0.65948, 44, -22.36, -10.56, 0.15241, 45, -43.84, -10.56, 0.00085, 4, 42, 74.16, -28.24, 0.23866, 43, -4.73, -10.66, 0.65975, 44, -26.13, -10.56, 0.10126, 45, -47.61, + -10.56, 0.00033, 4, 42, 73.97, -31.98, 0.29871, 43, -8.46, -10.66, 0.63741, 44, -29.87, -10.56, 0.06376, 45, -51.34, -10.56, 0.00012, 4, 42, 73.77, -35.69, 0.35932, 43, -12.18, + -10.66, 0.60181, 44, -33.58, -10.56, 0.03884, 45, -55.06, -10.56, 4e-05, 4, 42, 73.59, -39.16, 0.49297, 43, -15.66, -10.66, 0.48586, 44, -37.06, -10.56, 0.02116, 45, -58.54, -10.56, + 1e-05, 4, 42, 73.2, -46.43, 0.66969, 43, -22.93, -10.66, 0.32512, 44, -44.34, -10.56, 0.00518, 45, -65.81, -10.56, 0, 4, 42, 68.13, -44.43, 0.73638, 43, -21.2, -5.49, 0.26049, 44, + -42.61, -5.38, 0.00313, 45, -64.08, -5.38, 0, 4, 42, 63.33, -42.54, 0.74288, 43, -19.57, -0.59, 0.25402, 44, -40.97, -0.49, 0.00309, 45, -62.45, -0.49, 1e-05, 2, 42, 57.06, -40.07, + 0.86, 43, -17.44, 5.79, 0.14, 2, 42, 51.63, -37.93, 0.87418, 43, -15.59, 11.32, 0.12582, 1, 42, 45.12, -35.37, 1, 1, 42, 39.61, -33.2, 1, 2, 42, 0.87, -12.9, 0.99965, 43, 6.74, + 63.34, 0.00035, 2, 42, 1.19, -6.79, 0.9998, 43, 12.86, 63.34, 0.0002, 3, 42, 1.58, 0.7, 0.99981, 43, 20.36, 63.34, 9e-05, 45, -22.52, 63.44, 0.0001, 3, 42, 1.95, 7.74, 0.99975, 43, + 27.41, 63.34, 1e-05, 45, -15.46, 63.44, 0.00024, 2, 42, 2.27, 13.79, 0.99954, 45, -9.41, 63.44, 0.00046, 4, 42, 41.3, 0.23, 0.88429, 43, 21.98, 23.65, 0.02526, 44, 0.57, 23.75, + 0.06552, 45, -20.9, 23.75, 0.02493, 1, 42, 40.33, -19.01, 1, 4, 42, 41.2, 17.9, 0.94373, 43, 39.62, 24.67, 0.00089, 44, 18.21, 24.78, 0.01419, 45, -3.26, 24.78, 0.04119, 1, 42, + 41.16, 25.66, 1, 1, 42, 39.91, -27.38, 1, 4, 42, 40.8, -9.72, 0.88619, 43, 12.02, 23.63, 0.05505, 44, -9.38, 23.73, 0.05102, 45, -30.86, 23.73, 0.00774, 4, 42, 41.25, 8.67, 0.89286, + 43, 30.41, 24.14, 0.00746, 44, 9, 24.24, 0.04877, 45, -12.47, 24.24, 0.05092, 1, 42, 45.19, -29.23, 1, 4, 42, 45.92, -19.91, 0.74343, 43, 2.11, 17.98, 0.19678, 44, -19.29, 18.08, + 0.05726, 45, -40.76, 18.08, 0.00254, 4, 42, 46.35, -10.13, 0.58833, 43, 11.9, 18.06, 0.20061, 44, -9.5, 18.16, 0.19026, 45, -30.98, 18.16, 0.0208, 4, 42, 46.71, -0.11, 0.58846, 43, + 21.93, 18.23, 0.08112, 44, 0.53, 18.33, 0.24909, 45, -20.95, 18.33, 0.08133, 4, 42, 46.89, 8.69, 0.59817, 43, 30.72, 18.51, 0.02026, 44, 9.32, 18.61, 0.18761, 45, -12.16, 18.61, + 0.19395, 4, 42, 47.28, 18.23, 0.66183, 43, 40.27, 18.62, 0.00346, 44, 18.87, 18.73, 0.07957, 45, -2.61, 18.73, 0.25514, 1, 42, 47.24, 27.47, 1, 4, 42, 51.11, -31.3, 0.84023, 43, + -8.99, 12.2, 0.15068, 44, -30.39, 12.3, 0.00899, 45, -51.87, 12.3, 0.0001, 4, 42, 51.17, -20.75, 0.48016, 43, 1.55, 12.69, 0.41733, 44, -19.86, 12.79, 0.10062, 45, -41.33, 12.79, + 0.0019, 4, 42, 51.55, -10.51, 0.42576, 43, 11.79, 12.85, 0.28082, 44, -9.61, 12.96, 0.27628, 45, -31.09, 12.96, 0.01714, 4, 42, 51.8, -0.42, 0.43345, 43, 21.89, 13.13, 0.09343, 44, + 0.48, 13.24, 0.37698, 45, -20.99, 13.24, 0.09613, 4, 42, 52.3, 8.71, 0.43708, 43, 31.02, 13.11, 0.01603, 44, 9.62, 13.21, 0.27127, 45, -11.86, 13.21, 0.27562, 4, 42, 52.36, 18.51, + 0.51068, 43, 40.82, 13.56, 0.00179, 44, 19.41, 13.67, 0.09933, 45, -2.06, 13.67, 0.3882, 4, 42, 52.97, 29.16, 0.94195, 43, 51.49, 13.52, 4e-05, 44, 30.08, 13.62, 0.00385, 45, 8.61, + 13.62, 0.05416, 4, 42, 56.91, -33.32, 0.72549, 43, -10.71, 6.3, 0.2621, 44, -32.11, 6.41, 0.01235, 45, -53.59, 6.41, 6e-05, 4, 42, 57.26, -21.73, 0.38729, 43, 0.89, 6.56, 0.4981, 44, + -20.51, 6.66, 0.11341, 45, -41.99, 6.66, 0.0012, 4, 42, 57.36, -10.94, 0.32692, 43, 11.67, 7.02, 0.3274, 44, -9.74, 7.13, 0.32983, 45, -31.21, 7.13, 0.01585, 4, 42, 57.43, -0.76, + 0.33677, 43, 21.84, 7.49, 0.10146, 44, 0.43, 7.6, 0.45593, 45, -21.04, 7.6, 0.10584, 4, 42, 57.8, 8.73, 0.33839, 43, 31.33, 7.62, 0.0144, 44, 9.93, 7.73, 0.32329, 45, -11.55, 7.73, + 0.32392, 4, 42, 58.53, 19.24, 0.42143, 43, 41.87, 7.44, 0.00109, 44, 20.47, 7.55, 0.11176, 45, -1.01, 7.55, 0.46572, 4, 42, 60.09, 31.38, 0.79569, 43, 54.07, 6.52, 5e-05, 44, 32.67, + 6.63, 0.01091, 45, 11.19, 6.63, 0.19335, 4, 42, 63.61, -35.67, 0.66085, 43, -12.7, -0.52, 0.32566, 44, -34.1, -0.41, 0.01346, 45, -55.58, -0.41, 3e-05, 4, 42, 64.06, -22.82, 0.31024, + 43, 0.16, -0.29, 0.56299, 44, -21.25, -0.19, 0.12589, 45, -42.72, -0.19, 0.00089, 4, 42, 64.25, -11.45, 0.24349, 43, 11.52, 0.12, 0.36477, 44, -9.89, 0.22, 0.37599, 45, -31.36, 0.22, + 0.01574, 4, 42, 64.34, -1.18, 0.2525, 43, 21.78, 0.57, 0.10936, 44, 0.37, 0.68, 0.52284, 45, -21.1, 0.68, 0.1153, 4, 42, 64.83, 8.75, 0.2544, 43, 31.72, 0.6, 0.01401, 44, 10.32, + 0.71, 0.36809, 45, -11.16, 0.71, 0.3635, 4, 42, 65.03, 19.51, 0.3466, 43, 42.48, 0.96, 0.00077, 44, 21.07, 1.07, 0.1237, 45, -0.4, 1.07, 0.52893, 4, 42, 66.57, 33.2, 0.69411, 43, + 56.23, 0.15, 3e-05, 44, 34.83, 0.26, 0.01435, 45, 13.35, 0.26, 0.29151, 4, 42, 71.92, 34.78, 0.61986, 43, 58.1, -5.11, 1e-05, 44, 36.69, -5.01, 0.01658, 45, 15.22, -5.01, 0.36355, 4, + 42, 70.84, 19.53, 0.28549, 43, 42.81, -4.84, 0.00065, 44, 21.4, -4.73, 0.13463, 45, -0.07, -4.73, 0.57924, 4, 42, 70.54, 8.77, 0.18483, 43, 32.04, -5.1, 0.01432, 44, 10.64, -4.99, + 0.40541, 45, -10.84, -4.99, 0.39544, 4, 42, 70.23, -1.55, 0.18141, 43, 21.73, -5.33, 0.11681, 44, 0.32, -5.23, 0.57764, 45, -21.15, -5.23, 0.12413, 4, 42, 69.5, -11.84, 0.17479, 43, + 11.41, -5.14, 0.39444, 44, -10, -5.04, 0.41447, 45, -31.47, -5.04, 0.0163, 4, 42, 69.05, -23.63, 0.24784, 43, -0.38, -5.32, 0.61396, 44, -21.79, -5.22, 0.13743, 45, -43.26, -5.22, + 0.00077, 4, 42, 68.55, -37.4, 0.59732, 43, -14.16, -5.54, 0.38768, 44, -35.56, -5.43, 0.01499, 45, -57.04, -5.43, 1e-05, 4, 42, 22.71, 0.45, 0.98403, 43, 21.22, 42.22, 0.00516, 44, + -0.19, 42.33, 0.00609, 45, -21.66, 42.33, 0.00473, 3, 42, 13.08, -10.5, 0.98457, 43, 9.78, 51.26, 0.01421, 44, -11.62, 51.37, 0.00123, 3, 42, 16.1, 11.4, 0.98807, 44, 10.41, 49.51, + 0.00101, 45, -11.07, 49.51, 0.01092, 1, 42, 40.1, -23.51, 1, 4, 42, 45.53, -24.85, 0.93122, 43, -2.85, 18.1, 0.05888, 44, -24.25, 18.21, 0.00959, 45, -45.73, 18.21, 0.0003, 4, 42, + 51.14, -26.22, 0.67882, 43, -3.92, 12.43, 0.287, 44, -25.32, 12.54, 0.03374, 45, -46.8, 12.54, 0.00045, 4, 42, 57.07, -27.81, 0.52353, 43, -5.19, 6.42, 0.4314, 44, -26.59, 6.53, + 0.04479, 45, -48.07, 6.53, 0.00029, 4, 42, 63.82, -29.53, 0.41464, 43, -6.56, -0.41, 0.53292, 44, -27.96, -0.3, 0.05226, 45, -49.44, -0.3, 0.00018, 4, 42, 68.8, -30.65, 0.35706, 43, + -7.41, -5.43, 0.58638, 44, -28.81, -5.33, 0.05644, 45, -50.29, -5.33, 0.00012, 4, 42, 40.56, -14.49, 0.88311, 43, 7.24, 23.62, 0.07338, 44, -14.17, 23.72, 0.03978, 45, -35.64, 23.72, + 0.00372, 4, 42, 46.13, -15.07, 0.62555, 43, 6.96, 18.02, 0.24007, 44, -14.45, 18.12, 0.1259, 45, -35.92, 18.12, 0.00848, 4, 42, 51.36, -15.56, 0.4342, 43, 6.74, 12.77, 0.37611, 44, + -14.67, 12.88, 0.18375, 45, -36.14, 12.88, 0.00595, 4, 42, 57.31, -16.26, 0.33684, 43, 6.35, 6.79, 0.44427, 44, -15.05, 6.9, 0.21425, 45, -36.53, 6.9, 0.00464, 4, 42, 64.16, -17.02, + 0.25537, 43, 5.95, -0.08, 0.49872, 44, -15.45, 0.02, 0.24179, 45, -36.93, 0.02, 0.00413, 4, 42, 69.28, -17.64, 0.18921, 43, 5.6, -5.23, 0.54119, 44, -15.8, -5.13, 0.26556, 45, + -37.28, -5.13, 0.00404, 4, 42, 41.05, -4.82, 0.83361, 43, 16.93, 23.64, 0.05679, 44, -4.48, 23.74, 0.08927, 45, -25.95, 23.74, 0.02033, 4, 42, 46.53, -5.25, 0.57797, 43, 16.78, + 18.14, 0.13938, 44, -4.63, 18.25, 0.23843, 45, -26.1, 18.25, 0.04422, 4, 42, 51.66, -5.87, 0.42696, 43, 16.43, 12.98, 0.17737, 44, -4.97, 13.08, 0.35156, 45, -26.45, 13.08, 0.04411, + 4, 42, 57.39, -6.06, 0.33132, 43, 16.54, 7.25, 0.20059, 44, -4.86, 7.35, 0.42277, 45, -26.34, 7.35, 0.04531, 4, 42, 64.29, -6.56, 0.24781, 43, 16.41, 0.33, 0.22055, 44, -4.99, 0.44, + 0.48389, 45, -26.47, 0.44, 0.04775, 4, 42, 69.85, -6.91, 0.17763, 43, 16.35, -5.23, 0.23735, 44, -5.05, -5.13, 0.53429, 45, -26.52, -5.13, 0.05074, 4, 42, 41.28, 4.25, 0.83746, 43, + 26, 23.88, 0.02009, 44, 4.59, 23.99, 0.08772, 45, -16.88, 23.99, 0.05473, 4, 42, 46.8, 4.29, 0.58276, 43, 26.32, 18.37, 0.04346, 44, 4.92, 18.47, 0.23645, 45, -16.56, 18.47, 0.13732, + 4, 42, 52.06, 4.23, 0.43226, 43, 26.54, 13.12, 0.04191, 44, 5.13, 13.22, 0.34769, 45, -16.34, 13.22, 0.17814, 4, 42, 57.61, 3.94, 0.33656, 43, 26.54, 7.56, 0.0422, 44, 5.14, 7.66, + 0.41771, 45, -16.34, 7.66, 0.20353, 4, 42, 64.59, 3.92, 0.25264, 43, 26.89, 0.59, 0.04384, 44, 5.49, 0.69, 0.47782, 45, -15.99, 0.69, 0.2257, 4, 42, 70.39, 3.84, 0.18189, 43, 27.11, + -5.21, 0.04615, 44, 5.71, -5.11, 0.52741, 45, -15.77, -5.11, 0.24456, 4, 42, 41.23, 12.93, 0.8608, 43, 34.66, 24.39, 0.00457, 44, 13.26, 24.49, 0.04889, 45, -8.22, 24.49, 0.08574, 4, + 42, 47.07, 13.06, 0.60926, 43, 35.09, 18.56, 0.00894, 44, 13.69, 18.67, 0.13479, 45, -7.79, 18.67, 0.247, 4, 42, 52.33, 13.43, 0.45377, 43, 35.74, 13.33, 0.00554, 44, 14.33, 13.43, + 0.18027, 45, -7.14, 13.43, 0.36041, 4, 42, 58.15, 13.75, 0.35749, 43, 36.37, 7.54, 0.00417, 44, 14.96, 7.64, 0.20976, 45, -6.51, 7.64, 0.42858, 4, 42, 64.93, 13.95, 0.27612, 43, + 36.92, 0.78, 0.00359, 44, 15.52, 0.88, 0.23625, 45, -5.96, 0.88, 0.48404, 4, 42, 70.69, 14.22, 0.20954, 43, 37.5, -4.97, 0.00344, 44, 16.1, -4.86, 0.25903, 45, -5.38, -4.86, 0.52799, + 1, 42, 41.18, 21.86, 1, 4, 42, 47.26, 22.62, 0.82489, 43, 44.65, 18.87, 0.00083, 44, 23.25, 18.98, 0.0268, 45, 1.77, 18.98, 0.14748, 4, 42, 52.68, 24.04, 0.64773, 43, 46.35, 13.54, + 0.00052, 44, 24.95, 13.65, 0.04091, 45, 3.47, 13.65, 0.31084, 4, 42, 59.31, 25.35, 0.53225, 43, 48.01, 6.98, 0.00029, 44, 26.6, 7.09, 0.04857, 45, 5.13, 7.09, 0.41889, 4, 42, 65.88, + 27.11, 0.46955, 43, 50.12, 0.51, 0.00016, 44, 28.71, 0.62, 0.05201, 45, 7.24, 0.62, 0.47828, 4, 42, 71.43, 27.89, 0.41589, 43, 51.19, -4.99, 0.0001, 44, 29.78, -4.88, 0.05591, 45, + 8.31, -4.88, 0.5281, 4, 42, 51.12, -28.92, 0.72647, 43, -6.61, 12.31, 0.25381, 44, -28.01, 12.41, 0.01954, 45, -49.49, 12.41, 0.00018, 4, 42, 56.98, -30.79, 0.64422, 43, -8.18, 6.36, + 0.33291, 44, -29.58, 6.46, 0.02275, 45, -51.06, 6.46, 0.00011, 4, 42, 63.71, -32.68, 0.55448, 43, -9.7, -0.46, 0.41902, 44, -31.11, -0.36, 0.02643, 45, -52.58, -0.36, 7e-05, 4, 42, + 68.66, -34.31, 0.44397, 43, -11.07, -5.49, 0.52396, 44, -32.48, -5.38, 0.03202, 45, -53.95, -5.38, 4e-05, 4, 42, 51.16, -23.65, 0.5094, 43, -1.35, 12.55, 0.4213, 44, -22.75, 12.66, + 0.06847, 45, -44.22, 12.66, 0.00083, 4, 42, 57.16, -24.79, 0.42549, 43, -2.17, 6.49, 0.49746, 44, -23.57, 6.6, 0.07648, 45, -45.05, 6.6, 0.00057, 4, 42, 63.94, -26.25, 0.35688, 43, + -3.28, -0.35, 0.55926, 44, -24.68, -0.25, 0.08347, 45, -46.16, -0.25, 0.00039, 4, 42, 68.91, -27.43, 0.29772, 43, -4.19, -5.38, 0.61133, 44, -25.59, -5.28, 0.09064, 45, -47.07, + -5.28, 0.00031, 4, 42, 69.16, -20.73, 0.21136, 43, 2.51, -5.28, 0.59029, 44, -18.89, -5.17, 0.19654, 45, -40.37, -5.17, 0.00182, 4, 42, 64.11, -19.92, 0.275, 43, 3.05, -0.19, + 0.54348, 44, -18.35, -0.08, 0.17958, 45, -39.83, -0.08, 0.00194, 4, 42, 57.28, -19.35, 0.35002, 43, 3.27, 6.66, 0.48643, 44, -18.14, 6.77, 0.16123, 45, -39.61, 6.77, 0.00232, 4, 42, + 51.26, -18.48, 0.41881, 43, 3.82, 12.72, 0.43213, 44, -17.59, 12.83, 0.1461, 45, -39.06, 12.83, 0.00296, 4, 42, 51.45, -13.1, 0.39313, 43, 9.2, 12.81, 0.35299, 44, -12.2, 12.91, + 0.24433, 45, -33.68, 12.91, 0.00955, 4, 42, 57.34, -13.55, 0.32258, 43, 9.06, 6.91, 0.39406, 44, -12.34, 7.02, 0.27473, 45, -33.82, 7.02, 0.00863, 4, 42, 64.2, -14.31, 0.24476, 43, + 8.66, 0.02, 0.43744, 44, -12.74, 0.12, 0.30953, 45, -34.22, 0.12, 0.00827, 4, 42, 69.38, -14.93, 0.17804, 43, 8.31, -5.19, 0.47328, 44, -13.09, -5.08, 0.3403, 45, -34.57, -5.08, + 0.00838, 4, 42, 69.68, -9.29, 0.17525, 43, 13.97, -5.19, 0.31355, 44, -7.44, -5.08, 0.48153, 45, -28.91, -5.08, 0.02968, 4, 42, 64.27, -9.12, 0.24396, 43, 13.85, 0.22, 0.29088, 44, + -7.55, 0.33, 0.43695, 45, -29.03, 0.33, 0.02821, 4, 42, 57.38, -8.64, 0.32275, 43, 13.97, 7.13, 0.26435, 44, -7.44, 7.23, 0.38552, 45, -28.91, 7.23, 0.02739, 4, 42, 51.61, -8.2, + 0.39269, 43, 14.1, 12.92, 0.24007, 44, -7.3, 13.02, 0.33961, 45, -28.78, 13.02, 0.02763, 4, 42, 51.73, -3.15, 0.39835, 43, 19.16, 13.05, 0.13664, 44, -2.25, 13.16, 0.3972, 45, + -23.72, 13.16, 0.06781, 4, 42, 57.41, -3.5, 0.32898, 43, 19.1, 7.37, 0.14701, 44, -2.3, 7.47, 0.45281, 45, -23.78, 7.47, 0.07119, 4, 42, 64.31, -3.92, 0.24968, 43, 19.05, 0.45, + 0.15947, 44, -2.36, 0.56, 0.51456, 45, -23.83, 0.56, 0.07629, 4, 42, 70.03, -4.3, 0.17972, 43, 18.96, -5.28, 0.17094, 44, -2.44, -5.18, 0.56767, 45, -23.91, -5.18, 0.08167, 4, 42, + 70.31, 1.21, 0.18179, 43, 24.49, -5.27, 0.07557, 44, 3.08, -5.17, 0.56385, 45, -18.39, -5.17, 0.17879, 4, 42, 64.46, 1.3, 0.25204, 43, 24.27, 0.58, 0.07119, 44, 2.86, 0.68, 0.51118, + 45, -18.61, 0.68, 0.16559, 4, 42, 57.52, 1.66, 0.33157, 43, 24.26, 7.52, 0.0672, 44, 2.86, 7.63, 0.44995, 45, -18.62, 7.63, 0.15128, 4, 42, 51.92, 1.69, 0.40101, 43, 23.99, 13.13, + 0.06478, 44, 2.59, 13.23, 0.39483, 45, -18.89, 13.23, 0.13938, 4, 42, 52.17, 6.37, 0.401, 43, 28.68, 13.11, 0.0258, 44, 7.28, 13.22, 0.33427, 45, -14.2, 13.22, 0.23894, 4, 42, 57.7, + 6.22, 0.3309, 43, 28.82, 7.59, 0.02514, 44, 7.42, 7.69, 0.37908, 45, -14.06, 7.69, 0.26488, 4, 42, 64.69, 5.99, 0.25155, 43, 28.96, 0.59, 0.02548, 44, 7.56, 0.7, 0.4293, 45, -13.92, + 0.7, 0.29367, 4, 42, 70.45, 5.95, 0.18206, 43, 29.22, -5.16, 0.02652, 44, 7.82, -5.06, 0.47284, 45, -13.66, -5.06, 0.31858, 4, 42, 70.61, 11.41, 0.19245, 43, 34.69, -5.04, 0.00724, + 44, 13.29, -4.93, 0.3321, 45, -8.19, -4.93, 0.46821, 4, 42, 70.77, 17.07, 0.23948, 43, 40.35, -4.9, 0.00153, 44, 18.94, -4.79, 0.19195, 45, -2.53, -4.79, 0.56704, 4, 42, 71.13, + 23.54, 0.346, 43, 46.82, -4.91, 0.00026, 44, 25.42, -4.81, 0.08922, 45, 3.94, -4.81, 0.56452, 4, 42, 71.67, 31.21, 0.48407, 43, 54.51, -5.05, 4e-05, 44, 33.11, -4.94, 0.03358, 45, + 11.63, -4.94, 0.48231, 4, 42, 66.23, 30.24, 0.54501, 43, 53.26, 0.33, 7e-05, 44, 31.86, 0.43, 0.03077, 45, 10.38, 0.43, 0.42415, 4, 42, 65.41, 22.86, 0.40266, 43, 45.85, 0.77, + 0.00034, 44, 24.45, 0.87, 0.08247, 45, 2.97, 0.87, 0.51452, 4, 42, 64.98, 16.56, 0.30287, 43, 39.53, 0.86, 0.00168, 44, 18.13, 0.97, 0.17579, 45, -3.35, 0.97, 0.51965, 4, 42, 64.87, + 11.12, 0.25994, 43, 34.09, 0.68, 0.00726, 44, 12.69, 0.79, 0.30245, 45, -8.79, 0.79, 0.43035, 4, 42, 57.96, 11, 0.3382, 43, 33.61, 7.58, 0.00776, 44, 12.21, 7.69, 0.26884, 45, -9.27, + 7.69, 0.38519, 4, 42, 58.32, 16.31, 0.37706, 43, 38.93, 7.49, 0.00208, 44, 17.52, 7.6, 0.15821, 45, -3.95, 7.6, 0.46265, 4, 42, 58.9, 22.12, 0.46779, 43, 44.77, 7.23, 0.00052, 44, + 23.36, 7.33, 0.07582, 45, 1.89, 7.33, 0.45586, 4, 42, 59.69, 28.3, 0.65325, 43, 50.97, 6.76, 0.00012, 44, 29.57, 6.86, 0.02541, 45, 8.09, 6.86, 0.32123, 4, 42, 52.82, 26.61, 0.75526, + 43, 48.93, 13.53, 0.00017, 44, 27.52, 13.64, 0.02002, 45, 6.05, 13.64, 0.22455, 4, 42, 52.51, 21.1, 0.52586, 43, 43.41, 13.55, 0.00082, 44, 22, 13.66, 0.07106, 45, 0.53, 13.66, + 0.40226, 4, 42, 52.35, 15.86, 0.44455, 43, 38.16, 13.44, 0.00273, 44, 16.76, 13.54, 0.1436, 45, -4.72, 13.54, 0.40912, 4, 42, 52.31, 10.54, 0.40864, 43, 32.85, 13.19, 0.0088, 44, + 11.45, 13.3, 0.23945, 45, -10.03, 13.3, 0.34311, 4, 42, 70.77, -38.17, 0.52059, 43, -14.82, -7.8, 0.45917, 44, -36.22, -7.7, 0.02022, 45, -57.7, -7.7, 1e-05, 4, 42, 70.83, -34.9, + 0.37517, 43, -11.54, -7.69, 0.58803, 44, -32.95, -7.59, 0.03676, 45, -54.42, -7.59, 4e-05, 4, 42, 70.97, -31.21, 0.31655, 43, -7.85, -7.63, 0.62281, 44, -29.26, -7.53, 0.06054, 45, + -50.73, -7.53, 0.00011, 4, 42, 71.13, -27.77, 0.25662, 43, -4.41, -7.62, 0.64624, 44, -25.82, -7.51, 0.09684, 45, -47.29, -7.51, 0.0003, 4, 42, 71.2, -23.97, 0.20542, 43, -0.61, + -7.48, 0.64718, 44, -22.02, -7.37, 0.14662, 45, -43.49, -7.37, 0.00077, 4, 42, 71.35, -20.96, 0.16774, 43, 2.4, -7.48, 0.62093, 44, -19, -7.37, 0.20946, 45, -40.48, -7.37, 0.00187, + 4, 42, 71.49, -17.96, 0.14406, 43, 5.4, -7.45, 0.56885, 44, -16, -7.35, 0.28288, 45, -37.48, -7.35, 0.00421, 4, 42, 71.65, -15.17, 0.13169, 43, 8.2, -7.46, 0.49722, 44, -13.21, + -7.36, 0.36227, 45, -34.68, -7.36, 0.00882, 4, 42, 71.89, -12.02, 0.12708, 43, 11.35, -7.54, 0.41453, 44, -10.05, -7.44, 0.44117, 45, -31.52, -7.44, 0.01722, 4, 42, 71.98, -9.41, + 0.12668, 43, 13.97, -7.49, 0.32958, 44, -7.43, -7.39, 0.51233, 45, -28.91, -7.39, 0.03141, 4, 42, 72.15, -7.02, 0.12812, 43, 16.36, -7.53, 0.24965, 44, -5.05, -7.43, 0.56851, 45, + -26.52, -7.43, 0.05372, 4, 42, 72.39, -4.46, 0.12979, 43, 18.93, -7.65, 0.1799, 44, -2.47, -7.54, 0.60387, 45, -23.95, -7.54, 0.08644, 4, 42, 72.47, -1.68, 0.13105, 43, 21.71, -7.58, + 0.12302, 44, 0.3, -7.47, 0.61461, 45, -21.17, -7.47, 0.13132, 4, 42, 72.58, 1.2, 0.13159, 43, 24.6, -7.54, 0.07962, 44, 3.19, -7.43, 0.5998, 45, -18.28, -7.43, 0.18899, 4, 42, 72.71, + 3.77, 0.13189, 43, 27.17, -7.53, 0.04862, 44, 5.76, -7.42, 0.56113, 45, -15.71, -7.42, 0.25837, 4, 42, 72.9, 5.95, 0.13282, 43, 29.35, -7.61, 0.02792, 44, 7.95, -7.5, 0.50297, 45, + -13.53, -7.5, 0.33629, 4, 42, 72.96, 8.77, 0.13637, 43, 32.18, -7.52, 0.01503, 44, 10.77, -7.41, 0.43134, 45, -10.7, -7.41, 0.41726, 4, 42, 73.15, 11.31, 0.14539, 43, 34.72, -7.57, + 0.00757, 44, 13.32, -7.46, 0.35328, 45, -8.16, -7.46, 0.49376, 4, 42, 73.26, 14.32, 0.16393, 43, 37.73, -7.53, 0.00355, 44, 16.32, -7.43, 0.27561, 45, -5.15, -7.43, 0.55691, 4, 42, + 73.56, 17.06, 0.19585, 43, 40.48, -7.68, 0.00155, 44, 19.08, -7.58, 0.20422, 45, -2.4, -7.58, 0.59837, 4, 42, 73.65, 19.69, 0.24372, 43, 43.11, -7.63, 0.00063, 44, 21.71, -7.53, + 0.14329, 45, 0.23, -7.53, 0.61235, 4, 42, 73.87, 23.74, 0.30631, 43, 47.17, -7.64, 0.00024, 44, 25.77, -7.53, 0.09501, 45, 4.29, -7.53, 0.59844, 4, 42, 74.01, 28.34, 0.3775, 43, + 51.77, -7.54, 9e-05, 44, 30.37, -7.43, 0.05972, 45, 8.89, -7.43, 0.5627, 4, 42, 74.28, 31.7, 0.44548, 43, 55.14, -7.63, 3e-05, 44, 33.74, -7.53, 0.03652, 45, 12.26, -7.53, 0.51797, + 4, 42, 74.78, 35.38, 0.56131, 43, 58.84, -7.93, 1e-05, 44, 37.44, -7.83, 0.02128, 45, 15.96, -7.83, 0.41739 + ], + "hull": 44, + "edges": [ + 78, 76, 86, 0, 78, 80, 80, 82, 82, 84, 84, 86, 0, 94, 76, 96, 62, 64, 74, 76, 102, 96, 74, 102, 104, 90, 106, 98, 108, 88, 110, 100, 112, 92, 114, 94, 2, 0, 114, 2, 72, 74, 116, 102, + 72, 116, 118, 104, 120, 106, 122, 108, 124, 110, 126, 112, 128, 114, 4, 2, 128, 4, 70, 72, 130, 116, 70, 130, 132, 118, 134, 120, 136, 122, 138, 124, 140, 126, 142, 128, 8, 6, 6, 4, + 142, 6, 68, 70, 144, 130, 68, 144, 146, 132, 148, 134, 150, 136, 152, 138, 154, 140, 156, 142, 156, 8, 8, 10, 10, 12, 12, 158, 158, 156, 10, 158, 160, 154, 162, 152, 164, 150, 166, + 148, 168, 146, 170, 144, 64, 66, 66, 68, 170, 66, 82, 172, 172, 88, 98, 172, 172, 100, 80, 174, 174, 90, 96, 174, 84, 176, 176, 92, 94, 176, 90, 178, 178, 96, 102, 180, 180, 104, + 178, 180, 180, 182, 182, 184, 184, 186, 186, 188, 90, 190, 190, 98, 104, 192, 192, 106, 190, 192, 192, 194, 194, 196, 196, 198, 198, 200, 88, 202, 202, 98, 106, 204, 204, 108, 202, + 204, 204, 206, 206, 208, 208, 210, 210, 212, 88, 214, 214, 100, 108, 216, 216, 110, 214, 216, 216, 218, 218, 220, 220, 222, 222, 224, 92, 226, 226, 100, 110, 228, 228, 112, 226, 228, + 228, 230, 230, 232, 232, 234, 234, 236, 92, 238, 238, 94, 112, 240, 240, 114, 238, 240, 240, 242, 242, 244, 244, 246, 246, 248, 12, 14, 170, 64, 116, 250, 250, 182, 130, 252, 252, + 184, 250, 252, 144, 254, 254, 186, 252, 254, 170, 256, 256, 188, 254, 256, 58, 60, 60, 62, 118, 258, 258, 182, 132, 260, 260, 184, 258, 260, 146, 262, 262, 186, 260, 262, 168, 264, + 264, 188, 262, 264, 54, 56, 56, 58, 50, 52, 52, 54, 168, 266, 266, 200, 146, 268, 268, 198, 266, 268, 132, 270, 270, 196, 268, 270, 118, 272, 272, 194, 270, 272, 120, 274, 274, 194, + 134, 276, 276, 196, 274, 276, 148, 278, 278, 198, 276, 278, 166, 280, 280, 200, 278, 280, 46, 48, 48, 50, 42, 44, 44, 46, 166, 282, 282, 212, 148, 284, 284, 210, 282, 284, 134, 286, + 286, 208, 284, 286, 120, 288, 288, 206, 286, 288, 122, 290, 290, 206, 136, 292, 292, 208, 290, 292, 150, 294, 294, 210, 292, 294, 164, 296, 296, 212, 294, 296, 38, 40, 40, 42, 34, + 36, 36, 38, 164, 298, 298, 224, 150, 300, 300, 222, 298, 300, 136, 302, 302, 220, 300, 302, 122, 304, 304, 218, 302, 304, 124, 306, 306, 218, 138, 308, 308, 220, 306, 308, 152, 310, + 310, 222, 308, 310, 162, 312, 312, 224, 310, 312, 30, 32, 32, 34, 26, 28, 28, 30, 162, 314, 314, 236, 22, 24, 24, 26, 160, 316, 316, 236, 18, 20, 20, 22, 160, 318, 318, 248, 14, 16, + 16, 18, 158, 320, 320, 248, 156, 322, 322, 246, 320, 322, 154, 324, 324, 246, 318, 324, 154, 326, 326, 234, 316, 326, 152, 328, 328, 234, 314, 328, 138, 330, 330, 232, 328, 330, 140, + 332, 332, 232, 326, 332, 140, 334, 334, 244, 324, 334, 142, 336, 336, 244, 322, 336, 128, 338, 338, 242, 336, 338, 126, 340, 340, 242, 334, 340, 126, 342, 342, 230, 332, 342, 124, + 344, 344, 230, 330, 344, 62, 346, 346, 170, 60, 348, 348, 256, 346, 348, 58, 350, 350, 188, 348, 350, 56, 352, 352, 264, 350, 352, 54, 354, 354, 168, 352, 354, 52, 356, 356, 266, + 354, 356, 50, 358, 358, 200, 356, 358, 48, 360, 360, 280, 358, 360, 46, 362, 362, 166, 360, 362, 44, 364, 364, 282, 362, 364, 42, 366, 366, 212, 364, 366, 40, 368, 368, 296, 366, + 368, 38, 370, 370, 164, 368, 370, 36, 372, 372, 298, 370, 372, 34, 374, 374, 224, 372, 374, 32, 376, 376, 312, 374, 376, 30, 378, 378, 162, 376, 378, 28, 380, 380, 314, 378, 380, 26, + 382, 382, 236, 380, 382, 24, 384, 384, 316, 382, 384, 22, 386, 386, 160, 384, 386, 20, 388, 388, 318, 386, 388, 18, 390, 390, 248, 388, 390, 16, 392, 392, 320, 390, 392, 14, 394, + 394, 158, 392, 394 + ], + "width": 82.3529411764706, + "height": 80.0, + "path": "summer-as.ear-right-bubble", + "x": 0.32352941176470296, + "y": 0.0 + } + }, + "ear-right-dot-01": { + "ear-right-dot": {"x": 0.3082352941176467, "y": 0.33764705882352897, "rotation": -0.95, "width": 18.823529411764707, "height": 11.764705882352942, "path": "summer-as.ear-right-dot"} + }, + "ear-right-dot-02": { + "ear-right-dot": {"x": 0.3082352941176467, "y": 0.33764705882352897, "rotation": -0.95, "width": 18.823529411764707, "height": 11.764705882352942, "path": "summer-as.ear-right-dot"} + }, + "ear-right-dot-03": { + "ear-right-dot": {"x": 0.3082352941176467, "y": 0.33764705882352897, "rotation": -0.95, "width": 18.823529411764707, "height": 11.764705882352942, "path": "summer-as.ear-right-dot"} + }, + "ear-right-dot-04": { + "ear-right-dot": {"x": 0.3082352941176467, "y": 0.33764705882352897, "rotation": -0.95, "width": 18.823529411764707, "height": 11.764705882352942, "path": "summer-as.ear-right-dot"} + }, + "ear-right-dot-05": { + "ear-right-dot": {"x": 0.3082352941176467, "y": 0.33764705882352897, "rotation": -0.95, "width": 18.823529411764707, "height": 11.764705882352942, "path": "summer-as.ear-right-dot"} + }, + "ear-right-dot-06": { + "ear-right-dot": {"x": 0.3082352941176467, "y": 0.33764705882352897, "rotation": -0.95, "width": 18.823529411764707, "height": 11.764705882352942, "path": "summer-as.ear-right-dot"} + }, + "ear-right-dot-07": { + "ear-right-dot": {"x": 0.3082352941176467, "y": 0.33764705882352897, "rotation": -0.95, "width": 18.823529411764707, "height": 11.764705882352942, "path": "summer-as.ear-right-dot"} + }, + "ear-right-dot-08": { + "ear-right-dot": {"x": 0.3082352941176467, "y": 0.33764705882352897, "rotation": -0.95, "width": 18.823529411764707, "height": 11.764705882352942, "path": "summer-as.ear-right-dot"} + }, + "ear-right-dot-09": { + "ear-right-dot": {"x": 0.3082352941176467, "y": 0.33764705882352897, "rotation": -0.95, "width": 18.823529411764707, "height": 11.764705882352942, "path": "summer-as.ear-right-dot"} + }, + "ear-right-dot-10": { + "ear-right-dot": {"x": 0.3082352941176467, "y": 0.33764705882352897, "rotation": -0.95, "width": 18.823529411764707, "height": 11.764705882352942, "path": "summer-as.ear-right-dot"} + }, + "ear-right-dot-11": { + "ear-right-dot": {"x": 0.3082352941176467, "y": 0.33764705882352897, "rotation": -0.95, "width": 18.823529411764707, "height": 11.764705882352942, "path": "summer-as.ear-right-dot"} + }, + "ear-right-dot-12": { + "ear-right-dot": {"x": 0.3082352941176467, "y": 0.33764705882352897, "rotation": -0.95, "width": 18.823529411764707, "height": 11.764705882352942, "path": "summer-as.ear-right-dot"} + }, + "ear-right-dot-13": { + "ear-right-dot": {"x": 0.3082352941176467, "y": 0.33764705882352897, "rotation": -0.95, "width": 18.823529411764707, "height": 11.764705882352942, "path": "summer-as.ear-right-dot"} + }, + "ear-right-dot-14": { + "ear-right-dot": {"x": 0.3082352941176467, "y": 0.33764705882352897, "rotation": -0.95, "width": 18.823529411764707, "height": 11.764705882352942, "path": "summer-as.ear-right-dot"} + }, + "ear-right-dot-15": { + "ear-right-dot": {"x": 0.3082352941176467, "y": 0.33764705882352897, "rotation": -0.95, "width": 18.823529411764707, "height": 11.764705882352942, "path": "summer-as.ear-right-dot"} + }, + "ear-right-dot-16": { + "ear-right-dot": {"x": 0.3082352941176467, "y": 0.33764705882352897, "rotation": -0.95, "width": 18.823529411764707, "height": 11.764705882352942, "path": "summer-as.ear-right-dot"} + }, + "ear-right-dot-17": { + "ear-right-dot": {"x": 0.3082352941176467, "y": 0.33764705882352897, "rotation": -0.95, "width": 18.823529411764707, "height": 11.764705882352942, "path": "summer-as.ear-right-dot"} + }, + "ear-right-dot-18": { + "ear-right-dot": {"x": 0.3082352941176467, "y": 0.33764705882352897, "rotation": -0.95, "width": 18.823529411764707, "height": 11.764705882352942, "path": "summer-as.ear-right-dot"} + }, + "ear-right-dot-19": { + "ear-right-dot": {"x": 0.3082352941176467, "y": 0.33764705882352897, "rotation": -0.95, "width": 18.823529411764707, "height": 11.764705882352942, "path": "summer-as.ear-right-dot"} + }, + "ear-right-dot-20": { + "ear-right-dot": {"x": 0.3082352941176467, "y": 0.33764705882352897, "rotation": -0.95, "width": 18.823529411764707, "height": 11.764705882352942, "path": "summer-as.ear-right-dot"} + }, + "ear-right-under": { + "ear-right-under": {"x": 85.5464705882353, "y": -16.192941176470594, "rotation": -93, "width": 117.64705882352942, "height": 204.7058823529412, "path": "summer-as.ear-right-under"} + }, + "ear-right-upper": { + "ear-right-upper": {"x": 90.18058823529411, "y": -18.45235294117648, "rotation": -93, "width": 127.05882352941177, "height": 211.76470588235296, "path": "summer-as.ear-right-upper"} + }, + "eyes": { + "eyes": {"x": 23.524117647058812, "y": 25.639411764705883, "width": 329.4117647058824, "height": 152.94117647058823, "path": "summer-as.eyes"}, + "eyes-angry": {"x": 24.664117647058813, "y": 25.639411764705883, "width": 329.4117647058824, "height": 152.94117647058823, "path": "summer-as.eyes-angry"}, + "eyes-happy": {"x": 24.664117647058813, "y": 25.639411764705883, "width": 329.4117647058824, "height": 152.94117647058823, "path": "summer-as.eyes-happy"}, + "eyes-shut": {"x": 24.664117647058813, "y": 25.639411764705883, "width": 329.4117647058824, "height": 152.94117647058823, "path": "summer-as.eyes-shut"} + }, + "eyes-happy-accessory": { + "eyes-happy-accessory": { + "x": 0.45823529411764496, "y": 1.135294117647058, "scaleX": 1.4, "scaleY": 1.4, "width": 98.82352941176471, "height": 103.52941176470588, "path": "summer-as.eyes-happy-accessory" + } + }, + "eyes-light-dot": {"eye-light-dot": {"x": -0.07764705882352896, "y": 2.2158823529411737, "width": 68.23529411764706, "height": 70.58823529411765, "path": "summer-as.eye-light-dot"}}, + "eyes-light-dot-02": {"eye-light-dot": {"x": -0.07764705882352896, "y": 2.2158823529411737, "width": 68.23529411764706, "height": 70.58823529411765, "path": "summer-as.eye-light-dot"}}, + "eyes-light-left": { + "light": { + "x": 7.520588235294116, "y": 1.589411764705884, "scaleX": 1.2, "scaleY": 1.8, "rotation": 178.57, "width": 47.05882352941177, "height": 72.94117647058823, "path": "summer-as.light" + } + }, + "eyes-light-right": { + "light": { + "x": 7.520588235294116, "y": 1.589411764705884, "scaleX": 1.2, "scaleY": 1.8, "rotation": 178.57, "width": 47.05882352941177, "height": 72.94117647058823, "path": "summer-as.light" + } + }, + "eyes-upper": {"eyes-upper": {"x": 24.510588235294115, "y": 24.749411764705883, "width": 327.05882352941177, "height": 152.94117647058823, "path": "summer-as.eyes-upper"}}, + "horn": {"horn": {"x": 102.31588235294117, "y": -19.51705882352942, "rotation": -90, "width": 230.58823529411765, "height": 235.29411764705884, "path": "summer-as.horn"}}, + "mouth": { + "mouth": {"x": -11.394705882352943, "y": 54.87470588235294, "width": 143.52941176470588, "height": 56.470588235294116, "path": "summer-as.mouth"}, + "mouth-bite": {"x": 0.01705882352940602, "y": 39.698235294117644, "width": 164.7058823529412, "height": 98.82352941176471, "path": "summer-as.mouth-bite"}, + "mouth-open": {"x": -6.27705882352942, "y": 16.69823529411765, "width": 155.29411764705884, "height": 138.8235294117647, "path": "summer-as.mouth-open"}, + "mouth-smile": {"x": -0.982941176470594, "y": 48.34529411764706, "width": 164.7058823529412, "height": 63.529411764705884, "path": "summer-as.mouth-smile"} + }, + "mouth-accessory": { + "mouth-accessory": { + "type": "mesh", + "uvs": [ + 0.7567, 0.0473, 0.86697, 0.14039, 0.9443, 0.25209, 0.99714, 0.36666, 0.99999, 0.49597, 1, 0.61625, 0.9486, 0.73368, 0.85981, 0.85684, 0.74238, 0.95422, 0.58914, 1, 0.46884, 1, + 0.36484, 0.99858, 0.24169, 0.95082, 0.12854, 0.86646, 0.03732, 0.75174, 0, 0.59723, 0, 0.48254, 0, 0.36237, 0.04691, 0.22488, 0.14286, 0.10888, 0.25027, 0.03298, 0.37916, 0, 0.49749, + 0, 0.62208, 0, 0.48816, 0.49691, 0.38984, 0.47048, 0.40039, 0.4428, 0.42008, 0.42041, 0.44087, 0.4047, 0.46611, 0.39392, 0.49007, 0.39257, 0.5155, 0.39441, 0.54363, 0.40403, 0.56948, + 0.42037, 0.58681, 0.44396, 0.59625, 0.46925, 0.60239, 0.4967, 0.59962, 0.5229, 0.58591, 0.54718, 0.56617, 0.57246, 0.53987, 0.58993, 0.50841, 0.5978, 0.48422, 0.59958, 0.46389, + 0.59563, 0.44255, 0.58693, 0.41915, 0.56782, 0.40098, 0.54296, 0.39091, 0.5164, 0.38677, 0.494, 0.25326, 0.49016, 0.26189, 0.43608, 0.28722, 0.37303, 0.33073, 0.32, 0.38007, 0.28612, + 0.43888, 0.26671, 0.49242, 0.26434, 0.5491, 0.26844, 0.61141, 0.29055, 0.66979, 0.32597, 0.72081, 0.37204, 0.74533, 0.4311, 0.75435, 0.49642, 0.74415, 0.5566, 0.71527, 0.6137, + 0.66814, 0.67121, 0.6053, 0.70764, 0.53338, 0.72221, 0.47953, 0.72167, 0.43531, 0.71188, 0.25606, 0.54343, 0.2836, 0.60497, 0.33013, 0.6593, 0.38745, 0.69572, 0.2371, 0.756, 0.32258, + 0.81152, 0.40412, 0.83877, 0.47432, 0.85748, 0.5622, 0.86577, 0.67514, 0.83328, 0.76201, 0.76212, 0.82762, 0.67147, 0.86788, 0.58544, 0.89046, 0.49617, 0.88879, 0.39439, 0.84496, + 0.30541, 0.77906, 0.22313, 0.69067, 0.15785, 0.58965, 0.1164, 0.49532, 0.10584, 0.40602, 0.11317, 0.30758, 0.14475, 0.22046, 0.19609, 0.15118, 0.28916, 0.11571, 0.39679, 0.10936, + 0.48603, 0.11577, 0.57155, 0.16414, 0.68085 + ], + "triangles": [ + 76, 67, 66, 74, 71, 72, 67, 75, 68, 75, 72, 68, 62, 36, 61, 58, 33, 57, 65, 66, 40, 65, 39, 64, 44, 72, 71, 64, 38, 63, 71, 70, 46, 63, 37, 62, 70, 69, 47, 69, 49, 48, 49, 50, 25, + 50, 51, 26, 26, 51, 52, 52, 53, 28, 57, 32, 56, 56, 31, 55, 53, 54, 29, 55, 29, 54, 35, 34, 59, 41, 42, 24, 40, 41, 24, 43, 24, 42, 39, 40, 24, 24, 43, 44, 44, 45, 24, 39, 24, 38, + 45, 46, 24, 38, 24, 37, 46, 47, 24, 37, 24, 36, 47, 48, 24, 48, 25, 24, 25, 26, 24, 26, 27, 24, 27, 28, 24, 28, 29, 24, 24, 35, 36, 24, 34, 35, 24, 33, 34, 24, 32, 33, 24, 31, 32, + 24, 30, 31, 24, 29, 30, 66, 67, 41, 67, 42, 41, 66, 41, 40, 67, 68, 42, 68, 43, 42, 68, 72, 43, 40, 39, 65, 72, 44, 43, 44, 71, 45, 39, 38, 64, 71, 46, 45, 38, 37, 63, 70, 47, 46, + 37, 36, 62, 69, 48, 47, 36, 35, 60, 48, 49, 25, 25, 50, 26, 34, 33, 58, 27, 26, 52, 27, 52, 28, 28, 53, 29, 33, 32, 57, 32, 31, 56, 30, 29, 55, 31, 30, 55, 61, 36, 60, 60, 35, 59, + 34, 58, 59, 77, 66, 65, 73, 70, 71, 96, 69, 70, 10, 77, 9, 9, 78, 8, 9, 77, 78, 10, 76, 77, 76, 10, 75, 12, 74, 11, 10, 11, 75, 11, 74, 75, 7, 78, 79, 7, 8, 78, 13, 73, 12, 12, 73, + 74, 13, 96, 73, 13, 14, 96, 76, 66, 77, 77, 65, 78, 76, 75, 67, 79, 80, 7, 7, 80, 6, 74, 72, 75, 65, 64, 78, 78, 64, 79, 74, 73, 71, 64, 63, 79, 79, 63, 80, 73, 96, 70, 14, 95, 96, + 14, 15, 95, 80, 81, 6, 6, 81, 5, 96, 95, 69, 63, 62, 80, 80, 62, 81, 81, 82, 5, 82, 4, 5, 95, 16, 94, 95, 15, 16, 62, 61, 81, 81, 61, 82, 69, 94, 49, 69, 95, 94, 61, 60, 82, 60, 83, + 82, 82, 83, 4, 83, 3, 4, 49, 94, 50, 94, 93, 50, 94, 16, 93, 16, 17, 93, 50, 93, 51, 83, 60, 84, 93, 92, 51, 93, 17, 92, 60, 59, 84, 3, 83, 2, 51, 92, 52, 84, 59, 85, 83, 84, 2, 17, + 18, 92, 59, 58, 85, 85, 58, 86, 92, 91, 52, 53, 52, 90, 2, 84, 1, 58, 57, 86, 86, 57, 87, 92, 18, 91, 52, 91, 90, 54, 53, 89, 57, 56, 87, 87, 56, 88, 53, 90, 89, 55, 54, 88, 56, 55, + 88, 88, 54, 89, 84, 85, 1, 18, 19, 91, 1, 85, 0, 90, 91, 20, 85, 86, 0, 0, 86, 23, 91, 19, 20, 89, 90, 21, 86, 87, 23, 23, 87, 22, 90, 20, 21, 88, 89, 22, 87, 88, 22, 22, 89, 21 + ], + "vertices": [ + 1, 29, 42.58, 72.34, 1, 1, 29, 60.45, 57.26, 1, 1, 29, 72.98, 39.16, 1, 1, 29, 81.54, 20.6, 1, 1, 29, 82, -0.34, 1, 1, 29, 82, -19.83, 1, 1, 29, 73.67, -38.85, 1, 1, 29, 59.29, + -58.81, 1, 1, 29, 40.26, -74.58, 1, 1, 29, 15.44, -82, 1, 1, 29, -4.05, -82, 1, 1, 29, -20.9, -81.77, 1, 1, 29, -40.85, -74.03, 1, 1, 29, -59.18, -60.37, 1, 1, 29, -73.95, -41.78, 1, + 1, 29, -82, -16.75, 1, 1, 29, -82, 1.83, 1, 1, 29, -82, 21.3, 1, 1, 29, -72.4, 43.57, 1, 1, 29, -56.86, 62.36, 1, 1, 29, -39.46, 74.66, 1, 1, 29, -18.58, 82, 1, 1, 29, 0.59, 82, 1, + 1, 29, 20.78, 80.84, 1, 1, 81, -0.92, -0.5, 1, 1, 81, -16.85, 3.78, 1, 1, 81, -15.14, 8.27, 1, 1, 81, -11.95, 11.89, 1, 1, 81, -8.58, 14.44, 1, 1, 81, -4.49, 16.19, 1, 1, 81, -0.61, + 16.41, 1, 1, 81, 3.51, 16.11, 1, 1, 81, 8.07, 14.55, 1, 1, 81, 12.26, 11.9, 1, 1, 81, 15.06, 8.08, 1, 1, 81, 16.59, 3.98, 1, 1, 81, 17.59, -0.46, 1, 1, 81, 17.14, -4.71, 1, 1, 81, + 14.92, -8.64, 1, 1, 81, 11.72, -12.74, 1, 1, 81, 7.46, -15.57, 1, 1, 81, 2.36, -16.84, 1, 1, 81, -1.56, -17.13, 1, 1, 81, -4.85, -16.49, 1, 1, 81, -8.31, -15.08, 1, 1, 81, -12.1, + -11.99, 1, 1, 81, -15.04, -7.96, 1, 1, 81, -16.67, -3.66, 1, 1, 81, -17.34, -0.03, 1, 2, 29, -38.97, 0.6, 0.37475, 81, -38.97, 0.6, 0.62525, 2, 29, -37.57, 9.36, 0.38176, 81, -37.57, + 9.36, 0.61824, 2, 29, -33.47, 19.57, 0.39514, 81, -33.47, 19.57, 0.60486, 2, 29, -26.42, 28.16, 0.40154, 81, -26.42, 28.16, 0.59846, 2, 29, -18.43, 33.65, 0.40298, 81, -18.43, 33.65, + 0.59702, 2, 29, -8.9, 36.8, 0.39723, 81, -8.9, 36.8, 0.60277, 2, 29, -0.23, 37.18, 0.38672, 81, -0.23, 37.18, 0.61328, 2, 29, 8.95, 36.51, 0.39243, 81, 8.95, 36.51, 0.60757, 2, 29, + 19.05, 32.93, 0.39729, 81, 19.05, 32.93, 0.60271, 2, 29, 28.51, 27.19, 0.41715, 81, 28.51, 27.19, 0.58285, 2, 29, 36.77, 19.73, 0.45304, 81, 36.77, 19.73, 0.54696, 2, 29, 40.74, + 10.16, 0.44594, 81, 40.74, 10.16, 0.55406, 2, 29, 42.2, -0.42, 0.43856, 81, 42.2, -0.42, 0.56144, 2, 29, 40.55, -10.17, 0.41782, 81, 40.55, -10.17, 0.58218, 2, 29, 35.87, -19.42, + 0.38686, 81, 35.87, -19.42, 0.61314, 2, 29, 28.24, -28.73, 0.36878, 81, 28.24, -28.73, 0.63122, 2, 29, 18.06, -34.64, 0.3386, 81, 18.06, -34.64, 0.6614, 2, 29, 6.41, -37, 0.30037, + 81, 6.41, -37, 0.69963, 2, 29, -2.32, -36.91, 0.28415, 81, -2.32, -36.91, 0.71585, 2, 29, -9.48, -35.32, 0.27399, 81, -9.48, -35.32, 0.72601, 2, 29, -38.52, -8.03, 0.36783, 81, + -38.52, -8.03, 0.63217, 2, 29, -34.06, -18, 0.33446, 81, -34.06, -18, 0.66554, 2, 29, -26.52, -26.8, 0.30599, 81, -26.52, -26.8, 0.69401, 2, 29, -17.23, -32.71, 0.28378, 81, -17.23, + -32.71, 0.71622, 2, 29, -41.59, -42.47, 0.73847, 81, -41.59, -42.47, 0.26153, 2, 29, -27.74, -51.46, 0.71173, 81, -27.74, -51.46, 0.28827, 2, 29, -14.53, -55.88, 0.69513, 81, -14.53, + -55.88, 0.30487, 2, 29, -3.16, -58.91, 0.72225, 81, -3.16, -58.91, 0.27775, 2, 29, 11.08, -60.25, 0.77228, 81, 11.08, -60.25, 0.22772, 2, 29, 29.37, -54.99, 0.80171, 81, 29.37, + -54.99, 0.19829, 2, 29, 43.44, -43.46, 0.78981, 81, 43.44, -43.46, 0.21019, 2, 29, 54.07, -28.78, 0.79382, 81, 54.07, -28.78, 0.20618, 2, 29, 60.6, -14.84, 0.827, 81, 60.6, -14.84, + 0.173, 2, 29, 64.25, -0.38, 0.87698, 81, 64.25, -0.38, 0.12302, 2, 29, 63.98, 16.11, 0.92141, 81, 63.98, 16.11, 0.07859, 2, 29, 56.88, 30.53, 0.90642, 81, 56.88, 30.53, 0.09358, 2, + 29, 46.21, 43.86, 0.90058, 81, 46.21, 43.86, 0.09942, 2, 29, 31.89, 54.43, 0.8953, 81, 31.89, 54.43, 0.1047, 2, 29, 15.52, 61.14, 0.89934, 81, 15.52, 61.14, 0.10066, 2, 29, 0.24, + 62.86, 0.89762, 81, 0.24, 62.86, 0.10238, 2, 29, -14.22, 61.67, 0.90341, 81, -14.22, 61.67, 0.09659, 2, 29, -30.17, 56.55, 0.9151, 81, -30.17, 56.55, 0.0849, 2, 29, -44.28, 48.24, + 0.93596, 81, -44.28, 48.24, 0.06404, 2, 29, -55.51, 33.16, 0.90966, 81, -55.51, 33.16, 0.09034, 2, 29, -61.25, 15.72, 0.86888, 81, -61.25, 15.72, 0.13112, 2, 29, -62.28, 1.26, + 0.83823, 81, -62.28, 1.26, 0.16177, 2, 29, -61.24, -12.59, 0.82811, 81, -61.24, -12.59, 0.17189, 2, 29, -53.41, -30.3, 0.78788, 81, -53.41, -30.3, 0.21212 + ], + "hull": 24, + "edges": [ + 18, 20, 18, 16, 16, 14, 14, 12, 8, 10, 12, 10, 8, 6, 6, 4, 4, 2, 2, 0, 44, 46, 0, 46, 42, 44, 42, 40, 40, 38, 38, 36, 32, 34, 36, 34, 30, 32, 30, 28, 28, 26, 26, 24, 20, 22, 24, 22, + 50, 48, 52, 48, 50, 52, 54, 48, 52, 54, 56, 48, 54, 56, 58, 48, 56, 58, 60, 48, 58, 60, 62, 48, 60, 62, 64, 48, 62, 64, 66, 48, 64, 66, 68, 48, 66, 68, 70, 48, 68, 70, 72, 48, 70, + 72, 74, 48, 72, 74, 76, 48, 74, 76, 78, 48, 76, 78, 80, 48, 78, 80, 82, 48, 80, 82, 84, 48, 82, 84, 86, 48, 84, 86, 88, 48, 86, 88, 90, 48, 88, 90, 92, 48, 90, 92, 94, 48, 92, 94, + 96, 48, 94, 96, 96, 50, 98, 96, 100, 50, 98, 100, 102, 52, 100, 102, 104, 54, 102, 104, 106, 56, 104, 106, 108, 58, 106, 108, 110, 60, 108, 110, 112, 62, 110, 112, 114, 64, 112, 114, + 116, 66, 114, 116, 118, 68, 116, 118, 120, 70, 118, 120, 122, 72, 120, 122, 124, 74, 122, 124, 126, 76, 124, 126, 128, 78, 126, 128, 130, 80, 128, 130, 132, 82, 130, 132, 134, 84, + 132, 134, 136, 86, 134, 136, 138, 94, 98, 138, 140, 92, 138, 140, 142, 90, 140, 142, 144, 88, 142, 144, 144, 136, 26, 146, 146, 142, 24, 148, 148, 144, 146, 148, 22, 150, 150, 136, + 148, 150, 20, 152, 152, 134, 150, 152, 18, 154, 154, 132, 152, 154, 16, 156, 156, 130, 154, 156, 14, 158, 158, 128, 156, 158, 12, 160, 160, 126, 158, 160, 10, 162, 162, 124, 160, + 162, 8, 164, 164, 122, 162, 164, 6, 166, 166, 120, 164, 166, 4, 168, 168, 118, 166, 168, 2, 170, 170, 116, 168, 170, 0, 172, 172, 114, 170, 172, 46, 174, 174, 112, 172, 174, 44, 176, + 176, 110, 174, 176, 42, 178, 178, 108, 176, 178, 40, 180, 180, 106, 178, 180, 38, 182, 182, 104, 180, 182, 36, 184, 184, 102, 182, 184, 34, 186, 186, 100, 184, 186, 32, 188, 188, 98, + 186, 188, 30, 190, 190, 138, 188, 190, 28, 192, 192, 140, 190, 192, 192, 146 + ], + "width": 160.0, + "height": 160.0, + "path": "summer-as.mouth-accessory", + "x": 1.0, + "y": 1.0 + } + }, + "tail": {"tail": {"x": 114.37529411764706, "y": 4.185294117647058, "rotation": 12, "width": 223.52941176470588, "height": 223.52941176470588, "path": "summer-as.tail"}} + } + } + ], + "events": {"hit": {}, "hit-buff": {}, "jump": {}, "start-attack": {}}, + "keyAnimations": { + "activity/appear": "1023093953", + "activity/bath": "3305387968", + "attack/ranged/cast-fly": "4180526371", + "attack/ranged/cast-high": "164191126", + "attack/ranged/cast-low": "198813017", + "attack/ranged/cast-multi": "151119", + "attack/ranged/cast-tail": "3850719809", + "action/mix/ear-animation": "901954966", + "activity/eat-bite": "1137807767", + "activity/eat-chew": "1988236421", + "activity/entrance": "3768378365", + "defense/evade": "1735454995", + "activity/evolve": "649307630", + "action/mix/eyes-animation": "3799301307", + "battle/get-buff": "1455190363", + "battle/get-debuff": "606904312", + "defense/hit-by-normal": "2045974966", + "defense/hit-by-normal-crit": "2130010601", + "defense/hit-by-normal-dramatic": "3823092125", + "defense/hit-by-ranged-attack": "2224561612", + "defense/hit-with-shield": "390714790", + "attack/melee/horn-gore": "1327954218", + "attack/melee/mouth-bite": "2237748264", + "action/move-back": "3766271173", + "action/move-forward": "2945160014", + "attack/melee/multi-attack": "3774600630", + "action/idle/normal": "1659336865", + "attack/melee/normal-attack": "3305373483", + "action/mix/normal-mouth-animation": "1178295570", + "activity/prepare": "405864717", + "action/idle/random-01": "554401889", + "action/idle/random-02": "3634120758", + "action/idle/random-03": "2021333900", + "action/idle/random-04": "1003789695", + "action/idle/random-05": "2745614147", + "action/run": "3942433225", + "draft/run-origin": "237238075", + "attack/melee/shrimp": "3833448733", + "activity/sleep": "100562494", + "attack/melee/tail-multi-slap": "3317139533", + "attack/melee/tail-roll": "3108617565", + "attack/melee/tail-smash": "519942130", + "attack/melee/tail-thrash": "628713175", + "activity/victory-pose-back-flip": "2227634241" + } + }, + "aquatic-12": { + "bones": [ + {"name": "@root"}, {"name": "@pivot-main", "parent": "@root"}, {"name": "@pivot-back", "parent": "@pivot-main", "x": 205, "y": 180, "color": "ff0101ff"}, + {"name": "@pivot-center", "parent": "@pivot-back", "x": -215.11, "y": -5.25, "color": "ff0101ff"}, + {"name": "@axie", "parent": "@pivot-center", "length": 213.28, "rotation": 179.04, "x": 196.39, "y": 5.16}, {"name": "@back", "parent": "@axie", "rotation": -179.04, "x": 37.63, "y": -198.19}, + {"name": "back", "parent": "@back", "length": 149.41, "rotation": 75, "x": -65.97, "y": 71.3, "transform": "noScale"}, + {"name": "@body", "parent": "@axie", "length": 226.28, "rotation": -8.35, "x": 224.58, "y": -0.53}, {"name": "@ear-left", "parent": "@axie", "rotation": -179.04, "x": 112.7, "y": -203.23}, + {"name": "ear-left", "parent": "@ear-left", "length": 113.61, "rotation": 56, "x": -17, "y": -13, "transform": "noScale"}, + {"name": "@ear-right", "parent": "@axie", "rotation": -179.04, "x": 405.28, "y": -235.33}, + {"name": "ear-right", "parent": "@ear-right", "length": 119.39, "rotation": 116, "x": -10, "y": -42, "transform": "noScale"}, + {"name": "@eyes", "parent": "@axie", "rotation": -179.04, "x": 384.24, "y": -113.67}, {"name": "@horn", "parent": "@axie", "rotation": -179.04, "x": 327.92, "y": -214.63}, + {"name": "horn", "parent": "@horn", "length": 176.72, "rotation": 90, "y": 18, "transform": "noScale"}, + {"name": "@leg-back-left", "parent": "@axie", "length": 76.4, "rotation": 100.96, "x": -15.3, "y": 102.56, "transform": "noScale"}, + {"name": "@leg-front-left", "parent": "@axie", "length": 51.19, "rotation": 93.86, "x": 134.77, "y": 149.55, "transform": "noScale"}, + {"name": "@leg-front-right", "parent": "@axie", "length": 74.83, "rotation": 83.2, "x": 382.95, "y": 121.78, "transform": "noScale"}, + {"name": "@mouth", "parent": "@axie", "rotation": -179.04, "x": 382.23, "y": 6.31}, + {"name": "body-pattern", "parent": "@body", "rotation": -170.69, "x": -267.21, "y": -49.4, "transform": "noScale"}, {"name": "@shadow", "parent": "@root", "color": "e6d713ff"}, + {"name": "@tail", "parent": "@axie", "rotation": -179.04, "x": -11.76, "y": 61.72}, + {"name": "tail", "parent": "@tail", "length": 203.67, "rotation": -5, "x": 8, "y": 45, "transform": "noScale"}, + {"name": "leg-front-right-IK", "parent": "@pivot-main", "x": -195.99, "y": -10.21, "color": "ff3f00ff"}, + {"name": "leg-front-left-IK", "parent": "@pivot-main", "x": 42.3, "y": -18.42, "color": "ff3f00ff"}, + {"name": "leg-back-left-IK", "parent": "@pivot-main", "x": 208.57, "y": 1.35, "color": "ff3f00ff"}, {"name": "@ball", "parent": "@root", "y": 191, "color": "f3981bff"}, + {"name": "ball", "parent": "@ball", "y": -191, "color": "f4a729ff"} + ], + "slots": [ + {"name": "shadow", "bone": "@shadow", "attachment": "shadow"}, {"name": "ball", "bone": "ball"}, {"name": "leg-front-right", "bone": "@leg-front-right", "attachment": "leg-front-right"}, + {"name": "ear-right", "bone": "ear-right", "attachment": "ear-right"}, {"name": "tail", "bone": "tail", "attachment": "tail"}, {"name": "back", "bone": "back", "attachment": "back"}, + {"name": "leg-back-left", "bone": "@leg-back-left", "attachment": "leg-back-left"}, {"name": "body", "bone": "@body", "attachment": "body"}, {"name": "body-pattern", "bone": "body-pattern"}, + {"name": "leg-front-left", "bone": "@leg-front-left", "attachment": "leg-front-left"}, {"name": "eyes", "bone": "@eyes", "attachment": "eyes"}, + {"name": "mouth", "bone": "@mouth", "attachment": "mouth"}, {"name": "ear-left", "bone": "ear-left", "attachment": "ear-left"}, {"name": "horn", "bone": "horn", "attachment": "horn"} + ], + "ik": [ + {"name": "leg-back-left-IK", "order": 2, "bones": ["@leg-back-left"], "target": "leg-back-left-IK"}, + {"name": "leg-front-left-IK", "order": 1, "bones": ["@leg-front-left"], "target": "leg-front-left-IK"}, + {"name": "leg-front-right-IK", "bones": ["@leg-front-right"], "target": "leg-front-right-IK"} + ], + "skins": [ + { + "name": "default", + "attachments": { + "back": {"back": {"x": 93.21529411764706, "y": -5.627647058823536, "rotation": -75, "width": 223.52941176470588, "height": 308.2352941176471, "path": "aquatic-12.back"}}, + "ear-left": {"ear-left": {"x": 69.16117647058823, "y": -7.814705882352943, "rotation": -56, "width": 134.11764705882354, "height": 183.52941176470588, "path": "aquatic-12.ear-left"}}, + "ear-right": { + "ear-right": {"x": 60.54117647058823, "y": 20.165294117647058, "rotation": -116, "width": 134.11764705882354, "height": 183.52941176470588, "path": "aquatic-12.ear-right"} + }, + "eyes": { + "eyes": {"x": 31.22, "y": 17.79, "width": 304, "height": 121, "path": "aquatic-12.eyes"}, + "eyes-angry": {"x": 31.22, "y": 17.79, "width": 304, "height": 121, "path": "aquatic-12.eyes-angry"}, + "eyes-happy": {"x": 31.22, "y": 17.79, "width": 304, "height": 121, "path": "aquatic-12.eyes-happy"}, + "eyes-shut": {"x": 31.22, "y": 17.79, "width": 304, "height": 121, "path": "aquatic-12.eyes-shut"} + }, + "horn": {"horn": {"x": 54.45647058823529, "y": -15.24, "rotation": -90, "width": 197.64705882352942, "height": 160.0, "path": "aquatic-12.horn"}}, + "mouth": { + "mouth": {"x": 13.22, "y": 31.29, "width": 314, "height": 118, "path": "aquatic-12.mouth"}, + "mouth-bite": {"x": 12.72, "y": 40.79, "width": 361, "height": 97, "path": "aquatic-12.mouth-bite"}, + "mouth-open": {"x": 13.72, "y": 17.29, "width": 327, "height": 176, "path": "aquatic-12.mouth-open"}, + "mouth-smile": {"x": 11.72, "y": 36.29, "width": 333, "height": 110, "path": "aquatic-12.mouth-smile"} + }, + "tail": {"tail": {"x": 124.29117647058823, "y": 16.36529411764706, "rotation": 5, "width": 334.11764705882354, "height": 183.52941176470588, "path": "aquatic-12.tail"}} + } + } + ], + "events": {"hit": {}, "hit-buff": {}, "jump": {}, "start-attack": {}}, + "keyAnimations": { + "activity/appear": "1023093953", + "activity/bath": "3305387968", + "attack/ranged/cast-fly": "4180526371", + "attack/ranged/cast-high": "164191126", + "attack/ranged/cast-low": "198813017", + "attack/ranged/cast-multi": "151119", + "attack/ranged/cast-tail": "997902532", + "activity/eat-bite": "1137807767", + "activity/eat-chew": "1988236421", + "activity/entrance": "3768378365", + "defense/evade": "1735454995", + "activity/evolve": "649307630", + "battle/get-buff": "1455190363", + "battle/get-debuff": "606904312", + "defense/hit-by-normal": "2045974966", + "defense/hit-by-normal-crit": "2130010601", + "defense/hit-by-normal-dramatic": "3823092125", + "defense/hit-by-ranged-attack": "2224561612", + "defense/hit-with-shield": "390714790", + "attack/melee/horn-gore": "1327954218", + "attack/melee/mouth-bite": "2237748264", + "action/move-back": "3766271173", + "action/move-forward": "2945160014", + "attack/melee/multi-attack": "905926802", + "action/idle/normal": "1659336865", + "attack/melee/normal-attack": "3305373483", + "activity/prepare": "405864717", + "action/idle/random-01": "554401889", + "action/idle/random-02": "1085666627", + "action/idle/random-03": "2021333900", + "action/idle/random-04": "1003789695", + "action/idle/random-05": "2745614147", + "action/run": "1438840721", + "draft/run-origin": "3577885069", + "attack/melee/shrimp": "3833448733", + "activity/sleep": "100562494", + "attack/melee/tail-multi-slap": "3317139533", + "attack/melee/tail-roll": "3108617565", + "attack/melee/tail-smash": "519942130", + "attack/melee/tail-thrash": "628713175", + "activity/victory-pose-back-flip": "2227634241" + } + }, + "bird-10": { + "bones": [ + {"name": "@root"}, {"name": "@pivot-main", "parent": "@root"}, {"name": "@pivot-back", "parent": "@pivot-main", "x": 205, "y": 180, "color": "ff0101ff"}, + {"name": "@pivot-center", "parent": "@pivot-back", "x": -215.11, "y": -5.25, "color": "ff0101ff"}, + {"name": "@axie", "parent": "@pivot-center", "length": 213.28, "rotation": 179.04, "x": 196.39, "y": 5.16}, {"name": "@back", "parent": "@axie", "rotation": -179.04, "x": 37.63, "y": -198.19}, + {"name": "back", "parent": "@back", "length": 149.41, "rotation": 73, "x": -127.97, "y": 11.3, "transform": "noScale"}, + {"name": "@body", "parent": "@axie", "length": 226.28, "rotation": -8.35, "x": 224.58, "y": -0.53}, {"name": "@ear-left", "parent": "@axie", "rotation": -179.04, "x": 112.7, "y": -203.23}, + {"name": "ear-left", "parent": "@ear-left", "length": 113.61, "rotation": -48, "x": -8, "y": -10, "transform": "noScale"}, + {"name": "@ear-right", "parent": "@axie", "rotation": -179.04, "x": 405.28, "y": -235.33}, + {"name": "ear-right", "parent": "@ear-right", "length": 119.39, "rotation": -144, "x": -30, "y": -34, "transform": "noScale"}, + {"name": "@eyes", "parent": "@axie", "rotation": -179.04, "x": 384.24, "y": -113.67}, {"name": "@horn", "parent": "@axie", "rotation": -179.04, "x": 327.92, "y": -214.63}, + {"name": "horn", "parent": "@horn", "length": 176.72, "rotation": 90, "y": 18, "transform": "noScale"}, + {"name": "@leg-back-left", "parent": "@axie", "length": 76.4, "rotation": 100.96, "x": -15.3, "y": 102.56, "transform": "noScale"}, + {"name": "@leg-front-left", "parent": "@axie", "length": 51.19, "rotation": 93.86, "x": 134.77, "y": 149.55, "transform": "noScale"}, + {"name": "@leg-front-right", "parent": "@axie", "length": 74.83, "rotation": 83.2, "x": 382.95, "y": 121.78, "transform": "noScale"}, + {"name": "@mouth", "parent": "@axie", "rotation": -179.04, "x": 382.23, "y": 6.31}, + {"name": "body-pattern", "parent": "@body", "rotation": -170.69, "x": -267.21, "y": -49.4, "transform": "noScale"}, {"name": "@shadow", "parent": "@root", "color": "e6d713ff"}, + {"name": "@tail", "parent": "@axie", "rotation": -179.04, "x": -11.76, "y": 61.72}, + {"name": "tail", "parent": "@tail", "length": 203.67, "rotation": -12, "x": 16, "y": 72.87, "transform": "noScale"}, + {"name": "leg-front-right-IK", "parent": "@pivot-main", "x": -195.99, "y": -10.21, "color": "ff3f00ff"}, + {"name": "leg-front-left-IK", "parent": "@pivot-main", "x": 42.3, "y": -18.42, "color": "ff3f00ff"}, + {"name": "leg-back-left-IK", "parent": "@pivot-main", "x": 208.57, "y": 1.35, "color": "ff3f00ff"}, {"name": "@ball", "parent": "@root", "y": 191, "color": "f3981bff"}, + {"name": "ball", "parent": "@ball", "y": -191, "color": "f4a729ff"} + ], + "slots": [ + {"name": "shadow", "bone": "@shadow", "attachment": "shadow"}, {"name": "ball", "bone": "ball"}, {"name": "leg-front-right", "bone": "@leg-front-right", "attachment": "leg-front-right"}, + {"name": "ear-right", "bone": "ear-right", "attachment": "ear-right"}, {"name": "tail", "bone": "tail", "attachment": "tail"}, {"name": "back", "bone": "back", "attachment": "back"}, + {"name": "leg-back-left", "bone": "@leg-back-left", "attachment": "leg-back-left"}, {"name": "body", "bone": "@body", "attachment": "body"}, {"name": "body-pattern", "bone": "body-pattern"}, + {"name": "leg-front-left", "bone": "@leg-front-left", "attachment": "leg-front-left"}, {"name": "eyes", "bone": "@eyes", "attachment": "eyes"}, + {"name": "mouth", "bone": "@mouth", "attachment": "mouth"}, {"name": "ear-left", "bone": "ear-left", "attachment": "ear-left"}, {"name": "horn", "bone": "horn", "attachment": "horn"} + ], + "ik": [ + {"name": "leg-back-left-IK", "order": 2, "bones": ["@leg-back-left"], "target": "leg-back-left-IK"}, + {"name": "leg-front-left-IK", "order": 1, "bones": ["@leg-front-left"], "target": "leg-front-left-IK"}, + {"name": "leg-front-right-IK", "bones": ["@leg-front-right"], "target": "leg-front-right-IK"} + ], + "skins": [ + { + "name": "default", + "attachments": { + "back": {"back": {"x": 144.23117647058822, "y": -0.19058823529411598, "rotation": -73, "width": 334.11764705882354, "height": 352.94117647058823, "path": "bird-10.back"}}, + "ear-left": {"ear-left": {"x": 51.014117647058825, "y": 21.48823529411765, "rotation": 48, "width": 129.41176470588235, "height": 138.8235294117647, "path": "bird-10.ear-left"}}, + "ear-right": {"ear-right": {"x": 58.107647058823524, "y": 3.9952941176470578, "rotation": 144, "width": 131.76470588235296, "height": 143.52941176470588, "path": "bird-10.ear-right"}}, + "eyes": { + "eyes": {"x": 25.86470588235293, "y": -3.470588235294116, "width": 256.47058823529414, "height": 112.94117647058823, "path": "bird-10.eyes"}, + "eyes-angry": {"x": 45.04117647058823, "y": 7.764705882352942, "width": 294.11764705882354, "height": 136.47058823529412, "path": "bird-10.eyes-angry"}, + "eyes-happy": {"x": 25.86470588235293, "y": 5.294117647058826, "width": 256.47058823529414, "height": 129.41176470588235, "path": "bird-10.eyes-happy"}, + "eyes-shut": {"x": 25.86470588235293, "y": -3.470588235294116, "width": 256.47058823529414, "height": 112.94117647058823, "path": "bird-10.eyes-shut"} + }, + "horn": {"horn": {"x": 126.84235294117646, "y": -47.07058823529412, "rotation": -90, "width": 228.23529411764707, "height": 232.94117647058823, "path": "bird-10.horn"}}, + "mouth": { + "mouth": {"x": 14.805882352941174, "y": 90.34235294117647, "width": 70.58823529411765, "height": 68.23529411764706, "path": "bird-10.mouth"}, + "mouth-bite": {"x": 17.923529411764704, "y": 90.63647058823528, "width": 82.3529411764706, "height": 77.64705882352942, "path": "bird-10.mouth-bite"}, + "mouth-open": {"x": 17.158823529411762, "y": 77.34235294117647, "width": 105.88235294117648, "height": 108.23529411764706, "path": "bird-10.mouth-open"}, + "mouth-smile": {"x": 13.217647058823529, "y": 77.34235294117647, "width": 91.76470588235294, "height": 108.23529411764706, "path": "bird-10.mouth-smile"} + }, + "tail": {"tail": {"x": 113.26588235294118, "y": 72.44470588235293, "rotation": 12, "width": 190.58823529411765, "height": 296.47058823529414, "path": "bird-10.tail"}} + } + } + ], + "events": {"hit": {}, "hit-buff": {}, "jump": {}, "start-attack": {}}, + "keyAnimations": { + "activity/appear": "1023093953", + "activity/bath": "3305387968", + "attack/ranged/cast-fly": "4180526371", + "attack/ranged/cast-high": "164191126", + "attack/ranged/cast-low": "198813017", + "attack/ranged/cast-multi": "151119", + "attack/ranged/cast-tail": "997902532", + "activity/eat-bite": "1137807767", + "activity/eat-chew": "1988236421", + "activity/entrance": "3768378365", + "defense/evade": "1735454995", + "activity/evolve": "649307630", + "battle/get-buff": "1455190363", + "battle/get-debuff": "606904312", + "defense/hit-by-normal": "2045974966", + "defense/hit-by-normal-crit": "2130010601", + "defense/hit-by-normal-dramatic": "3823092125", + "defense/hit-by-ranged-attack": "2224561612", + "defense/hit-with-shield": "390714790", + "attack/melee/horn-gore": "1327954218", + "attack/melee/mouth-bite": "2237748264", + "action/move-back": "3766271173", + "action/move-forward": "2945160014", + "attack/melee/multi-attack": "905926802", + "action/idle/normal": "1659336865", + "attack/melee/normal-attack": "3305373483", + "activity/prepare": "405864717", + "action/idle/random-01": "554401889", + "action/idle/random-02": "1085666627", + "action/idle/random-03": "2021333900", + "action/idle/random-04": "1003789695", + "action/idle/random-05": "2745614147", + "action/run": "1438840721", + "draft/run-origin": "3577885069", + "attack/melee/shrimp": "3833448733", + "activity/sleep": "100562494", + "attack/melee/tail-multi-slap": "3317139533", + "attack/melee/tail-roll": "3108617565", + "attack/melee/tail-smash": "519942130", + "attack/melee/tail-thrash": "628713175", + "activity/victory-pose-back-flip": "2227634241" + } + }, + "plant-06": { + "bones": [ + {"name": "@root"}, {"name": "@pivot-main", "parent": "@root"}, {"name": "@pivot-back", "parent": "@pivot-main", "x": 205, "y": 180, "color": "ff0101ff"}, + {"name": "@pivot-center", "parent": "@pivot-back", "x": -215.11, "y": -5.25, "color": "ff0101ff"}, + {"name": "@axie", "parent": "@pivot-center", "length": 213.28, "rotation": 179.04, "x": 196.39, "y": 5.16}, {"name": "@back", "parent": "@axie", "rotation": -179.04, "x": 37.63, "y": -198.19}, + {"name": "back", "parent": "@back", "length": 149.41, "rotation": 50, "x": -51.97, "y": 55.3, "transform": "noScale"}, + {"name": "@body", "parent": "@axie", "length": 226.28, "rotation": -8.35, "x": 224.58, "y": -0.53}, {"name": "@ear-left", "parent": "@axie", "rotation": -179.04, "x": 112.7, "y": -203.23}, + {"name": "ear-left", "parent": "@ear-left", "length": 113.61, "rotation": 50, "x": 35, "y": -43, "transform": "noScale"}, + {"name": "@ear-right", "parent": "@axie", "rotation": -179.04, "x": 405.28, "y": -235.33}, + {"name": "ear-right", "parent": "@ear-right", "length": 119.39, "rotation": 136, "x": -40, "y": -97, "transform": "noScale"}, + {"name": "@eyes", "parent": "@axie", "rotation": -179.04, "x": 384.24, "y": -113.67}, {"name": "@horn", "parent": "@axie", "rotation": -179.04, "x": 327.92, "y": -214.63}, + {"name": "horn", "parent": "@horn", "length": 176.72, "rotation": 90, "y": 18, "transform": "noScale"}, + {"name": "@leg-back-left", "parent": "@axie", "length": 76.4, "rotation": 100.96, "x": -15.3, "y": 102.56, "transform": "noScale"}, + {"name": "@leg-front-left", "parent": "@axie", "length": 51.19, "rotation": 93.86, "x": 134.77, "y": 149.55, "transform": "noScale"}, + {"name": "@leg-front-right", "parent": "@axie", "length": 74.83, "rotation": 83.2, "x": 382.95, "y": 121.78, "transform": "noScale"}, + {"name": "@mouth", "parent": "@axie", "rotation": -179.04, "x": 382.23, "y": 6.31}, + {"name": "body-pattern", "parent": "@body", "rotation": -170.69, "x": -267.21, "y": -49.4, "transform": "noScale"}, {"name": "@shadow", "parent": "@root", "color": "e6d713ff"}, + {"name": "@tail", "parent": "@axie", "rotation": -179.04, "x": -11.76, "y": 61.72}, + {"name": "tail", "parent": "@tail", "length": 203.67, "rotation": 31, "x": 3, "y": -10, "transform": "noScale"}, + {"name": "leg-front-right-IK", "parent": "@pivot-main", "x": -195.99, "y": -10.21, "color": "ff3f00ff"}, + {"name": "leg-front-left-IK", "parent": "@pivot-main", "x": 42.3, "y": -18.42, "color": "ff3f00ff"}, + {"name": "leg-back-left-IK", "parent": "@pivot-main", "x": 208.57, "y": 1.35, "color": "ff3f00ff"}, {"name": "@ball", "parent": "@root", "y": 191, "color": "f3981bff"}, + {"name": "ball", "parent": "@ball", "y": -191, "color": "f4a729ff"} + ], + "slots": [ + {"name": "shadow", "bone": "@shadow", "attachment": "shadow"}, {"name": "ball", "bone": "ball"}, {"name": "leg-front-right", "bone": "@leg-front-right", "attachment": "leg-front-right"}, + {"name": "ear-right", "bone": "ear-right", "attachment": "ear-right"}, {"name": "tail", "bone": "tail", "attachment": "tail"}, {"name": "back", "bone": "back", "attachment": "back"}, + {"name": "leg-back-left", "bone": "@leg-back-left", "attachment": "leg-back-left"}, {"name": "body", "bone": "@body", "attachment": "body"}, {"name": "body-pattern", "bone": "body-pattern"}, + {"name": "leg-front-left", "bone": "@leg-front-left", "attachment": "leg-front-left"}, {"name": "eyes", "bone": "@eyes", "attachment": "eyes"}, + {"name": "mouth", "bone": "@mouth", "attachment": "mouth"}, {"name": "ear-left", "bone": "ear-left", "attachment": "ear-left"}, {"name": "horn", "bone": "horn", "attachment": "horn"} + ], + "ik": [ + {"name": "leg-back-left-IK", "order": 2, "bones": ["@leg-back-left"], "target": "leg-back-left-IK"}, + {"name": "leg-front-left-IK", "order": 1, "bones": ["@leg-front-left"], "target": "leg-front-left-IK"}, + {"name": "leg-front-right-IK", "bones": ["@leg-front-right"], "target": "leg-front-right-IK"} + ], + "skins": [ + { + "name": "default", + "attachments": { + "back": {"back": {"x": 126.7870588235294, "y": 3.924117647058826, "rotation": -50, "width": 244.7058823529412, "height": 249.41176470588235, "path": "plant-06.back"}}, + "ear-left": {"ear-left": {"x": 45.63411764705883, "y": 2.367647058823522, "rotation": -50, "width": 209.41176470588235, "height": 211.76470588235296, "path": "plant-06.ear-left"}}, + "ear-right": {"ear-right": {"x": 71.58470588235294, "y": -5.638823529411768, "rotation": -136, "width": 176.47058823529412, "height": 214.11764705882354, "path": "plant-06.ear-right"}}, + "eyes": { + "eyes": {"x": 29.54, "y": 27.4, "width": 333, "height": 159, "path": "plant-06.eyes"}, + "eyes-angry": {"x": 33.04, "y": 27.4, "width": 340, "height": 159, "path": "plant-06.eyes-angry"}, + "eyes-happy": {"x": 33.04, "y": 27.4, "width": 340, "height": 159, "path": "plant-06.eyes-happy"}, + "eyes-shut": {"x": 33.04, "y": 27.4, "width": 340, "height": 159, "path": "plant-06.eyes-shut"} + }, + "horn": {"horn": {"x": 108.07823529411763, "y": -5.290588235294116, "rotation": -90, "width": 178.82352941176472, "height": 192.94117647058823, "path": "plant-06.horn"}}, + "mouth": { + "mouth": {"x": -28.96, "y": 89.9, "width": 168, "height": 76, "path": "plant-06.mouth"}, + "mouth-bite": {"x": -91.96, "y": 80.4, "width": 274, "height": 85, "path": "plant-06.mouth-bite"}, + "mouth-open": {"x": -1.96, "y": 95.9, "width": 118, "height": 82, "path": "plant-06.mouth-open"}, + "mouth-smile": {"x": -22.96, "y": 75.4, "width": 148, "height": 95, "path": "plant-06.mouth-smile"} + }, + "tail": {"tail": {"x": 145.1870588235294, "y": -14.051176470588231, "rotation": -31, "width": 324.70588235294116, "height": 225.88235294117646, "path": "plant-06.tail"}} + } + } + ], + "events": {"hit": {}, "hit-buff": {}, "jump": {}, "start-attack": {}}, + "keyAnimations": { + "activity/appear": "1023093953", + "activity/bath": "3305387968", + "attack/ranged/cast-fly": "4180526371", + "attack/ranged/cast-high": "164191126", + "attack/ranged/cast-low": "198813017", + "attack/ranged/cast-multi": "151119", + "attack/ranged/cast-tail": "997902532", + "activity/eat-bite": "1137807767", + "activity/eat-chew": "1988236421", + "activity/entrance": "3768378365", + "defense/evade": "1735454995", + "activity/evolve": "649307630", + "battle/get-buff": "1455190363", + "battle/get-debuff": "606904312", + "defense/hit-by-normal": "2045974966", + "defense/hit-by-normal-crit": "2130010601", + "defense/hit-by-normal-dramatic": "3823092125", + "defense/hit-by-ranged-attack": "2224561612", + "defense/hit-with-shield": "390714790", + "attack/melee/horn-gore": "1327954218", + "attack/melee/mouth-bite": "2237748264", + "action/move-back": "3766271173", + "action/move-forward": "2945160014", + "attack/melee/multi-attack": "905926802", + "action/idle/normal": "1659336865", + "attack/melee/normal-attack": "3305373483", + "activity/prepare": "405864717", + "action/idle/random-01": "554401889", + "action/idle/random-02": "1085666627", + "action/idle/random-03": "2021333900", + "action/idle/random-04": "1003789695", + "action/idle/random-05": "2745614147", + "action/run": "1438840721", + "draft/run-origin": "3577885069", + "attack/melee/shrimp": "3833448733", + "activity/sleep": "100562494", + "attack/melee/tail-multi-slap": "3317139533", + "attack/melee/tail-roll": "3108617565", + "attack/melee/tail-smash": "519942130", + "attack/melee/tail-thrash": "628713175", + "activity/victory-pose-back-flip": "2227634241" + } + }, + "plant-08": { + "bones": [ + {"name": "@root"}, {"name": "@pivot-main", "parent": "@root"}, {"name": "@pivot-back", "parent": "@pivot-main", "x": 205, "y": 180, "color": "ff0101ff"}, + {"name": "@pivot-center", "parent": "@pivot-back", "x": -215.11, "y": -5.25, "color": "ff0101ff"}, + {"name": "@axie", "parent": "@pivot-center", "length": 213.28, "rotation": 179.04, "x": 196.39, "y": 5.16}, {"name": "@back", "parent": "@axie", "rotation": -179.04, "x": 37.63, "y": -198.19}, + {"name": "back", "parent": "@back", "length": 149.41, "rotation": 58, "x": -41.97, "y": 9.3, "transform": "noScale"}, + {"name": "@body", "parent": "@axie", "length": 226.28, "rotation": -8.35, "x": 224.58, "y": -0.53}, {"name": "@ear-left", "parent": "@axie", "rotation": -179.04, "x": 112.7, "y": -203.23}, + {"name": "ear-left", "parent": "@ear-left", "length": 113.61, "rotation": 90, "x": 21, "y": -13, "transform": "noScale"}, + {"name": "@ear-right", "parent": "@axie", "rotation": -179.04, "x": 405.28, "y": -235.33}, + {"name": "ear-right", "parent": "@ear-right", "length": 119.39, "rotation": 93, "x": -78, "y": -95, "transform": "noScale"}, + {"name": "@eyes", "parent": "@axie", "rotation": -179.04, "x": 384.24, "y": -113.67}, {"name": "@horn", "parent": "@axie", "rotation": -179.04, "x": 327.92, "y": -214.63}, + {"name": "horn", "parent": "@horn", "length": 176.72, "rotation": 90, "y": 18, "transform": "noScale"}, + {"name": "@leg-back-left", "parent": "@axie", "length": 76.4, "rotation": 100.96, "x": -15.3, "y": 102.56, "transform": "noScale"}, + {"name": "@leg-front-left", "parent": "@axie", "length": 51.19, "rotation": 93.86, "x": 134.77, "y": 149.55, "transform": "noScale"}, + {"name": "@leg-front-right", "parent": "@axie", "length": 74.83, "rotation": 83.2, "x": 382.95, "y": 121.78, "transform": "noScale"}, + {"name": "@mouth", "parent": "@axie", "rotation": -179.04, "x": 382.23, "y": 6.31}, + {"name": "body-pattern", "parent": "@body", "rotation": -170.69, "x": -267.21, "y": -49.4, "transform": "noScale"}, {"name": "@shadow", "parent": "@root", "color": "e6d713ff"}, + {"name": "@tail", "parent": "@axie", "rotation": -179.04, "x": -11.76, "y": 61.72}, + {"name": "tail", "parent": "@tail", "length": 203.67, "rotation": 13, "x": -57, "y": 2, "transform": "noScale"}, + {"name": "leg-front-right-IK", "parent": "@pivot-main", "x": -195.99, "y": -10.21, "color": "ff3f00ff"}, + {"name": "leg-front-left-IK", "parent": "@pivot-main", "x": 42.3, "y": -18.42, "color": "ff3f00ff"}, + {"name": "leg-back-left-IK", "parent": "@pivot-main", "x": 208.57, "y": 1.35, "color": "ff3f00ff"}, {"name": "@ball", "parent": "@root", "y": 191, "color": "f3981bff"}, + {"name": "ball", "parent": "@ball", "y": -191, "color": "f4a729ff"} + ], + "slots": [ + {"name": "shadow", "bone": "@shadow", "attachment": "shadow"}, {"name": "ball", "bone": "ball"}, {"name": "leg-front-right", "bone": "@leg-front-right", "attachment": "leg-front-right"}, + {"name": "ear-right", "bone": "ear-right", "attachment": "ear-right"}, {"name": "tail", "bone": "tail", "attachment": "tail"}, {"name": "back", "bone": "back", "attachment": "back"}, + {"name": "leg-back-left", "bone": "@leg-back-left", "attachment": "leg-back-left"}, {"name": "body", "bone": "@body", "attachment": "body"}, {"name": "body-pattern", "bone": "body-pattern"}, + {"name": "leg-front-left", "bone": "@leg-front-left", "attachment": "leg-front-left"}, {"name": "eyes", "bone": "@eyes", "attachment": "eyes"}, + {"name": "mouth", "bone": "@mouth", "attachment": "mouth"}, {"name": "ear-left", "bone": "ear-left", "attachment": "ear-left"}, {"name": "horn", "bone": "horn", "attachment": "horn"} + ], + "ik": [ + {"name": "leg-back-left-IK", "order": 2, "bones": ["@leg-back-left"], "target": "leg-back-left-IK"}, + {"name": "leg-front-left-IK", "order": 1, "bones": ["@leg-front-left"], "target": "leg-front-left-IK"}, + {"name": "leg-front-right-IK", "bones": ["@leg-front-right"], "target": "leg-front-right-IK"} + ], + "skins": [ + { + "name": "default", + "attachments": { + "back": {"back": {"x": 112.45823529411766, "y": 3.207647058823536, "rotation": -58, "width": 258.8235294117647, "height": 291.7647058823529, "path": "plant-08.back"}}, + "ear-left": {"ear-left": {"x": 7.614117647058826, "y": -8.21352941176471, "rotation": -90, "width": 169.41176470588235, "height": 197.64705882352942, "path": "plant-08.ear-left"}}, + "ear-right": {"ear-right": {"x": 58.84764705882352, "y": 14.628823529411768, "rotation": -93, "width": 131.76470588235296, "height": 185.88235294117646, "path": "plant-08.ear-right"}}, + "eyes": { + "eyes": {"x": 31.07705882352942, "y": 23.881176470588233, "width": 284.70588235294116, "height": 134.11764705882354, "path": "plant-08.eyes"}, + "eyes-angry": {"x": 31.07705882352942, "y": 23.881176470588233, "width": 284.70588235294116, "height": 134.11764705882354, "path": "plant-08.eyes-angry"}, + "eyes-happy": {"x": 31.07705882352942, "y": 23.881176470588233, "width": 284.70588235294116, "height": 134.11764705882354, "path": "plant-08.eyes-happy"}, + "eyes-shut": {"x": 31.07705882352942, "y": 23.881176470588233, "width": 284.70588235294116, "height": 134.11764705882354, "path": "plant-08.eyes-shut"} + }, + "horn": {"horn": {"x": 83.92941176470589, "y": -20.625882352941176, "rotation": -90, "width": 232.94117647058823, "height": 209.41176470588235, "path": "plant-08.horn"}}, + "mouth": { + "mouth": {"x": 28.302352941176473, "y": 53.52823529411764, "width": 108.23529411764706, "height": 58.82352941176471, "path": "plant-08.mouth"}, + "mouth-bite": {"x": 33.06705882352941, "y": 45.11647058823529, "width": 244.7058823529412, "height": 77.64705882352942, "path": "plant-08.mouth-bite"}, + "mouth-open": {"x": 25.65529411764706, "y": 33.05764705882352, "width": 143.52941176470588, "height": 131.76470588235296, "path": "plant-08.mouth-open"}, + "mouth-smile": {"x": 22.361176470588234, "y": 46.46941176470588, "width": 214.11764705882354, "height": 72.94117647058823, "path": "plant-08.mouth-smile"} + }, + "tail": {"tail": {"x": 132.61117647058822, "y": 3.8882352941176377, "rotation": -13, "width": 294.11764705882354, "height": 218.82352941176472, "path": "plant-08.tail"}} + } + } + ], + "events": {"hit": {}, "hit-buff": {}, "jump": {}, "start-attack": {}}, + "keyAnimations": { + "activity/appear": "1023093953", + "activity/bath": "3305387968", + "attack/ranged/cast-fly": "4180526371", + "attack/ranged/cast-high": "164191126", + "attack/ranged/cast-low": "198813017", + "attack/ranged/cast-multi": "151119", + "attack/ranged/cast-tail": "997902532", + "activity/eat-bite": "1137807767", + "activity/eat-chew": "1988236421", + "activity/entrance": "3768378365", + "defense/evade": "1735454995", + "activity/evolve": "649307630", + "battle/get-buff": "1455190363", + "battle/get-debuff": "606904312", + "defense/hit-by-normal": "2045974966", + "defense/hit-by-normal-crit": "2130010601", + "defense/hit-by-normal-dramatic": "3823092125", + "defense/hit-by-ranged-attack": "2224561612", + "defense/hit-with-shield": "390714790", + "attack/melee/horn-gore": "1327954218", + "attack/melee/mouth-bite": "2237748264", + "action/move-back": "3766271173", + "action/move-forward": "2945160014", + "attack/melee/multi-attack": "905926802", + "action/idle/normal": "1659336865", + "attack/melee/normal-attack": "3305373483", + "activity/prepare": "405864717", + "action/idle/random-01": "554401889", + "action/idle/random-02": "1085666627", + "action/idle/random-03": "2021333900", + "action/idle/random-04": "1003789695", + "action/idle/random-05": "2745614147", + "action/run": "1438840721", + "draft/run-origin": "3577885069", + "attack/melee/shrimp": "3833448733", + "activity/sleep": "100562494", + "attack/melee/tail-multi-slap": "3317139533", + "attack/melee/tail-roll": "3108617565", + "attack/melee/tail-smash": "519942130", + "attack/melee/tail-thrash": "628713175", + "activity/victory-pose-back-flip": "2227634241" + } + }, + "reptile-04": { + "bones": [ + {"name": "@root"}, {"name": "@pivot-main", "parent": "@root"}, {"name": "@pivot-back", "parent": "@pivot-main", "x": 205, "y": 180, "color": "ff0101ff"}, + {"name": "@pivot-center", "parent": "@pivot-back", "x": -215.11, "y": -5.25, "color": "ff0101ff"}, + {"name": "@axie", "parent": "@pivot-center", "length": 213.28, "rotation": 179.04, "x": 196.39, "y": 5.16}, {"name": "@back", "parent": "@axie", "rotation": -179.04, "x": 37.63, "y": -198.19}, + {"name": "back", "parent": "@back", "length": 149.41, "rotation": 64, "x": -51.97, "y": -9.7, "transform": "noScale"}, + {"name": "@body", "parent": "@axie", "length": 226.28, "rotation": -8.35, "x": 224.58, "y": -0.53}, {"name": "@ear-left", "parent": "@axie", "rotation": -179.04, "x": 112.7, "y": -203.23}, + {"name": "ear-left", "parent": "@ear-left", "length": 113.61, "rotation": 52, "x": -27, "y": -17, "transform": "noScale"}, + {"name": "@ear-right", "parent": "@axie", "rotation": -179.04, "x": 405.28, "y": -235.33}, + {"name": "ear-right", "parent": "@ear-right", "length": 119.39, "rotation": 93, "x": -40, "y": -54, "transform": "noScale"}, + {"name": "@eyes", "parent": "@axie", "rotation": -179.04, "x": 384.24, "y": -113.67}, {"name": "@horn", "parent": "@axie", "rotation": -179.04, "x": 327.92, "y": -214.63}, + {"name": "horn", "parent": "@horn", "length": 176.72, "rotation": 90, "y": 18, "transform": "noScale"}, + {"name": "@leg-back-left", "parent": "@axie", "length": 76.4, "rotation": 100.96, "x": -15.3, "y": 102.56, "transform": "noScale"}, + {"name": "@leg-front-left", "parent": "@axie", "length": 51.19, "rotation": 93.86, "x": 134.77, "y": 149.55, "transform": "noScale"}, + {"name": "@leg-front-right", "parent": "@axie", "length": 74.83, "rotation": 83.2, "x": 382.95, "y": 121.78, "transform": "noScale"}, + {"name": "@mouth", "parent": "@axie", "rotation": -179.04, "x": 382.23, "y": 6.31}, + {"name": "body-pattern", "parent": "@body", "rotation": -170.69, "x": -267.21, "y": -49.4, "transform": "noScale"}, {"name": "@shadow", "parent": "@root", "color": "e6d713ff"}, + {"name": "@tail", "parent": "@axie", "rotation": -179.04, "x": -11.76, "y": 61.72}, {"name": "tail", "parent": "@tail", "length": 203.67, "x": -47, "y": -1, "transform": "noScale"}, + {"name": "leg-front-right-IK", "parent": "@pivot-main", "x": -195.99, "y": -10.21, "color": "ff3f00ff"}, + {"name": "leg-front-left-IK", "parent": "@pivot-main", "x": 42.3, "y": -18.42, "color": "ff3f00ff"}, + {"name": "leg-back-left-IK", "parent": "@pivot-main", "x": 208.57, "y": 1.35, "color": "ff3f00ff"}, {"name": "@ball", "parent": "@root", "y": 191, "color": "f3981bff"}, + {"name": "ball", "parent": "@ball", "y": -191, "color": "f4a729ff"} + ], + "slots": [ + {"name": "shadow", "bone": "@shadow", "attachment": "shadow"}, {"name": "ball", "bone": "ball"}, {"name": "leg-front-right", "bone": "@leg-front-right", "attachment": "leg-front-right"}, + {"name": "ear-right", "bone": "ear-right", "attachment": "ear-right"}, {"name": "tail", "bone": "tail", "attachment": "tail"}, {"name": "back", "bone": "back", "attachment": "back"}, + {"name": "leg-back-left", "bone": "@leg-back-left", "attachment": "leg-back-left"}, {"name": "body", "bone": "@body", "attachment": "body"}, {"name": "body-pattern", "bone": "body-pattern"}, + {"name": "leg-front-left", "bone": "@leg-front-left", "attachment": "leg-front-left"}, {"name": "eyes", "bone": "@eyes", "attachment": "eyes"}, + {"name": "mouth", "bone": "@mouth", "attachment": "mouth"}, {"name": "ear-left", "bone": "ear-left", "attachment": "ear-left"}, {"name": "horn", "bone": "horn", "attachment": "horn"} + ], + "ik": [ + {"name": "leg-back-left-IK", "order": 2, "bones": ["@leg-back-left"], "target": "leg-back-left-IK"}, + {"name": "leg-front-left-IK", "order": 1, "bones": ["@leg-front-left"], "target": "leg-front-left-IK"}, + {"name": "leg-front-right-IK", "bones": ["@leg-front-right"], "target": "leg-front-right-IK"} + ], + "skins": [ + { + "name": "default", + "attachments": { + "back": {"back": {"x": 113.90294117647058, "y": 7.428235294117652, "rotation": -64, "width": 275.29411764705884, "height": 338.8235294117647, "path": "reptile-04.back"}}, + "ear-left": {"ear-left": {"x": 39.395294117647055, "y": -36.190588235294115, "rotation": -52, "width": 103.52941176470588, "height": 112.94117647058823, "path": "reptile-04.ear-left"}}, + "ear-right": {"ear-right": {"x": 12.324117647058818, "y": 28.632941176470588, "rotation": -93, "width": 89.41176470588236, "height": 115.29411764705883, "path": "reptile-04.ear-right"}}, + "eyes": { + "eyes": {"x": 29.57117647058823, "y": 21.520588235294117, "width": 294.11764705882354, "height": 127.05882352941177, "path": "reptile-04.eyes"}, + "eyes-angry": {"x": 29.57117647058823, "y": 25.814705882352943, "width": 294.11764705882354, "height": 136.47058823529412, "path": "reptile-04.eyes-angry"}, + "eyes-happy": {"x": 29.57117647058823, "y": 28.579411764705885, "width": 294.11764705882354, "height": 112.94117647058823, "path": "reptile-04.eyes-happy"}, + "eyes-shut": {"x": 15.747647058823523, "y": -20.420588235294115, "width": 251.76470588235296, "height": 152.94117647058823, "path": "reptile-04.eyes-shut"} + }, + "horn": {"horn": {"x": 103.37352941176471, "y": 6.87, "rotation": -90, "width": 162.35294117647058, "height": 240.0, "path": "reptile-04.horn"}}, + "mouth": { + "mouth": {"x": 15.218235294117646, "y": 73.05, "width": 58.82352941176471, "height": 40.0, "path": "reptile-04.mouth"}, + "mouth-bite": {"x": 24.041764705882347, "y": 55.93235294117647, "width": 141.1764705882353, "height": 68.23529411764706, "path": "reptile-04.mouth-bite"}, + "mouth-open": {"x": 37.21823529411764, "y": 33.589411764705886, "width": 178.82352941176472, "height": 112.94117647058823, "path": "reptile-04.mouth-open"}, + "mouth-smile": {"x": 21.68882352941176, "y": 68.57941176470588, "width": 65.88235294117648, "height": 32.94117647058824, "path": "reptile-04.mouth-smile"} + }, + "tail": {"tail": {"x": 113.68882352941176, "y": 27.991176470588233, "width": 305.88235294117646, "height": 214.11764705882354, "path": "reptile-04.tail"}} + } + } + ], + "events": {"hit": {}, "hit-buff": {}, "jump": {}, "start-attack": {}}, + "keyAnimations": { + "activity/appear": "1023093953", + "activity/bath": "3305387968", + "attack/ranged/cast-fly": "4180526371", + "attack/ranged/cast-high": "164191126", + "attack/ranged/cast-low": "198813017", + "attack/ranged/cast-multi": "151119", + "attack/ranged/cast-tail": "997902532", + "activity/eat-bite": "1137807767", + "activity/eat-chew": "1988236421", + "activity/entrance": "3768378365", + "defense/evade": "1735454995", + "activity/evolve": "649307630", + "battle/get-buff": "1455190363", + "battle/get-debuff": "606904312", + "defense/hit-by-normal": "2045974966", + "defense/hit-by-normal-crit": "2130010601", + "defense/hit-by-normal-dramatic": "3823092125", + "defense/hit-by-ranged-attack": "2224561612", + "defense/hit-with-shield": "390714790", + "attack/melee/horn-gore": "1327954218", + "attack/melee/mouth-bite": "2237748264", + "action/move-back": "3766271173", + "action/move-forward": "2945160014", + "attack/melee/multi-attack": "905926802", + "action/idle/normal": "1659336865", + "attack/melee/normal-attack": "3305373483", + "activity/prepare": "405864717", + "action/idle/random-01": "554401889", + "action/idle/random-02": "1085666627", + "action/idle/random-03": "2021333900", + "action/idle/random-04": "1003789695", + "action/idle/random-05": "2745614147", + "action/run": "1438840721", + "draft/run-origin": "3577885069", + "attack/melee/shrimp": "3833448733", + "activity/sleep": "100562494", + "attack/melee/tail-multi-slap": "3317139533", + "attack/melee/tail-roll": "3108617565", + "attack/melee/tail-smash": "519942130", + "attack/melee/tail-thrash": "628713175", + "activity/victory-pose-back-flip": "2227634241" + } + }, + "xmas-02": { + "bones": [ + {"name": "@root"}, {"name": "@pivot-main", "parent": "@root"}, {"name": "@pivot-back", "parent": "@pivot-main", "x": 205, "y": 180, "color": "ff0101ff"}, + {"name": "@pivot-center", "parent": "@pivot-back", "x": -215.11, "y": -5.25, "color": "ff0101ff"}, + {"name": "@axie", "parent": "@pivot-center", "length": 213.28, "rotation": 179.04, "x": 196.39, "y": 5.16}, {"name": "@back", "parent": "@axie", "rotation": -179.04, "x": 37.63, "y": -198.19}, + {"name": "back", "parent": "@back", "length": 149.41, "rotation": 48, "x": -58.98, "y": 59.3, "transform": "noScale"}, + {"name": "@body", "parent": "@axie", "length": 226.28, "rotation": -8.35, "x": 224.58, "y": -0.53}, {"name": "@ear-left", "parent": "@axie", "rotation": -179.04, "x": 112.7, "y": -203.23}, + {"name": "ear-left", "parent": "@ear-left", "length": 113.61, "rotation": 24, "x": -27, "y": -5, "transform": "noScale"}, + {"name": "@ear-right", "parent": "@axie", "rotation": -179.04, "x": 405.28, "y": -235.33}, + {"name": "ear-right", "parent": "@ear-right", "length": 119.39, "rotation": 148, "x": -15, "y": -44, "transform": "noScale"}, + {"name": "@eyes", "parent": "@axie", "rotation": -179.04, "x": 384.24, "y": -113.67}, {"name": "@horn", "parent": "@axie", "rotation": -179.04, "x": 327.92, "y": -214.63}, + {"name": "horn", "parent": "@horn", "length": 176.72, "rotation": 90, "y": 18, "transform": "noScale"}, + {"name": "@leg-back-left", "parent": "@axie", "length": 66.78, "rotation": 97.07, "x": -15.3, "y": 102.56, "transform": "noScale"}, + {"name": "@leg-front-left", "parent": "@axie", "length": 68.04, "rotation": 84.88, "x": 135.05, "y": 132.6, "transform": "noScale"}, + {"name": "@leg-front-right", "parent": "@axie", "length": 70.32, "rotation": 92.53, "x": 382.95, "y": 121.78, "transform": "noScale"}, + {"name": "@mouth", "parent": "@axie", "rotation": -179.04, "x": 382.23, "y": 6.31}, {"name": "@shadow", "parent": "@root", "color": "e6d713ff"}, + {"name": "@tail", "parent": "@axie", "rotation": -179.04, "x": -11.76, "y": 61.72}, + {"name": "tail", "parent": "@tail", "length": 203.67, "rotation": 3, "x": 15, "y": 20, "transform": "noScale"}, + {"name": "leg-front-right-IK", "parent": "@pivot-main", "x": -195.99, "y": -10.21, "color": "ff3f00ff"}, + {"name": "leg-front-left-IK", "parent": "@pivot-main", "x": 42.3, "y": -18.42, "color": "ff3f00ff"}, + {"name": "leg-back-left-IK", "parent": "@pivot-main", "x": 208.57, "y": 1.35, "color": "ff3f00ff"}, {"name": "@ball", "parent": "@root", "y": 191, "color": "f3981bff"}, + {"name": "ball", "parent": "@ball", "y": -191, "color": "f4a729ff"}, {"name": "body-bell", "parent": "@body", "rotation": -170.69, "x": 121.75, "y": 84.01} + ], + "slots": [ + {"name": "shadow", "bone": "@shadow", "attachment": "shadow"}, {"name": "ball", "bone": "ball"}, {"name": "leg-front-right", "bone": "@leg-front-right", "attachment": "xmas-leg-front-right"}, + {"name": "leg-front-left", "bone": "@leg-front-left", "attachment": "xmas-leg-front-left"}, {"name": "leg-back-left", "bone": "@leg-back-left", "attachment": "xmas-leg-back-left"}, + {"name": "ear-right", "bone": "ear-right", "attachment": "ear-right"}, {"name": "tail", "bone": "tail", "attachment": "tail"}, {"name": "tail-glow", "bone": "tail"}, + {"name": "back", "bone": "back", "attachment": "back"}, {"name": "body", "bone": "@body", "attachment": "body-xmas-01"}, {"name": "eyes", "bone": "@eyes", "attachment": "eyes"}, + {"name": "mouth", "bone": "@mouth", "attachment": "mouth"}, {"name": "horn", "bone": "horn", "attachment": "horn"}, {"name": "ear-left", "bone": "ear-left", "attachment": "ear-left"}, + {"name": "body-bell", "bone": "body-bell", "attachment": "body-bell"} + ], + "ik": [ + {"name": "leg-back-left-IK", "order": 2, "bones": ["@leg-back-left"], "target": "leg-back-left-IK"}, + {"name": "leg-front-left-IK", "order": 1, "bones": ["@leg-front-left"], "target": "leg-front-left-IK"}, + {"name": "leg-front-right-IK", "bones": ["@leg-front-right"], "target": "leg-front-right-IK"} + ], + "skins": [ + { + "name": "default", + "attachments": { + "back": {"back": {"x": 31.909411764705883, "y": -10.57, "rotation": -48, "width": 312.94117647058823, "height": 320.0, "path": "xmas-02.back"}}, + "ear-left": {"ear-left": {"x": 23.627647058823523, "y": 0.4082352941176521, "rotation": -24, "width": 131.76470588235296, "height": 138.8235294117647, "path": "xmas-02.ear-left"}}, + "ear-right": {"ear-right": {"x": 34.90764705882352, "y": 1.808235294117652, "rotation": -148, "width": 131.76470588235296, "height": 138.8235294117647, "path": "xmas-02.ear-right"}}, + "eyes": { + "eyes": {"x": 21.78294117647058, "y": 11.891176470588231, "width": 195.29411764705884, "height": 94.11764705882354, "path": "xmas-02.eyes"}, + "eyes-angry": {"x": 22.959411764705884, "y": 3.95, "width": 192.94117647058823, "height": 80.0, "path": "xmas-02.eyes-angry"}, + "eyes-happy": {"x": 17.488823529411768, "y": -5.226470588235293, "width": 225.88235294117646, "height": 42.35294117647059, "path": "xmas-02.eyes-happy"}, + "eyes-shut": {"x": 15.547647058823522, "y": -16.16764705882353, "width": 211.76470588235296, "height": 28.235294117647058, "path": "xmas-02.eyes-shut"} + }, + "horn": {"horn": {"x": 101.27352941176471, "y": 10.834705882352942, "rotation": -90, "width": 202.35294117647058, "height": 216.47058823529412, "path": "xmas-02.horn"}}, + "mouth": { + "mouth": {"x": 5.547647058823522, "y": 84.36176470588236, "width": 131.76470588235296, "height": 101.17647058823529, "path": "xmas-02.mouth"}, + "mouth-bite": {"x": 9.547647058823522, "y": 99.47941176470589, "width": 211.76470588235296, "height": 152.94117647058823, "path": "xmas-02.mouth-bite"}, + "mouth-blink": {"x": -6.158235294117652, "y": 99.47941176470589, "width": 181.1764705882353, "height": 152.94117647058823, "path": "xmas-02.mouth-blink"}, + "mouth-eat": {"x": 8.00294117647058, "y": 1.807647058823529, "width": 155.29411764705884, "height": 51.76470588235294, "path": "xmas-02.mouth-eat"}, + "mouth-open": {"x": 15.312352941176464, "y": 58.47941176470589, "width": 148.23529411764707, "height": 152.94117647058823, "path": "xmas-02.mouth-open"}, + "mouth-smile": {"x": -6.158235294117652, "y": 99.47941176470589, "width": 181.1764705882353, "height": 152.94117647058823, "path": "xmas-02.mouth-smile"} + }, + "tail": {"tail": {"x": 107.00705882352942, "y": 16.047058823529404, "rotation": -3, "width": 284.70588235294116, "height": 204.7058823529412, "path": "xmas-02.tail"}}, + "tail-glow": { + "tail-glow-01": {"x": 72.85941176470588, "y": 15.650588235294116, "rotation": -3, "width": 352.94117647058823, "height": 327.05882352941177, "path": "xmas-02.tail-glow-01"}, + "tail-glow-02": {"x": 108.15705882352943, "y": 18.37, "rotation": -3, "width": 284.70588235294116, "height": 240.0, "path": "xmas-02.tail-glow-02"}, + "tail-glow-03": {"x": 125.33, "y": 15.107058823529407, "rotation": -3, "width": 320.0, "height": 204.7058823529412, "path": "xmas-02.tail-glow-03"} + } + } + } + ], + "events": {"hit": {}, "hit-buff": {}, "jump": {}, "start-attack": {}}, + "keyAnimations": { + "activity/appear": "3921179016", + "activity/bath": "3305387968", + "attack/ranged/cast-fly": "3722823556", + "attack/ranged/cast-high": "3577703416", + "attack/ranged/cast-low": "1793942137", + "attack/ranged/cast-multi": "151119", + "attack/ranged/cast-tail": "977217026", + "activity/eat-bite": "1137807767", + "activity/eat-chew": "2571197086", + "activity/entrance": "3768378365", + "defense/evade": "1735454995", + "activity/evolve": "649307630", + "battle/get-buff": "2993060391", + "battle/get-debuff": "2919546916", + "defense/hit-by-normal": "2695183231", + "defense/hit-by-normal-crit": "721863963", + "defense/hit-by-normal-dramatic": "2501809037", + "defense/hit-by-ranged-attack": "3309952905", + "defense/hit-with-shield": "228539860", + "attack/melee/horn-gore": "3177102970", + "attack/melee/mouth-bite": "1912445836", + "action/move-back": "3766271173", + "action/move-forward": "2945160014", + "attack/melee/multi-attack": "2627626635", + "action/idle/normal": "568166623", + "attack/melee/normal-attack": "3305373483", + "activity/prepare": "405864717", + "action/idle/random-01": "880116349", + "action/idle/random-02": "3151577093", + "action/idle/random-03": "2146505268", + "action/idle/random-04": "3708365579", + "action/idle/random-05": "2745614147", + "action/run": "378584637", + "draft/run-origin": "1973997258", + "attack/melee/shrimp": "244230390", + "status/sitting-duck": "1990830770", + "activity/sleep": "100562494", + "status/stun": "2745614147", + "attack/melee/tail-multi-slap": "2905793214", + "attack/melee/tail-roll": "3678751400", + "attack/melee/tail-smash": "2662497262", + "attack/melee/tail-thrash": "2102433122", + "activity/victory-pose-back-flip": "2227634241" + } + }, + "aquatic-02": { + "bones": [ + {"name": "@root"}, {"name": "@pivot-main", "parent": "@root"}, {"name": "@pivot-back", "parent": "@pivot-main", "x": 205, "y": 180, "color": "ff0101ff"}, + {"name": "@pivot-center", "parent": "@pivot-back", "x": -215.11, "y": -5.25, "color": "ff0101ff"}, + {"name": "@axie", "parent": "@pivot-center", "length": 213.28, "rotation": 179.04, "x": 196.39, "y": 5.16}, {"name": "@back", "parent": "@axie", "rotation": -179.04, "x": 37.63, "y": -198.19}, + {"name": "back", "parent": "@back", "length": 149.41, "rotation": 60, "x": 6.8, "y": 15, "transform": "noScale"}, + {"name": "@body", "parent": "@axie", "length": 226.28, "rotation": -8.35, "x": 224.58, "y": -0.53}, {"name": "@ear-left", "parent": "@axie", "rotation": -179.04, "x": 112.7, "y": -203.23}, + {"name": "ear-left", "parent": "@ear-left", "length": 113.61, "rotation": 2, "x": -21, "y": -43, "transform": "noScale"}, + {"name": "@ear-right", "parent": "@axie", "rotation": -179.04, "x": 405.28, "y": -235.33}, + {"name": "ear-right", "parent": "@ear-right", "length": 119.39, "rotation": 9, "x": -120, "y": -105, "transform": "noScale"}, + {"name": "@eyes", "parent": "@axie", "rotation": -179.04, "x": 384.24, "y": -113.67}, {"name": "@horn", "parent": "@axie", "rotation": -179.04, "x": 327.92, "y": -214.63}, + {"name": "horn", "parent": "@horn", "length": 176.72, "rotation": 90, "y": 18, "transform": "noScale"}, + {"name": "@leg-back-left", "parent": "@axie", "length": 76.4, "rotation": 100.96, "x": -15.3, "y": 102.56, "transform": "noScale"}, + {"name": "@leg-front-left", "parent": "@axie", "length": 51.19, "rotation": 93.86, "x": 134.77, "y": 149.55, "transform": "noScale"}, + {"name": "@leg-front-right", "parent": "@axie", "length": 74.83, "rotation": 83.2, "x": 382.95, "y": 121.78, "transform": "noScale"}, + {"name": "@mouth", "parent": "@axie", "rotation": -179.04, "x": 382.23, "y": 6.31}, + {"name": "body-pattern", "parent": "@body", "rotation": -170.69, "x": -267.21, "y": -49.4, "transform": "noScale"}, {"name": "@shadow", "parent": "@root", "color": "e6d713ff"}, + {"name": "@tail", "parent": "@axie", "rotation": -179.04, "x": -11.76, "y": 61.72}, + {"name": "tail", "parent": "@tail", "length": 203.67, "rotation": 6, "x": 16, "y": 72.87, "transform": "noScale"}, + {"name": "leg-front-right-IK", "parent": "@pivot-main", "x": -195.99, "y": -10.21, "color": "ff3f00ff"}, + {"name": "leg-front-left-IK", "parent": "@pivot-main", "x": 42.3, "y": -18.42, "color": "ff3f00ff"}, + {"name": "leg-back-left-IK", "parent": "@pivot-main", "x": 208.57, "y": 1.35, "color": "ff3f00ff"}, {"name": "@ball", "parent": "@root", "y": 191, "color": "f3981bff"}, + {"name": "ball", "parent": "@ball", "y": -191, "color": "f4a729ff"} + ], + "slots": [ + {"name": "shadow", "bone": "@shadow", "attachment": "shadow"}, {"name": "ball", "bone": "ball"}, {"name": "leg-front-right", "bone": "@leg-front-right", "attachment": "leg-front-right"}, + {"name": "ear-right", "bone": "ear-right", "attachment": "ear-right"}, {"name": "tail", "bone": "tail", "attachment": "tail"}, {"name": "back", "bone": "back", "attachment": "back"}, + {"name": "leg-back-left", "bone": "@leg-back-left", "attachment": "leg-back-left"}, {"name": "body", "bone": "@body", "attachment": "body"}, {"name": "body-pattern", "bone": "body-pattern"}, + {"name": "leg-front-left", "bone": "@leg-front-left", "attachment": "leg-front-left"}, {"name": "eyes", "bone": "@eyes", "attachment": "eyes"}, + {"name": "mouth", "bone": "@mouth", "attachment": "mouth"}, {"name": "ear-left", "bone": "ear-left", "attachment": "ear-left"}, {"name": "horn", "bone": "horn", "attachment": "horn"} + ], + "ik": [ + {"name": "leg-back-left-IK", "order": 2, "bones": ["@leg-back-left"], "target": "leg-back-left-IK"}, + {"name": "leg-front-left-IK", "order": 1, "bones": ["@leg-front-left"], "target": "leg-front-left-IK"}, + {"name": "leg-front-right-IK", "bones": ["@leg-front-right"], "target": "leg-front-right-IK"} + ], + "skins": [ + { + "name": "default", + "attachments": { + "back": {"back": {"x": 64.11294117647057, "y": 57.27882352941177, "rotation": -60, "width": 275.29411764705884, "height": 305.88235294117646, "path": "aquatic-02.back"}}, + "ear-left": {"ear-left": {"x": 51.48117647058823, "y": 5.528823529411768, "rotation": -2, "width": 134.11764705882354, "height": 185.88235294117646, "path": "aquatic-02.ear-left"}}, + "ear-right": {"ear-right": {"x": 29.632941176470588, "y": 23.64470588235294, "rotation": -9, "width": 75.29411764705883, "height": 176.47058823529412, "path": "aquatic-02.ear-right"}}, + "eyes": { + "eyes": {"x": 28.40882352941177, "y": 19.1, "width": 265.88235294117646, "height": 120.0, "path": "aquatic-02.eyes"}, + "eyes-angry": {"x": 28.40882352941177, "y": 21.747058823529414, "width": 265.88235294117646, "height": 124.70588235294117, "path": "aquatic-02.eyes-angry"}, + "eyes-happy": {"x": 25.232352941176465, "y": 22.629411764705885, "width": 268.2352941176471, "height": 112.94117647058823, "path": "aquatic-02.eyes-happy"}, + "eyes-shut": {"x": 28.40882352941177, "y": 19.1, "width": 265.88235294117646, "height": 120.0, "path": "aquatic-02.eyes-shut"} + }, + "horn": {"horn": {"x": 67.12941176470588, "y": -19.85, "rotation": -90, "width": 272.94117647058823, "height": 160.0, "path": "aquatic-02.horn"}}, + "mouth": { + "mouth": {"x": 12.879411764705884, "y": 44.629411764705885, "width": 112.94117647058823, "height": 112.94117647058823, "path": "aquatic-02.mouth"}, + "mouth-bite": {"x": 20.291176470588233, "y": 45.86470588235294, "width": 254.11764705882354, "height": 96.47058823529412, "path": "aquatic-02.mouth-bite"}, + "mouth-open": {"x": 14.938235294117652, "y": 30.217647058823523, "width": 138.8235294117647, "height": 171.76470588235296, "path": "aquatic-02.mouth-open"}, + "mouth-smile": {"x": 18.40882352941177, "y": 46.15882352941176, "width": 185.88235294117646, "height": 105.88235294117648, "path": "aquatic-02.mouth-smile"} + }, + "tail": {"tail": {"x": 99.51941176470588, "y": 1.0576470588235218, "rotation": -6, "width": 312.94117647058823, "height": 251.76470588235296, "path": "aquatic-02.tail"}} + } + } + ], + "events": {"hit": {}, "hit-buff": {}, "jump": {}, "start-attack": {}}, + "keyAnimations": { + "activity/appear": "1023093953", + "activity/bath": "3305387968", + "attack/ranged/cast-fly": "4180526371", + "attack/ranged/cast-high": "164191126", + "attack/ranged/cast-low": "198813017", + "attack/ranged/cast-multi": "151119", + "attack/ranged/cast-tail": "997902532", + "activity/eat-bite": "1137807767", + "activity/eat-chew": "1988236421", + "activity/entrance": "3768378365", + "defense/evade": "1735454995", + "activity/evolve": "649307630", + "battle/get-buff": "1455190363", + "battle/get-debuff": "606904312", + "defense/hit-by-normal": "2045974966", + "defense/hit-by-normal-crit": "2130010601", + "defense/hit-by-normal-dramatic": "3823092125", + "defense/hit-by-ranged-attack": "2224561612", + "defense/hit-with-shield": "390714790", + "attack/melee/horn-gore": "1327954218", + "attack/melee/mouth-bite": "2237748264", + "action/move-back": "3766271173", + "action/move-forward": "2945160014", + "attack/melee/multi-attack": "905926802", + "action/idle/normal": "1659336865", + "attack/melee/normal-attack": "3305373483", + "activity/prepare": "405864717", + "action/idle/random-01": "554401889", + "action/idle/random-02": "1085666627", + "action/idle/random-03": "2021333900", + "action/idle/random-04": "1003789695", + "action/idle/random-05": "2745614147", + "action/run": "1438840721", + "draft/run-origin": "3577885069", + "attack/melee/shrimp": "3833448733", + "activity/sleep": "100562494", + "attack/melee/tail-multi-slap": "3317139533", + "attack/melee/tail-roll": "3108617565", + "attack/melee/tail-smash": "519942130", + "attack/melee/tail-thrash": "628713175", + "activity/victory-pose-back-flip": "2227634241" + } + }, + "beast-06": { + "bones": [ + {"name": "@root"}, {"name": "@pivot-main", "parent": "@root"}, {"name": "@pivot-back", "parent": "@pivot-main", "x": 205, "y": 180, "color": "ff0101ff"}, + {"name": "@pivot-center", "parent": "@pivot-back", "x": -215.11, "y": -5.25, "color": "ff0101ff"}, + {"name": "@axie", "parent": "@pivot-center", "length": 213.28, "rotation": 179.04, "x": 196.39, "y": 5.16}, {"name": "@back", "parent": "@axie", "rotation": -179.04, "x": 37.63, "y": -198.19}, + {"name": "back", "parent": "@back", "length": 149.41, "rotation": 58, "x": -13.97, "y": 26.3, "transform": "noScale"}, + {"name": "@body", "parent": "@axie", "length": 226.28, "rotation": -8.35, "x": 224.58, "y": -0.53}, {"name": "@ear-left", "parent": "@axie", "rotation": -179.04, "x": 112.7, "y": -203.23}, + {"name": "ear-left", "parent": "@ear-left", "length": 113.61, "rotation": 90, "x": -27, "y": 19, "transform": "noScale"}, + {"name": "@ear-right", "parent": "@axie", "rotation": -179.04, "x": 405.28, "y": -235.33}, + {"name": "ear-right", "parent": "@ear-right", "length": 119.39, "rotation": 93, "x": -30, "y": -15, "transform": "noScale"}, + {"name": "@eyes", "parent": "@axie", "rotation": -179.04, "x": 384.24, "y": -113.67}, {"name": "@horn", "parent": "@axie", "rotation": -179.04, "x": 327.92, "y": -214.63}, + {"name": "horn", "parent": "@horn", "length": 176.72, "rotation": 90, "y": 18, "transform": "noScale"}, + {"name": "@leg-back-left", "parent": "@axie", "length": 76.4, "rotation": 100.96, "x": -15.3, "y": 102.56, "transform": "noScale"}, + {"name": "@leg-front-left", "parent": "@axie", "length": 51.19, "rotation": 93.86, "x": 134.77, "y": 149.55, "transform": "noScale"}, + {"name": "@leg-front-right", "parent": "@axie", "length": 74.83, "rotation": 83.2, "x": 382.95, "y": 121.78, "transform": "noScale"}, + {"name": "@mouth", "parent": "@axie", "rotation": -179.04, "x": 382.23, "y": 6.31}, + {"name": "body-pattern", "parent": "@body", "rotation": -170.69, "x": -267.21, "y": -49.4, "transform": "noScale"}, {"name": "@shadow", "parent": "@root", "color": "e6d713ff"}, + {"name": "@tail", "parent": "@axie", "rotation": -179.04, "x": -11.76, "y": 61.72}, + {"name": "tail", "parent": "@tail", "length": 203.67, "rotation": -12, "x": 16, "y": 72.87, "transform": "noScale"}, + {"name": "leg-front-right-IK", "parent": "@pivot-main", "x": -195.99, "y": -10.21, "color": "ff3f00ff"}, + {"name": "leg-front-left-IK", "parent": "@pivot-main", "x": 42.3, "y": -18.42, "color": "ff3f00ff"}, + {"name": "leg-back-left-IK", "parent": "@pivot-main", "x": 208.57, "y": 1.35, "color": "ff3f00ff"}, {"name": "@ball", "parent": "@root", "y": 191, "color": "f3981bff"}, + {"name": "ball", "parent": "@ball", "y": -191, "color": "f4a729ff"} + ], + "slots": [ + {"name": "shadow", "bone": "@shadow", "attachment": "shadow"}, {"name": "ball", "bone": "ball"}, {"name": "leg-front-right", "bone": "@leg-front-right", "attachment": "leg-front-right"}, + {"name": "ear-right", "bone": "ear-right", "attachment": "ear-right"}, {"name": "tail", "bone": "tail", "attachment": "tail"}, {"name": "back", "bone": "back", "attachment": "back"}, + {"name": "leg-back-left", "bone": "@leg-back-left", "attachment": "leg-back-left"}, {"name": "body", "bone": "@body", "attachment": "body"}, {"name": "body-pattern", "bone": "body-pattern"}, + {"name": "leg-front-left", "bone": "@leg-front-left", "attachment": "leg-front-left"}, {"name": "eyes", "bone": "@eyes", "attachment": "eyes"}, + {"name": "mouth", "bone": "@mouth", "attachment": "mouth"}, {"name": "ear-left", "bone": "ear-left", "attachment": "ear-left"}, {"name": "horn", "bone": "horn", "attachment": "horn"} + ], + "ik": [ + {"name": "leg-back-left-IK", "order": 2, "bones": ["@leg-back-left"], "target": "leg-back-left-IK"}, + {"name": "leg-front-left-IK", "order": 1, "bones": ["@leg-front-left"], "target": "leg-front-left-IK"}, + {"name": "leg-front-right-IK", "bones": ["@leg-front-right"], "target": "leg-front-right-IK"} + ], + "skins": [ + { + "name": "default", + "attachments": { + "back": {"back": {"x": 53.12823529411765, "y": 78.18941176470588, "rotation": -58, "width": 338.8235294117647, "height": 312.94117647058823, "path": "beast-06.back"}}, + "ear-left": {"ear-left": {"x": -131.83529411764704, "y": -100.53588235294117, "rotation": -90, "width": 216.47058823529412, "height": 249.41176470588235, "path": "beast-06.ear-left"}}, + "ear-right": {"ear-right": {"x": -113.07117647058823, "y": 79.11294117647058, "rotation": -93, "width": 225.88235294117646, "height": 235.29411764705884, "path": "beast-06.ear-right"}}, + "eyes": { + "eyes": {"x": 25.62, "y": 19.83, "width": 283, "height": 94, "path": "beast-06.eyes"}, + "eyes-angry": {"x": 25.62, "y": 16.33, "width": 283, "height": 79, "path": "beast-06.eyes-angry"}, + "eyes-happy": {"x": 25.62, "y": 28.33, "width": 283, "height": 109, "path": "beast-06.eyes-happy"}, + "eyes-shut": {"x": 25.62, "y": 20.83, "width": 283, "height": 92, "path": "beast-06.eyes-shut"} + }, + "horn": {"horn": {"x": 80.98823529411766, "y": -14.114117647058826, "rotation": -90, "width": 338.8235294117647, "height": 190.58823529411765, "path": "beast-06.horn"}}, + "mouth": { + "mouth": {"x": 12.62, "y": 46.83, "width": 121, "height": 106, "path": "beast-06.mouth"}, + "mouth-bite": {"x": 33.12, "y": 41.83, "width": 278, "height": 116, "path": "beast-06.mouth-bite"}, + "mouth-open": {"x": 14.12, "y": 6.33, "width": 124, "height": 189, "path": "beast-06.mouth-open"}, + "mouth-smile": {"x": 13.62, "y": 48.83, "width": 161, "height": 104, "path": "beast-06.mouth-smile"} + }, + "tail": {"tail": {"x": 102.05588235294117, "y": 30.11294117647058, "rotation": 12, "width": 230.58823529411765, "height": 315.29411764705884, "path": "beast-06.tail"}} + } + } + ], + "events": {"hit": {}, "hit-buff": {}, "jump": {}, "start-attack": {}}, + "keyAnimations": { + "activity/appear": "1023093953", + "activity/bath": "3305387968", + "attack/ranged/cast-fly": "4180526371", + "attack/ranged/cast-high": "164191126", + "attack/ranged/cast-low": "198813017", + "attack/ranged/cast-multi": "151119", + "attack/ranged/cast-tail": "997902532", + "activity/eat-bite": "1137807767", + "activity/eat-chew": "1988236421", + "activity/entrance": "3768378365", + "defense/evade": "1735454995", + "activity/evolve": "649307630", + "battle/get-buff": "1455190363", + "battle/get-debuff": "606904312", + "defense/hit-by-normal": "2045974966", + "defense/hit-by-normal-crit": "2130010601", + "defense/hit-by-normal-dramatic": "3823092125", + "defense/hit-by-ranged-attack": "2224561612", + "defense/hit-with-shield": "390714790", + "attack/melee/horn-gore": "1327954218", + "attack/melee/mouth-bite": "2237748264", + "action/move-back": "3766271173", + "action/move-forward": "2945160014", + "attack/melee/multi-attack": "905926802", + "action/idle/normal": "1659336865", + "attack/melee/normal-attack": "3305373483", + "activity/prepare": "405864717", + "action/idle/random-01": "554401889", + "action/idle/random-02": "1085666627", + "action/idle/random-03": "2021333900", + "action/idle/random-04": "1003789695", + "action/idle/random-05": "2745614147", + "action/run": "1438840721", + "draft/run-origin": "3577885069", + "attack/melee/shrimp": "3833448733", + "activity/sleep": "100562494", + "attack/melee/tail-multi-slap": "3317139533", + "attack/melee/tail-roll": "3108617565", + "attack/melee/tail-smash": "519942130", + "attack/melee/tail-thrash": "628713175", + "activity/victory-pose-back-flip": "2227634241" + } + }, + "reptile-02": { + "bones": [ + {"name": "@root"}, {"name": "@pivot-main", "parent": "@root"}, {"name": "@pivot-back", "parent": "@pivot-main", "x": 205, "y": 180, "color": "ff0101ff"}, + {"name": "@pivot-center", "parent": "@pivot-back", "x": -215.11, "y": -5.25, "color": "ff0101ff"}, + {"name": "@axie", "parent": "@pivot-center", "length": 213.28, "rotation": 179.04, "x": 196.39, "y": 5.16}, {"name": "@back", "parent": "@axie", "rotation": -179.04, "x": 37.63, "y": -198.19}, + {"name": "back", "parent": "@back", "length": 149.41, "rotation": 64, "x": -51.97, "y": -9.7, "transform": "noScale"}, + {"name": "@body", "parent": "@axie", "length": 226.28, "rotation": -8.35, "x": 224.58, "y": -0.53}, {"name": "@ear-left", "parent": "@axie", "rotation": -179.04, "x": 112.7, "y": -203.23}, + {"name": "ear-left", "parent": "@ear-left", "length": 113.61, "rotation": 52, "x": -27, "y": -17, "transform": "noScale"}, + {"name": "@ear-right", "parent": "@axie", "rotation": -179.04, "x": 405.28, "y": -235.33}, + {"name": "ear-right", "parent": "@ear-right", "length": 119.39, "rotation": 93, "x": -40, "y": -54, "transform": "noScale"}, + {"name": "@eyes", "parent": "@axie", "rotation": -179.04, "x": 384.24, "y": -113.67}, {"name": "@horn", "parent": "@axie", "rotation": -179.04, "x": 327.92, "y": -214.63}, + {"name": "horn", "parent": "@horn", "length": 176.72, "rotation": 90, "y": 18, "transform": "noScale"}, + {"name": "@leg-back-left", "parent": "@axie", "length": 76.4, "rotation": 100.96, "x": -15.3, "y": 102.56, "transform": "noScale"}, + {"name": "@leg-front-left", "parent": "@axie", "length": 51.19, "rotation": 93.86, "x": 134.77, "y": 149.55, "transform": "noScale"}, + {"name": "@leg-front-right", "parent": "@axie", "length": 74.83, "rotation": 83.2, "x": 382.95, "y": 121.78, "transform": "noScale"}, + {"name": "@mouth", "parent": "@axie", "rotation": -179.04, "x": 382.23, "y": 6.31}, + {"name": "body-pattern", "parent": "@body", "rotation": -170.69, "x": -267.21, "y": -49.4, "transform": "noScale"}, {"name": "@shadow", "parent": "@root", "color": "e6d713ff"}, + {"name": "@tail", "parent": "@axie", "rotation": -179.04, "x": -11.76, "y": 61.72}, + {"name": "tail", "parent": "@tail", "length": 203.67, "rotation": -18, "x": -26, "y": 40, "transform": "noScale"}, + {"name": "leg-front-right-IK", "parent": "@pivot-main", "x": -195.99, "y": -10.21, "color": "ff3f00ff"}, + {"name": "leg-front-left-IK", "parent": "@pivot-main", "x": 42.3, "y": -18.42, "color": "ff3f00ff"}, + {"name": "leg-back-left-IK", "parent": "@pivot-main", "x": 208.57, "y": 1.35, "color": "ff3f00ff"}, {"name": "@ball", "parent": "@root", "y": 191, "color": "f3981bff"}, + {"name": "ball", "parent": "@ball", "y": -191, "color": "f4a729ff"} + ], + "slots": [ + {"name": "shadow", "bone": "@shadow", "attachment": "shadow"}, {"name": "ball", "bone": "ball"}, {"name": "leg-front-right", "bone": "@leg-front-right", "attachment": "leg-front-right"}, + {"name": "ear-right", "bone": "ear-right", "attachment": "ear-right"}, {"name": "tail", "bone": "tail", "attachment": "tail"}, {"name": "back", "bone": "back", "attachment": "back"}, + {"name": "leg-back-left", "bone": "@leg-back-left", "attachment": "leg-back-left"}, {"name": "body", "bone": "@body", "attachment": "body"}, {"name": "body-pattern", "bone": "body-pattern"}, + {"name": "leg-front-left", "bone": "@leg-front-left", "attachment": "leg-front-left"}, {"name": "eyes", "bone": "@eyes", "attachment": "eyes"}, + {"name": "mouth", "bone": "@mouth", "attachment": "mouth"}, {"name": "ear-left", "bone": "ear-left", "attachment": "ear-left"}, {"name": "horn", "bone": "horn", "attachment": "horn"} + ], + "ik": [ + {"name": "leg-back-left-IK", "order": 2, "bones": ["@leg-back-left"], "target": "leg-back-left-IK"}, + {"name": "leg-front-left-IK", "order": 1, "bones": ["@leg-front-left"], "target": "leg-front-left-IK"}, + {"name": "leg-front-right-IK", "bones": ["@leg-front-right"], "target": "leg-front-right-IK"} + ], + "skins": [ + { + "name": "default", + "attachments": { + "back": {"back": {"x": 91.59705882352941, "y": -1.726470588235304, "rotation": -64, "width": 204.7058823529412, "height": 282.3529411764706, "path": "reptile-02.back"}}, + "ear-left": {"ear-left": {"x": 64.10352941176471, "y": -57.64647058823529, "rotation": -52, "width": 202.35294117647058, "height": 202.35294117647058, "path": "reptile-02.ear-left"}}, + "ear-right": { + "ear-right": {"x": 18.960588235294114, "y": 25.737647058823523, "rotation": -93, "width": 167.05882352941177, "height": 211.76470588235296, "path": "reptile-02.ear-right"} + }, + "eyes": { + "eyes": {"x": 30.45, "y": 23.003529411764703, "width": 320.0, "height": 122.3529411764706, "path": "reptile-02.eyes"}, + "eyes-angry": {"x": 30.80294117647058, "y": 27.474117647058826, "width": 315.29411764705884, "height": 129.41176470588235, "path": "reptile-02.eyes-angry"}, + "eyes-happy": {"x": 29.567647058823535, "y": 24.591764705882355, "width": 291.7647058823529, "height": 101.17647058823529, "path": "reptile-02.eyes-happy"}, + "eyes-shut": {"x": 28.214705882352927, "y": 23.35647058823529, "width": 296.47058823529414, "height": 117.64705882352942, "path": "reptile-02.eyes-shut"} + }, + "horn": {"horn": {"x": 102.20941176470589, "y": -22.302941176470593, "rotation": -90, "width": 232.94117647058823, "height": 204.7058823529412, "path": "reptile-02.horn"}}, + "mouth": { + "mouth": {"x": 24.979411764705883, "y": 37.82705882352941, "width": 232.94117647058823, "height": 84.70588235294117, "path": "reptile-02.mouth"}, + "mouth-bite": {"x": 33.08705882352942, "y": 47.06235294117647, "width": 324.70588235294116, "height": 108.23529411764706, "path": "reptile-02.mouth-bite"}, + "mouth-open": {"x": 30.45, "y": 49.29764705882353, "width": 280.0, "height": 91.76470588235294, "path": "reptile-02.mouth-open"}, + "mouth-smile": {"x": 22.626470588235303, "y": 60.885882352941174, "width": 277.6470588235294, "height": 70.58823529411765, "path": "reptile-02.mouth-smile"} + }, + "tail": {"tail": {"x": 116.50117647058823, "y": 14.94647058823529, "rotation": 18, "width": 334.11764705882354, "height": 197.64705882352942, "path": "reptile-02.tail"}} + } + } + ], + "events": {"hit": {}, "hit-buff": {}, "jump": {}, "start-attack": {}}, + "keyAnimations": { + "activity/appear": "1023093953", + "activity/bath": "3305387968", + "attack/ranged/cast-fly": "4180526371", + "attack/ranged/cast-high": "164191126", + "attack/ranged/cast-low": "198813017", + "attack/ranged/cast-multi": "151119", + "attack/ranged/cast-tail": "997902532", + "activity/eat-bite": "1137807767", + "activity/eat-chew": "1988236421", + "activity/entrance": "3768378365", + "defense/evade": "1735454995", + "activity/evolve": "649307630", + "battle/get-buff": "1455190363", + "battle/get-debuff": "606904312", + "defense/hit-by-normal": "2045974966", + "defense/hit-by-normal-crit": "2130010601", + "defense/hit-by-normal-dramatic": "3823092125", + "defense/hit-by-ranged-attack": "2224561612", + "defense/hit-with-shield": "390714790", + "attack/melee/horn-gore": "1327954218", + "attack/melee/mouth-bite": "2237748264", + "action/move-back": "3766271173", + "action/move-forward": "2945160014", + "attack/melee/multi-attack": "905926802", + "action/idle/normal": "1659336865", + "attack/melee/normal-attack": "3305373483", + "activity/prepare": "405864717", + "action/idle/random-01": "554401889", + "action/idle/random-02": "1085666627", + "action/idle/random-03": "2021333900", + "action/idle/random-04": "1003789695", + "action/idle/random-05": "2745614147", + "action/run": "1438840721", + "draft/run-origin": "3577885069", + "attack/melee/shrimp": "3833448733", + "activity/sleep": "100562494", + "attack/melee/tail-multi-slap": "3317139533", + "attack/melee/tail-roll": "3108617565", + "attack/melee/tail-smash": "519942130", + "attack/melee/tail-thrash": "628713175", + "activity/victory-pose-back-flip": "2227634241" + } + }, + "beast-08": { + "bones": [ + {"name": "@root"}, {"name": "@pivot-main", "parent": "@root"}, {"name": "@pivot-back", "parent": "@pivot-main", "x": 205, "y": 180, "color": "ff0101ff"}, + {"name": "@pivot-center", "parent": "@pivot-back", "x": -215.11, "y": -5.25, "color": "ff0101ff"}, + {"name": "@axie", "parent": "@pivot-center", "length": 213.28, "rotation": 179.04, "x": 196.39, "y": 5.16}, {"name": "@back", "parent": "@axie", "rotation": -179.04, "x": 37.63, "y": -198.19}, + {"name": "back", "parent": "@back", "length": 149.41, "rotation": 58, "x": -13.97, "y": 26.3, "transform": "noScale"}, + {"name": "@body", "parent": "@axie", "length": 226.28, "rotation": -8.35, "x": 224.58, "y": -0.53}, {"name": "@ear-left", "parent": "@axie", "rotation": -179.04, "x": 112.7, "y": -203.23}, + {"name": "ear-left", "parent": "@ear-left", "length": 113.61, "rotation": 90, "x": -27, "y": 19, "transform": "noScale"}, + {"name": "@ear-right", "parent": "@axie", "rotation": -179.04, "x": 405.28, "y": -235.33}, + {"name": "ear-right", "parent": "@ear-right", "length": 119.39, "rotation": 93, "x": -30, "y": -15, "transform": "noScale"}, + {"name": "@eyes", "parent": "@axie", "rotation": -179.04, "x": 384.24, "y": -113.67}, {"name": "@horn", "parent": "@axie", "rotation": -179.04, "x": 327.92, "y": -214.63}, + {"name": "horn", "parent": "@horn", "length": 176.72, "rotation": 90, "y": 18, "transform": "noScale"}, + {"name": "@leg-back-left", "parent": "@axie", "length": 76.4, "rotation": 100.96, "x": -15.3, "y": 102.56, "transform": "noScale"}, + {"name": "@leg-front-left", "parent": "@axie", "length": 51.19, "rotation": 93.86, "x": 134.77, "y": 149.55, "transform": "noScale"}, + {"name": "@leg-front-right", "parent": "@axie", "length": 74.83, "rotation": 83.2, "x": 382.95, "y": 121.78, "transform": "noScale"}, + {"name": "@mouth", "parent": "@axie", "rotation": -179.04, "x": 382.23, "y": 6.31}, + {"name": "body-pattern", "parent": "@body", "rotation": -170.69, "x": -267.21, "y": -49.4, "transform": "noScale"}, {"name": "@shadow", "parent": "@root", "color": "e6d713ff"}, + {"name": "@tail", "parent": "@axie", "rotation": -179.04, "x": -11.76, "y": 61.72}, + {"name": "tail", "parent": "@tail", "length": 203.67, "rotation": -12, "x": 16, "y": 72.87, "transform": "noScale"}, + {"name": "leg-front-right-IK", "parent": "@pivot-main", "x": -195.99, "y": -10.21, "color": "ff3f00ff"}, + {"name": "leg-front-left-IK", "parent": "@pivot-main", "x": 42.3, "y": -18.42, "color": "ff3f00ff"}, + {"name": "leg-back-left-IK", "parent": "@pivot-main", "x": 208.57, "y": 1.35, "color": "ff3f00ff"}, {"name": "@ball", "parent": "@root", "y": 191, "color": "f3981bff"}, + {"name": "ball", "parent": "@ball", "y": -191, "color": "f4a729ff"} + ], + "slots": [ + {"name": "shadow", "bone": "@shadow", "attachment": "shadow"}, {"name": "ball", "bone": "ball"}, {"name": "leg-front-right", "bone": "@leg-front-right", "attachment": "leg-front-right"}, + {"name": "ear-right", "bone": "ear-right", "attachment": "ear-right"}, {"name": "tail", "bone": "tail", "attachment": "tail"}, {"name": "back", "bone": "back", "attachment": "back"}, + {"name": "leg-back-left", "bone": "@leg-back-left", "attachment": "leg-back-left"}, {"name": "body", "bone": "@body", "attachment": "body"}, {"name": "body-pattern", "bone": "body-pattern"}, + {"name": "leg-front-left", "bone": "@leg-front-left", "attachment": "leg-front-left"}, {"name": "eyes", "bone": "@eyes", "attachment": "eyes"}, + {"name": "mouth", "bone": "@mouth", "attachment": "mouth"}, {"name": "ear-left", "bone": "ear-left", "attachment": "ear-left"}, {"name": "horn", "bone": "horn", "attachment": "horn"} + ], + "ik": [ + {"name": "leg-back-left-IK", "order": 2, "bones": ["@leg-back-left"], "target": "leg-back-left-IK"}, + {"name": "leg-front-left-IK", "order": 1, "bones": ["@leg-front-left"], "target": "leg-front-left-IK"}, + {"name": "leg-front-right-IK", "bones": ["@leg-front-right"], "target": "leg-front-right-IK"} + ], + "skins": [ + { + "name": "default", + "attachments": { + "back": {"back": {"x": 62.06411764705883, "y": 41.47294117647058, "rotation": -58, "width": 209.41176470588235, "height": 275.29411764705884, "path": "beast-08.back"}}, + "ear-left": {"ear-left": {"x": -58.447647058823534, "y": -64.47764705882354, "rotation": -90, "width": 148.23529411764707, "height": 188.23529411764707, "path": "beast-08.ear-left"}}, + "ear-right": {"ear-right": {"x": -63.80823529411765, "y": 71.18823529411763, "rotation": -93, "width": 141.1764705882353, "height": 178.82352941176472, "path": "beast-08.ear-right"}}, + "eyes": { + "eyes": {"x": 32.330588235294115, "y": 30.287647058823524, "width": 327.05882352941177, "height": 131.76470588235296, "path": "beast-08.eyes"}, + "eyes-angry": {"x": 32.330588235294115, "y": 29.464117647058828, "width": 327.05882352941177, "height": 129.41176470588235, "path": "beast-08.eyes-angry"}, + "eyes-happy": {"x": 32.330588235294115, "y": 39.22882352941177, "width": 327.05882352941177, "height": 145.88235294117646, "path": "beast-08.eyes-happy"}, + "eyes-shut": {"x": 32.330588235294115, "y": 29.464117647058828, "width": 327.05882352941177, "height": 129.41176470588235, "path": "beast-08.eyes-shut"} + }, + "horn": {"horn": {"x": 122.28764705882352, "y": 2.551764705882348, "rotation": -90, "width": 251.76470588235296, "height": 261.1764705882353, "path": "beast-08.horn"}}, + "mouth": { + "mouth": {"x": 16.62470588235294, "y": 75.11117647058823, "width": 56.470588235294116, "height": 54.11764705882353, "path": "beast-08.mouth"}, + "mouth-bite": {"x": 17.21294117647058, "y": 54.875882352941176, "width": 155.29411764705884, "height": 70.58823529411765, "path": "beast-08.mouth-bite"}, + "mouth-open": {"x": 30.448235294117644, "y": 25.287647058823524, "width": 98.82352941176471, "height": 171.76470588235296, "path": "beast-08.mouth-open"}, + "mouth-smile": {"x": 18.212941176470586, "y": 48.817058823529415, "width": 75.29411764705883, "height": 124.70588235294117, "path": "beast-08.mouth-smile"} + }, + "tail": {"tail": {"x": 107.37058823529412, "y": -8.112941176470594, "rotation": 12, "width": 207.05882352941177, "height": 204.7058823529412, "path": "beast-08.tail"}} + } + } + ], + "events": {"hit": {}, "hit-buff": {}, "jump": {}, "start-attack": {}}, + "keyAnimations": { + "activity/appear": "1023093953", + "activity/bath": "3305387968", + "attack/ranged/cast-fly": "4180526371", + "attack/ranged/cast-high": "164191126", + "attack/ranged/cast-low": "198813017", + "attack/ranged/cast-multi": "151119", + "attack/ranged/cast-tail": "997902532", + "activity/eat-bite": "1137807767", + "activity/eat-chew": "1988236421", + "activity/entrance": "3768378365", + "defense/evade": "1735454995", + "activity/evolve": "649307630", + "battle/get-buff": "1455190363", + "battle/get-debuff": "606904312", + "defense/hit-by-normal": "2045974966", + "defense/hit-by-normal-crit": "2130010601", + "defense/hit-by-normal-dramatic": "3823092125", + "defense/hit-by-ranged-attack": "2224561612", + "defense/hit-with-shield": "390714790", + "attack/melee/horn-gore": "1327954218", + "attack/melee/mouth-bite": "2237748264", + "action/move-back": "3766271173", + "action/move-forward": "2945160014", + "attack/melee/multi-attack": "905926802", + "action/idle/normal": "1659336865", + "attack/melee/normal-attack": "3305373483", + "activity/prepare": "405864717", + "action/idle/random-01": "554401889", + "action/idle/random-02": "1085666627", + "action/idle/random-03": "2021333900", + "action/idle/random-04": "1003789695", + "action/idle/random-05": "2745614147", + "action/run": "1438840721", + "draft/run-origin": "3577885069", + "attack/melee/shrimp": "3833448733", + "activity/sleep": "100562494", + "attack/melee/tail-multi-slap": "3317139533", + "attack/melee/tail-roll": "3108617565", + "attack/melee/tail-smash": "519942130", + "attack/melee/tail-thrash": "628713175", + "activity/victory-pose-back-flip": "2227634241" + } + }, + "bird-06": { + "bones": [ + {"name": "@root"}, {"name": "@pivot-main", "parent": "@root"}, {"name": "@pivot-back", "parent": "@pivot-main", "x": 205, "y": 180, "color": "ff0101ff"}, + {"name": "@pivot-center", "parent": "@pivot-back", "x": -215.11, "y": -5.25, "color": "ff0101ff"}, + {"name": "@axie", "parent": "@pivot-center", "length": 213.28, "rotation": 179.04, "x": 196.39, "y": 5.16}, {"name": "@back", "parent": "@axie", "rotation": -179.04, "x": 37.63, "y": -198.19}, + {"name": "back", "parent": "@back", "length": 149.41, "rotation": 73, "x": 6.03, "y": 11.3, "transform": "noScale"}, + {"name": "@body", "parent": "@axie", "length": 226.28, "rotation": -8.35, "x": 224.58, "y": -0.53}, {"name": "@ear-left", "parent": "@axie", "rotation": -179.04, "x": 112.7, "y": -203.23}, + {"name": "ear-left", "parent": "@ear-left", "length": 113.61, "rotation": 60, "x": 5, "y": -15, "transform": "noScale"}, + {"name": "@ear-right", "parent": "@axie", "rotation": -179.04, "x": 405.28, "y": -235.33}, + {"name": "ear-right", "parent": "@ear-right", "length": 119.39, "rotation": 120, "x": 13, "y": -48, "transform": "noScale"}, + {"name": "@eyes", "parent": "@axie", "rotation": -179.04, "x": 384.24, "y": -113.67}, {"name": "@horn", "parent": "@axie", "rotation": -179.04, "x": 327.92, "y": -214.63}, + {"name": "horn", "parent": "@horn", "length": 176.72, "rotation": 90, "y": 18, "transform": "noScale"}, + {"name": "@leg-back-left", "parent": "@axie", "length": 76.4, "rotation": 100.96, "x": -15.3, "y": 102.56, "transform": "noScale"}, + {"name": "@leg-front-left", "parent": "@axie", "length": 51.19, "rotation": 93.86, "x": 134.77, "y": 149.55, "transform": "noScale"}, + {"name": "@leg-front-right", "parent": "@axie", "length": 74.83, "rotation": 83.2, "x": 382.95, "y": 121.78, "transform": "noScale"}, + {"name": "@mouth", "parent": "@axie", "rotation": -179.04, "x": 382.23, "y": 6.31}, + {"name": "body-pattern", "parent": "@body", "rotation": -170.69, "x": -267.21, "y": -49.4, "transform": "noScale"}, {"name": "@shadow", "parent": "@root", "color": "e6d713ff"}, + {"name": "@tail", "parent": "@axie", "rotation": -179.04, "x": -11.76, "y": 61.72}, + {"name": "tail", "parent": "@tail", "length": 203.67, "rotation": 40, "x": 31, "y": -50, "transform": "noScale"}, + {"name": "leg-front-right-IK", "parent": "@pivot-main", "x": -195.99, "y": -10.21, "color": "ff3f00ff"}, + {"name": "leg-front-left-IK", "parent": "@pivot-main", "x": 42.3, "y": -18.42, "color": "ff3f00ff"}, + {"name": "leg-back-left-IK", "parent": "@pivot-main", "x": 208.57, "y": 1.35, "color": "ff3f00ff"}, {"name": "@ball", "parent": "@root", "y": 191, "color": "f3981bff"}, + {"name": "ball", "parent": "@ball", "y": -191, "color": "f4a729ff"} + ], + "slots": [ + {"name": "shadow", "bone": "@shadow", "attachment": "shadow"}, {"name": "ball", "bone": "ball"}, {"name": "leg-front-right", "bone": "@leg-front-right", "attachment": "leg-front-right"}, + {"name": "ear-right", "bone": "ear-right", "attachment": "ear-right"}, {"name": "tail", "bone": "tail", "attachment": "tail"}, {"name": "back", "bone": "back", "attachment": "back"}, + {"name": "leg-back-left", "bone": "@leg-back-left", "attachment": "leg-back-left"}, {"name": "body", "bone": "@body", "attachment": "body"}, {"name": "body-pattern", "bone": "body-pattern"}, + {"name": "leg-front-left", "bone": "@leg-front-left", "attachment": "leg-front-left"}, {"name": "eyes", "bone": "@eyes", "attachment": "eyes"}, + {"name": "mouth", "bone": "@mouth", "attachment": "mouth"}, {"name": "ear-left", "bone": "ear-left", "attachment": "ear-left"}, {"name": "horn", "bone": "horn", "attachment": "horn"} + ], + "ik": [ + {"name": "leg-back-left-IK", "order": 2, "bones": ["@leg-back-left"], "target": "leg-back-left-IK"}, + {"name": "leg-front-left-IK", "order": 1, "bones": ["@leg-front-left"], "target": "leg-front-left-IK"}, + {"name": "leg-front-right-IK", "bones": ["@leg-front-right"], "target": "leg-front-right-IK"} + ], + "skins": [ + { + "name": "default", + "attachments": { + "back": {"back": {"x": 140.18058823529412, "y": 79.08176470588235, "rotation": -73, "width": 327.05882352941177, "height": 301.1764705882353, "path": "bird-06.back"}}, + "ear-left": {"ear-left": {"x": 75.28117647058824, "y": -4.861176470588232, "rotation": -60, "width": 134.11764705882354, "height": 185.88235294117646, "path": "bird-06.ear-left"}}, + "ear-right": {"ear-right": {"x": 68.20117647058824, "y": 1.718823529411768, "rotation": -120, "width": 134.11764705882354, "height": 185.88235294117646, "path": "bird-06.ear-right"}}, + "eyes": { + "eyes": {"x": 28.16, "y": 17.98, "width": 293, "height": 97, "path": "bird-06.eyes"}, + "eyes-angry": {"x": 28.16, "y": 17.98, "width": 293, "height": 97, "path": "bird-06.eyes-angry"}, + "eyes-happy": {"x": 28.16, "y": 15.48, "width": 293, "height": 60, "path": "bird-06.eyes-happy"}, + "eyes-shut": {"x": 26.16, "y": 7.98, "width": 289, "height": 49, "path": "bird-06.eyes-shut"} + }, + "horn": {"horn": {"x": 111.37470588235293, "y": -87.91411764705883, "rotation": -90, "width": 336.47058823529414, "height": 230.58823529411765, "path": "bird-06.horn"}}, + "mouth": { + "mouth": {"x": 2.66, "y": 67.48, "width": 100, "height": 124, "path": "bird-06.mouth"}, + "mouth-bite": {"x": 8.66, "y": 73.98, "width": 140, "height": 111, "path": "bird-06.mouth-bite"}, + "mouth-open": {"x": 3.16, "y": 55.48, "width": 99, "height": 180, "path": "bird-06.mouth-open"}, + "mouth-smile": {"x": 11.66, "y": 67.48, "width": 118, "height": 124, "path": "bird-06.mouth-smile"} + }, + "tail": {"tail": {"x": 129.5170588235294, "y": 8.61294117647058, "rotation": -40, "width": 204.7058823529412, "height": 195.29411764705884, "path": "bird-06.tail"}} + } + } + ], + "events": {"hit": {}, "hit-buff": {}, "jump": {}, "start-attack": {}}, + "keyAnimations": { + "activity/appear": "1023093953", + "activity/bath": "3305387968", + "attack/ranged/cast-fly": "4180526371", + "attack/ranged/cast-high": "164191126", + "attack/ranged/cast-low": "198813017", + "attack/ranged/cast-multi": "151119", + "attack/ranged/cast-tail": "997902532", + "activity/eat-bite": "1137807767", + "activity/eat-chew": "1988236421", + "activity/entrance": "3768378365", + "defense/evade": "1735454995", + "activity/evolve": "649307630", + "battle/get-buff": "1455190363", + "battle/get-debuff": "606904312", + "defense/hit-by-normal": "2045974966", + "defense/hit-by-normal-crit": "2130010601", + "defense/hit-by-normal-dramatic": "3823092125", + "defense/hit-by-ranged-attack": "2224561612", + "defense/hit-with-shield": "390714790", + "attack/melee/horn-gore": "1327954218", + "attack/melee/mouth-bite": "2237748264", + "action/move-back": "3766271173", + "action/move-forward": "2945160014", + "attack/melee/multi-attack": "905926802", + "action/idle/normal": "1659336865", + "attack/melee/normal-attack": "3305373483", + "activity/prepare": "405864717", + "action/idle/random-01": "554401889", + "action/idle/random-02": "1085666627", + "action/idle/random-03": "2021333900", + "action/idle/random-04": "1003789695", + "action/idle/random-05": "2745614147", + "action/run": "1438840721", + "draft/run-origin": "3577885069", + "attack/melee/shrimp": "3833448733", + "activity/sleep": "100562494", + "attack/melee/tail-multi-slap": "3317139533", + "attack/melee/tail-roll": "3108617565", + "attack/melee/tail-smash": "519942130", + "attack/melee/tail-thrash": "628713175", + "activity/victory-pose-back-flip": "2227634241" + } + }, + "aquatic-04": { + "bones": [ + {"name": "@root"}, {"name": "@pivot-main", "parent": "@root"}, {"name": "@pivot-back", "parent": "@pivot-main", "x": 205, "y": 180, "color": "ff0101ff"}, + {"name": "@pivot-center", "parent": "@pivot-back", "x": -215.11, "y": -5.25, "color": "ff0101ff"}, + {"name": "@axie", "parent": "@pivot-center", "length": 213.28, "rotation": 179.04, "x": 196.39, "y": 5.16}, {"name": "@back", "parent": "@axie", "rotation": -179.04, "x": 37.63, "y": -198.19}, + {"name": "back", "parent": "@back", "length": 149.41, "rotation": 60, "x": 6.8, "y": 15, "transform": "noScale"}, + {"name": "@body", "parent": "@axie", "length": 226.28, "rotation": -8.35, "x": 224.58, "y": -0.53}, {"name": "@ear-left", "parent": "@axie", "rotation": -179.04, "x": 112.7, "y": -203.23}, + {"name": "ear-left", "parent": "@ear-left", "length": 113.61, "rotation": 2, "x": -21, "y": -43, "transform": "noScale"}, + {"name": "@ear-right", "parent": "@axie", "rotation": -179.04, "x": 405.28, "y": -235.33}, + {"name": "ear-right", "parent": "@ear-right", "length": 119.39, "rotation": 9, "x": -120, "y": -105, "transform": "noScale"}, + {"name": "@eyes", "parent": "@axie", "rotation": -179.04, "x": 384.24, "y": -113.67}, {"name": "@horn", "parent": "@axie", "rotation": -179.04, "x": 327.92, "y": -214.63}, + {"name": "horn", "parent": "@horn", "length": 176.72, "rotation": 90, "y": 18, "transform": "noScale"}, + {"name": "@leg-back-left", "parent": "@axie", "length": 76.4, "rotation": 100.96, "x": -15.3, "y": 102.56, "transform": "noScale"}, + {"name": "@leg-front-left", "parent": "@axie", "length": 51.19, "rotation": 93.86, "x": 134.77, "y": 149.55, "transform": "noScale"}, + {"name": "@leg-front-right", "parent": "@axie", "length": 74.83, "rotation": 83.2, "x": 382.95, "y": 121.78, "transform": "noScale"}, + {"name": "@mouth", "parent": "@axie", "rotation": -179.04, "x": 382.23, "y": 6.31}, + {"name": "body-pattern", "parent": "@body", "rotation": -170.69, "x": -267.21, "y": -49.4, "transform": "noScale"}, {"name": "@shadow", "parent": "@root", "color": "e6d713ff"}, + {"name": "@tail", "parent": "@axie", "rotation": -179.04, "x": -11.76, "y": 61.72}, + {"name": "tail", "parent": "@tail", "length": 203.67, "rotation": -12, "x": 16, "y": 72.87, "transform": "noScale"}, + {"name": "leg-front-right-IK", "parent": "@pivot-main", "x": -195.99, "y": -10.21, "color": "ff3f00ff"}, + {"name": "leg-front-left-IK", "parent": "@pivot-main", "x": 42.3, "y": -18.42, "color": "ff3f00ff"}, + {"name": "leg-back-left-IK", "parent": "@pivot-main", "x": 208.57, "y": 1.35, "color": "ff3f00ff"}, {"name": "@ball", "parent": "@root", "y": 191, "color": "f3981bff"}, + {"name": "ball", "parent": "@ball", "y": -191, "color": "f4a729ff"} + ], + "slots": [ + {"name": "shadow", "bone": "@shadow", "attachment": "shadow"}, {"name": "ball", "bone": "ball"}, {"name": "leg-front-right", "bone": "@leg-front-right", "attachment": "leg-front-right"}, + {"name": "ear-right", "bone": "ear-right", "attachment": "ear-right"}, {"name": "tail", "bone": "tail", "attachment": "tail"}, {"name": "back", "bone": "back", "attachment": "back"}, + {"name": "leg-back-left", "bone": "@leg-back-left", "attachment": "leg-back-left"}, {"name": "body", "bone": "@body", "attachment": "body"}, {"name": "body-pattern", "bone": "body-pattern"}, + {"name": "leg-front-left", "bone": "@leg-front-left", "attachment": "leg-front-left"}, {"name": "eyes", "bone": "@eyes", "attachment": "eyes"}, + {"name": "mouth", "bone": "@mouth", "attachment": "mouth"}, {"name": "ear-left", "bone": "ear-left", "attachment": "ear-left"}, {"name": "horn", "bone": "horn", "attachment": "horn"} + ], + "ik": [ + {"name": "leg-back-left-IK", "order": 2, "bones": ["@leg-back-left"], "target": "leg-back-left-IK"}, + {"name": "leg-front-left-IK", "order": 1, "bones": ["@leg-front-left"], "target": "leg-front-left-IK"}, + {"name": "leg-front-right-IK", "bones": ["@leg-front-right"], "target": "leg-front-right-IK"} + ], + "skins": [ + { + "name": "default", + "attachments": { + "back": {"back": {"x": 65.67941176470589, "y": 117.1564705882353, "rotation": -60, "width": 192.94117647058823, "height": 237.64705882352942, "path": "aquatic-04.back"}}, + "ear-left": {"ear-left": {"x": 45.79941176470589, "y": -6.12, "rotation": -2, "width": 112.94117647058823, "height": 160.0, "path": "aquatic-04.ear-left"}}, + "ear-right": {"ear-right": {"x": 23.78235294117647, "y": 15.99647058823529, "rotation": -9, "width": 68.23529411764706, "height": 157.64705882352942, "path": "aquatic-04.ear-right"}}, + "eyes": { + "eyes": {"x": 31.631764705882347, "y": 18.29, "width": 301.1764705882353, "height": 120.0, "path": "aquatic-04.eyes"}, + "eyes-angry": {"x": 31.631764705882347, "y": 18.29, "width": 301.1764705882353, "height": 120.0, "path": "aquatic-04.eyes-angry"}, + "eyes-happy": {"x": 31.631764705882347, "y": 18.29, "width": 301.1764705882353, "height": 120.0, "path": "aquatic-04.eyes-happy"}, + "eyes-shut": {"x": 31.631764705882347, "y": 18.29, "width": 301.1764705882353, "height": 120.0, "path": "aquatic-04.eyes-shut"} + }, + "horn": {"horn": {"x": 85.4670588235294, "y": 6.962352941176464, "rotation": -90, "width": 204.7058823529412, "height": 228.23529411764707, "path": "aquatic-04.horn"}}, + "mouth": { + "mouth": {"x": 13.749411764705885, "y": 31.46647058823529, "width": 312.94117647058823, "height": 117.64705882352942, "path": "aquatic-04.mouth"}, + "mouth-bite": {"x": 13.22, "y": 41.05470588235294, "width": 360.0, "height": 96.47058823529412, "path": "aquatic-04.mouth-bite"}, + "mouth-open": {"x": 14.86705882352942, "y": 18.23117647058823, "width": 324.70588235294116, "height": 174.11764705882354, "path": "aquatic-04.mouth-open"}, + "mouth-smile": {"x": 12.337647058823537, "y": 37.17235294117647, "width": 331.7647058823529, "height": 108.23529411764706, "path": "aquatic-04.mouth-smile"} + }, + "tail": {"tail": {"x": 87.0035294117647, "y": 4.557647058823522, "rotation": 12, "width": 242.3529411764706, "height": 211.76470588235296, "path": "aquatic-04.tail"}} + } + } + ], + "events": {"hit": {}, "hit-buff": {}, "jump": {}, "start-attack": {}}, + "keyAnimations": { + "activity/appear": "1023093953", + "activity/bath": "3305387968", + "attack/ranged/cast-fly": "4180526371", + "attack/ranged/cast-high": "164191126", + "attack/ranged/cast-low": "198813017", + "attack/ranged/cast-multi": "151119", + "attack/ranged/cast-tail": "997902532", + "activity/eat-bite": "1137807767", + "activity/eat-chew": "1988236421", + "activity/entrance": "3768378365", + "defense/evade": "1735454995", + "activity/evolve": "649307630", + "battle/get-buff": "1455190363", + "battle/get-debuff": "606904312", + "defense/hit-by-normal": "2045974966", + "defense/hit-by-normal-crit": "2130010601", + "defense/hit-by-normal-dramatic": "3823092125", + "defense/hit-by-ranged-attack": "2224561612", + "defense/hit-with-shield": "390714790", + "attack/melee/horn-gore": "1327954218", + "attack/melee/mouth-bite": "2237748264", + "action/move-back": "3766271173", + "action/move-forward": "2945160014", + "attack/melee/multi-attack": "905926802", + "action/idle/normal": "1659336865", + "attack/melee/normal-attack": "3305373483", + "activity/prepare": "405864717", + "action/idle/random-01": "554401889", + "action/idle/random-02": "1085666627", + "action/idle/random-03": "2021333900", + "action/idle/random-04": "1003789695", + "action/idle/random-05": "2745614147", + "action/run": "1438840721", + "draft/run-origin": "3577885069", + "attack/melee/shrimp": "3833448733", + "activity/sleep": "100562494", + "attack/melee/tail-multi-slap": "3317139533", + "attack/melee/tail-roll": "3108617565", + "attack/melee/tail-smash": "519942130", + "attack/melee/tail-thrash": "628713175", + "activity/victory-pose-back-flip": "2227634241" + } + }, + "bird-08": { + "bones": [ + {"name": "@root"}, {"name": "@pivot-main", "parent": "@root"}, {"name": "@pivot-back", "parent": "@pivot-main", "x": 205, "y": 180, "color": "ff0101ff"}, + {"name": "@pivot-center", "parent": "@pivot-back", "x": -215.11, "y": -5.25, "color": "ff0101ff"}, + {"name": "@axie", "parent": "@pivot-center", "length": 213.28, "rotation": 179.04, "x": 196.39, "y": 5.16}, {"name": "@back", "parent": "@axie", "rotation": -179.04, "x": 37.63, "y": -198.19}, + {"name": "back", "parent": "@back", "length": 149.41, "rotation": 73, "x": 6.03, "y": 11.3, "transform": "noScale"}, + {"name": "@body", "parent": "@axie", "length": 226.28, "rotation": -8.35, "x": 224.58, "y": -0.53}, {"name": "@ear-left", "parent": "@axie", "rotation": -179.04, "x": 112.7, "y": -203.23}, + {"name": "ear-left", "parent": "@ear-left", "length": 113.61, "rotation": 138, "x": 41, "y": -55, "transform": "noScale"}, + {"name": "@ear-right", "parent": "@axie", "rotation": -179.04, "x": 405.28, "y": -235.33}, + {"name": "ear-right", "parent": "@ear-right", "length": 119.39, "rotation": 93, "x": -87, "y": -98, "transform": "noScale"}, + {"name": "@eyes", "parent": "@axie", "rotation": -179.04, "x": 384.24, "y": -113.67}, {"name": "@horn", "parent": "@axie", "rotation": -179.04, "x": 327.92, "y": -214.63}, + {"name": "horn", "parent": "@horn", "length": 176.72, "rotation": 90, "y": 18, "transform": "noScale"}, + {"name": "@leg-back-left", "parent": "@axie", "length": 76.4, "rotation": 100.96, "x": -15.3, "y": 102.56, "transform": "noScale"}, + {"name": "@leg-front-left", "parent": "@axie", "length": 51.19, "rotation": 93.86, "x": 134.77, "y": 149.55, "transform": "noScale"}, + {"name": "@leg-front-right", "parent": "@axie", "length": 74.83, "rotation": 83.2, "x": 382.95, "y": 121.78, "transform": "noScale"}, + {"name": "@mouth", "parent": "@axie", "rotation": -179.04, "x": 382.23, "y": 6.31}, + {"name": "body-pattern", "parent": "@body", "rotation": -170.69, "x": -267.21, "y": -49.4, "transform": "noScale"}, {"name": "@shadow", "parent": "@root", "color": "e6d713ff"}, + {"name": "@tail", "parent": "@axie", "rotation": -179.04, "x": -11.76, "y": 61.72}, + {"name": "tail", "parent": "@tail", "length": 203.67, "rotation": -12, "x": 16, "y": 72.87, "transform": "noScale"}, + {"name": "leg-front-right-IK", "parent": "@pivot-main", "x": -195.99, "y": -10.21, "color": "ff3f00ff"}, + {"name": "leg-front-left-IK", "parent": "@pivot-main", "x": 42.3, "y": -18.42, "color": "ff3f00ff"}, + {"name": "leg-back-left-IK", "parent": "@pivot-main", "x": 208.57, "y": 1.35, "color": "ff3f00ff"}, {"name": "@ball", "parent": "@root", "y": 191, "color": "f3981bff"}, + {"name": "ball", "parent": "@ball", "y": -191, "color": "f4a729ff"} + ], + "slots": [ + {"name": "shadow", "bone": "@shadow", "attachment": "shadow"}, {"name": "ball", "bone": "ball"}, {"name": "leg-front-right", "bone": "@leg-front-right", "attachment": "leg-front-right"}, + {"name": "ear-right", "bone": "ear-right", "attachment": "ear-right"}, {"name": "tail", "bone": "tail", "attachment": "tail"}, {"name": "back", "bone": "back", "attachment": "back"}, + {"name": "leg-back-left", "bone": "@leg-back-left", "attachment": "leg-back-left"}, {"name": "body", "bone": "@body", "attachment": "body"}, {"name": "body-pattern", "bone": "body-pattern"}, + {"name": "leg-front-left", "bone": "@leg-front-left", "attachment": "leg-front-left"}, {"name": "eyes", "bone": "@eyes", "attachment": "eyes"}, + {"name": "mouth", "bone": "@mouth", "attachment": "mouth"}, {"name": "ear-left", "bone": "ear-left", "attachment": "ear-left"}, {"name": "horn", "bone": "horn", "attachment": "horn"} + ], + "ik": [ + {"name": "leg-back-left-IK", "order": 2, "bones": ["@leg-back-left"], "target": "leg-back-left-IK"}, + {"name": "leg-front-left-IK", "order": 1, "bones": ["@leg-front-left"], "target": "leg-front-left-IK"}, + {"name": "leg-front-right-IK", "bones": ["@leg-front-right"], "target": "leg-front-right-IK"} + ], + "skins": [ + { + "name": "default", + "attachments": { + "back": {"back": {"x": 44.43823529411765, "y": -1.247647058823536, "rotation": -73, "width": 298.8235294117647, "height": 268.2352941176471, "path": "bird-08.back"}}, + "ear-left": {"ear-left": {"x": 63.55882352941177, "y": -3.396470588235297, "rotation": -138, "width": 145.88235294117646, "height": 122.3529411764706, "path": "bird-08.ear-left"}}, + "ear-right": {"ear-right": {"x": 47.104705882352945, "y": 16.27823529411765, "rotation": -93, "width": 96.47058823529412, "height": 138.8235294117647, "path": "bird-08.ear-right"}}, + "eyes": { + "eyes": {"x": 28.38, "y": 28.430588235294117, "width": 280.0, "height": 127.05882352941177, "path": "bird-08.eyes"}, + "eyes-angry": {"x": 28.38, "y": 28.430588235294117, "width": 280.0, "height": 127.05882352941177, "path": "bird-08.eyes-angry"}, + "eyes-happy": {"x": 26.615294117647057, "y": 41.13647058823529, "width": 223.52941176470588, "height": 117.64705882352942, "path": "bird-08.eyes-happy"}, + "eyes-shut": {"x": 26.615294117647057, "y": 36.665882352941175, "width": 223.52941176470588, "height": 110.58823529411765, "path": "bird-08.eyes-shut"} + }, + "horn": {"horn": {"x": 70.48941176470588, "y": -23.32117647058823, "rotation": -90, "width": 232.94117647058823, "height": 145.88235294117646, "path": "bird-08.horn"}}, + "mouth": { + "mouth": {"x": 4.732941176470587, "y": 73.6070588235294, "width": 115.29411764705883, "height": 124.70588235294117, "path": "bird-08.mouth"}, + "mouth-bite": {"x": 14.55647058823529, "y": 74.7835294117647, "width": 157.64705882352942, "height": 122.3529411764706, "path": "bird-08.mouth-bite"}, + "mouth-open": {"x": 4.615294117647058, "y": 62.96, "width": 143.52941176470588, "height": 160.0, "path": "bird-08.mouth-open"}, + "mouth-smile": {"x": 9.674117647058827, "y": 74.7835294117647, "width": 129.41176470588235, "height": 122.3529411764706, "path": "bird-08.mouth-smile"} + }, + "tail": {"tail": {"x": 79.76058823529412, "y": -14.818823529411768, "rotation": 12, "width": 247.05882352941177, "height": 254.11764705882354, "path": "bird-08.tail"}} + } + } + ], + "events": {"hit": {}, "hit-buff": {}, "jump": {}, "start-attack": {}}, + "keyAnimations": { + "activity/appear": "1023093953", + "activity/bath": "3305387968", + "attack/ranged/cast-fly": "4180526371", + "attack/ranged/cast-high": "164191126", + "attack/ranged/cast-low": "198813017", + "attack/ranged/cast-multi": "151119", + "attack/ranged/cast-tail": "997902532", + "activity/eat-bite": "1137807767", + "activity/eat-chew": "1988236421", + "activity/entrance": "3768378365", + "defense/evade": "1735454995", + "activity/evolve": "649307630", + "battle/get-buff": "1455190363", + "battle/get-debuff": "606904312", + "defense/hit-by-normal": "2045974966", + "defense/hit-by-normal-crit": "2130010601", + "defense/hit-by-normal-dramatic": "3823092125", + "defense/hit-by-ranged-attack": "2224561612", + "defense/hit-with-shield": "390714790", + "attack/melee/horn-gore": "1327954218", + "attack/melee/mouth-bite": "2237748264", + "action/move-back": "3766271173", + "action/move-forward": "2945160014", + "attack/melee/multi-attack": "905926802", + "action/idle/normal": "1659336865", + "attack/melee/normal-attack": "3305373483", + "activity/prepare": "405864717", + "action/idle/random-01": "554401889", + "action/idle/random-02": "1085666627", + "action/idle/random-03": "2021333900", + "action/idle/random-04": "1003789695", + "action/idle/random-05": "2745614147", + "action/run": "1438840721", + "draft/run-origin": "3577885069", + "attack/melee/shrimp": "3833448733", + "activity/sleep": "100562494", + "attack/melee/tail-multi-slap": "3317139533", + "attack/melee/tail-roll": "3108617565", + "attack/melee/tail-smash": "519942130", + "attack/melee/tail-thrash": "628713175", + "activity/victory-pose-back-flip": "2227634241" + } + }, + "bug-12": { + "bones": [ + {"name": "@root"}, {"name": "@pivot-main", "parent": "@root"}, {"name": "@pivot-back", "parent": "@pivot-main", "x": 205, "y": 180, "color": "ff0101ff"}, + {"name": "@pivot-center", "parent": "@pivot-back", "x": -215.11, "y": -5.25, "color": "ff0101ff"}, + {"name": "@axie", "parent": "@pivot-center", "length": 213.28, "rotation": 179.04, "x": 196.39, "y": 5.16}, {"name": "@back", "parent": "@axie", "rotation": -179.04, "x": 37.63, "y": -198.19}, + {"name": "back", "parent": "@back", "length": 149.41, "rotation": 58, "x": -79.97, "y": 60.3, "transform": "noScale"}, + {"name": "@body", "parent": "@axie", "length": 226.28, "rotation": -8.35, "x": 224.58, "y": -0.53}, {"name": "@ear-left", "parent": "@axie", "rotation": -179.04, "x": 112.7, "y": -203.23}, + {"name": "ear-left", "parent": "@ear-left", "length": 113.61, "rotation": 50, "x": -9, "y": -3, "transform": "noScale"}, + {"name": "@ear-right", "parent": "@axie", "rotation": -179.04, "x": 405.28, "y": -235.33}, + {"name": "ear-right", "parent": "@ear-right", "length": 119.39, "rotation": 90, "x": -67, "y": -59, "transform": "noScale"}, + {"name": "@eyes", "parent": "@axie", "rotation": -179.04, "x": 384.24, "y": -113.67}, {"name": "@horn", "parent": "@axie", "rotation": -179.04, "x": 327.92, "y": -214.63}, + {"name": "horn", "parent": "@horn", "length": 176.72, "rotation": 90, "y": 18, "transform": "noScale"}, + {"name": "@leg-back-left", "parent": "@axie", "length": 76.4, "rotation": 100.96, "x": -15.3, "y": 102.56, "transform": "noScale"}, + {"name": "@leg-front-left", "parent": "@axie", "length": 51.19, "rotation": 93.86, "x": 134.77, "y": 149.55, "transform": "noScale"}, + {"name": "@leg-front-right", "parent": "@axie", "length": 74.83, "rotation": 83.2, "x": 382.95, "y": 121.78, "transform": "noScale"}, + {"name": "@mouth", "parent": "@axie", "rotation": -179.04, "x": 382.23, "y": 6.31}, + {"name": "body-pattern", "parent": "@body", "rotation": -170.69, "x": -267.21, "y": -49.4, "transform": "noScale"}, {"name": "@shadow", "parent": "@root", "color": "e6d713ff"}, + {"name": "@tail", "parent": "@axie", "rotation": -179.04, "x": -11.76, "y": 61.72}, + {"name": "tail", "parent": "@tail", "length": 203.67, "rotation": -30, "x": 3, "y": 40, "transform": "noScale"}, + {"name": "leg-front-right-IK", "parent": "@pivot-main", "x": -195.99, "y": -10.21, "color": "ff3f00ff"}, + {"name": "leg-front-left-IK", "parent": "@pivot-main", "x": 42.3, "y": -18.42, "color": "ff3f00ff"}, + {"name": "leg-back-left-IK", "parent": "@pivot-main", "x": 208.57, "y": 1.35, "color": "ff3f00ff"}, {"name": "@ball", "parent": "@root", "y": 191, "color": "f3981bff"}, + {"name": "ball", "parent": "@ball", "y": -191, "color": "f4a729ff"} + ], + "slots": [ + {"name": "shadow", "bone": "@shadow", "attachment": "shadow"}, {"name": "ball", "bone": "ball"}, {"name": "leg-front-right", "bone": "@leg-front-right", "attachment": "leg-front-right"}, + {"name": "ear-right", "bone": "ear-right", "attachment": "ear-right"}, {"name": "tail", "bone": "tail", "attachment": "tail"}, {"name": "back", "bone": "back", "attachment": "back"}, + {"name": "leg-back-left", "bone": "@leg-back-left", "attachment": "leg-back-left"}, {"name": "body", "bone": "@body", "attachment": "body"}, {"name": "body-pattern", "bone": "body-pattern"}, + {"name": "leg-front-left", "bone": "@leg-front-left", "attachment": "leg-front-left"}, {"name": "eyes", "bone": "@eyes"}, {"name": "mouth", "bone": "@mouth", "attachment": "mouth"}, + {"name": "ear-left", "bone": "ear-left", "attachment": "ear-left"}, {"name": "horn", "bone": "horn", "attachment": "horn"} + ], + "ik": [ + {"name": "leg-back-left-IK", "order": 2, "bones": ["@leg-back-left"], "target": "leg-back-left-IK"}, + {"name": "leg-front-left-IK", "order": 1, "bones": ["@leg-front-left"], "target": "leg-front-left-IK"}, + {"name": "leg-front-right-IK", "bones": ["@leg-front-right"], "target": "leg-front-right-IK"} + ], + "skins": [ + { + "name": "default", + "attachments": { + "back": {"back": {"x": 99.87882352941176, "y": -19.37176470588235, "rotation": -58, "width": 385.88235294117646, "height": 258.8235294117647, "path": "bug-12.back"}}, + "ear-left": {"ear-left": {"x": 56.222352941176474, "y": -1.0170588235294131, "rotation": -50, "width": 108.23529411764706, "height": 115.29411764705883, "path": "bug-12.ear-left"}}, + "ear-right": {"ear-right": {"x": 55.540588235294116, "y": 2.817058823529413, "rotation": -90, "width": 47.05882352941177, "height": 124.70588235294117, "path": "bug-12.ear-right"}}, + "eyes": { + "eyes": {"x": 25.62, "y": 19.83, "width": 283, "height": 94, "path": "bug-12.eyes"}, + "eyes-angry": {"x": 25.62, "y": 16.33, "width": 283, "height": 79, "path": "bug-12.eyes-angry"}, + "eyes-happy": {"x": 25.62, "y": 28.33, "width": 283, "height": 109, "path": "bug-12.eyes-happy"}, + "eyes-shut": {"x": 25.62, "y": 20.83, "width": 283, "height": 92, "path": "bug-12.eyes-shut"} + }, + "horn": {"horn": {"x": 97.40294117647058, "y": -21.702941176470596, "rotation": -90, "width": 315.29411764705884, "height": 204.7058823529412, "path": "bug-12.horn"}}, + "mouth": { + "mouth": {"x": 12.62, "y": 46.83, "width": 121, "height": 106, "path": "bug-12.mouth"}, + "mouth-bite": {"x": 33.12, "y": 41.83, "width": 278, "height": 116, "path": "bug-12.mouth-bite"}, + "mouth-open": {"x": 14.12, "y": 6.33, "width": 124, "height": 189, "path": "bug-12.mouth-open"}, + "mouth-smile": {"x": 13.62, "y": 48.83, "width": 161, "height": 104, "path": "bug-12.mouth-smile"} + }, + "tail": {"tail": {"x": 83.29705882352941, "y": 21.527058823529405, "rotation": 30, "width": 244.7058823529412, "height": 204.7058823529412, "path": "bug-12.tail"}} + } + } + ], + "events": {"hit": {}, "hit-buff": {}, "jump": {}, "start-attack": {}}, + "keyAnimations": { + "activity/appear": "1023093953", + "activity/bath": "3305387968", + "attack/ranged/cast-fly": "4180526371", + "attack/ranged/cast-high": "164191126", + "attack/ranged/cast-low": "198813017", + "attack/ranged/cast-multi": "151119", + "attack/ranged/cast-tail": "997902532", + "activity/eat-bite": "1137807767", + "activity/eat-chew": "1988236421", + "activity/entrance": "3768378365", + "defense/evade": "1735454995", + "activity/evolve": "649307630", + "battle/get-buff": "1455190363", + "battle/get-debuff": "606904312", + "defense/hit-by-normal": "2045974966", + "defense/hit-by-normal-crit": "2130010601", + "defense/hit-by-normal-dramatic": "3823092125", + "defense/hit-by-ranged-attack": "2224561612", + "defense/hit-with-shield": "390714790", + "attack/melee/horn-gore": "1327954218", + "attack/melee/mouth-bite": "2237748264", + "action/move-back": "3766271173", + "action/move-forward": "2945160014", + "attack/melee/multi-attack": "905926802", + "action/idle/normal": "1659336865", + "attack/melee/normal-attack": "3305373483", + "activity/prepare": "405864717", + "action/idle/random-01": "554401889", + "action/idle/random-02": "1085666627", + "action/idle/random-03": "2021333900", + "action/idle/random-04": "1003789695", + "action/idle/random-05": "2745614147", + "action/run": "1438840721", + "draft/run-origin": "3577885069", + "attack/melee/shrimp": "3833448733", + "activity/sleep": "100562494", + "attack/melee/tail-multi-slap": "3317139533", + "attack/melee/tail-roll": "3108617565", + "attack/melee/tail-smash": "519942130", + "attack/melee/tail-thrash": "628713175", + "activity/victory-pose-back-flip": "2227634241" + } + }, + "japan-01": { + "bones": [ + {"name": "@root"}, {"name": "@pivot-main", "parent": "@root"}, {"name": "@pivot-back", "parent": "@pivot-main", "x": 205, "y": 180, "color": "ff0101ff"}, + {"name": "@pivot-center", "parent": "@pivot-back", "x": -215.11, "y": -5.25, "color": "ff0101ff"}, + {"name": "@axie", "parent": "@pivot-center", "length": 213.28, "rotation": 179.04, "x": 196.39, "y": 5.16}, {"name": "@back", "parent": "@axie", "rotation": -179.04, "x": 37.63, "y": -198.19}, + {"name": "back", "parent": "@back", "length": 149.41, "rotation": 73, "x": -120.97, "y": 65.3, "transform": "noScale"}, + {"name": "@body", "parent": "@axie", "length": 226.28, "rotation": -8.35, "x": 224.58, "y": -0.53}, {"name": "@ear-left", "parent": "@axie", "rotation": -179.04, "x": 112.7, "y": -203.23}, + {"name": "ear-left", "parent": "@ear-left", "length": 113.61, "rotation": -90, "x": 28, "y": -3, "transform": "noScale"}, + {"name": "@ear-right", "parent": "@axie", "rotation": -179.04, "x": 405.28, "y": -235.33}, + {"name": "ear-right", "parent": "@ear-right", "length": 119.39, "rotation": -90, "x": -91, "y": -56, "transform": "noScale"}, + {"name": "@eyes", "parent": "@axie", "rotation": -179.04, "x": 384.24, "y": -113.67}, {"name": "@horn", "parent": "@axie", "rotation": -179.04, "x": 327.92, "y": -214.63}, + {"name": "horn", "parent": "@horn", "length": 176.72, "rotation": 90, "y": 18, "transform": "noScale"}, + {"name": "@leg-back-left", "parent": "@axie", "length": 76.4, "rotation": 100.96, "x": -15.3, "y": 102.56, "transform": "noScale"}, + {"name": "@leg-front-left", "parent": "@axie", "length": 51.19, "rotation": 93.86, "x": 134.77, "y": 149.55, "transform": "noScale"}, + {"name": "@leg-front-right", "parent": "@axie", "length": 74.83, "rotation": 83.2, "x": 382.95, "y": 121.78, "transform": "noScale"}, + {"name": "@mouth", "parent": "@axie", "rotation": -179.04, "x": 382.23, "y": 6.31}, + {"name": "body-pattern", "parent": "@body", "rotation": -170.69, "x": -267.21, "y": -49.4, "transform": "noScale"}, {"name": "@shadow", "parent": "@root", "color": "e6d713ff"}, + {"name": "@tail", "parent": "@axie", "rotation": -179.04, "x": -11.76, "y": 61.72}, + {"name": "tail", "parent": "@tail", "length": 203.67, "rotation": -12, "x": 35, "y": 3, "transform": "noScale"}, + {"name": "leg-front-right-IK", "parent": "@pivot-main", "x": -195.99, "y": -10.21, "color": "ff3f00ff"}, + {"name": "leg-front-left-IK", "parent": "@pivot-main", "x": 42.3, "y": -18.42, "color": "ff3f00ff"}, + {"name": "leg-back-left-IK", "parent": "@pivot-main", "x": 208.57, "y": 1.35, "color": "ff3f00ff"}, {"name": "@ball", "parent": "@root", "y": 191, "color": "f3981bff"}, + {"name": "ball", "parent": "@ball", "y": -191, "color": "f4a729ff"} + ], + "slots": [ + {"name": "shadow", "bone": "@shadow", "attachment": "shadow"}, {"name": "ball", "bone": "ball"}, {"name": "leg-front-right", "bone": "@leg-front-right", "attachment": "leg-front-right"}, + {"name": "ear-right", "bone": "ear-right", "attachment": "ear-right"}, {"name": "tail", "bone": "tail", "attachment": "tail"}, {"name": "back", "bone": "back", "attachment": "back"}, + {"name": "leg-back-left", "bone": "@leg-back-left", "attachment": "leg-back-left"}, {"name": "body", "bone": "@body", "attachment": "body"}, {"name": "body-pattern", "bone": "body-pattern"}, + {"name": "leg-front-left", "bone": "@leg-front-left", "attachment": "leg-front-left"}, {"name": "eyes", "bone": "@eyes", "attachment": "eyes"}, + {"name": "mouth", "bone": "@mouth", "attachment": "mouth"}, {"name": "ear-left", "bone": "ear-left", "attachment": "ear-left"}, {"name": "horn", "bone": "horn", "attachment": "horn"} + ], + "ik": [ + {"name": "leg-back-left-IK", "order": 2, "bones": ["@leg-back-left"], "target": "leg-back-left-IK"}, + {"name": "leg-front-left-IK", "order": 1, "bones": ["@leg-front-left"], "target": "leg-front-left-IK"}, + {"name": "leg-front-right-IK", "bones": ["@leg-front-right"], "target": "leg-front-right-IK"} + ], + "skins": [ + { + "name": "default", + "attachments": { + "back": {"back": {"x": 150.76764705882354, "y": -10.160588235294115, "rotation": -73, "width": 371.7647058823529, "height": 352.94117647058823, "path": "japan-01.back"}}, + "ear-left": {"ear-left": {"x": 44.30176470588235, "y": 3.610588235294116, "rotation": 90, "width": 181.1764705882353, "height": 287.05882352941177, "path": "japan-01.ear-left"}}, + "ear-right": {"ear-right": {"x": 24.831176470588233, "y": -3.330588235294116, "rotation": 90, "width": 134.11764705882354, "height": 272.94117647058823, "path": "japan-01.ear-right"}}, + "eyes": { + "eyes": {"x": 42.963529411764696, "y": 21.168823529411767, "width": 362.3529411764706, "height": 145.88235294117646, "path": "japan-01.eyes"}, + "eyes-angry": {"x": 42.14, "y": 23.815882352941173, "width": 360.0, "height": 150.58823529411765, "path": "japan-01.eyes-angry"}, + "eyes-happy": {"x": 42.963529411764696, "y": 33.580588235294115, "width": 362.3529411764706, "height": 127.05882352941177, "path": "japan-01.eyes-happy"}, + "eyes-shut": {"x": 42.963529411764696, "y": 31.22764705882352, "width": 362.3529411764706, "height": 131.76470588235296, "path": "japan-01.eyes-shut"} + }, + "horn": {"horn": {"x": 95.46294117647058, "y": 2.4482352941176377, "rotation": -90, "width": 195.29411764705884, "height": 218.82352941176472, "path": "japan-01.horn"}}, + "mouth": { + "mouth": {"x": 15.022352941176464, "y": 38.63941176470588, "width": 148.23529411764707, "height": 112.94117647058823, "path": "japan-01.mouth"}, + "mouth-bite": {"x": 26.257647058823537, "y": 46.75705882352941, "width": 331.7647058823529, "height": 84.70588235294117, "path": "japan-01.mouth-bite"}, + "mouth-open": {"x": 21.022352941176464, "y": 5.698235294117638, "width": 188.23529411764707, "height": 178.82352941176472, "path": "japan-01.mouth-open"}, + "mouth-smile": {"x": 17.669411764705885, "y": 38.34529411764706, "width": 152.94117647058823, "height": 63.529411764705884, "path": "japan-01.mouth-smile"} + }, + "tail": {"tail": {"x": 73.19588235294117, "y": 15.79647058823529, "rotation": 12, "width": 230.58823529411765, "height": 157.64705882352942, "path": "japan-01.tail"}} + } + } + ], + "events": {"hit": {}, "hit-buff": {}, "jump": {}, "start-attack": {}}, + "keyAnimations": { + "activity/appear": "1023093953", + "activity/bath": "3305387968", + "attack/ranged/cast-fly": "4180526371", + "attack/ranged/cast-high": "164191126", + "attack/ranged/cast-low": "198813017", + "attack/ranged/cast-multi": "151119", + "attack/ranged/cast-tail": "997902532", + "activity/eat-bite": "1137807767", + "activity/eat-chew": "1988236421", + "activity/entrance": "3768378365", + "defense/evade": "1735454995", + "activity/evolve": "649307630", + "battle/get-buff": "1455190363", + "battle/get-debuff": "606904312", + "defense/hit-by-normal": "2045974966", + "defense/hit-by-normal-crit": "2130010601", + "defense/hit-by-normal-dramatic": "3823092125", + "defense/hit-by-ranged-attack": "2224561612", + "defense/hit-with-shield": "390714790", + "attack/melee/horn-gore": "1327954218", + "attack/melee/mouth-bite": "2237748264", + "action/move-back": "3766271173", + "action/move-forward": "2945160014", + "attack/melee/multi-attack": "905926802", + "action/idle/normal": "1659336865", + "attack/melee/normal-attack": "3305373483", + "activity/prepare": "405864717", + "action/idle/random-01": "554401889", + "action/idle/random-02": "1085666627", + "action/idle/random-03": "2021333900", + "action/idle/random-04": "1003789695", + "action/idle/random-05": "2745614147", + "action/run": "1438840721", + "draft/run-origin": "3577885069", + "attack/melee/shrimp": "3833448733", + "activity/sleep": "100562494", + "attack/melee/tail-multi-slap": "3317139533", + "attack/melee/tail-roll": "3108617565", + "attack/melee/tail-smash": "519942130", + "attack/melee/tail-thrash": "628713175", + "activity/victory-pose-back-flip": "2227634241" + } + }, + "bug-mystic-02": { + "bones": [ + {"name": "@root"}, {"name": "@pivot-main", "parent": "@root"}, {"name": "@pivot-back", "parent": "@pivot-main", "x": 205, "y": 180, "color": "ff0101ff"}, + {"name": "@pivot-center", "parent": "@pivot-back", "x": -215.11, "y": -5.25, "color": "ff0101ff"}, + {"name": "@axie", "parent": "@pivot-center", "length": 213.28, "rotation": 179.04, "x": 196.39, "y": 5.16}, {"name": "@back", "parent": "@axie", "rotation": -179.04, "x": 37.63, "y": -198.19}, + {"name": "back", "parent": "@back", "length": 149.41, "rotation": 60, "x": -96.97, "y": 79.3, "transform": "noScale"}, + {"name": "@body", "parent": "@axie", "length": 226.28, "rotation": -8.35, "x": 224.58, "y": -0.53}, {"name": "@ear-left", "parent": "@axie", "rotation": -179.04, "x": 112.7, "y": -203.23}, + {"name": "ear-left", "parent": "@ear-left", "length": 113.61, "rotation": 88, "x": -34, "y": 65, "transform": "noScale"}, + {"name": "@ear-right", "parent": "@axie", "rotation": -179.04, "x": 405.28, "y": -235.33}, + {"name": "ear-right", "parent": "@ear-right", "length": 119.39, "rotation": 94, "x": -15, "y": 18, "transform": "noScale"}, + {"name": "@eyes", "parent": "@axie", "rotation": -179.04, "x": 384.24, "y": -113.67}, {"name": "@horn", "parent": "@axie", "rotation": -179.04, "x": 327.92, "y": -214.63}, + {"name": "horn", "parent": "@horn", "length": 176.72, "rotation": 90, "y": 52, "transform": "noScale"}, + {"name": "@leg-back-left", "parent": "@axie", "length": 76.4, "rotation": 100.96, "x": -15.3, "y": 102.56, "transform": "noScale"}, + {"name": "@leg-front-left", "parent": "@axie", "length": 51.19, "rotation": 93.86, "x": 134.77, "y": 149.55, "transform": "noScale"}, + {"name": "@leg-front-right", "parent": "@axie", "length": 74.83, "rotation": 83.2, "x": 382.95, "y": 121.78, "transform": "noScale"}, + {"name": "@mouth", "parent": "@axie", "rotation": -179.04, "x": 382.23, "y": 6.31}, + {"name": "body-class", "parent": "@body", "rotation": -170.69, "x": -286.29, "y": -103.48, "transform": "noScale"}, {"name": "@shadow", "parent": "@root", "color": "e6d713ff"}, + {"name": "@tail", "parent": "@axie", "rotation": -179.04, "x": -11.76, "y": 61.72}, + {"name": "tail", "parent": "@tail", "length": 203.67, "rotation": -25, "x": 50, "y": 57, "transform": "noScale"}, + {"name": "leg-front-right-IK", "parent": "@pivot-main", "x": -195.99, "y": -10.21, "color": "ff3f00ff"}, + {"name": "leg-front-left-IK", "parent": "@pivot-main", "x": 42.3, "y": -18.42, "color": "ff3f00ff"}, + {"name": "leg-back-left-IK", "parent": "@pivot-main", "x": 208.57, "y": 1.35, "color": "ff3f00ff"}, {"name": "@ball", "parent": "@root", "y": 191, "color": "f3981bff"}, + {"name": "ball", "parent": "@ball", "y": -191, "color": "f4a729ff"}, {"name": "body-id", "parent": "@body", "rotation": -170.69, "x": -290.82, "y": -75.84}, + {"name": "mouth-accessory", "parent": "@mouth", "x": 8.74, "y": 77.12}, {"name": "mouth-blink", "parent": "@mouth", "x": 80.68, "y": 82.83} + ], + "slots": [ + {"name": "shadow", "bone": "@shadow", "attachment": "shadow"}, {"name": "ball", "bone": "ball"}, + {"name": "leg-front-right", "bone": "@leg-front-right", "attachment": "mystic-leg-front-right"}, {"name": "ear-right", "bone": "ear-right", "attachment": "ear-right"}, + {"name": "tail", "bone": "tail", "attachment": "tail"}, {"name": "back", "bone": "back", "attachment": "back"}, + {"name": "leg-back-left", "bone": "@leg-back-left", "attachment": "mystic-leg-back-left"}, {"name": "body", "bone": "@body", "attachment": "body-mystic"}, + {"name": "body-class", "bone": "body-class", "attachment": "body-class-aquatic"}, {"name": "leg-front-left", "bone": "@leg-front-left", "attachment": "mystic-leg-front-left"}, + {"name": "eyes", "bone": "@eyes", "attachment": "eyes"}, {"name": "mouth", "bone": "@mouth", "attachment": "mouth"}, {"name": "ear-left", "bone": "ear-left", "attachment": "ear-left"}, + {"name": "horn", "bone": "horn", "attachment": "horn"}, {"name": "body-id", "bone": "body-id", "attachment": "body-id"}, {"name": "mouth-accessory", "bone": "mouth-accessory"}, + {"name": "mouth-blink", "bone": "mouth-blink"} + ], + "ik": [ + {"name": "leg-back-left-IK", "order": 2, "bones": ["@leg-back-left"], "target": "leg-back-left-IK"}, + {"name": "leg-front-left-IK", "order": 1, "bones": ["@leg-front-left"], "target": "leg-front-left-IK"}, + {"name": "leg-front-right-IK", "bones": ["@leg-front-right"], "target": "leg-front-right-IK"} + ], + "skins": [ + { + "name": "default", + "attachments": { + "back": {"back": {"x": 71.3635294117647, "y": -2.055882352941174, "rotation": -60, "width": 242.3529411764706, "height": 209.41176470588235, "path": "bug-mystic-02.back"}}, + "ear-left": {"ear-left": {"x": -17.412941176470593, "y": -38.3364705882353, "rotation": -88, "width": 164.7058823529412, "height": 282.3529411764706, "path": "bug-mystic-02.ear-left"}}, + "ear-right": { + "ear-right": {"x": 45.33529411764706, "y": -0.6594117647058839, "rotation": -94, "width": 103.52941176470588, "height": 167.05882352941177, "path": "bug-mystic-02.ear-right"} + }, + "eyes": { + "eyes": {"x": 35.00941176470588, "y": 30.95294117647058, "width": 352.94117647058823, "height": 155.29411764705884, "path": "bug-mystic-02.eyes"}, + "eyes-angry": {"x": 35.00941176470588, "y": 30.95294117647058, "width": 352.94117647058823, "height": 155.29411764705884, "path": "bug-mystic-02.eyes-angry"}, + "eyes-happy": {"x": 35.00941176470588, "y": 30.95294117647058, "width": 352.94117647058823, "height": 155.29411764705884, "path": "bug-mystic-02.eyes-happy"}, + "eyes-shut": {"x": 35.00941176470588, "y": 30.95294117647058, "width": 352.94117647058823, "height": 155.29411764705884, "path": "bug-mystic-02.eyes-shut"} + }, + "horn": {"horn": {"x": 113.7470588235294, "y": -18.156470588235305, "rotation": -90, "width": 244.7058823529412, "height": 242.3529411764706, "path": "bug-mystic-02.horn"}}, + "mouth": { + "mouth": {"x": -34.931764705882365, "y": 59.36470588235294, "width": 178.82352941176472, "height": 136.47058823529412, "path": "bug-mystic-02.mouth"}, + "mouth-bite": {"x": -77.28470588235295, "y": 53.482352941176465, "width": 263.5294117647059, "height": 148.23529411764707, "path": "bug-mystic-02.mouth-bite"}, + "mouth-open": {"x": 0.5388235294117609, "y": 73.54117647058823, "width": 105.88235294117648, "height": 134.11764705882354, "path": "bug-mystic-02.mouth-open"}, + "mouth-smile": {"x": -39.63764705882354, "y": 67.6, "width": 188.23529411764707, "height": 120.0, "path": "bug-mystic-02.mouth-smile"} + }, + "mouth-accessory": { + "mouth-accessory": {"x": -52.50352941176471, "y": 4.56647058823529, "width": 117.64705882352942, "height": 117.64705882352942, "path": "bug-mystic-02.mouth-accessory"} + }, + "mouth-blink": { + "mouth-smile-blink": {"x": 0.732941176470587, "y": -0.9670588235294131, "width": 35.294117647058826, "height": 35.294117647058826, "path": "bug-mystic-02.mouth-smile-blink"} + }, + "tail": {"tail": {"x": 68.92058823529412, "y": 11.34352941176471, "rotation": 25, "width": 207.05882352941177, "height": 202.35294117647058, "path": "bug-mystic-02.tail"}} + } + } + ], + "events": {"hit": {}, "hit-buff": {}, "jump": {}, "start-attack": {}}, + "keyAnimations": { + "activity/appear": "1023093953", + "activity/bath": "3305387968", + "attack/ranged/cast-fly": "4180526371", + "attack/ranged/cast-high": "164191126", + "attack/ranged/cast-low": "198813017", + "attack/ranged/cast-multi": "151119", + "attack/ranged/cast-tail": "3899988824", + "activity/eat-bite": "1137807767", + "activity/eat-chew": "1988236421", + "activity/entrance": "3768378365", + "defense/evade": "1735454995", + "activity/evolve": "649307630", + "battle/get-buff": "1455190363", + "battle/get-debuff": "606904312", + "defense/hit-by-normal": "2045974966", + "defense/hit-by-normal-crit": "2130010601", + "defense/hit-by-normal-dramatic": "3823092125", + "defense/hit-by-ranged-attack": "2224561612", + "defense/hit-with-shield": "390714790", + "attack/melee/horn-gore": "1327954218", + "attack/melee/mouth-bite": "2237748264", + "action/move-back": "3766271173", + "action/move-forward": "2945160014", + "attack/melee/multi-attack": "3861365989", + "action/idle/normal": "2717938682", + "attack/melee/normal-attack": "3305373483", + "activity/prepare": "405864717", + "action/idle/random-01": "554401889", + "action/idle/random-02": "3888196768", + "action/idle/random-03": "2021333900", + "action/idle/random-04": "1003789695", + "action/idle/random-05": "2745614147", + "action/run": "3858829480", + "draft/run-origin": "3947527336", + "attack/melee/shrimp": "3833448733", + "activity/sleep": "100562494", + "attack/melee/tail-multi-slap": "3317139533", + "attack/melee/tail-roll": "3108617565", + "attack/melee/tail-smash": "519942130", + "attack/melee/tail-thrash": "628713175", + "activity/victory-pose-back-flip": "2227634241" + } + }, + "body-wetdog": { + "bones": [ + {"name": "@root"}, {"name": "@pivot-main", "parent": "@root"}, {"name": "@pivot-back", "parent": "@pivot-main", "x": 205, "y": 180, "color": "ff0101ff"}, + {"name": "@pivot-center", "parent": "@pivot-back", "x": -215.11, "y": -5.25, "color": "ff0101ff"}, + {"name": "@axie", "parent": "@pivot-center", "length": 213.28, "rotation": 179.04, "x": 196.39, "y": 5.16}, {"name": "@back", "parent": "@axie", "rotation": -179.04, "x": 28.05, "y": -224.65}, + {"name": "@body", "parent": "@axie", "length": 226.28, "rotation": -8.35, "x": 224.58, "y": -0.53}, {"name": "@ear-left", "parent": "@axie", "rotation": -179.04, "x": 112.7, "y": -203.23}, + {"name": "@ear-right", "parent": "@axie", "rotation": -179.04, "x": 405.28, "y": -235.33}, {"name": "@eyes", "parent": "@axie", "rotation": -179.04, "x": 384.24, "y": -113.67}, + {"name": "@horn", "parent": "@axie", "rotation": -179.04, "x": 327.92, "y": -214.63}, + {"name": "@leg-back-left", "parent": "@axie", "length": 76.4, "rotation": 100.96, "x": -15.3, "y": 102.56, "transform": "noScale"}, + {"name": "@leg-front-left", "parent": "@axie", "length": 51.19, "rotation": 93.86, "x": 134.77, "y": 149.55, "transform": "noScale"}, + {"name": "@leg-front-right", "parent": "@axie", "length": 74.83, "rotation": 83.2, "x": 382.95, "y": 121.78, "transform": "noScale"}, + {"name": "@mouth", "parent": "@axie", "rotation": -179.04, "x": 382.23, "y": 6.31}, + {"name": "body-pattern", "parent": "@body", "rotation": -170.69, "x": -267.21, "y": -49.4, "transform": "noScale"}, {"name": "@shadow", "parent": "@root", "color": "e6d713ff"}, + {"name": "@tail", "parent": "@axie", "rotation": -179.04, "x": -11.76, "y": 61.72}, {"name": "leg-front-right-IK", "parent": "@pivot-main", "x": -195.99, "y": -10.21, "color": "ff3f00ff"}, + {"name": "leg-front-left-IK", "parent": "@pivot-main", "x": 42.3, "y": -18.42, "color": "ff3f00ff"}, + {"name": "leg-back-left-IK", "parent": "@pivot-main", "x": 208.57, "y": 1.35, "color": "ff3f00ff"}, {"name": "@ball", "parent": "@root", "y": 191, "color": "f3981bff"}, + {"name": "ball", "parent": "@ball", "y": -191, "color": "f4a729ff"}, + {"name": "body-braid-01", "parent": "@body", "length": 52.53, "rotation": 141.89, "x": -213.99, "y": -204.31, "color": "b041ffff"}, + {"name": "body-braid-02", "parent": "body-braid-01", "length": 42.74, "rotation": -30.07, "x": 55.42, "y": -1.8, "color": "b041ffff"}, + {"name": "body-braid-03", "parent": "body-braid-02", "length": 39.84, "rotation": -6.19, "x": 42.77, "y": -2.26, "color": "b041ffff"}, + {"name": "body-braid-04", "parent": "body-braid-03", "length": 38.01, "rotation": 7.31, "x": 39.84, "color": "b041ffff"}, + {"name": "body-braid-05", "parent": "body-braid-04", "length": 35.42, "rotation": 20.92, "x": 38.01, "color": "b041ffff"}, + {"name": "body-braid-06", "parent": "body-braid-05", "length": 47.15, "rotation": 23.46, "x": 35.42, "color": "b041ffff"}, + {"name": "body-fur-under-01", "parent": "@body", "length": 131.33, "rotation": 64.26, "x": 276.01, "y": 46.09, "color": "b041ffff"}, + {"name": "body-fur-under-02", "parent": "@body", "length": 131.33, "rotation": 83.88, "x": 151.54, "y": 62.34, "color": "b041ffff"}, + {"name": "body-fur-under-03", "parent": "@body", "length": 131.33, "rotation": 93.92, "x": -23.49, "y": 40.75, "color": "b041ffff"}, + {"name": "body-fur-under-04", "parent": "@body", "length": 131.33, "rotation": 109.83, "x": -179.56, "y": 4.52, "color": "b041ffff"}, + {"name": "body-fur-under-05", "parent": "@body", "length": 131.33, "rotation": 123.07, "x": -279.3, "y": -57.95, "color": "b041ffff"}, + {"name": "@body-neck", "parent": "@pivot-center", "x": -161.89, "y": -53.75, "color": "ff0101ff"}, + {"name": "@body-ground", "parent": "@pivot-main", "x": 220, "transform": "noRotationOrReflection", "color": "ff0101ff"}, + {"name": "@body-air", "parent": "@pivot-back", "x": 63, "y": 365, "transform": "noRotationOrReflection", "color": "ff0101ff"}, + {"name": "@body-cheek", "parent": "@pivot-center", "x": 15.11, "y": 47.25, "color": "ff0101ff"} + ], + "slots": [ + {"name": "shadow", "bone": "@shadow", "attachment": "shadow"}, {"name": "ball", "bone": "ball"}, {"name": "leg-front-right", "bone": "@leg-front-right", "attachment": "leg-front-right"}, + {"name": "leg-back-left", "bone": "@leg-back-left", "attachment": "leg-back-left"}, {"name": "leg-front-left", "bone": "@leg-front-left", "attachment": "leg-front-left"}, + {"name": "body", "bone": "@body", "attachment": "body-wetdog"}, {"name": "body-braid", "bone": "body-braid-01", "attachment": "body-braid"}, {"name": "body-pattern", "bone": "body-pattern"}, + {"name": "body-neck", "bone": "@body-neck", "attachment": "body-neck"}, {"name": "body-ground", "bone": "@body-ground", "attachment": "body-ground"}, + {"name": "body-air", "bone": "@body-air", "attachment": "body-air"}, {"name": "body-cheek", "bone": "@body-cheek", "attachment": "body-cheek"} + ], + "ik": [ + {"name": "leg-back-left-IK", "order": 2, "bones": ["@leg-back-left"], "target": "leg-back-left-IK"}, + {"name": "leg-front-left-IK", "order": 1, "bones": ["@leg-front-left"], "target": "leg-front-left-IK"}, + {"name": "leg-front-right-IK", "bones": ["@leg-front-right"], "target": "leg-front-right-IK"} + ], + "skins": [ + { + "name": "default", + "attachments": { + "ball": {"ball": {"y": 186.0, "width": 392.94117647058823, "height": 400.0, "path": "body-normal.ball", "x": 0.029411764705884025}}, + "body": { + "body-wetdog": { + "type": "mesh", + "uvs": [ + 0.43373, 0.03433, 0.46025, 0.05124, 0.52589, 0.04748, 0.54847, 0.05071, 0.59165, 0.05688, 0.69243, 0.07129, 0.8533, 0.23996, 0.95949, 0.45811, 0.97748, 0.53693, 1, 0.63561, 1, + 0.76547, 0.94839, 0.84291, 0.89214, 0.89576, 0.81612, 0.96719, 0.67809, 0.99999, 0.53203, 0.99999, 0.36629, 1, 0.24505, 0.98657, 0.09399, 0.90358, 0.044, 0.8109, 0, 0.72933, 0, + 0.68377, 0, 0.6152, 0, 0.53806, 0, 0.49446, 0.13665, 0.2372, 0.25549, 0.11844, 0.28775, 0.11083, 0.32137, 0.10291, 0.31091, 0.06815, 0.32068, 0.02869, 0.3444, 0, 0.36604, 0, 0.38628, + 0, 0.40651, 0, 0.35627, 0.11512, 0.38348, 0.1217, 0.43443, 0.12076, 0.48328, 0.09351, 0.37371, 0.02211, 0.37511, 0.04842, 0.38907, 0.07566, 0.41838, 0.09539, 0.45888, 0.10712, + 0.34999, 0.02775, 0.3444, 0.06533, 0.36185, 0.09069, 0.38697, 0.10385, 0.39954, 0.03245, 0.4114, 0.05875, 0.43652, 0.07754, 0.19268, 0.55542, 0.40411, 0.58856, 0.63735, 0.5859, + 0.83303, 0.57101, 0.23757, 0.31562, 0.41715, 0.33706, 0.64596, 0.33511, 0.34329, 0.17135, 0.47363, 0.1772, 0.60396, 0.17135, 0.52431, 0.13626, 0.34744, 0.14662, 0.45282, 0.15011, + 0.51686, 0.10921, 0.30251, 0.57263, 0.72235, 0.57943, 0.89353, 0.51699, 0.78194, 0.5749, 0.13023, 0.53566, 0.52019, 0.58724, 0.11045, 0.59882, 0.17099, 0.63193, 0.28973, 0.6647, + 0.39517, 0.68586, 0.52345, 0.70081, 0.64762, 0.69029, 0.74552, 0.67525, 0.80696, 0.64776, 0.85462, 0.62191, 0.92102, 0.58115, 0.08026, 0.69517, 0.14286, 0.73117, 0.27488, 0.77171, + 0.38623, 0.78306, 0.52606, 0.79195, 0.65634, 0.77896, 0.76511, 0.75627, 0.835, 0.72939, 0.88224, 0.68701, 0.94325, 0.63301, 0.96857, 0.69213, 0.90539, 0.74156, 0.85305, 0.78195, + 0.78123, 0.82294, 0.66563, 0.87331, 0.52875, 0.88584, 0.37663, 0.88751, 0.26169, 0.86671, 0.11794, 0.81908, 0.06621, 0.74004 + ], + "triangles": [ + 100, 20, 21, 99, 100, 82, 17, 98, 16, 17, 18, 98, 98, 18, 99, 18, 19, 99, 19, 100, 99, 19, 20, 100, 13, 14, 95, 12, 93, 11, 93, 92, 11, 11, 92, 10, 94, 88, 93, 93, 88, 92, 92, 91, + 10, 91, 9, 10, 88, 89, 92, 92, 89, 91, 89, 90, 91, 91, 90, 9, 13, 95, 94, 12, 94, 93, 12, 13, 94, 81, 21, 22, 90, 8, 9, 16, 98, 97, 99, 82, 98, 100, 81, 82, 15, 97, 96, 15, 16, 97, + 15, 96, 95, 94, 95, 86, 15, 95, 14, 89, 78, 79, 89, 88, 78, 89, 80, 90, 89, 79, 80, 94, 87, 88, 79, 54, 67, 23, 24, 69, 76, 53, 66, 77, 66, 68, 53, 57, 66, 6, 68, 57, 74, 52, 75, 52, + 70, 75, 75, 70, 53, 73, 65, 74, 74, 65, 52, 72, 51, 73, 73, 51, 65, 72, 69, 51, 70, 52, 56, 57, 53, 70, 56, 52, 65, 57, 70, 56, 51, 55, 65, 65, 55, 56, 51, 69, 55, 69, 25, 55, 69, + 24, 25, 57, 59, 60, 57, 56, 59, 55, 58, 56, 56, 58, 59, 57, 5, 6, 57, 60, 5, 55, 26, 58, 55, 25, 26, 59, 61, 60, 58, 63, 59, 59, 63, 61, 61, 4, 60, 60, 4, 5, 58, 62, 63, 26, 27, 58, + 58, 27, 62, 63, 62, 36, 62, 35, 36, 36, 37, 63, 64, 63, 38, 64, 61, 63, 63, 43, 38, 63, 37, 43, 27, 28, 62, 62, 28, 35, 61, 3, 4, 61, 64, 3, 36, 47, 37, 47, 36, 46, 47, 42, 37, 37, + 42, 43, 36, 35, 46, 35, 28, 46, 64, 2, 3, 64, 38, 2, 42, 50, 43, 43, 50, 38, 47, 41, 42, 47, 46, 41, 28, 45, 46, 28, 29, 45, 41, 49, 42, 42, 49, 50, 50, 1, 38, 38, 1, 2, 46, 40, 41, + 46, 45, 40, 49, 0, 50, 50, 0, 1, 41, 48, 49, 41, 40, 48, 29, 30, 45, 45, 44, 40, 45, 30, 44, 49, 48, 0, 44, 39, 40, 40, 39, 48, 48, 34, 0, 39, 33, 48, 48, 33, 34, 30, 31, 44, 44, 32, + 39, 44, 31, 32, 39, 32, 33, 66, 57, 68, 6, 67, 68, 67, 6, 7, 67, 54, 68, 67, 7, 8, 87, 78, 88, 78, 68, 54, 90, 80, 8, 80, 79, 67, 80, 67, 8, 77, 68, 78, 94, 86, 87, 86, 77, 87, 86, + 76, 77, 87, 77, 78, 76, 66, 77, 96, 84, 85, 96, 97, 84, 96, 86, 95, 96, 85, 86, 85, 84, 75, 84, 74, 75, 85, 76, 86, 85, 75, 76, 75, 53, 76, 98, 83, 97, 97, 83, 84, 98, 82, 83, 83, + 73, 84, 84, 73, 74, 83, 72, 73, 82, 72, 83, 82, 81, 72, 72, 81, 71, 71, 81, 22, 71, 69, 72, 22, 23, 71, 71, 23, 69, 78, 54, 79, 81, 100, 21 + ], + "vertices": [ + 1, 6, 100.76, -345.56, 1, 1, 6, 78.17, -339.06, 1, 1, 6, 26.65, -349.78, 1, 1, 6, 8.49, -350.81, 1, 1, 6, -26.24, -352.78, 1, 1, 6, -107.29, -357.38, 1, 2, 33, -181.15, 130.18, + 0.056, 6, -250.68, -279.18, 0.944, 6, 29, -374.38, 550.71, 0.00358, 30, -192.35, 521.37, 0.00958, 31, -119.69, 371.83, 0.02431, 32, -59.36, 236.98, 0.06036, 33, -25.97, 128.75, + 0.21499, 6, -355.61, -164.85, 0.68717, 6, 29, -338, 583.62, 0.00544, 30, -147.03, 540.15, 0.01486, 31, -71.79, 382.42, 0.03789, 32, -10.39, 234.03, 0.09418, 33, 21.02, 114.67, + 0.30206, 6, -377.42, -120.91, 0.54557, 6, 29, -292.45, 624.83, 0.00757, 30, -90.28, 563.67, 0.01998, 31, -11.81, 395.69, 0.04934, 32, 50.93, 230.35, 0.1192, 33, 79.86, 97.04, + 0.35648, 6, -404.72, -65.89, 0.44743, 6, 29, -222.45, 657.55, 0.01066, 30, -13.36, 570.98, 0.0254, 31, 65.21, 389.49, 0.05834, 32, 123.29, 203.27, 0.13248, 33, 144.1, 54.1, 0.37042, + 6, -417.22, 10.36, 0.4027, 6, 29, -163.2, 639.6, 0.0184, 30, 36.42, 534.18, 0.03643, 31, 107.82, 344.58, 0.07276, 32, 151.96, 148.39, 0.1447, 33, 159.43, -5.88, 0.35565, 6, -383.88, + 62.53, 0.37206, 6, 29, -115.64, 612.1, 0.03279, 30, 71.99, 492.31, 0.05321, 31, 135.54, 297.14, 0.09104, 32, 165.61, 95.18, 0.15378, 33, 160.53, -60.81, 0.31728, 6, -344.51, 100.84, + 0.3519, 6, 29, -51.35, 574.93, 0.05621, 30, 120.06, 435.7, 0.0746, 31, 173.01, 233.03, 0.10954, 32, 184.07, 23.25, 0.15636, 33, 162.02, -135.06, 0.26294, 6, -291.29, 152.64, 0.34034, + 6, 29, 13.14, 483.04, 0.0907, 30, 149.95, 327.49, 0.09813, 31, 183.59, 121.26, 0.1237, 32, 163.6, -87.14, 0.14975, 33, 116.81, -237.81, 0.20196, 6, -185.35, 189.78, 0.33575, 6, 29, + 62.68, 377.04, 0.13647, 30, 161.02, 211.02, 0.12045, 31, 174.19, 4.64, 0.12971, 32, 122.58, -196.71, 0.13358, 33, 51.79, -335.08, 0.14341, 6, -69.89, 208.71, 0.33638, 6, 29, 118.9, + 256.78, 0.19026, 30, 173.58, 78.86, 0.13835, 31, 163.54, -127.68, 0.12616, 32, 76.06, -321.04, 0.11034, 33, -21.98, -445.45, 0.09403, 6, 61.11, 230.19, 0.34086, 6, 29, 152.78, + 165.42, 0.24514, 30, 174.82, -18.58, 0.15003, 31, 147.77, -223.84, 0.11485, 32, 34.53, -409.2, 0.08465, 33, -82.6, -521.75, 0.05708, 6, 158.24, 238.02, 0.34825, 6, 29, 159.28, 34.89, + 0.29208, 30, 137.1, -143.7, 0.15565, 31, 88.84, -340.48, 0.10007, 32, -54.13, -505.21, 0.06154, 33, -190.89, -594.9, 0.03254, 6, 285.63, 208.86, 0.35812, 6, 29, 126.28, -24.73, + 0.32341, 30, 86, -188.78, 0.15679, 31, 30.66, -375.96, 0.08695, 32, -119.81, -523.38, 0.0449, 33, -258.98, -597.54, 0.01851, 6, 334.07, 160.92, 0.36944, 6, 29, 97.23, -77.21, + 0.33468, 30, 41.01, -228.46, 0.15536, 31, -20.56, -407.2, 0.07965, 32, -177.62, -539.38, 0.03698, 33, -318.93, -599.87, 0.01281, 6, 376.7, 118.73, 0.38052, 6, 29, 72.67, -88.69, + 0.31763, 30, 14.03, -231.03, 0.14565, 31, -47.58, -405.02, 0.07396, 32, -203.01, -529.87, 0.03373, 33, -341.46, -584.81, 0.0113, 6, 381.09, 91.98, 0.41772, 6, 29, 35.71, -105.96, + 0.27712, 30, -26.59, -234.89, 0.12623, 31, -88.24, -401.75, 0.06435, 32, -241.22, -515.57, 0.02932, 33, -375.38, -562.13, 0.00982, 6, 387.69, 51.71, 0.49316, 6, 29, -5.87, -125.4, + 0.21779, 30, -72.28, -239.23, 0.10099, 31, -134, -398.06, 0.05223, 32, -284.21, -499.48, 0.02416, 33, -413.54, -536.62, 0.00837, 6, 395.11, 6.42, 0.59646, 6, 29, -29.37, -136.38, + 0.13621, 30, -98.11, -241.68, 0.07001, 31, -159.85, -395.98, 0.03668, 32, -308.5, -490.39, 0.01729, 33, -435.11, -522.21, 0.0063, 6, 399.31, -19.18, 0.73351, 5, 30, -260.84, -147.2, + 0.02007, 31, -303.63, -274.58, 0.00891, 32, -413.49, -334.22, 0.00341, 33, -501.53, -346.14, 0.00092, 6, 316.06, -187.94, 0.9667, 1, 6, 233.55, -273.07, 1, 1, 6, 208.78, -281.72, 1, + 1, 6, 182.97, -290.73, 1, 1, 6, 194.59, -309.78, 1, 1, 6, 190.67, -334.22, 1, 1, 6, 174.67, -354.14, 1, 1, 6, 157.57, -356.94, 1, 1, 6, 141.57, -359.56, 1, 1, 6, 125.58, -362.18, 1, + 1, 6, 154.21, -288.08, 1, 1, 6, 132.07, -287.74, 1, 1, 6, 91.89, -294.9, 1, 1, 6, 55.89, -317.23, 1, 1, 6, 149.38, -344.95, 1, 1, 6, 145.74, -329.69, 1, 1, 6, 132.08, -315.5, 1, 1, + 6, 107.02, -307.71, 1, 1, 6, 73.88, -306.07, 1, 1, 6, 167.59, -338.57, 1, 1, 6, 168.38, -315.78, 1, 1, 6, 152.15, -303.14, 1, 1, 6, 131.03, -298.68, 1, 1, 6, 127.97, -342.23, 1, 1, + 6, 116.06, -328.32, 1, 1, 6, 94.39, -320.54, 1, 6, 29, -61.86, 18.79, 0.18579, 30, -76.6, -84.61, 0.09927, 31, -111.31, -245.05, 0.06618, 32, -220.43, -358.56, 0.04153, 33, -319.18, + -414.06, 0.02331, 6, 241.14, -8.36, 0.58393, 6, 29, -115.71, 180.57, 0.1272, 30, -72.99, 85.85, 0.09329, 31, -78.05, -77.83, 0.08686, 32, -142.6, -206.86, 0.07697, 33, -208.67, + -284.22, 0.07026, 6, 70.82, -16.29, 0.54541, 6, 29, -196.24, 349.15, 0.06095, 30, -92.24, 271.69, 0.06728, 31, -64.62, 108.52, 0.08685, 32, -78.59, -31.34, 0.10759, 33, -106.16, + -128.02, 0.15732, 6, -113.28, -48.08, 0.52001, 6, 29, -270.63, 487.39, 0.01272, 30, -115.89, 426.89, 0.02538, 31, -60.86, 265.46, 0.05167, 32, -31.95, 118.56, 0.10451, 33, -26.42, + 7.21, 0.27878, 6, -266.52, -82.18, 0.52694, 1, 6, 228.74, -154.97, 1, 1, 6, 84.73, -165.65, 1, 1, 6, -95.95, -196.45, 1, 1, 6, 159.06, -253.38, 1, 1, 6, 55.47, -266.84, 1, 1, 6, + -46.99, -287.16, 1, 1, 6, 19.35, -297.45, 1, 1, 6, 158.16, -268.44, 1, 1, 6, 74.52, -280.04, 1, 1, 6, 27.85, -312.36, 1, 6, 29, -89.83, 102.83, 0.16208, 30, -74.73, 3.94, 0.09945, + 31, -94.03, -158.18, 0.07813, 32, -180, -279.76, 0.05831, 33, -261.78, -346.61, 0.04179, 6, 152.67, -12.48, 0.56024, 6, 29, -228.56, 409.2, 0.03804, 30, -102.52, 339.1, 0.05161, 31, + -62.99, 176.69, 0.07779, 32, -58.33, 33.78, 0.11393, 33, -71.52, -69.28, 0.20794, 6, -179.85, -62.89, 0.5107, 6, 29, -320.27, 517.69, 0.00703, 30, -152.47, 472.09, 0.01663, 31, + -89.01, 316.35, 0.03863, 32, -45.06, 175.22, 0.08875, 33, -26.21, 65.36, 0.2733, 6, -309.15, -121.73, 0.57566, 6, 29, -251.21, 451.3, 0.02246, 30, -109.72, 386.37, 0.03715, 31, + -61.84, 224.49, 0.0652, 32, -44.13, 79.43, 0.11278, 33, -47.24, -28.1, 0.25229, 6, -226.51, -73.27, 0.51012, 6, 29, -51.33, -31.5, 0.18416, 30, -83.57, -135.52, 0.09112, 31, -127.04, + -293.97, 0.05275, 32, -248.98, -401.29, 0.02815, 33, -356.75, -449.11, 0.01247, 6, 292.4, -11.86, 0.63135, 6, 29, -155.79, 264.47, 0.09148, 30, -82.57, 178.34, 0.08197, 31, -71.36, + 14.92, 0.09013, 32, -110.74, -119.5, 0.09449, 33, -157.65, -206.48, 0.1095, 6, -20.81, -32.11, 0.53244, 6, 29, -10.58, -29.95, 0.22475, 30, -44.66, -147.74, 0.10758, 31, -90.85, + -312.78, 0.06071, 32, -219.34, -429.3, 0.03142, 33, -334.32, -483.17, 0.01307, 6, 301.96, 27.78, 0.56247, 6, 29, -13.26, 22.33, 0.21099, 30, -29.64, -97.6, 0.1111, 31, -67.32, + -266.03, 0.07274, 32, -183.89, -390.79, 0.04471, 33, -290.99, -453.8, 0.02388, 6, 250.92, 39.38, 0.53657, 6, 29, -35.87, 116.75, 0.17915, 30, -19.22, -1.07, 0.10946, 31, -40.25, + -172.79, 0.08519, 32, -132.28, -308.55, 0.06274, 33, -221.92, -385.56, 0.04307, 6, 153.91, 43.24, 0.52039, 6, 29, -60.22, 198.59, 0.13876, 30, -14.68, 84.2, 0.10203, 31, -20.91, + -89.62, 0.09465, 32, -90.89, -233.86, 0.08307, 33, -164.52, -322.35, 0.07296, 6, 68.53, 42, 0.50853, 6, 29, -95.67, 295.45, 0.09871, 30, -15.55, 187.33, 0.08925, 31, -3.8, 12.09, + 0.09811, 32, -46.54, -140.75, 0.10209, 33, -100.02, -241.87, 0.11433, 6, -34.31, 34.15, 0.4975, 6, 29, -143.46, 382.9, 0.06509, 30, -31.19, 285.75, 0.07288, 31, -2.05, 111.73, + 0.09424, 32, -17.54, -45.41, 0.1161, 33, -49.95, -155.7, 0.16493, 6, -131.45, 11.88, 0.48676, 6, 29, -184.77, 450.15, 0.04014, 30, -47.52, 362.97, 0.0555, 31, -4.67, 190.61, 0.08399, + 32, 1.56, 31.17, 0.12269, 33, -13.81, -85.53, 0.21886, 6, -207.38, -9.64, 0.47881, 6, 29, -220.42, 487.82, 0.02344, 30, -68.46, 410.42, 0.03968, 31, -17.02, 240.99, 0.07015, 32, 3.5, + 83, 0.12161, 33, -0.06, -35.53, 0.2673, 6, -253.31, -33.73, 0.47782, 6, 29, -250.52, 515.88, 0.01325, 30, -87.38, 446.97, 0.02724, 31, -29.29, 280.27, 0.05616, 32, 2.47, 124.15, + 0.1145, 33, 8.37, 4.76, 0.30051, 6, -288.49, -55.09, 0.48835, 6, 29, -295.02, 553.8, 0.00779, 30, -116.56, 497.62, 0.01905, 31, -49.19, 335.23, 0.0449, 32, -1.6, 182.46, 0.10413, 33, + 17.76, 62.45, 0.31103, 6, -337.05, -87.63, 0.5131, 6, 29, 51.6, -27.58, 0.27095, 30, 14.7, -166.38, 0.12874, 31, -35.65, -341.49, 0.07136, 32, -174.12, -472.04, 0.03633, 33, -300.09, + -535.13, 0.01457, 6, 316.55, 88.27, 0.47805, 6, 29, 49.77, 26.92, 0.24646, 30, 31.28, -114.44, 0.1295, 31, -10.28, -293.23, 0.08359, 32, -136.48, -432.59, 0.05083, 33, -254.42, + -505.34, 0.02633, 6, 263.6, 101.29, 0.46329, 6, 29, 26.85, 132.93, 0.20657, 30, 45.29, -6.89, 0.12601, 31, 22.26, -189.76, 0.09716, 32, -76.83, -342.01, 0.07107, 33, -175.6, -430.84, + 0.04738, 6, 155.35, 107.99, 0.45181, 6, 29, -4.8, 216.6, 0.15904, 30, 43.57, 82.55, 0.11679, 31, 36.16, -101.39, 0.10765, 32, -39.24, -260.84, 0.0939, 33, -120.42, -360.44, 0.07999, + 6, 66.23, 100.23, 0.44263, 6, 29, -47.43, 320.3, 0.11281, 30, 38.24, 194.55, 0.10181, 31, 50.43, 9.82, 0.11129, 32, 4.98, -157.8, 0.11499, 33, -53.77, -270.26, 0.12479, 6, -45.15, + 87.33, 0.43432, 6, 29, -98.62, 411.57, 0.07407, 30, 20.67, 297.7, 0.08283, 31, 51.1, 114.46, 0.10648, 32, 34.32, -57.35, 0.13012, 33, -2.2, -179.21, 0.17919, 6, -146.88, 62.82, + 0.42731, 6, 29, -147.74, 484.78, 0.04542, 30, -1.01, 383.16, 0.06279, 31, 44.64, 202.39, 0.09445, 32, 52.21, 28.97, 0.13686, 33, 34.99, -99.28, 0.23693, 6, -230.67, 35.4, 0.42354, 6, + 29, -185.94, 528.72, 0.02634, 30, -22.23, 437.37, 0.0447, 31, 33.19, 259.47, 0.07863, 32, 56.86, 87.01, 0.1354, 33, 52.8, -43.85, 0.28917, 6, -283.33, 10.56, 0.42575, 6, 29, -224.8, + 552.33, 0.01494, 30, -50.92, 472.66, 0.0309, 31, 11.1, 299.21, 0.06343, 32, 46.5, 131.29, 0.12851, 33, 52.86, 1.62, 0.32666, 6, -316.59, -20.45, 0.43556, 6, 29, -274.6, 582.99, + 0.0096, 30, -87.52, 518.27, 0.02314, 31, -17, 350.5, 0.05338, 32, 33.55, 188.31, 0.12096, 33, 53.31, 60.1, 0.34268, 6, -359.61, -60.05, 0.45024, 6, 29, -251.32, 616.26, 0.00993, 30, + -54.43, 541.79, 0.02422, 31, 19.69, 367.9, 0.05636, 32, 73.6, 194.99, 0.12908, 33, 93.83, 57.42, 0.36441, 6, -385.32, -28.63, 0.416, 6, 29, -203.24, 582.87, 0.01673, 30, -20.35, + 494.19, 0.03412, 31, 44.94, 315.09, 0.06934, 32, 83.41, 137.27, 0.13953, 33, 90.16, -1, 0.34766, 6, -340.14, 8.59, 0.39262, 6, 29, -163.72, 555.06, 0.02986, 30, 7.53, 454.73, + 0.04988, 31, 65.53, 271.37, 0.08667, 32, 91.22, 89.59, 0.14784, 33, 86.84, -49.21, 0.3086, 6, -302.66, 39.08, 0.37715, 6, 29, -117.27, 513.28, 0.05158, 30, 37.26, 399.77, 0.07024, + 31, 85.22, 212.07, 0.10448, 32, 93.9, 27.16, 0.15009, 33, 75.15, -110.59, 0.2542, 6, -249.83, 72.46, 0.36942, 6, 29, -50.91, 442.08, 0.08398, 30, 75.86, 310.42, 0.09275, 31, 107.66, + 117.37, 0.11812, 32, 89.51, -70.07, 0.14342, 33, 48.6, -204.23, 0.19367, 6, -163.3, 117.02, 0.36806, 6, 29, 2.26, 345.91, 0.12746, 30, 93.65, 201.98, 0.11409, 31, 106.28, 7.48, + 0.12379, 32, 58.06, -175.36, 0.12743, 33, -6.13, -299.52, 0.13611, 6, -56.32, 142.11, 0.37112, 6, 29, 54.76, 235.94, 0.17914, 30, 106.17, 80.77, 0.13108, 31, 97.49, -114.05, 0.12009, + 32, 16.27, -289.83, 0.10463, 33, -73.02, -401.37, 0.08814, 6, 63.77, 162.8, 0.37691, 6, 29, 82.53, 147.29, 0.23212, 30, 102.56, -12.06, 0.14191, 31, 77.75, -204.83, 0.10879, 32, + -27.59, -371.72, 0.07962, 33, -134.48, -471.03, 0.05274, 6, 156.63, 165.48, 0.38482, 6, 29, 105.61, 30.99, 0.2775, 30, 85.24, -129.36, 0.14673, 31, 40.26, -317.32, 0.09413, 32, + -94.49, -469.62, 0.05729, 33, -222.03, -551.01, 0.02959, 6, 274.84, 156.14, 0.39476, 6, 29, 80.55, -26.47, 0.30721, 30, 42.34, -175.07, 0.14727, 31, -9.94, -354.85, 0.08115, 32, + -153.06, -491.94, 0.04131, 33, -284.16, -559.32, 0.01655, 6, 323.34, 116.44, 0.40652 + ], + "hull": 35, + "edges": [ + 62, 60, 60, 58, 58, 56, 56, 70, 70, 72, 72, 74, 76, 2, 2, 0, 0, 68, 66, 68, 66, 78, 78, 80, 80, 82, 82, 84, 74, 86, 86, 76, 84, 86, 62, 64, 64, 66, 64, 88, 88, 90, 90, 92, 92, 94, + 94, 74, 68, 96, 96, 98, 98, 100, 100, 76, 2, 4, 10, 12, 12, 14, 52, 50, 50, 48, 36, 34, 34, 32, 30, 32, 28, 30, 28, 26, 18, 20, 22, 20, 50, 110, 110, 112, 112, 114, 114, 12, 52, 116, + 116, 118, 118, 120, 120, 10, 8, 10, 8, 122, 56, 54, 54, 52, 54, 124, 116, 126, 126, 122, 124, 126, 126, 128, 4, 6, 6, 8, 128, 6, 4, 76, 102, 130, 130, 104, 106, 132, 14, 134, 134, + 108, 108, 136, 136, 132, 22, 24, 24, 26, 48, 138, 138, 102, 36, 38, 38, 40, 104, 140, 140, 106, 46, 48, 142, 138, 46, 142, 144, 102, 142, 144, 146, 130, 144, 146, 148, 104, 146, 148, + 150, 140, 148, 150, 152, 106, 150, 152, 154, 132, 152, 154, 156, 136, 154, 156, 158, 108, 156, 158, 160, 134, 158, 160, 14, 16, 16, 18, 160, 16, 44, 46, 162, 142, 44, 162, 164, 144, + 162, 164, 166, 146, 164, 166, 168, 148, 166, 168, 170, 150, 168, 170, 172, 152, 170, 172, 174, 154, 172, 174, 176, 156, 174, 176, 178, 158, 176, 178, 180, 160, 178, 180, 20, 182, + 182, 180, 18, 182, 22, 184, 184, 178, 182, 184, 24, 186, 186, 176, 184, 186, 26, 188, 188, 174, 186, 188, 28, 190, 190, 172, 188, 190, 30, 192, 192, 170, 190, 192, 32, 194, 194, 168, + 192, 194, 34, 196, 196, 166, 194, 196, 36, 198, 198, 164, 196, 198, 38, 200, 200, 162, 198, 200, 40, 42, 42, 44, 200, 42 + ], + "width": 800.0, + "height": 592.9411764705883, + "path": "body-wetdog.body-wetdog", + "x": 0.5, + "y": 1.0294117647058556 + } + }, + "body-braid": { + "body-braid": { + "type": "mesh", + "uvs": [ + 0.49678, 0.15356, 0.5365, 0.2678, 0.58125, 0.3965, 0.59332, 0.47832, 0.60399, 0.55062, 0.68521, 0.59864, 0.74523, 0.59519, 0.82165, 0.5908, 1, 0.5699, 1, 0.66656, 1, 0.90166, + 0.87038, 1, 0.74693, 1, 0.63972, 1, 0.47404, 1, 0.38308, 0.92778, 0.32785, 0.77105, 0.34734, 0.61854, 0.33384, 0.56536, 0.31485, 0.49054, 0.27333, 0.42854, 0.22389, 0.3547, 0, + 0.34686, 0, 0.15878, 0.13617, 0.05429, 0.22064, 0, 0.51302, 0, 0.38632, 0.28156, 0.23038, 0.12221, 0.4383, 0.46703, 0.41459, 0.38243, 0.50003, 0.61592, 0.46429, 0.54278, 0.55526, + 0.67962, 0.60074, 0.76321, 0.68196, 0.79717, 0.75668, 0.84158, 0.85089, 0.85725 + ], + "triangles": [ + 13, 35, 36, 13, 14, 35, 12, 37, 11, 11, 37, 10, 12, 36, 37, 12, 13, 36, 37, 9, 10, 37, 36, 9, 9, 36, 8, 36, 35, 7, 36, 7, 8, 34, 16, 33, 14, 34, 35, 14, 15, 34, 34, 15, 16, 35, 6, 7, + 35, 34, 6, 34, 5, 6, 16, 31, 33, 34, 33, 5, 33, 4, 5, 33, 31, 4, 29, 2, 3, 19, 20, 30, 29, 30, 2, 17, 32, 31, 17, 18, 32, 31, 32, 4, 18, 29, 32, 18, 19, 29, 32, 3, 4, 32, 29, 3, 29, + 19, 30, 16, 17, 31, 30, 1, 2, 27, 21, 28, 21, 22, 28, 28, 23, 24, 28, 22, 23, 27, 0, 1, 27, 28, 0, 0, 28, 26, 24, 25, 28, 28, 25, 26, 20, 21, 30, 21, 27, 30, 30, 27, 1 + ], + "vertices": [ + 6, 23, 42.39, 36.89, 0.61865, 24, -24.45, 32.69, 0.21662, 25, -66.66, 36.02, 0.14285, 26, -94.46, 60.97, 0.01886, 27, -107.45, 98.58, 0.0024, 28, -98.68, 142.81, 0.00062, 6, 23, + 69.68, 26.91, 0.37334, 24, 4.6, 31.73, 0.31086, 25, -37.63, 34.59, 0.24998, 26, -66.66, 52.49, 0.05339, 27, -83.59, 82, 0.01006, 28, -82.24, 118.85, 0.00239, 6, 23, 100.43, 15.67, + 0.20232, 24, 37.32, 30.64, 0.31139, 25, -4.93, 32.98, 0.3299, 26, -35.35, 42.93, 0.1167, 27, -56.7, 63.32, 0.03218, 28, -63.72, 91.85, 0.00752, 6, 23, 118.1, 5.9, 0.09456, 24, 57.15, + 26.87, 0.2484, 25, 14.84, 28.9, 0.353, 26, -17.18, 34.14, 0.2015, 27, -42.09, 49.39, 0.08159, 28, -54.99, 73.65, 0.02095, 6, 23, 133.71, -2.74, 0.0369, 24, 74.68, 23.54, 0.16417, 25, + 32.31, 25.29, 0.30724, 26, -1.12, 26.37, 0.27689, 27, -29.19, 37.08, 0.16337, 28, -47.28, 57.56, 0.05144, 6, 23, 152.6, 3.39, 0.01189, 24, 90.71, 35.25, 0.09059, 25, 48.53, 36.75, + 0.2159, 26, 17.41, 33.51, 0.30597, 27, -9.36, 38.21, 0.26289, 28, -28.34, 51.59, 0.11276, 6, 23, 158.82, 13.49, 0.00306, 24, 93.47, 46.78, 0.04208, 25, 51.47, 48.24, 0.12219, 26, + 23.07, 43.93, 0.27461, 27, -0.78, 46.39, 0.34261, 28, -17.42, 56.21, 0.21545, 6, 23, 166.73, 26.34, 0.00064, 24, 96.98, 61.46, 0.01636, 25, 55.21, 62.86, 0.05475, 26, 30.27, 57.19, + 0.20269, 27, 10.13, 56.81, 0.36759, 28, -3.52, 62.09, 0.35797, 6, 23, 183.08, 57.86, 0.0001, 24, 102.67, 96.51, 0.00529, 25, 61.46, 97.81, 0.01939, 26, 44.88, 89.55, 0.12689, 27, + 33.95, 83.15, 0.33601, 28, 28.08, 78.28, 0.51231, 6, 23, 202.31, 44.04, 1e-05, 24, 125.26, 89.38, 0.00142, 25, 83.93, 90.32, 0.00537, 26, 64.83, 76.79, 0.07407, 27, 49.04, 64.9, + 0.28478, 28, 35.72, 55.87, 0.63435, 6, 23, 249.08, 10.42, 0, 24, 180.18, 72.03, 0.00042, 25, 138.57, 72.1, 0.0021, 26, 113.36, 45.77, 0.05445, 27, 85.74, 20.51, 0.26218, 28, 54.32, + 1.35, 0.68085, 6, 23, 253.74, -24.38, 0, 24, 195.47, 40.43, 0.00016, 25, 153.35, 40.26, 0.00207, 26, 119.91, 11.28, 0.05049, 27, 81.42, -14.33, 0.26128, 28, 37.94, -29.69, 0.686, 6, + 23, 239.55, -44.13, 0, 24, 188.14, 17.24, 0.00056, 25, 145.66, 17.19, 0.00631, 26, 106.81, -9.21, 0.0712, 27, 62.68, -29.83, 0.29428, 28, 14.92, -37.55, 0.62766, 6, 23, 227.22, + -61.28, 1e-05, 24, 181.78, -2.9, 0.0028, 25, 138.98, -2.85, 0.02232, 26, 95.43, -27.01, 0.1243, 27, 46.4, -43.28, 0.35186, 28, -5.07, -44.37, 0.4987, 6, 23, 208.17, -87.78, 0.00025, + 24, 171.96, -34.03, 0.01058, 25, 128.66, -33.81, 0.06169, 26, 77.85, -54.51, 0.20045, 27, 21.25, -64.09, 0.38535, 28, -35.96, -54.91, 0.34168, 6, 23, 183.34, -92, 0.00179, 24, + 149.69, -45.79, 0.03116, 25, 106.21, -45.22, 0.13569, 26, 53.29, -60.08, 0.27291, 27, -3.84, -61.87, 0.35863, 28, -58.64, -43.95, 0.19981, 6, 23, 145.81, -78.43, 0.00873, 24, 109.79, + -44.6, 0.0735, 25, 66.34, -43.4, 0.23797, 26, 15.08, -48.56, 0.30481, 27, -36.69, -39.21, 0.27493, 28, -81.33, -11.12, 0.10006, 6, 23, 117.71, -53.5, 0.03069, 24, 75.32, -29.68, + 0.1418, 25, 32.11, -27.94, 0.33789, 26, -14.34, -25.2, 0.2761, 27, -57.55, -7.97, 0.17093, 28, -89.76, 25.49, 0.04259, 6, 23, 105.58, -48.06, 0.08481, 24, 62.09, -28.3, 0.22382, 25, + 18.91, -26.34, 0.38929, 26, -26.74, -20.42, 0.20091, 27, -67.9, 0.38, 0.08548, 28, -96.49, 36.96, 0.01568, 6, 23, 88.51, -40.4, 0.19016, 24, 43.49, -26.34, 0.28883, 25, 0.33, -24.09, + 0.36619, 26, -44.2, -13.7, 0.11623, 27, -82.46, 12.12, 0.03374, 28, -105.95, 53.1, 0.00485, 6, 23, 71.41, -38.17, 0.36175, 24, 26.54, -29.57, 0.29406, 25, -16.66, -27.05, 0.27937, + 26, -61.41, -12.4, 0.05304, 27, -98.45, 18.61, 0.0105, 28, -118.59, 64.84, 0.00127, 6, 23, 51.03, -35.52, 0.6115, 24, 6.36, -33.41, 0.2078, 25, -36.91, -30.57, 0.15929, 26, -81.9, + -10.87, 0.01868, 27, -117.48, 26.35, 0.00247, 28, -133.65, 78.81, 0.00026, 1, 23, 23.73, -70.22, 1, 1, 23, -13.69, -43.32, 1, 2, 23, -18.82, -6.6, 0.99473, 24, -69.03, -27.73, + 0.00527, 1, 23, -19.91, 14.67, 1, 1, 23, 13.71, 61.45, 1, 6, 23, 55.16, 0.92, 0.51018, 24, -1.1, 2.5, 0.27442, 25, -43.79, 5.46, 0.19055, 26, -79.76, 25.75, 0.02179, 27, -104.24, + 60.55, 0.00259, 28, -109.15, 106.1, 0.00047, 2, 23, 5.53, -1.24, 0.99899, 24, -47.57, -15.04, 0.00101, 6, 23, 98.03, -17.29, 0.1871, 24, 45.32, -1.42, 0.30719, 25, 2.56, 0.8, + 0.35417, 26, -35.96, 9.9, 0.11492, 27, -67.39, 32.06, 0.03097, 28, -84.79, 66.41, 0.00566, 6, 23, 78.47, -8.98, 0.34132, 24, 24.15, 0.37, 0.32207, 25, -18.58, 2.93, 0.27445, 26, + -55.93, 17.13, 0.05147, 27, -84.2, 45.05, 0.00909, 28, -95.9, 84.51, 0.0016, 6, 23, 134.75, -28.7, 0.03123, 24, 83.77, -0.81, 0.15186, 25, 41.01, 0.8, 0.326, 26, 1.33, 0.49, 0.28017, + 27, -34.77, 11.69, 0.16587, 28, -61.5, 35.81, 0.04487, 6, 23, 116.09, -23.96, 0.08467, 24, 64.56, -2.13, 0.23851, 25, 21.79, -0.21, 0.37731, 26, -17.56, 4.21, 0.20186, 27, -51.62, + 21.02, 0.08071, 28, -73.95, 50.49, 0.01693, 6, 23, 153.77, -28.98, 0.00901, 24, 101.92, 4.87, 0.08017, 25, 59.26, 6.19, 0.22743, 26, 20.34, 1.25, 0.31024, 27, -16.44, 6.6, 0.27034, + 28, -46.16, 24.55, 0.10281, 6, 23, 175.63, -33.65, 0.00202, 24, 124.15, 7.24, 0.03484, 25, 81.52, 8.21, 0.12644, 26, 42.42, -2.23, 0.27685, 27, 3.51, -3.47, 0.35505, 28, -31.07, + 8.06, 0.20481, 6, 23, 191.72, -25.52, 0.00031, 24, 136.9, 20, 0.01242, 25, 94.47, 20.76, 0.05583, 26, 58.05, 6.77, 0.20199, 27, 21.15, 0.31, 0.38126, 28, -13.24, 5.35, 0.34818, 6, + 23, 209.15, -19.91, 4e-05, 24, 151.71, 30.76, 0.00357, 25, 109.45, 31.29, 0.019, 26, 75.14, 13.31, 0.12386, 27, 39.42, 1.31, 0.34567, 28, 4.2, -0.19, 0.50786, 6, 23, 223.1, -7.08, 0, + 24, 160.96, 47.3, 0.00084, 25, 118.96, 47.68, 0.00512, 26, 88.37, 26.88, 0.07106, 27, 56.17, 10.18, 0.28847, 28, 23.01, 2.17, 0.63451 + ], + "hull": 27, + "edges": [ + 44, 42, 42, 54, 54, 0, 0, 52, 44, 56, 56, 52, 44, 46, 46, 48, 50, 52, 48, 50, 48, 56, 38, 58, 58, 4, 42, 40, 40, 38, 54, 60, 60, 58, 40, 60, 0, 2, 2, 4, 60, 2, 34, 62, 62, 8, 38, 36, + 36, 34, 36, 64, 4, 6, 6, 8, 64, 6, 58, 64, 64, 62, 34, 32, 32, 30, 30, 28, 8, 10, 14, 16, 32, 66, 66, 10, 30, 68, 10, 12, 12, 14, 68, 12, 14, 70, 70, 28, 26, 28, 26, 72, 72, 16, 16, + 18, 18, 74, 24, 26, 74, 24, 22, 24, 18, 20, 22, 20, 62, 66, 66, 68, 68, 70, 70, 72, 72, 74, 74, 20 + ], + "width": 195.29411764705884, + "height": 244.7058823529412, + "path": "body-wetdog.body-braid", + "x": 0.8529411764705799, + "y": 0.1470588235294059 + } + }, + "leg-back-left": { + "leg-back-left": {"x": 32.56, "y": 0.31764705882352895, "rotation": 83.45, "width": 80.0, "height": 91.76470588235294, "path": "body-normal.leg-back-left"}, + "leg-back-left-long": {"x": 35.037058823529414, "y": -4.5, "rotation": 221.45, "width": 84.70588235294117, "height": 80.0, "path": "body-normal.leg-back-left-long"}, + "leg-back-left-stretch": { + "x": 27.84882352941176, "y": 2.462352941176471, "rotation": 54.45, "width": 65.88235294117648, "height": 68.23529411764706, "path": "body-normal.leg-back-left-stretch" + } + }, + "leg-front-left": { + "leg-front-left": {"x": 22.685882352941174, "y": 2.091764705882351, "rotation": 97.51, "width": 70.58823529411765, "height": 61.1764705882353, "path": "body-normal.leg-front-left"}, + "leg-front-left-long": { + "x": 28.450588235294116, "y": -5.187058823529413, "rotation": -173.75, "width": 87.05882352941177, "height": 75.29411764705883, "path": "body-normal.leg-front-left-long" + }, + "leg-front-left-stretch": { + "x": 20.12235294117647, "y": -3.107058823529413, "rotation": 142.15, "width": 68.23529411764706, "height": 75.29411764705883, "path": "body-normal.leg-front-left-stretch" + } + }, + "leg-front-right": { + "leg-front-right": {"x": 31.35, "y": -0.5423529411764709, "rotation": 87.96, "width": 80.0, "height": 91.76470588235294, "path": "body-normal.leg-front-right"}, + "leg-front-right-long": { + "x": 37.53058823529412, "y": 0.20294117647058696, "rotation": 205.96, "width": 87.05882352941177, "height": 75.29411764705883, "path": "body-normal.leg-front-right-long" + }, + "leg-front-right-stretch": {"x": 31.15, "y": 2.192352941176471, "rotation": 142.01, "width": 80.0, "height": 68.23529411764706, "path": "body-normal.leg-front-right-stretch"} + }, + "shadow": {"shadow": {"width": 945.8823529411765, "height": 190.58823529411765, "path": "body-wetdog.shadow", "x": 0.05882352941176805, "y": 0.20588235294117396}}, + "body-air": { + "body-air1a_00": {"x": 1.37, "y": 35.21, "width": 209.41176470588235, "height": 129.41176470588235, "path": "body-accessory.body-air1a_00"}, + "body-air1a_01": {"x": 1.37, "y": 35.21, "width": 209.41176470588235, "height": 129.41176470588235, "path": "body-accessory.body-air1a_01"}, + "body-air1a_02": {"x": 1.37, "y": 35.21, "width": 209.41176470588235, "height": 129.41176470588235, "path": "body-accessory.body-air1a_02"}, + "body-air1a_03": {"x": 1.37, "y": 35.21, "width": 209.41176470588235, "height": 129.41176470588235, "path": "body-accessory.body-air1a_03"}, + "body-air1a_04": {"x": 1.37, "y": 35.21, "width": 209.41176470588235, "height": 129.41176470588235, "path": "body-accessory.body-air1a_04"}, + "body-air1a_05": {"x": 1.37, "y": 35.21, "width": 209.41176470588235, "height": 129.41176470588235, "path": "body-accessory.body-air1a_05"}, + "body-air1a_06": {"x": 1.37, "y": 35.21, "width": 209.41176470588235, "height": 129.41176470588235, "path": "body-accessory.body-air1a_06"}, + "body-air1a_07": {"x": 1.37, "y": 35.21, "width": 209.41176470588235, "height": 129.41176470588235, "path": "body-accessory.body-air1a_07"}, + "body-air1b_00": {"x": 1.37, "y": 35.21, "width": 155.29411764705884, "height": 192.94117647058823, "path": "body-accessory.body-air1b_00"}, + "body-air1b_01": {"x": 1.37, "y": 35.21, "width": 155.29411764705884, "height": 192.94117647058823, "path": "body-accessory.body-air1b_01"}, + "body-air1b_02": {"x": 1.37, "y": 35.21, "width": 155.29411764705884, "height": 192.94117647058823, "path": "body-accessory.body-air1b_02"}, + "body-air1c_00": {"x": 1.37, "y": 35.21, "width": 200.0, "height": 289.4117647058824, "path": "body-accessory.body-air1c_00"}, + "body-air1c_01": {"x": 1.37, "y": 35.21, "width": 200.0, "height": 289.4117647058824, "path": "body-accessory.body-air1c_01"}, + "body-air1c_02": {"x": 1.37, "y": 35.21, "width": 200.0, "height": 289.4117647058824, "path": "body-accessory.body-air1c_02"}, + "body-air1c_03": {"x": 1.37, "y": 35.21, "width": 200.0, "height": 289.4117647058824, "path": "body-accessory.body-air1c_03"}, + "body-air1d_00": {"x": 1.37, "y": 35.21, "width": 204.7058823529412, "height": 272.94117647058823, "path": "body-accessory.body-air1d_00"}, + "body-air1d_01": {"x": 1.37, "y": 35.21, "width": 204.7058823529412, "height": 272.94117647058823, "path": "body-accessory.body-air1d_01"}, + "body-air1d_02": {"x": 1.37, "y": 35.21, "width": 204.7058823529412, "height": 272.94117647058823, "path": "body-accessory.body-air1d_02"}, + "body-air1d_03": {"x": 1.37, "y": 35.21, "width": 204.7058823529412, "height": 272.94117647058823, "path": "body-accessory.body-air1d_03"} + }, + "body-cheek": { + "body-cheek1a": {"x": 1.52, "y": 3.04, "width": 58.82352941176471, "height": 58.82352941176471, "path": "body-accessory.body-cheek1a"}, + "body-cheek1b": {"x": 1.52, "y": 3.04, "width": 49.411764705882355, "height": 77.64705882352942, "path": "body-accessory.body-cheek1b"}, + "body-cheek1c": {"x": 1.52, "y": 3.04, "width": 49.411764705882355, "height": 77.64705882352942, "path": "body-accessory.body-cheek1c"}, + "body-cheek1d": {"x": 1.52, "y": 3.04, "width": 49.411764705882355, "height": 75.29411764705883, "path": "body-accessory.body-cheek1d"}, + "body-cheek1e": {"x": 1.52, "y": 3.04, "width": 54.11764705882353, "height": 80.0, "path": "body-accessory.body-cheek1e"}, + "body-cheek1f": {"x": 1.52, "y": 3.04, "width": 56.470588235294116, "height": 58.82352941176471, "path": "body-accessory.body-cheek1f"}, + "body-cheek1g": {"x": 1.52, "y": 3.04, "width": 103.52941176470588, "height": 96.47058823529412, "path": "body-accessory.body-cheek1g"} + }, + "body-ground": { + "body-ground1a_00": {"x": 4.75, "y": 123.01, "width": 254.11764705882354, "height": 272.94117647058823, "path": "body-accessory.body-ground1a_00"}, + "body-ground1a_01": {"x": 4.75, "y": 123.01, "width": 254.11764705882354, "height": 272.94117647058823, "path": "body-accessory.body-ground1a_01"}, + "body-ground1a_02": {"x": 4.75, "y": 123.01, "width": 254.11764705882354, "height": 272.94117647058823, "path": "body-accessory.body-ground1a_02"}, + "body-ground1a_03": {"x": 4.75, "y": 123.01, "width": 254.11764705882354, "height": 272.94117647058823, "path": "body-accessory.body-ground1a_03"} + }, + "body-neck": { + "body-neck1a": {"x": -5.4, "y": -54.79, "width": 91.76470588235294, "height": 96.47058823529412, "path": "body-accessory.body-neck1a"}, + "body-neck1b": {"x": -5.4, "y": -54.79, "width": 103.52941176470588, "height": 117.64705882352942, "path": "body-accessory.body-neck1b"}, + "body-neck1c": {"x": -5.4, "y": -54.79, "width": 80.0, "height": 110.58823529411765, "path": "body-accessory.body-neck1c"}, + "body-neck1d": {"x": -5.4, "y": -54.79, "width": 122.3529411764706, "height": 101.17647058823529, "path": "body-accessory.body-neck1d"}, + "body-neck1e": {"x": -5.4, "y": -54.79, "width": 89.41176470588236, "height": 105.88235294117648, "path": "body-accessory.body-neck1e"}, + "body-neck1f": {"x": -5.4, "y": -54.79, "width": 80.0, "height": 80.0, "path": "body-accessory.body-neck1f"} + } + } + } + ], + "events": {"hit": {}, "hit-buff": {}, "jump": {}, "start-attack": {}}, + "keyAnimations": { + "activity/appear": "1023093953", + "activity/bath": "3305387968", + "attack/ranged/cast-fly": "2557998295", + "attack/ranged/cast-high": "260375190", + "attack/ranged/cast-low": "1610371879", + "attack/ranged/cast-multi": "305611055", + "attack/ranged/cast-tail": "3968125421", + "activity/eat-bite": "1137807767", + "activity/eat-chew": "1988236421", + "activity/entrance": "3768378365", + "defense/evade": "3676560492", + "activity/evolve": "649307630", + "battle/get-buff": "984729030", + "battle/get-debuff": "2827866347", + "defense/hit-by-normal": "2668995378", + "defense/hit-by-normal-crit": "858481981", + "defense/hit-by-normal-dramatic": "1175182584", + "defense/hit-by-ranged-attack": "2632049379", + "defense/hit-with-shield": "2044221994", + "attack/melee/horn-gore": "2912205675", + "attack/melee/mouth-bite": "3099909215", + "action/move-back": "3779315145", + "action/move-forward": "1392842846", + "attack/melee/multi-attack": "3353545678", + "action/idle/normal": "1278187577", + "attack/melee/normal-attack": "3958849146", + "activity/prepare": "405864717", + "action/idle/random-01": "2684952679", + "action/idle/random-02": "2106252256", + "action/idle/random-03": "2939918937", + "action/idle/random-04": "620315410", + "action/idle/random-05": "2745614147", + "action/run": "4243571983", + "draft/run-origin": "3577885069", + "attack/melee/shrimp": "1982530335", + "activity/sleep": "100562494", + "attack/melee/tail-multi-slap": "323348469", + "attack/melee/tail-roll": "2952434131", + "attack/melee/tail-smash": "3155257148", + "attack/melee/tail-thrash": "2338117540", + "activity/victory-pose-back-flip": "2227634241" + } + }, + "summer-a": { + "bones": [ + {"name": "@root"}, {"name": "@pivot-main", "parent": "@root"}, {"name": "@pivot-back", "parent": "@pivot-main", "x": 205, "y": 180, "color": "ff0101ff"}, + {"name": "@pivot-center", "parent": "@pivot-back", "x": -215.11, "y": -5.25, "color": "ff0101ff"}, + {"name": "@axie", "parent": "@pivot-center", "length": 213.28, "rotation": 179.04, "x": 196.39, "y": 5.16}, {"name": "@back", "parent": "@axie", "rotation": -179.04, "x": 37.63, "y": -198.19}, + {"name": "back", "parent": "@back", "length": 149.41, "rotation": 58, "x": -13.97, "y": 26.3, "transform": "noScale"}, + {"name": "@body", "parent": "@axie", "length": 226.28, "rotation": -8.35, "x": 224.58, "y": -0.53}, {"name": "@ear-left", "parent": "@axie", "rotation": -179.04, "x": 112.7, "y": -203.23}, + {"name": "ear-left", "parent": "@ear-left", "length": 113.61, "rotation": 90, "x": -27, "y": 19, "transform": "noScale"}, + {"name": "@ear-right", "parent": "@axie", "rotation": -179.04, "x": 405.28, "y": -235.33}, + {"name": "ear-right", "parent": "@ear-right", "length": 119.39, "rotation": 93, "x": -30, "y": -15, "transform": "noScale"}, + {"name": "@eyes", "parent": "@axie", "rotation": -179.04, "x": 384.24, "y": -113.67}, {"name": "@horn", "parent": "@axie", "rotation": -179.04, "x": 327.92, "y": -214.63}, + {"name": "horn", "parent": "@horn", "length": 176.72, "rotation": 90, "y": 18, "transform": "noScale"}, + {"name": "@leg-back-left", "parent": "@axie", "length": 76.4, "rotation": 100.96, "x": -15.3, "y": 102.56, "transform": "noScale"}, + {"name": "@leg-front-left", "parent": "@axie", "length": 51.19, "rotation": 93.86, "x": 134.77, "y": 149.55, "transform": "noScale"}, + {"name": "@leg-front-right", "parent": "@axie", "length": 74.83, "rotation": 83.2, "x": 382.95, "y": 121.78, "transform": "noScale"}, + {"name": "@mouth", "parent": "@axie", "rotation": -179.04, "x": 382.23, "y": 6.31, "color": "abe323ff"}, + {"name": "body-pattern", "parent": "@body", "rotation": -170.69, "x": -267.21, "y": -49.4, "transform": "noScale"}, {"name": "@shadow", "parent": "@root", "color": "e6d713ff"}, + {"name": "@tail", "parent": "@axie", "rotation": -179.04, "x": -11.76, "y": 61.72}, + {"name": "tail", "parent": "@tail", "length": 203.67, "rotation": -12, "x": 16, "y": 72.87, "transform": "noScale"}, + {"name": "leg-front-right-IK", "parent": "@pivot-main", "x": -195.99, "y": -10.21, "color": "ff3f00ff"}, + {"name": "leg-front-left-IK", "parent": "@pivot-main", "x": 42.3, "y": -18.42, "color": "ff3f00ff"}, + {"name": "leg-back-left-IK", "parent": "@pivot-main", "x": 208.57, "y": 1.35, "color": "ff3f00ff"}, {"name": "@ball", "parent": "@root", "y": 191, "color": "f3981bff"}, + {"name": "ball", "parent": "@ball", "y": -191, "color": "f4a729ff"}, {"name": "mouth-bubble", "parent": "@mouth", "x": -191.16, "y": -1.83}, + {"name": "mouth-accessory", "parent": "mouth-bubble", "x": -67.84, "y": 101.83}, {"name": "eyes-happy-accessory", "parent": "@eyes", "x": 142.51, "y": 62.21}, + {"name": "ear-right-bubble", "parent": "ear-right", "length": 40.07, "rotation": -179.99, "x": 184.94, "y": -20.48}, + {"name": "ear-left-bubble", "parent": "ear-left", "length": 48.54, "rotation": 176.27, "x": 190.98, "y": -21.07, "scaleX": 0.949}, + {"name": "ear-left-all-bubble", "parent": "ear-left", "length": 26.1, "rotation": 0.95, "x": -6.64, "y": -27.7, "color": "3002ffff"}, + {"name": "ear-right-dot-01", "parent": "ear-left-all-bubble", "rotation": -90.95, "x": -13.64, "y": 22.67, "scaleX": 0.3508, "scaleY": 0.3508, "color": "2f9bffff"}, + {"name": "ear-left-dot-01", "parent": "ear-left-all-bubble", "rotation": -90.95, "x": -28.82, "y": -24.72, "scaleX": 0.7755, "scaleY": 0.7755, "color": "2f9bffff"}, + {"name": "ear-right-bubble-02", "parent": "ear-right-bubble", "rotation": 86.99, "x": 63.76, "y": -22.96}, + {"name": "ear-right-bubble-03", "parent": "ear-right-bubble", "rotation": 86.99, "x": 64.99, "y": -1.59}, + {"name": "ear-right-bubble-04", "parent": "ear-right-bubble", "rotation": 86.99, "x": 66.12, "y": 19.85}, + {"name": "ear-left-bubble-02", "parent": "ear-left-bubble", "rotation": 93.73, "x": 68.81, "y": -22.89}, + {"name": "ear-left-bubble-03", "parent": "ear-left-bubble", "rotation": 93.73, "x": 70.45, "y": -0.4}, + {"name": "ear-left-bubble-04", "parent": "ear-left-bubble", "rotation": 93.73, "x": 65.87, "y": 22.28}, + {"name": "ear-right-bubble-05", "parent": "ear-right", "length": 40.07, "rotation": -179.99, "x": 184.94, "y": -20.48}, + {"name": "ear-right-bubble-06", "parent": "ear-right-bubble-05", "rotation": 86.99, "x": 63.76, "y": -22.96}, + {"name": "ear-right-bubble-07", "parent": "ear-right-bubble-05", "rotation": 86.99, "x": 64.99, "y": -1.59}, + {"name": "ear-right-bubble-08", "parent": "ear-right-bubble-05", "rotation": 86.99, "x": 66.12, "y": 19.85}, + {"name": "ear-left-bubble-05", "parent": "ear-left", "length": 48.54, "rotation": 176.27, "x": 190.98, "y": -21.07, "scaleX": 0.991}, + {"name": "ear-left-bubble-06", "parent": "ear-left-bubble-05", "rotation": 93.73, "x": 67.27, "y": -22.98}, + {"name": "ear-left-bubble-07", "parent": "ear-left-bubble-05", "rotation": 93.73, "x": 65.82, "y": -0.69}, + {"name": "ear-left-bubble-08", "parent": "ear-left-bubble-05", "rotation": 93.73, "x": 64.32, "y": 22.18}, + {"name": "ear-right-dot-02", "parent": "ear-left-all-bubble", "rotation": -95.73, "x": -18.26, "y": -8.1, "scaleX": 0.5668, "scaleY": 0.6813, "color": "2f9bffff"}, + {"name": "ear-left-dot-02", "parent": "ear-left-all-bubble", "rotation": -88.74, "x": 8.57, "y": 59.72, "scaleX": 0.6577, "scaleY": 0.5996, "color": "2f9bffff"}, + {"name": "ear-right-dot-03", "parent": "ear-left-all-bubble", "rotation": -87.96, "x": -25.76, "y": -45.18, "scaleX": 0.2583, "scaleY": 0.2881, "color": "2f9bffff"}, + {"name": "ear-right-dot-04", "parent": "ear-left-all-bubble", "rotation": -88.51, "x": -27.05, "y": -31.17, "scaleX": 0.4361, "scaleY": 0.6365, "color": "2f9bffff"}, + {"name": "ear-right-dot-05", "parent": "ear-left-all-bubble", "rotation": -79.32, "x": -5.28, "y": 34.53, "scaleX": 0.5911, "scaleY": 0.8949, "color": "2f9bffff"}, + {"name": "ear-left-dot-03", "parent": "ear-left-all-bubble", "rotation": -90.95, "x": -10.57, "y": 11.72, "scaleX": 0.8206, "scaleY": 0.8206, "color": "2f9bffff"}, + {"name": "ear-left-dot-04", "parent": "ear-left-all-bubble", "rotation": -90.95, "x": 11.94, "y": 65.23, "scaleX": 0.7096, "scaleY": 0.7096, "color": "2f9bffff"}, + {"name": "ear-left-dot-05", "parent": "ear-left-all-bubble", "rotation": -88.35, "x": 10.11, "y": 68.29, "scaleX": 0.4014, "scaleY": 0.366, "color": "2f9bffff"}, + {"name": "ear-left-dot-06", "parent": "ear-left-all-bubble", "rotation": -90.95, "x": 34.65, "y": 74.95, "scaleX": 0.8206, "scaleY": 0.8206, "color": "2f9bffff"}, + {"name": "ear-right-dot-06", "parent": "ear-left-all-bubble", "rotation": -90.95, "x": -11.77, "y": 50.86, "scaleX": 0.4361, "scaleY": 0.4361, "color": "2f9bffff"}, + {"name": "ear-right-dot-07", "parent": "ear-left-all-bubble", "rotation": -96.07, "x": -32.28, "y": -4.86, "scaleX": 0.5668, "scaleY": 0.6813, "color": "2f9bffff"}, + {"name": "ear-right-dot-08", "parent": "ear-left-all-bubble", "rotation": -90.23, "x": -18.31, "y": -61.25, "scaleX": 0.7405, "scaleY": 0.826, "color": "2f9bffff"}, + {"name": "ear-right-dot-09", "parent": "ear-left-all-bubble", "rotation": -93.53, "x": -9.54, "y": 52.15, "scaleX": 0.2863, "scaleY": 0.3229, "color": "2f9bffff"}, + {"name": "ear-right-dot-10", "parent": "ear-left-all-bubble", "rotation": -81.97, "x": -31.43, "y": 21.83, "scaleX": 0.5911, "scaleY": 0.8949, "color": "2f9bffff"}, + {"name": "ear-right-all-bubble", "parent": "ear-right", "length": 26.1, "rotation": 3.44, "x": -10.08, "y": -8.05, "color": "3002ffff"}, + {"name": "ear-right-dot-11", "parent": "ear-right-all-bubble", "rotation": -96.44, "x": 10.27, "y": -24.86, "scaleX": 0.3508, "scaleY": 0.3508, "color": "2f9bffff"}, + {"name": "ear-left-dot-07", "parent": "ear-right-all-bubble", "rotation": -96.44, "x": 27.18, "y": -39.33, "scaleX": 0.7755, "scaleY": 0.7755, "color": "2f9bffff"}, + {"name": "ear-right-dot-12", "parent": "ear-right-all-bubble", "rotation": -101.56, "x": -18.26, "y": -8.1, "scaleX": 0.5668, "scaleY": 0.6813, "color": "2f9bffff"}, + {"name": "ear-left-dot-08", "parent": "ear-right-all-bubble", "rotation": -93.99, "x": -7.49, "y": -14.12, "scaleX": 0.6577, "scaleY": 0.5996, "color": "2f9bffff"}, + {"name": "ear-right-dot-13", "parent": "ear-right-all-bubble", "rotation": -93.67, "x": 43.59, "y": -57.74, "scaleX": 0.2583, "scaleY": 0.2881, "color": "2f9bffff"}, + {"name": "ear-right-dot-14", "parent": "ear-right-all-bubble", "rotation": -96.49, "x": 8.09, "y": -20.73, "scaleX": 0.4361, "scaleY": 0.6365, "color": "2f9bffff"}, + {"name": "ear-right-dot-15", "parent": "ear-right-all-bubble", "rotation": -84.65, "x": -5.28, "y": 34.53, "scaleX": 0.5911, "scaleY": 0.8949, "color": "2f9bffff"}, + {"name": "ear-left-dot-09", "parent": "ear-right-all-bubble", "rotation": -96.44, "x": -10.57, "y": 11.72, "scaleX": 0.8206, "scaleY": 0.8206, "color": "2f9bffff"}, + {"name": "ear-left-dot-10", "parent": "ear-right-all-bubble", "rotation": -96.44, "x": -13.81, "y": 2.57, "scaleX": 0.7096, "scaleY": 0.7096, "color": "2f9bffff"}, + {"name": "ear-left-dot-11", "parent": "ear-right-all-bubble", "rotation": -93.79, "x": -9.28, "y": 21.87, "scaleX": 0.4014, "scaleY": 0.366, "color": "2f9bffff"}, + {"name": "ear-left-dot-12", "parent": "ear-right-all-bubble", "rotation": -96.44, "x": -2.52, "y": 33.38, "scaleX": 0.8206, "scaleY": 0.8206, "color": "2f9bffff"}, + {"name": "ear-right-dot-16", "parent": "ear-right-all-bubble", "rotation": -96.44, "x": -4.07, "y": -34.4, "scaleX": 0.4361, "scaleY": 0.4361, "color": "2f9bffff"}, + {"name": "ear-right-dot-17", "parent": "ear-right-all-bubble", "rotation": -101.7, "x": 4.16, "y": -7.75, "scaleX": 0.5668, "scaleY": 0.6813, "color": "2f9bffff"}, + {"name": "ear-right-dot-18", "parent": "ear-right-all-bubble", "rotation": -96.34, "x": 27.4, "y": -55.17, "scaleX": 0.7405, "scaleY": 0.826, "color": "2f9bffff"}, + {"name": "ear-right-dot-19", "parent": "ear-right-all-bubble", "rotation": -99.41, "x": -9.54, "y": 52.15, "scaleX": 0.2863, "scaleY": 0.3229, "color": "2f9bffff"}, + {"name": "ear-right-dot-20", "parent": "ear-right-all-bubble", "rotation": -86.28, "x": 12.43, "y": -37.05, "scaleX": 0.5911, "scaleY": 0.8949, "color": "2f9bffff"}, + {"name": "mouth-bubble-core", "parent": "mouth-accessory"}, {"name": "eyes-light-left", "parent": "@eyes", "length": 15.08, "rotation": -135.48, "x": 69.15, "y": -15.18}, + {"name": "eyes-light-right", "parent": "@eyes", "length": 15.08, "rotation": -135.48, "x": -97.9, "y": -16.49}, {"name": "eyes-light-dot", "parent": "@eyes", "x": -66.73, "y": 27.82}, + {"name": "eyes-light-dot-02", "parent": "@eyes", "x": 103.19, "y": 27.82} + ], + "slots": [ + {"name": "shadow", "bone": "@shadow", "attachment": "shadow"}, {"name": "ball", "bone": "ball"}, + {"name": "leg-front-right", "bone": "@leg-front-right", "attachment": "summer-leg-front-right"}, {"name": "tail", "bone": "tail", "attachment": "tail"}, + {"name": "back", "bone": "back", "attachment": "back"}, {"name": "leg-back-left", "bone": "@leg-back-left", "attachment": "summer-leg-back-left"}, + {"name": "body", "bone": "@body", "attachment": "body"}, {"name": "body-pattern", "bone": "body-pattern"}, {"name": "ear-right-under", "bone": "ear-right", "attachment": "ear-right-under"}, + {"name": "ear-left-dot-07", "bone": "ear-left-dot-07", "color": "ffffff00", "attachment": "ear-left-dot"}, + {"name": "ear-left-dot-10", "bone": "ear-left-dot-10", "color": "ffffff00", "attachment": "ear-left-dot"}, + {"name": "ear-left-dot-09", "bone": "ear-left-dot-09", "color": "ffffff00", "attachment": "ear-left-dot"}, + {"name": "ear-left-dot-12", "bone": "ear-left-dot-12", "color": "ffffff00", "attachment": "ear-left-dot"}, + {"name": "ear-left-dot-08", "bone": "ear-left-dot-08", "color": "ffffff00", "attachment": "ear-left-dot"}, + {"name": "ear-left-dot-11", "bone": "ear-left-dot-11", "color": "ffffff00", "attachment": "ear-left-dot"}, + {"name": "ear-right-dot-11", "bone": "ear-right-dot-11", "color": "ffffff00", "attachment": "ear-right-dot"}, + {"name": "ear-right-dot-16", "bone": "ear-right-dot-16", "color": "ffffff00", "attachment": "ear-right-dot"}, + {"name": "ear-right-dot-12", "bone": "ear-right-dot-12", "color": "ffffff00", "attachment": "ear-right-dot"}, + {"name": "ear-right-dot-17", "bone": "ear-right-dot-17", "color": "ffffff00", "attachment": "ear-right-dot"}, + {"name": "ear-right-dot-13", "bone": "ear-right-dot-13", "color": "ffffff00", "attachment": "ear-right-dot"}, + {"name": "ear-right-dot-18", "bone": "ear-right-dot-18", "color": "ffffff00", "attachment": "ear-right-dot"}, + {"name": "ear-right-dot-14", "bone": "ear-right-dot-14", "color": "ffffff00", "attachment": "ear-right-dot"}, + {"name": "ear-right-dot-19", "bone": "ear-right-dot-19", "color": "ffffff00", "attachment": "ear-right-dot"}, + {"name": "ear-right-dot-15", "bone": "ear-right-dot-15", "color": "ffffff00", "attachment": "ear-right-dot"}, + {"name": "ear-right-dot-20", "bone": "ear-right-dot-20", "color": "ffffff00", "attachment": "ear-right-dot"}, + {"name": "ear-right-bubble", "bone": "ear-right-bubble", "color": "fcae10ff", "attachment": "ear-right-bubble"}, + {"name": "ear-right-bubble-02", "bone": "ear-right-bubble-05", "attachment": "ear-right-bubble"}, {"name": "ear-right-upper", "bone": "ear-right", "attachment": "ear-right-upper"}, + {"name": "leg-front-left", "bone": "@leg-front-left", "attachment": "summer-leg-front-left"}, {"name": "eyes", "bone": "@eyes", "attachment": "eyes"}, + {"name": "eyes-light-dot", "bone": "eyes-light-dot", "attachment": "eye-light-dot"}, {"name": "eyes-light-dot-02", "bone": "eyes-light-dot-02", "attachment": "eye-light-dot"}, + {"name": "eyes-light-left", "bone": "eyes-light-left", "color": "fff96500", "attachment": "light", "blend": "additive"}, + {"name": "eyes-light-right", "bone": "eyes-light-right", "color": "fff96500", "attachment": "light", "blend": "additive"}, {"name": "eyes-upper", "bone": "@eyes", "attachment": "eyes-upper"}, + {"name": "mouth", "bone": "@mouth", "attachment": "mouth"}, {"name": "horn", "bone": "horn", "attachment": "horn"}, + {"name": "ear-left-under", "bone": "ear-left", "attachment": "ear-left-under"}, {"name": "ear-left-dot-01", "bone": "ear-left-dot-01", "color": "ffffff00", "attachment": "ear-left-dot"}, + {"name": "ear-left-dot-04", "bone": "ear-left-dot-04", "color": "ffffff00", "attachment": "ear-left-dot"}, + {"name": "ear-left-dot-03", "bone": "ear-left-dot-03", "color": "ffffff00", "attachment": "ear-left-dot"}, + {"name": "ear-left-dot-06", "bone": "ear-left-dot-06", "color": "ffffff00", "attachment": "ear-left-dot"}, + {"name": "ear-left-dot-02", "bone": "ear-left-dot-02", "color": "ffffff00", "attachment": "ear-left-dot"}, + {"name": "ear-left-dot-05", "bone": "ear-left-dot-05", "color": "ffffff00", "attachment": "ear-left-dot"}, + {"name": "ear-right-dot-01", "bone": "ear-right-dot-01", "color": "ffffff00", "attachment": "ear-right-dot"}, + {"name": "ear-right-dot-06", "bone": "ear-right-dot-06", "color": "ffffff00", "attachment": "ear-right-dot"}, + {"name": "ear-right-dot-02", "bone": "ear-right-dot-02", "color": "ffffff00", "attachment": "ear-right-dot"}, + {"name": "ear-right-dot-07", "bone": "ear-right-dot-07", "color": "ffffff00", "attachment": "ear-right-dot"}, + {"name": "ear-right-dot-03", "bone": "ear-right-dot-03", "color": "ffffff00", "attachment": "ear-right-dot"}, + {"name": "ear-right-dot-08", "bone": "ear-right-dot-08", "color": "ffffff00", "attachment": "ear-right-dot"}, + {"name": "ear-right-dot-04", "bone": "ear-right-dot-04", "color": "ffffff00", "attachment": "ear-right-dot"}, + {"name": "ear-right-dot-09", "bone": "ear-right-dot-09", "color": "ffffff00", "attachment": "ear-right-dot"}, + {"name": "ear-right-dot-05", "bone": "ear-right-dot-05", "color": "ffffff00", "attachment": "ear-right-dot"}, + {"name": "ear-right-dot-10", "bone": "ear-right-dot-10", "color": "ffffff00", "attachment": "ear-right-dot"}, + {"name": "ear-left-bubble", "bone": "ear-left-bubble", "color": "fcae10ff", "attachment": "ear-left-bubble"}, + {"name": "ear-left-bubble-02", "bone": "ear-left-bubble-05", "attachment": "ear-left-bubble"}, {"name": "ear-left-upper", "bone": "ear-left", "attachment": "ear-left-upper"}, + {"name": "eyes-happy-accessory", "bone": "eyes-happy-accessory", "color": "ffffff00", "attachment": "eyes-happy-accessory", "blend": "additive"}, + {"name": "mouth-accessory", "bone": "mouth-accessory", "color": "ffffff00", "attachment": "mouth-accessory"} + ], + "ik": [ + {"name": "leg-back-left-IK", "order": 3, "bones": ["@leg-back-left"], "target": "leg-back-left-IK"}, + {"name": "leg-front-left-IK", "order": 2, "bones": ["@leg-front-left"], "target": "leg-front-left-IK"}, + {"name": "leg-front-right-IK", "bones": ["@leg-front-right"], "target": "leg-front-right-IK"} + ], + "transform": [{"name": "@mouth", "order": 1, "bones": ["mouth-bubble"], "target": "@mouth", "x": -49.1, "y": 37.9, "rotateMix": 0, "translateMix": 0, "scaleMix": 0, "shearMix": 0}], + "skins": [ + { + "name": "default", + "attachments": { + "back": {"back": {"x": 70.6535294117647, "y": -8.307647058823536, "rotation": -58, "width": 242.3529411764706, "height": 228.23529411764707, "path": "summer-a.back"}}, + "ear-left-bubble": { + "ear-left-bubble": { + "type": "mesh", + "uvs": [ + 0.87714, 0.57697, 0.91393, 0.67811, 0.94364, 0.75977, 0.96133, 0.8176, 0.97838, 0.87333, 1, 0.94398, 0.93104, 0.94427, 0.90524, 0.94438, 0.88494, 0.94447, 0.85255, 0.94461, 0.82176, + 0.94474, 0.79396, 0.94486, 0.76382, 0.94499, 0.73767, 0.9451, 0.70713, 0.94523, 0.67579, 0.94536, 0.64108, 0.94551, 0.61244, 0.94564, 0.5758, 0.94579, 0.5367, 0.94596, 0.50394, + 0.9461, 0.47091, 0.94624, 0.435, 0.94639, 0.39675, 0.94656, 0.36198, 0.94671, 0.32916, 0.94685, 0.29359, 0.947, 0.25022, 0.94718, 0.20956, 0.94736, 0.17261, 0.94751, 0.12749, + 0.94771, 0.1012, 0.94782, 0.07834, 0.94792, 0.0457, 0.94806, 0.02123, 0.94816, 0, 0.94825, 0, 0.86703, 0, 0.81359, 0, 0.73715, 0.02817, 0.68242, 0.07791, 0.5858, 0.37947, 0, 0.46651, + 0, 0.5261, 0, 0.59994, 0, 0.66726, 0, 0.02864, 0.86721, 0.04805, 0.81379, 0.07275, 0.7389, 0.0999, 0.68207, 0.14259, 0.58508, 0.49108, 0.58123, 0.82646, 0.57753, 0.86109, 0.67837, + 0.88458, 0.75835, 0.90003, 0.81734, 0.91424, 0.87292, 0.48557, 0.6802, 0.48069, 0.74867, 0.47772, 0.81558, 0.4758, 0.87009, 0.29126, 0.58344, 0.25576, 0.68132, 0.23492, 0.74278, + 0.2135, 0.81448, 0.19874, 0.86831, 0.19271, 0.49455, 0.4968, 0.48641, 0.79002, 0.48462, 0.25666, 0.37903, 0.50462, 0.35653, 0.74321, 0.36527, 0.68757, 0.57906, 0.70466, 0.67913, + 0.71716, 0.75434, 0.72541, 0.81661, 0.73109, 0.87174, 0.67152, 0.48534, 0.32349, 0.49105, 0.38378, 0.58242, 0.36974, 0.68076, 0.36036, 0.74579, 0.34895, 0.81504, 0.34148, 0.86923, + 0.20652, 0.58437, 0.16979, 0.68173, 0.1462, 0.74066, 0.12077, 0.81409, 0.10379, 0.8677, 0.59158, 0.58012, 0.59921, 0.67965, 0.60299, 0.7516, 0.60776, 0.81612, 0.60866, 0.87095, + 0.76107, 0.57825, 0.78751, 0.67873, 0.81003, 0.75656, 0.82525, 0.81703, 0.83754, 0.87243, 0.10852, 0.73975, 0.08479, 0.81394, 0.06934, 0.86747, 0.15113, 0.868, 0.1657, 0.81428, + 0.18746, 0.74164, 0.29675, 0.74426, 0.28022, 0.81476, 0.26841, 0.86876, 0.41495, 0.7471, 0.40761, 0.81529, 0.4031, 0.86963, 0.53765, 0.87049, 0.53762, 0.81583, 0.53944, 0.75008, + 0.6595, 0.75296, 0.66217, 0.81635, 0.66857, 0.87134, 0.78397, 0.87208, 0.7758, 0.81682, 0.76492, 0.75548, 0.74852, 0.67892, 0.82675, 0.67854, 0.84222, 0.75734, 0.8595, 0.81717, + 0.87132, 0.87264, 0.01186, 0.9147, 0.056, 0.91293, 0.08943, 0.91297, 0.13846, 0.91074, 0.18465, 0.91102, 0.25824, 0.91262, 0.33507, 0.90958, 0.39978, 0.90977, 0.47313, 0.91161, + 0.53714, 0.91117, 0.61061, 0.90948, 0.67252, 0.91178, 0.73471, 0.91209, 0.78925, 0.91054, 0.84557, 0.91105, 0.87872, 0.91169, 0.92292, 0.90979, 0.21772, 0.91173, 0.11081, 0.912, + 0.02923, 0.91401, 0.29821, 0.91104, 0.36548, 0.90967, 0.43685, 0.9107, 0.50336, 0.9114, 0.57635, 0.91027, 0.64066, 0.9106, 0.70543, 0.91195, 0.76031, 0.91136, 0.81833, 0.9108, + 0.89934, 0.9108 + ], + "triangles": [ + 85, 84, 62, 94, 73, 72, 123, 54, 55, 62, 84, 61, 100, 48, 99, 144, 46, 126, 122, 53, 54, 121, 95, 52, 48, 49, 99, 35, 36, 125, 125, 36, 46, 48, 47, 38, 47, 37, 38, 50, 66, 84, 50, + 40, 66, 56, 3, 4, 54, 53, 1, 52, 68, 0, 70, 42, 43, 71, 0, 68, 44, 45, 71, 70, 43, 44, 71, 70, 44, 69, 41, 42, 69, 42, 70, 71, 45, 0, 77, 70, 71, 77, 71, 68, 70, 78, 69, 67, 70, 77, + 67, 78, 70, 41, 69, 40, 66, 69, 78, 94, 77, 68, 94, 68, 52, 72, 77, 94, 89, 67, 77, 89, 77, 72, 67, 79, 78, 51, 67, 89, 51, 79, 67, 61, 66, 78, 61, 78, 79, 84, 66, 61, 40, 69, 66, + 90, 89, 72, 90, 72, 73, 57, 79, 51, 57, 51, 89, 57, 89, 90, 80, 61, 79, 80, 79, 57, 62, 61, 80, 108, 80, 57, 113, 57, 90, 53, 52, 0, 53, 0, 1, 121, 52, 53, 54, 1, 2, 95, 94, 52, 55, + 2, 3, 55, 54, 2, 5, 6, 4, 39, 40, 49, 49, 40, 50, 38, 39, 48, 46, 36, 37, 48, 39, 49, 85, 50, 84, 49, 50, 85, 47, 46, 37, 56, 55, 3, 122, 121, 53, 47, 48, 100, 46, 47, 101, 125, 46, + 144, 35, 125, 34, 34, 125, 144, 101, 47, 100, 86, 99, 49, 85, 86, 49, 120, 94, 95, 120, 73, 94, 114, 91, 90, 73, 114, 90, 74, 73, 120, 114, 73, 74, 119, 120, 95, 74, 120, 119, 96, + 95, 121, 119, 95, 96, 96, 121, 122, 92, 91, 114, 115, 114, 74, 92, 114, 115, 75, 74, 119, 115, 74, 75, 118, 119, 96, 75, 119, 118, 97, 96, 122, 118, 96, 97, 123, 122, 54, 97, 122, + 123, 93, 92, 115, 116, 115, 75, 93, 115, 116, 76, 75, 118, 116, 75, 76, 117, 118, 97, 76, 118, 117, 98, 97, 123, 117, 97, 98, 124, 123, 55, 98, 123, 124, 150, 135, 93, 153, 138, 117, + 116, 150, 93, 98, 153, 117, 154, 124, 56, 154, 56, 141, 139, 98, 124, 140, 139, 124, 153, 98, 139, 152, 76, 117, 152, 117, 138, 154, 140, 124, 151, 136, 116, 150, 116, 136, 76, 151, + 116, 137, 151, 76, 152, 137, 76, 7, 154, 141, 7, 141, 6, 8, 140, 154, 8, 154, 7, 9, 139, 140, 9, 140, 8, 10, 153, 139, 10, 139, 9, 11, 138, 153, 11, 153, 10, 12, 152, 138, 12, 138, + 11, 13, 137, 152, 13, 152, 12, 14, 151, 137, 14, 137, 13, 15, 136, 151, 15, 151, 14, 16, 150, 136, 16, 136, 15, 17, 135, 150, 17, 150, 16, 124, 55, 56, 6, 141, 4, 141, 56, 4, 113, + 90, 91, 81, 80, 108, 58, 108, 57, 109, 81, 108, 82, 81, 109, 59, 108, 58, 109, 108, 59, 112, 58, 113, 59, 58, 112, 112, 113, 91, 92, 112, 91, 110, 82, 109, 83, 82, 110, 60, 109, 59, + 110, 109, 60, 111, 112, 92, 59, 112, 111, 60, 59, 111, 111, 92, 93, 146, 83, 110, 131, 83, 146, 132, 146, 110, 149, 111, 93, 149, 93, 135, 147, 110, 60, 132, 110, 147, 111, 148, 60, + 134, 111, 149, 134, 148, 111, 133, 147, 60, 148, 133, 60, 18, 134, 149, 18, 149, 135, 18, 135, 17, 19, 148, 134, 19, 134, 18, 20, 148, 19, 21, 147, 133, 20, 21, 133, 20, 133, 148, + 22, 132, 147, 22, 147, 21, 23, 146, 132, 23, 132, 22, 24, 131, 146, 24, 146, 23, 25, 131, 24, 58, 57, 113, 63, 104, 85, 86, 85, 104, 62, 63, 85, 105, 62, 80, 63, 62, 105, 81, 105, + 80, 87, 99, 86, 100, 99, 87, 103, 86, 104, 87, 86, 103, 64, 104, 63, 103, 104, 64, 106, 63, 105, 64, 63, 106, 82, 105, 81, 106, 105, 82, 88, 100, 87, 101, 100, 88, 102, 87, 103, 88, + 87, 102, 65, 103, 64, 102, 103, 65, 107, 64, 106, 65, 64, 107, 83, 106, 82, 107, 106, 83, 83, 145, 107, 128, 88, 102, 129, 102, 65, 128, 102, 129, 131, 145, 83, 142, 65, 107, 129, + 65, 142, 143, 88, 128, 130, 142, 107, 130, 107, 145, 127, 101, 88, 127, 88, 143, 126, 101, 127, 25, 145, 131, 26, 130, 145, 26, 145, 25, 27, 142, 130, 27, 130, 26, 28, 129, 142, 28, + 142, 27, 29, 128, 129, 29, 129, 28, 30, 143, 128, 30, 128, 29, 31, 127, 143, 31, 143, 30, 32, 126, 127, 32, 127, 31, 33, 144, 126, 33, 126, 32, 126, 46, 101, 34, 144, 33 + ], + "vertices": [ + 4, 39, 58.43, 20.31, 0.00012, 40, 36.09, 20.31, 0.00054, 41, 13.17, 20.31, 0.12631, 32, 43.2, 34, 0.87302, 3, 40, 39.33, 12.22, 0.00019, 41, 16.41, 12.22, 0.19743, 32, 51.06, 37.76, + 0.80237, 3, 40, 41.94, 5.69, 6e-05, 41, 19.02, 5.69, 0.26715, 32, 57.41, 40.79, 0.73278, 3, 40, 43.5, 1.06, 1e-05, 41, 20.58, 1.06, 0.33542, 32, 61.92, 42.65, 0.66457, 3, 40, 45, + -3.4, 1e-05, 41, 22.08, -3.4, 0.40033, 32, 66.27, 44.44, 0.59966, 3, 40, 46.9, -9.05, 0, 41, 23.98, -9.05, 0.45012, 32, 71.79, 46.7, 0.54988, 3, 40, 40.83, -9.07, 0, 41, 17.91, + -9.07, 0.5829, 32, 72.21, 40.65, 0.4171, 3, 40, 38.56, -9.08, 4e-05, 41, 15.64, -9.08, 0.72131, 32, 72.37, 38.38, 0.27865, 3, 40, 36.78, -9.09, 0.00031, 41, 13.86, -9.09, 0.8264, 32, + 72.49, 36.6, 0.17329, 3, 40, 33.93, -9.1, 0.00157, 41, 11, -9.1, 0.90359, 32, 72.69, 33.76, 0.09484, 3, 40, 31.22, -9.11, 0.00537, 41, 8.3, -9.11, 0.94975, 32, 72.87, 31.05, 0.04488, + 3, 40, 28.77, -9.12, 0.01601, 41, 5.85, -9.12, 0.96404, 32, 73.04, 28.61, 0.01996, 3, 40, 26.12, -9.13, 0.03803, 41, 3.2, -9.13, 0.95562, 32, 73.22, 25.97, 0.00635, 3, 40, 23.82, + -9.14, 0.08031, 41, 0.9, -9.14, 0.91597, 32, 73.38, 23.67, 0.00372, 4, 39, 43.47, -9.15, 0, 40, 21.13, -9.15, 0.14592, 41, -1.79, -9.15, 0.85165, 32, 73.57, 20.99, 0.00243, 4, 39, + 40.71, -9.16, 2e-05, 40, 18.37, -9.16, 0.23867, 41, -4.55, -9.16, 0.75671, 32, 73.76, 18.24, 0.0046, 4, 39, 37.66, -9.17, 0.00014, 40, 15.32, -9.17, 0.35275, 41, -7.6, -9.17, + 0.64256, 32, 73.97, 15.19, 0.00455, 4, 39, 35.13, -9.18, 0.00092, 40, 12.8, -9.18, 0.48034, 41, -10.13, -9.18, 0.51198, 32, 74.14, 12.68, 0.00676, 4, 39, 31.91, -9.19, 0.00375, 40, + 9.57, -9.19, 0.61095, 41, -13.35, -9.19, 0.38019, 32, 74.36, 9.46, 0.00512, 4, 39, 28.47, -9.21, 0.01298, 40, 6.13, -9.21, 0.72267, 41, -16.79, -9.21, 0.25841, 32, 74.6, 6.03, + 0.00594, 4, 39, 25.59, -9.22, 0.03422, 40, 3.25, -9.22, 0.80451, 41, -19.67, -9.22, 0.15782, 32, 74.8, 3.15, 0.00345, 4, 39, 22.68, -9.23, 0.07754, 40, 0.34, -9.23, 0.83155, 41, + -22.58, -9.23, 0.08642, 32, 75, 0.25, 0.00449, 4, 39, 19.52, -9.24, 0.14705, 40, -2.82, -9.24, 0.80991, 41, -25.74, -9.24, 0.04032, 32, 75.22, -2.9, 0.00272, 4, 39, 16.15, -9.25, + 0.24563, 40, -6.18, -9.25, 0.73344, 41, -29.11, -9.25, 0.01645, 32, 75.45, -6.26, 0.00448, 4, 39, 13.09, -9.27, 0.36774, 40, -9.24, -9.27, 0.62371, 41, -32.17, -9.27, 0.00512, 32, + 75.66, -9.31, 0.00344, 4, 39, 10.21, -9.28, 0.50372, 40, -12.13, -9.28, 0.49001, 41, -35.05, -9.28, 0.00135, 32, 75.86, -12.19, 0.00491, 4, 39, 7.08, -9.29, 0.64487, 40, -15.26, + -9.29, 0.35177, 41, -38.18, -9.29, 0.00021, 32, 76.08, -15.32, 0.00314, 4, 39, 3.26, -9.3, 0.77, 40, -19.08, -9.3, 0.22651, 41, -42, -9.3, 3e-05, 32, 76.34, -19.12, 0.00346, 4, 39, + -0.32, -9.32, 0.87272, 40, -22.66, -9.32, 0.1254, 41, -45.58, -9.32, 0, 32, 76.59, -22.69, 0.00188, 3, 39, -3.57, -9.33, 0.9351, 40, -25.91, -9.33, 0.0605, 32, 76.81, -25.94, 0.0044, + 3, 39, -7.54, -9.35, 0.96153, 40, -29.88, -9.35, 0.02278, 32, 77.09, -29.9, 0.01569, 3, 39, -9.85, -9.35, 0.93655, 40, -32.19, -9.35, 0.00657, 32, 77.24, -32.21, 0.05688, 3, 39, + -11.87, -9.36, 0.83576, 40, -34.2, -9.36, 0.00151, 32, 77.38, -34.21, 0.16273, 3, 39, -14.74, -9.37, 0.65143, 40, -37.08, -9.37, 0.00023, 32, 77.58, -37.08, 0.34834, 3, 39, -16.89, + -9.38, 0.4382, 40, -39.23, -9.38, 2e-05, 32, 77.73, -39.23, 0.56178, 3, 39, -18.76, -9.39, 0.27507, 40, -41.1, -9.39, 0, 32, 77.86, -41.09, 0.72493, 3, 39, -18.76, -2.89, 0.21414, + 40, -41.1, -2.89, 2e-05, 32, 71.37, -41.51, 0.78584, 3, 39, -18.76, 1.38, 0.19077, 40, -41.1, 1.38, 0.00024, 32, 67.11, -41.79, 0.80899, 3, 39, -18.76, 7.5, 0.1765, 40, -41.1, 7.5, + 0.00116, 32, 61.01, -42.19, 0.82235, 4, 39, -16.28, 11.88, 0.15382, 40, -38.62, 11.88, 0.00307, 41, -61.54, 11.88, 1e-05, 32, 56.48, -40, 0.84309, 4, 39, -11.9, 19.61, 0.11079, 40, + -34.24, 19.61, 0.0029, 41, -57.16, 19.61, 0.00014, 32, 48.48, -36.13, 0.88617, 4, 39, 14.63, 66.47, 0.04584, 40, -7.7, 66.47, 0.00083, 41, -30.63, 66.47, 0.00037, 32, -0.01, -12.7, + 0.95296, 4, 39, 22.29, 66.47, 0.02247, 40, -0.04, 66.47, 0.00083, 41, -22.97, 66.47, 0.00288, 32, -0.51, -5.06, 0.97382, 4, 39, 27.54, 66.47, 0.01007, 40, 5.2, 66.47, 0.00155, 41, + -17.72, 66.47, 0.0104, 32, -0.85, 0.17, 0.97798, 4, 39, 34.04, 66.47, 0.00272, 40, 11.7, 66.47, 0.00045, 41, -11.22, 66.47, 0.02285, 32, -1.28, 6.66, 0.97398, 4, 39, 39.96, 66.47, + 0.00033, 40, 17.62, 66.47, 0.00011, 41, -5.3, 66.47, 0.0498, 32, -1.66, 12.57, 0.94976, 3, 39, -16.24, -2.91, 0.33437, 40, -38.58, -2.91, 0.0002, 32, 71.23, -39, 0.66543, 3, 39, + -14.53, 1.37, 0.32645, 40, -36.87, 1.37, 0.00078, 32, 66.85, -37.57, 0.67277, 4, 39, -12.36, 7.36, 0.307, 40, -34.7, 7.36, 0.00285, 41, -57.62, 7.36, 1e-05, 32, 60.73, -35.79, + 0.69014, 4, 39, -9.97, 11.91, 0.26477, 40, -32.31, 11.91, 0.00971, 41, -55.23, 11.91, 0.00027, 32, 56.04, -33.7, 0.72525, 4, 39, -6.21, 19.66, 0.19881, 40, -28.55, 19.66, 0.00959, + 41, -51.47, 19.66, 0.00132, 32, 48.05, -30.46, 0.79028, 4, 39, 24.46, 19.97, 0.10712, 40, 2.12, 19.97, 0.11704, 41, -20.8, 19.97, 0.11672, 32, 45.75, 0.12, 0.65912, 4, 39, 53.97, + 20.27, 0.00116, 40, 31.63, 20.27, 0.00313, 41, 8.71, 20.27, 0.2148, 32, 43.53, 29.55, 0.7809, 4, 39, 57.02, 12.2, 0.0001, 40, 34.68, 12.2, 0.00083, 41, 11.76, 12.2, 0.29942, 32, + 51.38, 33.12, 0.69965, 3, 40, 36.75, 5.8, 0.00034, 41, 13.82, 5.8, 0.378, 32, 57.63, 35.6, 0.62166, 3, 40, 38.1, 1.08, 0.00022, 41, 15.18, 1.08, 0.45653, 32, 62.25, 37.26, 0.54325, + 3, 40, 39.36, -3.36, 0.00015, 41, 16.43, -3.36, 0.53433, 32, 66.61, 38.8, 0.46552, 4, 39, 23.97, 12.06, 0.12565, 40, 1.63, 12.06, 0.24275, 41, -21.29, 12.06, 0.14114, 32, 53.68, + 0.15, 0.49046, 4, 39, 23.54, 6.58, 0.11007, 40, 1.2, 6.58, 0.47217, 41, -21.72, 6.58, 0.12893, 32, 59.17, 0.08, 0.28883, 4, 39, 23.28, 1.22, 0.10884, 40, 0.94, 1.22, 0.60558, 41, + -21.98, 1.22, 0.12698, 32, 64.53, 0.17, 0.1586, 4, 39, 23.11, -3.14, 0.10666, 40, 0.77, -3.14, 0.70334, 41, -22.15, -3.14, 0.12133, 32, 68.89, 0.28, 0.06866, 4, 39, 6.87, 19.8, + 0.29773, 40, -15.47, 19.8, 0.06022, 41, -38.39, 19.8, 0.01488, 32, 47.07, -17.41, 0.62717, 4, 39, 3.75, 11.97, 0.44072, 40, -18.59, 11.97, 0.09602, 41, -41.51, 11.97, 0.01064, 32, + 55.08, -20.02, 0.45261, 4, 39, 1.91, 7.05, 0.66419, 40, -20.42, 7.05, 0.11803, 41, -43.35, 7.05, 0.002, 32, 60.11, -21.53, 0.21579, 4, 39, 0.03, 1.31, 0.77187, 40, -22.31, 1.31, + 0.12352, 41, -45.23, 1.31, 0.00043, 32, 65.96, -23.04, 0.10418, 4, 39, -1.27, -2.99, 0.84303, 40, -23.61, -2.99, 0.11246, 41, -46.53, -2.99, 0.00018, 32, 70.34, -24.05, 0.04432, 4, + 39, -1.8, 26.91, 0.12744, 40, -24.14, 26.91, 0.00959, 41, -47.06, 26.91, 0.0076, 32, 40.54, -26.53, 0.85537, 4, 39, 24.96, 27.56, 0.0719, 40, 2.62, 27.56, 0.03639, 41, -20.3, 27.56, + 0.07572, 32, 38.14, 0.13, 0.81598, 4, 39, 50.76, 27.7, 0.00702, 40, 28.42, 27.7, 0.00523, 41, 5.5, 27.7, 0.131, 32, 36.32, 25.87, 0.85675, 4, 39, 3.83, 36.15, 0.04791, 40, -18.51, + 36.15, 0.00352, 41, -41.43, 36.15, 0.00803, 32, 30.95, -21.51, 0.94054, 4, 39, 25.65, 37.95, 0.02662, 40, 3.31, 37.95, 0.00775, 41, -19.61, 37.95, 0.02767, 32, 27.73, 0.14, 0.93795, + 4, 39, 46.64, 37.25, 0.00753, 40, 24.3, 37.25, 0.00227, 41, 1.38, 37.25, 0.04846, 32, 27.06, 21.14, 0.94174, 4, 39, 41.75, 20.15, 0.01306, 40, 19.41, 20.15, 0.04509, 41, -3.51, + 20.15, 0.32134, 32, 44.45, 17.37, 0.62052, 4, 39, 43.25, 12.14, 0.00895, 40, 20.91, 12.14, 0.07841, 41, -2.01, 12.14, 0.49568, 32, 52.34, 19.39, 0.41696, 4, 39, 44.35, 6.12, 0.0015, + 40, 22.01, 6.12, 0.09572, 41, -0.91, 6.12, 0.67014, 32, 58.27, 20.88, 0.23264, 4, 39, 45.08, 1.14, 0.00025, 40, 22.74, 1.14, 0.108, 41, -0.18, 1.14, 0.76841, 32, 63.2, 21.93, + 0.12334, 4, 39, 45.58, -3.27, 0.0001, 40, 23.24, -3.27, 0.10937, 41, 0.32, -3.27, 0.83473, 32, 67.56, 22.71, 0.0558, 4, 39, 40.33, 27.64, 0.02381, 40, 18, 27.64, 0.02132, 41, -4.93, + 27.64, 0.16866, 32, 37.06, 15.47, 0.78621, 4, 39, 9.71, 27.19, 0.16236, 40, -12.63, 27.19, 0.02827, 41, -35.55, 27.19, 0.02548, 32, 39.51, -15.06, 0.78388, 4, 39, 15.01, 19.88, + 0.23124, 40, -7.33, 19.88, 0.11759, 41, -30.25, 19.88, 0.04679, 32, 46.46, -9.29, 0.60438, 4, 39, 13.78, 12.01, 0.29354, 40, -8.56, 12.01, 0.19873, 41, -31.48, 12.01, 0.04427, 32, + 54.39, -10.01, 0.46346, 4, 39, 12.95, 6.81, 0.37869, 40, -9.39, 6.81, 0.34588, 41, -32.31, 6.81, 0.01968, 32, 59.63, -10.5, 0.25575, 4, 39, 11.95, 1.27, 0.42861, 40, -10.39, 1.27, + 0.42317, 41, -33.31, 1.27, 0.01297, 32, 65.23, -11.14, 0.13524, 4, 39, 11.29, -3.07, 0.46725, 40, -11.05, -3.07, 0.46538, 41, -33.97, -3.07, 0.0097, 32, 69.59, -11.51, 0.05768, 4, + 39, -0.59, 19.72, 0.32338, 40, -22.92, 19.72, 0.02881, 41, -45.85, 19.72, 0.003, 32, 47.63, -24.85, 0.64481, 4, 39, -3.82, 11.93, 0.4391, 40, -26.16, 11.93, 0.03345, 41, -49.08, + 11.93, 0.00177, 32, 55.61, -27.57, 0.52567, 4, 39, -5.89, 7.22, 0.65491, 40, -28.23, 7.22, 0.02015, 41, -51.15, 7.22, 0.00017, 32, 60.45, -29.33, 0.32476, 4, 39, -8.13, 1.34, + 0.75275, 40, -30.47, 1.34, 0.01396, 41, -53.39, 1.34, 1e-05, 32, 66.46, -31.18, 0.23328, 3, 39, -9.63, -2.94, 0.80478, 40, -31.96, -2.94, 0.00944, 32, 70.83, -32.39, 0.18578, 4, 39, + 33.3, 20.06, 0.04166, 40, 10.96, 20.06, 0.10286, 41, -11.96, 20.06, 0.24857, 32, 45.08, 8.94, 0.60691, 4, 39, 33.97, 12.1, 0.03817, 40, 11.63, 12.1, 0.17811, 41, -11.29, 12.1, + 0.32257, 32, 52.98, 10.13, 0.46115, 4, 39, 34.3, 6.34, 0.01531, 40, 11.97, 6.34, 0.31162, 41, -10.96, 6.34, 0.40881, 32, 58.71, 10.84, 0.26426, 4, 39, 34.72, 1.18, 0.00955, 40, + 12.39, 1.18, 0.39036, 41, -10.54, 1.18, 0.4561, 32, 63.83, 11.59, 0.14399, 4, 39, 34.8, -3.2, 0.00731, 40, 12.46, -3.2, 0.44195, 41, -10.46, -3.2, 0.48699, 32, 68.2, 11.96, 0.06375, + 4, 39, 48.21, 20.21, 0.00241, 40, 25.88, 20.21, 0.01421, 41, 2.95, 20.21, 0.36275, 32, 43.96, 23.82, 0.62063, 4, 39, 50.54, 12.17, 0.00034, 40, 28.2, 12.17, 0.01068, 41, 5.28, 12.17, + 0.5453, 32, 51.83, 26.66, 0.44368, 4, 39, 52.52, 5.95, 2e-05, 40, 30.19, 5.95, 0.00999, 41, 7.26, 5.95, 0.66888, 32, 57.92, 29.04, 0.32111, 3, 40, 31.52, 1.11, 0.01011, 41, 8.6, + 1.11, 0.76268, 32, 62.66, 30.7, 0.22721, 3, 40, 32.61, -3.32, 0.00863, 41, 9.68, -3.32, 0.83296, 32, 67.01, 32.06, 0.15841, 4, 39, -9.21, 7.29, 0.52586, 40, -31.55, 7.29, 0.0057, 41, + -54.47, 7.29, 1e-05, 32, 60.59, -32.65, 0.46842, 3, 39, -11.3, 1.36, 0.56698, 40, -33.64, 1.36, 0.00311, 32, 66.65, -34.34, 0.42991, 3, 39, -12.66, -2.93, 0.60013, 40, -35, -2.93, + 0.00167, 32, 71.01, -35.42, 0.39821, 4, 39, -5.46, -2.97, 0.89102, 40, -27.8, -2.97, 0.03888, 41, -50.72, -2.97, 1e-05, 32, 70.59, -28.24, 0.07008, 4, 39, -4.18, 1.33, 0.83362, 40, + -26.52, 1.33, 0.04645, 41, -49.44, 1.33, 3e-05, 32, 66.21, -27.24, 0.1199, 4, 39, -2.26, 7.14, 0.75973, 40, -24.6, 7.14, 0.05134, 41, -47.52, 7.14, 0.00026, 32, 60.29, -25.7, + 0.18867, 4, 39, 7.35, 6.93, 0.57235, 40, -14.98, 6.93, 0.23863, 41, -37.91, 6.93, 0.00435, 32, 59.87, -16.09, 0.18467, 4, 39, 5.9, 1.29, 0.63011, 40, -16.44, 1.29, 0.25936, 41, + -39.36, 1.29, 0.00243, 32, 65.6, -17.18, 0.1081, 4, 39, 4.86, -3.03, 0.68809, 40, -17.48, -3.03, 0.26358, 41, -40.4, -3.03, 0.00168, 32, 69.98, -17.93, 0.04665, 4, 39, 17.76, 6.7, + 0.22941, 40, -4.58, 6.7, 0.4879, 41, -27.5, 6.7, 0.05094, 32, 59.42, -5.7, 0.23175, 4, 39, 17.11, 1.25, 0.24296, 40, -5.23, 1.25, 0.56856, 41, -28.15, 1.25, 0.04581, 32, 64.91, + -5.99, 0.14267, 4, 39, 16.71, -3.1, 0.25552, 40, -5.62, -3.1, 0.64168, 41, -28.55, -3.1, 0.03992, 32, 69.27, -6.1, 0.06288, 4, 39, 28.55, -3.17, 0.03276, 40, 6.22, -3.17, 0.62363, + 41, -16.71, -3.17, 0.27658, 32, 68.57, 5.72, 0.06703, 4, 39, 28.55, 1.2, 0.0367, 40, 6.21, 1.21, 0.54514, 41, -16.71, 1.21, 0.26974, 32, 64.21, 5.43, 0.14843, 4, 39, 28.71, 6.47, + 0.04075, 40, 6.37, 6.47, 0.46337, 41, -16.55, 6.47, 0.25797, 32, 58.95, 5.25, 0.23791, 4, 39, 39.28, 6.23, 0.00305, 40, 16.94, 6.24, 0.20572, 41, -5.98, 6.24, 0.59307, 32, 58.49, + 15.81, 0.19817, 4, 39, 39.51, 1.16, 0.00156, 40, 17.17, 1.16, 0.23228, 41, -5.75, 1.16, 0.64631, 32, 63.54, 16.37, 0.11984, 4, 39, 40.07, -3.24, 0.00112, 40, 17.74, -3.24, 0.25061, + 41, -5.19, -3.24, 0.69415, 32, 67.89, 17.22, 0.05412, 4, 39, 50.23, -3.29, 0, 40, 27.89, -3.29, 0.036, 41, 4.97, -3.29, 0.88144, 32, 67.29, 27.36, 0.08255, 4, 39, 49.51, 1.13, 2e-05, + 40, 27.17, 1.13, 0.03826, 41, 4.25, 1.13, 0.81357, 32, 62.92, 26.35, 0.14816, 4, 39, 48.55, 6.03, 0.00027, 40, 26.22, 6.03, 0.03577, 41, 3.29, 6.03, 0.72045, 32, 58.09, 25.08, + 0.24351, 4, 39, 47.11, 12.16, 0.00156, 40, 24.77, 12.16, 0.03311, 41, 1.85, 12.16, 0.61234, 32, 52.07, 23.24, 0.35299, 4, 39, 53.99, 12.19, 1e-05, 40, 31.66, 12.19, 0.00266, 41, + 8.73, 12.19, 0.47035, 32, 51.59, 30.11, 0.52698, 3, 40, 33.02, 5.88, 0.00213, 41, 10.1, 5.88, 0.54797, 32, 57.79, 31.88, 0.4499, 3, 40, 34.54, 1.1, 0.0018, 41, 11.62, 1.1, 0.63247, + 32, 62.47, 33.7, 0.36573, 3, 40, 35.58, -3.34, 0.00152, 41, 12.66, -3.34, 0.71351, 32, 66.83, 35.03, 0.28497, 3, 39, -17.72, -6.71, 0.31251, 40, -40.05, -6.71, 1e-05, 32, 75.11, + -40.22, 0.68748, 3, 39, -13.83, -6.56, 0.64755, 40, -36.17, -6.56, 0.00038, 32, 74.72, -36.36, 0.35207, 3, 39, -10.89, -6.57, 0.83546, 40, -33.23, -6.57, 0.00245, 32, 74.53, -33.42, + 0.1621, 3, 39, -6.58, -6.39, 0.9505, 40, -28.91, -6.39, 0.02598, 32, 74.07, -29.13, 0.02352, 4, 39, -2.51, -6.41, 0.9185, 40, -24.85, -6.41, 0.06986, 41, -47.77, -6.41, 1e-05, 32, + 73.83, -25.07, 0.01163, 4, 39, 3.97, -6.54, 0.7539, 40, -18.37, -6.54, 0.23416, 41, -41.29, -6.54, 0.00019, 32, 73.54, -18.6, 0.01175, 4, 39, 10.73, -6.3, 0.4945, 40, -11.61, -6.29, + 0.48778, 41, -34.53, -6.29, 0.00242, 32, 72.85, -11.87, 0.01529, 4, 39, 16.42, -6.31, 0.24467, 40, -5.92, -6.31, 0.71967, 41, -28.84, -6.31, 0.01969, 32, 72.5, -6.18, 0.01597, 4, 39, + 22.88, -6.46, 0.08074, 40, 0.54, -6.46, 0.81091, 41, -22.38, -6.46, 0.09131, 32, 72.22, 0.27, 0.01704, 4, 39, 28.51, -6.42, 0.01543, 40, 6.17, -6.42, 0.70591, 41, -16.75, -6.42, + 0.26031, 32, 71.82, 5.89, 0.01836, 4, 39, 34.97, -6.29, 0.00164, 40, 12.64, -6.29, 0.47309, 41, -10.29, -6.29, 0.50689, 32, 71.27, 12.33, 0.01837, 4, 39, 40.42, -6.47, 0.0001, 40, + 18.08, -6.47, 0.23958, 41, -4.84, -6.47, 0.7461, 32, 71.1, 17.78, 0.01421, 4, 39, 45.89, -6.5, 0, 40, 23.56, -6.5, 0.08431, 41, 0.63, -6.5, 0.9025, 32, 70.76, 23.24, 0.01319, 3, 40, + 28.36, -6.37, 0.01867, 41, 5.43, -6.37, 0.94991, 32, 70.33, 28.02, 0.03142, 3, 40, 33.31, -6.41, 0.00244, 41, 10.39, -6.41, 0.88788, 32, 70.05, 32.97, 0.10968, 3, 40, 36.23, -6.46, + 0.00046, 41, 13.31, -6.46, 0.80558, 32, 69.91, 35.88, 0.19395, 3, 40, 40.12, -6.31, 1e-05, 41, 17.2, -6.31, 0.61334, 32, 69.5, 39.76, 0.38665, 4, 39, 0.4, -6.47, 0.86555, 40, -21.94, + -6.47, 0.12959, 41, -44.86, -6.47, 1e-05, 32, 73.7, -22.16, 0.00485, 3, 39, -9.01, -6.49, 0.93616, 40, -31.35, -6.49, 0.00716, 32, 74.33, -31.55, 0.05668, 3, 39, -16.19, -6.65, + 0.44814, 40, -38.53, -6.65, 3e-05, 32, 74.96, -38.7, 0.55184, 4, 39, 7.48, -6.41, 0.63866, 40, -14.86, -6.41, 0.354, 41, -37.78, -6.41, 0.00037, 32, 73.18, -15.1, 0.00698, 4, 39, + 13.4, -6.3, 0.36468, 40, -8.94, -6.3, 0.62161, 41, -31.86, -6.3, 0.00581, 32, 72.69, -9.2, 0.0079, 4, 39, 19.68, -6.38, 0.14684, 40, -2.65, -6.38, 0.80383, 41, -25.58, -6.38, + 0.04176, 32, 72.36, -2.92, 0.00757, 4, 39, 25.54, -6.44, 0.03499, 40, 3.2, -6.44, 0.79745, 41, -19.72, -6.44, 0.15898, 32, 72.03, 2.92, 0.00858, 4, 39, 31.96, -6.35, 0.00417, 40, + 9.62, -6.35, 0.60634, 41, -13.3, -6.35, 0.37927, 32, 71.53, 9.32, 0.01022, 4, 39, 37.62, -6.38, 0.00021, 40, 15.28, -6.38, 0.35157, 41, -7.64, -6.38, 0.63918, 32, 71.18, 14.97, + 0.00904, 4, 39, 43.32, -6.48, 1e-05, 40, 20.98, -6.48, 0.14688, 41, -1.94, -6.48, 0.84692, 32, 70.92, 20.67, 0.00619, 3, 40, 25.81, -6.44, 0.03919, 41, 2.89, -6.44, 0.95006, 32, + 70.56, 25.48, 0.01074, 3, 40, 30.92, -6.39, 0.00591, 41, 7.99, -6.39, 0.9433, 32, 70.18, 30.58, 0.05079, 3, 40, 38.04, -6.39, 5e-05, 41, 15.12, -6.39, 0.72615, 32, 69.72, 37.69, + 0.2738 + ], + "hull": 46, + "edges": [ + 80, 82, 90, 0, 10, 8, 70, 72, 72, 74, 74, 76, 4, 6, 6, 8, 76, 78, 78, 80, 4, 2, 2, 0, 72, 92, 74, 94, 92, 94, 76, 96, 94, 96, 78, 98, 96, 98, 80, 100, 98, 100, 82, 84, 84, 86, 86, + 88, 88, 90, 0, 104, 2, 106, 104, 106, 4, 108, 106, 108, 6, 110, 108, 110, 8, 112, 110, 112, 10, 12, 102, 114, 114, 116, 116, 118, 118, 120, 122, 124, 124, 126, 126, 128, 128, 130, + 132, 100, 134, 102, 136, 104, 84, 138, 138, 132, 86, 140, 140, 134, 138, 140, 88, 142, 142, 136, 140, 142, 144, 146, 146, 148, 148, 150, 150, 152, 134, 154, 154, 136, 144, 154, 132, + 156, 156, 134, 122, 156, 102, 158, 158, 122, 114, 160, 160, 124, 158, 160, 160, 162, 162, 164, 164, 166, 100, 168, 168, 122, 98, 170, 170, 124, 168, 170, 170, 172, 172, 174, 174, + 176, 102, 178, 178, 144, 114, 180, 180, 146, 178, 180, 180, 182, 182, 184, 184, 186, 104, 188, 188, 144, 188, 190, 190, 192, 192, 194, 194, 196, 96, 198, 198, 172, 94, 200, 200, 174, + 198, 200, 92, 202, 202, 176, 200, 202, 64, 66, 58, 60, 130, 204, 204, 176, 128, 206, 206, 174, 204, 206, 126, 208, 208, 172, 206, 208, 126, 210, 210, 162, 128, 212, 212, 164, 210, + 212, 130, 214, 214, 166, 212, 214, 116, 216, 216, 162, 118, 218, 218, 164, 216, 218, 120, 220, 220, 166, 218, 220, 120, 222, 222, 186, 118, 224, 224, 184, 222, 224, 116, 226, 226, + 182, 224, 226, 148, 228, 228, 182, 150, 230, 230, 184, 228, 230, 152, 232, 232, 186, 230, 232, 152, 234, 234, 196, 150, 236, 236, 194, 234, 236, 148, 238, 238, 192, 236, 238, 146, + 240, 240, 190, 238, 240, 106, 242, 242, 190, 108, 244, 244, 192, 242, 244, 110, 246, 246, 194, 244, 246, 112, 248, 248, 196, 246, 248, 16, 18, 70, 250, 250, 92, 66, 252, 252, 202, + 64, 254, 254, 176, 252, 254, 60, 256, 256, 204, 58, 258, 258, 130, 256, 258, 54, 260, 260, 214, 50, 262, 262, 166, 46, 264, 264, 220, 42, 266, 266, 120, 38, 268, 268, 222, 34, 270, + 270, 186, 30, 272, 272, 232, 26, 274, 274, 152, 22, 276, 276, 234, 18, 278, 278, 196, 16, 280, 280, 248, 278, 280, 12, 282, 282, 112, 258, 284, 284, 260, 54, 56, 56, 58, 284, 56, + 254, 286, 286, 256, 60, 62, 62, 64, 286, 62, 250, 288, 288, 252, 66, 68, 68, 70, 288, 68, 260, 290, 290, 262, 50, 52, 52, 54, 290, 52, 262, 292, 292, 264, 46, 48, 48, 50, 292, 48, + 264, 294, 294, 266, 42, 44, 44, 46, 294, 44, 266, 296, 296, 268, 38, 40, 40, 42, 296, 40, 268, 298, 298, 270, 34, 36, 36, 38, 298, 36, 270, 300, 300, 272, 30, 32, 32, 34, 300, 32, + 272, 302, 302, 274, 26, 28, 28, 30, 302, 28, 274, 304, 304, 276, 22, 24, 24, 26, 304, 24, 276, 306, 306, 278, 18, 20, 20, 22, 306, 20, 280, 308, 308, 282, 12, 14, 14, 16, 308, 14 + ], + "width": 87.05882352941177, + "height": 80.0, + "path": "summer-a.ear-left-bubble", + "x": 0.470588235294116, + "y": 0.0 + } + }, + "ear-left-bubble-02": { + "ear-left-bubble": { + "type": "mesh", + "uvs": [ + 0.87714, 0.57697, 0.91393, 0.67811, 0.94364, 0.75977, 0.96133, 0.8176, 0.97838, 0.87333, 1, 0.94398, 0.93104, 0.94427, 0.90524, 0.94438, 0.88494, 0.94447, 0.85255, 0.94461, 0.82176, + 0.94474, 0.79396, 0.94486, 0.76382, 0.94499, 0.73767, 0.9451, 0.70713, 0.94523, 0.67579, 0.94536, 0.64108, 0.94551, 0.61244, 0.94564, 0.5758, 0.94579, 0.5367, 0.94596, 0.50394, + 0.9461, 0.47091, 0.94624, 0.435, 0.94639, 0.39675, 0.94656, 0.36198, 0.94671, 0.32916, 0.94685, 0.29359, 0.947, 0.25022, 0.94718, 0.20956, 0.94736, 0.17261, 0.94751, 0.12749, + 0.94771, 0.1012, 0.94782, 0.07834, 0.94792, 0.0457, 0.94806, 0.02123, 0.94816, 0, 0.94825, 0, 0.86703, 0, 0.81359, 0, 0.73715, 0.02817, 0.68242, 0.07791, 0.5858, 0.37947, 0, 0.46651, + 0, 0.5261, 0, 0.59994, 0, 0.66726, 0, 0.02864, 0.86721, 0.04805, 0.81379, 0.07275, 0.7389, 0.0999, 0.68207, 0.14259, 0.58508, 0.49108, 0.58123, 0.82646, 0.57753, 0.86109, 0.67837, + 0.88458, 0.75835, 0.90003, 0.81734, 0.91424, 0.87292, 0.48557, 0.6802, 0.48069, 0.74867, 0.47772, 0.81558, 0.4758, 0.87009, 0.29126, 0.58344, 0.25576, 0.68132, 0.23492, 0.74278, + 0.2135, 0.81448, 0.19874, 0.86831, 0.19271, 0.49455, 0.4968, 0.48641, 0.79002, 0.48462, 0.25666, 0.37903, 0.50462, 0.35653, 0.74321, 0.36527, 0.68757, 0.57906, 0.70466, 0.67913, + 0.71716, 0.75434, 0.72541, 0.81661, 0.73109, 0.87174, 0.67152, 0.48534, 0.32349, 0.49105, 0.38378, 0.58242, 0.36974, 0.68076, 0.36036, 0.74579, 0.34895, 0.81504, 0.34148, 0.86923, + 0.20652, 0.58437, 0.16979, 0.68173, 0.1462, 0.74066, 0.12077, 0.81409, 0.10379, 0.8677, 0.59158, 0.58012, 0.59921, 0.67965, 0.60299, 0.7516, 0.60776, 0.81612, 0.60866, 0.87095, + 0.76107, 0.57825, 0.78751, 0.67873, 0.81003, 0.75656, 0.82525, 0.81703, 0.83754, 0.87243, 0.10852, 0.73975, 0.08479, 0.81394, 0.06934, 0.86747, 0.15113, 0.868, 0.1657, 0.81428, + 0.18746, 0.74164, 0.29675, 0.74426, 0.28022, 0.81476, 0.26841, 0.86876, 0.41495, 0.7471, 0.40761, 0.81529, 0.4031, 0.86963, 0.53765, 0.87049, 0.53762, 0.81583, 0.53944, 0.75008, + 0.6595, 0.75296, 0.66217, 0.81635, 0.66857, 0.87134, 0.78397, 0.87208, 0.7758, 0.81682, 0.76492, 0.75548, 0.74852, 0.67892, 0.82675, 0.67854, 0.84222, 0.75734, 0.8595, 0.81717, + 0.87132, 0.87264, 0.01186, 0.9147, 0.056, 0.91293, 0.08943, 0.91297, 0.13846, 0.91074, 0.18465, 0.91102, 0.25824, 0.91262, 0.33507, 0.90958, 0.39978, 0.90977, 0.47313, 0.91161, + 0.53714, 0.91117, 0.61061, 0.90948, 0.67252, 0.91178, 0.73471, 0.91209, 0.78925, 0.91054, 0.84557, 0.91105, 0.87872, 0.91169, 0.92292, 0.90979, 0.21772, 0.91173, 0.11081, 0.912, + 0.02923, 0.91401, 0.29821, 0.91104, 0.36548, 0.90967, 0.43685, 0.9107, 0.50336, 0.9114, 0.57635, 0.91027, 0.64066, 0.9106, 0.70543, 0.91195, 0.76031, 0.91136, 0.81833, 0.9108, + 0.89934, 0.9108 + ], + "triangles": [ + 46, 36, 37, 125, 36, 46, 46, 47, 101, 101, 47, 100, 144, 46, 126, 125, 46, 144, 47, 46, 37, 34, 125, 144, 35, 125, 34, 35, 36, 125, 56, 55, 3, 56, 3, 4, 5, 6, 4, 123, 54, 55, 55, 54, + 2, 55, 2, 3, 85, 86, 49, 86, 99, 49, 47, 48, 100, 122, 121, 53, 49, 50, 85, 85, 50, 84, 48, 39, 49, 38, 39, 48, 49, 40, 50, 39, 40, 49, 95, 94, 52, 54, 1, 2, 121, 52, 53, 53, 0, 1, + 53, 52, 0, 113, 57, 90, 108, 80, 57, 62, 61, 80, 80, 79, 57, 80, 61, 79, 57, 89, 90, 57, 51, 89, 57, 79, 51, 90, 72, 73, 90, 89, 72, 40, 69, 66, 84, 66, 61, 61, 78, 79, 61, 66, 78, + 51, 79, 67, 51, 67, 89, 67, 79, 78, 89, 77, 72, 89, 67, 77, 72, 77, 94, 94, 68, 52, 94, 77, 68, 66, 69, 78, 41, 69, 40, 67, 78, 70, 67, 70, 77, 70, 78, 69, 77, 71, 68, 77, 70, 71, + 71, 45, 0, 69, 42, 70, 69, 41, 42, 71, 70, 44, 70, 43, 44, 44, 45, 71, 71, 0, 68, 70, 42, 43, 52, 68, 0, 54, 53, 1, 50, 40, 66, 50, 66, 84, 47, 37, 38, 48, 47, 38, 48, 49, 99, 121, + 95, 52, 122, 53, 54, 100, 48, 99, 62, 84, 61, 94, 73, 72, 85, 84, 62, 113, 90, 91, 141, 56, 4, 6, 141, 4, 124, 55, 56, 17, 150, 16, 17, 135, 150, 16, 136, 15, 16, 150, 136, 15, 151, + 14, 15, 136, 151, 14, 137, 13, 14, 151, 137, 13, 152, 12, 13, 137, 152, 12, 138, 11, 12, 152, 138, 11, 153, 10, 11, 138, 153, 10, 139, 9, 10, 153, 139, 9, 140, 8, 9, 139, 140, 8, + 154, 7, 8, 140, 154, 7, 141, 6, 7, 154, 141, 152, 137, 76, 137, 151, 76, 76, 151, 116, 150, 116, 136, 151, 136, 116, 154, 140, 124, 152, 117, 138, 152, 76, 117, 153, 98, 139, 140, + 139, 124, 139, 98, 124, 154, 56, 141, 154, 124, 56, 98, 153, 117, 116, 150, 93, 153, 138, 117, 150, 135, 93, 98, 123, 124, 124, 123, 55, 117, 97, 98, 98, 97, 123, 76, 118, 117, 117, + 118, 97, 116, 75, 76, 76, 75, 118, 93, 115, 116, 116, 115, 75, 93, 92, 115, 97, 122, 123, 123, 122, 54, 118, 96, 97, 97, 96, 122, 75, 119, 118, 118, 119, 96, 115, 74, 75, 75, 74, + 119, 92, 114, 115, 115, 114, 74, 92, 91, 114, 96, 121, 122, 119, 95, 96, 96, 95, 121, 74, 120, 119, 119, 120, 95, 114, 73, 74, 74, 73, 120, 73, 114, 90, 114, 91, 90, 120, 73, 94, + 120, 94, 95, 58, 57, 113, 25, 131, 24, 24, 146, 23, 24, 131, 146, 23, 132, 22, 23, 146, 132, 22, 147, 21, 22, 132, 147, 20, 133, 148, 20, 21, 133, 21, 147, 133, 20, 148, 19, 19, 134, + 18, 19, 148, 134, 18, 135, 17, 18, 149, 135, 18, 134, 149, 148, 133, 60, 133, 147, 60, 134, 148, 111, 134, 111, 149, 111, 148, 60, 132, 110, 147, 147, 110, 60, 149, 93, 135, 149, + 111, 93, 132, 146, 110, 131, 83, 146, 146, 83, 110, 111, 92, 93, 60, 59, 111, 59, 112, 111, 111, 112, 92, 110, 109, 60, 60, 109, 59, 83, 82, 110, 110, 82, 109, 92, 112, 91, 112, 113, + 91, 59, 58, 112, 112, 58, 113, 109, 108, 59, 59, 108, 58, 82, 81, 109, 109, 81, 108, 58, 108, 57, 81, 80, 108, 34, 144, 33, 126, 46, 101, 33, 126, 32, 33, 144, 126, 32, 127, 31, 32, + 126, 127, 31, 143, 30, 31, 127, 143, 30, 128, 29, 30, 143, 128, 29, 129, 28, 29, 128, 129, 28, 142, 27, 28, 129, 142, 27, 130, 26, 27, 142, 130, 26, 145, 25, 26, 130, 145, 25, 145, + 131, 126, 101, 127, 127, 88, 143, 127, 101, 88, 130, 107, 145, 130, 142, 107, 143, 88, 128, 129, 65, 142, 142, 65, 107, 131, 145, 83, 128, 102, 129, 129, 102, 65, 128, 88, 102, 83, + 145, 107, 107, 106, 83, 83, 106, 82, 65, 64, 107, 107, 64, 106, 102, 103, 65, 65, 103, 64, 88, 87, 102, 102, 87, 103, 101, 100, 88, 88, 100, 87, 106, 105, 82, 82, 105, 81, 64, 63, + 106, 106, 63, 105, 103, 104, 64, 64, 104, 63, 87, 86, 103, 103, 86, 104, 100, 99, 87, 87, 99, 86, 81, 105, 80, 63, 62, 105, 105, 62, 80, 62, 63, 85, 86, 85, 104, 63, 104, 85 + ], + "vertices": [ + 4, 47, 58.43, 20.31, 0.00012, 48, 36.09, 20.31, 0.00054, 49, 13.17, 20.31, 0.12631, 46, 43.2, 34, 0.87302, 3, 48, 39.33, 12.22, 0.00019, 49, 16.41, 12.22, 0.19743, 46, 51.06, 37.76, + 0.80237, 3, 48, 41.94, 5.69, 6e-05, 49, 19.02, 5.69, 0.26715, 46, 57.41, 40.79, 0.73278, 3, 48, 43.5, 1.06, 1e-05, 49, 20.58, 1.06, 0.33542, 46, 61.92, 42.65, 0.66457, 3, 48, 45, + -3.4, 1e-05, 49, 22.08, -3.4, 0.40033, 46, 66.27, 44.44, 0.59966, 3, 48, 46.9, -9.05, 0, 49, 23.98, -9.05, 0.45012, 46, 71.79, 46.7, 0.54988, 3, 48, 40.83, -9.07, 0, 49, 17.91, + -9.07, 0.5829, 46, 72.21, 40.65, 0.4171, 3, 48, 38.56, -9.08, 4e-05, 49, 15.64, -9.08, 0.72131, 46, 72.37, 38.38, 0.27865, 3, 48, 36.78, -9.09, 0.00031, 49, 13.86, -9.09, 0.8264, 46, + 72.49, 36.6, 0.17329, 3, 48, 33.93, -9.1, 0.00157, 49, 11, -9.1, 0.90359, 46, 72.69, 33.76, 0.09484, 3, 48, 31.22, -9.11, 0.00537, 49, 8.3, -9.11, 0.94975, 46, 72.87, 31.05, 0.04488, + 3, 48, 28.77, -9.12, 0.01601, 49, 5.85, -9.12, 0.96404, 46, 73.04, 28.61, 0.01996, 3, 48, 26.12, -9.13, 0.03803, 49, 3.2, -9.13, 0.95562, 46, 73.22, 25.97, 0.00635, 3, 48, 23.82, + -9.14, 0.08031, 49, 0.9, -9.14, 0.91597, 46, 73.38, 23.67, 0.00372, 4, 47, 43.47, -9.15, 0, 48, 21.13, -9.15, 0.14592, 49, -1.79, -9.15, 0.85165, 46, 73.57, 20.99, 0.00243, 4, 47, + 40.71, -9.16, 2e-05, 48, 18.37, -9.16, 0.23867, 49, -4.55, -9.16, 0.75671, 46, 73.76, 18.24, 0.0046, 4, 47, 37.66, -9.17, 0.00014, 48, 15.32, -9.17, 0.35275, 49, -7.6, -9.17, + 0.64256, 46, 73.97, 15.19, 0.00455, 4, 47, 35.13, -9.18, 0.00092, 48, 12.8, -9.18, 0.48034, 49, -10.13, -9.18, 0.51198, 46, 74.14, 12.68, 0.00676, 4, 47, 31.91, -9.19, 0.00375, 48, + 9.57, -9.19, 0.61095, 49, -13.35, -9.19, 0.38019, 46, 74.36, 9.46, 0.00512, 4, 47, 28.47, -9.21, 0.01298, 48, 6.13, -9.21, 0.72267, 49, -16.79, -9.21, 0.25841, 46, 74.6, 6.03, + 0.00594, 4, 47, 25.59, -9.22, 0.03422, 48, 3.25, -9.22, 0.80451, 49, -19.67, -9.22, 0.15782, 46, 74.8, 3.15, 0.00345, 4, 47, 22.68, -9.23, 0.07754, 48, 0.34, -9.23, 0.83155, 49, + -22.58, -9.23, 0.08642, 46, 75, 0.25, 0.00449, 4, 47, 19.52, -9.24, 0.14705, 48, -2.82, -9.24, 0.80991, 49, -25.74, -9.24, 0.04032, 46, 75.22, -2.9, 0.00272, 4, 47, 16.15, -9.25, + 0.24563, 48, -6.18, -9.25, 0.73344, 49, -29.11, -9.25, 0.01645, 46, 75.45, -6.26, 0.00448, 4, 47, 13.09, -9.27, 0.36774, 48, -9.24, -9.27, 0.62371, 49, -32.17, -9.27, 0.00512, 46, + 75.66, -9.31, 0.00344, 4, 47, 10.21, -9.28, 0.50372, 48, -12.13, -9.28, 0.49001, 49, -35.05, -9.28, 0.00135, 46, 75.86, -12.19, 0.00491, 4, 47, 7.08, -9.29, 0.64487, 48, -15.26, + -9.29, 0.35177, 49, -38.18, -9.29, 0.00021, 46, 76.08, -15.32, 0.00314, 4, 47, 3.26, -9.3, 0.77, 48, -19.08, -9.3, 0.22651, 49, -42, -9.3, 3e-05, 46, 76.34, -19.12, 0.00346, 4, 47, + -0.32, -9.32, 0.87272, 48, -22.66, -9.32, 0.1254, 49, -45.58, -9.32, 0, 46, 76.59, -22.69, 0.00188, 3, 47, -3.57, -9.33, 0.9351, 48, -25.91, -9.33, 0.0605, 46, 76.81, -25.94, 0.0044, + 3, 47, -7.54, -9.35, 0.96153, 48, -29.88, -9.35, 0.02278, 46, 77.09, -29.9, 0.01569, 3, 47, -9.85, -9.35, 0.93655, 48, -32.19, -9.35, 0.00657, 46, 77.24, -32.21, 0.05688, 3, 47, + -11.87, -9.36, 0.83576, 48, -34.2, -9.36, 0.00151, 46, 77.38, -34.21, 0.16273, 3, 47, -14.74, -9.37, 0.65143, 48, -37.08, -9.37, 0.00023, 46, 77.58, -37.08, 0.34834, 3, 47, -16.89, + -9.38, 0.4382, 48, -39.23, -9.38, 2e-05, 46, 77.73, -39.23, 0.56178, 3, 47, -18.76, -9.39, 0.27507, 48, -41.1, -9.39, 0, 46, 77.86, -41.09, 0.72493, 3, 47, -18.76, -2.89, 0.21414, + 48, -41.1, -2.89, 2e-05, 46, 71.37, -41.51, 0.78584, 3, 47, -18.76, 1.38, 0.19077, 48, -41.1, 1.38, 0.00024, 46, 67.11, -41.79, 0.80899, 3, 47, -18.76, 7.5, 0.1765, 48, -41.1, 7.5, + 0.00116, 46, 61.01, -42.19, 0.82235, 4, 47, -16.28, 11.88, 0.15382, 48, -38.62, 11.88, 0.00307, 49, -61.54, 11.88, 1e-05, 46, 56.48, -40, 0.84309, 4, 47, -11.9, 19.61, 0.11079, 48, + -34.24, 19.61, 0.0029, 49, -57.16, 19.61, 0.00014, 46, 48.48, -36.13, 0.88617, 4, 47, 14.63, 66.47, 0.04584, 48, -7.7, 66.47, 0.00083, 49, -30.63, 66.47, 0.00037, 46, -0.01, -12.7, + 0.95296, 4, 47, 22.29, 66.47, 0.02247, 48, -0.04, 66.47, 0.00083, 49, -22.97, 66.47, 0.00288, 46, -0.51, -5.06, 0.97382, 4, 47, 27.54, 66.47, 0.01007, 48, 5.2, 66.47, 0.00155, 49, + -17.72, 66.47, 0.0104, 46, -0.85, 0.17, 0.97798, 4, 47, 34.04, 66.47, 0.00272, 48, 11.7, 66.47, 0.00045, 49, -11.22, 66.47, 0.02285, 46, -1.28, 6.66, 0.97398, 4, 47, 39.96, 66.47, + 0.00033, 48, 17.62, 66.47, 0.00011, 49, -5.3, 66.47, 0.0498, 46, -1.66, 12.57, 0.94976, 3, 47, -16.24, -2.91, 0.33437, 48, -38.58, -2.91, 0.0002, 46, 71.23, -39, 0.66543, 3, 47, + -14.53, 1.37, 0.32645, 48, -36.87, 1.37, 0.00078, 46, 66.85, -37.57, 0.67277, 4, 47, -12.36, 7.36, 0.307, 48, -34.7, 7.36, 0.00285, 49, -57.62, 7.36, 1e-05, 46, 60.73, -35.79, + 0.69014, 4, 47, -9.97, 11.91, 0.26477, 48, -32.31, 11.91, 0.00971, 49, -55.23, 11.91, 0.00027, 46, 56.04, -33.7, 0.72525, 4, 47, -6.21, 19.66, 0.19881, 48, -28.55, 19.66, 0.00959, + 49, -51.47, 19.66, 0.00132, 46, 48.05, -30.46, 0.79028, 4, 47, 24.46, 19.97, 0.10712, 48, 2.12, 19.97, 0.11704, 49, -20.8, 19.97, 0.11672, 46, 45.75, 0.12, 0.65912, 4, 47, 53.97, + 20.27, 0.00116, 48, 31.63, 20.27, 0.00313, 49, 8.71, 20.27, 0.2148, 46, 43.53, 29.55, 0.7809, 4, 47, 57.02, 12.2, 0.0001, 48, 34.68, 12.2, 0.00083, 49, 11.76, 12.2, 0.29942, 46, + 51.38, 33.12, 0.69965, 3, 48, 36.75, 5.8, 0.00034, 49, 13.82, 5.8, 0.378, 46, 57.63, 35.6, 0.62166, 3, 48, 38.1, 1.08, 0.00022, 49, 15.18, 1.08, 0.45653, 46, 62.25, 37.26, 0.54325, + 3, 48, 39.36, -3.36, 0.00015, 49, 16.43, -3.36, 0.53433, 46, 66.61, 38.8, 0.46552, 4, 47, 23.97, 12.06, 0.12565, 48, 1.63, 12.06, 0.24275, 49, -21.29, 12.06, 0.14114, 46, 53.68, + 0.15, 0.49046, 4, 47, 23.54, 6.58, 0.11007, 48, 1.2, 6.58, 0.47217, 49, -21.72, 6.58, 0.12893, 46, 59.17, 0.08, 0.28883, 4, 47, 23.28, 1.22, 0.10884, 48, 0.94, 1.22, 0.60558, 49, + -21.98, 1.22, 0.12698, 46, 64.53, 0.17, 0.1586, 4, 47, 23.11, -3.14, 0.10666, 48, 0.77, -3.14, 0.70334, 49, -22.15, -3.14, 0.12133, 46, 68.89, 0.28, 0.06866, 4, 47, 6.87, 19.8, + 0.29773, 48, -15.47, 19.8, 0.06022, 49, -38.39, 19.8, 0.01488, 46, 47.07, -17.41, 0.62717, 4, 47, 3.75, 11.97, 0.44072, 48, -18.59, 11.97, 0.09602, 49, -41.51, 11.97, 0.01064, 46, + 55.08, -20.02, 0.45261, 4, 47, 1.91, 7.05, 0.66419, 48, -20.42, 7.05, 0.11803, 49, -43.35, 7.05, 0.002, 46, 60.11, -21.53, 0.21579, 4, 47, 0.03, 1.31, 0.77187, 48, -22.31, 1.31, + 0.12352, 49, -45.23, 1.31, 0.00043, 46, 65.96, -23.04, 0.10418, 4, 47, -1.27, -2.99, 0.84303, 48, -23.61, -2.99, 0.11246, 49, -46.53, -2.99, 0.00018, 46, 70.34, -24.05, 0.04432, 4, + 47, -1.8, 26.91, 0.12744, 48, -24.14, 26.91, 0.00959, 49, -47.06, 26.91, 0.0076, 46, 40.54, -26.53, 0.85537, 4, 47, 24.96, 27.56, 0.0719, 48, 2.62, 27.56, 0.03639, 49, -20.3, 27.56, + 0.07572, 46, 38.14, 0.13, 0.81598, 4, 47, 50.76, 27.7, 0.00702, 48, 28.42, 27.7, 0.00523, 49, 5.5, 27.7, 0.131, 46, 36.32, 25.87, 0.85675, 4, 47, 3.83, 36.15, 0.04791, 48, -18.51, + 36.15, 0.00352, 49, -41.43, 36.15, 0.00803, 46, 30.95, -21.51, 0.94054, 4, 47, 25.65, 37.95, 0.02662, 48, 3.31, 37.95, 0.00775, 49, -19.61, 37.95, 0.02767, 46, 27.73, 0.14, 0.93795, + 4, 47, 46.64, 37.25, 0.00753, 48, 24.3, 37.25, 0.00227, 49, 1.38, 37.25, 0.04846, 46, 27.06, 21.14, 0.94174, 4, 47, 41.75, 20.15, 0.01306, 48, 19.41, 20.15, 0.04509, 49, -3.51, + 20.15, 0.32134, 46, 44.45, 17.37, 0.62052, 4, 47, 43.25, 12.14, 0.00895, 48, 20.91, 12.14, 0.07841, 49, -2.01, 12.14, 0.49568, 46, 52.34, 19.39, 0.41696, 4, 47, 44.35, 6.12, 0.0015, + 48, 22.01, 6.12, 0.09572, 49, -0.91, 6.12, 0.67014, 46, 58.27, 20.88, 0.23264, 4, 47, 45.08, 1.14, 0.00025, 48, 22.74, 1.14, 0.108, 49, -0.18, 1.14, 0.76841, 46, 63.2, 21.93, + 0.12334, 4, 47, 45.58, -3.27, 0.0001, 48, 23.24, -3.27, 0.10937, 49, 0.32, -3.27, 0.83473, 46, 67.56, 22.71, 0.0558, 4, 47, 40.33, 27.64, 0.02381, 48, 18, 27.64, 0.02132, 49, -4.93, + 27.64, 0.16866, 46, 37.06, 15.47, 0.78621, 4, 47, 9.71, 27.19, 0.16236, 48, -12.63, 27.19, 0.02827, 49, -35.55, 27.19, 0.02548, 46, 39.51, -15.06, 0.78388, 4, 47, 15.01, 19.88, + 0.23124, 48, -7.33, 19.88, 0.11759, 49, -30.25, 19.88, 0.04679, 46, 46.46, -9.29, 0.60438, 4, 47, 13.78, 12.01, 0.29354, 48, -8.56, 12.01, 0.19873, 49, -31.48, 12.01, 0.04427, 46, + 54.39, -10.01, 0.46346, 4, 47, 12.95, 6.81, 0.37869, 48, -9.39, 6.81, 0.34588, 49, -32.31, 6.81, 0.01968, 46, 59.63, -10.5, 0.25575, 4, 47, 11.95, 1.27, 0.42861, 48, -10.39, 1.27, + 0.42317, 49, -33.31, 1.27, 0.01297, 46, 65.23, -11.14, 0.13524, 4, 47, 11.29, -3.07, 0.46725, 48, -11.05, -3.07, 0.46538, 49, -33.97, -3.07, 0.0097, 46, 69.59, -11.51, 0.05768, 4, + 47, -0.59, 19.72, 0.32338, 48, -22.92, 19.72, 0.02881, 49, -45.85, 19.72, 0.003, 46, 47.63, -24.85, 0.64481, 4, 47, -3.82, 11.93, 0.4391, 48, -26.16, 11.93, 0.03345, 49, -49.08, + 11.93, 0.00177, 46, 55.61, -27.57, 0.52567, 4, 47, -5.89, 7.22, 0.65491, 48, -28.23, 7.22, 0.02015, 49, -51.15, 7.22, 0.00017, 46, 60.45, -29.33, 0.32476, 4, 47, -8.13, 1.34, + 0.75275, 48, -30.47, 1.34, 0.01396, 49, -53.39, 1.34, 1e-05, 46, 66.46, -31.18, 0.23328, 3, 47, -9.63, -2.94, 0.80478, 48, -31.96, -2.94, 0.00944, 46, 70.83, -32.39, 0.18578, 4, 47, + 33.3, 20.06, 0.04166, 48, 10.96, 20.06, 0.10286, 49, -11.96, 20.06, 0.24857, 46, 45.08, 8.94, 0.60691, 4, 47, 33.97, 12.1, 0.03817, 48, 11.63, 12.1, 0.17811, 49, -11.29, 12.1, + 0.32257, 46, 52.98, 10.13, 0.46115, 4, 47, 34.3, 6.34, 0.01531, 48, 11.97, 6.34, 0.31162, 49, -10.96, 6.34, 0.40881, 46, 58.71, 10.84, 0.26426, 4, 47, 34.72, 1.18, 0.00955, 48, + 12.39, 1.18, 0.39036, 49, -10.54, 1.18, 0.4561, 46, 63.83, 11.59, 0.14399, 4, 47, 34.8, -3.2, 0.00731, 48, 12.46, -3.2, 0.44195, 49, -10.46, -3.2, 0.48699, 46, 68.2, 11.96, 0.06375, + 4, 47, 48.21, 20.21, 0.00241, 48, 25.88, 20.21, 0.01421, 49, 2.95, 20.21, 0.36275, 46, 43.96, 23.82, 0.62063, 4, 47, 50.54, 12.17, 0.00034, 48, 28.2, 12.17, 0.01068, 49, 5.28, 12.17, + 0.5453, 46, 51.83, 26.66, 0.44368, 4, 47, 52.52, 5.95, 2e-05, 48, 30.19, 5.95, 0.00999, 49, 7.26, 5.95, 0.66888, 46, 57.92, 29.04, 0.32111, 3, 48, 31.52, 1.11, 0.01011, 49, 8.6, + 1.11, 0.76268, 46, 62.66, 30.7, 0.22721, 3, 48, 32.61, -3.32, 0.00863, 49, 9.68, -3.32, 0.83296, 46, 67.01, 32.06, 0.15841, 4, 47, -9.21, 7.29, 0.52586, 48, -31.55, 7.29, 0.0057, 49, + -54.47, 7.29, 1e-05, 46, 60.59, -32.65, 0.46842, 3, 47, -11.3, 1.36, 0.56698, 48, -33.64, 1.36, 0.00311, 46, 66.65, -34.34, 0.42991, 3, 47, -12.66, -2.93, 0.60013, 48, -35, -2.93, + 0.00167, 46, 71.01, -35.42, 0.39821, 4, 47, -5.46, -2.97, 0.89102, 48, -27.8, -2.97, 0.03888, 49, -50.72, -2.97, 1e-05, 46, 70.59, -28.24, 0.07008, 4, 47, -4.18, 1.33, 0.83362, 48, + -26.52, 1.33, 0.04645, 49, -49.44, 1.33, 3e-05, 46, 66.21, -27.24, 0.1199, 4, 47, -2.26, 7.14, 0.75973, 48, -24.6, 7.14, 0.05134, 49, -47.52, 7.14, 0.00026, 46, 60.29, -25.7, + 0.18867, 4, 47, 7.35, 6.93, 0.57235, 48, -14.98, 6.93, 0.23863, 49, -37.91, 6.93, 0.00435, 46, 59.87, -16.09, 0.18467, 4, 47, 5.9, 1.29, 0.63011, 48, -16.44, 1.29, 0.25936, 49, + -39.36, 1.29, 0.00243, 46, 65.6, -17.18, 0.1081, 4, 47, 4.86, -3.03, 0.68809, 48, -17.48, -3.03, 0.26358, 49, -40.4, -3.03, 0.00168, 46, 69.98, -17.93, 0.04665, 4, 47, 17.76, 6.7, + 0.22941, 48, -4.58, 6.7, 0.4879, 49, -27.5, 6.7, 0.05094, 46, 59.42, -5.7, 0.23175, 4, 47, 17.11, 1.25, 0.24296, 48, -5.23, 1.25, 0.56856, 49, -28.15, 1.25, 0.04581, 46, 64.91, + -5.99, 0.14267, 4, 47, 16.71, -3.1, 0.25552, 48, -5.62, -3.1, 0.64168, 49, -28.55, -3.1, 0.03992, 46, 69.27, -6.1, 0.06288, 4, 47, 28.55, -3.17, 0.03276, 48, 6.22, -3.17, 0.62363, + 49, -16.71, -3.17, 0.27658, 46, 68.57, 5.72, 0.06703, 4, 47, 28.55, 1.2, 0.0367, 48, 6.21, 1.21, 0.54514, 49, -16.71, 1.21, 0.26974, 46, 64.21, 5.43, 0.14843, 4, 47, 28.71, 6.47, + 0.04075, 48, 6.37, 6.47, 0.46337, 49, -16.55, 6.47, 0.25797, 46, 58.95, 5.25, 0.23791, 4, 47, 39.28, 6.23, 0.00305, 48, 16.94, 6.24, 0.20572, 49, -5.98, 6.24, 0.59307, 46, 58.49, + 15.81, 0.19817, 4, 47, 39.51, 1.16, 0.00156, 48, 17.17, 1.16, 0.23228, 49, -5.75, 1.16, 0.64631, 46, 63.54, 16.37, 0.11984, 4, 47, 40.07, -3.24, 0.00112, 48, 17.74, -3.24, 0.25061, + 49, -5.19, -3.24, 0.69415, 46, 67.89, 17.22, 0.05412, 4, 47, 50.23, -3.29, 0, 48, 27.89, -3.29, 0.036, 49, 4.97, -3.29, 0.88144, 46, 67.29, 27.36, 0.08255, 4, 47, 49.51, 1.13, 2e-05, + 48, 27.17, 1.13, 0.03826, 49, 4.25, 1.13, 0.81357, 46, 62.92, 26.35, 0.14816, 4, 47, 48.55, 6.03, 0.00027, 48, 26.22, 6.03, 0.03577, 49, 3.29, 6.03, 0.72045, 46, 58.09, 25.08, + 0.24351, 4, 47, 47.11, 12.16, 0.00156, 48, 24.77, 12.16, 0.03311, 49, 1.85, 12.16, 0.61234, 46, 52.07, 23.24, 0.35299, 4, 47, 53.99, 12.19, 1e-05, 48, 31.66, 12.19, 0.00266, 49, + 8.73, 12.19, 0.47035, 46, 51.59, 30.11, 0.52698, 3, 48, 33.02, 5.88, 0.00213, 49, 10.1, 5.88, 0.54797, 46, 57.79, 31.88, 0.4499, 3, 48, 34.54, 1.1, 0.0018, 49, 11.62, 1.1, 0.63247, + 46, 62.47, 33.7, 0.36573, 3, 48, 35.58, -3.34, 0.00152, 49, 12.66, -3.34, 0.71351, 46, 66.83, 35.03, 0.28497, 3, 47, -17.72, -6.71, 0.31251, 48, -40.05, -6.71, 1e-05, 46, 75.11, + -40.22, 0.68748, 3, 47, -13.83, -6.56, 0.64755, 48, -36.17, -6.56, 0.00038, 46, 74.72, -36.36, 0.35207, 3, 47, -10.89, -6.57, 0.83546, 48, -33.23, -6.57, 0.00245, 46, 74.53, -33.42, + 0.1621, 3, 47, -6.58, -6.39, 0.9505, 48, -28.91, -6.39, 0.02598, 46, 74.07, -29.13, 0.02352, 4, 47, -2.51, -6.41, 0.9185, 48, -24.85, -6.41, 0.06986, 49, -47.77, -6.41, 1e-05, 46, + 73.83, -25.07, 0.01163, 4, 47, 3.97, -6.54, 0.7539, 48, -18.37, -6.54, 0.23416, 49, -41.29, -6.54, 0.00019, 46, 73.54, -18.6, 0.01175, 4, 47, 10.73, -6.3, 0.4945, 48, -11.61, -6.29, + 0.48778, 49, -34.53, -6.29, 0.00242, 46, 72.85, -11.87, 0.01529, 4, 47, 16.42, -6.31, 0.24467, 48, -5.92, -6.31, 0.71967, 49, -28.84, -6.31, 0.01969, 46, 72.5, -6.18, 0.01597, 4, 47, + 22.88, -6.46, 0.08074, 48, 0.54, -6.46, 0.81091, 49, -22.38, -6.46, 0.09131, 46, 72.22, 0.27, 0.01704, 4, 47, 28.51, -6.42, 0.01543, 48, 6.17, -6.42, 0.70591, 49, -16.75, -6.42, + 0.26031, 46, 71.82, 5.89, 0.01836, 4, 47, 34.97, -6.29, 0.00164, 48, 12.64, -6.29, 0.47309, 49, -10.29, -6.29, 0.50689, 46, 71.27, 12.33, 0.01837, 4, 47, 40.42, -6.47, 0.0001, 48, + 18.08, -6.47, 0.23958, 49, -4.84, -6.47, 0.7461, 46, 71.1, 17.78, 0.01421, 4, 47, 45.89, -6.5, 0, 48, 23.56, -6.5, 0.08431, 49, 0.63, -6.5, 0.9025, 46, 70.76, 23.24, 0.01319, 3, 48, + 28.36, -6.37, 0.01867, 49, 5.43, -6.37, 0.94991, 46, 70.33, 28.02, 0.03142, 3, 48, 33.31, -6.41, 0.00244, 49, 10.39, -6.41, 0.88788, 46, 70.05, 32.97, 0.10968, 3, 48, 36.23, -6.46, + 0.00046, 49, 13.31, -6.46, 0.80558, 46, 69.91, 35.88, 0.19395, 3, 48, 40.12, -6.31, 1e-05, 49, 17.2, -6.31, 0.61334, 46, 69.5, 39.76, 0.38665, 4, 47, 0.4, -6.47, 0.86555, 48, -21.94, + -6.47, 0.12959, 49, -44.86, -6.47, 1e-05, 46, 73.7, -22.16, 0.00485, 3, 47, -9.01, -6.49, 0.93616, 48, -31.35, -6.49, 0.00716, 46, 74.33, -31.55, 0.05668, 3, 47, -16.19, -6.65, + 0.44814, 48, -38.53, -6.65, 3e-05, 46, 74.96, -38.7, 0.55184, 4, 47, 7.48, -6.41, 0.63866, 48, -14.86, -6.41, 0.354, 49, -37.78, -6.41, 0.00037, 46, 73.18, -15.1, 0.00698, 4, 47, + 13.4, -6.3, 0.36468, 48, -8.94, -6.3, 0.62161, 49, -31.86, -6.3, 0.00581, 46, 72.69, -9.2, 0.0079, 4, 47, 19.68, -6.38, 0.14684, 48, -2.65, -6.38, 0.80383, 49, -25.58, -6.38, + 0.04176, 46, 72.36, -2.92, 0.00757, 4, 47, 25.54, -6.44, 0.03499, 48, 3.2, -6.44, 0.79745, 49, -19.72, -6.44, 0.15898, 46, 72.03, 2.92, 0.00858, 4, 47, 31.96, -6.35, 0.00417, 48, + 9.62, -6.35, 0.60634, 49, -13.3, -6.35, 0.37927, 46, 71.53, 9.32, 0.01022, 4, 47, 37.62, -6.38, 0.00021, 48, 15.28, -6.38, 0.35157, 49, -7.64, -6.38, 0.63918, 46, 71.18, 14.97, + 0.00904, 4, 47, 43.32, -6.48, 1e-05, 48, 20.98, -6.48, 0.14688, 49, -1.94, -6.48, 0.84692, 46, 70.92, 20.67, 0.00619, 3, 48, 25.81, -6.44, 0.03919, 49, 2.89, -6.44, 0.95006, 46, + 70.56, 25.48, 0.01074, 3, 48, 30.92, -6.39, 0.00591, 49, 7.99, -6.39, 0.9433, 46, 70.18, 30.58, 0.05079, 3, 48, 38.04, -6.39, 5e-05, 49, 15.12, -6.39, 0.72615, 46, 69.72, 37.69, + 0.2738 + ], + "hull": 46, + "edges": [ + 80, 82, 90, 0, 10, 8, 70, 72, 72, 74, 74, 76, 4, 6, 6, 8, 76, 78, 78, 80, 4, 2, 2, 0, 72, 92, 74, 94, 92, 94, 76, 96, 94, 96, 78, 98, 96, 98, 80, 100, 98, 100, 82, 84, 84, 86, 86, + 88, 88, 90, 0, 104, 2, 106, 104, 106, 4, 108, 106, 108, 6, 110, 108, 110, 8, 112, 110, 112, 10, 12, 102, 114, 114, 116, 116, 118, 118, 120, 122, 124, 124, 126, 126, 128, 128, 130, + 132, 100, 134, 102, 136, 104, 84, 138, 138, 132, 86, 140, 140, 134, 138, 140, 88, 142, 142, 136, 140, 142, 144, 146, 146, 148, 148, 150, 150, 152, 134, 154, 154, 136, 144, 154, 132, + 156, 156, 134, 122, 156, 102, 158, 158, 122, 114, 160, 160, 124, 158, 160, 160, 162, 162, 164, 164, 166, 100, 168, 168, 122, 98, 170, 170, 124, 168, 170, 170, 172, 172, 174, 174, + 176, 102, 178, 178, 144, 114, 180, 180, 146, 178, 180, 180, 182, 182, 184, 184, 186, 104, 188, 188, 144, 188, 190, 190, 192, 192, 194, 194, 196, 96, 198, 198, 172, 94, 200, 200, 174, + 198, 200, 92, 202, 202, 176, 200, 202, 64, 66, 58, 60, 130, 204, 204, 176, 128, 206, 206, 174, 204, 206, 126, 208, 208, 172, 206, 208, 126, 210, 210, 162, 128, 212, 212, 164, 210, + 212, 130, 214, 214, 166, 212, 214, 116, 216, 216, 162, 118, 218, 218, 164, 216, 218, 120, 220, 220, 166, 218, 220, 120, 222, 222, 186, 118, 224, 224, 184, 222, 224, 116, 226, 226, + 182, 224, 226, 148, 228, 228, 182, 150, 230, 230, 184, 228, 230, 152, 232, 232, 186, 230, 232, 152, 234, 234, 196, 150, 236, 236, 194, 234, 236, 148, 238, 238, 192, 236, 238, 146, + 240, 240, 190, 238, 240, 106, 242, 242, 190, 108, 244, 244, 192, 242, 244, 110, 246, 246, 194, 244, 246, 112, 248, 248, 196, 246, 248, 16, 18, 70, 250, 250, 92, 66, 252, 252, 202, + 64, 254, 254, 176, 252, 254, 60, 256, 256, 204, 58, 258, 258, 130, 256, 258, 54, 260, 260, 214, 50, 262, 262, 166, 46, 264, 264, 220, 42, 266, 266, 120, 38, 268, 268, 222, 34, 270, + 270, 186, 30, 272, 272, 232, 26, 274, 274, 152, 22, 276, 276, 234, 18, 278, 278, 196, 16, 280, 280, 248, 278, 280, 12, 282, 282, 112, 258, 284, 284, 260, 54, 56, 56, 58, 284, 56, + 254, 286, 286, 256, 60, 62, 62, 64, 286, 62, 250, 288, 288, 252, 66, 68, 68, 70, 288, 68, 260, 290, 290, 262, 50, 52, 52, 54, 290, 52, 262, 292, 292, 264, 46, 48, 48, 50, 292, 48, + 264, 294, 294, 266, 42, 44, 44, 46, 294, 44, 266, 296, 296, 268, 38, 40, 40, 42, 296, 40, 268, 298, 298, 270, 34, 36, 36, 38, 298, 36, 270, 300, 300, 272, 30, 32, 32, 34, 300, 32, + 272, 302, 302, 274, 26, 28, 28, 30, 302, 28, 274, 304, 304, 276, 22, 24, 24, 26, 304, 24, 276, 306, 306, 278, 18, 20, 20, 22, 306, 20, 280, 308, 308, 282, 12, 14, 14, 16, 308, 14 + ], + "width": 87.05882352941177, + "height": 80.0, + "path": "summer-a.ear-left-bubble", + "x": 0.470588235294116, + "y": 0.0 + } + }, + "ear-left-dot-01": { + "ear-left-dot": {"x": 0.5611764705882355, "y": 1.5111764705882353, "rotation": -0.95, "width": 14.117647058823529, "height": 14.117647058823529, "path": "summer-a.ear-left-dot"} + }, + "ear-left-dot-02": { + "ear-left-dot": {"x": 0.5611764705882355, "y": 1.5111764705882353, "rotation": -0.95, "width": 14.117647058823529, "height": 14.117647058823529, "path": "summer-a.ear-left-dot"} + }, + "ear-left-dot-03": { + "ear-left-dot": {"x": 0.5611764705882355, "y": 1.5111764705882353, "rotation": -0.95, "width": 14.117647058823529, "height": 14.117647058823529, "path": "summer-a.ear-left-dot"} + }, + "ear-left-dot-04": { + "ear-left-dot": {"x": 0.5611764705882355, "y": 1.5111764705882353, "rotation": -0.95, "width": 14.117647058823529, "height": 14.117647058823529, "path": "summer-a.ear-left-dot"} + }, + "ear-left-dot-05": { + "ear-left-dot": {"x": 0.5611764705882355, "y": 1.5111764705882353, "rotation": -0.95, "width": 14.117647058823529, "height": 14.117647058823529, "path": "summer-a.ear-left-dot"} + }, + "ear-left-dot-06": { + "ear-left-dot": {"x": 0.5611764705882355, "y": 1.5111764705882353, "rotation": -0.95, "width": 14.117647058823529, "height": 14.117647058823529, "path": "summer-a.ear-left-dot"} + }, + "ear-left-dot-07": { + "ear-left-dot": {"x": 0.5611764705882355, "y": 1.5111764705882353, "rotation": -0.95, "width": 14.117647058823529, "height": 14.117647058823529, "path": "summer-a.ear-left-dot"} + }, + "ear-left-dot-08": { + "ear-left-dot": {"x": 0.5611764705882355, "y": 1.5111764705882353, "rotation": -0.95, "width": 14.117647058823529, "height": 14.117647058823529, "path": "summer-a.ear-left-dot"} + }, + "ear-left-dot-09": { + "ear-left-dot": {"x": 0.5611764705882355, "y": 1.5111764705882353, "rotation": -0.95, "width": 14.117647058823529, "height": 14.117647058823529, "path": "summer-a.ear-left-dot"} + }, + "ear-left-dot-10": { + "ear-left-dot": {"x": 0.5611764705882355, "y": 1.5111764705882353, "rotation": -0.95, "width": 14.117647058823529, "height": 14.117647058823529, "path": "summer-a.ear-left-dot"} + }, + "ear-left-dot-11": { + "ear-left-dot": {"x": 0.5611764705882355, "y": 1.5111764705882353, "rotation": -0.95, "width": 14.117647058823529, "height": 14.117647058823529, "path": "summer-a.ear-left-dot"} + }, + "ear-left-dot-12": { + "ear-left-dot": {"x": 0.5611764705882355, "y": 1.5111764705882353, "rotation": -0.95, "width": 14.117647058823529, "height": 14.117647058823529, "path": "summer-a.ear-left-dot"} + }, + "ear-left-under": { + "ear-left-under": {"x": 84.40411764705883, "y": -22.781764705882363, "rotation": -90, "width": 129.41176470588235, "height": 218.82352941176472, "path": "summer-a.ear-left-under"} + }, + "ear-left-upper": { + "ear-left-upper": {"x": 86.34529411764706, "y": -23.664117647058827, "rotation": -90, "width": 143.52941176470588, "height": 230.58823529411765, "path": "summer-a.ear-left-upper"} + }, + "ear-right-bubble": { + "ear-right-bubble": { + "type": "mesh", + "uvs": [ + 0.93928, 0.50958, 0.95558, 0.59885, 0.96791, 0.66638, 0.98006, 0.73289, 1, 0.84205, 1, 0.89818, 1, 0.9625, 0.9567, 0.9625, 0.9208, 0.9625, 0.88771, 0.9625, 0.83969, 0.9625, 0.79967, + 0.9625, 0.76574, 0.9625, 0.73418, 0.9625, 0.69508, 0.9625, 0.6661, 0.9625, 0.6319, 0.9625, 0.6046, 0.9625, 0.57454, 0.9625, 0.53755, 0.9625, 0.50387, 0.9625, 0.47341, 0.9625, + 0.44466, 0.9625, 0.41233, 0.9625, 0.37317, 0.9625, 0.33787, 0.9625, 0.30333, 0.9625, 0.2648, 0.9625, 0.21937, 0.9625, 0.17434, 0.9625, 0.12959, 0.9625, 0.08769, 0.9625, 0, 0.9625, + 0.02085, 0.89779, 0.04055, 0.83664, 0.06626, 0.75682, 0.08854, 0.68766, 0.11527, 0.60468, 0.13788, 0.53451, 0.35753, 0.0375, 0.43128, 0.0375, 0.52161, 0.0375, 0.60662, 0.0375, + 0.67954, 0.0375, 0.54109, 0.5336, 0.30907, 0.53412, 0.75362, 0.52077, 0.84707, 0.51514, 0.2081, 0.53435, 0.42115, 0.53387, 0.64269, 0.52747, 0.1892, 0.60156, 0.3018, 0.60447, + 0.41972, 0.60346, 0.54053, 0.60135, 0.64648, 0.59785, 0.76151, 0.59644, 0.87262, 0.58988, 0.16806, 0.67676, 0.29497, 0.67061, 0.41838, 0.66857, 0.54, 0.66508, 0.65011, 0.66538, + 0.7681, 0.65967, 0.89666, 0.66021, 0.14733, 0.75044, 0.28705, 0.74721, 0.41688, 0.74143, 0.53942, 0.73556, 0.6538, 0.73393, 0.7757, 0.7326, 0.91933, 0.7265, 0.12337, 0.83566, 0.2782, + 0.83283, 0.4151, 0.82771, 0.53871, 0.82207, 0.65852, 0.82169, 0.7847, 0.8189, 0.95379, 0.82732, 0.97627, 0.89309, 0.79208, 0.88971, 0.66236, 0.89294, 0.5381, 0.89586, 0.41375, + 0.89349, 0.2717, 0.89571, 0.10571, 0.89844, 0.53197, 0.30141, 0.39415, 0.1884, 0.65961, 0.2117, 0.25473, 0.53425, 0.24202, 0.60293, 0.22911, 0.6738, 0.21379, 0.7489, 0.19729, + 0.83431, 0.18704, 0.8971, 0.36352, 0.534, 0.36013, 0.60397, 0.35748, 0.66957, 0.35288, 0.74428, 0.34802, 0.83022, 0.34383, 0.89458, 0.48024, 0.53373, 0.47847, 0.60244, 0.47433, + 0.66696, 0.47563, 0.73861, 0.47402, 0.82502, 0.47337, 0.89463, 0.58955, 0.53067, 0.59344, 0.5996, 0.59605, 0.66523, 0.5961, 0.73475, 0.60032, 0.82187, 0.60296, 0.89434, 0.69391, + 0.52438, 0.69915, 0.59721, 0.70691, 0.66263, 0.71206, 0.7333, 0.71954, 0.82034, 0.72813, 0.8913, 0.80125, 0.5179, 0.81428, 0.59333, 0.8348, 0.65995, 0.84793, 0.72953, 0.87862, + 0.82358, 0.89305, 0.89156, 0.19669, 0.67537, 0.17782, 0.74974, 0.1594, 0.835, 0.1429, 0.89783, 0.26012, 0.6723, 0.25017, 0.74806, 0.23685, 0.83359, 0.22589, 0.89647, 0.30659, + 0.89517, 0.3131, 0.83153, 0.31569, 0.74593, 0.32231, 0.67016, 0.38717, 0.66908, 0.38553, 0.74282, 0.38068, 0.829, 0.37648, 0.89407, 0.44462, 0.89408, 0.44322, 0.82643, 0.44458, + 0.7401, 0.44621, 0.66777, 0.50711, 0.66602, 0.50646, 0.73714, 0.50582, 0.82357, 0.50482, 0.89523, 0.57134, 0.89508, 0.5687, 0.82197, 0.56865, 0.73514, 0.5654, 0.66515, 0.62192, + 0.6653, 0.6236, 0.73436, 0.62525, 0.8218, 0.62839, 0.89374, 0.69427, 0.89215, 0.76244, 0.89045, 0.84047, 0.89059, 0.93306, 0.89229, 0.91732, 0.8255, 0.82617, 0.82097, 0.75013, + 0.81967, 0.6863, 0.82108, 0.68017, 0.73364, 0.74166, 0.73297, 0.80979, 0.73115, 0.88285, 0.72805, 0.86581, 0.66008, 0.79931, 0.6598, 0.73613, 0.66121, 0.67214, 0.66431, 0.09776, + 0.92671, 0.13724, 0.92534, 0.1817, 0.92459, 0.22313, 0.92439, 0.26892, 0.92268, 0.30526, 0.92265, 0.34139, 0.92236, 0.3751, 0.92252, 0.41313, 0.92351, 0.44464, 0.92289, 0.47339, + 0.92339, 0.5044, 0.9248, 0.53787, 0.92389, 0.57268, 0.92341, 0.60366, 0.9233, 0.62995, 0.92432, 0.66398, 0.92316, 0.69464, 0.92383, 0.73085, 0.92333, 0.76403, 0.92521, 0.79572, + 0.92461, 0.84011, 0.92404, 0.89075, 0.92209, 0.92774, 0.92274, 0.96706, 0.92576 + ], + "triangles": [ + 8, 196, 7, 9, 195, 8, 8, 195, 196, 10, 194, 9, 9, 194, 195, 10, 11, 194, 12, 193, 11, 11, 193, 194, 13, 192, 12, 12, 192, 193, 14, 191, 13, 13, 191, 192, 15, 190, 14, 14, 190, 191, + 15, 189, 190, 191, 158, 192, 192, 80, 193, 192, 158, 80, 194, 193, 159, 194, 159, 195, 159, 193, 80, 189, 157, 190, 190, 118, 191, 190, 157, 118, 191, 118, 158, 189, 81, 157, 195, + 124, 196, 196, 124, 160, 195, 159, 124, 81, 164, 157, 81, 76, 164, 157, 117, 118, 157, 164, 117, 159, 123, 124, 124, 123, 161, 118, 163, 158, 118, 117, 163, 80, 162, 159, 159, 162, + 123, 158, 77, 80, 158, 163, 77, 80, 77, 162, 162, 122, 123, 76, 165, 164, 76, 69, 165, 164, 116, 117, 164, 165, 116, 77, 167, 162, 117, 166, 163, 117, 116, 166, 163, 70, 77, 163, + 166, 70, 77, 70, 167, 165, 115, 116, 116, 171, 166, 166, 63, 70, 146, 103, 145, 68, 61, 152, 68, 145, 61, 151, 152, 109, 110, 153, 154, 143, 144, 104, 16, 189, 15, 17, 188, 16, 16, + 188, 189, 18, 187, 17, 17, 187, 188, 18, 19, 186, 19, 185, 186, 18, 186, 187, 20, 184, 19, 19, 184, 185, 20, 21, 184, 22, 183, 21, 21, 183, 184, 23, 181, 22, 181, 182, 22, 22, 182, + 183, 184, 148, 185, 184, 183, 148, 187, 156, 188, 188, 81, 189, 188, 156, 81, 185, 149, 186, 185, 82, 149, 185, 148, 82, 182, 83, 141, 182, 181, 83, 186, 112, 187, 186, 149, 112, + 182, 106, 183, 183, 106, 148, 187, 112, 156, 182, 141, 106, 150, 149, 82, 147, 75, 82, 82, 148, 147, 82, 75, 150, 106, 105, 148, 148, 105, 147, 149, 111, 112, 149, 150, 111, 105, + 106, 142, 112, 155, 156, 112, 111, 155, 83, 74, 141, 74, 142, 141, 106, 141, 142, 156, 76, 81, 156, 155, 76, 74, 67, 142, 142, 143, 105, 142, 67, 143, 105, 104, 147, 105, 143, 104, + 147, 146, 75, 147, 104, 146, 75, 68, 150, 75, 146, 68, 68, 151, 150, 150, 110, 111, 150, 151, 110, 111, 154, 155, 111, 110, 154, 155, 69, 76, 155, 154, 69, 104, 103, 146, 146, 145, + 68, 68, 152, 151, 151, 109, 110, 24, 180, 23, 25, 179, 24, 24, 179, 180, 26, 178, 25, 25, 178, 179, 27, 177, 26, 26, 177, 178, 28, 176, 27, 27, 176, 177, 29, 175, 28, 28, 175, 176, + 30, 174, 29, 29, 174, 175, 31, 173, 30, 30, 173, 174, 174, 128, 175, 174, 85, 128, 175, 94, 176, 175, 128, 94, 176, 132, 177, 176, 94, 132, 180, 140, 181, 177, 84, 178, 177, 132, 84, + 178, 133, 179, 178, 84, 133, 179, 100, 180, 180, 100, 140, 179, 133, 100, 128, 127, 94, 94, 93, 132, 94, 127, 93, 132, 131, 84, 132, 93, 131, 84, 73, 133, 84, 131, 73, 133, 134, 100, + 133, 73, 134, 100, 99, 140, 100, 134, 99, 140, 139, 83, 140, 99, 139, 93, 92, 131, 131, 130, 73, 131, 92, 130, 73, 66, 134, 73, 130, 66, 134, 135, 99, 134, 66, 135, 99, 98, 139, 99, + 135, 98, 139, 138, 74, 139, 98, 138, 74, 138, 67, 130, 129, 66, 66, 59, 135, 135, 136, 98, 135, 59, 136, 98, 97, 138, 98, 136, 97, 138, 137, 67, 23, 180, 181, 181, 140, 83, 83, 139, + 74, 128, 72, 127, 127, 126, 93, 93, 126, 92, 126, 125, 92, 85, 34, 72, 168, 64, 71, 168, 169, 64, 65, 58, 126, 126, 58, 125, 59, 52, 136, 69, 172, 165, 165, 172, 115, 116, 115, 171, + 154, 62, 69, 120, 170, 56, 65, 36, 58, 58, 51, 125, 37, 38, 51, 51, 48, 90, 51, 38, 48, 78, 3, 4, 64, 169, 57, 121, 120, 57, 120, 47, 57, 67, 137, 60, 143, 60, 144, 144, 103, 104, + 110, 109, 153, 154, 153, 62, 69, 62, 172, 97, 136, 96, 97, 96, 137, 96, 136, 52, 60, 137, 53, 60, 53, 144, 53, 137, 96, 103, 144, 102, 103, 102, 145, 102, 144, 53, 61, 145, 54, 172, + 62, 55, 55, 62, 153, 152, 108, 109, 55, 153, 108, 153, 109, 108, 61, 54, 152, 152, 54, 108, 54, 145, 102, 172, 114, 115, 172, 55, 114, 115, 114, 171, 171, 114, 56, 90, 89, 52, 52, + 45, 96, 52, 89, 45, 96, 95, 53, 96, 45, 95, 53, 49, 102, 53, 95, 49, 90, 48, 89, 102, 101, 54, 102, 49, 101, 54, 44, 108, 44, 107, 108, 54, 101, 44, 55, 108, 50, 108, 107, 50, 55, + 113, 114, 55, 50, 113, 114, 46, 56, 114, 113, 46, 56, 119, 120, 56, 46, 119, 120, 119, 47, 57, 47, 0, 87, 48, 38, 87, 89, 48, 87, 45, 89, 87, 95, 45, 49, 95, 86, 87, 38, 39, 101, 49, + 86, 87, 86, 95, 101, 86, 44, 41, 87, 40, 87, 41, 86, 44, 86, 107, 107, 86, 50, 50, 86, 113, 46, 113, 88, 119, 46, 88, 47, 119, 88, 86, 88, 113, 47, 88, 0, 0, 88, 43, 88, 41, 42, 88, + 86, 41, 88, 42, 43, 87, 39, 40, 57, 0, 1, 1, 64, 57, 64, 1, 2, 71, 2, 3, 58, 37, 51, 36, 37, 58, 91, 51, 90, 35, 36, 65, 125, 51, 91, 34, 35, 72, 72, 35, 65, 33, 34, 85, 169, 121, + 57, 171, 56, 63, 170, 63, 56, 138, 97, 137, 67, 60, 143, 59, 129, 52, 52, 129, 90, 71, 64, 2, 3, 78, 71, 78, 161, 71, 91, 90, 129, 170, 120, 121, 122, 121, 169, 161, 168, 71, 92, + 125, 91, 72, 65, 127, 127, 65, 126, 122, 169, 168, 92, 91, 130, 130, 91, 129, 123, 122, 168, 166, 171, 63, 70, 170, 167, 70, 63, 170, 167, 121, 122, 167, 170, 121, 66, 129, 59, 85, + 32, 33, 173, 85, 174, 31, 32, 173, 173, 32, 85, 85, 72, 128, 6, 197, 79, 162, 167, 122, 7, 197, 6, 160, 161, 78, 197, 160, 79, 196, 160, 197, 7, 196, 197, 124, 161, 160, 160, 78, 79, + 123, 168, 161, 6, 79, 5, 79, 78, 4, 79, 4, 5 + ], + "vertices": [ + 1, 31, 39.72, 33.4, 1, 1, 31, 46.93, 34.38, 1, 1, 31, 52.37, 35.12, 1, 1, 31, 58.6, 36.08, 1, 4, 31, 66.62, 38.45, 0.9295, 36, 61.48, 0.37, 1e-05, 37, 40.07, 0.48, 0.00266, 38, 18.6, + 0.48, 0.06784, 4, 31, 70.87, 39.07, 0.79905, 36, 62.32, -3.84, 1e-05, 37, 40.92, -3.73, 0.00721, 38, 19.44, -3.73, 0.19373, 4, 31, 76.95, 40.59, 0.74731, 36, 64.15, -9.83, 0, 37, + 42.75, -9.72, 0.00973, 38, 21.27, -9.72, 0.24296, 4, 31, 76.59, 36.12, 0.54785, 36, 59.68, -9.71, 1e-05, 37, 38.27, -9.6, 0.02168, 38, 16.8, -9.6, 0.43046, 4, 31, 76.3, 32.42, + 0.43038, 36, 55.96, -9.61, 3e-05, 37, 34.56, -9.5, 0.03847, 38, 13.08, -9.5, 0.53112, 4, 31, 76.02, 29.01, 0.36035, 36, 52.54, -9.51, 9e-05, 37, 31.14, -9.41, 0.06275, 38, 9.66, + -9.41, 0.57681, 4, 31, 75.63, 24.06, 0.2889, 36, 47.58, -9.38, 0.00026, 37, 26.17, -9.27, 0.09917, 38, 4.7, -9.27, 0.61167, 4, 31, 75.3, 19.93, 0.22591, 36, 43.44, -9.26, 0.0007, 37, + 22.03, -9.16, 0.14876, 38, 0.56, -9.16, 0.62463, 4, 31, 75.15, 17.12, 0.17724, 36, 40.62, -9.26, 0.0017, 37, 19.22, -9.16, 0.21115, 38, -2.26, -9.16, 0.60991, 4, 31, 75.01, 14.5, + 0.14418, 36, 38, -9.26, 0.00385, 37, 16.6, -9.16, 0.28407, 38, -4.88, -9.16, 0.5679, 4, 31, 74.84, 11.26, 0.12448, 36, 34.76, -9.26, 0.00813, 37, 13.35, -9.16, 0.36326, 38, -8.12, + -9.16, 0.50413, 4, 31, 74.71, 8.86, 0.11438, 36, 32.35, -9.26, 0.016, 37, 10.95, -9.16, 0.44276, 38, -10.53, -9.16, 0.42686, 4, 31, 74.56, 6.02, 0.11006, 36, 29.51, -9.26, 0.02948, + 37, 8.11, -9.16, 0.51561, 38, -13.37, -9.16, 0.34486, 4, 31, 74.45, 3.76, 0.10858, 36, 27.25, -9.26, 0.05095, 37, 5.84, -9.16, 0.57474, 38, -15.63, -9.16, 0.26573, 4, 31, 74.31, + 1.27, 0.10802, 36, 24.75, -9.26, 0.08291, 37, 3.35, -9.16, 0.614, 38, -18.13, -9.16, 0.19506, 4, 31, 74.15, -1.8, 0.1074, 36, 21.68, -9.26, 0.12742, 37, 0.28, -9.16, 0.62906, 38, + -21.2, -9.16, 0.13612, 4, 31, 74.01, -4.59, 0.10634, 36, 18.89, -9.26, 0.18549, 37, -2.52, -9.16, 0.61812, 38, -23.99, -9.16, 0.09006, 4, 31, 73.87, -7.11, 0.10502, 36, 16.36, -9.26, + 0.25646, 37, -5.05, -9.16, 0.58221, 38, -26.52, -9.16, 0.05631, 4, 31, 73.75, -9.5, 0.10419, 36, 13.97, -9.26, 0.33753, 37, -7.43, -9.16, 0.52513, 38, -28.91, -9.16, 0.03316, 4, 31, + 73.61, -12.18, 0.10536, 36, 11.29, -9.26, 0.42349, 37, -10.12, -9.16, 0.45282, 38, -31.59, -9.16, 0.01833, 4, 31, 73.44, -15.42, 0.11098, 36, 8.04, -9.26, 0.50701, 37, -13.37, -9.16, + 0.37254, 38, -34.84, -9.16, 0.00948, 4, 31, 73.28, -18.35, 0.12436, 36, 5.11, -9.26, 0.57939, 37, -16.3, -9.16, 0.29168, 38, -37.77, -9.16, 0.00457, 4, 31, 73.13, -21.21, 0.149, 36, + 2.24, -9.26, 0.63222, 37, -19.16, -9.16, 0.21673, 38, -40.64, -9.16, 0.00205, 4, 31, 72.96, -24.4, 0.18726, 36, -0.96, -9.26, 0.65948, 37, -22.36, -9.16, 0.15241, 38, -43.84, -9.16, + 0.00085, 4, 31, 72.77, -28.17, 0.23866, 36, -4.73, -9.26, 0.65975, 37, -26.13, -9.16, 0.10126, 38, -47.61, -9.16, 0.00033, 4, 31, 72.57, -31.9, 0.29871, 36, -8.46, -9.26, 0.63741, + 37, -29.87, -9.16, 0.06376, 38, -51.34, -9.16, 0.00012, 4, 31, 72.37, -35.61, 0.35932, 36, -12.18, -9.26, 0.60181, 37, -33.58, -9.16, 0.03884, 38, -55.06, -9.16, 4e-05, 4, 31, 72.19, + -39.08, 0.49297, 36, -15.66, -9.26, 0.48586, 37, -37.06, -9.16, 0.02116, 38, -58.54, -9.16, 1e-05, 4, 31, 71.81, -46.35, 0.66969, 36, -22.93, -9.26, 0.32512, 37, -44.34, -9.16, + 0.00518, 38, -65.81, -9.16, 0, 4, 31, 66.73, -44.35, 0.73638, 36, -21.2, -4.09, 0.26049, 37, -42.61, -3.98, 0.00313, 38, -64.08, -3.98, 0, 4, 31, 61.93, -42.46, 0.74288, 36, -19.57, + 0.8, 0.25402, 37, -40.97, 0.91, 0.00309, 38, -62.45, 0.91, 1e-05, 2, 31, 55.67, -40, 0.86, 36, -17.44, 7.19, 0.14, 2, 31, 50.24, -37.86, 0.87418, 36, -15.59, 12.72, 0.12582, 1, 31, + 43.72, -35.29, 1, 1, 31, 38.22, -33.12, 1, 2, 31, -0.53, -12.83, 0.99965, 36, 6.74, 64.74, 0.00035, 2, 31, -0.21, -6.72, 0.9998, 36, 12.86, 64.74, 0.0002, 3, 31, 0.19, 0.77, 0.99981, + 36, 20.36, 64.74, 9e-05, 38, -22.52, 64.84, 0.0001, 3, 31, 0.56, 7.82, 0.99975, 36, 27.41, 64.74, 1e-05, 38, -15.47, 64.84, 0.00024, 2, 31, 0.88, 13.86, 0.99954, 38, -9.41, 64.84, + 0.00046, 4, 31, 39.9, 0.3, 0.88429, 36, 21.98, 25.05, 0.02526, 37, 0.57, 25.15, 0.06552, 38, -20.9, 25.15, 0.02493, 1, 31, 38.93, -18.93, 1, 4, 31, 39.81, 17.97, 0.94373, 36, 39.62, + 26.07, 0.00089, 37, 18.21, 26.18, 0.01419, 38, -3.26, 26.18, 0.04119, 1, 31, 39.76, 25.74, 1, 1, 31, 38.51, -27.3, 1, 4, 31, 39.4, -9.64, 0.88619, 36, 12.02, 25.03, 0.05505, 37, + -9.38, 25.13, 0.05102, 38, -30.86, 25.13, 0.00774, 4, 31, 39.86, 8.75, 0.89286, 36, 30.41, 25.54, 0.00746, 37, 9, 25.64, 0.04877, 38, -12.47, 25.64, 0.05092, 1, 31, 43.8, -29.15, 1, + 4, 31, 44.52, -19.83, 0.74343, 36, 2.11, 19.38, 0.19678, 37, -19.29, 19.48, 0.05726, 38, -40.77, 19.48, 0.00254, 4, 31, 44.96, -10.05, 0.58833, 36, 11.9, 19.46, 0.20061, 37, -9.5, + 19.56, 0.19026, 38, -30.98, 19.56, 0.0208, 4, 31, 45.31, -0.03, 0.58846, 36, 21.93, 19.63, 0.08112, 37, 0.53, 19.73, 0.24909, 38, -20.95, 19.73, 0.08133, 4, 31, 45.5, 8.76, 0.59817, + 36, 30.72, 19.91, 0.02026, 37, 9.32, 20.01, 0.18761, 38, -12.16, 20.01, 0.19395, 4, 31, 45.89, 18.3, 0.66183, 36, 40.27, 20.02, 0.00346, 37, 18.87, 20.13, 0.07957, 38, -2.61, 20.13, + 0.25514, 1, 31, 45.85, 27.54, 1, 4, 31, 49.71, -31.22, 0.84023, 36, -8.99, 13.6, 0.15068, 37, -30.39, 13.7, 0.00899, 38, -51.87, 13.7, 0.0001, 4, 31, 49.78, -20.68, 0.48016, 36, + 1.55, 14.09, 0.41733, 37, -19.86, 14.19, 0.10062, 38, -41.33, 14.19, 0.0019, 4, 31, 50.15, -10.44, 0.42576, 36, 11.79, 14.25, 0.28082, 37, -9.61, 14.36, 0.27628, 38, -31.09, 14.36, + 0.01714, 4, 31, 50.4, -0.34, 0.43345, 36, 21.89, 14.53, 0.09343, 37, 0.48, 14.63, 0.37698, 38, -20.99, 14.63, 0.09613, 4, 31, 50.91, 8.78, 0.43708, 36, 31.02, 14.51, 0.01603, 37, + 9.62, 14.61, 0.27127, 38, -11.86, 14.61, 0.27562, 4, 31, 50.97, 18.59, 0.51068, 36, 40.82, 14.96, 0.00179, 37, 19.41, 15.07, 0.09933, 38, -2.06, 15.07, 0.3882, 4, 31, 51.57, 29.24, + 0.94195, 36, 51.49, 14.92, 4e-05, 37, 30.08, 15.02, 0.00385, 38, 8.61, 15.02, 0.05416, 4, 31, 55.51, -33.25, 0.72549, 36, -10.71, 7.7, 0.2621, 37, -32.11, 7.81, 0.01235, 38, -53.59, + 7.81, 6e-05, 4, 31, 55.86, -21.65, 0.38729, 36, 0.89, 7.96, 0.4981, 37, -20.51, 8.06, 0.11341, 38, -41.99, 8.06, 0.0012, 4, 31, 55.96, -10.87, 0.32692, 36, 11.67, 8.42, 0.3274, 37, + -9.74, 8.53, 0.32983, 38, -31.21, 8.53, 0.01585, 4, 31, 56.03, -0.69, 0.33677, 36, 21.84, 8.89, 0.10146, 37, 0.43, 9, 0.45593, 38, -21.04, 9, 0.10584, 4, 31, 56.4, 8.8, 0.33839, 36, + 31.33, 9.02, 0.0144, 37, 9.93, 9.13, 0.32329, 38, -11.55, 9.13, 0.32392, 4, 31, 57.13, 19.32, 0.42143, 36, 41.87, 8.84, 0.00109, 37, 20.47, 8.95, 0.11176, 38, -1.01, 8.95, 0.46572, + 4, 31, 58.69, 31.45, 0.79569, 36, 54.07, 7.92, 5e-05, 37, 32.67, 8.03, 0.01091, 38, 11.19, 8.03, 0.19335, 4, 31, 62.21, -35.59, 0.66085, 36, -12.7, 0.88, 0.32566, 37, -34.1, 0.99, + 0.01346, 38, -55.58, 0.99, 3e-05, 4, 31, 62.66, -22.75, 0.31024, 36, 0.16, 1.11, 0.56299, 37, -21.25, 1.21, 0.12589, 38, -42.72, 1.21, 0.00089, 4, 31, 62.85, -11.38, 0.24349, 36, + 11.52, 1.52, 0.36477, 37, -9.89, 1.62, 0.37599, 38, -31.36, 1.62, 0.01574, 4, 31, 62.94, -1.11, 0.2525, 36, 21.78, 1.97, 0.10936, 37, 0.37, 2.08, 0.52284, 38, -21.1, 2.08, 0.1153, 4, + 31, 63.43, 8.82, 0.2544, 36, 31.72, 2, 0.01401, 37, 10.32, 2.11, 0.36809, 38, -11.16, 2.11, 0.3635, 4, 31, 63.63, 19.58, 0.3466, 36, 42.48, 2.36, 0.00077, 37, 21.07, 2.47, 0.1237, + 38, -0.4, 2.47, 0.52893, 4, 31, 65.17, 33.27, 0.69411, 36, 56.23, 1.55, 3e-05, 37, 34.83, 1.66, 0.01435, 38, 13.35, 1.66, 0.29151, 4, 31, 70.52, 34.86, 0.61986, 36, 58.1, -3.71, + 1e-05, 37, 36.69, -3.61, 0.01658, 38, 15.22, -3.61, 0.36355, 4, 31, 69.45, 19.61, 0.28549, 36, 42.81, -3.44, 0.00065, 37, 21.4, -3.34, 0.13463, 38, -0.07, -3.34, 0.57924, 4, 31, + 69.14, 8.84, 0.18483, 36, 32.04, -3.7, 0.01432, 37, 10.64, -3.59, 0.40541, 38, -10.84, -3.59, 0.39544, 4, 31, 68.83, -1.47, 0.18141, 36, 21.73, -3.93, 0.11681, 37, 0.32, -3.83, + 0.57764, 38, -21.15, -3.83, 0.12413, 4, 31, 68.1, -11.77, 0.17479, 36, 11.41, -3.74, 0.39444, 37, -10, -3.64, 0.41447, 38, -31.47, -3.64, 0.0163, 4, 31, 67.66, -23.55, 0.24784, 36, + -0.38, -3.92, 0.61396, 37, -21.79, -3.82, 0.13743, 38, -43.26, -3.82, 0.00077, 4, 31, 67.15, -37.32, 0.59732, 36, -14.16, -4.14, 0.38768, 37, -35.56, -4.03, 0.01499, 38, -57.04, + -4.03, 1e-05, 4, 31, 21.31, 0.52, 0.98403, 36, 21.22, 43.62, 0.00516, 37, -0.19, 43.73, 0.00609, 38, -21.66, 43.73, 0.00473, 3, 31, 11.68, -10.43, 0.98457, 36, 9.78, 52.66, 0.01421, + 37, -11.62, 52.77, 0.00123, 3, 31, 14.7, 11.48, 0.98807, 37, 10.41, 50.91, 0.00101, 38, -11.07, 50.91, 0.01092, 1, 31, 38.71, -23.44, 1, 4, 31, 44.14, -24.78, 0.93122, 36, -2.85, + 19.5, 0.05888, 37, -24.25, 19.61, 0.00959, 38, -45.73, 19.61, 0.0003, 4, 31, 49.74, -26.15, 0.67882, 36, -3.92, 13.83, 0.287, 37, -25.32, 13.94, 0.03374, 38, -46.8, 13.94, 0.00045, + 4, 31, 55.68, -27.73, 0.52353, 36, -5.19, 7.82, 0.4314, 37, -26.59, 7.93, 0.04479, 38, -48.07, 7.93, 0.00029, 4, 31, 62.43, -29.46, 0.41464, 36, -6.56, 0.99, 0.53292, 37, -27.96, + 1.1, 0.05226, 38, -49.44, 1.1, 0.00018, 4, 31, 67.4, -30.57, 0.35706, 36, -7.41, -4.03, 0.58638, 37, -28.81, -3.93, 0.05644, 38, -50.29, -3.93, 0.00012, 4, 31, 39.16, -14.42, + 0.88311, 36, 7.24, 25.02, 0.07338, 37, -14.17, 25.12, 0.03978, 38, -35.64, 25.12, 0.00372, 4, 31, 44.74, -15, 0.62555, 36, 6.96, 19.42, 0.24007, 37, -14.45, 19.52, 0.1259, 38, + -35.92, 19.52, 0.00848, 4, 31, 49.97, -15.49, 0.4342, 36, 6.74, 14.17, 0.37611, 37, -14.67, 14.27, 0.18375, 38, -36.14, 14.27, 0.00595, 4, 31, 55.91, -16.19, 0.33684, 36, 6.35, 8.19, + 0.44427, 37, -15.05, 8.3, 0.21425, 38, -36.53, 8.3, 0.00464, 4, 31, 62.76, -16.95, 0.25537, 36, 5.95, 1.32, 0.49872, 37, -15.45, 1.42, 0.24179, 38, -36.93, 1.42, 0.00413, 4, 31, + 67.88, -17.57, 0.18921, 36, 5.6, -3.83, 0.54119, 37, -15.8, -3.73, 0.26556, 38, -37.28, -3.73, 0.00404, 4, 31, 39.65, -4.74, 0.83361, 36, 16.93, 25.04, 0.05679, 37, -4.48, 25.14, + 0.08927, 38, -25.95, 25.14, 0.02033, 4, 31, 45.13, -5.18, 0.57797, 36, 16.78, 19.54, 0.13938, 37, -4.63, 19.65, 0.23843, 38, -26.1, 19.65, 0.04422, 4, 31, 50.27, -5.8, 0.42696, 36, + 16.43, 14.38, 0.17737, 37, -4.97, 14.48, 0.35156, 38, -26.45, 14.48, 0.04411, 4, 31, 56, -5.99, 0.33132, 36, 16.54, 8.65, 0.20059, 37, -4.86, 8.75, 0.42277, 38, -26.34, 8.75, + 0.04531, 4, 31, 62.89, -6.48, 0.24781, 36, 16.41, 1.73, 0.22055, 37, -4.99, 1.84, 0.48389, 38, -26.47, 1.84, 0.04775, 4, 31, 68.45, -6.83, 0.17763, 36, 16.35, -3.83, 0.23735, 37, + -5.05, -3.73, 0.53429, 38, -26.53, -3.73, 0.05074, 4, 31, 39.88, 4.33, 0.83746, 36, 26, 25.28, 0.02009, 37, 4.59, 25.39, 0.08772, 38, -16.88, 25.39, 0.05473, 4, 31, 45.41, 4.36, + 0.58276, 36, 26.32, 19.77, 0.04346, 37, 4.92, 19.87, 0.23645, 38, -16.56, 19.87, 0.13732, 4, 31, 50.66, 4.3, 0.43226, 36, 26.54, 14.52, 0.04191, 37, 5.13, 14.62, 0.34769, 38, -16.34, + 14.62, 0.17814, 4, 31, 56.21, 4.01, 0.33656, 36, 26.54, 8.96, 0.0422, 37, 5.14, 9.06, 0.41771, 38, -16.34, 9.06, 0.20353, 4, 31, 63.19, 4, 0.25264, 36, 26.89, 1.99, 0.04384, 37, + 5.49, 2.09, 0.47782, 38, -15.99, 2.09, 0.2257, 4, 31, 68.99, 3.91, 0.18189, 36, 27.11, -3.81, 0.04615, 37, 5.71, -3.71, 0.52741, 38, -15.77, -3.71, 0.24456, 4, 31, 39.83, 13, 0.8608, + 36, 34.66, 25.79, 0.00457, 37, 13.26, 25.89, 0.04889, 38, -8.22, 25.89, 0.08574, 4, 31, 45.67, 13.13, 0.60926, 36, 35.09, 19.96, 0.00894, 37, 13.69, 20.06, 0.13479, 38, -7.79, 20.06, + 0.247, 4, 31, 50.93, 13.5, 0.45377, 36, 35.74, 14.73, 0.00554, 37, 14.33, 14.83, 0.18027, 38, -7.14, 14.83, 0.36041, 4, 31, 56.75, 13.83, 0.35749, 36, 36.37, 8.94, 0.00417, 37, + 14.96, 9.04, 0.20976, 38, -6.51, 9.04, 0.42858, 4, 31, 63.53, 14.02, 0.27612, 36, 36.92, 2.18, 0.00359, 37, 15.52, 2.28, 0.23625, 38, -5.96, 2.28, 0.48404, 4, 31, 69.3, 14.3, + 0.20954, 36, 37.5, -3.57, 0.00344, 37, 16.1, -3.46, 0.25903, 38, -5.38, -3.46, 0.52799, 1, 31, 39.78, 21.93, 1, 4, 31, 45.87, 22.69, 0.82489, 36, 44.65, 20.27, 0.00083, 37, 23.25, + 20.37, 0.0268, 38, 1.77, 20.37, 0.14748, 4, 31, 51.28, 24.11, 0.64773, 36, 46.35, 14.94, 0.00052, 37, 24.95, 15.04, 0.04091, 38, 3.47, 15.04, 0.31084, 4, 31, 57.92, 25.42, 0.53225, + 36, 48.01, 8.38, 0.00029, 37, 26.6, 8.49, 0.04857, 38, 5.13, 8.49, 0.41889, 4, 31, 64.49, 27.19, 0.46955, 36, 50.12, 1.91, 0.00016, 37, 28.71, 2.02, 0.05201, 38, 7.24, 2.02, 0.47828, + 4, 31, 70.04, 27.97, 0.41589, 36, 51.19, -3.59, 0.0001, 37, 29.78, -3.48, 0.05591, 38, 8.31, -3.48, 0.5281, 4, 31, 49.73, -28.84, 0.72647, 36, -6.61, 13.71, 0.25381, 37, -28.01, + 13.81, 0.01954, 38, -49.49, 13.81, 0.00018, 4, 31, 55.59, -30.72, 0.64422, 36, -8.18, 7.76, 0.33291, 37, -29.58, 7.86, 0.02275, 38, -51.06, 7.86, 0.00011, 4, 31, 62.32, -32.6, + 0.55448, 36, -9.7, 0.94, 0.41902, 37, -31.11, 1.04, 0.02643, 38, -52.58, 1.04, 7e-05, 4, 31, 67.27, -34.24, 0.44397, 36, -11.07, -4.09, 0.52396, 37, -32.48, -3.99, 0.03202, 38, + -53.95, -3.99, 4e-05, 4, 31, 49.76, -23.57, 0.5094, 36, -1.34, 13.95, 0.4213, 37, -22.75, 14.06, 0.06847, 38, -44.22, 14.06, 0.00083, 4, 31, 55.77, -24.72, 0.42549, 36, -2.17, 7.89, + 0.49746, 37, -23.57, 8, 0.07648, 38, -45.05, 8, 0.00057, 4, 31, 62.54, -26.18, 0.35688, 36, -3.28, 1.05, 0.55926, 37, -24.68, 1.15, 0.08347, 38, -46.16, 1.15, 0.00039, 4, 31, 67.52, + -27.35, 0.29772, 36, -4.19, -3.98, 0.61133, 37, -25.59, -3.88, 0.09064, 38, -47.07, -3.88, 0.00031, 4, 31, 67.77, -20.66, 0.21136, 36, 2.51, -3.88, 0.59029, 37, -18.89, -3.77, + 0.19654, 38, -40.37, -3.77, 0.00182, 4, 31, 62.71, -19.85, 0.275, 36, 3.05, 1.21, 0.54348, 37, -18.35, 1.32, 0.17958, 38, -39.83, 1.32, 0.00194, 4, 31, 55.88, -19.28, 0.35002, 36, + 3.27, 8.06, 0.48643, 37, -18.14, 8.17, 0.16123, 38, -39.61, 8.17, 0.00232, 4, 31, 49.86, -18.41, 0.41881, 36, 3.82, 14.12, 0.43213, 37, -17.59, 14.23, 0.1461, 38, -39.06, 14.23, + 0.00296, 4, 31, 50.06, -13.03, 0.39313, 36, 9.2, 14.21, 0.35299, 37, -12.2, 14.31, 0.24433, 38, -33.68, 14.31, 0.00955, 4, 31, 55.94, -13.47, 0.32258, 36, 9.06, 8.31, 0.39406, 37, + -12.34, 8.41, 0.27473, 38, -33.82, 8.41, 0.00863, 4, 31, 62.8, -14.24, 0.24476, 36, 8.66, 1.42, 0.43744, 37, -12.74, 1.52, 0.30953, 38, -34.22, 1.52, 0.00827, 4, 31, 67.98, -14.86, + 0.17804, 36, 8.31, -3.79, 0.47328, 37, -13.09, -3.69, 0.3403, 38, -34.57, -3.69, 0.00838, 4, 31, 68.28, -9.21, 0.17525, 36, 13.97, -3.79, 0.31355, 37, -7.43, -3.69, 0.48153, 38, + -28.91, -3.69, 0.02968, 4, 31, 62.87, -9.04, 0.24396, 36, 13.85, 1.62, 0.29088, 37, -7.55, 1.73, 0.43695, 38, -29.03, 1.73, 0.02821, 4, 31, 55.98, -8.57, 0.32275, 36, 13.97, 8.53, + 0.26435, 37, -7.44, 8.63, 0.38552, 38, -28.91, 8.63, 0.02739, 4, 31, 50.21, -8.13, 0.39269, 36, 14.1, 14.31, 0.24007, 37, -7.3, 14.42, 0.33961, 38, -28.78, 14.42, 0.02763, 4, 31, + 50.33, -3.07, 0.39835, 36, 19.16, 14.45, 0.13664, 37, -2.25, 14.56, 0.3972, 38, -23.72, 14.56, 0.06781, 4, 31, 56.01, -3.43, 0.32898, 36, 19.1, 8.76, 0.14701, 37, -2.3, 8.87, + 0.45281, 38, -23.78, 8.87, 0.07119, 4, 31, 62.92, -3.84, 0.24968, 36, 19.05, 1.85, 0.15947, 37, -2.36, 1.96, 0.51456, 38, -23.83, 1.96, 0.07629, 4, 31, 68.64, -4.23, 0.17972, 36, + 18.97, -3.88, 0.17094, 37, -2.44, -3.78, 0.56767, 38, -23.91, -3.78, 0.08167, 4, 31, 68.91, 1.29, 0.18179, 36, 24.49, -3.87, 0.07557, 37, 3.08, -3.77, 0.56385, 38, -18.39, -3.77, + 0.17879, 4, 31, 63.06, 1.38, 0.25204, 36, 24.27, 1.98, 0.07119, 37, 2.86, 2.08, 0.51118, 38, -18.61, 2.08, 0.16559, 4, 31, 56.13, 1.74, 0.33157, 36, 24.26, 8.92, 0.0672, 37, 2.86, + 9.03, 0.44995, 38, -18.62, 9.03, 0.15128, 4, 31, 50.52, 1.76, 0.40101, 36, 23.99, 14.52, 0.06478, 37, 2.59, 14.63, 0.39483, 38, -18.89, 14.63, 0.13938, 4, 31, 50.78, 6.45, 0.401, 36, + 28.68, 14.51, 0.0258, 37, 7.28, 14.62, 0.33427, 38, -14.2, 14.62, 0.23894, 4, 31, 56.3, 6.29, 0.3309, 36, 28.82, 8.99, 0.02514, 37, 7.42, 9.09, 0.37908, 38, -14.06, 9.09, 0.26488, 4, + 31, 63.29, 6.06, 0.25155, 36, 28.96, 1.99, 0.02548, 37, 7.56, 2.1, 0.4293, 38, -13.92, 2.1, 0.29367, 4, 31, 69.06, 6.02, 0.18206, 36, 29.22, -3.76, 0.02652, 37, 7.82, -3.66, 0.47284, + 38, -13.66, -3.66, 0.31858, 4, 31, 69.22, 11.49, 0.19245, 36, 34.69, -3.64, 0.00724, 37, 13.29, -3.53, 0.3321, 38, -8.19, -3.53, 0.46821, 4, 31, 69.38, 17.15, 0.23948, 36, 40.35, + -3.5, 0.00153, 37, 18.94, -3.39, 0.19195, 38, -2.53, -3.39, 0.56704, 4, 31, 69.73, 23.61, 0.346, 36, 46.82, -3.51, 0.00026, 37, 25.42, -3.41, 0.08922, 38, 3.94, -3.41, 0.56452, 4, + 31, 70.27, 31.28, 0.48407, 36, 54.51, -3.65, 4e-05, 37, 33.11, -3.54, 0.03358, 38, 11.63, -3.54, 0.48231, 4, 31, 64.84, 30.32, 0.54501, 36, 53.26, 1.73, 7e-05, 37, 31.86, 1.83, + 0.03077, 38, 10.38, 1.83, 0.42415, 4, 31, 64.01, 22.94, 0.40266, 36, 45.85, 2.16, 0.00034, 37, 24.45, 2.27, 0.08247, 38, 2.97, 2.27, 0.51452, 4, 31, 63.58, 16.63, 0.30287, 36, 39.53, + 2.26, 0.00168, 37, 18.13, 2.37, 0.17579, 38, -3.35, 2.37, 0.51965, 4, 31, 63.48, 11.19, 0.25994, 36, 34.09, 2.08, 0.00726, 37, 12.69, 2.19, 0.30245, 38, -8.79, 2.19, 0.43035, 4, 31, + 56.56, 11.07, 0.3382, 36, 33.61, 8.98, 0.00776, 37, 12.21, 9.09, 0.26884, 38, -9.27, 9.09, 0.38519, 4, 31, 56.93, 16.38, 0.37706, 36, 38.93, 8.89, 0.00208, 37, 17.52, 9, 0.15821, 38, + -3.95, 9, 0.46265, 4, 31, 57.5, 22.2, 0.46779, 36, 44.77, 8.63, 0.00052, 37, 23.36, 8.73, 0.07582, 38, 1.89, 8.73, 0.45586, 4, 31, 58.3, 28.37, 0.65325, 36, 50.97, 8.16, 0.00012, 37, + 29.57, 8.26, 0.02541, 38, 8.09, 8.26, 0.32123, 4, 31, 51.42, 26.68, 0.75526, 36, 48.93, 14.93, 0.00017, 37, 27.52, 15.03, 0.02002, 38, 6.05, 15.03, 0.22455, 4, 31, 51.11, 21.17, + 0.52586, 36, 43.41, 14.95, 0.00082, 37, 22, 15.06, 0.07106, 38, 0.53, 15.06, 0.40226, 4, 31, 50.95, 15.93, 0.44455, 36, 38.16, 14.84, 0.00273, 37, 16.76, 14.94, 0.1436, 38, -4.72, + 14.94, 0.40912, 4, 31, 50.92, 10.61, 0.40864, 36, 32.85, 14.59, 0.0088, 37, 11.45, 14.7, 0.23945, 38, -10.03, 14.7, 0.34311, 4, 31, 69.38, -38.1, 0.52059, 36, -14.82, -6.4, 0.45917, + 37, -36.22, -6.3, 0.02022, 38, -57.7, -6.3, 1e-05, 4, 31, 69.44, -34.82, 0.37517, 36, -11.54, -6.29, 0.58803, 37, -32.95, -6.19, 0.03676, 38, -54.42, -6.19, 4e-05, 4, 31, 69.57, + -31.13, 0.31655, 36, -7.85, -6.23, 0.62281, 37, -29.26, -6.13, 0.06054, 38, -50.73, -6.13, 0.00011, 4, 31, 69.74, -27.7, 0.25662, 36, -4.41, -6.22, 0.64624, 37, -25.82, -6.11, + 0.09684, 38, -47.29, -6.11, 0.0003, 4, 31, 69.8, -23.9, 0.20542, 36, -0.61, -6.08, 0.64718, 37, -22.02, -5.97, 0.14662, 38, -43.49, -5.97, 0.00077, 4, 31, 69.96, -20.88, 0.16774, 36, + 2.4, -6.08, 0.62093, 37, -19, -5.97, 0.20946, 38, -40.48, -5.97, 0.00187, 4, 31, 70.09, -17.89, 0.14406, 36, 5.4, -6.05, 0.56885, 37, -16, -5.95, 0.28288, 38, -37.48, -5.95, 0.00421, + 4, 31, 70.25, -15.09, 0.13169, 36, 8.2, -6.07, 0.49722, 37, -13.21, -5.96, 0.36227, 38, -34.68, -5.96, 0.00882, 4, 31, 70.5, -11.95, 0.12708, 36, 11.36, -6.14, 0.41453, 37, -10.05, + -6.04, 0.44117, 38, -31.52, -6.04, 0.01722, 4, 31, 70.58, -9.33, 0.12668, 36, 13.97, -6.1, 0.32958, 37, -7.43, -5.99, 0.51233, 38, -28.91, -5.99, 0.03141, 4, 31, 70.75, -6.95, + 0.12812, 36, 16.36, -6.14, 0.24965, 37, -5.05, -6.03, 0.56851, 38, -26.52, -6.03, 0.05372, 4, 31, 71, -4.39, 0.12979, 36, 18.93, -6.25, 0.1799, 37, -2.47, -6.14, 0.60387, 38, -23.95, + -6.14, 0.08644, 4, 31, 71.07, -1.61, 0.13105, 36, 21.71, -6.18, 0.12302, 37, 0.3, -6.07, 0.61461, 38, -21.17, -6.07, 0.13132, 4, 31, 71.18, 1.28, 0.13159, 36, 24.6, -6.14, 0.07962, + 37, 3.19, -6.03, 0.5998, 38, -18.28, -6.03, 0.18899, 4, 31, 71.31, 3.85, 0.13189, 36, 27.17, -6.13, 0.04862, 37, 5.76, -6.02, 0.56113, 38, -15.71, -6.02, 0.25837, 4, 31, 71.51, 6.02, + 0.13282, 36, 29.35, -6.21, 0.02792, 37, 7.95, -6.1, 0.50297, 38, -13.53, -6.1, 0.33629, 4, 31, 71.56, 8.85, 0.13637, 36, 32.18, -6.12, 0.01503, 37, 10.77, -6.01, 0.43134, 38, -10.7, + -6.01, 0.41726, 4, 31, 71.75, 11.39, 0.14539, 36, 34.72, -6.17, 0.00757, 37, 13.32, -6.07, 0.35328, 38, -8.16, -6.07, 0.49376, 4, 31, 71.87, 14.39, 0.16393, 36, 37.73, -6.13, + 0.00355, 37, 16.32, -6.03, 0.27561, 38, -5.15, -6.03, 0.55691, 4, 31, 72.16, 17.13, 0.19585, 36, 40.48, -6.28, 0.00155, 37, 19.08, -6.18, 0.20422, 38, -2.4, -6.18, 0.59837, 4, 31, + 72.25, 19.76, 0.24372, 36, 43.11, -6.23, 0.00063, 37, 21.71, -6.13, 0.14329, 38, 0.23, -6.13, 0.61235, 4, 31, 72.47, 23.82, 0.30631, 36, 47.17, -6.24, 0.00024, 37, 25.77, -6.14, + 0.09501, 38, 4.29, -6.14, 0.59844, 4, 31, 72.61, 28.41, 0.3775, 36, 51.77, -6.14, 9e-05, 37, 30.37, -6.03, 0.05972, 38, 8.89, -6.03, 0.5627, 4, 31, 72.88, 31.77, 0.44548, 36, 55.14, + -6.23, 3e-05, 37, 33.74, -6.13, 0.03652, 38, 12.26, -6.13, 0.51797, 4, 31, 73.38, 35.45, 0.56131, 36, 58.84, -6.53, 1e-05, 37, 37.44, -6.43, 0.02128, 38, 15.96, -6.43, 0.41739 + ], + "hull": 44, + "edges": [ + 78, 76, 86, 0, 78, 80, 80, 82, 82, 84, 84, 86, 0, 94, 76, 96, 62, 64, 74, 76, 102, 96, 74, 102, 104, 90, 106, 98, 108, 88, 110, 100, 112, 92, 114, 94, 2, 0, 114, 2, 72, 74, 116, 102, + 72, 116, 118, 104, 120, 106, 122, 108, 124, 110, 126, 112, 128, 114, 4, 2, 128, 4, 70, 72, 130, 116, 70, 130, 132, 118, 134, 120, 136, 122, 138, 124, 140, 126, 142, 128, 8, 6, 6, 4, + 142, 6, 68, 70, 144, 130, 68, 144, 146, 132, 148, 134, 150, 136, 152, 138, 154, 140, 156, 142, 156, 8, 8, 10, 10, 12, 12, 158, 158, 156, 10, 158, 160, 154, 162, 152, 164, 150, 166, + 148, 168, 146, 170, 144, 64, 66, 66, 68, 170, 66, 82, 172, 172, 88, 98, 172, 172, 100, 80, 174, 174, 90, 96, 174, 84, 176, 176, 92, 94, 176, 90, 178, 178, 96, 102, 180, 180, 104, + 178, 180, 180, 182, 182, 184, 184, 186, 186, 188, 90, 190, 190, 98, 104, 192, 192, 106, 190, 192, 192, 194, 194, 196, 196, 198, 198, 200, 88, 202, 202, 98, 106, 204, 204, 108, 202, + 204, 204, 206, 206, 208, 208, 210, 210, 212, 88, 214, 214, 100, 108, 216, 216, 110, 214, 216, 216, 218, 218, 220, 220, 222, 222, 224, 92, 226, 226, 100, 110, 228, 228, 112, 226, 228, + 228, 230, 230, 232, 232, 234, 234, 236, 92, 238, 238, 94, 112, 240, 240, 114, 238, 240, 240, 242, 242, 244, 244, 246, 246, 248, 12, 14, 170, 64, 116, 250, 250, 182, 130, 252, 252, + 184, 250, 252, 144, 254, 254, 186, 252, 254, 170, 256, 256, 188, 254, 256, 58, 60, 60, 62, 118, 258, 258, 182, 132, 260, 260, 184, 258, 260, 146, 262, 262, 186, 260, 262, 168, 264, + 264, 188, 262, 264, 54, 56, 56, 58, 50, 52, 52, 54, 168, 266, 266, 200, 146, 268, 268, 198, 266, 268, 132, 270, 270, 196, 268, 270, 118, 272, 272, 194, 270, 272, 120, 274, 274, 194, + 134, 276, 276, 196, 274, 276, 148, 278, 278, 198, 276, 278, 166, 280, 280, 200, 278, 280, 46, 48, 48, 50, 42, 44, 44, 46, 166, 282, 282, 212, 148, 284, 284, 210, 282, 284, 134, 286, + 286, 208, 284, 286, 120, 288, 288, 206, 286, 288, 122, 290, 290, 206, 136, 292, 292, 208, 290, 292, 150, 294, 294, 210, 292, 294, 164, 296, 296, 212, 294, 296, 38, 40, 40, 42, 34, + 36, 36, 38, 164, 298, 298, 224, 150, 300, 300, 222, 298, 300, 136, 302, 302, 220, 300, 302, 122, 304, 304, 218, 302, 304, 124, 306, 306, 218, 138, 308, 308, 220, 306, 308, 152, 310, + 310, 222, 308, 310, 162, 312, 312, 224, 310, 312, 30, 32, 32, 34, 26, 28, 28, 30, 162, 314, 314, 236, 22, 24, 24, 26, 160, 316, 316, 236, 18, 20, 20, 22, 160, 318, 318, 248, 14, 16, + 16, 18, 158, 320, 320, 248, 156, 322, 322, 246, 320, 322, 154, 324, 324, 246, 318, 324, 154, 326, 326, 234, 316, 326, 152, 328, 328, 234, 314, 328, 138, 330, 330, 232, 328, 330, 140, + 332, 332, 232, 326, 332, 140, 334, 334, 244, 324, 334, 142, 336, 336, 244, 322, 336, 128, 338, 338, 242, 336, 338, 126, 340, 340, 242, 334, 340, 126, 342, 342, 230, 332, 342, 124, + 344, 344, 230, 330, 344, 62, 346, 346, 170, 60, 348, 348, 256, 346, 348, 58, 350, 350, 188, 348, 350, 56, 352, 352, 264, 350, 352, 54, 354, 354, 168, 352, 354, 52, 356, 356, 266, + 354, 356, 50, 358, 358, 200, 356, 358, 48, 360, 360, 280, 358, 360, 46, 362, 362, 166, 360, 362, 44, 364, 364, 282, 362, 364, 42, 366, 366, 212, 364, 366, 40, 368, 368, 296, 366, + 368, 38, 370, 370, 164, 368, 370, 36, 372, 372, 298, 370, 372, 34, 374, 374, 224, 372, 374, 32, 376, 376, 312, 374, 376, 30, 378, 378, 162, 376, 378, 28, 380, 380, 314, 378, 380, 26, + 382, 382, 236, 380, 382, 24, 384, 384, 316, 382, 384, 22, 386, 386, 160, 384, 386, 20, 388, 388, 318, 386, 388, 18, 390, 390, 248, 388, 390, 16, 392, 392, 320, 390, 392, 14, 394, + 394, 158, 392, 394 + ], + "width": 82.3529411764706, + "height": 72.94117647058823, + "path": "summer-a.ear-right-bubble", + "x": 0.32352941176470296, + "y": 0.529411764705884 + } + }, + "ear-right-bubble-02": { + "ear-right-bubble": { + "type": "mesh", + "uvs": [ + 0.93928, 0.50958, 0.95558, 0.59885, 0.96791, 0.66638, 0.98006, 0.73289, 1, 0.84205, 1, 0.89818, 1, 0.9625, 0.9567, 0.9625, 0.9208, 0.9625, 0.88771, 0.9625, 0.83969, 0.9625, 0.79967, + 0.9625, 0.76574, 0.9625, 0.73418, 0.9625, 0.69508, 0.9625, 0.6661, 0.9625, 0.6319, 0.9625, 0.6046, 0.9625, 0.57454, 0.9625, 0.53755, 0.9625, 0.50387, 0.9625, 0.47341, 0.9625, + 0.44466, 0.9625, 0.41233, 0.9625, 0.37317, 0.9625, 0.33787, 0.9625, 0.30333, 0.9625, 0.2648, 0.9625, 0.21937, 0.9625, 0.17434, 0.9625, 0.12959, 0.9625, 0.08769, 0.9625, 0, 0.9625, + 0.02085, 0.89779, 0.04055, 0.83664, 0.06626, 0.75682, 0.08854, 0.68766, 0.11527, 0.60468, 0.13788, 0.53451, 0.35753, 0.0375, 0.43128, 0.0375, 0.52161, 0.0375, 0.60662, 0.0375, + 0.67954, 0.0375, 0.54109, 0.5336, 0.30907, 0.53412, 0.75362, 0.52077, 0.84707, 0.51514, 0.2081, 0.53435, 0.42115, 0.53387, 0.64269, 0.52747, 0.1892, 0.60156, 0.3018, 0.60447, + 0.41972, 0.60346, 0.54053, 0.60135, 0.64648, 0.59785, 0.76151, 0.59644, 0.87262, 0.58988, 0.16806, 0.67676, 0.29497, 0.67061, 0.41838, 0.66857, 0.54, 0.66508, 0.65011, 0.66538, + 0.7681, 0.65967, 0.89666, 0.66021, 0.14733, 0.75044, 0.28705, 0.74721, 0.41688, 0.74143, 0.53942, 0.73556, 0.6538, 0.73393, 0.7757, 0.7326, 0.91933, 0.7265, 0.12337, 0.83566, 0.2782, + 0.83283, 0.4151, 0.82771, 0.53871, 0.82207, 0.65852, 0.82169, 0.7847, 0.8189, 0.95379, 0.82732, 0.97627, 0.89309, 0.79208, 0.88971, 0.66236, 0.89294, 0.5381, 0.89586, 0.41375, + 0.89349, 0.2717, 0.89571, 0.10571, 0.89844, 0.53197, 0.30141, 0.39415, 0.1884, 0.65961, 0.2117, 0.25473, 0.53425, 0.24202, 0.60293, 0.22911, 0.6738, 0.21379, 0.7489, 0.19729, + 0.83431, 0.18704, 0.8971, 0.36352, 0.534, 0.36013, 0.60397, 0.35748, 0.66957, 0.35288, 0.74428, 0.34802, 0.83022, 0.34383, 0.89458, 0.48024, 0.53373, 0.47847, 0.60244, 0.47433, + 0.66696, 0.47563, 0.73861, 0.47402, 0.82502, 0.47337, 0.89463, 0.58955, 0.53067, 0.59344, 0.5996, 0.59605, 0.66523, 0.5961, 0.73475, 0.60032, 0.82187, 0.60296, 0.89434, 0.69391, + 0.52438, 0.69915, 0.59721, 0.70691, 0.66263, 0.71206, 0.7333, 0.71954, 0.82034, 0.72813, 0.8913, 0.80125, 0.5179, 0.81428, 0.59333, 0.8348, 0.65995, 0.84793, 0.72953, 0.87862, + 0.82358, 0.89305, 0.89156, 0.19669, 0.67537, 0.17782, 0.74974, 0.1594, 0.835, 0.1429, 0.89783, 0.26012, 0.6723, 0.25017, 0.74806, 0.23685, 0.83359, 0.22589, 0.89647, 0.30659, + 0.89517, 0.3131, 0.83153, 0.31569, 0.74593, 0.32231, 0.67016, 0.38717, 0.66908, 0.38553, 0.74282, 0.38068, 0.829, 0.37648, 0.89407, 0.44462, 0.89408, 0.44322, 0.82643, 0.44458, + 0.7401, 0.44621, 0.66777, 0.50711, 0.66602, 0.50646, 0.73714, 0.50582, 0.82357, 0.50482, 0.89523, 0.57134, 0.89508, 0.5687, 0.82197, 0.56865, 0.73514, 0.5654, 0.66515, 0.62192, + 0.6653, 0.6236, 0.73436, 0.62525, 0.8218, 0.62839, 0.89374, 0.69427, 0.89215, 0.76244, 0.89045, 0.84047, 0.89059, 0.93306, 0.89229, 0.91732, 0.8255, 0.82617, 0.82097, 0.75013, + 0.81967, 0.6863, 0.82108, 0.68017, 0.73364, 0.74166, 0.73297, 0.80979, 0.73115, 0.88285, 0.72805, 0.86581, 0.66008, 0.79931, 0.6598, 0.73613, 0.66121, 0.67214, 0.66431, 0.09776, + 0.92671, 0.13724, 0.92534, 0.1817, 0.92459, 0.22313, 0.92439, 0.26892, 0.92268, 0.30526, 0.92265, 0.34139, 0.92236, 0.3751, 0.92252, 0.41313, 0.92351, 0.44464, 0.92289, 0.47339, + 0.92339, 0.5044, 0.9248, 0.53787, 0.92389, 0.57268, 0.92341, 0.60366, 0.9233, 0.62995, 0.92432, 0.66398, 0.92316, 0.69464, 0.92383, 0.73085, 0.92333, 0.76403, 0.92521, 0.79572, + 0.92461, 0.84011, 0.92404, 0.89075, 0.92209, 0.92774, 0.92274, 0.96706, 0.92576 + ], + "triangles": [ + 8, 196, 7, 9, 195, 8, 8, 195, 196, 10, 194, 9, 9, 194, 195, 10, 11, 194, 12, 193, 11, 11, 193, 194, 13, 192, 12, 12, 192, 193, 14, 191, 13, 13, 191, 192, 15, 190, 14, 14, 190, 191, + 15, 189, 190, 191, 158, 192, 192, 80, 193, 192, 158, 80, 194, 193, 159, 194, 159, 195, 159, 193, 80, 189, 157, 190, 190, 118, 191, 190, 157, 118, 191, 118, 158, 189, 81, 157, 195, + 124, 196, 196, 124, 160, 195, 159, 124, 81, 164, 157, 81, 76, 164, 157, 117, 118, 157, 164, 117, 159, 123, 124, 124, 123, 161, 118, 163, 158, 118, 117, 163, 80, 162, 159, 159, 162, + 123, 158, 77, 80, 158, 163, 77, 80, 77, 162, 162, 122, 123, 76, 165, 164, 76, 69, 165, 164, 116, 117, 164, 165, 116, 77, 167, 162, 117, 166, 163, 117, 116, 166, 163, 70, 77, 163, + 166, 70, 77, 70, 167, 165, 115, 116, 116, 171, 166, 166, 63, 70, 146, 103, 145, 68, 61, 152, 68, 145, 61, 151, 152, 109, 110, 153, 154, 143, 144, 104, 16, 189, 15, 17, 188, 16, 16, + 188, 189, 18, 187, 17, 17, 187, 188, 18, 19, 186, 19, 185, 186, 18, 186, 187, 20, 184, 19, 19, 184, 185, 20, 21, 184, 22, 183, 21, 21, 183, 184, 23, 181, 22, 181, 182, 22, 22, 182, + 183, 184, 148, 185, 184, 183, 148, 187, 156, 188, 188, 81, 189, 188, 156, 81, 185, 149, 186, 185, 82, 149, 185, 148, 82, 182, 83, 141, 182, 181, 83, 186, 112, 187, 186, 149, 112, + 182, 106, 183, 183, 106, 148, 187, 112, 156, 182, 141, 106, 150, 149, 82, 147, 75, 82, 82, 148, 147, 82, 75, 150, 106, 105, 148, 148, 105, 147, 149, 111, 112, 149, 150, 111, 105, + 106, 142, 112, 155, 156, 112, 111, 155, 83, 74, 141, 74, 142, 141, 106, 141, 142, 156, 76, 81, 156, 155, 76, 74, 67, 142, 142, 143, 105, 142, 67, 143, 105, 104, 147, 105, 143, 104, + 147, 146, 75, 147, 104, 146, 75, 68, 150, 75, 146, 68, 68, 151, 150, 150, 110, 111, 150, 151, 110, 111, 154, 155, 111, 110, 154, 155, 69, 76, 155, 154, 69, 104, 103, 146, 146, 145, + 68, 68, 152, 151, 151, 109, 110, 24, 180, 23, 25, 179, 24, 24, 179, 180, 26, 178, 25, 25, 178, 179, 27, 177, 26, 26, 177, 178, 28, 176, 27, 27, 176, 177, 29, 175, 28, 28, 175, 176, + 30, 174, 29, 29, 174, 175, 31, 173, 30, 30, 173, 174, 174, 128, 175, 174, 85, 128, 175, 94, 176, 175, 128, 94, 176, 132, 177, 176, 94, 132, 180, 140, 181, 177, 84, 178, 177, 132, 84, + 178, 133, 179, 178, 84, 133, 179, 100, 180, 180, 100, 140, 179, 133, 100, 128, 127, 94, 94, 93, 132, 94, 127, 93, 132, 131, 84, 132, 93, 131, 84, 73, 133, 84, 131, 73, 133, 134, 100, + 133, 73, 134, 100, 99, 140, 100, 134, 99, 140, 139, 83, 140, 99, 139, 93, 92, 131, 131, 130, 73, 131, 92, 130, 73, 66, 134, 73, 130, 66, 134, 135, 99, 134, 66, 135, 99, 98, 139, 99, + 135, 98, 139, 138, 74, 139, 98, 138, 74, 138, 67, 130, 129, 66, 66, 59, 135, 135, 136, 98, 135, 59, 136, 98, 97, 138, 98, 136, 97, 138, 137, 67, 23, 180, 181, 181, 140, 83, 83, 139, + 74, 128, 72, 127, 127, 126, 93, 93, 126, 92, 126, 125, 92, 85, 34, 72, 168, 64, 71, 168, 169, 64, 65, 58, 126, 126, 58, 125, 59, 52, 136, 69, 172, 165, 165, 172, 115, 116, 115, 171, + 154, 62, 69, 120, 170, 56, 65, 36, 58, 58, 51, 125, 37, 38, 51, 51, 48, 90, 51, 38, 48, 78, 3, 4, 64, 169, 57, 121, 120, 57, 120, 47, 57, 67, 137, 60, 143, 60, 144, 144, 103, 104, + 110, 109, 153, 154, 153, 62, 69, 62, 172, 97, 136, 96, 97, 96, 137, 96, 136, 52, 60, 137, 53, 60, 53, 144, 53, 137, 96, 103, 144, 102, 103, 102, 145, 102, 144, 53, 61, 145, 54, 172, + 62, 55, 55, 62, 153, 152, 108, 109, 55, 153, 108, 153, 109, 108, 61, 54, 152, 152, 54, 108, 54, 145, 102, 172, 114, 115, 172, 55, 114, 115, 114, 171, 171, 114, 56, 90, 89, 52, 52, + 45, 96, 52, 89, 45, 96, 95, 53, 96, 45, 95, 53, 49, 102, 53, 95, 49, 90, 48, 89, 102, 101, 54, 102, 49, 101, 54, 44, 108, 44, 107, 108, 54, 101, 44, 55, 108, 50, 108, 107, 50, 55, + 113, 114, 55, 50, 113, 114, 46, 56, 114, 113, 46, 56, 119, 120, 56, 46, 119, 120, 119, 47, 57, 47, 0, 87, 48, 38, 87, 89, 48, 87, 45, 89, 87, 95, 45, 49, 95, 86, 87, 38, 39, 101, 49, + 86, 87, 86, 95, 101, 86, 44, 41, 87, 40, 87, 41, 86, 44, 86, 107, 107, 86, 50, 50, 86, 113, 46, 113, 88, 119, 46, 88, 47, 119, 88, 86, 88, 113, 47, 88, 0, 0, 88, 43, 88, 41, 42, 88, + 86, 41, 88, 42, 43, 87, 39, 40, 57, 0, 1, 1, 64, 57, 64, 1, 2, 71, 2, 3, 58, 37, 51, 36, 37, 58, 91, 51, 90, 35, 36, 65, 125, 51, 91, 34, 35, 72, 72, 35, 65, 33, 34, 85, 169, 121, + 57, 171, 56, 63, 170, 63, 56, 138, 97, 137, 67, 60, 143, 59, 129, 52, 52, 129, 90, 71, 64, 2, 3, 78, 71, 78, 161, 71, 91, 90, 129, 170, 120, 121, 122, 121, 169, 161, 168, 71, 92, + 125, 91, 72, 65, 127, 127, 65, 126, 122, 169, 168, 92, 91, 130, 130, 91, 129, 123, 122, 168, 166, 171, 63, 70, 170, 167, 70, 63, 170, 167, 121, 122, 167, 170, 121, 66, 129, 59, 85, + 32, 33, 173, 85, 174, 31, 32, 173, 173, 32, 85, 85, 72, 128, 6, 197, 79, 162, 167, 122, 7, 197, 6, 160, 161, 78, 197, 160, 79, 196, 160, 197, 7, 196, 197, 124, 161, 160, 160, 78, 79, + 123, 168, 161, 6, 79, 5, 79, 78, 4, 79, 4, 5 + ], + "vertices": [ + 1, 42, 41.12, 33.33, 1, 1, 42, 48.32, 34.31, 1, 1, 42, 53.77, 35.04, 1, 1, 42, 60, 36.01, 1, 4, 42, 68.02, 38.37, 0.9295, 43, 61.47, -1.03, 1e-05, 44, 40.07, -0.92, 0.00266, 45, + 18.6, -0.92, 0.06784, 4, 42, 72.27, 39, 0.79905, 43, 62.32, -5.24, 1e-05, 44, 40.92, -5.13, 0.00721, 45, 19.44, -5.13, 0.19373, 4, 42, 78.35, 40.51, 0.74731, 43, 64.15, -11.23, 0, + 44, 42.75, -11.12, 0.00973, 45, 21.27, -11.12, 0.24296, 4, 42, 77.99, 36.05, 0.54785, 43, 59.68, -11.11, 1e-05, 44, 38.27, -11, 0.02168, 45, 16.8, -11, 0.43046, 4, 42, 77.69, 32.35, + 0.43038, 43, 55.96, -11, 3e-05, 44, 34.56, -10.9, 0.03847, 45, 13.08, -10.9, 0.53112, 4, 42, 77.42, 28.93, 0.36035, 43, 52.54, -10.91, 9e-05, 44, 31.14, -10.81, 0.06275, 45, 9.66, + -10.81, 0.57681, 4, 42, 77.02, 23.98, 0.2889, 43, 47.58, -10.78, 0.00026, 44, 26.17, -10.67, 0.09917, 45, 4.7, -10.67, 0.61167, 4, 42, 76.69, 19.85, 0.22591, 43, 43.44, -10.66, + 0.0007, 44, 22.03, -10.56, 0.14876, 45, 0.56, -10.56, 0.62463, 4, 42, 76.55, 17.04, 0.17724, 43, 40.62, -10.66, 0.0017, 44, 19.22, -10.56, 0.21115, 45, -2.26, -10.56, 0.60991, 4, 42, + 76.41, 14.43, 0.14418, 43, 38, -10.66, 0.00385, 44, 16.6, -10.56, 0.28407, 45, -4.88, -10.56, 0.5679, 4, 42, 76.24, 11.19, 0.12448, 43, 34.76, -10.66, 0.00813, 44, 13.35, -10.56, + 0.36326, 45, -8.12, -10.56, 0.50413, 4, 42, 76.11, 8.78, 0.11438, 43, 32.35, -10.66, 0.016, 44, 10.95, -10.56, 0.44276, 45, -10.53, -10.56, 0.42686, 4, 42, 75.96, 5.95, 0.11006, 43, + 29.51, -10.66, 0.02948, 44, 8.11, -10.56, 0.51561, 45, -13.37, -10.56, 0.34486, 4, 42, 75.84, 3.69, 0.10858, 43, 27.25, -10.66, 0.05095, 44, 5.84, -10.56, 0.57474, 45, -15.63, + -10.56, 0.26573, 4, 42, 75.71, 1.19, 0.10802, 43, 24.75, -10.66, 0.08291, 44, 3.35, -10.56, 0.614, 45, -18.13, -10.56, 0.19506, 4, 42, 75.55, -1.87, 0.1074, 43, 21.68, -10.66, + 0.12742, 44, 0.28, -10.56, 0.62906, 45, -21.2, -10.56, 0.13612, 4, 42, 75.4, -4.66, 0.10634, 43, 18.89, -10.66, 0.18549, 44, -2.52, -10.56, 0.61812, 45, -23.99, -10.56, 0.09006, 4, + 42, 75.27, -7.19, 0.10502, 43, 16.36, -10.66, 0.25646, 44, -5.05, -10.56, 0.58221, 45, -26.52, -10.56, 0.05631, 4, 42, 75.14, -9.57, 0.10419, 43, 13.97, -10.66, 0.33753, 44, -7.43, + -10.56, 0.52513, 45, -28.91, -10.56, 0.03316, 4, 42, 75, -12.25, 0.10536, 43, 11.29, -10.66, 0.42349, 44, -10.12, -10.56, 0.45282, 45, -31.59, -10.56, 0.01833, 4, 42, 74.83, -15.5, + 0.11098, 43, 8.04, -10.66, 0.50701, 44, -13.37, -10.56, 0.37254, 45, -34.84, -10.56, 0.00948, 4, 42, 74.68, -18.42, 0.12436, 43, 5.11, -10.66, 0.57939, 44, -16.3, -10.56, 0.29168, + 45, -37.77, -10.56, 0.00457, 4, 42, 74.53, -21.28, 0.149, 43, 2.24, -10.66, 0.63222, 44, -19.16, -10.56, 0.21673, 45, -40.64, -10.56, 0.00205, 4, 42, 74.36, -24.48, 0.18726, 43, + -0.96, -10.66, 0.65948, 44, -22.36, -10.56, 0.15241, 45, -43.84, -10.56, 0.00085, 4, 42, 74.16, -28.24, 0.23866, 43, -4.73, -10.66, 0.65975, 44, -26.13, -10.56, 0.10126, 45, -47.61, + -10.56, 0.00033, 4, 42, 73.97, -31.98, 0.29871, 43, -8.46, -10.66, 0.63741, 44, -29.87, -10.56, 0.06376, 45, -51.34, -10.56, 0.00012, 4, 42, 73.77, -35.69, 0.35932, 43, -12.18, + -10.66, 0.60181, 44, -33.58, -10.56, 0.03884, 45, -55.06, -10.56, 4e-05, 4, 42, 73.59, -39.16, 0.49297, 43, -15.66, -10.66, 0.48586, 44, -37.06, -10.56, 0.02116, 45, -58.54, -10.56, + 1e-05, 4, 42, 73.2, -46.43, 0.66969, 43, -22.93, -10.66, 0.32512, 44, -44.34, -10.56, 0.00518, 45, -65.81, -10.56, 0, 4, 42, 68.13, -44.43, 0.73638, 43, -21.2, -5.49, 0.26049, 44, + -42.61, -5.38, 0.00313, 45, -64.08, -5.38, 0, 4, 42, 63.33, -42.54, 0.74288, 43, -19.57, -0.59, 0.25402, 44, -40.97, -0.49, 0.00309, 45, -62.45, -0.49, 1e-05, 2, 42, 57.06, -40.07, + 0.86, 43, -17.44, 5.79, 0.14, 2, 42, 51.63, -37.93, 0.87418, 43, -15.59, 11.32, 0.12582, 1, 42, 45.12, -35.37, 1, 1, 42, 39.61, -33.2, 1, 2, 42, 0.87, -12.9, 0.99965, 43, 6.74, + 63.34, 0.00035, 2, 42, 1.19, -6.79, 0.9998, 43, 12.86, 63.34, 0.0002, 3, 42, 1.58, 0.7, 0.99981, 43, 20.36, 63.34, 9e-05, 45, -22.52, 63.44, 0.0001, 3, 42, 1.95, 7.74, 0.99975, 43, + 27.41, 63.34, 1e-05, 45, -15.46, 63.44, 0.00024, 2, 42, 2.27, 13.79, 0.99954, 45, -9.41, 63.44, 0.00046, 4, 42, 41.3, 0.23, 0.88429, 43, 21.98, 23.65, 0.02526, 44, 0.57, 23.75, + 0.06552, 45, -20.9, 23.75, 0.02493, 1, 42, 40.33, -19.01, 1, 4, 42, 41.2, 17.9, 0.94373, 43, 39.62, 24.67, 0.00089, 44, 18.21, 24.78, 0.01419, 45, -3.26, 24.78, 0.04119, 1, 42, + 41.16, 25.66, 1, 1, 42, 39.91, -27.38, 1, 4, 42, 40.8, -9.72, 0.88619, 43, 12.02, 23.63, 0.05505, 44, -9.38, 23.73, 0.05102, 45, -30.86, 23.73, 0.00774, 4, 42, 41.25, 8.67, 0.89286, + 43, 30.41, 24.14, 0.00746, 44, 9, 24.24, 0.04877, 45, -12.47, 24.24, 0.05092, 1, 42, 45.19, -29.23, 1, 4, 42, 45.92, -19.91, 0.74343, 43, 2.11, 17.98, 0.19678, 44, -19.29, 18.08, + 0.05726, 45, -40.76, 18.08, 0.00254, 4, 42, 46.35, -10.13, 0.58833, 43, 11.9, 18.06, 0.20061, 44, -9.5, 18.16, 0.19026, 45, -30.98, 18.16, 0.0208, 4, 42, 46.71, -0.11, 0.58846, 43, + 21.93, 18.23, 0.08112, 44, 0.53, 18.33, 0.24909, 45, -20.95, 18.33, 0.08133, 4, 42, 46.89, 8.69, 0.59817, 43, 30.72, 18.51, 0.02026, 44, 9.32, 18.61, 0.18761, 45, -12.16, 18.61, + 0.19395, 4, 42, 47.28, 18.23, 0.66183, 43, 40.27, 18.62, 0.00346, 44, 18.87, 18.73, 0.07957, 45, -2.61, 18.73, 0.25514, 1, 42, 47.24, 27.47, 1, 4, 42, 51.11, -31.3, 0.84023, 43, + -8.99, 12.2, 0.15068, 44, -30.39, 12.3, 0.00899, 45, -51.87, 12.3, 0.0001, 4, 42, 51.17, -20.75, 0.48016, 43, 1.55, 12.69, 0.41733, 44, -19.86, 12.79, 0.10062, 45, -41.33, 12.79, + 0.0019, 4, 42, 51.55, -10.51, 0.42576, 43, 11.79, 12.85, 0.28082, 44, -9.61, 12.96, 0.27628, 45, -31.09, 12.96, 0.01714, 4, 42, 51.8, -0.42, 0.43345, 43, 21.89, 13.13, 0.09343, 44, + 0.48, 13.24, 0.37698, 45, -20.99, 13.24, 0.09613, 4, 42, 52.3, 8.71, 0.43708, 43, 31.02, 13.11, 0.01603, 44, 9.62, 13.21, 0.27127, 45, -11.86, 13.21, 0.27562, 4, 42, 52.36, 18.51, + 0.51068, 43, 40.82, 13.56, 0.00179, 44, 19.41, 13.67, 0.09933, 45, -2.06, 13.67, 0.3882, 4, 42, 52.97, 29.16, 0.94195, 43, 51.49, 13.52, 4e-05, 44, 30.08, 13.62, 0.00385, 45, 8.61, + 13.62, 0.05416, 4, 42, 56.91, -33.32, 0.72549, 43, -10.71, 6.3, 0.2621, 44, -32.11, 6.41, 0.01235, 45, -53.59, 6.41, 6e-05, 4, 42, 57.26, -21.73, 0.38729, 43, 0.89, 6.56, 0.4981, 44, + -20.51, 6.66, 0.11341, 45, -41.99, 6.66, 0.0012, 4, 42, 57.36, -10.94, 0.32692, 43, 11.67, 7.02, 0.3274, 44, -9.74, 7.13, 0.32983, 45, -31.21, 7.13, 0.01585, 4, 42, 57.43, -0.76, + 0.33677, 43, 21.84, 7.49, 0.10146, 44, 0.43, 7.6, 0.45593, 45, -21.04, 7.6, 0.10584, 4, 42, 57.8, 8.73, 0.33839, 43, 31.33, 7.62, 0.0144, 44, 9.93, 7.73, 0.32329, 45, -11.55, 7.73, + 0.32392, 4, 42, 58.53, 19.24, 0.42143, 43, 41.87, 7.44, 0.00109, 44, 20.47, 7.55, 0.11176, 45, -1.01, 7.55, 0.46572, 4, 42, 60.09, 31.38, 0.79569, 43, 54.07, 6.52, 5e-05, 44, 32.67, + 6.63, 0.01091, 45, 11.19, 6.63, 0.19335, 4, 42, 63.61, -35.67, 0.66085, 43, -12.7, -0.52, 0.32566, 44, -34.1, -0.41, 0.01346, 45, -55.58, -0.41, 3e-05, 4, 42, 64.06, -22.82, 0.31024, + 43, 0.16, -0.29, 0.56299, 44, -21.25, -0.19, 0.12589, 45, -42.72, -0.19, 0.00089, 4, 42, 64.25, -11.45, 0.24349, 43, 11.52, 0.12, 0.36477, 44, -9.89, 0.22, 0.37599, 45, -31.36, 0.22, + 0.01574, 4, 42, 64.34, -1.18, 0.2525, 43, 21.78, 0.57, 0.10936, 44, 0.37, 0.68, 0.52284, 45, -21.1, 0.68, 0.1153, 4, 42, 64.83, 8.75, 0.2544, 43, 31.72, 0.6, 0.01401, 44, 10.32, + 0.71, 0.36809, 45, -11.16, 0.71, 0.3635, 4, 42, 65.03, 19.51, 0.3466, 43, 42.48, 0.96, 0.00077, 44, 21.07, 1.07, 0.1237, 45, -0.4, 1.07, 0.52893, 4, 42, 66.57, 33.2, 0.69411, 43, + 56.23, 0.15, 3e-05, 44, 34.83, 0.26, 0.01435, 45, 13.35, 0.26, 0.29151, 4, 42, 71.92, 34.78, 0.61986, 43, 58.1, -5.11, 1e-05, 44, 36.69, -5.01, 0.01658, 45, 15.22, -5.01, 0.36355, 4, + 42, 70.84, 19.53, 0.28549, 43, 42.81, -4.84, 0.00065, 44, 21.4, -4.73, 0.13463, 45, -0.07, -4.73, 0.57924, 4, 42, 70.54, 8.77, 0.18483, 43, 32.04, -5.1, 0.01432, 44, 10.64, -4.99, + 0.40541, 45, -10.84, -4.99, 0.39544, 4, 42, 70.23, -1.55, 0.18141, 43, 21.73, -5.33, 0.11681, 44, 0.32, -5.23, 0.57764, 45, -21.15, -5.23, 0.12413, 4, 42, 69.5, -11.84, 0.17479, 43, + 11.41, -5.14, 0.39444, 44, -10, -5.04, 0.41447, 45, -31.47, -5.04, 0.0163, 4, 42, 69.05, -23.63, 0.24784, 43, -0.38, -5.32, 0.61396, 44, -21.79, -5.22, 0.13743, 45, -43.26, -5.22, + 0.00077, 4, 42, 68.55, -37.4, 0.59732, 43, -14.16, -5.54, 0.38768, 44, -35.56, -5.43, 0.01499, 45, -57.04, -5.43, 1e-05, 4, 42, 22.71, 0.45, 0.98403, 43, 21.22, 42.22, 0.00516, 44, + -0.19, 42.33, 0.00609, 45, -21.66, 42.33, 0.00473, 3, 42, 13.08, -10.5, 0.98457, 43, 9.78, 51.26, 0.01421, 44, -11.62, 51.37, 0.00123, 3, 42, 16.1, 11.4, 0.98807, 44, 10.41, 49.51, + 0.00101, 45, -11.07, 49.51, 0.01092, 1, 42, 40.1, -23.51, 1, 4, 42, 45.53, -24.85, 0.93122, 43, -2.85, 18.1, 0.05888, 44, -24.25, 18.21, 0.00959, 45, -45.73, 18.21, 0.0003, 4, 42, + 51.14, -26.22, 0.67882, 43, -3.92, 12.43, 0.287, 44, -25.32, 12.54, 0.03374, 45, -46.8, 12.54, 0.00045, 4, 42, 57.07, -27.81, 0.52353, 43, -5.19, 6.42, 0.4314, 44, -26.59, 6.53, + 0.04479, 45, -48.07, 6.53, 0.00029, 4, 42, 63.82, -29.53, 0.41464, 43, -6.56, -0.41, 0.53292, 44, -27.96, -0.3, 0.05226, 45, -49.44, -0.3, 0.00018, 4, 42, 68.8, -30.65, 0.35706, 43, + -7.41, -5.43, 0.58638, 44, -28.81, -5.33, 0.05644, 45, -50.29, -5.33, 0.00012, 4, 42, 40.56, -14.49, 0.88311, 43, 7.24, 23.62, 0.07338, 44, -14.17, 23.72, 0.03978, 45, -35.64, 23.72, + 0.00372, 4, 42, 46.13, -15.07, 0.62555, 43, 6.96, 18.02, 0.24007, 44, -14.45, 18.12, 0.1259, 45, -35.92, 18.12, 0.00848, 4, 42, 51.36, -15.56, 0.4342, 43, 6.74, 12.77, 0.37611, 44, + -14.67, 12.88, 0.18375, 45, -36.14, 12.88, 0.00595, 4, 42, 57.31, -16.26, 0.33684, 43, 6.35, 6.79, 0.44427, 44, -15.05, 6.9, 0.21425, 45, -36.53, 6.9, 0.00464, 4, 42, 64.16, -17.02, + 0.25537, 43, 5.95, -0.08, 0.49872, 44, -15.45, 0.02, 0.24179, 45, -36.93, 0.02, 0.00413, 4, 42, 69.28, -17.64, 0.18921, 43, 5.6, -5.23, 0.54119, 44, -15.8, -5.13, 0.26556, 45, + -37.28, -5.13, 0.00404, 4, 42, 41.05, -4.82, 0.83361, 43, 16.93, 23.64, 0.05679, 44, -4.48, 23.74, 0.08927, 45, -25.95, 23.74, 0.02033, 4, 42, 46.53, -5.25, 0.57797, 43, 16.78, + 18.14, 0.13938, 44, -4.63, 18.25, 0.23843, 45, -26.1, 18.25, 0.04422, 4, 42, 51.66, -5.87, 0.42696, 43, 16.43, 12.98, 0.17737, 44, -4.97, 13.08, 0.35156, 45, -26.45, 13.08, 0.04411, + 4, 42, 57.39, -6.06, 0.33132, 43, 16.54, 7.25, 0.20059, 44, -4.86, 7.35, 0.42277, 45, -26.34, 7.35, 0.04531, 4, 42, 64.29, -6.56, 0.24781, 43, 16.41, 0.33, 0.22055, 44, -4.99, 0.44, + 0.48389, 45, -26.47, 0.44, 0.04775, 4, 42, 69.85, -6.91, 0.17763, 43, 16.35, -5.23, 0.23735, 44, -5.05, -5.13, 0.53429, 45, -26.52, -5.13, 0.05074, 4, 42, 41.28, 4.25, 0.83746, 43, + 26, 23.88, 0.02009, 44, 4.59, 23.99, 0.08772, 45, -16.88, 23.99, 0.05473, 4, 42, 46.8, 4.29, 0.58276, 43, 26.32, 18.37, 0.04346, 44, 4.92, 18.47, 0.23645, 45, -16.56, 18.47, 0.13732, + 4, 42, 52.06, 4.23, 0.43226, 43, 26.54, 13.12, 0.04191, 44, 5.13, 13.22, 0.34769, 45, -16.34, 13.22, 0.17814, 4, 42, 57.61, 3.94, 0.33656, 43, 26.54, 7.56, 0.0422, 44, 5.14, 7.66, + 0.41771, 45, -16.34, 7.66, 0.20353, 4, 42, 64.59, 3.92, 0.25264, 43, 26.89, 0.59, 0.04384, 44, 5.49, 0.69, 0.47782, 45, -15.99, 0.69, 0.2257, 4, 42, 70.39, 3.84, 0.18189, 43, 27.11, + -5.21, 0.04615, 44, 5.71, -5.11, 0.52741, 45, -15.77, -5.11, 0.24456, 4, 42, 41.23, 12.93, 0.8608, 43, 34.66, 24.39, 0.00457, 44, 13.26, 24.49, 0.04889, 45, -8.22, 24.49, 0.08574, 4, + 42, 47.07, 13.06, 0.60926, 43, 35.09, 18.56, 0.00894, 44, 13.69, 18.67, 0.13479, 45, -7.79, 18.67, 0.247, 4, 42, 52.33, 13.43, 0.45377, 43, 35.74, 13.33, 0.00554, 44, 14.33, 13.43, + 0.18027, 45, -7.14, 13.43, 0.36041, 4, 42, 58.15, 13.75, 0.35749, 43, 36.37, 7.54, 0.00417, 44, 14.96, 7.64, 0.20976, 45, -6.51, 7.64, 0.42858, 4, 42, 64.93, 13.95, 0.27612, 43, + 36.92, 0.78, 0.00359, 44, 15.52, 0.88, 0.23625, 45, -5.96, 0.88, 0.48404, 4, 42, 70.69, 14.22, 0.20954, 43, 37.5, -4.97, 0.00344, 44, 16.1, -4.86, 0.25903, 45, -5.38, -4.86, 0.52799, + 1, 42, 41.18, 21.86, 1, 4, 42, 47.26, 22.62, 0.82489, 43, 44.65, 18.87, 0.00083, 44, 23.25, 18.98, 0.0268, 45, 1.77, 18.98, 0.14748, 4, 42, 52.68, 24.04, 0.64773, 43, 46.35, 13.54, + 0.00052, 44, 24.95, 13.65, 0.04091, 45, 3.47, 13.65, 0.31084, 4, 42, 59.31, 25.35, 0.53225, 43, 48.01, 6.98, 0.00029, 44, 26.6, 7.09, 0.04857, 45, 5.13, 7.09, 0.41889, 4, 42, 65.88, + 27.11, 0.46955, 43, 50.12, 0.51, 0.00016, 44, 28.71, 0.62, 0.05201, 45, 7.24, 0.62, 0.47828, 4, 42, 71.43, 27.89, 0.41589, 43, 51.19, -4.99, 0.0001, 44, 29.78, -4.88, 0.05591, 45, + 8.31, -4.88, 0.5281, 4, 42, 51.12, -28.92, 0.72647, 43, -6.61, 12.31, 0.25381, 44, -28.01, 12.41, 0.01954, 45, -49.49, 12.41, 0.00018, 4, 42, 56.98, -30.79, 0.64422, 43, -8.18, 6.36, + 0.33291, 44, -29.58, 6.46, 0.02275, 45, -51.06, 6.46, 0.00011, 4, 42, 63.71, -32.68, 0.55448, 43, -9.7, -0.46, 0.41902, 44, -31.11, -0.36, 0.02643, 45, -52.58, -0.36, 7e-05, 4, 42, + 68.66, -34.31, 0.44397, 43, -11.07, -5.49, 0.52396, 44, -32.48, -5.38, 0.03202, 45, -53.95, -5.38, 4e-05, 4, 42, 51.16, -23.65, 0.5094, 43, -1.35, 12.55, 0.4213, 44, -22.75, 12.66, + 0.06847, 45, -44.22, 12.66, 0.00083, 4, 42, 57.16, -24.79, 0.42549, 43, -2.17, 6.49, 0.49746, 44, -23.57, 6.6, 0.07648, 45, -45.05, 6.6, 0.00057, 4, 42, 63.94, -26.25, 0.35688, 43, + -3.28, -0.35, 0.55926, 44, -24.68, -0.25, 0.08347, 45, -46.16, -0.25, 0.00039, 4, 42, 68.91, -27.43, 0.29772, 43, -4.19, -5.38, 0.61133, 44, -25.59, -5.28, 0.09064, 45, -47.07, + -5.28, 0.00031, 4, 42, 69.16, -20.73, 0.21136, 43, 2.51, -5.28, 0.59029, 44, -18.89, -5.17, 0.19654, 45, -40.37, -5.17, 0.00182, 4, 42, 64.11, -19.92, 0.275, 43, 3.05, -0.19, + 0.54348, 44, -18.35, -0.08, 0.17958, 45, -39.83, -0.08, 0.00194, 4, 42, 57.28, -19.35, 0.35002, 43, 3.27, 6.66, 0.48643, 44, -18.14, 6.77, 0.16123, 45, -39.61, 6.77, 0.00232, 4, 42, + 51.26, -18.48, 0.41881, 43, 3.82, 12.72, 0.43213, 44, -17.59, 12.83, 0.1461, 45, -39.06, 12.83, 0.00296, 4, 42, 51.45, -13.1, 0.39313, 43, 9.2, 12.81, 0.35299, 44, -12.2, 12.91, + 0.24433, 45, -33.68, 12.91, 0.00955, 4, 42, 57.34, -13.55, 0.32258, 43, 9.06, 6.91, 0.39406, 44, -12.34, 7.02, 0.27473, 45, -33.82, 7.02, 0.00863, 4, 42, 64.2, -14.31, 0.24476, 43, + 8.66, 0.02, 0.43744, 44, -12.74, 0.12, 0.30953, 45, -34.22, 0.12, 0.00827, 4, 42, 69.38, -14.93, 0.17804, 43, 8.31, -5.19, 0.47328, 44, -13.09, -5.08, 0.3403, 45, -34.57, -5.08, + 0.00838, 4, 42, 69.68, -9.29, 0.17525, 43, 13.97, -5.19, 0.31355, 44, -7.44, -5.08, 0.48153, 45, -28.91, -5.08, 0.02968, 4, 42, 64.27, -9.12, 0.24396, 43, 13.85, 0.22, 0.29088, 44, + -7.55, 0.33, 0.43695, 45, -29.03, 0.33, 0.02821, 4, 42, 57.38, -8.64, 0.32275, 43, 13.97, 7.13, 0.26435, 44, -7.44, 7.23, 0.38552, 45, -28.91, 7.23, 0.02739, 4, 42, 51.61, -8.2, + 0.39269, 43, 14.1, 12.92, 0.24007, 44, -7.3, 13.02, 0.33961, 45, -28.78, 13.02, 0.02763, 4, 42, 51.73, -3.15, 0.39835, 43, 19.16, 13.05, 0.13664, 44, -2.25, 13.16, 0.3972, 45, + -23.72, 13.16, 0.06781, 4, 42, 57.41, -3.5, 0.32898, 43, 19.1, 7.37, 0.14701, 44, -2.3, 7.47, 0.45281, 45, -23.78, 7.47, 0.07119, 4, 42, 64.31, -3.92, 0.24968, 43, 19.05, 0.45, + 0.15947, 44, -2.36, 0.56, 0.51456, 45, -23.83, 0.56, 0.07629, 4, 42, 70.03, -4.3, 0.17972, 43, 18.96, -5.28, 0.17094, 44, -2.44, -5.18, 0.56767, 45, -23.91, -5.18, 0.08167, 4, 42, + 70.31, 1.21, 0.18179, 43, 24.49, -5.27, 0.07557, 44, 3.08, -5.17, 0.56385, 45, -18.39, -5.17, 0.17879, 4, 42, 64.46, 1.3, 0.25204, 43, 24.27, 0.58, 0.07119, 44, 2.86, 0.68, 0.51118, + 45, -18.61, 0.68, 0.16559, 4, 42, 57.52, 1.66, 0.33157, 43, 24.26, 7.52, 0.0672, 44, 2.86, 7.63, 0.44995, 45, -18.62, 7.63, 0.15128, 4, 42, 51.92, 1.69, 0.40101, 43, 23.99, 13.13, + 0.06478, 44, 2.59, 13.23, 0.39483, 45, -18.89, 13.23, 0.13938, 4, 42, 52.17, 6.37, 0.401, 43, 28.68, 13.11, 0.0258, 44, 7.28, 13.22, 0.33427, 45, -14.2, 13.22, 0.23894, 4, 42, 57.7, + 6.22, 0.3309, 43, 28.82, 7.59, 0.02514, 44, 7.42, 7.69, 0.37908, 45, -14.06, 7.69, 0.26488, 4, 42, 64.69, 5.99, 0.25155, 43, 28.96, 0.59, 0.02548, 44, 7.56, 0.7, 0.4293, 45, -13.92, + 0.7, 0.29367, 4, 42, 70.45, 5.95, 0.18206, 43, 29.22, -5.16, 0.02652, 44, 7.82, -5.06, 0.47284, 45, -13.66, -5.06, 0.31858, 4, 42, 70.61, 11.41, 0.19245, 43, 34.69, -5.04, 0.00724, + 44, 13.29, -4.93, 0.3321, 45, -8.19, -4.93, 0.46821, 4, 42, 70.77, 17.07, 0.23948, 43, 40.35, -4.9, 0.00153, 44, 18.94, -4.79, 0.19195, 45, -2.53, -4.79, 0.56704, 4, 42, 71.13, + 23.54, 0.346, 43, 46.82, -4.91, 0.00026, 44, 25.42, -4.81, 0.08922, 45, 3.94, -4.81, 0.56452, 4, 42, 71.67, 31.21, 0.48407, 43, 54.51, -5.05, 4e-05, 44, 33.11, -4.94, 0.03358, 45, + 11.63, -4.94, 0.48231, 4, 42, 66.23, 30.24, 0.54501, 43, 53.26, 0.33, 7e-05, 44, 31.86, 0.43, 0.03077, 45, 10.38, 0.43, 0.42415, 4, 42, 65.41, 22.86, 0.40266, 43, 45.85, 0.77, + 0.00034, 44, 24.45, 0.87, 0.08247, 45, 2.97, 0.87, 0.51452, 4, 42, 64.98, 16.56, 0.30287, 43, 39.53, 0.86, 0.00168, 44, 18.13, 0.97, 0.17579, 45, -3.35, 0.97, 0.51965, 4, 42, 64.87, + 11.12, 0.25994, 43, 34.09, 0.68, 0.00726, 44, 12.69, 0.79, 0.30245, 45, -8.79, 0.79, 0.43035, 4, 42, 57.96, 11, 0.3382, 43, 33.61, 7.58, 0.00776, 44, 12.21, 7.69, 0.26884, 45, -9.27, + 7.69, 0.38519, 4, 42, 58.32, 16.31, 0.37706, 43, 38.93, 7.49, 0.00208, 44, 17.52, 7.6, 0.15821, 45, -3.95, 7.6, 0.46265, 4, 42, 58.9, 22.12, 0.46779, 43, 44.77, 7.23, 0.00052, 44, + 23.36, 7.33, 0.07582, 45, 1.89, 7.33, 0.45586, 4, 42, 59.69, 28.3, 0.65325, 43, 50.97, 6.76, 0.00012, 44, 29.57, 6.86, 0.02541, 45, 8.09, 6.86, 0.32123, 4, 42, 52.82, 26.61, 0.75526, + 43, 48.93, 13.53, 0.00017, 44, 27.52, 13.64, 0.02002, 45, 6.05, 13.64, 0.22455, 4, 42, 52.51, 21.1, 0.52586, 43, 43.41, 13.55, 0.00082, 44, 22, 13.66, 0.07106, 45, 0.53, 13.66, + 0.40226, 4, 42, 52.35, 15.86, 0.44455, 43, 38.16, 13.44, 0.00273, 44, 16.76, 13.54, 0.1436, 45, -4.72, 13.54, 0.40912, 4, 42, 52.31, 10.54, 0.40864, 43, 32.85, 13.19, 0.0088, 44, + 11.45, 13.3, 0.23945, 45, -10.03, 13.3, 0.34311, 4, 42, 70.77, -38.17, 0.52059, 43, -14.82, -7.8, 0.45917, 44, -36.22, -7.7, 0.02022, 45, -57.7, -7.7, 1e-05, 4, 42, 70.83, -34.9, + 0.37517, 43, -11.54, -7.69, 0.58803, 44, -32.95, -7.59, 0.03676, 45, -54.42, -7.59, 4e-05, 4, 42, 70.97, -31.21, 0.31655, 43, -7.85, -7.63, 0.62281, 44, -29.26, -7.53, 0.06054, 45, + -50.73, -7.53, 0.00011, 4, 42, 71.13, -27.77, 0.25662, 43, -4.41, -7.62, 0.64624, 44, -25.82, -7.51, 0.09684, 45, -47.29, -7.51, 0.0003, 4, 42, 71.2, -23.97, 0.20542, 43, -0.61, + -7.48, 0.64718, 44, -22.02, -7.37, 0.14662, 45, -43.49, -7.37, 0.00077, 4, 42, 71.35, -20.96, 0.16774, 43, 2.4, -7.48, 0.62093, 44, -19, -7.37, 0.20946, 45, -40.48, -7.37, 0.00187, + 4, 42, 71.49, -17.96, 0.14406, 43, 5.4, -7.45, 0.56885, 44, -16, -7.35, 0.28288, 45, -37.48, -7.35, 0.00421, 4, 42, 71.65, -15.17, 0.13169, 43, 8.2, -7.46, 0.49722, 44, -13.21, + -7.36, 0.36227, 45, -34.68, -7.36, 0.00882, 4, 42, 71.89, -12.02, 0.12708, 43, 11.35, -7.54, 0.41453, 44, -10.05, -7.44, 0.44117, 45, -31.52, -7.44, 0.01722, 4, 42, 71.98, -9.41, + 0.12668, 43, 13.97, -7.49, 0.32958, 44, -7.43, -7.39, 0.51233, 45, -28.91, -7.39, 0.03141, 4, 42, 72.15, -7.02, 0.12812, 43, 16.36, -7.53, 0.24965, 44, -5.05, -7.43, 0.56851, 45, + -26.52, -7.43, 0.05372, 4, 42, 72.39, -4.46, 0.12979, 43, 18.93, -7.65, 0.1799, 44, -2.47, -7.54, 0.60387, 45, -23.95, -7.54, 0.08644, 4, 42, 72.47, -1.68, 0.13105, 43, 21.71, -7.58, + 0.12302, 44, 0.3, -7.47, 0.61461, 45, -21.17, -7.47, 0.13132, 4, 42, 72.58, 1.2, 0.13159, 43, 24.6, -7.54, 0.07962, 44, 3.19, -7.43, 0.5998, 45, -18.28, -7.43, 0.18899, 4, 42, 72.71, + 3.77, 0.13189, 43, 27.17, -7.53, 0.04862, 44, 5.76, -7.42, 0.56113, 45, -15.71, -7.42, 0.25837, 4, 42, 72.9, 5.95, 0.13282, 43, 29.35, -7.61, 0.02792, 44, 7.95, -7.5, 0.50297, 45, + -13.53, -7.5, 0.33629, 4, 42, 72.96, 8.77, 0.13637, 43, 32.18, -7.52, 0.01503, 44, 10.77, -7.41, 0.43134, 45, -10.7, -7.41, 0.41726, 4, 42, 73.15, 11.31, 0.14539, 43, 34.72, -7.57, + 0.00757, 44, 13.32, -7.46, 0.35328, 45, -8.16, -7.46, 0.49376, 4, 42, 73.26, 14.32, 0.16393, 43, 37.73, -7.53, 0.00355, 44, 16.32, -7.43, 0.27561, 45, -5.15, -7.43, 0.55691, 4, 42, + 73.56, 17.06, 0.19585, 43, 40.48, -7.68, 0.00155, 44, 19.08, -7.58, 0.20422, 45, -2.4, -7.58, 0.59837, 4, 42, 73.65, 19.69, 0.24372, 43, 43.11, -7.63, 0.00063, 44, 21.71, -7.53, + 0.14329, 45, 0.23, -7.53, 0.61235, 4, 42, 73.87, 23.74, 0.30631, 43, 47.17, -7.64, 0.00024, 44, 25.77, -7.53, 0.09501, 45, 4.29, -7.53, 0.59844, 4, 42, 74.01, 28.34, 0.3775, 43, + 51.77, -7.54, 9e-05, 44, 30.37, -7.43, 0.05972, 45, 8.89, -7.43, 0.5627, 4, 42, 74.28, 31.7, 0.44548, 43, 55.14, -7.63, 3e-05, 44, 33.74, -7.53, 0.03652, 45, 12.26, -7.53, 0.51797, + 4, 42, 74.78, 35.38, 0.56131, 43, 58.84, -7.93, 1e-05, 44, 37.44, -7.83, 0.02128, 45, 15.96, -7.83, 0.41739 + ], + "hull": 44, + "edges": [ + 78, 76, 86, 0, 78, 80, 80, 82, 82, 84, 84, 86, 0, 94, 76, 96, 62, 64, 74, 76, 102, 96, 74, 102, 104, 90, 106, 98, 108, 88, 110, 100, 112, 92, 114, 94, 2, 0, 114, 2, 72, 74, 116, 102, + 72, 116, 118, 104, 120, 106, 122, 108, 124, 110, 126, 112, 128, 114, 4, 2, 128, 4, 70, 72, 130, 116, 70, 130, 132, 118, 134, 120, 136, 122, 138, 124, 140, 126, 142, 128, 8, 6, 6, 4, + 142, 6, 68, 70, 144, 130, 68, 144, 146, 132, 148, 134, 150, 136, 152, 138, 154, 140, 156, 142, 156, 8, 8, 10, 10, 12, 12, 158, 158, 156, 10, 158, 160, 154, 162, 152, 164, 150, 166, + 148, 168, 146, 170, 144, 64, 66, 66, 68, 170, 66, 82, 172, 172, 88, 98, 172, 172, 100, 80, 174, 174, 90, 96, 174, 84, 176, 176, 92, 94, 176, 90, 178, 178, 96, 102, 180, 180, 104, + 178, 180, 180, 182, 182, 184, 184, 186, 186, 188, 90, 190, 190, 98, 104, 192, 192, 106, 190, 192, 192, 194, 194, 196, 196, 198, 198, 200, 88, 202, 202, 98, 106, 204, 204, 108, 202, + 204, 204, 206, 206, 208, 208, 210, 210, 212, 88, 214, 214, 100, 108, 216, 216, 110, 214, 216, 216, 218, 218, 220, 220, 222, 222, 224, 92, 226, 226, 100, 110, 228, 228, 112, 226, 228, + 228, 230, 230, 232, 232, 234, 234, 236, 92, 238, 238, 94, 112, 240, 240, 114, 238, 240, 240, 242, 242, 244, 244, 246, 246, 248, 12, 14, 170, 64, 116, 250, 250, 182, 130, 252, 252, + 184, 250, 252, 144, 254, 254, 186, 252, 254, 170, 256, 256, 188, 254, 256, 58, 60, 60, 62, 118, 258, 258, 182, 132, 260, 260, 184, 258, 260, 146, 262, 262, 186, 260, 262, 168, 264, + 264, 188, 262, 264, 54, 56, 56, 58, 50, 52, 52, 54, 168, 266, 266, 200, 146, 268, 268, 198, 266, 268, 132, 270, 270, 196, 268, 270, 118, 272, 272, 194, 270, 272, 120, 274, 274, 194, + 134, 276, 276, 196, 274, 276, 148, 278, 278, 198, 276, 278, 166, 280, 280, 200, 278, 280, 46, 48, 48, 50, 42, 44, 44, 46, 166, 282, 282, 212, 148, 284, 284, 210, 282, 284, 134, 286, + 286, 208, 284, 286, 120, 288, 288, 206, 286, 288, 122, 290, 290, 206, 136, 292, 292, 208, 290, 292, 150, 294, 294, 210, 292, 294, 164, 296, 296, 212, 294, 296, 38, 40, 40, 42, 34, + 36, 36, 38, 164, 298, 298, 224, 150, 300, 300, 222, 298, 300, 136, 302, 302, 220, 300, 302, 122, 304, 304, 218, 302, 304, 124, 306, 306, 218, 138, 308, 308, 220, 306, 308, 152, 310, + 310, 222, 308, 310, 162, 312, 312, 224, 310, 312, 30, 32, 32, 34, 26, 28, 28, 30, 162, 314, 314, 236, 22, 24, 24, 26, 160, 316, 316, 236, 18, 20, 20, 22, 160, 318, 318, 248, 14, 16, + 16, 18, 158, 320, 320, 248, 156, 322, 322, 246, 320, 322, 154, 324, 324, 246, 318, 324, 154, 326, 326, 234, 316, 326, 152, 328, 328, 234, 314, 328, 138, 330, 330, 232, 328, 330, 140, + 332, 332, 232, 326, 332, 140, 334, 334, 244, 324, 334, 142, 336, 336, 244, 322, 336, 128, 338, 338, 242, 336, 338, 126, 340, 340, 242, 334, 340, 126, 342, 342, 230, 332, 342, 124, + 344, 344, 230, 330, 344, 62, 346, 346, 170, 60, 348, 348, 256, 346, 348, 58, 350, 350, 188, 348, 350, 56, 352, 352, 264, 350, 352, 54, 354, 354, 168, 352, 354, 52, 356, 356, 266, + 354, 356, 50, 358, 358, 200, 356, 358, 48, 360, 360, 280, 358, 360, 46, 362, 362, 166, 360, 362, 44, 364, 364, 282, 362, 364, 42, 366, 366, 212, 364, 366, 40, 368, 368, 296, 366, + 368, 38, 370, 370, 164, 368, 370, 36, 372, 372, 298, 370, 372, 34, 374, 374, 224, 372, 374, 32, 376, 376, 312, 374, 376, 30, 378, 378, 162, 376, 378, 28, 380, 380, 314, 378, 380, 26, + 382, 382, 236, 380, 382, 24, 384, 384, 316, 382, 384, 22, 386, 386, 160, 384, 386, 20, 388, 388, 318, 386, 388, 18, 390, 390, 248, 388, 390, 16, 392, 392, 320, 390, 392, 14, 394, + 394, 158, 392, 394 + ], + "width": 82.3529411764706, + "height": 72.94117647058823, + "path": "summer-a.ear-right-bubble", + "x": 0.32352941176470296, + "y": 0.529411764705884 + } + }, + "ear-right-dot-01": { + "ear-right-dot": {"x": -0.5152941176470598, "y": -0.662352941176471, "rotation": -0.95, "width": 16.47058823529412, "height": 11.764705882352942, "path": "summer-a.ear-right-dot"} + }, + "ear-right-dot-02": { + "ear-right-dot": {"x": -0.5152941176470598, "y": -0.662352941176471, "rotation": -0.95, "width": 16.47058823529412, "height": 11.764705882352942, "path": "summer-a.ear-right-dot"} + }, + "ear-right-dot-03": { + "ear-right-dot": {"x": -0.5152941176470598, "y": -0.662352941176471, "rotation": -0.95, "width": 16.47058823529412, "height": 11.764705882352942, "path": "summer-a.ear-right-dot"} + }, + "ear-right-dot-04": { + "ear-right-dot": {"x": -0.5152941176470598, "y": -0.662352941176471, "rotation": -0.95, "width": 16.47058823529412, "height": 11.764705882352942, "path": "summer-a.ear-right-dot"} + }, + "ear-right-dot-05": { + "ear-right-dot": {"x": -0.5152941176470598, "y": -0.662352941176471, "rotation": -0.95, "width": 16.47058823529412, "height": 11.764705882352942, "path": "summer-a.ear-right-dot"} + }, + "ear-right-dot-06": { + "ear-right-dot": {"x": -0.5152941176470598, "y": -0.662352941176471, "rotation": -0.95, "width": 16.47058823529412, "height": 11.764705882352942, "path": "summer-a.ear-right-dot"} + }, + "ear-right-dot-07": { + "ear-right-dot": {"x": -0.5152941176470598, "y": -0.662352941176471, "rotation": -0.95, "width": 16.47058823529412, "height": 11.764705882352942, "path": "summer-a.ear-right-dot"} + }, + "ear-right-dot-08": { + "ear-right-dot": {"x": -0.5152941176470598, "y": -0.662352941176471, "rotation": -0.95, "width": 16.47058823529412, "height": 11.764705882352942, "path": "summer-a.ear-right-dot"} + }, + "ear-right-dot-09": { + "ear-right-dot": {"x": -0.5152941176470598, "y": -0.662352941176471, "rotation": -0.95, "width": 16.47058823529412, "height": 11.764705882352942, "path": "summer-a.ear-right-dot"} + }, + "ear-right-dot-10": { + "ear-right-dot": {"x": -0.5152941176470598, "y": -0.662352941176471, "rotation": -0.95, "width": 16.47058823529412, "height": 11.764705882352942, "path": "summer-a.ear-right-dot"} + }, + "ear-right-dot-11": { + "ear-right-dot": {"x": -0.5152941176470598, "y": -0.662352941176471, "rotation": -0.95, "width": 16.47058823529412, "height": 11.764705882352942, "path": "summer-a.ear-right-dot"} + }, + "ear-right-dot-12": { + "ear-right-dot": {"x": -0.5152941176470598, "y": -0.662352941176471, "rotation": -0.95, "width": 16.47058823529412, "height": 11.764705882352942, "path": "summer-a.ear-right-dot"} + }, + "ear-right-dot-13": { + "ear-right-dot": {"x": -0.5152941176470598, "y": -0.662352941176471, "rotation": -0.95, "width": 16.47058823529412, "height": 11.764705882352942, "path": "summer-a.ear-right-dot"} + }, + "ear-right-dot-14": { + "ear-right-dot": {"x": -0.5152941176470598, "y": -0.662352941176471, "rotation": -0.95, "width": 16.47058823529412, "height": 11.764705882352942, "path": "summer-a.ear-right-dot"} + }, + "ear-right-dot-15": { + "ear-right-dot": {"x": -0.5152941176470598, "y": -0.662352941176471, "rotation": -0.95, "width": 16.47058823529412, "height": 11.764705882352942, "path": "summer-a.ear-right-dot"} + }, + "ear-right-dot-16": { + "ear-right-dot": {"x": -0.5152941176470598, "y": -0.662352941176471, "rotation": -0.95, "width": 16.47058823529412, "height": 11.764705882352942, "path": "summer-a.ear-right-dot"} + }, + "ear-right-dot-17": { + "ear-right-dot": {"x": -0.5152941176470598, "y": -0.662352941176471, "rotation": -0.95, "width": 16.47058823529412, "height": 11.764705882352942, "path": "summer-a.ear-right-dot"} + }, + "ear-right-dot-18": { + "ear-right-dot": {"x": -0.5152941176470598, "y": -0.662352941176471, "rotation": -0.95, "width": 16.47058823529412, "height": 11.764705882352942, "path": "summer-a.ear-right-dot"} + }, + "ear-right-dot-19": { + "ear-right-dot": {"x": -0.5152941176470598, "y": -0.662352941176471, "rotation": -0.95, "width": 16.47058823529412, "height": 11.764705882352942, "path": "summer-a.ear-right-dot"} + }, + "ear-right-dot-20": { + "ear-right-dot": {"x": -0.5152941176470598, "y": -0.662352941176471, "rotation": -0.95, "width": 16.47058823529412, "height": 11.764705882352942, "path": "summer-a.ear-right-dot"} + }, + "ear-right-under": { + "ear-right-under": {"x": 85.5464705882353, "y": -16.192941176470594, "rotation": -93, "width": 117.64705882352942, "height": 204.7058823529412, "path": "summer-a.ear-right-under"} + }, + "ear-right-upper": { + "ear-right-upper": {"x": 90.18058823529411, "y": -18.45235294117648, "rotation": -93, "width": 127.05882352941177, "height": 211.76470588235296, "path": "summer-a.ear-right-upper"} + }, + "eyes": { + "eyes": {"x": 24.664117647058813, "y": 25.639411764705883, "width": 329.4117647058824, "height": 152.94117647058823, "path": "summer-a.eyes"}, + "eyes-angry": {"x": 24.664117647058813, "y": 25.639411764705883, "width": 329.4117647058824, "height": 152.94117647058823, "path": "summer-a.eyes-angry"}, + "eyes-happy": {"x": 24.664117647058813, "y": 25.639411764705883, "width": 329.4117647058824, "height": 152.94117647058823, "path": "summer-a.eyes-happy"}, + "eyes-shut": {"x": 24.664117647058813, "y": 25.639411764705883, "width": 329.4117647058824, "height": 152.94117647058823, "path": "summer-a.eyes-shut"} + }, + "eyes-happy-accessory": { + "eyes-happy-accessory": { + "x": 1.458235294117645, "y": 0.958823529411761, "scaleX": 1.4, "scaleY": 1.4, "width": 98.82352941176471, "height": 105.88235294117648, "path": "summer-a.eyes-happy-accessory" + } + }, + "eyes-light-dot": {"eye-light-dot": {"x": -0.07764705882352896, "y": 2.2158823529411737, "width": 68.23529411764706, "height": 70.58823529411765, "path": "summer-a.eye-light-dot"}}, + "eyes-light-dot-02": {"eye-light-dot": {"x": -0.07764705882352896, "y": 2.2158823529411737, "width": 68.23529411764706, "height": 70.58823529411765, "path": "summer-a.eye-light-dot"}}, + "eyes-light-left": { + "light": { + "x": 7.520588235294116, "y": 1.589411764705884, "scaleX": 1.2, "scaleY": 1.8, "rotation": 178.57, "width": 47.05882352941177, "height": 72.94117647058823, "path": "summer-a.light" + } + }, + "eyes-light-right": { + "light": { + "x": 7.520588235294116, "y": 1.589411764705884, "scaleX": 1.2, "scaleY": 1.8, "rotation": 178.57, "width": 47.05882352941177, "height": 72.94117647058823, "path": "summer-a.light" + } + }, + "eyes-upper": {"eyes-upper": {"x": 24.510588235294115, "y": 24.749411764705883, "width": 327.05882352941177, "height": 152.94117647058823, "path": "summer-a.eyes-upper"}}, + "horn": {"horn": {"x": 102.13941176470588, "y": -19.69352941176471, "rotation": -90, "width": 232.94117647058823, "height": 237.64705882352942, "path": "summer-a.horn"}}, + "mouth": { + "mouth": {"x": -11.571176470588233, "y": 54.698235294117644, "width": 145.88235294117646, "height": 58.82352941176471, "path": "summer-a.mouth"}, + "mouth-bite": {"x": 0.01705882352940602, "y": 39.698235294117644, "width": 164.7058823529412, "height": 98.82352941176471, "path": "summer-a.mouth-bite"}, + "mouth-open": {"x": -6.27705882352942, "y": 16.69823529411765, "width": 155.29411764705884, "height": 138.8235294117647, "path": "summer-a.mouth-open"}, + "mouth-smile": {"x": -0.982941176470594, "y": 48.34529411764706, "width": 164.7058823529412, "height": 63.529411764705884, "path": "summer-a.mouth-smile"} + }, + "mouth-accessory": { + "mouth-accessory": { + "type": "mesh", + "uvs": [ + 0.7567, 0.0473, 0.86697, 0.14039, 0.9443, 0.25209, 0.99714, 0.36666, 0.99999, 0.49597, 1, 0.61625, 0.9486, 0.73368, 0.85981, 0.85684, 0.74238, 0.95422, 0.58914, 1, 0.46884, 1, + 0.36484, 0.99858, 0.24169, 0.95082, 0.12854, 0.86646, 0.03732, 0.75174, 0, 0.59723, 0, 0.48254, 0, 0.36237, 0.04691, 0.22488, 0.14286, 0.10888, 0.25027, 0.03298, 0.37916, 0, 0.49749, + 0, 0.62208, 0, 0.48816, 0.49691, 0.38984, 0.47048, 0.40039, 0.4428, 0.42008, 0.42041, 0.44087, 0.4047, 0.46611, 0.39392, 0.49007, 0.39257, 0.5155, 0.39441, 0.54363, 0.40403, 0.56948, + 0.42037, 0.58681, 0.44396, 0.59625, 0.46925, 0.60239, 0.4967, 0.59962, 0.5229, 0.58591, 0.54718, 0.56617, 0.57246, 0.53987, 0.58993, 0.50841, 0.5978, 0.48422, 0.59958, 0.46389, + 0.59563, 0.44255, 0.58693, 0.41915, 0.56782, 0.40098, 0.54296, 0.39091, 0.5164, 0.38677, 0.494, 0.25326, 0.49016, 0.26189, 0.43608, 0.28722, 0.37303, 0.33073, 0.32, 0.38007, 0.28612, + 0.43888, 0.26671, 0.49242, 0.26434, 0.5491, 0.26844, 0.61141, 0.29055, 0.66979, 0.32597, 0.72081, 0.37204, 0.74533, 0.4311, 0.75435, 0.49642, 0.74415, 0.5566, 0.71527, 0.6137, + 0.66814, 0.67121, 0.6053, 0.70764, 0.53338, 0.72221, 0.47953, 0.72167, 0.43531, 0.71188, 0.25606, 0.54343, 0.2836, 0.60497, 0.33013, 0.6593, 0.38745, 0.69572, 0.2371, 0.756, 0.32258, + 0.81152, 0.40412, 0.83877, 0.47432, 0.85748, 0.5622, 0.86577, 0.67514, 0.83328, 0.76201, 0.76212, 0.82762, 0.67147, 0.86788, 0.58544, 0.89046, 0.49617, 0.88879, 0.39439, 0.84496, + 0.30541, 0.77906, 0.22313, 0.69067, 0.15785, 0.58965, 0.1164, 0.49532, 0.10584, 0.40602, 0.11317, 0.30758, 0.14475, 0.22046, 0.19609, 0.15118, 0.28916, 0.11571, 0.39679, 0.10936, + 0.48603, 0.11577, 0.57155, 0.16414, 0.68085 + ], + "triangles": [ + 96, 69, 70, 73, 70, 71, 77, 66, 65, 34, 58, 59, 60, 35, 59, 61, 36, 60, 31, 30, 55, 30, 29, 55, 32, 31, 56, 33, 32, 57, 28, 53, 29, 27, 52, 28, 27, 26, 52, 34, 33, 58, 25, 50, 26, + 48, 49, 25, 36, 35, 60, 69, 48, 47, 37, 36, 62, 70, 47, 46, 38, 37, 63, 71, 46, 45, 39, 38, 64, 44, 71, 45, 72, 44, 43, 40, 39, 65, 68, 72, 43, 68, 43, 42, 67, 68, 42, 66, 41, 40, + 67, 42, 41, 66, 67, 41, 24, 29, 30, 24, 30, 31, 24, 31, 32, 24, 32, 33, 24, 33, 34, 24, 34, 35, 24, 35, 36, 28, 29, 24, 27, 28, 24, 26, 27, 24, 25, 26, 24, 48, 25, 24, 47, 48, 24, + 37, 24, 36, 46, 47, 24, 38, 24, 37, 45, 46, 24, 39, 24, 38, 44, 45, 24, 24, 43, 44, 39, 40, 24, 43, 24, 42, 40, 41, 24, 41, 42, 24, 35, 34, 59, 55, 29, 54, 53, 54, 29, 56, 31, 55, + 57, 32, 56, 52, 53, 28, 26, 51, 52, 50, 51, 26, 49, 50, 25, 69, 49, 48, 70, 69, 47, 63, 37, 62, 71, 70, 46, 64, 38, 63, 44, 72, 71, 65, 39, 64, 65, 66, 40, 58, 33, 57, 62, 36, 61, + 75, 72, 68, 67, 75, 68, 74, 71, 72, 76, 67, 66, 22, 89, 21, 87, 88, 22, 88, 89, 22, 90, 20, 21, 23, 87, 22, 86, 87, 23, 89, 90, 21, 91, 19, 20, 0, 86, 23, 85, 86, 0, 90, 91, 20, 1, + 85, 0, 18, 19, 91, 84, 85, 1, 88, 54, 89, 56, 55, 88, 55, 54, 88, 53, 90, 89, 87, 56, 88, 57, 56, 87, 54, 53, 89, 52, 91, 90, 92, 18, 91, 86, 57, 87, 58, 57, 86, 2, 84, 1, 53, 52, + 90, 92, 91, 52, 85, 58, 86, 59, 58, 85, 17, 18, 92, 83, 84, 2, 84, 59, 85, 51, 92, 52, 3, 83, 2, 60, 59, 84, 93, 17, 92, 93, 92, 51, 83, 60, 84, 50, 93, 51, 16, 17, 93, 94, 16, 93, + 94, 93, 50, 49, 94, 50, 83, 3, 4, 82, 83, 4, 60, 83, 82, 61, 60, 82, 69, 95, 94, 69, 94, 49, 81, 61, 82, 62, 61, 81, 95, 15, 16, 95, 16, 94, 82, 4, 5, 81, 82, 5, 80, 62, 81, 63, 62, + 80, 96, 95, 69, 6, 81, 5, 80, 81, 6, 14, 15, 95, 14, 95, 96, 73, 96, 70, 79, 63, 80, 64, 63, 79, 74, 73, 71, 78, 64, 79, 65, 64, 78, 74, 72, 75, 7, 80, 6, 79, 80, 7, 76, 75, 67, 77, + 65, 78, 76, 66, 77, 13, 14, 96, 13, 96, 73, 12, 73, 74, 13, 73, 12, 7, 8, 78, 7, 78, 79, 11, 74, 75, 10, 11, 75, 12, 74, 11, 76, 10, 75, 10, 76, 77, 9, 77, 78, 9, 78, 8, 10, 77, 9 + ], + "vertices": [ + 1, 29, 42.58, 72.34, 1, 1, 29, 60.45, 57.26, 1, 1, 29, 72.98, 39.16, 1, 1, 29, 81.54, 20.6, 1, 1, 29, 82, -0.34, 1, 1, 29, 82, -19.83, 1, 1, 29, 73.67, -38.85, 1, 1, 29, 59.29, + -58.81, 1, 1, 29, 40.26, -74.58, 1, 1, 29, 15.44, -82, 1, 1, 29, -4.05, -82, 1, 1, 29, -20.9, -81.77, 1, 1, 29, -40.85, -74.03, 1, 1, 29, -59.18, -60.37, 1, 1, 29, -73.95, -41.78, 1, + 1, 29, -82, -16.75, 1, 1, 29, -82, 1.83, 1, 1, 29, -82, 21.3, 1, 1, 29, -72.4, 43.57, 1, 1, 29, -56.86, 62.36, 1, 1, 29, -39.46, 74.66, 1, 1, 29, -18.58, 82, 1, 1, 29, 0.59, 82, 1, + 1, 29, 20.78, 80.84, 1, 1, 81, -0.92, -0.5, 1, 1, 81, -16.85, 3.78, 1, 1, 81, -15.14, 8.27, 1, 1, 81, -11.95, 11.89, 1, 1, 81, -8.58, 14.44, 1, 1, 81, -4.49, 16.19, 1, 1, 81, -0.61, + 16.41, 1, 1, 81, 3.51, 16.11, 1, 1, 81, 8.07, 14.55, 1, 1, 81, 12.26, 11.9, 1, 1, 81, 15.06, 8.08, 1, 1, 81, 16.59, 3.98, 1, 1, 81, 17.59, -0.46, 1, 1, 81, 17.14, -4.71, 1, 1, 81, + 14.92, -8.64, 1, 1, 81, 11.72, -12.74, 1, 1, 81, 7.46, -15.57, 1, 1, 81, 2.36, -16.84, 1, 1, 81, -1.56, -17.13, 1, 1, 81, -4.85, -16.49, 1, 1, 81, -8.31, -15.08, 1, 1, 81, -12.1, + -11.99, 1, 1, 81, -15.04, -7.96, 1, 1, 81, -16.67, -3.66, 1, 1, 81, -17.34, -0.03, 1, 2, 29, -38.97, 0.6, 0.37475, 81, -38.97, 0.6, 0.62525, 2, 29, -37.57, 9.36, 0.38176, 81, -37.57, + 9.36, 0.61824, 2, 29, -33.47, 19.57, 0.39514, 81, -33.47, 19.57, 0.60486, 2, 29, -26.42, 28.16, 0.40154, 81, -26.42, 28.16, 0.59846, 2, 29, -18.43, 33.65, 0.40298, 81, -18.43, 33.65, + 0.59702, 2, 29, -8.9, 36.8, 0.39723, 81, -8.9, 36.8, 0.60277, 2, 29, -0.23, 37.18, 0.38672, 81, -0.23, 37.18, 0.61328, 2, 29, 8.95, 36.51, 0.39243, 81, 8.95, 36.51, 0.60757, 2, 29, + 19.05, 32.93, 0.39729, 81, 19.05, 32.93, 0.60271, 2, 29, 28.51, 27.19, 0.41715, 81, 28.51, 27.19, 0.58285, 2, 29, 36.77, 19.73, 0.45304, 81, 36.77, 19.73, 0.54696, 2, 29, 40.74, + 10.16, 0.44594, 81, 40.74, 10.16, 0.55406, 2, 29, 42.2, -0.42, 0.43856, 81, 42.2, -0.42, 0.56144, 2, 29, 40.55, -10.17, 0.41782, 81, 40.55, -10.17, 0.58218, 2, 29, 35.87, -19.42, + 0.38686, 81, 35.87, -19.42, 0.61314, 2, 29, 28.24, -28.73, 0.36878, 81, 28.24, -28.73, 0.63122, 2, 29, 18.06, -34.64, 0.3386, 81, 18.06, -34.64, 0.6614, 2, 29, 6.41, -37, 0.30037, + 81, 6.41, -37, 0.69963, 2, 29, -2.32, -36.91, 0.28415, 81, -2.32, -36.91, 0.71585, 2, 29, -9.48, -35.32, 0.27399, 81, -9.48, -35.32, 0.72601, 2, 29, -38.52, -8.03, 0.36783, 81, + -38.52, -8.03, 0.63217, 2, 29, -34.06, -18, 0.33446, 81, -34.06, -18, 0.66554, 2, 29, -26.52, -26.8, 0.30599, 81, -26.52, -26.8, 0.69401, 2, 29, -17.23, -32.71, 0.28378, 81, -17.23, + -32.71, 0.71622, 2, 29, -41.59, -42.47, 0.73847, 81, -41.59, -42.47, 0.26153, 2, 29, -27.74, -51.46, 0.71173, 81, -27.74, -51.46, 0.28827, 2, 29, -14.53, -55.88, 0.69513, 81, -14.53, + -55.88, 0.30487, 2, 29, -3.16, -58.91, 0.72225, 81, -3.16, -58.91, 0.27775, 2, 29, 11.08, -60.25, 0.77228, 81, 11.08, -60.25, 0.22772, 2, 29, 29.37, -54.99, 0.80171, 81, 29.37, + -54.99, 0.19829, 2, 29, 43.44, -43.46, 0.78981, 81, 43.44, -43.46, 0.21019, 2, 29, 54.07, -28.78, 0.79382, 81, 54.07, -28.78, 0.20618, 2, 29, 60.6, -14.84, 0.827, 81, 60.6, -14.84, + 0.173, 2, 29, 64.25, -0.38, 0.87698, 81, 64.25, -0.38, 0.12302, 2, 29, 63.98, 16.11, 0.92141, 81, 63.98, 16.11, 0.07859, 2, 29, 56.88, 30.53, 0.90642, 81, 56.88, 30.53, 0.09358, 2, + 29, 46.21, 43.86, 0.90058, 81, 46.21, 43.86, 0.09942, 2, 29, 31.89, 54.43, 0.8953, 81, 31.89, 54.43, 0.1047, 2, 29, 15.52, 61.14, 0.89934, 81, 15.52, 61.14, 0.10066, 2, 29, 0.24, + 62.86, 0.89762, 81, 0.24, 62.86, 0.10238, 2, 29, -14.22, 61.67, 0.90341, 81, -14.22, 61.67, 0.09659, 2, 29, -30.17, 56.55, 0.9151, 81, -30.17, 56.55, 0.0849, 2, 29, -44.28, 48.24, + 0.93596, 81, -44.28, 48.24, 0.06404, 2, 29, -55.51, 33.16, 0.90966, 81, -55.51, 33.16, 0.09034, 2, 29, -61.25, 15.72, 0.86888, 81, -61.25, 15.72, 0.13112, 2, 29, -62.28, 1.26, + 0.83823, 81, -62.28, 1.26, 0.16177, 2, 29, -61.24, -12.59, 0.82811, 81, -61.24, -12.59, 0.17189, 2, 29, -53.41, -30.3, 0.78788, 81, -53.41, -30.3, 0.21212 + ], + "hull": 24, + "edges": [ + 18, 20, 18, 16, 16, 14, 14, 12, 8, 10, 12, 10, 8, 6, 6, 4, 4, 2, 2, 0, 44, 46, 0, 46, 42, 44, 42, 40, 40, 38, 38, 36, 32, 34, 36, 34, 30, 32, 30, 28, 28, 26, 26, 24, 20, 22, 24, 22, + 50, 48, 52, 48, 50, 52, 54, 48, 52, 54, 56, 48, 54, 56, 58, 48, 56, 58, 60, 48, 58, 60, 62, 48, 60, 62, 64, 48, 62, 64, 66, 48, 64, 66, 68, 48, 66, 68, 70, 48, 68, 70, 72, 48, 70, + 72, 74, 48, 72, 74, 76, 48, 74, 76, 78, 48, 76, 78, 80, 48, 78, 80, 82, 48, 80, 82, 84, 48, 82, 84, 86, 48, 84, 86, 88, 48, 86, 88, 90, 48, 88, 90, 92, 48, 90, 92, 94, 48, 92, 94, + 96, 48, 94, 96, 96, 50, 98, 96, 100, 50, 98, 100, 102, 52, 100, 102, 104, 54, 102, 104, 106, 56, 104, 106, 108, 58, 106, 108, 110, 60, 108, 110, 112, 62, 110, 112, 114, 64, 112, 114, + 116, 66, 114, 116, 118, 68, 116, 118, 120, 70, 118, 120, 122, 72, 120, 122, 124, 74, 122, 124, 126, 76, 124, 126, 128, 78, 126, 128, 130, 80, 128, 130, 132, 82, 130, 132, 134, 84, + 132, 134, 136, 86, 134, 136, 138, 94, 98, 138, 140, 92, 138, 140, 142, 90, 140, 142, 144, 88, 142, 144, 144, 136, 26, 146, 146, 142, 24, 148, 148, 144, 146, 148, 22, 150, 150, 136, + 148, 150, 20, 152, 152, 134, 150, 152, 18, 154, 154, 132, 152, 154, 16, 156, 156, 130, 154, 156, 14, 158, 158, 128, 156, 158, 12, 160, 160, 126, 158, 160, 10, 162, 162, 124, 160, + 162, 8, 164, 164, 122, 162, 164, 6, 166, 166, 120, 164, 166, 4, 168, 168, 118, 166, 168, 2, 170, 170, 116, 168, 170, 0, 172, 172, 114, 170, 172, 46, 174, 174, 112, 172, 174, 44, 176, + 176, 110, 174, 176, 42, 178, 178, 108, 176, 178, 40, 180, 180, 106, 178, 180, 38, 182, 182, 104, 180, 182, 36, 184, 184, 102, 182, 184, 34, 186, 186, 100, 184, 186, 32, 188, 188, 98, + 186, 188, 30, 190, 190, 138, 188, 190, 28, 192, 192, 140, 190, 192, 192, 146 + ], + "width": 162.35294117647058, + "height": 162.35294117647058, + "path": "summer-a.mouth-accessory", + "x": 0.8235294117647101, + "y": 0.8235294117647101 + } + }, + "tail": {"tail": {"x": 114.19882352941177, "y": 4.008823529411768, "rotation": 12, "width": 225.88235294117646, "height": 225.88235294117646, "path": "summer-a.tail"}} + } + } + ], + "events": {"hit": {}, "hit-buff": {}, "jump": {}, "start-attack": {}}, + "keyAnimations": { + "activity/appear": "1023093953", + "activity/bath": "3305387968", + "attack/ranged/cast-fly": "4180526371", + "attack/ranged/cast-high": "164191126", + "attack/ranged/cast-low": "198813017", + "attack/ranged/cast-multi": "151119", + "attack/ranged/cast-tail": "3850719809", + "action/mix/ear-animation": "901954966", + "activity/eat-bite": "1137807767", + "activity/eat-chew": "1988236421", + "activity/entrance": "3768378365", + "defense/evade": "1735454995", + "activity/evolve": "649307630", + "action/mix/eyes-animation": "3799301307", + "battle/get-buff": "1455190363", + "battle/get-debuff": "606904312", + "defense/hit-by-normal": "2045974966", + "defense/hit-by-normal-crit": "2130010601", + "defense/hit-by-normal-dramatic": "3823092125", + "defense/hit-by-ranged-attack": "2224561612", + "defense/hit-with-shield": "390714790", + "attack/melee/horn-gore": "1327954218", + "attack/melee/mouth-bite": "2237748264", + "action/move-back": "3766271173", + "action/move-forward": "2945160014", + "attack/melee/multi-attack": "3774600630", + "action/idle/normal": "1659336865", + "attack/melee/normal-attack": "3305373483", + "action/mix/normal-mouth-animation": "1178295570", + "activity/prepare": "405864717", + "action/idle/random-01": "554401889", + "action/idle/random-02": "3634120758", + "action/idle/random-03": "2021333900", + "action/idle/random-04": "1003789695", + "action/idle/random-05": "2745614147", + "action/run": "3942433225", + "draft/run-origin": "237238075", + "attack/melee/shrimp": "3833448733", + "activity/sleep": "100562494", + "attack/melee/tail-multi-slap": "3317139533", + "attack/melee/tail-roll": "3108617565", + "attack/melee/tail-smash": "519942130", + "attack/melee/tail-thrash": "628713175", + "activity/victory-pose-back-flip": "2227634241" + } + }, + "body-agamo": { + "bones": [ + {"name": "@root"}, {"name": "@pivot-main", "parent": "@root"}, {"name": "@pivot-back", "parent": "@pivot-main", "x": 205, "y": 180, "color": "ff0101ff"}, + {"name": "@pivot-center", "parent": "@pivot-back", "x": -215.11, "y": -5.25, "color": "ff0101ff"}, + {"name": "@axie", "parent": "@pivot-center", "length": 213.28, "rotation": 179.04, "x": 196.39, "y": 5.16}, {"name": "@back", "parent": "@axie", "rotation": -179.04, "x": 37.63, "y": -198.19}, + {"name": "@body", "parent": "@axie", "length": 226.28, "rotation": -8.35, "x": 224.58, "y": -0.53}, {"name": "@ear-left", "parent": "@axie", "rotation": -179.04, "x": 112.7, "y": -203.23}, + {"name": "@ear-right", "parent": "@axie", "rotation": -179.04, "x": 405.28, "y": -235.33}, {"name": "@eyes", "parent": "@axie", "rotation": -179.04, "x": 384.24, "y": -113.67}, + {"name": "@horn", "parent": "@axie", "rotation": -179.04, "x": 327.92, "y": -214.63}, + {"name": "@leg-back-left", "parent": "@axie", "length": 76.4, "rotation": 100.96, "x": -15.3, "y": 102.56, "transform": "noScale"}, + {"name": "@leg-front-left", "parent": "@axie", "length": 51.19, "rotation": 93.86, "x": 134.77, "y": 149.55, "transform": "noScale"}, + {"name": "@leg-front-right", "parent": "@axie", "length": 74.83, "rotation": 83.2, "x": 382.95, "y": 121.78, "transform": "noScale"}, + {"name": "@mouth", "parent": "@axie", "rotation": -179.04, "x": 382.23, "y": 6.31}, + {"name": "body-pattern", "parent": "@body", "rotation": -170.69, "x": -267.21, "y": -49.4, "transform": "noScale"}, {"name": "@shadow", "parent": "@root", "color": "e6d713ff"}, + {"name": "@tail", "parent": "@axie", "rotation": -179.04, "x": -11.76, "y": 61.72}, {"name": "leg-front-right-IK", "parent": "@pivot-main", "x": -195.99, "y": -10.21, "color": "ff3f00ff"}, + {"name": "leg-front-left-IK", "parent": "@pivot-main", "x": 42.3, "y": -18.42, "color": "ff3f00ff"}, + {"name": "leg-back-left-IK", "parent": "@pivot-main", "x": 208.57, "y": 1.35, "color": "ff3f00ff"}, {"name": "@ball", "parent": "@root", "y": 191, "color": "f3981bff"}, + {"name": "ball", "parent": "@ball", "y": -191, "color": "f4a729ff"}, {"name": "@body-neck", "parent": "@pivot-center", "x": -161.89, "y": -53.75, "color": "ff0101ff"}, + {"name": "@body-ground", "parent": "@pivot-main", "x": 220, "transform": "noRotationOrReflection", "color": "ff0101ff"}, + {"name": "@body-hip", "parent": "@pivot-center", "x": 240.11, "y": 55.25, "color": "ff0101ff"}, + {"name": "@body-air", "parent": "@pivot-back", "x": 63, "y": 365, "transform": "noRotationOrReflection", "color": "ff0101ff"}, + {"name": "@body-cheek", "parent": "@pivot-center", "x": 15.11, "y": 47.25, "color": "ff0101ff"} + ], + "slots": [ + {"name": "shadow", "bone": "@shadow", "attachment": "shadow"}, {"name": "ball", "bone": "ball"}, {"name": "leg-front-right", "bone": "@leg-front-right", "attachment": "leg-front-right"}, + {"name": "leg-back-left", "bone": "@leg-back-left", "attachment": "leg-back-left"}, {"name": "body", "bone": "@body", "attachment": "body"}, + {"name": "body-pattern", "bone": "body-pattern", "attachment": "body-pattern"}, {"name": "leg-front-left", "bone": "@leg-front-left", "attachment": "leg-front-left"}, + {"name": "body-hip", "bone": "@body-hip", "attachment": "body-hip"}, {"name": "body-neck", "bone": "@body-neck", "attachment": "body-neck"}, + {"name": "body-ground", "bone": "@body-ground", "attachment": "body-ground"}, {"name": "body-air", "bone": "@body-air", "attachment": "body-air"}, + {"name": "body-cheek", "bone": "@body-cheek", "attachment": "body-cheek"} + ], + "ik": [ + {"name": "leg-back-left-IK", "order": 2, "bones": ["@leg-back-left"], "target": "leg-back-left-IK"}, + {"name": "leg-front-left-IK", "order": 1, "bones": ["@leg-front-left"], "target": "leg-front-left-IK"}, + {"name": "leg-front-right-IK", "bones": ["@leg-front-right"], "target": "leg-front-right-IK"} + ], + "skins": [ + { + "name": "default", + "attachments": { + "ball": {"ball": {"y": 186.0, "width": 392.94117647058823, "height": 400.0, "path": "body-normal.ball", "x": 0.029411764705884025}}, + "body": {"body": {"x": -0.6435294117646959, "y": -73.31764705882354, "rotation": -170.69, "width": 677.6470588235294, "height": 508.2352941176471, "path": "body-normal.body"}}, + "body-pattern": {"body-pattern": {"x": 14.23882352941176, "y": 75.21588235294118, "width": 65.88235294117648, "height": 70.58823529411765, "path": "body-agamo.body-pattern"}}, + "leg-back-left": { + "leg-back-left": {"x": 32.56, "y": 0.31764705882352895, "rotation": 83.45, "width": 80.0, "height": 91.76470588235294, "path": "body-normal.leg-back-left"}, + "leg-back-left-long": {"x": 35.037058823529414, "y": -4.5, "rotation": 221.45, "width": 84.70588235294117, "height": 80.0, "path": "body-normal.leg-back-left-long"}, + "leg-back-left-stretch": { + "x": 27.84882352941176, "y": 2.462352941176471, "rotation": 54.45, "width": 65.88235294117648, "height": 68.23529411764706, "path": "body-normal.leg-back-left-stretch" + } + }, + "leg-front-left": { + "leg-front-left": {"x": 22.685882352941174, "y": 2.091764705882351, "rotation": 97.51, "width": 70.58823529411765, "height": 61.1764705882353, "path": "body-normal.leg-front-left"}, + "leg-front-left-long": { + "x": 28.450588235294116, "y": -5.187058823529413, "rotation": -173.75, "width": 87.05882352941177, "height": 75.29411764705883, "path": "body-normal.leg-front-left-long" + }, + "leg-front-left-stretch": { + "x": 20.12235294117647, "y": -3.107058823529413, "rotation": 142.15, "width": 68.23529411764706, "height": 75.29411764705883, "path": "body-normal.leg-front-left-stretch" + } + }, + "leg-front-right": { + "leg-front-right": {"x": 31.35, "y": -0.5423529411764709, "rotation": 87.96, "width": 80.0, "height": 91.76470588235294, "path": "body-normal.leg-front-right"}, + "leg-front-right-long": { + "x": 37.53058823529412, "y": 0.20294117647058696, "rotation": 205.96, "width": 87.05882352941177, "height": 75.29411764705883, "path": "body-normal.leg-front-right-long" + }, + "leg-front-right-stretch": {"x": 31.15, "y": 2.192352941176471, "rotation": 142.01, "width": 80.0, "height": 68.23529411764706, "path": "body-normal.leg-front-right-stretch"} + }, + "shadow": {"shadow": {"width": 945.8823529411765, "height": 190.58823529411765, "path": "body-agamo.shadow", "x": 0.05882352941176805, "y": 0.20588235294117396}}, + "body-air": { + "body-air1a_00": {"x": 1.37, "y": 35.21, "width": 209.41176470588235, "height": 129.41176470588235, "path": "body-accessory.body-air1a_00"}, + "body-air1a_01": {"x": 1.37, "y": 35.21, "width": 209.41176470588235, "height": 129.41176470588235, "path": "body-accessory.body-air1a_01"}, + "body-air1a_02": {"x": 1.37, "y": 35.21, "width": 209.41176470588235, "height": 129.41176470588235, "path": "body-accessory.body-air1a_02"}, + "body-air1a_03": {"x": 1.37, "y": 35.21, "width": 209.41176470588235, "height": 129.41176470588235, "path": "body-accessory.body-air1a_03"}, + "body-air1a_04": {"x": 1.37, "y": 35.21, "width": 209.41176470588235, "height": 129.41176470588235, "path": "body-accessory.body-air1a_04"}, + "body-air1a_05": {"x": 1.37, "y": 35.21, "width": 209.41176470588235, "height": 129.41176470588235, "path": "body-accessory.body-air1a_05"}, + "body-air1a_06": {"x": 1.37, "y": 35.21, "width": 209.41176470588235, "height": 129.41176470588235, "path": "body-accessory.body-air1a_06"}, + "body-air1a_07": {"x": 1.37, "y": 35.21, "width": 209.41176470588235, "height": 129.41176470588235, "path": "body-accessory.body-air1a_07"}, + "body-air1b_00": {"x": 1.37, "y": 35.21, "width": 155.29411764705884, "height": 192.94117647058823, "path": "body-accessory.body-air1b_00"}, + "body-air1b_01": {"x": 1.37, "y": 35.21, "width": 155.29411764705884, "height": 192.94117647058823, "path": "body-accessory.body-air1b_01"}, + "body-air1b_02": {"x": 1.37, "y": 35.21, "width": 155.29411764705884, "height": 192.94117647058823, "path": "body-accessory.body-air1b_02"}, + "body-air1c_00": {"x": 1.37, "y": 35.21, "width": 200.0, "height": 289.4117647058824, "path": "body-accessory.body-air1c_00"}, + "body-air1c_01": {"x": 1.37, "y": 35.21, "width": 200.0, "height": 289.4117647058824, "path": "body-accessory.body-air1c_01"}, + "body-air1c_02": {"x": 1.37, "y": 35.21, "width": 200.0, "height": 289.4117647058824, "path": "body-accessory.body-air1c_02"}, + "body-air1c_03": {"x": 1.37, "y": 35.21, "width": 200.0, "height": 289.4117647058824, "path": "body-accessory.body-air1c_03"}, + "body-air1d_00": {"x": 1.37, "y": 35.21, "width": 204.7058823529412, "height": 272.94117647058823, "path": "body-accessory.body-air1d_00"}, + "body-air1d_01": {"x": 1.37, "y": 35.21, "width": 204.7058823529412, "height": 272.94117647058823, "path": "body-accessory.body-air1d_01"}, + "body-air1d_02": {"x": 1.37, "y": 35.21, "width": 204.7058823529412, "height": 272.94117647058823, "path": "body-accessory.body-air1d_02"}, + "body-air1d_03": {"x": 1.37, "y": 35.21, "width": 204.7058823529412, "height": 272.94117647058823, "path": "body-accessory.body-air1d_03"} + }, + "body-cheek": { + "body-cheek1a": {"x": 1.52, "y": 3.04, "width": 58.82352941176471, "height": 58.82352941176471, "path": "body-accessory.body-cheek1a"}, + "body-cheek1b": {"x": 1.52, "y": 3.04, "width": 49.411764705882355, "height": 77.64705882352942, "path": "body-accessory.body-cheek1b"}, + "body-cheek1c": {"x": 1.52, "y": 3.04, "width": 49.411764705882355, "height": 77.64705882352942, "path": "body-accessory.body-cheek1c"}, + "body-cheek1d": {"x": 1.52, "y": 3.04, "width": 49.411764705882355, "height": 75.29411764705883, "path": "body-accessory.body-cheek1d"}, + "body-cheek1e": {"x": 1.52, "y": 3.04, "width": 54.11764705882353, "height": 80.0, "path": "body-accessory.body-cheek1e"}, + "body-cheek1f": {"x": 1.52, "y": 3.04, "width": 56.470588235294116, "height": 58.82352941176471, "path": "body-accessory.body-cheek1f"}, + "body-cheek1g": {"x": 1.52, "y": 3.04, "width": 103.52941176470588, "height": 96.47058823529412, "path": "body-accessory.body-cheek1g"} + }, + "body-ground": { + "body-ground1a_00": {"x": 4.75, "y": 123.01, "width": 254.11764705882354, "height": 272.94117647058823, "path": "body-accessory.body-ground1a_00"}, + "body-ground1a_01": {"x": 4.75, "y": 123.01, "width": 254.11764705882354, "height": 272.94117647058823, "path": "body-accessory.body-ground1a_01"}, + "body-ground1a_02": {"x": 4.75, "y": 123.01, "width": 254.11764705882354, "height": 272.94117647058823, "path": "body-accessory.body-ground1a_02"}, + "body-ground1a_03": {"x": 4.75, "y": 123.01, "width": 254.11764705882354, "height": 272.94117647058823, "path": "body-accessory.body-ground1a_03"} + }, + "body-hip": { + "body-hip1a": {"x": -16.0, "width": 108.23529411764706, "height": 138.8235294117647, "path": "body-accessory.body-hip1a", "y": 0.0}, + "body-hip1b": {"x": -16.0, "width": 209.41176470588235, "height": 214.11764705882354, "path": "body-accessory.body-hip1b", "y": 0.0}, + "body-hip1c": {"x": -16.0, "width": 122.3529411764706, "height": 157.64705882352942, "path": "body-accessory.body-hip1c", "y": 0.0}, + "body-hip1d": {"x": -16.0, "width": 202.35294117647058, "height": 143.52941176470588, "path": "body-accessory.body-hip1d", "y": 0.0} + }, + "body-neck": { + "body-neck1a": {"x": -5.4, "y": -54.79, "width": 91.76470588235294, "height": 96.47058823529412, "path": "body-accessory.body-neck1a"}, + "body-neck1b": {"x": -5.4, "y": -54.79, "width": 103.52941176470588, "height": 117.64705882352942, "path": "body-accessory.body-neck1b"}, + "body-neck1c": {"x": -5.4, "y": -54.79, "width": 80.0, "height": 110.58823529411765, "path": "body-accessory.body-neck1c"}, + "body-neck1d": {"x": -5.4, "y": -54.79, "width": 122.3529411764706, "height": 101.17647058823529, "path": "body-accessory.body-neck1d"}, + "body-neck1e": {"x": -5.4, "y": -54.79, "width": 89.41176470588236, "height": 105.88235294117648, "path": "body-accessory.body-neck1e"}, + "body-neck1f": {"x": -5.4, "y": -54.79, "width": 80.0, "height": 80.0, "path": "body-accessory.body-neck1f"} + } + } + } + ], + "events": {"hit": {}, "hit-buff": {}, "jump": {}, "start-attack": {}}, + "keyAnimations": { + "activity/appear": "1023093953", + "activity/bath": "3305387968", + "attack/ranged/cast-fly": "4180526371", + "attack/ranged/cast-high": "164191126", + "attack/ranged/cast-low": "198813017", + "attack/ranged/cast-multi": "151119", + "attack/ranged/cast-tail": "997902532", + "activity/eat-bite": "1137807767", + "activity/eat-chew": "1988236421", + "activity/entrance": "3768378365", + "defense/evade": "1735454995", + "activity/evolve": "649307630", + "battle/get-buff": "1455190363", + "battle/get-debuff": "606904312", + "defense/hit-by-normal": "2045974966", + "defense/hit-by-normal-crit": "2130010601", + "defense/hit-by-normal-dramatic": "3823092125", + "defense/hit-by-ranged-attack": "2224561612", + "defense/hit-with-shield": "390714790", + "attack/melee/horn-gore": "1327954218", + "attack/melee/mouth-bite": "2237748264", + "action/move-back": "3766271173", + "action/move-forward": "2945160014", + "attack/melee/multi-attack": "905926802", + "action/idle/normal": "1659336865", + "attack/melee/normal-attack": "3305373483", + "activity/prepare": "405864717", + "action/idle/random-01": "554401889", + "action/idle/random-02": "1085666627", + "action/idle/random-03": "2021333900", + "action/idle/random-04": "1003789695", + "action/idle/random-05": "2745614147", + "action/run": "1438840721", + "draft/run-origin": "3577885069", + "attack/melee/shrimp": "3833448733", + "activity/sleep": "100562494", + "attack/melee/tail-multi-slap": "3317139533", + "attack/melee/tail-roll": "3108617565", + "attack/melee/tail-smash": "519942130", + "attack/melee/tail-thrash": "628713175", + "activity/victory-pose-back-flip": "2227634241" + } + }, + "bug-08": { + "bones": [ + {"name": "@root"}, {"name": "@pivot-main", "parent": "@root"}, {"name": "@pivot-back", "parent": "@pivot-main", "x": 205, "y": 180, "color": "ff0101ff"}, + {"name": "@pivot-center", "parent": "@pivot-back", "x": -215.11, "y": -5.25, "color": "ff0101ff"}, + {"name": "@axie", "parent": "@pivot-center", "length": 213.28, "rotation": 179.04, "x": 196.39, "y": 5.16}, {"name": "@back", "parent": "@axie", "rotation": -179.04, "x": 37.63, "y": -198.19}, + {"name": "back", "parent": "@back", "length": 149.41, "rotation": 58, "x": -84.97, "y": -22.7, "transform": "noScale"}, + {"name": "@body", "parent": "@axie", "length": 226.28, "rotation": -8.35, "x": 224.58, "y": -0.53}, {"name": "@ear-left", "parent": "@axie", "rotation": -179.04, "x": 112.7, "y": -203.23}, + {"name": "ear-left", "parent": "@ear-left", "length": 113.61, "rotation": 90, "x": -27, "y": 19, "transform": "noScale"}, + {"name": "@ear-right", "parent": "@axie", "rotation": -179.04, "x": 405.28, "y": -235.33}, + {"name": "ear-right", "parent": "@ear-right", "length": 119.39, "rotation": 68, "x": -73, "y": -68, "transform": "noScale"}, + {"name": "@eyes", "parent": "@axie", "rotation": -179.04, "x": 384.24, "y": -113.67}, {"name": "@horn", "parent": "@axie", "rotation": -179.04, "x": 327.92, "y": -214.63}, + {"name": "horn", "parent": "@horn", "length": 176.72, "rotation": 90, "y": 18, "transform": "noScale"}, + {"name": "@leg-back-left", "parent": "@axie", "length": 76.4, "rotation": 100.96, "x": -15.3, "y": 102.56, "transform": "noScale"}, + {"name": "@leg-front-left", "parent": "@axie", "length": 51.19, "rotation": 93.86, "x": 134.77, "y": 149.55, "transform": "noScale"}, + {"name": "@leg-front-right", "parent": "@axie", "length": 74.83, "rotation": 83.2, "x": 382.95, "y": 121.78, "transform": "noScale"}, + {"name": "@mouth", "parent": "@axie", "rotation": -179.04, "x": 382.23, "y": 6.31}, + {"name": "body-pattern", "parent": "@body", "rotation": -170.69, "x": -267.21, "y": -49.4, "transform": "noScale"}, {"name": "@shadow", "parent": "@root", "color": "e6d713ff"}, + {"name": "@tail", "parent": "@axie", "rotation": -179.04, "x": -11.76, "y": 61.72}, + {"name": "tail", "parent": "@tail", "length": 203.67, "rotation": -42, "x": 16, "y": 72.87, "transform": "noScale"}, + {"name": "leg-front-right-IK", "parent": "@pivot-main", "x": -195.99, "y": -10.21, "color": "ff3f00ff"}, + {"name": "leg-front-left-IK", "parent": "@pivot-main", "x": 42.3, "y": -18.42, "color": "ff3f00ff"}, + {"name": "leg-back-left-IK", "parent": "@pivot-main", "x": 208.57, "y": 1.35, "color": "ff3f00ff"}, {"name": "@ball", "parent": "@root", "y": 191, "color": "f3981bff"}, + {"name": "ball", "parent": "@ball", "y": -191, "color": "f4a729ff"} + ], + "slots": [ + {"name": "shadow", "bone": "@shadow", "attachment": "shadow"}, {"name": "ball", "bone": "ball"}, {"name": "leg-front-right", "bone": "@leg-front-right", "attachment": "leg-front-right"}, + {"name": "ear-right", "bone": "ear-right", "attachment": "ear-right"}, {"name": "tail", "bone": "tail", "attachment": "tail"}, {"name": "back", "bone": "back", "attachment": "back"}, + {"name": "leg-back-left", "bone": "@leg-back-left", "attachment": "leg-back-left"}, {"name": "body", "bone": "@body", "attachment": "body"}, {"name": "body-pattern", "bone": "body-pattern"}, + {"name": "leg-front-left", "bone": "@leg-front-left", "attachment": "leg-front-left"}, {"name": "eyes", "bone": "@eyes", "attachment": "eyes"}, + {"name": "mouth", "bone": "@mouth", "attachment": "mouth"}, {"name": "ear-left", "bone": "ear-left", "attachment": "ear-left"}, {"name": "horn", "bone": "horn", "attachment": "horn"} + ], + "ik": [ + {"name": "leg-back-left-IK", "order": 2, "bones": ["@leg-back-left"], "target": "leg-back-left-IK"}, + {"name": "leg-front-left-IK", "order": 1, "bones": ["@leg-front-left"], "target": "leg-front-left-IK"}, + {"name": "leg-front-right-IK", "bones": ["@leg-front-right"], "target": "leg-front-right-IK"} + ], + "skins": [ + { + "name": "default", + "attachments": { + "back": {"back": {"x": 128.90588235294115, "y": 46.61058823529412, "rotation": -58, "width": 350.5882352941177, "height": 247.05882352941177, "path": "bug-08.back"}}, + "ear-left": {"ear-left": {"x": 41.50352941176471, "y": -70.23, "rotation": -90, "width": 162.35294117647058, "height": 200.0, "path": "bug-08.ear-left"}}, + "ear-right": {"ear-right": {"x": 101.23294117647058, "y": -3.979411764705884, "rotation": -68, "width": 155.29411764705884, "height": 207.05882352941177, "path": "bug-08.ear-right"}}, + "eyes": { + "eyes": {"x": 31.524117647058812, "y": 43.88058823529411, "width": 289.4117647058824, "height": 167.05882352941177, "path": "bug-08.eyes"}, + "eyes-angry": {"x": 31.524117647058812, "y": 43.88058823529411, "width": 289.4117647058824, "height": 167.05882352941177, "path": "bug-08.eyes-angry"}, + "eyes-happy": {"x": 31.524117647058812, "y": 43.88058823529411, "width": 289.4117647058824, "height": 167.05882352941177, "path": "bug-08.eyes-happy"}, + "eyes-shut": {"x": 31.524117647058812, "y": 43.88058823529411, "width": 289.4117647058824, "height": 167.05882352941177, "path": "bug-08.eyes-shut"} + }, + "horn": {"horn": {"x": 69.49823529411765, "y": 11.622941176470587, "rotation": -90, "width": 258.8235294117647, "height": 115.29411764705883, "path": "bug-08.horn"}}, + "mouth": { + "mouth": {"x": 24.053529411764696, "y": 66.0570588235294, "width": 282.3529411764706, "height": 44.70588235294118, "path": "bug-08.mouth"}, + "mouth-bite": {"x": 24.053529411764696, "y": 49.93941176470588, "width": 282.3529411764706, "height": 112.94117647058823, "path": "bug-08.mouth-bite"}, + "mouth-open": {"x": 24.053529411764696, "y": 14.23352941176471, "width": 282.3529411764706, "height": 202.35294117647058, "path": "bug-08.mouth-open"}, + "mouth-smile": {"x": 24.053529411764696, "y": 47.645294117647055, "width": 282.3529411764706, "height": 103.52941176470588, "path": "bug-08.mouth-smile"} + }, + "tail": {"tail": {"x": 99.21941176470588, "y": -0.20294117647059406, "rotation": 42, "width": 232.94117647058823, "height": 204.7058823529412, "path": "bug-08.tail"}} + } + } + ], + "events": {"hit": {}, "hit-buff": {}, "jump": {}, "start-attack": {}}, + "keyAnimations": { + "activity/appear": "1023093953", + "activity/bath": "3305387968", + "attack/ranged/cast-fly": "4180526371", + "attack/ranged/cast-high": "164191126", + "attack/ranged/cast-low": "198813017", + "attack/ranged/cast-multi": "151119", + "attack/ranged/cast-tail": "997902532", + "activity/eat-bite": "1137807767", + "activity/eat-chew": "1988236421", + "activity/entrance": "3768378365", + "defense/evade": "1735454995", + "activity/evolve": "649307630", + "battle/get-buff": "1455190363", + "battle/get-debuff": "606904312", + "defense/hit-by-normal": "2045974966", + "defense/hit-by-normal-crit": "2130010601", + "defense/hit-by-normal-dramatic": "3823092125", + "defense/hit-by-ranged-attack": "2224561612", + "defense/hit-with-shield": "390714790", + "attack/melee/horn-gore": "1327954218", + "attack/melee/mouth-bite": "2237748264", + "action/move-back": "3766271173", + "action/move-forward": "2945160014", + "attack/melee/multi-attack": "905926802", + "action/idle/normal": "1659336865", + "attack/melee/normal-attack": "3305373483", + "activity/prepare": "405864717", + "action/idle/random-01": "554401889", + "action/idle/random-02": "1085666627", + "action/idle/random-03": "2021333900", + "action/idle/random-04": "1003789695", + "action/idle/random-05": "2745614147", + "action/run": "1438840721", + "draft/run-origin": "3577885069", + "attack/melee/shrimp": "3833448733", + "activity/sleep": "100562494", + "attack/melee/tail-multi-slap": "3317139533", + "attack/melee/tail-roll": "3108617565", + "attack/melee/tail-smash": "519942130", + "attack/melee/tail-thrash": "628713175", + "activity/victory-pose-back-flip": "2227634241" + } + }, + "bug-06": { + "bones": [ + {"name": "@root"}, {"name": "@pivot-main", "parent": "@root"}, {"name": "@pivot-back", "parent": "@pivot-main", "x": 205, "y": 180, "color": "ff0101ff"}, + {"name": "@pivot-center", "parent": "@pivot-back", "x": -215.11, "y": -5.25, "color": "ff0101ff"}, + {"name": "@axie", "parent": "@pivot-center", "length": 213.28, "rotation": 179.04, "x": 196.39, "y": 5.16}, {"name": "@back", "parent": "@axie", "rotation": -179.04, "x": 37.63, "y": -198.19}, + {"name": "back", "parent": "@back", "length": 149.41, "rotation": 77, "x": -39.97, "y": 26.3, "transform": "noScale"}, + {"name": "@body", "parent": "@axie", "length": 226.28, "rotation": -8.35, "x": 224.58, "y": -0.53}, {"name": "@ear-left", "parent": "@axie", "rotation": -179.04, "x": 112.7, "y": -203.23}, + {"name": "ear-left", "parent": "@ear-left", "length": 113.61, "rotation": 90, "x": -27, "y": 19, "transform": "noScale"}, + {"name": "@ear-right", "parent": "@axie", "rotation": -179.04, "x": 405.28, "y": -235.33}, + {"name": "ear-right", "parent": "@ear-right", "length": 119.39, "rotation": 93, "x": -30, "y": -15, "transform": "noScale"}, + {"name": "@eyes", "parent": "@axie", "rotation": -179.04, "x": 384.24, "y": -113.67}, {"name": "@horn", "parent": "@axie", "rotation": -179.04, "x": 327.92, "y": -214.63}, + {"name": "horn", "parent": "@horn", "length": 176.72, "rotation": 90, "y": 18, "transform": "noScale"}, + {"name": "@leg-back-left", "parent": "@axie", "length": 76.4, "rotation": 100.96, "x": -15.3, "y": 102.56, "transform": "noScale"}, + {"name": "@leg-front-left", "parent": "@axie", "length": 51.19, "rotation": 93.86, "x": 134.77, "y": 149.55, "transform": "noScale"}, + {"name": "@leg-front-right", "parent": "@axie", "length": 74.83, "rotation": 83.2, "x": 382.95, "y": 121.78, "transform": "noScale"}, + {"name": "@mouth", "parent": "@axie", "rotation": -179.04, "x": 382.23, "y": 6.31}, + {"name": "body-pattern", "parent": "@body", "rotation": -170.69, "x": -267.21, "y": -49.4, "transform": "noScale"}, {"name": "@shadow", "parent": "@root", "color": "e6d713ff"}, + {"name": "@tail", "parent": "@axie", "rotation": -179.04, "x": -11.76, "y": 61.72}, + {"name": "tail", "parent": "@tail", "length": 203.67, "rotation": -8, "x": 16, "y": -11, "transform": "noScale"}, + {"name": "leg-front-right-IK", "parent": "@pivot-main", "x": -195.99, "y": -10.21, "color": "ff3f00ff"}, + {"name": "leg-front-left-IK", "parent": "@pivot-main", "x": 42.3, "y": -18.42, "color": "ff3f00ff"}, + {"name": "leg-back-left-IK", "parent": "@pivot-main", "x": 208.57, "y": 1.35, "color": "ff3f00ff"}, {"name": "@ball", "parent": "@root", "y": 191, "color": "f3981bff"}, + {"name": "ball", "parent": "@ball", "y": -191, "color": "f4a729ff"} + ], + "slots": [ + {"name": "shadow", "bone": "@shadow", "attachment": "shadow"}, {"name": "ball", "bone": "ball"}, {"name": "leg-front-right", "bone": "@leg-front-right", "attachment": "leg-front-right"}, + {"name": "ear-right", "bone": "ear-right"}, {"name": "tail", "bone": "tail", "attachment": "tail"}, {"name": "back", "bone": "back", "attachment": "back"}, + {"name": "leg-back-left", "bone": "@leg-back-left", "attachment": "leg-back-left"}, {"name": "body", "bone": "@body", "attachment": "body"}, {"name": "body-pattern", "bone": "body-pattern"}, + {"name": "leg-front-left", "bone": "@leg-front-left", "attachment": "leg-front-left"}, {"name": "eyes", "bone": "@eyes", "attachment": "eyes"}, + {"name": "mouth", "bone": "@mouth", "attachment": "mouth"}, {"name": "ear-left", "bone": "ear-left", "attachment": "ear-left"}, {"name": "horn", "bone": "horn", "attachment": "horn"} + ], + "ik": [ + {"name": "leg-back-left-IK", "order": 2, "bones": ["@leg-back-left"], "target": "leg-back-left-IK"}, + {"name": "leg-front-left-IK", "order": 1, "bones": ["@leg-front-left"], "target": "leg-front-left-IK"}, + {"name": "leg-front-right-IK", "bones": ["@leg-front-right"], "target": "leg-front-right-IK"} + ], + "skins": [ + { + "name": "default", + "attachments": { + "back": {"back": {"x": 130.66176470588235, "y": -52.76235294117648, "rotation": -77, "width": 301.1764705882353, "height": 251.76470588235296, "path": "bug-06.back"}}, + "ear-left": {"ear-left": {"x": -41.02882352941177, "y": -68.41588235294117, "rotation": -90, "width": 94.11764705882354, "height": 49.411764705882355, "path": "bug-06.ear-left"}}, + "eyes": { + "eyes": {"x": 25.62, "y": 19.83, "width": 283, "height": 94, "path": "bug-06.eyes"}, + "eyes-angry": {"x": 25.62, "y": 16.33, "width": 283, "height": 79, "path": "bug-06.eyes-angry"}, + "eyes-happy": {"x": 25.62, "y": 28.33, "width": 283, "height": 109, "path": "bug-06.eyes-happy"}, + "eyes-shut": {"x": 25.62, "y": 20.83, "width": 283, "height": 92, "path": "bug-06.eyes-shut"} + }, + "horn": {"horn": {"x": 108.93588235294116, "y": -21.59, "rotation": -90, "width": 350.5882352941177, "height": 200.0, "path": "bug-06.horn"}}, + "mouth": { + "mouth": {"x": 12.62, "y": 46.83, "width": 121, "height": 106, "path": "bug-06.mouth"}, + "mouth-bite": {"x": 33.12, "y": 41.83, "width": 278, "height": 116, "path": "bug-06.mouth-bite"}, + "mouth-open": {"x": 14.12, "y": 6.33, "width": 124, "height": 189, "path": "bug-06.mouth-open"}, + "mouth-smile": {"x": 13.62, "y": 48.83, "width": 161, "height": 104, "path": "bug-06.mouth-smile"} + }, + "tail": {"tail": {"x": 77.78176470588235, "y": 4.917058823529413, "rotation": 8, "width": 181.1764705882353, "height": 84.70588235294117, "path": "bug-06.tail"}} + } + } + ], + "events": {"hit": {}, "hit-buff": {}, "jump": {}, "start-attack": {}}, + "keyAnimations": { + "activity/appear": "1023093953", + "activity/bath": "3305387968", + "attack/ranged/cast-fly": "4180526371", + "attack/ranged/cast-high": "164191126", + "attack/ranged/cast-low": "198813017", + "attack/ranged/cast-multi": "151119", + "attack/ranged/cast-tail": "997902532", + "activity/eat-bite": "1137807767", + "activity/eat-chew": "1988236421", + "activity/entrance": "3768378365", + "defense/evade": "1735454995", + "activity/evolve": "649307630", + "battle/get-buff": "1455190363", + "battle/get-debuff": "606904312", + "defense/hit-by-normal": "2045974966", + "defense/hit-by-normal-crit": "2130010601", + "defense/hit-by-normal-dramatic": "3823092125", + "defense/hit-by-ranged-attack": "2224561612", + "defense/hit-with-shield": "390714790", + "attack/melee/horn-gore": "1327954218", + "attack/melee/mouth-bite": "2237748264", + "action/move-back": "3766271173", + "action/move-forward": "2945160014", + "attack/melee/multi-attack": "905926802", + "action/idle/normal": "1659336865", + "attack/melee/normal-attack": "3305373483", + "activity/prepare": "405864717", + "action/idle/random-01": "554401889", + "action/idle/random-02": "1085666627", + "action/idle/random-03": "2021333900", + "action/idle/random-04": "1003789695", + "action/idle/random-05": "2745614147", + "action/run": "1438840721", + "draft/run-origin": "3577885069", + "attack/melee/shrimp": "3833448733", + "activity/sleep": "100562494", + "attack/melee/tail-multi-slap": "3317139533", + "attack/melee/tail-roll": "3108617565", + "attack/melee/tail-smash": "519942130", + "attack/melee/tail-thrash": "628713175", + "activity/victory-pose-back-flip": "2227634241" + } + }, + "aquatic-mystic-02": { + "bones": [ + {"name": "@root"}, {"name": "@pivot-main", "parent": "@root"}, {"name": "@pivot-back", "parent": "@pivot-main", "x": 205, "y": 180, "color": "ff0101ff"}, + {"name": "@pivot-center", "parent": "@pivot-back", "x": -215.11, "y": -5.25, "color": "ff0101ff"}, + {"name": "@axie", "parent": "@pivot-center", "length": 213.28, "rotation": 179.04, "x": 196.39, "y": 5.16}, {"name": "@back", "parent": "@axie", "rotation": -179.04, "x": 37.63, "y": -198.19}, + {"name": "back", "parent": "@back", "length": 149.41, "rotation": 60, "x": 6.8, "y": 15, "transform": "noScale"}, + {"name": "@body", "parent": "@axie", "length": 226.28, "rotation": -8.35, "x": 224.58, "y": -0.53}, {"name": "@ear-left", "parent": "@axie", "rotation": -179.04, "x": 112.7, "y": -203.23}, + {"name": "ear-left", "parent": "@ear-left", "length": 113.61, "rotation": 2, "x": -21, "y": -43, "transform": "noScale"}, + {"name": "@ear-right", "parent": "@axie", "rotation": -179.04, "x": 405.28, "y": -235.33}, + {"name": "ear-right", "parent": "@ear-right", "length": 119.39, "rotation": 9, "x": -120, "y": -105, "transform": "noScale"}, + {"name": "@eyes", "parent": "@axie", "rotation": -179.04, "x": 384.24, "y": -113.67}, {"name": "@horn", "parent": "@axie", "rotation": -179.04, "x": 327.92, "y": -214.63}, + {"name": "horn", "parent": "@horn", "length": 176.72, "rotation": 90, "y": 18, "transform": "noScale"}, + {"name": "@leg-back-left", "parent": "@axie", "length": 76.4, "rotation": 100.96, "x": -15.3, "y": 102.56, "transform": "noScale"}, + {"name": "@leg-front-left", "parent": "@axie", "length": 51.19, "rotation": 93.86, "x": 134.77, "y": 149.55, "transform": "noScale"}, + {"name": "@leg-front-right", "parent": "@axie", "length": 74.83, "rotation": 83.2, "x": 382.95, "y": 121.78, "transform": "noScale"}, + {"name": "@mouth", "parent": "@axie", "rotation": -179.04, "x": 382.23, "y": 6.31}, + {"name": "body-class", "parent": "@body", "rotation": -170.69, "x": -286.29, "y": -103.48, "transform": "noScale"}, {"name": "@shadow", "parent": "@root", "color": "e6d713ff"}, + {"name": "@tail", "parent": "@axie", "rotation": -179.04, "x": -11.76, "y": 61.72}, + {"name": "tail", "parent": "@tail", "length": 203.67, "rotation": 6, "x": 16, "y": 72.87, "transform": "noScale"}, + {"name": "leg-front-right-IK", "parent": "@pivot-main", "x": -195.99, "y": -10.21, "color": "ff3f00ff"}, + {"name": "leg-front-left-IK", "parent": "@pivot-main", "x": 42.3, "y": -18.42, "color": "ff3f00ff"}, + {"name": "leg-back-left-IK", "parent": "@pivot-main", "x": 208.57, "y": 1.35, "color": "ff3f00ff"}, {"name": "@ball", "parent": "@root", "y": 191, "color": "f3981bff"}, + {"name": "ball", "parent": "@ball", "y": -191, "color": "f4a729ff"}, {"name": "body-id", "parent": "@body", "rotation": -170.69, "x": -292.44, "y": -65.98}, + {"name": "mouth-accessory", "parent": "@mouth", "x": 74.12, "y": 60}, {"name": "body-id-a", "parent": "body-id", "x": 23, "y": 10}, + {"name": "body-id-b", "parent": "body-id", "x": 13, "y": 10}, {"name": "body-id-c", "parent": "body-id", "x": 3, "y": 10}, {"name": "body-id-d", "parent": "body-id", "x": -7, "y": 10}, + {"name": "body-id-e", "parent": "body-id", "x": -17, "y": 10}, {"name": "body-id-f", "parent": "body-id", "x": -27, "y": 10}, + {"name": "body-light-life", "parent": "@body", "rotation": -95.65, "x": -248.57, "y": -126.52} + ], + "slots": [ + {"name": "shadow", "bone": "@shadow", "attachment": "shadow"}, {"name": "ball", "bone": "ball"}, + {"name": "leg-front-right", "bone": "@leg-front-right", "attachment": "mystic-leg-front-right"}, {"name": "ear-right", "bone": "ear-right", "attachment": "ear-right"}, + {"name": "tail", "bone": "tail", "attachment": "tail"}, {"name": "back", "bone": "back", "attachment": "back"}, + {"name": "leg-back-left", "bone": "@leg-back-left", "attachment": "mystic-leg-back-left"}, {"name": "body-light-life", "bone": "body-light-life", "attachment": "body-light-life"}, + {"name": "body", "bone": "@body", "attachment": "body-mystic"}, {"name": "body-light-breath", "bone": "@body", "attachment": "body-light-breath"}, + {"name": "body-light-pulse", "bone": "@body", "attachment": "body-light-pulse"}, {"name": "body-id-a", "bone": "body-id-a", "attachment": "body-id-a-01"}, + {"name": "body-id-b", "bone": "body-id-b", "attachment": "body-id-b-09"}, {"name": "body-id-c", "bone": "body-id-c", "attachment": "body-id-c-08"}, + {"name": "body-id-d", "bone": "body-id-d", "attachment": "body-id-d-00"}, {"name": "body-id-e", "bone": "body-id-e", "attachment": "body-id-e-03"}, + {"name": "body-id-f", "bone": "body-id-f", "attachment": "body-id-f-00"}, {"name": "body-class", "bone": "body-class", "attachment": "body-class-aquatic"}, + {"name": "leg-front-left", "bone": "@leg-front-left", "attachment": "mystic-leg-front-left"}, {"name": "eyes", "bone": "@eyes", "attachment": "eyes"}, + {"name": "mouth", "bone": "@mouth", "attachment": "mouth"}, {"name": "mouth-accessory", "bone": "mouth-accessory"}, {"name": "ear-left", "bone": "ear-left", "attachment": "ear-left"}, + {"name": "horn", "bone": "horn", "attachment": "horn"} + ], + "ik": [ + {"name": "leg-back-left-IK", "order": 2, "bones": ["@leg-back-left"], "target": "leg-back-left-IK"}, + {"name": "leg-front-left-IK", "order": 1, "bones": ["@leg-front-left"], "target": "leg-front-left-IK"}, + {"name": "leg-front-right-IK", "bones": ["@leg-front-right"], "target": "leg-front-right-IK"} + ], + "skins": [ + { + "name": "default", + "attachments": { + "back": {"back": {"x": 78.48058823529412, "y": 58.23470588235293, "rotation": -60, "width": 287.05882352941177, "height": 296.47058823529414, "path": "aquatic-mystic-02.back"}}, + "ear-left": { + "ear-left": {"x": 56.48764705882352, "y": -6.1123529411764785, "rotation": -2, "width": 131.76470588235296, "height": 211.76470588235296, "path": "aquatic-mystic-02.ear-left"} + }, + "ear-right": { + "ear-right": {"x": 44.71764705882353, "y": 10.098823529411767, "rotation": -9, "width": 91.76470588235294, "height": 225.88235294117646, "path": "aquatic-mystic-02.ear-right"} + }, + "eyes": { + "eyes": {"x": 62.687647058823536, "y": 23.38705882352941, "width": 331.7647058823529, "height": 124.70588235294117, "path": "aquatic-mystic-02.eyes"}, + "eyes-angry": {"x": 62.687647058823536, "y": 23.38705882352941, "width": 331.7647058823529, "height": 124.70588235294117, "path": "aquatic-mystic-02.eyes-angry"}, + "eyes-happy": {"x": 57.98176470588235, "y": 31.62235294117647, "width": 341.1764705882353, "height": 108.23529411764706, "path": "aquatic-mystic-02.eyes-happy"}, + "eyes-shut": {"x": 62.687647058823536, "y": 23.38705882352941, "width": 331.7647058823529, "height": 124.70588235294117, "path": "aquatic-mystic-02.eyes-shut"} + }, + "horn": {"horn": {"x": 66.38705882352942, "y": -4.981764705882362, "rotation": -90, "width": 284.70588235294116, "height": 178.82352941176472, "path": "aquatic-mystic-02.horn"}}, + "mouth": { + "mouth": {"x": 15.805294117647058, "y": 46.97529411764706, "width": 103.52941176470588, "height": 103.52941176470588, "path": "aquatic-mystic-02.mouth"}, + "mouth-bite": {"x": 21.511176470588232, "y": 47.504705882352944, "width": 254.11764705882354, "height": 96.47058823529412, "path": "aquatic-mystic-02.mouth-bite"}, + "mouth-open": {"x": 16.158235294117652, "y": 31.85764705882352, "width": 138.8235294117647, "height": 171.76470588235296, "path": "aquatic-mystic-02.mouth-open"}, + "mouth-smile": {"x": 19.62882352941177, "y": 47.79882352941176, "width": 185.88235294117646, "height": 105.88235294117648, "path": "aquatic-mystic-02.mouth-smile"} + }, + "mouth-accessory": { + "mouth-accessory": {"x": 0.8029411764705869, "y": -0.907058823529413, "width": 35.294117647058826, "height": 35.294117647058826, "path": "aquatic-mystic-02.mouth-accessory"} + }, + "tail": {"tail": {"x": 117.1535294117647, "y": 20.702352941176464, "rotation": -6, "width": 322.3529411764706, "height": 268.2352941176471, "path": "aquatic-mystic-02.tail"}} + } + } + ], + "events": {"hit": {}, "hit-buff": {}, "jump": {}, "start-attack": {}}, + "keyAnimations": { + "activity/appear": "1023093953", + "activity/bath": "3305387968", + "attack/ranged/cast-fly": "4180526371", + "attack/ranged/cast-high": "164191126", + "attack/ranged/cast-low": "198813017", + "attack/ranged/cast-multi": "151119", + "attack/ranged/cast-tail": "645705789", + "activity/eat-bite": "1137807767", + "activity/eat-chew": "1988236421", + "activity/entrance": "3768378365", + "defense/evade": "1735454995", + "activity/evolve": "649307630", + "battle/get-buff": "1455190363", + "battle/get-debuff": "606904312", + "defense/hit-by-normal": "2045974966", + "defense/hit-by-normal-crit": "2130010601", + "defense/hit-by-normal-dramatic": "3823092125", + "defense/hit-by-ranged-attack": "2224561612", + "defense/hit-with-shield": "390714790", + "attack/melee/horn-gore": "1327954218", + "attack/melee/mouth-bite": "2237748264", + "action/move-back": "3766271173", + "action/move-forward": "2945160014", + "attack/melee/multi-attack": "3861365989", + "action/mix/mystic-light-battle": "3979179032", + "action/mix/mystic-light-normal": "1566344788", + "action/idle/normal": "25318063", + "attack/melee/normal-attack": "3305373483", + "activity/prepare": "405864717", + "action/idle/random-01": "2880388010", + "action/idle/random-02": "3902657344", + "action/idle/random-03": "2021333900", + "action/idle/random-04": "1003789695", + "action/idle/random-05": "2745614147", + "action/run": "3858829480", + "draft/run-origin": "3947527336", + "attack/melee/shrimp": "3833448733", + "activity/sleep": "100562494", + "attack/melee/tail-multi-slap": "3317139533", + "attack/melee/tail-roll": "3108617565", + "attack/melee/tail-smash": "519942130", + "attack/melee/tail-thrash": "628713175", + "activity/victory-pose-back-flip": "2227634241" + } + }, + "aquatic-10": { + "bones": [ + {"name": "@root"}, {"name": "@pivot-main", "parent": "@root"}, {"name": "@pivot-back", "parent": "@pivot-main", "x": 205, "y": 180, "color": "ff0101ff"}, + {"name": "@pivot-center", "parent": "@pivot-back", "x": -215.11, "y": -5.25, "color": "ff0101ff"}, + {"name": "@axie", "parent": "@pivot-center", "length": 213.28, "rotation": 179.04, "x": 196.39, "y": 5.16}, {"name": "@back", "parent": "@axie", "rotation": -179.04, "x": 37.63, "y": -198.19}, + {"name": "back", "parent": "@back", "length": 149.41, "rotation": 60, "x": -21.97, "y": 41.3, "transform": "noScale"}, + {"name": "@body", "parent": "@axie", "length": 226.28, "rotation": -8.35, "x": 224.58, "y": -0.53}, {"name": "@ear-left", "parent": "@axie", "rotation": -179.04, "x": 112.7, "y": -203.23}, + {"name": "ear-left", "parent": "@ear-left", "length": 113.61, "rotation": 2, "x": -21, "y": -43, "transform": "noScale"}, + {"name": "@ear-right", "parent": "@axie", "rotation": -179.04, "x": 405.28, "y": -235.33}, + {"name": "ear-right", "parent": "@ear-right", "length": 119.39, "rotation": 9, "x": -120, "y": -105, "transform": "noScale"}, + {"name": "@eyes", "parent": "@axie", "rotation": -179.04, "x": 384.24, "y": -113.67}, {"name": "@horn", "parent": "@axie", "rotation": -179.04, "x": 327.92, "y": -214.63}, + {"name": "horn", "parent": "@horn", "length": 176.72, "rotation": 90, "y": 18, "transform": "noScale"}, + {"name": "@leg-back-left", "parent": "@axie", "length": 76.4, "rotation": 100.96, "x": -15.3, "y": 102.56, "transform": "noScale"}, + {"name": "@leg-front-left", "parent": "@axie", "length": 51.19, "rotation": 93.86, "x": 134.77, "y": 149.55, "transform": "noScale"}, + {"name": "@leg-front-right", "parent": "@axie", "length": 74.83, "rotation": 83.2, "x": 382.95, "y": 121.78, "transform": "noScale"}, + {"name": "@mouth", "parent": "@axie", "rotation": -179.04, "x": 382.23, "y": 6.31}, + {"name": "body-pattern", "parent": "@body", "rotation": -170.69, "x": -267.21, "y": -49.4, "transform": "noScale"}, {"name": "@shadow", "parent": "@root", "color": "e6d713ff"}, + {"name": "@tail", "parent": "@axie", "rotation": -179.04, "x": -11.76, "y": 61.72}, + {"name": "tail", "parent": "@tail", "length": 203.67, "rotation": 13, "x": 16, "y": 31, "transform": "noScale"}, + {"name": "leg-front-right-IK", "parent": "@pivot-main", "x": -195.99, "y": -10.21, "color": "ff3f00ff"}, + {"name": "leg-front-left-IK", "parent": "@pivot-main", "x": 42.3, "y": -18.42, "color": "ff3f00ff"}, + {"name": "leg-back-left-IK", "parent": "@pivot-main", "x": 208.57, "y": 1.35, "color": "ff3f00ff"}, {"name": "@ball", "parent": "@root", "y": 191, "color": "f3981bff"}, + {"name": "ball", "parent": "@ball", "y": -191, "color": "f4a729ff"} + ], + "slots": [ + {"name": "shadow", "bone": "@shadow", "attachment": "shadow"}, {"name": "ball", "bone": "ball"}, {"name": "leg-front-right", "bone": "@leg-front-right", "attachment": "leg-front-right"}, + {"name": "ear-right", "bone": "ear-right"}, {"name": "tail", "bone": "tail", "attachment": "tail"}, {"name": "back", "bone": "back", "attachment": "back"}, + {"name": "leg-back-left", "bone": "@leg-back-left", "attachment": "leg-back-left"}, {"name": "body", "bone": "@body", "attachment": "body"}, {"name": "body-pattern", "bone": "body-pattern"}, + {"name": "leg-front-left", "bone": "@leg-front-left", "attachment": "leg-front-left"}, {"name": "eyes", "bone": "@eyes", "attachment": "eyes"}, + {"name": "mouth", "bone": "@mouth", "attachment": "mouth"}, {"name": "ear-left", "bone": "ear-left", "attachment": "ear-left"}, {"name": "horn", "bone": "horn", "attachment": "horn"} + ], + "ik": [ + {"name": "leg-back-left-IK", "order": 2, "bones": ["@leg-back-left"], "target": "leg-back-left-IK"}, + {"name": "leg-front-left-IK", "order": 1, "bones": ["@leg-front-left"], "target": "leg-front-left-IK"}, + {"name": "leg-front-right-IK", "bones": ["@leg-front-right"], "target": "leg-front-right-IK"} + ], + "skins": [ + { + "name": "default", + "attachments": { + "back": {"back": {"x": 96.37411764705882, "y": 0.14, "rotation": -60, "width": 249.41176470588235, "height": 240.0, "path": "aquatic-10.back"}}, + "ear-left": {"ear-left": {"x": 55.09882352941176, "y": -15.62352941176471, "rotation": -2, "width": 105.88235294117648, "height": 197.64705882352942, "path": "aquatic-10.ear-left"}}, + "eyes": { + "eyes": {"x": 23.27, "y": 31.98352941176471, "width": 360.0, "height": 162.35294117647058, "path": "aquatic-10.eyes"}, + "eyes-angry": {"x": 23.27, "y": 31.98352941176471, "width": 360.0, "height": 162.35294117647058, "path": "aquatic-10.eyes-angry"}, + "eyes-happy": {"x": 23.27, "y": 31.98352941176471, "width": 360.0, "height": 162.35294117647058, "path": "aquatic-10.eyes-happy"}, + "eyes-shut": {"x": 23.27, "y": 31.98352941176471, "width": 360.0, "height": 162.35294117647058, "path": "aquatic-10.eyes-shut"} + }, + "horn": {"horn": {"x": 88.00764705882352, "y": -7.27647058823529, "rotation": -90, "width": 251.76470588235296, "height": 202.35294117647058, "path": "aquatic-10.horn"}}, + "mouth": { + "mouth": {"x": 10.202352941176464, "y": 40.111176470588234, "width": 148.23529411764707, "height": 94.11764705882354, "path": "aquatic-10.mouth"}, + "mouth-bite": {"x": 22.437647058823536, "y": 44.993529411764705, "width": 331.7647058823529, "height": 82.3529411764706, "path": "aquatic-10.mouth-bite"}, + "mouth-open": {"x": 15.202352941176464, "y": 3.640588235294116, "width": 188.23529411764707, "height": 167.05882352941177, "path": "aquatic-10.mouth-open"}, + "mouth-smile": {"x": 10.32, "y": 29.28764705882353, "width": 160.0, "height": 91.76470588235294, "path": "aquatic-10.mouth-smile"} + }, + "tail": {"tail": {"x": 101.78235294117647, "y": 20.93, "rotation": -13, "width": 308.2352941176471, "height": 240.0, "path": "aquatic-10.tail"}} + } + } + ], + "events": {"hit": {}, "hit-buff": {}, "jump": {}, "start-attack": {}}, + "keyAnimations": { + "activity/appear": "1023093953", + "activity/bath": "3305387968", + "attack/ranged/cast-fly": "4180526371", + "attack/ranged/cast-high": "164191126", + "attack/ranged/cast-low": "198813017", + "attack/ranged/cast-multi": "151119", + "attack/ranged/cast-tail": "997902532", + "activity/eat-bite": "1137807767", + "activity/eat-chew": "1988236421", + "activity/entrance": "3768378365", + "defense/evade": "1735454995", + "activity/evolve": "649307630", + "battle/get-buff": "1455190363", + "battle/get-debuff": "606904312", + "defense/hit-by-normal": "2045974966", + "defense/hit-by-normal-crit": "2130010601", + "defense/hit-by-normal-dramatic": "3823092125", + "defense/hit-by-ranged-attack": "2224561612", + "defense/hit-with-shield": "390714790", + "attack/melee/horn-gore": "1327954218", + "attack/melee/mouth-bite": "2237748264", + "action/move-back": "3766271173", + "action/move-forward": "2945160014", + "attack/melee/multi-attack": "905926802", + "action/idle/normal": "1659336865", + "attack/melee/normal-attack": "3305373483", + "activity/prepare": "405864717", + "action/idle/random-01": "554401889", + "action/idle/random-02": "1085666627", + "action/idle/random-03": "2021333900", + "action/idle/random-04": "1003789695", + "action/idle/random-05": "2745614147", + "action/run": "1438840721", + "draft/run-origin": "3577885069", + "attack/melee/shrimp": "3833448733", + "activity/sleep": "100562494", + "attack/melee/tail-multi-slap": "3317139533", + "attack/melee/tail-roll": "3108617565", + "attack/melee/tail-smash": "519942130", + "attack/melee/tail-thrash": "628713175", + "activity/victory-pose-back-flip": "2227634241" + } + }, + "bird-12": { + "bones": [ + {"name": "@root"}, {"name": "@pivot-main", "parent": "@root"}, {"name": "@pivot-back", "parent": "@pivot-main", "x": 205, "y": 180, "color": "ff0101ff"}, + {"name": "@pivot-center", "parent": "@pivot-back", "x": -215.11, "y": -5.25, "color": "ff0101ff"}, + {"name": "@axie", "parent": "@pivot-center", "length": 213.28, "rotation": 179.04, "x": 196.39, "y": 5.16}, {"name": "@back", "parent": "@axie", "rotation": -179.04, "x": 37.63, "y": -198.19}, + {"name": "back", "parent": "@back", "length": 149.41, "rotation": 48, "x": -35.97, "y": 27.3, "transform": "noScale"}, + {"name": "@body", "parent": "@axie", "length": 226.28, "rotation": -8.35, "x": 224.58, "y": -0.53}, {"name": "@ear-left", "parent": "@axie", "rotation": -179.04, "x": 112.7, "y": -203.23}, + {"name": "ear-left", "parent": "@ear-left", "length": 113.61, "rotation": 5, "x": 5, "y": -40.5, "transform": "noScale"}, + {"name": "@ear-right", "parent": "@axie", "rotation": -179.04, "x": 405.28, "y": -235.33}, + {"name": "ear-right", "parent": "@ear-right", "length": 119.39, "rotation": 181, "x": -83, "y": -102, "transform": "noScale"}, + {"name": "@eyes", "parent": "@axie", "rotation": -179.04, "x": 384.24, "y": -113.67}, {"name": "@horn", "parent": "@axie", "rotation": -179.04, "x": 327.92, "y": -214.63}, + {"name": "horn", "parent": "@horn", "length": 176.72, "rotation": 90, "y": 18, "transform": "noScale"}, + {"name": "@leg-back-left", "parent": "@axie", "length": 76.4, "rotation": 100.96, "x": -15.3, "y": 102.56, "transform": "noScale"}, + {"name": "@leg-front-left", "parent": "@axie", "length": 51.19, "rotation": 93.86, "x": 134.77, "y": 149.55, "transform": "noScale"}, + {"name": "@leg-front-right", "parent": "@axie", "length": 74.83, "rotation": 83.2, "x": 382.95, "y": 121.78, "transform": "noScale"}, + {"name": "@mouth", "parent": "@axie", "rotation": -179.04, "x": 382.23, "y": 6.31}, + {"name": "body-pattern", "parent": "@body", "rotation": -170.69, "x": -267.21, "y": -49.4, "transform": "noScale"}, {"name": "@shadow", "parent": "@root", "color": "e6d713ff"}, + {"name": "@tail", "parent": "@axie", "rotation": -179.04, "x": -11.76, "y": 61.72}, + {"name": "tail", "parent": "@tail", "length": 203.67, "rotation": 32, "x": -9, "y": -8, "transform": "noScale"}, + {"name": "leg-front-right-IK", "parent": "@pivot-main", "x": -195.99, "y": -10.21, "color": "ff3f00ff"}, + {"name": "leg-front-left-IK", "parent": "@pivot-main", "x": 42.3, "y": -18.42, "color": "ff3f00ff"}, + {"name": "leg-back-left-IK", "parent": "@pivot-main", "x": 208.57, "y": 1.35, "color": "ff3f00ff"}, {"name": "@ball", "parent": "@root", "y": 191, "color": "f3981bff"}, + {"name": "ball", "parent": "@ball", "y": -191, "color": "f4a729ff"} + ], + "slots": [ + {"name": "shadow", "bone": "@shadow", "attachment": "shadow"}, {"name": "ball", "bone": "ball"}, {"name": "leg-front-right", "bone": "@leg-front-right", "attachment": "leg-front-right"}, + {"name": "ear-right", "bone": "ear-right", "attachment": "ear-right"}, {"name": "tail", "bone": "tail", "attachment": "tail"}, {"name": "back", "bone": "back", "attachment": "back"}, + {"name": "leg-back-left", "bone": "@leg-back-left", "attachment": "leg-back-left"}, {"name": "body", "bone": "@body", "attachment": "body"}, {"name": "body-pattern", "bone": "body-pattern"}, + {"name": "leg-front-left", "bone": "@leg-front-left", "attachment": "leg-front-left"}, {"name": "eyes", "bone": "@eyes", "attachment": "eyes"}, + {"name": "mouth", "bone": "@mouth", "attachment": "mouth"}, {"name": "ear-left", "bone": "ear-left", "attachment": "ear-left"}, {"name": "horn", "bone": "horn", "attachment": "horn"} + ], + "ik": [ + {"name": "leg-back-left-IK", "order": 2, "bones": ["@leg-back-left"], "target": "leg-back-left-IK"}, + {"name": "leg-front-left-IK", "order": 1, "bones": ["@leg-front-left"], "target": "leg-front-left-IK"}, + {"name": "leg-front-right-IK", "bones": ["@leg-front-right"], "target": "leg-front-right-IK"} + ], + "skins": [ + { + "name": "default", + "attachments": { + "back": {"back": {"x": 112.88294117647058, "y": 17.097058823529405, "rotation": -48, "width": 235.29411764705884, "height": 244.7058823529412, "path": "bird-12.back"}}, + "ear-left": {"ear-left": {"x": 48.44235294117647, "y": 2.285882352941174, "rotation": -5, "width": 108.23529411764706, "height": 150.58823529411765, "path": "bird-12.ear-left"}}, + "ear-right": {"ear-right": {"x": 53.93647058823529, "y": 0.16294117647058703, "rotation": 179, "width": 117.64705882352942, "height": 75.29411764705883, "path": "bird-12.ear-right"}}, + "eyes": { + "eyes": {"x": 28.16, "y": 17.98, "width": 293, "height": 97, "path": "bird-12.eyes"}, + "eyes-angry": {"x": 28.16, "y": 17.98, "width": 293, "height": 97, "path": "bird-12.eyes-angry"}, + "eyes-happy": {"x": 28.16, "y": 15.48, "width": 293, "height": 60, "path": "bird-12.eyes-happy"}, + "eyes-shut": {"x": 26.16, "y": 7.98, "width": 289, "height": 49, "path": "bird-12.eyes-shut"} + }, + "horn": {"horn": {"x": 112.05411764705883, "y": 5.671764705882348, "rotation": -90, "width": 209.41176470588235, "height": 261.1764705882353, "path": "bird-12.horn"}}, + "mouth": { + "mouth": {"x": 2.66, "y": 67.48, "width": 100, "height": 124, "path": "bird-12.mouth"}, + "mouth-bite": {"x": 8.66, "y": 73.98, "width": 140, "height": 111, "path": "bird-12.mouth-bite"}, + "mouth-open": {"x": 3.16, "y": 55.48, "width": 99, "height": 180, "path": "bird-12.mouth-open"}, + "mouth-smile": {"x": 11.66, "y": 67.48, "width": 118, "height": 124, "path": "bird-12.mouth-smile"} + }, + "tail": {"tail": {"x": 187.26176470588234, "y": 18.311764705882347, "rotation": -32, "width": 341.1764705882353, "height": 301.1764705882353, "path": "bird-12.tail"}} + } + } + ], + "events": {"hit": {}, "hit-buff": {}, "jump": {}, "start-attack": {}}, + "keyAnimations": { + "activity/appear": "1023093953", + "activity/bath": "3305387968", + "attack/ranged/cast-fly": "4180526371", + "attack/ranged/cast-high": "164191126", + "attack/ranged/cast-low": "198813017", + "attack/ranged/cast-multi": "151119", + "attack/ranged/cast-tail": "997902532", + "activity/eat-bite": "1137807767", + "activity/eat-chew": "1988236421", + "activity/entrance": "3768378365", + "defense/evade": "1735454995", + "activity/evolve": "649307630", + "battle/get-buff": "1455190363", + "battle/get-debuff": "606904312", + "defense/hit-by-normal": "2045974966", + "defense/hit-by-normal-crit": "2130010601", + "defense/hit-by-normal-dramatic": "3823092125", + "defense/hit-by-ranged-attack": "2224561612", + "defense/hit-with-shield": "390714790", + "attack/melee/horn-gore": "1327954218", + "attack/melee/mouth-bite": "2237748264", + "action/move-back": "3766271173", + "action/move-forward": "2945160014", + "attack/melee/multi-attack": "905926802", + "action/idle/normal": "1659336865", + "attack/melee/normal-attack": "3305373483", + "activity/prepare": "405864717", + "action/idle/random-01": "554401889", + "action/idle/random-02": "1085666627", + "action/idle/random-03": "2021333900", + "action/idle/random-04": "1003789695", + "action/idle/random-05": "2745614147", + "action/run": "1438840721", + "draft/run-origin": "3577885069", + "attack/melee/shrimp": "3833448733", + "activity/sleep": "100562494", + "attack/melee/tail-multi-slap": "3317139533", + "attack/melee/tail-roll": "3108617565", + "attack/melee/tail-smash": "519942130", + "attack/melee/tail-thrash": "628713175", + "activity/victory-pose-back-flip": "2227634241" + } + }, + "beast-12": { + "bones": [ + {"name": "@root"}, {"name": "@pivot-main", "parent": "@root"}, {"name": "@pivot-back", "parent": "@pivot-main", "x": 205, "y": 180, "color": "ff0101ff"}, + {"name": "@pivot-center", "parent": "@pivot-back", "x": -215.11, "y": -5.25, "color": "ff0101ff"}, + {"name": "@axie", "parent": "@pivot-center", "length": 213.28, "rotation": 179.04, "x": 196.39, "y": 5.16}, {"name": "@back", "parent": "@axie", "rotation": -179.04, "x": 37.63, "y": -198.19}, + {"name": "back", "parent": "@back", "length": 149.41, "rotation": 58, "x": -13.97, "y": 26.3, "transform": "noScale"}, + {"name": "@body", "parent": "@axie", "length": 226.28, "rotation": -8.35, "x": 224.58, "y": -0.53}, {"name": "@ear-left", "parent": "@axie", "rotation": -179.04, "x": 112.7, "y": -203.23}, + {"name": "ear-left", "parent": "@ear-left", "length": 113.61, "rotation": 90, "x": -27, "y": 19, "transform": "noScale"}, + {"name": "@ear-right", "parent": "@axie", "rotation": -179.04, "x": 405.28, "y": -235.33}, + {"name": "ear-right", "parent": "@ear-right", "length": 119.39, "rotation": 93, "x": -30, "y": -15, "transform": "noScale"}, + {"name": "@eyes", "parent": "@axie", "rotation": -179.04, "x": 384.24, "y": -113.67}, {"name": "@horn", "parent": "@axie", "rotation": -179.04, "x": 327.92, "y": -214.63}, + {"name": "horn", "parent": "@horn", "length": 176.72, "rotation": 90, "y": 18, "transform": "noScale"}, + {"name": "@leg-back-left", "parent": "@axie", "length": 76.4, "rotation": 100.96, "x": -15.3, "y": 102.56, "transform": "noScale"}, + {"name": "@leg-front-left", "parent": "@axie", "length": 51.19, "rotation": 93.86, "x": 134.77, "y": 149.55, "transform": "noScale"}, + {"name": "@leg-front-right", "parent": "@axie", "length": 74.83, "rotation": 83.2, "x": 382.95, "y": 121.78, "transform": "noScale"}, + {"name": "@mouth", "parent": "@axie", "rotation": -179.04, "x": 382.23, "y": 6.31}, + {"name": "body-pattern", "parent": "@body", "rotation": -170.69, "x": -267.21, "y": -49.4, "transform": "noScale"}, {"name": "@shadow", "parent": "@root", "color": "e6d713ff"}, + {"name": "@tail", "parent": "@axie", "rotation": -179.04, "x": -11.76, "y": 61.72}, + {"name": "tail", "parent": "@tail", "length": 203.67, "rotation": -12, "x": 16, "y": 72.87, "transform": "noScale"}, + {"name": "leg-front-right-IK", "parent": "@pivot-main", "x": -195.99, "y": -10.21, "color": "ff3f00ff"}, + {"name": "leg-front-left-IK", "parent": "@pivot-main", "x": 42.3, "y": -18.42, "color": "ff3f00ff"}, + {"name": "leg-back-left-IK", "parent": "@pivot-main", "x": 208.57, "y": 1.35, "color": "ff3f00ff"}, {"name": "@ball", "parent": "@root", "y": 191, "color": "f3981bff"}, + {"name": "ball", "parent": "@ball", "y": -191, "color": "f4a729ff"} + ], + "slots": [ + {"name": "shadow", "bone": "@shadow", "attachment": "shadow"}, {"name": "ball", "bone": "ball"}, {"name": "leg-front-right", "bone": "@leg-front-right", "attachment": "leg-front-right"}, + {"name": "tail", "bone": "tail", "attachment": "tail"}, {"name": "back", "bone": "back", "attachment": "back"}, + {"name": "leg-back-left", "bone": "@leg-back-left", "attachment": "leg-back-left"}, {"name": "body", "bone": "@body", "attachment": "body"}, + {"name": "ear-right", "bone": "ear-right", "attachment": "ear-right"}, {"name": "body-pattern", "bone": "body-pattern"}, + {"name": "leg-front-left", "bone": "@leg-front-left", "attachment": "leg-front-left"}, {"name": "eyes", "bone": "@eyes", "attachment": "eyes"}, + {"name": "mouth", "bone": "@mouth", "attachment": "mouth"}, {"name": "ear-left", "bone": "ear-left", "attachment": "ear-left"}, {"name": "horn", "bone": "horn", "attachment": "horn"} + ], + "ik": [ + {"name": "leg-back-left-IK", "order": 2, "bones": ["@leg-back-left"], "target": "leg-back-left-IK"}, + {"name": "leg-front-left-IK", "order": 1, "bones": ["@leg-front-left"], "target": "leg-front-left-IK"}, + {"name": "leg-front-right-IK", "bones": ["@leg-front-right"], "target": "leg-front-right-IK"} + ], + "skins": [ + { + "name": "default", + "attachments": { + "back": {"back": {"x": 82.74294117647058, "y": 103.25823529411765, "rotation": -58, "width": 275.29411764705884, "height": 258.8235294117647, "path": "beast-12.back"}}, + "ear-left": {"ear-left": {"x": -25.576470588235296, "y": -78.08411764705883, "rotation": -90, "width": 122.3529411764706, "height": 110.58823529411765, "path": "beast-12.ear-left"}}, + "ear-right": {"ear-right": {"x": -25.832941176470587, "y": 56.02529411764706, "rotation": -93, "width": 84.70588235294117, "height": 103.52941176470588, "path": "beast-12.ear-right"}}, + "eyes": { + "eyes": {"x": 25.62, "y": 19.83, "width": 283, "height": 94, "path": "beast-12.eyes"}, + "eyes-angry": {"x": 25.62, "y": 16.33, "width": 283, "height": 79, "path": "beast-12.eyes-angry"}, + "eyes-happy": {"x": 25.62, "y": 28.33, "width": 283, "height": 109, "path": "beast-12.eyes-happy"}, + "eyes-shut": {"x": 25.62, "y": 20.83, "width": 283, "height": 92, "path": "beast-12.eyes-shut"} + }, + "horn": {"horn": {"x": 92.48117647058824, "y": -37.199411764705886, "rotation": -90, "width": 254.11764705882354, "height": 167.05882352941177, "path": "beast-12.horn"}}, + "mouth": { + "mouth": {"x": 12.62, "y": 46.83, "width": 121, "height": 106, "path": "beast-12.mouth"}, + "mouth-bite": {"x": 33.12, "y": 41.83, "width": 278, "height": 116, "path": "beast-12.mouth-bite"}, + "mouth-open": {"x": 14.12, "y": 6.33, "width": 124, "height": 189, "path": "beast-12.mouth-open"}, + "mouth-smile": {"x": 13.62, "y": 48.83, "width": 161, "height": 104, "path": "beast-12.mouth-smile"} + }, + "tail": {"tail": {"x": 118.71058823529411, "y": 22.877058823529406, "rotation": 12, "width": 367.05882352941177, "height": 244.7058823529412, "path": "beast-12.tail"}} + } + } + ], + "events": {"hit": {}, "hit-buff": {}, "jump": {}, "start-attack": {}}, + "keyAnimations": { + "activity/appear": "1023093953", + "activity/bath": "3305387968", + "attack/ranged/cast-fly": "4180526371", + "attack/ranged/cast-high": "164191126", + "attack/ranged/cast-low": "198813017", + "attack/ranged/cast-multi": "151119", + "attack/ranged/cast-tail": "1843465463", + "activity/eat-bite": "1137807767", + "activity/eat-chew": "1988236421", + "activity/entrance": "3768378365", + "defense/evade": "1735454995", + "activity/evolve": "649307630", + "battle/get-buff": "1455190363", + "battle/get-debuff": "606904312", + "defense/hit-by-normal": "2045974966", + "defense/hit-by-normal-crit": "2130010601", + "defense/hit-by-normal-dramatic": "3823092125", + "defense/hit-by-ranged-attack": "2224561612", + "defense/hit-with-shield": "390714790", + "attack/melee/horn-gore": "1327954218", + "attack/melee/mouth-bite": "2237748264", + "action/move-back": "3766271173", + "action/move-forward": "2945160014", + "attack/melee/multi-attack": "905926802", + "action/idle/normal": "1659336865", + "attack/melee/normal-attack": "3305373483", + "activity/prepare": "405864717", + "action/idle/random-01": "554401889", + "action/idle/random-02": "1001093024", + "action/idle/random-03": "2021333900", + "action/idle/random-04": "1003789695", + "action/idle/random-05": "2745614147", + "action/run": "1438840721", + "draft/run-origin": "3577885069", + "attack/melee/shrimp": "3833448733", + "activity/sleep": "100562494", + "attack/melee/tail-multi-slap": "3317139533", + "attack/melee/tail-roll": "3108617565", + "attack/melee/tail-smash": "519942130", + "attack/melee/tail-thrash": "628713175", + "activity/victory-pose-back-flip": "2227634241" + } + }, + "body-fuzzy": { + "bones": [ + {"name": "@root"}, {"name": "@pivot-main", "parent": "@root"}, {"name": "@pivot-back", "parent": "@pivot-main", "x": 205, "y": 180, "color": "ff0101ff"}, + {"name": "@pivot-center", "parent": "@pivot-back", "x": -215.11, "y": -5.25, "color": "ff0101ff"}, + {"name": "@axie", "parent": "@pivot-center", "length": 213.28, "rotation": 179.04, "x": 196.39, "y": 5.16}, {"name": "@back", "parent": "@axie", "rotation": -179.04, "x": 37.63, "y": -198.19}, + {"name": "@body", "parent": "@axie", "length": 226.28, "rotation": -8.35, "x": 224.58, "y": -0.53}, {"name": "@ear-left", "parent": "@axie", "rotation": -179.04, "x": 112.7, "y": -203.23}, + {"name": "@ear-right", "parent": "@axie", "rotation": -179.04, "x": 405.28, "y": -235.33}, {"name": "@eyes", "parent": "@axie", "rotation": -179.04, "x": 384.24, "y": -113.67}, + {"name": "@horn", "parent": "@axie", "rotation": -179.04, "x": 327.92, "y": -214.63}, + {"name": "@leg-back-left", "parent": "@axie", "length": 76.4, "rotation": 100.96, "x": -15.3, "y": 102.56, "transform": "noScale"}, + {"name": "@leg-front-left", "parent": "@axie", "length": 51.19, "rotation": 93.86, "x": 134.77, "y": 149.55, "transform": "noScale"}, + {"name": "@leg-front-right", "parent": "@axie", "length": 74.83, "rotation": 83.2, "x": 382.95, "y": 121.78, "transform": "noScale"}, + {"name": "@mouth", "parent": "@axie", "rotation": -179.04, "x": 382.23, "y": 6.31}, + {"name": "body-pattern", "parent": "@body", "rotation": -170.69, "x": -267.21, "y": -49.4, "transform": "noScale"}, {"name": "@shadow", "parent": "@root", "color": "e6d713ff"}, + {"name": "@tail", "parent": "@axie", "rotation": -179.04, "x": -11.76, "y": 61.72}, {"name": "leg-front-right-IK", "parent": "@pivot-main", "x": -195.99, "y": -10.21, "color": "ff3f00ff"}, + {"name": "leg-front-left-IK", "parent": "@pivot-main", "x": 42.3, "y": -18.42, "color": "ff3f00ff"}, + {"name": "leg-back-left-IK", "parent": "@pivot-main", "x": 208.57, "y": 1.35, "color": "ff3f00ff"}, {"name": "@ball", "parent": "@root", "y": 191, "color": "f3981bff"}, + {"name": "ball", "parent": "@ball", "y": -191, "color": "f4a729ff"}, + {"name": "body-fur-01", "parent": "@body", "length": 82.06, "rotation": -137.67, "x": -226.17, "y": -153.01, "color": "ff6700ff"}, + {"name": "body-fur-02", "parent": "body-fur-01", "length": 61.3, "rotation": 11.98, "x": 82.06, "color": "ff6700ff"}, + {"name": "body-fur-03", "parent": "@body", "length": 82.06, "rotation": -131.46, "x": -88.75, "y": -282.29, "color": "ff6700ff"}, + {"name": "body-fur-04", "parent": "body-fur-03", "length": 61.3, "rotation": 11.98, "x": 82.06, "color": "ff6700ff"}, + {"name": "body-fur-05", "parent": "@body", "length": 82.06, "rotation": -100.2, "x": 120.04, "y": -275.86, "color": "ff6700ff"}, + {"name": "body-fur-06", "parent": "body-fur-05", "length": 61.3, "rotation": -10.39, "x": 82.06, "color": "ff6700ff"}, + {"name": "body-fur-07", "parent": "@body", "length": 82.06, "rotation": -72.42, "x": 256.68, "y": -198.34, "color": "ff6700ff"}, + {"name": "body-fur-08", "parent": "@body", "length": 82.06, "rotation": -11.73, "x": 246.13, "y": -1.85, "color": "ff6700ff"}, + {"name": "body-fur-09", "parent": "body-fur-08", "length": 51.31, "rotation": -10.39, "x": 82.06, "color": "ff6700ff"}, + {"name": "body-fur-10", "parent": "@body", "length": 82.06, "rotation": 36.56, "x": 201.44, "y": 104.13, "color": "ff6700ff"}, + {"name": "body-fur-11", "parent": "@body", "length": 82.06, "rotation": 94.86, "x": 30.05, "y": 109.99, "color": "ff6700ff"}, + {"name": "body-fur-12", "parent": "@body", "length": 82.06, "rotation": 114.95, "x": -129.8, "y": 83.31, "color": "ff6700ff"}, + {"name": "body-fur-13", "parent": "@body", "length": 82.06, "rotation": 140.7, "x": -246.68, "y": -25.38, "color": "ff6700ff"}, + {"name": "body-fur-14", "parent": "body-fur-13", "length": 51.31, "rotation": 6.53, "x": 82.06, "color": "ff6700ff"}, + {"name": "body-fur-15", "parent": "@body", "length": 82.06, "rotation": 139.64, "x": -122.87, "y": -27.02, "color": "ff6700ff"}, + {"name": "body-fur-16", "parent": "@body", "length": 82.06, "rotation": 176.82, "x": -146.99, "y": -104.69, "color": "ff6700ff"}, + {"name": "@body-neck", "parent": "@pivot-center", "x": -161.89, "y": -53.75, "color": "ff0101ff"}, + {"name": "@body-ground", "parent": "@pivot-main", "x": 220, "transform": "noRotationOrReflection", "color": "ff0101ff"}, + {"name": "@body-hip", "parent": "@pivot-center", "x": 240.11, "y": 55.25, "color": "ff0101ff"}, + {"name": "@body-air", "parent": "@pivot-back", "x": 63, "y": 365, "transform": "noRotationOrReflection", "color": "ff0101ff"}, + {"name": "@body-cheek", "parent": "@pivot-center", "x": 15.11, "y": 47.25, "color": "ff0101ff"} + ], + "slots": [ + {"name": "shadow", "bone": "@shadow", "attachment": "shadow"}, {"name": "ball", "bone": "ball"}, {"name": "leg-front-right", "bone": "@leg-front-right", "attachment": "leg-front-right"}, + {"name": "leg-back-left", "bone": "@leg-back-left", "attachment": "leg-back-left"}, {"name": "leg-front-left", "bone": "@leg-front-left", "attachment": "leg-front-left"}, + {"name": "body", "bone": "@body", "attachment": "body-fuzzy"}, {"name": "body-pattern", "bone": "body-pattern"}, {"name": "body-hip", "bone": "@body-hip", "attachment": "body-hip"}, + {"name": "body-neck", "bone": "@body-neck", "attachment": "body-neck"}, {"name": "body-ground", "bone": "@body-ground", "attachment": "body-ground"}, + {"name": "body-air", "bone": "@body-air", "attachment": "body-air"}, {"name": "body-cheek", "bone": "@body-cheek", "attachment": "body-cheek"} + ], + "ik": [ + {"name": "leg-back-left-IK", "order": 2, "bones": ["@leg-back-left"], "target": "leg-back-left-IK"}, + {"name": "leg-front-left-IK", "order": 1, "bones": ["@leg-front-left"], "target": "leg-front-left-IK"}, + {"name": "leg-front-right-IK", "bones": ["@leg-front-right"], "target": "leg-front-right-IK"} + ], + "skins": [ + { + "name": "default", + "attachments": { + "ball": {"ball": {"y": 186.0, "width": 392.94117647058823, "height": 400.0, "path": "body-normal.ball", "x": 0.029411764705884025}}, + "body": { + "body-fuzzy": { + "type": "mesh", + "uvs": [ + 0.79925, 0.08668, 0.73505, 0.08609, 0.67673, 0.0849, 0.63214, 0.09498, 0.61792, 0.06889, 0.55569, 0.07957, 0.51991, 0.09558, 0.48748, 0.03509, 0.46298, 0, 0.39535, 0.01138, 0.33017, + 0.06178, 0.27724, 0.12878, 0.25029, 0.18689, 0.17041, 0.15961, 0.13365, 0.2195, 0.10425, 0.30133, 0.07779, 0.30192, 0.06086, 0.38893, 0.06772, 0.46127, 0.02655, 0.49032, 0, 0.52353, + 0.00548, 0.60259, 0.02312, 0.65833, 0.04762, 0.7028, 0.03145, 0.74312, 0.06968, 0.80186, 0.07556, 0.86293, 0.12407, 0.91096, 0.19905, 0.94061, 0.22797, 0.97204, 0.28766, 0.97204, + 0.31951, 0.96255, 0.37048, 0.98805, 0.42512, 0.99991, 0.48785, 0.9833, 0.54862, 0.99635, 0.62458, 0.98271, 0.67456, 0.99398, 0.73582, 0.96433, 0.82354, 0.95899, 0.84952, 0.91689, + 0.89803, 0.89673, 0.94802, 0.86768, 0.95635, 0.79297, 1, 0.72359, 0.99605, 0.67912, 0.9789, 0.62042, 0.96321, 0.57891, 0.98485, 0.50643, 0.99024, 0.42282, 0.96917, 0.40919, 0.9672, + 0.34277, 0.9133, 0.30636, 0.86723, 0.27257, 0.81234, 0.25478, 0.81766, 0.18763, 0.81275, 0.12122, 0.4548, 0.03508, 0.40843, 0.05503, 0.35227, 0.09742, 0.30178, 0.16849, 0.26262, + 0.23332, 0.18997, 0.20028, 0.16422, 0.24081, 0.14149, 0.31326, 0.12532, 0.40158, 0.09865, 0.34499, 0.09218, 0.39651, 0.09638, 0.47932, 0.05886, 0.5071, 0.03199, 0.53662, 0.03648, + 0.58683, 0.05345, 0.64032, 0.07555, 0.68139, 0.10634, 0.71195, 0.06213, 0.73822, 0.0836, 0.76766, 0.11259, 0.79166, 0.10572, 0.84289, 0.1371, 0.87177, 0.17797, 0.89315, 0.20853, + 0.90028, 0.23247, 0.86909, 0.23394, 0.923, 0.26229, 0.93681, 0.32309, 0.91711, 0.36238, 0.9462, 0.41461, 0.96465, 0.47332, 0.95178, 0.50273, 0.94753, 0.53894, 0.96665, 0.57727, + 0.96667, 0.609, 0.9449, 0.64303, 0.92194, 0.63092, 0.95123, 0.65873, 0.9631, 0.69683, 0.94503, 0.7269, 0.92588, 0.77027, 0.92894, 0.80573, 0.92626, 0.8317, 0.87859, 0.87733, 0.86118, + 0.91629, 0.84122, 0.92148, 0.77568, 0.95403, 0.74204, 0.98319, 0.70388, 0.95817, 0.65649, 0.9279, 0.60041, 0.87186, 0.6418, 0.91096, 0.58898, 0.93963, 0.53172, 0.96076, 0.45768, + 0.93053, 0.47399, 0.93963, 0.41493, 0.94255, 0.36513, 0.90277, 0.34427, 0.86037, 0.31911, 0.80717, 0.29539, 0.75277, 0.30991, 0.77237, 0.2678, 0.78437, 0.20731, 0.78331, 0.12495, + 0.73877, 0.11908, 0.67834, 0.12281, 0.63291, 0.14202, 0.60248, 0.17938, 0.60865, 0.13188, 0.60689, 0.09826, 0.56818, 0.11437, 0.53512, 0.14129, 0.50556, 0.16168, 0.48585, 0.11668, + 0.46742, 0.06937, 0.77927, 0.446, 0.74755, 0.49242, 0.81616, 0.49867, 0.8796, 0.52723, 0.84124, 0.58257, 0.77779, 0.6272, 0.81689, 0.71022, 0.7896, 0.75574, 0.72394, 0.77787, + 0.67119, 0.78042, 0.67401, 0.84935, 0.62196, 0.82978, 0.57484, 0.8051, 0.52069, 0.86042, 0.46301, 0.90041, 0.40928, 0.88057, 0.36603, 0.84177, 0.32651, 0.88688, 0.27058, 0.84719, + 0.24001, 0.8138, 0.18781, 0.83546, 0.13039, 0.82734, 0.73078, 0.50676, 0.73021, 0.56921, 0.67573, 0.58864, 0.6641, 0.67635, 0.65966, 0.75618, 0.6013, 0.72087, 0.7686, 0.78848, + 0.77678, 0.83796, 0.71449, 0.85242, 0.89935, 0.62149, 0.93157, 0.67625, 0.87213, 0.70466 + ], + "triangles": [ + 134, 155, 118, 155, 157, 125, 156, 157, 155, 156, 155, 134, 135, 138, 156, 157, 61, 130, 157, 156, 138, 158, 157, 138, 158, 160, 157, 159, 160, 158, 141, 158, 138, 159, 158, 141, + 142, 159, 141, 161, 141, 140, 61, 157, 160, 61, 160, 149, 159, 144, 160, 144, 159, 142, 162, 161, 140, 163, 143, 142, 141, 163, 142, 163, 141, 161, 163, 161, 162, 100, 162, 140, 162, + 98, 163, 107, 109, 110, 47, 107, 110, 107, 47, 46, 109, 108, 137, 164, 109, 107, 164, 108, 109, 106, 107, 46, 165, 107, 106, 164, 107, 165, 106, 46, 45, 105, 106, 45, 165, 166, 108, + 165, 108, 164, 108, 139, 138, 108, 138, 137, 139, 108, 166, 105, 45, 44, 105, 104, 165, 105, 165, 106, 140, 138, 139, 103, 166, 165, 103, 165, 104, 141, 138, 140, 140, 139, 166, 101, + 140, 166, 104, 105, 44, 43, 104, 44, 103, 104, 43, 103, 101, 166, 102, 103, 43, 102, 101, 103, 42, 102, 43, 101, 100, 140, 41, 101, 102, 41, 102, 42, 40, 100, 101, 40, 101, 41, 99, + 162, 100, 99, 100, 40, 39, 99, 40, 144, 145, 160, 144, 142, 143, 145, 146, 160, 93, 144, 143, 98, 97, 163, 99, 98, 162, 144, 146, 145, 92, 144, 93, 92, 146, 144, 96, 143, 163, 96, + 163, 97, 93, 143, 96, 94, 92, 93, 95, 93, 96, 94, 93, 95, 38, 97, 98, 96, 97, 38, 39, 38, 98, 39, 98, 99, 146, 91, 90, 92, 91, 146, 36, 92, 94, 36, 94, 95, 91, 92, 36, 37, 95, 96, + 36, 95, 37, 37, 96, 38, 35, 90, 91, 35, 34, 90, 35, 91, 36, 149, 152, 65, 160, 146, 149, 148, 149, 146, 150, 151, 149, 147, 148, 146, 150, 84, 151, 150, 85, 84, 148, 86, 150, 148, + 150, 149, 85, 150, 86, 89, 147, 146, 90, 89, 146, 88, 147, 89, 85, 30, 84, 31, 85, 86, 87, 148, 147, 87, 147, 88, 86, 148, 87, 31, 30, 85, 34, 88, 89, 32, 86, 87, 31, 86, 32, 34, 89, + 90, 33, 87, 88, 33, 88, 34, 32, 87, 33, 152, 74, 68, 24, 23, 75, 76, 75, 74, 74, 153, 77, 76, 74, 77, 25, 75, 76, 25, 76, 77, 24, 75, 25, 153, 154, 77, 74, 152, 153, 78, 25, 77, 78, + 77, 154, 151, 152, 149, 26, 25, 78, 82, 153, 152, 82, 152, 151, 79, 154, 153, 78, 154, 79, 80, 79, 153, 81, 80, 153, 82, 81, 153, 27, 78, 79, 27, 79, 80, 26, 78, 27, 84, 83, 82, 151, + 84, 82, 81, 82, 83, 28, 80, 81, 28, 81, 83, 27, 80, 28, 29, 28, 83, 29, 83, 84, 29, 84, 30, 73, 72, 68, 23, 22, 72, 23, 72, 73, 73, 68, 74, 75, 23, 73, 75, 73, 74, 69, 19, 18, 69, + 18, 68, 70, 19, 69, 20, 19, 70, 71, 70, 69, 21, 20, 70, 21, 70, 71, 68, 72, 71, 21, 71, 72, 22, 21, 72, 69, 68, 71, 62, 13, 12, 14, 13, 62, 61, 12, 60, 62, 12, 61, 63, 14, 62, 15, + 14, 63, 64, 15, 63, 66, 16, 15, 66, 15, 64, 17, 16, 66, 67, 17, 66, 65, 66, 64, 67, 66, 65, 63, 62, 61, 18, 17, 67, 68, 67, 65, 18, 67, 68, 61, 64, 63, 61, 65, 64, 65, 152, 68, 65, + 61, 149, 11, 10, 59, 60, 11, 59, 12, 11, 60, 130, 60, 59, 130, 61, 60, 57, 9, 8, 57, 8, 7, 58, 9, 57, 10, 9, 58, 132, 57, 7, 132, 7, 6, 59, 10, 58, 131, 132, 6, 131, 6, 129, 130, + 131, 129, 58, 57, 132, 131, 59, 58, 131, 58, 132, 130, 59, 131, 127, 5, 4, 127, 4, 3, 128, 5, 127, 3, 2, 123, 126, 127, 3, 128, 127, 126, 128, 129, 6, 128, 6, 5, 124, 3, 123, 126, 3, + 124, 125, 128, 126, 125, 126, 124, 129, 128, 125, 117, 119, 54, 120, 119, 123, 118, 119, 117, 119, 118, 123, 118, 124, 123, 118, 125, 124, 118, 155, 125, 129, 125, 130, 130, 125, + 157, 121, 122, 1, 123, 2, 1, 123, 1, 122, 0, 121, 1, 121, 0, 56, 121, 56, 55, 120, 121, 55, 54, 120, 55, 122, 120, 123, 120, 122, 121, 119, 120, 54, 133, 118, 117, 133, 117, 116, + 134, 118, 133, 115, 135, 133, 134, 133, 135, 136, 135, 112, 137, 135, 136, 109, 136, 110, 137, 136, 109, 135, 156, 134, 138, 135, 137, 117, 54, 53, 116, 117, 53, 116, 53, 52, 115, + 116, 52, 114, 115, 52, 51, 114, 52, 114, 51, 50, 113, 115, 114, 113, 114, 50, 111, 113, 50, 111, 50, 49, 113, 135, 115, 112, 113, 111, 115, 133, 116, 112, 135, 113, 48, 111, 49, 111, + 48, 110, 111, 110, 112, 136, 112, 110, 47, 110, 48 + ], + "vertices": [ + 8, 24, 95.7, 204.73, 0.00971, 23, 133.19, 220.14, 0.01193, 26, 70.05, 1.35, 0.78718, 25, 150.31, 15.86, 0.17645, 28, 144.82, -246.73, 0.00915, 27, 180, -268.8, 0.00556, 32, -607, + -184.26, 0, 38, 12.65, 301.91, 2e-05, 7, 24, 61.69, 239.27, 0.00126, 23, 92.75, 246.86, 0.00159, 26, 39.98, 39.36, 0.64336, 25, 113, 46.8, 0.31034, 28, 120.98, -204.52, 0.02586, 27, + 164.17, -222.99, 0.0176, 32, -564.08, -206.78, 0, 7, 24, 31.08, 270.93, 6e-05, 23, 56.24, 271.48, 6e-05, 26, 12.97, 74.14, 0.42066, 25, 79.36, 75.22, 0.48089, 28, 99.67, -165.98, + 0.05677, 27, 150.16, -181.24, 0.04157, 32, -525.27, -227.6, 0, 7, 26, -13.02, 96.45, 0.21555, 25, 49.3, 91.65, 0.60002, 28, 77.44, -139.93, 0.1065, 27, 132.99, -151.6, 0.07792, 32, + -492.46, -237.42, 0, 37, -281.97, 223.49, 0, 38, -109.41, 269.57, 1e-05, 7, 26, -7.06, 115.01, 0.08571, 25, 51.29, 111.04, 0.60256, 28, 86.2, -122.51, 0.19561, 27, 144.75, -136.05, + 0.1161, 32, -490.38, -256.81, 0, 37, -301.33, 225.84, 0, 38, -123.41, 283.14, 2e-05, 7, 26, -41.68, 147.46, 0.02586, 25, 10.68, 135.6, 0.49733, 28, 57.01, -85.09, 0.339, 27, 122.78, + -93.98, 0.13776, 32, -445.55, -272.4, 0, 37, -326.66, 185.71, 1e-05, 38, -167.85, 266.48, 4e-05, 9, 26, -66.39, 162.26, 0.0066, 25, -16.56, 144.95, 0.3312, 28, 34.89, -66.66, + 0.53336, 27, 104.35, -71.86, 0.12876, 29, 91.49, -265.87, 2e-05, 31, -143.06, -433.07, 0, 32, -416.96, -275.89, 0, 37, -336.53, 158.66, 1e-05, 38, -192.06, 250.88, 5e-05, 9, 26, + -52.31, 204.98, 0.00146, 25, -11.65, 189.67, 0.1744, 28, 55.4, -26.62, 0.69694, 27, 131.75, -36.18, 0.12569, 29, 132.36, -247.07, 0.00147, 31, -102.49, -452.5, 0, 32, -412.48, + -320.65, 0, 37, -381.15, 164.42, 1e-05, 38, -224.12, 282.43, 4e-05, 9, 26, -46.83, 233.12, 0.00011, 25, -12.13, 218.33, 0.06646, 28, 65.16, 0.33, 0.74393, 27, 146.21, -11.43, + 0.17703, 29, 156.69, -231.91, 0.01245, 31, -75.28, -461.54, 0, 32, -406.06, -348.59, 0, 37, -409.81, 164.49, 0, 38, -246.92, 299.81, 2e-05, 9, 25, -56.17, 245.13, 0.01644, 28, 33.56, + 41.06, 0.61975, 27, 122.47, 34.33, 0.30879, 29, 157.01, -180.36, 0.05501, 31, -35.42, -428.85, 0, 32, -357.41, -365.66, 0, 33, -519.26, -58.37, 0, 37, -437.45, 120.98, 0, 38, + -295.24, 281.84, 1e-05, 8, 25, -114.18, 251.89, 0.00137, 28, -18.23, 68.05, 0.39988, 27, 76.4, 70.22, 0.4368, 29, 132.96, -127.14, 0.16193, 31, -9.83, -376.36, 0, 32, -299.26, + -360.23, 0, 33, -484.09, -104.98, 1e-05, 37, -445.33, 63.11, 1e-05, 8, 28, -74.4, 81.85, 0.18552, 27, 23.64, 93.92, 0.4685, 29, 97.33, -81.58, 0.34584, 31, 2.46, -319.84, 0.0001, 30, + 26.79, -315.04, 1e-05, 32, -244.6, -341.35, 0, 33, -439.3, -141.58, 1e-05, 37, -439.32, 5.59, 1e-05, 8, 28, -115.97, 81.42, 0.05888, 27, -17.33, 101, 0.36321, 29, 64.37, -56.23, + 0.57298, 31, 0.91, -278.29, 0.00242, 30, 32.76, -273.89, 0.00247, 32, -209.9, -318.44, 0, 33, -401.57, -159.05, 1e-05, 37, -424.85, -33.39, 2e-05, 8, 28, -131.28, 142.19, 0.00913, + 27, -21.43, 163.53, 0.20295, 29, 89.88, 1.01, 0.76727, 31, 61.25, -261.36, 0.00986, 30, 95.16, -268.12, 0.01076, 32, -164.08, -361.18, 0, 33, -413.85, -220.5, 1e-05, 37, -476.86, + -68.35, 1e-05, 8, 28, -177.51, 147.62, 0.00038, 27, -65.92, 177.21, 0.07339, 29, 56.89, 33.84, 0.86545, 31, 65.44, -215, 0.0283, 30, 107.64, -223.28, 0.03247, 32, -122.3, -340.66, 0, + 33, -374.44, -245.26, 1e-05, 37, -466.34, -113.69, 1e-05, 8, 27, -121.46, 181.09, 0.01494, 29, 9.56, 63.15, 0.84681, 31, 57.75, -159.86, 0.06666, 30, 110.03, -167.65, 0.07157, 32, + -79.18, -305.44, 0, 33, -321.81, -263.43, 0, 37, -441.79, -163.66, 0, 38, -470.68, 57.66, 0, 6, 29, 12.06, 82.98, 0.73065, 31, 74.6, -149.12, 0.14893, 30, 128.54, -160.13, 0.12041, + 32, -61.25, -314.25, 0, 37, -454.44, -179.13, 0, 38, -490.11, 52.97, 0, 6, 29, -39.83, 103.44, 0.54998, 31, 57.2, -96.13, 0.29388, 30, 120.98, -104.87, 0.15613, 32, -25.03, -271.84, + 1e-05, 37, -421.32, -224.02, 0, 38, -490.85, -2.8, 0, 6, 29, -85.24, 104.8, 0.34873, 31, 29.24, -60.32, 0.48985, 30, 99.94, -64.6, 0.16058, 32, -8.97, -229.34, 0.00083, 37, -383.56, + -249.29, 1e-05, 38, -476.03, -45.75, 0, 6, 29, -98.72, 138.16, 0.17649, 31, 46.3, -28.64, 0.65763, 30, 122.43, -36.52, 0.15885, 32, 26.97, -227.45, 0.00702, 37, -389.86, -284.71, 0, + 38, -502.45, -70.17, 0, 6, 29, -116.34, 160.98, 0.066, 31, 52.6, -0.51, 0.70665, 30, 133.7, -9.99, 0.19547, 32, 54.28, -218.21, 0.03188, 37, -387.04, -313.4, 0, 38, -517.54, -94.74, + 0, 6, 29, -165.76, 163.98, 0.01616, 31, 23.34, 39.43, 0.59766, 30, 112.13, 34.58, 0.29338, 32, 73.19, -172.45, 0.0928, 37, -346.75, -342.19, 0, 38, -502.83, -142.01, 0, 4, 29, + -202.09, 155.8, 0.0019, 31, -6.16, 62.16, 0.39533, 30, 87.21, 62.25, 0.39626, 32, 77.27, -135.43, 0.20651, 4, 29, -232.22, 141.48, 0, 31, -36.42, 76.19, 0.19837, 30, 59.98, 81.51, + 0.43176, 32, 73.53, -102.29, 0.36986, 4, 31, -39.12, 104.03, 0.07361, 30, 62.34, 109.38, 0.36358, 32, 95.91, -85.52, 0.5622, 33, -42.69, -296.81, 0.00061, 4, 31, -82.86, 120.25, + 0.01887, 30, 22.24, 133.22, 0.23618, 32, 87.03, -39.72, 0.73598, 33, -8.39, -265.19, 0.00897, 4, 31, -106.53, 150.45, 0.00332, 30, 4.41, 167.2, 0.11379, 32, 100.53, -3.8, 0.84635, + 33, 29.26, -257.8, 0.03654, 4, 31, -153.41, 156.92, 0.00042, 30, -40.54, 182.02, 0.03829, 32, 81.69, 39.61, 0.86092, 33, 56.29, -218.96, 0.10037, 4, 31, -211.36, 143.18, 0, 30, + -100.01, 178.95, 0.00742, 32, 39.83, 81.98, 0.78823, 33, 70.34, -161.08, 0.20435, 3, 30, -127.43, 189.42, 0.00025, 32, 29.4, 109.41, 0.65089, 33, 88.19, -137.79, 0.34887, 3, 32, + -10.66, 130.04, 0.48385, 33, 84.69, -92.86, 0.51548, 34, 4.37, -272.49, 0.00067, 3, 32, -34.75, 135.79, 0.31129, 33, 76.92, -69.35, 0.67606, 34, 5.15, -247.74, 0.01265, 3, 32, + -61.68, 167.55, 0.16632, 33, 89.8, -29.75, 0.77445, 34, 30.85, -214.97, 0.05923, 3, 32, -94.96, 193.02, 0.06699, 33, 93.97, 11.96, 0.75983, 34, 49.1, -177.25, 0.17318, 6, 32, + -141.81, 205.5, 0.01856, 33, 79.96, 58.37, 0.62178, 34, 51.9, -128.85, 0.35924, 36, -145.92, -281.97, 0.00016, 35, -30.84, -296.74, 6e-05, 37, 70.06, -218.33, 0.0002, 6, 32, -178.87, + 233.74, 0.00228, 33, 84.51, 104.74, 0.41192, 34, 72.11, -86.86, 0.573, 36, -106.41, -257.26, 0.00469, 35, 5.6, -267.7, 0.00219, 37, 105.96, -188.63, 0.00591, 6, 32, -233.76, 252.43, + 0, 33, 71.57, 161.26, 0.21372, 34, 79.38, -29.34, 0.72267, 36, -69.55, -212.52, 0.02825, 35, 37.14, -219.05, 0.01155, 37, 136.59, -139.4, 0.02381, 6, 32, -264.09, 275.96, 0, 33, + 75.65, 199.43, 0.08108, 34, 96.32, 5.11, 0.73604, 36, -36.82, -192.45, 0.09153, 35, 67.37, -195.38, 0.03327, 37, 166.38, -115.19, 0.05808, 6, 32, -313.68, 280.69, 0, 33, 53.62, + 244.1, 0.02047, 34, 90.98, 54.63, 0.60764, 36, -14.89, -147.72, 0.21611, 35, 84.07, -148.46, 0.0619, 37, 182.21, -67.96, 0.09389, 6, 32, -374.08, 308.06, 0, 33, 45.15, 309.87, + 0.00224, 34, 105.63, 119.31, 0.40946, 36, 32.04, -100.87, 0.3951, 35, 125.37, -96.57, 0.08202, 37, 222.54, -15.32, 0.11118, 8, 24, -243.78, -188.42, 0, 23, -117.32, -234.91, 0.00057, + 32, -403.54, 293.68, 0, 34, 85.63, 145.27, 0.22343, 36, 28.99, -68.23, 0.59218, 35, 118.62, -64.49, 0.08678, 37, 215.21, 16.64, 0.09618, 38, 161.75, -195.67, 0.00086, 8, 24, -208.99, + -205.43, 0.0002, 23, -79.75, -244.32, 0.00419, 32, -441.87, 299.27, 0, 34, 83.39, 183.94, 0.09945, 36, 47.75, -34.35, 0.73061, 35, 133.41, -28.69, 0.09808, 37, 229.33, 52.7, 0.0616, + 38, 194.79, -175.47, 0.00588, 8, 24, -169.48, -219.29, 0.00108, 23, -38.23, -249.69, 0.01454, 32, -483.72, 300.43, 0, 34, 76.11, 225.17, 0.03443, 36, 63.62, 4.4, 0.75333, 35, 144.76, + 11.61, 0.14964, 37, 239.93, 93.2, 0.02748, 38, 227.72, -149.6, 0.0195, 8, 24, -132.07, -190.78, 0.00455, 23, -7.55, -214.03, 0.03703, 32, -510.66, 261.86, 0, 34, 32.91, 243.8, + 0.00904, 36, 37.05, 43.22, 0.64896, 35, 113.95, 47.16, 0.2467, 37, 208.47, 128.17, 0.008, 38, 223.78, -102.73, 0.04571, 8, 24, -78.16, -183.47, 0.01537, 23, 43.67, -195.69, 0.0758, + 32, -559.78, 238.47, 0, 34, 0.11, 287.21, 0.00109, 36, 32.5, 97.44, 0.47833, 35, 103.26, 100.5, 0.34684, 37, 196.8, 181.31, 0.00107, 38, 246.59, -53.33, 0.0815, 6, 24, -60.64, + -161.73, 0.05142, 23, 56.29, -170.8, 0.13092, 32, -569.83, 212.43, 0, 36, 11.69, 116.04, 0.30799, 35, 80.47, 116.61, 0.39322, 38, 237.67, -26.89, 0.11645, 6, 24, -43.9, -126.68, + 0.14088, 23, 65.4, -133.03, 0.18479, 32, -575.09, 173.93, 0, 36, -22.47, 134.55, 0.18089, 35, 44.43, 131.12, 0.35944, 38, 217.11, 6.08, 0.134, 6, 24, -33.96, -99.99, 0.30402, 23, + 69.59, -104.86, 0.21094, 32, -576.42, 145.49, 0, 36, -48.61, 145.84, 0.09567, 35, 17.17, 139.36, 0.26581, 38, 199.95, 28.8, 0.12356, 7, 24, 9.57, -79.56, 0.52122, 23, 107.93, -75.84, + 0.18706, 25, 93.18, -275.65, 0, 32, -611.65, 112.76, 0, 36, -66.8, 190.36, 0.04429, 35, -5.96, 181.52, 0.15769, 38, 206.11, 76.5, 0.08973, 8, 24, 49.34, -45.55, 0.72591, 23, 139.78, + -34.32, 0.13196, 26, -3.1, -242.45, 0.00031, 25, 129.33, -237.81, 0.00322, 32, -639.16, 68.24, 0, 36, -98.74, 231.81, 0.01587, 35, -42.41, 219.07, 0.07295, 38, 198.8, 128.31, + 0.04977, 8, 24, 44.11, -28.28, 0.84445, 23, 131.07, -18.51, 0.08449, 26, -6.44, -224.72, 0.00233, 25, 122.39, -221.16, 0.01862, 32, -628.91, 53.39, 0, 36, -116.25, 227.46, 0.00426, + 35, -59.31, 212.76, 0.02545, 38, 181.43, 133.18, 0.0204, 8, 24, 72.37, 2.07, 0.82949, 23, 152.42, 17.04, 0.08165, 26, 24.94, -197.6, 0.01308, 25, 147.45, -188.13, 0.06272, 32, + -646.57, 15.87, 0, 36, -145.11, 257.23, 0.00073, 35, -91.38, 239.05, 0.00641, 38, 171.02, 173.32, 0.00592, 8, 24, 59.65, 46.92, 0.69378, 23, 130.68, 58.27, 0.11142, 26, 17.15, + -151.64, 0.06016, 25, 130.3, -144.79, 0.13187, 32, -620.79, -22.96, 0, 36, -190.55, 246.82, 0.0001, 35, -135.33, 223.54, 0.00135, 38, 126.37, 186.7, 0.00131, 8, 24, 49.97, 86.42, + 0.48624, 23, 113.01, 94.91, 0.13755, 26, 11.8, -111.32, 0.17632, 25, 116.7, -106.45, 0.19923, 32, -599.52, -57.64, 0, 36, -230.5, 239.17, 2e-05, 35, -174.15, 211.4, 0.00027, 38, + 87.85, 199.77, 0.00038, 6, 24, 28.52, 123.57, 0.28027, 23, 84.31, 126.8, 0.1269, 26, -5.51, -72.07, 0.37749, 25, 91.62, -71.64, 0.21518, 32, -567.76, -86.48, 0, 38, 44.99, 201.64, + 0.00016, 8, 24, 60.98, 150.36, 0.12681, 23, 110.51, 159.74, 0.08564, 26, 29.66, -48.95, 0.6089, 25, 121.23, -41.73, 0.17825, 28, 97.13, -290.17, 0.00022, 27, 125.26, -302.93, 5e-05, + 32, -590.51, -121.89, 0, 38, 39.84, 243.41, 0.00014, 8, 24, 87.67, 182.28, 0.04286, 23, 129.99, 196.51, 0.03997, 26, 59.64, -20.1, 0.77462, 25, 144.57, -7.29, 0.13949, 28, 131.21, + -266.31, 0.00204, 27, 163.09, -285.61, 0.00095, 32, -606.2, -160.43, 0, 38, 27.27, 283.07, 7e-05, 10, 25, -30.76, 205.28, 0.04567, 28, 43.11, -5.23, 0.71352, 27, 123.52, -12.92, + 0.22759, 29, 135.91, -222.65, 0.01281, 31, -81.43, -439.64, 0, 30, -77.33, -417.74, 3e-05, 32, -390.54, -331.95, 0, 33, -508, -12.47, 3e-05, 37, -397.12, 145.62, 8e-05, 38, -248.21, + 277.1, 0.00029, 10, 25, -65.75, 217.78, 0.01355, 28, 14.87, 18.92, 0.58674, 27, 100.09, 15.93, 0.34296, 29, 128.63, -186.21, 0.05644, 31, -58.05, -410.76, 0, 30, -49.13, -393.56, + 0.00016, 32, -353.72, -336.92, 0, 33, -492.87, -46.4, 4e-05, 37, -410.29, 110.87, 5e-05, 38, -279.7, 257.38, 5e-05, 10, 25, -115.33, 224.11, 0.00235, 28, -29.2, 42.49, 0.36938, 27, + 61, 47.06, 0.46285, 29, 108.55, -140.45, 0.16462, 31, -35.67, -366.08, 0, 30, -19.05, -353.64, 0.00046, 32, -303.91, -332.81, 0, 33, -463.21, -86.62, 0.00013, 37, -417.57, 61.43, + 0.00014, 38, -315.38, 222.38, 7e-05, 10, 25, -172.9, 213.87, 0.00015, 28, -86.65, 53.44, 0.16403, 27, 6.47, 68.19, 0.4863, 29, 70.14, -96.35, 0.34787, 31, -26.27, -308.36, 6e-05, 30, + 0.61, -298.56, 0.00092, 32, -249.72, -310.84, 0, 33, -416.03, -121.18, 0.00025, 37, -408.45, 3.67, 0.00027, 38, -343.01, 170.84, 0.00015, 9, 28, -136.45, 58.91, 0.04814, 27, -41.54, + 82.55, 0.37291, 29, 34.36, -61.27, 0.5739, 31, -22.14, -258.42, 0.0014, 30, 13.67, -250.19, 0.00288, 32, -204.91, -288.41, 0, 33, -373.4, -147.52, 0.00029, 37, -396.74, -45.05, + 0.00032, 38, -363.12, 124.95, 0.00017, 9, 28, -145.92, 116.73, 0.00569, 27, -40.42, 141.14, 0.20842, 29, 62.65, -9.96, 0.76088, 31, 35.41, -247.41, 0.00839, 30, 72.27, -249.74, + 0.01589, 32, -165.59, -331.86, 0, 33, -389.7, -203.8, 0.00027, 37, -447.96, -73.52, 0.00031, 38, -421.13, 133.21, 0.00016, 9, 28, -177.53, 120.99, 8e-05, 27, -70.75, 151.02, 0.07719, + 29, 40.42, 12.92, 0.85327, 31, 38.81, -215.69, 0.02432, 30, 81.33, -219.15, 0.04456, 32, -136.72, -318.28, 0, 33, -362.97, -221.22, 0.00021, 37, -441.27, -104.71, 0.00024, 38, + -434.65, 104.32, 0.00012, 8, 27, -119.09, 152.1, 0.01752, 29, -1.86, 36.4, 0.83816, 31, 29.88, -168.17, 0.05142, 30, 81.12, -170.8, 0.09232, 32, -100.77, -285.94, 0, 33, -316.57, + -234.82, 0.00021, 37, -417.91, -147.05, 0.00026, 38, -441.62, 56.47, 0.00011, 8, 27, -175.12, 145.21, 0.00134, 29, -54.64, 56.41, 0.76367, 31, 11.56, -114.78, 0.08746, 30, 72.72, + -114.98, 0.14695, 32, -64.68, -242.54, 0, 33, -260.68, -242.71, 0.0002, 37, -383.81, -192.03, 0.00027, 38, -441.63, 0.02, 0.00011, 8, 27, -148.55, 175.97, 0.00051, 29, -16.8, 71.25, + 0.64835, 31, 47.15, -134.41, 0.14727, 30, 104.19, -140.71, 0.20331, 32, -62.95, -283.15, 0, 33, -294.32, -265.52, 0.00019, 37, -423.75, -184.52, 0.00027, 38, -468.92, 30.14, 0.00011, + 8, 27, -180.49, 169.84, 0.00037, 29, -47.91, 80.71, 0.50411, 31, 34.55, -104.43, 0.2534, 30, 97.21, -108.95, 0.2417, 32, -43.89, -256.8, 0, 33, -261.89, -267.9, 0.00012, 37, -402.41, + -209.05, 0.00021, 38, -466.73, -2.3, 8e-05, 8, 27, -228.13, 149.6, 0.00026, 29, -99.5, 85, 0.33463, 31, 4.9, -62, 0.41276, 30, 75.69, -61.86, 0.2516, 32, -23.05, -209.42, 0.00048, + 33, -210.62, -260.72, 7e-05, 37, -360.97, -240.08, 0.00015, 38, -452.46, -52.06, 6e-05, 8, 27, -253.93, 170.51, 0.00016, 29, -112.58, 115.52, 0.17993, 31, 20.03, -32.43, 0.56768, 30, + 95.91, -35.51, 0.24675, 32, 10.07, -206.98, 0.00533, 33, -191.14, -287.62, 3e-05, 37, -366.09, -272.89, 9e-05, 38, -476.37, -75.11, 3e-05, 8, 27, -278.07, 183.49, 8e-05, 29, -127.9, + 138.25, 0.07341, 31, 27.73, -6.13, 0.62643, 30, 108.23, -11.03, 0.2753, 32, 36.55, -199.89, 0.0247, 33, -171.19, -306.42, 2e-05, 37, -365.18, -300.28, 4e-05, 38, -492.2, -97.49, + 2e-05, 8, 27, -306.47, 169.83, 3e-05, 29, -159.39, 139.4, 0.02116, 31, 8.5, 18.83, 0.53817, 30, 93.81, 16.99, 0.36659, 32, 47.88, -170.48, 0.07403, 33, -140.22, -300.6, 0, 37, + -339.1, -317.98, 1e-05, 38, -482.11, -127.35, 0, 4, 29, -194.26, 131.52, 0.00409, 31, -19.84, 40.63, 0.35353, 30, 69.87, 43.54, 0.4808, 32, 51.77, -134.94, 0.16158, 4, 29, -222.02, + 118.69, 0.00027, 31, -47.44, 53.79, 0.17171, 30, 45.09, 61.47, 0.54518, 32, 48.66, -104.52, 0.28285, 3, 31, -77.22, 57.94, 0.06064, 30, 16.55, 70.92, 0.51868, 32, 36.73, -76.92, + 0.42068, 3, 31, -57.29, 89.33, 0.01555, 30, 41.82, 98.2, 0.42082, 32, 73.91, -77.63, 0.56363, 4, 31, -80.7, 96.56, 0.00451, 30, 20.09, 109.53, 0.29427, 32, 67.91, -53.88, 0.70079, + 33, -30.49, -256.37, 0.00043, 4, 31, -107.19, 97.92, 0.00148, 30, -5.71, 115.65, 0.17382, 32, 55.31, -30.54, 0.82041, 33, -17.26, -233.38, 0.00428, 4, 31, -119.43, 127.9, 0.00048, + 30, -12.35, 147.34, 0.08258, 32, 74.56, -4.5, 0.89909, 33, 15.02, -236.07, 0.01785, 6, 27, -448.7, 38.85, 0, 31, -149.05, 130.92, 3e-05, 30, -40.93, 155.66, 0.02827, 32, 61.75, + 22.37, 0.92404, 33, 31.14, -211.05, 0.04766, 37, -154.4, -375.15, 0, 5, 27, -450.98, 5.31, 1e-05, 30, -74.52, 157.03, 0.00609, 32, 40.42, 48.36, 0.89876, 33, 42.05, -179.25, 0.09515, + 37, -124.25, -360.26, 0, 5, 27, -447.46, -17.92, 2e-05, 30, -97.66, 152.9, 0.00034, 32, 21.95, 62.88, 0.8434, 33, 44.69, -155.9, 0.15624, 37, -105.93, -345.55, 0, 5, 27, -423.09, + -28.46, 2e-05, 30, -107.53, 128.25, 1e-05, 32, -3.03, 53.86, 0.76601, 33, 23.89, -139.4, 0.23396, 37, -109.07, -319.18, 1e-05, 5, 27, -454.42, -40.74, 2e-05, 30, -120.65, 159.24, + 3e-05, 32, 11.38, 84.27, 0.66126, 33, 57.34, -135.68, 0.33868, 37, -82.7, -340.11, 0, 6, 27, -455.4, -63.79, 1e-05, 30, -143.72, 159.6, 7e-05, 32, -3.7, 101.73, 0.51795, 33, 64.27, + -113.66, 0.48189, 34, -21.96, -285.01, 9e-05, 37, -62.28, -329.37, 0, 6, 27, -428.49, -102.95, 1e-05, 30, -182.15, 131.65, 8e-05, 32, -50.13, 111.82, 0.3516, 33, 48.45, -68.86, + 0.64044, 34, -21.42, -237.5, 0.00787, 37, -41.94, -286.43, 0, 6, 27, -435.69, -136.98, 0, 30, -216.35, 137.93, 7e-05, 32, -68.2, 141.54, 0.19493, 33, 64.24, -37.88, 0.76785, 34, + 4.06, -213.82, 0.03714, 37, -8.91, -275.56, 2e-05, 6, 27, -433.38, -177.99, 0, 30, -257.29, 134.52, 3e-05, 32, -97.98, 169.83, 0.08395, 33, 72.65, 2.34, 0.80689, 34, 25.78, -178.95, + 0.10908, 37, 25.4, -252.95, 6e-05, 6, 27, -411.01, -217.09, 0, 30, -295.78, 111.11, 1e-05, 32, -141.06, 182.99, 0.02493, 33, 61.21, 45.9, 0.74583, 34, 30, -134.11, 0.22912, 37, + 47.96, -213.97, 0.00011, 4, 32, -162.02, 190.79, 0.00437, 33, 56.83, 67.83, 0.60625, 34, 33.43, -112.01, 0.38926, 37, 60.31, -195.32, 0.00013, 4, 32, -180.86, 213.92, 0, 33, 66.61, + 96.02, 0.43776, 34, 52.29, -88.9, 0.56213, 37, 87.11, -182.2, 0.00011, 4, 32, -206.59, 227.18, 0, 33, 64.37, 124.87, 0.27854, 34, 60.1, -61.03, 0.7214, 37, 105.84, -160.15, 5e-05, 4, + 32, -234.11, 226.07, 0, 33, 48.96, 147.7, 0.15459, 34, 53.48, -34.3, 0.84539, 37, 110.99, -133.09, 2e-05, 6, 32, -263.5, 225.1, 0, 33, 32.68, 172.2, 0.07484, 34, 46.62, -5.7, + 0.92068, 36, -84.62, -175.03, 0.00135, 35, 17.9, -183.52, 0.00062, 37, 116.7, -104.24, 0.00251, 6, 32, -247.01, 237.16, 0, 33, 51.62, 164.51, 0.03188, 34, 61.75, -19.43, 0.94265, 36, + -79.15, -194.72, 0.00762, 35, 25.57, -202.46, 0.0039, 37, 124.72, -123.04, 0.01394, 6, 32, -262.28, 253.36, 0, 33, 57.37, 186.02, 0.01347, 34, 74.55, -1.21, 0.90298, 36, -58.6, + -186.16, 0.02719, 35, 45.01, -191.61, 0.01423, 37, 143.96, -111.83, 0.04214, 6, 32, -293.02, 256.5, 0, 33, 43.89, 213.82, 0.00485, 34, 71.44, 29.53, 0.80374, 36, -44.81, -158.51, + 0.06926, 35, 55.57, -162.58, 0.03541, 37, 153.98, -82.6, 0.08675, 6, 32, -318.68, 256.28, 0, 33, 30.22, 235.53, 0.00156, 34, 66.06, 54.62, 0.65341, 36, -35.96, -134.42, 0.14052, 35, + 61.62, -137.64, 0.07043, 37, 159.56, -57.56, 0.13408, 6, 32, -346.91, 272.97, 0, 33, 29.58, 268.32, 4e-05, 34, 76.73, 85.63, 0.48166, 36, -10.38, -113.9, 0.24754, 35, 84.7, -114.34, + 0.10875, 37, 182.21, -33.84, 0.16201, 7, 23, -148.23, -221.79, 0, 32, -371.47, 283.74, 0, 34, 82.34, 111.86, 0.31664, 36, 8.37, -94.72, 0.39158, 35, 101.15, -93.16, 0.1353, 37, + 198.26, -12.35, 0.15648, 38, 130.73, -208.53, 0, 8, 24, -236.39, -162.01, 0, 23, -115.57, -207.53, 0.0005, 32, -402.53, 266.27, 0, 34, 58.98, 138.77, 0.18268, 36, 2.99, -59.5, + 0.55308, 35, 91.8, -58.77, 0.14271, 37, 188.28, 21.85, 0.1202, 38, 143.45, -175.24, 0.00082, 8, 24, -204.35, -178.69, 8e-05, 23, -80.77, -217.2, 0.00305, 32, -438.13, 272.39, 0, 34, + 57.81, 174.87, 0.08827, 36, 21.28, -28.35, 0.67828, 35, 106.43, -25.75, 0.15312, 37, 202.3, 55.15, 0.07244, 38, 174.73, -157.19, 0.00477, 8, 24, -174.75, -190.68, 0.00051, 23, + -49.32, -222.79, 0.01055, 32, -469.98, 274.78, 0, 34, 53.75, 206.55, 0.0336, 36, 34.77, 0.6, 0.70659, 35, 116.53, 4.56, 0.2009, 37, 211.84, 85.63, 0.03226, 38, 200.76, -138.66, + 0.01559, 8, 24, -143.06, -164.53, 0.00224, 23, -23.75, -190.63, 0.02658, 32, -492.19, 240.22, 0, 34, 15.42, 221.35, 0.00881, 36, 10.27, 33.58, 0.6277, 35, 88.44, 34.53, 0.28824, 37, + 183.2, 115.08, 0.00978, 38, 195.73, -97.89, 0.03665, 8, 24, -110.84, -167.06, 0.00759, 23, 8.3, -186.43, 0.0565, 32, -523.65, 232.81, 0, 34, 1.83, 250.68, 0.00125, 36, 14.45, 65.63, + 0.48236, 35, 88.94, 66.85, 0.38108, 37, 183.11, 147.4, 0.00143, 38, 215.19, -72.08, 0.06979, 6, 24, -78.44, -165.79, 0.01668, 23, 39.73, -178.46, 0.09882, 32, -554.12, 221.72, 0, 36, + 14.84, 98.06, 0.33449, 35, 85.64, 99.11, 0.43535, 38, 231.53, -44.07, 0.11466, 6, 24, -70.88, -131.52, 0.02639, 23, 40.01, -143.37, 0.1411, 32, -550.87, 186.78, 0, 36, -19, 107.35, + 0.21662, 35, 50.96, 104.49, 0.45128, 38, 206.69, -19.28, 0.1646, 6, 24, -62.29, -90.62, 0.03055, 23, 39.92, -101.58, 0.16506, 32, -546.58, 145.21, 0, 36, -59.41, 118.01, 0.13763, 35, + 9.6, 110.49, 0.45937, 38, 176.82, 9.94, 0.20739, 6, 24, -110.48, -78.97, 0.08468, 23, -9.63, -100.17, 0.21707, 32, -497.13, 148.8, 0, 36, -73.51, 70.49, 0.05713, 35, 1, 61.67, + 0.39573, 38, 141.09, -24.43, 0.24538, 6, 24, -66.3, -76.53, 0.1834, 23, 33.08, -88.62, 0.26456, 32, -538.47, 133.01, 0, 36, -73.69, 114.74, 0.03726, 35, -4.21, 105.61, 0.29744, 38, + 162.78, 14.14, 0.21734, 6, 24, -25.72, -66.58, 0.34249, 23, 70.71, -70.47, 0.28764, 32, -574.08, 111.16, 0, 36, -81.56, 155.77, 0.02319, 35, -16.69, 145.48, 0.1906, 38, 176.2, 53.7, + 0.15609, 8, 24, 18.22, -45.19, 0.5153, 23, 109.26, -40.42, 0.27725, 26, -34, -238.73, 1e-05, 25, 98.33, -240.59, 0.00014, 32, -609.41, 77.39, 0, 36, -100.68, 200.75, 0.01334, 35, + -40.81, 187.99, 0.102, 38, 181.78, 102.26, 0.09196, 8, 24, -5.11, -36.24, 0.68228, 23, 84.58, -36.51, 0.21853, 26, -56.23, -227.31, 0.00023, 25, 74.22, -234.03, 0.00289, 32, -584.46, + 75.98, 0, 36, -110.8, 177.9, 0.00627, 35, -48.27, 164.14, 0.04474, 38, 161.69, 87.39, 0.04507, 8, 24, 25.81, -15.05, 0.78147, 23, 110.43, -9.36, 0.16091, 26, -23.2, -209.58, 0.0015, + 25, 102.85, -209.84, 0.01576, 32, -607.44, 46.37, 0, 36, -130.39, 209.86, 0.00235, 35, -71.36, 193.66, 0.01828, 38, 160.43, 124.85, 0.01973, 8, 24, 49.34, 5.37, 0.79425, 23, 129.21, + 15.49, 0.13103, 26, 2.4, -191.83, 0.0064, 25, 124.21, -187.16, 0.05405, 32, -623.63, 19.75, 0, 36, -149.58, 234.4, 0.00072, 35, -93.22, 215.86, 0.00632, 38, 155.86, 155.67, 0.00722, + 9, 24, 37.3, 35.81, 0.68614, 23, 111.12, 42.77, 0.15961, 26, -6.27, -160.26, 0.01489, 25, 109.18, -158.08, 0.13336, 30, -462.27, -359.12, 0, 32, -602.89, -5.58, 0, 36, -180.6, + 223.94, 0.00021, 35, -122.85, 201.94, 0.00188, 38, 123.72, 161.88, 0.00391, 9, 24, 25.77, 69.55, 0.50501, 23, 92.84, 73.39, 0.20707, 26, -14.08, -125.48, 0.02803, 25, 94.32, -125.67, + 0.25449, 30, -426.75, -362.28, 0, 32, -581.62, -34.19, 0, 36, -214.89, 214.14, 1e-05, 35, -155.8, 188.31, 0.00015, 38, 89.07, 170.29, 0.00524, 6, 24, 7.83, 108.42, 0.31183, 23, + 67.22, 107.68, 0.23636, 26, -27.71, -84.9, 0.05759, 25, 72.56, -88.8, 0.38458, 30, -383.95, -361.67, 0, 38, 46.65, 176.05, 0.00964, 6, 24, -27.61, 131.05, 0.16996, 23, 27.85, 122.47, + 0.21701, 26, -60.5, -58.56, 0.13953, 25, 35.02, -69.84, 0.46198, 30, -348.87, -338.47, 0, 38, 8.51, 158.32, 0.01152, 9, 24, 1.43, 139.17, 0.08717, 23, 54.58, 136.44, 0.16092, 26, + -30.75, -53.63, 0.29668, 25, 63.1, -58.85, 0.44506, 28, 36.72, -285.46, 0.00015, 27, 66.69, -287.4, 3e-05, 30, -353.25, -368.3, 0, 32, -537.21, -93.07, 0, 38, 17.28, 187.18, 0.00999, + 9, 24, 34.53, 159.46, 0.04501, 23, 82.74, 163.15, 0.09458, 26, 4.35, -37.05, 0.48678, 25, 94, -35.34, 0.36559, 28, 73.96, -274.5, 0.00167, 27, 105.3, -283.34, 0.00083, 30, -348.15, + -406.79, 0, 32, -562.55, -122.49, 0, 38, 17.96, 225.99, 0.00554, 9, 24, 70.31, 196.36, 0.0212, 23, 110.09, 206.67, 0.0423, 26, 43.91, -4.23, 0.60196, 25, 125.89, 4.97, 0.32013, 28, + 118.12, -248.2, 0.00738, 27, 153.48, -265.43, 0.00499, 30, -328.95, -454.47, 0, 32, -585.37, -168.54, 0, 38, 6.07, 276, 0.00204, 11, 24, 49.11, 222.73, 0.00776, 23, 83.88, 228.07, + 0.01304, 26, 25.69, 24.28, 0.55911, 25, 102.15, 29.08, 0.3825, 28, 104.53, -217.21, 0.01991, 27, 145.7, -232.5, 0.01731, 30, -296.25, -445.81, 1e-05, 32, -557.15, -187.19, 0, 33, + -472.4, 205.35, 1e-05, 37, -218.4, 275.12, 2e-05, 38, -27.56, 272.3, 0.00033, 11, 24, 15.21, 253.34, 0.00151, 23, 44.36, 250.98, 0.00216, 26, -4.7, 58.38, 0.38915, 25, 65.34, 56.13, + 0.52735, 28, 79.77, -178.83, 0.03984, 27, 128.27, -190.28, 0.03963, 30, -254.5, -427.25, 3e-05, 32, -515.52, -206.01, 0, 33, -466.53, 160.05, 3e-05, 37, -246.16, 238.84, 7e-05, 38, + -71.6, 260.16, 0.00023, 11, 24, -17.52, 269.12, 2e-05, 23, 9.07, 259.62, 2e-05, 26, -35.54, 77.6, 0.19848, 25, 31.19, 68.54, 0.66856, 28, 52.28, -155.07, 0.06385, 27, 105.52, + -161.95, 0.06836, 30, -226.8, -403.75, 6e-05, 32, -479.54, -211.06, 0, 33, -451.92, 126.78, 5e-05, 37, -259.22, 204.93, 0.00014, 38, -102.49, 241.04, 0.00046, 9, 26, -68.1, 80.91, + 0.07636, 25, -1.35, 65.02, 0.7365, 28, 20.62, -146.76, 0.09056, 27, 75.87, -148.08, 0.09573, 30, -213.72, -373.74, 7e-05, 32, -448.44, -200.85, 0, 33, -426.89, 105.69, 6e-05, 37, + -256.32, 172.33, 0.00017, 38, -119.88, 213.31, 0.00055, 9, 26, -42.08, 95.84, 0.02679, 25, 21.01, 85.02, 0.7301, 28, 48.64, -136.03, 0.11966, 27, 105.36, -142.58, 0.12258, 30, + -207.43, -403.08, 7e-05, 32, -466.16, -225.07, 0, 33, -456.8, 108.03, 6e-05, 37, -275.89, 195.07, 0.00018, 38, -121.74, 243.25, 0.00057, 9, 26, -26.56, 110.02, 0.01487, 25, 33.24, + 102.12, 0.67118, 28, 66.16, -124.42, 0.15199, 27, 124.7, -134.32, 0.16085, 30, -198.66, -422.18, 7e-05, 32, -474.58, -244.33, 0, 33, -477.62, 105.08, 7e-05, 37, -292.75, 207.63, + 0.00022, 38, -127.58, 263.45, 0.00073, 9, 26, -52.7, 126.5, 0.00957, 25, 4.25, 112.81, 0.57929, 28, 42.88, -104.1, 0.19092, 27, 105.46, -110.13, 0.21834, 30, -174.99, -402.31, + 0.00012, 32, -444, -248.77, 0, 33, -465.33, 76.72, 0.00012, 37, -304, 178.85, 0.00037, 38, -153.94, 247.31, 0.00127, 9, 26, -81.43, 135.43, 0.00467, 25, -25.71, 115.59, 0.46178, 28, + 15.88, -90.83, 0.25394, 27, 81.29, -92.21, 0.27673, 30, -157.73, -377.67, 0.00019, 32, -414.11, -245.27, 0, 33, -446.64, 53.14, 0.00019, 37, -307.35, 148.95, 0.00056, 38, -174.67, + 225.51, 0.00194, 9, 26, -105.33, 144.86, 0.00143, 25, -51.04, 119.85, 0.33223, 28, -6.27, -77.82, 0.36722, 27, 61.85, -75.42, 0.29597, 30, -141.46, -357.78, 0.00021, 32, -388.45, + -244.18, 0, 33, -432.22, 31.88, 0.00021, 37, -312.1, 123.7, 0.00061, 38, -193.71, 208.27, 0.00212, 11, 26, -92.76, 174.05, 0.00015, 25, -44.81, 151.01, 0.209, 28, 10.65, -50.93, + 0.53168, 27, 83.35, -52.01, 0.25667, 29, 82.16, -238.53, 2e-05, 31, -127.99, -408.42, 0, 30, -117.49, -378.64, 0.00016, 32, -388.07, -275.95, 0, 33, -459.06, 14.86, 0.00016, 37, + -343.14, 130.53, 0.00048, 38, -214.31, 232.46, 0.00168, 10, 25, -36.92, 182.68, 0.11021, 28, 29.31, -24.15, 0.67791, 27, 106.53, -29.04, 0.20927, 29, 113.37, -229, 0.00135, 31, + -100.72, -426.35, 0, 30, -93.9, -401.2, 8e-05, 32, -389.22, -308.57, 0, 33, -487.41, -1.31, 8e-05, 37, -374.65, 139.03, 0.00024, 38, -234.29, 258.27, 0.00086, 9, 24, -73.51, 56.86, + 0.00581, 23, -1.65, 40.36, 0.67504, 25, -3.19, -148.27, 0.07186, 27, -36.38, -329.45, 0.0002, 30, -398.04, -266.4, 1e-05, 32, -490.93, 8.17, 0, 36, -207.27, 114.34, 0.00046, 35, + -136.88, 90.02, 0.0045, 38, 46.42, 79.74, 0.24212, 9, 24, -110.93, 53.31, 0.00736, 23, -37.52, 29.13, 0.6792, 25, -40.06, -155.56, 0.05778, 27, -71.68, -316.54, 0.00017, 30, -386.08, + -230.76, 1e-05, 32, -456.37, 22.95, 0, 36, -205.64, 76.79, 0.00112, 35, -130.99, 52.9, 0.01428, 38, 29.3, 46.28, 0.24008, 10, 24, -77.06, 13.93, 0.01065, 23, 3.79, -2.37, 0.63678, + 25, -2.41, -191.34, 0.03322, 27, -58.06, -366.67, 0.00012, 30, -435.83, -245.72, 1e-05, 32, -500.64, 50.14, 0, 36, -164.58, 108.61, 0.00244, 35, -93.81, 89.18, 0.04224, 37, -0.03, + 166.35, 0.00264, 38, 80.72, 53.68, 0.2719, 10, 24, -55.79, -32.55, 0.01152, 23, 34.24, -43.42, 0.52031, 25, 23.42, -235.45, 0.01249, 27, -58.87, -417.77, 5e-05, 30, -486.94, -246.29, + 0, 32, -535.07, 87.91, 0, 36, -117.08, 127.48, 0.00337, 35, -48.76, 113.33, 0.11486, 37, 44.56, 191.33, 0.00792, 38, 131.34, 46.64, 0.32948, 11, 24, -100.69, -36.49, 0.00974, 23, + -8.87, -56.59, 0.33211, 25, -20.85, -243.88, 0.00262, 27, -101.09, -402, 2e-05, 30, -472.31, -203.66, 0, 32, -493.5, 105.35, 0, 34, -116.95, 195.51, 0.0002, 36, -115.44, 82.43, + 0.00345, 35, -42.01, 68.77, 0.2427, 37, 52.14, 146.9, 0.02606, 38, 110.53, 6.66, 0.38309, 8, 24, -154.25, -22.31, 0.00513, 23, -64.21, -53.83, 0.15953, 32, -438.17, 108.18, 0, 34, + -103.05, 141.87, 0.00118, 36, -132.33, 29.66, 0.00279, 35, -52.79, 14.41, 0.40157, 37, 42.36, 92.36, 0.08446, 38, 69.78, -30.9, 0.34534, 9, 24, -170.01, -79.81, 0.00181, 23, -67.69, + -113.35, 0.04908, 32, -440.69, 167.75, 0, 33, -109.22, 292.81, 9e-05, 34, -45.2, 156.33, 0.0134, 36, -75.71, 10.99, 0.00225, 35, 5.59, 2.31, 0.48966, 37, 100.96, 81.33, 0.2096, 38, + 109.81, -75.09, 0.2341, 9, 24, -204.67, -85.33, 0.0001, 23, -100.45, -125.94, 0.00811, 32, -409.37, 183.57, 0, 33, -79.3, 274.47, 0.00027, 34, -23.41, 128.83, 0.06356, 36, -71.97, + -23.9, 0.00229, 35, 13.27, -31.94, 0.44361, 37, 109.27, 47.24, 0.38014, 38, 95.83, -107.28, 0.10191, 10, 23, -149.54, -110.5, 4e-05, 27, -245.53, -359.22, 1e-05, 30, -433.41, -58.12, + 1e-05, 32, -358.97, 173.15, 0, 33, -61.69, 226.12, 0.00173, 34, -23.48, 77.37, 0.18233, 36, -99.51, -67.37, 0.0026, 35, -9.14, -78.25, 0.28553, 37, 87.71, 0.51, 0.50149, 38, 50.42, + -131.48, 0.02627, 12, 23, -183.8, -90.13, 1e-05, 25, -198.38, -258.3, 0, 27, -260.33, -322.21, 0.00011, 29, -347.84, -317.46, 0, 30, -396.81, -42.33, 0.00014, 32, -322.84, 156.33, 0, + 33, -57, 186.54, 0.01162, 34, -32.68, 38.59, 0.35989, 36, -128, -95.24, 0.00288, 35, -34.28, -109.18, 0.1232, 37, 63.15, -30.88, 0.50205, 38, 11.89, -141.65, 0.0001, 10, 25, -223.94, + -292.96, 0, 27, -300.17, -338.57, 0.00034, 29, -390.71, -313.38, 1e-05, 30, -414.24, -2.95, 0.00043, 32, -305.03, 195.54, 0, 33, -14.29, 192, 0.04868, 34, 9.31, 29.04, 0.53126, 36, + -97.61, -125.74, 0.00255, 35, -0.61, -136.03, 0.03035, 37, 97.31, -57.1, 0.38637, 10, 25, -246.65, -258.65, 1e-05, 27, -301.77, -297.46, 0.0007, 29, -372.97, -276.25, 2e-05, 30, + -373.18, -0.24, 0.00087, 32, -275.69, 166.69, 0, 33, -23.41, 151.88, 0.1407, 34, -13.05, -5.51, 0.6065, 36, -134.96, -143.01, 0.00188, 35, -35.76, -157.43, 0.0017, 37, 62.57, -79.14, + 0.24763, 10, 25, -264.47, -224.22, 1e-05, 27, -299.14, -258.78, 0.0009, 29, -352.62, -243.25, 3e-05, 30, -334.45, -1.84, 0.00111, 32, -251.12, 136.71, 0.00035, 33, -36, 115.21, + 0.30236, 34, -37.47, -35.61, 0.55238, 36, -171.68, -155.42, 0.00089, 35, -70.83, -173.94, 0.00033, 37, 27.81, -96.3, 0.14165, 11, 25, -317.97, -225.09, 1e-05, 27, -345.32, -231.77, + 0.00093, 29, -380.9, -197.83, 4e-05, 30, -308.68, 45.06, 0.00161, 32, -198.96, 148.67, 0.00699, 33, 1.59, 77.13, 0.50763, 34, -15.26, -84.29, 0.40148, 36, -178.9, -208.43, 0.00029, + 35, -71.97, -227.43, 0.00011, 37, 27.65, -149.8, 0.08088, 38, -88.26, -214.96, 3e-05, 9, 25, -367.48, -216.88, 1e-05, 27, -383.39, -199.06, 0.00082, 29, -399.33, -151.15, 6e-05, 30, + -277, 83.98, 0.00253, 32, -148.83, 150.93, 0.03176, 33, 29.85, 35.66, 0.69106, 34, -2.97, -132.95, 0.2339, 37, 18.49, -199.15, 0.03979, 38, -125.38, -248.74, 8e-05, 9, 25, -391.07, + -181.63, 2e-05, 27, -385.26, -156.68, 0.00089, 29, -381.25, -112.78, 9e-05, 30, -234.7, 86.99, 0.00455, 32, -118.43, 121.34, 0.09712, 33, 20.66, -5.75, 0.77783, 34, -25.83, -168.68, + 0.10376, 37, -17.2, -222.06, 0.01557, 38, -167.66, -245.43, 0.00016, 9, 25, -401.05, -142.23, 2e-05, 27, -373.35, -117.82, 0.001, 29, -352.6, -83.95, 0.0001, 30, -195.53, 76.12, + 0.00668, 32, -100.48, 84.87, 0.21526, 33, -0.94, -40.18, 0.73989, 34, -57.95, -193.6, 0.03292, 37, -56.79, -231.28, 0.0039, 38, -204.78, -228.85, 0.00021, 9, 25, -441.97, -145.16, + 2e-05, 27, -409.84, -99.09, 0.00112, 29, -376.16, -50.37, 9e-05, 30, -177.79, 113.11, 0.00857, 32, -61.07, 96.23, 0.38638, 33, 29.44, -67.75, 0.59623, 34, -38.89, -229.92, 0.00551, + 37, -54.65, -272.25, 0.00185, 38, -227.82, -262.79, 0.00023, 8, 25, -459.01, -99.26, 1e-05, 27, -400.59, -51.02, 0.00101, 29, -345.58, -12.15, 5e-05, 30, -129.48, 105.15, 0.00931, + 32, -34.87, 54.88, 0.57773, 33, 8.02, -111.77, 0.41032, 37, -100.86, -288.4, 0.00138, 38, -274.41, -247.74, 0.00019, 8, 25, -463.71, -68.53, 0, 27, -388.67, -22.31, 0.00078, 29, + -321.64, 7.7, 2e-05, 30, -100.46, 94, 0.00886, 32, -23.89, 25.79, 0.75344, 33, -10.95, -136.4, 0.23574, 37, -131.68, -292.51, 0.00101, 38, -301.45, -232.39, 0.00014, 7, 27, -414.56, + 10.33, 0.00049, 29, -329.35, 48.64, 0, 30, -68.53, 120.76, 0.00782, 32, 17.34, 19.76, 0.87436, 33, 5.58, -174.64, 0.11661, 37, -146.89, -331.3, 0.00062, 38, -337, -254.11, 9e-05, 7, + 27, -424.26, 52.89, 0.00035, 29, -318.1, 90.81, 0, 30, -26.25, 131.6, 0.00703, 32, 53.56, -4.6, 0.92594, 33, 3.89, -218.26, 0.06617, 37, -178.81, -361.06, 0.00045, 38, -380.43, + -258.54, 7e-05, 10, 23, -53.01, 28.53, 0.09361, 25, -55.52, -154.49, 0.02062, 27, -84.34, -307.6, 0.00109, 29, -185.31, -386.53, 2e-05, 30, -377.49, -217.87, 0.00033, 32, -441.03, + 25.11, 0, 33, -230.75, 218.13, 0.00042, 35, -132.64, 37.49, 0.00261, 37, -37.9, 113.95, 0.06846, 38, 18.88, 34.81, 0.81283, 10, 23, -74.61, -3.91, 0.07738, 25, -80.51, -184.4, + 0.01717, 27, -121.22, -320.2, 0.00125, 29, -223.82, -380.5, 3e-05, 30, -391.08, -181.34, 0.00042, 32, -422.8, 59.56, 0, 33, -191.87, 220.73, 0.00054, 35, -103.69, 11.39, 0.00286, 37, + -8.47, 88.4, 0.08682, 38, 26.88, -3.33, 0.81354, 10, 23, -115.71, 8.34, 0.05991, 25, -120.04, -167.77, 0.01344, 27, -146.38, -285.48, 0.00138, 29, -229.9, -338.05, 3e-05, 30, + -357.04, -155.25, 0.00049, 32, -380.68, 51.5, 0, 33, -176.58, 180.66, 0.00066, 35, -121.8, -27.48, 0.00312, 37, -25.86, 49.19, 0.10398, 38, -10.66, -24.07, 0.817, 10, 25, -161.45, + -204.61, 0.00026, 27, -200.9, -295.48, 0.00139, 29, -282.8, -321.5, 0.00011, 30, -368.5, -101.02, 0.00149, 32, -347.82, 96.14, 0, 33, -121.34, 176.16, 0.02366, 34, -96.66, 50.95, + 0.13086, 35, -86.54, -70.25, 0.00158, 37, 10.18, 7.08, 0.82649, 38, -7.39, -79.4, 0.01416, 10, 25, -195.56, -241.08, 0.00034, 27, -248.98, -308.95, 0.00179, 29, -331.62, -311.02, + 0.00015, 30, -383.26, -53.33, 0.00191, 32, -322.03, 138.89, 0, 33, -71.41, 176.69, 0.02952, 34, -49.6, 34.29, 0.14297, 35, -51.39, -105.71, 0.00131, 37, 45.99, -27.72, 0.81008, 38, + 0.11, -128.76, 0.01194, 10, 25, -215.75, -196.14, 0.00041, 27, -242.92, -260.06, 0.00216, 29, -303.48, -270.58, 0.00018, 30, -334.22, -58.07, 0.0023, 32, -292.94, 99.13, 0, 33, + -89.95, 131.04, 0.03503, 34, -82.7, -2.21, 0.15601, 35, -97.06, -124.2, 0.00101, 37, 0.67, -47.05, 0.79338, 38, -47.68, -116.78, 0.00953, 4, 34, -8.01, 108.05, 0.19469, 36, -70.05, + -49.69, 0.07095, 35, 18.12, -57.34, 0.29258, 37, 114.58, 21.93, 0.44179, 4, 34, 23.39, 105.67, 0.22225, 36, -44.77, -68.47, 0.07138, 35, 45.36, -73.12, 0.26974, 37, 142.12, 6.65, + 0.43663, 4, 34, 19.4, 57.95, 0.24898, 36, -73.63, -106.68, 0.07264, 35, 21.04, -114.36, 0.24777, 37, 118.56, -35.04, 0.43061, 6, 24, -86.84, -84.69, 0.03422, 23, 14.68, -100.86, + 0.16887, 32, -521.39, 147.03, 0, 36, -66.6, 93.81, 0.09065, 35, 5.22, 85.62, 0.47997, 38, 158.62, -7.57, 0.22629, 6, 24, -93.8, -126.04, 0.01856, 23, 16.45, -142.76, 0.12235, 32, + -527.37, 188.55, 0, 36, -25.65, 84.74, 0.09577, 35, 46.94, 81.28, 0.57184, 38, 189.76, -35.66, 0.19147, 6, 24, -138.07, -106.85, 0.01347, 23, -30.83, -133.17, 0.09887, 32, -479.36, + 183.76, 0, 36, -47.08, 41.51, 0.10247, 35, 30.56, 35.89, 0.61779, 38, 149.78, -62.68, 0.1674 + ], + "hull": 57, + "edges": [ + 0, 2, 2, 4, 4, 6, 6, 8, 8, 10, 10, 12, 12, 14, 14, 16, 16, 18, 18, 20, 20, 22, 22, 24, 24, 26, 26, 28, 28, 30, 30, 32, 32, 34, 34, 36, 36, 38, 38, 40, 40, 42, 42, 44, 44, 46, 46, 48, + 48, 50, 50, 52, 52, 54, 54, 56, 56, 58, 58, 60, 60, 62, 62, 64, 64, 66, 66, 68, 68, 70, 70, 72, 72, 74, 74, 76, 76, 78, 78, 80, 80, 82, 82, 84, 84, 86, 86, 88, 88, 90, 90, 92, 92, + 94, 94, 96, 96, 98, 98, 100, 100, 102, 102, 104, 104, 106, 106, 108, 108, 110, 110, 112, 0, 112, 114, 116, 116, 118, 118, 120, 120, 122, 122, 124, 124, 126, 126, 128, 128, 130, 130, + 132, 132, 134, 134, 136, 136, 138, 138, 140, 140, 142, 142, 144, 144, 146, 146, 148, 148, 150, 150, 152, 152, 154, 154, 156, 156, 158, 158, 160, 160, 162, 162, 164, 164, 166, 166, + 168, 168, 170, 170, 172, 172, 174, 174, 176, 176, 178, 178, 180, 180, 182, 182, 184, 184, 186, 186, 188, 188, 190, 190, 192, 192, 194, 194, 196, 196, 198, 198, 200, 200, 202, 202, + 204, 204, 206, 206, 208, 208, 210, 210, 212, 212, 214, 216, 218, 218, 220, 220, 222, 222, 224, 224, 226, 226, 228, 228, 230, 230, 232, 232, 234, 234, 236, 236, 238, 238, 240, 240, + 242, 242, 244, 244, 246, 246, 248, 248, 250, 250, 252, 252, 254, 254, 256, 256, 258, 258, 260, 260, 262, 262, 264, 264, 114, 266, 268, 268, 270, 270, 272, 272, 274, 274, 276, 276, + 278, 278, 280, 280, 282, 282, 284, 284, 286, 286, 288, 288, 290, 290, 292, 292, 294, 294, 296, 296, 298, 298, 300, 300, 302, 302, 304, 304, 306, 306, 308, 310, 312, 312, 314, 316, + 318, 318, 320, 322, 324, 324, 326, 214, 328, 328, 216, 328, 330, 330, 332 + ], + "width": 752.9411764705883, + "height": 623.5294117647059, + "path": "body-fuzzy.body-fuzzy", + "x": 1.0294117647058556, + "y": 0.2352941176470722 + } + }, + "leg-back-left": { + "leg-back-left": {"x": 32.56, "y": 0.31764705882352895, "rotation": 83.45, "width": 80.0, "height": 91.76470588235294, "path": "body-normal.leg-back-left"}, + "leg-back-left-long": {"x": 35.037058823529414, "y": -4.5, "rotation": 221.45, "width": 84.70588235294117, "height": 80.0, "path": "body-normal.leg-back-left-long"}, + "leg-back-left-stretch": { + "x": 27.84882352941176, "y": 2.462352941176471, "rotation": 54.45, "width": 65.88235294117648, "height": 68.23529411764706, "path": "body-normal.leg-back-left-stretch" + } + }, + "leg-front-left": { + "leg-front-left": {"x": 22.685882352941174, "y": 2.091764705882351, "rotation": 97.51, "width": 70.58823529411765, "height": 61.1764705882353, "path": "body-normal.leg-front-left"}, + "leg-front-left-long": { + "x": 28.450588235294116, "y": -5.187058823529413, "rotation": -173.75, "width": 87.05882352941177, "height": 75.29411764705883, "path": "body-normal.leg-front-left-long" + }, + "leg-front-left-stretch": { + "x": 20.12235294117647, "y": -3.107058823529413, "rotation": 142.15, "width": 68.23529411764706, "height": 75.29411764705883, "path": "body-normal.leg-front-left-stretch" + } + }, + "leg-front-right": { + "leg-front-right": {"x": 31.35, "y": -0.5423529411764709, "rotation": 87.96, "width": 80.0, "height": 91.76470588235294, "path": "body-normal.leg-front-right"}, + "leg-front-right-long": { + "x": 37.53058823529412, "y": 0.20294117647058696, "rotation": 205.96, "width": 87.05882352941177, "height": 75.29411764705883, "path": "body-normal.leg-front-right-long" + }, + "leg-front-right-stretch": {"x": 31.15, "y": 2.192352941176471, "rotation": 142.01, "width": 80.0, "height": 68.23529411764706, "path": "body-normal.leg-front-right-stretch"} + }, + "shadow": {"shadow": {"width": 945.8823529411765, "height": 190.58823529411765, "path": "body-fuzzy.shadow", "x": 0.05882352941176805, "y": 0.20588235294117396}}, + "body-air": { + "body-air1a_00": {"x": 1.37, "y": 35.21, "width": 209.41176470588235, "height": 129.41176470588235, "path": "body-accessory.body-air1a_00"}, + "body-air1a_01": {"x": 1.37, "y": 35.21, "width": 209.41176470588235, "height": 129.41176470588235, "path": "body-accessory.body-air1a_01"}, + "body-air1a_02": {"x": 1.37, "y": 35.21, "width": 209.41176470588235, "height": 129.41176470588235, "path": "body-accessory.body-air1a_02"}, + "body-air1a_03": {"x": 1.37, "y": 35.21, "width": 209.41176470588235, "height": 129.41176470588235, "path": "body-accessory.body-air1a_03"}, + "body-air1a_04": {"x": 1.37, "y": 35.21, "width": 209.41176470588235, "height": 129.41176470588235, "path": "body-accessory.body-air1a_04"}, + "body-air1a_05": {"x": 1.37, "y": 35.21, "width": 209.41176470588235, "height": 129.41176470588235, "path": "body-accessory.body-air1a_05"}, + "body-air1a_06": {"x": 1.37, "y": 35.21, "width": 209.41176470588235, "height": 129.41176470588235, "path": "body-accessory.body-air1a_06"}, + "body-air1a_07": {"x": 1.37, "y": 35.21, "width": 209.41176470588235, "height": 129.41176470588235, "path": "body-accessory.body-air1a_07"}, + "body-air1b_00": {"x": 1.37, "y": 35.21, "width": 155.29411764705884, "height": 192.94117647058823, "path": "body-accessory.body-air1b_00"}, + "body-air1b_01": {"x": 1.37, "y": 35.21, "width": 155.29411764705884, "height": 192.94117647058823, "path": "body-accessory.body-air1b_01"}, + "body-air1b_02": {"x": 1.37, "y": 35.21, "width": 155.29411764705884, "height": 192.94117647058823, "path": "body-accessory.body-air1b_02"}, + "body-air1c_00": {"x": 1.37, "y": 35.21, "width": 200.0, "height": 289.4117647058824, "path": "body-accessory.body-air1c_00"}, + "body-air1c_01": {"x": 1.37, "y": 35.21, "width": 200.0, "height": 289.4117647058824, "path": "body-accessory.body-air1c_01"}, + "body-air1c_02": {"x": 1.37, "y": 35.21, "width": 200.0, "height": 289.4117647058824, "path": "body-accessory.body-air1c_02"}, + "body-air1c_03": {"x": 1.37, "y": 35.21, "width": 200.0, "height": 289.4117647058824, "path": "body-accessory.body-air1c_03"}, + "body-air1d_00": {"x": 1.37, "y": 35.21, "width": 204.7058823529412, "height": 272.94117647058823, "path": "body-accessory.body-air1d_00"}, + "body-air1d_01": {"x": 1.37, "y": 35.21, "width": 204.7058823529412, "height": 272.94117647058823, "path": "body-accessory.body-air1d_01"}, + "body-air1d_02": {"x": 1.37, "y": 35.21, "width": 204.7058823529412, "height": 272.94117647058823, "path": "body-accessory.body-air1d_02"}, + "body-air1d_03": {"x": 1.37, "y": 35.21, "width": 204.7058823529412, "height": 272.94117647058823, "path": "body-accessory.body-air1d_03"} + }, + "body-cheek": { + "body-cheek1a": {"x": 1.52, "y": 3.04, "width": 58.82352941176471, "height": 58.82352941176471, "path": "body-accessory.body-cheek1a"}, + "body-cheek1b": {"x": 1.52, "y": 3.04, "width": 49.411764705882355, "height": 77.64705882352942, "path": "body-accessory.body-cheek1b"}, + "body-cheek1c": {"x": 1.52, "y": 3.04, "width": 49.411764705882355, "height": 77.64705882352942, "path": "body-accessory.body-cheek1c"}, + "body-cheek1d": {"x": 1.52, "y": 3.04, "width": 49.411764705882355, "height": 75.29411764705883, "path": "body-accessory.body-cheek1d"}, + "body-cheek1e": {"x": 1.52, "y": 3.04, "width": 54.11764705882353, "height": 80.0, "path": "body-accessory.body-cheek1e"}, + "body-cheek1f": {"x": 1.52, "y": 3.04, "width": 56.470588235294116, "height": 58.82352941176471, "path": "body-accessory.body-cheek1f"}, + "body-cheek1g": {"x": 1.52, "y": 3.04, "width": 103.52941176470588, "height": 96.47058823529412, "path": "body-accessory.body-cheek1g"} + }, + "body-ground": { + "body-ground1a_00": {"x": 4.75, "y": 123.01, "width": 254.11764705882354, "height": 272.94117647058823, "path": "body-accessory.body-ground1a_00"}, + "body-ground1a_01": {"x": 4.75, "y": 123.01, "width": 254.11764705882354, "height": 272.94117647058823, "path": "body-accessory.body-ground1a_01"}, + "body-ground1a_02": {"x": 4.75, "y": 123.01, "width": 254.11764705882354, "height": 272.94117647058823, "path": "body-accessory.body-ground1a_02"}, + "body-ground1a_03": {"x": 4.75, "y": 123.01, "width": 254.11764705882354, "height": 272.94117647058823, "path": "body-accessory.body-ground1a_03"} + }, + "body-hip": { + "body-hip1a": {"x": -16.0, "width": 108.23529411764706, "height": 138.8235294117647, "path": "body-accessory.body-hip1a", "y": 0.0}, + "body-hip1b": {"x": -16.0, "width": 209.41176470588235, "height": 214.11764705882354, "path": "body-accessory.body-hip1b", "y": 0.0}, + "body-hip1c": {"x": -16.0, "width": 122.3529411764706, "height": 157.64705882352942, "path": "body-accessory.body-hip1c", "y": 0.0}, + "body-hip1d": {"x": -16.0, "width": 202.35294117647058, "height": 143.52941176470588, "path": "body-accessory.body-hip1d", "y": 0.0} + }, + "body-neck": { + "body-neck1a": {"x": -5.4, "y": -54.79, "width": 91.76470588235294, "height": 96.47058823529412, "path": "body-accessory.body-neck1a"}, + "body-neck1b": {"x": -5.4, "y": -54.79, "width": 103.52941176470588, "height": 117.64705882352942, "path": "body-accessory.body-neck1b"}, + "body-neck1c": {"x": -5.4, "y": -54.79, "width": 80.0, "height": 110.58823529411765, "path": "body-accessory.body-neck1c"}, + "body-neck1d": {"x": -5.4, "y": -54.79, "width": 122.3529411764706, "height": 101.17647058823529, "path": "body-accessory.body-neck1d"}, + "body-neck1e": {"x": -5.4, "y": -54.79, "width": 89.41176470588236, "height": 105.88235294117648, "path": "body-accessory.body-neck1e"}, + "body-neck1f": {"x": -5.4, "y": -54.79, "width": 80.0, "height": 80.0, "path": "body-accessory.body-neck1f"} + } + } + } + ], + "events": {"hit": {}, "hit-buff": {}, "jump": {}, "start-attack": {}}, + "keyAnimations": { + "activity/appear": "2516301341", + "activity/bath": "3188102483", + "attack/ranged/cast-fly": "3451796327", + "attack/ranged/cast-high": "2081555660", + "attack/ranged/cast-low": "4283524375", + "attack/ranged/cast-multi": "2979763470", + "attack/ranged/cast-tail": "1370524738", + "activity/eat-bite": "3760585416", + "activity/eat-chew": "3987941875", + "activity/entrance": "3632603752", + "defense/evade": "1756453214", + "activity/evolve": "413498100", + "battle/get-buff": "545324325", + "battle/get-debuff": "3925968729", + "defense/hit-by-normal": "685375493", + "defense/hit-by-normal-crit": "2105733975", + "defense/hit-by-normal-dramatic": "42307048", + "defense/hit-by-ranged-attack": "912481638", + "defense/hit-with-shield": "2842428225", + "attack/melee/horn-gore": "339640524", + "attack/melee/mouth-bite": "1963086355", + "action/move-back": "2980215034", + "action/move-forward": "160094506", + "attack/melee/multi-attack": "2847851775", + "action/idle/normal": "1279050865", + "attack/melee/normal-attack": "2307702827", + "activity/prepare": "3515345276", + "action/idle/random-01": "4102515873", + "action/idle/random-02": "4047015022", + "action/idle/random-03": "1772223510", + "action/idle/random-04": "1055348841", + "action/idle/random-05": "765106252", + "action/run": "3746342726", + "draft/run-origin": "2477462439", + "attack/melee/shrimp": "2456423644", + "activity/sleep": "3386570360", + "attack/melee/tail-multi-slap": "3650044337", + "attack/melee/tail-roll": "3237083422", + "attack/melee/tail-smash": "3603559322", + "attack/melee/tail-thrash": "2168073331", + "activity/victory-pose-back-flip": "2029961928" + } + }, + "bird-mystic-02": { + "bones": [ + {"name": "@root"}, {"name": "@pivot-main", "parent": "@root"}, {"name": "@pivot-back", "parent": "@pivot-main", "x": 205, "y": 180, "color": "ff0101ff"}, + {"name": "@pivot-center", "parent": "@pivot-back", "x": -215.11, "y": -5.25, "color": "ff0101ff"}, + {"name": "@axie", "parent": "@pivot-center", "length": 213.28, "rotation": 179.04, "x": 196.39, "y": 5.16}, {"name": "@back", "parent": "@axie", "rotation": -179.04, "x": 37.63, "y": -198.19}, + {"name": "back", "parent": "@back", "length": 149.41, "rotation": 86, "x": 30.03, "y": 56.3, "transform": "noScale"}, + {"name": "@body", "parent": "@axie", "length": 226.28, "rotation": -8.35, "x": 224.58, "y": -0.53}, {"name": "@ear-left", "parent": "@axie", "rotation": -179.04, "x": 112.7, "y": -203.23}, + {"name": "ear-left", "parent": "@ear-left", "length": 113.61, "rotation": 114, "x": 55, "y": -63, "transform": "noScale"}, + {"name": "@ear-right", "parent": "@axie", "rotation": -179.04, "x": 405.28, "y": -235.33}, + {"name": "ear-right", "parent": "@ear-right", "length": 119.39, "rotation": 68, "x": -73, "y": -107, "transform": "noScale"}, + {"name": "@eyes", "parent": "@axie", "rotation": -179.04, "x": 384.24, "y": -113.67}, {"name": "@horn", "parent": "@axie", "rotation": -179.04, "x": 327.92, "y": -214.63}, + {"name": "horn", "parent": "@horn", "length": 176.72, "rotation": 90, "y": 18, "transform": "noScale"}, + {"name": "@leg-back-left", "parent": "@axie", "length": 76.4, "rotation": 100.96, "x": -15.3, "y": 102.56, "transform": "noScale"}, + {"name": "@leg-front-left", "parent": "@axie", "length": 51.19, "rotation": 93.86, "x": 134.77, "y": 149.55, "transform": "noScale"}, + {"name": "@leg-front-right", "parent": "@axie", "length": 74.83, "rotation": 83.2, "x": 382.95, "y": 121.78, "transform": "noScale"}, + {"name": "@mouth", "parent": "@axie", "rotation": -179.04, "x": 382.23, "y": 6.31}, + {"name": "body-class", "parent": "@body", "rotation": -170.69, "x": -286.29, "y": -103.48, "transform": "noScale"}, {"name": "@shadow", "parent": "@root", "color": "e6d713ff"}, + {"name": "@tail", "parent": "@axie", "rotation": -179.04, "x": -11.76, "y": 61.72}, + {"name": "tail", "parent": "@tail", "length": 203.67, "rotation": 45, "x": 36.24, "y": -18, "transform": "noScale"}, + {"name": "leg-front-right-IK", "parent": "@pivot-main", "x": -195.99, "y": -10.21, "color": "ff3f00ff"}, + {"name": "leg-front-left-IK", "parent": "@pivot-main", "x": 42.3, "y": -18.42, "color": "ff3f00ff"}, + {"name": "leg-back-left-IK", "parent": "@pivot-main", "x": 208.57, "y": 1.35, "color": "ff3f00ff"}, {"name": "@ball", "parent": "@root", "y": 191, "color": "f3981bff"}, + {"name": "ball", "parent": "@ball", "y": -191, "color": "f4a729ff"}, {"name": "body-id", "parent": "@body", "rotation": -170.69, "x": -290.82, "y": -75.84}, + {"name": "mouth-accessory", "parent": "@mouth", "x": 8.74, "y": 77.12}, {"name": "mouth-blink", "parent": "@mouth", "x": 80.68, "y": 82.83} + ], + "slots": [ + {"name": "shadow", "bone": "@shadow", "attachment": "shadow"}, {"name": "ball", "bone": "ball"}, + {"name": "leg-front-right", "bone": "@leg-front-right", "attachment": "mystic-leg-front-right"}, {"name": "ear-right", "bone": "ear-right", "attachment": "ear-right"}, + {"name": "tail", "bone": "tail", "attachment": "tail"}, {"name": "back", "bone": "back", "attachment": "back"}, + {"name": "leg-back-left", "bone": "@leg-back-left", "attachment": "mystic-leg-back-left"}, {"name": "body", "bone": "@body", "attachment": "body-mystic"}, + {"name": "body-class", "bone": "body-class", "attachment": "body-class-aquatic"}, {"name": "leg-front-left", "bone": "@leg-front-left", "attachment": "mystic-leg-front-left"}, + {"name": "eyes", "bone": "@eyes", "attachment": "eyes"}, {"name": "mouth", "bone": "@mouth", "attachment": "mouth"}, {"name": "ear-left", "bone": "ear-left", "attachment": "ear-left"}, + {"name": "horn", "bone": "horn", "attachment": "horn"}, {"name": "body-id", "bone": "body-id", "attachment": "body-id"}, {"name": "mouth-accessory", "bone": "mouth-accessory"}, + {"name": "mouth-blink", "bone": "mouth-blink"} + ], + "ik": [ + {"name": "leg-back-left-IK", "order": 2, "bones": ["@leg-back-left"], "target": "leg-back-left-IK"}, + {"name": "leg-front-left-IK", "order": 1, "bones": ["@leg-front-left"], "target": "leg-front-left-IK"}, + {"name": "leg-front-right-IK", "bones": ["@leg-front-right"], "target": "leg-front-right-IK"} + ], + "skins": [ + { + "name": "default", + "attachments": { + "back": {"back": {"x": 167.06411764705882, "y": -4.190588235294116, "rotation": -86, "width": 249.41176470588235, "height": 272.94117647058823, "path": "bird-mystic-02.back"}}, + "ear-left": { + "ear-left": {"x": 30.22352941176471, "y": 11.472941176470579, "rotation": -114, "width": 162.35294117647058, "height": 235.29411764705884, "path": "bird-mystic-02.ear-left"} + }, + "ear-right": { + "ear-right": {"x": -3.132352941176478, "y": 4.981176470588232, "rotation": -68, "width": 131.76470588235296, "height": 174.11764705882354, "path": "bird-mystic-02.ear-right"} + }, + "eyes": { + "eyes": {"x": 50.29117647058823, "y": 28.21647058823529, "width": 334.11764705882354, "height": 117.64705882352942, "path": "bird-mystic-02.eyes"}, + "eyes-angry": {"x": 50.29117647058823, "y": 28.21647058823529, "width": 334.11764705882354, "height": 117.64705882352942, "path": "bird-mystic-02.eyes-angry"}, + "eyes-happy": {"x": 49.11470588235293, "y": 36.451764705882354, "width": 336.47058823529414, "height": 101.17647058823529, "path": "bird-mystic-02.eyes-happy"}, + "eyes-shut": {"x": 49.11470588235293, "y": 35.27529411764706, "width": 336.47058823529414, "height": 103.52941176470588, "path": "bird-mystic-02.eyes-shut"} + }, + "horn": {"horn": {"x": 67.8635294117647, "y": -27.938235294117653, "rotation": -90, "width": 242.3529411764706, "height": 181.1764705882353, "path": "bird-mystic-02.horn"}}, + "mouth": { + "mouth": {"x": 5.761764705882355, "y": 40.80470588235294, "width": 101.17647058823529, "height": 176.47058823529412, "path": "bird-mystic-02.mouth"}, + "mouth-bite": {"x": 7.938235294117652, "y": 40.80470588235294, "width": 138.8235294117647, "height": 176.47058823529412, "path": "bird-mystic-02.mouth-bite"}, + "mouth-open": {"x": 5.585294117647058, "y": 35.62823529411764, "width": 103.52941176470588, "height": 218.82352941176472, "path": "bird-mystic-02.mouth-open"}, + "mouth-smile": {"x": 6.997058823529413, "y": 40.80470588235294, "width": 124.70588235294117, "height": 176.47058823529412, "path": "bird-mystic-02.mouth-smile"} + }, + "mouth-accessory": { + "mouth-accessory": {"x": -52.50352941176471, "y": 4.56647058823529, "width": 117.64705882352942, "height": 117.64705882352942, "path": "bird-mystic-02.mouth-accessory"} + }, + "mouth-blink": { + "mouth-smile-blink": {"x": 0.732941176470587, "y": -0.9670588235294131, "width": 35.294117647058826, "height": 35.294117647058826, "path": "bird-mystic-02.mouth-smile-blink"} + }, + "tail": {"tail": {"x": 137.21705882352938, "y": -12.832941176470595, "rotation": -45, "width": 244.7058823529412, "height": 204.7058823529412, "path": "bird-mystic-02.tail"}} + } + } + ], + "events": {"hit": {}, "hit-buff": {}, "jump": {}, "start-attack": {}}, + "keyAnimations": { + "activity/appear": "1023093953", + "activity/bath": "3305387968", + "attack/ranged/cast-fly": "4180526371", + "attack/ranged/cast-high": "164191126", + "attack/ranged/cast-low": "198813017", + "attack/ranged/cast-multi": "151119", + "attack/ranged/cast-tail": "3899988824", + "activity/eat-bite": "1137807767", + "activity/eat-chew": "1988236421", + "activity/entrance": "3768378365", + "defense/evade": "1735454995", + "activity/evolve": "649307630", + "battle/get-buff": "1455190363", + "battle/get-debuff": "606904312", + "defense/hit-by-normal": "2045974966", + "defense/hit-by-normal-crit": "2130010601", + "defense/hit-by-normal-dramatic": "3823092125", + "defense/hit-by-ranged-attack": "2224561612", + "defense/hit-with-shield": "390714790", + "attack/melee/horn-gore": "1327954218", + "attack/melee/mouth-bite": "2237748264", + "action/move-back": "3766271173", + "action/move-forward": "2945160014", + "attack/melee/multi-attack": "3861365989", + "action/idle/normal": "2717938682", + "attack/melee/normal-attack": "3305373483", + "activity/prepare": "405864717", + "action/idle/random-01": "554401889", + "action/idle/random-02": "3888196768", + "action/idle/random-03": "2021333900", + "action/idle/random-04": "1003789695", + "action/idle/random-05": "2745614147", + "action/run": "3858829480", + "draft/run-origin": "3947527336", + "attack/melee/shrimp": "3833448733", + "activity/sleep": "100562494", + "attack/melee/tail-multi-slap": "3317139533", + "attack/melee/tail-roll": "3108617565", + "attack/melee/tail-smash": "519942130", + "attack/melee/tail-thrash": "628713175", + "activity/victory-pose-back-flip": "2227634241" + } + }, + "plant-12": { + "bones": [ + {"name": "@root"}, {"name": "@pivot-main", "parent": "@root"}, {"name": "@pivot-back", "parent": "@pivot-main", "x": 205, "y": 180, "color": "ff0101ff"}, + {"name": "@pivot-center", "parent": "@pivot-back", "x": -215.11, "y": -5.25, "color": "ff0101ff"}, + {"name": "@axie", "parent": "@pivot-center", "length": 213.28, "rotation": 179.04, "x": 196.39, "y": 5.16}, {"name": "@back", "parent": "@axie", "rotation": -179.04, "x": 37.63, "y": -198.19}, + {"name": "back", "parent": "@back", "length": 149.41, "rotation": 58, "x": -56.97, "y": 31.3, "transform": "noScale"}, + {"name": "@body", "parent": "@axie", "length": 226.28, "rotation": -8.35, "x": 224.58, "y": -0.53}, {"name": "@ear-left", "parent": "@axie", "rotation": -179.04, "x": 112.7, "y": -203.23}, + {"name": "ear-left", "parent": "@ear-left", "length": 113.61, "rotation": 90, "x": 5, "y": 19, "transform": "noScale"}, + {"name": "@ear-right", "parent": "@axie", "rotation": -179.04, "x": 405.28, "y": -235.33}, + {"name": "ear-right", "parent": "@ear-right", "length": 119.39, "rotation": 93, "x": -50, "y": -20, "transform": "noScale"}, + {"name": "@eyes", "parent": "@axie", "rotation": -179.04, "x": 384.24, "y": -113.67}, {"name": "@horn", "parent": "@axie", "rotation": -179.04, "x": 327.92, "y": -214.63}, + {"name": "horn", "parent": "@horn", "length": 176.72, "rotation": 90, "y": 18, "transform": "noScale"}, + {"name": "@leg-back-left", "parent": "@axie", "length": 76.4, "rotation": 100.96, "x": -15.3, "y": 102.56, "transform": "noScale"}, + {"name": "@leg-front-left", "parent": "@axie", "length": 51.19, "rotation": 93.86, "x": 134.77, "y": 149.55, "transform": "noScale"}, + {"name": "@leg-front-right", "parent": "@axie", "length": 74.83, "rotation": 83.2, "x": 382.95, "y": 121.78, "transform": "noScale"}, + {"name": "@mouth", "parent": "@axie", "rotation": -179.04, "x": 382.23, "y": 6.31}, + {"name": "body-pattern", "parent": "@body", "rotation": -170.69, "x": -267.21, "y": -49.4, "transform": "noScale"}, {"name": "@shadow", "parent": "@root", "color": "e6d713ff"}, + {"name": "@tail", "parent": "@axie", "rotation": -179.04, "x": -11.76, "y": 61.72}, + {"name": "tail", "parent": "@tail", "length": 203.67, "rotation": 28, "x": 28, "y": -13, "transform": "noScale"}, + {"name": "leg-front-right-IK", "parent": "@pivot-main", "x": -195.99, "y": -10.21, "color": "ff3f00ff"}, + {"name": "leg-front-left-IK", "parent": "@pivot-main", "x": 42.3, "y": -18.42, "color": "ff3f00ff"}, + {"name": "leg-back-left-IK", "parent": "@pivot-main", "x": 208.57, "y": 1.35, "color": "ff3f00ff"}, {"name": "@ball", "parent": "@root", "y": 191, "color": "f3981bff"}, + {"name": "ball", "parent": "@ball", "y": -191, "color": "f4a729ff"} + ], + "slots": [ + {"name": "shadow", "bone": "@shadow", "attachment": "shadow"}, {"name": "ball", "bone": "ball"}, {"name": "leg-front-right", "bone": "@leg-front-right", "attachment": "leg-front-right"}, + {"name": "ear-right", "bone": "ear-right", "attachment": "ear-right"}, {"name": "tail", "bone": "tail", "attachment": "tail"}, {"name": "back", "bone": "back", "attachment": "back"}, + {"name": "leg-back-left", "bone": "@leg-back-left", "attachment": "leg-back-left"}, {"name": "body", "bone": "@body", "attachment": "body"}, {"name": "body-pattern", "bone": "body-pattern"}, + {"name": "leg-front-left", "bone": "@leg-front-left", "attachment": "leg-front-left"}, {"name": "eyes", "bone": "@eyes", "attachment": "eyes"}, + {"name": "mouth", "bone": "@mouth", "attachment": "mouth"}, {"name": "ear-left", "bone": "ear-left", "attachment": "ear-left"}, {"name": "horn", "bone": "horn", "attachment": "horn"} + ], + "ik": [ + {"name": "leg-back-left-IK", "order": 2, "bones": ["@leg-back-left"], "target": "leg-back-left-IK"}, + {"name": "leg-front-left-IK", "order": 1, "bones": ["@leg-front-left"], "target": "leg-front-left-IK"}, + {"name": "leg-front-right-IK", "bones": ["@leg-front-right"], "target": "leg-front-right-IK"} + ], + "skins": [ + { + "name": "default", + "attachments": { + "back": {"back": {"x": 76.48235294117646, "y": -18.90411764705884, "rotation": -58, "width": 388.2352941176471, "height": 310.5882352941177, "path": "plant-12.back"}}, + "ear-left": {"ear-left": {"x": -34.69882352941177, "y": -1.8876470588235361, "rotation": -90, "width": 174.11764705882354, "height": 148.23529411764707, "path": "plant-12.ear-left"}}, + "ear-right": {"ear-right": {"x": -28.96529411764706, "y": 54.104705882352945, "rotation": -93, "width": 136.47058823529412, "height": 136.47058823529412, "path": "plant-12.ear-right"}}, + "eyes": { + "eyes": {"x": 29.54, "y": 27.4, "width": 333, "height": 159, "path": "plant-12.eyes"}, + "eyes-angry": {"x": 33.04, "y": 27.4, "width": 340, "height": 159, "path": "plant-12.eyes-angry"}, + "eyes-happy": {"x": 33.04, "y": 27.4, "width": 340, "height": 159, "path": "plant-12.eyes-happy"}, + "eyes-shut": {"x": 33.04, "y": 27.4, "width": 340, "height": 159, "path": "plant-12.eyes-shut"} + }, + "horn": {"horn": {"x": 85.45882352941177, "y": 4.058823529411768, "rotation": -90, "width": 185.88235294117646, "height": 225.88235294117646, "path": "plant-12.horn"}}, + "mouth": { + "mouth": {"x": -28.96, "y": 89.9, "width": 168, "height": 76, "path": "plant-12.mouth"}, + "mouth-bite": {"x": -91.96, "y": 80.4, "width": 274, "height": 85, "path": "plant-12.mouth-bite"}, + "mouth-open": {"x": -1.96, "y": 95.9, "width": 118, "height": 82, "path": "plant-12.mouth-open"}, + "mouth-smile": {"x": -22.96, "y": 75.4, "width": 148, "height": 95, "path": "plant-12.mouth-smile"} + }, + "tail": {"tail": {"x": 137.86, "y": 16.365294117647057, "rotation": -28, "width": 280.0, "height": 223.52941176470588, "path": "plant-12.tail"}} + } + } + ], + "events": {"hit": {}, "hit-buff": {}, "jump": {}, "start-attack": {}}, + "keyAnimations": { + "activity/appear": "1023093953", + "activity/bath": "3305387968", + "attack/ranged/cast-fly": "4180526371", + "attack/ranged/cast-high": "164191126", + "attack/ranged/cast-low": "198813017", + "attack/ranged/cast-multi": "151119", + "attack/ranged/cast-tail": "997902532", + "activity/eat-bite": "1137807767", + "activity/eat-chew": "1988236421", + "activity/entrance": "3768378365", + "defense/evade": "1735454995", + "activity/evolve": "649307630", + "battle/get-buff": "1455190363", + "battle/get-debuff": "606904312", + "defense/hit-by-normal": "2045974966", + "defense/hit-by-normal-crit": "2130010601", + "defense/hit-by-normal-dramatic": "3823092125", + "defense/hit-by-ranged-attack": "2224561612", + "defense/hit-with-shield": "390714790", + "attack/melee/horn-gore": "1327954218", + "attack/melee/mouth-bite": "2237748264", + "action/move-back": "3766271173", + "action/move-forward": "2945160014", + "attack/melee/multi-attack": "905926802", + "action/idle/normal": "1659336865", + "attack/melee/normal-attack": "3305373483", + "activity/prepare": "405864717", + "action/idle/random-01": "554401889", + "action/idle/random-02": "1085666627", + "action/idle/random-03": "2021333900", + "action/idle/random-04": "1003789695", + "action/idle/random-05": "2745614147", + "action/run": "1438840721", + "draft/run-origin": "3577885069", + "attack/melee/shrimp": "3833448733", + "activity/sleep": "100562494", + "attack/melee/tail-multi-slap": "3317139533", + "attack/melee/tail-roll": "3108617565", + "attack/melee/tail-smash": "519942130", + "attack/melee/tail-thrash": "628713175", + "activity/victory-pose-back-flip": "2227634241" + } + }, + "body-sumo": { + "bones": [ + {"name": "@root"}, {"name": "@pivot-main", "parent": "@root"}, {"name": "@pivot-back", "parent": "@pivot-main", "x": 232, "y": 264.98, "color": "ff0101ff"}, + {"name": "@pivot-center", "parent": "@pivot-back", "x": -243, "y": -5.25, "color": "ff0101ff"}, + {"name": "@axie", "parent": "@pivot-center", "length": 213.28, "rotation": 179.04, "x": 224.28, "y": 5.16}, {"name": "@back", "parent": "@axie", "rotation": -179.04, "x": 65.14, "y": -230.05}, + {"name": "@body", "parent": "@axie", "length": 226.28, "rotation": -8.35, "x": 224.58, "y": -0.53}, {"name": "@ear-left", "parent": "@axie", "rotation": -179.04, "x": 135.95, "y": -217.87}, + {"name": "@ear-right", "parent": "@axie", "rotation": -179.04, "x": 467.52, "y": -249.32}, {"name": "@eyes", "parent": "@axie", "rotation": -179.04, "x": 423.48, "y": -128.03}, + {"name": "@horn", "parent": "@axie", "rotation": -179.04, "x": 373.17, "y": -228.89}, + {"name": "@leg-back-left", "parent": "@axie", "length": 82.39, "rotation": 99.1, "x": -7.41, "y": 183.62, "transform": "noScale"}, + {"name": "@leg-front-left", "parent": "@axie", "length": 87.35, "rotation": 89.4, "x": 146.09, "y": 187.6, "transform": "noScale"}, + {"name": "@leg-front-right", "parent": "@axie", "length": 90.99, "rotation": 75.06, "x": 455.08, "y": 185.83, "transform": "noScale"}, + {"name": "@mouth", "parent": "@axie", "rotation": -179.04, "x": 421.46, "y": -8.05}, + {"name": "body-pattern", "parent": "@body", "rotation": -170.69, "x": -287.64, "y": -107.32, "transform": "noScale"}, {"name": "@shadow", "parent": "@root", "color": "e6d713ff"}, + {"name": "@tail", "parent": "@axie", "rotation": -179.04, "x": -38.64, "y": 114.26}, + {"name": "leg-front-right-IK", "parent": "@pivot-main", "x": -263.59, "y": -3.12, "transform": "noScale", "color": "ff3f00ff"}, + {"name": "leg-front-left-IK", "parent": "@pivot-main", "x": 73.81, "y": -7.07, "transform": "noScale", "color": "ff3f00ff"}, + {"name": "leg-back-left-IK", "parent": "@pivot-main", "x": 246.97, "y": 2.5, "transform": "noScale", "color": "ff3f00ff"}, {"name": "@ball", "parent": "@root", "y": 191, "color": "f3981bff"}, + {"name": "ball", "parent": "@ball", "y": -191, "color": "f4a729ff"}, {"name": "@body-neck", "parent": "@pivot-center", "x": -161.89, "y": -53.75, "color": "ff0101ff"}, + {"name": "@body-ground", "parent": "@pivot-main", "x": 220, "transform": "noRotationOrReflection", "color": "ff0101ff"}, + {"name": "@body-hip", "parent": "@pivot-center", "x": 240.11, "y": 55.25, "color": "ff0101ff"}, + {"name": "@body-air", "parent": "@pivot-back", "x": 63, "y": 365, "transform": "noRotationOrReflection", "color": "ff0101ff"}, + {"name": "@body-cheek", "parent": "@pivot-center", "x": 15.11, "y": 47.25, "color": "ff0101ff"} + ], + "slots": [ + {"name": "shadow", "bone": "@shadow", "attachment": "shadow"}, {"name": "ball", "bone": "ball"}, {"name": "leg-front-right", "bone": "@leg-front-right", "attachment": "sumo-leg-front-right"}, + {"name": "body", "bone": "@body", "attachment": "body-sumo"}, {"name": "body-pattern", "bone": "body-pattern", "attachment": "body-pattern"}, + {"name": "leg-back-left", "bone": "@leg-back-left", "attachment": "sumo-leg-back-left"}, {"name": "leg-front-left", "bone": "@leg-front-left", "attachment": "sumo-leg-front-left"}, + {"name": "body-hip", "bone": "@body-hip", "attachment": "body-hip"}, {"name": "body-neck", "bone": "@body-neck", "attachment": "body-neck"}, + {"name": "body-ground", "bone": "@body-ground", "attachment": "body-ground"}, {"name": "body-air", "bone": "@body-air", "attachment": "body-air"}, + {"name": "body-cheek", "bone": "@body-cheek", "attachment": "body-cheek"} + ], + "ik": [ + {"name": "leg-back-left-IK", "order": 2, "bones": ["@leg-back-left"], "target": "leg-back-left-IK"}, + {"name": "leg-front-left-IK", "order": 1, "bones": ["@leg-front-left"], "target": "leg-front-left-IK"}, + {"name": "leg-front-right-IK", "bones": ["@leg-front-right"], "target": "leg-front-right-IK"} + ], + "skins": [ + { + "name": "default", + "attachments": { + "ball": {"ball": {"y": 186.0, "width": 392.94117647058823, "height": 400.0, "path": "body-normal.ball", "x": 0.029411764705884025}}, + "body": {"body-sumo": {"x": 16.092352941176465, "y": -31.59823529411768, "rotation": -170.69, "width": 788.2352941176471, "height": 621.1764705882354, "path": "body-sumo.body-sumo"}}, + "body-pattern": {"body-pattern": {"x": -40.97882352941177, "y": -23.305294117647072, "width": 174.11764705882354, "height": 256.47058823529414, "path": "body-sumo.body-pattern"}}, + "leg-back-left": { + "sumo-leg-back-left": { + "x": 35.715294117647055, "y": -2.7788235294117682, "rotation": 69.54, "width": 103.52941176470588, "height": 94.11764705882354, "path": "body-normal.sumo-leg-back-left" + }, + "sumo-leg-back-left-long": { + "x": 35.38823529411764, "y": 3.015882352941174, "rotation": 216.69, "width": 98.82352941176471, "height": 110.58823529411765, "path": "body-normal.sumo-leg-back-left-long" + }, + "sumo-leg-back-left-stretch": { + "x": 34.941764705882356, "y": 5.295294117647058, "rotation": 37.34, "width": 101.17647058823529, "height": 103.52941176470588, "path": "body-normal.sumo-leg-back-left-stretch" + } + }, + "leg-front-left": { + "sumo-leg-front-left": { + "x": 39.735882352941175, "y": -4.921764705882355, "rotation": 83.6, "width": 110.58823529411765, "height": 98.82352941176471, "path": "body-normal.sumo-leg-front-left" + }, + "sumo-leg-front-left-long": { + "x": 44.705882352941174, "y": 1.959411764705884, "rotation": 221.6, "width": 110.58823529411765, "height": 112.94117647058823, "path": "body-normal.sumo-leg-front-left-long" + }, + "sumo-leg-front-left-stretch": { + "x": 36.08588235294118, "y": 0.125294117647058, "rotation": 151.6, "width": 110.58823529411765, "height": 103.52941176470588, "path": "body-normal.sumo-leg-front-left-stretch" + } + }, + "leg-front-right": { + "sumo-leg-front-right": { + "x": 42.945882352941176, "y": 8.718235294117644, "rotation": 101.78, "width": 110.58823529411765, "height": 98.82352941176471, "path": "body-normal.sumo-leg-front-right" + }, + "sumo-leg-front-right-long": { + "x": 40.17588235294117, "y": -1.5005882352941158, "rotation": 219.78, "width": 110.58823529411765, "height": 112.94117647058823, "path": "body-normal.sumo-leg-front-right-long" + }, + "sumo-leg-front-right-stretch": { + "x": 44.34882352941176, "y": 4.211764705882355, "rotation": 137.24, "width": 105.88235294117648, "height": 101.17647058823529, "path": "body-normal.sumo-leg-front-right-stretch" + } + }, + "shadow": {"shadow": {"width": 1047.0588235294117, "height": 209.41176470588235, "path": "body-sumo.shadow", "x": 0.9705882352941444, "y": 0.794117647058826}}, + "body-air": { + "body-air1a_00": {"x": 1.37, "y": 35.21, "width": 209.41176470588235, "height": 129.41176470588235, "path": "body-accessory.body-air1a_00"}, + "body-air1a_01": {"x": 1.37, "y": 35.21, "width": 209.41176470588235, "height": 129.41176470588235, "path": "body-accessory.body-air1a_01"}, + "body-air1a_02": {"x": 1.37, "y": 35.21, "width": 209.41176470588235, "height": 129.41176470588235, "path": "body-accessory.body-air1a_02"}, + "body-air1a_03": {"x": 1.37, "y": 35.21, "width": 209.41176470588235, "height": 129.41176470588235, "path": "body-accessory.body-air1a_03"}, + "body-air1a_04": {"x": 1.37, "y": 35.21, "width": 209.41176470588235, "height": 129.41176470588235, "path": "body-accessory.body-air1a_04"}, + "body-air1a_05": {"x": 1.37, "y": 35.21, "width": 209.41176470588235, "height": 129.41176470588235, "path": "body-accessory.body-air1a_05"}, + "body-air1a_06": {"x": 1.37, "y": 35.21, "width": 209.41176470588235, "height": 129.41176470588235, "path": "body-accessory.body-air1a_06"}, + "body-air1a_07": {"x": 1.37, "y": 35.21, "width": 209.41176470588235, "height": 129.41176470588235, "path": "body-accessory.body-air1a_07"}, + "body-air1b_00": {"x": 1.37, "y": 35.21, "width": 155.29411764705884, "height": 192.94117647058823, "path": "body-accessory.body-air1b_00"}, + "body-air1b_01": {"x": 1.37, "y": 35.21, "width": 155.29411764705884, "height": 192.94117647058823, "path": "body-accessory.body-air1b_01"}, + "body-air1b_02": {"x": 1.37, "y": 35.21, "width": 155.29411764705884, "height": 192.94117647058823, "path": "body-accessory.body-air1b_02"}, + "body-air1c_00": {"x": 1.37, "y": 35.21, "width": 200.0, "height": 289.4117647058824, "path": "body-accessory.body-air1c_00"}, + "body-air1c_01": {"x": 1.37, "y": 35.21, "width": 200.0, "height": 289.4117647058824, "path": "body-accessory.body-air1c_01"}, + "body-air1c_02": {"x": 1.37, "y": 35.21, "width": 200.0, "height": 289.4117647058824, "path": "body-accessory.body-air1c_02"}, + "body-air1c_03": {"x": 1.37, "y": 35.21, "width": 200.0, "height": 289.4117647058824, "path": "body-accessory.body-air1c_03"}, + "body-air1d_00": {"x": 1.37, "y": 35.21, "width": 204.7058823529412, "height": 272.94117647058823, "path": "body-accessory.body-air1d_00"}, + "body-air1d_01": {"x": 1.37, "y": 35.21, "width": 204.7058823529412, "height": 272.94117647058823, "path": "body-accessory.body-air1d_01"}, + "body-air1d_02": {"x": 1.37, "y": 35.21, "width": 204.7058823529412, "height": 272.94117647058823, "path": "body-accessory.body-air1d_02"}, + "body-air1d_03": {"x": 1.37, "y": 35.21, "width": 204.7058823529412, "height": 272.94117647058823, "path": "body-accessory.body-air1d_03"} + }, + "body-cheek": { + "body-cheek1a": {"x": 1.52, "y": 3.04, "width": 58.82352941176471, "height": 58.82352941176471, "path": "body-accessory.body-cheek1a"}, + "body-cheek1b": {"x": 1.52, "y": 3.04, "width": 49.411764705882355, "height": 77.64705882352942, "path": "body-accessory.body-cheek1b"}, + "body-cheek1c": {"x": 1.52, "y": 3.04, "width": 49.411764705882355, "height": 77.64705882352942, "path": "body-accessory.body-cheek1c"}, + "body-cheek1d": {"x": 1.52, "y": 3.04, "width": 49.411764705882355, "height": 75.29411764705883, "path": "body-accessory.body-cheek1d"}, + "body-cheek1e": {"x": 1.52, "y": 3.04, "width": 54.11764705882353, "height": 80.0, "path": "body-accessory.body-cheek1e"}, + "body-cheek1f": {"x": 1.52, "y": 3.04, "width": 56.470588235294116, "height": 58.82352941176471, "path": "body-accessory.body-cheek1f"}, + "body-cheek1g": {"x": 1.52, "y": 3.04, "width": 103.52941176470588, "height": 96.47058823529412, "path": "body-accessory.body-cheek1g"} + }, + "body-ground": { + "body-ground1a_00": {"x": 4.75, "y": 123.01, "width": 254.11764705882354, "height": 272.94117647058823, "path": "body-accessory.body-ground1a_00"}, + "body-ground1a_01": {"x": 4.75, "y": 123.01, "width": 254.11764705882354, "height": 272.94117647058823, "path": "body-accessory.body-ground1a_01"}, + "body-ground1a_02": {"x": 4.75, "y": 123.01, "width": 254.11764705882354, "height": 272.94117647058823, "path": "body-accessory.body-ground1a_02"}, + "body-ground1a_03": {"x": 4.75, "y": 123.01, "width": 254.11764705882354, "height": 272.94117647058823, "path": "body-accessory.body-ground1a_03"} + }, + "body-hip": { + "body-hip1a": {"x": -16.0, "width": 108.23529411764706, "height": 138.8235294117647, "path": "body-accessory.body-hip1a", "y": 0.0}, + "body-hip1b": {"x": -16.0, "width": 209.41176470588235, "height": 214.11764705882354, "path": "body-accessory.body-hip1b", "y": 0.0}, + "body-hip1c": {"x": -16.0, "width": 122.3529411764706, "height": 157.64705882352942, "path": "body-accessory.body-hip1c", "y": 0.0}, + "body-hip1d": {"x": -16.0, "width": 202.35294117647058, "height": 143.52941176470588, "path": "body-accessory.body-hip1d", "y": 0.0} + }, + "body-neck": { + "body-neck1a": {"x": -5.4, "y": -54.79, "width": 91.76470588235294, "height": 96.47058823529412, "path": "body-accessory.body-neck1a"}, + "body-neck1b": {"x": -5.4, "y": -54.79, "width": 103.52941176470588, "height": 117.64705882352942, "path": "body-accessory.body-neck1b"}, + "body-neck1c": {"x": -5.4, "y": -54.79, "width": 80.0, "height": 110.58823529411765, "path": "body-accessory.body-neck1c"}, + "body-neck1d": {"x": -5.4, "y": -54.79, "width": 122.3529411764706, "height": 101.17647058823529, "path": "body-accessory.body-neck1d"}, + "body-neck1e": {"x": -5.4, "y": -54.79, "width": 89.41176470588236, "height": 105.88235294117648, "path": "body-accessory.body-neck1e"}, + "body-neck1f": {"x": -5.4, "y": -54.79, "width": 80.0, "height": 80.0, "path": "body-accessory.body-neck1f"} + } + } + } + ], + "events": {"hit": {}, "hit-buff": {}, "jump": {}, "start-attack": {}}, + "keyAnimations": { + "activity/appear": "3921179016", + "attack/melee/multi-attack/attack-01": "2457312172", + "attack/melee/multi-attack/attack-02": "604960256", + "attack/melee/multi-attack/attack-03": "3835769860", + "activity/bath": "3305387968", + "attack/ranged/cast-fly": "640070672", + "attack/ranged/cast-high": "3530118163", + "attack/ranged/cast-low": "2870090226", + "attack/ranged/cast-multi": "151119", + "attack/ranged/cast-tail": "1771510038", + "activity/eat-bite": "1137807767", + "activity/eat-chew": "1988236421", + "attack/melee/multi-attack/end": "3487453701", + "activity/entrance": "3768378365", + "defense/evade": "1735454995", + "activity/evolve": "649307630", + "battle/get-buff": "3957953988", + "battle/get-debuff": "336700057", + "defense/hit-by-normal": "4129179734", + "defense/hit-by-normal-crit": "3123502684", + "defense/hit-by-normal-dramatic": "439534949", + "defense/hit-by-ranged-attack": "3352800463", + "defense/hit-with-shield": "3911401836", + "attack/melee/horn-gore": "2824479785", + "attack/melee/mouth-bite": "137987643", + "action/move-back": "3766271173", + "action/move-forward": "2945160014", + "attack/melee/multi-attack": "1873246458", + "action/idle/normal": "3518390074", + "attack/melee/normal-attack": "4041893364", + "draft/normal-draft": "527763419", + "activity/prepare": "405864717", + "action/idle/random-01": "3130386156", + "action/idle/random-02": "2103635194", + "action/idle/random-03": "2146505268", + "action/idle/random-04": "488301700", + "action/idle/random-05": "2745614147", + "action/run": "503804557", + "draft/run-origin": "4275354805", + "attack/melee/shrimp": "689651440", + "activity/sleep": "100562494", + "attack/melee/multi-attack/start": "2382944508", + "attack/melee/tail-multi-slap": "2919733098", + "attack/melee/tail-roll": "3361002765", + "attack/melee/tail-smash": "2626719915", + "attack/melee/tail-thrash": "660880126", + "activity/victory-pose-back-flip": "2227634241" + } + }, + "reptile-10": { + "bones": [ + {"name": "@root"}, {"name": "@pivot-main", "parent": "@root"}, {"name": "@pivot-back", "parent": "@pivot-main", "x": 205, "y": 180, "color": "ff0101ff"}, + {"name": "@pivot-center", "parent": "@pivot-back", "x": -215.11, "y": -5.25, "color": "ff0101ff"}, + {"name": "@axie", "parent": "@pivot-center", "length": 213.28, "rotation": 179.04, "x": 196.39, "y": 5.16}, {"name": "@back", "parent": "@axie", "rotation": -179.04, "x": 37.63, "y": -198.19}, + {"name": "back", "parent": "@back", "length": 149.41, "rotation": 64, "x": -51.97, "y": -9.7, "transform": "noScale"}, + {"name": "@body", "parent": "@axie", "length": 226.28, "rotation": -8.35, "x": 224.58, "y": -0.53}, {"name": "@ear-left", "parent": "@axie", "rotation": -179.04, "x": 112.7, "y": -203.23}, + {"name": "ear-left", "parent": "@ear-left", "length": 113.61, "rotation": 52, "x": -27, "y": -17, "transform": "noScale"}, + {"name": "@ear-right", "parent": "@axie", "rotation": -179.04, "x": 405.28, "y": -235.33}, + {"name": "ear-right", "parent": "@ear-right", "length": 119.39, "rotation": 93, "x": -40, "y": -54, "transform": "noScale"}, + {"name": "@eyes", "parent": "@axie", "rotation": -179.04, "x": 384.24, "y": -113.67}, {"name": "@horn", "parent": "@axie", "rotation": -179.04, "x": 327.92, "y": -214.63}, + {"name": "horn", "parent": "@horn", "length": 176.72, "rotation": 90, "y": 18, "transform": "noScale"}, + {"name": "@leg-back-left", "parent": "@axie", "length": 76.4, "rotation": 100.96, "x": -15.3, "y": 102.56, "transform": "noScale"}, + {"name": "@leg-front-left", "parent": "@axie", "length": 51.19, "rotation": 93.86, "x": 134.77, "y": 149.55, "transform": "noScale"}, + {"name": "@leg-front-right", "parent": "@axie", "length": 74.83, "rotation": 83.2, "x": 382.95, "y": 121.78, "transform": "noScale"}, + {"name": "@mouth", "parent": "@axie", "rotation": -179.04, "x": 382.23, "y": 6.31}, + {"name": "body-pattern", "parent": "@body", "rotation": -170.69, "x": -267.21, "y": -49.4, "transform": "noScale"}, {"name": "@shadow", "parent": "@root", "color": "e6d713ff"}, + {"name": "@tail", "parent": "@axie", "rotation": -179.04, "x": -11.76, "y": 61.72}, + {"name": "tail", "parent": "@tail", "length": 203.67, "rotation": 20, "x": 21, "y": 37, "transform": "noScale"}, + {"name": "leg-front-right-IK", "parent": "@pivot-main", "x": -195.99, "y": -10.21, "color": "ff3f00ff"}, + {"name": "leg-front-left-IK", "parent": "@pivot-main", "x": 42.3, "y": -18.42, "color": "ff3f00ff"}, + {"name": "leg-back-left-IK", "parent": "@pivot-main", "x": 208.57, "y": 1.35, "color": "ff3f00ff"}, {"name": "@ball", "parent": "@root", "y": 191, "color": "f3981bff"}, + {"name": "ball", "parent": "@ball", "y": -191, "color": "f4a729ff"} + ], + "slots": [ + {"name": "shadow", "bone": "@shadow", "attachment": "shadow"}, {"name": "ball", "bone": "ball"}, {"name": "leg-front-right", "bone": "@leg-front-right", "attachment": "leg-front-right"}, + {"name": "ear-right", "bone": "ear-right"}, {"name": "tail", "bone": "tail", "attachment": "tail"}, {"name": "back", "bone": "back", "attachment": "back"}, + {"name": "leg-back-left", "bone": "@leg-back-left", "attachment": "leg-back-left"}, {"name": "body", "bone": "@body", "attachment": "body"}, {"name": "body-pattern", "bone": "body-pattern"}, + {"name": "leg-front-left", "bone": "@leg-front-left", "attachment": "leg-front-left"}, {"name": "eyes", "bone": "@eyes", "attachment": "eyes"}, + {"name": "mouth", "bone": "@mouth", "attachment": "mouth"}, {"name": "ear-left", "bone": "ear-left", "attachment": "ear-left"}, {"name": "horn", "bone": "horn", "attachment": "horn"} + ], + "ik": [ + {"name": "leg-back-left-IK", "order": 2, "bones": ["@leg-back-left"], "target": "leg-back-left-IK"}, + {"name": "leg-front-left-IK", "order": 1, "bones": ["@leg-front-left"], "target": "leg-front-left-IK"}, + {"name": "leg-front-right-IK", "bones": ["@leg-front-right"], "target": "leg-front-right-IK"} + ], + "skins": [ + { + "name": "default", + "attachments": { + "back": {"back": {"x": 50.01882352941177, "y": 13.988823529411768, "rotation": -64, "width": 385.88235294117646, "height": 385.88235294117646, "path": "reptile-10.back"}}, + "ear-left": {"ear-left": {"x": 38.66117647058823, "y": -37.690588235294115, "rotation": -52, "width": 134.11764705882354, "height": 112.94117647058823, "path": "reptile-10.ear-left"}}, + "eyes": { + "eyes": {"x": 34.39, "y": 16.919411764705885, "width": 320.0, "height": 112.94117647058823, "path": "reptile-10.eyes"}, + "eyes-angry": {"x": 34.39, "y": 20.213529411764704, "width": 320.0, "height": 122.3529411764706, "path": "reptile-10.eyes-angry"}, + "eyes-happy": {"x": 24.80176470588235, "y": 23.095882352941175, "width": 261.1764705882353, "height": 110.58823529411765, "path": "reptile-10.eyes-happy"}, + "eyes-shut": {"x": 23.15470588235293, "y": 18.44882352941176, "width": 256.47058823529414, "height": 105.88235294117648, "path": "reptile-10.eyes-shut"} + }, + "horn": {"horn": {"x": 88.00764705882352, "y": -36.89, "rotation": -90, "width": 251.76470588235296, "height": 200.0, "path": "reptile-10.horn"}}, + "mouth": { + "mouth": {"x": 20.44882352941177, "y": 40.80176470588235, "width": 185.88235294117646, "height": 61.1764705882353, "path": "reptile-10.mouth"}, + "mouth-bite": {"x": 22.095882352941175, "y": 30.095882352941175, "width": 190.58823529411765, "height": 70.58823529411765, "path": "reptile-10.mouth-bite"}, + "mouth-open": {"x": 20.44882352941177, "y": 15.978235294117653, "width": 185.88235294117646, "height": 138.8235294117647, "path": "reptile-10.mouth-open"}, + "mouth-smile": {"x": 20.21352941176471, "y": 44.44882352941176, "width": 202.35294117647058, "height": 65.88235294117648, "path": "reptile-10.mouth-smile"} + }, + "tail": {"tail": {"x": 49.244705882352925, "y": -30.632941176470595, "rotation": -20, "width": 336.47058823529414, "height": 204.7058823529412, "path": "reptile-10.tail"}} + } + } + ], + "events": {"hit": {}, "hit-buff": {}, "jump": {}, "start-attack": {}}, + "keyAnimations": { + "activity/appear": "1023093953", + "activity/bath": "3305387968", + "attack/ranged/cast-fly": "4180526371", + "attack/ranged/cast-high": "164191126", + "attack/ranged/cast-low": "198813017", + "attack/ranged/cast-multi": "151119", + "attack/ranged/cast-tail": "997902532", + "activity/eat-bite": "1137807767", + "activity/eat-chew": "1988236421", + "activity/entrance": "3768378365", + "defense/evade": "1735454995", + "activity/evolve": "649307630", + "battle/get-buff": "1455190363", + "battle/get-debuff": "606904312", + "defense/hit-by-normal": "2045974966", + "defense/hit-by-normal-crit": "2130010601", + "defense/hit-by-normal-dramatic": "3823092125", + "defense/hit-by-ranged-attack": "2224561612", + "defense/hit-with-shield": "390714790", + "attack/melee/horn-gore": "1327954218", + "attack/melee/mouth-bite": "2237748264", + "action/move-back": "3766271173", + "action/move-forward": "2945160014", + "attack/melee/multi-attack": "905926802", + "action/idle/normal": "1659336865", + "attack/melee/normal-attack": "3305373483", + "activity/prepare": "405864717", + "action/idle/random-01": "554401889", + "action/idle/random-02": "1085666627", + "action/idle/random-03": "2021333900", + "action/idle/random-04": "1003789695", + "action/idle/random-05": "2745614147", + "action/run": "1438840721", + "draft/run-origin": "3577885069", + "attack/melee/shrimp": "3833448733", + "activity/sleep": "100562494", + "attack/melee/tail-multi-slap": "3317139533", + "attack/melee/tail-roll": "3108617565", + "attack/melee/tail-smash": "519942130", + "attack/melee/tail-thrash": "628713175", + "activity/victory-pose-back-flip": "2227634241" + } + }, + "body-frosty": { + "bones": [ + {"name": "@root"}, {"name": "@pivot-main", "parent": "@root"}, {"name": "@pivot-back", "parent": "@pivot-main", "x": 205, "y": 180, "color": "ff0101ff"}, + {"name": "@pivot-center", "parent": "@pivot-back", "x": -215.11, "y": -5.25, "color": "ff0101ff"}, + {"name": "@axie", "parent": "@pivot-center", "length": 213.28, "rotation": 179.04, "x": 196.39, "y": 5.16}, {"name": "@back", "parent": "@axie", "rotation": -179.04, "x": 37.63, "y": -198.19}, + {"name": "@body", "parent": "@axie", "length": 226.28, "rotation": -8.35, "x": 224.58, "y": -0.53}, {"name": "@ear-left", "parent": "@axie", "rotation": -179.04, "x": 112.7, "y": -203.23}, + {"name": "@ear-right", "parent": "@axie", "rotation": -179.04, "x": 405.28, "y": -235.33}, {"name": "@eyes", "parent": "@axie", "rotation": -179.04, "x": 384.24, "y": -113.67}, + {"name": "@horn", "parent": "@axie", "rotation": -179.04, "x": 327.92, "y": -214.63}, + {"name": "@leg-back-left", "parent": "@axie", "length": 66.78, "rotation": 97.07, "x": -15.3, "y": 102.56, "transform": "noScale"}, + {"name": "@leg-front-left", "parent": "@axie", "length": 68.04, "rotation": 84.88, "x": 135.05, "y": 132.6, "transform": "noScale"}, + {"name": "@leg-front-right", "parent": "@axie", "length": 70.32, "rotation": 92.53, "x": 382.95, "y": 121.78, "transform": "noScale"}, + {"name": "@mouth", "parent": "@axie", "rotation": -179.04, "x": 382.23, "y": 6.31}, {"name": "@shadow", "parent": "@root", "color": "e6d713ff"}, + {"name": "@tail", "parent": "@axie", "rotation": -179.04, "x": -11.76, "y": 61.72}, {"name": "leg-front-right-IK", "parent": "@pivot-main", "x": -195.99, "y": -10.21, "color": "ff3f00ff"}, + {"name": "leg-front-left-IK", "parent": "@pivot-main", "x": 42.3, "y": -18.42, "color": "ff3f00ff"}, + {"name": "leg-back-left-IK", "parent": "@pivot-main", "x": 208.57, "y": 1.35, "color": "ff3f00ff"}, {"name": "@ball", "parent": "@root", "y": 191, "color": "f3981bff"}, + {"name": "ball", "parent": "@ball", "y": -191, "color": "f4a729ff"}, {"name": "body-bell", "parent": "@body", "rotation": -170.69, "x": 121.75, "y": 84.01}, + {"name": "@body-ground", "parent": "@pivot-main", "x": 220, "transform": "noRotationOrReflection", "color": "ff0101ff"}, + {"name": "@body-air", "parent": "@pivot-back", "x": 63, "y": 365, "transform": "noRotationOrReflection", "color": "ff0101ff"}, + {"name": "@body-cheek", "parent": "@pivot-center", "x": 15.11, "y": 47.25, "color": "ff0101ff"} + ], + "slots": [ + {"name": "shadow", "bone": "@shadow", "attachment": "shadow"}, {"name": "ball", "bone": "ball"}, {"name": "leg-front-right", "bone": "@leg-front-right", "attachment": "xmas-leg-front-right"}, + {"name": "leg-front-left", "bone": "@leg-front-left", "attachment": "xmas-leg-front-left"}, {"name": "leg-back-left", "bone": "@leg-back-left", "attachment": "xmas-leg-back-left"}, + {"name": "body", "bone": "@body", "attachment": "body-xmas-01"}, {"name": "body-bell", "bone": "body-bell", "attachment": "body-bell"}, + {"name": "body-ground", "bone": "@body-ground", "attachment": "body-ground"}, {"name": "body-air", "bone": "@body-air", "attachment": "body-air"}, + {"name": "body-cheek", "bone": "@body-cheek", "attachment": "body-cheek"} + ], + "ik": [ + {"name": "leg-back-left-IK", "order": 2, "bones": ["@leg-back-left"], "target": "leg-back-left-IK"}, + {"name": "leg-front-left-IK", "order": 1, "bones": ["@leg-front-left"], "target": "leg-front-left-IK"}, + {"name": "leg-front-right-IK", "bones": ["@leg-front-right"], "target": "leg-front-right-IK"} + ], + "skins": [ + { + "name": "default", + "attachments": { + "ball": {"ball": {"y": 186.0, "width": 392.94117647058823, "height": 400.0, "path": "body-normal.ball", "x": 0.029411764705884025}}, + "body": {"body-xmas-01": {"x": -3.0, "y": -73.74176470588237, "rotation": -170.69, "width": 720.0, "height": 538.8235294117648, "path": "body-frosty.body-xmas-01"}}, + "body-bell": {"body-bell": {"x": 0.5476470588235289, "y": -21.520588235294117, "width": 91.76470588235294, "height": 72.94117647058823, "path": "body-frosty.body-bell"}}, + "leg-back-left": { + "xmas-leg-back-left": {"x": 19.39647058823529, "y": -3.79, "rotation": 83.45, "width": 117.64705882352942, "height": 120.0, "path": "body-normal.xmas-leg-back-left"}, + "xmas-leg-back-left-long": {"x": 41.53, "y": 2.372941176470587, "rotation": -177.41, "width": 120.0, "height": 115.29411764705883, "path": "body-normal.xmas-leg-back-left-long"}, + "xmas-leg-back-left-stretch": {"x": 33.94647058823529, "y": 3.69, "rotation": 91.33, "width": 117.64705882352942, "height": 120.0, "path": "body-normal.xmas-leg-back-left-stretch"} + }, + "leg-front-left": { + "xmas-leg-front-left": { + "x": 13.40647058823529, "y": -5.717058823529413, "rotation": 95.65, "width": 117.64705882352942, "height": 115.29411764705883, "path": "body-normal.xmas-leg-front-left" + }, + "xmas-leg-front-left-long": {"x": 36.04, "y": 2.432941176470587, "rotation": 175.41, "width": 120.0, "height": 115.29411764705883, "path": "body-normal.xmas-leg-front-left-long"}, + "xmas-leg-front-left-stretch": {"x": 28.88, "y": 4.602941176470587, "rotation": 131.32, "width": 120.0, "height": 115.29411764705883, "path": "body-normal.xmas-leg-front-left-stretch"} + }, + "leg-front-right": { + "xmas-leg-front-right": {"x": 18.93647058823529, "y": 7.74, "rotation": 87.96, "width": 117.64705882352942, "height": 120.0, "path": "body-normal.xmas-leg-front-right"}, + "xmas-leg-front-right-long": { + "x": 33.305882352941175, "y": -2.040588235294116, "rotation": 177.64, "width": 110.58823529411765, "height": 112.94117647058823, "path": "body-normal.xmas-leg-front-right-long" + }, + "xmas-leg-front-right-stretch": { + "x": 28.845882352941175, "y": -0.8205882352941161, "rotation": 151.34, "width": 110.58823529411765, "height": 112.94117647058823, "path": "body-normal.xmas-leg-front-right-stretch" + } + }, + "shadow": {"shadow": {"width": 945.8823529411765, "height": 190.58823529411765, "path": "body-frosty.shadow", "x": 0.05882352941176805, "y": 0.20588235294117396}}, + "body-air": { + "body-air1a_00": {"x": 1.37, "y": 35.21, "width": 209.41176470588235, "height": 129.41176470588235, "path": "body-accessory.body-air1a_00"}, + "body-air1a_01": {"x": 1.37, "y": 35.21, "width": 209.41176470588235, "height": 129.41176470588235, "path": "body-accessory.body-air1a_01"}, + "body-air1a_02": {"x": 1.37, "y": 35.21, "width": 209.41176470588235, "height": 129.41176470588235, "path": "body-accessory.body-air1a_02"}, + "body-air1a_03": {"x": 1.37, "y": 35.21, "width": 209.41176470588235, "height": 129.41176470588235, "path": "body-accessory.body-air1a_03"}, + "body-air1a_04": {"x": 1.37, "y": 35.21, "width": 209.41176470588235, "height": 129.41176470588235, "path": "body-accessory.body-air1a_04"}, + "body-air1a_05": {"x": 1.37, "y": 35.21, "width": 209.41176470588235, "height": 129.41176470588235, "path": "body-accessory.body-air1a_05"}, + "body-air1a_06": {"x": 1.37, "y": 35.21, "width": 209.41176470588235, "height": 129.41176470588235, "path": "body-accessory.body-air1a_06"}, + "body-air1a_07": {"x": 1.37, "y": 35.21, "width": 209.41176470588235, "height": 129.41176470588235, "path": "body-accessory.body-air1a_07"}, + "body-air1b_00": {"x": 1.37, "y": 35.21, "width": 155.29411764705884, "height": 192.94117647058823, "path": "body-accessory.body-air1b_00"}, + "body-air1b_01": {"x": 1.37, "y": 35.21, "width": 155.29411764705884, "height": 192.94117647058823, "path": "body-accessory.body-air1b_01"}, + "body-air1b_02": {"x": 1.37, "y": 35.21, "width": 155.29411764705884, "height": 192.94117647058823, "path": "body-accessory.body-air1b_02"}, + "body-air1c_00": {"x": 1.37, "y": 35.21, "width": 200.0, "height": 289.4117647058824, "path": "body-accessory.body-air1c_00"}, + "body-air1c_01": {"x": 1.37, "y": 35.21, "width": 200.0, "height": 289.4117647058824, "path": "body-accessory.body-air1c_01"}, + "body-air1c_02": {"x": 1.37, "y": 35.21, "width": 200.0, "height": 289.4117647058824, "path": "body-accessory.body-air1c_02"}, + "body-air1c_03": {"x": 1.37, "y": 35.21, "width": 200.0, "height": 289.4117647058824, "path": "body-accessory.body-air1c_03"}, + "body-air1d_00": {"x": 1.37, "y": 35.21, "width": 204.7058823529412, "height": 272.94117647058823, "path": "body-accessory.body-air1d_00"}, + "body-air1d_01": {"x": 1.37, "y": 35.21, "width": 204.7058823529412, "height": 272.94117647058823, "path": "body-accessory.body-air1d_01"}, + "body-air1d_02": {"x": 1.37, "y": 35.21, "width": 204.7058823529412, "height": 272.94117647058823, "path": "body-accessory.body-air1d_02"}, + "body-air1d_03": {"x": 1.37, "y": 35.21, "width": 204.7058823529412, "height": 272.94117647058823, "path": "body-accessory.body-air1d_03"} + }, + "body-cheek": { + "body-cheek1a": {"x": 1.52, "y": 3.04, "width": 58.82352941176471, "height": 58.82352941176471, "path": "body-accessory.body-cheek1a"}, + "body-cheek1b": {"x": 1.52, "y": 3.04, "width": 49.411764705882355, "height": 77.64705882352942, "path": "body-accessory.body-cheek1b"}, + "body-cheek1c": {"x": 1.52, "y": 3.04, "width": 49.411764705882355, "height": 77.64705882352942, "path": "body-accessory.body-cheek1c"}, + "body-cheek1d": {"x": 1.52, "y": 3.04, "width": 49.411764705882355, "height": 75.29411764705883, "path": "body-accessory.body-cheek1d"}, + "body-cheek1e": {"x": 1.52, "y": 3.04, "width": 54.11764705882353, "height": 80.0, "path": "body-accessory.body-cheek1e"}, + "body-cheek1f": {"x": 1.52, "y": 3.04, "width": 56.470588235294116, "height": 58.82352941176471, "path": "body-accessory.body-cheek1f"}, + "body-cheek1g": {"x": 1.52, "y": 3.04, "width": 103.52941176470588, "height": 96.47058823529412, "path": "body-accessory.body-cheek1g"} + }, + "body-ground": { + "body-ground1a_00": {"x": 4.75, "y": 123.01, "width": 254.11764705882354, "height": 272.94117647058823, "path": "body-accessory.body-ground1a_00"}, + "body-ground1a_01": {"x": 4.75, "y": 123.01, "width": 254.11764705882354, "height": 272.94117647058823, "path": "body-accessory.body-ground1a_01"}, + "body-ground1a_02": {"x": 4.75, "y": 123.01, "width": 254.11764705882354, "height": 272.94117647058823, "path": "body-accessory.body-ground1a_02"}, + "body-ground1a_03": {"x": 4.75, "y": 123.01, "width": 254.11764705882354, "height": 272.94117647058823, "path": "body-accessory.body-ground1a_03"} + } + } + } + ], + "events": {"hit": {}, "hit-buff": {}, "jump": {}, "start-attack": {}}, + "keyAnimations": { + "activity/appear": "3921179016", + "activity/bath": "3305387968", + "attack/ranged/cast-fly": "3722823556", + "attack/ranged/cast-high": "3577703416", + "attack/ranged/cast-low": "1793942137", + "attack/ranged/cast-multi": "151119", + "attack/ranged/cast-tail": "977217026", + "activity/eat-bite": "1137807767", + "activity/eat-chew": "2571197086", + "activity/entrance": "3768378365", + "defense/evade": "1735454995", + "activity/evolve": "649307630", + "battle/get-buff": "2993060391", + "battle/get-debuff": "2919546916", + "defense/hit-by-normal": "2695183231", + "defense/hit-by-normal-crit": "721863963", + "defense/hit-by-normal-dramatic": "2501809037", + "defense/hit-by-ranged-attack": "3309952905", + "defense/hit-with-shield": "228539860", + "attack/melee/horn-gore": "3177102970", + "attack/melee/mouth-bite": "1912445836", + "action/move-back": "3766271173", + "action/move-forward": "2945160014", + "attack/melee/multi-attack": "2627626635", + "action/idle/normal": "568166623", + "attack/melee/normal-attack": "3305373483", + "activity/prepare": "405864717", + "action/idle/random-01": "880116349", + "action/idle/random-02": "3151577093", + "action/idle/random-03": "2146505268", + "action/idle/random-04": "3708365579", + "action/idle/random-05": "2745614147", + "action/run": "378584637", + "draft/run-origin": "1973997258", + "attack/melee/shrimp": "244230390", + "status/sitting-duck": "1990830770", + "activity/sleep": "100562494", + "status/stun": "2745614147", + "attack/melee/tail-multi-slap": "2905793214", + "attack/melee/tail-roll": "3678751400", + "attack/melee/tail-smash": "2662497262", + "attack/melee/tail-thrash": "2102433122", + "activity/victory-pose-back-flip": "2227634241" + } + }, + "bug-04-lv2": { + "bones": [ + {"name": "@root"}, {"name": "@pivot-main", "parent": "@root"}, {"name": "@pivot-back", "parent": "@pivot-main", "x": 205, "y": 180, "color": "ff0101ff"}, + {"name": "@pivot-center", "parent": "@pivot-back", "x": -215.11, "y": -5.25, "color": "ff0101ff"}, + {"name": "@axie", "parent": "@pivot-center", "length": 213.28, "rotation": 179.04, "x": 196.39, "y": 5.16}, {"name": "@back", "parent": "@axie", "rotation": -179.04, "x": 37.63, "y": -198.19}, + {"name": "back", "parent": "@back", "length": 149.41, "rotation": 58, "x": -71.97, "y": -6.7, "transform": "noScale"}, + {"name": "@body", "parent": "@axie", "length": 226.28, "rotation": -8.35, "x": 224.58, "y": -0.53}, {"name": "@ear-left", "parent": "@axie", "rotation": -179.04, "x": 112.7, "y": -203.23}, + {"name": "ear-left", "parent": "@ear-left", "length": 113.61, "rotation": 90, "x": -27, "y": 19, "transform": "noScale"}, + {"name": "@ear-right", "parent": "@axie", "rotation": -179.04, "x": 405.28, "y": -235.33}, + {"name": "ear-right", "parent": "@ear-right", "length": 119.39, "rotation": 132, "x": -17, "y": -40, "transform": "noScale"}, + {"name": "@eyes", "parent": "@axie", "rotation": -179.04, "x": 384.24, "y": -113.67}, {"name": "@horn", "parent": "@axie", "rotation": -179.04, "x": 327.92, "y": -214.63}, + {"name": "horn", "parent": "@horn", "length": 176.72, "rotation": 90, "y": 18, "transform": "noScale"}, + {"name": "@leg-back-left", "parent": "@axie", "length": 76.4, "rotation": 100.96, "x": -15.3, "y": 102.56, "transform": "noScale"}, + {"name": "@leg-front-left", "parent": "@axie", "length": 51.19, "rotation": 93.86, "x": 134.77, "y": 149.55, "transform": "noScale"}, + {"name": "@leg-front-right", "parent": "@axie", "length": 74.83, "rotation": 83.2, "x": 382.95, "y": 121.78, "transform": "noScale"}, + {"name": "@mouth", "parent": "@axie", "rotation": -179.04, "x": 382.23, "y": 6.31}, + {"name": "body-pattern", "parent": "@body", "rotation": -170.69, "x": -267.21, "y": -49.4, "transform": "noScale"}, {"name": "@shadow", "parent": "@root", "color": "e6d713ff"}, + {"name": "@tail", "parent": "@axie", "rotation": -179.04, "x": -11.76, "y": 61.72}, + {"name": "tail", "parent": "@tail", "length": 203.67, "rotation": 36, "x": 16, "y": -13, "transform": "noScale"}, + {"name": "leg-front-right-IK", "parent": "@pivot-main", "x": -195.99, "y": -10.21, "color": "ff3f00ff"}, + {"name": "leg-front-left-IK", "parent": "@pivot-main", "x": 42.3, "y": -18.42, "color": "ff3f00ff"}, + {"name": "leg-back-left-IK", "parent": "@pivot-main", "x": 208.57, "y": 1.35, "color": "ff3f00ff"}, {"name": "@ball", "parent": "@root", "y": 191, "color": "f3981bff"}, + {"name": "ball", "parent": "@ball", "y": -191, "color": "f4a729ff"} + ], + "slots": [ + {"name": "shadow", "bone": "@shadow", "attachment": "shadow"}, {"name": "ball", "bone": "ball"}, {"name": "leg-front-right", "bone": "@leg-front-right", "attachment": "leg-front-right"}, + {"name": "ear-right", "bone": "ear-right", "attachment": "ear-right"}, {"name": "tail", "bone": "tail", "attachment": "tail"}, {"name": "back", "bone": "back", "attachment": "back"}, + {"name": "leg-back-left", "bone": "@leg-back-left", "attachment": "leg-back-left"}, {"name": "body", "bone": "@body", "attachment": "body"}, {"name": "body-pattern", "bone": "body-pattern"}, + {"name": "leg-front-left", "bone": "@leg-front-left", "attachment": "leg-front-left"}, {"name": "eyes", "bone": "@eyes", "attachment": "eyes"}, + {"name": "mouth", "bone": "@mouth", "attachment": "mouth"}, {"name": "ear-left", "bone": "ear-left", "attachment": "ear-left"}, {"name": "horn", "bone": "horn", "attachment": "horn"} + ], + "ik": [ + {"name": "leg-back-left-IK", "order": 2, "bones": ["@leg-back-left"], "target": "leg-back-left-IK"}, + {"name": "leg-front-left-IK", "order": 1, "bones": ["@leg-front-left"], "target": "leg-front-left-IK"}, + {"name": "leg-front-right-IK", "bones": ["@leg-front-right"], "target": "leg-front-right-IK"} + ], + "skins": [ + { + "name": "default", + "attachments": { + "back": {"back": {"x": 116.1164705882353, "y": 32.17294117647058, "rotation": -58, "width": 317.6470588235294, "height": 275.29411764705884, "path": "bug-04-lv2.back"}}, + "ear-left": {"ear-left": {"x": 55.00352941176471, "y": -69.92058823529412, "rotation": -90, "width": 162.35294117647058, "height": 152.94117647058823, "path": "bug-04-lv2.ear-left"}}, + "ear-right": { + "ear-right": {"x": 79.3264705882353, "y": -11.020588235294117, "rotation": -132, "width": 157.64705882352942, "height": 152.94117647058823, "path": "bug-04-lv2.ear-right"} + }, + "eyes": { + "eyes": {"x": 41.80294117647058, "y": 36.12117647058823, "width": 355.29411764705884, "height": 174.11764705882354, "path": "bug-04-lv2.eyes"}, + "eyes-angry": {"x": 41.80294117647058, "y": 36.12117647058823, "width": 355.29411764705884, "height": 174.11764705882354, "path": "bug-04-lv2.eyes-angry"}, + "eyes-happy": {"x": 41.80294117647058, "y": 36.12117647058823, "width": 355.29411764705884, "height": 174.11764705882354, "path": "bug-04-lv2.eyes-happy"}, + "eyes-shut": {"x": 41.80294117647058, "y": 36.12117647058823, "width": 355.29411764705884, "height": 174.11764705882354, "path": "bug-04-lv2.eyes-shut"} + }, + "horn": {"horn": {"x": 128.26823529411766, "y": 55.93235294117646, "rotation": -90, "width": 258.8235294117647, "height": 228.23529411764707, "path": "bug-04-lv2.horn"}}, + "mouth": { + "mouth": {"x": 1.3323529411764639, "y": 35.29764705882353, "width": 228.23529411764707, "height": 91.76470588235294, "path": "bug-04-lv2.mouth"}, + "mouth-bite": {"x": 7.685294117647058, "y": 53.18, "width": 183.52941176470588, "height": 80.0, "path": "bug-04-lv2.mouth-bite"}, + "mouth-open": {"x": 13.214705882352927, "y": 28.29764705882352, "width": 256.47058823529414, "height": 131.76470588235296, "path": "bug-04-lv2.mouth-open"}, + "mouth-smile": {"x": 1.979411764705884, "y": 48.82705882352941, "width": 232.94117647058823, "height": 124.70588235294117, "path": "bug-04-lv2.mouth-smile"} + }, + "tail": {"tail": {"x": 181.58294117647057, "y": 77.97705882352942, "rotation": -36, "width": 275.29411764705884, "height": 364.70588235294116, "path": "bug-04-lv2.tail"}} + } + } + ], + "events": {"hit": {}, "hit-buff": {}, "jump": {}, "start-attack": {}}, + "keyAnimations": { + "activity/appear": "1023093953", + "activity/bath": "3305387968", + "attack/ranged/cast-fly": "4180526371", + "attack/ranged/cast-high": "164191126", + "attack/ranged/cast-low": "198813017", + "attack/ranged/cast-multi": "151119", + "attack/ranged/cast-tail": "997902532", + "activity/eat-bite": "1137807767", + "activity/eat-chew": "1988236421", + "activity/entrance": "3768378365", + "defense/evade": "1735454995", + "activity/evolve": "649307630", + "battle/get-buff": "1455190363", + "battle/get-debuff": "606904312", + "defense/hit-by-normal": "2045974966", + "defense/hit-by-normal-crit": "2130010601", + "defense/hit-by-normal-dramatic": "3823092125", + "defense/hit-by-ranged-attack": "2224561612", + "defense/hit-with-shield": "390714790", + "attack/melee/horn-gore": "1327954218", + "attack/melee/mouth-bite": "2237748264", + "action/move-back": "3766271173", + "action/move-forward": "2945160014", + "attack/melee/multi-attack": "905926802", + "action/idle/normal": "1659336865", + "attack/melee/normal-attack": "3305373483", + "activity/prepare": "405864717", + "action/idle/random-01": "554401889", + "action/idle/random-02": "1085666627", + "action/idle/random-03": "2021333900", + "action/idle/random-04": "1003789695", + "action/idle/random-05": "2745614147", + "action/run": "1438840721", + "draft/run-origin": "3577885069", + "attack/melee/shrimp": "3833448733", + "activity/sleep": "100562494", + "attack/melee/tail-multi-slap": "3317139533", + "attack/melee/tail-roll": "3108617565", + "attack/melee/tail-smash": "519942130", + "attack/melee/tail-thrash": "628713175", + "activity/victory-pose-back-flip": "2227634241" + } + }, + "bug-10-lv2": { + "bones": [ + {"name": "@root"}, {"name": "@pivot-main", "parent": "@root"}, {"name": "@pivot-back", "parent": "@pivot-main", "x": 205, "y": 180, "color": "ff0101ff"}, + {"name": "@pivot-center", "parent": "@pivot-back", "x": -215.11, "y": -5.25, "color": "ff0101ff"}, + {"name": "@axie", "parent": "@pivot-center", "length": 213.28, "rotation": 179.04, "x": 196.39, "y": 5.16}, {"name": "@back", "parent": "@axie", "rotation": -179.04, "x": 37.63, "y": -198.19}, + {"name": "back", "parent": "@back", "length": 149.41, "rotation": 58, "x": -87.97, "y": 69.3, "transform": "noScale"}, + {"name": "@body", "parent": "@axie", "length": 226.28, "rotation": -8.35, "x": 224.58, "y": -0.53}, {"name": "@ear-left", "parent": "@axie", "rotation": -179.04, "x": 112.7, "y": -203.23}, + {"name": "ear-left", "parent": "@ear-left", "length": 113.61, "rotation": 55, "x": -8, "y": 3, "transform": "noScale"}, + {"name": "@ear-right", "parent": "@axie", "rotation": -179.04, "x": 405.28, "y": -235.33}, + {"name": "ear-right", "parent": "@ear-right", "length": 119.39, "rotation": 120, "x": -11, "y": -35, "transform": "noScale"}, + {"name": "@eyes", "parent": "@axie", "rotation": -179.04, "x": 384.24, "y": -113.67}, {"name": "@horn", "parent": "@axie", "rotation": -179.04, "x": 327.92, "y": -214.63}, + {"name": "horn", "parent": "@horn", "length": 176.72, "rotation": 90, "y": 18, "transform": "noScale"}, + {"name": "@leg-back-left", "parent": "@axie", "length": 76.4, "rotation": 100.96, "x": -15.3, "y": 102.56, "transform": "noScale"}, + {"name": "@leg-front-left", "parent": "@axie", "length": 51.19, "rotation": 93.86, "x": 134.77, "y": 149.55, "transform": "noScale"}, + {"name": "@leg-front-right", "parent": "@axie", "length": 74.83, "rotation": 83.2, "x": 382.95, "y": 121.78, "transform": "noScale"}, + {"name": "@mouth", "parent": "@axie", "rotation": -179.04, "x": 382.23, "y": 6.31}, + {"name": "body-pattern", "parent": "@body", "rotation": -170.69, "x": -267.21, "y": -49.4, "transform": "noScale"}, {"name": "@shadow", "parent": "@root", "color": "e6d713ff"}, + {"name": "@tail", "parent": "@axie", "rotation": -179.04, "x": -11.76, "y": 61.72}, + {"name": "tail", "parent": "@tail", "length": 203.67, "rotation": -20, "x": -12, "y": 15, "transform": "noScale"}, + {"name": "leg-front-right-IK", "parent": "@pivot-main", "x": -195.99, "y": -10.21, "color": "ff3f00ff"}, + {"name": "leg-front-left-IK", "parent": "@pivot-main", "x": 42.3, "y": -18.42, "color": "ff3f00ff"}, + {"name": "leg-back-left-IK", "parent": "@pivot-main", "x": 208.57, "y": 1.35, "color": "ff3f00ff"}, {"name": "@ball", "parent": "@root", "y": 191, "color": "f3981bff"}, + {"name": "ball", "parent": "@ball", "y": -191, "color": "f4a729ff"} + ], + "slots": [ + {"name": "shadow", "bone": "@shadow", "attachment": "shadow"}, {"name": "ball", "bone": "ball"}, {"name": "leg-front-right", "bone": "@leg-front-right", "attachment": "leg-front-right"}, + {"name": "ear-right", "bone": "ear-right", "attachment": "ear-right"}, {"name": "tail", "bone": "tail", "attachment": "tail"}, {"name": "back", "bone": "back", "attachment": "back"}, + {"name": "leg-back-left", "bone": "@leg-back-left", "attachment": "leg-back-left"}, {"name": "body", "bone": "@body", "attachment": "body"}, {"name": "body-pattern", "bone": "body-pattern"}, + {"name": "leg-front-left", "bone": "@leg-front-left", "attachment": "leg-front-left"}, {"name": "eyes", "bone": "@eyes", "attachment": "eyes"}, + {"name": "mouth", "bone": "@mouth", "attachment": "mouth"}, {"name": "ear-left", "bone": "ear-left", "attachment": "ear-left"}, {"name": "horn", "bone": "horn", "attachment": "horn"} + ], + "ik": [ + {"name": "leg-back-left-IK", "order": 2, "bones": ["@leg-back-left"], "target": "leg-back-left-IK"}, + {"name": "leg-front-left-IK", "order": 1, "bones": ["@leg-front-left"], "target": "leg-front-left-IK"}, + {"name": "leg-front-right-IK", "bones": ["@leg-front-right"], "target": "leg-front-right-IK"} + ], + "skins": [ + { + "name": "default", + "attachments": { + "back": {"back": {"x": 73.66176470588235, "y": -9.69, "rotation": -58, "width": 461.1764705882353, "height": 320.0, "path": "bug-10-lv2.back"}}, + "ear-left": {"ear-left": {"x": 216.78117647058824, "y": 58.3535294117647, "rotation": -55, "width": 254.11764705882354, "height": 362.3529411764706, "path": "bug-10-lv2.ear-left"}}, + "ear-right": {"ear-right": {"x": 162.24352941176468, "y": -130.74176470588236, "rotation": -120, "width": 82.3529411764706, "height": 378.8235294117647, "path": "bug-10-lv2.ear-right"}}, + "eyes": { + "eyes": {"x": 42.10705882352942, "y": 33.97470588235294, "width": 284.70588235294116, "height": 136.47058823529412, "path": "bug-10-lv2.eyes"}, + "eyes-angry": {"x": 41.10705882352942, "y": 34.15117647058823, "width": 284.70588235294116, "height": 134.11764705882354, "path": "bug-10-lv2.eyes-angry"}, + "eyes-happy": {"x": 41.10705882352942, "y": 34.15117647058823, "width": 284.70588235294116, "height": 134.11764705882354, "path": "bug-10-lv2.eyes-happy"}, + "eyes-shut": {"x": 41.10705882352942, "y": 34.15117647058823, "width": 284.70588235294116, "height": 134.11764705882354, "path": "bug-10-lv2.eyes-shut"} + }, + "horn": {"horn": {"x": 127.41588235294115, "y": 14.04, "rotation": -90, "width": 270.5882352941177, "height": 200.0, "path": "bug-10-lv2.horn"}}, + "mouth": { + "mouth": {"x": 15.46, "y": 20.38647058823529, "width": 160.0, "height": 117.64705882352942, "path": "bug-10-lv2.mouth"}, + "mouth-bite": {"x": 14.99764705882353, "y": 21.372941176470587, "width": 91.76470588235294, "height": 115.29411764705883, "path": "bug-10-lv2.mouth-bite"}, + "mouth-open": {"x": 15.497647058823523, "y": 22.333529411764705, "width": 211.76470588235296, "height": 122.3529411764706, "path": "bug-10-lv2.mouth-open"}, + "mouth-smile": {"x": 19.49764705882352, "y": 22.483529411764703, "width": 211.76470588235296, "height": 122.3529411764706, "path": "bug-10-lv2.mouth-smile"} + }, + "tail": {"tail": {"x": 117.36764705882352, "y": 59.47470588235294, "rotation": 20, "width": 211.76470588235296, "height": 216.47058823529412, "path": "bug-10-lv2.tail"}} + } + } + ], + "events": {"hit": {}, "hit-buff": {}, "jump": {}, "start-attack": {}}, + "keyAnimations": { + "activity/appear": "1023093953", + "activity/bath": "3305387968", + "attack/ranged/cast-fly": "4180526371", + "attack/ranged/cast-high": "164191126", + "attack/ranged/cast-low": "198813017", + "attack/ranged/cast-multi": "151119", + "attack/ranged/cast-tail": "997902532", + "activity/eat-bite": "1137807767", + "activity/eat-chew": "1988236421", + "activity/entrance": "3768378365", + "defense/evade": "1735454995", + "activity/evolve": "649307630", + "battle/get-buff": "1455190363", + "battle/get-debuff": "606904312", + "defense/hit-by-normal": "2045974966", + "defense/hit-by-normal-crit": "2130010601", + "defense/hit-by-normal-dramatic": "3823092125", + "defense/hit-by-ranged-attack": "2224561612", + "defense/hit-with-shield": "390714790", + "attack/melee/horn-gore": "1327954218", + "attack/melee/mouth-bite": "2237748264", + "action/move-back": "3766271173", + "action/move-forward": "2945160014", + "attack/melee/multi-attack": "905926802", + "action/idle/normal": "1659336865", + "attack/melee/normal-attack": "3305373483", + "activity/prepare": "405864717", + "action/idle/random-01": "554401889", + "action/idle/random-02": "1085666627", + "action/idle/random-03": "2021333900", + "action/idle/random-04": "1003789695", + "action/idle/random-05": "2745614147", + "action/run": "1438840721", + "draft/run-origin": "3577885069", + "attack/melee/shrimp": "3833448733", + "activity/sleep": "100562494", + "attack/melee/tail-multi-slap": "3317139533", + "attack/melee/tail-roll": "3108617565", + "attack/melee/tail-smash": "519942130", + "attack/melee/tail-thrash": "628713175", + "activity/victory-pose-back-flip": "2227634241" + } + }, + "bug-06-lv2": { + "bones": [ + {"name": "@root"}, {"name": "@pivot-main", "parent": "@root"}, {"name": "@pivot-back", "parent": "@pivot-main", "x": 205, "y": 180, "color": "ff0101ff"}, + {"name": "@pivot-center", "parent": "@pivot-back", "x": -215.11, "y": -5.25, "color": "ff0101ff"}, + {"name": "@axie", "parent": "@pivot-center", "length": 213.28, "rotation": 179.04, "x": 196.39, "y": 5.16}, {"name": "@back", "parent": "@axie", "rotation": -179.04, "x": 37.63, "y": -198.19}, + {"name": "back", "parent": "@back", "length": 149.41, "rotation": 77, "x": -39.97, "y": 26.3, "transform": "noScale"}, + {"name": "@body", "parent": "@axie", "length": 226.28, "rotation": -8.35, "x": 224.58, "y": -0.53}, {"name": "@ear-left", "parent": "@axie", "rotation": -179.04, "x": 112.7, "y": -203.23}, + {"name": "ear-left", "parent": "@ear-left", "length": 113.61, "rotation": 90, "x": -27, "y": 19, "transform": "noScale"}, + {"name": "@ear-right", "parent": "@axie", "rotation": -179.04, "x": 405.28, "y": -235.33}, + {"name": "ear-right", "parent": "@ear-right", "length": 119.39, "rotation": 93, "x": -30, "y": -15, "transform": "noScale"}, + {"name": "@eyes", "parent": "@axie", "rotation": -179.04, "x": 384.24, "y": -113.67}, {"name": "@horn", "parent": "@axie", "rotation": -179.04, "x": 327.92, "y": -214.63}, + {"name": "horn", "parent": "@horn", "length": 176.72, "rotation": 90, "y": 18, "transform": "noScale"}, + {"name": "@leg-back-left", "parent": "@axie", "length": 76.4, "rotation": 100.96, "x": -15.3, "y": 102.56, "transform": "noScale"}, + {"name": "@leg-front-left", "parent": "@axie", "length": 51.19, "rotation": 93.86, "x": 134.77, "y": 149.55, "transform": "noScale"}, + {"name": "@leg-front-right", "parent": "@axie", "length": 74.83, "rotation": 83.2, "x": 382.95, "y": 121.78, "transform": "noScale"}, + {"name": "@mouth", "parent": "@axie", "rotation": -179.04, "x": 382.23, "y": 6.31}, + {"name": "body-pattern", "parent": "@body", "rotation": -170.69, "x": -267.21, "y": -49.4, "transform": "noScale"}, {"name": "@shadow", "parent": "@root", "color": "e6d713ff"}, + {"name": "@tail", "parent": "@axie", "rotation": -179.04, "x": -11.76, "y": 61.72}, + {"name": "tail", "parent": "@tail", "length": 203.67, "rotation": -8, "x": 16, "y": -11, "transform": "noScale"}, + {"name": "leg-front-right-IK", "parent": "@pivot-main", "x": -195.99, "y": -10.21, "color": "ff3f00ff"}, + {"name": "leg-front-left-IK", "parent": "@pivot-main", "x": 42.3, "y": -18.42, "color": "ff3f00ff"}, + {"name": "leg-back-left-IK", "parent": "@pivot-main", "x": 208.57, "y": 1.35, "color": "ff3f00ff"}, {"name": "@ball", "parent": "@root", "y": 191, "color": "f3981bff"}, + {"name": "ball", "parent": "@ball", "y": -191, "color": "f4a729ff"}, {"name": "@", "parent": "@root", "x": 166.72, "y": 8.82} + ], + "slots": [ + {"name": "shadow", "bone": "@shadow", "attachment": "shadow"}, {"name": "ball", "bone": "ball"}, {"name": "leg-front-right", "bone": "@leg-front-right", "attachment": "leg-front-right"}, + {"name": "ear-right", "bone": "ear-right", "attachment": "ear-right"}, {"name": "tail", "bone": "tail", "attachment": "tail"}, {"name": "back", "bone": "back", "attachment": "back"}, + {"name": "leg-back-left", "bone": "@leg-back-left", "attachment": "leg-back-left"}, {"name": "body", "bone": "@body", "attachment": "body"}, {"name": "body-pattern", "bone": "body-pattern"}, + {"name": "leg-front-left", "bone": "@leg-front-left", "attachment": "leg-front-left"}, {"name": "eyes", "bone": "@eyes", "attachment": "eyes"}, + {"name": "mouth", "bone": "@mouth", "attachment": "mouth"}, {"name": "ear-left", "bone": "ear-left", "attachment": "ear-left"}, {"name": "horn", "bone": "horn", "attachment": "horn"} + ], + "ik": [ + {"name": "leg-back-left-IK", "order": 2, "bones": ["@leg-back-left"], "target": "leg-back-left-IK"}, + {"name": "leg-front-left-IK", "order": 1, "bones": ["@leg-front-left"], "target": "leg-front-left-IK"}, + {"name": "leg-front-right-IK", "bones": ["@leg-front-right"], "target": "leg-front-right-IK"} + ], + "skins": [ + { + "name": "default", + "attachments": { + "back": {"back": {"x": 146.84764705882353, "y": -35.92470588235295, "rotation": -77, "width": 371.7647058823529, "height": 383.5294117647059, "path": "bug-06-lv2.back"}}, + "ear-left": {"ear-left": {"x": 28.35764705882352, "y": -85.32352941176471, "rotation": -90, "width": 131.76470588235296, "height": 157.64705882352942, "path": "bug-06-lv2.ear-left"}}, + "ear-right": {"ear-right": {"x": 36.97941176470589, "y": 13.698235294117637, "rotation": -93, "width": 152.94117647058823, "height": 178.82352941176472, "path": "bug-06-lv2.ear-right"}}, + "eyes": { + "eyes": {"x": 25.62, "y": 19.83, "width": 283, "height": 94, "path": "bug-06-lv2.eyes"}, + "eyes-angry": {"x": 25.62, "y": 16.33, "width": 283, "height": 79, "path": "bug-06-lv2.eyes-angry"}, + "eyes-happy": {"x": 25.62, "y": 28.33, "width": 283, "height": 109, "path": "bug-06-lv2.eyes-happy"}, + "eyes-shut": {"x": 25.62, "y": 20.83, "width": 283, "height": 92, "path": "bug-06-lv2.eyes-shut"} + }, + "horn": {"horn": {"x": 126.97529411764704, "y": -26.0, "rotation": -90, "width": 383.5294117647059, "height": 240.0, "path": "bug-06-lv2.horn"}}, + "mouth": { + "mouth": {"x": 12.62, "y": 46.83, "width": 121, "height": 106, "path": "bug-06-lv2.mouth"}, + "mouth-bite": {"x": 33.12, "y": 41.83, "width": 278, "height": 116, "path": "bug-06-lv2.mouth-bite"}, + "mouth-open": {"x": 14.12, "y": 6.33, "width": 124, "height": 189, "path": "bug-06-lv2.mouth-open"}, + "mouth-smile": {"x": 13.62, "y": 48.83, "width": 161, "height": 104, "path": "bug-06-lv2.mouth-smile"} + }, + "tail": {"tail": {"x": 108.43823529411765, "y": 84.54058823529411, "rotation": 8, "width": 298.8235294117647, "height": 287.05882352941177, "path": "bug-06-lv2.tail"}} + } + } + ], + "events": {"hit": {}, "hit-buff": {}, "jump": {}, "start-attack": {}}, + "keyAnimations": { + "activity/appear": "1023093953", + "activity/bath": "3305387968", + "attack/ranged/cast-fly": "4180526371", + "attack/ranged/cast-high": "164191126", + "attack/ranged/cast-low": "198813017", + "attack/ranged/cast-multi": "151119", + "attack/ranged/cast-tail": "997902532", + "activity/eat-bite": "1137807767", + "activity/eat-chew": "1988236421", + "activity/entrance": "3768378365", + "defense/evade": "1735454995", + "activity/evolve": "649307630", + "battle/get-buff": "1455190363", + "battle/get-debuff": "606904312", + "defense/hit-by-normal": "2045974966", + "defense/hit-by-normal-crit": "2130010601", + "defense/hit-by-normal-dramatic": "3823092125", + "defense/hit-by-ranged-attack": "2224561612", + "defense/hit-with-shield": "390714790", + "attack/melee/horn-gore": "1327954218", + "attack/melee/mouth-bite": "2237748264", + "action/move-back": "3766271173", + "action/move-forward": "2945160014", + "attack/melee/multi-attack": "905926802", + "action/idle/normal": "1659336865", + "attack/melee/normal-attack": "3305373483", + "activity/prepare": "405864717", + "action/idle/random-01": "554401889", + "action/idle/random-02": "1085666627", + "action/idle/random-03": "2021333900", + "action/idle/random-04": "1003789695", + "action/idle/random-05": "2745614147", + "action/run": "1438840721", + "draft/run-origin": "3577885069", + "attack/melee/shrimp": "3833448733", + "activity/sleep": "100562494", + "attack/melee/tail-multi-slap": "3317139533", + "attack/melee/tail-roll": "3108617565", + "attack/melee/tail-smash": "519942130", + "attack/melee/tail-thrash": "628713175", + "activity/victory-pose-back-flip": "2227634241" + } + }, + "bug-12-lv2": { + "bones": [ + {"name": "@root"}, {"name": "@pivot-main", "parent": "@root"}, {"name": "@pivot-back", "parent": "@pivot-main", "x": 205, "y": 180, "color": "ff0101ff"}, + {"name": "@pivot-center", "parent": "@pivot-back", "x": -215.11, "y": -5.25, "color": "ff0101ff"}, + {"name": "@axie", "parent": "@pivot-center", "length": 213.28, "rotation": 179.04, "x": 196.39, "y": 5.16}, {"name": "@back", "parent": "@axie", "rotation": -179.04, "x": 37.63, "y": -198.19}, + {"name": "back", "parent": "@back", "length": 149.41, "rotation": 58, "x": -79.97, "y": 60.3, "transform": "noScale"}, + {"name": "@body", "parent": "@axie", "length": 226.28, "rotation": -8.35, "x": 224.58, "y": -0.53}, {"name": "@ear-left", "parent": "@axie", "rotation": -179.04, "x": 112.7, "y": -203.23}, + {"name": "ear-left", "parent": "@ear-left", "length": 113.61, "rotation": 50, "x": -9, "y": -3, "transform": "noScale"}, + {"name": "@ear-right", "parent": "@axie", "rotation": -179.04, "x": 405.28, "y": -235.33}, + {"name": "ear-right", "parent": "@ear-right", "length": 119.39, "rotation": 90, "x": -67, "y": -59, "transform": "noScale"}, + {"name": "@eyes", "parent": "@axie", "rotation": -179.04, "x": 384.24, "y": -113.67}, {"name": "@horn", "parent": "@axie", "rotation": -179.04, "x": 327.92, "y": -214.63}, + {"name": "horn", "parent": "@horn", "length": 176.72, "rotation": 90, "y": 18, "transform": "noScale"}, + {"name": "@leg-back-left", "parent": "@axie", "length": 76.4, "rotation": 100.96, "x": -15.3, "y": 102.56, "transform": "noScale"}, + {"name": "@leg-front-left", "parent": "@axie", "length": 51.19, "rotation": 93.86, "x": 134.77, "y": 149.55, "transform": "noScale"}, + {"name": "@leg-front-right", "parent": "@axie", "length": 74.83, "rotation": 83.2, "x": 382.95, "y": 121.78, "transform": "noScale"}, + {"name": "@mouth", "parent": "@axie", "rotation": -179.04, "x": 382.23, "y": 6.31}, + {"name": "body-pattern", "parent": "@body", "rotation": -170.69, "x": -267.21, "y": -49.4, "transform": "noScale"}, {"name": "@shadow", "parent": "@root", "color": "e6d713ff"}, + {"name": "@tail", "parent": "@axie", "rotation": -179.04, "x": -11.76, "y": 61.72}, + {"name": "tail", "parent": "@tail", "length": 203.67, "rotation": -30, "x": 3, "y": 40, "transform": "noScale"}, + {"name": "leg-front-right-IK", "parent": "@pivot-main", "x": -195.99, "y": -10.21, "color": "ff3f00ff"}, + {"name": "leg-front-left-IK", "parent": "@pivot-main", "x": 42.3, "y": -18.42, "color": "ff3f00ff"}, + {"name": "leg-back-left-IK", "parent": "@pivot-main", "x": 208.57, "y": 1.35, "color": "ff3f00ff"}, {"name": "@ball", "parent": "@root", "y": 191, "color": "f3981bff"}, + {"name": "ball", "parent": "@ball", "y": -191, "color": "f4a729ff"}, {"name": "@", "parent": "@root", "x": 164.67, "y": 4.9} + ], + "slots": [ + {"name": "shadow", "bone": "@shadow", "attachment": "shadow"}, {"name": "ball", "bone": "ball"}, {"name": "leg-front-right", "bone": "@leg-front-right", "attachment": "leg-front-right"}, + {"name": "ear-right", "bone": "ear-right", "attachment": "ear-right"}, {"name": "tail", "bone": "tail", "attachment": "tail"}, {"name": "back", "bone": "back", "attachment": "back"}, + {"name": "leg-back-left", "bone": "@leg-back-left", "attachment": "leg-back-left"}, {"name": "body", "bone": "@body", "attachment": "body"}, {"name": "body-pattern", "bone": "body-pattern"}, + {"name": "leg-front-left", "bone": "@leg-front-left", "attachment": "leg-front-left"}, {"name": "eyes", "bone": "@eyes", "attachment": "eyes"}, + {"name": "mouth", "bone": "@mouth", "attachment": "mouth"}, {"name": "ear-left", "bone": "ear-left", "attachment": "ear-left"}, {"name": "horn", "bone": "horn", "attachment": "horn"} + ], + "ik": [ + {"name": "leg-back-left-IK", "order": 2, "bones": ["@leg-back-left"], "target": "leg-back-left-IK"}, + {"name": "leg-front-left-IK", "order": 1, "bones": ["@leg-front-left"], "target": "leg-front-left-IK"}, + {"name": "leg-front-right-IK", "bones": ["@leg-front-right"], "target": "leg-front-right-IK"} + ], + "skins": [ + { + "name": "default", + "attachments": { + "back": {"back": {"x": 153.1570588235294, "y": -63.89058823529412, "rotation": -58, "width": 364.70588235294116, "height": 272.94117647058823, "path": "bug-12-lv2.back"}}, + "ear-left": {"ear-left": {"x": 110.34705882352941, "y": -34.106470588235304, "rotation": -50, "width": 204.7058823529412, "height": 242.3529411764706, "path": "bug-12-lv2.ear-left"}}, + "ear-right": {"ear-right": {"x": 80.37647058823529, "y": -27.626470588235303, "rotation": -90, "width": 157.64705882352942, "height": 242.3529411764706, "path": "bug-12-lv2.ear-right"}}, + "eyes": { + "eyes": {"x": 25.62, "y": 19.83, "width": 283, "height": 94, "path": "bug-12-lv2.eyes"}, + "eyes-angry": {"x": 25.62, "y": 16.33, "width": 283, "height": 79, "path": "bug-12-lv2.eyes-angry"}, + "eyes-happy": {"x": 25.62, "y": 28.33, "width": 283, "height": 109, "path": "bug-12-lv2.eyes-happy"}, + "eyes-shut": {"x": 25.62, "y": 20.83, "width": 283, "height": 92, "path": "bug-12-lv2.eyes-shut"} + }, + "horn": {"horn": {"x": 192.90588235294115, "y": -35.391176470588235, "rotation": -90, "width": 310.5882352941177, "height": 345.88235294117646, "path": "bug-12-lv2.horn"}}, + "mouth": { + "mouth": {"x": 12.62, "y": 46.83, "width": 121, "height": 106, "path": "bug-12-lv2.mouth"}, + "mouth-bite": {"x": 33.12, "y": 41.83, "width": 278, "height": 116, "path": "bug-12-lv2.mouth-bite"}, + "mouth-open": {"x": 14.12, "y": 6.33, "width": 124, "height": 189, "path": "bug-12-lv2.mouth-open"}, + "mouth-smile": {"x": 13.62, "y": 48.83, "width": 161, "height": 104, "path": "bug-12-lv2.mouth-smile"} + }, + "tail": {"tail": {"x": 102.87764705882354, "y": 83.62058823529412, "rotation": 30, "width": 291.7647058823529, "height": 327.05882352941177, "path": "bug-12-lv2.tail"}} + } + } + ], + "events": {"hit": {}, "hit-buff": {}, "jump": {}, "start-attack": {}}, + "keyAnimations": { + "activity/appear": "1023093953", + "activity/bath": "3305387968", + "attack/ranged/cast-fly": "4180526371", + "attack/ranged/cast-high": "164191126", + "attack/ranged/cast-low": "198813017", + "attack/ranged/cast-multi": "151119", + "attack/ranged/cast-tail": "997902532", + "activity/eat-bite": "1137807767", + "activity/eat-chew": "1988236421", + "activity/entrance": "3768378365", + "defense/evade": "1735454995", + "activity/evolve": "649307630", + "battle/get-buff": "1455190363", + "battle/get-debuff": "606904312", + "defense/hit-by-normal": "2045974966", + "defense/hit-by-normal-crit": "2130010601", + "defense/hit-by-normal-dramatic": "3823092125", + "defense/hit-by-ranged-attack": "2224561612", + "defense/hit-with-shield": "390714790", + "attack/melee/horn-gore": "1327954218", + "attack/melee/mouth-bite": "2237748264", + "action/move-back": "3766271173", + "action/move-forward": "2945160014", + "attack/melee/multi-attack": "905926802", + "action/idle/normal": "1659336865", + "attack/melee/normal-attack": "3305373483", + "activity/prepare": "405864717", + "action/idle/random-01": "554401889", + "action/idle/random-02": "1085666627", + "action/idle/random-03": "2021333900", + "action/idle/random-04": "1003789695", + "action/idle/random-05": "2745614147", + "action/run": "1438840721", + "draft/run-origin": "3577885069", + "attack/melee/shrimp": "3833448733", + "activity/sleep": "100562494", + "attack/melee/tail-multi-slap": "3317139533", + "attack/melee/tail-roll": "3108617565", + "attack/melee/tail-smash": "519942130", + "attack/melee/tail-thrash": "628713175", + "activity/victory-pose-back-flip": "2227634241" + } + }, + "bug-02-lv2": { + "bones": [ + {"name": "@root"}, {"name": "@pivot-main", "parent": "@root"}, {"name": "@pivot-back", "parent": "@pivot-main", "x": 205, "y": 180, "color": "ff0101ff"}, + {"name": "@pivot-center", "parent": "@pivot-back", "x": -215.11, "y": -5.25, "color": "ff0101ff"}, + {"name": "@axie", "parent": "@pivot-center", "length": 213.28, "rotation": 179.04, "x": 196.39, "y": 5.16}, {"name": "@back", "parent": "@axie", "rotation": -179.04, "x": 37.63, "y": -198.19}, + {"name": "back", "parent": "@back", "length": 149.41, "rotation": 58, "x": -101.97, "y": 46.3, "transform": "noScale"}, + {"name": "@body", "parent": "@axie", "length": 226.28, "rotation": -8.35, "x": 224.58, "y": -0.53}, {"name": "@ear-left", "parent": "@axie", "rotation": -179.04, "x": 112.7, "y": -203.23}, + {"name": "ear-left", "parent": "@ear-left", "length": 113.61, "rotation": 90, "x": -7, "y": 19, "transform": "noScale"}, + {"name": "@ear-right", "parent": "@axie", "rotation": -179.04, "x": 405.28, "y": -235.33}, + {"name": "ear-right", "parent": "@ear-right", "length": 119.39, "rotation": 93, "x": -40, "y": -15, "transform": "noScale"}, + {"name": "@eyes", "parent": "@axie", "rotation": -179.04, "x": 384.24, "y": -113.67}, {"name": "@horn", "parent": "@axie", "rotation": -179.04, "x": 327.92, "y": -214.63}, + {"name": "horn", "parent": "@horn", "length": 176.72, "rotation": 90, "y": 18, "transform": "noScale"}, + {"name": "@leg-back-left", "parent": "@axie", "length": 76.4, "rotation": 100.96, "x": -15.3, "y": 102.56, "transform": "noScale"}, + {"name": "@leg-front-left", "parent": "@axie", "length": 51.19, "rotation": 93.86, "x": 134.77, "y": 149.55, "transform": "noScale"}, + {"name": "@leg-front-right", "parent": "@axie", "length": 74.83, "rotation": 83.2, "x": 382.95, "y": 121.78, "transform": "noScale"}, + {"name": "@mouth", "parent": "@axie", "rotation": -179.04, "x": 382.23, "y": 6.31}, + {"name": "body-pattern", "parent": "@body", "rotation": -170.69, "x": -267.21, "y": -49.4, "transform": "noScale"}, {"name": "@shadow", "parent": "@root", "color": "e6d713ff"}, + {"name": "@tail", "parent": "@axie", "rotation": -179.04, "x": -11.76, "y": 61.72}, + {"name": "tail", "parent": "@tail", "length": 203.67, "rotation": -42, "x": 39, "y": 92, "transform": "noScale"}, + {"name": "leg-front-right-IK", "parent": "@pivot-main", "x": -195.99, "y": -10.21, "color": "ff3f00ff"}, + {"name": "leg-front-left-IK", "parent": "@pivot-main", "x": 42.3, "y": -18.42, "color": "ff3f00ff"}, + {"name": "leg-back-left-IK", "parent": "@pivot-main", "x": 208.57, "y": 1.35, "color": "ff3f00ff"}, {"name": "@ball", "parent": "@root", "y": 191, "color": "f3981bff"}, + {"name": "ball", "parent": "@ball", "y": -191, "color": "f4a729ff"} + ], + "slots": [ + {"name": "shadow", "bone": "@shadow", "attachment": "shadow"}, {"name": "ball", "bone": "ball"}, {"name": "leg-front-right", "bone": "@leg-front-right", "attachment": "leg-front-right"}, + {"name": "ear-right", "bone": "ear-right", "attachment": "ear-right"}, {"name": "tail", "bone": "tail", "attachment": "tail"}, {"name": "back", "bone": "back", "attachment": "back"}, + {"name": "leg-back-left", "bone": "@leg-back-left", "attachment": "leg-back-left"}, {"name": "body", "bone": "@body", "attachment": "body"}, {"name": "body-pattern", "bone": "body-pattern"}, + {"name": "leg-front-left", "bone": "@leg-front-left", "attachment": "leg-front-left"}, {"name": "eyes", "bone": "@eyes", "attachment": "eyes"}, + {"name": "mouth", "bone": "@mouth", "attachment": "mouth"}, {"name": "ear-left", "bone": "ear-left", "attachment": "ear-left"}, {"name": "horn", "bone": "horn", "attachment": "horn"} + ], + "ik": [ + {"name": "leg-back-left-IK", "order": 2, "bones": ["@leg-back-left"], "target": "leg-back-left-IK"}, + {"name": "leg-front-left-IK", "order": 1, "bones": ["@leg-front-left"], "target": "leg-front-left-IK"}, + {"name": "leg-front-right-IK", "bones": ["@leg-front-right"], "target": "leg-front-right-IK"} + ], + "skins": [ + { + "name": "default", + "attachments": { + "back": {"back": {"x": 128.05941176470589, "y": -16.123529411764725, "rotation": -58, "width": 312.94117647058823, "height": 357.64705882352945, "path": "bug-02-lv2.back"}}, + "ear-left": {"ear-left": {"x": 95.33352941176472, "y": 56.94294117647058, "rotation": -90, "width": 122.3529411764706, "height": 155.29411764705884, "path": "bug-02-lv2.ear-left"}}, + "ear-right": {"ear-right": {"x": 93.49352941176471, "y": 20.12294117647058, "rotation": -93, "width": 122.3529411764706, "height": 155.29411764705884, "path": "bug-02-lv2.ear-right"}}, + "eyes": { + "eyes": {"x": 22.998235294117652, "y": 23.157058823529407, "width": 378.8235294117647, "height": 164.7058823529412, "path": "bug-02-lv2.eyes"}, + "eyes-angry": {"x": 22.998235294117652, "y": 23.157058823529407, "width": 378.8235294117647, "height": 164.7058823529412, "path": "bug-02-lv2.eyes-angry"}, + "eyes-happy": {"x": 22.998235294117652, "y": 23.157058823529407, "width": 378.8235294117647, "height": 164.7058823529412, "path": "bug-02-lv2.eyes-happy"}, + "eyes-shut": {"x": 22.998235294117652, "y": 23.157058823529407, "width": 378.8235294117647, "height": 164.7058823529412, "path": "bug-02-lv2.eyes-shut"} + }, + "horn": {"horn": {"x": 104.24529411764706, "y": 28.795882352941174, "rotation": -90, "width": 183.52941176470588, "height": 230.58823529411765, "path": "bug-02-lv2.horn"}}, + "mouth": { + "mouth": {"x": -40.64882352941177, "y": 46.568823529411766, "width": 134.11764705882354, "height": 145.88235294117646, "path": "bug-02-lv2.mouth"}, + "mouth-bite": {"x": -125.53117647058824, "y": 65.39235294117648, "width": 305.88235294117646, "height": 108.23529411764706, "path": "bug-02-lv2.mouth-bite"}, + "mouth-open": {"x": -31.00176470588235, "y": 50.03941176470588, "width": 138.8235294117647, "height": 152.94117647058823, "path": "bug-02-lv2.mouth-open"}, + "mouth-smile": {"x": -37.23705882352942, "y": 48.921764705882346, "width": 155.29411764705884, "height": 141.1764705882353, "path": "bug-02-lv2.mouth-smile"} + }, + "tail": {"tail": {"x": 95.22764705882352, "y": 23.692352941176463, "rotation": 42, "width": 211.76470588235296, "height": 308.2352941176471, "path": "bug-02-lv2.tail"}} + } + } + ], + "events": {"hit": {}, "hit-buff": {}, "jump": {}, "start-attack": {}}, + "keyAnimations": { + "activity/appear": "1023093953", + "activity/bath": "3305387968", + "attack/ranged/cast-fly": "4180526371", + "attack/ranged/cast-high": "164191126", + "attack/ranged/cast-low": "198813017", + "attack/ranged/cast-multi": "151119", + "attack/ranged/cast-tail": "997902532", + "activity/eat-bite": "1137807767", + "activity/eat-chew": "1988236421", + "activity/entrance": "3768378365", + "defense/evade": "1735454995", + "activity/evolve": "649307630", + "battle/get-buff": "1455190363", + "battle/get-debuff": "606904312", + "defense/hit-by-normal": "2045974966", + "defense/hit-by-normal-crit": "2130010601", + "defense/hit-by-normal-dramatic": "3823092125", + "defense/hit-by-ranged-attack": "2224561612", + "defense/hit-with-shield": "390714790", + "attack/melee/horn-gore": "1327954218", + "attack/melee/mouth-bite": "2237748264", + "action/move-back": "3766271173", + "action/move-forward": "2945160014", + "attack/melee/multi-attack": "905926802", + "action/idle/normal": "1659336865", + "attack/melee/normal-attack": "3305373483", + "activity/prepare": "405864717", + "action/idle/random-01": "554401889", + "action/idle/random-02": "1085666627", + "action/idle/random-03": "2021333900", + "action/idle/random-04": "1003789695", + "action/idle/random-05": "2745614147", + "action/run": "1438840721", + "draft/run-origin": "3577885069", + "attack/melee/shrimp": "3833448733", + "activity/sleep": "100562494", + "attack/melee/tail-multi-slap": "3317139533", + "attack/melee/tail-roll": "3108617565", + "attack/melee/tail-smash": "519942130", + "attack/melee/tail-thrash": "628713175", + "activity/victory-pose-back-flip": "2227634241" + } + }, + "bug-08-lv2": { + "bones": [ + {"name": "@root"}, {"name": "@pivot-main", "parent": "@root"}, {"name": "@pivot-back", "parent": "@pivot-main", "x": 205, "y": 180, "color": "ff0101ff"}, + {"name": "@pivot-center", "parent": "@pivot-back", "x": -215.11, "y": -5.25, "color": "ff0101ff"}, + {"name": "@axie", "parent": "@pivot-center", "length": 213.28, "rotation": 179.04, "x": 196.39, "y": 5.16}, {"name": "@back", "parent": "@axie", "rotation": -179.04, "x": 37.63, "y": -198.19}, + {"name": "back", "parent": "@back", "length": 149.41, "rotation": 58, "x": -84.97, "y": -22.7, "transform": "noScale"}, + {"name": "@body", "parent": "@axie", "length": 226.28, "rotation": -8.35, "x": 224.58, "y": -0.53}, {"name": "@ear-left", "parent": "@axie", "rotation": -179.04, "x": 112.7, "y": -203.23}, + {"name": "ear-left", "parent": "@ear-left", "length": 113.61, "rotation": 90, "x": -27, "y": 19, "transform": "noScale"}, + {"name": "@ear-right", "parent": "@axie", "rotation": -179.04, "x": 405.28, "y": -235.33}, + {"name": "ear-right", "parent": "@ear-right", "length": 119.39, "rotation": 68, "x": -73, "y": -68, "transform": "noScale"}, + {"name": "@eyes", "parent": "@axie", "rotation": -179.04, "x": 384.24, "y": -113.67}, {"name": "@horn", "parent": "@axie", "rotation": -179.04, "x": 327.92, "y": -214.63}, + {"name": "horn", "parent": "@horn", "length": 176.72, "rotation": 90, "y": 18, "transform": "noScale"}, + {"name": "@leg-back-left", "parent": "@axie", "length": 76.4, "rotation": 100.96, "x": -15.3, "y": 102.56, "transform": "noScale"}, + {"name": "@leg-front-left", "parent": "@axie", "length": 51.19, "rotation": 93.86, "x": 134.77, "y": 149.55, "transform": "noScale"}, + {"name": "@leg-front-right", "parent": "@axie", "length": 74.83, "rotation": 83.2, "x": 382.95, "y": 121.78, "transform": "noScale"}, + {"name": "@mouth", "parent": "@axie", "rotation": -179.04, "x": 382.23, "y": 6.31}, + {"name": "body-pattern", "parent": "@body", "rotation": -170.69, "x": -267.21, "y": -49.4, "transform": "noScale"}, {"name": "@shadow", "parent": "@root", "color": "e6d713ff"}, + {"name": "@tail", "parent": "@axie", "rotation": -179.04, "x": -11.76, "y": 61.72}, + {"name": "tail", "parent": "@tail", "length": 203.67, "rotation": -42, "x": 16, "y": 72.87, "transform": "noScale"}, + {"name": "leg-front-right-IK", "parent": "@pivot-main", "x": -195.99, "y": -10.21, "color": "ff3f00ff"}, + {"name": "leg-front-left-IK", "parent": "@pivot-main", "x": 42.3, "y": -18.42, "color": "ff3f00ff"}, + {"name": "leg-back-left-IK", "parent": "@pivot-main", "x": 208.57, "y": 1.35, "color": "ff3f00ff"}, {"name": "@ball", "parent": "@root", "y": 191, "color": "f3981bff"}, + {"name": "ball", "parent": "@ball", "y": -191, "color": "f4a729ff"} + ], + "slots": [ + {"name": "shadow", "bone": "@shadow", "attachment": "shadow"}, {"name": "ball", "bone": "ball"}, {"name": "leg-front-right", "bone": "@leg-front-right", "attachment": "leg-front-right"}, + {"name": "ear-right", "bone": "ear-right", "attachment": "ear-right"}, {"name": "tail", "bone": "tail", "attachment": "tail"}, {"name": "back", "bone": "back", "attachment": "back"}, + {"name": "leg-back-left", "bone": "@leg-back-left", "attachment": "leg-back-left"}, {"name": "body", "bone": "@body", "attachment": "body"}, {"name": "body-pattern", "bone": "body-pattern"}, + {"name": "leg-front-left", "bone": "@leg-front-left", "attachment": "leg-front-left"}, {"name": "eyes", "bone": "@eyes", "attachment": "eyes"}, + {"name": "mouth", "bone": "@mouth", "attachment": "mouth"}, {"name": "ear-left", "bone": "ear-left", "attachment": "ear-left"}, {"name": "horn", "bone": "horn", "attachment": "horn"} + ], + "ik": [ + {"name": "leg-back-left-IK", "order": 2, "bones": ["@leg-back-left"], "target": "leg-back-left-IK"}, + {"name": "leg-front-left-IK", "order": 1, "bones": ["@leg-front-left"], "target": "leg-front-left-IK"}, + {"name": "leg-front-right-IK", "bones": ["@leg-front-right"], "target": "leg-front-right-IK"} + ], + "skins": [ + { + "name": "default", + "attachments": { + "back": {"back": {"x": 154.40176470588236, "y": 9.356470588235304, "rotation": -58, "width": 341.1764705882353, "height": 277.6470588235294, "path": "bug-08-lv2.back"}}, + "ear-left": {"ear-left": {"x": 134.38764705882352, "y": -69.41117647058823, "rotation": -90, "width": 171.76470588235296, "height": 305.88235294117646, "path": "bug-08-lv2.ear-left"}}, + "ear-right": {"ear-right": {"x": 186.06823529411764, "y": 25.692352941176463, "rotation": -68, "width": 98.82352941176471, "height": 308.2352941176471, "path": "bug-08-lv2.ear-right"}}, + "eyes": { + "eyes": {"x": 30.11705882352942, "y": 32.38764705882352, "width": 324.70588235294116, "height": 171.76470588235296, "path": "bug-08-lv2.eyes"}, + "eyes-angry": {"x": 30.11705882352942, "y": 32.38764705882352, "width": 324.70588235294116, "height": 171.76470588235296, "path": "bug-08-lv2.eyes-angry"}, + "eyes-happy": {"x": 30.11705882352942, "y": 32.38764705882352, "width": 324.70588235294116, "height": 171.76470588235296, "path": "bug-08-lv2.eyes-happy"}, + "eyes-shut": {"x": 30.11705882352942, "y": 32.38764705882352, "width": 324.70588235294116, "height": 171.76470588235296, "path": "bug-08-lv2.eyes-shut"} + }, + "horn": {"horn": {"x": 60.91705882352942, "y": 25.235882352941175, "rotation": -90, "width": 404.70588235294116, "height": 150.58823529411765, "path": "bug-08-lv2.horn"}}, + "mouth": { + "mouth": {"x": 18.754117647058827, "y": 58.64941176470588, "width": 249.41176470588235, "height": 112.94117647058823, "path": "bug-08-lv2.mouth"}, + "mouth-bite": {"x": 18.854117647058825, "y": 18.619411764705884, "width": 249.41176470588235, "height": 192.94117647058823, "path": "bug-08-lv2.mouth-bite"}, + "mouth-open": {"x": 19.06, "y": 20.239411764705885, "width": 280.0, "height": 232.94117647058823, "path": "bug-08-lv2.mouth-open"}, + "mouth-smile": {"x": 18.834117647058825, "y": 52.737058823529416, "width": 249.41176470588235, "height": 124.70588235294117, "path": "bug-08-lv2.mouth-smile"} + }, + "tail": {"tail": {"x": 108.42294117647057, "y": 61.568823529411766, "rotation": 42, "width": 275.29411764705884, "height": 265.88235294117646, "path": "bug-08-lv2.tail"}} + } + } + ], + "events": {"hit": {}, "hit-buff": {}, "jump": {}, "start-attack": {}}, + "keyAnimations": { + "activity/appear": "1023093953", + "activity/bath": "3305387968", + "attack/ranged/cast-fly": "4180526371", + "attack/ranged/cast-high": "164191126", + "attack/ranged/cast-low": "198813017", + "attack/ranged/cast-multi": "151119", + "attack/ranged/cast-tail": "997902532", + "activity/eat-bite": "1137807767", + "activity/eat-chew": "1988236421", + "activity/entrance": "3768378365", + "defense/evade": "1735454995", + "activity/evolve": "649307630", + "battle/get-buff": "1455190363", + "battle/get-debuff": "606904312", + "defense/hit-by-normal": "2045974966", + "defense/hit-by-normal-crit": "2130010601", + "defense/hit-by-normal-dramatic": "3823092125", + "defense/hit-by-ranged-attack": "2224561612", + "defense/hit-with-shield": "390714790", + "attack/melee/horn-gore": "1327954218", + "attack/melee/mouth-bite": "2237748264", + "action/move-back": "3766271173", + "action/move-forward": "2945160014", + "attack/melee/multi-attack": "905926802", + "action/idle/normal": "1659336865", + "attack/melee/normal-attack": "3305373483", + "activity/prepare": "405864717", + "action/idle/random-01": "554401889", + "action/idle/random-02": "1085666627", + "action/idle/random-03": "2021333900", + "action/idle/random-04": "1003789695", + "action/idle/random-05": "2745614147", + "action/run": "1438840721", + "draft/run-origin": "3577885069", + "attack/melee/shrimp": "3833448733", + "activity/sleep": "100562494", + "attack/melee/tail-multi-slap": "3317139533", + "attack/melee/tail-roll": "3108617565", + "attack/melee/tail-smash": "519942130", + "attack/melee/tail-thrash": "628713175", + "activity/victory-pose-back-flip": "2227634241" + } + }, + "agamo-01-lv2": { + "bones": [ + {"name": "@root"}, {"name": "@pivot-main", "parent": "@root"}, {"name": "@pivot-back", "parent": "@pivot-main", "x": 205, "y": 180, "color": "ff0101ff"}, + {"name": "@pivot-center", "parent": "@pivot-back", "x": -215.11, "y": -5.25, "color": "ff0101ff"}, + {"name": "@axie", "parent": "@pivot-center", "length": 213.28, "rotation": 179.04, "x": 196.39, "y": 5.16}, {"name": "@back", "parent": "@axie", "rotation": -179.04, "x": 37.63, "y": -198.19}, + {"name": "back", "parent": "@back", "length": 149.41, "rotation": 58, "x": -87.97, "y": 69.3, "transform": "noScale"}, + {"name": "@body", "parent": "@axie", "length": 226.28, "rotation": -8.35, "x": 224.58, "y": -0.53}, {"name": "@ear-left", "parent": "@axie", "rotation": -179.04, "x": 112.7, "y": -203.23}, + {"name": "ear-left", "parent": "@ear-left", "length": 113.61, "rotation": 55, "x": -8, "y": 3, "transform": "noScale"}, + {"name": "@ear-right", "parent": "@axie", "rotation": -179.04, "x": 405.28, "y": -235.33}, + {"name": "ear-right", "parent": "@ear-right", "length": 119.39, "rotation": 120, "x": -11, "y": -35, "transform": "noScale"}, + {"name": "@eyes", "parent": "@axie", "rotation": -179.04, "x": 384.24, "y": -113.67}, {"name": "@horn", "parent": "@axie", "rotation": -179.04, "x": 327.92, "y": -214.63}, + {"name": "horn", "parent": "@horn", "length": 176.72, "rotation": 90, "y": 18, "transform": "noScale"}, + {"name": "@leg-back-left", "parent": "@axie", "length": 76.4, "rotation": 100.96, "x": -15.3, "y": 102.56, "transform": "noScale"}, + {"name": "@leg-front-left", "parent": "@axie", "length": 51.19, "rotation": 93.86, "x": 134.77, "y": 149.55, "transform": "noScale"}, + {"name": "@leg-front-right", "parent": "@axie", "length": 74.83, "rotation": 83.2, "x": 382.95, "y": 121.78, "transform": "noScale"}, + {"name": "@mouth", "parent": "@axie", "rotation": -179.04, "x": 382.23, "y": 6.31}, + {"name": "body-pattern", "parent": "@body", "rotation": -170.69, "x": -267.21, "y": -49.4, "transform": "noScale"}, {"name": "@shadow", "parent": "@root", "color": "e6d713ff"}, + {"name": "@tail", "parent": "@axie", "rotation": -179.04, "x": -11.76, "y": 61.72}, + {"name": "tail", "parent": "@tail", "length": 203.67, "rotation": -20, "x": -12, "y": 15, "transform": "noScale"}, + {"name": "leg-front-right-IK", "parent": "@pivot-main", "x": -195.99, "y": -10.21, "color": "ff3f00ff"}, + {"name": "leg-front-left-IK", "parent": "@pivot-main", "x": 42.3, "y": -18.42, "color": "ff3f00ff"}, + {"name": "leg-back-left-IK", "parent": "@pivot-main", "x": 208.57, "y": 1.35, "color": "ff3f00ff"}, {"name": "@ball", "parent": "@root", "y": 191, "color": "f3981bff"}, + {"name": "ball", "parent": "@ball", "y": -191, "color": "f4a729ff"}, {"name": "@", "parent": "@root", "x": -25.85, "y": -17.78} + ], + "slots": [ + {"name": "shadow", "bone": "@shadow", "attachment": "shadow"}, {"name": "ball", "bone": "ball"}, {"name": "leg-front-right", "bone": "@leg-front-right", "attachment": "leg-front-right"}, + {"name": "ear-right", "bone": "ear-right", "attachment": "ear-right"}, {"name": "tail", "bone": "tail", "attachment": "tail"}, {"name": "back", "bone": "back", "attachment": "back"}, + {"name": "leg-back-left", "bone": "@leg-back-left", "attachment": "leg-back-left"}, {"name": "body", "bone": "@body", "attachment": "body"}, + {"name": "body-pattern", "bone": "body-pattern", "attachment": "body-pattern"}, {"name": "leg-front-left", "bone": "@leg-front-left", "attachment": "leg-front-left"}, + {"name": "eyes", "bone": "@eyes", "attachment": "eyes"}, {"name": "mouth", "bone": "@mouth", "attachment": "mouth"}, {"name": "ear-left", "bone": "ear-left", "attachment": "ear-left"}, + {"name": "horn", "bone": "horn", "attachment": "horn"}, {"name": "horn2", "bone": "horn"} + ], + "ik": [ + {"name": "leg-back-left-IK", "order": 2, "bones": ["@leg-back-left"], "target": "leg-back-left-IK"}, + {"name": "leg-front-left-IK", "order": 1, "bones": ["@leg-front-left"], "target": "leg-front-left-IK"}, + {"name": "leg-front-right-IK", "bones": ["@leg-front-right"], "target": "leg-front-right-IK"} + ], + "skins": [ + { + "name": "default", + "attachments": { + "back": {"back": {"x": 101.34705882352942, "y": -38.06176470588235, "rotation": -58, "width": 364.70588235294116, "height": 258.8235294117647, "path": "agamo-01-lv2.back"}}, + "ear-left": {"ear-left": {"x": 75.54411764705883, "y": 6.869411764705884, "rotation": -55, "width": 129.41176470588235, "height": 192.94117647058823, "path": "agamo-01-lv2.ear-left"}}, + "ear-right": { + "ear-right": {"x": 74.99411764705883, "y": -5.580588235294116, "rotation": -120, "width": 129.41176470588235, "height": 192.94117647058823, "path": "agamo-01-lv2.ear-right"} + }, + "eyes": { + "eyes": {"x": 51.02705882352942, "y": 30.49, "width": 324.70588235294116, "height": 120.0, "path": "agamo-01-lv2.eyes"}, + "eyes-angry": {"x": 51.02705882352942, "y": 30.49, "width": 324.70588235294116, "height": 120.0, "path": "agamo-01-lv2.eyes-angry"}, + "eyes-happy": {"x": 51.02705882352942, "y": 30.49, "width": 324.70588235294116, "height": 120.0, "path": "agamo-01-lv2.eyes-happy"}, + "eyes-shut": {"x": 51.02705882352942, "y": 30.49, "width": 324.70588235294116, "height": 120.0, "path": "agamo-01-lv2.eyes-shut"} + }, + "horn": {"horn": {"x": 126.5735294117647, "y": -2.559411764705884, "rotation": -90, "width": 282.3529411764706, "height": 207.05882352941177, "path": "agamo-01-lv2.horn"}}, + "mouth": { + "mouth": {"x": 15.321176470588233, "y": 55.019411764705886, "width": 134.11764705882354, "height": 72.94117647058823, "path": "agamo-01-lv2.mouth"}, + "mouth-bite": {"x": 14.497647058823523, "y": 59.54882352941176, "width": 131.76470588235296, "height": 65.88235294117648, "path": "agamo-01-lv2.mouth-bite"}, + "mouth-open": {"x": 16.144705882352945, "y": 48.37235294117647, "width": 176.47058823529412, "height": 108.23529411764706, "path": "agamo-01-lv2.mouth-open"}, + "mouth-smile": {"x": 20.438823529411767, "y": 57.54882352941176, "width": 225.88235294117646, "height": 65.88235294117648, "path": "agamo-01-lv2.mouth-smile"} + }, + "tail": {"tail": {"x": 81.07941176470588, "y": 17.22, "rotation": 20, "width": 232.94117647058823, "height": 200.0, "path": "agamo-01-lv2.tail"}} + } + } + ], + "events": {"hit": {}, "hit-buff": {}, "jump": {}, "start-attack": {}}, + "keyAnimations": { + "activity/appear": "1023093953", + "activity/bath": "3305387968", + "attack/ranged/cast-fly": "4180526371", + "attack/ranged/cast-high": "164191126", + "attack/ranged/cast-low": "198813017", + "attack/ranged/cast-multi": "151119", + "attack/ranged/cast-tail": "997902532", + "activity/eat-bite": "1137807767", + "activity/eat-chew": "1988236421", + "activity/entrance": "3768378365", + "defense/evade": "1735454995", + "activity/evolve": "649307630", + "battle/get-buff": "1455190363", + "battle/get-debuff": "606904312", + "defense/hit-by-normal": "2045974966", + "defense/hit-by-normal-crit": "2130010601", + "defense/hit-by-normal-dramatic": "3823092125", + "defense/hit-by-ranged-attack": "2224561612", + "defense/hit-with-shield": "390714790", + "attack/melee/horn-gore": "1327954218", + "attack/melee/mouth-bite": "2237748264", + "action/move-back": "3766271173", + "action/move-forward": "2945160014", + "attack/melee/multi-attack": "905926802", + "action/idle/normal": "1659336865", + "attack/melee/normal-attack": "3305373483", + "activity/prepare": "405864717", + "action/idle/random-01": "554401889", + "action/idle/random-02": "1085666627", + "action/idle/random-03": "2021333900", + "action/idle/random-04": "1003789695", + "action/idle/random-05": "2745614147", + "action/run": "1438840721", + "draft/run-origin": "3577885069", + "attack/melee/shrimp": "3833448733", + "activity/sleep": "100562494", + "attack/melee/tail-multi-slap": "3317139533", + "attack/melee/tail-roll": "3108617565", + "attack/melee/tail-smash": "519942130", + "attack/melee/tail-thrash": "628713175", + "activity/victory-pose-back-flip": "2227634241" + } + }, + "agamo-00-lv2": { + "bones": [ + {"name": "@root"}, {"name": "@pivot-main", "parent": "@root"}, {"name": "@pivot-back", "parent": "@pivot-main", "x": 205, "y": 180, "color": "ff0101ff"}, + {"name": "@pivot-center", "parent": "@pivot-back", "x": -215.11, "y": -5.25, "color": "ff0101ff"}, + {"name": "@axie", "parent": "@pivot-center", "length": 213.28, "rotation": 179.04, "x": 196.39, "y": 5.16}, {"name": "@back", "parent": "@axie", "rotation": -179.04, "x": 37.63, "y": -198.19}, + {"name": "back", "parent": "@back", "length": 149.41, "rotation": 64, "x": -51.97, "y": -9.7, "transform": "noScale"}, + {"name": "@body", "parent": "@axie", "length": 226.28, "rotation": -8.35, "x": 224.58, "y": -0.53}, {"name": "@ear-left", "parent": "@axie", "rotation": -179.04, "x": 112.7, "y": -203.23}, + {"name": "ear-left", "parent": "@ear-left", "length": 113.61, "rotation": 52, "x": -27, "y": -17, "transform": "noScale"}, + {"name": "@ear-right", "parent": "@axie", "rotation": -179.04, "x": 405.28, "y": -235.33}, + {"name": "ear-right", "parent": "@ear-right", "length": 119.39, "rotation": 93, "x": -40, "y": -54, "transform": "noScale"}, + {"name": "@eyes", "parent": "@axie", "rotation": -179.04, "x": 384.24, "y": -113.67}, {"name": "@horn", "parent": "@axie", "rotation": -179.04, "x": 327.92, "y": -214.63}, + {"name": "horn", "parent": "@horn", "length": 176.72, "rotation": 90, "y": 18, "transform": "noScale"}, + {"name": "@leg-back-left", "parent": "@axie", "length": 76.4, "rotation": 100.96, "x": -15.3, "y": 102.56, "transform": "noScale"}, + {"name": "@leg-front-left", "parent": "@axie", "length": 51.19, "rotation": 93.86, "x": 134.77, "y": 149.55, "transform": "noScale"}, + {"name": "@leg-front-right", "parent": "@axie", "length": 74.83, "rotation": 83.2, "x": 382.95, "y": 121.78, "transform": "noScale"}, + {"name": "@mouth", "parent": "@axie", "rotation": -179.04, "x": 382.23, "y": 6.31}, + {"name": "body-pattern", "parent": "@body", "rotation": -170.69, "x": -267.21, "y": -49.4, "transform": "noScale"}, {"name": "@shadow", "parent": "@root", "color": "e6d713ff"}, + {"name": "@tail", "parent": "@axie", "rotation": -179.04, "x": -11.76, "y": 61.72}, + {"name": "tail", "parent": "@tail", "length": 203.67, "rotation": 20, "x": 21, "y": 37, "transform": "noScale"}, + {"name": "leg-front-right-IK", "parent": "@pivot-main", "x": -195.99, "y": -10.21, "color": "ff3f00ff"}, + {"name": "leg-front-left-IK", "parent": "@pivot-main", "x": 42.3, "y": -18.42, "color": "ff3f00ff"}, + {"name": "leg-back-left-IK", "parent": "@pivot-main", "x": 208.57, "y": 1.35, "color": "ff3f00ff"}, {"name": "@ball", "parent": "@root", "y": 191, "color": "f3981bff"}, + {"name": "ball", "parent": "@ball", "y": -191, "color": "f4a729ff"}, {"name": "@", "parent": "@root", "x": -31.69, "y": -11.17} + ], + "slots": [ + {"name": "shadow", "bone": "@shadow", "attachment": "shadow"}, {"name": "ball", "bone": "ball"}, {"name": "leg-front-right", "bone": "@leg-front-right", "attachment": "leg-front-right"}, + {"name": "ear-right", "bone": "ear-right", "attachment": "ear-right"}, {"name": "tail", "bone": "tail", "attachment": "tail"}, {"name": "back", "bone": "back", "attachment": "back"}, + {"name": "leg-back-left", "bone": "@leg-back-left", "attachment": "leg-back-left"}, {"name": "body", "bone": "@body", "attachment": "body"}, + {"name": "body-pattern", "bone": "body-pattern", "attachment": "body-pattern"}, {"name": "leg-front-left", "bone": "@leg-front-left", "attachment": "leg-front-left"}, + {"name": "eyes", "bone": "@eyes", "attachment": "eyes"}, {"name": "mouth", "bone": "@mouth", "attachment": "mouth"}, {"name": "ear-left", "bone": "ear-left", "attachment": "ear-left"}, + {"name": "horn", "bone": "horn", "attachment": "horn"} + ], + "ik": [ + {"name": "leg-back-left-IK", "order": 2, "bones": ["@leg-back-left"], "target": "leg-back-left-IK"}, + {"name": "leg-front-left-IK", "order": 1, "bones": ["@leg-front-left"], "target": "leg-front-left-IK"}, + {"name": "leg-front-right-IK", "bones": ["@leg-front-right"], "target": "leg-front-right-IK"} + ], + "skins": [ + { + "name": "default", + "attachments": { + "back": {"back": {"x": 72.27176470588235, "y": 1.1494117647058841, "rotation": -64, "width": 381.1764705882353, "height": 352.94117647058823, "path": "agamo-00-lv2.back"}}, + "ear-left": {"ear-left": {"x": 33.59470588235294, "y": -44.345882352941175, "rotation": -52, "width": 136.47058823529412, "height": 129.41176470588235, "path": "agamo-00-lv2.ear-left"}}, + "ear-right": {"ear-right": {"x": 72.01, "y": -0.43235294117647816, "rotation": -93, "width": 120.0, "height": 171.76470588235296, "path": "agamo-00-lv2.ear-right"}}, + "eyes": { + "eyes": {"x": 34.39, "y": 16.919411764705885, "width": 320.0, "height": 112.94117647058823, "path": "agamo-00-lv2.eyes"}, + "eyes-angry": {"x": 34.39, "y": 20.213529411764704, "width": 320.0, "height": 122.3529411764706, "path": "agamo-00-lv2.eyes-angry"}, + "eyes-happy": {"x": 24.80176470588235, "y": 23.095882352941175, "width": 261.1764705882353, "height": 110.58823529411765, "path": "agamo-00-lv2.eyes-happy"}, + "eyes-shut": {"x": 23.15470588235293, "y": 18.44882352941176, "width": 256.47058823529414, "height": 105.88235294117648, "path": "agamo-00-lv2.eyes-shut"} + }, + "horn": {"horn": {"x": 73.75764705882352, "y": -25.301764705882363, "rotation": -90, "width": 251.76470588235296, "height": 178.82352941176472, "path": "agamo-00-lv2.horn"}}, + "mouth": { + "mouth": {"x": 20.44882352941177, "y": 40.80176470588235, "width": 185.88235294117646, "height": 61.1764705882353, "path": "agamo-00-lv2.mouth"}, + "mouth-bite": {"x": 22.095882352941175, "y": 30.095882352941175, "width": 190.58823529411765, "height": 70.58823529411765, "path": "agamo-00-lv2.mouth-bite"}, + "mouth-open": {"x": 20.44882352941177, "y": 15.978235294117653, "width": 185.88235294117646, "height": 138.8235294117647, "path": "agamo-00-lv2.mouth-open"}, + "mouth-smile": {"x": 20.21352941176471, "y": 44.44882352941176, "width": 202.35294117647058, "height": 65.88235294117648, "path": "agamo-00-lv2.mouth-smile"} + }, + "tail": {"tail": {"x": 49.244705882352925, "y": -30.632941176470595, "rotation": -20, "width": 336.47058823529414, "height": 204.7058823529412, "path": "agamo-00-lv2.tail"}} + } + } + ], + "events": {"hit": {}, "hit-buff": {}, "jump": {}, "start-attack": {}}, + "keyAnimations": { + "activity/appear": "1023093953", + "activity/bath": "3305387968", + "attack/ranged/cast-fly": "4180526371", + "attack/ranged/cast-high": "164191126", + "attack/ranged/cast-low": "198813017", + "attack/ranged/cast-multi": "151119", + "attack/ranged/cast-tail": "997902532", + "activity/eat-bite": "1137807767", + "activity/eat-chew": "1988236421", + "activity/entrance": "3768378365", + "defense/evade": "1735454995", + "activity/evolve": "649307630", + "battle/get-buff": "1455190363", + "battle/get-debuff": "606904312", + "defense/hit-by-normal": "2045974966", + "defense/hit-by-normal-crit": "2130010601", + "defense/hit-by-normal-dramatic": "3823092125", + "defense/hit-by-ranged-attack": "2224561612", + "defense/hit-with-shield": "390714790", + "attack/melee/horn-gore": "1327954218", + "attack/melee/mouth-bite": "2237748264", + "action/move-back": "3766271173", + "action/move-forward": "2945160014", + "attack/melee/multi-attack": "905926802", + "action/idle/normal": "1659336865", + "attack/melee/normal-attack": "3305373483", + "activity/prepare": "405864717", + "action/idle/random-01": "554401889", + "action/idle/random-02": "1085666627", + "action/idle/random-03": "2021333900", + "action/idle/random-04": "1003789695", + "action/idle/random-05": "2745614147", + "action/run": "1438840721", + "draft/run-origin": "3577885069", + "attack/melee/shrimp": "3833448733", + "activity/sleep": "100562494", + "attack/melee/tail-multi-slap": "3317139533", + "attack/melee/tail-roll": "3108617565", + "attack/melee/tail-smash": "519942130", + "attack/melee/tail-thrash": "628713175", + "activity/victory-pose-back-flip": "2227634241" + } + }, + "japan-01-lv2": { + "bones": [ + {"name": "@root"}, {"name": "@pivot-main", "parent": "@root"}, {"name": "@pivot-back", "parent": "@pivot-main", "x": 205, "y": 180, "color": "ff0101ff"}, + {"name": "@pivot-center", "parent": "@pivot-back", "x": -215.11, "y": -5.25, "color": "ff0101ff"}, + {"name": "@axie", "parent": "@pivot-center", "length": 213.28, "rotation": 179.04, "x": 196.39, "y": 5.16}, {"name": "@back", "parent": "@axie", "rotation": -179.04, "x": 37.63, "y": -198.19}, + {"name": "back", "parent": "@back", "length": 149.41, "rotation": 73, "x": -120.97, "y": 65.3, "transform": "noScale"}, + {"name": "@body", "parent": "@axie", "length": 226.28, "rotation": -8.35, "x": 224.58, "y": -0.53}, {"name": "@ear-left", "parent": "@axie", "rotation": -179.04, "x": 112.7, "y": -203.23}, + {"name": "ear-left", "parent": "@ear-left", "length": 113.61, "rotation": -90, "x": 28, "y": -3, "transform": "noScale"}, + {"name": "@ear-right", "parent": "@axie", "rotation": -179.04, "x": 405.28, "y": -235.33}, + {"name": "ear-right", "parent": "@ear-right", "length": 119.39, "rotation": -90, "x": -91, "y": -56, "transform": "noScale"}, + {"name": "@eyes", "parent": "@axie", "length": 12, "rotation": -179.04, "x": 384.24, "y": -113.67}, {"name": "@horn", "parent": "@axie", "rotation": -179.04, "x": 327.92, "y": -214.63}, + {"name": "horn", "parent": "@horn", "length": 176.72, "rotation": 90, "y": 18, "transform": "noScale"}, + {"name": "@leg-back-left", "parent": "@axie", "length": 76.4, "rotation": 100.96, "x": -15.3, "y": 102.56, "transform": "noScale"}, + {"name": "@leg-front-left", "parent": "@axie", "length": 51.19, "rotation": 93.86, "x": 134.77, "y": 149.55, "transform": "noScale"}, + {"name": "@leg-front-right", "parent": "@axie", "length": 74.83, "rotation": 83.2, "x": 382.95, "y": 121.78, "transform": "noScale"}, + {"name": "@mouth", "parent": "@axie", "rotation": -179.04, "x": 382.23, "y": 6.31}, + {"name": "body-pattern", "parent": "@body", "rotation": -170.69, "x": -267.21, "y": -49.4, "transform": "noScale"}, {"name": "@shadow", "parent": "@root", "color": "e6d713ff"}, + {"name": "@tail", "parent": "@axie", "rotation": -179.04, "x": -11.76, "y": 61.72}, + {"name": "tail", "parent": "@tail", "length": 203.67, "rotation": -12, "x": 35, "y": 3, "transform": "noScale"}, + {"name": "leg-front-right-IK", "parent": "@pivot-main", "x": -195.99, "y": -10.21, "color": "ff3f00ff"}, + {"name": "leg-front-left-IK", "parent": "@pivot-main", "x": 42.3, "y": -18.42, "color": "ff3f00ff"}, + {"name": "leg-back-left-IK", "parent": "@pivot-main", "x": 208.57, "y": 1.35, "color": "ff3f00ff"}, {"name": "@ball", "parent": "@root", "y": 191, "color": "f3981bff"}, + {"name": "ball", "parent": "@ball", "y": -191, "color": "f4a729ff"} + ], + "slots": [ + {"name": "shadow", "bone": "@shadow", "attachment": "shadow"}, {"name": "ball", "bone": "ball"}, {"name": "leg-front-right", "bone": "@leg-front-right", "attachment": "leg-front-right"}, + {"name": "ear-right", "bone": "ear-right", "attachment": "ear-right"}, {"name": "tail", "bone": "tail", "attachment": "tail"}, {"name": "back", "bone": "back", "attachment": "back"}, + {"name": "leg-back-left", "bone": "@leg-back-left", "attachment": "leg-back-left"}, {"name": "body", "bone": "@body", "attachment": "body"}, {"name": "body-pattern", "bone": "body-pattern"}, + {"name": "leg-front-left", "bone": "@leg-front-left", "attachment": "leg-front-left"}, {"name": "horn", "bone": "horn", "attachment": "horn"}, + {"name": "eyes", "bone": "@eyes", "attachment": "eyes"}, {"name": "mouth", "bone": "@mouth", "attachment": "mouth"}, {"name": "ear-left", "bone": "ear-left", "attachment": "ear-left"} + ], + "ik": [ + {"name": "leg-back-left-IK", "order": 2, "bones": ["@leg-back-left"], "target": "leg-back-left-IK"}, + {"name": "leg-front-left-IK", "order": 1, "bones": ["@leg-front-left"], "target": "leg-front-left-IK"}, + {"name": "leg-front-right-IK", "bones": ["@leg-front-right"], "target": "leg-front-right-IK"} + ], + "skins": [ + { + "name": "default", + "attachments": { + "back": {"back": {"x": 156.69529411764705, "y": -90.54588235294119, "rotation": -73, "width": 383.5294117647059, "height": 369.4117647058824, "path": "japan-01-lv2.back"}}, + "ear-left": {"ear-left": {"x": -36.599411764705884, "y": -22.978235294117653, "rotation": 90, "width": 167.05882352941177, "height": 301.1764705882353, "path": "japan-01-lv2.ear-left"}}, + "ear-right": {"ear-right": {"x": -23.89352941176471, "y": 22.90411764705881, "rotation": 90, "width": 117.64705882352942, "height": 369.4117647058824, "path": "japan-01-lv2.ear-right"}}, + "eyes": { + "eyes": {"x": 45.90411764705881, "y": 26.599411764705884, "width": 369.4117647058824, "height": 192.94117647058823, "path": "japan-01-lv2.eyes"}, + "eyes-angry": {"x": 45.90411764705881, "y": 26.599411764705884, "width": 369.4117647058824, "height": 192.94117647058823, "path": "japan-01-lv2.eyes-angry"}, + "eyes-happy": {"x": 45.90411764705881, "y": 26.599411764705884, "width": 369.4117647058824, "height": 192.94117647058823, "path": "japan-01-lv2.eyes-happy"}, + "eyes-shut": {"x": 54.49235294117646, "y": 50.12882352941177, "width": 308.2352941176471, "height": 145.88235294117646, "path": "japan-01-lv2.eyes-shut"} + }, + "horn": {"horn": {"x": 106.42294117647057, "y": 2.3899999999999997, "rotation": -90, "width": 195.29411764705884, "height": 240.0, "path": "japan-01-lv2.horn"}}, + "mouth": { + "mouth": {"x": 30.021764705882347, "y": 15.07, "width": 221.1764705882353, "height": 160.0, "path": "japan-01-lv2.mouth"}, + "mouth-bite": {"x": 25.727647058823536, "y": 19.658235294117652, "width": 331.7647058823529, "height": 138.8235294117647, "path": "japan-01-lv2.mouth-bite"}, + "mouth-open": {"x": 28.374705882352927, "y": -1.4005882352941161, "width": 296.47058823529414, "height": 192.94117647058823, "path": "japan-01-lv2.mouth-open"}, + "mouth-smile": {"x": 29.96294117647058, "y": 25.12882352941177, "width": 315.29411764705884, "height": 145.88235294117646, "path": "japan-01-lv2.mouth-smile"} + }, + "tail": {"tail": {"x": 98.2470588235294, "y": 121.01764705882354, "rotation": 12, "width": 244.7058823529412, "height": 331.7647058823529, "path": "japan-01-lv2.tail"}} + } + } + ], + "events": {"hit": {}, "hit-buff": {}, "jump": {}, "start-attack": {}}, + "keyAnimations": { + "activity/appear": "1023093953", + "activity/bath": "3305387968", + "attack/ranged/cast-fly": "4180526371", + "attack/ranged/cast-high": "164191126", + "attack/ranged/cast-low": "198813017", + "attack/ranged/cast-multi": "151119", + "attack/ranged/cast-tail": "997902532", + "activity/eat-bite": "1137807767", + "activity/eat-chew": "1988236421", + "activity/entrance": "3768378365", + "defense/evade": "1735454995", + "activity/evolve": "649307630", + "battle/get-buff": "1455190363", + "battle/get-debuff": "606904312", + "defense/hit-by-normal": "2045974966", + "defense/hit-by-normal-crit": "2130010601", + "defense/hit-by-normal-dramatic": "3823092125", + "defense/hit-by-ranged-attack": "2224561612", + "defense/hit-with-shield": "390714790", + "attack/melee/horn-gore": "1327954218", + "attack/melee/mouth-bite": "2237748264", + "action/move-back": "3766271173", + "action/move-forward": "2945160014", + "attack/melee/multi-attack": "905926802", + "action/idle/normal": "1659336865", + "attack/melee/normal-attack": "3305373483", + "activity/prepare": "405864717", + "action/idle/random-01": "554401889", + "action/idle/random-02": "1085666627", + "action/idle/random-03": "2021333900", + "action/idle/random-04": "1003789695", + "action/idle/random-05": "2745614147", + "action/run": "1438840721", + "draft/run-origin": "3577885069", + "attack/melee/shrimp": "3833448733", + "activity/sleep": "100562494", + "attack/melee/tail-multi-slap": "3317139533", + "attack/melee/tail-roll": "3108617565", + "attack/melee/tail-smash": "519942130", + "attack/melee/tail-thrash": "628713175", + "activity/victory-pose-back-flip": "2227634241" + } + }, + "japan-03-lv2": { + "bones": [ + {"name": "@root"}, {"name": "@pivot-main", "parent": "@root"}, {"name": "@pivot-back", "parent": "@pivot-main", "x": 205, "y": 180, "color": "ff0101ff"}, + {"name": "@pivot-center", "parent": "@pivot-back", "x": -215.11, "y": -5.25, "color": "ff0101ff"}, + {"name": "@axie", "parent": "@pivot-center", "length": 213.28, "rotation": 179.04, "x": 196.39, "y": 5.16}, {"name": "@back", "parent": "@axie", "rotation": -179.04, "x": 37.63, "y": -198.19}, + {"name": "back", "parent": "@back", "length": 149.41, "rotation": 73, "x": -127.97, "y": 11.3, "transform": "noScale"}, + {"name": "@body", "parent": "@axie", "length": 226.28, "rotation": -8.35, "x": 224.58, "y": -0.53}, {"name": "@ear-left", "parent": "@axie", "rotation": -179.04, "x": 112.7, "y": -203.23}, + {"name": "ear-left", "parent": "@ear-left", "length": 113.61, "rotation": 60, "x": -33, "y": -3, "transform": "noScale"}, + {"name": "@ear-right", "parent": "@axie", "rotation": -179.04, "x": 405.28, "y": -235.33}, + {"name": "ear-right", "parent": "@ear-right", "length": 119.39, "rotation": 80, "x": -75, "y": -38, "transform": "noScale"}, + {"name": "@eyes", "parent": "@axie", "rotation": -179.04, "x": 384.24, "y": -113.67}, {"name": "@horn", "parent": "@axie", "rotation": -179.04, "x": 327.92, "y": -214.63}, + {"name": "horn", "parent": "@horn", "length": 176.72, "rotation": 90, "y": 18, "transform": "noScale"}, + {"name": "@leg-back-left", "parent": "@axie", "length": 76.4, "rotation": 100.96, "x": -15.3, "y": 102.56, "transform": "noScale"}, + {"name": "@leg-front-left", "parent": "@axie", "length": 51.19, "rotation": 93.86, "x": 134.77, "y": 149.55, "transform": "noScale"}, + {"name": "@leg-front-right", "parent": "@axie", "length": 74.83, "rotation": 83.2, "x": 382.95, "y": 121.78, "transform": "noScale"}, + {"name": "@mouth", "parent": "@axie", "rotation": -179.04, "x": 382.23, "y": 6.31}, + {"name": "body-pattern", "parent": "@body", "rotation": -170.69, "x": -267.21, "y": -49.4, "transform": "noScale"}, {"name": "@shadow", "parent": "@root", "color": "e6d713ff"}, + {"name": "@tail", "parent": "@axie", "rotation": -179.04, "x": -11.76, "y": 61.72}, + {"name": "tail", "parent": "@tail", "length": 203.67, "rotation": 30, "x": 67, "y": 24, "transform": "noScale"}, + {"name": "leg-front-right-IK", "parent": "@pivot-main", "x": -195.99, "y": -10.21, "color": "ff3f00ff"}, + {"name": "leg-front-left-IK", "parent": "@pivot-main", "x": 42.3, "y": -18.42, "color": "ff3f00ff"}, + {"name": "leg-back-left-IK", "parent": "@pivot-main", "x": 208.57, "y": 1.35, "color": "ff3f00ff"}, {"name": "@ball", "parent": "@root", "y": 191, "color": "f3981bff"}, + {"name": "ball", "parent": "@ball", "y": -191, "color": "f4a729ff"} + ], + "slots": [ + {"name": "shadow", "bone": "@shadow", "attachment": "shadow"}, {"name": "ball", "bone": "ball"}, {"name": "leg-front-right", "bone": "@leg-front-right", "attachment": "leg-front-right"}, + {"name": "ear-right", "bone": "ear-right", "attachment": "ear-right"}, {"name": "tail", "bone": "tail", "attachment": "tail"}, {"name": "back", "bone": "back", "attachment": "back"}, + {"name": "leg-back-left", "bone": "@leg-back-left", "attachment": "leg-back-left"}, {"name": "body", "bone": "@body", "attachment": "body"}, {"name": "body-pattern", "bone": "body-pattern"}, + {"name": "leg-front-left", "bone": "@leg-front-left", "attachment": "leg-front-left"}, {"name": "mouth", "bone": "@mouth", "attachment": "mouth"}, + {"name": "eyes", "bone": "@eyes", "attachment": "eyes"}, {"name": "ear-left", "bone": "ear-left", "attachment": "ear-left"}, {"name": "horn", "bone": "horn", "attachment": "horn"} + ], + "ik": [ + {"name": "leg-back-left-IK", "order": 2, "bones": ["@leg-back-left"], "target": "leg-back-left-IK"}, + {"name": "leg-front-left-IK", "order": 1, "bones": ["@leg-front-left"], "target": "leg-front-left-IK"}, + {"name": "leg-front-right-IK", "bones": ["@leg-front-right"], "target": "leg-front-right-IK"} + ], + "skins": [ + { + "name": "default", + "attachments": { + "back": {"back": {"x": 189.06470588235294, "y": -48.11176470588235, "rotation": -73, "width": 336.47058823529414, "height": 298.8235294117647, "path": "japan-03-lv2.back"}}, + "ear-left": {"ear-left": {"x": 90.97764705882352, "y": -19.402352941176478, "rotation": -60, "width": 211.76470588235296, "height": 211.76470588235296, "path": "japan-03-lv2.ear-left"}}, + "ear-right": { + "ear-right": {"x": 73.37823529411764, "y": -10.231176470588231, "rotation": -80, "width": 98.82352941176471, "height": 225.88235294117646, "path": "japan-03-lv2.ear-right"} + }, + "eyes": { + "eyes": {"x": 28.505294117647043, "y": 28.1335294117647, "width": 263.5294117647059, "height": 122.3529411764706, "path": "japan-03-lv2.eyes"}, + "eyes-angry": {"x": 28.505294117647043, "y": 28.1335294117647, "width": 263.5294117647059, "height": 122.3529411764706, "path": "japan-03-lv2.eyes-angry"}, + "eyes-happy": {"x": 33.79941176470589, "y": 28.1335294117647, "width": 272.94117647058823, "height": 122.3529411764706, "path": "japan-03-lv2.eyes-happy"}, + "eyes-shut": {"x": 28.505294117647043, "y": 28.1335294117647, "width": 263.5294117647059, "height": 122.3529411764706, "path": "japan-03-lv2.eyes-shut"} + }, + "horn": {"horn": {"x": 155.89823529411763, "y": 34.20058823529411, "rotation": -90, "width": 178.82352941176472, "height": 327.05882352941177, "path": "japan-03-lv2.horn"}}, + "mouth": { + "mouth": {"x": 18.56411764705881, "y": 57.66294117647059, "width": 289.4117647058824, "height": 115.29411764705883, "path": "japan-03-lv2.mouth"}, + "mouth-bite": {"x": 18.56411764705881, "y": 42.36882352941177, "width": 289.4117647058824, "height": 145.88235294117646, "path": "japan-03-lv2.mouth-bite"}, + "mouth-open": {"x": 18.56411764705881, "y": 15.31, "width": 289.4117647058824, "height": 200.0, "path": "japan-03-lv2.mouth-open"}, + "mouth-smile": {"x": 18.56411764705881, "y": 27.07470588235294, "width": 289.4117647058824, "height": 176.47058823529412, "path": "japan-03-lv2.mouth-smile"} + }, + "tail": {"tail": {"x": 100.42294117647057, "y": 3.861176470588232, "rotation": -30, "width": 275.29411764705884, "height": 214.11764705882354, "path": "japan-03-lv2.tail"}} + } + } + ], + "events": {"hit": {}, "hit-buff": {}, "jump": {}, "start-attack": {}}, + "keyAnimations": { + "activity/appear": "2709386226", + "activity/bath": "3305387968", + "attack/ranged/cast-fly": "3875510864", + "attack/ranged/cast-high": "3824431262", + "attack/ranged/cast-low": "2316570278", + "attack/ranged/cast-multi": "737684706", + "attack/ranged/cast-tail": "1153819837", + "activity/eat-bite": "1085337278", + "activity/eat-chew": "1147852503", + "activity/entrance": "20003499", + "defense/evade": "4009219861", + "activity/evolve": "678360058", + "battle/get-buff": "1928537773", + "battle/get-debuff": "4120709906", + "defense/hit-by-normal": "4178707913", + "defense/hit-by-normal-crit": "2811142217", + "defense/hit-by-normal-dramatic": "2896587887", + "defense/hit-by-ranged-attack": "1181032275", + "defense/hit-with-shield": "483383159", + "attack/melee/horn-gore": "578977380", + "attack/melee/mouth-bite": "52958864", + "action/move-back": "3766271173", + "action/move-forward": "2945160014", + "attack/melee/multi-attack": "561520605", + "action/idle/normal": "2102510868", + "attack/melee/normal-attack": "125468891", + "activity/prepare": "1435906176", + "action/idle/random-01": "3694724283", + "action/idle/random-02": "1366930187", + "action/idle/random-03": "3404907200", + "action/idle/random-04": "1861976481", + "action/idle/random-05": "2745614147", + "action/run": "1438840721", + "draft/run-origin": "3577885069", + "attack/melee/shrimp": "2166084648", + "activity/sleep": "100562494", + "attack/melee/tail-multi-slap": "3424109784", + "attack/melee/tail-roll": "188677644", + "attack/melee/tail-smash": "185835880", + "attack/melee/tail-thrash": "4284926080", + "activity/victory-pose-back-flip": "2227634241" + } + }, + "japan-02-lv2": { + "bones": [ + {"name": "@root"}, {"name": "@pivot-main", "parent": "@root"}, {"name": "@pivot-back", "parent": "@pivot-main", "x": 205, "y": 180, "color": "ff0101ff"}, + {"name": "@pivot-center", "parent": "@pivot-back", "x": -215.11, "y": -5.25, "color": "ff0101ff"}, + {"name": "@axie", "parent": "@pivot-center", "length": 213.28, "rotation": 179.04, "x": 196.39, "y": 5.16}, {"name": "@back", "parent": "@axie", "rotation": -179.04, "x": 37.63, "y": -198.19}, + {"name": "back", "parent": "@back", "length": 149.41, "rotation": 56, "x": -47.97, "y": 51.3, "transform": "noScale"}, + {"name": "@body", "parent": "@axie", "length": 226.28, "rotation": -8.35, "x": 224.58, "y": -0.53}, {"name": "@ear-left", "parent": "@axie", "rotation": -179.04, "x": 112.7, "y": -203.23}, + {"name": "ear-left", "parent": "@ear-left", "length": 113.61, "rotation": 4, "x": 7, "y": -28, "transform": "noScale"}, + {"name": "@ear-right", "parent": "@axie", "rotation": -179.04, "x": 405.28, "y": -235.33}, + {"name": "ear-right", "parent": "@ear-right", "length": 119.39, "rotation": -178, "x": -85, "y": -90, "transform": "noScale"}, + {"name": "@eyes", "parent": "@axie", "rotation": -179.04, "x": 384.24, "y": -113.67}, {"name": "@horn", "parent": "@axie", "rotation": -179.04, "x": 327.92, "y": -214.63}, + {"name": "horn", "parent": "@horn", "length": 176.72, "rotation": 90, "y": 18, "transform": "noScale"}, + {"name": "@leg-back-left", "parent": "@axie", "length": 76.4, "rotation": 100.96, "x": -15.3, "y": 102.56, "transform": "noScale"}, + {"name": "@leg-front-left", "parent": "@axie", "length": 51.19, "rotation": 93.86, "x": 134.77, "y": 149.55, "transform": "noScale"}, + {"name": "@leg-front-right", "parent": "@axie", "length": 74.83, "rotation": 83.2, "x": 382.95, "y": 121.78, "transform": "noScale"}, + {"name": "@mouth", "parent": "@axie", "rotation": -179.04, "x": 382.23, "y": 6.31}, + {"name": "body-pattern", "parent": "@body", "rotation": -170.69, "x": -267.21, "y": -49.4, "transform": "noScale"}, {"name": "@shadow", "parent": "@root", "color": "e6d713ff"}, + {"name": "@tail", "parent": "@axie", "rotation": -179.04, "x": -11.76, "y": 61.72}, + {"name": "tail", "parent": "@tail", "length": 203.67, "rotation": -12, "x": 16, "y": 72.87, "transform": "noScale"}, + {"name": "leg-front-right-IK", "parent": "@pivot-main", "x": -195.99, "y": -10.21, "color": "ff3f00ff"}, + {"name": "leg-front-left-IK", "parent": "@pivot-main", "x": 42.3, "y": -18.42, "color": "ff3f00ff"}, + {"name": "leg-back-left-IK", "parent": "@pivot-main", "x": 208.57, "y": 1.35, "color": "ff3f00ff"}, {"name": "@ball", "parent": "@root", "y": 191, "color": "f3981bff"}, + {"name": "ball", "parent": "@ball", "y": -191, "color": "f4a729ff"} + ], + "slots": [ + {"name": "shadow", "bone": "@shadow", "attachment": "shadow"}, {"name": "ball", "bone": "ball"}, {"name": "leg-front-right", "bone": "@leg-front-right", "attachment": "leg-front-right"}, + {"name": "ear-right", "bone": "ear-right", "attachment": "ear-right"}, {"name": "tail", "bone": "tail", "attachment": "tail"}, {"name": "back", "bone": "back", "attachment": "back"}, + {"name": "leg-back-left", "bone": "@leg-back-left", "attachment": "leg-back-left"}, {"name": "body", "bone": "@body", "attachment": "body"}, {"name": "body-pattern", "bone": "body-pattern"}, + {"name": "leg-front-left", "bone": "@leg-front-left", "attachment": "leg-front-left"}, {"name": "eyes", "bone": "@eyes", "attachment": "eyes"}, + {"name": "mouth", "bone": "@mouth", "attachment": "mouth"}, {"name": "ear-left", "bone": "ear-left", "attachment": "ear-left"}, {"name": "horn", "bone": "horn", "attachment": "horn"} + ], + "ik": [ + {"name": "leg-back-left-IK", "order": 2, "bones": ["@leg-back-left"], "target": "leg-back-left-IK"}, + {"name": "leg-front-left-IK", "order": 1, "bones": ["@leg-front-left"], "target": "leg-front-left-IK"}, + {"name": "leg-front-right-IK", "bones": ["@leg-front-right"], "target": "leg-front-right-IK"} + ], + "skins": [ + { + "name": "default", + "attachments": { + "back": {"back": {"x": 136.58058823529413, "y": -24.562941176470595, "rotation": -56, "width": 367.05882352941177, "height": 244.7058823529412, "path": "japan-02-lv2.back"}}, + "ear-left": {"ear-left": {"x": 59.75882352941177, "y": -89.14117647058823, "rotation": -4, "width": 145.88235294117646, "height": 225.88235294117646, "path": "japan-02-lv2.ear-left"}}, + "ear-right": { + "ear-right": {"x": 96.56294117647057, "y": -0.11705882352941299, "rotation": 178, "width": 235.29411764705884, "height": 75.29411764705883, "path": "japan-02-lv2.ear-right"} + }, + "eyes": { + "eyes": {"x": 32.339411764705886, "y": 34.16882352941177, "width": 272.94117647058823, "height": 145.88235294117646, "path": "japan-02-lv2.eyes"}, + "eyes-angry": {"x": 32.339411764705886, "y": 34.16882352941177, "width": 272.94117647058823, "height": 145.88235294117646, "path": "japan-02-lv2.eyes-angry"}, + "eyes-happy": {"x": 32.339411764705886, "y": 34.16882352941177, "width": 272.94117647058823, "height": 145.88235294117646, "path": "japan-02-lv2.eyes-happy"}, + "eyes-shut": {"x": 32.339411764705886, "y": 34.16882352941177, "width": 272.94117647058823, "height": 145.88235294117646, "path": "japan-02-lv2.eyes-shut"} + }, + "horn": {"horn": {"x": 130.19823529411767, "y": 18.219411764705885, "rotation": -90, "width": 338.8235294117647, "height": 272.94117647058823, "path": "japan-02-lv2.horn"}}, + "mouth": { + "mouth": {"x": -30.99411764705884, "y": 65.57058823529411, "width": 350.5882352941177, "height": 87.05882352941177, "path": "japan-02-lv2.mouth"}, + "mouth-bite": {"x": -39.99411764705884, "y": 63.21764705882353, "width": 350.5882352941177, "height": 91.76470588235294, "path": "japan-02-lv2.mouth-bite"}, + "mouth-open": {"x": -29.170588235294115, "y": 27.92352941176471, "width": 352.94117647058823, "height": 162.35294117647058, "path": "japan-02-lv2.mouth-open"}, + "mouth-smile": {"x": -38.17058823529412, "y": 68.74705882352941, "width": 392.94117647058823, "height": 84.70588235294117, "path": "japan-02-lv2.mouth-smile"} + }, + "tail": {"tail": {"x": 135.67117647058822, "y": 14.805294117647044, "rotation": 12, "width": 334.11764705882354, "height": 303.5294117647059, "path": "japan-02-lv2.tail"}} + } + } + ], + "events": {"hit": {}, "hit-buff": {}, "jump": {}, "start-attack": {}}, + "keyAnimations": { + "activity/appear": "1023093953", + "activity/bath": "3305387968", + "attack/ranged/cast-fly": "4180526371", + "attack/ranged/cast-high": "164191126", + "attack/ranged/cast-low": "198813017", + "attack/ranged/cast-multi": "151119", + "attack/ranged/cast-tail": "997902532", + "activity/eat-bite": "1137807767", + "activity/eat-chew": "1988236421", + "activity/entrance": "3768378365", + "defense/evade": "1735454995", + "activity/evolve": "649307630", + "battle/get-buff": "1455190363", + "battle/get-debuff": "606904312", + "defense/hit-by-normal": "2045974966", + "defense/hit-by-normal-crit": "2130010601", + "defense/hit-by-normal-dramatic": "3823092125", + "defense/hit-by-ranged-attack": "2224561612", + "defense/hit-with-shield": "390714790", + "attack/melee/horn-gore": "1327954218", + "attack/melee/mouth-bite": "2237748264", + "action/move-back": "3766271173", + "action/move-forward": "2945160014", + "attack/melee/multi-attack": "905926802", + "action/idle/normal": "1659336865", + "attack/melee/normal-attack": "3305373483", + "activity/prepare": "405864717", + "action/idle/random-01": "554401889", + "action/idle/random-02": "1085666627", + "action/idle/random-03": "2021333900", + "action/idle/random-04": "1003789695", + "action/idle/random-05": "2745614147", + "action/run": "1438840721", + "draft/run-origin": "3577885069", + "attack/melee/shrimp": "3833448733", + "activity/sleep": "100562494", + "attack/melee/tail-multi-slap": "3317139533", + "attack/melee/tail-roll": "3108617565", + "attack/melee/tail-smash": "519942130", + "attack/melee/tail-thrash": "628713175", + "activity/victory-pose-back-flip": "2227634241" + } + }, + "bird-12-lv2": { + "bones": [ + {"name": "@root"}, {"name": "@pivot-main", "parent": "@root"}, {"name": "@pivot-back", "parent": "@pivot-main", "x": 205, "y": 180, "color": "ff0101ff"}, + {"name": "@pivot-center", "parent": "@pivot-back", "x": -215.11, "y": -5.25, "color": "ff0101ff"}, + {"name": "@axie", "parent": "@pivot-center", "length": 213.28, "rotation": 179.04, "x": 196.39, "y": 5.16}, {"name": "@back", "parent": "@axie", "rotation": -179.04, "x": 37.63, "y": -198.19}, + {"name": "back", "parent": "@back", "length": 149.41, "rotation": 48, "x": -35.97, "y": 27.3, "transform": "noScale"}, + {"name": "@body", "parent": "@axie", "length": 226.28, "rotation": -8.35, "x": 224.58, "y": -0.53}, {"name": "@ear-left", "parent": "@axie", "rotation": -179.04, "x": 112.7, "y": -203.23}, + {"name": "ear-left", "parent": "@ear-left", "length": 113.61, "rotation": 5, "x": 5, "y": -40.5, "transform": "noScale"}, + {"name": "@ear-right", "parent": "@axie", "rotation": -179.04, "x": 405.28, "y": -235.33}, + {"name": "ear-right", "parent": "@ear-right", "length": 119.39, "rotation": 181, "x": -83, "y": -102, "transform": "noScale"}, + {"name": "@eyes", "parent": "@axie", "rotation": -179.04, "x": 384.24, "y": -113.67}, {"name": "@horn", "parent": "@axie", "rotation": -179.04, "x": 327.92, "y": -214.63}, + {"name": "horn", "parent": "@horn", "length": 176.72, "rotation": 90, "y": 18, "transform": "noScale"}, + {"name": "@leg-back-left", "parent": "@axie", "length": 76.4, "rotation": 100.96, "x": -15.3, "y": 102.56, "transform": "noScale"}, + {"name": "@leg-front-left", "parent": "@axie", "length": 51.19, "rotation": 93.86, "x": 134.77, "y": 149.55, "transform": "noScale"}, + {"name": "@leg-front-right", "parent": "@axie", "length": 74.83, "rotation": 83.2, "x": 382.95, "y": 121.78, "transform": "noScale"}, + {"name": "@mouth", "parent": "@axie", "rotation": -179.04, "x": 382.23, "y": 6.31}, + {"name": "body-pattern", "parent": "@body", "rotation": -170.69, "x": -267.21, "y": -49.4, "transform": "noScale"}, {"name": "@shadow", "parent": "@root", "color": "e6d713ff"}, + {"name": "@tail", "parent": "@axie", "rotation": -179.04, "x": -11.76, "y": 61.72}, + {"name": "tail", "parent": "@tail", "length": 203.67, "rotation": 32, "x": -9, "y": -8, "transform": "noScale"}, + {"name": "leg-front-right-IK", "parent": "@pivot-main", "x": -195.99, "y": -10.21, "color": "ff3f00ff"}, + {"name": "leg-front-left-IK", "parent": "@pivot-main", "x": 42.3, "y": -18.42, "color": "ff3f00ff"}, + {"name": "leg-back-left-IK", "parent": "@pivot-main", "x": 208.57, "y": 1.35, "color": "ff3f00ff"}, {"name": "@ball", "parent": "@root", "y": 191, "color": "f3981bff"}, + {"name": "ball", "parent": "@ball", "y": -191, "color": "f4a729ff"} + ], + "slots": [ + {"name": "shadow", "bone": "@shadow", "attachment": "shadow"}, {"name": "ball", "bone": "ball"}, {"name": "leg-front-right", "bone": "@leg-front-right", "attachment": "leg-front-right"}, + {"name": "ear-right", "bone": "ear-right", "attachment": "ear-right"}, {"name": "tail", "bone": "tail", "attachment": "tail"}, {"name": "back", "bone": "back", "attachment": "back"}, + {"name": "leg-back-left", "bone": "@leg-back-left", "attachment": "leg-back-left"}, {"name": "body", "bone": "@body", "attachment": "body"}, {"name": "body-pattern", "bone": "body-pattern"}, + {"name": "leg-front-left", "bone": "@leg-front-left", "attachment": "leg-front-left"}, {"name": "eyes", "bone": "@eyes", "attachment": "eyes"}, + {"name": "mouth", "bone": "@mouth", "attachment": "mouth"}, {"name": "ear-left", "bone": "ear-left", "attachment": "ear-left"}, {"name": "horn", "bone": "horn", "attachment": "horn"} + ], + "ik": [ + {"name": "leg-back-left-IK", "order": 2, "bones": ["@leg-back-left"], "target": "leg-back-left-IK"}, + {"name": "leg-front-left-IK", "order": 1, "bones": ["@leg-front-left"], "target": "leg-front-left-IK"}, + {"name": "leg-front-right-IK", "bones": ["@leg-front-right"], "target": "leg-front-right-IK"} + ], + "skins": [ + { + "name": "default", + "attachments": { + "back": {"back": {"x": 106.68058823529411, "y": 122.52058823529411, "rotation": -48, "width": 287.05882352941177, "height": 247.05882352941177, "path": "bird-12-lv2.back"}}, + "ear-left": {"ear-left": {"x": 63.51882352941177, "y": -48.95, "rotation": -5, "width": 185.88235294117646, "height": 240.0, "path": "bird-12-lv2.ear-left"}}, + "ear-right": { + "ear-right": {"x": 72.99647058823528, "y": 19.568823529411763, "rotation": 179, "width": 157.64705882352942, "height": 105.88235294117648, "path": "bird-12-lv2.ear-right"} + }, + "eyes": { + "eyes": {"x": 28.16, "y": 17.98, "width": 293, "height": 97, "path": "bird-12-lv2.eyes"}, + "eyes-angry": {"x": 28.16, "y": 17.98, "width": 293, "height": 97, "path": "bird-12-lv2.eyes-angry"}, + "eyes-happy": {"x": 28.16, "y": 15.48, "width": 293, "height": 60, "path": "bird-12-lv2.eyes-happy"}, + "eyes-shut": {"x": 26.16, "y": 7.98, "width": 289, "height": 49, "path": "bird-12-lv2.eyes-shut"} + }, + "horn": {"horn": {"x": 112.9064705882353, "y": 11.087647058823523, "rotation": -90, "width": 197.64705882352942, "height": 251.76470588235296, "path": "bird-12-lv2.horn"}}, + "mouth": { + "mouth": {"x": 2.66, "y": 67.48, "width": 100, "height": 124, "path": "bird-12-lv2.mouth"}, + "mouth-bite": {"x": 8.66, "y": 73.98, "width": 140, "height": 111, "path": "bird-12-lv2.mouth-bite"}, + "mouth-open": {"x": 3.16, "y": 55.48, "width": 99, "height": 180, "path": "bird-12-lv2.mouth-open"}, + "mouth-smile": {"x": 11.66, "y": 67.48, "width": 118, "height": 124, "path": "bird-12-lv2.mouth-smile"} + }, + "tail": {"tail": {"x": 189.92176470588234, "y": 20.131764705882347, "rotation": -32, "width": 341.1764705882353, "height": 301.1764705882353, "path": "bird-12-lv2.tail"}} + } + } + ], + "events": {"hit": {}, "hit-buff": {}, "jump": {}, "start-attack": {}}, + "keyAnimations": { + "activity/appear": "1023093953", + "activity/bath": "3305387968", + "attack/ranged/cast-fly": "4180526371", + "attack/ranged/cast-high": "164191126", + "attack/ranged/cast-low": "198813017", + "attack/ranged/cast-multi": "151119", + "attack/ranged/cast-tail": "997902532", + "activity/eat-bite": "1137807767", + "activity/eat-chew": "1988236421", + "activity/entrance": "3768378365", + "defense/evade": "1735454995", + "activity/evolve": "649307630", + "battle/get-buff": "1455190363", + "battle/get-debuff": "606904312", + "defense/hit-by-normal": "2045974966", + "defense/hit-by-normal-crit": "2130010601", + "defense/hit-by-normal-dramatic": "3823092125", + "defense/hit-by-ranged-attack": "2224561612", + "defense/hit-with-shield": "390714790", + "attack/melee/horn-gore": "1327954218", + "attack/melee/mouth-bite": "2237748264", + "action/move-back": "3766271173", + "action/move-forward": "2945160014", + "attack/melee/multi-attack": "905926802", + "action/idle/normal": "1659336865", + "attack/melee/normal-attack": "3305373483", + "activity/prepare": "405864717", + "action/idle/random-01": "554401889", + "action/idle/random-02": "1085666627", + "action/idle/random-03": "2021333900", + "action/idle/random-04": "1003789695", + "action/idle/random-05": "2745614147", + "action/run": "1438840721", + "draft/run-origin": "3577885069", + "attack/melee/shrimp": "3833448733", + "activity/sleep": "100562494", + "attack/melee/tail-multi-slap": "3317139533", + "attack/melee/tail-roll": "3108617565", + "attack/melee/tail-smash": "519942130", + "attack/melee/tail-thrash": "628713175", + "activity/victory-pose-back-flip": "2227634241" + } + }, + "bird-06-lv2": { + "bones": [ + {"name": "@root"}, {"name": "@pivot-main", "parent": "@root"}, {"name": "@pivot-back", "parent": "@pivot-main", "x": 205, "y": 180, "color": "ff0101ff"}, + {"name": "@pivot-center", "parent": "@pivot-back", "x": -215.11, "y": -5.25, "color": "ff0101ff"}, + {"name": "@axie", "parent": "@pivot-center", "length": 213.28, "rotation": 179.04, "x": 196.39, "y": 5.16}, {"name": "@back", "parent": "@axie", "rotation": -179.04, "x": 37.63, "y": -198.19}, + {"name": "back", "parent": "@back", "length": 149.41, "rotation": 73, "x": 6.03, "y": 11.3, "transform": "noScale"}, + {"name": "@body", "parent": "@axie", "length": 226.28, "rotation": -8.35, "x": 224.58, "y": -0.53}, {"name": "@ear-left", "parent": "@axie", "rotation": -179.04, "x": 112.7, "y": -203.23}, + {"name": "ear-left", "parent": "@ear-left", "length": 113.61, "rotation": 60, "x": 5, "y": -15, "transform": "noScale"}, + {"name": "@ear-right", "parent": "@axie", "rotation": -179.04, "x": 405.28, "y": -235.33}, + {"name": "ear-right", "parent": "@ear-right", "length": 119.39, "rotation": 120, "x": 13, "y": -48, "transform": "noScale"}, + {"name": "@eyes", "parent": "@axie", "rotation": -179.04, "x": 384.24, "y": -113.67}, {"name": "@horn", "parent": "@axie", "rotation": -179.04, "x": 327.92, "y": -214.63}, + {"name": "horn", "parent": "@horn", "length": 176.72, "rotation": 90, "y": 18, "transform": "noScale"}, + {"name": "@leg-back-left", "parent": "@axie", "length": 76.4, "rotation": 100.96, "x": -15.3, "y": 102.56, "transform": "noScale"}, + {"name": "@leg-front-left", "parent": "@axie", "length": 51.19, "rotation": 93.86, "x": 134.77, "y": 149.55, "transform": "noScale"}, + {"name": "@leg-front-right", "parent": "@axie", "length": 74.83, "rotation": 83.2, "x": 382.95, "y": 121.78, "transform": "noScale"}, + {"name": "@mouth", "parent": "@axie", "rotation": -179.04, "x": 382.23, "y": 6.31}, + {"name": "body-pattern", "parent": "@body", "rotation": -170.69, "x": -267.21, "y": -49.4, "transform": "noScale"}, {"name": "@shadow", "parent": "@root", "color": "e6d713ff"}, + {"name": "@tail", "parent": "@axie", "rotation": -179.04, "x": -11.76, "y": 61.72}, + {"name": "tail", "parent": "@tail", "length": 203.67, "rotation": 40, "x": 31, "y": -50, "transform": "noScale"}, + {"name": "leg-front-right-IK", "parent": "@pivot-main", "x": -195.99, "y": -10.21, "color": "ff3f00ff"}, + {"name": "leg-front-left-IK", "parent": "@pivot-main", "x": 42.3, "y": -18.42, "color": "ff3f00ff"}, + {"name": "leg-back-left-IK", "parent": "@pivot-main", "x": 208.57, "y": 1.35, "color": "ff3f00ff"}, {"name": "@ball", "parent": "@root", "y": 191, "color": "f3981bff"}, + {"name": "ball", "parent": "@ball", "y": -191, "color": "f4a729ff"}, {"name": "@", "parent": "@root", "x": -7.85, "y": -35.11} + ], + "slots": [ + {"name": "shadow", "bone": "@shadow", "attachment": "shadow"}, {"name": "ball", "bone": "ball"}, {"name": "leg-front-right", "bone": "@leg-front-right", "attachment": "leg-front-right"}, + {"name": "ear-right", "bone": "ear-right", "attachment": "ear-right"}, {"name": "tail", "bone": "tail", "attachment": "tail"}, {"name": "back", "bone": "back", "attachment": "back"}, + {"name": "leg-back-left", "bone": "@leg-back-left", "attachment": "leg-back-left"}, {"name": "body", "bone": "@body", "attachment": "body"}, {"name": "body-pattern", "bone": "body-pattern"}, + {"name": "leg-front-left", "bone": "@leg-front-left", "attachment": "leg-front-left"}, {"name": "eyes", "bone": "@eyes", "attachment": "eyes"}, + {"name": "mouth", "bone": "@mouth", "attachment": "mouth"}, {"name": "ear-left", "bone": "ear-left", "attachment": "ear-left"}, {"name": "horn", "bone": "horn", "attachment": "horn"} + ], + "ik": [ + {"name": "leg-back-left-IK", "order": 2, "bones": ["@leg-back-left"], "target": "leg-back-left-IK"}, + {"name": "leg-front-left-IK", "order": 1, "bones": ["@leg-front-left"], "target": "leg-front-left-IK"}, + {"name": "leg-front-right-IK", "bones": ["@leg-front-right"], "target": "leg-front-right-IK"} + ], + "skins": [ + { + "name": "default", + "attachments": { + "back": {"back": {"x": 166.72117647058823, "y": 52.98764705882353, "rotation": -73, "width": 414.11764705882354, "height": 371.7647058823529, "path": "bird-06-lv2.back"}}, + "ear-left": {"ear-left": {"x": 117.62823529411766, "y": 61.647058823529406, "rotation": -60, "width": 138.8235294117647, "height": 204.7058823529412, "path": "bird-06-lv2.ear-left"}}, + "ear-right": { + "ear-right": {"x": 142.65176470588236, "y": 0.934117647058826, "rotation": -120, "width": 101.17647058823529, "height": 209.41176470588235, "path": "bird-06-lv2.ear-right"} + }, + "eyes": { + "eyes": {"x": 28.16, "y": 17.98, "width": 293, "height": 97, "path": "bird-06-lv2.eyes"}, + "eyes-angry": {"x": 28.16, "y": 17.98, "width": 293, "height": 97, "path": "bird-06-lv2.eyes-angry"}, + "eyes-happy": {"x": 28.16, "y": 15.48, "width": 293, "height": 60, "path": "bird-06-lv2.eyes-happy"}, + "eyes-shut": {"x": 26.16, "y": 7.98, "width": 289, "height": 49, "path": "bird-06-lv2.eyes-shut"} + }, + "horn": {"horn": {"x": 163.0329411764706, "y": -17.892352941176465, "rotation": -90, "width": 195.29411764705884, "height": 371.7647058823529, "path": "bird-06-lv2.horn"}}, + "mouth": { + "mouth": {"x": 2.66, "y": 67.48, "width": 100, "height": 124, "path": "bird-06-lv2.mouth"}, + "mouth-bite": {"x": 8.66, "y": 73.98, "width": 140, "height": 111, "path": "bird-06-lv2.mouth-bite"}, + "mouth-open": {"x": 3.16, "y": 55.48, "width": 99, "height": 180, "path": "bird-06-lv2.mouth-open"}, + "mouth-smile": {"x": 11.66, "y": 67.48, "width": 118, "height": 124, "path": "bird-06-lv2.mouth-smile"} + }, + "tail": {"tail": {"x": 180.20235294117646, "y": 36.45823529411765, "rotation": -40, "width": 268.2352941176471, "height": 298.8235294117647, "path": "bird-06-lv2.tail"}} + } + } + ], + "events": {"hit": {}, "hit-buff": {}, "jump": {}, "start-attack": {}}, + "keyAnimations": { + "activity/appear": "1023093953", + "activity/bath": "3305387968", + "attack/ranged/cast-fly": "4180526371", + "attack/ranged/cast-high": "164191126", + "attack/ranged/cast-low": "198813017", + "attack/ranged/cast-multi": "151119", + "attack/ranged/cast-tail": "997902532", + "activity/eat-bite": "1137807767", + "activity/eat-chew": "1988236421", + "activity/entrance": "3768378365", + "defense/evade": "1735454995", + "activity/evolve": "649307630", + "battle/get-buff": "1455190363", + "battle/get-debuff": "606904312", + "defense/hit-by-normal": "2045974966", + "defense/hit-by-normal-crit": "2130010601", + "defense/hit-by-normal-dramatic": "3823092125", + "defense/hit-by-ranged-attack": "2224561612", + "defense/hit-with-shield": "390714790", + "attack/melee/horn-gore": "1327954218", + "attack/melee/mouth-bite": "2237748264", + "action/move-back": "3766271173", + "action/move-forward": "2945160014", + "attack/melee/multi-attack": "905926802", + "action/idle/normal": "1659336865", + "attack/melee/normal-attack": "3305373483", + "activity/prepare": "405864717", + "action/idle/random-01": "554401889", + "action/idle/random-02": "1085666627", + "action/idle/random-03": "2021333900", + "action/idle/random-04": "1003789695", + "action/idle/random-05": "2745614147", + "action/run": "1438840721", + "draft/run-origin": "3577885069", + "attack/melee/shrimp": "3833448733", + "activity/sleep": "100562494", + "attack/melee/tail-multi-slap": "3317139533", + "attack/melee/tail-roll": "3108617565", + "attack/melee/tail-smash": "519942130", + "attack/melee/tail-thrash": "628713175", + "activity/victory-pose-back-flip": "2227634241" + } + }, + "bird-10-lv2": { + "bones": [ + {"name": "@root"}, {"name": "@pivot-main", "parent": "@root"}, {"name": "@pivot-back", "parent": "@pivot-main", "x": 205, "y": 180, "color": "ff0101ff"}, + {"name": "@pivot-center", "parent": "@pivot-back", "x": -215.11, "y": -5.25, "color": "ff0101ff"}, + {"name": "@axie", "parent": "@pivot-center", "length": 213.28, "rotation": 179.04, "x": 196.39, "y": 5.16}, {"name": "@back", "parent": "@axie", "rotation": -179.04, "x": 37.63, "y": -198.19}, + {"name": "back", "parent": "@back", "length": 149.41, "rotation": 73, "x": -127.97, "y": 11.3, "transform": "noScale"}, + {"name": "@body", "parent": "@axie", "length": 226.28, "rotation": -8.35, "x": 224.58, "y": -0.53}, {"name": "@ear-left", "parent": "@axie", "rotation": -179.04, "x": 112.7, "y": -203.23}, + {"name": "ear-left", "parent": "@ear-left", "length": 113.61, "rotation": 83.69, "x": -6.59, "y": 28.12, "transform": "noScale"}, + {"name": "@ear-right", "parent": "@axie", "rotation": -179.04, "x": 405.28, "y": -235.33}, + {"name": "ear-right", "parent": "@ear-right", "length": 119.39, "rotation": 90.31, "x": -6, "y": 18.24, "transform": "noScale"}, + {"name": "@eyes", "parent": "@axie", "rotation": -179.04, "x": 384.24, "y": -113.67}, {"name": "@horn", "parent": "@axie", "rotation": -179.04, "x": 327.92, "y": -214.63}, + {"name": "horn", "parent": "@horn", "length": 176.72, "rotation": 90, "y": 18, "transform": "noScale"}, + {"name": "@leg-back-left", "parent": "@axie", "length": 76.4, "rotation": 100.96, "x": -15.3, "y": 102.56, "transform": "noScale"}, + {"name": "@leg-front-left", "parent": "@axie", "length": 51.19, "rotation": 93.86, "x": 134.77, "y": 149.55, "transform": "noScale"}, + {"name": "@leg-front-right", "parent": "@axie", "length": 74.83, "rotation": 83.2, "x": 382.95, "y": 121.78, "transform": "noScale"}, + {"name": "@mouth", "parent": "@axie", "rotation": -179.04, "x": 382.23, "y": 6.31}, + {"name": "body-pattern", "parent": "@body", "rotation": -170.69, "x": -267.21, "y": -49.4, "transform": "noScale"}, {"name": "@shadow", "parent": "@root", "color": "e6d713ff"}, + {"name": "@tail", "parent": "@axie", "rotation": -179.04, "x": -11.76, "y": 61.72}, + {"name": "tail", "parent": "@tail", "length": 203.67, "rotation": 59.62, "x": 76.02, "y": -6.24, "transform": "noScale"}, + {"name": "leg-front-right-IK", "parent": "@pivot-main", "x": -195.99, "y": -10.21, "color": "ff3f00ff"}, + {"name": "leg-front-left-IK", "parent": "@pivot-main", "x": 42.3, "y": -18.42, "color": "ff3f00ff"}, + {"name": "leg-back-left-IK", "parent": "@pivot-main", "x": 208.57, "y": 1.35, "color": "ff3f00ff"}, {"name": "@ball", "parent": "@root", "y": 191, "color": "f3981bff"}, + {"name": "ball", "parent": "@ball", "y": -191, "color": "f4a729ff"}, {"name": "@", "parent": "@root", "x": -33.3, "y": -37.92} + ], + "slots": [ + {"name": "shadow", "bone": "@shadow", "attachment": "shadow"}, {"name": "ball", "bone": "ball"}, {"name": "leg-front-right", "bone": "@leg-front-right", "attachment": "leg-front-right"}, + {"name": "ear-right", "bone": "ear-right", "attachment": "ear-right"}, {"name": "tail", "bone": "tail", "attachment": "tail"}, {"name": "back", "bone": "back", "attachment": "back"}, + {"name": "leg-back-left", "bone": "@leg-back-left", "attachment": "leg-back-left"}, {"name": "body", "bone": "@body", "attachment": "body"}, {"name": "body-pattern", "bone": "body-pattern"}, + {"name": "leg-front-left", "bone": "@leg-front-left", "attachment": "leg-front-left"}, {"name": "eyes", "bone": "@eyes", "attachment": "eyes"}, + {"name": "mouth", "bone": "@mouth", "attachment": "mouth"}, {"name": "ear-left", "bone": "ear-left", "attachment": "ear-left"}, {"name": "horn", "bone": "horn", "attachment": "horn"} + ], + "ik": [ + {"name": "leg-back-left-IK", "order": 2, "bones": ["@leg-back-left"], "target": "leg-back-left-IK"}, + {"name": "leg-front-left-IK", "order": 1, "bones": ["@leg-front-left"], "target": "leg-front-left-IK"}, + {"name": "leg-front-right-IK", "bones": ["@leg-front-right"], "target": "leg-front-right-IK"} + ], + "skins": [ + { + "name": "default", + "attachments": { + "back": {"back": {"x": 191.06588235294117, "y": -121.47411764705885, "rotation": -73, "width": 390.5882352941177, "height": 430.5882352941177, "path": "bird-10-lv2.back"}}, + "ear-left": { + "ear-left": {"x": 73.51470588235294, "y": -23.081764705882364, "rotation": -83.69, "width": 176.47058823529412, "height": 218.82352941176472, "path": "bird-10-lv2.ear-left"} + }, + "ear-right": { + "ear-right": {"x": 42.72764705882352, "y": 7.368235294117638, "rotation": -90.31, "width": 131.76470588235296, "height": 218.82352941176472, "path": "bird-10-lv2.ear-right"} + }, + "eyes": { + "eyes": {"x": 34.725294117647046, "y": 14.084705882352942, "width": 263.5294117647059, "height": 136.47058823529412, "path": "bird-10-lv2.eyes"}, + "eyes-angry": {"x": 53.725294117647046, "y": 14.084705882352942, "width": 303.5294117647059, "height": 136.47058823529412, "path": "bird-10-lv2.eyes-angry"}, + "eyes-happy": {"x": 34.725294117647046, "y": 14.084705882352942, "width": 263.5294117647059, "height": 136.47058823529412, "path": "bird-10-lv2.eyes-happy"}, + "eyes-shut": {"x": 34.725294117647046, "y": 14.084705882352942, "width": 263.5294117647059, "height": 136.47058823529412, "path": "bird-10-lv2.eyes-shut"} + }, + "horn": {"horn": {"x": 147.67294117647057, "y": -42.19588235294119, "rotation": -90, "width": 235.29411764705884, "height": 329.4117647058824, "path": "bird-10-lv2.horn"}}, + "mouth": { + "mouth": {"x": 19.019411764705882, "y": 81.90823529411765, "width": 192.94117647058823, "height": 98.82352941176471, "path": "bird-10-lv2.mouth"}, + "mouth-bite": {"x": 19.901764705882346, "y": 85.37882352941176, "width": 181.1764705882353, "height": 105.88235294117648, "path": "bird-10-lv2.mouth-bite"}, + "mouth-open": {"x": 19.019411764705882, "y": 64.26117647058823, "width": 192.94117647058823, "height": 134.11764705882354, "path": "bird-10-lv2.mouth-open"}, + "mouth-smile": {"x": 19.295882352941174, "y": 82.17470588235294, "width": 190.58823529411765, "height": 96.47058823529412, "path": "bird-10-lv2.mouth-smile"} + }, + "tail": {"tail": {"x": 113.76235294117646, "y": -34.40647058823529, "rotation": -59.62, "width": 268.2352941176471, "height": 202.35294117647058, "path": "bird-10-lv2.tail"}} + } + } + ], + "events": {"hit": {}, "hit-buff": {}, "jump": {}, "start-attack": {}}, + "keyAnimations": { + "activity/appear": "1023093953", + "activity/bath": "3305387968", + "attack/ranged/cast-fly": "4180526371", + "attack/ranged/cast-high": "164191126", + "attack/ranged/cast-low": "198813017", + "attack/ranged/cast-multi": "151119", + "attack/ranged/cast-tail": "997902532", + "activity/eat-bite": "1137807767", + "activity/eat-chew": "1988236421", + "activity/entrance": "3768378365", + "defense/evade": "1735454995", + "activity/evolve": "649307630", + "battle/get-buff": "1455190363", + "battle/get-debuff": "606904312", + "defense/hit-by-normal": "2045974966", + "defense/hit-by-normal-crit": "2130010601", + "defense/hit-by-normal-dramatic": "3823092125", + "defense/hit-by-ranged-attack": "2224561612", + "defense/hit-with-shield": "390714790", + "attack/melee/horn-gore": "1327954218", + "attack/melee/mouth-bite": "2237748264", + "action/move-back": "3766271173", + "action/move-forward": "2945160014", + "attack/melee/multi-attack": "905926802", + "action/idle/normal": "1659336865", + "attack/melee/normal-attack": "3305373483", + "activity/prepare": "405864717", + "action/idle/random-01": "554401889", + "action/idle/random-02": "1085666627", + "action/idle/random-03": "2021333900", + "action/idle/random-04": "1003789695", + "action/idle/random-05": "2745614147", + "action/run": "1438840721", + "draft/run-origin": "3577885069", + "attack/melee/shrimp": "3833448733", + "activity/sleep": "100562494", + "attack/melee/tail-multi-slap": "3317139533", + "attack/melee/tail-roll": "3108617565", + "attack/melee/tail-smash": "519942130", + "attack/melee/tail-thrash": "628713175", + "activity/victory-pose-back-flip": "2227634241" + } + }, + "bird-04-lv2": { + "bones": [ + {"name": "@root"}, {"name": "@pivot-main", "parent": "@root"}, {"name": "@pivot-back", "parent": "@pivot-main", "x": 205, "y": 180, "color": "ff0101ff"}, + {"name": "@pivot-center", "parent": "@pivot-back", "x": -215.11, "y": -5.25, "color": "ff0101ff"}, + {"name": "@axie", "parent": "@pivot-center", "length": 213.28, "rotation": 179.04, "x": 196.39, "y": 5.16}, {"name": "@back", "parent": "@axie", "rotation": -179.04, "x": 37.63, "y": -198.19}, + {"name": "back", "parent": "@back", "length": 149.41, "rotation": 73, "x": -139.97, "y": 11.3, "transform": "noScale"}, + {"name": "@body", "parent": "@axie", "length": 226.28, "rotation": -8.35, "x": 224.58, "y": -0.53}, {"name": "@ear-left", "parent": "@axie", "rotation": -179.04, "x": 112.7, "y": -203.23}, + {"name": "ear-left", "parent": "@ear-left", "length": 113.61, "rotation": 10, "x": 5, "y": -45, "transform": "noScale"}, + {"name": "@ear-right", "parent": "@axie", "rotation": -179.04, "x": 405.28, "y": -235.33}, + {"name": "ear-right", "parent": "@ear-right", "length": 119.39, "rotation": 132, "x": -87, "y": -93, "transform": "noScale"}, + {"name": "@eyes", "parent": "@axie", "rotation": -179.04, "x": 384.24, "y": -113.67}, {"name": "@horn", "parent": "@axie", "rotation": -179.04, "x": 327.92, "y": -214.63}, + {"name": "horn", "parent": "@horn", "length": 176.72, "rotation": 90, "y": 18, "transform": "noScale"}, + {"name": "@leg-back-left", "parent": "@axie", "length": 76.4, "rotation": 100.96, "x": -15.3, "y": 102.56, "transform": "noScale"}, + {"name": "@leg-front-left", "parent": "@axie", "length": 51.19, "rotation": 93.86, "x": 134.77, "y": 149.55, "transform": "noScale"}, + {"name": "@leg-front-right", "parent": "@axie", "length": 74.83, "rotation": 83.2, "x": 382.95, "y": 121.78, "transform": "noScale"}, + {"name": "@mouth", "parent": "@axie", "rotation": -179.04, "x": 382.23, "y": 6.31}, + {"name": "body-pattern", "parent": "@body", "rotation": -170.69, "x": -267.21, "y": -49.4, "transform": "noScale"}, {"name": "@shadow", "parent": "@root", "color": "e6d713ff"}, + {"name": "@tail", "parent": "@axie", "rotation": -179.04, "x": -11.76, "y": 61.72}, + {"name": "tail", "parent": "@tail", "length": 203.67, "rotation": 21, "x": 16, "y": 34, "transform": "noScale"}, + {"name": "leg-front-right-IK", "parent": "@pivot-main", "x": -195.99, "y": -10.21, "color": "ff3f00ff"}, + {"name": "leg-front-left-IK", "parent": "@pivot-main", "x": 42.3, "y": -18.42, "color": "ff3f00ff"}, + {"name": "leg-back-left-IK", "parent": "@pivot-main", "x": 208.57, "y": 1.35, "color": "ff3f00ff"}, {"name": "@ball", "parent": "@root", "y": 191, "color": "f3981bff"}, + {"name": "ball", "parent": "@ball", "y": -191, "color": "f4a729ff"}, {"name": "@", "parent": "@root", "x": 16.95, "y": -52.6} + ], + "slots": [ + {"name": "shadow", "bone": "@shadow", "attachment": "shadow"}, {"name": "ball", "bone": "ball"}, {"name": "leg-front-right", "bone": "@leg-front-right", "attachment": "leg-front-right"}, + {"name": "ear-right", "bone": "ear-right", "attachment": "ear-right"}, {"name": "tail", "bone": "tail", "attachment": "tail"}, {"name": "back", "bone": "back", "attachment": "back"}, + {"name": "leg-back-left", "bone": "@leg-back-left", "attachment": "leg-back-left"}, {"name": "body", "bone": "@body", "attachment": "body"}, {"name": "body-pattern", "bone": "body-pattern"}, + {"name": "leg-front-left", "bone": "@leg-front-left", "attachment": "leg-front-left"}, {"name": "eyes", "bone": "@eyes", "attachment": "eyes"}, + {"name": "mouth", "bone": "@mouth", "attachment": "mouth"}, {"name": "ear-left", "bone": "ear-left", "attachment": "ear-left"}, {"name": "horn", "bone": "horn", "attachment": "horn"} + ], + "ik": [ + {"name": "leg-back-left-IK", "order": 2, "bones": ["@leg-back-left"], "target": "leg-back-left-IK"}, + {"name": "leg-front-left-IK", "order": 1, "bones": ["@leg-front-left"], "target": "leg-front-left-IK"}, + {"name": "leg-front-right-IK", "bones": ["@leg-front-right"], "target": "leg-front-right-IK"} + ], + "skins": [ + { + "name": "default", + "attachments": { + "back": {"back": {"x": 154.29823529411766, "y": -82.33941176470589, "rotation": -73, "width": 458.8235294117647, "height": 407.05882352941177, "path": "bird-04-lv2.back"}}, + "ear-left": {"ear-left": {"x": 51.33294117647058, "y": 85.93764705882352, "rotation": -10, "width": 155.29411764705884, "height": 211.76470588235296, "path": "bird-04-lv2.ear-left"}}, + "ear-right": { + "ear-right": {"x": 56.93705882352941, "y": -89.25235294117648, "rotation": -132, "width": 124.70588235294117, "height": 211.76470588235296, "path": "bird-04-lv2.ear-right"} + }, + "eyes": { + "eyes": {"x": 34.372352941176466, "y": 28.182352941176465, "width": 268.2352941176471, "height": 148.23529411764707, "path": "bird-04-lv2.eyes"}, + "eyes-angry": {"x": 34.372352941176466, "y": 18.594117647058827, "width": 268.2352941176471, "height": 129.41176470588235, "path": "bird-04-lv2.eyes-angry"}, + "eyes-happy": {"x": 34.372352941176466, "y": 28.182352941176465, "width": 268.2352941176471, "height": 148.23529411764707, "path": "bird-04-lv2.eyes-happy"}, + "eyes-shut": {"x": 34.372352941176466, "y": 28.182352941176465, "width": 268.2352941176471, "height": 148.23529411764707, "path": "bird-04-lv2.eyes-shut"} + }, + "horn": {"horn": {"x": 130.4470588235294, "y": -30.166470588235303, "rotation": -90, "width": 244.7058823529412, "height": 282.3529411764706, "path": "bird-04-lv2.horn"}}, + "mouth": { + "mouth": {"x": -4.980588235294116, "y": 71.35882352941175, "width": 112.94117647058823, "height": 105.88235294117648, "path": "bird-04-lv2.mouth"}, + "mouth-bite": {"x": 11.548823529411768, "y": 58.41764705882352, "width": 145.88235294117646, "height": 131.76470588235296, "path": "bird-04-lv2.mouth-bite"}, + "mouth-open": {"x": -1.6276470588235288, "y": 65.35882352941177, "width": 108.23529411764706, "height": 145.88235294117646, "path": "bird-04-lv2.mouth-open"}, + "mouth-smile": {"x": 1.784117647058826, "y": 58.41764705882352, "width": 129.41176470588235, "height": 131.76470588235296, "path": "bird-04-lv2.mouth-smile"} + }, + "tail": {"tail": {"x": 117.20529411764704, "y": 5.762352941176464, "rotation": -21, "width": 263.5294117647059, "height": 228.23529411764707, "path": "bird-04-lv2.tail"}} + } + } + ], + "events": {"hit": {}, "hit-buff": {}, "jump": {}, "start-attack": {}}, + "keyAnimations": { + "activity/appear": "1023093953", + "activity/bath": "3305387968", + "attack/ranged/cast-fly": "4180526371", + "attack/ranged/cast-high": "164191126", + "attack/ranged/cast-low": "198813017", + "attack/ranged/cast-multi": "151119", + "attack/ranged/cast-tail": "997902532", + "activity/eat-bite": "1137807767", + "activity/eat-chew": "1988236421", + "activity/entrance": "3768378365", + "defense/evade": "1735454995", + "activity/evolve": "649307630", + "battle/get-buff": "1455190363", + "battle/get-debuff": "606904312", + "defense/hit-by-normal": "2045974966", + "defense/hit-by-normal-crit": "2130010601", + "defense/hit-by-normal-dramatic": "3823092125", + "defense/hit-by-ranged-attack": "2224561612", + "defense/hit-with-shield": "390714790", + "attack/melee/horn-gore": "1327954218", + "attack/melee/mouth-bite": "2237748264", + "action/move-back": "3766271173", + "action/move-forward": "2945160014", + "attack/melee/multi-attack": "905926802", + "action/idle/normal": "1659336865", + "attack/melee/normal-attack": "3305373483", + "activity/prepare": "405864717", + "action/idle/random-01": "554401889", + "action/idle/random-02": "1085666627", + "action/idle/random-03": "2021333900", + "action/idle/random-04": "1003789695", + "action/idle/random-05": "2745614147", + "action/run": "1438840721", + "draft/run-origin": "3577885069", + "attack/melee/shrimp": "3833448733", + "activity/sleep": "100562494", + "attack/melee/tail-multi-slap": "3317139533", + "attack/melee/tail-roll": "3108617565", + "attack/melee/tail-smash": "519942130", + "attack/melee/tail-thrash": "628713175", + "activity/victory-pose-back-flip": "2227634241" + } + }, + "bird-02-lv2": { + "bones": [ + {"name": "@root"}, {"name": "@pivot-main", "parent": "@root"}, {"name": "@pivot-back", "parent": "@pivot-main", "x": 205, "y": 180, "color": "ff0101ff"}, + {"name": "@pivot-center", "parent": "@pivot-back", "x": -215.11, "y": -5.25, "color": "ff0101ff"}, + {"name": "@axie", "parent": "@pivot-center", "length": 213.28, "rotation": 179.04, "x": 196.39, "y": 5.16}, {"name": "@back", "parent": "@axie", "rotation": -179.04, "x": 37.63, "y": -198.19}, + {"name": "back", "parent": "@back", "length": 149.41, "rotation": 73, "x": 6.03, "y": 11.3, "transform": "noScale"}, + {"name": "@body", "parent": "@axie", "length": 226.28, "rotation": -8.35, "x": 224.58, "y": -0.53}, {"name": "@ear-left", "parent": "@axie", "rotation": -179.04, "x": 112.7, "y": -203.23}, + {"name": "ear-left", "parent": "@ear-left", "length": 113.61, "rotation": 90, "x": 5, "y": -45, "transform": "noScale"}, + {"name": "@ear-right", "parent": "@axie", "rotation": -179.04, "x": 405.28, "y": -235.33}, + {"name": "ear-right", "parent": "@ear-right", "length": 119.39, "rotation": 93, "x": -30, "y": -15, "transform": "noScale"}, + {"name": "@eyes", "parent": "@axie", "rotation": -179.04, "x": 384.24, "y": -113.67}, {"name": "@horn", "parent": "@axie", "rotation": -179.04, "x": 327.92, "y": -214.63}, + {"name": "horn", "parent": "@horn", "length": 176.72, "rotation": 90, "y": 18, "transform": "noScale"}, + {"name": "@leg-back-left", "parent": "@axie", "length": 76.4, "rotation": 100.96, "x": -15.3, "y": 102.56, "transform": "noScale"}, + {"name": "@leg-front-left", "parent": "@axie", "length": 51.19, "rotation": 93.86, "x": 134.77, "y": 149.55, "transform": "noScale"}, + {"name": "@leg-front-right", "parent": "@axie", "length": 74.83, "rotation": 83.2, "x": 382.95, "y": 121.78, "transform": "noScale"}, + {"name": "@mouth", "parent": "@axie", "rotation": -179.04, "x": 382.23, "y": 6.31}, + {"name": "body-pattern", "parent": "@body", "rotation": -170.69, "x": -267.21, "y": -49.4, "transform": "noScale"}, {"name": "@shadow", "parent": "@root", "color": "e6d713ff"}, + {"name": "@tail", "parent": "@axie", "rotation": -179.04, "x": -11.76, "y": 61.72}, + {"name": "tail", "parent": "@tail", "length": 203.67, "rotation": -12, "x": 16, "y": 72.87, "transform": "noScale"}, + {"name": "leg-front-right-IK", "parent": "@pivot-main", "x": -195.99, "y": -10.21, "color": "ff3f00ff"}, + {"name": "leg-front-left-IK", "parent": "@pivot-main", "x": 42.3, "y": -18.42, "color": "ff3f00ff"}, + {"name": "leg-back-left-IK", "parent": "@pivot-main", "x": 208.57, "y": 1.35, "color": "ff3f00ff"}, {"name": "@ball", "parent": "@root", "y": 191, "color": "f3981bff"}, + {"name": "ball", "parent": "@ball", "y": -191, "color": "f4a729ff"}, {"name": "@", "parent": "@root", "x": -5.71, "y": -42.39} + ], + "slots": [ + {"name": "shadow", "bone": "@shadow", "attachment": "shadow"}, {"name": "ball", "bone": "ball"}, {"name": "leg-front-right", "bone": "@leg-front-right", "attachment": "leg-front-right"}, + {"name": "ear-right", "bone": "ear-right", "attachment": "ear-right"}, {"name": "tail", "bone": "tail", "attachment": "tail"}, {"name": "back", "bone": "back", "attachment": "back"}, + {"name": "leg-back-left", "bone": "@leg-back-left", "attachment": "leg-back-left"}, {"name": "body", "bone": "@body", "attachment": "body"}, {"name": "body-pattern", "bone": "body-pattern"}, + {"name": "leg-front-left", "bone": "@leg-front-left", "attachment": "leg-front-left"}, {"name": "eyes", "bone": "@eyes", "attachment": "eyes"}, + {"name": "mouth", "bone": "@mouth", "attachment": "mouth"}, {"name": "ear-left", "bone": "ear-left", "attachment": "ear-left"}, {"name": "horn", "bone": "horn", "attachment": "horn"} + ], + "ik": [ + {"name": "leg-back-left-IK", "order": 2, "bones": ["@leg-back-left"], "target": "leg-back-left-IK"}, + {"name": "leg-front-left-IK", "order": 1, "bones": ["@leg-front-left"], "target": "leg-front-left-IK"}, + {"name": "leg-front-right-IK", "bones": ["@leg-front-right"], "target": "leg-front-right-IK"} + ], + "skins": [ + { + "name": "default", + "attachments": { + "back": {"back": {"x": 218.60294117647058, "y": -8.981176470588231, "rotation": -73, "width": 355.29411764705884, "height": 385.88235294117646, "path": "bird-02-lv2.back"}}, + "ear-left": {"ear-left": {"x": 89.77588235294117, "y": 3.010588235294116, "rotation": -90, "width": 110.58823529411765, "height": 167.05882352941177, "path": "bird-02-lv2.ear-left"}}, + "ear-right": {"ear-right": {"x": 26.332941176470587, "y": 8.337058823529407, "rotation": -93, "width": 75.29411764705883, "height": 164.7058823529412, "path": "bird-02-lv2.ear-right"}}, + "eyes": { + "eyes": {"x": 40.51882352941177, "y": 17.658235294117645, "width": 305.88235294117646, "height": 98.82352941176471, "path": "bird-02-lv2.eyes"}, + "eyes-angry": {"x": 40.51882352941177, "y": 18.658235294117645, "width": 305.88235294117646, "height": 98.82352941176471, "path": "bird-02-lv2.eyes-angry"}, + "eyes-happy": {"x": 36.57764705882354, "y": 6.952352941176471, "width": 291.7647058823529, "height": 68.23529411764706, "path": "bird-02-lv2.eyes-happy"}, + "eyes-shut": {"x": 35.93058823529412, "y": 10.658235294117645, "width": 287.05882352941177, "height": 58.82352941176471, "path": "bird-02-lv2.eyes-shut"} + }, + "horn": {"horn": {"x": 57.893529411764696, "y": -27.28352941176471, "rotation": -90, "width": 242.3529411764706, "height": 157.64705882352942, "path": "bird-02-lv2.horn"}}, + "mouth": { + "mouth": {"x": 11.75411764705882, "y": 64.07, "width": 89.41176470588236, "height": 160.0, "path": "bird-02-lv2.mouth"}, + "mouth-bite": {"x": 18.095882352941175, "y": 76.98764705882353, "width": 150.58823529411765, "height": 131.76470588235296, "path": "bird-02-lv2.mouth-bite"}, + "mouth-open": {"x": 19.471764705882354, "y": 59.59176470588235, "width": 101.17647058823529, "height": 181.1764705882353, "path": "bird-02-lv2.mouth-open"}, + "mouth-smile": {"x": 26.63647058823529, "y": 64.28647058823529, "width": 117.64705882352942, "height": 157.64705882352942, "path": "bird-02-lv2.mouth-smile"} + }, + "tail": {"tail": {"x": 136.44, "y": 0.764117647058826, "rotation": 12, "width": 280.0, "height": 209.41176470588235, "path": "bird-02-lv2.tail"}} + } + } + ], + "events": {"hit": {}, "hit-buff": {}, "jump": {}, "start-attack": {}}, + "keyAnimations": { + "activity/appear": "1023093953", + "activity/bath": "3305387968", + "attack/ranged/cast-fly": "4180526371", + "attack/ranged/cast-high": "164191126", + "attack/ranged/cast-low": "198813017", + "attack/ranged/cast-multi": "151119", + "attack/ranged/cast-tail": "997902532", + "activity/eat-bite": "1137807767", + "activity/eat-chew": "1988236421", + "activity/entrance": "3768378365", + "defense/evade": "1735454995", + "activity/evolve": "649307630", + "battle/get-buff": "1455190363", + "battle/get-debuff": "606904312", + "defense/hit-by-normal": "2045974966", + "defense/hit-by-normal-crit": "2130010601", + "defense/hit-by-normal-dramatic": "3823092125", + "defense/hit-by-ranged-attack": "2224561612", + "defense/hit-with-shield": "390714790", + "attack/melee/horn-gore": "1327954218", + "attack/melee/mouth-bite": "2237748264", + "action/move-back": "3766271173", + "action/move-forward": "2945160014", + "attack/melee/multi-attack": "905926802", + "action/idle/normal": "1659336865", + "attack/melee/normal-attack": "3305373483", + "activity/prepare": "405864717", + "action/idle/random-01": "554401889", + "action/idle/random-02": "1085666627", + "action/idle/random-03": "2021333900", + "action/idle/random-04": "1003789695", + "action/idle/random-05": "2745614147", + "action/run": "1438840721", + "draft/run-origin": "3577885069", + "attack/melee/shrimp": "3833448733", + "activity/sleep": "100562494", + "attack/melee/tail-multi-slap": "3317139533", + "attack/melee/tail-roll": "3108617565", + "attack/melee/tail-smash": "519942130", + "attack/melee/tail-thrash": "628713175", + "activity/victory-pose-back-flip": "2227634241" + } + }, + "bird-08-lv2": { + "bones": [ + {"name": "@root"}, {"name": "@pivot-main", "parent": "@root"}, {"name": "@pivot-back", "parent": "@pivot-main", "x": 205, "y": 180, "color": "ff0101ff"}, + {"name": "@pivot-center", "parent": "@pivot-back", "x": -215.11, "y": -5.25, "color": "ff0101ff"}, + {"name": "@axie", "parent": "@pivot-center", "length": 213.28, "rotation": 179.04, "x": 196.39, "y": 5.16}, {"name": "@back", "parent": "@axie", "rotation": -179.04, "x": 37.63, "y": -198.19}, + {"name": "back", "parent": "@back", "length": 149.41, "rotation": 73, "x": 6.03, "y": 11.3, "transform": "noScale"}, + {"name": "@body", "parent": "@axie", "length": 226.28, "rotation": -8.35, "x": 224.58, "y": -0.53}, {"name": "@ear-left", "parent": "@axie", "rotation": -179.04, "x": 112.7, "y": -203.23}, + {"name": "ear-left", "parent": "@ear-left", "length": 113.61, "rotation": 70.17, "x": -17.9, "y": -2.65, "transform": "noScale"}, + {"name": "@ear-right", "parent": "@axie", "rotation": -179.04, "x": 405.28, "y": -235.33}, + {"name": "ear-right", "parent": "@ear-right", "length": 119.39, "rotation": 93, "x": -6.84, "y": 13.25, "transform": "noScale"}, + {"name": "@eyes", "parent": "@axie", "rotation": -179.04, "x": 384.24, "y": -113.67}, {"name": "@horn", "parent": "@axie", "rotation": -179.04, "x": 327.92, "y": -214.63}, + {"name": "horn", "parent": "@horn", "length": 176.72, "rotation": 90, "y": 18, "transform": "noScale"}, + {"name": "@leg-back-left", "parent": "@axie", "length": 76.4, "rotation": 100.96, "x": -15.3, "y": 102.56, "transform": "noScale"}, + {"name": "@leg-front-left", "parent": "@axie", "length": 51.19, "rotation": 93.86, "x": 134.77, "y": 149.55, "transform": "noScale"}, + {"name": "@leg-front-right", "parent": "@axie", "length": 74.83, "rotation": 83.2, "x": 382.95, "y": 121.78, "transform": "noScale"}, + {"name": "@mouth", "parent": "@axie", "rotation": -179.04, "x": 382.23, "y": 6.31}, + {"name": "body-pattern", "parent": "@body", "rotation": -170.69, "x": -267.21, "y": -49.4, "transform": "noScale"}, {"name": "@shadow", "parent": "@root", "color": "e6d713ff"}, + {"name": "@tail", "parent": "@axie", "rotation": -179.04, "x": -11.76, "y": 61.72}, + {"name": "tail", "parent": "@tail", "length": 203.67, "rotation": -12, "x": 16, "y": 72.87, "transform": "noScale"}, + {"name": "leg-front-right-IK", "parent": "@pivot-main", "x": -195.99, "y": -10.21, "color": "ff3f00ff"}, + {"name": "leg-front-left-IK", "parent": "@pivot-main", "x": 42.3, "y": -18.42, "color": "ff3f00ff"}, + {"name": "leg-back-left-IK", "parent": "@pivot-main", "x": 208.57, "y": 1.35, "color": "ff3f00ff"}, {"name": "@ball", "parent": "@root", "y": 191, "color": "f3981bff"}, + {"name": "ball", "parent": "@ball", "y": -191, "color": "f4a729ff"}, {"name": "@", "parent": "@root", "x": -14, "y": -40.07} + ], + "slots": [ + {"name": "shadow", "bone": "@shadow", "attachment": "shadow"}, {"name": "ball", "bone": "ball"}, {"name": "leg-front-right", "bone": "@leg-front-right", "attachment": "leg-front-right"}, + {"name": "ear-right", "bone": "ear-right", "attachment": "ear-right"}, {"name": "tail", "bone": "tail", "attachment": "tail"}, {"name": "back", "bone": "back", "attachment": "back"}, + {"name": "leg-back-left", "bone": "@leg-back-left", "attachment": "leg-back-left"}, {"name": "body", "bone": "@body", "attachment": "body"}, {"name": "body-pattern", "bone": "body-pattern"}, + {"name": "leg-front-left", "bone": "@leg-front-left", "attachment": "leg-front-left"}, {"name": "eyes", "bone": "@eyes", "attachment": "eyes"}, + {"name": "mouth", "bone": "@mouth", "attachment": "mouth"}, {"name": "ear-left", "bone": "ear-left", "attachment": "ear-left"}, {"name": "horn", "bone": "horn", "attachment": "horn"} + ], + "ik": [ + {"name": "leg-back-left-IK", "order": 2, "bones": ["@leg-back-left"], "target": "leg-back-left-IK"}, + {"name": "leg-front-left-IK", "order": 1, "bones": ["@leg-front-left"], "target": "leg-front-left-IK"}, + {"name": "leg-front-right-IK", "bones": ["@leg-front-right"], "target": "leg-front-right-IK"} + ], + "skins": [ + { + "name": "default", + "attachments": { + "back": {"back": {"x": 136.33235294117645, "y": 21.745294117647045, "rotation": -73, "width": 268.2352941176471, "height": 303.5294117647059, "path": "bird-08-lv2.back"}}, + "ear-left": {"ear-left": {"x": 107.89823529411765, "y": 9.558823529411768, "rotation": -70.17, "width": 138.8235294117647, "height": 225.88235294117646, "path": "bird-08-lv2.ear-left"}}, + "ear-right": {"ear-right": {"x": 52.54235294117647, "y": -6.031176470588232, "rotation": -93, "width": 68.23529411764706, "height": 225.88235294117646, "path": "bird-08-lv2.ear-right"}}, + "eyes": { + "eyes": {"x": 28.392352941176465, "y": 36.76823529411765, "width": 268.2352941176471, "height": 138.8235294117647, "path": "bird-08-lv2.eyes"}, + "eyes-angry": {"x": 28.392352941176465, "y": 36.76823529411765, "width": 268.2352941176471, "height": 138.8235294117647, "path": "bird-08-lv2.eyes-angry"}, + "eyes-happy": {"x": 28.392352941176465, "y": 29.003529411764703, "width": 268.2352941176471, "height": 122.3529411764706, "path": "bird-08-lv2.eyes-happy"}, + "eyes-shut": {"x": 28.392352941176465, "y": 29.003529411764703, "width": 268.2352941176471, "height": 122.3529411764706, "path": "bird-08-lv2.eyes-shut"} + }, + "horn": {"horn": {"x": 92.5035294117647, "y": -14.598235294117652, "rotation": -90, "width": 242.3529411764706, "height": 221.1764705882353, "path": "bird-08-lv2.horn"}}, + "mouth": { + "mouth": {"x": -4.99, "y": 65.44470588235295, "width": 240.0, "height": 96.47058823529412, "path": "bird-08-lv2.mouth"}, + "mouth-bite": {"x": -4.99, "y": 65.44470588235295, "width": 240.0, "height": 96.47058823529412, "path": "bird-08-lv2.mouth-bite"}, + "mouth-open": {"x": 3.7452941176470578, "y": 51.53294117647058, "width": 223.52941176470588, "height": 155.29411764705884, "path": "bird-08-lv2.mouth-open"}, + "mouth-smile": {"x": -4.86352941176471, "y": 65.44470588235295, "width": 237.64705882352942, "height": 96.47058823529412, "path": "bird-08-lv2.mouth-smile"} + }, + "tail": {"tail": {"x": 132.29705882352943, "y": 66.02, "rotation": 12, "width": 244.7058823529412, "height": 280.0, "path": "bird-08-lv2.tail"}} + } + } + ], + "events": {"hit": {}, "hit-buff": {}, "jump": {}, "start-attack": {}}, + "keyAnimations": { + "activity/appear": "1023093953", + "activity/bath": "3305387968", + "attack/ranged/cast-fly": "4180526371", + "attack/ranged/cast-high": "164191126", + "attack/ranged/cast-low": "198813017", + "attack/ranged/cast-multi": "151119", + "attack/ranged/cast-tail": "997902532", + "activity/eat-bite": "1137807767", + "activity/eat-chew": "1988236421", + "activity/entrance": "3768378365", + "defense/evade": "1735454995", + "activity/evolve": "649307630", + "battle/get-buff": "1455190363", + "battle/get-debuff": "606904312", + "defense/hit-by-normal": "2045974966", + "defense/hit-by-normal-crit": "2130010601", + "defense/hit-by-normal-dramatic": "3823092125", + "defense/hit-by-ranged-attack": "2224561612", + "defense/hit-with-shield": "390714790", + "attack/melee/horn-gore": "1327954218", + "attack/melee/mouth-bite": "2237748264", + "action/move-back": "3766271173", + "action/move-forward": "2945160014", + "attack/melee/multi-attack": "905926802", + "action/idle/normal": "1659336865", + "attack/melee/normal-attack": "3305373483", + "activity/prepare": "405864717", + "action/idle/random-01": "554401889", + "action/idle/random-02": "1085666627", + "action/idle/random-03": "2021333900", + "action/idle/random-04": "1003789695", + "action/idle/random-05": "2745614147", + "action/run": "1438840721", + "draft/run-origin": "3577885069", + "attack/melee/shrimp": "3833448733", + "activity/sleep": "100562494", + "attack/melee/tail-multi-slap": "3317139533", + "attack/melee/tail-roll": "3108617565", + "attack/melee/tail-smash": "519942130", + "attack/melee/tail-thrash": "628713175", + "activity/victory-pose-back-flip": "2227634241" + } + }, + "reptile-02-lv2": { + "bones": [ + {"name": "@root"}, {"name": "@pivot-main", "parent": "@root"}, {"name": "@pivot-back", "parent": "@pivot-main", "x": 205, "y": 180, "color": "ff0101ff"}, + {"name": "@pivot-center", "parent": "@pivot-back", "x": -215.11, "y": -5.25, "color": "ff0101ff"}, + {"name": "@axie", "parent": "@pivot-center", "length": 213.28, "rotation": 179.04, "x": 196.39, "y": 5.16}, {"name": "@back", "parent": "@axie", "rotation": -179.04, "x": 37.63, "y": -198.19}, + {"name": "back", "parent": "@back", "length": 149.41, "rotation": 64, "x": -51.97, "y": -9.7, "transform": "noScale"}, + {"name": "@body", "parent": "@axie", "length": 226.28, "rotation": -8.35, "x": 224.58, "y": -0.53}, {"name": "@ear-left", "parent": "@axie", "rotation": -179.04, "x": 112.7, "y": -203.23}, + {"name": "ear-left", "parent": "@ear-left", "length": 113.61, "rotation": 52, "x": -27, "y": -17, "transform": "noScale"}, + {"name": "@ear-right", "parent": "@axie", "rotation": -179.04, "x": 405.28, "y": -235.33}, + {"name": "ear-right", "parent": "@ear-right", "length": 119.39, "rotation": 93, "x": -40, "y": -54, "transform": "noScale"}, + {"name": "@eyes", "parent": "@axie", "rotation": -179.04, "x": 384.24, "y": -113.67}, {"name": "@horn", "parent": "@axie", "rotation": -179.04, "x": 327.92, "y": -214.63}, + {"name": "horn", "parent": "@horn", "length": 176.72, "rotation": 90, "y": 18, "transform": "noScale"}, + {"name": "@leg-back-left", "parent": "@axie", "length": 76.4, "rotation": 100.96, "x": -15.3, "y": 102.56, "transform": "noScale"}, + {"name": "@leg-front-left", "parent": "@axie", "length": 51.19, "rotation": 93.86, "x": 134.77, "y": 149.55, "transform": "noScale"}, + {"name": "@leg-front-right", "parent": "@axie", "length": 74.83, "rotation": 83.2, "x": 382.95, "y": 121.78, "transform": "noScale"}, + {"name": "@mouth", "parent": "@axie", "rotation": -179.04, "x": 382.23, "y": 6.31}, + {"name": "body-pattern", "parent": "@body", "rotation": -170.69, "x": -267.21, "y": -49.4, "transform": "noScale"}, {"name": "@shadow", "parent": "@root", "color": "e6d713ff"}, + {"name": "@tail", "parent": "@axie", "rotation": -179.04, "x": -11.76, "y": 61.72}, + {"name": "tail", "parent": "@tail", "length": 203.67, "rotation": -18, "x": -26, "y": 40, "transform": "noScale"}, + {"name": "leg-front-right-IK", "parent": "@pivot-main", "x": -195.99, "y": -10.21, "color": "ff3f00ff"}, + {"name": "leg-front-left-IK", "parent": "@pivot-main", "x": 42.3, "y": -18.42, "color": "ff3f00ff"}, + {"name": "leg-back-left-IK", "parent": "@pivot-main", "x": 208.57, "y": 1.35, "color": "ff3f00ff"}, {"name": "@ball", "parent": "@root", "y": 191, "color": "f3981bff"}, + {"name": "ball", "parent": "@ball", "y": -191, "color": "f4a729ff"} + ], + "slots": [ + {"name": "shadow", "bone": "@shadow", "attachment": "shadow"}, {"name": "ball", "bone": "ball"}, {"name": "leg-front-right", "bone": "@leg-front-right", "attachment": "leg-front-right"}, + {"name": "ear-right", "bone": "ear-right", "attachment": "ear-right"}, {"name": "tail", "bone": "tail", "attachment": "tail"}, {"name": "back", "bone": "back", "attachment": "back"}, + {"name": "leg-back-left", "bone": "@leg-back-left", "attachment": "leg-back-left"}, {"name": "body", "bone": "@body", "attachment": "body"}, {"name": "body-pattern", "bone": "body-pattern"}, + {"name": "leg-front-left", "bone": "@leg-front-left", "attachment": "leg-front-left"}, {"name": "eyes", "bone": "@eyes", "attachment": "eyes"}, + {"name": "mouth", "bone": "@mouth", "attachment": "mouth"}, {"name": "ear-left", "bone": "ear-left", "attachment": "ear-left"}, {"name": "horn", "bone": "horn", "attachment": "horn"}, + {"name": "mouth2", "bone": "@mouth"}, {"name": "mouth-smile", "bone": "@mouth"}, {"name": "mouth-bite", "bone": "@mouth"}, {"name": "mouth-open", "bone": "@mouth"} + ], + "ik": [ + {"name": "leg-back-left-IK", "order": 2, "bones": ["@leg-back-left"], "target": "leg-back-left-IK"}, + {"name": "leg-front-left-IK", "order": 1, "bones": ["@leg-front-left"], "target": "leg-front-left-IK"}, + {"name": "leg-front-right-IK", "bones": ["@leg-front-right"], "target": "leg-front-right-IK"} + ], + "skins": [ + { + "name": "default", + "attachments": { + "back": {"back": {"x": 122.01647058823528, "y": 74.66764705882353, "rotation": -64, "width": 357.64705882352945, "height": 371.7647058823529, "path": "reptile-02-lv2.back"}}, + "ear-left": { + "ear-left": {"x": 109.09058823529412, "y": -20.126470588235303, "rotation": -52, "width": 167.05882352941177, "height": 282.3529411764706, "path": "reptile-02-lv2.ear-left"} + }, + "ear-right": { + "ear-right": {"x": 71.30411764705883, "y": 12.543529411764696, "rotation": -93, "width": 169.41176470588235, "height": 282.3529411764706, "path": "reptile-02-lv2.ear-right"} + }, + "eyes": { + "eyes": {"x": 36.81529411764704, "y": 31.594117647058827, "width": 303.5294117647059, "height": 129.41176470588235, "path": "reptile-02-lv2.eyes"}, + "eyes-angry": {"x": 35.991764705882346, "y": 32.94705882352941, "width": 301.1764705882353, "height": 124.70588235294117, "path": "reptile-02-lv2.eyes-angry"}, + "eyes-happy": {"x": 34.58, "y": 21.829411764705885, "width": 280.0, "height": 112.94117647058823, "path": "reptile-02-lv2.eyes-happy"}, + "eyes-shut": {"x": 35.344705882352926, "y": 22.47647058823529, "width": 296.47058823529414, "height": 117.64705882352942, "path": "reptile-02-lv2.eyes-shut"} + }, + "horn": {"horn": {"x": 65.8, "y": -10.315294117647058, "rotation": -90, "width": 280.0, "height": 176.47058823529412, "path": "reptile-02-lv2.horn"}}, + "mouth": { + "mouth": {"x": 19.227058823529404, "y": 18.947058823529414, "width": 244.7058823529412, "height": 124.70588235294117, "path": "reptile-02-lv2.mouth"}, + "mouth-bite": {"x": 32.22705882352942, "y": 43.77058823529411, "width": 324.70588235294116, "height": 87.05882352941177, "path": "reptile-02-lv2.mouth-bite"}, + "mouth-open": {"x": 27.52117647058823, "y": 14.12352941176471, "width": 294.11764705882354, "height": 162.35294117647058, "path": "reptile-02-lv2.mouth-open"}, + "mouth-smile": {"x": 22.756470588235302, "y": 26.888235294117653, "width": 277.6470588235294, "height": 138.8235294117647, "path": "reptile-02-lv2.mouth-smile"} + }, + "tail": {"tail": {"x": 117.81176470588235, "y": 116.85823529411765, "rotation": 18, "width": 261.1764705882353, "height": 378.8235294117647, "path": "reptile-02-lv2.tail"}} + } + } + ], + "events": {"hit": {}, "hit-buff": {}, "jump": {}, "start-attack": {}}, + "keyAnimations": { + "activity/appear": "1023093953", + "activity/bath": "3305387968", + "attack/ranged/cast-fly": "4180526371", + "attack/ranged/cast-high": "164191126", + "attack/ranged/cast-low": "198813017", + "attack/ranged/cast-multi": "151119", + "attack/ranged/cast-tail": "997902532", + "activity/eat-bite": "1137807767", + "activity/eat-chew": "1988236421", + "activity/entrance": "3768378365", + "defense/evade": "1735454995", + "activity/evolve": "649307630", + "battle/get-buff": "1455190363", + "battle/get-debuff": "606904312", + "defense/hit-by-normal": "2045974966", + "defense/hit-by-normal-crit": "2130010601", + "defense/hit-by-normal-dramatic": "3823092125", + "defense/hit-by-ranged-attack": "2224561612", + "defense/hit-with-shield": "390714790", + "attack/melee/horn-gore": "1327954218", + "attack/melee/mouth-bite": "2237748264", + "action/move-back": "3766271173", + "action/move-forward": "2945160014", + "attack/melee/multi-attack": "905926802", + "action/idle/normal": "1659336865", + "attack/melee/normal-attack": "3305373483", + "activity/prepare": "405864717", + "action/idle/random-01": "554401889", + "action/idle/random-02": "1085666627", + "action/idle/random-03": "2021333900", + "action/idle/random-04": "1003789695", + "action/idle/random-05": "2745614147", + "action/run": "1438840721", + "draft/run-origin": "3577885069", + "attack/melee/shrimp": "3833448733", + "activity/sleep": "100562494", + "attack/melee/tail-multi-slap": "3317139533", + "attack/melee/tail-roll": "3108617565", + "attack/melee/tail-smash": "519942130", + "attack/melee/tail-thrash": "628713175", + "activity/victory-pose-back-flip": "2227634241" + } + }, + "reptile-06-lv2": { + "bones": [ + {"name": "@root"}, {"name": "@pivot-main", "parent": "@root"}, {"name": "@pivot-back", "parent": "@pivot-main", "x": 205, "y": 180, "color": "ff0101ff"}, + {"name": "@pivot-center", "parent": "@pivot-back", "x": -215.11, "y": -5.25, "color": "ff0101ff"}, + {"name": "@axie", "parent": "@pivot-center", "length": 213.28, "rotation": 179.04, "x": 196.39, "y": 5.16}, {"name": "@back", "parent": "@axie", "rotation": -179.04, "x": 37.63, "y": -198.19}, + {"name": "back", "parent": "@back", "length": 149.41, "rotation": 64, "x": -51.97, "y": -9.7, "transform": "noScale"}, + {"name": "@body", "parent": "@axie", "length": 226.28, "rotation": -8.35, "x": 224.58, "y": -0.53}, {"name": "@ear-left", "parent": "@axie", "rotation": -179.04, "x": 112.7, "y": -203.23}, + {"name": "ear-left", "parent": "@ear-left", "length": 113.61, "rotation": 52, "x": -27, "y": -17, "transform": "noScale"}, + {"name": "@ear-right", "parent": "@axie", "rotation": -179.04, "x": 405.28, "y": -235.33}, + {"name": "ear-right", "parent": "@ear-right", "length": 119.39, "rotation": 93, "x": -40, "y": -54, "transform": "noScale"}, + {"name": "@eyes", "parent": "@axie", "rotation": -179.04, "x": 384.24, "y": -113.67}, {"name": "@horn", "parent": "@axie", "rotation": -179.04, "x": 327.92, "y": -214.63}, + {"name": "horn", "parent": "@horn", "length": 176.72, "rotation": 90, "y": 18, "transform": "noScale"}, + {"name": "@leg-back-left", "parent": "@axie", "length": 76.4, "rotation": 100.96, "x": -15.3, "y": 102.56, "transform": "noScale"}, + {"name": "@leg-front-left", "parent": "@axie", "length": 51.19, "rotation": 93.86, "x": 134.77, "y": 149.55, "transform": "noScale"}, + {"name": "@leg-front-right", "parent": "@axie", "length": 74.83, "rotation": 83.2, "x": 382.95, "y": 121.78, "transform": "noScale"}, + {"name": "@mouth", "parent": "@axie", "rotation": -179.04, "x": 382.23, "y": 6.31}, + {"name": "body-pattern", "parent": "@body", "rotation": -170.69, "x": -267.21, "y": -49.4, "transform": "noScale"}, {"name": "@shadow", "parent": "@root", "color": "e6d713ff"}, + {"name": "@tail", "parent": "@axie", "rotation": -179.04, "x": -11.76, "y": 61.72}, + {"name": "tail", "parent": "@tail", "length": 203.67, "rotation": -27, "x": 3, "y": 37, "transform": "noScale"}, + {"name": "leg-front-right-IK", "parent": "@pivot-main", "x": -195.99, "y": -10.21, "color": "ff3f00ff"}, + {"name": "leg-front-left-IK", "parent": "@pivot-main", "x": 42.3, "y": -18.42, "color": "ff3f00ff"}, + {"name": "leg-back-left-IK", "parent": "@pivot-main", "x": 208.57, "y": 1.35, "color": "ff3f00ff"}, {"name": "@ball", "parent": "@root", "y": 191, "color": "f3981bff"}, + {"name": "ball", "parent": "@ball", "y": -191, "color": "f4a729ff"} + ], + "slots": [ + {"name": "shadow", "bone": "@shadow", "attachment": "shadow"}, {"name": "ball", "bone": "ball"}, {"name": "leg-front-right", "bone": "@leg-front-right", "attachment": "leg-front-right"}, + {"name": "ear-right", "bone": "ear-right", "attachment": "ear-right"}, {"name": "tail", "bone": "tail", "attachment": "tail"}, {"name": "back", "bone": "back", "attachment": "back"}, + {"name": "leg-back-left", "bone": "@leg-back-left", "attachment": "leg-back-left"}, {"name": "body", "bone": "@body", "attachment": "body"}, {"name": "body-pattern", "bone": "body-pattern"}, + {"name": "leg-front-left", "bone": "@leg-front-left", "attachment": "leg-front-left"}, {"name": "eyes", "bone": "@eyes", "attachment": "eyes"}, + {"name": "mouth", "bone": "@mouth", "attachment": "mouth"}, {"name": "ear-left", "bone": "ear-left", "attachment": "ear-left"}, {"name": "horn", "bone": "horn", "attachment": "horn"} + ], + "ik": [ + {"name": "leg-back-left-IK", "order": 2, "bones": ["@leg-back-left"], "target": "leg-back-left-IK"}, + {"name": "leg-front-left-IK", "order": 1, "bones": ["@leg-front-left"], "target": "leg-front-left-IK"}, + {"name": "leg-front-right-IK", "bones": ["@leg-front-right"], "target": "leg-front-right-IK"} + ], + "skins": [ + { + "name": "default", + "attachments": { + "back": {"back": {"x": 180.26176470588234, "y": 44.55823529411765, "rotation": -64, "width": 341.1764705882353, "height": 338.8235294117647, "path": "reptile-06-lv2.back"}}, + "ear-left": {"ear-left": {"x": 66.71764705882352, "y": -52.51411764705884, "rotation": -52, "width": 131.76470588235296, "height": 270.5882352941177, "path": "reptile-06-lv2.ear-left"}}, + "ear-right": { + "ear-right": {"x": 22.617647058823522, "y": 49.32588235294116, "rotation": -93, "width": 131.76470588235296, "height": 270.5882352941177, "path": "reptile-06-lv2.ear-right"} + }, + "eyes": { + "eyes": {"x": 22.33, "y": -11.04, "width": 284, "height": 33, "path": "reptile-06-lv2.eyes"}, + "eyes-angry": {"x": 0.33, "y": -9.04, "width": 328, "height": 135, "path": "reptile-06-lv2.eyes-angry"}, + "eyes-happy": {"x": 22.33, "y": -11.04, "width": 284, "height": 33, "path": "reptile-06-lv2.eyes-happy"}, + "eyes-shut": {"x": 22.33, "y": -12.04, "width": 284, "height": 31, "path": "reptile-06-lv2.eyes-shut"} + }, + "horn": {"horn": {"x": 122.03764705882354, "y": -26.908235294117652, "rotation": -90, "width": 291.7647058823529, "height": 261.1764705882353, "path": "reptile-06-lv2.horn"}}, + "mouth": { + "mouth": {"x": 14.33, "y": 61.96, "width": 94, "height": 17, "path": "reptile-06-lv2.mouth"}, + "mouth-bite": {"x": 16.33, "y": 45.46, "width": 204, "height": 76, "path": "reptile-06-lv2.mouth-bite"}, + "mouth-open": {"x": 22.83, "y": 34.46, "width": 107, "height": 128, "path": "reptile-06-lv2.mouth-open"}, + "mouth-smile": {"x": 20.83, "y": 57.96, "width": 91, "height": 41, "path": "reptile-06-lv2.mouth-smile"} + }, + "tail": {"tail": {"x": 80.29882352941176, "y": 48.82529411764706, "rotation": 27, "width": 265.88235294117646, "height": 223.52941176470588, "path": "reptile-06-lv2.tail"}} + } + } + ], + "events": {"hit": {}, "hit-buff": {}, "jump": {}, "start-attack": {}}, + "keyAnimations": { + "activity/appear": "1023093953", + "activity/bath": "3305387968", + "attack/ranged/cast-fly": "4180526371", + "attack/ranged/cast-high": "164191126", + "attack/ranged/cast-low": "198813017", + "attack/ranged/cast-multi": "151119", + "attack/ranged/cast-tail": "997902532", + "activity/eat-bite": "1137807767", + "activity/eat-chew": "1988236421", + "activity/entrance": "3768378365", + "defense/evade": "1735454995", + "activity/evolve": "649307630", + "battle/get-buff": "1455190363", + "battle/get-debuff": "606904312", + "defense/hit-by-normal": "2045974966", + "defense/hit-by-normal-crit": "2130010601", + "defense/hit-by-normal-dramatic": "3823092125", + "defense/hit-by-ranged-attack": "2224561612", + "defense/hit-with-shield": "390714790", + "attack/melee/horn-gore": "1327954218", + "attack/melee/mouth-bite": "2237748264", + "action/move-back": "3766271173", + "action/move-forward": "2945160014", + "attack/melee/multi-attack": "905926802", + "action/idle/normal": "1659336865", + "attack/melee/normal-attack": "3305373483", + "activity/prepare": "405864717", + "action/idle/random-01": "554401889", + "action/idle/random-02": "1085666627", + "action/idle/random-03": "2021333900", + "action/idle/random-04": "1003789695", + "action/idle/random-05": "2745614147", + "action/run": "1438840721", + "draft/run-origin": "3577885069", + "attack/melee/shrimp": "3833448733", + "activity/sleep": "100562494", + "attack/melee/tail-multi-slap": "3317139533", + "attack/melee/tail-roll": "3108617565", + "attack/melee/tail-smash": "519942130", + "attack/melee/tail-thrash": "628713175", + "activity/victory-pose-back-flip": "2227634241" + } + }, + "reptile-12-lv2": { + "bones": [ + {"name": "@root"}, {"name": "@pivot-main", "parent": "@root"}, {"name": "@pivot-back", "parent": "@pivot-main", "x": 205, "y": 180, "color": "ff0101ff"}, + {"name": "@pivot-center", "parent": "@pivot-back", "x": -215.11, "y": -5.25, "color": "ff0101ff"}, + {"name": "@axie", "parent": "@pivot-center", "length": 213.28, "rotation": 179.04, "x": 196.39, "y": 5.16}, {"name": "@back", "parent": "@axie", "rotation": -179.04, "x": 37.63, "y": -198.19}, + {"name": "back", "parent": "@back", "length": 149.41, "rotation": 64, "x": -51.97, "y": 25.3, "transform": "noScale"}, + {"name": "@body", "parent": "@axie", "length": 226.28, "rotation": -8.35, "x": 224.58, "y": -0.53}, {"name": "@ear-left", "parent": "@axie", "rotation": -179.04, "x": 112.7, "y": -203.23}, + {"name": "ear-left", "parent": "@ear-left", "length": 113.61, "rotation": 52, "x": 14, "y": -43, "transform": "noScale"}, + {"name": "@ear-right", "parent": "@axie", "rotation": -179.04, "x": 405.28, "y": -235.33}, + {"name": "ear-right", "parent": "@ear-right", "length": 119.39, "rotation": 140, "x": -40, "y": -63, "transform": "noScale"}, + {"name": "@eyes", "parent": "@axie", "rotation": -179.04, "x": 384.24, "y": -113.67}, {"name": "@horn", "parent": "@axie", "rotation": -179.04, "x": 327.92, "y": -214.63}, + {"name": "horn", "parent": "@horn", "length": 176.72, "rotation": 90, "y": 18, "transform": "noScale"}, + {"name": "@leg-back-left", "parent": "@axie", "length": 76.4, "rotation": 100.96, "x": -15.3, "y": 102.56, "transform": "noScale"}, + {"name": "@leg-front-left", "parent": "@axie", "length": 51.19, "rotation": 93.86, "x": 134.77, "y": 149.55, "transform": "noScale"}, + {"name": "@leg-front-right", "parent": "@axie", "length": 74.83, "rotation": 83.2, "x": 382.95, "y": 121.78, "transform": "noScale"}, + {"name": "@mouth", "parent": "@axie", "rotation": -179.04, "x": 382.23, "y": 6.31}, + {"name": "body-pattern", "parent": "@body", "rotation": -170.69, "x": -267.21, "y": -49.4, "transform": "noScale"}, {"name": "@shadow", "parent": "@root", "color": "e6d713ff"}, + {"name": "@tail", "parent": "@axie", "rotation": -179.04, "x": -11.76, "y": 61.72}, {"name": "tail", "parent": "@tail", "length": 203.67, "x": 21, "y": 37, "transform": "noScale"}, + {"name": "leg-front-right-IK", "parent": "@pivot-main", "x": -195.99, "y": -10.21, "color": "ff3f00ff"}, + {"name": "leg-front-left-IK", "parent": "@pivot-main", "x": 42.3, "y": -18.42, "color": "ff3f00ff"}, + {"name": "leg-back-left-IK", "parent": "@pivot-main", "x": 208.57, "y": 1.35, "color": "ff3f00ff"}, {"name": "@ball", "parent": "@root", "y": 191, "color": "f3981bff"}, + {"name": "ball", "parent": "@ball", "y": -191, "color": "f4a729ff"}, {"name": "@", "parent": "@root", "x": -19.61, "y": -27.65} + ], + "slots": [ + {"name": "shadow", "bone": "@shadow", "attachment": "shadow"}, {"name": "ball", "bone": "ball"}, {"name": "leg-front-right", "bone": "@leg-front-right", "attachment": "leg-front-right"}, + {"name": "ear-right", "bone": "ear-right", "attachment": "ear-right"}, {"name": "tail", "bone": "tail", "attachment": "tail"}, {"name": "back", "bone": "back", "attachment": "back"}, + {"name": "leg-back-left", "bone": "@leg-back-left", "attachment": "leg-back-left"}, {"name": "body", "bone": "@body", "attachment": "body"}, {"name": "body-pattern", "bone": "body-pattern"}, + {"name": "leg-front-left", "bone": "@leg-front-left", "attachment": "leg-front-left"}, {"name": "eyes", "bone": "@eyes", "attachment": "eyes"}, + {"name": "mouth", "bone": "@mouth", "attachment": "mouth"}, {"name": "ear-left", "bone": "ear-left", "attachment": "ear-left"}, {"name": "horn", "bone": "horn", "attachment": "horn"} + ], + "ik": [ + {"name": "leg-back-left-IK", "order": 2, "bones": ["@leg-back-left"], "target": "leg-back-left-IK"}, + {"name": "leg-front-left-IK", "order": 1, "bones": ["@leg-front-left"], "target": "leg-front-left-IK"}, + {"name": "leg-front-right-IK", "bones": ["@leg-front-right"], "target": "leg-front-right-IK"} + ], + "skins": [ + { + "name": "default", + "attachments": { + "back": {"back": {"x": 130.63294117647058, "y": -14.384705882352955, "rotation": -64, "width": 355.29411764705884, "height": 343.5294117647059, "path": "reptile-12-lv2.back"}}, + "ear-left": {"ear-left": {"x": 83.75058823529412, "y": 13.36, "rotation": -52, "width": 207.05882352941177, "height": 280.0, "path": "reptile-12-lv2.ear-left"}}, + "ear-right": { + "ear-right": {"x": 9.98647058823529, "y": -65.00176470588235, "rotation": -140, "width": 117.64705882352942, "height": 298.8235294117647, "path": "reptile-12-lv2.ear-right"} + }, + "eyes": { + "eyes": {"x": 22.33, "y": -11.04, "width": 284, "height": 33, "path": "reptile-12-lv2.eyes"}, + "eyes-angry": {"x": 0.33, "y": -9.04, "width": 328, "height": 135, "path": "reptile-12-lv2.eyes-angry"}, + "eyes-happy": {"x": 22.33, "y": -11.04, "width": 284, "height": 33, "path": "reptile-12-lv2.eyes-happy"}, + "eyes-shut": {"x": 22.33, "y": -12.04, "width": 284, "height": 31, "path": "reptile-12-lv2.eyes-shut"} + }, + "horn": {"horn": {"x": 146.49470588235292, "y": 21.381764705882347, "rotation": -90, "width": 256.47058823529414, "height": 301.1764705882353, "path": "reptile-12-lv2.horn"}}, + "mouth": { + "mouth": {"x": 14.33, "y": 61.96, "width": 94, "height": 17, "path": "reptile-12-lv2.mouth"}, + "mouth-bite": {"x": 16.33, "y": 45.46, "width": 204, "height": 76, "path": "reptile-12-lv2.mouth-bite"}, + "mouth-open": {"x": 22.83, "y": 34.46, "width": 107, "height": 128, "path": "reptile-12-lv2.mouth-open"}, + "mouth-smile": {"x": 20.83, "y": 57.96, "width": 91, "height": 41, "path": "reptile-12-lv2.mouth-smile"} + }, + "tail": {"tail": {"x": 113.3535294117647, "y": 15.994705882352928, "width": 362.3529411764706, "height": 296.47058823529414, "path": "reptile-12-lv2.tail"}} + } + } + ], + "events": {"hit": {}, "hit-buff": {}, "jump": {}, "start-attack": {}}, + "keyAnimations": { + "activity/appear": "1023093953", + "activity/bath": "3305387968", + "attack/ranged/cast-fly": "4180526371", + "attack/ranged/cast-high": "164191126", + "attack/ranged/cast-low": "198813017", + "attack/ranged/cast-multi": "151119", + "attack/ranged/cast-tail": "997902532", + "activity/eat-bite": "1137807767", + "activity/eat-chew": "1988236421", + "activity/entrance": "3768378365", + "defense/evade": "1735454995", + "activity/evolve": "649307630", + "battle/get-buff": "1455190363", + "battle/get-debuff": "606904312", + "defense/hit-by-normal": "2045974966", + "defense/hit-by-normal-crit": "2130010601", + "defense/hit-by-normal-dramatic": "3823092125", + "defense/hit-by-ranged-attack": "2224561612", + "defense/hit-with-shield": "390714790", + "attack/melee/horn-gore": "1327954218", + "attack/melee/mouth-bite": "2237748264", + "action/move-back": "3766271173", + "action/move-forward": "2945160014", + "attack/melee/multi-attack": "905926802", + "action/idle/normal": "1659336865", + "attack/melee/normal-attack": "3305373483", + "activity/prepare": "405864717", + "action/idle/random-01": "554401889", + "action/idle/random-02": "1085666627", + "action/idle/random-03": "2021333900", + "action/idle/random-04": "1003789695", + "action/idle/random-05": "2745614147", + "action/run": "1438840721", + "draft/run-origin": "3577885069", + "attack/melee/shrimp": "3833448733", + "activity/sleep": "100562494", + "attack/melee/tail-multi-slap": "3317139533", + "attack/melee/tail-roll": "3108617565", + "attack/melee/tail-smash": "519942130", + "attack/melee/tail-thrash": "628713175", + "activity/victory-pose-back-flip": "2227634241" + } + }, + "reptile-04-lv2": { + "bones": [ + {"name": "@root"}, {"name": "@pivot-main", "parent": "@root"}, {"name": "@pivot-back", "parent": "@pivot-main", "x": 205, "y": 180, "color": "ff0101ff"}, + {"name": "@pivot-center", "parent": "@pivot-back", "x": -215.11, "y": -5.25, "color": "ff0101ff"}, + {"name": "@axie", "parent": "@pivot-center", "length": 213.28, "rotation": 179.04, "x": 196.39, "y": 5.16}, {"name": "@back", "parent": "@axie", "rotation": -179.04, "x": 37.63, "y": -198.19}, + {"name": "back", "parent": "@back", "length": 149.41, "rotation": 64, "x": -51.97, "y": -9.7, "transform": "noScale"}, + {"name": "@body", "parent": "@axie", "length": 226.28, "rotation": -8.35, "x": 224.58, "y": -0.53}, {"name": "@ear-left", "parent": "@axie", "rotation": -179.04, "x": 112.7, "y": -203.23}, + {"name": "ear-left", "parent": "@ear-left", "length": 113.61, "rotation": 52, "x": -27, "y": -17, "transform": "noScale"}, + {"name": "@ear-right", "parent": "@axie", "rotation": -179.04, "x": 405.28, "y": -235.33}, + {"name": "ear-right", "parent": "@ear-right", "length": 119.39, "rotation": 93, "x": -40, "y": -54, "transform": "noScale"}, + {"name": "@eyes", "parent": "@axie", "rotation": -179.04, "x": 384.24, "y": -113.67}, {"name": "@horn", "parent": "@axie", "rotation": -179.04, "x": 327.92, "y": -214.63}, + {"name": "horn", "parent": "@horn", "length": 176.72, "rotation": 90, "y": 18, "transform": "noScale"}, + {"name": "@leg-back-left", "parent": "@axie", "length": 76.4, "rotation": 100.96, "x": -15.3, "y": 102.56, "transform": "noScale"}, + {"name": "@leg-front-left", "parent": "@axie", "length": 51.19, "rotation": 93.86, "x": 134.77, "y": 149.55, "transform": "noScale"}, + {"name": "@leg-front-right", "parent": "@axie", "length": 74.83, "rotation": 83.2, "x": 382.95, "y": 121.78, "transform": "noScale"}, + {"name": "@mouth", "parent": "@axie", "rotation": -179.04, "x": 382.23, "y": 6.31}, + {"name": "body-pattern", "parent": "@body", "rotation": -170.69, "x": -267.21, "y": -49.4, "transform": "noScale"}, {"name": "@shadow", "parent": "@root", "color": "e6d713ff"}, + {"name": "@tail", "parent": "@axie", "rotation": -179.04, "x": -11.76, "y": 61.72}, {"name": "tail", "parent": "@tail", "length": 203.67, "x": -47, "y": -1, "transform": "noScale"}, + {"name": "leg-front-right-IK", "parent": "@pivot-main", "x": -195.99, "y": -10.21, "color": "ff3f00ff"}, + {"name": "leg-front-left-IK", "parent": "@pivot-main", "x": 42.3, "y": -18.42, "color": "ff3f00ff"}, + {"name": "leg-back-left-IK", "parent": "@pivot-main", "x": 208.57, "y": 1.35, "color": "ff3f00ff"}, {"name": "@ball", "parent": "@root", "y": 191, "color": "f3981bff"}, + {"name": "ball", "parent": "@ball", "y": -191, "color": "f4a729ff"} + ], + "slots": [ + {"name": "shadow", "bone": "@shadow", "attachment": "shadow"}, {"name": "ball", "bone": "ball"}, {"name": "leg-front-right", "bone": "@leg-front-right", "attachment": "leg-front-right"}, + {"name": "ear-right", "bone": "ear-right", "attachment": "ear-right"}, {"name": "tail", "bone": "tail", "attachment": "tail"}, {"name": "back", "bone": "back", "attachment": "back"}, + {"name": "leg-back-left", "bone": "@leg-back-left", "attachment": "leg-back-left"}, {"name": "body", "bone": "@body", "attachment": "body"}, {"name": "body-pattern", "bone": "body-pattern"}, + {"name": "leg-front-left", "bone": "@leg-front-left", "attachment": "leg-front-left"}, {"name": "eyes", "bone": "@eyes", "attachment": "eyes"}, + {"name": "mouth", "bone": "@mouth", "attachment": "mouth"}, {"name": "ear-left", "bone": "ear-left", "attachment": "ear-left"}, {"name": "horn", "bone": "horn", "attachment": "horn"} + ], + "ik": [ + {"name": "leg-back-left-IK", "order": 2, "bones": ["@leg-back-left"], "target": "leg-back-left-IK"}, + {"name": "leg-front-left-IK", "order": 1, "bones": ["@leg-front-left"], "target": "leg-front-left-IK"}, + {"name": "leg-front-right-IK", "bones": ["@leg-front-right"], "target": "leg-front-right-IK"} + ], + "skins": [ + { + "name": "default", + "attachments": { + "back": {"back": {"x": 193.61470588235295, "y": 76.59882352941177, "rotation": -64, "width": 216.47058823529412, "height": 505.88235294117646, "path": "reptile-04-lv2.back"}}, + "ear-left": {"ear-left": {"x": 94.61176470588236, "y": 39.59764705882352, "rotation": -52, "width": 101.17647058823529, "height": 211.76470588235296, "path": "reptile-04-lv2.ear-left"}}, + "ear-right": { + "ear-right": {"x": 97.89882352941177, "y": -2.098823529411768, "rotation": -93, "width": 105.88235294117648, "height": 214.11764705882354, "path": "reptile-04-lv2.ear-right"} + }, + "eyes": { + "eyes": {"x": 40.05823529411765, "y": 25.634117647058826, "width": 298.8235294117647, "height": 129.41176470588235, "path": "reptile-04-lv2.eyes"}, + "eyes-angry": {"x": 40.05823529411765, "y": 28.281176470588232, "width": 298.8235294117647, "height": 134.11764705882354, "path": "reptile-04-lv2.eyes-angry"}, + "eyes-happy": {"x": 38.70529411764704, "y": 25.634117647058826, "width": 303.5294117647059, "height": 129.41176470588235, "path": "reptile-04-lv2.eyes-happy"}, + "eyes-shut": {"x": 33.82294117647058, "y": -28.130588235294116, "width": 275.29411764705884, "height": 152.94117647058823, "path": "reptile-04-lv2.eyes-shut"} + }, + "horn": {"horn": {"x": 144.57529411764705, "y": 16.94176470588235, "rotation": -90, "width": 143.52941176470588, "height": 301.1764705882353, "path": "reptile-04-lv2.horn"}}, + "mouth": { + "mouth": {"x": -19.76529411764706, "y": 70.69294117647058, "width": 176.47058823529412, "height": 35.294117647058826, "path": "reptile-04-lv2.mouth"}, + "mouth-bite": {"x": -13.118235294117651, "y": 56.222352941176474, "width": 221.1764705882353, "height": 68.23529411764706, "path": "reptile-04-lv2.mouth-bite"}, + "mouth-open": {"x": 0.8817647058823479, "y": 35.69294117647059, "width": 261.1764705882353, "height": 115.29411764705883, "path": "reptile-04-lv2.mouth-open"}, + "mouth-smile": {"x": -7.706470588235289, "y": 63.34, "width": 162.35294117647058, "height": 40.0, "path": "reptile-04-lv2.mouth-smile"} + }, + "tail": {"tail": {"x": 118.52882352941177, "y": 55.98705882352942, "width": 305.88235294117646, "height": 284.70588235294116, "path": "reptile-04-lv2.tail"}} + } + } + ], + "events": {"hit": {}, "hit-buff": {}, "jump": {}, "start-attack": {}}, + "keyAnimations": { + "activity/appear": "1023093953", + "activity/bath": "3305387968", + "attack/ranged/cast-fly": "4180526371", + "attack/ranged/cast-high": "164191126", + "attack/ranged/cast-low": "198813017", + "attack/ranged/cast-multi": "151119", + "attack/ranged/cast-tail": "997902532", + "activity/eat-bite": "1137807767", + "activity/eat-chew": "1988236421", + "activity/entrance": "3768378365", + "defense/evade": "1735454995", + "activity/evolve": "649307630", + "battle/get-buff": "1455190363", + "battle/get-debuff": "606904312", + "defense/hit-by-normal": "2045974966", + "defense/hit-by-normal-crit": "2130010601", + "defense/hit-by-normal-dramatic": "3823092125", + "defense/hit-by-ranged-attack": "2224561612", + "defense/hit-with-shield": "390714790", + "attack/melee/horn-gore": "1327954218", + "attack/melee/mouth-bite": "2237748264", + "action/move-back": "3766271173", + "action/move-forward": "2945160014", + "attack/melee/multi-attack": "905926802", + "action/idle/normal": "1659336865", + "attack/melee/normal-attack": "3305373483", + "activity/prepare": "405864717", + "action/idle/random-01": "554401889", + "action/idle/random-02": "1085666627", + "action/idle/random-03": "2021333900", + "action/idle/random-04": "1003789695", + "action/idle/random-05": "2745614147", + "action/run": "1438840721", + "draft/run-origin": "3577885069", + "attack/melee/shrimp": "3833448733", + "activity/sleep": "100562494", + "attack/melee/tail-multi-slap": "3317139533", + "attack/melee/tail-roll": "3108617565", + "attack/melee/tail-smash": "519942130", + "attack/melee/tail-thrash": "628713175", + "activity/victory-pose-back-flip": "2227634241" + } + }, + "reptile-10-lv2": { + "bones": [ + {"name": "@root"}, {"name": "@pivot-main", "parent": "@root"}, {"name": "@pivot-back", "parent": "@pivot-main", "x": 205, "y": 180, "color": "ff0101ff"}, + {"name": "@pivot-center", "parent": "@pivot-back", "x": -215.11, "y": -5.25, "color": "ff0101ff"}, + {"name": "@axie", "parent": "@pivot-center", "length": 213.28, "rotation": 179.04, "x": 196.39, "y": 5.16}, {"name": "@back", "parent": "@axie", "rotation": -179.04, "x": 37.63, "y": -198.19}, + {"name": "back", "parent": "@back", "length": 149.41, "rotation": 64, "x": -51.97, "y": -9.7, "transform": "noScale"}, + {"name": "@body", "parent": "@axie", "length": 226.28, "rotation": -8.35, "x": 224.58, "y": -0.53}, {"name": "@ear-left", "parent": "@axie", "rotation": -179.04, "x": 112.7, "y": -203.23}, + {"name": "ear-left", "parent": "@ear-left", "length": 113.61, "rotation": 52, "x": -27, "y": -17, "transform": "noScale"}, + {"name": "@ear-right", "parent": "@axie", "rotation": -179.04, "x": 405.28, "y": -235.33}, + {"name": "ear-right", "parent": "@ear-right", "length": 119.39, "rotation": 93, "x": -40, "y": -54, "transform": "noScale"}, + {"name": "@eyes", "parent": "@axie", "rotation": -179.04, "x": 384.24, "y": -113.67}, {"name": "@horn", "parent": "@axie", "rotation": -179.04, "x": 327.92, "y": -214.63}, + {"name": "horn", "parent": "@horn", "length": 176.72, "rotation": 90, "y": 18, "transform": "noScale"}, + {"name": "@leg-back-left", "parent": "@axie", "length": 76.4, "rotation": 100.96, "x": -15.3, "y": 102.56, "transform": "noScale"}, + {"name": "@leg-front-left", "parent": "@axie", "length": 51.19, "rotation": 93.86, "x": 134.77, "y": 149.55, "transform": "noScale"}, + {"name": "@leg-front-right", "parent": "@axie", "length": 74.83, "rotation": 83.2, "x": 382.95, "y": 121.78, "transform": "noScale"}, + {"name": "@mouth", "parent": "@axie", "rotation": -179.04, "x": 382.23, "y": 6.31}, + {"name": "body-pattern", "parent": "@body", "rotation": -170.69, "x": -267.21, "y": -49.4, "transform": "noScale"}, {"name": "@shadow", "parent": "@root", "color": "e6d713ff"}, + {"name": "@tail", "parent": "@axie", "rotation": -179.04, "x": -11.76, "y": 61.72}, + {"name": "tail", "parent": "@tail", "length": 203.67, "rotation": 20, "x": 21, "y": 37, "transform": "noScale"}, + {"name": "leg-front-right-IK", "parent": "@pivot-main", "x": -195.99, "y": -10.21, "color": "ff3f00ff"}, + {"name": "leg-front-left-IK", "parent": "@pivot-main", "x": 42.3, "y": -18.42, "color": "ff3f00ff"}, + {"name": "leg-back-left-IK", "parent": "@pivot-main", "x": 208.57, "y": 1.35, "color": "ff3f00ff"}, {"name": "@ball", "parent": "@root", "y": 191, "color": "f3981bff"}, + {"name": "ball", "parent": "@ball", "y": -191, "color": "f4a729ff"}, {"name": "@", "parent": "@root", "x": 78.83, "y": -48.78} + ], + "slots": [ + {"name": "shadow", "bone": "@shadow", "attachment": "shadow"}, {"name": "ball", "bone": "ball"}, {"name": "leg-front-right", "bone": "@leg-front-right", "attachment": "leg-front-right"}, + {"name": "ear-right", "bone": "ear-right", "attachment": "ear-right"}, {"name": "tail", "bone": "tail", "attachment": "tail"}, {"name": "back", "bone": "back", "attachment": "back"}, + {"name": "leg-back-left", "bone": "@leg-back-left", "attachment": "leg-back-left"}, {"name": "body", "bone": "@body", "attachment": "body"}, {"name": "body-pattern", "bone": "body-pattern"}, + {"name": "leg-front-left", "bone": "@leg-front-left", "attachment": "leg-front-left"}, {"name": "eyes", "bone": "@eyes", "attachment": "eyes"}, + {"name": "mouth", "bone": "@mouth", "attachment": "mouth"}, {"name": "ear-left", "bone": "ear-left", "attachment": "ear-left"}, {"name": "horn", "bone": "horn", "attachment": "horn"} + ], + "ik": [ + {"name": "leg-back-left-IK", "order": 2, "bones": ["@leg-back-left"], "target": "leg-back-left-IK"}, + {"name": "leg-front-left-IK", "order": 1, "bones": ["@leg-front-left"], "target": "leg-front-left-IK"}, + {"name": "leg-front-right-IK", "bones": ["@leg-front-right"], "target": "leg-front-right-IK"} + ], + "skins": [ + { + "name": "default", + "attachments": { + "back": {"back": {"x": 126.73705882352942, "y": 11.279411764705884, "rotation": -64, "width": 364.70588235294116, "height": 392.94117647058823, "path": "reptile-10-lv2.back"}}, + "ear-left": { + "ear-left": {"x": 62.258235294117654, "y": -16.644117647058827, "rotation": -52, "width": 138.8235294117647, "height": 150.58823529411765, "path": "reptile-10-lv2.ear-left"} + }, + "ear-right": { + "ear-right": {"x": 38.218235294117655, "y": -13.754117647058827, "rotation": -93, "width": 138.8235294117647, "height": 150.58823529411765, "path": "reptile-10-lv2.ear-right"} + }, + "eyes": { + "eyes": {"x": 42.744117647058815, "y": 43.48647058823529, "width": 329.4117647058824, "height": 157.64705882352942, "path": "reptile-10-lv2.eyes"}, + "eyes-angry": {"x": 42.744117647058815, "y": 43.48647058823529, "width": 329.4117647058824, "height": 157.64705882352942, "path": "reptile-10-lv2.eyes-angry"}, + "eyes-happy": {"x": 32.50882352941177, "y": 51.72176470588235, "width": 265.88235294117646, "height": 141.1764705882353, "path": "reptile-10-lv2.eyes-happy"}, + "eyes-shut": {"x": 32.21470588235293, "y": 48.192352941176466, "width": 256.47058823529414, "height": 148.23529411764707, "path": "reptile-10-lv2.eyes-shut"} + }, + "horn": {"horn": {"x": 120.45705882352942, "y": -53.42058823529412, "rotation": -90, "width": 284.70588235294116, "height": 272.94117647058823, "path": "reptile-10-lv2.horn"}}, + "mouth": { + "mouth": {"x": 30.398823529411768, "y": 54.89823529411765, "width": 225.88235294117646, "height": 58.82352941176471, "path": "reptile-10-lv2.mouth"}, + "mouth-bite": {"x": 30.575294117647058, "y": 46.839411764705886, "width": 223.52941176470588, "height": 72.94117647058823, "path": "reptile-10-lv2.mouth-bite"}, + "mouth-open": {"x": 27.163529411764696, "y": 10.721764705882348, "width": 242.3529411764706, "height": 141.1764705882353, "path": "reptile-10-lv2.mouth-open"}, + "mouth-smile": {"x": 32.39882352941177, "y": 55.074705882352944, "width": 265.88235294117646, "height": 56.470588235294116, "path": "reptile-10-lv2.mouth-smile"} + }, + "tail": {"tail": {"x": 158.41117647058823, "y": -15.333529411764697, "rotation": -20, "width": 374.11764705882354, "height": 317.6470588235294, "path": "reptile-10-lv2.tail"}} + } + } + ], + "events": {"hit": {}, "hit-buff": {}, "jump": {}, "start-attack": {}}, + "keyAnimations": { + "activity/appear": "1023093953", + "activity/bath": "3305387968", + "attack/ranged/cast-fly": "4180526371", + "attack/ranged/cast-high": "164191126", + "attack/ranged/cast-low": "198813017", + "attack/ranged/cast-multi": "151119", + "attack/ranged/cast-tail": "997902532", + "activity/eat-bite": "1137807767", + "activity/eat-chew": "1988236421", + "activity/entrance": "3768378365", + "defense/evade": "1735454995", + "activity/evolve": "649307630", + "battle/get-buff": "1455190363", + "battle/get-debuff": "606904312", + "defense/hit-by-normal": "2045974966", + "defense/hit-by-normal-crit": "2130010601", + "defense/hit-by-normal-dramatic": "3823092125", + "defense/hit-by-ranged-attack": "2224561612", + "defense/hit-with-shield": "390714790", + "attack/melee/horn-gore": "1327954218", + "attack/melee/mouth-bite": "2237748264", + "action/move-back": "3766271173", + "action/move-forward": "2945160014", + "attack/melee/multi-attack": "905926802", + "action/idle/normal": "1659336865", + "attack/melee/normal-attack": "3305373483", + "activity/prepare": "405864717", + "action/idle/random-01": "554401889", + "action/idle/random-02": "1085666627", + "action/idle/random-03": "2021333900", + "action/idle/random-04": "1003789695", + "action/idle/random-05": "2745614147", + "action/run": "1438840721", + "draft/run-origin": "3577885069", + "attack/melee/shrimp": "3833448733", + "activity/sleep": "100562494", + "attack/melee/tail-multi-slap": "3317139533", + "attack/melee/tail-roll": "3108617565", + "attack/melee/tail-smash": "519942130", + "attack/melee/tail-thrash": "628713175", + "activity/victory-pose-back-flip": "2227634241" + } + }, + "reptile-08-lv2": { + "bones": [ + {"name": "@root"}, {"name": "@pivot-main", "parent": "@root"}, {"name": "@pivot-back", "parent": "@pivot-main", "x": 205, "y": 180, "color": "ff0101ff"}, + {"name": "@pivot-center", "parent": "@pivot-back", "x": -215.11, "y": -5.25, "color": "ff0101ff"}, + {"name": "@axie", "parent": "@pivot-center", "length": 213.28, "rotation": 179.04, "x": 196.39, "y": 5.16}, {"name": "@back", "parent": "@axie", "rotation": -179.04, "x": 37.63, "y": -198.19}, + {"name": "back", "parent": "@back", "length": 149.41, "rotation": 64, "x": -51.97, "y": -9.7, "transform": "noScale"}, + {"name": "@body", "parent": "@axie", "length": 226.28, "rotation": -8.35, "x": 224.58, "y": -0.53}, {"name": "@ear-left", "parent": "@axie", "rotation": -179.04, "x": 112.7, "y": -203.23}, + {"name": "ear-left", "parent": "@ear-left", "length": 113.61, "rotation": 52, "x": -17, "y": -84, "transform": "noScale"}, + {"name": "@ear-right", "parent": "@axie", "rotation": -179.04, "x": 405.28, "y": -235.33}, + {"name": "ear-right", "parent": "@ear-right", "length": 119.39, "rotation": 93, "x": -91, "y": -122, "transform": "noScale"}, + {"name": "@eyes", "parent": "@axie", "rotation": -179.04, "x": 384.24, "y": -113.67}, {"name": "@horn", "parent": "@axie", "rotation": -179.04, "x": 327.92, "y": -214.63}, + {"name": "horn", "parent": "@horn", "length": 176.72, "rotation": 90, "y": 18, "transform": "noScale"}, + {"name": "@leg-back-left", "parent": "@axie", "length": 76.4, "rotation": 100.96, "x": -15.3, "y": 102.56, "transform": "noScale"}, + {"name": "@leg-front-left", "parent": "@axie", "length": 51.19, "rotation": 93.86, "x": 134.77, "y": 149.55, "transform": "noScale"}, + {"name": "@leg-front-right", "parent": "@axie", "length": 74.83, "rotation": 83.2, "x": 382.95, "y": 121.78, "transform": "noScale"}, + {"name": "@mouth", "parent": "@axie", "rotation": -179.04, "x": 382.23, "y": 6.31}, + {"name": "body-pattern", "parent": "@body", "rotation": -170.69, "x": -267.21, "y": -49.4, "transform": "noScale"}, {"name": "@shadow", "parent": "@root", "color": "e6d713ff"}, + {"name": "@tail", "parent": "@axie", "rotation": -179.04, "x": -11.76, "y": 61.72}, {"name": "tail", "parent": "@tail", "length": 203.67, "x": -1, "y": 8, "transform": "noScale"}, + {"name": "leg-front-right-IK", "parent": "@pivot-main", "x": -195.99, "y": -10.21, "color": "ff3f00ff"}, + {"name": "leg-front-left-IK", "parent": "@pivot-main", "x": 42.3, "y": -18.42, "color": "ff3f00ff"}, + {"name": "leg-back-left-IK", "parent": "@pivot-main", "x": 208.57, "y": 1.35, "color": "ff3f00ff"}, {"name": "@ball", "parent": "@root", "y": 191, "color": "f3981bff"}, + {"name": "ball", "parent": "@ball", "y": -191, "color": "f4a729ff"}, {"name": "@", "parent": "@root", "x": 164.29, "y": -0.71} + ], + "slots": [ + {"name": "shadow", "bone": "@shadow", "attachment": "shadow"}, {"name": "ball", "bone": "ball"}, {"name": "leg-front-right", "bone": "@leg-front-right", "attachment": "leg-front-right"}, + {"name": "ear-right", "bone": "ear-right", "attachment": "ear-right"}, {"name": "tail", "bone": "tail", "attachment": "tail"}, {"name": "back", "bone": "back", "attachment": "back"}, + {"name": "leg-back-left", "bone": "@leg-back-left", "attachment": "leg-back-left"}, {"name": "body", "bone": "@body", "attachment": "body"}, {"name": "body-pattern", "bone": "body-pattern"}, + {"name": "leg-front-left", "bone": "@leg-front-left", "attachment": "leg-front-left"}, {"name": "eyes", "bone": "@eyes", "attachment": "eyes"}, + {"name": "mouth", "bone": "@mouth", "attachment": "mouth"}, {"name": "ear-left", "bone": "ear-left", "attachment": "ear-left"}, {"name": "horn", "bone": "horn", "attachment": "horn"} + ], + "ik": [ + {"name": "leg-back-left-IK", "order": 2, "bones": ["@leg-back-left"], "target": "leg-back-left-IK"}, + {"name": "leg-front-left-IK", "order": 1, "bones": ["@leg-front-left"], "target": "leg-front-left-IK"}, + {"name": "leg-front-right-IK", "bones": ["@leg-front-right"], "target": "leg-front-right-IK"} + ], + "skins": [ + { + "name": "default", + "attachments": { + "back": {"back": {"x": 74.24117647058823, "y": 2.8494117647058843, "rotation": -64, "width": 374.11764705882354, "height": 352.94117647058823, "path": "reptile-08-lv2.back"}}, + "ear-left": {"ear-left": {"x": 66.02823529411765, "y": 1.539411764705884, "rotation": -52, "width": 138.8235294117647, "height": 232.94117647058823, "path": "reptile-08-lv2.ear-left"}}, + "ear-right": { + "ear-right": {"x": 51.035294117647055, "y": 1.8794117647058841, "rotation": -93, "width": 143.52941176470588, "height": 232.94117647058823, "path": "reptile-08-lv2.ear-right"} + }, + "eyes": { + "eyes": {"x": 27.60764705882352, "y": 23.532941176470587, "width": 251.76470588235296, "height": 115.29411764705883, "path": "reptile-08-lv2.eyes"}, + "eyes-angry": {"x": 51.078235294117654, "y": 23.532941176470587, "width": 298.8235294117647, "height": 115.29411764705883, "path": "reptile-08-lv2.eyes-angry"}, + "eyes-happy": {"x": 31.784117647058824, "y": 29.35647058823529, "width": 249.41176470588235, "height": 117.64705882352942, "path": "reptile-08-lv2.eyes-happy"}, + "eyes-shut": {"x": 28.137058823529404, "y": 25.885882352941174, "width": 244.7058823529412, "height": 110.58823529411765, "path": "reptile-08-lv2.eyes-shut"} + }, + "horn": {"horn": {"x": 114.5035294117647, "y": 4.892352941176464, "rotation": -90, "width": 322.3529411764706, "height": 268.2352941176471, "path": "reptile-08-lv2.horn"}}, + "mouth": { + "mouth": {"x": 27.07823529411765, "y": 28.06235294117647, "width": 298.8235294117647, "height": 108.23529411764706, "path": "reptile-08-lv2.mouth"}, + "mouth-bite": {"x": 30.78411764705881, "y": 41.18, "width": 329.4117647058824, "height": 120.0, "path": "reptile-08-lv2.mouth-bite"}, + "mouth-open": {"x": 27.07823529411765, "y": 7.297647058823522, "width": 298.8235294117647, "height": 171.76470588235296, "path": "reptile-08-lv2.mouth-open"}, + "mouth-smile": {"x": 32.96058823529411, "y": 27.003529411764703, "width": 327.05882352941177, "height": 122.3529411764706, "path": "reptile-08-lv2.mouth-smile"} + }, + "tail": {"tail": {"x": 144.90176470588236, "y": 7.591764705882348, "width": 341.1764705882353, "height": 221.1764705882353, "path": "reptile-08-lv2.tail"}} + } + } + ], + "events": {"hit": {}, "hit-buff": {}, "jump": {}, "start-attack": {}}, + "keyAnimations": { + "activity/appear": "1023093953", + "activity/bath": "3305387968", + "attack/ranged/cast-fly": "4180526371", + "attack/ranged/cast-high": "164191126", + "attack/ranged/cast-low": "198813017", + "attack/ranged/cast-multi": "151119", + "attack/ranged/cast-tail": "997902532", + "activity/eat-bite": "1137807767", + "activity/eat-chew": "1988236421", + "activity/entrance": "3768378365", + "defense/evade": "1735454995", + "activity/evolve": "649307630", + "battle/get-buff": "1455190363", + "battle/get-debuff": "606904312", + "defense/hit-by-normal": "2045974966", + "defense/hit-by-normal-crit": "2130010601", + "defense/hit-by-normal-dramatic": "3823092125", + "defense/hit-by-ranged-attack": "2224561612", + "defense/hit-with-shield": "390714790", + "attack/melee/horn-gore": "1327954218", + "attack/melee/mouth-bite": "2237748264", + "action/move-back": "3766271173", + "action/move-forward": "2945160014", + "attack/melee/multi-attack": "905926802", + "action/idle/normal": "1659336865", + "attack/melee/normal-attack": "3305373483", + "activity/prepare": "405864717", + "action/idle/random-01": "554401889", + "action/idle/random-02": "1085666627", + "action/idle/random-03": "2021333900", + "action/idle/random-04": "1003789695", + "action/idle/random-05": "2745614147", + "action/run": "1438840721", + "draft/run-origin": "3577885069", + "attack/melee/shrimp": "3833448733", + "activity/sleep": "100562494", + "attack/melee/tail-multi-slap": "3317139533", + "attack/melee/tail-roll": "3108617565", + "attack/melee/tail-smash": "519942130", + "attack/melee/tail-thrash": "628713175", + "activity/victory-pose-back-flip": "2227634241" + } + }, + "beast-summer-02-lv2": { + "bones": [ + {"name": "@root"}, {"name": "@pivot-main", "parent": "@root"}, {"name": "@pivot-back", "parent": "@pivot-main", "x": 205, "y": 180, "color": "ff0101ff"}, + {"name": "@pivot-center", "parent": "@pivot-back", "x": -215.11, "y": -5.25, "color": "ff0101ff"}, + {"name": "@axie", "parent": "@pivot-center", "length": 213.28, "rotation": 179.04, "x": 196.39, "y": 5.16}, {"name": "@back", "parent": "@axie", "rotation": -179.04, "x": 37.63, "y": -198.19}, + {"name": "back", "parent": "@back", "length": 149.41, "rotation": 58, "x": -13.97, "y": 26.3, "transform": "noScale"}, + {"name": "@body", "parent": "@axie", "length": 226.28, "rotation": -8.35, "x": 224.58, "y": -0.53}, {"name": "@ear-left", "parent": "@axie", "rotation": -179.04, "x": 112.7, "y": -203.23}, + {"name": "ear-left", "parent": "@ear-left", "length": 113.61, "rotation": 90, "x": -27, "y": 19, "transform": "noScale"}, + {"name": "@ear-right", "parent": "@axie", "rotation": -179.04, "x": 405.28, "y": -235.33}, + {"name": "ear-right", "parent": "@ear-right", "length": 119.39, "rotation": 93, "x": -30, "y": -15, "transform": "noScale"}, + {"name": "@eyes", "parent": "@axie", "rotation": -179.04, "x": 384.24, "y": -113.67}, {"name": "@horn", "parent": "@axie", "rotation": -179.04, "x": 327.92, "y": -214.63}, + {"name": "horn", "parent": "@horn", "length": 176.72, "rotation": 90, "y": 18, "transform": "noScale"}, + {"name": "@leg-back-left", "parent": "@axie", "length": 76.4, "rotation": 100.96, "x": -15.3, "y": 102.56, "transform": "noScale"}, + {"name": "@leg-front-left", "parent": "@axie", "length": 51.19, "rotation": 93.86, "x": 134.77, "y": 149.55, "transform": "noScale"}, + {"name": "@leg-front-right", "parent": "@axie", "length": 74.83, "rotation": 83.2, "x": 382.95, "y": 121.78, "transform": "noScale"}, + {"name": "@mouth", "parent": "@axie", "rotation": -179.04, "x": 382.23, "y": 6.31, "color": "abe323ff"}, + {"name": "body-pattern", "parent": "@body", "rotation": -170.69, "x": -267.21, "y": -49.4, "transform": "noScale"}, {"name": "@shadow", "parent": "@root", "color": "e6d713ff"}, + {"name": "@tail", "parent": "@axie", "rotation": -179.04, "x": -11.76, "y": 61.72}, + {"name": "tail", "parent": "@tail", "length": 203.67, "rotation": -12, "x": 16, "y": 72.87, "transform": "noScale"}, + {"name": "leg-front-right-IK", "parent": "@pivot-main", "x": -195.99, "y": -10.21, "color": "ff3f00ff"}, + {"name": "leg-front-left-IK", "parent": "@pivot-main", "x": 42.3, "y": -18.42, "color": "ff3f00ff"}, + {"name": "leg-back-left-IK", "parent": "@pivot-main", "x": 208.57, "y": 1.35, "color": "ff3f00ff"}, {"name": "@ball", "parent": "@root", "y": 191, "color": "f3981bff"}, + {"name": "ball", "parent": "@ball", "y": -191, "color": "f4a729ff"}, {"name": "mouth-bubble", "parent": "@mouth", "x": -248.49, "y": -1.83}, + {"name": "mouth-accessory", "parent": "mouth-bubble", "x": -67.84, "y": 101.83}, {"name": "eyes-happy-accessory", "parent": "@eyes", "x": 142.51, "y": 62.21}, + {"name": "ear-right-bubble", "parent": "ear-right", "length": 40.07, "rotation": -179.99, "x": 190.79, "y": -17.72}, + {"name": "ear-left-bubble", "parent": "ear-left", "length": 48.54, "rotation": 176.27, "x": 197.3, "y": -23.23, "scaleX": 0.949}, + {"name": "ear-left-all-bubble", "parent": "ear-left", "length": 26.1, "rotation": 0.95, "x": -6.64, "y": -27.7, "color": "3002ffff"}, + {"name": "ear-right-dot-01", "parent": "ear-left-all-bubble", "rotation": -90.95, "x": -13.64, "y": 22.67, "scaleX": 0.3508, "scaleY": 0.3508, "color": "2f9bffff"}, + {"name": "ear-left-dot-01", "parent": "ear-left-all-bubble", "rotation": -90.95, "x": -28.82, "y": -24.72, "scaleX": 0.7755, "scaleY": 0.7755, "color": "2f9bffff"}, + {"name": "ear-right-bubble-02", "parent": "ear-right-bubble", "rotation": 86.99, "x": 42.45, "y": -32.45}, + {"name": "ear-right-bubble-03", "parent": "ear-right-bubble", "rotation": 86.99, "x": 64.75, "y": -1.3}, + {"name": "ear-right-bubble-04", "parent": "ear-right-bubble", "rotation": 86.99, "x": 49.1, "y": 33.33}, + {"name": "ear-left-bubble-02", "parent": "ear-left-bubble", "rotation": 93.73, "x": 59.21, "y": -23.48}, + {"name": "ear-left-bubble-03", "parent": "ear-left-bubble", "rotation": 93.73, "x": 60.37, "y": 9.26}, + {"name": "ear-left-bubble-04", "parent": "ear-left-bubble", "rotation": 93.73, "x": 57.44, "y": 49.26}, + {"name": "ear-right-bubble-05", "parent": "ear-right", "length": 40.07, "rotation": -179.99, "x": 190.79, "y": -17.72}, + {"name": "ear-right-bubble-06", "parent": "ear-right-bubble-05", "rotation": 86.99, "x": 42.45, "y": -32.45}, + {"name": "ear-right-bubble-07", "parent": "ear-right-bubble-05", "rotation": 86.99, "x": 64.75, "y": -1.3}, + {"name": "ear-right-bubble-08", "parent": "ear-right-bubble-05", "rotation": 86.99, "x": 49.1, "y": 33.33}, + {"name": "ear-left-bubble-05", "parent": "ear-left", "length": 48.54, "rotation": 176.27, "x": 197.3, "y": -23.23, "scaleX": 0.991}, + {"name": "ear-left-bubble-06", "parent": "ear-left-bubble-05", "rotation": 93.73, "x": 58.06, "y": -23.58}, + {"name": "ear-left-bubble-07", "parent": "ear-left-bubble-05", "rotation": 93.73, "x": 56.15, "y": 8.97}, + {"name": "ear-left-bubble-08", "parent": "ear-left-bubble-05", "rotation": 93.73, "x": 56.24, "y": 49.17}, + {"name": "ear-right-dot-02", "parent": "ear-left-all-bubble", "rotation": -95.73, "x": -18.26, "y": -8.1, "scaleX": 0.5668, "scaleY": 0.6813, "color": "2f9bffff"}, + {"name": "ear-left-dot-02", "parent": "ear-left-all-bubble", "rotation": -88.74, "x": 8.57, "y": 59.72, "scaleX": 0.6577, "scaleY": 0.5996, "color": "2f9bffff"}, + {"name": "ear-right-dot-03", "parent": "ear-left-all-bubble", "rotation": -87.96, "x": -25.76, "y": -45.18, "scaleX": 0.2583, "scaleY": 0.2881, "color": "2f9bffff"}, + {"name": "ear-right-dot-04", "parent": "ear-left-all-bubble", "rotation": -88.51, "x": -27.05, "y": -31.17, "scaleX": 0.4361, "scaleY": 0.6365, "color": "2f9bffff"}, + {"name": "ear-right-dot-05", "parent": "ear-left-all-bubble", "rotation": -94.07, "x": -5.28, "y": 34.53, "scaleX": 0.854, "scaleY": 0.6721, "color": "2f9bffff"}, + {"name": "ear-left-dot-03", "parent": "ear-left-all-bubble", "rotation": -90.95, "x": -10.57, "y": 11.72, "scaleX": 0.8206, "scaleY": 0.8206, "color": "2f9bffff"}, + {"name": "ear-left-dot-04", "parent": "ear-left-all-bubble", "rotation": -90.95, "x": 11.94, "y": 65.23, "scaleX": 0.7096, "scaleY": 0.7096, "color": "2f9bffff"}, + {"name": "ear-left-dot-05", "parent": "ear-left-all-bubble", "rotation": -88.35, "x": 10.11, "y": 68.29, "scaleX": 0.4014, "scaleY": 0.366, "color": "2f9bffff"}, + {"name": "ear-left-dot-06", "parent": "ear-left-all-bubble", "rotation": -90.95, "x": 34.65, "y": 74.95, "scaleX": 0.8206, "scaleY": 0.8206, "color": "2f9bffff"}, + {"name": "ear-right-dot-06", "parent": "ear-left-all-bubble", "rotation": -90.95, "x": -11.77, "y": 50.86, "scaleX": 0.4361, "scaleY": 0.4361, "color": "2f9bffff"}, + {"name": "ear-right-dot-07", "parent": "ear-left-all-bubble", "rotation": -96.07, "x": -32.28, "y": -4.86, "scaleX": 0.5668, "scaleY": 0.6813, "color": "2f9bffff"}, + {"name": "ear-right-dot-08", "parent": "ear-left-all-bubble", "rotation": -90.23, "x": -18.31, "y": -61.25, "scaleX": 0.7405, "scaleY": 0.826, "color": "2f9bffff"}, + {"name": "ear-right-dot-09", "parent": "ear-left-all-bubble", "rotation": -93.53, "x": -9.54, "y": 52.15, "scaleX": 0.2863, "scaleY": 0.3229, "color": "2f9bffff"}, + {"name": "ear-right-dot-10", "parent": "ear-left-all-bubble", "rotation": -111.97, "x": -31.43, "y": 21.83, "scaleX": 0.5911, "scaleY": 0.3731, "color": "2f9bffff"}, + {"name": "ear-right-all-bubble", "parent": "ear-right", "length": 26.1, "rotation": 3.44, "x": -10.08, "y": -8.05, "color": "3002ffff"}, + {"name": "ear-right-dot-11", "parent": "ear-right-all-bubble", "rotation": -96.44, "x": 10.27, "y": -24.86, "scaleX": 0.3508, "scaleY": 0.3508, "color": "2f9bffff"}, + {"name": "ear-left-dot-07", "parent": "ear-right-all-bubble", "rotation": -96.44, "x": 27.18, "y": -39.33, "scaleX": 0.7755, "scaleY": 0.7755, "color": "2f9bffff"}, + {"name": "ear-right-dot-12", "parent": "ear-right-all-bubble", "rotation": -101.56, "x": -18.26, "y": -8.1, "scaleX": 0.5668, "scaleY": 0.6813, "color": "2f9bffff"}, + {"name": "ear-left-dot-08", "parent": "ear-right-all-bubble", "rotation": -93.99, "x": -7.49, "y": -14.12, "scaleX": 0.6577, "scaleY": 0.5996, "color": "2f9bffff"}, + {"name": "ear-right-dot-13", "parent": "ear-right-all-bubble", "rotation": -93.67, "x": 43.59, "y": -57.74, "scaleX": 0.2583, "scaleY": 0.2881, "color": "2f9bffff"}, + {"name": "ear-right-dot-14", "parent": "ear-right-all-bubble", "rotation": -96.49, "x": 8.09, "y": -20.73, "scaleX": 0.4361, "scaleY": 0.6365, "color": "2f9bffff"}, + {"name": "ear-right-dot-15", "parent": "ear-right-all-bubble", "rotation": -84.65, "x": -5.28, "y": 34.53, "scaleX": 0.5911, "scaleY": 0.8949, "color": "2f9bffff"}, + {"name": "ear-left-dot-09", "parent": "ear-right-all-bubble", "rotation": -96.44, "x": -10.57, "y": 11.72, "scaleX": 0.8206, "scaleY": 0.8206, "color": "2f9bffff"}, + {"name": "ear-left-dot-10", "parent": "ear-right-all-bubble", "rotation": -96.44, "x": -13.81, "y": 2.57, "scaleX": 0.7096, "scaleY": 0.7096, "color": "2f9bffff"}, + {"name": "ear-left-dot-11", "parent": "ear-right-all-bubble", "rotation": -93.79, "x": -9.28, "y": 21.87, "scaleX": 0.4014, "scaleY": 0.366, "color": "2f9bffff"}, + {"name": "ear-left-dot-12", "parent": "ear-right-all-bubble", "rotation": -96.44, "x": -2.52, "y": 33.38, "scaleX": 0.8206, "scaleY": 0.8206, "color": "2f9bffff"}, + {"name": "ear-right-dot-16", "parent": "ear-right-all-bubble", "rotation": -96.44, "x": -4.07, "y": -34.4, "scaleX": 0.4361, "scaleY": 0.4361, "color": "2f9bffff"}, + {"name": "ear-right-dot-17", "parent": "ear-right-all-bubble", "rotation": -101.7, "x": 4.16, "y": -7.75, "scaleX": 0.5668, "scaleY": 0.6813, "color": "2f9bffff"}, + {"name": "ear-right-dot-18", "parent": "ear-right-all-bubble", "rotation": -96.34, "x": 27.4, "y": -55.17, "scaleX": 0.7405, "scaleY": 0.826, "color": "2f9bffff"}, + {"name": "ear-right-dot-19", "parent": "ear-right-all-bubble", "rotation": -99.41, "x": -9.54, "y": 52.15, "scaleX": 0.2863, "scaleY": 0.3229, "color": "2f9bffff"}, + {"name": "ear-right-dot-20", "parent": "ear-right-all-bubble", "rotation": -86.28, "x": 12.43, "y": -37.05, "scaleX": 0.5911, "scaleY": 0.8949, "color": "2f9bffff"}, + {"name": "mouth-bubble-core", "parent": "mouth-accessory"}, {"name": "eyes-light-left", "parent": "@eyes", "length": 15.08, "rotation": -135.48, "x": 69.15, "y": -15.18}, + {"name": "eyes-light-right", "parent": "@eyes", "length": 15.08, "rotation": -135.48, "x": -97.9, "y": -16.49}, {"name": "eyes-light-dot", "parent": "@eyes", "x": -66.73, "y": 27.82}, + {"name": "eyes-light-dot-02", "parent": "@eyes", "x": 103.19, "y": 27.82} + ], + "slots": [ + {"name": "shadow", "bone": "@shadow", "attachment": "shadow"}, {"name": "ball", "bone": "ball"}, + {"name": "leg-front-right", "bone": "@leg-front-right", "attachment": "summer-leg-front-right"}, {"name": "tail", "bone": "tail", "attachment": "tail"}, + {"name": "back", "bone": "back", "attachment": "back"}, {"name": "leg-back-left", "bone": "@leg-back-left", "attachment": "summer-leg-back-left"}, + {"name": "body", "bone": "@body", "attachment": "body"}, {"name": "body-pattern", "bone": "body-pattern"}, {"name": "ear-right-under", "bone": "ear-right", "attachment": "ear-right-under"}, + {"name": "ear-left-dot-07", "bone": "ear-left-dot-07", "color": "ffffff00", "attachment": "ear-left-dot"}, + {"name": "ear-left-dot-10", "bone": "ear-left-dot-10", "color": "ffffff00", "attachment": "ear-left-dot"}, + {"name": "ear-left-dot-09", "bone": "ear-left-dot-09", "color": "ffffff00", "attachment": "ear-left-dot"}, + {"name": "ear-left-dot-12", "bone": "ear-left-dot-12", "color": "ffffff00", "attachment": "ear-left-dot"}, + {"name": "ear-left-dot-08", "bone": "ear-left-dot-08", "color": "ffffff00", "attachment": "ear-left-dot"}, + {"name": "ear-left-dot-11", "bone": "ear-left-dot-11", "color": "ffffff00", "attachment": "ear-left-dot"}, + {"name": "ear-right-dot-11", "bone": "ear-right-dot-11", "color": "ffffff00", "attachment": "ear-right-dot"}, + {"name": "ear-right-dot-16", "bone": "ear-right-dot-16", "color": "ffffff00", "attachment": "ear-right-dot"}, + {"name": "ear-right-dot-12", "bone": "ear-right-dot-12", "color": "ffffff00", "attachment": "ear-right-dot"}, + {"name": "ear-right-dot-17", "bone": "ear-right-dot-17", "color": "ffffff00", "attachment": "ear-right-dot"}, + {"name": "ear-right-dot-13", "bone": "ear-right-dot-13", "color": "ffffff00", "attachment": "ear-right-dot"}, + {"name": "ear-right-dot-18", "bone": "ear-right-dot-18", "color": "ffffff00", "attachment": "ear-right-dot"}, + {"name": "ear-right-dot-14", "bone": "ear-right-dot-14", "color": "ffffff00", "attachment": "ear-right-dot"}, + {"name": "ear-right-dot-19", "bone": "ear-right-dot-19", "color": "ffffff00", "attachment": "ear-right-dot"}, + {"name": "ear-right-dot-15", "bone": "ear-right-dot-15", "color": "ffffff00", "attachment": "ear-right-dot"}, + {"name": "ear-right-dot-20", "bone": "ear-right-dot-20", "color": "ffffff00", "attachment": "ear-right-dot"}, + {"name": "ear-right-bubble", "bone": "ear-right-bubble", "color": "fcae10ff", "attachment": "ear-right-bubble"}, + {"name": "ear-right-bubble-02", "bone": "ear-right-bubble-05", "attachment": "ear-right-bubble"}, {"name": "ear-right-upper", "bone": "ear-right", "attachment": "ear-right-upper"}, + {"name": "leg-front-left", "bone": "@leg-front-left", "attachment": "summer-leg-front-left"}, {"name": "horn", "bone": "horn", "attachment": "horn"}, + {"name": "ear-left-under", "bone": "ear-left", "attachment": "ear-left-under"}, {"name": "ear-left-dot-01", "bone": "ear-left-dot-01", "color": "ffffff00", "attachment": "ear-left-dot"}, + {"name": "ear-left-dot-04", "bone": "ear-left-dot-04", "color": "ffffff00", "attachment": "ear-left-dot"}, + {"name": "ear-left-dot-03", "bone": "ear-left-dot-03", "color": "ffffff00", "attachment": "ear-left-dot"}, + {"name": "ear-left-dot-06", "bone": "ear-left-dot-06", "color": "ffffff00", "attachment": "ear-left-dot"}, + {"name": "ear-left-dot-02", "bone": "ear-left-dot-02", "color": "ffffff00", "attachment": "ear-left-dot"}, + {"name": "ear-left-dot-05", "bone": "ear-left-dot-05", "color": "ffffff00", "attachment": "ear-left-dot"}, + {"name": "ear-right-dot-01", "bone": "ear-right-dot-01", "color": "ffffff00", "attachment": "ear-right-dot"}, + {"name": "ear-right-dot-06", "bone": "ear-right-dot-06", "color": "ffffff00", "attachment": "ear-right-dot"}, + {"name": "ear-right-dot-02", "bone": "ear-right-dot-02", "color": "ffffff00", "attachment": "ear-right-dot"}, + {"name": "ear-right-dot-07", "bone": "ear-right-dot-07", "color": "ffffff00", "attachment": "ear-right-dot"}, + {"name": "ear-right-dot-03", "bone": "ear-right-dot-03", "color": "ffffff00", "attachment": "ear-right-dot"}, + {"name": "ear-right-dot-08", "bone": "ear-right-dot-08", "color": "ffffff00", "attachment": "ear-right-dot"}, + {"name": "ear-right-dot-04", "bone": "ear-right-dot-04", "color": "ffffff00", "attachment": "ear-right-dot"}, + {"name": "ear-right-dot-09", "bone": "ear-right-dot-09", "color": "ffffff00", "attachment": "ear-right-dot"}, + {"name": "ear-right-dot-05", "bone": "ear-right-dot-05", "color": "ffffff00", "attachment": "ear-right-dot"}, + {"name": "ear-right-dot-10", "bone": "ear-right-dot-10", "color": "ffffff00", "attachment": "ear-right-dot"}, + {"name": "ear-left-bubble", "bone": "ear-left-bubble", "color": "fcae10ff", "attachment": "ear-left-bubble"}, + {"name": "ear-left-bubble-02", "bone": "ear-left-bubble-05", "attachment": "ear-left-bubble"}, {"name": "ear-left-upper", "bone": "ear-left", "attachment": "ear-left-upper"}, + {"name": "eyes", "bone": "@eyes", "attachment": "eyes"}, {"name": "eyes-light-dot", "bone": "eyes-light-dot"}, {"name": "eyes-light-dot-02", "bone": "eyes-light-dot-02"}, + {"name": "eyes-light-left", "bone": "eyes-light-left", "color": "fff96500", "attachment": "light", "blend": "additive"}, + {"name": "eyes-light-right", "bone": "eyes-light-right", "color": "fff96500", "attachment": "light", "blend": "additive"}, {"name": "eyes-upper", "bone": "@eyes", "attachment": "eyes-upper"}, + {"name": "mouth", "bone": "@mouth", "attachment": "mouth"}, {"name": "mouth-accessory", "bone": "mouth-accessory", "color": "ffffff00", "attachment": "mouth-accessory"}, + {"name": "eyes-happy-accessory", "bone": "eyes-happy-accessory", "color": "ffffff00", "attachment": "eyes-happy-accessory", "blend": "additive"} + ], + "ik": [ + {"name": "leg-back-left-IK", "order": 3, "bones": ["@leg-back-left"], "target": "leg-back-left-IK"}, + {"name": "leg-front-left-IK", "order": 2, "bones": ["@leg-front-left"], "target": "leg-front-left-IK"}, + {"name": "leg-front-right-IK", "bones": ["@leg-front-right"], "target": "leg-front-right-IK"} + ], + "transform": [{"name": "@mouth", "order": 1, "bones": ["mouth-bubble"], "target": "@mouth", "x": -49.1, "y": 37.9, "rotateMix": 0, "translateMix": 0, "scaleMix": 0, "shearMix": 0}], + "skins": [ + { + "name": "default", + "attachments": { + "back": {"back": {"x": 108.79, "y": 18.72, "rotation": -58, "width": 309, "height": 324, "path": "beast-summer-02-lv2.back"}}, + "ear-left-bubble": { + "ear-left-bubble": { + "type": "mesh", + "uvs": [ + 0.87714, 0.57697, 0.91393, 0.67811, 0.94364, 0.75977, 0.96133, 0.8176, 0.97838, 0.87333, 1, 0.94398, 0.93104, 0.94427, 0.90524, 0.94438, 0.88494, 0.94447, 0.85255, 0.94461, 0.82176, + 0.94474, 0.79396, 0.94486, 0.76382, 0.94499, 0.73767, 0.9451, 0.70713, 0.94523, 0.67579, 0.94536, 0.64108, 0.94551, 0.61244, 0.94564, 0.5758, 0.94579, 0.5367, 0.94596, 0.50394, + 0.9461, 0.47091, 0.94624, 0.435, 0.94639, 0.39675, 0.94656, 0.36198, 0.94671, 0.32916, 0.94685, 0.29359, 0.947, 0.25022, 0.94718, 0.20956, 0.94736, 0.17261, 0.94751, 0.12749, + 0.94771, 0.1012, 0.94782, 0.07834, 0.94792, 0.0457, 0.94806, 0.02123, 0.94816, 0, 0.94825, 0, 0.86703, 0, 0.81359, 0, 0.73715, 0.02817, 0.68242, 0.07791, 0.5858, 0.37947, 0, 0.46651, + 0, 0.5261, 0, 0.59994, 0, 0.66726, 0, 0.02864, 0.86721, 0.04805, 0.81379, 0.07275, 0.7389, 0.0999, 0.68207, 0.14259, 0.58508, 0.49108, 0.58123, 0.82646, 0.57753, 0.86109, 0.67837, + 0.88458, 0.75835, 0.90003, 0.81734, 0.91424, 0.87292, 0.48557, 0.6802, 0.48069, 0.74867, 0.47772, 0.81558, 0.4758, 0.87009, 0.29126, 0.58344, 0.25576, 0.68132, 0.23492, 0.74278, + 0.2135, 0.81448, 0.19874, 0.86831, 0.19271, 0.49455, 0.4968, 0.48641, 0.79002, 0.48462, 0.25666, 0.37903, 0.50462, 0.35653, 0.74321, 0.36527, 0.68757, 0.57906, 0.70466, 0.67913, + 0.71716, 0.75434, 0.72541, 0.81661, 0.73109, 0.87174, 0.67152, 0.48534, 0.32349, 0.49105, 0.38378, 0.58242, 0.36974, 0.68076, 0.36036, 0.74579, 0.34895, 0.81504, 0.34148, 0.86923, + 0.20652, 0.58437, 0.16979, 0.68173, 0.1462, 0.74066, 0.12077, 0.81409, 0.10379, 0.8677, 0.59158, 0.58012, 0.59921, 0.67965, 0.60299, 0.7516, 0.60776, 0.81612, 0.60866, 0.87095, + 0.76107, 0.57825, 0.78751, 0.67873, 0.81003, 0.75656, 0.82525, 0.81703, 0.83754, 0.87243, 0.10852, 0.73975, 0.08479, 0.81394, 0.06934, 0.86747, 0.15113, 0.868, 0.1657, 0.81428, + 0.18746, 0.74164, 0.29675, 0.74426, 0.28022, 0.81476, 0.26841, 0.86876, 0.41495, 0.7471, 0.40761, 0.81529, 0.4031, 0.86963, 0.53765, 0.87049, 0.53762, 0.81583, 0.53944, 0.75008, + 0.6595, 0.75296, 0.66217, 0.81635, 0.66857, 0.87134, 0.78397, 0.87208, 0.7758, 0.81682, 0.76492, 0.75548, 0.74852, 0.67892, 0.82675, 0.67854, 0.84222, 0.75734, 0.8595, 0.81717, + 0.87132, 0.87264, 0.01186, 0.9147, 0.056, 0.91293, 0.08943, 0.91297, 0.13846, 0.91074, 0.18465, 0.91102, 0.25824, 0.91262, 0.33507, 0.90958, 0.39978, 0.90977, 0.47313, 0.91161, + 0.53714, 0.91117, 0.61061, 0.90948, 0.67252, 0.91178, 0.73471, 0.91209, 0.78925, 0.91054, 0.84557, 0.91105, 0.87872, 0.91169, 0.92292, 0.90979, 0.21772, 0.91173, 0.11081, 0.912, + 0.02923, 0.91401, 0.29821, 0.91104, 0.36548, 0.90967, 0.43685, 0.9107, 0.50336, 0.9114, 0.57635, 0.91027, 0.64066, 0.9106, 0.70543, 0.91195, 0.76031, 0.91136, 0.81833, 0.9108, + 0.89934, 0.9108 + ], + "triangles": [ + 85, 84, 62, 94, 73, 72, 123, 54, 55, 62, 84, 61, 100, 48, 99, 144, 46, 126, 122, 53, 54, 121, 95, 52, 48, 49, 99, 35, 36, 125, 125, 36, 46, 48, 47, 38, 47, 37, 38, 50, 66, 84, 50, + 40, 66, 56, 3, 4, 54, 53, 1, 52, 68, 0, 70, 42, 43, 71, 0, 68, 44, 45, 71, 70, 43, 44, 71, 70, 44, 69, 41, 42, 69, 42, 70, 71, 45, 0, 77, 70, 71, 77, 71, 68, 70, 78, 69, 67, 70, 77, + 67, 78, 70, 41, 69, 40, 66, 69, 78, 94, 77, 68, 94, 68, 52, 72, 77, 94, 89, 67, 77, 89, 77, 72, 67, 79, 78, 51, 67, 89, 51, 79, 67, 61, 66, 78, 61, 78, 79, 84, 66, 61, 40, 69, 66, + 90, 89, 72, 90, 72, 73, 57, 79, 51, 57, 51, 89, 57, 89, 90, 80, 61, 79, 80, 79, 57, 62, 61, 80, 108, 80, 57, 113, 57, 90, 53, 52, 0, 53, 0, 1, 121, 52, 53, 54, 1, 2, 95, 94, 52, 55, + 2, 3, 55, 54, 2, 5, 6, 4, 39, 40, 49, 49, 40, 50, 38, 39, 48, 46, 36, 37, 48, 39, 49, 85, 50, 84, 49, 50, 85, 47, 46, 37, 56, 55, 3, 122, 121, 53, 47, 48, 100, 46, 47, 101, 125, 46, + 144, 35, 125, 34, 34, 125, 144, 101, 47, 100, 86, 99, 49, 85, 86, 49, 120, 94, 95, 120, 73, 94, 114, 91, 90, 73, 114, 90, 74, 73, 120, 114, 73, 74, 119, 120, 95, 74, 120, 119, 96, + 95, 121, 119, 95, 96, 96, 121, 122, 92, 91, 114, 115, 114, 74, 92, 114, 115, 75, 74, 119, 115, 74, 75, 118, 119, 96, 75, 119, 118, 97, 96, 122, 118, 96, 97, 123, 122, 54, 97, 122, + 123, 93, 92, 115, 116, 115, 75, 93, 115, 116, 76, 75, 118, 116, 75, 76, 117, 118, 97, 76, 118, 117, 98, 97, 123, 117, 97, 98, 124, 123, 55, 98, 123, 124, 150, 135, 93, 153, 138, 117, + 116, 150, 93, 98, 153, 117, 154, 124, 56, 154, 56, 141, 139, 98, 124, 140, 139, 124, 153, 98, 139, 152, 76, 117, 152, 117, 138, 154, 140, 124, 151, 136, 116, 150, 116, 136, 76, 151, + 116, 137, 151, 76, 152, 137, 76, 7, 154, 141, 7, 141, 6, 8, 140, 154, 8, 154, 7, 9, 139, 140, 9, 140, 8, 10, 153, 139, 10, 139, 9, 11, 138, 153, 11, 153, 10, 12, 152, 138, 12, 138, + 11, 13, 137, 152, 13, 152, 12, 14, 151, 137, 14, 137, 13, 15, 136, 151, 15, 151, 14, 16, 150, 136, 16, 136, 15, 17, 135, 150, 17, 150, 16, 124, 55, 56, 6, 141, 4, 141, 56, 4, 113, + 90, 91, 81, 80, 108, 58, 108, 57, 109, 81, 108, 82, 81, 109, 59, 108, 58, 109, 108, 59, 112, 58, 113, 59, 58, 112, 112, 113, 91, 92, 112, 91, 110, 82, 109, 83, 82, 110, 60, 109, 59, + 110, 109, 60, 111, 112, 92, 59, 112, 111, 60, 59, 111, 111, 92, 93, 146, 83, 110, 131, 83, 146, 132, 146, 110, 149, 111, 93, 149, 93, 135, 147, 110, 60, 132, 110, 147, 111, 148, 60, + 134, 111, 149, 134, 148, 111, 133, 147, 60, 148, 133, 60, 18, 134, 149, 18, 149, 135, 18, 135, 17, 19, 148, 134, 19, 134, 18, 20, 148, 19, 21, 147, 133, 20, 21, 133, 20, 133, 148, + 22, 132, 147, 22, 147, 21, 23, 146, 132, 23, 132, 22, 24, 131, 146, 24, 146, 23, 25, 131, 24, 58, 57, 113, 63, 104, 85, 86, 85, 104, 62, 63, 85, 105, 62, 80, 63, 62, 105, 81, 105, + 80, 87, 99, 86, 100, 99, 87, 103, 86, 104, 87, 86, 103, 64, 104, 63, 103, 104, 64, 106, 63, 105, 64, 63, 106, 82, 105, 81, 106, 105, 82, 88, 100, 87, 101, 100, 88, 102, 87, 103, 88, + 87, 102, 65, 103, 64, 102, 103, 65, 107, 64, 106, 65, 64, 107, 83, 106, 82, 107, 106, 83, 83, 145, 107, 128, 88, 102, 129, 102, 65, 128, 102, 129, 131, 145, 83, 142, 65, 107, 129, + 65, 142, 143, 88, 128, 130, 142, 107, 130, 107, 145, 127, 101, 88, 127, 88, 143, 126, 101, 127, 25, 145, 131, 26, 130, 145, 26, 145, 25, 27, 142, 130, 27, 130, 26, 28, 129, 142, 28, + 142, 27, 29, 128, 129, 29, 129, 28, 30, 143, 128, 30, 128, 29, 31, 127, 143, 31, 143, 30, 32, 126, 127, 32, 127, 31, 33, 144, 126, 33, 126, 32, 126, 46, 101, 34, 144, 33 + ], + "vertices": [ + 4, 39, 58.43, 20.31, 0.00012, 40, 36.09, 20.31, 0.00054, 41, 13.17, 20.31, 0.12631, 32, 43.2, 34, 0.87302, 3, 40, 39.33, 12.22, 0.00019, 41, 16.41, 12.22, 0.19743, 32, 51.06, 37.76, + 0.80237, 3, 40, 41.94, 5.69, 6e-05, 41, 19.02, 5.69, 0.26715, 32, 57.41, 40.79, 0.73278, 3, 40, 43.5, 1.06, 1e-05, 41, 20.58, 1.06, 0.33542, 32, 61.92, 42.65, 0.66457, 3, 40, 45, + -3.4, 1e-05, 41, 22.08, -3.4, 0.40033, 32, 66.27, 44.44, 0.59966, 3, 40, 46.9, -9.05, 0, 41, 23.98, -9.05, 0.45012, 32, 71.79, 46.7, 0.54988, 3, 40, 40.83, -9.07, 0, 41, 17.91, + -9.07, 0.5829, 32, 72.21, 40.65, 0.4171, 3, 40, 38.56, -9.08, 4e-05, 41, 15.64, -9.08, 0.72131, 32, 72.37, 38.38, 0.27865, 3, 40, 36.78, -9.09, 0.00031, 41, 13.86, -9.09, 0.8264, 32, + 72.49, 36.6, 0.17329, 3, 40, 33.93, -9.1, 0.00157, 41, 11, -9.1, 0.90359, 32, 72.69, 33.76, 0.09484, 3, 40, 31.22, -9.11, 0.00537, 41, 8.3, -9.11, 0.94975, 32, 72.87, 31.05, 0.04488, + 3, 40, 28.77, -9.12, 0.01601, 41, 5.85, -9.12, 0.96404, 32, 73.04, 28.61, 0.01996, 3, 40, 26.12, -9.13, 0.03803, 41, 3.2, -9.13, 0.95562, 32, 73.22, 25.97, 0.00635, 3, 40, 23.82, + -9.14, 0.08031, 41, 0.9, -9.14, 0.91597, 32, 73.38, 23.67, 0.00372, 4, 39, 43.47, -9.15, 0, 40, 21.13, -9.15, 0.14592, 41, -1.79, -9.15, 0.85165, 32, 73.57, 20.99, 0.00243, 4, 39, + 40.71, -9.16, 2e-05, 40, 18.37, -9.16, 0.23867, 41, -4.55, -9.16, 0.75671, 32, 73.76, 18.24, 0.0046, 4, 39, 37.66, -9.17, 0.00014, 40, 15.32, -9.17, 0.35275, 41, -7.6, -9.17, + 0.64256, 32, 73.97, 15.19, 0.00455, 4, 39, 35.13, -9.18, 0.00092, 40, 12.8, -9.18, 0.48034, 41, -10.13, -9.18, 0.51198, 32, 74.14, 12.68, 0.00676, 4, 39, 31.91, -9.19, 0.00375, 40, + 9.57, -9.19, 0.61095, 41, -13.35, -9.19, 0.38019, 32, 74.36, 9.46, 0.00512, 4, 39, 28.47, -9.21, 0.01298, 40, 6.13, -9.21, 0.72267, 41, -16.79, -9.21, 0.25841, 32, 74.6, 6.03, + 0.00594, 4, 39, 25.59, -9.22, 0.03422, 40, 3.25, -9.22, 0.80451, 41, -19.67, -9.22, 0.15782, 32, 74.8, 3.15, 0.00345, 4, 39, 22.68, -9.23, 0.07754, 40, 0.34, -9.23, 0.83155, 41, + -22.58, -9.23, 0.08642, 32, 75, 0.25, 0.00449, 4, 39, 19.52, -9.24, 0.14705, 40, -2.82, -9.24, 0.80991, 41, -25.74, -9.24, 0.04032, 32, 75.22, -2.9, 0.00272, 4, 39, 16.15, -9.25, + 0.24563, 40, -6.18, -9.25, 0.73344, 41, -29.11, -9.25, 0.01645, 32, 75.45, -6.26, 0.00448, 4, 39, 13.09, -9.27, 0.36774, 40, -9.24, -9.27, 0.62371, 41, -32.17, -9.27, 0.00512, 32, + 75.66, -9.31, 0.00344, 4, 39, 10.21, -9.28, 0.50372, 40, -12.13, -9.28, 0.49001, 41, -35.05, -9.28, 0.00135, 32, 75.86, -12.19, 0.00491, 4, 39, 7.08, -9.29, 0.64487, 40, -15.26, + -9.29, 0.35177, 41, -38.18, -9.29, 0.00021, 32, 76.08, -15.32, 0.00314, 4, 39, 3.26, -9.3, 0.77, 40, -19.08, -9.3, 0.22651, 41, -42, -9.3, 3e-05, 32, 76.34, -19.12, 0.00346, 4, 39, + -0.32, -9.32, 0.87272, 40, -22.66, -9.32, 0.1254, 41, -45.58, -9.32, 0, 32, 76.59, -22.69, 0.00188, 3, 39, -3.57, -9.33, 0.9351, 40, -25.91, -9.33, 0.0605, 32, 76.81, -25.94, 0.0044, + 3, 39, -7.54, -9.35, 0.96153, 40, -29.88, -9.35, 0.02278, 32, 77.09, -29.9, 0.01569, 3, 39, -9.85, -9.35, 0.93655, 40, -32.19, -9.35, 0.00657, 32, 77.24, -32.21, 0.05688, 3, 39, + -11.87, -9.36, 0.83576, 40, -34.2, -9.36, 0.00151, 32, 77.38, -34.21, 0.16273, 3, 39, -14.74, -9.37, 0.65143, 40, -37.08, -9.37, 0.00023, 32, 77.58, -37.08, 0.34834, 3, 39, -16.89, + -9.38, 0.4382, 40, -39.23, -9.38, 2e-05, 32, 77.73, -39.23, 0.56178, 3, 39, -18.76, -9.39, 0.27507, 40, -41.1, -9.39, 0, 32, 77.86, -41.09, 0.72493, 3, 39, -18.76, -2.89, 0.21414, + 40, -41.1, -2.89, 2e-05, 32, 71.37, -41.51, 0.78584, 3, 39, -18.76, 1.38, 0.19077, 40, -41.1, 1.38, 0.00024, 32, 67.11, -41.79, 0.80899, 3, 39, -18.76, 7.5, 0.1765, 40, -41.1, 7.5, + 0.00116, 32, 61.01, -42.19, 0.82235, 4, 39, -16.28, 11.88, 0.15382, 40, -38.62, 11.88, 0.00307, 41, -61.54, 11.88, 1e-05, 32, 56.48, -40, 0.84309, 4, 39, -11.9, 19.61, 0.11079, 40, + -34.24, 19.61, 0.0029, 41, -57.16, 19.61, 0.00014, 32, 48.48, -36.13, 0.88617, 4, 39, 14.63, 66.47, 0.04584, 40, -7.7, 66.47, 0.00083, 41, -30.63, 66.47, 0.00037, 32, -0.01, -12.7, + 0.95296, 4, 39, 22.29, 66.47, 0.02247, 40, -0.04, 66.47, 0.00083, 41, -22.97, 66.47, 0.00288, 32, -0.51, -5.06, 0.97382, 4, 39, 27.54, 66.47, 0.01007, 40, 5.2, 66.47, 0.00155, 41, + -17.72, 66.47, 0.0104, 32, -0.85, 0.17, 0.97798, 4, 39, 34.04, 66.47, 0.00272, 40, 11.7, 66.47, 0.00045, 41, -11.22, 66.47, 0.02285, 32, -1.28, 6.66, 0.97398, 4, 39, 39.96, 66.47, + 0.00033, 40, 17.62, 66.47, 0.00011, 41, -5.3, 66.47, 0.0498, 32, -1.66, 12.57, 0.94976, 3, 39, -16.24, -2.91, 0.33437, 40, -38.58, -2.91, 0.0002, 32, 71.23, -39, 0.66543, 3, 39, + -14.53, 1.37, 0.32645, 40, -36.87, 1.37, 0.00078, 32, 66.85, -37.57, 0.67277, 4, 39, -12.36, 7.36, 0.307, 40, -34.7, 7.36, 0.00285, 41, -57.62, 7.36, 1e-05, 32, 60.73, -35.79, + 0.69014, 4, 39, -9.97, 11.91, 0.26477, 40, -32.31, 11.91, 0.00971, 41, -55.23, 11.91, 0.00027, 32, 56.04, -33.7, 0.72525, 4, 39, -6.21, 19.66, 0.19881, 40, -28.55, 19.66, 0.00959, + 41, -51.47, 19.66, 0.00132, 32, 48.05, -30.46, 0.79028, 4, 39, 24.46, 19.97, 0.10712, 40, 2.12, 19.97, 0.11704, 41, -20.8, 19.97, 0.11672, 32, 45.75, 0.12, 0.65912, 4, 39, 53.97, + 20.27, 0.00116, 40, 31.63, 20.27, 0.00313, 41, 8.71, 20.27, 0.2148, 32, 43.53, 29.55, 0.7809, 4, 39, 57.02, 12.2, 0.0001, 40, 34.68, 12.2, 0.00083, 41, 11.76, 12.2, 0.29942, 32, + 51.38, 33.12, 0.69965, 3, 40, 36.75, 5.8, 0.00034, 41, 13.82, 5.8, 0.378, 32, 57.63, 35.6, 0.62166, 3, 40, 38.1, 1.08, 0.00022, 41, 15.18, 1.08, 0.45653, 32, 62.25, 37.26, 0.54325, + 3, 40, 39.36, -3.36, 0.00015, 41, 16.43, -3.36, 0.53433, 32, 66.61, 38.8, 0.46552, 4, 39, 23.97, 12.06, 0.12565, 40, 1.63, 12.06, 0.24275, 41, -21.29, 12.06, 0.14114, 32, 53.68, + 0.15, 0.49046, 4, 39, 23.54, 6.58, 0.11007, 40, 1.2, 6.58, 0.47217, 41, -21.72, 6.58, 0.12893, 32, 59.17, 0.08, 0.28883, 4, 39, 23.28, 1.22, 0.10884, 40, 0.94, 1.22, 0.60558, 41, + -21.98, 1.22, 0.12698, 32, 64.53, 0.17, 0.1586, 4, 39, 23.11, -3.14, 0.10666, 40, 0.77, -3.14, 0.70334, 41, -22.15, -3.14, 0.12133, 32, 68.89, 0.28, 0.06866, 4, 39, 6.87, 19.8, + 0.29773, 40, -15.47, 19.8, 0.06022, 41, -38.39, 19.8, 0.01488, 32, 47.07, -17.41, 0.62717, 4, 39, 3.75, 11.97, 0.44072, 40, -18.59, 11.97, 0.09602, 41, -41.51, 11.97, 0.01064, 32, + 55.08, -20.02, 0.45261, 4, 39, 1.91, 7.05, 0.66419, 40, -20.42, 7.05, 0.11803, 41, -43.35, 7.05, 0.002, 32, 60.11, -21.53, 0.21579, 4, 39, 0.03, 1.31, 0.77187, 40, -22.31, 1.31, + 0.12352, 41, -45.23, 1.31, 0.00043, 32, 65.96, -23.04, 0.10418, 4, 39, -1.27, -2.99, 0.84303, 40, -23.61, -2.99, 0.11246, 41, -46.53, -2.99, 0.00018, 32, 70.34, -24.05, 0.04432, 4, + 39, -1.8, 26.91, 0.12744, 40, -24.14, 26.91, 0.00959, 41, -47.06, 26.91, 0.0076, 32, 40.54, -26.53, 0.85537, 4, 39, 24.96, 27.56, 0.0719, 40, 2.62, 27.56, 0.03639, 41, -20.3, 27.56, + 0.07572, 32, 38.14, 0.13, 0.81598, 4, 39, 50.76, 27.7, 0.00702, 40, 28.42, 27.7, 0.00523, 41, 5.5, 27.7, 0.131, 32, 36.32, 25.87, 0.85675, 4, 39, 3.83, 36.15, 0.04791, 40, -18.51, + 36.15, 0.00352, 41, -41.43, 36.15, 0.00803, 32, 30.95, -21.51, 0.94054, 4, 39, 25.65, 37.95, 0.02662, 40, 3.31, 37.95, 0.00775, 41, -19.61, 37.95, 0.02767, 32, 27.73, 0.14, 0.93795, + 4, 39, 46.64, 37.25, 0.00753, 40, 24.3, 37.25, 0.00227, 41, 1.38, 37.25, 0.04846, 32, 27.06, 21.14, 0.94174, 4, 39, 41.75, 20.15, 0.01306, 40, 19.41, 20.15, 0.04509, 41, -3.51, + 20.15, 0.32134, 32, 44.45, 17.37, 0.62052, 4, 39, 43.25, 12.14, 0.00895, 40, 20.91, 12.14, 0.07841, 41, -2.01, 12.14, 0.49568, 32, 52.34, 19.39, 0.41696, 4, 39, 44.35, 6.12, 0.0015, + 40, 22.01, 6.12, 0.09572, 41, -0.91, 6.12, 0.67014, 32, 58.27, 20.88, 0.23264, 4, 39, 45.08, 1.14, 0.00025, 40, 22.74, 1.14, 0.108, 41, -0.18, 1.14, 0.76841, 32, 63.2, 21.93, + 0.12334, 4, 39, 45.58, -3.27, 0.0001, 40, 23.24, -3.27, 0.10937, 41, 0.32, -3.27, 0.83473, 32, 67.56, 22.71, 0.0558, 4, 39, 40.33, 27.64, 0.02381, 40, 18, 27.64, 0.02132, 41, -4.93, + 27.64, 0.16866, 32, 37.06, 15.47, 0.78621, 4, 39, 9.71, 27.19, 0.16236, 40, -12.63, 27.19, 0.02827, 41, -35.55, 27.19, 0.02548, 32, 39.51, -15.06, 0.78388, 4, 39, 15.01, 19.88, + 0.23124, 40, -7.33, 19.88, 0.11759, 41, -30.25, 19.88, 0.04679, 32, 46.46, -9.29, 0.60438, 4, 39, 13.78, 12.01, 0.29354, 40, -8.56, 12.01, 0.19873, 41, -31.48, 12.01, 0.04427, 32, + 54.39, -10.01, 0.46346, 4, 39, 12.95, 6.81, 0.37869, 40, -9.39, 6.81, 0.34588, 41, -32.31, 6.81, 0.01968, 32, 59.63, -10.5, 0.25575, 4, 39, 11.95, 1.27, 0.42861, 40, -10.39, 1.27, + 0.42317, 41, -33.31, 1.27, 0.01297, 32, 65.23, -11.14, 0.13524, 4, 39, 11.29, -3.07, 0.46725, 40, -11.05, -3.07, 0.46538, 41, -33.97, -3.07, 0.0097, 32, 69.59, -11.51, 0.05768, 4, + 39, -0.59, 19.72, 0.32338, 40, -22.92, 19.72, 0.02881, 41, -45.85, 19.72, 0.003, 32, 47.63, -24.85, 0.64481, 4, 39, -3.82, 11.93, 0.4391, 40, -26.16, 11.93, 0.03345, 41, -49.08, + 11.93, 0.00177, 32, 55.61, -27.57, 0.52567, 4, 39, -5.89, 7.22, 0.65491, 40, -28.23, 7.22, 0.02015, 41, -51.15, 7.22, 0.00017, 32, 60.45, -29.33, 0.32476, 4, 39, -8.13, 1.34, + 0.75275, 40, -30.47, 1.34, 0.01396, 41, -53.39, 1.34, 1e-05, 32, 66.46, -31.18, 0.23328, 3, 39, -9.63, -2.94, 0.80478, 40, -31.96, -2.94, 0.00944, 32, 70.83, -32.39, 0.18578, 4, 39, + 33.3, 20.06, 0.04166, 40, 10.96, 20.06, 0.10286, 41, -11.96, 20.06, 0.24857, 32, 45.08, 8.94, 0.60691, 4, 39, 33.97, 12.1, 0.03817, 40, 11.63, 12.1, 0.17811, 41, -11.29, 12.1, + 0.32257, 32, 52.98, 10.13, 0.46115, 4, 39, 34.3, 6.34, 0.01531, 40, 11.97, 6.34, 0.31162, 41, -10.96, 6.34, 0.40881, 32, 58.71, 10.84, 0.26426, 4, 39, 34.72, 1.18, 0.00955, 40, + 12.39, 1.18, 0.39036, 41, -10.54, 1.18, 0.4561, 32, 63.83, 11.59, 0.14399, 4, 39, 34.8, -3.2, 0.00731, 40, 12.46, -3.2, 0.44195, 41, -10.46, -3.2, 0.48699, 32, 68.2, 11.96, 0.06375, + 4, 39, 48.21, 20.21, 0.00241, 40, 25.88, 20.21, 0.01421, 41, 2.95, 20.21, 0.36275, 32, 43.96, 23.82, 0.62063, 4, 39, 50.54, 12.17, 0.00034, 40, 28.2, 12.17, 0.01068, 41, 5.28, 12.17, + 0.5453, 32, 51.83, 26.66, 0.44368, 4, 39, 52.52, 5.95, 2e-05, 40, 30.19, 5.95, 0.00999, 41, 7.26, 5.95, 0.66888, 32, 57.92, 29.04, 0.32111, 3, 40, 31.52, 1.11, 0.01011, 41, 8.6, + 1.11, 0.76268, 32, 62.66, 30.7, 0.22721, 3, 40, 32.61, -3.32, 0.00863, 41, 9.68, -3.32, 0.83296, 32, 67.01, 32.06, 0.15841, 4, 39, -9.21, 7.29, 0.52586, 40, -31.55, 7.29, 0.0057, 41, + -54.47, 7.29, 1e-05, 32, 60.59, -32.65, 0.46842, 3, 39, -11.3, 1.36, 0.56698, 40, -33.64, 1.36, 0.00311, 32, 66.65, -34.34, 0.42991, 3, 39, -12.66, -2.93, 0.60013, 40, -35, -2.93, + 0.00167, 32, 71.01, -35.42, 0.39821, 4, 39, -5.46, -2.97, 0.89102, 40, -27.8, -2.97, 0.03888, 41, -50.72, -2.97, 1e-05, 32, 70.59, -28.24, 0.07008, 4, 39, -4.18, 1.33, 0.83362, 40, + -26.52, 1.33, 0.04645, 41, -49.44, 1.33, 3e-05, 32, 66.21, -27.24, 0.1199, 4, 39, -2.26, 7.14, 0.75973, 40, -24.6, 7.14, 0.05134, 41, -47.52, 7.14, 0.00026, 32, 60.29, -25.7, + 0.18867, 4, 39, 7.35, 6.93, 0.57235, 40, -14.98, 6.93, 0.23863, 41, -37.91, 6.93, 0.00435, 32, 59.87, -16.09, 0.18467, 4, 39, 5.9, 1.29, 0.63011, 40, -16.44, 1.29, 0.25936, 41, + -39.36, 1.29, 0.00243, 32, 65.6, -17.18, 0.1081, 4, 39, 4.86, -3.03, 0.68809, 40, -17.48, -3.03, 0.26358, 41, -40.4, -3.03, 0.00168, 32, 69.98, -17.93, 0.04665, 4, 39, 17.76, 6.7, + 0.22941, 40, -4.58, 6.7, 0.4879, 41, -27.5, 6.7, 0.05094, 32, 59.42, -5.7, 0.23175, 4, 39, 17.11, 1.25, 0.24296, 40, -5.23, 1.25, 0.56856, 41, -28.15, 1.25, 0.04581, 32, 64.91, + -5.99, 0.14267, 4, 39, 16.71, -3.1, 0.25552, 40, -5.62, -3.1, 0.64168, 41, -28.55, -3.1, 0.03992, 32, 69.27, -6.1, 0.06288, 4, 39, 28.55, -3.17, 0.03276, 40, 6.22, -3.17, 0.62363, + 41, -16.71, -3.17, 0.27658, 32, 68.57, 5.72, 0.06703, 4, 39, 28.55, 1.2, 0.0367, 40, 6.21, 1.21, 0.54514, 41, -16.71, 1.21, 0.26974, 32, 64.21, 5.43, 0.14843, 4, 39, 28.71, 6.47, + 0.04075, 40, 6.37, 6.47, 0.46337, 41, -16.55, 6.47, 0.25797, 32, 58.95, 5.25, 0.23791, 4, 39, 39.28, 6.23, 0.00305, 40, 16.94, 6.24, 0.20572, 41, -5.98, 6.24, 0.59307, 32, 58.49, + 15.81, 0.19817, 4, 39, 39.51, 1.16, 0.00156, 40, 17.17, 1.16, 0.23228, 41, -5.75, 1.16, 0.64631, 32, 63.54, 16.37, 0.11984, 4, 39, 40.07, -3.24, 0.00112, 40, 17.74, -3.24, 0.25061, + 41, -5.19, -3.24, 0.69415, 32, 67.89, 17.22, 0.05412, 4, 39, 50.23, -3.29, 0, 40, 27.89, -3.29, 0.036, 41, 4.97, -3.29, 0.88144, 32, 67.29, 27.36, 0.08255, 4, 39, 49.51, 1.13, 2e-05, + 40, 27.17, 1.13, 0.03826, 41, 4.25, 1.13, 0.81357, 32, 62.92, 26.35, 0.14816, 4, 39, 48.55, 6.03, 0.00027, 40, 26.22, 6.03, 0.03577, 41, 3.29, 6.03, 0.72045, 32, 58.09, 25.08, + 0.24351, 4, 39, 47.11, 12.16, 0.00156, 40, 24.77, 12.16, 0.03311, 41, 1.85, 12.16, 0.61234, 32, 52.07, 23.24, 0.35299, 4, 39, 53.99, 12.19, 1e-05, 40, 31.66, 12.19, 0.00266, 41, + 8.73, 12.19, 0.47035, 32, 51.59, 30.11, 0.52698, 3, 40, 33.02, 5.88, 0.00213, 41, 10.1, 5.88, 0.54797, 32, 57.79, 31.88, 0.4499, 3, 40, 34.54, 1.1, 0.0018, 41, 11.62, 1.1, 0.63247, + 32, 62.47, 33.7, 0.36573, 3, 40, 35.58, -3.34, 0.00152, 41, 12.66, -3.34, 0.71351, 32, 66.83, 35.03, 0.28497, 3, 39, -17.72, -6.71, 0.31251, 40, -40.05, -6.71, 1e-05, 32, 75.11, + -40.22, 0.68748, 3, 39, -13.83, -6.56, 0.64755, 40, -36.17, -6.56, 0.00038, 32, 74.72, -36.36, 0.35207, 3, 39, -10.89, -6.57, 0.83546, 40, -33.23, -6.57, 0.00245, 32, 74.53, -33.42, + 0.1621, 3, 39, -6.58, -6.39, 0.9505, 40, -28.91, -6.39, 0.02598, 32, 74.07, -29.13, 0.02352, 4, 39, -2.51, -6.41, 0.9185, 40, -24.85, -6.41, 0.06986, 41, -47.77, -6.41, 1e-05, 32, + 73.83, -25.07, 0.01163, 4, 39, 3.97, -6.54, 0.7539, 40, -18.37, -6.54, 0.23416, 41, -41.29, -6.54, 0.00019, 32, 73.54, -18.6, 0.01175, 4, 39, 10.73, -6.3, 0.4945, 40, -11.61, -6.29, + 0.48778, 41, -34.53, -6.29, 0.00242, 32, 72.85, -11.87, 0.01529, 4, 39, 16.42, -6.31, 0.24467, 40, -5.92, -6.31, 0.71967, 41, -28.84, -6.31, 0.01969, 32, 72.5, -6.18, 0.01597, 4, 39, + 22.88, -6.46, 0.08074, 40, 0.54, -6.46, 0.81091, 41, -22.38, -6.46, 0.09131, 32, 72.22, 0.27, 0.01704, 4, 39, 28.51, -6.42, 0.01543, 40, 6.17, -6.42, 0.70591, 41, -16.75, -6.42, + 0.26031, 32, 71.82, 5.89, 0.01836, 4, 39, 34.97, -6.29, 0.00164, 40, 12.64, -6.29, 0.47309, 41, -10.29, -6.29, 0.50689, 32, 71.27, 12.33, 0.01837, 4, 39, 40.42, -6.47, 0.0001, 40, + 18.08, -6.47, 0.23958, 41, -4.84, -6.47, 0.7461, 32, 71.1, 17.78, 0.01421, 4, 39, 45.89, -6.5, 0, 40, 23.56, -6.5, 0.08431, 41, 0.63, -6.5, 0.9025, 32, 70.76, 23.24, 0.01319, 3, 40, + 28.36, -6.37, 0.01867, 41, 5.43, -6.37, 0.94991, 32, 70.33, 28.02, 0.03142, 3, 40, 33.31, -6.41, 0.00244, 41, 10.39, -6.41, 0.88788, 32, 70.05, 32.97, 0.10968, 3, 40, 36.23, -6.46, + 0.00046, 41, 13.31, -6.46, 0.80558, 32, 69.91, 35.88, 0.19395, 3, 40, 40.12, -6.31, 1e-05, 41, 17.2, -6.31, 0.61334, 32, 69.5, 39.76, 0.38665, 4, 39, 0.4, -6.47, 0.86555, 40, -21.94, + -6.47, 0.12959, 41, -44.86, -6.47, 1e-05, 32, 73.7, -22.16, 0.00485, 3, 39, -9.01, -6.49, 0.93616, 40, -31.35, -6.49, 0.00716, 32, 74.33, -31.55, 0.05668, 3, 39, -16.19, -6.65, + 0.44814, 40, -38.53, -6.65, 3e-05, 32, 74.96, -38.7, 0.55184, 4, 39, 7.48, -6.41, 0.63866, 40, -14.86, -6.41, 0.354, 41, -37.78, -6.41, 0.00037, 32, 73.18, -15.1, 0.00698, 4, 39, + 13.4, -6.3, 0.36468, 40, -8.94, -6.3, 0.62161, 41, -31.86, -6.3, 0.00581, 32, 72.69, -9.2, 0.0079, 4, 39, 19.68, -6.38, 0.14684, 40, -2.65, -6.38, 0.80383, 41, -25.58, -6.38, + 0.04176, 32, 72.36, -2.92, 0.00757, 4, 39, 25.54, -6.44, 0.03499, 40, 3.2, -6.44, 0.79745, 41, -19.72, -6.44, 0.15898, 32, 72.03, 2.92, 0.00858, 4, 39, 31.96, -6.35, 0.00417, 40, + 9.62, -6.35, 0.60634, 41, -13.3, -6.35, 0.37927, 32, 71.53, 9.32, 0.01022, 4, 39, 37.62, -6.38, 0.00021, 40, 15.28, -6.38, 0.35157, 41, -7.64, -6.38, 0.63918, 32, 71.18, 14.97, + 0.00904, 4, 39, 43.32, -6.48, 1e-05, 40, 20.98, -6.48, 0.14688, 41, -1.94, -6.48, 0.84692, 32, 70.92, 20.67, 0.00619, 3, 40, 25.81, -6.44, 0.03919, 41, 2.89, -6.44, 0.95006, 32, + 70.56, 25.48, 0.01074, 3, 40, 30.92, -6.39, 0.00591, 41, 7.99, -6.39, 0.9433, 32, 70.18, 30.58, 0.05079, 3, 40, 38.04, -6.39, 5e-05, 41, 15.12, -6.39, 0.72615, 32, 69.72, 37.69, + 0.2738 + ], + "hull": 46, + "edges": [ + 80, 82, 90, 0, 10, 8, 70, 72, 72, 74, 74, 76, 4, 6, 6, 8, 76, 78, 78, 80, 4, 2, 2, 0, 72, 92, 74, 94, 92, 94, 76, 96, 94, 96, 78, 98, 96, 98, 80, 100, 98, 100, 82, 84, 84, 86, 86, + 88, 88, 90, 0, 104, 2, 106, 104, 106, 4, 108, 106, 108, 6, 110, 108, 110, 8, 112, 110, 112, 10, 12, 102, 114, 114, 116, 116, 118, 118, 120, 122, 124, 124, 126, 126, 128, 128, 130, + 132, 100, 134, 102, 136, 104, 84, 138, 138, 132, 86, 140, 140, 134, 138, 140, 88, 142, 142, 136, 140, 142, 144, 146, 146, 148, 148, 150, 150, 152, 134, 154, 154, 136, 144, 154, 132, + 156, 156, 134, 122, 156, 102, 158, 158, 122, 114, 160, 160, 124, 158, 160, 160, 162, 162, 164, 164, 166, 100, 168, 168, 122, 98, 170, 170, 124, 168, 170, 170, 172, 172, 174, 174, + 176, 102, 178, 178, 144, 114, 180, 180, 146, 178, 180, 180, 182, 182, 184, 184, 186, 104, 188, 188, 144, 188, 190, 190, 192, 192, 194, 194, 196, 96, 198, 198, 172, 94, 200, 200, 174, + 198, 200, 92, 202, 202, 176, 200, 202, 64, 66, 58, 60, 130, 204, 204, 176, 128, 206, 206, 174, 204, 206, 126, 208, 208, 172, 206, 208, 126, 210, 210, 162, 128, 212, 212, 164, 210, + 212, 130, 214, 214, 166, 212, 214, 116, 216, 216, 162, 118, 218, 218, 164, 216, 218, 120, 220, 220, 166, 218, 220, 120, 222, 222, 186, 118, 224, 224, 184, 222, 224, 116, 226, 226, + 182, 224, 226, 148, 228, 228, 182, 150, 230, 230, 184, 228, 230, 152, 232, 232, 186, 230, 232, 152, 234, 234, 196, 150, 236, 236, 194, 234, 236, 148, 238, 238, 192, 236, 238, 146, + 240, 240, 190, 238, 240, 106, 242, 242, 190, 108, 244, 244, 192, 242, 244, 110, 246, 246, 194, 244, 246, 112, 248, 248, 196, 246, 248, 16, 18, 70, 250, 250, 92, 66, 252, 252, 202, + 64, 254, 254, 176, 252, 254, 60, 256, 256, 204, 58, 258, 258, 130, 256, 258, 54, 260, 260, 214, 50, 262, 262, 166, 46, 264, 264, 220, 42, 266, 266, 120, 38, 268, 268, 222, 34, 270, + 270, 186, 30, 272, 272, 232, 26, 274, 274, 152, 22, 276, 276, 234, 18, 278, 278, 196, 16, 280, 280, 248, 278, 280, 12, 282, 282, 112, 258, 284, 284, 260, 54, 56, 56, 58, 284, 56, + 254, 286, 286, 256, 60, 62, 62, 64, 286, 62, 250, 288, 288, 252, 66, 68, 68, 70, 288, 68, 260, 290, 290, 262, 50, 52, 52, 54, 290, 52, 262, 292, 292, 264, 46, 48, 48, 50, 292, 48, + 264, 294, 294, 266, 42, 44, 44, 46, 294, 44, 266, 296, 296, 268, 38, 40, 40, 42, 296, 40, 268, 298, 298, 270, 34, 36, 36, 38, 298, 36, 270, 300, 300, 272, 30, 32, 32, 34, 300, 32, + 272, 302, 302, 274, 26, 28, 28, 30, 302, 28, 274, 304, 304, 276, 22, 24, 24, 26, 304, 24, 276, 306, 306, 278, 18, 20, 20, 22, 306, 20, 280, 308, 308, 282, 12, 14, 14, 16, 308, 14 + ], + "width": 88, + "height": 80, + "path": "beast-summer-02-lv2.ear-left-bubble" + } + }, + "ear-left-bubble-02": { + "ear-left-bubble": { + "type": "mesh", + "uvs": [ + 0.87714, 0.57697, 0.91393, 0.67811, 0.94364, 0.75977, 0.96133, 0.8176, 0.97838, 0.87333, 1, 0.94398, 0.93104, 0.94427, 0.90524, 0.94438, 0.88494, 0.94447, 0.85255, 0.94461, 0.82176, + 0.94474, 0.79396, 0.94486, 0.76382, 0.94499, 0.73767, 0.9451, 0.70713, 0.94523, 0.67579, 0.94536, 0.64108, 0.94551, 0.61244, 0.94564, 0.5758, 0.94579, 0.5367, 0.94596, 0.50394, + 0.9461, 0.47091, 0.94624, 0.435, 0.94639, 0.39675, 0.94656, 0.36198, 0.94671, 0.32916, 0.94685, 0.29359, 0.947, 0.25022, 0.94718, 0.20956, 0.94736, 0.17261, 0.94751, 0.12749, + 0.94771, 0.1012, 0.94782, 0.07834, 0.94792, 0.0457, 0.94806, 0.02123, 0.94816, 0, 0.94825, 0, 0.86703, 0, 0.81359, 0, 0.73715, 0.02817, 0.68242, 0.07791, 0.5858, 0.37947, 0, 0.46651, + 0, 0.5261, 0, 0.59994, 0, 0.66726, 0, 0.02864, 0.86721, 0.04805, 0.81379, 0.07275, 0.7389, 0.0999, 0.68207, 0.14259, 0.58508, 0.49108, 0.58123, 0.82646, 0.57753, 0.86109, 0.67837, + 0.88458, 0.75835, 0.90003, 0.81734, 0.91424, 0.87292, 0.48557, 0.6802, 0.48069, 0.74867, 0.47772, 0.81558, 0.4758, 0.87009, 0.29126, 0.58344, 0.25576, 0.68132, 0.23492, 0.74278, + 0.2135, 0.81448, 0.19874, 0.86831, 0.19271, 0.49455, 0.4968, 0.48641, 0.79002, 0.48462, 0.25666, 0.37903, 0.50462, 0.35653, 0.74321, 0.36527, 0.68757, 0.57906, 0.70466, 0.67913, + 0.71716, 0.75434, 0.72541, 0.81661, 0.73109, 0.87174, 0.67152, 0.48534, 0.32349, 0.49105, 0.38378, 0.58242, 0.36974, 0.68076, 0.36036, 0.74579, 0.34895, 0.81504, 0.34148, 0.86923, + 0.20652, 0.58437, 0.16979, 0.68173, 0.1462, 0.74066, 0.12077, 0.81409, 0.10379, 0.8677, 0.59158, 0.58012, 0.59921, 0.67965, 0.60299, 0.7516, 0.60776, 0.81612, 0.60866, 0.87095, + 0.76107, 0.57825, 0.78751, 0.67873, 0.81003, 0.75656, 0.82525, 0.81703, 0.83754, 0.87243, 0.10852, 0.73975, 0.08479, 0.81394, 0.06934, 0.86747, 0.15113, 0.868, 0.1657, 0.81428, + 0.18746, 0.74164, 0.29675, 0.74426, 0.28022, 0.81476, 0.26841, 0.86876, 0.41495, 0.7471, 0.40761, 0.81529, 0.4031, 0.86963, 0.53765, 0.87049, 0.53762, 0.81583, 0.53944, 0.75008, + 0.6595, 0.75296, 0.66217, 0.81635, 0.66857, 0.87134, 0.78397, 0.87208, 0.7758, 0.81682, 0.76492, 0.75548, 0.74852, 0.67892, 0.82675, 0.67854, 0.84222, 0.75734, 0.8595, 0.81717, + 0.87132, 0.87264, 0.01186, 0.9147, 0.056, 0.91293, 0.08943, 0.91297, 0.13846, 0.91074, 0.18465, 0.91102, 0.25824, 0.91262, 0.33507, 0.90958, 0.39978, 0.90977, 0.47313, 0.91161, + 0.53714, 0.91117, 0.61061, 0.90948, 0.67252, 0.91178, 0.73471, 0.91209, 0.78925, 0.91054, 0.84557, 0.91105, 0.87872, 0.91169, 0.92292, 0.90979, 0.21772, 0.91173, 0.11081, 0.912, + 0.02923, 0.91401, 0.29821, 0.91104, 0.36548, 0.90967, 0.43685, 0.9107, 0.50336, 0.9114, 0.57635, 0.91027, 0.64066, 0.9106, 0.70543, 0.91195, 0.76031, 0.91136, 0.81833, 0.9108, + 0.89934, 0.9108 + ], + "triangles": [ + 46, 36, 37, 125, 36, 46, 46, 47, 101, 101, 47, 100, 144, 46, 126, 125, 46, 144, 47, 46, 37, 34, 125, 144, 35, 125, 34, 35, 36, 125, 56, 55, 3, 56, 3, 4, 5, 6, 4, 123, 54, 55, 55, 54, + 2, 55, 2, 3, 85, 86, 49, 86, 99, 49, 47, 48, 100, 122, 121, 53, 49, 50, 85, 85, 50, 84, 48, 39, 49, 38, 39, 48, 49, 40, 50, 39, 40, 49, 95, 94, 52, 54, 1, 2, 121, 52, 53, 53, 0, 1, + 53, 52, 0, 113, 57, 90, 108, 80, 57, 62, 61, 80, 80, 79, 57, 80, 61, 79, 57, 89, 90, 57, 51, 89, 57, 79, 51, 90, 72, 73, 90, 89, 72, 40, 69, 66, 84, 66, 61, 61, 78, 79, 61, 66, 78, + 51, 79, 67, 51, 67, 89, 67, 79, 78, 89, 77, 72, 89, 67, 77, 72, 77, 94, 94, 68, 52, 94, 77, 68, 66, 69, 78, 41, 69, 40, 67, 78, 70, 67, 70, 77, 70, 78, 69, 77, 71, 68, 77, 70, 71, + 71, 45, 0, 69, 42, 70, 69, 41, 42, 71, 70, 44, 70, 43, 44, 44, 45, 71, 71, 0, 68, 70, 42, 43, 52, 68, 0, 54, 53, 1, 50, 40, 66, 50, 66, 84, 47, 37, 38, 48, 47, 38, 48, 49, 99, 121, + 95, 52, 122, 53, 54, 100, 48, 99, 62, 84, 61, 94, 73, 72, 85, 84, 62, 113, 90, 91, 141, 56, 4, 6, 141, 4, 124, 55, 56, 17, 150, 16, 17, 135, 150, 16, 136, 15, 16, 150, 136, 15, 151, + 14, 15, 136, 151, 14, 137, 13, 14, 151, 137, 13, 152, 12, 13, 137, 152, 12, 138, 11, 12, 152, 138, 11, 153, 10, 11, 138, 153, 10, 139, 9, 10, 153, 139, 9, 140, 8, 9, 139, 140, 8, + 154, 7, 8, 140, 154, 7, 141, 6, 7, 154, 141, 152, 137, 76, 137, 151, 76, 76, 151, 116, 150, 116, 136, 151, 136, 116, 154, 140, 124, 152, 117, 138, 152, 76, 117, 153, 98, 139, 140, + 139, 124, 139, 98, 124, 154, 56, 141, 154, 124, 56, 98, 153, 117, 116, 150, 93, 153, 138, 117, 150, 135, 93, 98, 123, 124, 124, 123, 55, 117, 97, 98, 98, 97, 123, 76, 118, 117, 117, + 118, 97, 116, 75, 76, 76, 75, 118, 93, 115, 116, 116, 115, 75, 93, 92, 115, 97, 122, 123, 123, 122, 54, 118, 96, 97, 97, 96, 122, 75, 119, 118, 118, 119, 96, 115, 74, 75, 75, 74, + 119, 92, 114, 115, 115, 114, 74, 92, 91, 114, 96, 121, 122, 119, 95, 96, 96, 95, 121, 74, 120, 119, 119, 120, 95, 114, 73, 74, 74, 73, 120, 73, 114, 90, 114, 91, 90, 120, 73, 94, + 120, 94, 95, 58, 57, 113, 25, 131, 24, 24, 146, 23, 24, 131, 146, 23, 132, 22, 23, 146, 132, 22, 147, 21, 22, 132, 147, 20, 133, 148, 20, 21, 133, 21, 147, 133, 20, 148, 19, 19, 134, + 18, 19, 148, 134, 18, 135, 17, 18, 149, 135, 18, 134, 149, 148, 133, 60, 133, 147, 60, 134, 148, 111, 134, 111, 149, 111, 148, 60, 132, 110, 147, 147, 110, 60, 149, 93, 135, 149, + 111, 93, 132, 146, 110, 131, 83, 146, 146, 83, 110, 111, 92, 93, 60, 59, 111, 59, 112, 111, 111, 112, 92, 110, 109, 60, 60, 109, 59, 83, 82, 110, 110, 82, 109, 92, 112, 91, 112, 113, + 91, 59, 58, 112, 112, 58, 113, 109, 108, 59, 59, 108, 58, 82, 81, 109, 109, 81, 108, 58, 108, 57, 81, 80, 108, 34, 144, 33, 126, 46, 101, 33, 126, 32, 33, 144, 126, 32, 127, 31, 32, + 126, 127, 31, 143, 30, 31, 127, 143, 30, 128, 29, 30, 143, 128, 29, 129, 28, 29, 128, 129, 28, 142, 27, 28, 129, 142, 27, 130, 26, 27, 142, 130, 26, 145, 25, 26, 130, 145, 25, 145, + 131, 126, 101, 127, 127, 88, 143, 127, 101, 88, 130, 107, 145, 130, 142, 107, 143, 88, 128, 129, 65, 142, 142, 65, 107, 131, 145, 83, 128, 102, 129, 129, 102, 65, 128, 88, 102, 83, + 145, 107, 107, 106, 83, 83, 106, 82, 65, 64, 107, 107, 64, 106, 102, 103, 65, 65, 103, 64, 88, 87, 102, 102, 87, 103, 101, 100, 88, 88, 100, 87, 106, 105, 82, 82, 105, 81, 64, 63, + 106, 106, 63, 105, 103, 104, 64, 64, 104, 63, 87, 86, 103, 103, 86, 104, 100, 99, 87, 87, 99, 86, 81, 105, 80, 63, 62, 105, 105, 62, 80, 62, 63, 85, 86, 85, 104, 63, 104, 85 + ], + "vertices": [ + 4, 47, 58.43, 20.31, 0.00012, 48, 36.09, 20.31, 0.00054, 49, 13.17, 20.31, 0.12631, 46, 43.2, 34, 0.87302, 3, 48, 39.33, 12.22, 0.00019, 49, 16.41, 12.22, 0.19743, 46, 51.06, 37.76, + 0.80237, 3, 48, 41.94, 5.69, 6e-05, 49, 19.02, 5.69, 0.26715, 46, 57.41, 40.79, 0.73278, 3, 48, 43.5, 1.06, 1e-05, 49, 20.58, 1.06, 0.33542, 46, 61.92, 42.65, 0.66457, 3, 48, 45, + -3.4, 1e-05, 49, 22.08, -3.4, 0.40033, 46, 66.27, 44.44, 0.59966, 3, 48, 46.9, -9.05, 0, 49, 23.98, -9.05, 0.45012, 46, 71.79, 46.7, 0.54988, 3, 48, 40.83, -9.07, 0, 49, 17.91, + -9.07, 0.5829, 46, 72.21, 40.65, 0.4171, 3, 48, 38.56, -9.08, 4e-05, 49, 15.64, -9.08, 0.72131, 46, 72.37, 38.38, 0.27865, 3, 48, 36.78, -9.09, 0.00031, 49, 13.86, -9.09, 0.8264, 46, + 72.49, 36.6, 0.17329, 3, 48, 33.93, -9.1, 0.00157, 49, 11, -9.1, 0.90359, 46, 72.69, 33.76, 0.09484, 3, 48, 31.22, -9.11, 0.00537, 49, 8.3, -9.11, 0.94975, 46, 72.87, 31.05, 0.04488, + 3, 48, 28.77, -9.12, 0.01601, 49, 5.85, -9.12, 0.96404, 46, 73.04, 28.61, 0.01996, 3, 48, 26.12, -9.13, 0.03803, 49, 3.2, -9.13, 0.95562, 46, 73.22, 25.97, 0.00635, 3, 48, 23.82, + -9.14, 0.08031, 49, 0.9, -9.14, 0.91597, 46, 73.38, 23.67, 0.00372, 4, 47, 43.47, -9.15, 0, 48, 21.13, -9.15, 0.14592, 49, -1.79, -9.15, 0.85165, 46, 73.57, 20.99, 0.00243, 4, 47, + 40.71, -9.16, 2e-05, 48, 18.37, -9.16, 0.23867, 49, -4.55, -9.16, 0.75671, 46, 73.76, 18.24, 0.0046, 4, 47, 37.66, -9.17, 0.00014, 48, 15.32, -9.17, 0.35275, 49, -7.6, -9.17, + 0.64256, 46, 73.97, 15.19, 0.00455, 4, 47, 35.13, -9.18, 0.00092, 48, 12.8, -9.18, 0.48034, 49, -10.13, -9.18, 0.51198, 46, 74.14, 12.68, 0.00676, 4, 47, 31.91, -9.19, 0.00375, 48, + 9.57, -9.19, 0.61095, 49, -13.35, -9.19, 0.38019, 46, 74.36, 9.46, 0.00512, 4, 47, 28.47, -9.21, 0.01298, 48, 6.13, -9.21, 0.72267, 49, -16.79, -9.21, 0.25841, 46, 74.6, 6.03, + 0.00594, 4, 47, 25.59, -9.22, 0.03422, 48, 3.25, -9.22, 0.80451, 49, -19.67, -9.22, 0.15782, 46, 74.8, 3.15, 0.00345, 4, 47, 22.68, -9.23, 0.07754, 48, 0.34, -9.23, 0.83155, 49, + -22.58, -9.23, 0.08642, 46, 75, 0.25, 0.00449, 4, 47, 19.52, -9.24, 0.14705, 48, -2.82, -9.24, 0.80991, 49, -25.74, -9.24, 0.04032, 46, 75.22, -2.9, 0.00272, 4, 47, 16.15, -9.25, + 0.24563, 48, -6.18, -9.25, 0.73344, 49, -29.11, -9.25, 0.01645, 46, 75.45, -6.26, 0.00448, 4, 47, 13.09, -9.27, 0.36774, 48, -9.24, -9.27, 0.62371, 49, -32.17, -9.27, 0.00512, 46, + 75.66, -9.31, 0.00344, 4, 47, 10.21, -9.28, 0.50372, 48, -12.13, -9.28, 0.49001, 49, -35.05, -9.28, 0.00135, 46, 75.86, -12.19, 0.00491, 4, 47, 7.08, -9.29, 0.64487, 48, -15.26, + -9.29, 0.35177, 49, -38.18, -9.29, 0.00021, 46, 76.08, -15.32, 0.00314, 4, 47, 3.26, -9.3, 0.77, 48, -19.08, -9.3, 0.22651, 49, -42, -9.3, 3e-05, 46, 76.34, -19.12, 0.00346, 4, 47, + -0.32, -9.32, 0.87272, 48, -22.66, -9.32, 0.1254, 49, -45.58, -9.32, 0, 46, 76.59, -22.69, 0.00188, 3, 47, -3.57, -9.33, 0.9351, 48, -25.91, -9.33, 0.0605, 46, 76.81, -25.94, 0.0044, + 3, 47, -7.54, -9.35, 0.96153, 48, -29.88, -9.35, 0.02278, 46, 77.09, -29.9, 0.01569, 3, 47, -9.85, -9.35, 0.93655, 48, -32.19, -9.35, 0.00657, 46, 77.24, -32.21, 0.05688, 3, 47, + -11.87, -9.36, 0.83576, 48, -34.2, -9.36, 0.00151, 46, 77.38, -34.21, 0.16273, 3, 47, -14.74, -9.37, 0.65143, 48, -37.08, -9.37, 0.00023, 46, 77.58, -37.08, 0.34834, 3, 47, -16.89, + -9.38, 0.4382, 48, -39.23, -9.38, 2e-05, 46, 77.73, -39.23, 0.56178, 3, 47, -18.76, -9.39, 0.27507, 48, -41.1, -9.39, 0, 46, 77.86, -41.09, 0.72493, 3, 47, -18.76, -2.89, 0.21414, + 48, -41.1, -2.89, 2e-05, 46, 71.37, -41.51, 0.78584, 3, 47, -18.76, 1.38, 0.19077, 48, -41.1, 1.38, 0.00024, 46, 67.11, -41.79, 0.80899, 3, 47, -18.76, 7.5, 0.1765, 48, -41.1, 7.5, + 0.00116, 46, 61.01, -42.19, 0.82235, 4, 47, -16.28, 11.88, 0.15382, 48, -38.62, 11.88, 0.00307, 49, -61.54, 11.88, 1e-05, 46, 56.48, -40, 0.84309, 4, 47, -11.9, 19.61, 0.11079, 48, + -34.24, 19.61, 0.0029, 49, -57.16, 19.61, 0.00014, 46, 48.48, -36.13, 0.88617, 4, 47, 14.63, 66.47, 0.04584, 48, -7.7, 66.47, 0.00083, 49, -30.63, 66.47, 0.00037, 46, -0.01, -12.7, + 0.95296, 4, 47, 22.29, 66.47, 0.02247, 48, -0.04, 66.47, 0.00083, 49, -22.97, 66.47, 0.00288, 46, -0.51, -5.06, 0.97382, 4, 47, 27.54, 66.47, 0.01007, 48, 5.2, 66.47, 0.00155, 49, + -17.72, 66.47, 0.0104, 46, -0.85, 0.17, 0.97798, 4, 47, 34.04, 66.47, 0.00272, 48, 11.7, 66.47, 0.00045, 49, -11.22, 66.47, 0.02285, 46, -1.28, 6.66, 0.97398, 4, 47, 39.96, 66.47, + 0.00033, 48, 17.62, 66.47, 0.00011, 49, -5.3, 66.47, 0.0498, 46, -1.66, 12.57, 0.94976, 3, 47, -16.24, -2.91, 0.33437, 48, -38.58, -2.91, 0.0002, 46, 71.23, -39, 0.66543, 3, 47, + -14.53, 1.37, 0.32645, 48, -36.87, 1.37, 0.00078, 46, 66.85, -37.57, 0.67277, 4, 47, -12.36, 7.36, 0.307, 48, -34.7, 7.36, 0.00285, 49, -57.62, 7.36, 1e-05, 46, 60.73, -35.79, + 0.69014, 4, 47, -9.97, 11.91, 0.26477, 48, -32.31, 11.91, 0.00971, 49, -55.23, 11.91, 0.00027, 46, 56.04, -33.7, 0.72525, 4, 47, -6.21, 19.66, 0.19881, 48, -28.55, 19.66, 0.00959, + 49, -51.47, 19.66, 0.00132, 46, 48.05, -30.46, 0.79028, 4, 47, 24.46, 19.97, 0.10712, 48, 2.12, 19.97, 0.11704, 49, -20.8, 19.97, 0.11672, 46, 45.75, 0.12, 0.65912, 4, 47, 53.97, + 20.27, 0.00116, 48, 31.63, 20.27, 0.00313, 49, 8.71, 20.27, 0.2148, 46, 43.53, 29.55, 0.7809, 4, 47, 57.02, 12.2, 0.0001, 48, 34.68, 12.2, 0.00083, 49, 11.76, 12.2, 0.29942, 46, + 51.38, 33.12, 0.69965, 3, 48, 36.75, 5.8, 0.00034, 49, 13.82, 5.8, 0.378, 46, 57.63, 35.6, 0.62166, 3, 48, 38.1, 1.08, 0.00022, 49, 15.18, 1.08, 0.45653, 46, 62.25, 37.26, 0.54325, + 3, 48, 39.36, -3.36, 0.00015, 49, 16.43, -3.36, 0.53433, 46, 66.61, 38.8, 0.46552, 4, 47, 23.97, 12.06, 0.12565, 48, 1.63, 12.06, 0.24275, 49, -21.29, 12.06, 0.14114, 46, 53.68, + 0.15, 0.49046, 4, 47, 23.54, 6.58, 0.11007, 48, 1.2, 6.58, 0.47217, 49, -21.72, 6.58, 0.12893, 46, 59.17, 0.08, 0.28883, 4, 47, 23.28, 1.22, 0.10884, 48, 0.94, 1.22, 0.60558, 49, + -21.98, 1.22, 0.12698, 46, 64.53, 0.17, 0.1586, 4, 47, 23.11, -3.14, 0.10666, 48, 0.77, -3.14, 0.70334, 49, -22.15, -3.14, 0.12133, 46, 68.89, 0.28, 0.06866, 4, 47, 6.87, 19.8, + 0.29773, 48, -15.47, 19.8, 0.06022, 49, -38.39, 19.8, 0.01488, 46, 47.07, -17.41, 0.62717, 4, 47, 3.75, 11.97, 0.44072, 48, -18.59, 11.97, 0.09602, 49, -41.51, 11.97, 0.01064, 46, + 55.08, -20.02, 0.45261, 4, 47, 1.91, 7.05, 0.66419, 48, -20.42, 7.05, 0.11803, 49, -43.35, 7.05, 0.002, 46, 60.11, -21.53, 0.21579, 4, 47, 0.03, 1.31, 0.77187, 48, -22.31, 1.31, + 0.12352, 49, -45.23, 1.31, 0.00043, 46, 65.96, -23.04, 0.10418, 4, 47, -1.27, -2.99, 0.84303, 48, -23.61, -2.99, 0.11246, 49, -46.53, -2.99, 0.00018, 46, 70.34, -24.05, 0.04432, 4, + 47, -1.8, 26.91, 0.12744, 48, -24.14, 26.91, 0.00959, 49, -47.06, 26.91, 0.0076, 46, 40.54, -26.53, 0.85537, 4, 47, 24.96, 27.56, 0.0719, 48, 2.62, 27.56, 0.03639, 49, -20.3, 27.56, + 0.07572, 46, 38.14, 0.13, 0.81598, 4, 47, 50.76, 27.7, 0.00702, 48, 28.42, 27.7, 0.00523, 49, 5.5, 27.7, 0.131, 46, 36.32, 25.87, 0.85675, 4, 47, 3.83, 36.15, 0.04791, 48, -18.51, + 36.15, 0.00352, 49, -41.43, 36.15, 0.00803, 46, 30.95, -21.51, 0.94054, 4, 47, 25.65, 37.95, 0.02662, 48, 3.31, 37.95, 0.00775, 49, -19.61, 37.95, 0.02767, 46, 27.73, 0.14, 0.93795, + 4, 47, 46.64, 37.25, 0.00753, 48, 24.3, 37.25, 0.00227, 49, 1.38, 37.25, 0.04846, 46, 27.06, 21.14, 0.94174, 4, 47, 41.75, 20.15, 0.01306, 48, 19.41, 20.15, 0.04509, 49, -3.51, + 20.15, 0.32134, 46, 44.45, 17.37, 0.62052, 4, 47, 43.25, 12.14, 0.00895, 48, 20.91, 12.14, 0.07841, 49, -2.01, 12.14, 0.49568, 46, 52.34, 19.39, 0.41696, 4, 47, 44.35, 6.12, 0.0015, + 48, 22.01, 6.12, 0.09572, 49, -0.91, 6.12, 0.67014, 46, 58.27, 20.88, 0.23264, 4, 47, 45.08, 1.14, 0.00025, 48, 22.74, 1.14, 0.108, 49, -0.18, 1.14, 0.76841, 46, 63.2, 21.93, + 0.12334, 4, 47, 45.58, -3.27, 0.0001, 48, 23.24, -3.27, 0.10937, 49, 0.32, -3.27, 0.83473, 46, 67.56, 22.71, 0.0558, 4, 47, 40.33, 27.64, 0.02381, 48, 18, 27.64, 0.02132, 49, -4.93, + 27.64, 0.16866, 46, 37.06, 15.47, 0.78621, 4, 47, 9.71, 27.19, 0.16236, 48, -12.63, 27.19, 0.02827, 49, -35.55, 27.19, 0.02548, 46, 39.51, -15.06, 0.78388, 4, 47, 15.01, 19.88, + 0.23124, 48, -7.33, 19.88, 0.11759, 49, -30.25, 19.88, 0.04679, 46, 46.46, -9.29, 0.60438, 4, 47, 13.78, 12.01, 0.29354, 48, -8.56, 12.01, 0.19873, 49, -31.48, 12.01, 0.04427, 46, + 54.39, -10.01, 0.46346, 4, 47, 12.95, 6.81, 0.37869, 48, -9.39, 6.81, 0.34588, 49, -32.31, 6.81, 0.01968, 46, 59.63, -10.5, 0.25575, 4, 47, 11.95, 1.27, 0.42861, 48, -10.39, 1.27, + 0.42317, 49, -33.31, 1.27, 0.01297, 46, 65.23, -11.14, 0.13524, 4, 47, 11.29, -3.07, 0.46725, 48, -11.05, -3.07, 0.46538, 49, -33.97, -3.07, 0.0097, 46, 69.59, -11.51, 0.05768, 4, + 47, -0.59, 19.72, 0.32338, 48, -22.92, 19.72, 0.02881, 49, -45.85, 19.72, 0.003, 46, 47.63, -24.85, 0.64481, 4, 47, -3.82, 11.93, 0.4391, 48, -26.16, 11.93, 0.03345, 49, -49.08, + 11.93, 0.00177, 46, 55.61, -27.57, 0.52567, 4, 47, -5.89, 7.22, 0.65491, 48, -28.23, 7.22, 0.02015, 49, -51.15, 7.22, 0.00017, 46, 60.45, -29.33, 0.32476, 4, 47, -8.13, 1.34, + 0.75275, 48, -30.47, 1.34, 0.01396, 49, -53.39, 1.34, 1e-05, 46, 66.46, -31.18, 0.23328, 3, 47, -9.63, -2.94, 0.80478, 48, -31.96, -2.94, 0.00944, 46, 70.83, -32.39, 0.18578, 4, 47, + 33.3, 20.06, 0.04166, 48, 10.96, 20.06, 0.10286, 49, -11.96, 20.06, 0.24857, 46, 45.08, 8.94, 0.60691, 4, 47, 33.97, 12.1, 0.03817, 48, 11.63, 12.1, 0.17811, 49, -11.29, 12.1, + 0.32257, 46, 52.98, 10.13, 0.46115, 4, 47, 34.3, 6.34, 0.01531, 48, 11.97, 6.34, 0.31162, 49, -10.96, 6.34, 0.40881, 46, 58.71, 10.84, 0.26426, 4, 47, 34.72, 1.18, 0.00955, 48, + 12.39, 1.18, 0.39036, 49, -10.54, 1.18, 0.4561, 46, 63.83, 11.59, 0.14399, 4, 47, 34.8, -3.2, 0.00731, 48, 12.46, -3.2, 0.44195, 49, -10.46, -3.2, 0.48699, 46, 68.2, 11.96, 0.06375, + 4, 47, 48.21, 20.21, 0.00241, 48, 25.88, 20.21, 0.01421, 49, 2.95, 20.21, 0.36275, 46, 43.96, 23.82, 0.62063, 4, 47, 50.54, 12.17, 0.00034, 48, 28.2, 12.17, 0.01068, 49, 5.28, 12.17, + 0.5453, 46, 51.83, 26.66, 0.44368, 4, 47, 52.52, 5.95, 2e-05, 48, 30.19, 5.95, 0.00999, 49, 7.26, 5.95, 0.66888, 46, 57.92, 29.04, 0.32111, 3, 48, 31.52, 1.11, 0.01011, 49, 8.6, + 1.11, 0.76268, 46, 62.66, 30.7, 0.22721, 3, 48, 32.61, -3.32, 0.00863, 49, 9.68, -3.32, 0.83296, 46, 67.01, 32.06, 0.15841, 4, 47, -9.21, 7.29, 0.52586, 48, -31.55, 7.29, 0.0057, 49, + -54.47, 7.29, 1e-05, 46, 60.59, -32.65, 0.46842, 3, 47, -11.3, 1.36, 0.56698, 48, -33.64, 1.36, 0.00311, 46, 66.65, -34.34, 0.42991, 3, 47, -12.66, -2.93, 0.60013, 48, -35, -2.93, + 0.00167, 46, 71.01, -35.42, 0.39821, 4, 47, -5.46, -2.97, 0.89102, 48, -27.8, -2.97, 0.03888, 49, -50.72, -2.97, 1e-05, 46, 70.59, -28.24, 0.07008, 4, 47, -4.18, 1.33, 0.83362, 48, + -26.52, 1.33, 0.04645, 49, -49.44, 1.33, 3e-05, 46, 66.21, -27.24, 0.1199, 4, 47, -2.26, 7.14, 0.75973, 48, -24.6, 7.14, 0.05134, 49, -47.52, 7.14, 0.00026, 46, 60.29, -25.7, + 0.18867, 4, 47, 7.35, 6.93, 0.57235, 48, -14.98, 6.93, 0.23863, 49, -37.91, 6.93, 0.00435, 46, 59.87, -16.09, 0.18467, 4, 47, 5.9, 1.29, 0.63011, 48, -16.44, 1.29, 0.25936, 49, + -39.36, 1.29, 0.00243, 46, 65.6, -17.18, 0.1081, 4, 47, 4.86, -3.03, 0.68809, 48, -17.48, -3.03, 0.26358, 49, -40.4, -3.03, 0.00168, 46, 69.98, -17.93, 0.04665, 4, 47, 17.76, 6.7, + 0.22941, 48, -4.58, 6.7, 0.4879, 49, -27.5, 6.7, 0.05094, 46, 59.42, -5.7, 0.23175, 4, 47, 17.11, 1.25, 0.24296, 48, -5.23, 1.25, 0.56856, 49, -28.15, 1.25, 0.04581, 46, 64.91, + -5.99, 0.14267, 4, 47, 16.71, -3.1, 0.25552, 48, -5.62, -3.1, 0.64168, 49, -28.55, -3.1, 0.03992, 46, 69.27, -6.1, 0.06288, 4, 47, 28.55, -3.17, 0.03276, 48, 6.22, -3.17, 0.62363, + 49, -16.71, -3.17, 0.27658, 46, 68.57, 5.72, 0.06703, 4, 47, 28.55, 1.2, 0.0367, 48, 6.21, 1.21, 0.54514, 49, -16.71, 1.21, 0.26974, 46, 64.21, 5.43, 0.14843, 4, 47, 28.71, 6.47, + 0.04075, 48, 6.37, 6.47, 0.46337, 49, -16.55, 6.47, 0.25797, 46, 58.95, 5.25, 0.23791, 4, 47, 39.28, 6.23, 0.00305, 48, 16.94, 6.24, 0.20572, 49, -5.98, 6.24, 0.59307, 46, 58.49, + 15.81, 0.19817, 4, 47, 39.51, 1.16, 0.00156, 48, 17.17, 1.16, 0.23228, 49, -5.75, 1.16, 0.64631, 46, 63.54, 16.37, 0.11984, 4, 47, 40.07, -3.24, 0.00112, 48, 17.74, -3.24, 0.25061, + 49, -5.19, -3.24, 0.69415, 46, 67.89, 17.22, 0.05412, 4, 47, 50.23, -3.29, 0, 48, 27.89, -3.29, 0.036, 49, 4.97, -3.29, 0.88144, 46, 67.29, 27.36, 0.08255, 4, 47, 49.51, 1.13, 2e-05, + 48, 27.17, 1.13, 0.03826, 49, 4.25, 1.13, 0.81357, 46, 62.92, 26.35, 0.14816, 4, 47, 48.55, 6.03, 0.00027, 48, 26.22, 6.03, 0.03577, 49, 3.29, 6.03, 0.72045, 46, 58.09, 25.08, + 0.24351, 4, 47, 47.11, 12.16, 0.00156, 48, 24.77, 12.16, 0.03311, 49, 1.85, 12.16, 0.61234, 46, 52.07, 23.24, 0.35299, 4, 47, 53.99, 12.19, 1e-05, 48, 31.66, 12.19, 0.00266, 49, + 8.73, 12.19, 0.47035, 46, 51.59, 30.11, 0.52698, 3, 48, 33.02, 5.88, 0.00213, 49, 10.1, 5.88, 0.54797, 46, 57.79, 31.88, 0.4499, 3, 48, 34.54, 1.1, 0.0018, 49, 11.62, 1.1, 0.63247, + 46, 62.47, 33.7, 0.36573, 3, 48, 35.58, -3.34, 0.00152, 49, 12.66, -3.34, 0.71351, 46, 66.83, 35.03, 0.28497, 3, 47, -17.72, -6.71, 0.31251, 48, -40.05, -6.71, 1e-05, 46, 75.11, + -40.22, 0.68748, 3, 47, -13.83, -6.56, 0.64755, 48, -36.17, -6.56, 0.00038, 46, 74.72, -36.36, 0.35207, 3, 47, -10.89, -6.57, 0.83546, 48, -33.23, -6.57, 0.00245, 46, 74.53, -33.42, + 0.1621, 3, 47, -6.58, -6.39, 0.9505, 48, -28.91, -6.39, 0.02598, 46, 74.07, -29.13, 0.02352, 4, 47, -2.51, -6.41, 0.9185, 48, -24.85, -6.41, 0.06986, 49, -47.77, -6.41, 1e-05, 46, + 73.83, -25.07, 0.01163, 4, 47, 3.97, -6.54, 0.7539, 48, -18.37, -6.54, 0.23416, 49, -41.29, -6.54, 0.00019, 46, 73.54, -18.6, 0.01175, 4, 47, 10.73, -6.3, 0.4945, 48, -11.61, -6.29, + 0.48778, 49, -34.53, -6.29, 0.00242, 46, 72.85, -11.87, 0.01529, 4, 47, 16.42, -6.31, 0.24467, 48, -5.92, -6.31, 0.71967, 49, -28.84, -6.31, 0.01969, 46, 72.5, -6.18, 0.01597, 4, 47, + 22.88, -6.46, 0.08074, 48, 0.54, -6.46, 0.81091, 49, -22.38, -6.46, 0.09131, 46, 72.22, 0.27, 0.01704, 4, 47, 28.51, -6.42, 0.01543, 48, 6.17, -6.42, 0.70591, 49, -16.75, -6.42, + 0.26031, 46, 71.82, 5.89, 0.01836, 4, 47, 34.97, -6.29, 0.00164, 48, 12.64, -6.29, 0.47309, 49, -10.29, -6.29, 0.50689, 46, 71.27, 12.33, 0.01837, 4, 47, 40.42, -6.47, 0.0001, 48, + 18.08, -6.47, 0.23958, 49, -4.84, -6.47, 0.7461, 46, 71.1, 17.78, 0.01421, 4, 47, 45.89, -6.5, 0, 48, 23.56, -6.5, 0.08431, 49, 0.63, -6.5, 0.9025, 46, 70.76, 23.24, 0.01319, 3, 48, + 28.36, -6.37, 0.01867, 49, 5.43, -6.37, 0.94991, 46, 70.33, 28.02, 0.03142, 3, 48, 33.31, -6.41, 0.00244, 49, 10.39, -6.41, 0.88788, 46, 70.05, 32.97, 0.10968, 3, 48, 36.23, -6.46, + 0.00046, 49, 13.31, -6.46, 0.80558, 46, 69.91, 35.88, 0.19395, 3, 48, 40.12, -6.31, 1e-05, 49, 17.2, -6.31, 0.61334, 46, 69.5, 39.76, 0.38665, 4, 47, 0.4, -6.47, 0.86555, 48, -21.94, + -6.47, 0.12959, 49, -44.86, -6.47, 1e-05, 46, 73.7, -22.16, 0.00485, 3, 47, -9.01, -6.49, 0.93616, 48, -31.35, -6.49, 0.00716, 46, 74.33, -31.55, 0.05668, 3, 47, -16.19, -6.65, + 0.44814, 48, -38.53, -6.65, 3e-05, 46, 74.96, -38.7, 0.55184, 4, 47, 7.48, -6.41, 0.63866, 48, -14.86, -6.41, 0.354, 49, -37.78, -6.41, 0.00037, 46, 73.18, -15.1, 0.00698, 4, 47, + 13.4, -6.3, 0.36468, 48, -8.94, -6.3, 0.62161, 49, -31.86, -6.3, 0.00581, 46, 72.69, -9.2, 0.0079, 4, 47, 19.68, -6.38, 0.14684, 48, -2.65, -6.38, 0.80383, 49, -25.58, -6.38, + 0.04176, 46, 72.36, -2.92, 0.00757, 4, 47, 25.54, -6.44, 0.03499, 48, 3.2, -6.44, 0.79745, 49, -19.72, -6.44, 0.15898, 46, 72.03, 2.92, 0.00858, 4, 47, 31.96, -6.35, 0.00417, 48, + 9.62, -6.35, 0.60634, 49, -13.3, -6.35, 0.37927, 46, 71.53, 9.32, 0.01022, 4, 47, 37.62, -6.38, 0.00021, 48, 15.28, -6.38, 0.35157, 49, -7.64, -6.38, 0.63918, 46, 71.18, 14.97, + 0.00904, 4, 47, 43.32, -6.48, 1e-05, 48, 20.98, -6.48, 0.14688, 49, -1.94, -6.48, 0.84692, 46, 70.92, 20.67, 0.00619, 3, 48, 25.81, -6.44, 0.03919, 49, 2.89, -6.44, 0.95006, 46, + 70.56, 25.48, 0.01074, 3, 48, 30.92, -6.39, 0.00591, 49, 7.99, -6.39, 0.9433, 46, 70.18, 30.58, 0.05079, 3, 48, 38.04, -6.39, 5e-05, 49, 15.12, -6.39, 0.72615, 46, 69.72, 37.69, + 0.2738 + ], + "hull": 46, + "edges": [ + 80, 82, 90, 0, 10, 8, 70, 72, 72, 74, 74, 76, 4, 6, 6, 8, 76, 78, 78, 80, 4, 2, 2, 0, 72, 92, 74, 94, 92, 94, 76, 96, 94, 96, 78, 98, 96, 98, 80, 100, 98, 100, 82, 84, 84, 86, 86, + 88, 88, 90, 0, 104, 2, 106, 104, 106, 4, 108, 106, 108, 6, 110, 108, 110, 8, 112, 110, 112, 10, 12, 102, 114, 114, 116, 116, 118, 118, 120, 122, 124, 124, 126, 126, 128, 128, 130, + 132, 100, 134, 102, 136, 104, 84, 138, 138, 132, 86, 140, 140, 134, 138, 140, 88, 142, 142, 136, 140, 142, 144, 146, 146, 148, 148, 150, 150, 152, 134, 154, 154, 136, 144, 154, 132, + 156, 156, 134, 122, 156, 102, 158, 158, 122, 114, 160, 160, 124, 158, 160, 160, 162, 162, 164, 164, 166, 100, 168, 168, 122, 98, 170, 170, 124, 168, 170, 170, 172, 172, 174, 174, + 176, 102, 178, 178, 144, 114, 180, 180, 146, 178, 180, 180, 182, 182, 184, 184, 186, 104, 188, 188, 144, 188, 190, 190, 192, 192, 194, 194, 196, 96, 198, 198, 172, 94, 200, 200, 174, + 198, 200, 92, 202, 202, 176, 200, 202, 64, 66, 58, 60, 130, 204, 204, 176, 128, 206, 206, 174, 204, 206, 126, 208, 208, 172, 206, 208, 126, 210, 210, 162, 128, 212, 212, 164, 210, + 212, 130, 214, 214, 166, 212, 214, 116, 216, 216, 162, 118, 218, 218, 164, 216, 218, 120, 220, 220, 166, 218, 220, 120, 222, 222, 186, 118, 224, 224, 184, 222, 224, 116, 226, 226, + 182, 224, 226, 148, 228, 228, 182, 150, 230, 230, 184, 228, 230, 152, 232, 232, 186, 230, 232, 152, 234, 234, 196, 150, 236, 236, 194, 234, 236, 148, 238, 238, 192, 236, 238, 146, + 240, 240, 190, 238, 240, 106, 242, 242, 190, 108, 244, 244, 192, 242, 244, 110, 246, 246, 194, 244, 246, 112, 248, 248, 196, 246, 248, 16, 18, 70, 250, 250, 92, 66, 252, 252, 202, + 64, 254, 254, 176, 252, 254, 60, 256, 256, 204, 58, 258, 258, 130, 256, 258, 54, 260, 260, 214, 50, 262, 262, 166, 46, 264, 264, 220, 42, 266, 266, 120, 38, 268, 268, 222, 34, 270, + 270, 186, 30, 272, 272, 232, 26, 274, 274, 152, 22, 276, 276, 234, 18, 278, 278, 196, 16, 280, 280, 248, 278, 280, 12, 282, 282, 112, 258, 284, 284, 260, 54, 56, 56, 58, 284, 56, + 254, 286, 286, 256, 60, 62, 62, 64, 286, 62, 250, 288, 288, 252, 66, 68, 68, 70, 288, 68, 260, 290, 290, 262, 50, 52, 52, 54, 290, 52, 262, 292, 292, 264, 46, 48, 48, 50, 292, 48, + 264, 294, 294, 266, 42, 44, 44, 46, 294, 44, 266, 296, 296, 268, 38, 40, 40, 42, 296, 40, 268, 298, 298, 270, 34, 36, 36, 38, 298, 36, 270, 300, 300, 272, 30, 32, 32, 34, 300, 32, + 272, 302, 302, 274, 26, 28, 28, 30, 302, 28, 274, 304, 304, 276, 22, 24, 24, 26, 304, 24, 276, 306, 306, 278, 18, 20, 20, 22, 306, 20, 280, 308, 308, 282, 12, 14, 14, 16, 308, 14 + ], + "width": 88, + "height": 80, + "path": "beast-summer-02-lv2.ear-left-bubble" + } + }, + "ear-left-dot-01": {"ear-left-dot": {"x": 0.12, "y": 0.57, "rotation": -0.95, "width": 15, "height": 16, "path": "beast-summer-02-lv2.ear-left-dot"}}, + "ear-left-dot-02": {"ear-left-dot": {"x": 0.12, "y": 0.57, "rotation": -0.95, "width": 15, "height": 16, "path": "beast-summer-02-lv2.ear-left-dot"}}, + "ear-left-dot-03": {"ear-left-dot": {"x": 0.12, "y": 0.57, "rotation": -0.95, "width": 15, "height": 16, "path": "beast-summer-02-lv2.ear-left-dot"}}, + "ear-left-dot-04": {"ear-left-dot": {"x": 0.12, "y": 0.57, "rotation": -0.95, "width": 15, "height": 16, "path": "beast-summer-02-lv2.ear-left-dot"}}, + "ear-left-dot-05": {"ear-left-dot": {"x": 0.12, "y": 0.57, "rotation": -0.95, "width": 15, "height": 16, "path": "beast-summer-02-lv2.ear-left-dot"}}, + "ear-left-dot-06": {"ear-left-dot": {"x": 0.12, "y": 0.57, "rotation": -0.95, "width": 15, "height": 16, "path": "beast-summer-02-lv2.ear-left-dot"}}, + "ear-left-dot-07": {"ear-left-dot": {"x": 0.12, "y": 0.57, "rotation": -0.95, "width": 15, "height": 16, "path": "beast-summer-02-lv2.ear-left-dot"}}, + "ear-left-dot-08": {"ear-left-dot": {"x": 0.12, "y": 0.57, "rotation": -0.95, "width": 15, "height": 16, "path": "beast-summer-02-lv2.ear-left-dot"}}, + "ear-left-dot-09": {"ear-left-dot": {"x": 0.12, "y": 0.57, "rotation": -0.95, "width": 15, "height": 16, "path": "beast-summer-02-lv2.ear-left-dot"}}, + "ear-left-dot-10": {"ear-left-dot": {"x": 0.12, "y": 0.57, "rotation": -0.95, "width": 15, "height": 16, "path": "beast-summer-02-lv2.ear-left-dot"}}, + "ear-left-dot-11": {"ear-left-dot": {"x": 0.12, "y": 0.57, "rotation": -0.95, "width": 15, "height": 16, "path": "beast-summer-02-lv2.ear-left-dot"}}, + "ear-left-dot-12": {"ear-left-dot": {"x": 0.12, "y": 0.57, "rotation": -0.95, "width": 15, "height": 16, "path": "beast-summer-02-lv2.ear-left-dot"}}, + "ear-left-under": {"ear-left-under": {"x": 84.18, "y": -29.77, "rotation": -90, "width": 143, "height": 220, "path": "beast-summer-02-lv2.ear-left-under"}}, + "ear-left-upper": {"ear-left-upper": {"x": 99.68, "y": -27.77, "rotation": -90, "width": 153, "height": 261, "path": "beast-summer-02-lv2.ear-left-upper"}}, + "ear-right-bubble": { + "ear-right-bubble": { + "type": "mesh", + "uvs": [ + 0.93928, 0.51035, 0.95558, 0.60687, 0.96791, 0.67987, 0.98006, 0.75177, 1, 0.86979, 1, 0.93047, 1, 1, 0.9567, 1, 0.9208, 1, 0.88771, 1, 0.83969, 1, 0.79967, 1, 0.76574, 1, 0.73418, + 1, 0.69508, 1, 0.6661, 1, 0.6319, 1, 0.6046, 1, 0.57454, 1, 0.53755, 1, 0.50387, 1, 0.47341, 1, 0.44466, 1, 0.41233, 1, 0.37317, 1, 0.33787, 1, 0.30333, 1, 0.2648, 1, 0.21937, 1, + 0.17434, 1, 0.12959, 1, 0.08769, 1, 0, 1, 0.02085, 0.93004, 0.04055, 0.86394, 0.06626, 0.77764, 0.08854, 0.70287, 0.11527, 0.61317, 0.13788, 0.53731, 0.35753, 0, 0.43128, 0, 0.52161, + 0, 0.60662, 0, 0.67954, 0, 0.54109, 0.53632, 0.30907, 0.53689, 0.75362, 0.52246, 0.84707, 0.51636, 0.2081, 0.53714, 0.42115, 0.53662, 0.64269, 0.52969, 0.1892, 0.6098, 0.3018, + 0.61294, 0.41972, 0.61185, 0.54053, 0.60957, 0.64648, 0.60579, 0.76151, 0.60426, 0.87262, 0.59717, 0.16806, 0.69109, 0.29497, 0.68444, 0.41838, 0.68224, 0.54, 0.67846, 0.65011, + 0.67878, 0.7681, 0.67261, 0.89666, 0.6732, 0.14733, 0.77075, 0.28705, 0.76725, 0.41688, 0.761, 0.53942, 0.75466, 0.6538, 0.7529, 0.7757, 0.75146, 0.91933, 0.74487, 0.12337, 0.86287, + 0.2782, 0.85982, 0.4151, 0.85429, 0.53871, 0.84818, 0.65852, 0.84778, 0.7847, 0.84476, 0.95379, 0.85385, 0.97627, 0.92496, 0.79208, 0.9213, 0.66236, 0.9248, 0.5381, 0.92796, 0.41375, + 0.92539, 0.2717, 0.9278, 0.10571, 0.93074, 0.53197, 0.28531, 0.39415, 0.16313, 0.65961, 0.18832, 0.25473, 0.53703, 0.24202, 0.61127, 0.22911, 0.68789, 0.21379, 0.76908, 0.19729, + 0.86141, 0.18704, 0.9293, 0.36352, 0.53676, 0.36013, 0.6124, 0.35748, 0.68332, 0.35288, 0.76408, 0.34802, 0.857, 0.34383, 0.92658, 0.48024, 0.53647, 0.47847, 0.61074, 0.47433, + 0.6805, 0.47563, 0.75796, 0.47402, 0.85138, 0.47337, 0.92662, 0.58955, 0.53316, 0.59344, 0.60768, 0.59605, 0.67863, 0.5961, 0.75379, 0.60032, 0.84797, 0.60296, 0.92631, 0.69391, + 0.52635, 0.69915, 0.60509, 0.70691, 0.67581, 0.71206, 0.75221, 0.71954, 0.84632, 0.72813, 0.92303, 0.80125, 0.51935, 0.81428, 0.60089, 0.8348, 0.67292, 0.84793, 0.74814, 0.87862, + 0.84981, 0.89305, 0.92331, 0.19669, 0.68959, 0.17782, 0.76999, 0.1594, 0.86216, 0.1429, 0.93008, 0.26012, 0.68627, 0.25017, 0.76817, 0.23685, 0.86063, 0.22589, 0.92861, 0.30659, + 0.92721, 0.3131, 0.85841, 0.31569, 0.76587, 0.32231, 0.68395, 0.38717, 0.68279, 0.38553, 0.76251, 0.38068, 0.85568, 0.37648, 0.92602, 0.44462, 0.92603, 0.44322, 0.8529, 0.44458, + 0.75957, 0.44621, 0.68137, 0.50711, 0.67948, 0.50646, 0.75636, 0.50582, 0.84981, 0.50482, 0.92727, 0.57134, 0.92712, 0.5687, 0.84808, 0.56865, 0.75421, 0.5654, 0.67854, 0.62192, + 0.6787, 0.6236, 0.75336, 0.62525, 0.84789, 0.62839, 0.92567, 0.69427, 0.92394, 0.76244, 0.9221, 0.84047, 0.92226, 0.93306, 0.9241, 0.91732, 0.85189, 0.82617, 0.84699, 0.75013, + 0.84559, 0.6863, 0.84711, 0.68017, 0.75259, 0.74166, 0.75186, 0.80979, 0.74989, 0.88285, 0.74654, 0.86581, 0.67306, 0.79931, 0.67276, 0.73613, 0.67429, 0.67214, 0.67763, 0.09776, + 0.96131, 0.13724, 0.95982, 0.1817, 0.95902, 0.22313, 0.9588, 0.26892, 0.95695, 0.30526, 0.95692, 0.34139, 0.95661, 0.3751, 0.95678, 0.41313, 0.95785, 0.44464, 0.95718, 0.47339, + 0.95772, 0.5044, 0.95925, 0.53787, 0.95826, 0.57268, 0.95774, 0.60366, 0.95762, 0.62995, 0.95872, 0.66398, 0.95747, 0.69464, 0.9582, 0.73085, 0.95766, 0.76403, 0.95969, 0.79572, + 0.95904, 0.84011, 0.95843, 0.89075, 0.95631, 0.92774, 0.95702, 0.96706, 0.96028 + ], + "triangles": [ + 8, 196, 7, 9, 195, 8, 8, 195, 196, 10, 194, 9, 9, 194, 195, 10, 11, 194, 12, 193, 11, 11, 193, 194, 13, 192, 12, 12, 192, 193, 14, 191, 13, 13, 191, 192, 15, 190, 14, 14, 190, 191, + 15, 189, 190, 191, 158, 192, 192, 80, 193, 192, 158, 80, 194, 193, 159, 194, 159, 195, 159, 193, 80, 189, 157, 190, 190, 118, 191, 190, 157, 118, 191, 118, 158, 189, 81, 157, 195, + 124, 196, 196, 124, 160, 195, 159, 124, 81, 164, 157, 81, 76, 164, 157, 117, 118, 157, 164, 117, 159, 123, 124, 124, 123, 161, 118, 163, 158, 118, 117, 163, 80, 162, 159, 159, 162, + 123, 158, 77, 80, 158, 163, 77, 80, 77, 162, 162, 122, 123, 76, 165, 164, 76, 69, 165, 164, 116, 117, 164, 165, 116, 77, 167, 162, 117, 166, 163, 117, 116, 166, 163, 70, 77, 163, + 166, 70, 77, 70, 167, 165, 115, 116, 116, 171, 166, 166, 63, 70, 146, 103, 145, 68, 61, 152, 68, 145, 61, 151, 152, 109, 110, 153, 154, 143, 144, 104, 16, 189, 15, 17, 188, 16, 16, + 188, 189, 18, 187, 17, 17, 187, 188, 18, 19, 186, 19, 185, 186, 18, 186, 187, 20, 184, 19, 19, 184, 185, 20, 21, 184, 22, 183, 21, 21, 183, 184, 23, 181, 22, 181, 182, 22, 22, 182, + 183, 184, 148, 185, 184, 183, 148, 187, 156, 188, 188, 81, 189, 188, 156, 81, 185, 149, 186, 185, 82, 149, 185, 148, 82, 182, 83, 141, 182, 181, 83, 186, 112, 187, 186, 149, 112, + 182, 106, 183, 183, 106, 148, 187, 112, 156, 182, 141, 106, 150, 149, 82, 147, 75, 82, 82, 148, 147, 82, 75, 150, 106, 105, 148, 148, 105, 147, 149, 111, 112, 149, 150, 111, 105, + 106, 142, 112, 155, 156, 112, 111, 155, 83, 74, 141, 74, 142, 141, 106, 141, 142, 156, 76, 81, 156, 155, 76, 74, 67, 142, 142, 143, 105, 142, 67, 143, 105, 104, 147, 105, 143, 104, + 147, 146, 75, 147, 104, 146, 75, 68, 150, 75, 146, 68, 68, 151, 150, 150, 110, 111, 150, 151, 110, 111, 154, 155, 111, 110, 154, 155, 69, 76, 155, 154, 69, 104, 103, 146, 146, 145, + 68, 68, 152, 151, 151, 109, 110, 24, 180, 23, 25, 179, 24, 24, 179, 180, 26, 178, 25, 25, 178, 179, 27, 177, 26, 26, 177, 178, 28, 176, 27, 27, 176, 177, 29, 175, 28, 28, 175, 176, + 30, 174, 29, 29, 174, 175, 31, 173, 30, 30, 173, 174, 174, 128, 175, 174, 85, 128, 175, 94, 176, 175, 128, 94, 176, 132, 177, 176, 94, 132, 180, 140, 181, 177, 84, 178, 177, 132, 84, + 178, 133, 179, 178, 84, 133, 179, 100, 180, 180, 100, 140, 179, 133, 100, 128, 127, 94, 94, 93, 132, 94, 127, 93, 132, 131, 84, 132, 93, 131, 84, 73, 133, 84, 131, 73, 133, 134, 100, + 133, 73, 134, 100, 99, 140, 100, 134, 99, 140, 139, 83, 140, 99, 139, 93, 92, 131, 131, 130, 73, 131, 92, 130, 73, 66, 134, 73, 130, 66, 134, 135, 99, 134, 66, 135, 99, 98, 139, 99, + 135, 98, 139, 138, 74, 139, 98, 138, 74, 138, 67, 130, 129, 66, 66, 59, 135, 135, 136, 98, 135, 59, 136, 98, 97, 138, 98, 136, 97, 138, 137, 67, 23, 180, 181, 181, 140, 83, 83, 139, + 74, 128, 72, 127, 127, 126, 93, 93, 126, 92, 126, 125, 92, 85, 34, 72, 168, 64, 71, 168, 169, 64, 65, 58, 126, 126, 58, 125, 59, 52, 136, 69, 172, 165, 165, 172, 115, 116, 115, 171, + 154, 62, 69, 120, 170, 56, 65, 36, 58, 58, 51, 125, 37, 38, 51, 51, 48, 90, 51, 38, 48, 78, 3, 4, 64, 169, 57, 121, 120, 57, 120, 47, 57, 67, 137, 60, 143, 60, 144, 144, 103, 104, + 110, 109, 153, 154, 153, 62, 69, 62, 172, 97, 136, 96, 97, 96, 137, 96, 136, 52, 60, 137, 53, 60, 53, 144, 53, 137, 96, 103, 144, 102, 103, 102, 145, 102, 144, 53, 61, 145, 54, 172, + 62, 55, 55, 62, 153, 152, 108, 109, 55, 153, 108, 153, 109, 108, 61, 54, 152, 152, 54, 108, 54, 145, 102, 172, 114, 115, 172, 55, 114, 115, 114, 171, 171, 114, 56, 90, 89, 52, 52, + 45, 96, 52, 89, 45, 96, 95, 53, 96, 45, 95, 53, 49, 102, 53, 95, 49, 90, 48, 89, 102, 101, 54, 102, 49, 101, 54, 44, 108, 44, 107, 108, 54, 101, 44, 55, 108, 50, 108, 107, 50, 55, + 113, 114, 55, 50, 113, 114, 46, 56, 114, 113, 46, 56, 119, 120, 56, 46, 119, 120, 119, 47, 57, 47, 0, 87, 48, 38, 87, 89, 48, 87, 45, 89, 87, 95, 45, 49, 95, 86, 87, 38, 39, 101, 49, + 86, 87, 86, 95, 101, 86, 44, 41, 87, 40, 87, 41, 86, 44, 86, 107, 107, 86, 50, 50, 86, 113, 46, 113, 88, 119, 46, 88, 47, 119, 88, 86, 88, 113, 47, 88, 0, 0, 88, 43, 88, 41, 42, 88, + 86, 41, 88, 42, 43, 87, 39, 40, 57, 0, 1, 1, 64, 57, 64, 1, 2, 71, 2, 3, 58, 37, 51, 36, 37, 58, 91, 51, 90, 35, 36, 65, 125, 51, 91, 34, 35, 72, 72, 35, 65, 33, 34, 85, 169, 121, + 57, 171, 56, 63, 170, 63, 56, 138, 97, 137, 67, 60, 143, 59, 129, 52, 52, 129, 90, 71, 64, 2, 3, 78, 71, 78, 161, 71, 91, 90, 129, 170, 120, 121, 122, 121, 169, 161, 168, 71, 92, + 125, 91, 72, 65, 127, 127, 65, 126, 122, 169, 168, 92, 91, 130, 130, 91, 129, 123, 122, 168, 166, 171, 63, 70, 170, 167, 70, 63, 170, 167, 121, 122, 167, 170, 121, 66, 129, 59, 85, + 32, 33, 173, 85, 174, 31, 32, 173, 173, 32, 85, 85, 72, 128, 6, 197, 79, 162, 167, 122, 7, 197, 6, 160, 161, 78, 197, 160, 79, 196, 160, 197, 7, 196, 197, 124, 161, 160, 160, 78, 79, + 123, 168, 161, 6, 79, 5, 79, 78, 4, 79, 4, 5 + ], + "vertices": [ + 1, 31, 39.72, 33.4, 1, 1, 31, 46.93, 34.38, 1, 1, 31, 52.37, 35.12, 1, 1, 31, 58.6, 36.08, 1, 4, 31, 66.62, 38.45, 0.9295, 36, 61.48, 0.37, 1e-05, 37, 40.07, 0.48, 0.00266, 38, 18.6, + 0.48, 0.06784, 4, 31, 70.87, 39.07, 0.79905, 36, 62.32, -3.84, 1e-05, 37, 40.92, -3.73, 0.00721, 38, 19.44, -3.73, 0.19373, 4, 31, 76.95, 40.59, 0.74731, 36, 64.15, -9.83, 0, 37, + 42.75, -9.72, 0.00973, 38, 21.27, -9.72, 0.24296, 4, 31, 76.59, 36.12, 0.54785, 36, 59.68, -9.71, 1e-05, 37, 38.27, -9.6, 0.02168, 38, 16.8, -9.6, 0.43046, 4, 31, 76.3, 32.42, + 0.43038, 36, 55.96, -9.61, 3e-05, 37, 34.56, -9.5, 0.03847, 38, 13.08, -9.5, 0.53112, 4, 31, 76.02, 29.01, 0.36035, 36, 52.54, -9.51, 9e-05, 37, 31.14, -9.41, 0.06275, 38, 9.66, + -9.41, 0.57681, 4, 31, 75.63, 24.06, 0.2889, 36, 47.58, -9.38, 0.00026, 37, 26.17, -9.27, 0.09917, 38, 4.7, -9.27, 0.61167, 4, 31, 75.3, 19.93, 0.22591, 36, 43.44, -9.26, 0.0007, 37, + 22.03, -9.16, 0.14876, 38, 0.56, -9.16, 0.62463, 4, 31, 75.15, 17.12, 0.17724, 36, 40.62, -9.26, 0.0017, 37, 19.22, -9.16, 0.21115, 38, -2.26, -9.16, 0.60991, 4, 31, 75.01, 14.5, + 0.14418, 36, 38, -9.26, 0.00385, 37, 16.6, -9.16, 0.28407, 38, -4.88, -9.16, 0.5679, 4, 31, 74.84, 11.26, 0.12448, 36, 34.76, -9.26, 0.00813, 37, 13.35, -9.16, 0.36326, 38, -8.12, + -9.16, 0.50413, 4, 31, 74.71, 8.86, 0.11438, 36, 32.35, -9.26, 0.016, 37, 10.95, -9.16, 0.44276, 38, -10.53, -9.16, 0.42686, 4, 31, 74.56, 6.02, 0.11006, 36, 29.51, -9.26, 0.02948, + 37, 8.11, -9.16, 0.51561, 38, -13.37, -9.16, 0.34486, 4, 31, 74.45, 3.76, 0.10858, 36, 27.25, -9.26, 0.05095, 37, 5.84, -9.16, 0.57474, 38, -15.63, -9.16, 0.26573, 4, 31, 74.31, + 1.27, 0.10802, 36, 24.75, -9.26, 0.08291, 37, 3.35, -9.16, 0.614, 38, -18.13, -9.16, 0.19506, 4, 31, 74.15, -1.8, 0.1074, 36, 21.68, -9.26, 0.12742, 37, 0.28, -9.16, 0.62906, 38, + -21.2, -9.16, 0.13612, 4, 31, 74.01, -4.59, 0.10634, 36, 18.89, -9.26, 0.18549, 37, -2.52, -9.16, 0.61812, 38, -23.99, -9.16, 0.09006, 4, 31, 73.87, -7.11, 0.10502, 36, 16.36, -9.26, + 0.25646, 37, -5.05, -9.16, 0.58221, 38, -26.52, -9.16, 0.05631, 4, 31, 73.75, -9.5, 0.10419, 36, 13.97, -9.26, 0.33753, 37, -7.43, -9.16, 0.52513, 38, -28.91, -9.16, 0.03316, 4, 31, + 73.61, -12.18, 0.10536, 36, 11.29, -9.26, 0.42349, 37, -10.12, -9.16, 0.45282, 38, -31.59, -9.16, 0.01833, 4, 31, 73.44, -15.42, 0.11098, 36, 8.04, -9.26, 0.50701, 37, -13.37, -9.16, + 0.37254, 38, -34.84, -9.16, 0.00948, 4, 31, 73.28, -18.35, 0.12436, 36, 5.11, -9.26, 0.57939, 37, -16.3, -9.16, 0.29168, 38, -37.77, -9.16, 0.00457, 4, 31, 73.13, -21.21, 0.149, 36, + 2.24, -9.26, 0.63222, 37, -19.16, -9.16, 0.21673, 38, -40.64, -9.16, 0.00205, 4, 31, 72.96, -24.4, 0.18726, 36, -0.96, -9.26, 0.65948, 37, -22.36, -9.16, 0.15241, 38, -43.84, -9.16, + 0.00085, 4, 31, 72.77, -28.17, 0.23866, 36, -4.73, -9.26, 0.65975, 37, -26.13, -9.16, 0.10126, 38, -47.61, -9.16, 0.00033, 4, 31, 72.57, -31.9, 0.29871, 36, -8.46, -9.26, 0.63741, + 37, -29.87, -9.16, 0.06376, 38, -51.34, -9.16, 0.00012, 4, 31, 72.37, -35.61, 0.35932, 36, -12.18, -9.26, 0.60181, 37, -33.58, -9.16, 0.03884, 38, -55.06, -9.16, 4e-05, 4, 31, 72.19, + -39.08, 0.49297, 36, -15.66, -9.26, 0.48586, 37, -37.06, -9.16, 0.02116, 38, -58.54, -9.16, 1e-05, 4, 31, 71.81, -46.35, 0.66969, 36, -22.93, -9.26, 0.32512, 37, -44.34, -9.16, + 0.00518, 38, -65.81, -9.16, 0, 4, 31, 66.73, -44.35, 0.73638, 36, -21.2, -4.09, 0.26049, 37, -42.61, -3.98, 0.00313, 38, -64.08, -3.98, 0, 4, 31, 61.93, -42.46, 0.74288, 36, -19.57, + 0.8, 0.25402, 37, -40.97, 0.91, 0.00309, 38, -62.45, 0.91, 1e-05, 2, 31, 55.67, -40, 0.86, 36, -17.44, 7.19, 0.14, 2, 31, 50.24, -37.86, 0.87418, 36, -15.59, 12.72, 0.12582, 1, 31, + 43.72, -35.29, 1, 1, 31, 38.22, -33.12, 1, 2, 31, -0.53, -12.83, 0.99965, 36, 6.74, 64.74, 0.00035, 2, 31, -0.21, -6.72, 0.9998, 36, 12.86, 64.74, 0.0002, 3, 31, 0.19, 0.77, 0.99981, + 36, 20.36, 64.74, 9e-05, 38, -22.52, 64.84, 0.0001, 3, 31, 0.56, 7.82, 0.99975, 36, 27.41, 64.74, 1e-05, 38, -15.47, 64.84, 0.00024, 2, 31, 0.88, 13.86, 0.99954, 38, -9.41, 64.84, + 0.00046, 4, 31, 39.9, 0.3, 0.88429, 36, 21.98, 25.05, 0.02526, 37, 0.57, 25.15, 0.06552, 38, -20.9, 25.15, 0.02493, 1, 31, 38.93, -18.93, 1, 4, 31, 39.81, 17.97, 0.94373, 36, 39.62, + 26.07, 0.00089, 37, 18.21, 26.18, 0.01419, 38, -3.26, 26.18, 0.04119, 1, 31, 39.76, 25.74, 1, 1, 31, 38.51, -27.3, 1, 4, 31, 39.4, -9.64, 0.88619, 36, 12.02, 25.03, 0.05505, 37, + -9.38, 25.13, 0.05102, 38, -30.86, 25.13, 0.00774, 4, 31, 39.86, 8.75, 0.89286, 36, 30.41, 25.54, 0.00746, 37, 9, 25.64, 0.04877, 38, -12.47, 25.64, 0.05092, 1, 31, 43.8, -29.15, 1, + 4, 31, 44.52, -19.83, 0.74343, 36, 2.11, 19.38, 0.19678, 37, -19.29, 19.48, 0.05726, 38, -40.77, 19.48, 0.00254, 4, 31, 44.96, -10.05, 0.58833, 36, 11.9, 19.46, 0.20061, 37, -9.5, + 19.56, 0.19026, 38, -30.98, 19.56, 0.0208, 4, 31, 45.31, -0.03, 0.58846, 36, 21.93, 19.63, 0.08112, 37, 0.53, 19.73, 0.24909, 38, -20.95, 19.73, 0.08133, 4, 31, 45.5, 8.76, 0.59817, + 36, 30.72, 19.91, 0.02026, 37, 9.32, 20.01, 0.18761, 38, -12.16, 20.01, 0.19395, 4, 31, 45.89, 18.3, 0.66183, 36, 40.27, 20.02, 0.00346, 37, 18.87, 20.13, 0.07957, 38, -2.61, 20.13, + 0.25514, 1, 31, 45.85, 27.54, 1, 4, 31, 49.71, -31.22, 0.84023, 36, -8.99, 13.6, 0.15068, 37, -30.39, 13.7, 0.00899, 38, -51.87, 13.7, 0.0001, 4, 31, 49.78, -20.68, 0.48016, 36, + 1.55, 14.09, 0.41733, 37, -19.86, 14.19, 0.10062, 38, -41.33, 14.19, 0.0019, 4, 31, 50.15, -10.44, 0.42576, 36, 11.79, 14.25, 0.28082, 37, -9.61, 14.36, 0.27628, 38, -31.09, 14.36, + 0.01714, 4, 31, 50.4, -0.34, 0.43345, 36, 21.89, 14.53, 0.09343, 37, 0.48, 14.63, 0.37698, 38, -20.99, 14.63, 0.09613, 4, 31, 50.91, 8.78, 0.43708, 36, 31.02, 14.51, 0.01603, 37, + 9.62, 14.61, 0.27127, 38, -11.86, 14.61, 0.27562, 4, 31, 50.97, 18.59, 0.51068, 36, 40.82, 14.96, 0.00179, 37, 19.41, 15.07, 0.09933, 38, -2.06, 15.07, 0.3882, 4, 31, 51.57, 29.24, + 0.94195, 36, 51.49, 14.92, 4e-05, 37, 30.08, 15.02, 0.00385, 38, 8.61, 15.02, 0.05416, 4, 31, 55.51, -33.25, 0.72549, 36, -10.71, 7.7, 0.2621, 37, -32.11, 7.81, 0.01235, 38, -53.59, + 7.81, 6e-05, 4, 31, 55.86, -21.65, 0.38729, 36, 0.89, 7.96, 0.4981, 37, -20.51, 8.06, 0.11341, 38, -41.99, 8.06, 0.0012, 4, 31, 55.96, -10.87, 0.32692, 36, 11.67, 8.42, 0.3274, 37, + -9.74, 8.53, 0.32983, 38, -31.21, 8.53, 0.01585, 4, 31, 56.03, -0.69, 0.33677, 36, 21.84, 8.89, 0.10146, 37, 0.43, 9, 0.45593, 38, -21.04, 9, 0.10584, 4, 31, 56.4, 8.8, 0.33839, 36, + 31.33, 9.02, 0.0144, 37, 9.93, 9.13, 0.32329, 38, -11.55, 9.13, 0.32392, 4, 31, 57.13, 19.32, 0.42143, 36, 41.87, 8.84, 0.00109, 37, 20.47, 8.95, 0.11176, 38, -1.01, 8.95, 0.46572, + 4, 31, 58.69, 31.45, 0.79569, 36, 54.07, 7.92, 5e-05, 37, 32.67, 8.03, 0.01091, 38, 11.19, 8.03, 0.19335, 4, 31, 62.21, -35.59, 0.66085, 36, -12.7, 0.88, 0.32566, 37, -34.1, 0.99, + 0.01346, 38, -55.58, 0.99, 3e-05, 4, 31, 62.66, -22.75, 0.31024, 36, 0.16, 1.11, 0.56299, 37, -21.25, 1.21, 0.12589, 38, -42.72, 1.21, 0.00089, 4, 31, 62.85, -11.38, 0.24349, 36, + 11.52, 1.52, 0.36477, 37, -9.89, 1.62, 0.37599, 38, -31.36, 1.62, 0.01574, 4, 31, 62.94, -1.11, 0.2525, 36, 21.78, 1.97, 0.10936, 37, 0.37, 2.08, 0.52284, 38, -21.1, 2.08, 0.1153, 4, + 31, 63.43, 8.82, 0.2544, 36, 31.72, 2, 0.01401, 37, 10.32, 2.11, 0.36809, 38, -11.16, 2.11, 0.3635, 4, 31, 63.63, 19.58, 0.3466, 36, 42.48, 2.36, 0.00077, 37, 21.07, 2.47, 0.1237, + 38, -0.4, 2.47, 0.52893, 4, 31, 65.17, 33.27, 0.69411, 36, 56.23, 1.55, 3e-05, 37, 34.83, 1.66, 0.01435, 38, 13.35, 1.66, 0.29151, 4, 31, 70.52, 34.86, 0.61986, 36, 58.1, -3.71, + 1e-05, 37, 36.69, -3.61, 0.01658, 38, 15.22, -3.61, 0.36355, 4, 31, 69.45, 19.61, 0.28549, 36, 42.81, -3.44, 0.00065, 37, 21.4, -3.34, 0.13463, 38, -0.07, -3.34, 0.57924, 4, 31, + 69.14, 8.84, 0.18483, 36, 32.04, -3.7, 0.01432, 37, 10.64, -3.59, 0.40541, 38, -10.84, -3.59, 0.39544, 4, 31, 68.83, -1.47, 0.18141, 36, 21.73, -3.93, 0.11681, 37, 0.32, -3.83, + 0.57764, 38, -21.15, -3.83, 0.12413, 4, 31, 68.1, -11.77, 0.17479, 36, 11.41, -3.74, 0.39444, 37, -10, -3.64, 0.41447, 38, -31.47, -3.64, 0.0163, 4, 31, 67.66, -23.55, 0.24784, 36, + -0.38, -3.92, 0.61396, 37, -21.79, -3.82, 0.13743, 38, -43.26, -3.82, 0.00077, 4, 31, 67.15, -37.32, 0.59732, 36, -14.16, -4.14, 0.38768, 37, -35.56, -4.03, 0.01499, 38, -57.04, + -4.03, 1e-05, 4, 31, 21.31, 0.52, 0.98403, 36, 21.22, 43.62, 0.00516, 37, -0.19, 43.73, 0.00609, 38, -21.66, 43.73, 0.00473, 3, 31, 11.68, -10.43, 0.98457, 36, 9.78, 52.66, 0.01421, + 37, -11.62, 52.77, 0.00123, 3, 31, 14.7, 11.48, 0.98807, 37, 10.41, 50.91, 0.00101, 38, -11.07, 50.91, 0.01092, 1, 31, 38.71, -23.44, 1, 4, 31, 44.14, -24.78, 0.93122, 36, -2.85, + 19.5, 0.05888, 37, -24.25, 19.61, 0.00959, 38, -45.73, 19.61, 0.0003, 4, 31, 49.74, -26.15, 0.67882, 36, -3.92, 13.83, 0.287, 37, -25.32, 13.94, 0.03374, 38, -46.8, 13.94, 0.00045, + 4, 31, 55.68, -27.73, 0.52353, 36, -5.19, 7.82, 0.4314, 37, -26.59, 7.93, 0.04479, 38, -48.07, 7.93, 0.00029, 4, 31, 62.43, -29.46, 0.41464, 36, -6.56, 0.99, 0.53292, 37, -27.96, + 1.1, 0.05226, 38, -49.44, 1.1, 0.00018, 4, 31, 67.4, -30.57, 0.35706, 36, -7.41, -4.03, 0.58638, 37, -28.81, -3.93, 0.05644, 38, -50.29, -3.93, 0.00012, 4, 31, 39.16, -14.42, + 0.88311, 36, 7.24, 25.02, 0.07338, 37, -14.17, 25.12, 0.03978, 38, -35.64, 25.12, 0.00372, 4, 31, 44.74, -15, 0.62555, 36, 6.96, 19.42, 0.24007, 37, -14.45, 19.52, 0.1259, 38, + -35.92, 19.52, 0.00848, 4, 31, 49.97, -15.49, 0.4342, 36, 6.74, 14.17, 0.37611, 37, -14.67, 14.27, 0.18375, 38, -36.14, 14.27, 0.00595, 4, 31, 55.91, -16.19, 0.33684, 36, 6.35, 8.19, + 0.44427, 37, -15.05, 8.3, 0.21425, 38, -36.53, 8.3, 0.00464, 4, 31, 62.76, -16.95, 0.25537, 36, 5.95, 1.32, 0.49872, 37, -15.45, 1.42, 0.24179, 38, -36.93, 1.42, 0.00413, 4, 31, + 67.88, -17.57, 0.18921, 36, 5.6, -3.83, 0.54119, 37, -15.8, -3.73, 0.26556, 38, -37.28, -3.73, 0.00404, 4, 31, 39.65, -4.74, 0.83361, 36, 16.93, 25.04, 0.05679, 37, -4.48, 25.14, + 0.08927, 38, -25.95, 25.14, 0.02033, 4, 31, 45.13, -5.18, 0.57797, 36, 16.78, 19.54, 0.13938, 37, -4.63, 19.65, 0.23843, 38, -26.1, 19.65, 0.04422, 4, 31, 50.27, -5.8, 0.42696, 36, + 16.43, 14.38, 0.17737, 37, -4.97, 14.48, 0.35156, 38, -26.45, 14.48, 0.04411, 4, 31, 56, -5.99, 0.33132, 36, 16.54, 8.65, 0.20059, 37, -4.86, 8.75, 0.42277, 38, -26.34, 8.75, + 0.04531, 4, 31, 62.89, -6.48, 0.24781, 36, 16.41, 1.73, 0.22055, 37, -4.99, 1.84, 0.48389, 38, -26.47, 1.84, 0.04775, 4, 31, 68.45, -6.83, 0.17763, 36, 16.35, -3.83, 0.23735, 37, + -5.05, -3.73, 0.53429, 38, -26.53, -3.73, 0.05074, 4, 31, 39.88, 4.33, 0.83746, 36, 26, 25.28, 0.02009, 37, 4.59, 25.39, 0.08772, 38, -16.88, 25.39, 0.05473, 4, 31, 45.41, 4.36, + 0.58276, 36, 26.32, 19.77, 0.04346, 37, 4.92, 19.87, 0.23645, 38, -16.56, 19.87, 0.13732, 4, 31, 50.66, 4.3, 0.43226, 36, 26.54, 14.52, 0.04191, 37, 5.13, 14.62, 0.34769, 38, -16.34, + 14.62, 0.17814, 4, 31, 56.21, 4.01, 0.33656, 36, 26.54, 8.96, 0.0422, 37, 5.14, 9.06, 0.41771, 38, -16.34, 9.06, 0.20353, 4, 31, 63.19, 4, 0.25264, 36, 26.89, 1.99, 0.04384, 37, + 5.49, 2.09, 0.47782, 38, -15.99, 2.09, 0.2257, 4, 31, 68.99, 3.91, 0.18189, 36, 27.11, -3.81, 0.04615, 37, 5.71, -3.71, 0.52741, 38, -15.77, -3.71, 0.24456, 4, 31, 39.83, 13, 0.8608, + 36, 34.66, 25.79, 0.00457, 37, 13.26, 25.89, 0.04889, 38, -8.22, 25.89, 0.08574, 4, 31, 45.67, 13.13, 0.60926, 36, 35.09, 19.96, 0.00894, 37, 13.69, 20.06, 0.13479, 38, -7.79, 20.06, + 0.247, 4, 31, 50.93, 13.5, 0.45377, 36, 35.74, 14.73, 0.00554, 37, 14.33, 14.83, 0.18027, 38, -7.14, 14.83, 0.36041, 4, 31, 56.75, 13.83, 0.35749, 36, 36.37, 8.94, 0.00417, 37, + 14.96, 9.04, 0.20976, 38, -6.51, 9.04, 0.42858, 4, 31, 63.53, 14.02, 0.27612, 36, 36.92, 2.18, 0.00359, 37, 15.52, 2.28, 0.23625, 38, -5.96, 2.28, 0.48404, 4, 31, 69.3, 14.3, + 0.20954, 36, 37.5, -3.57, 0.00344, 37, 16.1, -3.46, 0.25903, 38, -5.38, -3.46, 0.52799, 1, 31, 39.78, 21.93, 1, 4, 31, 45.87, 22.69, 0.82489, 36, 44.65, 20.27, 0.00083, 37, 23.25, + 20.37, 0.0268, 38, 1.77, 20.37, 0.14748, 4, 31, 51.28, 24.11, 0.64773, 36, 46.35, 14.94, 0.00052, 37, 24.95, 15.04, 0.04091, 38, 3.47, 15.04, 0.31084, 4, 31, 57.92, 25.42, 0.53225, + 36, 48.01, 8.38, 0.00029, 37, 26.6, 8.49, 0.04857, 38, 5.13, 8.49, 0.41889, 4, 31, 64.49, 27.19, 0.46955, 36, 50.12, 1.91, 0.00016, 37, 28.71, 2.02, 0.05201, 38, 7.24, 2.02, 0.47828, + 4, 31, 70.04, 27.97, 0.41589, 36, 51.19, -3.59, 0.0001, 37, 29.78, -3.48, 0.05591, 38, 8.31, -3.48, 0.5281, 4, 31, 49.73, -28.84, 0.72647, 36, -6.61, 13.71, 0.25381, 37, -28.01, + 13.81, 0.01954, 38, -49.49, 13.81, 0.00018, 4, 31, 55.59, -30.72, 0.64422, 36, -8.18, 7.76, 0.33291, 37, -29.58, 7.86, 0.02275, 38, -51.06, 7.86, 0.00011, 4, 31, 62.32, -32.6, + 0.55448, 36, -9.7, 0.94, 0.41902, 37, -31.11, 1.04, 0.02643, 38, -52.58, 1.04, 7e-05, 4, 31, 67.27, -34.24, 0.44397, 36, -11.07, -4.09, 0.52396, 37, -32.48, -3.99, 0.03202, 38, + -53.95, -3.99, 4e-05, 4, 31, 49.76, -23.57, 0.5094, 36, -1.34, 13.95, 0.4213, 37, -22.75, 14.06, 0.06847, 38, -44.22, 14.06, 0.00083, 4, 31, 55.77, -24.72, 0.42549, 36, -2.17, 7.89, + 0.49746, 37, -23.57, 8, 0.07648, 38, -45.05, 8, 0.00057, 4, 31, 62.54, -26.18, 0.35688, 36, -3.28, 1.05, 0.55926, 37, -24.68, 1.15, 0.08347, 38, -46.16, 1.15, 0.00039, 4, 31, 67.52, + -27.35, 0.29772, 36, -4.19, -3.98, 0.61133, 37, -25.59, -3.88, 0.09064, 38, -47.07, -3.88, 0.00031, 4, 31, 67.77, -20.66, 0.21136, 36, 2.51, -3.88, 0.59029, 37, -18.89, -3.77, + 0.19654, 38, -40.37, -3.77, 0.00182, 4, 31, 62.71, -19.85, 0.275, 36, 3.05, 1.21, 0.54348, 37, -18.35, 1.32, 0.17958, 38, -39.83, 1.32, 0.00194, 4, 31, 55.88, -19.28, 0.35002, 36, + 3.27, 8.06, 0.48643, 37, -18.14, 8.17, 0.16123, 38, -39.61, 8.17, 0.00232, 4, 31, 49.86, -18.41, 0.41881, 36, 3.82, 14.12, 0.43213, 37, -17.59, 14.23, 0.1461, 38, -39.06, 14.23, + 0.00296, 4, 31, 50.06, -13.03, 0.39313, 36, 9.2, 14.21, 0.35299, 37, -12.2, 14.31, 0.24433, 38, -33.68, 14.31, 0.00955, 4, 31, 55.94, -13.47, 0.32258, 36, 9.06, 8.31, 0.39406, 37, + -12.34, 8.41, 0.27473, 38, -33.82, 8.41, 0.00863, 4, 31, 62.8, -14.24, 0.24476, 36, 8.66, 1.42, 0.43744, 37, -12.74, 1.52, 0.30953, 38, -34.22, 1.52, 0.00827, 4, 31, 67.98, -14.86, + 0.17804, 36, 8.31, -3.79, 0.47328, 37, -13.09, -3.69, 0.3403, 38, -34.57, -3.69, 0.00838, 4, 31, 68.28, -9.21, 0.17525, 36, 13.97, -3.79, 0.31355, 37, -7.43, -3.69, 0.48153, 38, + -28.91, -3.69, 0.02968, 4, 31, 62.87, -9.04, 0.24396, 36, 13.85, 1.62, 0.29088, 37, -7.55, 1.73, 0.43695, 38, -29.03, 1.73, 0.02821, 4, 31, 55.98, -8.57, 0.32275, 36, 13.97, 8.53, + 0.26435, 37, -7.44, 8.63, 0.38552, 38, -28.91, 8.63, 0.02739, 4, 31, 50.21, -8.13, 0.39269, 36, 14.1, 14.31, 0.24007, 37, -7.3, 14.42, 0.33961, 38, -28.78, 14.42, 0.02763, 4, 31, + 50.33, -3.07, 0.39835, 36, 19.16, 14.45, 0.13664, 37, -2.25, 14.56, 0.3972, 38, -23.72, 14.56, 0.06781, 4, 31, 56.01, -3.43, 0.32898, 36, 19.1, 8.76, 0.14701, 37, -2.3, 8.87, + 0.45281, 38, -23.78, 8.87, 0.07119, 4, 31, 62.92, -3.84, 0.24968, 36, 19.05, 1.85, 0.15947, 37, -2.36, 1.96, 0.51456, 38, -23.83, 1.96, 0.07629, 4, 31, 68.64, -4.23, 0.17972, 36, + 18.97, -3.88, 0.17094, 37, -2.44, -3.78, 0.56767, 38, -23.91, -3.78, 0.08167, 4, 31, 68.91, 1.29, 0.18179, 36, 24.49, -3.87, 0.07557, 37, 3.08, -3.77, 0.56385, 38, -18.39, -3.77, + 0.17879, 4, 31, 63.06, 1.38, 0.25204, 36, 24.27, 1.98, 0.07119, 37, 2.86, 2.08, 0.51118, 38, -18.61, 2.08, 0.16559, 4, 31, 56.13, 1.74, 0.33157, 36, 24.26, 8.92, 0.0672, 37, 2.86, + 9.03, 0.44995, 38, -18.62, 9.03, 0.15128, 4, 31, 50.52, 1.76, 0.40101, 36, 23.99, 14.52, 0.06478, 37, 2.59, 14.63, 0.39483, 38, -18.89, 14.63, 0.13938, 4, 31, 50.78, 6.45, 0.401, 36, + 28.68, 14.51, 0.0258, 37, 7.28, 14.62, 0.33427, 38, -14.2, 14.62, 0.23894, 4, 31, 56.3, 6.29, 0.3309, 36, 28.82, 8.99, 0.02514, 37, 7.42, 9.09, 0.37908, 38, -14.06, 9.09, 0.26488, 4, + 31, 63.29, 6.06, 0.25155, 36, 28.96, 1.99, 0.02548, 37, 7.56, 2.1, 0.4293, 38, -13.92, 2.1, 0.29367, 4, 31, 69.06, 6.02, 0.18206, 36, 29.22, -3.76, 0.02652, 37, 7.82, -3.66, 0.47284, + 38, -13.66, -3.66, 0.31858, 4, 31, 69.22, 11.49, 0.19245, 36, 34.69, -3.64, 0.00724, 37, 13.29, -3.53, 0.3321, 38, -8.19, -3.53, 0.46821, 4, 31, 69.38, 17.15, 0.23948, 36, 40.35, + -3.5, 0.00153, 37, 18.94, -3.39, 0.19195, 38, -2.53, -3.39, 0.56704, 4, 31, 69.73, 23.61, 0.346, 36, 46.82, -3.51, 0.00026, 37, 25.42, -3.41, 0.08922, 38, 3.94, -3.41, 0.56452, 4, + 31, 70.27, 31.28, 0.48407, 36, 54.51, -3.65, 4e-05, 37, 33.11, -3.54, 0.03358, 38, 11.63, -3.54, 0.48231, 4, 31, 64.84, 30.32, 0.54501, 36, 53.26, 1.73, 7e-05, 37, 31.86, 1.83, + 0.03077, 38, 10.38, 1.83, 0.42415, 4, 31, 64.01, 22.94, 0.40266, 36, 45.85, 2.16, 0.00034, 37, 24.45, 2.27, 0.08247, 38, 2.97, 2.27, 0.51452, 4, 31, 63.58, 16.63, 0.30287, 36, 39.53, + 2.26, 0.00168, 37, 18.13, 2.37, 0.17579, 38, -3.35, 2.37, 0.51965, 4, 31, 63.48, 11.19, 0.25994, 36, 34.09, 2.08, 0.00726, 37, 12.69, 2.19, 0.30245, 38, -8.79, 2.19, 0.43035, 4, 31, + 56.56, 11.07, 0.3382, 36, 33.61, 8.98, 0.00776, 37, 12.21, 9.09, 0.26884, 38, -9.27, 9.09, 0.38519, 4, 31, 56.93, 16.38, 0.37706, 36, 38.93, 8.89, 0.00208, 37, 17.52, 9, 0.15821, 38, + -3.95, 9, 0.46265, 4, 31, 57.5, 22.2, 0.46779, 36, 44.77, 8.63, 0.00052, 37, 23.36, 8.73, 0.07582, 38, 1.89, 8.73, 0.45586, 4, 31, 58.3, 28.37, 0.65325, 36, 50.97, 8.16, 0.00012, 37, + 29.57, 8.26, 0.02541, 38, 8.09, 8.26, 0.32123, 4, 31, 51.42, 26.68, 0.75526, 36, 48.93, 14.93, 0.00017, 37, 27.52, 15.03, 0.02002, 38, 6.05, 15.03, 0.22455, 4, 31, 51.11, 21.17, + 0.52586, 36, 43.41, 14.95, 0.00082, 37, 22, 15.06, 0.07106, 38, 0.53, 15.06, 0.40226, 4, 31, 50.95, 15.93, 0.44455, 36, 38.16, 14.84, 0.00273, 37, 16.76, 14.94, 0.1436, 38, -4.72, + 14.94, 0.40912, 4, 31, 50.92, 10.61, 0.40864, 36, 32.85, 14.59, 0.0088, 37, 11.45, 14.7, 0.23945, 38, -10.03, 14.7, 0.34311, 4, 31, 69.38, -38.1, 0.52059, 36, -14.82, -6.4, 0.45917, + 37, -36.22, -6.3, 0.02022, 38, -57.7, -6.3, 1e-05, 4, 31, 69.44, -34.82, 0.37517, 36, -11.54, -6.29, 0.58803, 37, -32.95, -6.19, 0.03676, 38, -54.42, -6.19, 4e-05, 4, 31, 69.57, + -31.13, 0.31655, 36, -7.85, -6.23, 0.62281, 37, -29.26, -6.13, 0.06054, 38, -50.73, -6.13, 0.00011, 4, 31, 69.74, -27.7, 0.25662, 36, -4.41, -6.22, 0.64624, 37, -25.82, -6.11, + 0.09684, 38, -47.29, -6.11, 0.0003, 4, 31, 69.8, -23.9, 0.20542, 36, -0.61, -6.08, 0.64718, 37, -22.02, -5.97, 0.14662, 38, -43.49, -5.97, 0.00077, 4, 31, 69.96, -20.88, 0.16774, 36, + 2.4, -6.08, 0.62093, 37, -19, -5.97, 0.20946, 38, -40.48, -5.97, 0.00187, 4, 31, 70.09, -17.89, 0.14406, 36, 5.4, -6.05, 0.56885, 37, -16, -5.95, 0.28288, 38, -37.48, -5.95, 0.00421, + 4, 31, 70.25, -15.09, 0.13169, 36, 8.2, -6.07, 0.49722, 37, -13.21, -5.96, 0.36227, 38, -34.68, -5.96, 0.00882, 4, 31, 70.5, -11.95, 0.12708, 36, 11.36, -6.14, 0.41453, 37, -10.05, + -6.04, 0.44117, 38, -31.52, -6.04, 0.01722, 4, 31, 70.58, -9.33, 0.12668, 36, 13.97, -6.1, 0.32958, 37, -7.43, -5.99, 0.51233, 38, -28.91, -5.99, 0.03141, 4, 31, 70.75, -6.95, + 0.12812, 36, 16.36, -6.14, 0.24965, 37, -5.05, -6.03, 0.56851, 38, -26.52, -6.03, 0.05372, 4, 31, 71, -4.39, 0.12979, 36, 18.93, -6.25, 0.1799, 37, -2.47, -6.14, 0.60387, 38, -23.95, + -6.14, 0.08644, 4, 31, 71.07, -1.61, 0.13105, 36, 21.71, -6.18, 0.12302, 37, 0.3, -6.07, 0.61461, 38, -21.17, -6.07, 0.13132, 4, 31, 71.18, 1.28, 0.13159, 36, 24.6, -6.14, 0.07962, + 37, 3.19, -6.03, 0.5998, 38, -18.28, -6.03, 0.18899, 4, 31, 71.31, 3.85, 0.13189, 36, 27.17, -6.13, 0.04862, 37, 5.76, -6.02, 0.56113, 38, -15.71, -6.02, 0.25837, 4, 31, 71.51, 6.02, + 0.13282, 36, 29.35, -6.21, 0.02792, 37, 7.95, -6.1, 0.50297, 38, -13.53, -6.1, 0.33629, 4, 31, 71.56, 8.85, 0.13637, 36, 32.18, -6.12, 0.01503, 37, 10.77, -6.01, 0.43134, 38, -10.7, + -6.01, 0.41726, 4, 31, 71.75, 11.39, 0.14539, 36, 34.72, -6.17, 0.00757, 37, 13.32, -6.07, 0.35328, 38, -8.16, -6.07, 0.49376, 4, 31, 71.87, 14.39, 0.16393, 36, 37.73, -6.13, + 0.00355, 37, 16.32, -6.03, 0.27561, 38, -5.15, -6.03, 0.55691, 4, 31, 72.16, 17.13, 0.19585, 36, 40.48, -6.28, 0.00155, 37, 19.08, -6.18, 0.20422, 38, -2.4, -6.18, 0.59837, 4, 31, + 72.25, 19.76, 0.24372, 36, 43.11, -6.23, 0.00063, 37, 21.71, -6.13, 0.14329, 38, 0.23, -6.13, 0.61235, 4, 31, 72.47, 23.82, 0.30631, 36, 47.17, -6.24, 0.00024, 37, 25.77, -6.14, + 0.09501, 38, 4.29, -6.14, 0.59844, 4, 31, 72.61, 28.41, 0.3775, 36, 51.77, -6.14, 9e-05, 37, 30.37, -6.03, 0.05972, 38, 8.89, -6.03, 0.5627, 4, 31, 72.88, 31.77, 0.44548, 36, 55.14, + -6.23, 3e-05, 37, 33.74, -6.13, 0.03652, 38, 12.26, -6.13, 0.51797, 4, 31, 73.38, 35.45, 0.56131, 36, 58.84, -6.53, 1e-05, 37, 37.44, -6.43, 0.02128, 38, 15.96, -6.43, 0.41739 + ], + "hull": 44, + "edges": [ + 78, 76, 86, 0, 78, 80, 80, 82, 82, 84, 84, 86, 0, 94, 76, 96, 62, 64, 74, 76, 102, 96, 74, 102, 104, 90, 106, 98, 108, 88, 110, 100, 112, 92, 114, 94, 2, 0, 114, 2, 72, 74, 116, 102, + 72, 116, 118, 104, 120, 106, 122, 108, 124, 110, 126, 112, 128, 114, 4, 2, 128, 4, 70, 72, 130, 116, 70, 130, 132, 118, 134, 120, 136, 122, 138, 124, 140, 126, 142, 128, 8, 6, 6, 4, + 142, 6, 68, 70, 144, 130, 68, 144, 146, 132, 148, 134, 150, 136, 152, 138, 154, 140, 156, 142, 156, 8, 8, 10, 10, 12, 12, 158, 158, 156, 10, 158, 160, 154, 162, 152, 164, 150, 166, + 148, 168, 146, 170, 144, 64, 66, 66, 68, 170, 66, 82, 172, 172, 88, 98, 172, 172, 100, 80, 174, 174, 90, 96, 174, 84, 176, 176, 92, 94, 176, 90, 178, 178, 96, 102, 180, 180, 104, + 178, 180, 180, 182, 182, 184, 184, 186, 186, 188, 90, 190, 190, 98, 104, 192, 192, 106, 190, 192, 192, 194, 194, 196, 196, 198, 198, 200, 88, 202, 202, 98, 106, 204, 204, 108, 202, + 204, 204, 206, 206, 208, 208, 210, 210, 212, 88, 214, 214, 100, 108, 216, 216, 110, 214, 216, 216, 218, 218, 220, 220, 222, 222, 224, 92, 226, 226, 100, 110, 228, 228, 112, 226, 228, + 228, 230, 230, 232, 232, 234, 234, 236, 92, 238, 238, 94, 112, 240, 240, 114, 238, 240, 240, 242, 242, 244, 244, 246, 246, 248, 12, 14, 170, 64, 116, 250, 250, 182, 130, 252, 252, + 184, 250, 252, 144, 254, 254, 186, 252, 254, 170, 256, 256, 188, 254, 256, 58, 60, 60, 62, 118, 258, 258, 182, 132, 260, 260, 184, 258, 260, 146, 262, 262, 186, 260, 262, 168, 264, + 264, 188, 262, 264, 54, 56, 56, 58, 50, 52, 52, 54, 168, 266, 266, 200, 146, 268, 268, 198, 266, 268, 132, 270, 270, 196, 268, 270, 118, 272, 272, 194, 270, 272, 120, 274, 274, 194, + 134, 276, 276, 196, 274, 276, 148, 278, 278, 198, 276, 278, 166, 280, 280, 200, 278, 280, 46, 48, 48, 50, 42, 44, 44, 46, 166, 282, 282, 212, 148, 284, 284, 210, 282, 284, 134, 286, + 286, 208, 284, 286, 120, 288, 288, 206, 286, 288, 122, 290, 290, 206, 136, 292, 292, 208, 290, 292, 150, 294, 294, 210, 292, 294, 164, 296, 296, 212, 294, 296, 38, 40, 40, 42, 34, + 36, 36, 38, 164, 298, 298, 224, 150, 300, 300, 222, 298, 300, 136, 302, 302, 220, 300, 302, 122, 304, 304, 218, 302, 304, 124, 306, 306, 218, 138, 308, 308, 220, 306, 308, 152, 310, + 310, 222, 308, 310, 162, 312, 312, 224, 310, 312, 30, 32, 32, 34, 26, 28, 28, 30, 162, 314, 314, 236, 22, 24, 24, 26, 160, 316, 316, 236, 18, 20, 20, 22, 160, 318, 318, 248, 14, 16, + 16, 18, 158, 320, 320, 248, 156, 322, 322, 246, 320, 322, 154, 324, 324, 246, 318, 324, 154, 326, 326, 234, 316, 326, 152, 328, 328, 234, 314, 328, 138, 330, 330, 232, 328, 330, 140, + 332, 332, 232, 326, 332, 140, 334, 334, 244, 324, 334, 142, 336, 336, 244, 322, 336, 128, 338, 338, 242, 336, 338, 126, 340, 340, 242, 334, 340, 126, 342, 342, 230, 332, 342, 124, + 344, 344, 230, 330, 344, 62, 346, 346, 170, 60, 348, 348, 256, 346, 348, 58, 350, 350, 188, 348, 350, 56, 352, 352, 264, 350, 352, 54, 354, 354, 168, 352, 354, 52, 356, 356, 266, + 354, 356, 50, 358, 358, 200, 356, 358, 48, 360, 360, 280, 358, 360, 46, 362, 362, 166, 360, 362, 44, 364, 364, 282, 362, 364, 42, 366, 366, 212, 364, 366, 40, 368, 368, 296, 366, + 368, 38, 370, 370, 164, 368, 370, 36, 372, 372, 298, 370, 372, 34, 374, 374, 224, 372, 374, 32, 376, 376, 312, 374, 376, 30, 378, 378, 162, 376, 378, 28, 380, 380, 314, 378, 380, 26, + 382, 382, 236, 380, 382, 24, 384, 384, 316, 382, 384, 22, 386, 386, 160, 384, 386, 20, 388, 388, 318, 386, 388, 18, 390, 390, 248, 388, 390, 16, 392, 392, 320, 390, 392, 14, 394, + 394, 158, 392, 394 + ], + "width": 83, + "height": 74, + "path": "beast-summer-02-lv2.ear-right-bubble" + } + }, + "ear-right-bubble-02": { + "ear-right-bubble": { + "type": "mesh", + "uvs": [ + 0.93928, 0.51035, 0.95558, 0.60687, 0.96791, 0.67987, 0.98006, 0.75177, 1, 0.86979, 1, 0.93047, 1, 1, 0.9567, 1, 0.9208, 1, 0.88771, 1, 0.83969, 1, 0.79967, 1, 0.76574, 1, 0.73418, + 1, 0.69508, 1, 0.6661, 1, 0.6319, 1, 0.6046, 1, 0.57454, 1, 0.53755, 1, 0.50387, 1, 0.47341, 1, 0.44466, 1, 0.41233, 1, 0.37317, 1, 0.33787, 1, 0.30333, 1, 0.2648, 1, 0.21937, 1, + 0.17434, 1, 0.12959, 1, 0.08769, 1, 0, 1, 0.02085, 0.93004, 0.04055, 0.86394, 0.06626, 0.77764, 0.08854, 0.70287, 0.11527, 0.61317, 0.13788, 0.53731, 0.35753, 0, 0.43128, 0, 0.52161, + 0, 0.60662, 0, 0.67954, 0, 0.54109, 0.53632, 0.30907, 0.53689, 0.75362, 0.52246, 0.84707, 0.51636, 0.2081, 0.53714, 0.42115, 0.53662, 0.64269, 0.52969, 0.1892, 0.6098, 0.3018, + 0.61294, 0.41972, 0.61185, 0.54053, 0.60957, 0.64648, 0.60579, 0.76151, 0.60426, 0.87262, 0.59717, 0.16806, 0.69109, 0.29497, 0.68444, 0.41838, 0.68224, 0.54, 0.67846, 0.65011, + 0.67878, 0.7681, 0.67261, 0.89666, 0.6732, 0.14733, 0.77075, 0.28705, 0.76725, 0.41688, 0.761, 0.53942, 0.75466, 0.6538, 0.7529, 0.7757, 0.75146, 0.91933, 0.74487, 0.12337, 0.86287, + 0.2782, 0.85982, 0.4151, 0.85429, 0.53871, 0.84818, 0.65852, 0.84778, 0.7847, 0.84476, 0.95379, 0.85385, 0.97627, 0.92496, 0.79208, 0.9213, 0.66236, 0.9248, 0.5381, 0.92796, 0.41375, + 0.92539, 0.2717, 0.9278, 0.10571, 0.93074, 0.53197, 0.28531, 0.39415, 0.16313, 0.65961, 0.18832, 0.25473, 0.53703, 0.24202, 0.61127, 0.22911, 0.68789, 0.21379, 0.76908, 0.19729, + 0.86141, 0.18704, 0.9293, 0.36352, 0.53676, 0.36013, 0.6124, 0.35748, 0.68332, 0.35288, 0.76408, 0.34802, 0.857, 0.34383, 0.92658, 0.48024, 0.53647, 0.47847, 0.61074, 0.47433, + 0.6805, 0.47563, 0.75796, 0.47402, 0.85138, 0.47337, 0.92662, 0.58955, 0.53316, 0.59344, 0.60768, 0.59605, 0.67863, 0.5961, 0.75379, 0.60032, 0.84797, 0.60296, 0.92631, 0.69391, + 0.52635, 0.69915, 0.60509, 0.70691, 0.67581, 0.71206, 0.75221, 0.71954, 0.84632, 0.72813, 0.92303, 0.80125, 0.51935, 0.81428, 0.60089, 0.8348, 0.67292, 0.84793, 0.74814, 0.87862, + 0.84981, 0.89305, 0.92331, 0.19669, 0.68959, 0.17782, 0.76999, 0.1594, 0.86216, 0.1429, 0.93008, 0.26012, 0.68627, 0.25017, 0.76817, 0.23685, 0.86063, 0.22589, 0.92861, 0.30659, + 0.92721, 0.3131, 0.85841, 0.31569, 0.76587, 0.32231, 0.68395, 0.38717, 0.68279, 0.38553, 0.76251, 0.38068, 0.85568, 0.37648, 0.92602, 0.44462, 0.92603, 0.44322, 0.8529, 0.44458, + 0.75957, 0.44621, 0.68137, 0.50711, 0.67948, 0.50646, 0.75636, 0.50582, 0.84981, 0.50482, 0.92727, 0.57134, 0.92712, 0.5687, 0.84808, 0.56865, 0.75421, 0.5654, 0.67854, 0.62192, + 0.6787, 0.6236, 0.75336, 0.62525, 0.84789, 0.62839, 0.92567, 0.69427, 0.92394, 0.76244, 0.9221, 0.84047, 0.92226, 0.93306, 0.9241, 0.91732, 0.85189, 0.82617, 0.84699, 0.75013, + 0.84559, 0.6863, 0.84711, 0.68017, 0.75259, 0.74166, 0.75186, 0.80979, 0.74989, 0.88285, 0.74654, 0.86581, 0.67306, 0.79931, 0.67276, 0.73613, 0.67429, 0.67214, 0.67763, 0.09776, + 0.96131, 0.13724, 0.95982, 0.1817, 0.95902, 0.22313, 0.9588, 0.26892, 0.95695, 0.30526, 0.95692, 0.34139, 0.95661, 0.3751, 0.95678, 0.41313, 0.95785, 0.44464, 0.95718, 0.47339, + 0.95772, 0.5044, 0.95925, 0.53787, 0.95826, 0.57268, 0.95774, 0.60366, 0.95762, 0.62995, 0.95872, 0.66398, 0.95747, 0.69464, 0.9582, 0.73085, 0.95766, 0.76403, 0.95969, 0.79572, + 0.95904, 0.84011, 0.95843, 0.89075, 0.95631, 0.92774, 0.95702, 0.96706, 0.96028 + ], + "triangles": [ + 8, 196, 7, 9, 195, 8, 8, 195, 196, 10, 194, 9, 9, 194, 195, 10, 11, 194, 12, 193, 11, 11, 193, 194, 13, 192, 12, 12, 192, 193, 14, 191, 13, 13, 191, 192, 15, 190, 14, 14, 190, 191, + 15, 189, 190, 191, 158, 192, 192, 80, 193, 192, 158, 80, 194, 193, 159, 194, 159, 195, 159, 193, 80, 189, 157, 190, 190, 118, 191, 190, 157, 118, 191, 118, 158, 189, 81, 157, 195, + 124, 196, 196, 124, 160, 195, 159, 124, 81, 164, 157, 81, 76, 164, 157, 117, 118, 157, 164, 117, 159, 123, 124, 124, 123, 161, 118, 163, 158, 118, 117, 163, 80, 162, 159, 159, 162, + 123, 158, 77, 80, 158, 163, 77, 80, 77, 162, 162, 122, 123, 76, 165, 164, 76, 69, 165, 164, 116, 117, 164, 165, 116, 77, 167, 162, 117, 166, 163, 117, 116, 166, 163, 70, 77, 163, + 166, 70, 77, 70, 167, 165, 115, 116, 116, 171, 166, 166, 63, 70, 146, 103, 145, 68, 61, 152, 68, 145, 61, 151, 152, 109, 110, 153, 154, 143, 144, 104, 16, 189, 15, 17, 188, 16, 16, + 188, 189, 18, 187, 17, 17, 187, 188, 18, 19, 186, 19, 185, 186, 18, 186, 187, 20, 184, 19, 19, 184, 185, 20, 21, 184, 22, 183, 21, 21, 183, 184, 23, 181, 22, 181, 182, 22, 22, 182, + 183, 184, 148, 185, 184, 183, 148, 187, 156, 188, 188, 81, 189, 188, 156, 81, 185, 149, 186, 185, 82, 149, 185, 148, 82, 182, 83, 141, 182, 181, 83, 186, 112, 187, 186, 149, 112, + 182, 106, 183, 183, 106, 148, 187, 112, 156, 182, 141, 106, 150, 149, 82, 147, 75, 82, 82, 148, 147, 82, 75, 150, 106, 105, 148, 148, 105, 147, 149, 111, 112, 149, 150, 111, 105, + 106, 142, 112, 155, 156, 112, 111, 155, 83, 74, 141, 74, 142, 141, 106, 141, 142, 156, 76, 81, 156, 155, 76, 74, 67, 142, 142, 143, 105, 142, 67, 143, 105, 104, 147, 105, 143, 104, + 147, 146, 75, 147, 104, 146, 75, 68, 150, 75, 146, 68, 68, 151, 150, 150, 110, 111, 150, 151, 110, 111, 154, 155, 111, 110, 154, 155, 69, 76, 155, 154, 69, 104, 103, 146, 146, 145, + 68, 68, 152, 151, 151, 109, 110, 24, 180, 23, 25, 179, 24, 24, 179, 180, 26, 178, 25, 25, 178, 179, 27, 177, 26, 26, 177, 178, 28, 176, 27, 27, 176, 177, 29, 175, 28, 28, 175, 176, + 30, 174, 29, 29, 174, 175, 31, 173, 30, 30, 173, 174, 174, 128, 175, 174, 85, 128, 175, 94, 176, 175, 128, 94, 176, 132, 177, 176, 94, 132, 180, 140, 181, 177, 84, 178, 177, 132, 84, + 178, 133, 179, 178, 84, 133, 179, 100, 180, 180, 100, 140, 179, 133, 100, 128, 127, 94, 94, 93, 132, 94, 127, 93, 132, 131, 84, 132, 93, 131, 84, 73, 133, 84, 131, 73, 133, 134, 100, + 133, 73, 134, 100, 99, 140, 100, 134, 99, 140, 139, 83, 140, 99, 139, 93, 92, 131, 131, 130, 73, 131, 92, 130, 73, 66, 134, 73, 130, 66, 134, 135, 99, 134, 66, 135, 99, 98, 139, 99, + 135, 98, 139, 138, 74, 139, 98, 138, 74, 138, 67, 130, 129, 66, 66, 59, 135, 135, 136, 98, 135, 59, 136, 98, 97, 138, 98, 136, 97, 138, 137, 67, 23, 180, 181, 181, 140, 83, 83, 139, + 74, 128, 72, 127, 127, 126, 93, 93, 126, 92, 126, 125, 92, 85, 34, 72, 168, 64, 71, 168, 169, 64, 65, 58, 126, 126, 58, 125, 59, 52, 136, 69, 172, 165, 165, 172, 115, 116, 115, 171, + 154, 62, 69, 120, 170, 56, 65, 36, 58, 58, 51, 125, 37, 38, 51, 51, 48, 90, 51, 38, 48, 78, 3, 4, 64, 169, 57, 121, 120, 57, 120, 47, 57, 67, 137, 60, 143, 60, 144, 144, 103, 104, + 110, 109, 153, 154, 153, 62, 69, 62, 172, 97, 136, 96, 97, 96, 137, 96, 136, 52, 60, 137, 53, 60, 53, 144, 53, 137, 96, 103, 144, 102, 103, 102, 145, 102, 144, 53, 61, 145, 54, 172, + 62, 55, 55, 62, 153, 152, 108, 109, 55, 153, 108, 153, 109, 108, 61, 54, 152, 152, 54, 108, 54, 145, 102, 172, 114, 115, 172, 55, 114, 115, 114, 171, 171, 114, 56, 90, 89, 52, 52, + 45, 96, 52, 89, 45, 96, 95, 53, 96, 45, 95, 53, 49, 102, 53, 95, 49, 90, 48, 89, 102, 101, 54, 102, 49, 101, 54, 44, 108, 44, 107, 108, 54, 101, 44, 55, 108, 50, 108, 107, 50, 55, + 113, 114, 55, 50, 113, 114, 46, 56, 114, 113, 46, 56, 119, 120, 56, 46, 119, 120, 119, 47, 57, 47, 0, 87, 48, 38, 87, 89, 48, 87, 45, 89, 87, 95, 45, 49, 95, 86, 87, 38, 39, 101, 49, + 86, 87, 86, 95, 101, 86, 44, 41, 87, 40, 87, 41, 86, 44, 86, 107, 107, 86, 50, 50, 86, 113, 46, 113, 88, 119, 46, 88, 47, 119, 88, 86, 88, 113, 47, 88, 0, 0, 88, 43, 88, 41, 42, 88, + 86, 41, 88, 42, 43, 87, 39, 40, 57, 0, 1, 1, 64, 57, 64, 1, 2, 71, 2, 3, 58, 37, 51, 36, 37, 58, 91, 51, 90, 35, 36, 65, 125, 51, 91, 34, 35, 72, 72, 35, 65, 33, 34, 85, 169, 121, + 57, 171, 56, 63, 170, 63, 56, 138, 97, 137, 67, 60, 143, 59, 129, 52, 52, 129, 90, 71, 64, 2, 3, 78, 71, 78, 161, 71, 91, 90, 129, 170, 120, 121, 122, 121, 169, 161, 168, 71, 92, + 125, 91, 72, 65, 127, 127, 65, 126, 122, 169, 168, 92, 91, 130, 130, 91, 129, 123, 122, 168, 166, 171, 63, 70, 170, 167, 70, 63, 170, 167, 121, 122, 167, 170, 121, 66, 129, 59, 85, + 32, 33, 173, 85, 174, 31, 32, 173, 173, 32, 85, 85, 72, 128, 6, 197, 79, 162, 167, 122, 7, 197, 6, 160, 161, 78, 197, 160, 79, 196, 160, 197, 7, 196, 197, 124, 161, 160, 160, 78, 79, + 123, 168, 161, 6, 79, 5, 79, 78, 4, 79, 4, 5 + ], + "vertices": [ + 1, 42, 41.12, 33.33, 1, 1, 42, 48.32, 34.31, 1, 1, 42, 53.77, 35.04, 1, 1, 42, 60, 36.01, 1, 4, 42, 68.02, 38.37, 0.9295, 43, 61.47, -1.03, 1e-05, 44, 40.07, -0.92, 0.00266, 45, + 18.6, -0.92, 0.06784, 4, 42, 72.27, 39, 0.79905, 43, 62.32, -5.24, 1e-05, 44, 40.92, -5.13, 0.00721, 45, 19.44, -5.13, 0.19373, 4, 42, 78.35, 40.51, 0.74731, 43, 64.15, -11.23, 0, + 44, 42.75, -11.12, 0.00973, 45, 21.27, -11.12, 0.24296, 4, 42, 77.99, 36.05, 0.54785, 43, 59.68, -11.11, 1e-05, 44, 38.27, -11, 0.02168, 45, 16.8, -11, 0.43046, 4, 42, 77.69, 32.35, + 0.43038, 43, 55.96, -11, 3e-05, 44, 34.56, -10.9, 0.03847, 45, 13.08, -10.9, 0.53112, 4, 42, 77.42, 28.93, 0.36035, 43, 52.54, -10.91, 9e-05, 44, 31.14, -10.81, 0.06275, 45, 9.66, + -10.81, 0.57681, 4, 42, 77.02, 23.98, 0.2889, 43, 47.58, -10.78, 0.00026, 44, 26.17, -10.67, 0.09917, 45, 4.7, -10.67, 0.61167, 4, 42, 76.69, 19.85, 0.22591, 43, 43.44, -10.66, + 0.0007, 44, 22.03, -10.56, 0.14876, 45, 0.56, -10.56, 0.62463, 4, 42, 76.55, 17.04, 0.17724, 43, 40.62, -10.66, 0.0017, 44, 19.22, -10.56, 0.21115, 45, -2.26, -10.56, 0.60991, 4, 42, + 76.41, 14.43, 0.14418, 43, 38, -10.66, 0.00385, 44, 16.6, -10.56, 0.28407, 45, -4.88, -10.56, 0.5679, 4, 42, 76.24, 11.19, 0.12448, 43, 34.76, -10.66, 0.00813, 44, 13.35, -10.56, + 0.36326, 45, -8.12, -10.56, 0.50413, 4, 42, 76.11, 8.78, 0.11438, 43, 32.35, -10.66, 0.016, 44, 10.95, -10.56, 0.44276, 45, -10.53, -10.56, 0.42686, 4, 42, 75.96, 5.95, 0.11006, 43, + 29.51, -10.66, 0.02948, 44, 8.11, -10.56, 0.51561, 45, -13.37, -10.56, 0.34486, 4, 42, 75.84, 3.69, 0.10858, 43, 27.25, -10.66, 0.05095, 44, 5.84, -10.56, 0.57474, 45, -15.63, + -10.56, 0.26573, 4, 42, 75.71, 1.19, 0.10802, 43, 24.75, -10.66, 0.08291, 44, 3.35, -10.56, 0.614, 45, -18.13, -10.56, 0.19506, 4, 42, 75.55, -1.87, 0.1074, 43, 21.68, -10.66, + 0.12742, 44, 0.28, -10.56, 0.62906, 45, -21.2, -10.56, 0.13612, 4, 42, 75.4, -4.66, 0.10634, 43, 18.89, -10.66, 0.18549, 44, -2.52, -10.56, 0.61812, 45, -23.99, -10.56, 0.09006, 4, + 42, 75.27, -7.19, 0.10502, 43, 16.36, -10.66, 0.25646, 44, -5.05, -10.56, 0.58221, 45, -26.52, -10.56, 0.05631, 4, 42, 75.14, -9.57, 0.10419, 43, 13.97, -10.66, 0.33753, 44, -7.43, + -10.56, 0.52513, 45, -28.91, -10.56, 0.03316, 4, 42, 75, -12.25, 0.10536, 43, 11.29, -10.66, 0.42349, 44, -10.12, -10.56, 0.45282, 45, -31.59, -10.56, 0.01833, 4, 42, 74.83, -15.5, + 0.11098, 43, 8.04, -10.66, 0.50701, 44, -13.37, -10.56, 0.37254, 45, -34.84, -10.56, 0.00948, 4, 42, 74.68, -18.42, 0.12436, 43, 5.11, -10.66, 0.57939, 44, -16.3, -10.56, 0.29168, + 45, -37.77, -10.56, 0.00457, 4, 42, 74.53, -21.28, 0.149, 43, 2.24, -10.66, 0.63222, 44, -19.16, -10.56, 0.21673, 45, -40.64, -10.56, 0.00205, 4, 42, 74.36, -24.48, 0.18726, 43, + -0.96, -10.66, 0.65948, 44, -22.36, -10.56, 0.15241, 45, -43.84, -10.56, 0.00085, 4, 42, 74.16, -28.24, 0.23866, 43, -4.73, -10.66, 0.65975, 44, -26.13, -10.56, 0.10126, 45, -47.61, + -10.56, 0.00033, 4, 42, 73.97, -31.98, 0.29871, 43, -8.46, -10.66, 0.63741, 44, -29.87, -10.56, 0.06376, 45, -51.34, -10.56, 0.00012, 4, 42, 73.77, -35.69, 0.35932, 43, -12.18, + -10.66, 0.60181, 44, -33.58, -10.56, 0.03884, 45, -55.06, -10.56, 4e-05, 4, 42, 73.59, -39.16, 0.49297, 43, -15.66, -10.66, 0.48586, 44, -37.06, -10.56, 0.02116, 45, -58.54, -10.56, + 1e-05, 4, 42, 73.2, -46.43, 0.66969, 43, -22.93, -10.66, 0.32512, 44, -44.34, -10.56, 0.00518, 45, -65.81, -10.56, 0, 4, 42, 68.13, -44.43, 0.73638, 43, -21.2, -5.49, 0.26049, 44, + -42.61, -5.38, 0.00313, 45, -64.08, -5.38, 0, 4, 42, 63.33, -42.54, 0.74288, 43, -19.57, -0.59, 0.25402, 44, -40.97, -0.49, 0.00309, 45, -62.45, -0.49, 1e-05, 2, 42, 57.06, -40.07, + 0.86, 43, -17.44, 5.79, 0.14, 2, 42, 51.63, -37.93, 0.87418, 43, -15.59, 11.32, 0.12582, 1, 42, 45.12, -35.37, 1, 1, 42, 39.61, -33.2, 1, 2, 42, 0.87, -12.9, 0.99965, 43, 6.74, + 63.34, 0.00035, 2, 42, 1.19, -6.79, 0.9998, 43, 12.86, 63.34, 0.0002, 3, 42, 1.58, 0.7, 0.99981, 43, 20.36, 63.34, 9e-05, 45, -22.52, 63.44, 0.0001, 3, 42, 1.95, 7.74, 0.99975, 43, + 27.41, 63.34, 1e-05, 45, -15.46, 63.44, 0.00024, 2, 42, 2.27, 13.79, 0.99954, 45, -9.41, 63.44, 0.00046, 4, 42, 41.3, 0.23, 0.88429, 43, 21.98, 23.65, 0.02526, 44, 0.57, 23.75, + 0.06552, 45, -20.9, 23.75, 0.02493, 1, 42, 40.33, -19.01, 1, 4, 42, 41.2, 17.9, 0.94373, 43, 39.62, 24.67, 0.00089, 44, 18.21, 24.78, 0.01419, 45, -3.26, 24.78, 0.04119, 1, 42, + 41.16, 25.66, 1, 1, 42, 39.91, -27.38, 1, 4, 42, 40.8, -9.72, 0.88619, 43, 12.02, 23.63, 0.05505, 44, -9.38, 23.73, 0.05102, 45, -30.86, 23.73, 0.00774, 4, 42, 41.25, 8.67, 0.89286, + 43, 30.41, 24.14, 0.00746, 44, 9, 24.24, 0.04877, 45, -12.47, 24.24, 0.05092, 1, 42, 45.19, -29.23, 1, 4, 42, 45.92, -19.91, 0.74343, 43, 2.11, 17.98, 0.19678, 44, -19.29, 18.08, + 0.05726, 45, -40.76, 18.08, 0.00254, 4, 42, 46.35, -10.13, 0.58833, 43, 11.9, 18.06, 0.20061, 44, -9.5, 18.16, 0.19026, 45, -30.98, 18.16, 0.0208, 4, 42, 46.71, -0.11, 0.58846, 43, + 21.93, 18.23, 0.08112, 44, 0.53, 18.33, 0.24909, 45, -20.95, 18.33, 0.08133, 4, 42, 46.89, 8.69, 0.59817, 43, 30.72, 18.51, 0.02026, 44, 9.32, 18.61, 0.18761, 45, -12.16, 18.61, + 0.19395, 4, 42, 47.28, 18.23, 0.66183, 43, 40.27, 18.62, 0.00346, 44, 18.87, 18.73, 0.07957, 45, -2.61, 18.73, 0.25514, 1, 42, 47.24, 27.47, 1, 4, 42, 51.11, -31.3, 0.84023, 43, + -8.99, 12.2, 0.15068, 44, -30.39, 12.3, 0.00899, 45, -51.87, 12.3, 0.0001, 4, 42, 51.17, -20.75, 0.48016, 43, 1.55, 12.69, 0.41733, 44, -19.86, 12.79, 0.10062, 45, -41.33, 12.79, + 0.0019, 4, 42, 51.55, -10.51, 0.42576, 43, 11.79, 12.85, 0.28082, 44, -9.61, 12.96, 0.27628, 45, -31.09, 12.96, 0.01714, 4, 42, 51.8, -0.42, 0.43345, 43, 21.89, 13.13, 0.09343, 44, + 0.48, 13.24, 0.37698, 45, -20.99, 13.24, 0.09613, 4, 42, 52.3, 8.71, 0.43708, 43, 31.02, 13.11, 0.01603, 44, 9.62, 13.21, 0.27127, 45, -11.86, 13.21, 0.27562, 4, 42, 52.36, 18.51, + 0.51068, 43, 40.82, 13.56, 0.00179, 44, 19.41, 13.67, 0.09933, 45, -2.06, 13.67, 0.3882, 4, 42, 52.97, 29.16, 0.94195, 43, 51.49, 13.52, 4e-05, 44, 30.08, 13.62, 0.00385, 45, 8.61, + 13.62, 0.05416, 4, 42, 56.91, -33.32, 0.72549, 43, -10.71, 6.3, 0.2621, 44, -32.11, 6.41, 0.01235, 45, -53.59, 6.41, 6e-05, 4, 42, 57.26, -21.73, 0.38729, 43, 0.89, 6.56, 0.4981, 44, + -20.51, 6.66, 0.11341, 45, -41.99, 6.66, 0.0012, 4, 42, 57.36, -10.94, 0.32692, 43, 11.67, 7.02, 0.3274, 44, -9.74, 7.13, 0.32983, 45, -31.21, 7.13, 0.01585, 4, 42, 57.43, -0.76, + 0.33677, 43, 21.84, 7.49, 0.10146, 44, 0.43, 7.6, 0.45593, 45, -21.04, 7.6, 0.10584, 4, 42, 57.8, 8.73, 0.33839, 43, 31.33, 7.62, 0.0144, 44, 9.93, 7.73, 0.32329, 45, -11.55, 7.73, + 0.32392, 4, 42, 58.53, 19.24, 0.42143, 43, 41.87, 7.44, 0.00109, 44, 20.47, 7.55, 0.11176, 45, -1.01, 7.55, 0.46572, 4, 42, 60.09, 31.38, 0.79569, 43, 54.07, 6.52, 5e-05, 44, 32.67, + 6.63, 0.01091, 45, 11.19, 6.63, 0.19335, 4, 42, 63.61, -35.67, 0.66085, 43, -12.7, -0.52, 0.32566, 44, -34.1, -0.41, 0.01346, 45, -55.58, -0.41, 3e-05, 4, 42, 64.06, -22.82, 0.31024, + 43, 0.16, -0.29, 0.56299, 44, -21.25, -0.19, 0.12589, 45, -42.72, -0.19, 0.00089, 4, 42, 64.25, -11.45, 0.24349, 43, 11.52, 0.12, 0.36477, 44, -9.89, 0.22, 0.37599, 45, -31.36, 0.22, + 0.01574, 4, 42, 64.34, -1.18, 0.2525, 43, 21.78, 0.57, 0.10936, 44, 0.37, 0.68, 0.52284, 45, -21.1, 0.68, 0.1153, 4, 42, 64.83, 8.75, 0.2544, 43, 31.72, 0.6, 0.01401, 44, 10.32, + 0.71, 0.36809, 45, -11.16, 0.71, 0.3635, 4, 42, 65.03, 19.51, 0.3466, 43, 42.48, 0.96, 0.00077, 44, 21.07, 1.07, 0.1237, 45, -0.4, 1.07, 0.52893, 4, 42, 66.57, 33.2, 0.69411, 43, + 56.23, 0.15, 3e-05, 44, 34.83, 0.26, 0.01435, 45, 13.35, 0.26, 0.29151, 4, 42, 71.92, 34.78, 0.61986, 43, 58.1, -5.11, 1e-05, 44, 36.69, -5.01, 0.01658, 45, 15.22, -5.01, 0.36355, 4, + 42, 70.84, 19.53, 0.28549, 43, 42.81, -4.84, 0.00065, 44, 21.4, -4.73, 0.13463, 45, -0.07, -4.73, 0.57924, 4, 42, 70.54, 8.77, 0.18483, 43, 32.04, -5.1, 0.01432, 44, 10.64, -4.99, + 0.40541, 45, -10.84, -4.99, 0.39544, 4, 42, 70.23, -1.55, 0.18141, 43, 21.73, -5.33, 0.11681, 44, 0.32, -5.23, 0.57764, 45, -21.15, -5.23, 0.12413, 4, 42, 69.5, -11.84, 0.17479, 43, + 11.41, -5.14, 0.39444, 44, -10, -5.04, 0.41447, 45, -31.47, -5.04, 0.0163, 4, 42, 69.05, -23.63, 0.24784, 43, -0.38, -5.32, 0.61396, 44, -21.79, -5.22, 0.13743, 45, -43.26, -5.22, + 0.00077, 4, 42, 68.55, -37.4, 0.59732, 43, -14.16, -5.54, 0.38768, 44, -35.56, -5.43, 0.01499, 45, -57.04, -5.43, 1e-05, 4, 42, 22.71, 0.45, 0.98403, 43, 21.22, 42.22, 0.00516, 44, + -0.19, 42.33, 0.00609, 45, -21.66, 42.33, 0.00473, 3, 42, 13.08, -10.5, 0.98457, 43, 9.78, 51.26, 0.01421, 44, -11.62, 51.37, 0.00123, 3, 42, 16.1, 11.4, 0.98807, 44, 10.41, 49.51, + 0.00101, 45, -11.07, 49.51, 0.01092, 1, 42, 40.1, -23.51, 1, 4, 42, 45.53, -24.85, 0.93122, 43, -2.85, 18.1, 0.05888, 44, -24.25, 18.21, 0.00959, 45, -45.73, 18.21, 0.0003, 4, 42, + 51.14, -26.22, 0.67882, 43, -3.92, 12.43, 0.287, 44, -25.32, 12.54, 0.03374, 45, -46.8, 12.54, 0.00045, 4, 42, 57.07, -27.81, 0.52353, 43, -5.19, 6.42, 0.4314, 44, -26.59, 6.53, + 0.04479, 45, -48.07, 6.53, 0.00029, 4, 42, 63.82, -29.53, 0.41464, 43, -6.56, -0.41, 0.53292, 44, -27.96, -0.3, 0.05226, 45, -49.44, -0.3, 0.00018, 4, 42, 68.8, -30.65, 0.35706, 43, + -7.41, -5.43, 0.58638, 44, -28.81, -5.33, 0.05644, 45, -50.29, -5.33, 0.00012, 4, 42, 40.56, -14.49, 0.88311, 43, 7.24, 23.62, 0.07338, 44, -14.17, 23.72, 0.03978, 45, -35.64, 23.72, + 0.00372, 4, 42, 46.13, -15.07, 0.62555, 43, 6.96, 18.02, 0.24007, 44, -14.45, 18.12, 0.1259, 45, -35.92, 18.12, 0.00848, 4, 42, 51.36, -15.56, 0.4342, 43, 6.74, 12.77, 0.37611, 44, + -14.67, 12.88, 0.18375, 45, -36.14, 12.88, 0.00595, 4, 42, 57.31, -16.26, 0.33684, 43, 6.35, 6.79, 0.44427, 44, -15.05, 6.9, 0.21425, 45, -36.53, 6.9, 0.00464, 4, 42, 64.16, -17.02, + 0.25537, 43, 5.95, -0.08, 0.49872, 44, -15.45, 0.02, 0.24179, 45, -36.93, 0.02, 0.00413, 4, 42, 69.28, -17.64, 0.18921, 43, 5.6, -5.23, 0.54119, 44, -15.8, -5.13, 0.26556, 45, + -37.28, -5.13, 0.00404, 4, 42, 41.05, -4.82, 0.83361, 43, 16.93, 23.64, 0.05679, 44, -4.48, 23.74, 0.08927, 45, -25.95, 23.74, 0.02033, 4, 42, 46.53, -5.25, 0.57797, 43, 16.78, + 18.14, 0.13938, 44, -4.63, 18.25, 0.23843, 45, -26.1, 18.25, 0.04422, 4, 42, 51.66, -5.87, 0.42696, 43, 16.43, 12.98, 0.17737, 44, -4.97, 13.08, 0.35156, 45, -26.45, 13.08, 0.04411, + 4, 42, 57.39, -6.06, 0.33132, 43, 16.54, 7.25, 0.20059, 44, -4.86, 7.35, 0.42277, 45, -26.34, 7.35, 0.04531, 4, 42, 64.29, -6.56, 0.24781, 43, 16.41, 0.33, 0.22055, 44, -4.99, 0.44, + 0.48389, 45, -26.47, 0.44, 0.04775, 4, 42, 69.85, -6.91, 0.17763, 43, 16.35, -5.23, 0.23735, 44, -5.05, -5.13, 0.53429, 45, -26.52, -5.13, 0.05074, 4, 42, 41.28, 4.25, 0.83746, 43, + 26, 23.88, 0.02009, 44, 4.59, 23.99, 0.08772, 45, -16.88, 23.99, 0.05473, 4, 42, 46.8, 4.29, 0.58276, 43, 26.32, 18.37, 0.04346, 44, 4.92, 18.47, 0.23645, 45, -16.56, 18.47, 0.13732, + 4, 42, 52.06, 4.23, 0.43226, 43, 26.54, 13.12, 0.04191, 44, 5.13, 13.22, 0.34769, 45, -16.34, 13.22, 0.17814, 4, 42, 57.61, 3.94, 0.33656, 43, 26.54, 7.56, 0.0422, 44, 5.14, 7.66, + 0.41771, 45, -16.34, 7.66, 0.20353, 4, 42, 64.59, 3.92, 0.25264, 43, 26.89, 0.59, 0.04384, 44, 5.49, 0.69, 0.47782, 45, -15.99, 0.69, 0.2257, 4, 42, 70.39, 3.84, 0.18189, 43, 27.11, + -5.21, 0.04615, 44, 5.71, -5.11, 0.52741, 45, -15.77, -5.11, 0.24456, 4, 42, 41.23, 12.93, 0.8608, 43, 34.66, 24.39, 0.00457, 44, 13.26, 24.49, 0.04889, 45, -8.22, 24.49, 0.08574, 4, + 42, 47.07, 13.06, 0.60926, 43, 35.09, 18.56, 0.00894, 44, 13.69, 18.67, 0.13479, 45, -7.79, 18.67, 0.247, 4, 42, 52.33, 13.43, 0.45377, 43, 35.74, 13.33, 0.00554, 44, 14.33, 13.43, + 0.18027, 45, -7.14, 13.43, 0.36041, 4, 42, 58.15, 13.75, 0.35749, 43, 36.37, 7.54, 0.00417, 44, 14.96, 7.64, 0.20976, 45, -6.51, 7.64, 0.42858, 4, 42, 64.93, 13.95, 0.27612, 43, + 36.92, 0.78, 0.00359, 44, 15.52, 0.88, 0.23625, 45, -5.96, 0.88, 0.48404, 4, 42, 70.69, 14.22, 0.20954, 43, 37.5, -4.97, 0.00344, 44, 16.1, -4.86, 0.25903, 45, -5.38, -4.86, 0.52799, + 1, 42, 41.18, 21.86, 1, 4, 42, 47.26, 22.62, 0.82489, 43, 44.65, 18.87, 0.00083, 44, 23.25, 18.98, 0.0268, 45, 1.77, 18.98, 0.14748, 4, 42, 52.68, 24.04, 0.64773, 43, 46.35, 13.54, + 0.00052, 44, 24.95, 13.65, 0.04091, 45, 3.47, 13.65, 0.31084, 4, 42, 59.31, 25.35, 0.53225, 43, 48.01, 6.98, 0.00029, 44, 26.6, 7.09, 0.04857, 45, 5.13, 7.09, 0.41889, 4, 42, 65.88, + 27.11, 0.46955, 43, 50.12, 0.51, 0.00016, 44, 28.71, 0.62, 0.05201, 45, 7.24, 0.62, 0.47828, 4, 42, 71.43, 27.89, 0.41589, 43, 51.19, -4.99, 0.0001, 44, 29.78, -4.88, 0.05591, 45, + 8.31, -4.88, 0.5281, 4, 42, 51.12, -28.92, 0.72647, 43, -6.61, 12.31, 0.25381, 44, -28.01, 12.41, 0.01954, 45, -49.49, 12.41, 0.00018, 4, 42, 56.98, -30.79, 0.64422, 43, -8.18, 6.36, + 0.33291, 44, -29.58, 6.46, 0.02275, 45, -51.06, 6.46, 0.00011, 4, 42, 63.71, -32.68, 0.55448, 43, -9.7, -0.46, 0.41902, 44, -31.11, -0.36, 0.02643, 45, -52.58, -0.36, 7e-05, 4, 42, + 68.66, -34.31, 0.44397, 43, -11.07, -5.49, 0.52396, 44, -32.48, -5.38, 0.03202, 45, -53.95, -5.38, 4e-05, 4, 42, 51.16, -23.65, 0.5094, 43, -1.35, 12.55, 0.4213, 44, -22.75, 12.66, + 0.06847, 45, -44.22, 12.66, 0.00083, 4, 42, 57.16, -24.79, 0.42549, 43, -2.17, 6.49, 0.49746, 44, -23.57, 6.6, 0.07648, 45, -45.05, 6.6, 0.00057, 4, 42, 63.94, -26.25, 0.35688, 43, + -3.28, -0.35, 0.55926, 44, -24.68, -0.25, 0.08347, 45, -46.16, -0.25, 0.00039, 4, 42, 68.91, -27.43, 0.29772, 43, -4.19, -5.38, 0.61133, 44, -25.59, -5.28, 0.09064, 45, -47.07, + -5.28, 0.00031, 4, 42, 69.16, -20.73, 0.21136, 43, 2.51, -5.28, 0.59029, 44, -18.89, -5.17, 0.19654, 45, -40.37, -5.17, 0.00182, 4, 42, 64.11, -19.92, 0.275, 43, 3.05, -0.19, + 0.54348, 44, -18.35, -0.08, 0.17958, 45, -39.83, -0.08, 0.00194, 4, 42, 57.28, -19.35, 0.35002, 43, 3.27, 6.66, 0.48643, 44, -18.14, 6.77, 0.16123, 45, -39.61, 6.77, 0.00232, 4, 42, + 51.26, -18.48, 0.41881, 43, 3.82, 12.72, 0.43213, 44, -17.59, 12.83, 0.1461, 45, -39.06, 12.83, 0.00296, 4, 42, 51.45, -13.1, 0.39313, 43, 9.2, 12.81, 0.35299, 44, -12.2, 12.91, + 0.24433, 45, -33.68, 12.91, 0.00955, 4, 42, 57.34, -13.55, 0.32258, 43, 9.06, 6.91, 0.39406, 44, -12.34, 7.02, 0.27473, 45, -33.82, 7.02, 0.00863, 4, 42, 64.2, -14.31, 0.24476, 43, + 8.66, 0.02, 0.43744, 44, -12.74, 0.12, 0.30953, 45, -34.22, 0.12, 0.00827, 4, 42, 69.38, -14.93, 0.17804, 43, 8.31, -5.19, 0.47328, 44, -13.09, -5.08, 0.3403, 45, -34.57, -5.08, + 0.00838, 4, 42, 69.68, -9.29, 0.17525, 43, 13.97, -5.19, 0.31355, 44, -7.44, -5.08, 0.48153, 45, -28.91, -5.08, 0.02968, 4, 42, 64.27, -9.12, 0.24396, 43, 13.85, 0.22, 0.29088, 44, + -7.55, 0.33, 0.43695, 45, -29.03, 0.33, 0.02821, 4, 42, 57.38, -8.64, 0.32275, 43, 13.97, 7.13, 0.26435, 44, -7.44, 7.23, 0.38552, 45, -28.91, 7.23, 0.02739, 4, 42, 51.61, -8.2, + 0.39269, 43, 14.1, 12.92, 0.24007, 44, -7.3, 13.02, 0.33961, 45, -28.78, 13.02, 0.02763, 4, 42, 51.73, -3.15, 0.39835, 43, 19.16, 13.05, 0.13664, 44, -2.25, 13.16, 0.3972, 45, + -23.72, 13.16, 0.06781, 4, 42, 57.41, -3.5, 0.32898, 43, 19.1, 7.37, 0.14701, 44, -2.3, 7.47, 0.45281, 45, -23.78, 7.47, 0.07119, 4, 42, 64.31, -3.92, 0.24968, 43, 19.05, 0.45, + 0.15947, 44, -2.36, 0.56, 0.51456, 45, -23.83, 0.56, 0.07629, 4, 42, 70.03, -4.3, 0.17972, 43, 18.96, -5.28, 0.17094, 44, -2.44, -5.18, 0.56767, 45, -23.91, -5.18, 0.08167, 4, 42, + 70.31, 1.21, 0.18179, 43, 24.49, -5.27, 0.07557, 44, 3.08, -5.17, 0.56385, 45, -18.39, -5.17, 0.17879, 4, 42, 64.46, 1.3, 0.25204, 43, 24.27, 0.58, 0.07119, 44, 2.86, 0.68, 0.51118, + 45, -18.61, 0.68, 0.16559, 4, 42, 57.52, 1.66, 0.33157, 43, 24.26, 7.52, 0.0672, 44, 2.86, 7.63, 0.44995, 45, -18.62, 7.63, 0.15128, 4, 42, 51.92, 1.69, 0.40101, 43, 23.99, 13.13, + 0.06478, 44, 2.59, 13.23, 0.39483, 45, -18.89, 13.23, 0.13938, 4, 42, 52.17, 6.37, 0.401, 43, 28.68, 13.11, 0.0258, 44, 7.28, 13.22, 0.33427, 45, -14.2, 13.22, 0.23894, 4, 42, 57.7, + 6.22, 0.3309, 43, 28.82, 7.59, 0.02514, 44, 7.42, 7.69, 0.37908, 45, -14.06, 7.69, 0.26488, 4, 42, 64.69, 5.99, 0.25155, 43, 28.96, 0.59, 0.02548, 44, 7.56, 0.7, 0.4293, 45, -13.92, + 0.7, 0.29367, 4, 42, 70.45, 5.95, 0.18206, 43, 29.22, -5.16, 0.02652, 44, 7.82, -5.06, 0.47284, 45, -13.66, -5.06, 0.31858, 4, 42, 70.61, 11.41, 0.19245, 43, 34.69, -5.04, 0.00724, + 44, 13.29, -4.93, 0.3321, 45, -8.19, -4.93, 0.46821, 4, 42, 70.77, 17.07, 0.23948, 43, 40.35, -4.9, 0.00153, 44, 18.94, -4.79, 0.19195, 45, -2.53, -4.79, 0.56704, 4, 42, 71.13, + 23.54, 0.346, 43, 46.82, -4.91, 0.00026, 44, 25.42, -4.81, 0.08922, 45, 3.94, -4.81, 0.56452, 4, 42, 71.67, 31.21, 0.48407, 43, 54.51, -5.05, 4e-05, 44, 33.11, -4.94, 0.03358, 45, + 11.63, -4.94, 0.48231, 4, 42, 66.23, 30.24, 0.54501, 43, 53.26, 0.33, 7e-05, 44, 31.86, 0.43, 0.03077, 45, 10.38, 0.43, 0.42415, 4, 42, 65.41, 22.86, 0.40266, 43, 45.85, 0.77, + 0.00034, 44, 24.45, 0.87, 0.08247, 45, 2.97, 0.87, 0.51452, 4, 42, 64.98, 16.56, 0.30287, 43, 39.53, 0.86, 0.00168, 44, 18.13, 0.97, 0.17579, 45, -3.35, 0.97, 0.51965, 4, 42, 64.87, + 11.12, 0.25994, 43, 34.09, 0.68, 0.00726, 44, 12.69, 0.79, 0.30245, 45, -8.79, 0.79, 0.43035, 4, 42, 57.96, 11, 0.3382, 43, 33.61, 7.58, 0.00776, 44, 12.21, 7.69, 0.26884, 45, -9.27, + 7.69, 0.38519, 4, 42, 58.32, 16.31, 0.37706, 43, 38.93, 7.49, 0.00208, 44, 17.52, 7.6, 0.15821, 45, -3.95, 7.6, 0.46265, 4, 42, 58.9, 22.12, 0.46779, 43, 44.77, 7.23, 0.00052, 44, + 23.36, 7.33, 0.07582, 45, 1.89, 7.33, 0.45586, 4, 42, 59.69, 28.3, 0.65325, 43, 50.97, 6.76, 0.00012, 44, 29.57, 6.86, 0.02541, 45, 8.09, 6.86, 0.32123, 4, 42, 52.82, 26.61, 0.75526, + 43, 48.93, 13.53, 0.00017, 44, 27.52, 13.64, 0.02002, 45, 6.05, 13.64, 0.22455, 4, 42, 52.51, 21.1, 0.52586, 43, 43.41, 13.55, 0.00082, 44, 22, 13.66, 0.07106, 45, 0.53, 13.66, + 0.40226, 4, 42, 52.35, 15.86, 0.44455, 43, 38.16, 13.44, 0.00273, 44, 16.76, 13.54, 0.1436, 45, -4.72, 13.54, 0.40912, 4, 42, 52.31, 10.54, 0.40864, 43, 32.85, 13.19, 0.0088, 44, + 11.45, 13.3, 0.23945, 45, -10.03, 13.3, 0.34311, 4, 42, 70.77, -38.17, 0.52059, 43, -14.82, -7.8, 0.45917, 44, -36.22, -7.7, 0.02022, 45, -57.7, -7.7, 1e-05, 4, 42, 70.83, -34.9, + 0.37517, 43, -11.54, -7.69, 0.58803, 44, -32.95, -7.59, 0.03676, 45, -54.42, -7.59, 4e-05, 4, 42, 70.97, -31.21, 0.31655, 43, -7.85, -7.63, 0.62281, 44, -29.26, -7.53, 0.06054, 45, + -50.73, -7.53, 0.00011, 4, 42, 71.13, -27.77, 0.25662, 43, -4.41, -7.62, 0.64624, 44, -25.82, -7.51, 0.09684, 45, -47.29, -7.51, 0.0003, 4, 42, 71.2, -23.97, 0.20542, 43, -0.61, + -7.48, 0.64718, 44, -22.02, -7.37, 0.14662, 45, -43.49, -7.37, 0.00077, 4, 42, 71.35, -20.96, 0.16774, 43, 2.4, -7.48, 0.62093, 44, -19, -7.37, 0.20946, 45, -40.48, -7.37, 0.00187, + 4, 42, 71.49, -17.96, 0.14406, 43, 5.4, -7.45, 0.56885, 44, -16, -7.35, 0.28288, 45, -37.48, -7.35, 0.00421, 4, 42, 71.65, -15.17, 0.13169, 43, 8.2, -7.46, 0.49722, 44, -13.21, + -7.36, 0.36227, 45, -34.68, -7.36, 0.00882, 4, 42, 71.89, -12.02, 0.12708, 43, 11.35, -7.54, 0.41453, 44, -10.05, -7.44, 0.44117, 45, -31.52, -7.44, 0.01722, 4, 42, 71.98, -9.41, + 0.12668, 43, 13.97, -7.49, 0.32958, 44, -7.43, -7.39, 0.51233, 45, -28.91, -7.39, 0.03141, 4, 42, 72.15, -7.02, 0.12812, 43, 16.36, -7.53, 0.24965, 44, -5.05, -7.43, 0.56851, 45, + -26.52, -7.43, 0.05372, 4, 42, 72.39, -4.46, 0.12979, 43, 18.93, -7.65, 0.1799, 44, -2.47, -7.54, 0.60387, 45, -23.95, -7.54, 0.08644, 4, 42, 72.47, -1.68, 0.13105, 43, 21.71, -7.58, + 0.12302, 44, 0.3, -7.47, 0.61461, 45, -21.17, -7.47, 0.13132, 4, 42, 72.58, 1.2, 0.13159, 43, 24.6, -7.54, 0.07962, 44, 3.19, -7.43, 0.5998, 45, -18.28, -7.43, 0.18899, 4, 42, 72.71, + 3.77, 0.13189, 43, 27.17, -7.53, 0.04862, 44, 5.76, -7.42, 0.56113, 45, -15.71, -7.42, 0.25837, 4, 42, 72.9, 5.95, 0.13282, 43, 29.35, -7.61, 0.02792, 44, 7.95, -7.5, 0.50297, 45, + -13.53, -7.5, 0.33629, 4, 42, 72.96, 8.77, 0.13637, 43, 32.18, -7.52, 0.01503, 44, 10.77, -7.41, 0.43134, 45, -10.7, -7.41, 0.41726, 4, 42, 73.15, 11.31, 0.14539, 43, 34.72, -7.57, + 0.00757, 44, 13.32, -7.46, 0.35328, 45, -8.16, -7.46, 0.49376, 4, 42, 73.26, 14.32, 0.16393, 43, 37.73, -7.53, 0.00355, 44, 16.32, -7.43, 0.27561, 45, -5.15, -7.43, 0.55691, 4, 42, + 73.56, 17.06, 0.19585, 43, 40.48, -7.68, 0.00155, 44, 19.08, -7.58, 0.20422, 45, -2.4, -7.58, 0.59837, 4, 42, 73.65, 19.69, 0.24372, 43, 43.11, -7.63, 0.00063, 44, 21.71, -7.53, + 0.14329, 45, 0.23, -7.53, 0.61235, 4, 42, 73.87, 23.74, 0.30631, 43, 47.17, -7.64, 0.00024, 44, 25.77, -7.53, 0.09501, 45, 4.29, -7.53, 0.59844, 4, 42, 74.01, 28.34, 0.3775, 43, + 51.77, -7.54, 9e-05, 44, 30.37, -7.43, 0.05972, 45, 8.89, -7.43, 0.5627, 4, 42, 74.28, 31.7, 0.44548, 43, 55.14, -7.63, 3e-05, 44, 33.74, -7.53, 0.03652, 45, 12.26, -7.53, 0.51797, + 4, 42, 74.78, 35.38, 0.56131, 43, 58.84, -7.93, 1e-05, 44, 37.44, -7.83, 0.02128, 45, 15.96, -7.83, 0.41739 + ], + "hull": 44, + "edges": [ + 78, 76, 86, 0, 78, 80, 80, 82, 82, 84, 84, 86, 0, 94, 76, 96, 62, 64, 74, 76, 102, 96, 74, 102, 104, 90, 106, 98, 108, 88, 110, 100, 112, 92, 114, 94, 2, 0, 114, 2, 72, 74, 116, 102, + 72, 116, 118, 104, 120, 106, 122, 108, 124, 110, 126, 112, 128, 114, 4, 2, 128, 4, 70, 72, 130, 116, 70, 130, 132, 118, 134, 120, 136, 122, 138, 124, 140, 126, 142, 128, 8, 6, 6, 4, + 142, 6, 68, 70, 144, 130, 68, 144, 146, 132, 148, 134, 150, 136, 152, 138, 154, 140, 156, 142, 156, 8, 8, 10, 10, 12, 12, 158, 158, 156, 10, 158, 160, 154, 162, 152, 164, 150, 166, + 148, 168, 146, 170, 144, 64, 66, 66, 68, 170, 66, 82, 172, 172, 88, 98, 172, 172, 100, 80, 174, 174, 90, 96, 174, 84, 176, 176, 92, 94, 176, 90, 178, 178, 96, 102, 180, 180, 104, + 178, 180, 180, 182, 182, 184, 184, 186, 186, 188, 90, 190, 190, 98, 104, 192, 192, 106, 190, 192, 192, 194, 194, 196, 196, 198, 198, 200, 88, 202, 202, 98, 106, 204, 204, 108, 202, + 204, 204, 206, 206, 208, 208, 210, 210, 212, 88, 214, 214, 100, 108, 216, 216, 110, 214, 216, 216, 218, 218, 220, 220, 222, 222, 224, 92, 226, 226, 100, 110, 228, 228, 112, 226, 228, + 228, 230, 230, 232, 232, 234, 234, 236, 92, 238, 238, 94, 112, 240, 240, 114, 238, 240, 240, 242, 242, 244, 244, 246, 246, 248, 12, 14, 170, 64, 116, 250, 250, 182, 130, 252, 252, + 184, 250, 252, 144, 254, 254, 186, 252, 254, 170, 256, 256, 188, 254, 256, 58, 60, 60, 62, 118, 258, 258, 182, 132, 260, 260, 184, 258, 260, 146, 262, 262, 186, 260, 262, 168, 264, + 264, 188, 262, 264, 54, 56, 56, 58, 50, 52, 52, 54, 168, 266, 266, 200, 146, 268, 268, 198, 266, 268, 132, 270, 270, 196, 268, 270, 118, 272, 272, 194, 270, 272, 120, 274, 274, 194, + 134, 276, 276, 196, 274, 276, 148, 278, 278, 198, 276, 278, 166, 280, 280, 200, 278, 280, 46, 48, 48, 50, 42, 44, 44, 46, 166, 282, 282, 212, 148, 284, 284, 210, 282, 284, 134, 286, + 286, 208, 284, 286, 120, 288, 288, 206, 286, 288, 122, 290, 290, 206, 136, 292, 292, 208, 290, 292, 150, 294, 294, 210, 292, 294, 164, 296, 296, 212, 294, 296, 38, 40, 40, 42, 34, + 36, 36, 38, 164, 298, 298, 224, 150, 300, 300, 222, 298, 300, 136, 302, 302, 220, 300, 302, 122, 304, 304, 218, 302, 304, 124, 306, 306, 218, 138, 308, 308, 220, 306, 308, 152, 310, + 310, 222, 308, 310, 162, 312, 312, 224, 310, 312, 30, 32, 32, 34, 26, 28, 28, 30, 162, 314, 314, 236, 22, 24, 24, 26, 160, 316, 316, 236, 18, 20, 20, 22, 160, 318, 318, 248, 14, 16, + 16, 18, 158, 320, 320, 248, 156, 322, 322, 246, 320, 322, 154, 324, 324, 246, 318, 324, 154, 326, 326, 234, 316, 326, 152, 328, 328, 234, 314, 328, 138, 330, 330, 232, 328, 330, 140, + 332, 332, 232, 326, 332, 140, 334, 334, 244, 324, 334, 142, 336, 336, 244, 322, 336, 128, 338, 338, 242, 336, 338, 126, 340, 340, 242, 334, 340, 126, 342, 342, 230, 332, 342, 124, + 344, 344, 230, 330, 344, 62, 346, 346, 170, 60, 348, 348, 256, 346, 348, 58, 350, 350, 188, 348, 350, 56, 352, 352, 264, 350, 352, 54, 354, 354, 168, 352, 354, 52, 356, 356, 266, + 354, 356, 50, 358, 358, 200, 356, 358, 48, 360, 360, 280, 358, 360, 46, 362, 362, 166, 360, 362, 44, 364, 364, 282, 362, 364, 42, 366, 366, 212, 364, 366, 40, 368, 368, 296, 366, + 368, 38, 370, 370, 164, 368, 370, 36, 372, 372, 298, 370, 372, 34, 374, 374, 224, 372, 374, 32, 376, 376, 312, 374, 376, 30, 378, 378, 162, 376, 378, 28, 380, 380, 314, 378, 380, 26, + 382, 382, 236, 380, 382, 24, 384, 384, 316, 382, 384, 22, 386, 386, 160, 384, 386, 20, 388, 388, 318, 386, 388, 18, 390, 390, 248, 388, 390, 16, 392, 392, 320, 390, 392, 14, 394, + 394, 158, 392, 394 + ], + "width": 83, + "height": 74, + "path": "beast-summer-02-lv2.ear-right-bubble" + } + }, + "ear-right-dot-01": {"ear-right-dot": {"x": -0.78, "y": -0.78, "rotation": -0.95, "width": 25, "height": 25, "path": "beast-summer-02-lv2.ear-right-dot"}}, + "ear-right-dot-02": {"ear-right-dot": {"x": -0.78, "y": -0.78, "rotation": -0.95, "width": 25, "height": 25, "path": "beast-summer-02-lv2.ear-right-dot"}}, + "ear-right-dot-03": {"ear-right-dot": {"x": -0.78, "y": -0.78, "rotation": -0.95, "width": 25, "height": 25, "path": "beast-summer-02-lv2.ear-right-dot"}}, + "ear-right-dot-04": {"ear-right-dot": {"x": -0.78, "y": -0.78, "rotation": -0.95, "width": 25, "height": 25, "path": "beast-summer-02-lv2.ear-right-dot"}}, + "ear-right-dot-05": {"ear-right-dot": {"x": -0.78, "y": -0.78, "rotation": -0.95, "width": 25, "height": 25, "path": "beast-summer-02-lv2.ear-right-dot"}}, + "ear-right-dot-06": {"ear-right-dot": {"x": -0.78, "y": -0.78, "rotation": -0.95, "width": 25, "height": 25, "path": "beast-summer-02-lv2.ear-right-dot"}}, + "ear-right-dot-07": {"ear-right-dot": {"x": -0.78, "y": -0.78, "rotation": -0.95, "width": 25, "height": 25, "path": "beast-summer-02-lv2.ear-right-dot"}}, + "ear-right-dot-08": {"ear-right-dot": {"x": -0.78, "y": -0.78, "rotation": -0.95, "width": 25, "height": 25, "path": "beast-summer-02-lv2.ear-right-dot"}}, + "ear-right-dot-09": {"ear-right-dot": {"x": -0.78, "y": -0.78, "rotation": -0.95, "width": 25, "height": 25, "path": "beast-summer-02-lv2.ear-right-dot"}}, + "ear-right-dot-10": {"ear-right-dot": {"x": -0.78, "y": -0.78, "rotation": -0.95, "width": 25, "height": 25, "path": "beast-summer-02-lv2.ear-right-dot"}}, + "ear-right-dot-11": {"ear-right-dot": {"x": -0.78, "y": -0.78, "rotation": -0.95, "width": 25, "height": 25, "path": "beast-summer-02-lv2.ear-right-dot"}}, + "ear-right-dot-12": {"ear-right-dot": {"x": -0.78, "y": -0.78, "rotation": -0.95, "width": 25, "height": 25, "path": "beast-summer-02-lv2.ear-right-dot"}}, + "ear-right-dot-13": {"ear-right-dot": {"x": -0.78, "y": -0.78, "rotation": -0.95, "width": 25, "height": 25, "path": "beast-summer-02-lv2.ear-right-dot"}}, + "ear-right-dot-14": {"ear-right-dot": {"x": -0.78, "y": -0.78, "rotation": -0.95, "width": 25, "height": 25, "path": "beast-summer-02-lv2.ear-right-dot"}}, + "ear-right-dot-15": {"ear-right-dot": {"x": -0.78, "y": -0.78, "rotation": -0.95, "width": 25, "height": 25, "path": "beast-summer-02-lv2.ear-right-dot"}}, + "ear-right-dot-16": {"ear-right-dot": {"x": -0.78, "y": -0.78, "rotation": -0.95, "width": 25, "height": 25, "path": "beast-summer-02-lv2.ear-right-dot"}}, + "ear-right-dot-17": {"ear-right-dot": {"x": -0.78, "y": -0.78, "rotation": -0.95, "width": 25, "height": 25, "path": "beast-summer-02-lv2.ear-right-dot"}}, + "ear-right-dot-18": {"ear-right-dot": {"x": -0.78, "y": -0.78, "rotation": -0.95, "width": 25, "height": 25, "path": "beast-summer-02-lv2.ear-right-dot"}}, + "ear-right-dot-19": {"ear-right-dot": {"x": -0.78, "y": -0.78, "rotation": -0.95, "width": 25, "height": 25, "path": "beast-summer-02-lv2.ear-right-dot"}}, + "ear-right-dot-20": {"ear-right-dot": {"x": -0.78, "y": -0.78, "rotation": -0.95, "width": 25, "height": 25, "path": "beast-summer-02-lv2.ear-right-dot"}}, + "ear-right-under": {"ear-right-under": {"x": 83.92, "y": -16.69, "rotation": -93, "width": 134, "height": 205, "path": "beast-summer-02-lv2.ear-right-under"}}, + "ear-right-upper": {"ear-right-upper": {"x": 92.41, "y": -17.13, "rotation": -93, "width": 142, "height": 264, "path": "beast-summer-02-lv2.ear-right-upper"}}, + "eyes": { + "eyes": {"x": 22.27, "y": 23.68, "width": 274, "height": 103, "path": "beast-summer-02-lv2.eyes"}, + "eyes-angry": {"x": 22.27, "y": 23.68, "width": 274, "height": 103, "path": "beast-summer-02-lv2.eyes-angry"}, + "eyes-happy": {"x": 22.27, "y": 23.68, "width": 274, "height": 103, "path": "beast-summer-02-lv2.eyes-happy"}, + "eyes-shut": {"x": 22.27, "y": 23.68, "width": 274, "height": 103, "path": "beast-summer-02-lv2.eyes-shut"} + }, + "eyes-happy-accessory": {"eyes-happy-accessory": {"x": 0.37, "y": 0.4, "scaleX": 1.4, "scaleY": 1.4, "width": 101, "height": 107, "path": "beast-summer-02-lv2.eyes-happy-accessory"}}, + "eyes-upper": {"eyes-upper": {"x": 22.77, "y": 23.18, "width": 373, "height": 174, "path": "beast-summer-02-lv2.eyes-upper"}}, + "horn": {"horn": {"x": 87.68, "y": -7.27, "rotation": -90, "width": 264, "height": 181, "path": "beast-summer-02-lv2.horn"}}, + "mouth": { + "mouth": {"x": -8.23, "y": 100.18, "width": 283, "height": 280, "path": "beast-summer-02-lv2.mouth"}, + "mouth-bite": {"x": -8.23, "y": 100.18, "width": 283, "height": 280, "path": "beast-summer-02-lv2.mouth-bite"}, + "mouth-open": {"x": -8.23, "y": 93.18, "width": 283, "height": 294, "path": "beast-summer-02-lv2.mouth-open"}, + "mouth-smile": {"x": -8.23, "y": 100.18, "width": 283, "height": 280, "path": "beast-summer-02-lv2.mouth-smile"} + }, + "mouth-accessory": { + "mouth-accessory": { + "type": "mesh", + "uvs": [ + 0.7567, 0.0473, 0.86697, 0.14039, 0.9443, 0.25209, 0.99714, 0.36666, 0.99999, 0.49597, 1, 0.61625, 0.9486, 0.73368, 0.85981, 0.85684, 0.74238, 0.95422, 0.58914, 1, 0.46884, 1, + 0.36484, 0.99858, 0.24169, 0.95082, 0.12854, 0.86646, 0.03732, 0.75174, 0, 0.59723, 0, 0.48254, 0, 0.36237, 0.04691, 0.22488, 0.14286, 0.10888, 0.25027, 0.03298, 0.37916, 0, 0.49749, + 0, 0.62208, 0, 0.48816, 0.49691, 0.38984, 0.47048, 0.40039, 0.4428, 0.42008, 0.42041, 0.44087, 0.4047, 0.46611, 0.39392, 0.49007, 0.39257, 0.5155, 0.39441, 0.54363, 0.40403, 0.56948, + 0.42037, 0.58681, 0.44396, 0.59625, 0.46925, 0.60239, 0.4967, 0.59962, 0.5229, 0.58591, 0.54718, 0.56617, 0.57246, 0.53987, 0.58993, 0.50841, 0.5978, 0.48422, 0.59958, 0.46389, + 0.59563, 0.44255, 0.58693, 0.41915, 0.56782, 0.40098, 0.54296, 0.39091, 0.5164, 0.38677, 0.494, 0.25326, 0.49016, 0.26189, 0.43608, 0.28722, 0.37303, 0.33073, 0.32, 0.38007, 0.28612, + 0.43888, 0.26671, 0.49242, 0.26434, 0.5491, 0.26844, 0.61141, 0.29055, 0.66979, 0.32597, 0.72081, 0.37204, 0.74533, 0.4311, 0.75435, 0.49642, 0.74415, 0.5566, 0.71527, 0.6137, + 0.66814, 0.67121, 0.6053, 0.70764, 0.53338, 0.72221, 0.47953, 0.72167, 0.43531, 0.71188, 0.25606, 0.54343, 0.2836, 0.60497, 0.33013, 0.6593, 0.38745, 0.69572, 0.2371, 0.756, 0.32258, + 0.81152, 0.40412, 0.83877, 0.47432, 0.85748, 0.5622, 0.86577, 0.67514, 0.83328, 0.76201, 0.76212, 0.82762, 0.67147, 0.86788, 0.58544, 0.89046, 0.49617, 0.88879, 0.39439, 0.84496, + 0.30541, 0.77906, 0.22313, 0.69067, 0.15785, 0.58965, 0.1164, 0.49532, 0.10584, 0.40602, 0.11317, 0.30758, 0.14475, 0.22046, 0.19609, 0.15118, 0.28916, 0.11571, 0.39679, 0.10936, + 0.48603, 0.11577, 0.57155, 0.16414, 0.68085 + ], + "triangles": [ + 96, 69, 70, 73, 70, 71, 77, 66, 65, 34, 58, 59, 60, 35, 59, 61, 36, 60, 31, 30, 55, 30, 29, 55, 32, 31, 56, 33, 32, 57, 28, 53, 29, 27, 52, 28, 27, 26, 52, 34, 33, 58, 25, 50, 26, + 48, 49, 25, 36, 35, 60, 69, 48, 47, 37, 36, 62, 70, 47, 46, 38, 37, 63, 71, 46, 45, 39, 38, 64, 44, 71, 45, 72, 44, 43, 40, 39, 65, 68, 72, 43, 68, 43, 42, 67, 68, 42, 66, 41, 40, + 67, 42, 41, 66, 67, 41, 24, 29, 30, 24, 30, 31, 24, 31, 32, 24, 32, 33, 24, 33, 34, 24, 34, 35, 24, 35, 36, 28, 29, 24, 27, 28, 24, 26, 27, 24, 25, 26, 24, 48, 25, 24, 47, 48, 24, + 37, 24, 36, 46, 47, 24, 38, 24, 37, 45, 46, 24, 39, 24, 38, 44, 45, 24, 24, 43, 44, 39, 40, 24, 43, 24, 42, 40, 41, 24, 41, 42, 24, 35, 34, 59, 55, 29, 54, 53, 54, 29, 56, 31, 55, + 57, 32, 56, 52, 53, 28, 26, 51, 52, 50, 51, 26, 49, 50, 25, 69, 49, 48, 70, 69, 47, 63, 37, 62, 71, 70, 46, 64, 38, 63, 44, 72, 71, 65, 39, 64, 65, 66, 40, 58, 33, 57, 62, 36, 61, + 75, 72, 68, 67, 75, 68, 74, 71, 72, 76, 67, 66, 22, 89, 21, 87, 88, 22, 88, 89, 22, 90, 20, 21, 23, 87, 22, 86, 87, 23, 89, 90, 21, 91, 19, 20, 0, 86, 23, 85, 86, 0, 90, 91, 20, 1, + 85, 0, 18, 19, 91, 84, 85, 1, 88, 54, 89, 56, 55, 88, 55, 54, 88, 53, 90, 89, 87, 56, 88, 57, 56, 87, 54, 53, 89, 52, 91, 90, 92, 18, 91, 86, 57, 87, 58, 57, 86, 2, 84, 1, 53, 52, + 90, 92, 91, 52, 85, 58, 86, 59, 58, 85, 17, 18, 92, 83, 84, 2, 84, 59, 85, 51, 92, 52, 3, 83, 2, 60, 59, 84, 93, 17, 92, 93, 92, 51, 83, 60, 84, 50, 93, 51, 16, 17, 93, 94, 16, 93, + 94, 93, 50, 49, 94, 50, 83, 3, 4, 82, 83, 4, 60, 83, 82, 61, 60, 82, 69, 95, 94, 69, 94, 49, 81, 61, 82, 62, 61, 81, 95, 15, 16, 95, 16, 94, 82, 4, 5, 81, 82, 5, 80, 62, 81, 63, 62, + 80, 96, 95, 69, 6, 81, 5, 80, 81, 6, 14, 15, 95, 14, 95, 96, 73, 96, 70, 79, 63, 80, 64, 63, 79, 74, 73, 71, 78, 64, 79, 65, 64, 78, 74, 72, 75, 7, 80, 6, 79, 80, 7, 76, 75, 67, 77, + 65, 78, 76, 66, 77, 13, 14, 96, 13, 96, 73, 12, 73, 74, 13, 73, 12, 7, 8, 78, 7, 78, 79, 11, 74, 75, 10, 11, 75, 12, 74, 11, 76, 10, 75, 10, 76, 77, 9, 77, 78, 9, 78, 8, 10, 77, 9 + ], + "vertices": [ + 1, 29, 42.58, 72.34, 1, 1, 29, 60.45, 57.26, 1, 1, 29, 72.98, 39.16, 1, 1, 29, 81.54, 20.6, 1, 1, 29, 82, -0.34, 1, 1, 29, 82, -19.83, 1, 1, 29, 73.67, -38.85, 1, 1, 29, 59.29, + -58.81, 1, 1, 29, 40.26, -74.58, 1, 1, 29, 15.44, -82, 1, 1, 29, -4.05, -82, 1, 1, 29, -20.9, -81.77, 1, 1, 29, -40.85, -74.03, 1, 1, 29, -59.18, -60.37, 1, 1, 29, -73.95, -41.78, 1, + 1, 29, -82, -16.75, 1, 1, 29, -82, 1.83, 1, 1, 29, -82, 21.3, 1, 1, 29, -72.4, 43.57, 1, 1, 29, -56.86, 62.36, 1, 1, 29, -39.46, 74.66, 1, 1, 29, -18.58, 82, 1, 1, 29, 0.59, 82, 1, + 1, 29, 20.78, 80.84, 1, 1, 81, -0.92, -0.5, 1, 1, 81, -16.85, 3.78, 1, 1, 81, -15.14, 8.27, 1, 1, 81, -11.95, 11.89, 1, 1, 81, -8.58, 14.44, 1, 1, 81, -4.49, 16.19, 1, 1, 81, -0.61, + 16.41, 1, 1, 81, 3.51, 16.11, 1, 1, 81, 8.07, 14.55, 1, 1, 81, 12.26, 11.9, 1, 1, 81, 15.06, 8.08, 1, 1, 81, 16.59, 3.98, 1, 1, 81, 17.59, -0.46, 1, 1, 81, 17.14, -4.71, 1, 1, 81, + 14.92, -8.64, 1, 1, 81, 11.72, -12.74, 1, 1, 81, 7.46, -15.57, 1, 1, 81, 2.36, -16.84, 1, 1, 81, -1.56, -17.13, 1, 1, 81, -4.85, -16.49, 1, 1, 81, -8.31, -15.08, 1, 1, 81, -12.1, + -11.99, 1, 1, 81, -15.04, -7.96, 1, 1, 81, -16.67, -3.66, 1, 1, 81, -17.34, -0.03, 1, 2, 29, -38.97, 0.6, 0.37475, 81, -38.97, 0.6, 0.62525, 2, 29, -37.57, 9.36, 0.38176, 81, -37.57, + 9.36, 0.61824, 2, 29, -33.47, 19.57, 0.39514, 81, -33.47, 19.57, 0.60486, 2, 29, -26.42, 28.16, 0.40154, 81, -26.42, 28.16, 0.59846, 2, 29, -18.43, 33.65, 0.40298, 81, -18.43, 33.65, + 0.59702, 2, 29, -8.9, 36.8, 0.39723, 81, -8.9, 36.8, 0.60277, 2, 29, -0.23, 37.18, 0.38672, 81, -0.23, 37.18, 0.61328, 2, 29, 8.95, 36.51, 0.39243, 81, 8.95, 36.51, 0.60757, 2, 29, + 19.05, 32.93, 0.39729, 81, 19.05, 32.93, 0.60271, 2, 29, 28.51, 27.19, 0.41715, 81, 28.51, 27.19, 0.58285, 2, 29, 36.77, 19.73, 0.45304, 81, 36.77, 19.73, 0.54696, 2, 29, 40.74, + 10.16, 0.44594, 81, 40.74, 10.16, 0.55406, 2, 29, 42.2, -0.42, 0.43856, 81, 42.2, -0.42, 0.56144, 2, 29, 40.55, -10.17, 0.41782, 81, 40.55, -10.17, 0.58218, 2, 29, 35.87, -19.42, + 0.38686, 81, 35.87, -19.42, 0.61314, 2, 29, 28.24, -28.73, 0.36878, 81, 28.24, -28.73, 0.63122, 2, 29, 18.06, -34.64, 0.3386, 81, 18.06, -34.64, 0.6614, 2, 29, 6.41, -37, 0.30037, + 81, 6.41, -37, 0.69963, 2, 29, -2.32, -36.91, 0.28415, 81, -2.32, -36.91, 0.71585, 2, 29, -9.48, -35.32, 0.27399, 81, -9.48, -35.32, 0.72601, 2, 29, -38.52, -8.03, 0.36783, 81, + -38.52, -8.03, 0.63217, 2, 29, -34.06, -18, 0.33446, 81, -34.06, -18, 0.66554, 2, 29, -26.52, -26.8, 0.30599, 81, -26.52, -26.8, 0.69401, 2, 29, -17.23, -32.71, 0.28378, 81, -17.23, + -32.71, 0.71622, 2, 29, -41.59, -42.47, 0.73847, 81, -41.59, -42.47, 0.26153, 2, 29, -27.74, -51.46, 0.71173, 81, -27.74, -51.46, 0.28827, 2, 29, -14.53, -55.88, 0.69513, 81, -14.53, + -55.88, 0.30487, 2, 29, -3.16, -58.91, 0.72225, 81, -3.16, -58.91, 0.27775, 2, 29, 11.08, -60.25, 0.77228, 81, 11.08, -60.25, 0.22772, 2, 29, 29.37, -54.99, 0.80171, 81, 29.37, + -54.99, 0.19829, 2, 29, 43.44, -43.46, 0.78981, 81, 43.44, -43.46, 0.21019, 2, 29, 54.07, -28.78, 0.79382, 81, 54.07, -28.78, 0.20618, 2, 29, 60.6, -14.84, 0.827, 81, 60.6, -14.84, + 0.173, 2, 29, 64.25, -0.38, 0.87698, 81, 64.25, -0.38, 0.12302, 2, 29, 63.98, 16.11, 0.92141, 81, 63.98, 16.11, 0.07859, 2, 29, 56.88, 30.53, 0.90642, 81, 56.88, 30.53, 0.09358, 2, + 29, 46.21, 43.86, 0.90058, 81, 46.21, 43.86, 0.09942, 2, 29, 31.89, 54.43, 0.8953, 81, 31.89, 54.43, 0.1047, 2, 29, 15.52, 61.14, 0.89934, 81, 15.52, 61.14, 0.10066, 2, 29, 0.24, + 62.86, 0.89762, 81, 0.24, 62.86, 0.10238, 2, 29, -14.22, 61.67, 0.90341, 81, -14.22, 61.67, 0.09659, 2, 29, -30.17, 56.55, 0.9151, 81, -30.17, 56.55, 0.0849, 2, 29, -44.28, 48.24, + 0.93596, 81, -44.28, 48.24, 0.06404, 2, 29, -55.51, 33.16, 0.90966, 81, -55.51, 33.16, 0.09034, 2, 29, -61.25, 15.72, 0.86888, 81, -61.25, 15.72, 0.13112, 2, 29, -62.28, 1.26, + 0.83823, 81, -62.28, 1.26, 0.16177, 2, 29, -61.24, -12.59, 0.82811, 81, -61.24, -12.59, 0.17189, 2, 29, -53.41, -30.3, 0.78788, 81, -53.41, -30.3, 0.21212 + ], + "hull": 24, + "edges": [ + 18, 20, 18, 16, 16, 14, 14, 12, 8, 10, 12, 10, 8, 6, 6, 4, 4, 2, 2, 0, 44, 46, 0, 46, 42, 44, 42, 40, 40, 38, 38, 36, 32, 34, 36, 34, 30, 32, 30, 28, 28, 26, 26, 24, 20, 22, 24, 22, + 50, 48, 52, 48, 50, 52, 54, 48, 52, 54, 56, 48, 54, 56, 58, 48, 56, 58, 60, 48, 58, 60, 62, 48, 60, 62, 64, 48, 62, 64, 66, 48, 64, 66, 68, 48, 66, 68, 70, 48, 68, 70, 72, 48, 70, + 72, 74, 48, 72, 74, 76, 48, 74, 76, 78, 48, 76, 78, 80, 48, 78, 80, 82, 48, 80, 82, 84, 48, 82, 84, 86, 48, 84, 86, 88, 48, 86, 88, 90, 48, 88, 90, 92, 48, 90, 92, 94, 48, 92, 94, + 96, 48, 94, 96, 96, 50, 98, 96, 100, 50, 98, 100, 102, 52, 100, 102, 104, 54, 102, 104, 106, 56, 104, 106, 108, 58, 106, 108, 110, 60, 108, 110, 112, 62, 110, 112, 114, 64, 112, 114, + 116, 66, 114, 116, 118, 68, 116, 118, 120, 70, 118, 120, 122, 72, 120, 122, 124, 74, 122, 124, 126, 76, 124, 126, 128, 78, 126, 128, 130, 80, 128, 130, 132, 82, 130, 132, 134, 84, + 132, 134, 136, 86, 134, 136, 138, 94, 98, 138, 140, 92, 138, 140, 142, 90, 140, 142, 144, 88, 142, 144, 144, 136, 26, 146, 146, 142, 24, 148, 148, 144, 146, 148, 22, 150, 150, 136, + 148, 150, 20, 152, 152, 134, 150, 152, 18, 154, 154, 132, 152, 154, 16, 156, 156, 130, 154, 156, 14, 158, 158, 128, 156, 158, 12, 160, 160, 126, 158, 160, 10, 162, 162, 124, 160, + 162, 8, 164, 164, 122, 162, 164, 6, 166, 166, 120, 164, 166, 4, 168, 168, 118, 166, 168, 2, 170, 170, 116, 168, 170, 0, 172, 172, 114, 170, 172, 46, 174, 174, 112, 172, 174, 44, 176, + 176, 110, 174, 176, 42, 178, 178, 108, 176, 178, 40, 180, 180, 106, 178, 180, 38, 182, 182, 104, 180, 182, 36, 184, 184, 102, 182, 184, 34, 186, 186, 100, 184, 186, 32, 188, 188, 98, + 186, 188, 30, 190, 190, 138, 188, 190, 28, 192, 192, 140, 190, 192, 192, 146 + ], + "width": 164, + "height": 164, + "path": "beast-summer-02-lv2.mouth-accessory" + } + }, + "tail": {"tail": {"x": 110.7, "y": 26.4, "rotation": 12, "width": 279, "height": 281, "path": "beast-summer-02-lv2.tail"}} + } + } + ], + "events": {"hit": {}, "hit-buff": {}, "jump": {}, "start-attack": {}}, + "keyAnimations": { + "activity/appear": "1023093953", + "activity/bath": "3305387968", + "attack/ranged/cast-fly": "4180526371", + "attack/ranged/cast-high": "164191126", + "attack/ranged/cast-low": "198813017", + "attack/ranged/cast-multi": "151119", + "attack/ranged/cast-tail": "3850719809", + "action/mix/ear-animation": "901954966", + "activity/eat-bite": "1137807767", + "activity/eat-chew": "1988236421", + "activity/entrance": "3768378365", + "defense/evade": "1735454995", + "activity/evolve": "649307630", + "action/mix/eyes-animation": "3799301307", + "battle/get-buff": "1455190363", + "battle/get-debuff": "606904312", + "defense/hit-by-normal": "978716858", + "defense/hit-by-normal-crit": "3941256645", + "defense/hit-by-normal-crit2": "2130010601", + "defense/hit-by-normal-dramatic": "2527908154", + "defense/hit-by-normal-dramatic2": "3823092125", + "defense/hit-by-normal2": "2045974966", + "defense/hit-by-ranged-attack": "2207699263", + "defense/hit-by-ranged-attack2": "2224561612", + "defense/hit-with-shield": "390714790", + "attack/melee/horn-gore": "1327954218", + "attack/melee/mouth-bite": "2237748264", + "action/move-back": "3766271173", + "action/move-forward": "2945160014", + "attack/melee/multi-attack": "3774600630", + "action/idle/normal": "1659336865", + "attack/melee/normal-attack": "3305373483", + "action/mix/normal-mouth-animation": "1178295570", + "action/idle/normal2": "3503981622", + "activity/prepare": "405864717", + "action/idle/random-01": "554401889", + "action/idle/random-02": "3634120758", + "action/idle/random-03": "2021333900", + "action/idle/random-04": "1003789695", + "action/idle/random-05": "2745614147", + "action/run": "3942433225", + "draft/run-origin": "237238075", + "attack/melee/shrimp": "3833448733", + "activity/sleep": "100562494", + "attack/melee/tail-multi-slap": "3317139533", + "attack/melee/tail-roll": "3108617565", + "attack/melee/tail-smash": "519942130", + "attack/melee/tail-thrash": "628713175", + "activity/victory-pose-back-flip": "2227634241" + } + }, + "aquatic-summer-02-lv2": { + "bones": [ + {"name": "@root"}, {"name": "@pivot-main", "parent": "@root"}, {"name": "@pivot-back", "parent": "@pivot-main", "x": 205, "y": 180, "color": "ff0101ff"}, + {"name": "@pivot-center", "parent": "@pivot-back", "x": -215.11, "y": -5.25, "color": "ff0101ff"}, + {"name": "@axie", "parent": "@pivot-center", "length": 213.28, "rotation": 179.04, "x": 196.39, "y": 5.16}, {"name": "@back", "parent": "@axie", "rotation": -179.04, "x": 37.63, "y": -198.19}, + {"name": "back", "parent": "@back", "length": 149.41, "rotation": 58, "x": -13.97, "y": 26.3, "transform": "noScale"}, + {"name": "@body", "parent": "@axie", "length": 226.28, "rotation": -8.35, "x": 224.58, "y": -0.53}, {"name": "@ear-left", "parent": "@axie", "rotation": -179.04, "x": 112.7, "y": -203.23}, + {"name": "ear-left", "parent": "@ear-left", "length": 113.61, "rotation": 90, "x": -27, "y": 19, "transform": "noScale"}, + {"name": "@ear-right", "parent": "@axie", "rotation": -179.04, "x": 405.28, "y": -235.33}, + {"name": "ear-right", "parent": "@ear-right", "length": 119.39, "rotation": 93, "x": -30, "y": -15, "transform": "noScale"}, + {"name": "@eyes", "parent": "@axie", "rotation": -179.04, "x": 384.24, "y": -113.67}, {"name": "@horn", "parent": "@axie", "rotation": -179.04, "x": 327.92, "y": -214.63}, + {"name": "horn", "parent": "@horn", "length": 176.72, "rotation": 90, "y": 18, "transform": "noScale"}, + {"name": "@leg-back-left", "parent": "@axie", "length": 76.4, "rotation": 100.96, "x": -15.3, "y": 102.56, "transform": "noScale"}, + {"name": "@leg-front-left", "parent": "@axie", "length": 51.19, "rotation": 93.86, "x": 134.77, "y": 149.55, "transform": "noScale"}, + {"name": "@leg-front-right", "parent": "@axie", "length": 74.83, "rotation": 83.2, "x": 382.95, "y": 121.78, "transform": "noScale"}, + {"name": "@mouth", "parent": "@axie", "rotation": -179.04, "x": 382.23, "y": 6.31, "color": "abe323ff"}, + {"name": "body-pattern", "parent": "@body", "rotation": -170.69, "x": -267.21, "y": -49.4, "transform": "noScale"}, {"name": "@shadow", "parent": "@root", "color": "e6d713ff"}, + {"name": "@tail", "parent": "@axie", "rotation": -179.04, "x": -11.76, "y": 61.72}, + {"name": "tail", "parent": "@tail", "length": 203.67, "rotation": -12, "x": 16, "y": 72.87, "transform": "noScale"}, + {"name": "leg-front-right-IK", "parent": "@pivot-main", "x": -195.99, "y": -10.21, "color": "ff3f00ff"}, + {"name": "leg-front-left-IK", "parent": "@pivot-main", "x": 42.3, "y": -18.42, "color": "ff3f00ff"}, + {"name": "leg-back-left-IK", "parent": "@pivot-main", "x": 208.57, "y": 1.35, "color": "ff3f00ff"}, {"name": "@ball", "parent": "@root", "y": 191, "color": "f3981bff"}, + {"name": "ball", "parent": "@ball", "y": -191, "color": "f4a729ff"}, {"name": "mouth-bubble", "parent": "@mouth", "x": -247.51, "y": -1.83}, + {"name": "mouth-accessory", "parent": "mouth-bubble", "x": -67.84, "y": 101.83}, {"name": "eyes-happy-accessory", "parent": "@eyes", "x": 142.51, "y": 62.21}, + {"name": "ear-right-bubble", "parent": "ear-right", "length": 40.07, "rotation": -179.99, "x": 189.28, "y": -17.76}, + {"name": "ear-left-bubble", "parent": "ear-left", "length": 48.54, "rotation": 176.27, "x": 194.33, "y": -25.1, "scaleX": 0.9478, "scaleY": 1.223}, + {"name": "ear-left-all-bubble", "parent": "ear-left", "length": 26.1, "rotation": 0.95, "x": -6.64, "y": -27.7, "color": "3002ffff"}, + {"name": "ear-right-dot-01", "parent": "ear-left-all-bubble", "rotation": -90.95, "x": -13.64, "y": 22.67, "scaleX": 0.3508, "scaleY": 0.3508, "color": "2f9bffff"}, + {"name": "ear-left-dot-01", "parent": "ear-left-all-bubble", "rotation": -90.95, "x": -28.82, "y": -24.72, "scaleX": 0.7755, "scaleY": 0.7755, "color": "2f9bffff"}, + {"name": "ear-right-bubble-02", "parent": "ear-right-bubble", "rotation": 60.75, "x": 54.12, "y": -36.76}, + {"name": "ear-right-bubble-03", "parent": "ear-right-bubble", "rotation": 86.99, "x": 57.27, "y": 1.68}, + {"name": "ear-right-bubble-04", "parent": "ear-right-bubble", "rotation": 86.99, "x": 69.87, "y": 43.59}, + {"name": "ear-left-bubble-02", "parent": "ear-left-bubble", "rotation": 93.73, "x": 56.21, "y": -21.92}, + {"name": "ear-left-bubble-03", "parent": "ear-left-bubble", "rotation": 58.6, "x": 59.07, "y": 10.64}, + {"name": "ear-left-bubble-04", "parent": "ear-left-bubble", "rotation": 33.8, "x": 64.18, "y": 41.28}, + {"name": "ear-right-bubble-05", "parent": "ear-right", "length": 40.07, "rotation": -179.99, "x": 189.28, "y": -17.76}, + {"name": "ear-right-bubble-06", "parent": "ear-right-bubble-05", "rotation": 60.75, "x": 54.12, "y": -36.76}, + {"name": "ear-right-bubble-07", "parent": "ear-right-bubble-05", "rotation": 86.99, "x": 57.27, "y": 1.67}, + {"name": "ear-right-bubble-08", "parent": "ear-right-bubble-05", "rotation": 86.99, "x": 69.87, "y": 43.59}, + {"name": "ear-left-bubble-05", "parent": "ear-left", "length": 48.54, "rotation": 176.27, "x": 194.33, "y": -25.1, "scaleX": 0.9897, "scaleY": 1.223}, + {"name": "ear-left-bubble-06", "parent": "ear-left-bubble-05", "rotation": 93.73, "x": 55.2, "y": -22.01}, + {"name": "ear-left-bubble-07", "parent": "ear-left-bubble-05", "rotation": 58.6, "x": 54.91, "y": 10.35}, + {"name": "ear-left-bubble-08", "parent": "ear-left-bubble-05", "rotation": 33.8, "x": 62.7, "y": 41.18}, + {"name": "ear-right-dot-02", "parent": "ear-left-all-bubble", "rotation": -95.73, "x": -18.26, "y": -8.1, "scaleX": 0.5668, "scaleY": 0.6813, "color": "2f9bffff"}, + {"name": "ear-left-dot-02", "parent": "ear-left-all-bubble", "rotation": -88.74, "x": 8.57, "y": 59.72, "scaleX": 0.6577, "scaleY": 0.5996, "color": "2f9bffff"}, + {"name": "ear-right-dot-03", "parent": "ear-left-all-bubble", "rotation": -87.96, "x": -25.76, "y": -45.18, "scaleX": 0.2583, "scaleY": 0.2881, "color": "2f9bffff"}, + {"name": "ear-right-dot-04", "parent": "ear-left-all-bubble", "rotation": -88.51, "x": -27.05, "y": -31.17, "scaleX": 0.4361, "scaleY": 0.6365, "color": "2f9bffff"}, + {"name": "ear-right-dot-05", "parent": "ear-left-all-bubble", "rotation": -79.32, "x": -5.28, "y": 34.53, "scaleX": 0.5911, "scaleY": 0.8949, "color": "2f9bffff"}, + {"name": "ear-left-dot-03", "parent": "ear-left-all-bubble", "rotation": -90.95, "x": -10.57, "y": 11.72, "scaleX": 0.8206, "scaleY": 0.8206, "color": "2f9bffff"}, + {"name": "ear-left-dot-04", "parent": "ear-left-all-bubble", "rotation": -90.95, "x": 11.94, "y": 65.23, "scaleX": 0.7096, "scaleY": 0.7096, "color": "2f9bffff"}, + {"name": "ear-left-dot-05", "parent": "ear-left-all-bubble", "rotation": -88.35, "x": 10.11, "y": 68.29, "scaleX": 0.4014, "scaleY": 0.366, "color": "2f9bffff"}, + {"name": "ear-left-dot-06", "parent": "ear-left-all-bubble", "rotation": -90.95, "x": 34.65, "y": 74.95, "scaleX": 0.8206, "scaleY": 0.8206, "color": "2f9bffff"}, + {"name": "ear-right-dot-06", "parent": "ear-left-all-bubble", "rotation": -90.95, "x": -11.77, "y": 50.86, "scaleX": 0.4361, "scaleY": 0.4361, "color": "2f9bffff"}, + {"name": "ear-right-dot-07", "parent": "ear-left-all-bubble", "rotation": -96.07, "x": -32.28, "y": -4.86, "scaleX": 0.5668, "scaleY": 0.6813, "color": "2f9bffff"}, + {"name": "ear-right-dot-08", "parent": "ear-left-all-bubble", "rotation": -90.23, "x": -18.31, "y": -61.25, "scaleX": 0.7405, "scaleY": 0.826, "color": "2f9bffff"}, + {"name": "ear-right-dot-09", "parent": "ear-left-all-bubble", "rotation": -93.53, "x": -9.54, "y": 52.15, "scaleX": 0.2863, "scaleY": 0.3229, "color": "2f9bffff"}, + {"name": "ear-right-dot-10", "parent": "ear-left-all-bubble", "rotation": -81.97, "x": -31.43, "y": 21.83, "scaleX": 0.5911, "scaleY": 0.8949, "color": "2f9bffff"}, + {"name": "ear-right-all-bubble", "parent": "ear-right", "length": 26.1, "rotation": 3.44, "x": -10.08, "y": -8.05, "color": "3002ffff"}, + {"name": "ear-right-dot-11", "parent": "ear-right-all-bubble", "rotation": -96.44, "x": 10.27, "y": -24.86, "scaleX": 0.3508, "scaleY": 0.3508, "color": "2f9bffff"}, + {"name": "ear-left-dot-07", "parent": "ear-right-all-bubble", "rotation": -96.44, "x": 27.18, "y": -39.33, "scaleX": 0.7755, "scaleY": 0.7755, "color": "2f9bffff"}, + {"name": "ear-right-dot-12", "parent": "ear-right-all-bubble", "rotation": -101.56, "x": -18.26, "y": -8.1, "scaleX": 0.5668, "scaleY": 0.6813, "color": "2f9bffff"}, + {"name": "ear-left-dot-08", "parent": "ear-right-all-bubble", "rotation": -93.99, "x": -7.49, "y": -14.12, "scaleX": 0.6577, "scaleY": 0.5996, "color": "2f9bffff"}, + {"name": "ear-right-dot-13", "parent": "ear-right-all-bubble", "rotation": -93.67, "x": 43.59, "y": -57.74, "scaleX": 0.2583, "scaleY": 0.2881, "color": "2f9bffff"}, + {"name": "ear-right-dot-14", "parent": "ear-right-all-bubble", "rotation": -96.49, "x": 8.09, "y": -20.73, "scaleX": 0.4361, "scaleY": 0.6365, "color": "2f9bffff"}, + {"name": "ear-right-dot-15", "parent": "ear-right-all-bubble", "rotation": -84.65, "x": -5.28, "y": 34.53, "scaleX": 0.5911, "scaleY": 0.8949, "color": "2f9bffff"}, + {"name": "ear-left-dot-09", "parent": "ear-right-all-bubble", "rotation": -96.44, "x": -10.57, "y": 11.72, "scaleX": 0.8206, "scaleY": 0.8206, "color": "2f9bffff"}, + {"name": "ear-left-dot-10", "parent": "ear-right-all-bubble", "rotation": -96.44, "x": -13.81, "y": 2.57, "scaleX": 0.7096, "scaleY": 0.7096, "color": "2f9bffff"}, + {"name": "ear-left-dot-11", "parent": "ear-right-all-bubble", "rotation": -93.79, "x": -9.28, "y": 21.87, "scaleX": 0.4014, "scaleY": 0.366, "color": "2f9bffff"}, + {"name": "ear-left-dot-12", "parent": "ear-right-all-bubble", "rotation": -96.44, "x": -2.52, "y": 33.38, "scaleX": 0.8206, "scaleY": 0.8206, "color": "2f9bffff"}, + {"name": "ear-right-dot-16", "parent": "ear-right-all-bubble", "rotation": -96.44, "x": -4.07, "y": -34.4, "scaleX": 0.4361, "scaleY": 0.4361, "color": "2f9bffff"}, + {"name": "ear-right-dot-17", "parent": "ear-right-all-bubble", "rotation": -101.7, "x": 4.16, "y": -7.75, "scaleX": 0.5668, "scaleY": 0.6813, "color": "2f9bffff"}, + {"name": "ear-right-dot-18", "parent": "ear-right-all-bubble", "rotation": -96.34, "x": 27.4, "y": -55.17, "scaleX": 0.7405, "scaleY": 0.826, "color": "2f9bffff"}, + {"name": "ear-right-dot-19", "parent": "ear-right-all-bubble", "rotation": -99.41, "x": -9.54, "y": 52.15, "scaleX": 0.2863, "scaleY": 0.3229, "color": "2f9bffff"}, + {"name": "ear-right-dot-20", "parent": "ear-right-all-bubble", "rotation": -86.28, "x": 12.43, "y": -37.05, "scaleX": 0.5911, "scaleY": 0.8949, "color": "2f9bffff"}, + {"name": "mouth-bubble-core", "parent": "mouth-accessory"}, {"name": "eyes-light-left", "parent": "@eyes", "length": 15.08, "rotation": -135.48, "x": 69.15, "y": -15.18}, + {"name": "eyes-light-right", "parent": "@eyes", "length": 15.08, "rotation": -135.48, "x": -97.9, "y": -16.49}, {"name": "eyes-light-dot", "parent": "@eyes", "x": -66.73, "y": 27.82}, + {"name": "eyes-light-dot-02", "parent": "@eyes", "x": 103.19, "y": 27.82} + ], + "slots": [ + {"name": "shadow", "bone": "@shadow", "attachment": "shadow"}, {"name": "ball", "bone": "ball"}, + {"name": "leg-front-right", "bone": "@leg-front-right", "attachment": "summer-leg-front-right"}, {"name": "tail", "bone": "tail", "attachment": "tail"}, + {"name": "back", "bone": "back", "attachment": "back"}, {"name": "leg-back-left", "bone": "@leg-back-left", "attachment": "summer-leg-back-left"}, + {"name": "body", "bone": "@body", "attachment": "body"}, {"name": "body-pattern", "bone": "body-pattern"}, {"name": "ear-right-under", "bone": "ear-right", "attachment": "ear-right-under"}, + {"name": "ear-left-dot-07", "bone": "ear-left-dot-07", "color": "ffffff00", "attachment": "ear-left-dot"}, + {"name": "ear-left-dot-10", "bone": "ear-left-dot-10", "color": "ffffff00", "attachment": "ear-left-dot"}, + {"name": "ear-left-dot-09", "bone": "ear-left-dot-09", "color": "ffffff00", "attachment": "ear-left-dot"}, + {"name": "ear-left-dot-12", "bone": "ear-left-dot-12", "color": "ffffff00", "attachment": "ear-left-dot"}, + {"name": "ear-left-dot-08", "bone": "ear-left-dot-08", "color": "ffffff00", "attachment": "ear-left-dot"}, + {"name": "ear-left-dot-11", "bone": "ear-left-dot-11", "color": "ffffff00", "attachment": "ear-left-dot"}, + {"name": "ear-right-dot-11", "bone": "ear-right-dot-11", "color": "ffffff00", "attachment": "ear-right-dot"}, + {"name": "ear-right-dot-16", "bone": "ear-right-dot-16", "color": "ffffff00", "attachment": "ear-right-dot"}, + {"name": "ear-right-dot-12", "bone": "ear-right-dot-12", "color": "ffffff00", "attachment": "ear-right-dot"}, + {"name": "ear-right-dot-17", "bone": "ear-right-dot-17", "color": "ffffff00", "attachment": "ear-right-dot"}, + {"name": "ear-right-dot-13", "bone": "ear-right-dot-13", "color": "ffffff00", "attachment": "ear-right-dot"}, + {"name": "ear-right-dot-18", "bone": "ear-right-dot-18", "color": "ffffff00", "attachment": "ear-right-dot"}, + {"name": "ear-right-dot-14", "bone": "ear-right-dot-14", "color": "ffffff00", "attachment": "ear-right-dot"}, + {"name": "ear-right-dot-19", "bone": "ear-right-dot-19", "color": "ffffff00", "attachment": "ear-right-dot"}, + {"name": "ear-right-dot-15", "bone": "ear-right-dot-15", "color": "ffffff00", "attachment": "ear-right-dot"}, + {"name": "ear-right-dot-20", "bone": "ear-right-dot-20", "color": "ffffff00", "attachment": "ear-right-dot"}, + {"name": "ear-right-bubble", "bone": "ear-right-bubble", "color": "0bc5b6ff", "attachment": "ear-right-bubble"}, + {"name": "ear-right-bubble-02", "bone": "ear-right-bubble-05", "attachment": "ear-right-bubble"}, {"name": "ear-right-upper", "bone": "ear-right", "attachment": "ear-right-upper"}, + {"name": "leg-front-left", "bone": "@leg-front-left", "attachment": "summer-leg-front-left"}, {"name": "horn", "bone": "horn", "attachment": "horn"}, + {"name": "ear-left-under", "bone": "ear-left", "attachment": "ear-left-under"}, {"name": "ear-left-dot-01", "bone": "ear-left-dot-01", "color": "ffffff00", "attachment": "ear-left-dot"}, + {"name": "ear-left-dot-04", "bone": "ear-left-dot-04", "color": "ffffff00", "attachment": "ear-left-dot"}, + {"name": "ear-left-dot-03", "bone": "ear-left-dot-03", "color": "ffffff00", "attachment": "ear-left-dot"}, + {"name": "ear-left-dot-06", "bone": "ear-left-dot-06", "color": "ffffff00", "attachment": "ear-left-dot"}, + {"name": "ear-left-dot-02", "bone": "ear-left-dot-02", "color": "ffffff00", "attachment": "ear-left-dot"}, + {"name": "ear-left-dot-05", "bone": "ear-left-dot-05", "color": "ffffff00", "attachment": "ear-left-dot"}, + {"name": "ear-right-dot-01", "bone": "ear-right-dot-01", "color": "ffffff00", "attachment": "ear-right-dot"}, + {"name": "ear-right-dot-06", "bone": "ear-right-dot-06", "color": "ffffff00", "attachment": "ear-right-dot"}, + {"name": "ear-right-dot-02", "bone": "ear-right-dot-02", "color": "ffffff00", "attachment": "ear-right-dot"}, + {"name": "ear-right-dot-07", "bone": "ear-right-dot-07", "color": "ffffff00", "attachment": "ear-right-dot"}, + {"name": "ear-right-dot-03", "bone": "ear-right-dot-03", "color": "ffffff00", "attachment": "ear-right-dot"}, + {"name": "ear-right-dot-08", "bone": "ear-right-dot-08", "color": "ffffff00", "attachment": "ear-right-dot"}, + {"name": "ear-right-dot-04", "bone": "ear-right-dot-04", "color": "ffffff00", "attachment": "ear-right-dot"}, + {"name": "ear-right-dot-09", "bone": "ear-right-dot-09", "color": "ffffff00", "attachment": "ear-right-dot"}, + {"name": "ear-right-dot-05", "bone": "ear-right-dot-05", "color": "ffffff00", "attachment": "ear-right-dot"}, + {"name": "ear-right-dot-10", "bone": "ear-right-dot-10", "color": "ffffff00", "attachment": "ear-right-dot"}, + {"name": "ear-left-bubble", "bone": "ear-left-bubble", "color": "0bc5b6ff", "attachment": "ear-left-bubble"}, + {"name": "ear-left-bubble-02", "bone": "ear-left-bubble-05", "attachment": "ear-left-bubble"}, {"name": "ear-left-upper", "bone": "ear-left", "attachment": "ear-left-upper"}, + {"name": "eyes-happy-accessory", "bone": "eyes-happy-accessory", "color": "ffffff00", "attachment": "eyes-happy-accessory", "blend": "additive"}, + {"name": "eyes", "bone": "@eyes", "attachment": "eyes"}, {"name": "eyes-light-dot", "bone": "eyes-light-dot", "attachment": "eye-light-dot"}, + {"name": "eyes-light-dot-02", "bone": "eyes-light-dot-02", "attachment": "eye-light-dot"}, + {"name": "eyes-light-left", "bone": "eyes-light-left", "color": "fff96500", "attachment": "light", "blend": "additive"}, + {"name": "eyes-light-right", "bone": "eyes-light-right", "color": "fff96500", "attachment": "light", "blend": "additive"}, {"name": "eyes-upper", "bone": "@eyes", "attachment": "eyes-upper"}, + {"name": "mouth", "bone": "@mouth", "attachment": "mouth"}, {"name": "mouth-accessory", "bone": "mouth-accessory", "color": "ffffff00", "attachment": "mouth-accessory"} + ], + "ik": [ + {"name": "leg-back-left-IK", "order": 3, "bones": ["@leg-back-left"], "target": "leg-back-left-IK"}, + {"name": "leg-front-left-IK", "order": 2, "bones": ["@leg-front-left"], "target": "leg-front-left-IK"}, + {"name": "leg-front-right-IK", "bones": ["@leg-front-right"], "target": "leg-front-right-IK"} + ], + "transform": [{"name": "@mouth", "order": 1, "bones": ["mouth-bubble"], "target": "@mouth", "x": -49.1, "y": 37.9, "rotateMix": 0, "translateMix": 0, "scaleMix": 0, "shearMix": 0}], + "skins": [ + { + "name": "default", + "attachments": { + "back": {"back": {"x": 140.26, "y": -6.1, "rotation": -58, "width": 298, "height": 321, "path": "aquatic-summer-02-lv2.back"}}, + "ear-left-bubble": { + "ear-left-bubble": { + "type": "mesh", + "uvs": [ + 0.87714, 0.57697, 0.91393, 0.67811, 0.94364, 0.75977, 0.96133, 0.8176, 0.97838, 0.87333, 1, 0.94398, 0.93104, 0.94427, 0.90524, 0.94438, 0.88494, 0.94447, 0.85255, 0.94461, 0.82176, + 0.94474, 0.79396, 0.94486, 0.76382, 0.94499, 0.73767, 0.9451, 0.70713, 0.94523, 0.67579, 0.94536, 0.64108, 0.94551, 0.61244, 0.94564, 0.5758, 0.94579, 0.5367, 0.94596, 0.50394, + 0.9461, 0.47091, 0.94624, 0.435, 0.94639, 0.39675, 0.94656, 0.36198, 0.94671, 0.32916, 0.94685, 0.29359, 0.947, 0.25022, 0.94718, 0.20956, 0.94736, 0.17261, 0.94751, 0.12749, + 0.94771, 0.1012, 0.94782, 0.07834, 0.94792, 0.0457, 0.94806, 0.02123, 0.94816, 0, 0.94825, 0, 0.86703, 0, 0.81359, 0, 0.73715, 0.02817, 0.68242, 0.07791, 0.5858, 0.37947, 0, 0.46651, + 0, 0.5261, 0, 0.59994, 0, 0.66726, 0, 0.02864, 0.86721, 0.04805, 0.81379, 0.07275, 0.7389, 0.0999, 0.68207, 0.14259, 0.58508, 0.49108, 0.58123, 0.82646, 0.57753, 0.86109, 0.67837, + 0.88458, 0.75835, 0.90003, 0.81734, 0.91424, 0.87292, 0.48557, 0.6802, 0.48069, 0.74867, 0.47772, 0.81558, 0.4758, 0.87009, 0.29126, 0.58344, 0.25576, 0.68132, 0.23492, 0.74278, + 0.2135, 0.81448, 0.19874, 0.86831, 0.19271, 0.49455, 0.4968, 0.48641, 0.79002, 0.48462, 0.25666, 0.37903, 0.50462, 0.35653, 0.74321, 0.36527, 0.68757, 0.57906, 0.70466, 0.67913, + 0.71716, 0.75434, 0.72541, 0.81661, 0.73109, 0.87174, 0.67152, 0.48534, 0.32349, 0.49105, 0.38378, 0.58242, 0.36974, 0.68076, 0.36036, 0.74579, 0.34895, 0.81504, 0.34148, 0.86923, + 0.20652, 0.58437, 0.16979, 0.68173, 0.1462, 0.74066, 0.12077, 0.81409, 0.10379, 0.8677, 0.59158, 0.58012, 0.59921, 0.67965, 0.60299, 0.7516, 0.60776, 0.81612, 0.60866, 0.87095, + 0.76107, 0.57825, 0.78751, 0.67873, 0.81003, 0.75656, 0.82525, 0.81703, 0.83754, 0.87243, 0.10852, 0.73975, 0.08479, 0.81394, 0.06934, 0.86747, 0.15113, 0.868, 0.1657, 0.81428, + 0.18746, 0.74164, 0.29675, 0.74426, 0.28022, 0.81476, 0.26841, 0.86876, 0.41495, 0.7471, 0.40761, 0.81529, 0.4031, 0.86963, 0.53765, 0.87049, 0.53762, 0.81583, 0.53944, 0.75008, + 0.6595, 0.75296, 0.66217, 0.81635, 0.66857, 0.87134, 0.78397, 0.87208, 0.7758, 0.81682, 0.76492, 0.75548, 0.74852, 0.67892, 0.82675, 0.67854, 0.84222, 0.75734, 0.8595, 0.81717, + 0.87132, 0.87264, 0.01186, 0.9147, 0.056, 0.91293, 0.08943, 0.91297, 0.13846, 0.91074, 0.18465, 0.91102, 0.25824, 0.91262, 0.33507, 0.90958, 0.39978, 0.90977, 0.47313, 0.91161, + 0.53714, 0.91117, 0.61061, 0.90948, 0.67252, 0.91178, 0.73471, 0.91209, 0.78925, 0.91054, 0.84557, 0.91105, 0.87872, 0.91169, 0.92292, 0.90979, 0.21772, 0.91173, 0.11081, 0.912, + 0.02923, 0.91401, 0.29821, 0.91104, 0.36548, 0.90967, 0.43685, 0.9107, 0.50336, 0.9114, 0.57635, 0.91027, 0.64066, 0.9106, 0.70543, 0.91195, 0.76031, 0.91136, 0.81833, 0.9108, + 0.89934, 0.9108 + ], + "triangles": [ + 85, 86, 49, 86, 99, 49, 101, 47, 100, 34, 125, 144, 35, 125, 34, 125, 46, 144, 46, 47, 101, 47, 48, 100, 122, 121, 53, 56, 55, 3, 47, 46, 37, 49, 50, 85, 85, 50, 84, 48, 39, 49, 46, + 36, 37, 38, 39, 48, 49, 40, 50, 39, 40, 49, 5, 6, 4, 55, 54, 2, 55, 2, 3, 95, 94, 52, 54, 1, 2, 121, 52, 53, 53, 0, 1, 53, 52, 0, 113, 57, 90, 108, 80, 57, 62, 61, 80, 80, 79, 57, + 80, 61, 79, 57, 89, 90, 57, 51, 89, 57, 79, 51, 90, 72, 73, 90, 89, 72, 40, 69, 66, 84, 66, 61, 61, 78, 79, 61, 66, 78, 51, 79, 67, 51, 67, 89, 67, 79, 78, 89, 77, 72, 89, 67, 77, + 72, 77, 94, 94, 68, 52, 94, 77, 68, 66, 69, 78, 41, 69, 40, 67, 78, 70, 67, 70, 77, 70, 78, 69, 77, 71, 68, 77, 70, 71, 71, 45, 0, 69, 42, 70, 69, 41, 42, 71, 70, 44, 70, 43, 44, 44, + 45, 71, 71, 0, 68, 70, 42, 43, 52, 68, 0, 54, 53, 1, 56, 3, 4, 50, 40, 66, 50, 66, 84, 47, 37, 38, 48, 47, 38, 125, 36, 46, 35, 36, 125, 48, 49, 99, 121, 95, 52, 122, 53, 54, 144, + 46, 126, 100, 48, 99, 62, 84, 61, 123, 54, 55, 94, 73, 72, 85, 84, 62, 113, 90, 91, 141, 56, 4, 6, 141, 4, 124, 55, 56, 17, 150, 16, 17, 135, 150, 16, 136, 15, 16, 150, 136, 15, 151, + 14, 15, 136, 151, 14, 137, 13, 14, 151, 137, 13, 152, 12, 13, 137, 152, 12, 138, 11, 12, 152, 138, 11, 153, 10, 11, 138, 153, 10, 139, 9, 10, 153, 139, 9, 140, 8, 9, 139, 140, 8, + 154, 7, 8, 140, 154, 7, 141, 6, 7, 154, 141, 152, 137, 76, 137, 151, 76, 76, 151, 116, 150, 116, 136, 151, 136, 116, 154, 140, 124, 152, 117, 138, 152, 76, 117, 153, 98, 139, 140, + 139, 124, 139, 98, 124, 154, 56, 141, 154, 124, 56, 98, 153, 117, 116, 150, 93, 153, 138, 117, 150, 135, 93, 98, 123, 124, 124, 123, 55, 117, 97, 98, 98, 97, 123, 76, 118, 117, 117, + 118, 97, 116, 75, 76, 76, 75, 118, 93, 115, 116, 116, 115, 75, 93, 92, 115, 97, 122, 123, 123, 122, 54, 118, 96, 97, 97, 96, 122, 75, 119, 118, 118, 119, 96, 115, 74, 75, 75, 74, + 119, 92, 114, 115, 115, 114, 74, 92, 91, 114, 96, 121, 122, 119, 95, 96, 96, 95, 121, 74, 120, 119, 119, 120, 95, 114, 73, 74, 74, 73, 120, 73, 114, 90, 114, 91, 90, 120, 73, 94, + 120, 94, 95, 58, 57, 113, 25, 131, 24, 24, 146, 23, 24, 131, 146, 23, 132, 22, 23, 146, 132, 22, 147, 21, 22, 132, 147, 20, 133, 148, 20, 21, 133, 21, 147, 133, 20, 148, 19, 19, 134, + 18, 19, 148, 134, 18, 135, 17, 18, 149, 135, 18, 134, 149, 148, 133, 60, 133, 147, 60, 134, 148, 111, 134, 111, 149, 111, 148, 60, 132, 110, 147, 147, 110, 60, 149, 93, 135, 149, + 111, 93, 132, 146, 110, 131, 83, 146, 146, 83, 110, 111, 92, 93, 60, 59, 111, 59, 112, 111, 111, 112, 92, 110, 109, 60, 60, 109, 59, 83, 82, 110, 110, 82, 109, 92, 112, 91, 112, 113, + 91, 59, 58, 112, 112, 58, 113, 109, 108, 59, 59, 108, 58, 82, 81, 109, 109, 81, 108, 58, 108, 57, 81, 80, 108, 34, 144, 33, 126, 46, 101, 33, 126, 32, 33, 144, 126, 32, 127, 31, 32, + 126, 127, 31, 143, 30, 31, 127, 143, 30, 128, 29, 30, 143, 128, 29, 129, 28, 29, 128, 129, 28, 142, 27, 28, 129, 142, 27, 130, 26, 27, 142, 130, 26, 145, 25, 26, 130, 145, 25, 145, + 131, 126, 101, 127, 127, 88, 143, 127, 101, 88, 130, 107, 145, 130, 142, 107, 143, 88, 128, 129, 65, 142, 142, 65, 107, 131, 145, 83, 128, 102, 129, 129, 102, 65, 128, 88, 102, 83, + 145, 107, 107, 106, 83, 83, 106, 82, 65, 64, 107, 107, 64, 106, 102, 103, 65, 65, 103, 64, 88, 87, 102, 102, 87, 103, 101, 100, 88, 88, 100, 87, 106, 105, 82, 82, 105, 81, 64, 63, + 106, 106, 63, 105, 103, 104, 64, 64, 104, 63, 87, 86, 103, 103, 86, 104, 100, 99, 87, 87, 99, 86, 81, 105, 80, 63, 62, 105, 105, 62, 80, 62, 63, 85, 86, 85, 104, 63, 104, 85 + ], + "vertices": [ + 4, 39, 54.66, 14.56, 0.00012, 40, 32.32, 14.56, 0.00054, 41, 9.4, 14.56, 0.12631, 32, 49.18, 30.61, 0.87302, 3, 40, 33.6, 1.37, 0.00019, 41, 10.68, 1.36, 0.19743, 32, 62.26, 32.75, + 0.80237, 3, 40, 36.22, -5.17, 6e-05, 41, 13.3, -5.17, 0.26715, 32, 68.61, 35.79, 0.73278, 3, 40, 43.5, 1.06, 1e-05, 41, 20.58, 1.06, 0.33542, 32, 61.92, 42.65, 0.66457, 3, 40, 45, + -3.4, 1e-05, 41, 22.08, -3.4, 0.40033, 32, 66.27, 44.44, 0.59966, 3, 40, 46.9, -9.05, 0, 41, 23.98, -9.05, 0.45012, 32, 71.79, 46.7, 0.54988, 3, 40, 40.83, -9.07, 0, 41, 17.91, + -9.07, 0.5829, 32, 72.21, 40.65, 0.4171, 3, 40, 38.56, -9.08, 4e-05, 41, 15.64, -9.08, 0.72131, 32, 72.37, 38.38, 0.27865, 3, 40, 36.78, -9.09, 0.00031, 41, 13.86, -9.09, 0.8264, 32, + 72.49, 36.6, 0.17329, 3, 40, 33.93, -9.1, 0.00157, 41, 11, -9.1, 0.90359, 32, 72.69, 33.76, 0.09484, 3, 40, 31.22, -9.11, 0.00537, 41, 8.3, -9.11, 0.94975, 32, 72.87, 31.05, 0.04488, + 3, 40, 28.77, -9.12, 0.01601, 41, 5.85, -9.12, 0.96404, 32, 73.04, 28.61, 0.01996, 3, 40, 26.12, -9.13, 0.03803, 41, 3.2, -9.13, 0.95562, 32, 73.22, 25.97, 0.00635, 3, 40, 23.82, + -9.14, 0.08031, 41, 0.9, -9.14, 0.91597, 32, 73.38, 23.67, 0.00372, 4, 39, 43.47, -9.15, 0, 40, 21.13, -9.15, 0.14592, 41, -1.79, -9.15, 0.85165, 32, 73.57, 20.99, 0.00243, 4, 39, + 40.71, -9.16, 2e-05, 40, 18.37, -9.16, 0.23867, 41, -4.55, -9.16, 0.75671, 32, 73.76, 18.24, 0.0046, 4, 39, 37.66, -9.17, 0.00014, 40, 15.32, -9.17, 0.35275, 41, -7.6, -9.17, + 0.64256, 32, 73.97, 15.19, 0.00455, 4, 39, 35.13, -9.18, 0.00092, 40, 12.8, -9.18, 0.48034, 41, -10.13, -9.18, 0.51198, 32, 74.14, 12.68, 0.00676, 4, 39, 31.91, -9.19, 0.00375, 40, + 9.57, -9.19, 0.61095, 41, -13.35, -9.19, 0.38019, 32, 74.36, 9.46, 0.00512, 4, 39, 28.47, -9.21, 0.01298, 40, 6.13, -9.21, 0.72267, 41, -16.79, -9.21, 0.25841, 32, 74.6, 6.03, + 0.00594, 4, 39, 25.59, -9.22, 0.03422, 40, 3.25, -9.22, 0.80451, 41, -19.67, -9.22, 0.15782, 32, 74.8, 3.15, 0.00345, 4, 39, 22.68, -9.23, 0.07754, 40, 0.34, -9.23, 0.83155, 41, + -22.58, -9.23, 0.08642, 32, 75, 0.25, 0.00449, 4, 39, 19.52, -9.24, 0.14705, 40, -2.82, -9.24, 0.80991, 41, -25.74, -9.24, 0.04032, 32, 75.22, -2.9, 0.00272, 4, 39, 16.15, -9.25, + 0.24563, 40, -6.18, -9.25, 0.73344, 41, -29.11, -9.25, 0.01645, 32, 75.45, -6.26, 0.00448, 4, 39, 13.09, -9.27, 0.36774, 40, -9.24, -9.27, 0.62371, 41, -32.17, -9.27, 0.00512, 32, + 75.66, -9.31, 0.00344, 4, 39, 10.21, -9.28, 0.50372, 40, -12.13, -9.28, 0.49001, 41, -35.05, -9.28, 0.00135, 32, 75.86, -12.19, 0.00491, 4, 39, 7.08, -9.29, 0.64487, 40, -15.26, + -9.29, 0.35177, 41, -38.18, -9.29, 0.00021, 32, 76.08, -15.32, 0.00314, 4, 39, 3.26, -9.3, 0.77, 40, -19.08, -9.3, 0.22651, 41, -42, -9.3, 3e-05, 32, 76.34, -19.12, 0.00346, 4, 39, + -0.32, -9.32, 0.87272, 40, -22.66, -9.32, 0.1254, 41, -45.58, -9.32, 0, 32, 76.59, -22.69, 0.00188, 3, 39, -3.57, -9.33, 0.9351, 40, -25.91, -9.33, 0.0605, 32, 76.81, -25.94, 0.0044, + 3, 39, -7.54, -9.35, 0.96153, 40, -29.88, -9.35, 0.02278, 32, 77.09, -29.9, 0.01569, 3, 39, -9.85, -9.35, 0.93655, 40, -32.19, -9.35, 0.00657, 32, 77.24, -32.21, 0.05688, 3, 39, + -11.87, -9.36, 0.83576, 40, -34.2, -9.36, 0.00151, 32, 77.38, -34.21, 0.16273, 3, 39, -14.74, -9.37, 0.65143, 40, -37.08, -9.37, 0.00023, 32, 77.58, -37.08, 0.34834, 3, 39, -16.89, + -9.38, 0.4382, 40, -39.23, -9.38, 2e-05, 32, 77.73, -39.23, 0.56178, 3, 39, -18.76, -9.39, 0.27507, 40, -41.1, -9.39, 0, 32, 77.86, -41.09, 0.72493, 3, 39, -18.76, -2.89, 0.21414, + 40, -41.1, -2.89, 2e-05, 32, 71.37, -41.51, 0.78584, 3, 39, -18.76, 1.38, 0.19077, 40, -41.1, 1.38, 0.00024, 32, 67.11, -41.79, 0.80899, 3, 39, -18.76, 7.5, 0.1765, 40, -41.1, 7.5, + 0.00116, 32, 61.01, -42.19, 0.82235, 4, 39, -16.28, 11.88, 0.15382, 40, -38.62, 11.88, 0.00307, 41, -61.54, 11.88, 1e-05, 32, 56.48, -40, 0.84309, 4, 39, -11.9, 19.61, 0.11079, 40, + -34.24, 19.61, 0.0029, 41, -57.16, 19.61, 0.00014, 32, 48.48, -36.13, 0.88617, 4, 39, 14.63, 66.47, 0.04584, 40, -7.7, 66.47, 0.00083, 41, -30.63, 66.47, 0.00037, 32, -0.01, -12.7, + 0.95296, 4, 39, 22.29, 66.47, 0.02247, 40, -0.04, 66.47, 0.00083, 41, -22.97, 66.47, 0.00288, 32, -0.51, -5.06, 0.97382, 4, 39, 27.54, 66.47, 0.01007, 40, 5.2, 66.47, 0.00155, 41, + -17.72, 66.47, 0.0104, 32, -0.85, 0.17, 0.97798, 4, 39, 34.04, 66.47, 0.00272, 40, 11.7, 66.47, 0.00045, 41, -11.22, 66.47, 0.02285, 32, -1.28, 6.66, 0.97398, 4, 39, 39.96, 66.47, + 0.00033, 40, 17.62, 66.47, 0.00011, 41, -5.3, 66.47, 0.0498, 32, -1.66, 12.57, 0.94976, 3, 39, -16.24, -2.91, 0.33437, 40, -38.58, -2.91, 0.0002, 32, 71.23, -39, 0.66543, 3, 39, + -14.53, 1.37, 0.32645, 40, -36.87, 1.37, 0.00078, 32, 66.85, -37.57, 0.67277, 4, 39, -12.36, 7.36, 0.307, 40, -34.7, 7.36, 0.00285, 41, -57.62, 7.36, 1e-05, 32, 60.73, -35.79, + 0.69014, 4, 39, -9.97, 11.91, 0.26477, 40, -32.31, 11.91, 0.00971, 41, -55.23, 11.91, 0.00027, 32, 56.04, -33.7, 0.72525, 4, 39, -6.21, 19.66, 0.19881, 40, -28.55, 19.66, 0.00959, + 41, -51.47, 19.66, 0.00132, 32, 48.05, -30.46, 0.79028, 4, 39, 24.46, 19.97, 0.10712, 40, 2.12, 19.97, 0.11704, 41, -20.8, 19.97, 0.11672, 32, 45.75, 0.12, 0.65912, 4, 39, 50.93, + 17.71, 0.00116, 40, 28.6, 17.71, 0.00313, 41, 5.67, 17.71, 0.2148, 32, 46.28, 26.69, 0.7809, 4, 39, 51.29, 1.35, 0.0001, 40, 28.95, 1.35, 0.00083, 41, 6.03, 1.34, 0.29942, 32, 62.59, + 28.12, 0.69965, 3, 40, 31.02, -5.05, 0.00034, 41, 8.1, -5.06, 0.378, 32, 68.84, 30.59, 0.62166, 3, 40, 38.1, 1.08, 0.00022, 41, 15.18, 1.08, 0.45653, 32, 62.25, 37.26, 0.54325, 3, + 40, 39.36, -3.36, 0.00015, 41, 16.43, -3.36, 0.53433, 32, 66.61, 38.8, 0.46552, 4, 39, 23.97, 12.06, 0.12565, 40, 1.63, 12.06, 0.24275, 41, -21.29, 12.06, 0.14114, 32, 53.68, 0.15, + 0.49046, 4, 39, 23.54, 6.58, 0.11007, 40, 1.2, 6.58, 0.47217, 41, -21.72, 6.58, 0.12893, 32, 59.17, 0.08, 0.28883, 4, 39, 23.28, 1.22, 0.10884, 40, 0.94, 1.22, 0.60558, 41, -21.98, + 1.22, 0.12698, 32, 64.53, 0.17, 0.1586, 4, 39, 23.11, -3.14, 0.10666, 40, 0.77, -3.14, 0.70334, 41, -22.15, -3.14, 0.12133, 32, 68.89, 0.28, 0.06866, 4, 39, 6.87, 19.8, 0.29773, 40, + -15.47, 19.8, 0.06022, 41, -38.39, 19.8, 0.01488, 32, 47.07, -17.41, 0.62717, 4, 39, 3.75, 11.97, 0.44072, 40, -18.59, 11.97, 0.09602, 41, -41.51, 11.97, 0.01064, 32, 55.08, -20.02, + 0.45261, 4, 39, 1.91, 7.05, 0.66419, 40, -20.42, 7.05, 0.11803, 41, -43.35, 7.05, 0.002, 32, 60.11, -21.53, 0.21579, 4, 39, 0.03, 1.31, 0.77187, 40, -22.31, 1.31, 0.12352, 41, + -45.23, 1.31, 0.00043, 32, 65.96, -23.04, 0.10418, 4, 39, -1.27, -2.99, 0.84303, 40, -23.61, -2.99, 0.11246, 41, -46.53, -2.99, 0.00018, 32, 70.34, -24.05, 0.04432, 4, 39, -1.8, + 26.91, 0.12744, 40, -24.14, 26.91, 0.00959, 41, -47.06, 26.91, 0.0076, 32, 40.54, -26.53, 0.85537, 4, 39, 24.96, 27.56, 0.0719, 40, 2.62, 27.56, 0.03639, 41, -20.3, 27.56, 0.07572, + 32, 38.14, 0.13, 0.81598, 4, 39, 50.76, 27.7, 0.00702, 40, 28.42, 27.7, 0.00523, 41, 5.5, 27.7, 0.131, 32, 36.32, 25.87, 0.85675, 4, 39, 3.83, 36.15, 0.04791, 40, -18.51, 36.15, + 0.00352, 41, -41.43, 36.15, 0.00803, 32, 30.95, -21.51, 0.94054, 4, 39, 25.65, 37.95, 0.02662, 40, 3.31, 37.95, 0.00775, 41, -19.61, 37.95, 0.02767, 32, 27.73, 0.14, 0.93795, 4, 39, + 46.64, 37.25, 0.00753, 40, 24.3, 37.25, 0.00227, 41, 1.38, 37.25, 0.04846, 32, 27.06, 21.14, 0.94174, 4, 39, 41.75, 20.15, 0.01306, 40, 19.41, 20.15, 0.04509, 41, -3.51, 20.15, + 0.32134, 32, 44.45, 17.37, 0.62052, 4, 39, 34.16, 9.18, 0.00895, 40, 11.83, 9.18, 0.07841, 41, -11.1, 9.17, 0.49568, 32, 55.89, 10.51, 0.41696, 4, 39, 35.26, 3.16, 0.0015, 40, 12.93, + 3.16, 0.09572, 41, -10, 3.16, 0.67014, 32, 61.82, 12, 0.23264, 4, 39, 45.08, 1.14, 0.00025, 40, 22.74, 1.14, 0.108, 41, -0.18, 1.14, 0.76841, 32, 63.2, 21.93, 0.12334, 4, 39, 45.58, + -3.27, 0.0001, 40, 23.24, -3.27, 0.10937, 41, 0.32, -3.27, 0.83473, 32, 67.56, 22.71, 0.0558, 4, 39, 40.33, 27.64, 0.02381, 40, 18, 27.64, 0.02132, 41, -4.93, 27.64, 0.16866, 32, + 37.06, 15.47, 0.78621, 4, 39, 9.71, 27.19, 0.16236, 40, -12.63, 27.19, 0.02827, 41, -35.55, 27.19, 0.02548, 32, 39.51, -15.06, 0.78388, 4, 39, 15.01, 19.88, 0.23124, 40, -7.33, + 19.88, 0.11759, 41, -30.25, 19.88, 0.04679, 32, 46.46, -9.29, 0.60438, 4, 39, 13.78, 12.01, 0.29354, 40, -8.56, 12.01, 0.19873, 41, -31.48, 12.01, 0.04427, 32, 54.39, -10.01, + 0.46346, 4, 39, 12.95, 6.81, 0.37869, 40, -9.39, 6.81, 0.34588, 41, -32.31, 6.81, 0.01968, 32, 59.63, -10.5, 0.25575, 4, 39, 11.95, 1.27, 0.42861, 40, -10.39, 1.27, 0.42317, 41, + -33.31, 1.27, 0.01297, 32, 65.23, -11.14, 0.13524, 4, 39, 11.29, -3.07, 0.46725, 40, -11.05, -3.07, 0.46538, 41, -33.97, -3.07, 0.0097, 32, 69.59, -11.51, 0.05768, 4, 39, -0.59, + 19.72, 0.32338, 40, -22.92, 19.72, 0.02881, 41, -45.85, 19.72, 0.003, 32, 47.63, -24.85, 0.64481, 4, 39, -3.82, 11.93, 0.4391, 40, -26.16, 11.93, 0.03345, 41, -49.08, 11.93, 0.00177, + 32, 55.61, -27.57, 0.52567, 4, 39, -5.89, 7.22, 0.65491, 40, -28.23, 7.22, 0.02015, 41, -51.15, 7.22, 0.00017, 32, 60.45, -29.33, 0.32476, 4, 39, -8.13, 1.34, 0.75275, 40, -30.47, + 1.34, 0.01396, 41, -53.39, 1.34, 1e-05, 32, 66.46, -31.18, 0.23328, 3, 39, -9.63, -2.94, 0.80478, 40, -31.96, -2.94, 0.00944, 32, 70.83, -32.39, 0.18578, 4, 39, 33.3, 20.06, 0.04166, + 40, 10.96, 20.06, 0.10286, 41, -11.96, 20.06, 0.24857, 32, 45.08, 8.94, 0.60691, 4, 39, 33.97, 12.1, 0.03817, 40, 11.63, 12.1, 0.17811, 41, -11.29, 12.1, 0.32257, 32, 52.98, 10.13, + 0.46115, 4, 39, 34.3, 6.34, 0.01531, 40, 11.97, 6.34, 0.31162, 41, -10.96, 6.34, 0.40881, 32, 58.71, 10.84, 0.26426, 4, 39, 34.72, 1.18, 0.00955, 40, 12.39, 1.18, 0.39036, 41, + -10.54, 1.18, 0.4561, 32, 63.83, 11.59, 0.14399, 4, 39, 34.8, -3.2, 0.00731, 40, 12.46, -3.2, 0.44195, 41, -10.46, -3.2, 0.48699, 32, 68.2, 11.96, 0.06375, 4, 39, 44.94, 17.01, + 0.00241, 40, 22.6, 17.01, 0.01421, 41, -0.32, 17.01, 0.36275, 32, 47.37, 20.75, 0.62063, 4, 39, 44.82, 1.32, 0.00034, 40, 22.48, 1.32, 0.01068, 41, -0.44, 1.31, 0.5453, 32, 63.04, + 21.66, 0.44368, 4, 39, 52.52, 5.95, 2e-05, 40, 30.19, 5.95, 0.00999, 41, 7.26, 5.95, 0.66888, 32, 57.92, 29.04, 0.32111, 3, 40, 31.52, 1.11, 0.01011, 41, 8.6, 1.11, 0.76268, 32, + 62.66, 30.7, 0.22721, 3, 40, 32.61, -3.32, 0.00863, 41, 9.68, -3.32, 0.83296, 32, 67.01, 32.06, 0.15841, 4, 39, -9.21, 7.29, 0.52586, 40, -31.55, 7.29, 0.0057, 41, -54.47, 7.29, + 1e-05, 32, 60.59, -32.65, 0.46842, 3, 39, -11.3, 1.36, 0.56698, 40, -33.64, 1.36, 0.00311, 32, 66.65, -34.34, 0.42991, 3, 39, -12.66, -2.93, 0.60013, 40, -35, -2.93, 0.00167, 32, + 71.01, -35.42, 0.39821, 4, 39, -5.46, -2.97, 0.89102, 40, -27.8, -2.97, 0.03888, 41, -50.72, -2.97, 1e-05, 32, 70.59, -28.24, 0.07008, 4, 39, -4.18, 1.33, 0.83362, 40, -26.52, 1.33, + 0.04645, 41, -49.44, 1.33, 3e-05, 32, 66.21, -27.24, 0.1199, 4, 39, -2.26, 7.14, 0.75973, 40, -24.6, 7.14, 0.05134, 41, -47.52, 7.14, 0.00026, 32, 60.29, -25.7, 0.18867, 4, 39, 7.35, + 6.93, 0.57235, 40, -14.98, 6.93, 0.23863, 41, -37.91, 6.93, 0.00435, 32, 59.87, -16.09, 0.18467, 4, 39, 5.9, 1.29, 0.63011, 40, -16.44, 1.29, 0.25936, 41, -39.36, 1.29, 0.00243, 32, + 65.6, -17.18, 0.1081, 4, 39, 4.86, -3.03, 0.68809, 40, -17.48, -3.03, 0.26358, 41, -40.4, -3.03, 0.00168, 32, 69.98, -17.93, 0.04665, 4, 39, 17.76, 6.7, 0.22941, 40, -4.58, 6.7, + 0.4879, 41, -27.5, 6.7, 0.05094, 32, 59.42, -5.7, 0.23175, 4, 39, 17.11, 1.25, 0.24296, 40, -5.23, 1.25, 0.56856, 41, -28.15, 1.25, 0.04581, 32, 64.91, -5.99, 0.14267, 4, 39, 16.71, + -3.1, 0.25552, 40, -5.62, -3.1, 0.64168, 41, -28.55, -3.1, 0.03992, 32, 69.27, -6.1, 0.06288, 4, 39, 28.55, -3.17, 0.03276, 40, 6.22, -3.17, 0.62363, 41, -16.71, -3.17, 0.27658, 32, + 68.57, 5.72, 0.06703, 4, 39, 28.55, 1.2, 0.0367, 40, 6.21, 1.21, 0.54514, 41, -16.71, 1.21, 0.26974, 32, 64.21, 5.43, 0.14843, 4, 39, 28.71, 6.47, 0.04075, 40, 6.37, 6.47, 0.46337, + 41, -16.55, 6.47, 0.25797, 32, 58.95, 5.25, 0.23791, 4, 39, 39.28, 6.23, 0.00305, 40, 16.94, 6.24, 0.20572, 41, -5.98, 6.24, 0.59307, 32, 58.49, 15.81, 0.19817, 4, 39, 39.51, 1.16, + 0.00156, 40, 17.17, 1.16, 0.23228, 41, -5.75, 1.16, 0.64631, 32, 63.54, 16.37, 0.11984, 4, 39, 40.07, -3.24, 0.00112, 40, 17.74, -3.24, 0.25061, 41, -5.19, -3.24, 0.69415, 32, 67.89, + 17.22, 0.05412, 4, 39, 50.23, -3.29, 0, 40, 27.89, -3.29, 0.036, 41, 4.97, -3.29, 0.88144, 32, 67.29, 27.36, 0.08255, 4, 39, 49.51, 1.13, 2e-05, 40, 27.17, 1.13, 0.03826, 41, 4.25, + 1.13, 0.81357, 32, 62.92, 26.35, 0.14816, 4, 39, 48.55, 6.03, 0.00027, 40, 26.22, 6.03, 0.03577, 41, 3.29, 6.03, 0.72045, 32, 58.09, 25.08, 0.24351, 4, 39, 41.39, 1.3, 0.00156, 40, + 19.05, 1.3, 0.03311, 41, -3.87, 1.3, 0.61234, 32, 63.28, 18.23, 0.35299, 4, 39, 48.27, 1.33, 1e-05, 40, 25.93, 1.33, 0.00266, 41, 3.01, 1.33, 0.47035, 32, 62.8, 25.1, 0.52698, 3, 40, + 33.02, 5.88, 0.00213, 41, 10.1, 5.88, 0.54797, 32, 57.79, 31.88, 0.4499, 3, 40, 34.54, 1.1, 0.0018, 41, 11.62, 1.1, 0.63247, 32, 62.47, 33.7, 0.36573, 3, 40, 35.58, -3.34, 0.00152, + 41, 12.66, -3.34, 0.71351, 32, 66.83, 35.03, 0.28497, 3, 39, -17.72, -6.71, 0.31251, 40, -40.05, -6.71, 1e-05, 32, 75.11, -40.22, 0.68748, 3, 39, -13.83, -6.56, 0.64755, 40, -36.17, + -6.56, 0.00038, 32, 74.72, -36.36, 0.35207, 3, 39, -10.89, -6.57, 0.83546, 40, -33.23, -6.57, 0.00245, 32, 74.53, -33.42, 0.1621, 3, 39, -6.58, -6.39, 0.9505, 40, -28.91, -6.39, + 0.02598, 32, 74.07, -29.13, 0.02352, 4, 39, -2.51, -6.41, 0.9185, 40, -24.85, -6.41, 0.06986, 41, -47.77, -6.41, 1e-05, 32, 73.83, -25.07, 0.01163, 4, 39, 3.97, -6.54, 0.7539, 40, + -18.37, -6.54, 0.23416, 41, -41.29, -6.54, 0.00019, 32, 73.54, -18.6, 0.01175, 4, 39, 10.73, -6.3, 0.4945, 40, -11.61, -6.29, 0.48778, 41, -34.53, -6.29, 0.00242, 32, 72.85, -11.87, + 0.01529, 4, 39, 16.42, -6.31, 0.24467, 40, -5.92, -6.31, 0.71967, 41, -28.84, -6.31, 0.01969, 32, 72.5, -6.18, 0.01597, 4, 39, 22.88, -6.46, 0.08074, 40, 0.54, -6.46, 0.81091, 41, + -22.38, -6.46, 0.09131, 32, 72.22, 0.27, 0.01704, 4, 39, 28.51, -6.42, 0.01543, 40, 6.17, -6.42, 0.70591, 41, -16.75, -6.42, 0.26031, 32, 71.82, 5.89, 0.01836, 4, 39, 34.97, -6.29, + 0.00164, 40, 12.64, -6.29, 0.47309, 41, -10.29, -6.29, 0.50689, 32, 71.27, 12.33, 0.01837, 4, 39, 40.42, -6.47, 0.0001, 40, 18.08, -6.47, 0.23958, 41, -4.84, -6.47, 0.7461, 32, 71.1, + 17.78, 0.01421, 4, 39, 45.89, -6.5, 0, 40, 23.56, -6.5, 0.08431, 41, 0.63, -6.5, 0.9025, 32, 70.76, 23.24, 0.01319, 3, 40, 28.36, -6.37, 0.01867, 41, 5.43, -6.37, 0.94991, 32, 70.33, + 28.02, 0.03142, 3, 40, 33.31, -6.41, 0.00244, 41, 10.39, -6.41, 0.88788, 32, 70.05, 32.97, 0.10968, 3, 40, 36.23, -6.46, 0.00046, 41, 13.31, -6.46, 0.80558, 32, 69.91, 35.88, + 0.19395, 3, 40, 40.12, -6.31, 1e-05, 41, 17.2, -6.31, 0.61334, 32, 69.5, 39.76, 0.38665, 4, 39, 0.4, -6.47, 0.86555, 40, -21.94, -6.47, 0.12959, 41, -44.86, -6.47, 1e-05, 32, 73.7, + -22.16, 0.00485, 3, 39, -9.01, -6.49, 0.93616, 40, -31.35, -6.49, 0.00716, 32, 74.33, -31.55, 0.05668, 3, 39, -16.19, -6.65, 0.44814, 40, -38.53, -6.65, 3e-05, 32, 74.96, -38.7, + 0.55184, 4, 39, 7.48, -6.41, 0.63866, 40, -14.86, -6.41, 0.354, 41, -37.78, -6.41, 0.00037, 32, 73.18, -15.1, 0.00698, 4, 39, 13.4, -6.3, 0.36468, 40, -8.94, -6.3, 0.62161, 41, + -31.86, -6.3, 0.00581, 32, 72.69, -9.2, 0.0079, 4, 39, 19.68, -6.38, 0.14684, 40, -2.65, -6.38, 0.80383, 41, -25.58, -6.38, 0.04176, 32, 72.36, -2.92, 0.00757, 4, 39, 25.54, -6.44, + 0.03499, 40, 3.2, -6.44, 0.79745, 41, -19.72, -6.44, 0.15898, 32, 72.03, 2.92, 0.00858, 4, 39, 31.96, -6.35, 0.00417, 40, 9.62, -6.35, 0.60634, 41, -13.3, -6.35, 0.37927, 32, 71.53, + 9.32, 0.01022, 4, 39, 37.62, -6.38, 0.00021, 40, 15.28, -6.38, 0.35157, 41, -7.64, -6.38, 0.63918, 32, 71.18, 14.97, 0.00904, 4, 39, 43.32, -6.48, 1e-05, 40, 20.98, -6.48, 0.14688, + 41, -1.94, -6.48, 0.84692, 32, 70.92, 20.67, 0.00619, 3, 40, 25.81, -6.44, 0.03919, 41, 2.89, -6.44, 0.95006, 32, 70.56, 25.48, 0.01074, 3, 40, 30.92, -6.39, 0.00591, 41, 7.99, + -6.39, 0.9433, 32, 70.18, 30.58, 0.05079, 3, 40, 38.04, -6.39, 5e-05, 41, 15.12, -6.39, 0.72615, 32, 69.72, 37.69, 0.2738 + ], + "hull": 46, + "edges": [ + 80, 82, 90, 0, 10, 8, 70, 72, 72, 74, 74, 76, 4, 6, 6, 8, 76, 78, 78, 80, 4, 2, 2, 0, 72, 92, 74, 94, 92, 94, 76, 96, 94, 96, 78, 98, 96, 98, 80, 100, 98, 100, 82, 84, 84, 86, 86, + 88, 88, 90, 0, 104, 2, 106, 104, 106, 4, 108, 106, 108, 6, 110, 108, 110, 8, 112, 110, 112, 10, 12, 102, 114, 114, 116, 116, 118, 118, 120, 122, 124, 124, 126, 126, 128, 128, 130, + 132, 100, 134, 102, 136, 104, 84, 138, 138, 132, 86, 140, 140, 134, 138, 140, 88, 142, 142, 136, 140, 142, 144, 146, 146, 148, 148, 150, 150, 152, 134, 154, 154, 136, 144, 154, 132, + 156, 156, 134, 122, 156, 102, 158, 158, 122, 114, 160, 160, 124, 158, 160, 160, 162, 162, 164, 164, 166, 100, 168, 168, 122, 98, 170, 170, 124, 168, 170, 170, 172, 172, 174, 174, + 176, 102, 178, 178, 144, 114, 180, 180, 146, 178, 180, 180, 182, 182, 184, 184, 186, 104, 188, 188, 144, 188, 190, 190, 192, 192, 194, 194, 196, 96, 198, 198, 172, 94, 200, 200, 174, + 198, 200, 92, 202, 202, 176, 200, 202, 64, 66, 58, 60, 130, 204, 204, 176, 128, 206, 206, 174, 204, 206, 126, 208, 208, 172, 206, 208, 126, 210, 210, 162, 128, 212, 212, 164, 210, + 212, 130, 214, 214, 166, 212, 214, 116, 216, 216, 162, 118, 218, 218, 164, 216, 218, 120, 220, 220, 166, 218, 220, 120, 222, 222, 186, 118, 224, 224, 184, 222, 224, 116, 226, 226, + 182, 224, 226, 148, 228, 228, 182, 150, 230, 230, 184, 228, 230, 152, 232, 232, 186, 230, 232, 152, 234, 234, 196, 150, 236, 236, 194, 234, 236, 148, 238, 238, 192, 236, 238, 146, + 240, 240, 190, 238, 240, 106, 242, 242, 190, 108, 244, 244, 192, 242, 244, 110, 246, 246, 194, 244, 246, 112, 248, 248, 196, 246, 248, 16, 18, 70, 250, 250, 92, 66, 252, 252, 202, + 64, 254, 254, 176, 252, 254, 60, 256, 256, 204, 58, 258, 258, 130, 256, 258, 54, 260, 260, 214, 50, 262, 262, 166, 46, 264, 264, 220, 42, 266, 266, 120, 38, 268, 268, 222, 34, 270, + 270, 186, 30, 272, 272, 232, 26, 274, 274, 152, 22, 276, 276, 234, 18, 278, 278, 196, 16, 280, 280, 248, 278, 280, 12, 282, 282, 112, 258, 284, 284, 260, 54, 56, 56, 58, 284, 56, + 254, 286, 286, 256, 60, 62, 62, 64, 286, 62, 250, 288, 288, 252, 66, 68, 68, 70, 288, 68, 260, 290, 290, 262, 50, 52, 52, 54, 290, 52, 262, 292, 292, 264, 46, 48, 48, 50, 292, 48, + 264, 294, 294, 266, 42, 44, 44, 46, 294, 44, 266, 296, 296, 268, 38, 40, 40, 42, 296, 40, 268, 298, 298, 270, 34, 36, 36, 38, 298, 36, 270, 300, 300, 272, 30, 32, 32, 34, 300, 32, + 272, 302, 302, 274, 26, 28, 28, 30, 302, 28, 274, 304, 304, 276, 22, 24, 24, 26, 304, 24, 276, 306, 306, 278, 18, 20, 20, 22, 306, 20, 280, 308, 308, 282, 12, 14, 14, 16, 308, 14 + ], + "width": 88, + "height": 80, + "path": "aquatic-summer-02-lv2.ear-left-bubble" + } + }, + "ear-left-bubble-02": { + "ear-left-bubble": { + "type": "mesh", + "uvs": [ + 0.87714, 0.57697, 0.91393, 0.67811, 0.94364, 0.75977, 0.96133, 0.8176, 0.97838, 0.87333, 1, 0.94398, 0.93104, 0.94427, 0.90524, 0.94438, 0.88494, 0.94447, 0.85255, 0.94461, 0.82176, + 0.94474, 0.79396, 0.94486, 0.76382, 0.94499, 0.73767, 0.9451, 0.70713, 0.94523, 0.67579, 0.94536, 0.64108, 0.94551, 0.61244, 0.94564, 0.5758, 0.94579, 0.5367, 0.94596, 0.50394, + 0.9461, 0.47091, 0.94624, 0.435, 0.94639, 0.39675, 0.94656, 0.36198, 0.94671, 0.32916, 0.94685, 0.29359, 0.947, 0.25022, 0.94718, 0.20956, 0.94736, 0.17261, 0.94751, 0.12749, + 0.94771, 0.1012, 0.94782, 0.07834, 0.94792, 0.0457, 0.94806, 0.02123, 0.94816, 0, 0.94825, 0, 0.86703, 0, 0.81359, 0, 0.73715, 0.02817, 0.68242, 0.07791, 0.5858, 0.37947, 0, 0.46651, + 0, 0.5261, 0, 0.59994, 0, 0.66726, 0, 0.02864, 0.86721, 0.04805, 0.81379, 0.07275, 0.7389, 0.0999, 0.68207, 0.14259, 0.58508, 0.49108, 0.58123, 0.82646, 0.57753, 0.86109, 0.67837, + 0.88458, 0.75835, 0.90003, 0.81734, 0.91424, 0.87292, 0.48557, 0.6802, 0.48069, 0.74867, 0.47772, 0.81558, 0.4758, 0.87009, 0.29126, 0.58344, 0.25576, 0.68132, 0.23492, 0.74278, + 0.2135, 0.81448, 0.19874, 0.86831, 0.19271, 0.49455, 0.4968, 0.48641, 0.79002, 0.48462, 0.25666, 0.37903, 0.50462, 0.35653, 0.74321, 0.36527, 0.68757, 0.57906, 0.70466, 0.67913, + 0.71716, 0.75434, 0.72541, 0.81661, 0.73109, 0.87174, 0.67152, 0.48534, 0.32349, 0.49105, 0.38378, 0.58242, 0.36974, 0.68076, 0.36036, 0.74579, 0.34895, 0.81504, 0.34148, 0.86923, + 0.20652, 0.58437, 0.16979, 0.68173, 0.1462, 0.74066, 0.12077, 0.81409, 0.10379, 0.8677, 0.59158, 0.58012, 0.59921, 0.67965, 0.60299, 0.7516, 0.60776, 0.81612, 0.60866, 0.87095, + 0.76107, 0.57825, 0.78751, 0.67873, 0.81003, 0.75656, 0.82525, 0.81703, 0.83754, 0.87243, 0.10852, 0.73975, 0.08479, 0.81394, 0.06934, 0.86747, 0.15113, 0.868, 0.1657, 0.81428, + 0.18746, 0.74164, 0.29675, 0.74426, 0.28022, 0.81476, 0.26841, 0.86876, 0.41495, 0.7471, 0.40761, 0.81529, 0.4031, 0.86963, 0.53765, 0.87049, 0.53762, 0.81583, 0.53944, 0.75008, + 0.6595, 0.75296, 0.66217, 0.81635, 0.66857, 0.87134, 0.78397, 0.87208, 0.7758, 0.81682, 0.76492, 0.75548, 0.74852, 0.67892, 0.82675, 0.67854, 0.84222, 0.75734, 0.8595, 0.81717, + 0.87132, 0.87264, 0.01186, 0.9147, 0.056, 0.91293, 0.08943, 0.91297, 0.13846, 0.91074, 0.18465, 0.91102, 0.25824, 0.91262, 0.33507, 0.90958, 0.39978, 0.90977, 0.47313, 0.91161, + 0.53714, 0.91117, 0.61061, 0.90948, 0.67252, 0.91178, 0.73471, 0.91209, 0.78925, 0.91054, 0.84557, 0.91105, 0.87872, 0.91169, 0.92292, 0.90979, 0.21772, 0.91173, 0.11081, 0.912, + 0.02923, 0.91401, 0.29821, 0.91104, 0.36548, 0.90967, 0.43685, 0.9107, 0.50336, 0.9114, 0.57635, 0.91027, 0.64066, 0.9106, 0.70543, 0.91195, 0.76031, 0.91136, 0.81833, 0.9108, + 0.89934, 0.9108 + ], + "triangles": [ + 85, 84, 62, 94, 73, 72, 62, 84, 61, 100, 48, 99, 122, 53, 54, 121, 95, 52, 48, 49, 99, 48, 47, 38, 47, 37, 38, 50, 66, 84, 50, 40, 66, 54, 53, 1, 52, 68, 0, 70, 42, 43, 71, 0, 68, + 44, 45, 71, 70, 43, 44, 71, 70, 44, 69, 41, 42, 69, 42, 70, 71, 45, 0, 77, 70, 71, 77, 71, 68, 70, 78, 69, 67, 70, 77, 67, 78, 70, 41, 69, 40, 66, 69, 78, 94, 77, 68, 94, 68, 52, 72, + 77, 94, 89, 67, 77, 89, 77, 72, 67, 79, 78, 51, 67, 89, 51, 79, 67, 61, 66, 78, 61, 78, 79, 84, 66, 61, 40, 69, 66, 90, 89, 72, 90, 72, 73, 57, 79, 51, 57, 51, 89, 57, 89, 90, 80, + 61, 79, 80, 79, 57, 62, 61, 80, 108, 80, 57, 113, 57, 90, 53, 52, 0, 53, 0, 1, 121, 52, 53, 54, 1, 2, 95, 94, 52, 39, 40, 49, 49, 40, 50, 38, 39, 48, 48, 39, 49, 85, 50, 84, 49, 50, + 85, 122, 121, 53, 47, 48, 100, 86, 99, 49, 85, 86, 49, 55, 2, 3, 55, 54, 2, 123, 54, 55, 5, 6, 4, 56, 3, 4, 56, 55, 3, 35, 36, 125, 35, 125, 34, 34, 125, 144, 47, 46, 37, 125, 46, + 144, 144, 46, 126, 101, 47, 100, 46, 47, 101, 125, 36, 46, 46, 36, 37, 120, 94, 95, 120, 73, 94, 114, 91, 90, 73, 114, 90, 74, 73, 120, 114, 73, 74, 119, 120, 95, 74, 120, 119, 96, + 95, 121, 119, 95, 96, 96, 121, 122, 92, 91, 114, 115, 114, 74, 92, 114, 115, 75, 74, 119, 115, 74, 75, 118, 119, 96, 75, 119, 118, 97, 96, 122, 118, 96, 97, 123, 122, 54, 97, 122, + 123, 93, 92, 115, 116, 115, 75, 93, 115, 116, 76, 75, 118, 116, 75, 76, 117, 118, 97, 76, 118, 117, 98, 97, 123, 117, 97, 98, 124, 123, 55, 98, 123, 124, 150, 135, 93, 153, 138, 117, + 116, 150, 93, 98, 153, 117, 154, 124, 56, 154, 56, 141, 139, 98, 124, 140, 139, 124, 153, 98, 139, 152, 76, 117, 152, 117, 138, 154, 140, 124, 151, 136, 116, 150, 116, 136, 76, 151, + 116, 137, 151, 76, 152, 137, 76, 7, 154, 141, 7, 141, 6, 8, 140, 154, 8, 154, 7, 9, 139, 140, 9, 140, 8, 10, 153, 139, 10, 139, 9, 11, 138, 153, 11, 153, 10, 12, 152, 138, 12, 138, + 11, 13, 137, 152, 13, 152, 12, 14, 151, 137, 14, 137, 13, 15, 136, 151, 15, 151, 14, 16, 150, 136, 16, 136, 15, 17, 135, 150, 17, 150, 16, 124, 55, 56, 6, 141, 4, 141, 56, 4, 113, + 90, 91, 81, 80, 108, 58, 108, 57, 109, 81, 108, 82, 81, 109, 59, 108, 58, 109, 108, 59, 112, 58, 113, 59, 58, 112, 112, 113, 91, 92, 112, 91, 110, 82, 109, 83, 82, 110, 60, 109, 59, + 110, 109, 60, 111, 112, 92, 59, 112, 111, 60, 59, 111, 111, 92, 93, 146, 83, 110, 131, 83, 146, 132, 146, 110, 149, 111, 93, 149, 93, 135, 147, 110, 60, 132, 110, 147, 111, 148, 60, + 134, 111, 149, 134, 148, 111, 133, 147, 60, 148, 133, 60, 18, 134, 149, 18, 149, 135, 18, 135, 17, 19, 148, 134, 19, 134, 18, 20, 148, 19, 21, 147, 133, 20, 21, 133, 20, 133, 148, + 22, 132, 147, 22, 147, 21, 23, 146, 132, 23, 132, 22, 24, 131, 146, 24, 146, 23, 25, 131, 24, 58, 57, 113, 63, 104, 85, 86, 85, 104, 62, 63, 85, 105, 62, 80, 63, 62, 105, 81, 105, + 80, 87, 99, 86, 100, 99, 87, 103, 86, 104, 87, 86, 103, 64, 104, 63, 103, 104, 64, 106, 63, 105, 64, 63, 106, 82, 105, 81, 106, 105, 82, 88, 100, 87, 101, 100, 88, 102, 87, 103, 88, + 87, 102, 65, 103, 64, 102, 103, 65, 107, 64, 106, 65, 64, 107, 83, 106, 82, 107, 106, 83, 83, 145, 107, 128, 88, 102, 129, 102, 65, 128, 102, 129, 131, 145, 83, 142, 65, 107, 129, + 65, 142, 143, 88, 128, 130, 142, 107, 130, 107, 145, 127, 101, 88, 127, 88, 143, 126, 101, 127, 25, 145, 131, 26, 130, 145, 26, 145, 25, 27, 142, 130, 27, 130, 26, 28, 129, 142, 28, + 142, 27, 29, 128, 129, 29, 129, 28, 30, 143, 128, 30, 128, 29, 31, 127, 143, 31, 143, 30, 32, 126, 127, 32, 127, 31, 33, 144, 126, 33, 126, 32, 126, 46, 101, 34, 144, 33 + ], + "vertices": [ + 4, 47, 56.13, 15.19, 0.00012, 48, 33.79, 15.19, 0.00054, 49, 10.87, 15.18, 0.12631, 46, 48.46, 32.04, 0.87302, 3, 48, 31.45, 5.34, 0.00019, 49, 8.53, 5.32, 0.19743, 46, 58.45, 30.35, + 0.80237, 3, 48, 32.57, -2.1, 6e-05, 49, 9.65, -2.11, 0.26715, 46, 65.8, 31.95, 0.73278, 3, 48, 43.5, 1.06, 1e-05, 49, 20.58, 1.06, 0.33542, 46, 61.92, 42.65, 0.66457, 3, 48, 45, + -3.4, 1e-05, 49, 22.08, -3.4, 0.40033, 46, 66.27, 44.44, 0.59966, 3, 48, 46.9, -9.05, 0, 49, 23.98, -9.05, 0.45012, 46, 71.79, 46.7, 0.54988, 3, 48, 40.83, -9.07, 0, 49, 17.91, + -9.07, 0.5829, 46, 72.21, 40.65, 0.4171, 3, 48, 38.56, -9.08, 4e-05, 49, 15.64, -9.08, 0.72131, 46, 72.37, 38.38, 0.27865, 3, 48, 36.78, -9.09, 0.00031, 49, 13.86, -9.09, 0.8264, 46, + 72.49, 36.6, 0.17329, 3, 48, 33.93, -9.1, 0.00157, 49, 11, -9.1, 0.90359, 46, 72.69, 33.76, 0.09484, 3, 48, 31.22, -9.11, 0.00537, 49, 8.3, -9.11, 0.94975, 46, 72.87, 31.05, 0.04488, + 3, 48, 28.77, -9.12, 0.01601, 49, 5.85, -9.12, 0.96404, 46, 73.04, 28.61, 0.01996, 3, 48, 26.12, -9.13, 0.03803, 49, 3.2, -9.13, 0.95562, 46, 73.22, 25.97, 0.00635, 3, 48, 23.82, + -9.14, 0.08031, 49, 0.9, -9.14, 0.91597, 46, 73.38, 23.67, 0.00372, 4, 47, 43.47, -9.15, 0, 48, 21.13, -9.15, 0.14592, 49, -1.79, -9.15, 0.85165, 46, 73.57, 20.99, 0.00243, 4, 47, + 40.71, -9.16, 2e-05, 48, 18.37, -9.16, 0.23867, 49, -4.55, -9.16, 0.75671, 46, 73.76, 18.24, 0.0046, 4, 47, 37.66, -9.17, 0.00014, 48, 15.32, -9.17, 0.35275, 49, -7.6, -9.17, + 0.64256, 46, 73.97, 15.19, 0.00455, 4, 47, 35.13, -9.18, 0.00092, 48, 12.8, -9.18, 0.48034, 49, -10.13, -9.18, 0.51198, 46, 74.14, 12.68, 0.00676, 4, 47, 31.91, -9.19, 0.00375, 48, + 9.57, -9.19, 0.61095, 49, -13.35, -9.19, 0.38019, 46, 74.36, 9.46, 0.00512, 4, 47, 28.47, -9.21, 0.01298, 48, 6.13, -9.21, 0.72267, 49, -16.79, -9.21, 0.25841, 46, 74.6, 6.03, + 0.00594, 4, 47, 25.59, -9.22, 0.03422, 48, 3.25, -9.22, 0.80451, 49, -19.67, -9.22, 0.15782, 46, 74.8, 3.15, 0.00345, 4, 47, 22.68, -9.23, 0.07754, 48, 0.34, -9.23, 0.83155, 49, + -22.58, -9.23, 0.08642, 46, 75, 0.25, 0.00449, 4, 47, 19.52, -9.24, 0.14705, 48, -2.82, -9.24, 0.80991, 49, -25.74, -9.24, 0.04032, 46, 75.22, -2.9, 0.00272, 4, 47, 16.15, -9.25, + 0.24563, 48, -6.18, -9.25, 0.73344, 49, -29.11, -9.25, 0.01645, 46, 75.45, -6.26, 0.00448, 4, 47, 13.09, -9.27, 0.36774, 48, -9.24, -9.27, 0.62371, 49, -32.17, -9.27, 0.00512, 46, + 75.66, -9.31, 0.00344, 4, 47, 10.21, -9.28, 0.50372, 48, -12.13, -9.28, 0.49001, 49, -35.05, -9.28, 0.00135, 46, 75.86, -12.19, 0.00491, 4, 47, 7.08, -9.29, 0.64487, 48, -15.26, + -9.29, 0.35177, 49, -38.18, -9.29, 0.00021, 46, 76.08, -15.32, 0.00314, 4, 47, 3.26, -9.3, 0.77, 48, -19.08, -9.3, 0.22651, 49, -42, -9.3, 3e-05, 46, 76.34, -19.12, 0.00346, 4, 47, + -0.32, -9.32, 0.87272, 48, -22.66, -9.32, 0.1254, 49, -45.58, -9.32, 0, 46, 76.59, -22.69, 0.00188, 3, 47, -3.57, -9.33, 0.9351, 48, -25.91, -9.33, 0.0605, 46, 76.81, -25.94, 0.0044, + 3, 47, -7.54, -9.35, 0.96153, 48, -29.88, -9.35, 0.02278, 46, 77.09, -29.9, 0.01569, 3, 47, -9.85, -9.35, 0.93655, 48, -32.19, -9.35, 0.00657, 46, 77.24, -32.21, 0.05688, 3, 47, + -11.87, -9.36, 0.83576, 48, -34.2, -9.36, 0.00151, 46, 77.38, -34.21, 0.16273, 3, 47, -14.74, -9.37, 0.65143, 48, -37.08, -9.37, 0.00023, 46, 77.58, -37.08, 0.34834, 3, 47, -16.89, + -9.38, 0.4382, 48, -39.23, -9.38, 2e-05, 46, 77.73, -39.23, 0.56178, 3, 47, -18.76, -9.39, 0.27507, 48, -41.1, -9.39, 0, 46, 77.86, -41.09, 0.72493, 3, 47, -18.76, -2.89, 0.21414, + 48, -41.1, -2.89, 2e-05, 46, 71.37, -41.51, 0.78584, 3, 47, -18.76, 1.38, 0.19077, 48, -41.1, 1.38, 0.00024, 46, 67.11, -41.79, 0.80899, 3, 47, -18.76, 7.5, 0.1765, 48, -41.1, 7.5, + 0.00116, 46, 61.01, -42.19, 0.82235, 4, 47, -16.28, 11.88, 0.15382, 48, -38.62, 11.88, 0.00307, 49, -61.54, 11.88, 1e-05, 46, 56.48, -40, 0.84309, 4, 47, -11.9, 19.61, 0.11079, 48, + -34.24, 19.61, 0.0029, 49, -57.16, 19.61, 0.00014, 46, 48.48, -36.13, 0.88617, 4, 47, 14.63, 66.47, 0.04584, 48, -7.7, 66.47, 0.00083, 49, -30.63, 66.47, 0.00037, 46, -0.01, -12.7, + 0.95296, 4, 47, 22.29, 66.47, 0.02247, 48, -0.04, 66.47, 0.00083, 49, -22.97, 66.47, 0.00288, 46, -0.51, -5.06, 0.97382, 4, 47, 27.54, 66.47, 0.01007, 48, 5.2, 66.47, 0.00155, 49, + -17.72, 66.47, 0.0104, 46, -0.85, 0.17, 0.97798, 4, 47, 34.04, 66.47, 0.00272, 48, 11.7, 66.47, 0.00045, 49, -11.22, 66.47, 0.02285, 46, -1.28, 6.66, 0.97398, 4, 47, 39.96, 66.47, + 0.00033, 48, 17.62, 66.47, 0.00011, 49, -5.3, 66.47, 0.0498, 46, -1.66, 12.57, 0.94976, 3, 47, -16.24, -2.91, 0.33437, 48, -38.58, -2.91, 0.0002, 46, 71.23, -39, 0.66543, 3, 47, + -14.53, 1.37, 0.32645, 48, -36.87, 1.37, 0.00078, 46, 66.85, -37.57, 0.67277, 4, 47, -12.36, 7.36, 0.307, 48, -34.7, 7.36, 0.00285, 49, -57.62, 7.36, 1e-05, 46, 60.73, -35.79, + 0.69014, 4, 47, -9.97, 11.91, 0.26477, 48, -32.31, 11.91, 0.00971, 49, -55.23, 11.91, 0.00027, 46, 56.04, -33.7, 0.72525, 4, 47, -6.21, 19.66, 0.19881, 48, -28.55, 19.66, 0.00959, + 49, -51.47, 19.66, 0.00132, 46, 48.05, -30.46, 0.79028, 4, 47, 24.46, 19.97, 0.10712, 48, 2.12, 19.97, 0.11704, 49, -20.8, 19.97, 0.11672, 46, 45.75, 0.12, 0.65912, 4, 47, 51.67, + 15.14, 0.00116, 48, 29.33, 15.14, 0.00313, 49, 6.41, 15.14, 0.2148, 46, 48.8, 27.59, 0.7809, 4, 47, 48.63, 5.25, 0.0001, 48, 26.3, 5.26, 0.00083, 49, 3.37, 5.24, 0.29942, 46, 58.86, + 25.21, 0.69965, 3, 48, 26.85, -2.03, 0.00034, 49, 3.93, -2.04, 0.378, 46, 66.1, 26.23, 0.62166, 3, 48, 38.1, 1.08, 0.00022, 49, 15.18, 1.08, 0.45653, 46, 62.25, 37.26, 0.54325, 3, + 48, 39.36, -3.36, 0.00015, 49, 16.43, -3.36, 0.53433, 46, 66.61, 38.8, 0.46552, 4, 47, 23.97, 12.06, 0.12565, 48, 1.63, 12.06, 0.24275, 49, -21.29, 12.06, 0.14114, 46, 53.68, 0.15, + 0.49046, 4, 47, 23.54, 6.58, 0.11007, 48, 1.2, 6.58, 0.47217, 49, -21.72, 6.58, 0.12893, 46, 59.17, 0.08, 0.28883, 4, 47, 23.28, 1.22, 0.10884, 48, 0.94, 1.22, 0.60558, 49, -21.98, + 1.22, 0.12698, 46, 64.53, 0.17, 0.1586, 4, 47, 23.11, -3.14, 0.10666, 48, 0.77, -3.14, 0.70334, 49, -22.15, -3.14, 0.12133, 46, 68.89, 0.28, 0.06866, 4, 47, 6.87, 19.8, 0.29773, 48, + -15.47, 19.8, 0.06022, 49, -38.39, 19.8, 0.01488, 46, 47.07, -17.41, 0.62717, 4, 47, 3.75, 11.97, 0.44072, 48, -18.59, 11.97, 0.09602, 49, -41.51, 11.97, 0.01064, 46, 55.08, -20.02, + 0.45261, 4, 47, 1.91, 7.05, 0.66419, 48, -20.42, 7.05, 0.11803, 49, -43.35, 7.05, 0.002, 46, 60.11, -21.53, 0.21579, 4, 47, 0.03, 1.31, 0.77187, 48, -22.31, 1.31, 0.12352, 49, + -45.23, 1.31, 0.00043, 46, 65.96, -23.04, 0.10418, 4, 47, -1.27, -2.99, 0.84303, 48, -23.61, -2.99, 0.11246, 49, -46.53, -2.99, 0.00018, 46, 70.34, -24.05, 0.04432, 4, 47, -1.8, + 26.91, 0.12744, 48, -24.14, 26.91, 0.00959, 49, -47.06, 26.91, 0.0076, 46, 40.54, -26.53, 0.85537, 4, 47, 24.96, 27.56, 0.0719, 48, 2.62, 27.56, 0.03639, 49, -20.3, 27.56, 0.07572, + 46, 38.14, 0.13, 0.81598, 4, 47, 50.76, 27.7, 0.00702, 48, 28.42, 27.7, 0.00523, 49, 5.5, 27.7, 0.131, 46, 36.32, 25.87, 0.85675, 4, 47, 3.83, 36.15, 0.04791, 48, -18.51, 36.15, + 0.00352, 49, -41.43, 36.15, 0.00803, 46, 30.95, -21.51, 0.94054, 4, 47, 25.65, 37.95, 0.02662, 48, 3.31, 37.95, 0.00775, 49, -19.61, 37.95, 0.02767, 46, 27.73, 0.14, 0.93795, 4, 47, + 46.64, 37.25, 0.00753, 48, 24.3, 37.25, 0.00227, 49, 1.38, 37.25, 0.04846, 46, 27.06, 21.14, 0.94174, 4, 47, 41.75, 20.15, 0.01306, 48, 19.41, 20.15, 0.04509, 49, -3.51, 20.15, + 0.32134, 46, 44.45, 17.37, 0.62052, 4, 47, 40.83, 6.52, 0.00895, 48, 18.49, 6.53, 0.07841, 49, -4.43, 6.52, 0.49568, 46, 58.1, 17.34, 0.41696, 4, 47, 44.35, 6.12, 0.0015, 48, 22.01, + 6.12, 0.09572, 49, -0.91, 6.12, 0.67014, 46, 58.27, 20.88, 0.23264, 4, 47, 45.08, 1.14, 0.00025, 48, 22.74, 1.14, 0.108, 49, -0.18, 1.14, 0.76841, 46, 63.2, 21.93, 0.12334, 4, 47, + 45.58, -3.27, 0.0001, 48, 23.24, -3.27, 0.10937, 49, 0.32, -3.27, 0.83473, 46, 67.56, 22.71, 0.0558, 4, 47, 40.33, 27.64, 0.02381, 48, 18, 27.64, 0.02132, 49, -4.93, 27.64, 0.16866, + 46, 37.06, 15.47, 0.78621, 4, 47, 9.71, 27.19, 0.16236, 48, -12.63, 27.19, 0.02827, 49, -35.55, 27.19, 0.02548, 46, 39.51, -15.06, 0.78388, 4, 47, 15.01, 19.88, 0.23124, 48, -7.33, + 19.88, 0.11759, 49, -30.25, 19.88, 0.04679, 46, 46.46, -9.29, 0.60438, 4, 47, 13.78, 12.01, 0.29354, 48, -8.56, 12.01, 0.19873, 49, -31.48, 12.01, 0.04427, 46, 54.39, -10.01, + 0.46346, 4, 47, 12.95, 6.81, 0.37869, 48, -9.39, 6.81, 0.34588, 49, -32.31, 6.81, 0.01968, 46, 59.63, -10.5, 0.25575, 4, 47, 11.95, 1.27, 0.42861, 48, -10.39, 1.27, 0.42317, 49, + -33.31, 1.27, 0.01297, 46, 65.23, -11.14, 0.13524, 4, 47, 11.29, -3.07, 0.46725, 48, -11.05, -3.07, 0.46538, 49, -33.97, -3.07, 0.0097, 46, 69.59, -11.51, 0.05768, 4, 47, -0.59, + 19.72, 0.32338, 48, -22.92, 19.72, 0.02881, 49, -45.85, 19.72, 0.003, 46, 47.63, -24.85, 0.64481, 4, 47, -3.82, 11.93, 0.4391, 48, -26.16, 11.93, 0.03345, 49, -49.08, 11.93, 0.00177, + 46, 55.61, -27.57, 0.52567, 4, 47, -5.89, 7.22, 0.65491, 48, -28.23, 7.22, 0.02015, 49, -51.15, 7.22, 0.00017, 46, 60.45, -29.33, 0.32476, 4, 47, -8.13, 1.34, 0.75275, 48, -30.47, + 1.34, 0.01396, 49, -53.39, 1.34, 1e-05, 46, 66.46, -31.18, 0.23328, 3, 47, -9.63, -2.94, 0.80478, 48, -31.96, -2.94, 0.00944, 46, 70.83, -32.39, 0.18578, 4, 47, 33.3, 20.06, 0.04166, + 48, 10.96, 20.06, 0.10286, 49, -11.96, 20.06, 0.24857, 46, 45.08, 8.94, 0.60691, 4, 47, 33.97, 12.1, 0.03817, 48, 11.63, 12.1, 0.17811, 49, -11.29, 12.1, 0.32257, 46, 52.98, 10.13, + 0.46115, 4, 47, 34.3, 6.34, 0.01531, 48, 11.97, 6.34, 0.31162, 49, -10.96, 6.34, 0.40881, 46, 58.71, 10.84, 0.26426, 4, 47, 34.72, 1.18, 0.00955, 48, 12.39, 1.18, 0.39036, 49, + -10.54, 1.18, 0.4561, 46, 63.83, 11.59, 0.14399, 4, 47, 34.8, -3.2, 0.00731, 48, 12.46, -3.2, 0.44195, 49, -10.46, -3.2, 0.48699, 46, 68.2, 11.96, 0.06375, 4, 47, 45.91, 15.08, + 0.00241, 48, 23.57, 15.09, 0.01421, 49, 0.65, 15.08, 0.36275, 46, 49.23, 21.85, 0.62063, 4, 47, 40.85, 4.27, 0.00034, 48, 18.51, 4.28, 0.01068, 49, -4.41, 4.26, 0.5453, 46, 60.35, + 17.51, 0.44368, 4, 47, 52.52, 5.95, 2e-05, 48, 30.19, 5.95, 0.00999, 49, 7.26, 5.95, 0.66888, 46, 57.92, 29.04, 0.32111, 3, 48, 31.52, 1.11, 0.01011, 49, 8.6, 1.11, 0.76268, 46, + 62.66, 30.7, 0.22721, 3, 48, 32.61, -3.32, 0.00863, 49, 9.68, -3.32, 0.83296, 46, 67.01, 32.06, 0.15841, 4, 47, -9.21, 7.29, 0.52586, 48, -31.55, 7.29, 0.0057, 49, -54.47, 7.29, + 1e-05, 46, 60.59, -32.65, 0.46842, 3, 47, -11.3, 1.36, 0.56698, 48, -33.64, 1.36, 0.00311, 46, 66.65, -34.34, 0.42991, 3, 47, -12.66, -2.93, 0.60013, 48, -35, -2.93, 0.00167, 46, + 71.01, -35.42, 0.39821, 4, 47, -5.46, -2.97, 0.89102, 48, -27.8, -2.97, 0.03888, 49, -50.72, -2.97, 1e-05, 46, 70.59, -28.24, 0.07008, 4, 47, -4.18, 1.33, 0.83362, 48, -26.52, 1.33, + 0.04645, 49, -49.44, 1.33, 3e-05, 46, 66.21, -27.24, 0.1199, 4, 47, -2.26, 7.14, 0.75973, 48, -24.6, 7.14, 0.05134, 49, -47.52, 7.14, 0.00026, 46, 60.29, -25.7, 0.18867, 4, 47, 7.35, + 6.93, 0.57235, 48, -14.98, 6.93, 0.23863, 49, -37.91, 6.93, 0.00435, 46, 59.87, -16.09, 0.18467, 4, 47, 5.9, 1.29, 0.63011, 48, -16.44, 1.29, 0.25936, 49, -39.36, 1.29, 0.00243, 46, + 65.6, -17.18, 0.1081, 4, 47, 4.86, -3.03, 0.68809, 48, -17.48, -3.03, 0.26358, 49, -40.4, -3.03, 0.00168, 46, 69.98, -17.93, 0.04665, 4, 47, 17.76, 6.7, 0.22941, 48, -4.58, 6.7, + 0.4879, 49, -27.5, 6.7, 0.05094, 46, 59.42, -5.7, 0.23175, 4, 47, 17.11, 1.25, 0.24296, 48, -5.23, 1.25, 0.56856, 49, -28.15, 1.25, 0.04581, 46, 64.91, -5.99, 0.14267, 4, 47, 16.71, + -3.1, 0.25552, 48, -5.62, -3.1, 0.64168, 49, -28.55, -3.1, 0.03992, 46, 69.27, -6.1, 0.06288, 4, 47, 28.55, -3.17, 0.03276, 48, 6.22, -3.17, 0.62363, 49, -16.71, -3.17, 0.27658, 46, + 68.57, 5.72, 0.06703, 4, 47, 28.55, 1.2, 0.0367, 48, 6.21, 1.21, 0.54514, 49, -16.71, 1.21, 0.26974, 46, 64.21, 5.43, 0.14843, 4, 47, 28.71, 6.47, 0.04075, 48, 6.37, 6.47, 0.46337, + 49, -16.55, 6.47, 0.25797, 46, 58.95, 5.25, 0.23791, 4, 47, 39.28, 6.23, 0.00305, 48, 16.94, 6.24, 0.20572, 49, -5.98, 6.24, 0.59307, 46, 58.49, 15.81, 0.19817, 4, 47, 39.51, 1.16, + 0.00156, 48, 17.17, 1.16, 0.23228, 49, -5.75, 1.16, 0.64631, 46, 63.54, 16.37, 0.11984, 4, 47, 40.07, -3.24, 0.00112, 48, 17.74, -3.24, 0.25061, 49, -5.19, -3.24, 0.69415, 46, 67.89, + 17.22, 0.05412, 4, 47, 50.23, -3.29, 0, 48, 27.89, -3.29, 0.036, 49, 4.97, -3.29, 0.88144, 46, 67.29, 27.36, 0.08255, 4, 47, 49.51, 1.13, 2e-05, 48, 27.17, 1.13, 0.03826, 49, 4.25, + 1.13, 0.81357, 46, 62.92, 26.35, 0.14816, 4, 47, 48.55, 6.03, 0.00027, 48, 26.22, 6.03, 0.03577, 49, 3.29, 6.03, 0.72045, 46, 58.09, 25.08, 0.24351, 4, 47, 37.02, 4.21, 0.00156, 48, + 14.68, 4.22, 0.03311, 49, -8.24, 4.2, 0.61234, 46, 60.66, 13.69, 0.35299, 4, 47, 44.7, 4.35, 1e-05, 48, 22.36, 4.35, 0.00266, 49, -0.56, 4.34, 0.47035, 46, 60.02, 21.34, 0.52698, 3, + 48, 33.02, 5.88, 0.00213, 49, 10.1, 5.88, 0.54797, 46, 57.79, 31.88, 0.4499, 3, 48, 34.54, 1.1, 0.0018, 49, 11.62, 1.1, 0.63247, 46, 62.47, 33.7, 0.36573, 3, 48, 35.58, -3.34, + 0.00152, 49, 12.66, -3.34, 0.71351, 46, 66.83, 35.03, 0.28497, 3, 47, -17.72, -6.71, 0.31251, 48, -40.05, -6.71, 1e-05, 46, 75.11, -40.22, 0.68748, 3, 47, -13.83, -6.56, 0.64755, 48, + -36.17, -6.56, 0.00038, 46, 74.72, -36.36, 0.35207, 3, 47, -10.89, -6.57, 0.83546, 48, -33.23, -6.57, 0.00245, 46, 74.53, -33.42, 0.1621, 3, 47, -6.58, -6.39, 0.9505, 48, -28.91, + -6.39, 0.02598, 46, 74.07, -29.13, 0.02352, 4, 47, -2.51, -6.41, 0.9185, 48, -24.85, -6.41, 0.06986, 49, -47.77, -6.41, 1e-05, 46, 73.83, -25.07, 0.01163, 4, 47, 3.97, -6.54, 0.7539, + 48, -18.37, -6.54, 0.23416, 49, -41.29, -6.54, 0.00019, 46, 73.54, -18.6, 0.01175, 4, 47, 10.73, -6.3, 0.4945, 48, -11.61, -6.29, 0.48778, 49, -34.53, -6.29, 0.00242, 46, 72.85, + -11.87, 0.01529, 4, 47, 16.42, -6.31, 0.24467, 48, -5.92, -6.31, 0.71967, 49, -28.84, -6.31, 0.01969, 46, 72.5, -6.18, 0.01597, 4, 47, 22.88, -6.46, 0.08074, 48, 0.54, -6.46, + 0.81091, 49, -22.38, -6.46, 0.09131, 46, 72.22, 0.27, 0.01704, 4, 47, 28.51, -6.42, 0.01543, 48, 6.17, -6.42, 0.70591, 49, -16.75, -6.42, 0.26031, 46, 71.82, 5.89, 0.01836, 4, 47, + 34.97, -6.29, 0.00164, 48, 12.64, -6.29, 0.47309, 49, -10.29, -6.29, 0.50689, 46, 71.27, 12.33, 0.01837, 4, 47, 40.42, -6.47, 0.0001, 48, 18.08, -6.47, 0.23958, 49, -4.84, -6.47, + 0.7461, 46, 71.1, 17.78, 0.01421, 4, 47, 45.89, -6.5, 0, 48, 23.56, -6.5, 0.08431, 49, 0.63, -6.5, 0.9025, 46, 70.76, 23.24, 0.01319, 3, 48, 28.36, -6.37, 0.01867, 49, 5.43, -6.37, + 0.94991, 46, 70.33, 28.02, 0.03142, 3, 48, 33.31, -6.41, 0.00244, 49, 10.39, -6.41, 0.88788, 46, 70.05, 32.97, 0.10968, 3, 48, 36.23, -6.46, 0.00046, 49, 13.31, -6.46, 0.80558, 46, + 69.91, 35.88, 0.19395, 3, 48, 40.12, -6.31, 1e-05, 49, 17.2, -6.31, 0.61334, 46, 69.5, 39.76, 0.38665, 4, 47, 0.4, -6.47, 0.86555, 48, -21.94, -6.47, 0.12959, 49, -44.86, -6.47, + 1e-05, 46, 73.7, -22.16, 0.00485, 3, 47, -9.01, -6.49, 0.93616, 48, -31.35, -6.49, 0.00716, 46, 74.33, -31.55, 0.05668, 3, 47, -16.19, -6.65, 0.44814, 48, -38.53, -6.65, 3e-05, 46, + 74.96, -38.7, 0.55184, 4, 47, 7.48, -6.41, 0.63866, 48, -14.86, -6.41, 0.354, 49, -37.78, -6.41, 0.00037, 46, 73.18, -15.1, 0.00698, 4, 47, 13.4, -6.3, 0.36468, 48, -8.94, -6.3, + 0.62161, 49, -31.86, -6.3, 0.00581, 46, 72.69, -9.2, 0.0079, 4, 47, 19.68, -6.38, 0.14684, 48, -2.65, -6.38, 0.80383, 49, -25.58, -6.38, 0.04176, 46, 72.36, -2.92, 0.00757, 4, 47, + 25.54, -6.44, 0.03499, 48, 3.2, -6.44, 0.79745, 49, -19.72, -6.44, 0.15898, 46, 72.03, 2.92, 0.00858, 4, 47, 31.96, -6.35, 0.00417, 48, 9.62, -6.35, 0.60634, 49, -13.3, -6.35, + 0.37927, 46, 71.53, 9.32, 0.01022, 4, 47, 37.62, -6.38, 0.00021, 48, 15.28, -6.38, 0.35157, 49, -7.64, -6.38, 0.63918, 46, 71.18, 14.97, 0.00904, 4, 47, 43.32, -6.48, 1e-05, 48, + 20.98, -6.48, 0.14688, 49, -1.94, -6.48, 0.84692, 46, 70.92, 20.67, 0.00619, 3, 48, 25.81, -6.44, 0.03919, 49, 2.89, -6.44, 0.95006, 46, 70.56, 25.48, 0.01074, 3, 48, 30.92, -6.39, + 0.00591, 49, 7.99, -6.39, 0.9433, 46, 70.18, 30.58, 0.05079, 3, 48, 38.04, -6.39, 5e-05, 49, 15.12, -6.39, 0.72615, 46, 69.72, 37.69, 0.2738 + ], + "hull": 46, + "edges": [ + 80, 82, 90, 0, 10, 8, 70, 72, 72, 74, 74, 76, 4, 6, 6, 8, 76, 78, 78, 80, 4, 2, 2, 0, 72, 92, 74, 94, 92, 94, 76, 96, 94, 96, 78, 98, 96, 98, 80, 100, 98, 100, 82, 84, 84, 86, 86, + 88, 88, 90, 0, 104, 2, 106, 104, 106, 4, 108, 106, 108, 6, 110, 108, 110, 8, 112, 110, 112, 10, 12, 102, 114, 114, 116, 116, 118, 118, 120, 122, 124, 124, 126, 126, 128, 128, 130, + 132, 100, 134, 102, 136, 104, 84, 138, 138, 132, 86, 140, 140, 134, 138, 140, 88, 142, 142, 136, 140, 142, 144, 146, 146, 148, 148, 150, 150, 152, 134, 154, 154, 136, 144, 154, 132, + 156, 156, 134, 122, 156, 102, 158, 158, 122, 114, 160, 160, 124, 158, 160, 160, 162, 162, 164, 164, 166, 100, 168, 168, 122, 98, 170, 170, 124, 168, 170, 170, 172, 172, 174, 174, + 176, 102, 178, 178, 144, 114, 180, 180, 146, 178, 180, 180, 182, 182, 184, 184, 186, 104, 188, 188, 144, 188, 190, 190, 192, 192, 194, 194, 196, 96, 198, 198, 172, 94, 200, 200, 174, + 198, 200, 92, 202, 202, 176, 200, 202, 64, 66, 58, 60, 130, 204, 204, 176, 128, 206, 206, 174, 204, 206, 126, 208, 208, 172, 206, 208, 126, 210, 210, 162, 128, 212, 212, 164, 210, + 212, 130, 214, 214, 166, 212, 214, 116, 216, 216, 162, 118, 218, 218, 164, 216, 218, 120, 220, 220, 166, 218, 220, 120, 222, 222, 186, 118, 224, 224, 184, 222, 224, 116, 226, 226, + 182, 224, 226, 148, 228, 228, 182, 150, 230, 230, 184, 228, 230, 152, 232, 232, 186, 230, 232, 152, 234, 234, 196, 150, 236, 236, 194, 234, 236, 148, 238, 238, 192, 236, 238, 146, + 240, 240, 190, 238, 240, 106, 242, 242, 190, 108, 244, 244, 192, 242, 244, 110, 246, 246, 194, 244, 246, 112, 248, 248, 196, 246, 248, 16, 18, 70, 250, 250, 92, 66, 252, 252, 202, + 64, 254, 254, 176, 252, 254, 60, 256, 256, 204, 58, 258, 258, 130, 256, 258, 54, 260, 260, 214, 50, 262, 262, 166, 46, 264, 264, 220, 42, 266, 266, 120, 38, 268, 268, 222, 34, 270, + 270, 186, 30, 272, 272, 232, 26, 274, 274, 152, 22, 276, 276, 234, 18, 278, 278, 196, 16, 280, 280, 248, 278, 280, 12, 282, 282, 112, 258, 284, 284, 260, 54, 56, 56, 58, 284, 56, + 254, 286, 286, 256, 60, 62, 62, 64, 286, 62, 250, 288, 288, 252, 66, 68, 68, 70, 288, 68, 260, 290, 290, 262, 50, 52, 52, 54, 290, 52, 262, 292, 292, 264, 46, 48, 48, 50, 292, 48, + 264, 294, 294, 266, 42, 44, 44, 46, 294, 44, 266, 296, 296, 268, 38, 40, 40, 42, 296, 40, 268, 298, 298, 270, 34, 36, 36, 38, 298, 36, 270, 300, 300, 272, 30, 32, 32, 34, 300, 32, + 272, 302, 302, 274, 26, 28, 28, 30, 302, 28, 274, 304, 304, 276, 22, 24, 24, 26, 304, 24, 276, 306, 306, 278, 18, 20, 20, 22, 306, 20, 280, 308, 308, 282, 12, 14, 14, 16, 308, 14 + ], + "width": 88, + "height": 80, + "path": "aquatic-summer-02-lv2.ear-left-bubble" + } + }, + "ear-left-dot-01": {"ear-left-dot": {"x": 0.12, "y": 0.57, "rotation": -0.95, "width": 18, "height": 17, "path": "aquatic-summer-02-lv2.ear-left-dot"}}, + "ear-left-dot-02": {"ear-left-dot": {"x": 0.12, "y": 0.57, "rotation": -0.95, "width": 18, "height": 17, "path": "aquatic-summer-02-lv2.ear-left-dot"}}, + "ear-left-dot-03": {"ear-left-dot": {"x": 0.12, "y": 0.57, "rotation": -0.95, "width": 18, "height": 17, "path": "aquatic-summer-02-lv2.ear-left-dot"}}, + "ear-left-dot-04": {"ear-left-dot": {"x": 0.12, "y": 0.57, "rotation": -0.95, "width": 18, "height": 17, "path": "aquatic-summer-02-lv2.ear-left-dot"}}, + "ear-left-dot-05": {"ear-left-dot": {"x": 0.12, "y": 0.57, "rotation": -0.95, "width": 18, "height": 17, "path": "aquatic-summer-02-lv2.ear-left-dot"}}, + "ear-left-dot-06": {"ear-left-dot": {"x": 0.12, "y": 0.57, "rotation": -0.95, "width": 18, "height": 17, "path": "aquatic-summer-02-lv2.ear-left-dot"}}, + "ear-left-dot-07": {"ear-left-dot": {"x": 0.12, "y": 0.57, "rotation": -0.95, "width": 18, "height": 17, "path": "aquatic-summer-02-lv2.ear-left-dot"}}, + "ear-left-dot-08": {"ear-left-dot": {"x": 0.12, "y": 0.57, "rotation": -0.95, "width": 18, "height": 17, "path": "aquatic-summer-02-lv2.ear-left-dot"}}, + "ear-left-dot-09": {"ear-left-dot": {"x": 0.12, "y": 0.57, "rotation": -0.95, "width": 18, "height": 17, "path": "aquatic-summer-02-lv2.ear-left-dot"}}, + "ear-left-dot-10": {"ear-left-dot": {"x": 0.12, "y": 0.57, "rotation": -0.95, "width": 18, "height": 17, "path": "aquatic-summer-02-lv2.ear-left-dot"}}, + "ear-left-dot-11": {"ear-left-dot": {"x": 0.12, "y": 0.57, "rotation": -0.95, "width": 18, "height": 17, "path": "aquatic-summer-02-lv2.ear-left-dot"}}, + "ear-left-dot-12": {"ear-left-dot": {"x": 0.12, "y": 0.57, "rotation": -0.95, "width": 18, "height": 17, "path": "aquatic-summer-02-lv2.ear-left-dot"}}, + "ear-left-under": {"ear-left-under": {"x": 84.22, "y": -30, "rotation": -90, "width": 143, "height": 220, "path": "aquatic-summer-02-lv2.ear-left-under"}}, + "ear-left-upper": {"ear-left-upper": {"x": 99.72, "y": -28, "rotation": -90, "width": 153, "height": 261, "path": "aquatic-summer-02-lv2.ear-left-upper"}}, + "ear-right-bubble": { + "ear-right-bubble": { + "type": "mesh", + "uvs": [ + 0.93928, 0.50958, 0.95558, 0.59885, 0.96791, 0.66638, 0.98006, 0.73289, 1, 0.84205, 1, 0.89818, 1, 0.9625, 0.9567, 0.9625, 0.9208, 0.9625, 0.88771, 0.9625, 0.83969, 0.9625, 0.79967, + 0.9625, 0.76574, 0.9625, 0.73418, 0.9625, 0.69508, 0.9625, 0.6661, 0.9625, 0.6319, 0.9625, 0.6046, 0.9625, 0.57454, 0.9625, 0.53755, 0.9625, 0.50387, 0.9625, 0.47341, 0.9625, + 0.44466, 0.9625, 0.41233, 0.9625, 0.37317, 0.9625, 0.33787, 0.9625, 0.30333, 0.9625, 0.2648, 0.9625, 0.21937, 0.9625, 0.17434, 0.9625, 0.12959, 0.9625, 0.08769, 0.9625, 0, 0.9625, + 0.02085, 0.89779, 0.04055, 0.83664, 0.06626, 0.75682, 0.08854, 0.68766, 0.11527, 0.60468, 0.13788, 0.53451, 0.35753, 0.0375, 0.43128, 0.0375, 0.52161, 0.0375, 0.60662, 0.0375, + 0.67954, 0.0375, 0.54109, 0.5336, 0.30907, 0.53412, 0.75362, 0.52077, 0.84707, 0.51514, 0.2081, 0.53435, 0.42115, 0.53387, 0.64269, 0.52747, 0.1892, 0.60156, 0.3018, 0.60447, + 0.41972, 0.60346, 0.54053, 0.60135, 0.64648, 0.59785, 0.76151, 0.59644, 0.87262, 0.58988, 0.16806, 0.67676, 0.29497, 0.67061, 0.41838, 0.66857, 0.54, 0.66508, 0.65011, 0.66538, + 0.7681, 0.65967, 0.89666, 0.66021, 0.14733, 0.75044, 0.28705, 0.74721, 0.41688, 0.74143, 0.53942, 0.73556, 0.6538, 0.73393, 0.7757, 0.7326, 0.91933, 0.7265, 0.12337, 0.83566, 0.2782, + 0.83283, 0.4151, 0.82771, 0.53871, 0.82207, 0.65852, 0.82169, 0.7847, 0.8189, 0.95379, 0.82732, 0.97627, 0.89309, 0.79208, 0.88971, 0.66236, 0.89294, 0.5381, 0.89586, 0.41375, + 0.89349, 0.2717, 0.89571, 0.10571, 0.89844, 0.53197, 0.30141, 0.39415, 0.1884, 0.65961, 0.2117, 0.25473, 0.53425, 0.24202, 0.60293, 0.22911, 0.6738, 0.21379, 0.7489, 0.19729, + 0.83431, 0.18704, 0.8971, 0.36352, 0.534, 0.36013, 0.60397, 0.35748, 0.66957, 0.35288, 0.74428, 0.34802, 0.83022, 0.34383, 0.89458, 0.48024, 0.53373, 0.47847, 0.60244, 0.47433, + 0.66696, 0.47563, 0.73861, 0.47402, 0.82502, 0.47337, 0.89463, 0.58955, 0.53067, 0.59344, 0.5996, 0.59605, 0.66523, 0.5961, 0.73475, 0.60032, 0.82187, 0.60296, 0.89434, 0.69391, + 0.52438, 0.69915, 0.59721, 0.70691, 0.66263, 0.71206, 0.7333, 0.71954, 0.82034, 0.72813, 0.8913, 0.80125, 0.5179, 0.81428, 0.59333, 0.8348, 0.65995, 0.84793, 0.72953, 0.87862, + 0.82358, 0.89305, 0.89156, 0.19669, 0.67537, 0.17782, 0.74974, 0.1594, 0.835, 0.1429, 0.89783, 0.26012, 0.6723, 0.25017, 0.74806, 0.23685, 0.83359, 0.22589, 0.89647, 0.30659, + 0.89517, 0.3131, 0.83153, 0.31569, 0.74593, 0.32231, 0.67016, 0.38717, 0.66908, 0.38553, 0.74282, 0.38068, 0.829, 0.37648, 0.89407, 0.44462, 0.89408, 0.44322, 0.82643, 0.44458, + 0.7401, 0.44621, 0.66777, 0.50711, 0.66602, 0.50646, 0.73714, 0.50582, 0.82357, 0.50482, 0.89523, 0.57134, 0.89508, 0.5687, 0.82197, 0.56865, 0.73514, 0.5654, 0.66515, 0.62192, + 0.6653, 0.6236, 0.73436, 0.62525, 0.8218, 0.62839, 0.89374, 0.69427, 0.89215, 0.76244, 0.89045, 0.84047, 0.89059, 0.93306, 0.89229, 0.91732, 0.8255, 0.82617, 0.82097, 0.75013, + 0.81967, 0.6863, 0.82108, 0.68017, 0.73364, 0.74166, 0.73297, 0.80979, 0.73115, 0.88285, 0.72805, 0.86581, 0.66008, 0.79931, 0.6598, 0.73613, 0.66121, 0.67214, 0.66431, 0.09776, + 0.92671, 0.13724, 0.92534, 0.1817, 0.92459, 0.22313, 0.92439, 0.26892, 0.92268, 0.30526, 0.92265, 0.34139, 0.92236, 0.3751, 0.92252, 0.41313, 0.92351, 0.44464, 0.92289, 0.47339, + 0.92339, 0.5044, 0.9248, 0.53787, 0.92389, 0.57268, 0.92341, 0.60366, 0.9233, 0.62995, 0.92432, 0.66398, 0.92316, 0.69464, 0.92383, 0.73085, 0.92333, 0.76403, 0.92521, 0.79572, + 0.92461, 0.84011, 0.92404, 0.89075, 0.92209, 0.92774, 0.92274, 0.96706, 0.92576 + ], + "triangles": [ + 166, 63, 70, 116, 171, 166, 165, 115, 116, 77, 70, 167, 163, 166, 70, 163, 70, 77, 117, 116, 166, 117, 166, 163, 77, 167, 162, 164, 165, 116, 164, 116, 117, 76, 69, 165, 76, 165, + 164, 162, 122, 123, 80, 77, 162, 158, 163, 77, 158, 77, 80, 159, 162, 123, 80, 162, 159, 118, 117, 163, 118, 163, 158, 124, 123, 161, 159, 123, 124, 157, 164, 117, 157, 117, 118, 81, + 76, 164, 81, 164, 157, 195, 159, 124, 196, 124, 160, 195, 124, 196, 189, 81, 157, 191, 118, 158, 190, 157, 118, 190, 118, 191, 189, 157, 190, 159, 193, 80, 194, 159, 195, 194, 193, + 159, 192, 158, 80, 192, 80, 193, 191, 158, 192, 15, 189, 190, 14, 190, 191, 15, 190, 14, 13, 191, 192, 14, 191, 13, 12, 192, 193, 13, 192, 12, 11, 193, 194, 12, 193, 11, 10, 11, 194, + 9, 194, 195, 10, 194, 9, 8, 195, 196, 9, 195, 8, 8, 196, 7, 151, 109, 110, 68, 152, 151, 146, 145, 68, 104, 103, 146, 155, 154, 69, 155, 69, 76, 111, 110, 154, 111, 154, 155, 150, + 151, 110, 150, 110, 111, 68, 151, 150, 75, 146, 68, 75, 68, 150, 147, 104, 146, 147, 146, 75, 105, 143, 104, 105, 104, 147, 142, 67, 143, 142, 143, 105, 74, 67, 142, 156, 155, 76, + 156, 76, 81, 106, 141, 142, 74, 142, 141, 83, 74, 141, 112, 111, 155, 112, 155, 156, 105, 106, 142, 149, 150, 111, 149, 111, 112, 148, 105, 147, 106, 105, 148, 82, 75, 150, 82, 148, + 147, 147, 75, 82, 150, 149, 82, 182, 141, 106, 187, 112, 156, 183, 106, 148, 182, 106, 183, 186, 149, 112, 186, 112, 187, 182, 181, 83, 182, 83, 141, 185, 148, 82, 185, 82, 149, 185, + 149, 186, 188, 156, 81, 188, 81, 189, 187, 156, 188, 184, 183, 148, 184, 148, 185, 22, 182, 183, 181, 182, 22, 23, 181, 22, 21, 183, 184, 22, 183, 21, 20, 21, 184, 19, 184, 185, 20, + 184, 19, 18, 186, 187, 19, 185, 186, 18, 19, 186, 17, 187, 188, 18, 187, 17, 16, 188, 189, 17, 188, 16, 16, 189, 15, 143, 144, 104, 110, 153, 154, 151, 152, 109, 68, 145, 61, 68, 61, + 152, 146, 103, 145, 83, 139, 74, 181, 140, 83, 23, 180, 181, 138, 137, 67, 98, 136, 97, 98, 97, 138, 135, 59, 136, 135, 136, 98, 66, 59, 135, 130, 129, 66, 74, 138, 67, 139, 98, 138, + 139, 138, 74, 99, 135, 98, 99, 98, 139, 134, 66, 135, 134, 135, 99, 73, 130, 66, 73, 66, 134, 131, 92, 130, 131, 130, 73, 93, 92, 131, 140, 99, 139, 140, 139, 83, 100, 134, 99, 100, + 99, 140, 133, 73, 134, 133, 134, 100, 84, 131, 73, 84, 73, 133, 132, 93, 131, 132, 131, 84, 94, 127, 93, 94, 93, 132, 128, 127, 94, 179, 133, 100, 180, 100, 140, 179, 100, 180, 178, + 84, 133, 178, 133, 179, 177, 132, 84, 177, 84, 178, 180, 140, 181, 176, 94, 132, 176, 132, 177, 175, 128, 94, 175, 94, 176, 174, 85, 128, 174, 128, 175, 30, 173, 174, 31, 173, 30, + 29, 174, 175, 30, 174, 29, 28, 175, 176, 29, 175, 28, 27, 176, 177, 28, 176, 27, 26, 177, 178, 27, 177, 26, 25, 178, 179, 26, 178, 25, 24, 179, 180, 25, 179, 24, 24, 180, 23, 79, 4, + 5, 79, 78, 4, 6, 79, 5, 123, 168, 161, 160, 78, 79, 124, 161, 160, 7, 196, 197, 196, 160, 197, 197, 160, 79, 160, 161, 78, 7, 197, 6, 162, 167, 122, 6, 197, 79, 85, 72, 128, 173, 32, + 85, 31, 32, 173, 173, 85, 174, 85, 32, 33, 66, 129, 59, 167, 170, 121, 167, 121, 122, 70, 63, 170, 70, 170, 167, 166, 171, 63, 123, 122, 168, 130, 91, 129, 92, 91, 130, 122, 169, + 168, 127, 65, 126, 72, 65, 127, 92, 125, 91, 161, 168, 71, 122, 121, 169, 170, 120, 121, 91, 90, 129, 78, 161, 71, 3, 78, 71, 71, 64, 2, 52, 129, 90, 59, 129, 52, 67, 60, 143, 138, + 97, 137, 170, 63, 56, 171, 56, 63, 169, 121, 57, 33, 34, 85, 72, 35, 65, 34, 35, 72, 125, 51, 91, 35, 36, 65, 91, 51, 90, 36, 37, 58, 58, 37, 51, 71, 2, 3, 64, 1, 2, 1, 64, 57, 57, + 0, 1, 87, 39, 40, 88, 42, 43, 88, 86, 41, 88, 41, 42, 0, 88, 43, 47, 88, 0, 86, 88, 113, 47, 119, 88, 119, 46, 88, 46, 113, 88, 50, 86, 113, 107, 86, 50, 44, 86, 107, 87, 41, 86, 41, + 87, 40, 101, 86, 44, 87, 86, 95, 101, 49, 86, 87, 38, 39, 49, 95, 86, 87, 95, 45, 87, 45, 89, 87, 89, 48, 87, 48, 38, 57, 47, 0, 120, 119, 47, 56, 46, 119, 56, 119, 120, 114, 113, + 46, 114, 46, 56, 55, 50, 113, 55, 113, 114, 108, 107, 50, 55, 108, 50, 54, 101, 44, 44, 107, 108, 54, 44, 108, 102, 49, 101, 102, 101, 54, 90, 48, 89, 53, 95, 49, 53, 49, 102, 96, + 45, 95, 96, 95, 53, 52, 89, 45, 52, 45, 96, 90, 89, 52, 171, 114, 56, 115, 114, 171, 172, 55, 114, 172, 114, 115, 54, 145, 102, 152, 54, 108, 61, 54, 152, 153, 109, 108, 55, 153, + 108, 152, 108, 109, 55, 62, 153, 172, 62, 55, 61, 145, 54, 102, 144, 53, 103, 102, 145, 103, 144, 102, 53, 137, 96, 60, 53, 144, 60, 137, 53, 96, 136, 52, 97, 96, 137, 97, 136, 96, + 69, 62, 172, 154, 153, 62, 110, 109, 153, 144, 103, 104, 143, 60, 144, 67, 137, 60, 120, 47, 57, 121, 120, 57, 64, 169, 57, 78, 3, 4, 51, 38, 48, 51, 48, 90, 37, 38, 51, 58, 51, 125, + 65, 36, 58, 120, 170, 56, 154, 62, 69, 116, 115, 171, 165, 172, 115, 69, 172, 165, 59, 52, 136, 126, 58, 125, 65, 58, 126, 168, 169, 64, 168, 64, 71, 85, 34, 72, 126, 125, 92, 93, + 126, 92, 127, 126, 93, 128, 72, 127 + ], + "vertices": [ + 1, 31, 39.72, 33.4, 1, 1, 31, 46.93, 34.38, 1, 1, 31, 52.37, 35.12, 1, 1, 31, 58.6, 36.08, 1, 4, 31, 66.62, 38.45, 0.9295, 36, 61.48, 0.37, 1e-05, 37, 40.07, 0.48, 0.00266, 38, 18.6, + 0.48, 0.06784, 4, 31, 70.87, 39.07, 0.79905, 36, 62.32, -3.84, 1e-05, 37, 40.92, -3.73, 0.00721, 38, 19.44, -3.73, 0.19373, 4, 31, 76.95, 40.59, 0.74731, 36, 64.15, -9.83, 0, 37, + 42.75, -9.72, 0.00973, 38, 21.27, -9.72, 0.24296, 4, 31, 76.59, 36.12, 0.54785, 36, 59.68, -9.71, 1e-05, 37, 38.27, -9.6, 0.02168, 38, 16.8, -9.6, 0.43046, 4, 31, 76.3, 32.42, + 0.43038, 36, 55.96, -9.61, 3e-05, 37, 34.56, -9.5, 0.03847, 38, 13.08, -9.5, 0.53112, 4, 31, 76.02, 29.01, 0.36035, 36, 52.54, -9.51, 9e-05, 37, 31.14, -9.41, 0.06275, 38, 9.66, + -9.41, 0.57681, 4, 31, 75.63, 24.06, 0.2889, 36, 47.58, -9.38, 0.00026, 37, 26.17, -9.27, 0.09917, 38, 4.7, -9.27, 0.61167, 4, 31, 75.3, 19.93, 0.22591, 36, 43.44, -9.26, 0.0007, 37, + 22.03, -9.16, 0.14876, 38, 0.56, -9.16, 0.62463, 4, 31, 75.15, 17.12, 0.17724, 36, 40.62, -9.26, 0.0017, 37, 19.22, -9.16, 0.21115, 38, -2.26, -9.16, 0.60991, 4, 31, 75.01, 14.5, + 0.14418, 36, 38, -9.26, 0.00385, 37, 16.6, -9.16, 0.28407, 38, -4.88, -9.16, 0.5679, 4, 31, 74.84, 11.26, 0.12448, 36, 34.76, -9.26, 0.00813, 37, 13.35, -9.16, 0.36326, 38, -8.12, + -9.16, 0.50413, 4, 31, 74.71, 8.86, 0.11438, 36, 32.35, -9.26, 0.016, 37, 10.95, -9.16, 0.44276, 38, -10.53, -9.16, 0.42686, 4, 31, 74.56, 6.02, 0.11006, 36, 29.51, -9.26, 0.02948, + 37, 8.11, -9.16, 0.51561, 38, -13.37, -9.16, 0.34486, 4, 31, 74.45, 3.76, 0.10858, 36, 27.25, -9.26, 0.05095, 37, 5.84, -9.16, 0.57474, 38, -15.63, -9.16, 0.26573, 4, 31, 74.31, + 1.27, 0.10802, 36, 24.75, -9.26, 0.08291, 37, 3.35, -9.16, 0.614, 38, -18.13, -9.16, 0.19506, 4, 31, 74.15, -1.8, 0.1074, 36, 21.68, -9.26, 0.12742, 37, 0.28, -9.16, 0.62906, 38, + -21.2, -9.16, 0.13612, 4, 31, 74.01, -4.59, 0.10634, 36, 18.89, -9.26, 0.18549, 37, -2.52, -9.16, 0.61812, 38, -23.99, -9.16, 0.09006, 4, 31, 73.87, -7.11, 0.10502, 36, 16.36, -9.26, + 0.25646, 37, -5.05, -9.16, 0.58221, 38, -26.52, -9.16, 0.05631, 4, 31, 73.75, -9.5, 0.10419, 36, 13.97, -9.26, 0.33753, 37, -7.43, -9.16, 0.52513, 38, -28.91, -9.16, 0.03316, 4, 31, + 73.61, -12.18, 0.10536, 36, 11.29, -9.26, 0.42349, 37, -10.12, -9.16, 0.45282, 38, -31.59, -9.16, 0.01833, 4, 31, 73.44, -15.42, 0.11098, 36, 8.04, -9.26, 0.50701, 37, -13.37, -9.16, + 0.37254, 38, -34.84, -9.16, 0.00948, 4, 31, 73.28, -18.35, 0.12436, 36, 5.11, -9.26, 0.57939, 37, -16.3, -9.16, 0.29168, 38, -37.77, -9.16, 0.00457, 4, 31, 73.13, -21.21, 0.149, 36, + 2.24, -9.26, 0.63222, 37, -19.16, -9.16, 0.21673, 38, -40.64, -9.16, 0.00205, 4, 31, 72.96, -24.4, 0.18726, 36, -0.96, -9.26, 0.65948, 37, -22.36, -9.16, 0.15241, 38, -43.84, -9.16, + 0.00085, 4, 31, 72.77, -28.17, 0.23866, 36, -4.73, -9.26, 0.65975, 37, -26.13, -9.16, 0.10126, 38, -47.61, -9.16, 0.00033, 4, 31, 72.57, -31.9, 0.29871, 36, -8.46, -9.26, 0.63741, + 37, -29.87, -9.16, 0.06376, 38, -51.34, -9.16, 0.00012, 4, 31, 72.37, -35.61, 0.35932, 36, -12.18, -9.26, 0.60181, 37, -33.58, -9.16, 0.03884, 38, -55.06, -9.16, 4e-05, 4, 31, 72.19, + -39.08, 0.49297, 36, -15.66, -9.26, 0.48586, 37, -37.06, -9.16, 0.02116, 38, -58.54, -9.16, 1e-05, 4, 31, 71.81, -46.35, 0.66969, 36, -22.93, -9.26, 0.32512, 37, -44.34, -9.16, + 0.00518, 38, -65.81, -9.16, 0, 4, 31, 66.73, -44.35, 0.73638, 36, -21.2, -4.09, 0.26049, 37, -42.61, -3.98, 0.00313, 38, -64.08, -3.98, 0, 4, 31, 61.93, -42.46, 0.74288, 36, -19.57, + 0.8, 0.25402, 37, -40.97, 0.91, 0.00309, 38, -62.45, 0.91, 1e-05, 2, 31, 56.84, -37.71, 0.86, 36, -15.1, 6.14, 0.14, 2, 31, 51.66, -35.24, 0.87418, 36, -12.89, 11.44, 0.12582, 1, 31, + 43.72, -35.29, 1, 1, 31, 38.22, -33.12, 1, 2, 31, -0.53, -12.83, 0.99965, 36, 6.74, 64.74, 0.00035, 2, 31, -0.21, -6.72, 0.9998, 36, 12.86, 64.74, 0.0002, 3, 31, 0.19, 0.77, 0.99981, + 36, 20.36, 64.74, 9e-05, 38, -22.52, 64.84, 0.0001, 3, 31, 0.56, 7.82, 0.99975, 36, 27.41, 64.74, 1e-05, 38, -15.47, 64.84, 0.00024, 2, 31, 0.88, 13.86, 0.99954, 38, -9.41, 64.84, + 0.00046, 4, 31, 39.9, 0.3, 0.88429, 36, 21.98, 25.05, 0.02526, 37, 0.57, 25.15, 0.06552, 38, -20.9, 25.15, 0.02493, 1, 31, 38.93, -18.93, 1, 4, 31, 39.81, 17.97, 0.94373, 36, 39.62, + 26.07, 0.00089, 37, 18.21, 26.18, 0.01419, 38, -3.26, 26.18, 0.04119, 1, 31, 39.76, 25.74, 1, 1, 31, 38.51, -27.3, 1, 4, 31, 39.4, -9.64, 0.88619, 36, 12.02, 25.03, 0.05505, 37, + -9.38, 25.13, 0.05102, 38, -30.86, 25.13, 0.00774, 4, 31, 39.86, 8.75, 0.89286, 36, 30.41, 25.54, 0.00746, 37, 9, 25.64, 0.04877, 38, -12.47, 25.64, 0.05092, 1, 31, 43.8, -29.15, 1, + 4, 31, 44.52, -19.83, 0.74343, 36, 2.11, 19.38, 0.19678, 37, -19.29, 19.48, 0.05726, 38, -40.77, 19.48, 0.00254, 4, 31, 44.96, -10.05, 0.58833, 36, 11.9, 19.46, 0.20061, 37, -9.5, + 19.56, 0.19026, 38, -30.98, 19.56, 0.0208, 4, 31, 45.31, -0.03, 0.58846, 36, 21.93, 19.63, 0.08112, 37, 0.53, 19.73, 0.24909, 38, -20.95, 19.73, 0.08133, 4, 31, 45.5, 8.76, 0.59817, + 36, 30.72, 19.91, 0.02026, 37, 9.32, 20.01, 0.18761, 38, -12.16, 20.01, 0.19395, 4, 31, 45.89, 18.3, 0.66183, 36, 40.27, 20.02, 0.00346, 37, 18.87, 20.13, 0.07957, 38, -2.61, 20.13, + 0.25514, 1, 31, 45.85, 27.54, 1, 4, 31, 49.71, -31.22, 0.84023, 36, -8.99, 13.6, 0.15068, 37, -30.39, 13.7, 0.00899, 38, -51.87, 13.7, 0.0001, 4, 31, 49.78, -20.68, 0.48016, 36, + 1.55, 14.09, 0.41733, 37, -19.86, 14.19, 0.10062, 38, -41.33, 14.19, 0.0019, 4, 31, 50.15, -10.44, 0.42576, 36, 11.79, 14.25, 0.28082, 37, -9.61, 14.36, 0.27628, 38, -31.09, 14.36, + 0.01714, 4, 31, 50.4, -0.34, 0.43345, 36, 21.89, 14.53, 0.09343, 37, 0.48, 14.63, 0.37698, 38, -20.99, 14.63, 0.09613, 4, 31, 50.91, 8.78, 0.43708, 36, 31.02, 14.51, 0.01603, 37, + 9.62, 14.61, 0.27127, 38, -11.86, 14.61, 0.27562, 4, 31, 50.97, 18.59, 0.51068, 36, 40.82, 14.96, 0.00179, 37, 19.41, 15.07, 0.09933, 38, -2.06, 15.07, 0.3882, 4, 31, 51.57, 29.24, + 0.94195, 36, 51.49, 14.92, 4e-05, 37, 30.08, 15.02, 0.00385, 38, 8.61, 15.02, 0.05416, 4, 31, 55.51, -33.25, 0.72549, 36, -10.71, 7.7, 0.2621, 37, -32.11, 7.81, 0.01235, 38, -53.59, + 7.81, 6e-05, 4, 31, 55.86, -21.65, 0.38729, 36, 0.89, 7.96, 0.4981, 37, -20.51, 8.06, 0.11341, 38, -41.99, 8.06, 0.0012, 4, 31, 55.96, -10.87, 0.32692, 36, 11.67, 8.42, 0.3274, 37, + -9.74, 8.53, 0.32983, 38, -31.21, 8.53, 0.01585, 4, 31, 56.03, -0.69, 0.33677, 36, 21.84, 8.89, 0.10146, 37, 0.43, 9, 0.45593, 38, -21.04, 9, 0.10584, 4, 31, 56.4, 8.8, 0.33839, 36, + 31.33, 9.02, 0.0144, 37, 9.93, 9.13, 0.32329, 38, -11.55, 9.13, 0.32392, 4, 31, 57.13, 19.32, 0.42143, 36, 41.87, 8.84, 0.00109, 37, 20.47, 8.95, 0.11176, 38, -1.01, 8.95, 0.46572, + 4, 31, 58.69, 31.45, 0.79569, 36, 54.07, 7.92, 5e-05, 37, 32.67, 8.03, 0.01091, 38, 11.19, 8.03, 0.19335, 4, 31, 62.21, -35.59, 0.66085, 36, -12.7, 0.88, 0.32566, 37, -34.1, 0.99, + 0.01346, 38, -55.58, 0.99, 3e-05, 4, 31, 62.66, -22.75, 0.31024, 36, 0.16, 1.11, 0.56299, 37, -21.25, 1.21, 0.12589, 38, -42.72, 1.21, 0.00089, 4, 31, 62.85, -11.38, 0.24349, 36, + 11.52, 1.52, 0.36477, 37, -9.89, 1.62, 0.37599, 38, -31.36, 1.62, 0.01574, 4, 31, 62.94, -1.11, 0.2525, 36, 21.78, 1.97, 0.10936, 37, 0.37, 2.08, 0.52284, 38, -21.1, 2.08, 0.1153, 4, + 31, 63.43, 8.82, 0.2544, 36, 31.72, 2, 0.01401, 37, 10.32, 2.11, 0.36809, 38, -11.16, 2.11, 0.3635, 4, 31, 63.63, 19.58, 0.3466, 36, 42.48, 2.36, 0.00077, 37, 21.07, 2.47, 0.1237, + 38, -0.4, 2.47, 0.52893, 4, 31, 65.17, 33.27, 0.69411, 36, 56.23, 1.55, 3e-05, 37, 34.83, 1.66, 0.01435, 38, 13.35, 1.66, 0.29151, 4, 31, 70.52, 34.86, 0.61986, 36, 58.1, -3.71, + 1e-05, 37, 36.69, -3.61, 0.01658, 38, 15.22, -3.61, 0.36355, 4, 31, 69.45, 19.61, 0.28549, 36, 42.81, -3.44, 0.00065, 37, 21.4, -3.34, 0.13463, 38, -0.07, -3.34, 0.57924, 4, 31, + 69.14, 8.84, 0.18483, 36, 32.04, -3.7, 0.01432, 37, 10.64, -3.59, 0.40541, 38, -10.84, -3.59, 0.39544, 4, 31, 68.83, -1.47, 0.18141, 36, 21.73, -3.93, 0.11681, 37, 0.32, -3.83, + 0.57764, 38, -21.15, -3.83, 0.12413, 4, 31, 68.1, -11.77, 0.17479, 36, 11.41, -3.74, 0.39444, 37, -10, -3.64, 0.41447, 38, -31.47, -3.64, 0.0163, 4, 31, 67.66, -23.55, 0.24784, 36, + -0.38, -3.92, 0.61396, 37, -21.79, -3.82, 0.13743, 38, -43.26, -3.82, 0.00077, 4, 31, 67.15, -37.32, 0.59732, 36, -14.16, -4.14, 0.38768, 37, -35.56, -4.03, 0.01499, 38, -57.04, + -4.03, 1e-05, 4, 31, 21.31, 0.52, 0.98403, 36, 21.22, 43.62, 0.00516, 37, -0.19, 43.73, 0.00609, 38, -21.66, 43.73, 0.00473, 3, 31, 11.68, -10.43, 0.98457, 36, 9.78, 52.66, 0.01421, + 37, -11.62, 52.77, 0.00123, 3, 31, 14.7, 11.48, 0.98807, 37, 10.41, 50.91, 0.00101, 38, -11.07, 50.91, 0.01092, 1, 31, 38.71, -23.44, 1, 4, 31, 44.14, -24.78, 0.93122, 36, -2.85, + 19.5, 0.05888, 37, -24.25, 19.61, 0.00959, 38, -45.73, 19.61, 0.0003, 4, 31, 49.74, -26.15, 0.67882, 36, -3.92, 13.83, 0.287, 37, -25.32, 13.94, 0.03374, 38, -46.8, 13.94, 0.00045, + 4, 31, 55.68, -27.73, 0.52353, 36, -5.19, 7.82, 0.4314, 37, -26.59, 7.93, 0.04479, 38, -48.07, 7.93, 0.00029, 4, 31, 62.43, -29.46, 0.41464, 36, -6.56, 0.99, 0.53292, 37, -27.96, + 1.1, 0.05226, 38, -49.44, 1.1, 0.00018, 4, 31, 67.4, -30.57, 0.35706, 36, -7.41, -4.03, 0.58638, 37, -28.81, -3.93, 0.05644, 38, -50.29, -3.93, 0.00012, 4, 31, 39.16, -14.42, + 0.88311, 36, 7.24, 25.02, 0.07338, 37, -14.17, 25.12, 0.03978, 38, -35.64, 25.12, 0.00372, 4, 31, 44.74, -15, 0.62555, 36, 6.96, 19.42, 0.24007, 37, -14.45, 19.52, 0.1259, 38, + -35.92, 19.52, 0.00848, 4, 31, 49.97, -15.49, 0.4342, 36, 6.74, 14.17, 0.37611, 37, -14.67, 14.27, 0.18375, 38, -36.14, 14.27, 0.00595, 4, 31, 55.91, -16.19, 0.33684, 36, 6.35, 8.19, + 0.44427, 37, -15.05, 8.3, 0.21425, 38, -36.53, 8.3, 0.00464, 4, 31, 62.76, -16.95, 0.25537, 36, 5.95, 1.32, 0.49872, 37, -15.45, 1.42, 0.24179, 38, -36.93, 1.42, 0.00413, 4, 31, + 67.88, -17.57, 0.18921, 36, 5.6, -3.83, 0.54119, 37, -15.8, -3.73, 0.26556, 38, -37.28, -3.73, 0.00404, 4, 31, 39.65, -4.74, 0.83361, 36, 16.93, 25.04, 0.05679, 37, -4.48, 25.14, + 0.08927, 38, -25.95, 25.14, 0.02033, 4, 31, 45.13, -5.18, 0.57797, 36, 16.78, 19.54, 0.13938, 37, -4.63, 19.65, 0.23843, 38, -26.1, 19.65, 0.04422, 4, 31, 50.27, -5.8, 0.42696, 36, + 16.43, 14.38, 0.17737, 37, -4.97, 14.48, 0.35156, 38, -26.45, 14.48, 0.04411, 4, 31, 56, -5.99, 0.33132, 36, 16.54, 8.65, 0.20059, 37, -4.86, 8.75, 0.42277, 38, -26.34, 8.75, + 0.04531, 4, 31, 62.89, -6.48, 0.24781, 36, 16.41, 1.73, 0.22055, 37, -4.99, 1.84, 0.48389, 38, -26.47, 1.84, 0.04775, 4, 31, 68.45, -6.83, 0.17763, 36, 16.35, -3.83, 0.23735, 37, + -5.05, -3.73, 0.53429, 38, -26.53, -3.73, 0.05074, 4, 31, 39.88, 4.33, 0.83746, 36, 26, 25.28, 0.02009, 37, 4.59, 25.39, 0.08772, 38, -16.88, 25.39, 0.05473, 4, 31, 45.41, 4.36, + 0.58276, 36, 26.32, 19.77, 0.04346, 37, 4.92, 19.87, 0.23645, 38, -16.56, 19.87, 0.13732, 4, 31, 50.66, 4.3, 0.43226, 36, 26.54, 14.52, 0.04191, 37, 5.13, 14.62, 0.34769, 38, -16.34, + 14.62, 0.17814, 4, 31, 56.21, 4.01, 0.33656, 36, 26.54, 8.96, 0.0422, 37, 5.14, 9.06, 0.41771, 38, -16.34, 9.06, 0.20353, 4, 31, 63.19, 4, 0.25264, 36, 26.89, 1.99, 0.04384, 37, + 5.49, 2.09, 0.47782, 38, -15.99, 2.09, 0.2257, 4, 31, 68.99, 3.91, 0.18189, 36, 27.11, -3.81, 0.04615, 37, 5.71, -3.71, 0.52741, 38, -15.77, -3.71, 0.24456, 4, 31, 39.83, 13, 0.8608, + 36, 34.66, 25.79, 0.00457, 37, 13.26, 25.89, 0.04889, 38, -8.22, 25.89, 0.08574, 4, 31, 45.67, 13.13, 0.60926, 36, 35.09, 19.96, 0.00894, 37, 13.69, 20.06, 0.13479, 38, -7.79, 20.06, + 0.247, 4, 31, 50.93, 13.5, 0.45377, 36, 35.74, 14.73, 0.00554, 37, 14.33, 14.83, 0.18027, 38, -7.14, 14.83, 0.36041, 4, 31, 56.75, 13.83, 0.35749, 36, 36.37, 8.94, 0.00417, 37, + 14.96, 9.04, 0.20976, 38, -6.51, 9.04, 0.42858, 4, 31, 63.53, 14.02, 0.27612, 36, 36.92, 2.18, 0.00359, 37, 15.52, 2.28, 0.23625, 38, -5.96, 2.28, 0.48404, 4, 31, 69.3, 14.3, + 0.20954, 36, 37.5, -3.57, 0.00344, 37, 16.1, -3.46, 0.25903, 38, -5.38, -3.46, 0.52799, 1, 31, 39.78, 21.93, 1, 4, 31, 45.87, 22.69, 0.82489, 36, 44.65, 20.27, 0.00083, 37, 23.25, + 20.37, 0.0268, 38, 1.77, 20.37, 0.14748, 4, 31, 51.28, 24.11, 0.64773, 36, 46.35, 14.94, 0.00052, 37, 24.95, 15.04, 0.04091, 38, 3.47, 15.04, 0.31084, 4, 31, 57.92, 25.42, 0.53225, + 36, 48.01, 8.38, 0.00029, 37, 26.6, 8.49, 0.04857, 38, 5.13, 8.49, 0.41889, 4, 31, 64.49, 27.19, 0.46955, 36, 50.12, 1.91, 0.00016, 37, 28.71, 2.02, 0.05201, 38, 7.24, 2.02, 0.47828, + 4, 31, 70.04, 27.97, 0.41589, 36, 51.19, -3.59, 0.0001, 37, 29.78, -3.48, 0.05591, 38, 8.31, -3.48, 0.5281, 4, 31, 49.73, -28.84, 0.72647, 36, -6.61, 13.71, 0.25381, 37, -28.01, + 13.81, 0.01954, 38, -49.49, 13.81, 0.00018, 4, 31, 55.59, -30.72, 0.64422, 36, -8.18, 7.76, 0.33291, 37, -29.58, 7.86, 0.02275, 38, -51.06, 7.86, 0.00011, 4, 31, 62.32, -32.6, + 0.55448, 36, -9.7, 0.94, 0.41902, 37, -31.11, 1.04, 0.02643, 38, -52.58, 1.04, 7e-05, 4, 31, 67.27, -34.24, 0.44397, 36, -11.07, -4.09, 0.52396, 37, -32.48, -3.99, 0.03202, 38, + -53.95, -3.99, 4e-05, 4, 31, 49.76, -23.57, 0.5094, 36, -1.34, 13.95, 0.4213, 37, -22.75, 14.06, 0.06847, 38, -44.22, 14.06, 0.00083, 4, 31, 55.77, -24.72, 0.42549, 36, -2.17, 7.89, + 0.49746, 37, -23.57, 8, 0.07648, 38, -45.05, 8, 0.00057, 4, 31, 62.54, -26.18, 0.35688, 36, -3.28, 1.05, 0.55926, 37, -24.68, 1.15, 0.08347, 38, -46.16, 1.15, 0.00039, 4, 31, 67.52, + -27.35, 0.29772, 36, -4.19, -3.98, 0.61133, 37, -25.59, -3.88, 0.09064, 38, -47.07, -3.88, 0.00031, 4, 31, 67.77, -20.66, 0.21136, 36, 2.51, -3.88, 0.59029, 37, -18.89, -3.77, + 0.19654, 38, -40.37, -3.77, 0.00182, 4, 31, 62.71, -19.85, 0.275, 36, 3.05, 1.21, 0.54348, 37, -18.35, 1.32, 0.17958, 38, -39.83, 1.32, 0.00194, 4, 31, 55.88, -19.28, 0.35002, 36, + 3.27, 8.06, 0.48643, 37, -18.14, 8.17, 0.16123, 38, -39.61, 8.17, 0.00232, 4, 31, 49.86, -18.41, 0.41881, 36, 3.82, 14.12, 0.43213, 37, -17.59, 14.23, 0.1461, 38, -39.06, 14.23, + 0.00296, 4, 31, 50.06, -13.03, 0.39313, 36, 9.2, 14.21, 0.35299, 37, -12.2, 14.31, 0.24433, 38, -33.68, 14.31, 0.00955, 4, 31, 55.94, -13.47, 0.32258, 36, 9.06, 8.31, 0.39406, 37, + -12.34, 8.41, 0.27473, 38, -33.82, 8.41, 0.00863, 4, 31, 62.8, -14.24, 0.24476, 36, 8.66, 1.42, 0.43744, 37, -12.74, 1.52, 0.30953, 38, -34.22, 1.52, 0.00827, 4, 31, 67.98, -14.86, + 0.17804, 36, 8.31, -3.79, 0.47328, 37, -13.09, -3.69, 0.3403, 38, -34.57, -3.69, 0.00838, 4, 31, 68.28, -9.21, 0.17525, 36, 13.97, -3.79, 0.31355, 37, -7.43, -3.69, 0.48153, 38, + -28.91, -3.69, 0.02968, 4, 31, 62.87, -9.04, 0.24396, 36, 13.85, 1.62, 0.29088, 37, -7.55, 1.73, 0.43695, 38, -29.03, 1.73, 0.02821, 4, 31, 55.98, -8.57, 0.32275, 36, 13.97, 8.53, + 0.26435, 37, -7.44, 8.63, 0.38552, 38, -28.91, 8.63, 0.02739, 4, 31, 50.21, -8.13, 0.39269, 36, 14.1, 14.31, 0.24007, 37, -7.3, 14.42, 0.33961, 38, -28.78, 14.42, 0.02763, 4, 31, + 50.33, -3.07, 0.39835, 36, 19.16, 14.45, 0.13664, 37, -2.25, 14.56, 0.3972, 38, -23.72, 14.56, 0.06781, 4, 31, 56.01, -3.43, 0.32898, 36, 19.1, 8.76, 0.14701, 37, -2.3, 8.87, + 0.45281, 38, -23.78, 8.87, 0.07119, 4, 31, 62.92, -3.84, 0.24968, 36, 19.05, 1.85, 0.15947, 37, -2.36, 1.96, 0.51456, 38, -23.83, 1.96, 0.07629, 4, 31, 68.64, -4.23, 0.17972, 36, + 18.97, -3.88, 0.17094, 37, -2.44, -3.78, 0.56767, 38, -23.91, -3.78, 0.08167, 4, 31, 68.91, 1.29, 0.18179, 36, 24.49, -3.87, 0.07557, 37, 3.08, -3.77, 0.56385, 38, -18.39, -3.77, + 0.17879, 4, 31, 63.06, 1.38, 0.25204, 36, 24.27, 1.98, 0.07119, 37, 2.86, 2.08, 0.51118, 38, -18.61, 2.08, 0.16559, 4, 31, 56.13, 1.74, 0.33157, 36, 24.26, 8.92, 0.0672, 37, 2.86, + 9.03, 0.44995, 38, -18.62, 9.03, 0.15128, 4, 31, 50.52, 1.76, 0.40101, 36, 23.99, 14.52, 0.06478, 37, 2.59, 14.63, 0.39483, 38, -18.89, 14.63, 0.13938, 4, 31, 50.78, 6.45, 0.401, 36, + 28.68, 14.51, 0.0258, 37, 7.28, 14.62, 0.33427, 38, -14.2, 14.62, 0.23894, 4, 31, 56.3, 6.29, 0.3309, 36, 28.82, 8.99, 0.02514, 37, 7.42, 9.09, 0.37908, 38, -14.06, 9.09, 0.26488, 4, + 31, 63.29, 6.06, 0.25155, 36, 28.96, 1.99, 0.02548, 37, 7.56, 2.1, 0.4293, 38, -13.92, 2.1, 0.29367, 4, 31, 69.06, 6.02, 0.18206, 36, 29.22, -3.76, 0.02652, 37, 7.82, -3.66, 0.47284, + 38, -13.66, -3.66, 0.31858, 4, 31, 69.22, 11.49, 0.19245, 36, 34.69, -3.64, 0.00724, 37, 13.29, -3.53, 0.3321, 38, -8.19, -3.53, 0.46821, 4, 31, 69.38, 17.15, 0.23948, 36, 40.35, + -3.5, 0.00153, 37, 18.94, -3.39, 0.19195, 38, -2.53, -3.39, 0.56704, 4, 31, 69.73, 23.61, 0.346, 36, 46.82, -3.51, 0.00026, 37, 25.42, -3.41, 0.08922, 38, 3.94, -3.41, 0.56452, 4, + 31, 70.27, 31.28, 0.48407, 36, 54.51, -3.65, 4e-05, 37, 33.11, -3.54, 0.03358, 38, 11.63, -3.54, 0.48231, 4, 31, 64.84, 30.32, 0.54501, 36, 53.26, 1.73, 7e-05, 37, 31.86, 1.83, + 0.03077, 38, 10.38, 1.83, 0.42415, 4, 31, 64.01, 22.94, 0.40266, 36, 45.85, 2.16, 0.00034, 37, 24.45, 2.27, 0.08247, 38, 2.97, 2.27, 0.51452, 4, 31, 63.58, 16.63, 0.30287, 36, 39.53, + 2.26, 0.00168, 37, 18.13, 2.37, 0.17579, 38, -3.35, 2.37, 0.51965, 4, 31, 63.48, 11.19, 0.25994, 36, 34.09, 2.08, 0.00726, 37, 12.69, 2.19, 0.30245, 38, -8.79, 2.19, 0.43035, 4, 31, + 56.56, 11.07, 0.3382, 36, 33.61, 8.98, 0.00776, 37, 12.21, 9.09, 0.26884, 38, -9.27, 9.09, 0.38519, 4, 31, 56.93, 16.38, 0.37706, 36, 38.93, 8.89, 0.00208, 37, 17.52, 9, 0.15821, 38, + -3.95, 9, 0.46265, 4, 31, 57.5, 22.2, 0.46779, 36, 44.77, 8.63, 0.00052, 37, 23.36, 8.73, 0.07582, 38, 1.89, 8.73, 0.45586, 4, 31, 58.3, 28.37, 0.65325, 36, 50.97, 8.16, 0.00012, 37, + 29.57, 8.26, 0.02541, 38, 8.09, 8.26, 0.32123, 4, 31, 51.42, 26.68, 0.75526, 36, 48.93, 14.93, 0.00017, 37, 27.52, 15.03, 0.02002, 38, 6.05, 15.03, 0.22455, 4, 31, 51.11, 21.17, + 0.52586, 36, 43.41, 14.95, 0.00082, 37, 22, 15.06, 0.07106, 38, 0.53, 15.06, 0.40226, 4, 31, 50.95, 15.93, 0.44455, 36, 38.16, 14.84, 0.00273, 37, 16.76, 14.94, 0.1436, 38, -4.72, + 14.94, 0.40912, 4, 31, 50.92, 10.61, 0.40864, 36, 32.85, 14.59, 0.0088, 37, 11.45, 14.7, 0.23945, 38, -10.03, 14.7, 0.34311, 4, 31, 69.38, -38.1, 0.52059, 36, -14.82, -6.4, 0.45917, + 37, -36.22, -6.3, 0.02022, 38, -57.7, -6.3, 1e-05, 4, 31, 69.44, -34.82, 0.37517, 36, -11.54, -6.29, 0.58803, 37, -32.95, -6.19, 0.03676, 38, -54.42, -6.19, 4e-05, 4, 31, 69.57, + -31.13, 0.31655, 36, -7.85, -6.23, 0.62281, 37, -29.26, -6.13, 0.06054, 38, -50.73, -6.13, 0.00011, 4, 31, 69.74, -27.7, 0.25662, 36, -4.41, -6.22, 0.64624, 37, -25.82, -6.11, + 0.09684, 38, -47.29, -6.11, 0.0003, 4, 31, 69.8, -23.9, 0.20542, 36, -0.61, -6.08, 0.64718, 37, -22.02, -5.97, 0.14662, 38, -43.49, -5.97, 0.00077, 4, 31, 69.96, -20.88, 0.16774, 36, + 2.4, -6.08, 0.62093, 37, -19, -5.97, 0.20946, 38, -40.48, -5.97, 0.00187, 4, 31, 70.09, -17.89, 0.14406, 36, 5.4, -6.05, 0.56885, 37, -16, -5.95, 0.28288, 38, -37.48, -5.95, 0.00421, + 4, 31, 70.25, -15.09, 0.13169, 36, 8.2, -6.07, 0.49722, 37, -13.21, -5.96, 0.36227, 38, -34.68, -5.96, 0.00882, 4, 31, 70.5, -11.95, 0.12708, 36, 11.36, -6.14, 0.41453, 37, -10.05, + -6.04, 0.44117, 38, -31.52, -6.04, 0.01722, 4, 31, 70.58, -9.33, 0.12668, 36, 13.97, -6.1, 0.32958, 37, -7.43, -5.99, 0.51233, 38, -28.91, -5.99, 0.03141, 4, 31, 70.75, -6.95, + 0.12812, 36, 16.36, -6.14, 0.24965, 37, -5.05, -6.03, 0.56851, 38, -26.52, -6.03, 0.05372, 4, 31, 71, -4.39, 0.12979, 36, 18.93, -6.25, 0.1799, 37, -2.47, -6.14, 0.60387, 38, -23.95, + -6.14, 0.08644, 4, 31, 71.07, -1.61, 0.13105, 36, 21.71, -6.18, 0.12302, 37, 0.3, -6.07, 0.61461, 38, -21.17, -6.07, 0.13132, 4, 31, 71.18, 1.28, 0.13159, 36, 24.6, -6.14, 0.07962, + 37, 3.19, -6.03, 0.5998, 38, -18.28, -6.03, 0.18899, 4, 31, 71.31, 3.85, 0.13189, 36, 27.17, -6.13, 0.04862, 37, 5.76, -6.02, 0.56113, 38, -15.71, -6.02, 0.25837, 4, 31, 71.51, 6.02, + 0.13282, 36, 29.35, -6.21, 0.02792, 37, 7.95, -6.1, 0.50297, 38, -13.53, -6.1, 0.33629, 4, 31, 71.56, 8.85, 0.13637, 36, 32.18, -6.12, 0.01503, 37, 10.77, -6.01, 0.43134, 38, -10.7, + -6.01, 0.41726, 4, 31, 71.75, 11.39, 0.14539, 36, 34.72, -6.17, 0.00757, 37, 13.32, -6.07, 0.35328, 38, -8.16, -6.07, 0.49376, 4, 31, 71.87, 14.39, 0.16393, 36, 37.73, -6.13, + 0.00355, 37, 16.32, -6.03, 0.27561, 38, -5.15, -6.03, 0.55691, 4, 31, 72.16, 17.13, 0.19585, 36, 40.48, -6.28, 0.00155, 37, 19.08, -6.18, 0.20422, 38, -2.4, -6.18, 0.59837, 4, 31, + 72.25, 19.76, 0.24372, 36, 43.11, -6.23, 0.00063, 37, 21.71, -6.13, 0.14329, 38, 0.23, -6.13, 0.61235, 4, 31, 72.47, 23.82, 0.30631, 36, 47.17, -6.24, 0.00024, 37, 25.77, -6.14, + 0.09501, 38, 4.29, -6.14, 0.59844, 4, 31, 72.61, 28.41, 0.3775, 36, 51.77, -6.14, 9e-05, 37, 30.37, -6.03, 0.05972, 38, 8.89, -6.03, 0.5627, 4, 31, 72.88, 31.77, 0.44548, 36, 55.14, + -6.23, 3e-05, 37, 33.74, -6.13, 0.03652, 38, 12.26, -6.13, 0.51797, 4, 31, 73.38, 35.45, 0.56131, 36, 58.84, -6.53, 1e-05, 37, 37.44, -6.43, 0.02128, 38, 15.96, -6.43, 0.41739 + ], + "hull": 44, + "edges": [ + 78, 76, 86, 0, 78, 80, 80, 82, 82, 84, 84, 86, 0, 94, 76, 96, 62, 64, 74, 76, 102, 96, 74, 102, 104, 90, 106, 98, 108, 88, 110, 100, 112, 92, 114, 94, 2, 0, 114, 2, 72, 74, 116, 102, + 72, 116, 118, 104, 120, 106, 122, 108, 124, 110, 126, 112, 128, 114, 4, 2, 128, 4, 70, 72, 130, 116, 70, 130, 132, 118, 134, 120, 136, 122, 138, 124, 140, 126, 142, 128, 8, 6, 6, 4, + 142, 6, 68, 70, 144, 130, 68, 144, 146, 132, 148, 134, 150, 136, 152, 138, 154, 140, 156, 142, 156, 8, 8, 10, 10, 12, 12, 158, 158, 156, 10, 158, 160, 154, 162, 152, 164, 150, 166, + 148, 168, 146, 170, 144, 64, 66, 66, 68, 170, 66, 82, 172, 172, 88, 98, 172, 172, 100, 80, 174, 174, 90, 96, 174, 84, 176, 176, 92, 94, 176, 90, 178, 178, 96, 102, 180, 180, 104, + 178, 180, 180, 182, 182, 184, 184, 186, 186, 188, 90, 190, 190, 98, 104, 192, 192, 106, 190, 192, 192, 194, 194, 196, 196, 198, 198, 200, 88, 202, 202, 98, 106, 204, 204, 108, 202, + 204, 204, 206, 206, 208, 208, 210, 210, 212, 88, 214, 214, 100, 108, 216, 216, 110, 214, 216, 216, 218, 218, 220, 220, 222, 222, 224, 92, 226, 226, 100, 110, 228, 228, 112, 226, 228, + 228, 230, 230, 232, 232, 234, 234, 236, 92, 238, 238, 94, 112, 240, 240, 114, 238, 240, 240, 242, 242, 244, 244, 246, 246, 248, 12, 14, 170, 64, 116, 250, 250, 182, 130, 252, 252, + 184, 250, 252, 144, 254, 254, 186, 252, 254, 170, 256, 256, 188, 254, 256, 58, 60, 60, 62, 118, 258, 258, 182, 132, 260, 260, 184, 258, 260, 146, 262, 262, 186, 260, 262, 168, 264, + 264, 188, 262, 264, 54, 56, 56, 58, 50, 52, 52, 54, 168, 266, 266, 200, 146, 268, 268, 198, 266, 268, 132, 270, 270, 196, 268, 270, 118, 272, 272, 194, 270, 272, 120, 274, 274, 194, + 134, 276, 276, 196, 274, 276, 148, 278, 278, 198, 276, 278, 166, 280, 280, 200, 278, 280, 46, 48, 48, 50, 42, 44, 44, 46, 166, 282, 282, 212, 148, 284, 284, 210, 282, 284, 134, 286, + 286, 208, 284, 286, 120, 288, 288, 206, 286, 288, 122, 290, 290, 206, 136, 292, 292, 208, 290, 292, 150, 294, 294, 210, 292, 294, 164, 296, 296, 212, 294, 296, 38, 40, 40, 42, 34, + 36, 36, 38, 164, 298, 298, 224, 150, 300, 300, 222, 298, 300, 136, 302, 302, 220, 300, 302, 122, 304, 304, 218, 302, 304, 124, 306, 306, 218, 138, 308, 308, 220, 306, 308, 152, 310, + 310, 222, 308, 310, 162, 312, 312, 224, 310, 312, 30, 32, 32, 34, 26, 28, 28, 30, 162, 314, 314, 236, 22, 24, 24, 26, 160, 316, 316, 236, 18, 20, 20, 22, 160, 318, 318, 248, 14, 16, + 16, 18, 158, 320, 320, 248, 156, 322, 322, 246, 320, 322, 154, 324, 324, 246, 318, 324, 154, 326, 326, 234, 316, 326, 152, 328, 328, 234, 314, 328, 138, 330, 330, 232, 328, 330, 140, + 332, 332, 232, 326, 332, 140, 334, 334, 244, 324, 334, 142, 336, 336, 244, 322, 336, 128, 338, 338, 242, 336, 338, 126, 340, 340, 242, 334, 340, 126, 342, 342, 230, 332, 342, 124, + 344, 344, 230, 330, 344, 62, 346, 346, 170, 60, 348, 348, 256, 346, 348, 58, 350, 350, 188, 348, 350, 56, 352, 352, 264, 350, 352, 54, 354, 354, 168, 352, 354, 52, 356, 356, 266, + 354, 356, 50, 358, 358, 200, 356, 358, 48, 360, 360, 280, 358, 360, 46, 362, 362, 166, 360, 362, 44, 364, 364, 282, 362, 364, 42, 366, 366, 212, 364, 366, 40, 368, 368, 296, 366, + 368, 38, 370, 370, 164, 368, 370, 36, 372, 372, 298, 370, 372, 34, 374, 374, 224, 372, 374, 32, 376, 376, 312, 374, 376, 30, 378, 378, 162, 376, 378, 28, 380, 380, 314, 378, 380, 26, + 382, 382, 236, 380, 382, 24, 384, 384, 316, 382, 384, 22, 386, 386, 160, 384, 386, 20, 388, 388, 318, 386, 388, 18, 390, 390, 248, 388, 390, 16, 392, 392, 320, 390, 392, 14, 394, + 394, 158, 392, 394 + ], + "width": 83, + "height": 80, + "path": "aquatic-summer-02-lv2.ear-right-bubble" + } + }, + "ear-right-bubble-02": { + "ear-right-bubble": { + "type": "mesh", + "uvs": [ + 0.93928, 0.50958, 0.95558, 0.59885, 0.96791, 0.66638, 0.98006, 0.73289, 1, 0.84205, 1, 0.89818, 1, 0.9625, 0.9567, 0.9625, 0.9208, 0.9625, 0.88771, 0.9625, 0.83969, 0.9625, 0.79967, + 0.9625, 0.76574, 0.9625, 0.73418, 0.9625, 0.69508, 0.9625, 0.6661, 0.9625, 0.6319, 0.9625, 0.6046, 0.9625, 0.57454, 0.9625, 0.53755, 0.9625, 0.50387, 0.9625, 0.47341, 0.9625, + 0.44466, 0.9625, 0.41233, 0.9625, 0.37317, 0.9625, 0.33787, 0.9625, 0.30333, 0.9625, 0.2648, 0.9625, 0.21937, 0.9625, 0.17434, 0.9625, 0.12959, 0.9625, 0.08769, 0.9625, 0, 0.9625, + 0.02085, 0.89779, 0.04055, 0.83664, 0.06626, 0.75682, 0.08854, 0.68766, 0.11527, 0.60468, 0.13788, 0.53451, 0.35753, 0.0375, 0.43128, 0.0375, 0.52161, 0.0375, 0.60662, 0.0375, + 0.67954, 0.0375, 0.54109, 0.5336, 0.30907, 0.53412, 0.75362, 0.52077, 0.84707, 0.51514, 0.2081, 0.53435, 0.42115, 0.53387, 0.64269, 0.52747, 0.1892, 0.60156, 0.3018, 0.60447, + 0.41972, 0.60346, 0.54053, 0.60135, 0.64648, 0.59785, 0.76151, 0.59644, 0.87262, 0.58988, 0.16806, 0.67676, 0.29497, 0.67061, 0.41838, 0.66857, 0.54, 0.66508, 0.65011, 0.66538, + 0.7681, 0.65967, 0.89666, 0.66021, 0.14733, 0.75044, 0.28705, 0.74721, 0.41688, 0.74143, 0.53942, 0.73556, 0.6538, 0.73393, 0.7757, 0.7326, 0.91933, 0.7265, 0.12337, 0.83566, 0.2782, + 0.83283, 0.4151, 0.82771, 0.53871, 0.82207, 0.65852, 0.82169, 0.7847, 0.8189, 0.95379, 0.82732, 0.97627, 0.89309, 0.79208, 0.88971, 0.66236, 0.89294, 0.5381, 0.89586, 0.41375, + 0.89349, 0.2717, 0.89571, 0.10571, 0.89844, 0.53197, 0.30141, 0.39415, 0.1884, 0.65961, 0.2117, 0.25473, 0.53425, 0.24202, 0.60293, 0.22911, 0.6738, 0.21379, 0.7489, 0.19729, + 0.83431, 0.18704, 0.8971, 0.36352, 0.534, 0.36013, 0.60397, 0.35748, 0.66957, 0.35288, 0.74428, 0.34802, 0.83022, 0.34383, 0.89458, 0.48024, 0.53373, 0.47847, 0.60244, 0.47433, + 0.66696, 0.47563, 0.73861, 0.47402, 0.82502, 0.47337, 0.89463, 0.58955, 0.53067, 0.59344, 0.5996, 0.59605, 0.66523, 0.5961, 0.73475, 0.60032, 0.82187, 0.60296, 0.89434, 0.69391, + 0.52438, 0.69915, 0.59721, 0.70691, 0.66263, 0.71206, 0.7333, 0.71954, 0.82034, 0.72813, 0.8913, 0.80125, 0.5179, 0.81428, 0.59333, 0.8348, 0.65995, 0.84793, 0.72953, 0.87862, + 0.82358, 0.89305, 0.89156, 0.19669, 0.67537, 0.17782, 0.74974, 0.1594, 0.835, 0.1429, 0.89783, 0.26012, 0.6723, 0.25017, 0.74806, 0.23685, 0.83359, 0.22589, 0.89647, 0.30659, + 0.89517, 0.3131, 0.83153, 0.31569, 0.74593, 0.32231, 0.67016, 0.38717, 0.66908, 0.38553, 0.74282, 0.38068, 0.829, 0.37648, 0.89407, 0.44462, 0.89408, 0.44322, 0.82643, 0.44458, + 0.7401, 0.44621, 0.66777, 0.50711, 0.66602, 0.50646, 0.73714, 0.50582, 0.82357, 0.50482, 0.89523, 0.57134, 0.89508, 0.5687, 0.82197, 0.56865, 0.73514, 0.5654, 0.66515, 0.62192, + 0.6653, 0.6236, 0.73436, 0.62525, 0.8218, 0.62839, 0.89374, 0.69427, 0.89215, 0.76244, 0.89045, 0.84047, 0.89059, 0.93306, 0.89229, 0.91732, 0.8255, 0.82617, 0.82097, 0.75013, + 0.81967, 0.6863, 0.82108, 0.68017, 0.73364, 0.74166, 0.73297, 0.80979, 0.73115, 0.88285, 0.72805, 0.86581, 0.66008, 0.79931, 0.6598, 0.73613, 0.66121, 0.67214, 0.66431, 0.09776, + 0.92671, 0.13724, 0.92534, 0.1817, 0.92459, 0.22313, 0.92439, 0.26892, 0.92268, 0.30526, 0.92265, 0.34139, 0.92236, 0.3751, 0.92252, 0.41313, 0.92351, 0.44464, 0.92289, 0.47339, + 0.92339, 0.5044, 0.9248, 0.53787, 0.92389, 0.57268, 0.92341, 0.60366, 0.9233, 0.62995, 0.92432, 0.66398, 0.92316, 0.69464, 0.92383, 0.73085, 0.92333, 0.76403, 0.92521, 0.79572, + 0.92461, 0.84011, 0.92404, 0.89075, 0.92209, 0.92774, 0.92274, 0.96706, 0.92576 + ], + "triangles": [ + 166, 63, 70, 116, 171, 166, 165, 115, 116, 77, 70, 167, 163, 166, 70, 163, 70, 77, 117, 116, 166, 117, 166, 163, 77, 167, 162, 164, 165, 116, 164, 116, 117, 76, 69, 165, 76, 165, + 164, 162, 122, 123, 80, 77, 162, 158, 163, 77, 158, 77, 80, 159, 162, 123, 80, 162, 159, 118, 117, 163, 118, 163, 158, 124, 123, 161, 159, 123, 124, 157, 164, 117, 157, 117, 118, 81, + 76, 164, 81, 164, 157, 195, 159, 124, 196, 124, 160, 195, 124, 196, 189, 81, 157, 191, 118, 158, 190, 157, 118, 190, 118, 191, 189, 157, 190, 159, 193, 80, 194, 159, 195, 194, 193, + 159, 192, 158, 80, 192, 80, 193, 191, 158, 192, 15, 189, 190, 14, 190, 191, 15, 190, 14, 13, 191, 192, 14, 191, 13, 12, 192, 193, 13, 192, 12, 11, 193, 194, 12, 193, 11, 10, 11, 194, + 9, 194, 195, 10, 194, 9, 8, 195, 196, 9, 195, 8, 8, 196, 7, 151, 109, 110, 68, 152, 151, 146, 145, 68, 104, 103, 146, 155, 154, 69, 155, 69, 76, 111, 110, 154, 111, 154, 155, 150, + 151, 110, 150, 110, 111, 68, 151, 150, 75, 146, 68, 75, 68, 150, 147, 104, 146, 147, 146, 75, 105, 143, 104, 105, 104, 147, 142, 67, 143, 142, 143, 105, 74, 67, 142, 156, 155, 76, + 156, 76, 81, 106, 141, 142, 74, 142, 141, 83, 74, 141, 112, 111, 155, 112, 155, 156, 105, 106, 142, 149, 150, 111, 149, 111, 112, 148, 105, 147, 106, 105, 148, 82, 75, 150, 82, 148, + 147, 147, 75, 82, 150, 149, 82, 182, 141, 106, 187, 112, 156, 183, 106, 148, 182, 106, 183, 186, 149, 112, 186, 112, 187, 182, 181, 83, 182, 83, 141, 185, 148, 82, 185, 82, 149, 185, + 149, 186, 188, 156, 81, 188, 81, 189, 187, 156, 188, 184, 183, 148, 184, 148, 185, 22, 182, 183, 181, 182, 22, 23, 181, 22, 21, 183, 184, 22, 183, 21, 20, 21, 184, 19, 184, 185, 20, + 184, 19, 18, 186, 187, 19, 185, 186, 18, 19, 186, 17, 187, 188, 18, 187, 17, 16, 188, 189, 17, 188, 16, 16, 189, 15, 143, 144, 104, 110, 153, 154, 151, 152, 109, 68, 145, 61, 68, 61, + 152, 146, 103, 145, 83, 139, 74, 181, 140, 83, 23, 180, 181, 138, 137, 67, 98, 136, 97, 98, 97, 138, 135, 59, 136, 135, 136, 98, 66, 59, 135, 130, 129, 66, 74, 138, 67, 139, 98, 138, + 139, 138, 74, 99, 135, 98, 99, 98, 139, 134, 66, 135, 134, 135, 99, 73, 130, 66, 73, 66, 134, 131, 92, 130, 131, 130, 73, 93, 92, 131, 140, 99, 139, 140, 139, 83, 100, 134, 99, 100, + 99, 140, 133, 73, 134, 133, 134, 100, 84, 131, 73, 84, 73, 133, 132, 93, 131, 132, 131, 84, 94, 127, 93, 94, 93, 132, 128, 127, 94, 179, 133, 100, 180, 100, 140, 179, 100, 180, 178, + 84, 133, 178, 133, 179, 177, 132, 84, 177, 84, 178, 180, 140, 181, 176, 94, 132, 176, 132, 177, 175, 128, 94, 175, 94, 176, 174, 85, 128, 174, 128, 175, 30, 173, 174, 31, 173, 30, + 29, 174, 175, 30, 174, 29, 28, 175, 176, 29, 175, 28, 27, 176, 177, 28, 176, 27, 26, 177, 178, 27, 177, 26, 25, 178, 179, 26, 178, 25, 24, 179, 180, 25, 179, 24, 24, 180, 23, 79, 4, + 5, 79, 78, 4, 6, 79, 5, 123, 168, 161, 160, 78, 79, 124, 161, 160, 7, 196, 197, 196, 160, 197, 197, 160, 79, 160, 161, 78, 7, 197, 6, 162, 167, 122, 6, 197, 79, 85, 72, 128, 173, 32, + 85, 31, 32, 173, 173, 85, 174, 85, 32, 33, 66, 129, 59, 167, 170, 121, 167, 121, 122, 70, 63, 170, 70, 170, 167, 166, 171, 63, 123, 122, 168, 130, 91, 129, 92, 91, 130, 122, 169, + 168, 127, 65, 126, 72, 65, 127, 92, 125, 91, 161, 168, 71, 122, 121, 169, 170, 120, 121, 91, 90, 129, 78, 161, 71, 3, 78, 71, 71, 64, 2, 52, 129, 90, 59, 129, 52, 67, 60, 143, 138, + 97, 137, 170, 63, 56, 171, 56, 63, 169, 121, 57, 33, 34, 85, 72, 35, 65, 34, 35, 72, 125, 51, 91, 35, 36, 65, 91, 51, 90, 36, 37, 58, 58, 37, 51, 71, 2, 3, 64, 1, 2, 1, 64, 57, 57, + 0, 1, 87, 39, 40, 88, 42, 43, 88, 86, 41, 88, 41, 42, 0, 88, 43, 47, 88, 0, 86, 88, 113, 47, 119, 88, 119, 46, 88, 46, 113, 88, 50, 86, 113, 107, 86, 50, 44, 86, 107, 87, 41, 86, 41, + 87, 40, 101, 86, 44, 87, 86, 95, 101, 49, 86, 87, 38, 39, 49, 95, 86, 87, 95, 45, 87, 45, 89, 87, 89, 48, 87, 48, 38, 57, 47, 0, 120, 119, 47, 56, 46, 119, 56, 119, 120, 114, 113, + 46, 114, 46, 56, 55, 50, 113, 55, 113, 114, 108, 107, 50, 55, 108, 50, 54, 101, 44, 44, 107, 108, 54, 44, 108, 102, 49, 101, 102, 101, 54, 90, 48, 89, 53, 95, 49, 53, 49, 102, 96, + 45, 95, 96, 95, 53, 52, 89, 45, 52, 45, 96, 90, 89, 52, 171, 114, 56, 115, 114, 171, 172, 55, 114, 172, 114, 115, 54, 145, 102, 152, 54, 108, 61, 54, 152, 153, 109, 108, 55, 153, + 108, 152, 108, 109, 55, 62, 153, 172, 62, 55, 61, 145, 54, 102, 144, 53, 103, 102, 145, 103, 144, 102, 53, 137, 96, 60, 53, 144, 60, 137, 53, 96, 136, 52, 97, 96, 137, 97, 136, 96, + 69, 62, 172, 154, 153, 62, 110, 109, 153, 144, 103, 104, 143, 60, 144, 67, 137, 60, 120, 47, 57, 121, 120, 57, 64, 169, 57, 78, 3, 4, 51, 38, 48, 51, 48, 90, 37, 38, 51, 58, 51, 125, + 65, 36, 58, 120, 170, 56, 154, 62, 69, 116, 115, 171, 165, 172, 115, 69, 172, 165, 59, 52, 136, 126, 58, 125, 65, 58, 126, 168, 169, 64, 168, 64, 71, 85, 34, 72, 126, 125, 92, 93, + 126, 92, 127, 126, 93, 128, 72, 127 + ], + "vertices": [ + 1, 42, 41.12, 33.33, 1, 1, 42, 48.32, 34.31, 1, 1, 42, 53.77, 35.04, 1, 1, 42, 60, 36.01, 1, 4, 42, 68.02, 38.37, 0.9295, 43, 61.47, -1.03, 1e-05, 44, 40.07, -0.92, 0.00266, 45, + 18.6, -0.92, 0.06784, 4, 42, 72.27, 39, 0.79905, 43, 62.32, -5.24, 1e-05, 44, 40.92, -5.13, 0.00721, 45, 19.44, -5.13, 0.19373, 4, 42, 78.35, 40.51, 0.74731, 43, 64.15, -11.23, 0, + 44, 42.75, -11.12, 0.00973, 45, 21.27, -11.12, 0.24296, 4, 42, 77.99, 36.05, 0.54785, 43, 59.68, -11.11, 1e-05, 44, 38.27, -11, 0.02168, 45, 16.8, -11, 0.43046, 4, 42, 77.69, 32.35, + 0.43038, 43, 55.96, -11, 3e-05, 44, 34.56, -10.9, 0.03847, 45, 13.08, -10.9, 0.53112, 4, 42, 77.42, 28.93, 0.36035, 43, 52.54, -10.91, 9e-05, 44, 31.14, -10.81, 0.06275, 45, 9.66, + -10.81, 0.57681, 4, 42, 77.02, 23.98, 0.2889, 43, 47.58, -10.78, 0.00026, 44, 26.17, -10.67, 0.09917, 45, 4.7, -10.67, 0.61167, 4, 42, 76.69, 19.85, 0.22591, 43, 43.44, -10.66, + 0.0007, 44, 22.03, -10.56, 0.14876, 45, 0.56, -10.56, 0.62463, 4, 42, 76.55, 17.04, 0.17724, 43, 40.62, -10.66, 0.0017, 44, 19.22, -10.56, 0.21115, 45, -2.26, -10.56, 0.60991, 4, 42, + 76.41, 14.43, 0.14418, 43, 38, -10.66, 0.00385, 44, 16.6, -10.56, 0.28407, 45, -4.88, -10.56, 0.5679, 4, 42, 76.24, 11.19, 0.12448, 43, 34.76, -10.66, 0.00813, 44, 13.35, -10.56, + 0.36326, 45, -8.12, -10.56, 0.50413, 4, 42, 76.11, 8.78, 0.11438, 43, 32.35, -10.66, 0.016, 44, 10.95, -10.56, 0.44276, 45, -10.53, -10.56, 0.42686, 4, 42, 75.96, 5.95, 0.11006, 43, + 29.51, -10.66, 0.02948, 44, 8.11, -10.56, 0.51561, 45, -13.37, -10.56, 0.34486, 4, 42, 75.84, 3.69, 0.10858, 43, 27.25, -10.66, 0.05095, 44, 5.84, -10.56, 0.57474, 45, -15.63, + -10.56, 0.26573, 4, 42, 75.71, 1.19, 0.10802, 43, 24.75, -10.66, 0.08291, 44, 3.35, -10.56, 0.614, 45, -18.13, -10.56, 0.19506, 4, 42, 75.55, -1.87, 0.1074, 43, 21.68, -10.66, + 0.12742, 44, 0.28, -10.56, 0.62906, 45, -21.2, -10.56, 0.13612, 4, 42, 75.4, -4.66, 0.10634, 43, 18.89, -10.66, 0.18549, 44, -2.52, -10.56, 0.61812, 45, -23.99, -10.56, 0.09006, 4, + 42, 75.27, -7.19, 0.10502, 43, 16.36, -10.66, 0.25646, 44, -5.05, -10.56, 0.58221, 45, -26.52, -10.56, 0.05631, 4, 42, 75.14, -9.57, 0.10419, 43, 13.97, -10.66, 0.33753, 44, -7.43, + -10.56, 0.52513, 45, -28.91, -10.56, 0.03316, 4, 42, 75, -12.25, 0.10536, 43, 11.29, -10.66, 0.42349, 44, -10.12, -10.56, 0.45282, 45, -31.59, -10.56, 0.01833, 4, 42, 74.83, -15.5, + 0.11098, 43, 8.04, -10.66, 0.50701, 44, -13.37, -10.56, 0.37254, 45, -34.84, -10.56, 0.00948, 4, 42, 74.68, -18.42, 0.12436, 43, 5.11, -10.66, 0.57939, 44, -16.3, -10.56, 0.29168, + 45, -37.77, -10.56, 0.00457, 4, 42, 74.53, -21.28, 0.149, 43, 2.24, -10.66, 0.63222, 44, -19.16, -10.56, 0.21673, 45, -40.64, -10.56, 0.00205, 4, 42, 74.36, -24.48, 0.18726, 43, + -0.96, -10.66, 0.65948, 44, -22.36, -10.56, 0.15241, 45, -43.84, -10.56, 0.00085, 4, 42, 74.16, -28.24, 0.23866, 43, -4.73, -10.66, 0.65975, 44, -26.13, -10.56, 0.10126, 45, -47.61, + -10.56, 0.00033, 4, 42, 73.97, -31.98, 0.29871, 43, -8.46, -10.66, 0.63741, 44, -29.87, -10.56, 0.06376, 45, -51.34, -10.56, 0.00012, 4, 42, 73.77, -35.69, 0.35932, 43, -12.18, + -10.66, 0.60181, 44, -33.58, -10.56, 0.03884, 45, -55.06, -10.56, 4e-05, 4, 42, 73.59, -39.16, 0.49297, 43, -15.66, -10.66, 0.48586, 44, -37.06, -10.56, 0.02116, 45, -58.54, -10.56, + 1e-05, 4, 42, 73.2, -46.43, 0.66969, 43, -22.93, -10.66, 0.32512, 44, -44.34, -10.56, 0.00518, 45, -65.81, -10.56, 0, 4, 42, 68.13, -44.43, 0.73638, 43, -21.2, -5.49, 0.26049, 44, + -42.61, -5.38, 0.00313, 45, -64.08, -5.38, 0, 4, 42, 63.33, -42.54, 0.74288, 43, -19.57, -0.59, 0.25402, 44, -40.97, -0.49, 0.00309, 45, -62.45, -0.49, 1e-05, 2, 42, 57.6, -38.81, + 0.86, 43, -16.15, 5.32, 0.14, 2, 42, 52.73, -34.94, 0.87418, 43, -12.54, 10.39, 0.12582, 1, 42, 45.12, -35.37, 1, 1, 42, 39.61, -33.2, 1, 2, 42, 0.87, -12.9, 0.99965, 43, 6.74, + 63.34, 0.00035, 2, 42, 1.19, -6.79, 0.9998, 43, 12.86, 63.34, 0.0002, 3, 42, 1.58, 0.7, 0.99981, 43, 20.36, 63.34, 9e-05, 45, -22.52, 63.44, 0.0001, 3, 42, 1.95, 7.74, 0.99975, 43, + 27.41, 63.34, 1e-05, 45, -15.46, 63.44, 0.00024, 2, 42, 2.27, 13.79, 0.99954, 45, -9.41, 63.44, 0.00046, 4, 42, 41.3, 0.23, 0.88429, 43, 21.98, 23.65, 0.02526, 44, 0.57, 23.75, + 0.06552, 45, -20.9, 23.75, 0.02493, 1, 42, 40.33, -19.01, 1, 4, 42, 41.2, 17.9, 0.94373, 43, 39.62, 24.67, 0.00089, 44, 18.21, 24.78, 0.01419, 45, -3.26, 24.78, 0.04119, 1, 42, + 41.16, 25.66, 1, 1, 42, 39.91, -27.38, 1, 4, 42, 40.8, -9.72, 0.88619, 43, 12.02, 23.63, 0.05505, 44, -9.38, 23.73, 0.05102, 45, -30.86, 23.73, 0.00774, 4, 42, 41.25, 8.67, 0.89286, + 43, 30.41, 24.14, 0.00746, 44, 9, 24.24, 0.04877, 45, -12.47, 24.24, 0.05092, 1, 42, 45.19, -29.23, 1, 4, 42, 45.92, -19.91, 0.74343, 43, 2.11, 17.98, 0.19678, 44, -19.29, 18.08, + 0.05726, 45, -40.76, 18.08, 0.00254, 4, 42, 46.35, -10.13, 0.58833, 43, 11.9, 18.06, 0.20061, 44, -9.5, 18.16, 0.19026, 45, -30.98, 18.16, 0.0208, 4, 42, 46.71, -0.11, 0.58846, 43, + 21.93, 18.23, 0.08112, 44, 0.53, 18.33, 0.24909, 45, -20.95, 18.33, 0.08133, 4, 42, 46.89, 8.69, 0.59817, 43, 30.72, 18.51, 0.02026, 44, 9.32, 18.61, 0.18761, 45, -12.16, 18.61, + 0.19395, 4, 42, 47.28, 18.23, 0.66183, 43, 40.27, 18.62, 0.00346, 44, 18.87, 18.73, 0.07957, 45, -2.61, 18.73, 0.25514, 1, 42, 47.24, 27.47, 1, 4, 42, 51.11, -31.3, 0.84023, 43, + -8.99, 12.2, 0.15068, 44, -30.39, 12.3, 0.00899, 45, -51.87, 12.3, 0.0001, 4, 42, 51.17, -20.75, 0.48016, 43, 1.55, 12.69, 0.41733, 44, -19.86, 12.79, 0.10062, 45, -41.33, 12.79, + 0.0019, 4, 42, 51.55, -10.51, 0.42576, 43, 11.79, 12.85, 0.28082, 44, -9.61, 12.96, 0.27628, 45, -31.09, 12.96, 0.01714, 4, 42, 51.8, -0.42, 0.43345, 43, 21.89, 13.13, 0.09343, 44, + 0.48, 13.24, 0.37698, 45, -20.99, 13.24, 0.09613, 4, 42, 52.3, 8.71, 0.43708, 43, 31.02, 13.11, 0.01603, 44, 9.62, 13.21, 0.27127, 45, -11.86, 13.21, 0.27562, 4, 42, 52.36, 18.51, + 0.51068, 43, 40.82, 13.56, 0.00179, 44, 19.41, 13.67, 0.09933, 45, -2.06, 13.67, 0.3882, 4, 42, 52.97, 29.16, 0.94195, 43, 51.49, 13.52, 4e-05, 44, 30.08, 13.62, 0.00385, 45, 8.61, + 13.62, 0.05416, 4, 42, 56.91, -33.32, 0.72549, 43, -10.71, 6.3, 0.2621, 44, -32.11, 6.41, 0.01235, 45, -53.59, 6.41, 6e-05, 4, 42, 57.26, -21.73, 0.38729, 43, 0.89, 6.56, 0.4981, 44, + -20.51, 6.66, 0.11341, 45, -41.99, 6.66, 0.0012, 4, 42, 57.36, -10.94, 0.32692, 43, 11.67, 7.02, 0.3274, 44, -9.74, 7.13, 0.32983, 45, -31.21, 7.13, 0.01585, 4, 42, 57.43, -0.76, + 0.33677, 43, 21.84, 7.49, 0.10146, 44, 0.43, 7.6, 0.45593, 45, -21.04, 7.6, 0.10584, 4, 42, 57.8, 8.73, 0.33839, 43, 31.33, 7.62, 0.0144, 44, 9.93, 7.73, 0.32329, 45, -11.55, 7.73, + 0.32392, 4, 42, 58.53, 19.24, 0.42143, 43, 41.87, 7.44, 0.00109, 44, 20.47, 7.55, 0.11176, 45, -1.01, 7.55, 0.46572, 4, 42, 60.09, 31.38, 0.79569, 43, 54.07, 6.52, 5e-05, 44, 32.67, + 6.63, 0.01091, 45, 11.19, 6.63, 0.19335, 4, 42, 63.61, -35.67, 0.66085, 43, -12.7, -0.52, 0.32566, 44, -34.1, -0.41, 0.01346, 45, -55.58, -0.41, 3e-05, 4, 42, 64.06, -22.82, 0.31024, + 43, 0.16, -0.29, 0.56299, 44, -21.25, -0.19, 0.12589, 45, -42.72, -0.19, 0.00089, 4, 42, 64.25, -11.45, 0.24349, 43, 11.52, 0.12, 0.36477, 44, -9.89, 0.22, 0.37599, 45, -31.36, 0.22, + 0.01574, 4, 42, 64.34, -1.18, 0.2525, 43, 21.78, 0.57, 0.10936, 44, 0.37, 0.68, 0.52284, 45, -21.1, 0.68, 0.1153, 4, 42, 64.83, 8.75, 0.2544, 43, 31.72, 0.6, 0.01401, 44, 10.32, + 0.71, 0.36809, 45, -11.16, 0.71, 0.3635, 4, 42, 65.03, 19.51, 0.3466, 43, 42.48, 0.96, 0.00077, 44, 21.07, 1.07, 0.1237, 45, -0.4, 1.07, 0.52893, 4, 42, 66.57, 33.2, 0.69411, 43, + 56.23, 0.15, 3e-05, 44, 34.83, 0.26, 0.01435, 45, 13.35, 0.26, 0.29151, 4, 42, 71.92, 34.78, 0.61986, 43, 58.1, -5.11, 1e-05, 44, 36.69, -5.01, 0.01658, 45, 15.22, -5.01, 0.36355, 4, + 42, 70.84, 19.53, 0.28549, 43, 42.81, -4.84, 0.00065, 44, 21.4, -4.73, 0.13463, 45, -0.07, -4.73, 0.57924, 4, 42, 70.54, 8.77, 0.18483, 43, 32.04, -5.1, 0.01432, 44, 10.64, -4.99, + 0.40541, 45, -10.84, -4.99, 0.39544, 4, 42, 70.23, -1.55, 0.18141, 43, 21.73, -5.33, 0.11681, 44, 0.32, -5.23, 0.57764, 45, -21.15, -5.23, 0.12413, 4, 42, 69.5, -11.84, 0.17479, 43, + 11.41, -5.14, 0.39444, 44, -10, -5.04, 0.41447, 45, -31.47, -5.04, 0.0163, 4, 42, 69.05, -23.63, 0.24784, 43, -0.38, -5.32, 0.61396, 44, -21.79, -5.22, 0.13743, 45, -43.26, -5.22, + 0.00077, 4, 42, 68.55, -37.4, 0.59732, 43, -14.16, -5.54, 0.38768, 44, -35.56, -5.43, 0.01499, 45, -57.04, -5.43, 1e-05, 4, 42, 22.71, 0.45, 0.98403, 43, 21.22, 42.22, 0.00516, 44, + -0.19, 42.33, 0.00609, 45, -21.66, 42.33, 0.00473, 3, 42, 13.08, -10.5, 0.98457, 43, 9.78, 51.26, 0.01421, 44, -11.62, 51.37, 0.00123, 3, 42, 16.1, 11.4, 0.98807, 44, 10.41, 49.51, + 0.00101, 45, -11.07, 49.51, 0.01092, 1, 42, 40.1, -23.51, 1, 4, 42, 45.53, -24.85, 0.93122, 43, -2.85, 18.1, 0.05888, 44, -24.25, 18.21, 0.00959, 45, -45.73, 18.21, 0.0003, 4, 42, + 51.14, -26.22, 0.67882, 43, -3.92, 12.43, 0.287, 44, -25.32, 12.54, 0.03374, 45, -46.8, 12.54, 0.00045, 4, 42, 57.07, -27.81, 0.52353, 43, -5.19, 6.42, 0.4314, 44, -26.59, 6.53, + 0.04479, 45, -48.07, 6.53, 0.00029, 4, 42, 63.82, -29.53, 0.41464, 43, -6.56, -0.41, 0.53292, 44, -27.96, -0.3, 0.05226, 45, -49.44, -0.3, 0.00018, 4, 42, 68.8, -30.65, 0.35706, 43, + -7.41, -5.43, 0.58638, 44, -28.81, -5.33, 0.05644, 45, -50.29, -5.33, 0.00012, 4, 42, 40.56, -14.49, 0.88311, 43, 7.24, 23.62, 0.07338, 44, -14.17, 23.72, 0.03978, 45, -35.64, 23.72, + 0.00372, 4, 42, 46.13, -15.07, 0.62555, 43, 6.96, 18.02, 0.24007, 44, -14.45, 18.12, 0.1259, 45, -35.92, 18.12, 0.00848, 4, 42, 51.36, -15.56, 0.4342, 43, 6.74, 12.77, 0.37611, 44, + -14.67, 12.88, 0.18375, 45, -36.14, 12.88, 0.00595, 4, 42, 57.31, -16.26, 0.33684, 43, 6.35, 6.79, 0.44427, 44, -15.05, 6.9, 0.21425, 45, -36.53, 6.9, 0.00464, 4, 42, 64.16, -17.02, + 0.25537, 43, 5.95, -0.08, 0.49872, 44, -15.45, 0.02, 0.24179, 45, -36.93, 0.02, 0.00413, 4, 42, 69.28, -17.64, 0.18921, 43, 5.6, -5.23, 0.54119, 44, -15.8, -5.13, 0.26556, 45, + -37.28, -5.13, 0.00404, 4, 42, 41.05, -4.82, 0.83361, 43, 16.93, 23.64, 0.05679, 44, -4.48, 23.74, 0.08927, 45, -25.95, 23.74, 0.02033, 4, 42, 46.53, -5.25, 0.57797, 43, 16.78, + 18.14, 0.13938, 44, -4.63, 18.25, 0.23843, 45, -26.1, 18.25, 0.04422, 4, 42, 51.66, -5.87, 0.42696, 43, 16.43, 12.98, 0.17737, 44, -4.97, 13.08, 0.35156, 45, -26.45, 13.08, 0.04411, + 4, 42, 57.39, -6.06, 0.33132, 43, 16.54, 7.25, 0.20059, 44, -4.86, 7.35, 0.42277, 45, -26.34, 7.35, 0.04531, 4, 42, 64.29, -6.56, 0.24781, 43, 16.41, 0.33, 0.22055, 44, -4.99, 0.44, + 0.48389, 45, -26.47, 0.44, 0.04775, 4, 42, 69.85, -6.91, 0.17763, 43, 16.35, -5.23, 0.23735, 44, -5.05, -5.13, 0.53429, 45, -26.52, -5.13, 0.05074, 4, 42, 41.28, 4.25, 0.83746, 43, + 26, 23.88, 0.02009, 44, 4.59, 23.99, 0.08772, 45, -16.88, 23.99, 0.05473, 4, 42, 46.8, 4.29, 0.58276, 43, 26.32, 18.37, 0.04346, 44, 4.92, 18.47, 0.23645, 45, -16.56, 18.47, 0.13732, + 4, 42, 52.06, 4.23, 0.43226, 43, 26.54, 13.12, 0.04191, 44, 5.13, 13.22, 0.34769, 45, -16.34, 13.22, 0.17814, 4, 42, 57.61, 3.94, 0.33656, 43, 26.54, 7.56, 0.0422, 44, 5.14, 7.66, + 0.41771, 45, -16.34, 7.66, 0.20353, 4, 42, 64.59, 3.92, 0.25264, 43, 26.89, 0.59, 0.04384, 44, 5.49, 0.69, 0.47782, 45, -15.99, 0.69, 0.2257, 4, 42, 70.39, 3.84, 0.18189, 43, 27.11, + -5.21, 0.04615, 44, 5.71, -5.11, 0.52741, 45, -15.77, -5.11, 0.24456, 4, 42, 41.23, 12.93, 0.8608, 43, 34.66, 24.39, 0.00457, 44, 13.26, 24.49, 0.04889, 45, -8.22, 24.49, 0.08574, 4, + 42, 47.07, 13.06, 0.60926, 43, 35.09, 18.56, 0.00894, 44, 13.69, 18.67, 0.13479, 45, -7.79, 18.67, 0.247, 4, 42, 52.33, 13.43, 0.45377, 43, 35.74, 13.33, 0.00554, 44, 14.33, 13.43, + 0.18027, 45, -7.14, 13.43, 0.36041, 4, 42, 58.15, 13.75, 0.35749, 43, 36.37, 7.54, 0.00417, 44, 14.96, 7.64, 0.20976, 45, -6.51, 7.64, 0.42858, 4, 42, 64.93, 13.95, 0.27612, 43, + 36.92, 0.78, 0.00359, 44, 15.52, 0.88, 0.23625, 45, -5.96, 0.88, 0.48404, 4, 42, 70.69, 14.22, 0.20954, 43, 37.5, -4.97, 0.00344, 44, 16.1, -4.86, 0.25903, 45, -5.38, -4.86, 0.52799, + 1, 42, 41.18, 21.86, 1, 4, 42, 47.26, 22.62, 0.82489, 43, 44.65, 18.87, 0.00083, 44, 23.25, 18.98, 0.0268, 45, 1.77, 18.98, 0.14748, 4, 42, 52.68, 24.04, 0.64773, 43, 46.35, 13.54, + 0.00052, 44, 24.95, 13.65, 0.04091, 45, 3.47, 13.65, 0.31084, 4, 42, 59.31, 25.35, 0.53225, 43, 48.01, 6.98, 0.00029, 44, 26.6, 7.09, 0.04857, 45, 5.13, 7.09, 0.41889, 4, 42, 65.88, + 27.11, 0.46955, 43, 50.12, 0.51, 0.00016, 44, 28.71, 0.62, 0.05201, 45, 7.24, 0.62, 0.47828, 4, 42, 71.43, 27.89, 0.41589, 43, 51.19, -4.99, 0.0001, 44, 29.78, -4.88, 0.05591, 45, + 8.31, -4.88, 0.5281, 4, 42, 51.12, -28.92, 0.72647, 43, -6.61, 12.31, 0.25381, 44, -28.01, 12.41, 0.01954, 45, -49.49, 12.41, 0.00018, 4, 42, 56.98, -30.79, 0.64422, 43, -8.18, 6.36, + 0.33291, 44, -29.58, 6.46, 0.02275, 45, -51.06, 6.46, 0.00011, 4, 42, 63.71, -32.68, 0.55448, 43, -9.7, -0.46, 0.41902, 44, -31.11, -0.36, 0.02643, 45, -52.58, -0.36, 7e-05, 4, 42, + 68.66, -34.31, 0.44397, 43, -11.07, -5.49, 0.52396, 44, -32.48, -5.38, 0.03202, 45, -53.95, -5.38, 4e-05, 4, 42, 51.16, -23.65, 0.5094, 43, -1.35, 12.55, 0.4213, 44, -22.75, 12.66, + 0.06847, 45, -44.22, 12.66, 0.00083, 4, 42, 57.16, -24.79, 0.42549, 43, -2.17, 6.49, 0.49746, 44, -23.57, 6.6, 0.07648, 45, -45.05, 6.6, 0.00057, 4, 42, 63.94, -26.25, 0.35688, 43, + -3.28, -0.35, 0.55926, 44, -24.68, -0.25, 0.08347, 45, -46.16, -0.25, 0.00039, 4, 42, 68.91, -27.43, 0.29772, 43, -4.19, -5.38, 0.61133, 44, -25.59, -5.28, 0.09064, 45, -47.07, + -5.28, 0.00031, 4, 42, 69.16, -20.73, 0.21136, 43, 2.51, -5.28, 0.59029, 44, -18.89, -5.17, 0.19654, 45, -40.37, -5.17, 0.00182, 4, 42, 64.11, -19.92, 0.275, 43, 3.05, -0.19, + 0.54348, 44, -18.35, -0.08, 0.17958, 45, -39.83, -0.08, 0.00194, 4, 42, 57.28, -19.35, 0.35002, 43, 3.27, 6.66, 0.48643, 44, -18.14, 6.77, 0.16123, 45, -39.61, 6.77, 0.00232, 4, 42, + 51.26, -18.48, 0.41881, 43, 3.82, 12.72, 0.43213, 44, -17.59, 12.83, 0.1461, 45, -39.06, 12.83, 0.00296, 4, 42, 51.45, -13.1, 0.39313, 43, 9.2, 12.81, 0.35299, 44, -12.2, 12.91, + 0.24433, 45, -33.68, 12.91, 0.00955, 4, 42, 57.34, -13.55, 0.32258, 43, 9.06, 6.91, 0.39406, 44, -12.34, 7.02, 0.27473, 45, -33.82, 7.02, 0.00863, 4, 42, 64.2, -14.31, 0.24476, 43, + 8.66, 0.02, 0.43744, 44, -12.74, 0.12, 0.30953, 45, -34.22, 0.12, 0.00827, 4, 42, 69.38, -14.93, 0.17804, 43, 8.31, -5.19, 0.47328, 44, -13.09, -5.08, 0.3403, 45, -34.57, -5.08, + 0.00838, 4, 42, 69.68, -9.29, 0.17525, 43, 13.97, -5.19, 0.31355, 44, -7.44, -5.08, 0.48153, 45, -28.91, -5.08, 0.02968, 4, 42, 64.27, -9.12, 0.24396, 43, 13.85, 0.22, 0.29088, 44, + -7.55, 0.33, 0.43695, 45, -29.03, 0.33, 0.02821, 4, 42, 57.38, -8.64, 0.32275, 43, 13.97, 7.13, 0.26435, 44, -7.44, 7.23, 0.38552, 45, -28.91, 7.23, 0.02739, 4, 42, 51.61, -8.2, + 0.39269, 43, 14.1, 12.92, 0.24007, 44, -7.3, 13.02, 0.33961, 45, -28.78, 13.02, 0.02763, 4, 42, 51.73, -3.15, 0.39835, 43, 19.16, 13.05, 0.13664, 44, -2.25, 13.16, 0.3972, 45, + -23.72, 13.16, 0.06781, 4, 42, 57.41, -3.5, 0.32898, 43, 19.1, 7.37, 0.14701, 44, -2.3, 7.47, 0.45281, 45, -23.78, 7.47, 0.07119, 4, 42, 64.31, -3.92, 0.24968, 43, 19.05, 0.45, + 0.15947, 44, -2.36, 0.56, 0.51456, 45, -23.83, 0.56, 0.07629, 4, 42, 70.03, -4.3, 0.17972, 43, 18.96, -5.28, 0.17094, 44, -2.44, -5.18, 0.56767, 45, -23.91, -5.18, 0.08167, 4, 42, + 70.31, 1.21, 0.18179, 43, 24.49, -5.27, 0.07557, 44, 3.08, -5.17, 0.56385, 45, -18.39, -5.17, 0.17879, 4, 42, 64.46, 1.3, 0.25204, 43, 24.27, 0.58, 0.07119, 44, 2.86, 0.68, 0.51118, + 45, -18.61, 0.68, 0.16559, 4, 42, 57.52, 1.66, 0.33157, 43, 24.26, 7.52, 0.0672, 44, 2.86, 7.63, 0.44995, 45, -18.62, 7.63, 0.15128, 4, 42, 51.92, 1.69, 0.40101, 43, 23.99, 13.13, + 0.06478, 44, 2.59, 13.23, 0.39483, 45, -18.89, 13.23, 0.13938, 4, 42, 52.17, 6.37, 0.401, 43, 28.68, 13.11, 0.0258, 44, 7.28, 13.22, 0.33427, 45, -14.2, 13.22, 0.23894, 4, 42, 57.7, + 6.22, 0.3309, 43, 28.82, 7.59, 0.02514, 44, 7.42, 7.69, 0.37908, 45, -14.06, 7.69, 0.26488, 4, 42, 64.69, 5.99, 0.25155, 43, 28.96, 0.59, 0.02548, 44, 7.56, 0.7, 0.4293, 45, -13.92, + 0.7, 0.29367, 4, 42, 70.45, 5.95, 0.18206, 43, 29.22, -5.16, 0.02652, 44, 7.82, -5.06, 0.47284, 45, -13.66, -5.06, 0.31858, 4, 42, 70.61, 11.41, 0.19245, 43, 34.69, -5.04, 0.00724, + 44, 13.29, -4.93, 0.3321, 45, -8.19, -4.93, 0.46821, 4, 42, 70.77, 17.07, 0.23948, 43, 40.35, -4.9, 0.00153, 44, 18.94, -4.79, 0.19195, 45, -2.53, -4.79, 0.56704, 4, 42, 71.13, + 23.54, 0.346, 43, 46.82, -4.91, 0.00026, 44, 25.42, -4.81, 0.08922, 45, 3.94, -4.81, 0.56452, 4, 42, 71.67, 31.21, 0.48407, 43, 54.51, -5.05, 4e-05, 44, 33.11, -4.94, 0.03358, 45, + 11.63, -4.94, 0.48231, 4, 42, 66.23, 30.24, 0.54501, 43, 53.26, 0.33, 7e-05, 44, 31.86, 0.43, 0.03077, 45, 10.38, 0.43, 0.42415, 4, 42, 65.41, 22.86, 0.40266, 43, 45.85, 0.77, + 0.00034, 44, 24.45, 0.87, 0.08247, 45, 2.97, 0.87, 0.51452, 4, 42, 64.98, 16.56, 0.30287, 43, 39.53, 0.86, 0.00168, 44, 18.13, 0.97, 0.17579, 45, -3.35, 0.97, 0.51965, 4, 42, 64.87, + 11.12, 0.25994, 43, 34.09, 0.68, 0.00726, 44, 12.69, 0.79, 0.30245, 45, -8.79, 0.79, 0.43035, 4, 42, 57.96, 11, 0.3382, 43, 33.61, 7.58, 0.00776, 44, 12.21, 7.69, 0.26884, 45, -9.27, + 7.69, 0.38519, 4, 42, 58.32, 16.31, 0.37706, 43, 38.93, 7.49, 0.00208, 44, 17.52, 7.6, 0.15821, 45, -3.95, 7.6, 0.46265, 4, 42, 58.9, 22.12, 0.46779, 43, 44.77, 7.23, 0.00052, 44, + 23.36, 7.33, 0.07582, 45, 1.89, 7.33, 0.45586, 4, 42, 59.69, 28.3, 0.65325, 43, 50.97, 6.76, 0.00012, 44, 29.57, 6.86, 0.02541, 45, 8.09, 6.86, 0.32123, 4, 42, 52.82, 26.61, 0.75526, + 43, 48.93, 13.53, 0.00017, 44, 27.52, 13.64, 0.02002, 45, 6.05, 13.64, 0.22455, 4, 42, 52.51, 21.1, 0.52586, 43, 43.41, 13.55, 0.00082, 44, 22, 13.66, 0.07106, 45, 0.53, 13.66, + 0.40226, 4, 42, 52.35, 15.86, 0.44455, 43, 38.16, 13.44, 0.00273, 44, 16.76, 13.54, 0.1436, 45, -4.72, 13.54, 0.40912, 4, 42, 52.31, 10.54, 0.40864, 43, 32.85, 13.19, 0.0088, 44, + 11.45, 13.3, 0.23945, 45, -10.03, 13.3, 0.34311, 4, 42, 70.77, -38.17, 0.52059, 43, -14.82, -7.8, 0.45917, 44, -36.22, -7.7, 0.02022, 45, -57.7, -7.7, 1e-05, 4, 42, 70.83, -34.9, + 0.37517, 43, -11.54, -7.69, 0.58803, 44, -32.95, -7.59, 0.03676, 45, -54.42, -7.59, 4e-05, 4, 42, 70.97, -31.21, 0.31655, 43, -7.85, -7.63, 0.62281, 44, -29.26, -7.53, 0.06054, 45, + -50.73, -7.53, 0.00011, 4, 42, 71.13, -27.77, 0.25662, 43, -4.41, -7.62, 0.64624, 44, -25.82, -7.51, 0.09684, 45, -47.29, -7.51, 0.0003, 4, 42, 71.2, -23.97, 0.20542, 43, -0.61, + -7.48, 0.64718, 44, -22.02, -7.37, 0.14662, 45, -43.49, -7.37, 0.00077, 4, 42, 71.35, -20.96, 0.16774, 43, 2.4, -7.48, 0.62093, 44, -19, -7.37, 0.20946, 45, -40.48, -7.37, 0.00187, + 4, 42, 71.49, -17.96, 0.14406, 43, 5.4, -7.45, 0.56885, 44, -16, -7.35, 0.28288, 45, -37.48, -7.35, 0.00421, 4, 42, 71.65, -15.17, 0.13169, 43, 8.2, -7.46, 0.49722, 44, -13.21, + -7.36, 0.36227, 45, -34.68, -7.36, 0.00882, 4, 42, 71.89, -12.02, 0.12708, 43, 11.35, -7.54, 0.41453, 44, -10.05, -7.44, 0.44117, 45, -31.52, -7.44, 0.01722, 4, 42, 71.98, -9.41, + 0.12668, 43, 13.97, -7.49, 0.32958, 44, -7.43, -7.39, 0.51233, 45, -28.91, -7.39, 0.03141, 4, 42, 72.15, -7.02, 0.12812, 43, 16.36, -7.53, 0.24965, 44, -5.05, -7.43, 0.56851, 45, + -26.52, -7.43, 0.05372, 4, 42, 72.39, -4.46, 0.12979, 43, 18.93, -7.65, 0.1799, 44, -2.47, -7.54, 0.60387, 45, -23.95, -7.54, 0.08644, 4, 42, 72.47, -1.68, 0.13105, 43, 21.71, -7.58, + 0.12302, 44, 0.3, -7.47, 0.61461, 45, -21.17, -7.47, 0.13132, 4, 42, 72.58, 1.2, 0.13159, 43, 24.6, -7.54, 0.07962, 44, 3.19, -7.43, 0.5998, 45, -18.28, -7.43, 0.18899, 4, 42, 72.71, + 3.77, 0.13189, 43, 27.17, -7.53, 0.04862, 44, 5.76, -7.42, 0.56113, 45, -15.71, -7.42, 0.25837, 4, 42, 72.9, 5.95, 0.13282, 43, 29.35, -7.61, 0.02792, 44, 7.95, -7.5, 0.50297, 45, + -13.53, -7.5, 0.33629, 4, 42, 72.96, 8.77, 0.13637, 43, 32.18, -7.52, 0.01503, 44, 10.77, -7.41, 0.43134, 45, -10.7, -7.41, 0.41726, 4, 42, 73.15, 11.31, 0.14539, 43, 34.72, -7.57, + 0.00757, 44, 13.32, -7.46, 0.35328, 45, -8.16, -7.46, 0.49376, 4, 42, 73.26, 14.32, 0.16393, 43, 37.73, -7.53, 0.00355, 44, 16.32, -7.43, 0.27561, 45, -5.15, -7.43, 0.55691, 4, 42, + 73.56, 17.06, 0.19585, 43, 40.48, -7.68, 0.00155, 44, 19.08, -7.58, 0.20422, 45, -2.4, -7.58, 0.59837, 4, 42, 73.65, 19.69, 0.24372, 43, 43.11, -7.63, 0.00063, 44, 21.71, -7.53, + 0.14329, 45, 0.23, -7.53, 0.61235, 4, 42, 73.87, 23.74, 0.30631, 43, 47.17, -7.64, 0.00024, 44, 25.77, -7.53, 0.09501, 45, 4.29, -7.53, 0.59844, 4, 42, 74.01, 28.34, 0.3775, 43, + 51.77, -7.54, 9e-05, 44, 30.37, -7.43, 0.05972, 45, 8.89, -7.43, 0.5627, 4, 42, 74.28, 31.7, 0.44548, 43, 55.14, -7.63, 3e-05, 44, 33.74, -7.53, 0.03652, 45, 12.26, -7.53, 0.51797, + 4, 42, 74.78, 35.38, 0.56131, 43, 58.84, -7.93, 1e-05, 44, 37.44, -7.83, 0.02128, 45, 15.96, -7.83, 0.41739 + ], + "hull": 44, + "edges": [ + 78, 76, 86, 0, 78, 80, 80, 82, 82, 84, 84, 86, 0, 94, 76, 96, 62, 64, 74, 76, 102, 96, 74, 102, 104, 90, 106, 98, 108, 88, 110, 100, 112, 92, 114, 94, 2, 0, 114, 2, 72, 74, 116, 102, + 72, 116, 118, 104, 120, 106, 122, 108, 124, 110, 126, 112, 128, 114, 4, 2, 128, 4, 70, 72, 130, 116, 70, 130, 132, 118, 134, 120, 136, 122, 138, 124, 140, 126, 142, 128, 8, 6, 6, 4, + 142, 6, 68, 70, 144, 130, 68, 144, 146, 132, 148, 134, 150, 136, 152, 138, 154, 140, 156, 142, 156, 8, 8, 10, 10, 12, 12, 158, 158, 156, 10, 158, 160, 154, 162, 152, 164, 150, 166, + 148, 168, 146, 170, 144, 64, 66, 66, 68, 170, 66, 82, 172, 172, 88, 98, 172, 172, 100, 80, 174, 174, 90, 96, 174, 84, 176, 176, 92, 94, 176, 90, 178, 178, 96, 102, 180, 180, 104, + 178, 180, 180, 182, 182, 184, 184, 186, 186, 188, 90, 190, 190, 98, 104, 192, 192, 106, 190, 192, 192, 194, 194, 196, 196, 198, 198, 200, 88, 202, 202, 98, 106, 204, 204, 108, 202, + 204, 204, 206, 206, 208, 208, 210, 210, 212, 88, 214, 214, 100, 108, 216, 216, 110, 214, 216, 216, 218, 218, 220, 220, 222, 222, 224, 92, 226, 226, 100, 110, 228, 228, 112, 226, 228, + 228, 230, 230, 232, 232, 234, 234, 236, 92, 238, 238, 94, 112, 240, 240, 114, 238, 240, 240, 242, 242, 244, 244, 246, 246, 248, 12, 14, 170, 64, 116, 250, 250, 182, 130, 252, 252, + 184, 250, 252, 144, 254, 254, 186, 252, 254, 170, 256, 256, 188, 254, 256, 58, 60, 60, 62, 118, 258, 258, 182, 132, 260, 260, 184, 258, 260, 146, 262, 262, 186, 260, 262, 168, 264, + 264, 188, 262, 264, 54, 56, 56, 58, 50, 52, 52, 54, 168, 266, 266, 200, 146, 268, 268, 198, 266, 268, 132, 270, 270, 196, 268, 270, 118, 272, 272, 194, 270, 272, 120, 274, 274, 194, + 134, 276, 276, 196, 274, 276, 148, 278, 278, 198, 276, 278, 166, 280, 280, 200, 278, 280, 46, 48, 48, 50, 42, 44, 44, 46, 166, 282, 282, 212, 148, 284, 284, 210, 282, 284, 134, 286, + 286, 208, 284, 286, 120, 288, 288, 206, 286, 288, 122, 290, 290, 206, 136, 292, 292, 208, 290, 292, 150, 294, 294, 210, 292, 294, 164, 296, 296, 212, 294, 296, 38, 40, 40, 42, 34, + 36, 36, 38, 164, 298, 298, 224, 150, 300, 300, 222, 298, 300, 136, 302, 302, 220, 300, 302, 122, 304, 304, 218, 302, 304, 124, 306, 306, 218, 138, 308, 308, 220, 306, 308, 152, 310, + 310, 222, 308, 310, 162, 312, 312, 224, 310, 312, 30, 32, 32, 34, 26, 28, 28, 30, 162, 314, 314, 236, 22, 24, 24, 26, 160, 316, 316, 236, 18, 20, 20, 22, 160, 318, 318, 248, 14, 16, + 16, 18, 158, 320, 320, 248, 156, 322, 322, 246, 320, 322, 154, 324, 324, 246, 318, 324, 154, 326, 326, 234, 316, 326, 152, 328, 328, 234, 314, 328, 138, 330, 330, 232, 328, 330, 140, + 332, 332, 232, 326, 332, 140, 334, 334, 244, 324, 334, 142, 336, 336, 244, 322, 336, 128, 338, 338, 242, 336, 338, 126, 340, 340, 242, 334, 340, 126, 342, 342, 230, 332, 342, 124, + 344, 344, 230, 330, 344, 62, 346, 346, 170, 60, 348, 348, 256, 346, 348, 58, 350, 350, 188, 348, 350, 56, 352, 352, 264, 350, 352, 54, 354, 354, 168, 352, 354, 52, 356, 356, 266, + 354, 356, 50, 358, 358, 200, 356, 358, 48, 360, 360, 280, 358, 360, 46, 362, 362, 166, 360, 362, 44, 364, 364, 282, 362, 364, 42, 366, 366, 212, 364, 366, 40, 368, 368, 296, 366, + 368, 38, 370, 370, 164, 368, 370, 36, 372, 372, 298, 370, 372, 34, 374, 374, 224, 372, 374, 32, 376, 376, 312, 374, 376, 30, 378, 378, 162, 376, 378, 28, 380, 380, 314, 378, 380, 26, + 382, 382, 236, 380, 382, 24, 384, 384, 316, 382, 384, 22, 386, 386, 160, 384, 386, 20, 388, 388, 318, 386, 388, 18, 390, 390, 248, 388, 390, 16, 392, 392, 320, 390, 392, 14, 394, + 394, 158, 392, 394 + ], + "width": 83, + "height": 80, + "path": "aquatic-summer-02-lv2.ear-right-bubble" + } + }, + "ear-right-dot-01": {"ear-right-dot": {"x": -0.78, "y": -0.78, "rotation": -0.95, "width": 21, "height": 14, "path": "aquatic-summer-02-lv2.ear-right-dot"}}, + "ear-right-dot-02": {"ear-right-dot": {"x": -0.78, "y": -0.78, "rotation": -0.95, "width": 21, "height": 14, "path": "aquatic-summer-02-lv2.ear-right-dot"}}, + "ear-right-dot-03": {"ear-right-dot": {"x": -0.78, "y": -0.78, "rotation": -0.95, "width": 21, "height": 14, "path": "aquatic-summer-02-lv2.ear-right-dot"}}, + "ear-right-dot-04": {"ear-right-dot": {"x": -0.78, "y": -0.78, "rotation": -0.95, "width": 21, "height": 14, "path": "aquatic-summer-02-lv2.ear-right-dot"}}, + "ear-right-dot-05": {"ear-right-dot": {"x": -0.78, "y": -0.78, "rotation": -0.95, "width": 21, "height": 14, "path": "aquatic-summer-02-lv2.ear-right-dot"}}, + "ear-right-dot-06": {"ear-right-dot": {"x": -0.78, "y": -0.78, "rotation": -0.95, "width": 21, "height": 14, "path": "aquatic-summer-02-lv2.ear-right-dot"}}, + "ear-right-dot-07": {"ear-right-dot": {"x": -0.78, "y": -0.78, "rotation": -0.95, "width": 21, "height": 14, "path": "aquatic-summer-02-lv2.ear-right-dot"}}, + "ear-right-dot-08": {"ear-right-dot": {"x": -0.78, "y": -0.78, "rotation": -0.95, "width": 21, "height": 14, "path": "aquatic-summer-02-lv2.ear-right-dot"}}, + "ear-right-dot-09": {"ear-right-dot": {"x": -0.78, "y": -0.78, "rotation": -0.95, "width": 21, "height": 14, "path": "aquatic-summer-02-lv2.ear-right-dot"}}, + "ear-right-dot-10": {"ear-right-dot": {"x": -0.78, "y": -0.78, "rotation": -0.95, "width": 21, "height": 14, "path": "aquatic-summer-02-lv2.ear-right-dot"}}, + "ear-right-dot-11": {"ear-right-dot": {"x": -0.78, "y": -0.78, "rotation": -0.95, "width": 21, "height": 14, "path": "aquatic-summer-02-lv2.ear-right-dot"}}, + "ear-right-dot-12": {"ear-right-dot": {"x": -0.78, "y": -0.78, "rotation": -0.95, "width": 21, "height": 14, "path": "aquatic-summer-02-lv2.ear-right-dot"}}, + "ear-right-dot-13": {"ear-right-dot": {"x": -0.78, "y": -0.78, "rotation": -0.95, "width": 21, "height": 14, "path": "aquatic-summer-02-lv2.ear-right-dot"}}, + "ear-right-dot-14": {"ear-right-dot": {"x": -0.78, "y": -0.78, "rotation": -0.95, "width": 21, "height": 14, "path": "aquatic-summer-02-lv2.ear-right-dot"}}, + "ear-right-dot-15": {"ear-right-dot": {"x": -0.78, "y": -0.78, "rotation": -0.95, "width": 21, "height": 14, "path": "aquatic-summer-02-lv2.ear-right-dot"}}, + "ear-right-dot-16": {"ear-right-dot": {"x": -0.78, "y": -0.78, "rotation": -0.95, "width": 21, "height": 14, "path": "aquatic-summer-02-lv2.ear-right-dot"}}, + "ear-right-dot-17": {"ear-right-dot": {"x": -0.78, "y": -0.78, "rotation": -0.95, "width": 21, "height": 14, "path": "aquatic-summer-02-lv2.ear-right-dot"}}, + "ear-right-dot-18": {"ear-right-dot": {"x": -0.78, "y": -0.78, "rotation": -0.95, "width": 21, "height": 14, "path": "aquatic-summer-02-lv2.ear-right-dot"}}, + "ear-right-dot-19": {"ear-right-dot": {"x": -0.78, "y": -0.78, "rotation": -0.95, "width": 21, "height": 14, "path": "aquatic-summer-02-lv2.ear-right-dot"}}, + "ear-right-dot-20": {"ear-right-dot": {"x": -0.78, "y": -0.78, "rotation": -0.95, "width": 21, "height": 14, "path": "aquatic-summer-02-lv2.ear-right-dot"}}, + "ear-right-under": {"ear-right-under": {"x": 83.95, "y": -16.92, "rotation": -93, "width": 134, "height": 205, "path": "aquatic-summer-02-lv2.ear-right-under"}}, + "ear-right-upper": {"ear-right-upper": {"x": 92.44, "y": -17.36, "rotation": -93, "width": 142, "height": 264, "path": "aquatic-summer-02-lv2.ear-right-upper"}}, + "eyes": { + "eyes": {"x": 22.5, "y": 23.72, "width": 274, "height": 103, "path": "aquatic-summer-02-lv2.eyes"}, + "eyes-angry": {"x": 22.5, "y": 23.72, "width": 274, "height": 103, "path": "aquatic-summer-02-lv2.eyes-angry"}, + "eyes-happy": {"x": 22.5, "y": 23.72, "width": 274, "height": 103, "path": "aquatic-summer-02-lv2.eyes-happy"}, + "eyes-shut": {"x": 22.5, "y": 23.72, "width": 274, "height": 103, "path": "aquatic-summer-02-lv2.eyes-shut"} + }, + "eyes-happy-accessory": {"eyes-happy-accessory": {"x": 0.37, "y": 0.4, "scaleX": 1.4, "scaleY": 1.4, "width": 99, "height": 105, "path": "aquatic-summer-02-lv2.eyes-happy-accessory"}}, + "eyes-upper": {"eyes-upper": {"x": 23, "y": 23.22, "width": 373, "height": 174, "path": "aquatic-summer-02-lv2.eyes-upper"}}, + "horn": {"horn": {"x": 87.72, "y": -7.5, "rotation": -90, "width": 264, "height": 181, "path": "aquatic-summer-02-lv2.horn"}}, + "mouth": { + "mouth": {"x": -44, "y": 22.22, "width": 211, "height": 124, "path": "aquatic-summer-02-lv2.mouth"}, + "mouth-bite": {"x": -33.5, "y": 24.72, "width": 232, "height": 129, "path": "aquatic-summer-02-lv2.mouth-bite"}, + "mouth-open": {"x": -39, "y": 16.22, "width": 221, "height": 140, "path": "aquatic-summer-02-lv2.mouth-open"}, + "mouth-smile": {"x": -34, "y": 20.72, "width": 231, "height": 121, "path": "aquatic-summer-02-lv2.mouth-smile"} + }, + "mouth-accessory": { + "mouth-accessory": { + "type": "mesh", + "uvs": [ + 0.7567, 0.0473, 0.86697, 0.14039, 0.9443, 0.25209, 0.99714, 0.36666, 0.99999, 0.49597, 1, 0.61625, 0.9486, 0.73368, 0.85981, 0.85684, 0.74238, 0.95422, 0.58914, 1, 0.46884, 1, + 0.36484, 0.99858, 0.24169, 0.95082, 0.12854, 0.86646, 0.03732, 0.75174, 0, 0.59723, 0, 0.48254, 0, 0.36237, 0.04691, 0.22488, 0.14286, 0.10888, 0.25027, 0.03298, 0.37916, 0, 0.49749, + 0, 0.62208, 0, 0.48816, 0.49691, 0.38984, 0.47048, 0.40039, 0.4428, 0.42008, 0.42041, 0.44087, 0.4047, 0.46611, 0.39392, 0.49007, 0.39257, 0.5155, 0.39441, 0.54363, 0.40403, 0.56948, + 0.42037, 0.58681, 0.44396, 0.59625, 0.46925, 0.60239, 0.4967, 0.59962, 0.5229, 0.58591, 0.54718, 0.56617, 0.57246, 0.53987, 0.58993, 0.50841, 0.5978, 0.48422, 0.59958, 0.46389, + 0.59563, 0.44255, 0.58693, 0.41915, 0.56782, 0.40098, 0.54296, 0.39091, 0.5164, 0.38677, 0.494, 0.25326, 0.49016, 0.26189, 0.43608, 0.28722, 0.37303, 0.33073, 0.32, 0.38007, 0.28612, + 0.43888, 0.26671, 0.49242, 0.26434, 0.5491, 0.26844, 0.61141, 0.29055, 0.66979, 0.32597, 0.72081, 0.37204, 0.74533, 0.4311, 0.75435, 0.49642, 0.74415, 0.5566, 0.71527, 0.6137, + 0.66814, 0.67121, 0.6053, 0.70764, 0.53338, 0.72221, 0.47953, 0.72167, 0.43531, 0.71188, 0.25606, 0.54343, 0.2836, 0.60497, 0.33013, 0.6593, 0.38745, 0.69572, 0.2371, 0.756, 0.32258, + 0.81152, 0.40412, 0.83877, 0.47432, 0.85748, 0.5622, 0.86577, 0.67514, 0.83328, 0.76201, 0.76212, 0.82762, 0.67147, 0.86788, 0.58544, 0.89046, 0.49617, 0.88879, 0.39439, 0.84496, + 0.30541, 0.77906, 0.22313, 0.69067, 0.15785, 0.58965, 0.1164, 0.49532, 0.10584, 0.40602, 0.11317, 0.30758, 0.14475, 0.22046, 0.19609, 0.15118, 0.28916, 0.11571, 0.39679, 0.10936, + 0.48603, 0.11577, 0.57155, 0.16414, 0.68085 + ], + "triangles": [ + 76, 67, 66, 74, 71, 72, 67, 75, 68, 75, 72, 68, 62, 36, 61, 58, 33, 57, 65, 66, 40, 65, 39, 64, 44, 72, 71, 64, 38, 63, 71, 70, 46, 63, 37, 62, 70, 69, 47, 69, 49, 48, 49, 50, 25, + 50, 51, 26, 26, 51, 52, 52, 53, 28, 57, 32, 56, 56, 31, 55, 53, 54, 29, 55, 29, 54, 35, 34, 59, 41, 42, 24, 40, 41, 24, 43, 24, 42, 39, 40, 24, 24, 43, 44, 44, 45, 24, 39, 24, 38, + 45, 46, 24, 38, 24, 37, 46, 47, 24, 37, 24, 36, 47, 48, 24, 48, 25, 24, 25, 26, 24, 26, 27, 24, 27, 28, 24, 28, 29, 24, 24, 35, 36, 24, 34, 35, 24, 33, 34, 24, 32, 33, 24, 31, 32, + 24, 30, 31, 24, 29, 30, 66, 67, 41, 67, 42, 41, 66, 41, 40, 67, 68, 42, 68, 43, 42, 68, 72, 43, 40, 39, 65, 72, 44, 43, 44, 71, 45, 39, 38, 64, 71, 46, 45, 38, 37, 63, 70, 47, 46, + 37, 36, 62, 69, 48, 47, 36, 35, 60, 48, 49, 25, 25, 50, 26, 34, 33, 58, 27, 26, 52, 27, 52, 28, 28, 53, 29, 33, 32, 57, 32, 31, 56, 30, 29, 55, 31, 30, 55, 61, 36, 60, 60, 35, 59, + 34, 58, 59, 77, 66, 65, 73, 70, 71, 96, 69, 70, 10, 77, 9, 9, 78, 8, 9, 77, 78, 10, 76, 77, 76, 10, 75, 12, 74, 11, 10, 11, 75, 11, 74, 75, 7, 78, 79, 7, 8, 78, 13, 73, 12, 12, 73, + 74, 13, 96, 73, 13, 14, 96, 76, 66, 77, 77, 65, 78, 76, 75, 67, 79, 80, 7, 7, 80, 6, 74, 72, 75, 65, 64, 78, 78, 64, 79, 74, 73, 71, 64, 63, 79, 79, 63, 80, 73, 96, 70, 14, 95, 96, + 14, 15, 95, 80, 81, 6, 6, 81, 5, 96, 95, 69, 63, 62, 80, 80, 62, 81, 81, 82, 5, 82, 4, 5, 95, 16, 94, 95, 15, 16, 62, 61, 81, 81, 61, 82, 69, 94, 49, 69, 95, 94, 61, 60, 82, 60, 83, + 82, 82, 83, 4, 83, 3, 4, 49, 94, 50, 94, 93, 50, 94, 16, 93, 16, 17, 93, 50, 93, 51, 83, 60, 84, 93, 92, 51, 93, 17, 92, 60, 59, 84, 3, 83, 2, 51, 92, 52, 84, 59, 85, 83, 84, 2, 17, + 18, 92, 59, 58, 85, 85, 58, 86, 92, 91, 52, 53, 52, 90, 2, 84, 1, 58, 57, 86, 86, 57, 87, 92, 18, 91, 52, 91, 90, 54, 53, 89, 57, 56, 87, 87, 56, 88, 53, 90, 89, 55, 54, 88, 56, 55, + 88, 88, 54, 89, 84, 85, 1, 18, 19, 91, 1, 85, 0, 90, 91, 20, 85, 86, 0, 0, 86, 23, 91, 19, 20, 89, 90, 21, 86, 87, 23, 23, 87, 22, 90, 20, 21, 88, 89, 22, 87, 88, 22, 22, 89, 21 + ], + "vertices": [ + 1, 29, 42.58, 72.34, 1, 1, 29, 60.45, 57.26, 1, 1, 29, 72.98, 39.16, 1, 1, 29, 81.54, 20.6, 1, 1, 29, 82, -0.34, 1, 1, 29, 82, -19.83, 1, 1, 29, 73.67, -38.85, 1, 1, 29, 59.29, + -58.81, 1, 1, 29, 40.26, -74.58, 1, 1, 29, 15.44, -82, 1, 1, 29, -4.05, -82, 1, 1, 29, -20.9, -81.77, 1, 1, 29, -40.85, -74.03, 1, 1, 29, -59.18, -60.37, 1, 1, 29, -73.95, -41.78, 1, + 1, 29, -82, -16.75, 1, 1, 29, -82, 1.83, 1, 1, 29, -82, 21.3, 1, 1, 29, -72.4, 43.57, 1, 1, 29, -56.86, 62.36, 1, 1, 29, -39.46, 74.66, 1, 1, 29, -18.58, 82, 1, 1, 29, 0.59, 82, 1, + 1, 29, 20.78, 80.84, 1, 1, 81, -0.92, -0.5, 1, 1, 81, -16.85, 3.78, 1, 1, 81, -15.14, 8.27, 1, 1, 81, -11.95, 11.89, 1, 1, 81, -8.58, 14.44, 1, 1, 81, -4.49, 16.19, 1, 1, 81, -0.61, + 16.41, 1, 1, 81, 3.51, 16.11, 1, 1, 81, 8.07, 14.55, 1, 1, 81, 12.26, 11.9, 1, 1, 81, 15.06, 8.08, 1, 1, 81, 16.59, 3.98, 1, 1, 81, 17.59, -0.46, 1, 1, 81, 17.14, -4.71, 1, 1, 81, + 14.92, -8.64, 1, 1, 81, 11.72, -12.74, 1, 1, 81, 7.46, -15.57, 1, 1, 81, 2.36, -16.84, 1, 1, 81, -1.56, -17.13, 1, 1, 81, -4.85, -16.49, 1, 1, 81, -8.31, -15.08, 1, 1, 81, -12.1, + -11.99, 1, 1, 81, -15.04, -7.96, 1, 1, 81, -16.67, -3.66, 1, 1, 81, -17.34, -0.03, 1, 2, 29, -38.97, 0.6, 0.37475, 81, -38.97, 0.6, 0.62525, 2, 29, -37.57, 9.36, 0.38176, 81, -37.57, + 9.36, 0.61824, 2, 29, -33.47, 19.57, 0.39514, 81, -33.47, 19.57, 0.60486, 2, 29, -26.42, 28.16, 0.40154, 81, -26.42, 28.16, 0.59846, 2, 29, -18.43, 33.65, 0.40298, 81, -18.43, 33.65, + 0.59702, 2, 29, -8.9, 36.8, 0.39723, 81, -8.9, 36.8, 0.60277, 2, 29, -0.23, 37.18, 0.38672, 81, -0.23, 37.18, 0.61328, 2, 29, 8.95, 36.51, 0.39243, 81, 8.95, 36.51, 0.60757, 2, 29, + 19.05, 32.93, 0.39729, 81, 19.05, 32.93, 0.60271, 2, 29, 28.51, 27.19, 0.41715, 81, 28.51, 27.19, 0.58285, 2, 29, 36.77, 19.73, 0.45304, 81, 36.77, 19.73, 0.54696, 2, 29, 40.74, + 10.16, 0.44594, 81, 40.74, 10.16, 0.55406, 2, 29, 42.2, -0.42, 0.43856, 81, 42.2, -0.42, 0.56144, 2, 29, 40.55, -10.17, 0.41782, 81, 40.55, -10.17, 0.58218, 2, 29, 35.87, -19.42, + 0.38686, 81, 35.87, -19.42, 0.61314, 2, 29, 28.24, -28.73, 0.36878, 81, 28.24, -28.73, 0.63122, 2, 29, 18.06, -34.64, 0.3386, 81, 18.06, -34.64, 0.6614, 2, 29, 6.41, -37, 0.30037, + 81, 6.41, -37, 0.69963, 2, 29, -2.32, -36.91, 0.28415, 81, -2.32, -36.91, 0.71585, 2, 29, -9.48, -35.32, 0.27399, 81, -9.48, -35.32, 0.72601, 2, 29, -38.52, -8.03, 0.36783, 81, + -38.52, -8.03, 0.63217, 2, 29, -34.06, -18, 0.33446, 81, -34.06, -18, 0.66554, 2, 29, -26.52, -26.8, 0.30599, 81, -26.52, -26.8, 0.69401, 2, 29, -17.23, -32.71, 0.28378, 81, -17.23, + -32.71, 0.71622, 2, 29, -41.59, -42.47, 0.73847, 81, -41.59, -42.47, 0.26153, 2, 29, -27.74, -51.46, 0.71173, 81, -27.74, -51.46, 0.28827, 2, 29, -14.53, -55.88, 0.69513, 81, -14.53, + -55.88, 0.30487, 2, 29, -3.16, -58.91, 0.72225, 81, -3.16, -58.91, 0.27775, 2, 29, 11.08, -60.25, 0.77228, 81, 11.08, -60.25, 0.22772, 2, 29, 29.37, -54.99, 0.80171, 81, 29.37, + -54.99, 0.19829, 2, 29, 43.44, -43.46, 0.78981, 81, 43.44, -43.46, 0.21019, 2, 29, 54.07, -28.78, 0.79382, 81, 54.07, -28.78, 0.20618, 2, 29, 60.6, -14.84, 0.827, 81, 60.6, -14.84, + 0.173, 2, 29, 64.25, -0.38, 0.87698, 81, 64.25, -0.38, 0.12302, 2, 29, 63.98, 16.11, 0.92141, 81, 63.98, 16.11, 0.07859, 2, 29, 56.88, 30.53, 0.90642, 81, 56.88, 30.53, 0.09358, 2, + 29, 46.21, 43.86, 0.90058, 81, 46.21, 43.86, 0.09942, 2, 29, 31.89, 54.43, 0.8953, 81, 31.89, 54.43, 0.1047, 2, 29, 15.52, 61.14, 0.89934, 81, 15.52, 61.14, 0.10066, 2, 29, 0.24, + 62.86, 0.89762, 81, 0.24, 62.86, 0.10238, 2, 29, -14.22, 61.67, 0.90341, 81, -14.22, 61.67, 0.09659, 2, 29, -30.17, 56.55, 0.9151, 81, -30.17, 56.55, 0.0849, 2, 29, -44.28, 48.24, + 0.93596, 81, -44.28, 48.24, 0.06404, 2, 29, -55.51, 33.16, 0.90966, 81, -55.51, 33.16, 0.09034, 2, 29, -61.25, 15.72, 0.86888, 81, -61.25, 15.72, 0.13112, 2, 29, -62.28, 1.26, + 0.83823, 81, -62.28, 1.26, 0.16177, 2, 29, -61.24, -12.59, 0.82811, 81, -61.24, -12.59, 0.17189, 2, 29, -53.41, -30.3, 0.78788, 81, -53.41, -30.3, 0.21212 + ], + "hull": 24, + "edges": [ + 18, 20, 18, 16, 16, 14, 14, 12, 8, 10, 12, 10, 8, 6, 6, 4, 4, 2, 2, 0, 44, 46, 0, 46, 42, 44, 42, 40, 40, 38, 38, 36, 32, 34, 36, 34, 30, 32, 30, 28, 28, 26, 26, 24, 20, 22, 24, 22, + 50, 48, 52, 48, 50, 52, 54, 48, 52, 54, 56, 48, 54, 56, 58, 48, 56, 58, 60, 48, 58, 60, 62, 48, 60, 62, 64, 48, 62, 64, 66, 48, 64, 66, 68, 48, 66, 68, 70, 48, 68, 70, 72, 48, 70, + 72, 74, 48, 72, 74, 76, 48, 74, 76, 78, 48, 76, 78, 80, 48, 78, 80, 82, 48, 80, 82, 84, 48, 82, 84, 86, 48, 84, 86, 88, 48, 86, 88, 90, 48, 88, 90, 92, 48, 90, 92, 94, 48, 92, 94, + 96, 48, 94, 96, 96, 50, 98, 96, 100, 50, 98, 100, 102, 52, 100, 102, 104, 54, 102, 104, 106, 56, 104, 106, 108, 58, 106, 108, 110, 60, 108, 110, 112, 62, 110, 112, 114, 64, 112, 114, + 116, 66, 114, 116, 118, 68, 116, 118, 120, 70, 118, 120, 122, 72, 120, 122, 124, 74, 122, 124, 126, 76, 124, 126, 128, 78, 126, 128, 130, 80, 128, 130, 132, 82, 130, 132, 134, 84, + 132, 134, 136, 86, 134, 136, 138, 94, 98, 138, 140, 92, 138, 140, 142, 90, 140, 142, 144, 88, 142, 144, 144, 136, 26, 146, 146, 142, 24, 148, 148, 144, 146, 148, 22, 150, 150, 136, + 148, 150, 20, 152, 152, 134, 150, 152, 18, 154, 154, 132, 152, 154, 16, 156, 156, 130, 154, 156, 14, 158, 158, 128, 156, 158, 12, 160, 160, 126, 158, 160, 10, 162, 162, 124, 160, + 162, 8, 164, 164, 122, 162, 164, 6, 166, 166, 120, 164, 166, 4, 168, 168, 118, 166, 168, 2, 170, 170, 116, 168, 170, 0, 172, 172, 114, 170, 172, 46, 174, 174, 112, 172, 174, 44, 176, + 176, 110, 174, 176, 42, 178, 178, 108, 176, 178, 40, 180, 180, 106, 178, 180, 38, 182, 182, 104, 180, 182, 36, 184, 184, 102, 182, 184, 34, 186, 186, 100, 184, 186, 32, 188, 188, 98, + 186, 188, 30, 190, 190, 138, 188, 190, 28, 192, 192, 140, 190, 192, 192, 146 + ], + "width": 164, + "height": 164, + "path": "aquatic-summer-02-lv2.mouth-accessory" + } + }, + "tail": {"tail": {"x": 110.92, "y": 26.49, "rotation": 12, "width": 279, "height": 281, "path": "aquatic-summer-02-lv2.tail"}} + } + } + ], + "events": {"hit": {}, "hit-buff": {}, "jump": {}, "start-attack": {}}, + "keyAnimations": { + "activity/appear": "2975056588", + "activity/bath": "4269852312", + "attack/ranged/cast-fly": "1964095857", + "attack/ranged/cast-high": "2755238029", + "attack/ranged/cast-low": "796766875", + "attack/ranged/cast-multi": "2912539256", + "attack/ranged/cast-tail": "515170597", + "action/mix/ear-animation": "901954966", + "activity/eat-bite": "1563829869", + "activity/eat-chew": "4174710305", + "activity/entrance": "636017429", + "defense/evade": "2335495519", + "activity/evolve": "3193680296", + "action/mix/eyes-animation": "3799301307", + "battle/get-buff": "3907351690", + "battle/get-debuff": "503738134", + "defense/hit-by-normal": "978716858", + "defense/hit-by-normal-crit": "3941256645", + "defense/hit-by-normal-dramatic": "2527908154", + "defense/hit-by-ranged-attack": "2207699263", + "defense/hit-with-shield": "3929030741", + "attack/melee/horn-gore": "672810168", + "attack/melee/mouth-bite": "103880736", + "action/move-back": "3766271173", + "action/move-forward": "2945160014", + "attack/melee/multi-attack": "3245081493", + "action/idle/normal": "2865608434", + "attack/melee/normal-attack": "3802408031", + "action/mix/normal-mouth-animation": "1178295570", + "action/idle/normal2": "3503981622", + "activity/prepare": "1112993905", + "action/idle/random-01": "4074297404", + "action/idle/random-02": "3457159700", + "action/idle/random-03": "1228132142", + "action/idle/random-04": "1416671293", + "action/idle/random-05": "2745614147", + "action/run": "1751413398", + "draft/run-origin": "237238075", + "attack/melee/shrimp": "4284047619", + "activity/sleep": "3292250615", + "attack/melee/tail-multi-slap": "4247697367", + "attack/melee/tail-roll": "3634591874", + "attack/melee/tail-smash": "3663734631", + "attack/melee/tail-thrash": "1213410473", + "activity/victory-pose-back-flip": "2227634241" + } + }, + "summer-as-lv2": { + "bones": [ + {"name": "@root"}, {"name": "@pivot-main", "parent": "@root"}, {"name": "@pivot-back", "parent": "@pivot-main", "x": 205, "y": 180, "color": "ff0101ff"}, + {"name": "@pivot-center", "parent": "@pivot-back", "x": -215.11, "y": -5.25, "color": "ff0101ff"}, + {"name": "@axie", "parent": "@pivot-center", "length": 213.28, "rotation": 179.04, "x": 196.39, "y": 5.16}, {"name": "@back", "parent": "@axie", "rotation": -179.04, "x": 37.63, "y": -198.19}, + {"name": "back", "parent": "@back", "length": 149.41, "rotation": 58, "x": -13.97, "y": 26.3, "transform": "noScale"}, + {"name": "@body", "parent": "@axie", "length": 226.28, "rotation": -8.35, "x": 224.58, "y": -0.53}, {"name": "@ear-left", "parent": "@axie", "rotation": -179.04, "x": 112.7, "y": -203.23}, + {"name": "ear-left", "parent": "@ear-left", "length": 113.61, "rotation": 90, "x": -27, "y": 19, "transform": "noScale"}, + {"name": "@ear-right", "parent": "@axie", "rotation": -179.04, "x": 405.28, "y": -235.33}, + {"name": "ear-right", "parent": "@ear-right", "length": 119.39, "rotation": 93, "x": -30, "y": -15, "transform": "noScale"}, + {"name": "@eyes", "parent": "@axie", "rotation": -179.04, "x": 384.24, "y": -113.67}, {"name": "@horn", "parent": "@axie", "rotation": -179.04, "x": 327.92, "y": -214.63}, + {"name": "horn", "parent": "@horn", "length": 176.72, "rotation": 90, "y": 18, "transform": "noScale"}, + {"name": "@leg-back-left", "parent": "@axie", "length": 76.4, "rotation": 100.96, "x": -15.3, "y": 102.56, "transform": "noScale"}, + {"name": "@leg-front-left", "parent": "@axie", "length": 51.19, "rotation": 93.86, "x": 134.77, "y": 149.55, "transform": "noScale"}, + {"name": "@leg-front-right", "parent": "@axie", "length": 74.83, "rotation": 83.2, "x": 382.95, "y": 121.78, "transform": "noScale"}, + {"name": "@mouth", "parent": "@axie", "rotation": -179.04, "x": 382.23, "y": 6.31, "color": "abe323ff"}, + {"name": "body-pattern", "parent": "@body", "rotation": -170.69, "x": -267.21, "y": -49.4, "transform": "noScale"}, {"name": "@shadow", "parent": "@root", "color": "e6d713ff"}, + {"name": "@tail", "parent": "@axie", "rotation": -179.04, "x": -11.76, "y": 61.72}, + {"name": "tail", "parent": "@tail", "length": 203.67, "rotation": -12, "x": 16, "y": 72.87, "transform": "noScale"}, + {"name": "leg-front-right-IK", "parent": "@pivot-main", "x": -195.99, "y": -10.21, "color": "ff3f00ff"}, + {"name": "leg-front-left-IK", "parent": "@pivot-main", "x": 42.3, "y": -18.42, "color": "ff3f00ff"}, + {"name": "leg-back-left-IK", "parent": "@pivot-main", "x": 208.57, "y": 1.35, "color": "ff3f00ff"}, {"name": "@ball", "parent": "@root", "y": 191, "color": "f3981bff"}, + {"name": "ball", "parent": "@ball", "y": -191, "color": "f4a729ff"}, {"name": "mouth-bubble", "parent": "@mouth", "x": -247.51, "y": -1.83}, + {"name": "mouth-accessory", "parent": "mouth-bubble", "x": -67.84, "y": 101.83}, {"name": "eyes-happy-accessory", "parent": "@eyes", "x": 142.51, "y": 62.21}, + {"name": "ear-right-bubble", "parent": "ear-right", "length": 40.07, "rotation": -179.99, "x": 189.28, "y": -17.76}, + {"name": "ear-left-bubble", "parent": "ear-left", "length": 48.54, "rotation": 176.27, "x": 194.33, "y": -25.1, "scaleX": 0.9478, "scaleY": 1.223}, + {"name": "ear-left-all-bubble", "parent": "ear-left", "length": 26.1, "rotation": 0.95, "x": -6.64, "y": -27.7, "color": "3002ffff"}, + {"name": "ear-right-dot-01", "parent": "ear-left-all-bubble", "rotation": -90.95, "x": -13.64, "y": 22.67, "scaleX": 0.3508, "scaleY": 0.3508, "color": "2f9bffff"}, + {"name": "ear-left-dot-01", "parent": "ear-left-all-bubble", "rotation": -90.95, "x": -28.82, "y": -24.72, "scaleX": 0.7755, "scaleY": 0.7755, "color": "2f9bffff"}, + {"name": "ear-right-bubble-02", "parent": "ear-right-bubble", "rotation": 60.75, "x": 54.12, "y": -36.76}, + {"name": "ear-right-bubble-03", "parent": "ear-right-bubble", "rotation": 86.99, "x": 57.27, "y": 1.68}, + {"name": "ear-right-bubble-04", "parent": "ear-right-bubble", "rotation": 86.99, "x": 69.87, "y": 43.59}, + {"name": "ear-left-bubble-02", "parent": "ear-left-bubble", "rotation": 93.73, "x": 56.21, "y": -21.92}, + {"name": "ear-left-bubble-03", "parent": "ear-left-bubble", "rotation": 58.6, "x": 59.07, "y": 10.64}, + {"name": "ear-left-bubble-04", "parent": "ear-left-bubble", "rotation": 33.8, "x": 64.18, "y": 41.28}, + {"name": "ear-right-bubble-05", "parent": "ear-right", "length": 40.07, "rotation": -179.99, "x": 189.28, "y": -17.76}, + {"name": "ear-right-bubble-06", "parent": "ear-right-bubble-05", "rotation": 60.75, "x": 54.12, "y": -36.76}, + {"name": "ear-right-bubble-07", "parent": "ear-right-bubble-05", "rotation": 86.99, "x": 57.27, "y": 1.67}, + {"name": "ear-right-bubble-08", "parent": "ear-right-bubble-05", "rotation": 86.99, "x": 69.87, "y": 43.59}, + {"name": "ear-left-bubble-05", "parent": "ear-left", "length": 48.54, "rotation": 176.27, "x": 194.33, "y": -25.1, "scaleX": 0.9897, "scaleY": 1.223}, + {"name": "ear-left-bubble-06", "parent": "ear-left-bubble-05", "rotation": 93.73, "x": 55.2, "y": -22.01}, + {"name": "ear-left-bubble-07", "parent": "ear-left-bubble-05", "rotation": 58.6, "x": 54.91, "y": 10.35}, + {"name": "ear-left-bubble-08", "parent": "ear-left-bubble-05", "rotation": 33.8, "x": 62.7, "y": 41.18}, + {"name": "ear-right-dot-02", "parent": "ear-left-all-bubble", "rotation": -95.73, "x": -18.26, "y": -8.1, "scaleX": 0.5668, "scaleY": 0.6813, "color": "2f9bffff"}, + {"name": "ear-left-dot-02", "parent": "ear-left-all-bubble", "rotation": -88.74, "x": 8.57, "y": 59.72, "scaleX": 0.6577, "scaleY": 0.5996, "color": "2f9bffff"}, + {"name": "ear-right-dot-03", "parent": "ear-left-all-bubble", "rotation": -87.96, "x": -25.76, "y": -45.18, "scaleX": 0.2583, "scaleY": 0.2881, "color": "2f9bffff"}, + {"name": "ear-right-dot-04", "parent": "ear-left-all-bubble", "rotation": -88.51, "x": -27.05, "y": -31.17, "scaleX": 0.4361, "scaleY": 0.6365, "color": "2f9bffff"}, + {"name": "ear-right-dot-05", "parent": "ear-left-all-bubble", "rotation": -79.32, "x": -5.28, "y": 34.53, "scaleX": 0.5911, "scaleY": 0.8949, "color": "2f9bffff"}, + {"name": "ear-left-dot-03", "parent": "ear-left-all-bubble", "rotation": -90.95, "x": -10.57, "y": 11.72, "scaleX": 0.8206, "scaleY": 0.8206, "color": "2f9bffff"}, + {"name": "ear-left-dot-04", "parent": "ear-left-all-bubble", "rotation": -90.95, "x": 11.94, "y": 65.23, "scaleX": 0.7096, "scaleY": 0.7096, "color": "2f9bffff"}, + {"name": "ear-left-dot-05", "parent": "ear-left-all-bubble", "rotation": -88.35, "x": 10.11, "y": 68.29, "scaleX": 0.4014, "scaleY": 0.366, "color": "2f9bffff"}, + {"name": "ear-left-dot-06", "parent": "ear-left-all-bubble", "rotation": -90.95, "x": 34.65, "y": 74.95, "scaleX": 0.8206, "scaleY": 0.8206, "color": "2f9bffff"}, + {"name": "ear-right-dot-06", "parent": "ear-left-all-bubble", "rotation": -90.95, "x": -11.77, "y": 50.86, "scaleX": 0.4361, "scaleY": 0.4361, "color": "2f9bffff"}, + {"name": "ear-right-dot-07", "parent": "ear-left-all-bubble", "rotation": -96.07, "x": -32.28, "y": -4.86, "scaleX": 0.5668, "scaleY": 0.6813, "color": "2f9bffff"}, + {"name": "ear-right-dot-08", "parent": "ear-left-all-bubble", "rotation": -90.23, "x": -18.31, "y": -61.25, "scaleX": 0.7405, "scaleY": 0.826, "color": "2f9bffff"}, + {"name": "ear-right-dot-09", "parent": "ear-left-all-bubble", "rotation": -93.53, "x": -9.54, "y": 52.15, "scaleX": 0.2863, "scaleY": 0.3229, "color": "2f9bffff"}, + {"name": "ear-right-dot-10", "parent": "ear-left-all-bubble", "rotation": -81.97, "x": -31.43, "y": 21.83, "scaleX": 0.5911, "scaleY": 0.8949, "color": "2f9bffff"}, + {"name": "ear-right-all-bubble", "parent": "ear-right", "length": 26.1, "rotation": 3.44, "x": -10.08, "y": -8.05, "color": "3002ffff"}, + {"name": "ear-right-dot-11", "parent": "ear-right-all-bubble", "rotation": -96.44, "x": 10.27, "y": -24.86, "scaleX": 0.3508, "scaleY": 0.3508, "color": "2f9bffff"}, + {"name": "ear-left-dot-07", "parent": "ear-right-all-bubble", "rotation": -96.44, "x": 27.18, "y": -39.33, "scaleX": 0.7755, "scaleY": 0.7755, "color": "2f9bffff"}, + {"name": "ear-right-dot-12", "parent": "ear-right-all-bubble", "rotation": -101.56, "x": -18.26, "y": -8.1, "scaleX": 0.5668, "scaleY": 0.6813, "color": "2f9bffff"}, + {"name": "ear-left-dot-08", "parent": "ear-right-all-bubble", "rotation": -93.99, "x": -7.49, "y": -14.12, "scaleX": 0.6577, "scaleY": 0.5996, "color": "2f9bffff"}, + {"name": "ear-right-dot-13", "parent": "ear-right-all-bubble", "rotation": -93.67, "x": 43.59, "y": -57.74, "scaleX": 0.2583, "scaleY": 0.2881, "color": "2f9bffff"}, + {"name": "ear-right-dot-14", "parent": "ear-right-all-bubble", "rotation": -96.49, "x": 8.09, "y": -20.73, "scaleX": 0.4361, "scaleY": 0.6365, "color": "2f9bffff"}, + {"name": "ear-right-dot-15", "parent": "ear-right-all-bubble", "rotation": -84.65, "x": -5.28, "y": 34.53, "scaleX": 0.5911, "scaleY": 0.8949, "color": "2f9bffff"}, + {"name": "ear-left-dot-09", "parent": "ear-right-all-bubble", "rotation": -96.44, "x": -10.57, "y": 11.72, "scaleX": 0.8206, "scaleY": 0.8206, "color": "2f9bffff"}, + {"name": "ear-left-dot-10", "parent": "ear-right-all-bubble", "rotation": -96.44, "x": -13.81, "y": 2.57, "scaleX": 0.7096, "scaleY": 0.7096, "color": "2f9bffff"}, + {"name": "ear-left-dot-11", "parent": "ear-right-all-bubble", "rotation": -93.79, "x": -9.28, "y": 21.87, "scaleX": 0.4014, "scaleY": 0.366, "color": "2f9bffff"}, + {"name": "ear-left-dot-12", "parent": "ear-right-all-bubble", "rotation": -96.44, "x": -2.52, "y": 33.38, "scaleX": 0.8206, "scaleY": 0.8206, "color": "2f9bffff"}, + {"name": "ear-right-dot-16", "parent": "ear-right-all-bubble", "rotation": -96.44, "x": -4.07, "y": -34.4, "scaleX": 0.4361, "scaleY": 0.4361, "color": "2f9bffff"}, + {"name": "ear-right-dot-17", "parent": "ear-right-all-bubble", "rotation": -101.7, "x": 4.16, "y": -7.75, "scaleX": 0.5668, "scaleY": 0.6813, "color": "2f9bffff"}, + {"name": "ear-right-dot-18", "parent": "ear-right-all-bubble", "rotation": -96.34, "x": 27.4, "y": -55.17, "scaleX": 0.7405, "scaleY": 0.826, "color": "2f9bffff"}, + {"name": "ear-right-dot-19", "parent": "ear-right-all-bubble", "rotation": -99.41, "x": -9.54, "y": 52.15, "scaleX": 0.2863, "scaleY": 0.3229, "color": "2f9bffff"}, + {"name": "ear-right-dot-20", "parent": "ear-right-all-bubble", "rotation": -86.28, "x": 12.43, "y": -37.05, "scaleX": 0.5911, "scaleY": 0.8949, "color": "2f9bffff"}, + {"name": "mouth-bubble-core", "parent": "mouth-accessory"}, {"name": "eyes-light-left", "parent": "@eyes", "length": 15.08, "rotation": -135.48, "x": 69.15, "y": -15.18}, + {"name": "eyes-light-right", "parent": "@eyes", "length": 15.08, "rotation": -135.48, "x": -97.9, "y": -16.49}, {"name": "eyes-light-dot", "parent": "@eyes", "x": -66.73, "y": 27.82}, + {"name": "eyes-light-dot-02", "parent": "@eyes", "x": 103.19, "y": 27.82} + ], + "slots": [ + {"name": "shadow", "bone": "@shadow", "attachment": "shadow"}, {"name": "ball", "bone": "ball"}, + {"name": "leg-front-right", "bone": "@leg-front-right", "attachment": "summer-leg-front-right"}, {"name": "tail", "bone": "tail", "attachment": "tail"}, + {"name": "back", "bone": "back", "attachment": "back"}, {"name": "leg-back-left", "bone": "@leg-back-left", "attachment": "summer-leg-back-left"}, + {"name": "body", "bone": "@body", "attachment": "body"}, {"name": "body-pattern", "bone": "body-pattern"}, {"name": "ear-right-under", "bone": "ear-right", "attachment": "ear-right-under"}, + {"name": "ear-left-dot-07", "bone": "ear-left-dot-07", "color": "ffffff00", "attachment": "ear-left-dot"}, + {"name": "ear-left-dot-10", "bone": "ear-left-dot-10", "color": "ffffff00", "attachment": "ear-left-dot"}, + {"name": "ear-left-dot-09", "bone": "ear-left-dot-09", "color": "ffffff00", "attachment": "ear-left-dot"}, + {"name": "ear-left-dot-12", "bone": "ear-left-dot-12", "color": "ffffff00", "attachment": "ear-left-dot"}, + {"name": "ear-left-dot-08", "bone": "ear-left-dot-08", "color": "ffffff00", "attachment": "ear-left-dot"}, + {"name": "ear-left-dot-11", "bone": "ear-left-dot-11", "color": "ffffff00", "attachment": "ear-left-dot"}, + {"name": "ear-right-dot-11", "bone": "ear-right-dot-11", "color": "ffffff00", "attachment": "ear-right-dot"}, + {"name": "ear-right-dot-16", "bone": "ear-right-dot-16", "color": "ffffff00", "attachment": "ear-right-dot"}, + {"name": "ear-right-dot-12", "bone": "ear-right-dot-12", "color": "ffffff00", "attachment": "ear-right-dot"}, + {"name": "ear-right-dot-17", "bone": "ear-right-dot-17", "color": "ffffff00", "attachment": "ear-right-dot"}, + {"name": "ear-right-dot-13", "bone": "ear-right-dot-13", "color": "ffffff00", "attachment": "ear-right-dot"}, + {"name": "ear-right-dot-18", "bone": "ear-right-dot-18", "color": "ffffff00", "attachment": "ear-right-dot"}, + {"name": "ear-right-dot-14", "bone": "ear-right-dot-14", "color": "ffffff00", "attachment": "ear-right-dot"}, + {"name": "ear-right-dot-19", "bone": "ear-right-dot-19", "color": "ffffff00", "attachment": "ear-right-dot"}, + {"name": "ear-right-dot-15", "bone": "ear-right-dot-15", "color": "ffffff00", "attachment": "ear-right-dot"}, + {"name": "ear-right-dot-20", "bone": "ear-right-dot-20", "color": "ffffff00", "attachment": "ear-right-dot"}, + {"name": "ear-right-bubble", "bone": "ear-right-bubble", "color": "0bc5b6ff", "attachment": "ear-right-bubble"}, + {"name": "ear-right-bubble-02", "bone": "ear-right-bubble-05", "attachment": "ear-right-bubble"}, {"name": "ear-right-upper", "bone": "ear-right", "attachment": "ear-right-upper"}, + {"name": "leg-front-left", "bone": "@leg-front-left", "attachment": "summer-leg-front-left"}, {"name": "horn", "bone": "horn", "attachment": "horn"}, + {"name": "ear-left-under", "bone": "ear-left", "attachment": "ear-left-under"}, {"name": "ear-left-dot-01", "bone": "ear-left-dot-01", "color": "ffffff00", "attachment": "ear-left-dot"}, + {"name": "ear-left-dot-04", "bone": "ear-left-dot-04", "color": "ffffff00", "attachment": "ear-left-dot"}, + {"name": "ear-left-dot-03", "bone": "ear-left-dot-03", "color": "ffffff00", "attachment": "ear-left-dot"}, + {"name": "ear-left-dot-06", "bone": "ear-left-dot-06", "color": "ffffff00", "attachment": "ear-left-dot"}, + {"name": "ear-left-dot-02", "bone": "ear-left-dot-02", "color": "ffffff00", "attachment": "ear-left-dot"}, + {"name": "ear-left-dot-05", "bone": "ear-left-dot-05", "color": "ffffff00", "attachment": "ear-left-dot"}, + {"name": "ear-right-dot-01", "bone": "ear-right-dot-01", "color": "ffffff00", "attachment": "ear-right-dot"}, + {"name": "ear-right-dot-06", "bone": "ear-right-dot-06", "color": "ffffff00", "attachment": "ear-right-dot"}, + {"name": "ear-right-dot-02", "bone": "ear-right-dot-02", "color": "ffffff00", "attachment": "ear-right-dot"}, + {"name": "ear-right-dot-07", "bone": "ear-right-dot-07", "color": "ffffff00", "attachment": "ear-right-dot"}, + {"name": "ear-right-dot-03", "bone": "ear-right-dot-03", "color": "ffffff00", "attachment": "ear-right-dot"}, + {"name": "ear-right-dot-08", "bone": "ear-right-dot-08", "color": "ffffff00", "attachment": "ear-right-dot"}, + {"name": "ear-right-dot-04", "bone": "ear-right-dot-04", "color": "ffffff00", "attachment": "ear-right-dot"}, + {"name": "ear-right-dot-09", "bone": "ear-right-dot-09", "color": "ffffff00", "attachment": "ear-right-dot"}, + {"name": "ear-right-dot-05", "bone": "ear-right-dot-05", "color": "ffffff00", "attachment": "ear-right-dot"}, + {"name": "ear-right-dot-10", "bone": "ear-right-dot-10", "color": "ffffff00", "attachment": "ear-right-dot"}, + {"name": "ear-left-bubble", "bone": "ear-left-bubble", "color": "0bc5b6ff", "attachment": "ear-left-bubble"}, + {"name": "ear-left-bubble-02", "bone": "ear-left-bubble-05", "attachment": "ear-left-bubble"}, {"name": "ear-left-upper", "bone": "ear-left", "attachment": "ear-left-upper"}, + {"name": "eyes-happy-accessory", "bone": "eyes-happy-accessory", "color": "ffffff00", "attachment": "eyes-happy-accessory", "blend": "additive"}, + {"name": "eyes", "bone": "@eyes", "attachment": "eyes"}, {"name": "eyes-light-dot", "bone": "eyes-light-dot", "attachment": "eye-light-dot"}, + {"name": "eyes-light-dot-02", "bone": "eyes-light-dot-02", "attachment": "eye-light-dot"}, + {"name": "eyes-light-left", "bone": "eyes-light-left", "color": "fff96500", "attachment": "light", "blend": "additive"}, + {"name": "eyes-light-right", "bone": "eyes-light-right", "color": "fff96500", "attachment": "light", "blend": "additive"}, {"name": "eyes-upper", "bone": "@eyes", "attachment": "eyes-upper"}, + {"name": "mouth", "bone": "@mouth", "attachment": "mouth"}, {"name": "mouth-accessory", "bone": "mouth-accessory", "color": "ffffff00", "attachment": "mouth-accessory"} + ], + "ik": [ + {"name": "leg-back-left-IK", "order": 3, "bones": ["@leg-back-left"], "target": "leg-back-left-IK"}, + {"name": "leg-front-left-IK", "order": 2, "bones": ["@leg-front-left"], "target": "leg-front-left-IK"}, + {"name": "leg-front-right-IK", "bones": ["@leg-front-right"], "target": "leg-front-right-IK"} + ], + "transform": [{"name": "@mouth", "order": 1, "bones": ["mouth-bubble"], "target": "@mouth", "x": -49.1, "y": 37.9, "rotateMix": 0, "translateMix": 0, "scaleMix": 0, "shearMix": 0}], + "skins": [ + { + "name": "default", + "attachments": { + "back": {"back": {"x": 141.02470588235292, "y": -5.6, "rotation": -58, "width": 296.47058823529414, "height": 320.0, "path": "summer-as-lv2.back"}}, + "ear-left-bubble": { + "ear-left-bubble": { + "type": "mesh", + "uvs": [ + 0.87714, 0.57697, 0.91393, 0.67811, 0.94364, 0.75977, 0.96133, 0.8176, 0.97838, 0.87333, 1, 0.94398, 0.93104, 0.94427, 0.90524, 0.94438, 0.88494, 0.94447, 0.85255, 0.94461, 0.82176, + 0.94474, 0.79396, 0.94486, 0.76382, 0.94499, 0.73767, 0.9451, 0.70713, 0.94523, 0.67579, 0.94536, 0.64108, 0.94551, 0.61244, 0.94564, 0.5758, 0.94579, 0.5367, 0.94596, 0.50394, + 0.9461, 0.47091, 0.94624, 0.435, 0.94639, 0.39675, 0.94656, 0.36198, 0.94671, 0.32916, 0.94685, 0.29359, 0.947, 0.25022, 0.94718, 0.20956, 0.94736, 0.17261, 0.94751, 0.12749, + 0.94771, 0.1012, 0.94782, 0.07834, 0.94792, 0.0457, 0.94806, 0.02123, 0.94816, 0, 0.94825, 0, 0.86703, 0, 0.81359, 0, 0.73715, 0.02817, 0.68242, 0.07791, 0.5858, 0.37947, 0, 0.46651, + 0, 0.5261, 0, 0.59994, 0, 0.66726, 0, 0.02864, 0.86721, 0.04805, 0.81379, 0.07275, 0.7389, 0.0999, 0.68207, 0.14259, 0.58508, 0.49108, 0.58123, 0.82646, 0.57753, 0.86109, 0.67837, + 0.88458, 0.75835, 0.90003, 0.81734, 0.91424, 0.87292, 0.48557, 0.6802, 0.48069, 0.74867, 0.47772, 0.81558, 0.4758, 0.87009, 0.29126, 0.58344, 0.25576, 0.68132, 0.23492, 0.74278, + 0.2135, 0.81448, 0.19874, 0.86831, 0.19271, 0.49455, 0.4968, 0.48641, 0.79002, 0.48462, 0.25666, 0.37903, 0.50462, 0.35653, 0.74321, 0.36527, 0.68757, 0.57906, 0.70466, 0.67913, + 0.71716, 0.75434, 0.72541, 0.81661, 0.73109, 0.87174, 0.67152, 0.48534, 0.32349, 0.49105, 0.38378, 0.58242, 0.36974, 0.68076, 0.36036, 0.74579, 0.34895, 0.81504, 0.34148, 0.86923, + 0.20652, 0.58437, 0.16979, 0.68173, 0.1462, 0.74066, 0.12077, 0.81409, 0.10379, 0.8677, 0.59158, 0.58012, 0.59921, 0.67965, 0.60299, 0.7516, 0.60776, 0.81612, 0.60866, 0.87095, + 0.76107, 0.57825, 0.78751, 0.67873, 0.81003, 0.75656, 0.82525, 0.81703, 0.83754, 0.87243, 0.10852, 0.73975, 0.08479, 0.81394, 0.06934, 0.86747, 0.15113, 0.868, 0.1657, 0.81428, + 0.18746, 0.74164, 0.29675, 0.74426, 0.28022, 0.81476, 0.26841, 0.86876, 0.41495, 0.7471, 0.40761, 0.81529, 0.4031, 0.86963, 0.53765, 0.87049, 0.53762, 0.81583, 0.53944, 0.75008, + 0.6595, 0.75296, 0.66217, 0.81635, 0.66857, 0.87134, 0.78397, 0.87208, 0.7758, 0.81682, 0.76492, 0.75548, 0.74852, 0.67892, 0.82675, 0.67854, 0.84222, 0.75734, 0.8595, 0.81717, + 0.87132, 0.87264, 0.01186, 0.9147, 0.056, 0.91293, 0.08943, 0.91297, 0.13846, 0.91074, 0.18465, 0.91102, 0.25824, 0.91262, 0.33507, 0.90958, 0.39978, 0.90977, 0.47313, 0.91161, + 0.53714, 0.91117, 0.61061, 0.90948, 0.67252, 0.91178, 0.73471, 0.91209, 0.78925, 0.91054, 0.84557, 0.91105, 0.87872, 0.91169, 0.92292, 0.90979, 0.21772, 0.91173, 0.11081, 0.912, + 0.02923, 0.91401, 0.29821, 0.91104, 0.36548, 0.90967, 0.43685, 0.9107, 0.50336, 0.9114, 0.57635, 0.91027, 0.64066, 0.9106, 0.70543, 0.91195, 0.76031, 0.91136, 0.81833, 0.9108, + 0.89934, 0.9108 + ], + "triangles": [ + 85, 86, 49, 86, 99, 49, 101, 47, 100, 34, 125, 144, 35, 125, 34, 125, 46, 144, 46, 47, 101, 47, 48, 100, 122, 121, 53, 56, 55, 3, 47, 46, 37, 49, 50, 85, 85, 50, 84, 48, 39, 49, 46, + 36, 37, 38, 39, 48, 49, 40, 50, 39, 40, 49, 5, 6, 4, 55, 54, 2, 55, 2, 3, 95, 94, 52, 54, 1, 2, 121, 52, 53, 53, 0, 1, 53, 52, 0, 113, 57, 90, 108, 80, 57, 62, 61, 80, 80, 79, 57, + 80, 61, 79, 57, 89, 90, 57, 51, 89, 57, 79, 51, 90, 72, 73, 90, 89, 72, 40, 69, 66, 84, 66, 61, 61, 78, 79, 61, 66, 78, 51, 79, 67, 51, 67, 89, 67, 79, 78, 89, 77, 72, 89, 67, 77, + 72, 77, 94, 94, 68, 52, 94, 77, 68, 66, 69, 78, 41, 69, 40, 67, 78, 70, 67, 70, 77, 70, 78, 69, 77, 71, 68, 77, 70, 71, 71, 45, 0, 69, 42, 70, 69, 41, 42, 71, 70, 44, 70, 43, 44, 44, + 45, 71, 71, 0, 68, 70, 42, 43, 52, 68, 0, 54, 53, 1, 56, 3, 4, 50, 40, 66, 50, 66, 84, 47, 37, 38, 48, 47, 38, 125, 36, 46, 35, 36, 125, 48, 49, 99, 121, 95, 52, 122, 53, 54, 144, + 46, 126, 100, 48, 99, 62, 84, 61, 123, 54, 55, 94, 73, 72, 85, 84, 62, 113, 90, 91, 141, 56, 4, 6, 141, 4, 124, 55, 56, 17, 150, 16, 17, 135, 150, 16, 136, 15, 16, 150, 136, 15, 151, + 14, 15, 136, 151, 14, 137, 13, 14, 151, 137, 13, 152, 12, 13, 137, 152, 12, 138, 11, 12, 152, 138, 11, 153, 10, 11, 138, 153, 10, 139, 9, 10, 153, 139, 9, 140, 8, 9, 139, 140, 8, + 154, 7, 8, 140, 154, 7, 141, 6, 7, 154, 141, 152, 137, 76, 137, 151, 76, 76, 151, 116, 150, 116, 136, 151, 136, 116, 154, 140, 124, 152, 117, 138, 152, 76, 117, 153, 98, 139, 140, + 139, 124, 139, 98, 124, 154, 56, 141, 154, 124, 56, 98, 153, 117, 116, 150, 93, 153, 138, 117, 150, 135, 93, 98, 123, 124, 124, 123, 55, 117, 97, 98, 98, 97, 123, 76, 118, 117, 117, + 118, 97, 116, 75, 76, 76, 75, 118, 93, 115, 116, 116, 115, 75, 93, 92, 115, 97, 122, 123, 123, 122, 54, 118, 96, 97, 97, 96, 122, 75, 119, 118, 118, 119, 96, 115, 74, 75, 75, 74, + 119, 92, 114, 115, 115, 114, 74, 92, 91, 114, 96, 121, 122, 119, 95, 96, 96, 95, 121, 74, 120, 119, 119, 120, 95, 114, 73, 74, 74, 73, 120, 73, 114, 90, 114, 91, 90, 120, 73, 94, + 120, 94, 95, 58, 57, 113, 25, 131, 24, 24, 146, 23, 24, 131, 146, 23, 132, 22, 23, 146, 132, 22, 147, 21, 22, 132, 147, 20, 133, 148, 20, 21, 133, 21, 147, 133, 20, 148, 19, 19, 134, + 18, 19, 148, 134, 18, 135, 17, 18, 149, 135, 18, 134, 149, 148, 133, 60, 133, 147, 60, 134, 148, 111, 134, 111, 149, 111, 148, 60, 132, 110, 147, 147, 110, 60, 149, 93, 135, 149, + 111, 93, 132, 146, 110, 131, 83, 146, 146, 83, 110, 111, 92, 93, 60, 59, 111, 59, 112, 111, 111, 112, 92, 110, 109, 60, 60, 109, 59, 83, 82, 110, 110, 82, 109, 92, 112, 91, 112, 113, + 91, 59, 58, 112, 112, 58, 113, 109, 108, 59, 59, 108, 58, 82, 81, 109, 109, 81, 108, 58, 108, 57, 81, 80, 108, 34, 144, 33, 126, 46, 101, 33, 126, 32, 33, 144, 126, 32, 127, 31, 32, + 126, 127, 31, 143, 30, 31, 127, 143, 30, 128, 29, 30, 143, 128, 29, 129, 28, 29, 128, 129, 28, 142, 27, 28, 129, 142, 27, 130, 26, 27, 142, 130, 26, 145, 25, 26, 130, 145, 25, 145, + 131, 126, 101, 127, 127, 88, 143, 127, 101, 88, 130, 107, 145, 130, 142, 107, 143, 88, 128, 129, 65, 142, 142, 65, 107, 131, 145, 83, 128, 102, 129, 129, 102, 65, 128, 88, 102, 83, + 145, 107, 107, 106, 83, 83, 106, 82, 65, 64, 107, 107, 64, 106, 102, 103, 65, 65, 103, 64, 88, 87, 102, 102, 87, 103, 101, 100, 88, 88, 100, 87, 106, 105, 82, 82, 105, 81, 64, 63, + 106, 106, 63, 105, 103, 104, 64, 64, 104, 63, 87, 86, 103, 103, 86, 104, 100, 99, 87, 87, 99, 86, 81, 105, 80, 63, 62, 105, 105, 62, 80, 62, 63, 85, 86, 85, 104, 63, 104, 85 + ], + "vertices": [ + 4, 39, 54.66, 14.56, 0.00012, 40, 32.32, 14.56, 0.00054, 41, 9.4, 14.56, 0.12631, 32, 49.18, 30.61, 0.87302, 3, 40, 33.6, 1.37, 0.00019, 41, 10.68, 1.36, 0.19743, 32, 62.26, 32.75, + 0.80237, 3, 40, 36.22, -5.17, 6e-05, 41, 13.3, -5.17, 0.26715, 32, 68.61, 35.79, 0.73278, 3, 40, 43.5, 1.06, 1e-05, 41, 20.58, 1.06, 0.33542, 32, 61.92, 42.65, 0.66457, 3, 40, 45, + -3.4, 1e-05, 41, 22.08, -3.4, 0.40033, 32, 66.27, 44.44, 0.59966, 3, 40, 46.9, -9.05, 0, 41, 23.98, -9.05, 0.45012, 32, 71.79, 46.7, 0.54988, 3, 40, 40.83, -9.07, 0, 41, 17.91, + -9.07, 0.5829, 32, 72.21, 40.65, 0.4171, 3, 40, 38.56, -9.08, 4e-05, 41, 15.64, -9.08, 0.72131, 32, 72.37, 38.38, 0.27865, 3, 40, 36.78, -9.09, 0.00031, 41, 13.86, -9.09, 0.8264, 32, + 72.49, 36.6, 0.17329, 3, 40, 33.93, -9.1, 0.00157, 41, 11, -9.1, 0.90359, 32, 72.69, 33.76, 0.09484, 3, 40, 31.22, -9.11, 0.00537, 41, 8.3, -9.11, 0.94975, 32, 72.87, 31.05, 0.04488, + 3, 40, 28.77, -9.12, 0.01601, 41, 5.85, -9.12, 0.96404, 32, 73.04, 28.61, 0.01996, 3, 40, 26.12, -9.13, 0.03803, 41, 3.2, -9.13, 0.95562, 32, 73.22, 25.97, 0.00635, 3, 40, 23.82, + -9.14, 0.08031, 41, 0.9, -9.14, 0.91597, 32, 73.38, 23.67, 0.00372, 4, 39, 43.47, -9.15, 0, 40, 21.13, -9.15, 0.14592, 41, -1.79, -9.15, 0.85165, 32, 73.57, 20.99, 0.00243, 4, 39, + 40.71, -9.16, 2e-05, 40, 18.37, -9.16, 0.23867, 41, -4.55, -9.16, 0.75671, 32, 73.76, 18.24, 0.0046, 4, 39, 37.66, -9.17, 0.00014, 40, 15.32, -9.17, 0.35275, 41, -7.6, -9.17, + 0.64256, 32, 73.97, 15.19, 0.00455, 4, 39, 35.13, -9.18, 0.00092, 40, 12.8, -9.18, 0.48034, 41, -10.13, -9.18, 0.51198, 32, 74.14, 12.68, 0.00676, 4, 39, 31.91, -9.19, 0.00375, 40, + 9.57, -9.19, 0.61095, 41, -13.35, -9.19, 0.38019, 32, 74.36, 9.46, 0.00512, 4, 39, 28.47, -9.21, 0.01298, 40, 6.13, -9.21, 0.72267, 41, -16.79, -9.21, 0.25841, 32, 74.6, 6.03, + 0.00594, 4, 39, 25.59, -9.22, 0.03422, 40, 3.25, -9.22, 0.80451, 41, -19.67, -9.22, 0.15782, 32, 74.8, 3.15, 0.00345, 4, 39, 22.68, -9.23, 0.07754, 40, 0.34, -9.23, 0.83155, 41, + -22.58, -9.23, 0.08642, 32, 75, 0.25, 0.00449, 4, 39, 19.52, -9.24, 0.14705, 40, -2.82, -9.24, 0.80991, 41, -25.74, -9.24, 0.04032, 32, 75.22, -2.9, 0.00272, 4, 39, 16.15, -9.25, + 0.24563, 40, -6.18, -9.25, 0.73344, 41, -29.11, -9.25, 0.01645, 32, 75.45, -6.26, 0.00448, 4, 39, 13.09, -9.27, 0.36774, 40, -9.24, -9.27, 0.62371, 41, -32.17, -9.27, 0.00512, 32, + 75.66, -9.31, 0.00344, 4, 39, 10.21, -9.28, 0.50372, 40, -12.13, -9.28, 0.49001, 41, -35.05, -9.28, 0.00135, 32, 75.86, -12.19, 0.00491, 4, 39, 7.08, -9.29, 0.64487, 40, -15.26, + -9.29, 0.35177, 41, -38.18, -9.29, 0.00021, 32, 76.08, -15.32, 0.00314, 4, 39, 3.26, -9.3, 0.77, 40, -19.08, -9.3, 0.22651, 41, -42, -9.3, 3e-05, 32, 76.34, -19.12, 0.00346, 4, 39, + -0.32, -9.32, 0.87272, 40, -22.66, -9.32, 0.1254, 41, -45.58, -9.32, 0, 32, 76.59, -22.69, 0.00188, 3, 39, -3.57, -9.33, 0.9351, 40, -25.91, -9.33, 0.0605, 32, 76.81, -25.94, 0.0044, + 3, 39, -7.54, -9.35, 0.96153, 40, -29.88, -9.35, 0.02278, 32, 77.09, -29.9, 0.01569, 3, 39, -9.85, -9.35, 0.93655, 40, -32.19, -9.35, 0.00657, 32, 77.24, -32.21, 0.05688, 3, 39, + -11.87, -9.36, 0.83576, 40, -34.2, -9.36, 0.00151, 32, 77.38, -34.21, 0.16273, 3, 39, -14.74, -9.37, 0.65143, 40, -37.08, -9.37, 0.00023, 32, 77.58, -37.08, 0.34834, 3, 39, -16.89, + -9.38, 0.4382, 40, -39.23, -9.38, 2e-05, 32, 77.73, -39.23, 0.56178, 3, 39, -18.76, -9.39, 0.27507, 40, -41.1, -9.39, 0, 32, 77.86, -41.09, 0.72493, 3, 39, -18.76, -2.89, 0.21414, + 40, -41.1, -2.89, 2e-05, 32, 71.37, -41.51, 0.78584, 3, 39, -18.76, 1.38, 0.19077, 40, -41.1, 1.38, 0.00024, 32, 67.11, -41.79, 0.80899, 3, 39, -18.76, 7.5, 0.1765, 40, -41.1, 7.5, + 0.00116, 32, 61.01, -42.19, 0.82235, 4, 39, -16.28, 11.88, 0.15382, 40, -38.62, 11.88, 0.00307, 41, -61.54, 11.88, 1e-05, 32, 56.48, -40, 0.84309, 4, 39, -11.9, 19.61, 0.11079, 40, + -34.24, 19.61, 0.0029, 41, -57.16, 19.61, 0.00014, 32, 48.48, -36.13, 0.88617, 4, 39, 14.63, 66.47, 0.04584, 40, -7.7, 66.47, 0.00083, 41, -30.63, 66.47, 0.00037, 32, -0.01, -12.7, + 0.95296, 4, 39, 22.29, 66.47, 0.02247, 40, -0.04, 66.47, 0.00083, 41, -22.97, 66.47, 0.00288, 32, -0.51, -5.06, 0.97382, 4, 39, 27.54, 66.47, 0.01007, 40, 5.2, 66.47, 0.00155, 41, + -17.72, 66.47, 0.0104, 32, -0.85, 0.17, 0.97798, 4, 39, 34.04, 66.47, 0.00272, 40, 11.7, 66.47, 0.00045, 41, -11.22, 66.47, 0.02285, 32, -1.28, 6.66, 0.97398, 4, 39, 39.96, 66.47, + 0.00033, 40, 17.62, 66.47, 0.00011, 41, -5.3, 66.47, 0.0498, 32, -1.66, 12.57, 0.94976, 3, 39, -16.24, -2.91, 0.33437, 40, -38.58, -2.91, 0.0002, 32, 71.23, -39, 0.66543, 3, 39, + -14.53, 1.37, 0.32645, 40, -36.87, 1.37, 0.00078, 32, 66.85, -37.57, 0.67277, 4, 39, -12.36, 7.36, 0.307, 40, -34.7, 7.36, 0.00285, 41, -57.62, 7.36, 1e-05, 32, 60.73, -35.79, + 0.69014, 4, 39, -9.97, 11.91, 0.26477, 40, -32.31, 11.91, 0.00971, 41, -55.23, 11.91, 0.00027, 32, 56.04, -33.7, 0.72525, 4, 39, -6.21, 19.66, 0.19881, 40, -28.55, 19.66, 0.00959, + 41, -51.47, 19.66, 0.00132, 32, 48.05, -30.46, 0.79028, 4, 39, 24.46, 19.97, 0.10712, 40, 2.12, 19.97, 0.11704, 41, -20.8, 19.97, 0.11672, 32, 45.75, 0.12, 0.65912, 4, 39, 50.93, + 17.71, 0.00116, 40, 28.6, 17.71, 0.00313, 41, 5.67, 17.71, 0.2148, 32, 46.28, 26.69, 0.7809, 4, 39, 51.29, 1.35, 0.0001, 40, 28.95, 1.35, 0.00083, 41, 6.03, 1.34, 0.29942, 32, 62.59, + 28.12, 0.69965, 3, 40, 31.02, -5.05, 0.00034, 41, 8.1, -5.06, 0.378, 32, 68.84, 30.59, 0.62166, 3, 40, 38.1, 1.08, 0.00022, 41, 15.18, 1.08, 0.45653, 32, 62.25, 37.26, 0.54325, 3, + 40, 39.36, -3.36, 0.00015, 41, 16.43, -3.36, 0.53433, 32, 66.61, 38.8, 0.46552, 4, 39, 23.97, 12.06, 0.12565, 40, 1.63, 12.06, 0.24275, 41, -21.29, 12.06, 0.14114, 32, 53.68, 0.15, + 0.49046, 4, 39, 23.54, 6.58, 0.11007, 40, 1.2, 6.58, 0.47217, 41, -21.72, 6.58, 0.12893, 32, 59.17, 0.08, 0.28883, 4, 39, 23.28, 1.22, 0.10884, 40, 0.94, 1.22, 0.60558, 41, -21.98, + 1.22, 0.12698, 32, 64.53, 0.17, 0.1586, 4, 39, 23.11, -3.14, 0.10666, 40, 0.77, -3.14, 0.70334, 41, -22.15, -3.14, 0.12133, 32, 68.89, 0.28, 0.06866, 4, 39, 6.87, 19.8, 0.29773, 40, + -15.47, 19.8, 0.06022, 41, -38.39, 19.8, 0.01488, 32, 47.07, -17.41, 0.62717, 4, 39, 3.75, 11.97, 0.44072, 40, -18.59, 11.97, 0.09602, 41, -41.51, 11.97, 0.01064, 32, 55.08, -20.02, + 0.45261, 4, 39, 1.91, 7.05, 0.66419, 40, -20.42, 7.05, 0.11803, 41, -43.35, 7.05, 0.002, 32, 60.11, -21.53, 0.21579, 4, 39, 0.03, 1.31, 0.77187, 40, -22.31, 1.31, 0.12352, 41, + -45.23, 1.31, 0.00043, 32, 65.96, -23.04, 0.10418, 4, 39, -1.27, -2.99, 0.84303, 40, -23.61, -2.99, 0.11246, 41, -46.53, -2.99, 0.00018, 32, 70.34, -24.05, 0.04432, 4, 39, -1.8, + 26.91, 0.12744, 40, -24.14, 26.91, 0.00959, 41, -47.06, 26.91, 0.0076, 32, 40.54, -26.53, 0.85537, 4, 39, 24.96, 27.56, 0.0719, 40, 2.62, 27.56, 0.03639, 41, -20.3, 27.56, 0.07572, + 32, 38.14, 0.13, 0.81598, 4, 39, 50.76, 27.7, 0.00702, 40, 28.42, 27.7, 0.00523, 41, 5.5, 27.7, 0.131, 32, 36.32, 25.87, 0.85675, 4, 39, 3.83, 36.15, 0.04791, 40, -18.51, 36.15, + 0.00352, 41, -41.43, 36.15, 0.00803, 32, 30.95, -21.51, 0.94054, 4, 39, 25.65, 37.95, 0.02662, 40, 3.31, 37.95, 0.00775, 41, -19.61, 37.95, 0.02767, 32, 27.73, 0.14, 0.93795, 4, 39, + 46.64, 37.25, 0.00753, 40, 24.3, 37.25, 0.00227, 41, 1.38, 37.25, 0.04846, 32, 27.06, 21.14, 0.94174, 4, 39, 41.75, 20.15, 0.01306, 40, 19.41, 20.15, 0.04509, 41, -3.51, 20.15, + 0.32134, 32, 44.45, 17.37, 0.62052, 4, 39, 34.16, 9.18, 0.00895, 40, 11.83, 9.18, 0.07841, 41, -11.1, 9.17, 0.49568, 32, 55.89, 10.51, 0.41696, 4, 39, 35.26, 3.16, 0.0015, 40, 12.93, + 3.16, 0.09572, 41, -10, 3.16, 0.67014, 32, 61.82, 12, 0.23264, 4, 39, 45.08, 1.14, 0.00025, 40, 22.74, 1.14, 0.108, 41, -0.18, 1.14, 0.76841, 32, 63.2, 21.93, 0.12334, 4, 39, 45.58, + -3.27, 0.0001, 40, 23.24, -3.27, 0.10937, 41, 0.32, -3.27, 0.83473, 32, 67.56, 22.71, 0.0558, 4, 39, 40.33, 27.64, 0.02381, 40, 18, 27.64, 0.02132, 41, -4.93, 27.64, 0.16866, 32, + 37.06, 15.47, 0.78621, 4, 39, 9.71, 27.19, 0.16236, 40, -12.63, 27.19, 0.02827, 41, -35.55, 27.19, 0.02548, 32, 39.51, -15.06, 0.78388, 4, 39, 15.01, 19.88, 0.23124, 40, -7.33, + 19.88, 0.11759, 41, -30.25, 19.88, 0.04679, 32, 46.46, -9.29, 0.60438, 4, 39, 13.78, 12.01, 0.29354, 40, -8.56, 12.01, 0.19873, 41, -31.48, 12.01, 0.04427, 32, 54.39, -10.01, + 0.46346, 4, 39, 12.95, 6.81, 0.37869, 40, -9.39, 6.81, 0.34588, 41, -32.31, 6.81, 0.01968, 32, 59.63, -10.5, 0.25575, 4, 39, 11.95, 1.27, 0.42861, 40, -10.39, 1.27, 0.42317, 41, + -33.31, 1.27, 0.01297, 32, 65.23, -11.14, 0.13524, 4, 39, 11.29, -3.07, 0.46725, 40, -11.05, -3.07, 0.46538, 41, -33.97, -3.07, 0.0097, 32, 69.59, -11.51, 0.05768, 4, 39, -0.59, + 19.72, 0.32338, 40, -22.92, 19.72, 0.02881, 41, -45.85, 19.72, 0.003, 32, 47.63, -24.85, 0.64481, 4, 39, -3.82, 11.93, 0.4391, 40, -26.16, 11.93, 0.03345, 41, -49.08, 11.93, 0.00177, + 32, 55.61, -27.57, 0.52567, 4, 39, -5.89, 7.22, 0.65491, 40, -28.23, 7.22, 0.02015, 41, -51.15, 7.22, 0.00017, 32, 60.45, -29.33, 0.32476, 4, 39, -8.13, 1.34, 0.75275, 40, -30.47, + 1.34, 0.01396, 41, -53.39, 1.34, 1e-05, 32, 66.46, -31.18, 0.23328, 3, 39, -9.63, -2.94, 0.80478, 40, -31.96, -2.94, 0.00944, 32, 70.83, -32.39, 0.18578, 4, 39, 33.3, 20.06, 0.04166, + 40, 10.96, 20.06, 0.10286, 41, -11.96, 20.06, 0.24857, 32, 45.08, 8.94, 0.60691, 4, 39, 33.97, 12.1, 0.03817, 40, 11.63, 12.1, 0.17811, 41, -11.29, 12.1, 0.32257, 32, 52.98, 10.13, + 0.46115, 4, 39, 34.3, 6.34, 0.01531, 40, 11.97, 6.34, 0.31162, 41, -10.96, 6.34, 0.40881, 32, 58.71, 10.84, 0.26426, 4, 39, 34.72, 1.18, 0.00955, 40, 12.39, 1.18, 0.39036, 41, + -10.54, 1.18, 0.4561, 32, 63.83, 11.59, 0.14399, 4, 39, 34.8, -3.2, 0.00731, 40, 12.46, -3.2, 0.44195, 41, -10.46, -3.2, 0.48699, 32, 68.2, 11.96, 0.06375, 4, 39, 44.94, 17.01, + 0.00241, 40, 22.6, 17.01, 0.01421, 41, -0.32, 17.01, 0.36275, 32, 47.37, 20.75, 0.62063, 4, 39, 44.82, 1.32, 0.00034, 40, 22.48, 1.32, 0.01068, 41, -0.44, 1.31, 0.5453, 32, 63.04, + 21.66, 0.44368, 4, 39, 52.52, 5.95, 2e-05, 40, 30.19, 5.95, 0.00999, 41, 7.26, 5.95, 0.66888, 32, 57.92, 29.04, 0.32111, 3, 40, 31.52, 1.11, 0.01011, 41, 8.6, 1.11, 0.76268, 32, + 62.66, 30.7, 0.22721, 3, 40, 32.61, -3.32, 0.00863, 41, 9.68, -3.32, 0.83296, 32, 67.01, 32.06, 0.15841, 4, 39, -9.21, 7.29, 0.52586, 40, -31.55, 7.29, 0.0057, 41, -54.47, 7.29, + 1e-05, 32, 60.59, -32.65, 0.46842, 3, 39, -11.3, 1.36, 0.56698, 40, -33.64, 1.36, 0.00311, 32, 66.65, -34.34, 0.42991, 3, 39, -12.66, -2.93, 0.60013, 40, -35, -2.93, 0.00167, 32, + 71.01, -35.42, 0.39821, 4, 39, -5.46, -2.97, 0.89102, 40, -27.8, -2.97, 0.03888, 41, -50.72, -2.97, 1e-05, 32, 70.59, -28.24, 0.07008, 4, 39, -4.18, 1.33, 0.83362, 40, -26.52, 1.33, + 0.04645, 41, -49.44, 1.33, 3e-05, 32, 66.21, -27.24, 0.1199, 4, 39, -2.26, 7.14, 0.75973, 40, -24.6, 7.14, 0.05134, 41, -47.52, 7.14, 0.00026, 32, 60.29, -25.7, 0.18867, 4, 39, 7.35, + 6.93, 0.57235, 40, -14.98, 6.93, 0.23863, 41, -37.91, 6.93, 0.00435, 32, 59.87, -16.09, 0.18467, 4, 39, 5.9, 1.29, 0.63011, 40, -16.44, 1.29, 0.25936, 41, -39.36, 1.29, 0.00243, 32, + 65.6, -17.18, 0.1081, 4, 39, 4.86, -3.03, 0.68809, 40, -17.48, -3.03, 0.26358, 41, -40.4, -3.03, 0.00168, 32, 69.98, -17.93, 0.04665, 4, 39, 17.76, 6.7, 0.22941, 40, -4.58, 6.7, + 0.4879, 41, -27.5, 6.7, 0.05094, 32, 59.42, -5.7, 0.23175, 4, 39, 17.11, 1.25, 0.24296, 40, -5.23, 1.25, 0.56856, 41, -28.15, 1.25, 0.04581, 32, 64.91, -5.99, 0.14267, 4, 39, 16.71, + -3.1, 0.25552, 40, -5.62, -3.1, 0.64168, 41, -28.55, -3.1, 0.03992, 32, 69.27, -6.1, 0.06288, 4, 39, 28.55, -3.17, 0.03276, 40, 6.22, -3.17, 0.62363, 41, -16.71, -3.17, 0.27658, 32, + 68.57, 5.72, 0.06703, 4, 39, 28.55, 1.2, 0.0367, 40, 6.21, 1.21, 0.54514, 41, -16.71, 1.21, 0.26974, 32, 64.21, 5.43, 0.14843, 4, 39, 28.71, 6.47, 0.04075, 40, 6.37, 6.47, 0.46337, + 41, -16.55, 6.47, 0.25797, 32, 58.95, 5.25, 0.23791, 4, 39, 39.28, 6.23, 0.00305, 40, 16.94, 6.24, 0.20572, 41, -5.98, 6.24, 0.59307, 32, 58.49, 15.81, 0.19817, 4, 39, 39.51, 1.16, + 0.00156, 40, 17.17, 1.16, 0.23228, 41, -5.75, 1.16, 0.64631, 32, 63.54, 16.37, 0.11984, 4, 39, 40.07, -3.24, 0.00112, 40, 17.74, -3.24, 0.25061, 41, -5.19, -3.24, 0.69415, 32, 67.89, + 17.22, 0.05412, 4, 39, 50.23, -3.29, 0, 40, 27.89, -3.29, 0.036, 41, 4.97, -3.29, 0.88144, 32, 67.29, 27.36, 0.08255, 4, 39, 49.51, 1.13, 2e-05, 40, 27.17, 1.13, 0.03826, 41, 4.25, + 1.13, 0.81357, 32, 62.92, 26.35, 0.14816, 4, 39, 48.55, 6.03, 0.00027, 40, 26.22, 6.03, 0.03577, 41, 3.29, 6.03, 0.72045, 32, 58.09, 25.08, 0.24351, 4, 39, 41.39, 1.3, 0.00156, 40, + 19.05, 1.3, 0.03311, 41, -3.87, 1.3, 0.61234, 32, 63.28, 18.23, 0.35299, 4, 39, 48.27, 1.33, 1e-05, 40, 25.93, 1.33, 0.00266, 41, 3.01, 1.33, 0.47035, 32, 62.8, 25.1, 0.52698, 3, 40, + 33.02, 5.88, 0.00213, 41, 10.1, 5.88, 0.54797, 32, 57.79, 31.88, 0.4499, 3, 40, 34.54, 1.1, 0.0018, 41, 11.62, 1.1, 0.63247, 32, 62.47, 33.7, 0.36573, 3, 40, 35.58, -3.34, 0.00152, + 41, 12.66, -3.34, 0.71351, 32, 66.83, 35.03, 0.28497, 3, 39, -17.72, -6.71, 0.31251, 40, -40.05, -6.71, 1e-05, 32, 75.11, -40.22, 0.68748, 3, 39, -13.83, -6.56, 0.64755, 40, -36.17, + -6.56, 0.00038, 32, 74.72, -36.36, 0.35207, 3, 39, -10.89, -6.57, 0.83546, 40, -33.23, -6.57, 0.00245, 32, 74.53, -33.42, 0.1621, 3, 39, -6.58, -6.39, 0.9505, 40, -28.91, -6.39, + 0.02598, 32, 74.07, -29.13, 0.02352, 4, 39, -2.51, -6.41, 0.9185, 40, -24.85, -6.41, 0.06986, 41, -47.77, -6.41, 1e-05, 32, 73.83, -25.07, 0.01163, 4, 39, 3.97, -6.54, 0.7539, 40, + -18.37, -6.54, 0.23416, 41, -41.29, -6.54, 0.00019, 32, 73.54, -18.6, 0.01175, 4, 39, 10.73, -6.3, 0.4945, 40, -11.61, -6.29, 0.48778, 41, -34.53, -6.29, 0.00242, 32, 72.85, -11.87, + 0.01529, 4, 39, 16.42, -6.31, 0.24467, 40, -5.92, -6.31, 0.71967, 41, -28.84, -6.31, 0.01969, 32, 72.5, -6.18, 0.01597, 4, 39, 22.88, -6.46, 0.08074, 40, 0.54, -6.46, 0.81091, 41, + -22.38, -6.46, 0.09131, 32, 72.22, 0.27, 0.01704, 4, 39, 28.51, -6.42, 0.01543, 40, 6.17, -6.42, 0.70591, 41, -16.75, -6.42, 0.26031, 32, 71.82, 5.89, 0.01836, 4, 39, 34.97, -6.29, + 0.00164, 40, 12.64, -6.29, 0.47309, 41, -10.29, -6.29, 0.50689, 32, 71.27, 12.33, 0.01837, 4, 39, 40.42, -6.47, 0.0001, 40, 18.08, -6.47, 0.23958, 41, -4.84, -6.47, 0.7461, 32, 71.1, + 17.78, 0.01421, 4, 39, 45.89, -6.5, 0, 40, 23.56, -6.5, 0.08431, 41, 0.63, -6.5, 0.9025, 32, 70.76, 23.24, 0.01319, 3, 40, 28.36, -6.37, 0.01867, 41, 5.43, -6.37, 0.94991, 32, 70.33, + 28.02, 0.03142, 3, 40, 33.31, -6.41, 0.00244, 41, 10.39, -6.41, 0.88788, 32, 70.05, 32.97, 0.10968, 3, 40, 36.23, -6.46, 0.00046, 41, 13.31, -6.46, 0.80558, 32, 69.91, 35.88, + 0.19395, 3, 40, 40.12, -6.31, 1e-05, 41, 17.2, -6.31, 0.61334, 32, 69.5, 39.76, 0.38665, 4, 39, 0.4, -6.47, 0.86555, 40, -21.94, -6.47, 0.12959, 41, -44.86, -6.47, 1e-05, 32, 73.7, + -22.16, 0.00485, 3, 39, -9.01, -6.49, 0.93616, 40, -31.35, -6.49, 0.00716, 32, 74.33, -31.55, 0.05668, 3, 39, -16.19, -6.65, 0.44814, 40, -38.53, -6.65, 3e-05, 32, 74.96, -38.7, + 0.55184, 4, 39, 7.48, -6.41, 0.63866, 40, -14.86, -6.41, 0.354, 41, -37.78, -6.41, 0.00037, 32, 73.18, -15.1, 0.00698, 4, 39, 13.4, -6.3, 0.36468, 40, -8.94, -6.3, 0.62161, 41, + -31.86, -6.3, 0.00581, 32, 72.69, -9.2, 0.0079, 4, 39, 19.68, -6.38, 0.14684, 40, -2.65, -6.38, 0.80383, 41, -25.58, -6.38, 0.04176, 32, 72.36, -2.92, 0.00757, 4, 39, 25.54, -6.44, + 0.03499, 40, 3.2, -6.44, 0.79745, 41, -19.72, -6.44, 0.15898, 32, 72.03, 2.92, 0.00858, 4, 39, 31.96, -6.35, 0.00417, 40, 9.62, -6.35, 0.60634, 41, -13.3, -6.35, 0.37927, 32, 71.53, + 9.32, 0.01022, 4, 39, 37.62, -6.38, 0.00021, 40, 15.28, -6.38, 0.35157, 41, -7.64, -6.38, 0.63918, 32, 71.18, 14.97, 0.00904, 4, 39, 43.32, -6.48, 1e-05, 40, 20.98, -6.48, 0.14688, + 41, -1.94, -6.48, 0.84692, 32, 70.92, 20.67, 0.00619, 3, 40, 25.81, -6.44, 0.03919, 41, 2.89, -6.44, 0.95006, 32, 70.56, 25.48, 0.01074, 3, 40, 30.92, -6.39, 0.00591, 41, 7.99, + -6.39, 0.9433, 32, 70.18, 30.58, 0.05079, 3, 40, 38.04, -6.39, 5e-05, 41, 15.12, -6.39, 0.72615, 32, 69.72, 37.69, 0.2738 + ], + "hull": 46, + "edges": [ + 80, 82, 90, 0, 10, 8, 70, 72, 72, 74, 74, 76, 4, 6, 6, 8, 76, 78, 78, 80, 4, 2, 2, 0, 72, 92, 74, 94, 92, 94, 76, 96, 94, 96, 78, 98, 96, 98, 80, 100, 98, 100, 82, 84, 84, 86, 86, + 88, 88, 90, 0, 104, 2, 106, 104, 106, 4, 108, 106, 108, 6, 110, 108, 110, 8, 112, 110, 112, 10, 12, 102, 114, 114, 116, 116, 118, 118, 120, 122, 124, 124, 126, 126, 128, 128, 130, + 132, 100, 134, 102, 136, 104, 84, 138, 138, 132, 86, 140, 140, 134, 138, 140, 88, 142, 142, 136, 140, 142, 144, 146, 146, 148, 148, 150, 150, 152, 134, 154, 154, 136, 144, 154, 132, + 156, 156, 134, 122, 156, 102, 158, 158, 122, 114, 160, 160, 124, 158, 160, 160, 162, 162, 164, 164, 166, 100, 168, 168, 122, 98, 170, 170, 124, 168, 170, 170, 172, 172, 174, 174, + 176, 102, 178, 178, 144, 114, 180, 180, 146, 178, 180, 180, 182, 182, 184, 184, 186, 104, 188, 188, 144, 188, 190, 190, 192, 192, 194, 194, 196, 96, 198, 198, 172, 94, 200, 200, 174, + 198, 200, 92, 202, 202, 176, 200, 202, 64, 66, 58, 60, 130, 204, 204, 176, 128, 206, 206, 174, 204, 206, 126, 208, 208, 172, 206, 208, 126, 210, 210, 162, 128, 212, 212, 164, 210, + 212, 130, 214, 214, 166, 212, 214, 116, 216, 216, 162, 118, 218, 218, 164, 216, 218, 120, 220, 220, 166, 218, 220, 120, 222, 222, 186, 118, 224, 224, 184, 222, 224, 116, 226, 226, + 182, 224, 226, 148, 228, 228, 182, 150, 230, 230, 184, 228, 230, 152, 232, 232, 186, 230, 232, 152, 234, 234, 196, 150, 236, 236, 194, 234, 236, 148, 238, 238, 192, 236, 238, 146, + 240, 240, 190, 238, 240, 106, 242, 242, 190, 108, 244, 244, 192, 242, 244, 110, 246, 246, 194, 244, 246, 112, 248, 248, 196, 246, 248, 16, 18, 70, 250, 250, 92, 66, 252, 252, 202, + 64, 254, 254, 176, 252, 254, 60, 256, 256, 204, 58, 258, 258, 130, 256, 258, 54, 260, 260, 214, 50, 262, 262, 166, 46, 264, 264, 220, 42, 266, 266, 120, 38, 268, 268, 222, 34, 270, + 270, 186, 30, 272, 272, 232, 26, 274, 274, 152, 22, 276, 276, 234, 18, 278, 278, 196, 16, 280, 280, 248, 278, 280, 12, 282, 282, 112, 258, 284, 284, 260, 54, 56, 56, 58, 284, 56, + 254, 286, 286, 256, 60, 62, 62, 64, 286, 62, 250, 288, 288, 252, 66, 68, 68, 70, 288, 68, 260, 290, 290, 262, 50, 52, 52, 54, 290, 52, 262, 292, 292, 264, 46, 48, 48, 50, 292, 48, + 264, 294, 294, 266, 42, 44, 44, 46, 294, 44, 266, 296, 296, 268, 38, 40, 40, 42, 296, 40, 268, 298, 298, 270, 34, 36, 36, 38, 298, 36, 270, 300, 300, 272, 30, 32, 32, 34, 300, 32, + 272, 302, 302, 274, 26, 28, 28, 30, 302, 28, 274, 304, 304, 276, 22, 24, 24, 26, 304, 24, 276, 306, 306, 278, 18, 20, 20, 22, 306, 20, 280, 308, 308, 282, 12, 14, 14, 16, 308, 14 + ], + "width": 87.05882352941177, + "height": 80.0, + "path": "summer-as-lv2.ear-left-bubble", + "x": 0.470588235294116, + "y": 0.0 + } + }, + "ear-left-bubble-02": { + "ear-left-bubble": { + "type": "mesh", + "uvs": [ + 0.87714, 0.57697, 0.91393, 0.67811, 0.94364, 0.75977, 0.96133, 0.8176, 0.97838, 0.87333, 1, 0.94398, 0.93104, 0.94427, 0.90524, 0.94438, 0.88494, 0.94447, 0.85255, 0.94461, 0.82176, + 0.94474, 0.79396, 0.94486, 0.76382, 0.94499, 0.73767, 0.9451, 0.70713, 0.94523, 0.67579, 0.94536, 0.64108, 0.94551, 0.61244, 0.94564, 0.5758, 0.94579, 0.5367, 0.94596, 0.50394, + 0.9461, 0.47091, 0.94624, 0.435, 0.94639, 0.39675, 0.94656, 0.36198, 0.94671, 0.32916, 0.94685, 0.29359, 0.947, 0.25022, 0.94718, 0.20956, 0.94736, 0.17261, 0.94751, 0.12749, + 0.94771, 0.1012, 0.94782, 0.07834, 0.94792, 0.0457, 0.94806, 0.02123, 0.94816, 0, 0.94825, 0, 0.86703, 0, 0.81359, 0, 0.73715, 0.02817, 0.68242, 0.07791, 0.5858, 0.37947, 0, 0.46651, + 0, 0.5261, 0, 0.59994, 0, 0.66726, 0, 0.02864, 0.86721, 0.04805, 0.81379, 0.07275, 0.7389, 0.0999, 0.68207, 0.14259, 0.58508, 0.49108, 0.58123, 0.82646, 0.57753, 0.86109, 0.67837, + 0.88458, 0.75835, 0.90003, 0.81734, 0.91424, 0.87292, 0.48557, 0.6802, 0.48069, 0.74867, 0.47772, 0.81558, 0.4758, 0.87009, 0.29126, 0.58344, 0.25576, 0.68132, 0.23492, 0.74278, + 0.2135, 0.81448, 0.19874, 0.86831, 0.19271, 0.49455, 0.4968, 0.48641, 0.79002, 0.48462, 0.25666, 0.37903, 0.50462, 0.35653, 0.74321, 0.36527, 0.68757, 0.57906, 0.70466, 0.67913, + 0.71716, 0.75434, 0.72541, 0.81661, 0.73109, 0.87174, 0.67152, 0.48534, 0.32349, 0.49105, 0.38378, 0.58242, 0.36974, 0.68076, 0.36036, 0.74579, 0.34895, 0.81504, 0.34148, 0.86923, + 0.20652, 0.58437, 0.16979, 0.68173, 0.1462, 0.74066, 0.12077, 0.81409, 0.10379, 0.8677, 0.59158, 0.58012, 0.59921, 0.67965, 0.60299, 0.7516, 0.60776, 0.81612, 0.60866, 0.87095, + 0.76107, 0.57825, 0.78751, 0.67873, 0.81003, 0.75656, 0.82525, 0.81703, 0.83754, 0.87243, 0.10852, 0.73975, 0.08479, 0.81394, 0.06934, 0.86747, 0.15113, 0.868, 0.1657, 0.81428, + 0.18746, 0.74164, 0.29675, 0.74426, 0.28022, 0.81476, 0.26841, 0.86876, 0.41495, 0.7471, 0.40761, 0.81529, 0.4031, 0.86963, 0.53765, 0.87049, 0.53762, 0.81583, 0.53944, 0.75008, + 0.6595, 0.75296, 0.66217, 0.81635, 0.66857, 0.87134, 0.78397, 0.87208, 0.7758, 0.81682, 0.76492, 0.75548, 0.74852, 0.67892, 0.82675, 0.67854, 0.84222, 0.75734, 0.8595, 0.81717, + 0.87132, 0.87264, 0.01186, 0.9147, 0.056, 0.91293, 0.08943, 0.91297, 0.13846, 0.91074, 0.18465, 0.91102, 0.25824, 0.91262, 0.33507, 0.90958, 0.39978, 0.90977, 0.47313, 0.91161, + 0.53714, 0.91117, 0.61061, 0.90948, 0.67252, 0.91178, 0.73471, 0.91209, 0.78925, 0.91054, 0.84557, 0.91105, 0.87872, 0.91169, 0.92292, 0.90979, 0.21772, 0.91173, 0.11081, 0.912, + 0.02923, 0.91401, 0.29821, 0.91104, 0.36548, 0.90967, 0.43685, 0.9107, 0.50336, 0.9114, 0.57635, 0.91027, 0.64066, 0.9106, 0.70543, 0.91195, 0.76031, 0.91136, 0.81833, 0.9108, + 0.89934, 0.9108 + ], + "triangles": [ + 85, 84, 62, 94, 73, 72, 62, 84, 61, 100, 48, 99, 122, 53, 54, 121, 95, 52, 48, 49, 99, 48, 47, 38, 47, 37, 38, 50, 66, 84, 50, 40, 66, 54, 53, 1, 52, 68, 0, 70, 42, 43, 71, 0, 68, + 44, 45, 71, 70, 43, 44, 71, 70, 44, 69, 41, 42, 69, 42, 70, 71, 45, 0, 77, 70, 71, 77, 71, 68, 70, 78, 69, 67, 70, 77, 67, 78, 70, 41, 69, 40, 66, 69, 78, 94, 77, 68, 94, 68, 52, 72, + 77, 94, 89, 67, 77, 89, 77, 72, 67, 79, 78, 51, 67, 89, 51, 79, 67, 61, 66, 78, 61, 78, 79, 84, 66, 61, 40, 69, 66, 90, 89, 72, 90, 72, 73, 57, 79, 51, 57, 51, 89, 57, 89, 90, 80, + 61, 79, 80, 79, 57, 62, 61, 80, 108, 80, 57, 113, 57, 90, 53, 52, 0, 53, 0, 1, 121, 52, 53, 54, 1, 2, 95, 94, 52, 39, 40, 49, 49, 40, 50, 38, 39, 48, 48, 39, 49, 85, 50, 84, 49, 50, + 85, 122, 121, 53, 47, 48, 100, 86, 99, 49, 85, 86, 49, 55, 2, 3, 55, 54, 2, 123, 54, 55, 5, 6, 4, 56, 3, 4, 56, 55, 3, 35, 36, 125, 35, 125, 34, 34, 125, 144, 47, 46, 37, 125, 46, + 144, 144, 46, 126, 101, 47, 100, 46, 47, 101, 125, 36, 46, 46, 36, 37, 120, 94, 95, 120, 73, 94, 114, 91, 90, 73, 114, 90, 74, 73, 120, 114, 73, 74, 119, 120, 95, 74, 120, 119, 96, + 95, 121, 119, 95, 96, 96, 121, 122, 92, 91, 114, 115, 114, 74, 92, 114, 115, 75, 74, 119, 115, 74, 75, 118, 119, 96, 75, 119, 118, 97, 96, 122, 118, 96, 97, 123, 122, 54, 97, 122, + 123, 93, 92, 115, 116, 115, 75, 93, 115, 116, 76, 75, 118, 116, 75, 76, 117, 118, 97, 76, 118, 117, 98, 97, 123, 117, 97, 98, 124, 123, 55, 98, 123, 124, 150, 135, 93, 153, 138, 117, + 116, 150, 93, 98, 153, 117, 154, 124, 56, 154, 56, 141, 139, 98, 124, 140, 139, 124, 153, 98, 139, 152, 76, 117, 152, 117, 138, 154, 140, 124, 151, 136, 116, 150, 116, 136, 76, 151, + 116, 137, 151, 76, 152, 137, 76, 7, 154, 141, 7, 141, 6, 8, 140, 154, 8, 154, 7, 9, 139, 140, 9, 140, 8, 10, 153, 139, 10, 139, 9, 11, 138, 153, 11, 153, 10, 12, 152, 138, 12, 138, + 11, 13, 137, 152, 13, 152, 12, 14, 151, 137, 14, 137, 13, 15, 136, 151, 15, 151, 14, 16, 150, 136, 16, 136, 15, 17, 135, 150, 17, 150, 16, 124, 55, 56, 6, 141, 4, 141, 56, 4, 113, + 90, 91, 81, 80, 108, 58, 108, 57, 109, 81, 108, 82, 81, 109, 59, 108, 58, 109, 108, 59, 112, 58, 113, 59, 58, 112, 112, 113, 91, 92, 112, 91, 110, 82, 109, 83, 82, 110, 60, 109, 59, + 110, 109, 60, 111, 112, 92, 59, 112, 111, 60, 59, 111, 111, 92, 93, 146, 83, 110, 131, 83, 146, 132, 146, 110, 149, 111, 93, 149, 93, 135, 147, 110, 60, 132, 110, 147, 111, 148, 60, + 134, 111, 149, 134, 148, 111, 133, 147, 60, 148, 133, 60, 18, 134, 149, 18, 149, 135, 18, 135, 17, 19, 148, 134, 19, 134, 18, 20, 148, 19, 21, 147, 133, 20, 21, 133, 20, 133, 148, + 22, 132, 147, 22, 147, 21, 23, 146, 132, 23, 132, 22, 24, 131, 146, 24, 146, 23, 25, 131, 24, 58, 57, 113, 63, 104, 85, 86, 85, 104, 62, 63, 85, 105, 62, 80, 63, 62, 105, 81, 105, + 80, 87, 99, 86, 100, 99, 87, 103, 86, 104, 87, 86, 103, 64, 104, 63, 103, 104, 64, 106, 63, 105, 64, 63, 106, 82, 105, 81, 106, 105, 82, 88, 100, 87, 101, 100, 88, 102, 87, 103, 88, + 87, 102, 65, 103, 64, 102, 103, 65, 107, 64, 106, 65, 64, 107, 83, 106, 82, 107, 106, 83, 83, 145, 107, 128, 88, 102, 129, 102, 65, 128, 102, 129, 131, 145, 83, 142, 65, 107, 129, + 65, 142, 143, 88, 128, 130, 142, 107, 130, 107, 145, 127, 101, 88, 127, 88, 143, 126, 101, 127, 25, 145, 131, 26, 130, 145, 26, 145, 25, 27, 142, 130, 27, 130, 26, 28, 129, 142, 28, + 142, 27, 29, 128, 129, 29, 129, 28, 30, 143, 128, 30, 128, 29, 31, 127, 143, 31, 143, 30, 32, 126, 127, 32, 127, 31, 33, 144, 126, 33, 126, 32, 126, 46, 101, 34, 144, 33 + ], + "vertices": [ + 4, 47, 56.13, 15.19, 0.00012, 48, 33.79, 15.19, 0.00054, 49, 10.87, 15.18, 0.12631, 46, 48.46, 32.04, 0.87302, 3, 48, 31.45, 5.34, 0.00019, 49, 8.53, 5.32, 0.19743, 46, 58.45, 30.35, + 0.80237, 3, 48, 32.57, -2.1, 6e-05, 49, 9.65, -2.11, 0.26715, 46, 65.8, 31.95, 0.73278, 3, 48, 43.5, 1.06, 1e-05, 49, 20.58, 1.06, 0.33542, 46, 61.92, 42.65, 0.66457, 3, 48, 45, + -3.4, 1e-05, 49, 22.08, -3.4, 0.40033, 46, 66.27, 44.44, 0.59966, 3, 48, 46.9, -9.05, 0, 49, 23.98, -9.05, 0.45012, 46, 71.79, 46.7, 0.54988, 3, 48, 40.83, -9.07, 0, 49, 17.91, + -9.07, 0.5829, 46, 72.21, 40.65, 0.4171, 3, 48, 38.56, -9.08, 4e-05, 49, 15.64, -9.08, 0.72131, 46, 72.37, 38.38, 0.27865, 3, 48, 36.78, -9.09, 0.00031, 49, 13.86, -9.09, 0.8264, 46, + 72.49, 36.6, 0.17329, 3, 48, 33.93, -9.1, 0.00157, 49, 11, -9.1, 0.90359, 46, 72.69, 33.76, 0.09484, 3, 48, 31.22, -9.11, 0.00537, 49, 8.3, -9.11, 0.94975, 46, 72.87, 31.05, 0.04488, + 3, 48, 28.77, -9.12, 0.01601, 49, 5.85, -9.12, 0.96404, 46, 73.04, 28.61, 0.01996, 3, 48, 26.12, -9.13, 0.03803, 49, 3.2, -9.13, 0.95562, 46, 73.22, 25.97, 0.00635, 3, 48, 23.82, + -9.14, 0.08031, 49, 0.9, -9.14, 0.91597, 46, 73.38, 23.67, 0.00372, 4, 47, 43.47, -9.15, 0, 48, 21.13, -9.15, 0.14592, 49, -1.79, -9.15, 0.85165, 46, 73.57, 20.99, 0.00243, 4, 47, + 40.71, -9.16, 2e-05, 48, 18.37, -9.16, 0.23867, 49, -4.55, -9.16, 0.75671, 46, 73.76, 18.24, 0.0046, 4, 47, 37.66, -9.17, 0.00014, 48, 15.32, -9.17, 0.35275, 49, -7.6, -9.17, + 0.64256, 46, 73.97, 15.19, 0.00455, 4, 47, 35.13, -9.18, 0.00092, 48, 12.8, -9.18, 0.48034, 49, -10.13, -9.18, 0.51198, 46, 74.14, 12.68, 0.00676, 4, 47, 31.91, -9.19, 0.00375, 48, + 9.57, -9.19, 0.61095, 49, -13.35, -9.19, 0.38019, 46, 74.36, 9.46, 0.00512, 4, 47, 28.47, -9.21, 0.01298, 48, 6.13, -9.21, 0.72267, 49, -16.79, -9.21, 0.25841, 46, 74.6, 6.03, + 0.00594, 4, 47, 25.59, -9.22, 0.03422, 48, 3.25, -9.22, 0.80451, 49, -19.67, -9.22, 0.15782, 46, 74.8, 3.15, 0.00345, 4, 47, 22.68, -9.23, 0.07754, 48, 0.34, -9.23, 0.83155, 49, + -22.58, -9.23, 0.08642, 46, 75, 0.25, 0.00449, 4, 47, 19.52, -9.24, 0.14705, 48, -2.82, -9.24, 0.80991, 49, -25.74, -9.24, 0.04032, 46, 75.22, -2.9, 0.00272, 4, 47, 16.15, -9.25, + 0.24563, 48, -6.18, -9.25, 0.73344, 49, -29.11, -9.25, 0.01645, 46, 75.45, -6.26, 0.00448, 4, 47, 13.09, -9.27, 0.36774, 48, -9.24, -9.27, 0.62371, 49, -32.17, -9.27, 0.00512, 46, + 75.66, -9.31, 0.00344, 4, 47, 10.21, -9.28, 0.50372, 48, -12.13, -9.28, 0.49001, 49, -35.05, -9.28, 0.00135, 46, 75.86, -12.19, 0.00491, 4, 47, 7.08, -9.29, 0.64487, 48, -15.26, + -9.29, 0.35177, 49, -38.18, -9.29, 0.00021, 46, 76.08, -15.32, 0.00314, 4, 47, 3.26, -9.3, 0.77, 48, -19.08, -9.3, 0.22651, 49, -42, -9.3, 3e-05, 46, 76.34, -19.12, 0.00346, 4, 47, + -0.32, -9.32, 0.87272, 48, -22.66, -9.32, 0.1254, 49, -45.58, -9.32, 0, 46, 76.59, -22.69, 0.00188, 3, 47, -3.57, -9.33, 0.9351, 48, -25.91, -9.33, 0.0605, 46, 76.81, -25.94, 0.0044, + 3, 47, -7.54, -9.35, 0.96153, 48, -29.88, -9.35, 0.02278, 46, 77.09, -29.9, 0.01569, 3, 47, -9.85, -9.35, 0.93655, 48, -32.19, -9.35, 0.00657, 46, 77.24, -32.21, 0.05688, 3, 47, + -11.87, -9.36, 0.83576, 48, -34.2, -9.36, 0.00151, 46, 77.38, -34.21, 0.16273, 3, 47, -14.74, -9.37, 0.65143, 48, -37.08, -9.37, 0.00023, 46, 77.58, -37.08, 0.34834, 3, 47, -16.89, + -9.38, 0.4382, 48, -39.23, -9.38, 2e-05, 46, 77.73, -39.23, 0.56178, 3, 47, -18.76, -9.39, 0.27507, 48, -41.1, -9.39, 0, 46, 77.86, -41.09, 0.72493, 3, 47, -18.76, -2.89, 0.21414, + 48, -41.1, -2.89, 2e-05, 46, 71.37, -41.51, 0.78584, 3, 47, -18.76, 1.38, 0.19077, 48, -41.1, 1.38, 0.00024, 46, 67.11, -41.79, 0.80899, 3, 47, -18.76, 7.5, 0.1765, 48, -41.1, 7.5, + 0.00116, 46, 61.01, -42.19, 0.82235, 4, 47, -16.28, 11.88, 0.15382, 48, -38.62, 11.88, 0.00307, 49, -61.54, 11.88, 1e-05, 46, 56.48, -40, 0.84309, 4, 47, -11.9, 19.61, 0.11079, 48, + -34.24, 19.61, 0.0029, 49, -57.16, 19.61, 0.00014, 46, 48.48, -36.13, 0.88617, 4, 47, 14.63, 66.47, 0.04584, 48, -7.7, 66.47, 0.00083, 49, -30.63, 66.47, 0.00037, 46, -0.01, -12.7, + 0.95296, 4, 47, 22.29, 66.47, 0.02247, 48, -0.04, 66.47, 0.00083, 49, -22.97, 66.47, 0.00288, 46, -0.51, -5.06, 0.97382, 4, 47, 27.54, 66.47, 0.01007, 48, 5.2, 66.47, 0.00155, 49, + -17.72, 66.47, 0.0104, 46, -0.85, 0.17, 0.97798, 4, 47, 34.04, 66.47, 0.00272, 48, 11.7, 66.47, 0.00045, 49, -11.22, 66.47, 0.02285, 46, -1.28, 6.66, 0.97398, 4, 47, 39.96, 66.47, + 0.00033, 48, 17.62, 66.47, 0.00011, 49, -5.3, 66.47, 0.0498, 46, -1.66, 12.57, 0.94976, 3, 47, -16.24, -2.91, 0.33437, 48, -38.58, -2.91, 0.0002, 46, 71.23, -39, 0.66543, 3, 47, + -14.53, 1.37, 0.32645, 48, -36.87, 1.37, 0.00078, 46, 66.85, -37.57, 0.67277, 4, 47, -12.36, 7.36, 0.307, 48, -34.7, 7.36, 0.00285, 49, -57.62, 7.36, 1e-05, 46, 60.73, -35.79, + 0.69014, 4, 47, -9.97, 11.91, 0.26477, 48, -32.31, 11.91, 0.00971, 49, -55.23, 11.91, 0.00027, 46, 56.04, -33.7, 0.72525, 4, 47, -6.21, 19.66, 0.19881, 48, -28.55, 19.66, 0.00959, + 49, -51.47, 19.66, 0.00132, 46, 48.05, -30.46, 0.79028, 4, 47, 24.46, 19.97, 0.10712, 48, 2.12, 19.97, 0.11704, 49, -20.8, 19.97, 0.11672, 46, 45.75, 0.12, 0.65912, 4, 47, 51.67, + 15.14, 0.00116, 48, 29.33, 15.14, 0.00313, 49, 6.41, 15.14, 0.2148, 46, 48.8, 27.59, 0.7809, 4, 47, 48.63, 5.25, 0.0001, 48, 26.3, 5.26, 0.00083, 49, 3.37, 5.24, 0.29942, 46, 58.86, + 25.21, 0.69965, 3, 48, 26.85, -2.03, 0.00034, 49, 3.93, -2.04, 0.378, 46, 66.1, 26.23, 0.62166, 3, 48, 38.1, 1.08, 0.00022, 49, 15.18, 1.08, 0.45653, 46, 62.25, 37.26, 0.54325, 3, + 48, 39.36, -3.36, 0.00015, 49, 16.43, -3.36, 0.53433, 46, 66.61, 38.8, 0.46552, 4, 47, 23.97, 12.06, 0.12565, 48, 1.63, 12.06, 0.24275, 49, -21.29, 12.06, 0.14114, 46, 53.68, 0.15, + 0.49046, 4, 47, 23.54, 6.58, 0.11007, 48, 1.2, 6.58, 0.47217, 49, -21.72, 6.58, 0.12893, 46, 59.17, 0.08, 0.28883, 4, 47, 23.28, 1.22, 0.10884, 48, 0.94, 1.22, 0.60558, 49, -21.98, + 1.22, 0.12698, 46, 64.53, 0.17, 0.1586, 4, 47, 23.11, -3.14, 0.10666, 48, 0.77, -3.14, 0.70334, 49, -22.15, -3.14, 0.12133, 46, 68.89, 0.28, 0.06866, 4, 47, 6.87, 19.8, 0.29773, 48, + -15.47, 19.8, 0.06022, 49, -38.39, 19.8, 0.01488, 46, 47.07, -17.41, 0.62717, 4, 47, 3.75, 11.97, 0.44072, 48, -18.59, 11.97, 0.09602, 49, -41.51, 11.97, 0.01064, 46, 55.08, -20.02, + 0.45261, 4, 47, 1.91, 7.05, 0.66419, 48, -20.42, 7.05, 0.11803, 49, -43.35, 7.05, 0.002, 46, 60.11, -21.53, 0.21579, 4, 47, 0.03, 1.31, 0.77187, 48, -22.31, 1.31, 0.12352, 49, + -45.23, 1.31, 0.00043, 46, 65.96, -23.04, 0.10418, 4, 47, -1.27, -2.99, 0.84303, 48, -23.61, -2.99, 0.11246, 49, -46.53, -2.99, 0.00018, 46, 70.34, -24.05, 0.04432, 4, 47, -1.8, + 26.91, 0.12744, 48, -24.14, 26.91, 0.00959, 49, -47.06, 26.91, 0.0076, 46, 40.54, -26.53, 0.85537, 4, 47, 24.96, 27.56, 0.0719, 48, 2.62, 27.56, 0.03639, 49, -20.3, 27.56, 0.07572, + 46, 38.14, 0.13, 0.81598, 4, 47, 50.76, 27.7, 0.00702, 48, 28.42, 27.7, 0.00523, 49, 5.5, 27.7, 0.131, 46, 36.32, 25.87, 0.85675, 4, 47, 3.83, 36.15, 0.04791, 48, -18.51, 36.15, + 0.00352, 49, -41.43, 36.15, 0.00803, 46, 30.95, -21.51, 0.94054, 4, 47, 25.65, 37.95, 0.02662, 48, 3.31, 37.95, 0.00775, 49, -19.61, 37.95, 0.02767, 46, 27.73, 0.14, 0.93795, 4, 47, + 46.64, 37.25, 0.00753, 48, 24.3, 37.25, 0.00227, 49, 1.38, 37.25, 0.04846, 46, 27.06, 21.14, 0.94174, 4, 47, 41.75, 20.15, 0.01306, 48, 19.41, 20.15, 0.04509, 49, -3.51, 20.15, + 0.32134, 46, 44.45, 17.37, 0.62052, 4, 47, 40.83, 6.52, 0.00895, 48, 18.49, 6.53, 0.07841, 49, -4.43, 6.52, 0.49568, 46, 58.1, 17.34, 0.41696, 4, 47, 44.35, 6.12, 0.0015, 48, 22.01, + 6.12, 0.09572, 49, -0.91, 6.12, 0.67014, 46, 58.27, 20.88, 0.23264, 4, 47, 45.08, 1.14, 0.00025, 48, 22.74, 1.14, 0.108, 49, -0.18, 1.14, 0.76841, 46, 63.2, 21.93, 0.12334, 4, 47, + 45.58, -3.27, 0.0001, 48, 23.24, -3.27, 0.10937, 49, 0.32, -3.27, 0.83473, 46, 67.56, 22.71, 0.0558, 4, 47, 40.33, 27.64, 0.02381, 48, 18, 27.64, 0.02132, 49, -4.93, 27.64, 0.16866, + 46, 37.06, 15.47, 0.78621, 4, 47, 9.71, 27.19, 0.16236, 48, -12.63, 27.19, 0.02827, 49, -35.55, 27.19, 0.02548, 46, 39.51, -15.06, 0.78388, 4, 47, 15.01, 19.88, 0.23124, 48, -7.33, + 19.88, 0.11759, 49, -30.25, 19.88, 0.04679, 46, 46.46, -9.29, 0.60438, 4, 47, 13.78, 12.01, 0.29354, 48, -8.56, 12.01, 0.19873, 49, -31.48, 12.01, 0.04427, 46, 54.39, -10.01, + 0.46346, 4, 47, 12.95, 6.81, 0.37869, 48, -9.39, 6.81, 0.34588, 49, -32.31, 6.81, 0.01968, 46, 59.63, -10.5, 0.25575, 4, 47, 11.95, 1.27, 0.42861, 48, -10.39, 1.27, 0.42317, 49, + -33.31, 1.27, 0.01297, 46, 65.23, -11.14, 0.13524, 4, 47, 11.29, -3.07, 0.46725, 48, -11.05, -3.07, 0.46538, 49, -33.97, -3.07, 0.0097, 46, 69.59, -11.51, 0.05768, 4, 47, -0.59, + 19.72, 0.32338, 48, -22.92, 19.72, 0.02881, 49, -45.85, 19.72, 0.003, 46, 47.63, -24.85, 0.64481, 4, 47, -3.82, 11.93, 0.4391, 48, -26.16, 11.93, 0.03345, 49, -49.08, 11.93, 0.00177, + 46, 55.61, -27.57, 0.52567, 4, 47, -5.89, 7.22, 0.65491, 48, -28.23, 7.22, 0.02015, 49, -51.15, 7.22, 0.00017, 46, 60.45, -29.33, 0.32476, 4, 47, -8.13, 1.34, 0.75275, 48, -30.47, + 1.34, 0.01396, 49, -53.39, 1.34, 1e-05, 46, 66.46, -31.18, 0.23328, 3, 47, -9.63, -2.94, 0.80478, 48, -31.96, -2.94, 0.00944, 46, 70.83, -32.39, 0.18578, 4, 47, 33.3, 20.06, 0.04166, + 48, 10.96, 20.06, 0.10286, 49, -11.96, 20.06, 0.24857, 46, 45.08, 8.94, 0.60691, 4, 47, 33.97, 12.1, 0.03817, 48, 11.63, 12.1, 0.17811, 49, -11.29, 12.1, 0.32257, 46, 52.98, 10.13, + 0.46115, 4, 47, 34.3, 6.34, 0.01531, 48, 11.97, 6.34, 0.31162, 49, -10.96, 6.34, 0.40881, 46, 58.71, 10.84, 0.26426, 4, 47, 34.72, 1.18, 0.00955, 48, 12.39, 1.18, 0.39036, 49, + -10.54, 1.18, 0.4561, 46, 63.83, 11.59, 0.14399, 4, 47, 34.8, -3.2, 0.00731, 48, 12.46, -3.2, 0.44195, 49, -10.46, -3.2, 0.48699, 46, 68.2, 11.96, 0.06375, 4, 47, 45.91, 15.08, + 0.00241, 48, 23.57, 15.09, 0.01421, 49, 0.65, 15.08, 0.36275, 46, 49.23, 21.85, 0.62063, 4, 47, 40.85, 4.27, 0.00034, 48, 18.51, 4.28, 0.01068, 49, -4.41, 4.26, 0.5453, 46, 60.35, + 17.51, 0.44368, 4, 47, 52.52, 5.95, 2e-05, 48, 30.19, 5.95, 0.00999, 49, 7.26, 5.95, 0.66888, 46, 57.92, 29.04, 0.32111, 3, 48, 31.52, 1.11, 0.01011, 49, 8.6, 1.11, 0.76268, 46, + 62.66, 30.7, 0.22721, 3, 48, 32.61, -3.32, 0.00863, 49, 9.68, -3.32, 0.83296, 46, 67.01, 32.06, 0.15841, 4, 47, -9.21, 7.29, 0.52586, 48, -31.55, 7.29, 0.0057, 49, -54.47, 7.29, + 1e-05, 46, 60.59, -32.65, 0.46842, 3, 47, -11.3, 1.36, 0.56698, 48, -33.64, 1.36, 0.00311, 46, 66.65, -34.34, 0.42991, 3, 47, -12.66, -2.93, 0.60013, 48, -35, -2.93, 0.00167, 46, + 71.01, -35.42, 0.39821, 4, 47, -5.46, -2.97, 0.89102, 48, -27.8, -2.97, 0.03888, 49, -50.72, -2.97, 1e-05, 46, 70.59, -28.24, 0.07008, 4, 47, -4.18, 1.33, 0.83362, 48, -26.52, 1.33, + 0.04645, 49, -49.44, 1.33, 3e-05, 46, 66.21, -27.24, 0.1199, 4, 47, -2.26, 7.14, 0.75973, 48, -24.6, 7.14, 0.05134, 49, -47.52, 7.14, 0.00026, 46, 60.29, -25.7, 0.18867, 4, 47, 7.35, + 6.93, 0.57235, 48, -14.98, 6.93, 0.23863, 49, -37.91, 6.93, 0.00435, 46, 59.87, -16.09, 0.18467, 4, 47, 5.9, 1.29, 0.63011, 48, -16.44, 1.29, 0.25936, 49, -39.36, 1.29, 0.00243, 46, + 65.6, -17.18, 0.1081, 4, 47, 4.86, -3.03, 0.68809, 48, -17.48, -3.03, 0.26358, 49, -40.4, -3.03, 0.00168, 46, 69.98, -17.93, 0.04665, 4, 47, 17.76, 6.7, 0.22941, 48, -4.58, 6.7, + 0.4879, 49, -27.5, 6.7, 0.05094, 46, 59.42, -5.7, 0.23175, 4, 47, 17.11, 1.25, 0.24296, 48, -5.23, 1.25, 0.56856, 49, -28.15, 1.25, 0.04581, 46, 64.91, -5.99, 0.14267, 4, 47, 16.71, + -3.1, 0.25552, 48, -5.62, -3.1, 0.64168, 49, -28.55, -3.1, 0.03992, 46, 69.27, -6.1, 0.06288, 4, 47, 28.55, -3.17, 0.03276, 48, 6.22, -3.17, 0.62363, 49, -16.71, -3.17, 0.27658, 46, + 68.57, 5.72, 0.06703, 4, 47, 28.55, 1.2, 0.0367, 48, 6.21, 1.21, 0.54514, 49, -16.71, 1.21, 0.26974, 46, 64.21, 5.43, 0.14843, 4, 47, 28.71, 6.47, 0.04075, 48, 6.37, 6.47, 0.46337, + 49, -16.55, 6.47, 0.25797, 46, 58.95, 5.25, 0.23791, 4, 47, 39.28, 6.23, 0.00305, 48, 16.94, 6.24, 0.20572, 49, -5.98, 6.24, 0.59307, 46, 58.49, 15.81, 0.19817, 4, 47, 39.51, 1.16, + 0.00156, 48, 17.17, 1.16, 0.23228, 49, -5.75, 1.16, 0.64631, 46, 63.54, 16.37, 0.11984, 4, 47, 40.07, -3.24, 0.00112, 48, 17.74, -3.24, 0.25061, 49, -5.19, -3.24, 0.69415, 46, 67.89, + 17.22, 0.05412, 4, 47, 50.23, -3.29, 0, 48, 27.89, -3.29, 0.036, 49, 4.97, -3.29, 0.88144, 46, 67.29, 27.36, 0.08255, 4, 47, 49.51, 1.13, 2e-05, 48, 27.17, 1.13, 0.03826, 49, 4.25, + 1.13, 0.81357, 46, 62.92, 26.35, 0.14816, 4, 47, 48.55, 6.03, 0.00027, 48, 26.22, 6.03, 0.03577, 49, 3.29, 6.03, 0.72045, 46, 58.09, 25.08, 0.24351, 4, 47, 37.02, 4.21, 0.00156, 48, + 14.68, 4.22, 0.03311, 49, -8.24, 4.2, 0.61234, 46, 60.66, 13.69, 0.35299, 4, 47, 44.7, 4.35, 1e-05, 48, 22.36, 4.35, 0.00266, 49, -0.56, 4.34, 0.47035, 46, 60.02, 21.34, 0.52698, 3, + 48, 33.02, 5.88, 0.00213, 49, 10.1, 5.88, 0.54797, 46, 57.79, 31.88, 0.4499, 3, 48, 34.54, 1.1, 0.0018, 49, 11.62, 1.1, 0.63247, 46, 62.47, 33.7, 0.36573, 3, 48, 35.58, -3.34, + 0.00152, 49, 12.66, -3.34, 0.71351, 46, 66.83, 35.03, 0.28497, 3, 47, -17.72, -6.71, 0.31251, 48, -40.05, -6.71, 1e-05, 46, 75.11, -40.22, 0.68748, 3, 47, -13.83, -6.56, 0.64755, 48, + -36.17, -6.56, 0.00038, 46, 74.72, -36.36, 0.35207, 3, 47, -10.89, -6.57, 0.83546, 48, -33.23, -6.57, 0.00245, 46, 74.53, -33.42, 0.1621, 3, 47, -6.58, -6.39, 0.9505, 48, -28.91, + -6.39, 0.02598, 46, 74.07, -29.13, 0.02352, 4, 47, -2.51, -6.41, 0.9185, 48, -24.85, -6.41, 0.06986, 49, -47.77, -6.41, 1e-05, 46, 73.83, -25.07, 0.01163, 4, 47, 3.97, -6.54, 0.7539, + 48, -18.37, -6.54, 0.23416, 49, -41.29, -6.54, 0.00019, 46, 73.54, -18.6, 0.01175, 4, 47, 10.73, -6.3, 0.4945, 48, -11.61, -6.29, 0.48778, 49, -34.53, -6.29, 0.00242, 46, 72.85, + -11.87, 0.01529, 4, 47, 16.42, -6.31, 0.24467, 48, -5.92, -6.31, 0.71967, 49, -28.84, -6.31, 0.01969, 46, 72.5, -6.18, 0.01597, 4, 47, 22.88, -6.46, 0.08074, 48, 0.54, -6.46, + 0.81091, 49, -22.38, -6.46, 0.09131, 46, 72.22, 0.27, 0.01704, 4, 47, 28.51, -6.42, 0.01543, 48, 6.17, -6.42, 0.70591, 49, -16.75, -6.42, 0.26031, 46, 71.82, 5.89, 0.01836, 4, 47, + 34.97, -6.29, 0.00164, 48, 12.64, -6.29, 0.47309, 49, -10.29, -6.29, 0.50689, 46, 71.27, 12.33, 0.01837, 4, 47, 40.42, -6.47, 0.0001, 48, 18.08, -6.47, 0.23958, 49, -4.84, -6.47, + 0.7461, 46, 71.1, 17.78, 0.01421, 4, 47, 45.89, -6.5, 0, 48, 23.56, -6.5, 0.08431, 49, 0.63, -6.5, 0.9025, 46, 70.76, 23.24, 0.01319, 3, 48, 28.36, -6.37, 0.01867, 49, 5.43, -6.37, + 0.94991, 46, 70.33, 28.02, 0.03142, 3, 48, 33.31, -6.41, 0.00244, 49, 10.39, -6.41, 0.88788, 46, 70.05, 32.97, 0.10968, 3, 48, 36.23, -6.46, 0.00046, 49, 13.31, -6.46, 0.80558, 46, + 69.91, 35.88, 0.19395, 3, 48, 40.12, -6.31, 1e-05, 49, 17.2, -6.31, 0.61334, 46, 69.5, 39.76, 0.38665, 4, 47, 0.4, -6.47, 0.86555, 48, -21.94, -6.47, 0.12959, 49, -44.86, -6.47, + 1e-05, 46, 73.7, -22.16, 0.00485, 3, 47, -9.01, -6.49, 0.93616, 48, -31.35, -6.49, 0.00716, 46, 74.33, -31.55, 0.05668, 3, 47, -16.19, -6.65, 0.44814, 48, -38.53, -6.65, 3e-05, 46, + 74.96, -38.7, 0.55184, 4, 47, 7.48, -6.41, 0.63866, 48, -14.86, -6.41, 0.354, 49, -37.78, -6.41, 0.00037, 46, 73.18, -15.1, 0.00698, 4, 47, 13.4, -6.3, 0.36468, 48, -8.94, -6.3, + 0.62161, 49, -31.86, -6.3, 0.00581, 46, 72.69, -9.2, 0.0079, 4, 47, 19.68, -6.38, 0.14684, 48, -2.65, -6.38, 0.80383, 49, -25.58, -6.38, 0.04176, 46, 72.36, -2.92, 0.00757, 4, 47, + 25.54, -6.44, 0.03499, 48, 3.2, -6.44, 0.79745, 49, -19.72, -6.44, 0.15898, 46, 72.03, 2.92, 0.00858, 4, 47, 31.96, -6.35, 0.00417, 48, 9.62, -6.35, 0.60634, 49, -13.3, -6.35, + 0.37927, 46, 71.53, 9.32, 0.01022, 4, 47, 37.62, -6.38, 0.00021, 48, 15.28, -6.38, 0.35157, 49, -7.64, -6.38, 0.63918, 46, 71.18, 14.97, 0.00904, 4, 47, 43.32, -6.48, 1e-05, 48, + 20.98, -6.48, 0.14688, 49, -1.94, -6.48, 0.84692, 46, 70.92, 20.67, 0.00619, 3, 48, 25.81, -6.44, 0.03919, 49, 2.89, -6.44, 0.95006, 46, 70.56, 25.48, 0.01074, 3, 48, 30.92, -6.39, + 0.00591, 49, 7.99, -6.39, 0.9433, 46, 70.18, 30.58, 0.05079, 3, 48, 38.04, -6.39, 5e-05, 49, 15.12, -6.39, 0.72615, 46, 69.72, 37.69, 0.2738 + ], + "hull": 46, + "edges": [ + 80, 82, 90, 0, 10, 8, 70, 72, 72, 74, 74, 76, 4, 6, 6, 8, 76, 78, 78, 80, 4, 2, 2, 0, 72, 92, 74, 94, 92, 94, 76, 96, 94, 96, 78, 98, 96, 98, 80, 100, 98, 100, 82, 84, 84, 86, 86, + 88, 88, 90, 0, 104, 2, 106, 104, 106, 4, 108, 106, 108, 6, 110, 108, 110, 8, 112, 110, 112, 10, 12, 102, 114, 114, 116, 116, 118, 118, 120, 122, 124, 124, 126, 126, 128, 128, 130, + 132, 100, 134, 102, 136, 104, 84, 138, 138, 132, 86, 140, 140, 134, 138, 140, 88, 142, 142, 136, 140, 142, 144, 146, 146, 148, 148, 150, 150, 152, 134, 154, 154, 136, 144, 154, 132, + 156, 156, 134, 122, 156, 102, 158, 158, 122, 114, 160, 160, 124, 158, 160, 160, 162, 162, 164, 164, 166, 100, 168, 168, 122, 98, 170, 170, 124, 168, 170, 170, 172, 172, 174, 174, + 176, 102, 178, 178, 144, 114, 180, 180, 146, 178, 180, 180, 182, 182, 184, 184, 186, 104, 188, 188, 144, 188, 190, 190, 192, 192, 194, 194, 196, 96, 198, 198, 172, 94, 200, 200, 174, + 198, 200, 92, 202, 202, 176, 200, 202, 64, 66, 58, 60, 130, 204, 204, 176, 128, 206, 206, 174, 204, 206, 126, 208, 208, 172, 206, 208, 126, 210, 210, 162, 128, 212, 212, 164, 210, + 212, 130, 214, 214, 166, 212, 214, 116, 216, 216, 162, 118, 218, 218, 164, 216, 218, 120, 220, 220, 166, 218, 220, 120, 222, 222, 186, 118, 224, 224, 184, 222, 224, 116, 226, 226, + 182, 224, 226, 148, 228, 228, 182, 150, 230, 230, 184, 228, 230, 152, 232, 232, 186, 230, 232, 152, 234, 234, 196, 150, 236, 236, 194, 234, 236, 148, 238, 238, 192, 236, 238, 146, + 240, 240, 190, 238, 240, 106, 242, 242, 190, 108, 244, 244, 192, 242, 244, 110, 246, 246, 194, 244, 246, 112, 248, 248, 196, 246, 248, 16, 18, 70, 250, 250, 92, 66, 252, 252, 202, + 64, 254, 254, 176, 252, 254, 60, 256, 256, 204, 58, 258, 258, 130, 256, 258, 54, 260, 260, 214, 50, 262, 262, 166, 46, 264, 264, 220, 42, 266, 266, 120, 38, 268, 268, 222, 34, 270, + 270, 186, 30, 272, 272, 232, 26, 274, 274, 152, 22, 276, 276, 234, 18, 278, 278, 196, 16, 280, 280, 248, 278, 280, 12, 282, 282, 112, 258, 284, 284, 260, 54, 56, 56, 58, 284, 56, + 254, 286, 286, 256, 60, 62, 62, 64, 286, 62, 250, 288, 288, 252, 66, 68, 68, 70, 288, 68, 260, 290, 290, 262, 50, 52, 52, 54, 290, 52, 262, 292, 292, 264, 46, 48, 48, 50, 292, 48, + 264, 294, 294, 266, 42, 44, 44, 46, 294, 44, 266, 296, 296, 268, 38, 40, 40, 42, 296, 40, 268, 298, 298, 270, 34, 36, 36, 38, 298, 36, 270, 300, 300, 272, 30, 32, 32, 34, 300, 32, + 272, 302, 302, 274, 26, 28, 28, 30, 302, 28, 274, 304, 304, 276, 22, 24, 24, 26, 304, 24, 276, 306, 306, 278, 18, 20, 20, 22, 306, 20, 280, 308, 308, 282, 12, 14, 14, 16, 308, 14 + ], + "width": 87.05882352941177, + "height": 80.0, + "path": "summer-as-lv2.ear-left-bubble", + "x": 0.470588235294116, + "y": 0.0 + } + }, + "ear-left-dot-01": { + "ear-left-dot": {"x": 0.8847058823529402, "y": 0.8347058823529402, "rotation": -0.95, "width": 16.47058823529412, "height": 16.47058823529412, "path": "summer-as-lv2.ear-left-dot"} + }, + "ear-left-dot-02": { + "ear-left-dot": {"x": 0.8847058823529402, "y": 0.8347058823529402, "rotation": -0.95, "width": 16.47058823529412, "height": 16.47058823529412, "path": "summer-as-lv2.ear-left-dot"} + }, + "ear-left-dot-03": { + "ear-left-dot": {"x": 0.8847058823529402, "y": 0.8347058823529402, "rotation": -0.95, "width": 16.47058823529412, "height": 16.47058823529412, "path": "summer-as-lv2.ear-left-dot"} + }, + "ear-left-dot-04": { + "ear-left-dot": {"x": 0.8847058823529402, "y": 0.8347058823529402, "rotation": -0.95, "width": 16.47058823529412, "height": 16.47058823529412, "path": "summer-as-lv2.ear-left-dot"} + }, + "ear-left-dot-05": { + "ear-left-dot": {"x": 0.8847058823529402, "y": 0.8347058823529402, "rotation": -0.95, "width": 16.47058823529412, "height": 16.47058823529412, "path": "summer-as-lv2.ear-left-dot"} + }, + "ear-left-dot-06": { + "ear-left-dot": {"x": 0.8847058823529402, "y": 0.8347058823529402, "rotation": -0.95, "width": 16.47058823529412, "height": 16.47058823529412, "path": "summer-as-lv2.ear-left-dot"} + }, + "ear-left-dot-07": { + "ear-left-dot": {"x": 0.8847058823529402, "y": 0.8347058823529402, "rotation": -0.95, "width": 16.47058823529412, "height": 16.47058823529412, "path": "summer-as-lv2.ear-left-dot"} + }, + "ear-left-dot-08": { + "ear-left-dot": {"x": 0.8847058823529402, "y": 0.8347058823529402, "rotation": -0.95, "width": 16.47058823529412, "height": 16.47058823529412, "path": "summer-as-lv2.ear-left-dot"} + }, + "ear-left-dot-09": { + "ear-left-dot": {"x": 0.8847058823529402, "y": 0.8347058823529402, "rotation": -0.95, "width": 16.47058823529412, "height": 16.47058823529412, "path": "summer-as-lv2.ear-left-dot"} + }, + "ear-left-dot-10": { + "ear-left-dot": {"x": 0.8847058823529402, "y": 0.8347058823529402, "rotation": -0.95, "width": 16.47058823529412, "height": 16.47058823529412, "path": "summer-as-lv2.ear-left-dot"} + }, + "ear-left-dot-11": { + "ear-left-dot": {"x": 0.8847058823529402, "y": 0.8347058823529402, "rotation": -0.95, "width": 16.47058823529412, "height": 16.47058823529412, "path": "summer-as-lv2.ear-left-dot"} + }, + "ear-left-dot-12": { + "ear-left-dot": {"x": 0.8847058823529402, "y": 0.8347058823529402, "rotation": -0.95, "width": 16.47058823529412, "height": 16.47058823529412, "path": "summer-as-lv2.ear-left-dot"} + }, + "ear-left-under": { + "ear-left-under": {"x": 85.13176470588235, "y": -29.411764705882362, "rotation": -90, "width": 141.1764705882353, "height": 218.82352941176472, "path": "summer-as-lv2.ear-left-under"} + }, + "ear-left-upper": { + "ear-left-upper": {"x": 99.74941176470588, "y": -26.911764705882348, "rotation": -90, "width": 152.94117647058823, "height": 258.8235294117647, "path": "summer-as-lv2.ear-left-upper"} + }, + "ear-right-bubble": { + "ear-right-bubble": { + "type": "mesh", + "uvs": [ + 0.93928, 0.50958, 0.95558, 0.59885, 0.96791, 0.66638, 0.98006, 0.73289, 1, 0.84205, 1, 0.89818, 1, 0.9625, 0.9567, 0.9625, 0.9208, 0.9625, 0.88771, 0.9625, 0.83969, 0.9625, 0.79967, + 0.9625, 0.76574, 0.9625, 0.73418, 0.9625, 0.69508, 0.9625, 0.6661, 0.9625, 0.6319, 0.9625, 0.6046, 0.9625, 0.57454, 0.9625, 0.53755, 0.9625, 0.50387, 0.9625, 0.47341, 0.9625, + 0.44466, 0.9625, 0.41233, 0.9625, 0.37317, 0.9625, 0.33787, 0.9625, 0.30333, 0.9625, 0.2648, 0.9625, 0.21937, 0.9625, 0.17434, 0.9625, 0.12959, 0.9625, 0.08769, 0.9625, 0, 0.9625, + 0.02085, 0.89779, 0.04055, 0.83664, 0.06626, 0.75682, 0.08854, 0.68766, 0.11527, 0.60468, 0.13788, 0.53451, 0.35753, 0.0375, 0.43128, 0.0375, 0.52161, 0.0375, 0.60662, 0.0375, + 0.67954, 0.0375, 0.54109, 0.5336, 0.30907, 0.53412, 0.75362, 0.52077, 0.84707, 0.51514, 0.2081, 0.53435, 0.42115, 0.53387, 0.64269, 0.52747, 0.1892, 0.60156, 0.3018, 0.60447, + 0.41972, 0.60346, 0.54053, 0.60135, 0.64648, 0.59785, 0.76151, 0.59644, 0.87262, 0.58988, 0.16806, 0.67676, 0.29497, 0.67061, 0.41838, 0.66857, 0.54, 0.66508, 0.65011, 0.66538, + 0.7681, 0.65967, 0.89666, 0.66021, 0.14733, 0.75044, 0.28705, 0.74721, 0.41688, 0.74143, 0.53942, 0.73556, 0.6538, 0.73393, 0.7757, 0.7326, 0.91933, 0.7265, 0.12337, 0.83566, 0.2782, + 0.83283, 0.4151, 0.82771, 0.53871, 0.82207, 0.65852, 0.82169, 0.7847, 0.8189, 0.95379, 0.82732, 0.97627, 0.89309, 0.79208, 0.88971, 0.66236, 0.89294, 0.5381, 0.89586, 0.41375, + 0.89349, 0.2717, 0.89571, 0.10571, 0.89844, 0.53197, 0.30141, 0.39415, 0.1884, 0.65961, 0.2117, 0.25473, 0.53425, 0.24202, 0.60293, 0.22911, 0.6738, 0.21379, 0.7489, 0.19729, + 0.83431, 0.18704, 0.8971, 0.36352, 0.534, 0.36013, 0.60397, 0.35748, 0.66957, 0.35288, 0.74428, 0.34802, 0.83022, 0.34383, 0.89458, 0.48024, 0.53373, 0.47847, 0.60244, 0.47433, + 0.66696, 0.47563, 0.73861, 0.47402, 0.82502, 0.47337, 0.89463, 0.58955, 0.53067, 0.59344, 0.5996, 0.59605, 0.66523, 0.5961, 0.73475, 0.60032, 0.82187, 0.60296, 0.89434, 0.69391, + 0.52438, 0.69915, 0.59721, 0.70691, 0.66263, 0.71206, 0.7333, 0.71954, 0.82034, 0.72813, 0.8913, 0.80125, 0.5179, 0.81428, 0.59333, 0.8348, 0.65995, 0.84793, 0.72953, 0.87862, + 0.82358, 0.89305, 0.89156, 0.19669, 0.67537, 0.17782, 0.74974, 0.1594, 0.835, 0.1429, 0.89783, 0.26012, 0.6723, 0.25017, 0.74806, 0.23685, 0.83359, 0.22589, 0.89647, 0.30659, + 0.89517, 0.3131, 0.83153, 0.31569, 0.74593, 0.32231, 0.67016, 0.38717, 0.66908, 0.38553, 0.74282, 0.38068, 0.829, 0.37648, 0.89407, 0.44462, 0.89408, 0.44322, 0.82643, 0.44458, + 0.7401, 0.44621, 0.66777, 0.50711, 0.66602, 0.50646, 0.73714, 0.50582, 0.82357, 0.50482, 0.89523, 0.57134, 0.89508, 0.5687, 0.82197, 0.56865, 0.73514, 0.5654, 0.66515, 0.62192, + 0.6653, 0.6236, 0.73436, 0.62525, 0.8218, 0.62839, 0.89374, 0.69427, 0.89215, 0.76244, 0.89045, 0.84047, 0.89059, 0.93306, 0.89229, 0.91732, 0.8255, 0.82617, 0.82097, 0.75013, + 0.81967, 0.6863, 0.82108, 0.68017, 0.73364, 0.74166, 0.73297, 0.80979, 0.73115, 0.88285, 0.72805, 0.86581, 0.66008, 0.79931, 0.6598, 0.73613, 0.66121, 0.67214, 0.66431, 0.09776, + 0.92671, 0.13724, 0.92534, 0.1817, 0.92459, 0.22313, 0.92439, 0.26892, 0.92268, 0.30526, 0.92265, 0.34139, 0.92236, 0.3751, 0.92252, 0.41313, 0.92351, 0.44464, 0.92289, 0.47339, + 0.92339, 0.5044, 0.9248, 0.53787, 0.92389, 0.57268, 0.92341, 0.60366, 0.9233, 0.62995, 0.92432, 0.66398, 0.92316, 0.69464, 0.92383, 0.73085, 0.92333, 0.76403, 0.92521, 0.79572, + 0.92461, 0.84011, 0.92404, 0.89075, 0.92209, 0.92774, 0.92274, 0.96706, 0.92576 + ], + "triangles": [ + 166, 63, 70, 116, 171, 166, 165, 115, 116, 77, 70, 167, 163, 166, 70, 163, 70, 77, 117, 116, 166, 117, 166, 163, 77, 167, 162, 164, 165, 116, 164, 116, 117, 76, 69, 165, 76, 165, + 164, 162, 122, 123, 80, 77, 162, 158, 163, 77, 158, 77, 80, 159, 162, 123, 80, 162, 159, 118, 117, 163, 118, 163, 158, 124, 123, 161, 159, 123, 124, 157, 164, 117, 157, 117, 118, 81, + 76, 164, 81, 164, 157, 195, 159, 124, 196, 124, 160, 195, 124, 196, 189, 81, 157, 191, 118, 158, 190, 157, 118, 190, 118, 191, 189, 157, 190, 159, 193, 80, 194, 159, 195, 194, 193, + 159, 192, 158, 80, 192, 80, 193, 191, 158, 192, 15, 189, 190, 14, 190, 191, 15, 190, 14, 13, 191, 192, 14, 191, 13, 12, 192, 193, 13, 192, 12, 11, 193, 194, 12, 193, 11, 10, 11, 194, + 9, 194, 195, 10, 194, 9, 8, 195, 196, 9, 195, 8, 8, 196, 7, 151, 109, 110, 68, 152, 151, 146, 145, 68, 104, 103, 146, 155, 154, 69, 155, 69, 76, 111, 110, 154, 111, 154, 155, 150, + 151, 110, 150, 110, 111, 68, 151, 150, 75, 146, 68, 75, 68, 150, 147, 104, 146, 147, 146, 75, 105, 143, 104, 105, 104, 147, 142, 67, 143, 142, 143, 105, 74, 67, 142, 156, 155, 76, + 156, 76, 81, 106, 141, 142, 74, 142, 141, 83, 74, 141, 112, 111, 155, 112, 155, 156, 105, 106, 142, 149, 150, 111, 149, 111, 112, 148, 105, 147, 106, 105, 148, 82, 75, 150, 82, 148, + 147, 147, 75, 82, 150, 149, 82, 182, 141, 106, 187, 112, 156, 183, 106, 148, 182, 106, 183, 186, 149, 112, 186, 112, 187, 182, 181, 83, 182, 83, 141, 185, 148, 82, 185, 82, 149, 185, + 149, 186, 188, 156, 81, 188, 81, 189, 187, 156, 188, 184, 183, 148, 184, 148, 185, 22, 182, 183, 181, 182, 22, 23, 181, 22, 21, 183, 184, 22, 183, 21, 20, 21, 184, 19, 184, 185, 20, + 184, 19, 18, 186, 187, 19, 185, 186, 18, 19, 186, 17, 187, 188, 18, 187, 17, 16, 188, 189, 17, 188, 16, 16, 189, 15, 143, 144, 104, 110, 153, 154, 151, 152, 109, 68, 145, 61, 68, 61, + 152, 146, 103, 145, 83, 139, 74, 181, 140, 83, 23, 180, 181, 138, 137, 67, 98, 136, 97, 98, 97, 138, 135, 59, 136, 135, 136, 98, 66, 59, 135, 130, 129, 66, 74, 138, 67, 139, 98, 138, + 139, 138, 74, 99, 135, 98, 99, 98, 139, 134, 66, 135, 134, 135, 99, 73, 130, 66, 73, 66, 134, 131, 92, 130, 131, 130, 73, 93, 92, 131, 140, 99, 139, 140, 139, 83, 100, 134, 99, 100, + 99, 140, 133, 73, 134, 133, 134, 100, 84, 131, 73, 84, 73, 133, 132, 93, 131, 132, 131, 84, 94, 127, 93, 94, 93, 132, 128, 127, 94, 179, 133, 100, 180, 100, 140, 179, 100, 180, 178, + 84, 133, 178, 133, 179, 177, 132, 84, 177, 84, 178, 180, 140, 181, 176, 94, 132, 176, 132, 177, 175, 128, 94, 175, 94, 176, 174, 85, 128, 174, 128, 175, 30, 173, 174, 31, 173, 30, + 29, 174, 175, 30, 174, 29, 28, 175, 176, 29, 175, 28, 27, 176, 177, 28, 176, 27, 26, 177, 178, 27, 177, 26, 25, 178, 179, 26, 178, 25, 24, 179, 180, 25, 179, 24, 24, 180, 23, 79, 4, + 5, 79, 78, 4, 6, 79, 5, 123, 168, 161, 160, 78, 79, 124, 161, 160, 7, 196, 197, 196, 160, 197, 197, 160, 79, 160, 161, 78, 7, 197, 6, 162, 167, 122, 6, 197, 79, 85, 72, 128, 173, 32, + 85, 31, 32, 173, 173, 85, 174, 85, 32, 33, 66, 129, 59, 167, 170, 121, 167, 121, 122, 70, 63, 170, 70, 170, 167, 166, 171, 63, 123, 122, 168, 130, 91, 129, 92, 91, 130, 122, 169, + 168, 127, 65, 126, 72, 65, 127, 92, 125, 91, 161, 168, 71, 122, 121, 169, 170, 120, 121, 91, 90, 129, 78, 161, 71, 3, 78, 71, 71, 64, 2, 52, 129, 90, 59, 129, 52, 67, 60, 143, 138, + 97, 137, 170, 63, 56, 171, 56, 63, 169, 121, 57, 33, 34, 85, 72, 35, 65, 34, 35, 72, 125, 51, 91, 35, 36, 65, 91, 51, 90, 36, 37, 58, 58, 37, 51, 71, 2, 3, 64, 1, 2, 1, 64, 57, 57, + 0, 1, 87, 39, 40, 88, 42, 43, 88, 86, 41, 88, 41, 42, 0, 88, 43, 47, 88, 0, 86, 88, 113, 47, 119, 88, 119, 46, 88, 46, 113, 88, 50, 86, 113, 107, 86, 50, 44, 86, 107, 87, 41, 86, 41, + 87, 40, 101, 86, 44, 87, 86, 95, 101, 49, 86, 87, 38, 39, 49, 95, 86, 87, 95, 45, 87, 45, 89, 87, 89, 48, 87, 48, 38, 57, 47, 0, 120, 119, 47, 56, 46, 119, 56, 119, 120, 114, 113, + 46, 114, 46, 56, 55, 50, 113, 55, 113, 114, 108, 107, 50, 55, 108, 50, 54, 101, 44, 44, 107, 108, 54, 44, 108, 102, 49, 101, 102, 101, 54, 90, 48, 89, 53, 95, 49, 53, 49, 102, 96, + 45, 95, 96, 95, 53, 52, 89, 45, 52, 45, 96, 90, 89, 52, 171, 114, 56, 115, 114, 171, 172, 55, 114, 172, 114, 115, 54, 145, 102, 152, 54, 108, 61, 54, 152, 153, 109, 108, 55, 153, + 108, 152, 108, 109, 55, 62, 153, 172, 62, 55, 61, 145, 54, 102, 144, 53, 103, 102, 145, 103, 144, 102, 53, 137, 96, 60, 53, 144, 60, 137, 53, 96, 136, 52, 97, 96, 137, 97, 136, 96, + 69, 62, 172, 154, 153, 62, 110, 109, 153, 144, 103, 104, 143, 60, 144, 67, 137, 60, 120, 47, 57, 121, 120, 57, 64, 169, 57, 78, 3, 4, 51, 38, 48, 51, 48, 90, 37, 38, 51, 58, 51, 125, + 65, 36, 58, 120, 170, 56, 154, 62, 69, 116, 115, 171, 165, 172, 115, 69, 172, 165, 59, 52, 136, 126, 58, 125, 65, 58, 126, 168, 169, 64, 168, 64, 71, 85, 34, 72, 126, 125, 92, 93, + 126, 92, 127, 126, 93, 128, 72, 127 + ], + "vertices": [ + 1, 31, 39.72, 33.4, 1, 1, 31, 46.93, 34.38, 1, 1, 31, 52.37, 35.12, 1, 1, 31, 58.6, 36.08, 1, 4, 31, 66.62, 38.45, 0.9295, 36, 61.48, 0.37, 1e-05, 37, 40.07, 0.48, 0.00266, 38, 18.6, + 0.48, 0.06784, 4, 31, 70.87, 39.07, 0.79905, 36, 62.32, -3.84, 1e-05, 37, 40.92, -3.73, 0.00721, 38, 19.44, -3.73, 0.19373, 4, 31, 76.95, 40.59, 0.74731, 36, 64.15, -9.83, 0, 37, + 42.75, -9.72, 0.00973, 38, 21.27, -9.72, 0.24296, 4, 31, 76.59, 36.12, 0.54785, 36, 59.68, -9.71, 1e-05, 37, 38.27, -9.6, 0.02168, 38, 16.8, -9.6, 0.43046, 4, 31, 76.3, 32.42, + 0.43038, 36, 55.96, -9.61, 3e-05, 37, 34.56, -9.5, 0.03847, 38, 13.08, -9.5, 0.53112, 4, 31, 76.02, 29.01, 0.36035, 36, 52.54, -9.51, 9e-05, 37, 31.14, -9.41, 0.06275, 38, 9.66, + -9.41, 0.57681, 4, 31, 75.63, 24.06, 0.2889, 36, 47.58, -9.38, 0.00026, 37, 26.17, -9.27, 0.09917, 38, 4.7, -9.27, 0.61167, 4, 31, 75.3, 19.93, 0.22591, 36, 43.44, -9.26, 0.0007, 37, + 22.03, -9.16, 0.14876, 38, 0.56, -9.16, 0.62463, 4, 31, 75.15, 17.12, 0.17724, 36, 40.62, -9.26, 0.0017, 37, 19.22, -9.16, 0.21115, 38, -2.26, -9.16, 0.60991, 4, 31, 75.01, 14.5, + 0.14418, 36, 38, -9.26, 0.00385, 37, 16.6, -9.16, 0.28407, 38, -4.88, -9.16, 0.5679, 4, 31, 74.84, 11.26, 0.12448, 36, 34.76, -9.26, 0.00813, 37, 13.35, -9.16, 0.36326, 38, -8.12, + -9.16, 0.50413, 4, 31, 74.71, 8.86, 0.11438, 36, 32.35, -9.26, 0.016, 37, 10.95, -9.16, 0.44276, 38, -10.53, -9.16, 0.42686, 4, 31, 74.56, 6.02, 0.11006, 36, 29.51, -9.26, 0.02948, + 37, 8.11, -9.16, 0.51561, 38, -13.37, -9.16, 0.34486, 4, 31, 74.45, 3.76, 0.10858, 36, 27.25, -9.26, 0.05095, 37, 5.84, -9.16, 0.57474, 38, -15.63, -9.16, 0.26573, 4, 31, 74.31, + 1.27, 0.10802, 36, 24.75, -9.26, 0.08291, 37, 3.35, -9.16, 0.614, 38, -18.13, -9.16, 0.19506, 4, 31, 74.15, -1.8, 0.1074, 36, 21.68, -9.26, 0.12742, 37, 0.28, -9.16, 0.62906, 38, + -21.2, -9.16, 0.13612, 4, 31, 74.01, -4.59, 0.10634, 36, 18.89, -9.26, 0.18549, 37, -2.52, -9.16, 0.61812, 38, -23.99, -9.16, 0.09006, 4, 31, 73.87, -7.11, 0.10502, 36, 16.36, -9.26, + 0.25646, 37, -5.05, -9.16, 0.58221, 38, -26.52, -9.16, 0.05631, 4, 31, 73.75, -9.5, 0.10419, 36, 13.97, -9.26, 0.33753, 37, -7.43, -9.16, 0.52513, 38, -28.91, -9.16, 0.03316, 4, 31, + 73.61, -12.18, 0.10536, 36, 11.29, -9.26, 0.42349, 37, -10.12, -9.16, 0.45282, 38, -31.59, -9.16, 0.01833, 4, 31, 73.44, -15.42, 0.11098, 36, 8.04, -9.26, 0.50701, 37, -13.37, -9.16, + 0.37254, 38, -34.84, -9.16, 0.00948, 4, 31, 73.28, -18.35, 0.12436, 36, 5.11, -9.26, 0.57939, 37, -16.3, -9.16, 0.29168, 38, -37.77, -9.16, 0.00457, 4, 31, 73.13, -21.21, 0.149, 36, + 2.24, -9.26, 0.63222, 37, -19.16, -9.16, 0.21673, 38, -40.64, -9.16, 0.00205, 4, 31, 72.96, -24.4, 0.18726, 36, -0.96, -9.26, 0.65948, 37, -22.36, -9.16, 0.15241, 38, -43.84, -9.16, + 0.00085, 4, 31, 72.77, -28.17, 0.23866, 36, -4.73, -9.26, 0.65975, 37, -26.13, -9.16, 0.10126, 38, -47.61, -9.16, 0.00033, 4, 31, 72.57, -31.9, 0.29871, 36, -8.46, -9.26, 0.63741, + 37, -29.87, -9.16, 0.06376, 38, -51.34, -9.16, 0.00012, 4, 31, 72.37, -35.61, 0.35932, 36, -12.18, -9.26, 0.60181, 37, -33.58, -9.16, 0.03884, 38, -55.06, -9.16, 4e-05, 4, 31, 72.19, + -39.08, 0.49297, 36, -15.66, -9.26, 0.48586, 37, -37.06, -9.16, 0.02116, 38, -58.54, -9.16, 1e-05, 4, 31, 71.81, -46.35, 0.66969, 36, -22.93, -9.26, 0.32512, 37, -44.34, -9.16, + 0.00518, 38, -65.81, -9.16, 0, 4, 31, 66.73, -44.35, 0.73638, 36, -21.2, -4.09, 0.26049, 37, -42.61, -3.98, 0.00313, 38, -64.08, -3.98, 0, 4, 31, 61.93, -42.46, 0.74288, 36, -19.57, + 0.8, 0.25402, 37, -40.97, 0.91, 0.00309, 38, -62.45, 0.91, 1e-05, 2, 31, 56.84, -37.71, 0.86, 36, -15.1, 6.14, 0.14, 2, 31, 51.66, -35.24, 0.87418, 36, -12.89, 11.44, 0.12582, 1, 31, + 43.72, -35.29, 1, 1, 31, 38.22, -33.12, 1, 2, 31, -0.53, -12.83, 0.99965, 36, 6.74, 64.74, 0.00035, 2, 31, -0.21, -6.72, 0.9998, 36, 12.86, 64.74, 0.0002, 3, 31, 0.19, 0.77, 0.99981, + 36, 20.36, 64.74, 9e-05, 38, -22.52, 64.84, 0.0001, 3, 31, 0.56, 7.82, 0.99975, 36, 27.41, 64.74, 1e-05, 38, -15.47, 64.84, 0.00024, 2, 31, 0.88, 13.86, 0.99954, 38, -9.41, 64.84, + 0.00046, 4, 31, 39.9, 0.3, 0.88429, 36, 21.98, 25.05, 0.02526, 37, 0.57, 25.15, 0.06552, 38, -20.9, 25.15, 0.02493, 1, 31, 38.93, -18.93, 1, 4, 31, 39.81, 17.97, 0.94373, 36, 39.62, + 26.07, 0.00089, 37, 18.21, 26.18, 0.01419, 38, -3.26, 26.18, 0.04119, 1, 31, 39.76, 25.74, 1, 1, 31, 38.51, -27.3, 1, 4, 31, 39.4, -9.64, 0.88619, 36, 12.02, 25.03, 0.05505, 37, + -9.38, 25.13, 0.05102, 38, -30.86, 25.13, 0.00774, 4, 31, 39.86, 8.75, 0.89286, 36, 30.41, 25.54, 0.00746, 37, 9, 25.64, 0.04877, 38, -12.47, 25.64, 0.05092, 1, 31, 43.8, -29.15, 1, + 4, 31, 44.52, -19.83, 0.74343, 36, 2.11, 19.38, 0.19678, 37, -19.29, 19.48, 0.05726, 38, -40.77, 19.48, 0.00254, 4, 31, 44.96, -10.05, 0.58833, 36, 11.9, 19.46, 0.20061, 37, -9.5, + 19.56, 0.19026, 38, -30.98, 19.56, 0.0208, 4, 31, 45.31, -0.03, 0.58846, 36, 21.93, 19.63, 0.08112, 37, 0.53, 19.73, 0.24909, 38, -20.95, 19.73, 0.08133, 4, 31, 45.5, 8.76, 0.59817, + 36, 30.72, 19.91, 0.02026, 37, 9.32, 20.01, 0.18761, 38, -12.16, 20.01, 0.19395, 4, 31, 45.89, 18.3, 0.66183, 36, 40.27, 20.02, 0.00346, 37, 18.87, 20.13, 0.07957, 38, -2.61, 20.13, + 0.25514, 1, 31, 45.85, 27.54, 1, 4, 31, 49.71, -31.22, 0.84023, 36, -8.99, 13.6, 0.15068, 37, -30.39, 13.7, 0.00899, 38, -51.87, 13.7, 0.0001, 4, 31, 49.78, -20.68, 0.48016, 36, + 1.55, 14.09, 0.41733, 37, -19.86, 14.19, 0.10062, 38, -41.33, 14.19, 0.0019, 4, 31, 50.15, -10.44, 0.42576, 36, 11.79, 14.25, 0.28082, 37, -9.61, 14.36, 0.27628, 38, -31.09, 14.36, + 0.01714, 4, 31, 50.4, -0.34, 0.43345, 36, 21.89, 14.53, 0.09343, 37, 0.48, 14.63, 0.37698, 38, -20.99, 14.63, 0.09613, 4, 31, 50.91, 8.78, 0.43708, 36, 31.02, 14.51, 0.01603, 37, + 9.62, 14.61, 0.27127, 38, -11.86, 14.61, 0.27562, 4, 31, 50.97, 18.59, 0.51068, 36, 40.82, 14.96, 0.00179, 37, 19.41, 15.07, 0.09933, 38, -2.06, 15.07, 0.3882, 4, 31, 51.57, 29.24, + 0.94195, 36, 51.49, 14.92, 4e-05, 37, 30.08, 15.02, 0.00385, 38, 8.61, 15.02, 0.05416, 4, 31, 55.51, -33.25, 0.72549, 36, -10.71, 7.7, 0.2621, 37, -32.11, 7.81, 0.01235, 38, -53.59, + 7.81, 6e-05, 4, 31, 55.86, -21.65, 0.38729, 36, 0.89, 7.96, 0.4981, 37, -20.51, 8.06, 0.11341, 38, -41.99, 8.06, 0.0012, 4, 31, 55.96, -10.87, 0.32692, 36, 11.67, 8.42, 0.3274, 37, + -9.74, 8.53, 0.32983, 38, -31.21, 8.53, 0.01585, 4, 31, 56.03, -0.69, 0.33677, 36, 21.84, 8.89, 0.10146, 37, 0.43, 9, 0.45593, 38, -21.04, 9, 0.10584, 4, 31, 56.4, 8.8, 0.33839, 36, + 31.33, 9.02, 0.0144, 37, 9.93, 9.13, 0.32329, 38, -11.55, 9.13, 0.32392, 4, 31, 57.13, 19.32, 0.42143, 36, 41.87, 8.84, 0.00109, 37, 20.47, 8.95, 0.11176, 38, -1.01, 8.95, 0.46572, + 4, 31, 58.69, 31.45, 0.79569, 36, 54.07, 7.92, 5e-05, 37, 32.67, 8.03, 0.01091, 38, 11.19, 8.03, 0.19335, 4, 31, 62.21, -35.59, 0.66085, 36, -12.7, 0.88, 0.32566, 37, -34.1, 0.99, + 0.01346, 38, -55.58, 0.99, 3e-05, 4, 31, 62.66, -22.75, 0.31024, 36, 0.16, 1.11, 0.56299, 37, -21.25, 1.21, 0.12589, 38, -42.72, 1.21, 0.00089, 4, 31, 62.85, -11.38, 0.24349, 36, + 11.52, 1.52, 0.36477, 37, -9.89, 1.62, 0.37599, 38, -31.36, 1.62, 0.01574, 4, 31, 62.94, -1.11, 0.2525, 36, 21.78, 1.97, 0.10936, 37, 0.37, 2.08, 0.52284, 38, -21.1, 2.08, 0.1153, 4, + 31, 63.43, 8.82, 0.2544, 36, 31.72, 2, 0.01401, 37, 10.32, 2.11, 0.36809, 38, -11.16, 2.11, 0.3635, 4, 31, 63.63, 19.58, 0.3466, 36, 42.48, 2.36, 0.00077, 37, 21.07, 2.47, 0.1237, + 38, -0.4, 2.47, 0.52893, 4, 31, 65.17, 33.27, 0.69411, 36, 56.23, 1.55, 3e-05, 37, 34.83, 1.66, 0.01435, 38, 13.35, 1.66, 0.29151, 4, 31, 70.52, 34.86, 0.61986, 36, 58.1, -3.71, + 1e-05, 37, 36.69, -3.61, 0.01658, 38, 15.22, -3.61, 0.36355, 4, 31, 69.45, 19.61, 0.28549, 36, 42.81, -3.44, 0.00065, 37, 21.4, -3.34, 0.13463, 38, -0.07, -3.34, 0.57924, 4, 31, + 69.14, 8.84, 0.18483, 36, 32.04, -3.7, 0.01432, 37, 10.64, -3.59, 0.40541, 38, -10.84, -3.59, 0.39544, 4, 31, 68.83, -1.47, 0.18141, 36, 21.73, -3.93, 0.11681, 37, 0.32, -3.83, + 0.57764, 38, -21.15, -3.83, 0.12413, 4, 31, 68.1, -11.77, 0.17479, 36, 11.41, -3.74, 0.39444, 37, -10, -3.64, 0.41447, 38, -31.47, -3.64, 0.0163, 4, 31, 67.66, -23.55, 0.24784, 36, + -0.38, -3.92, 0.61396, 37, -21.79, -3.82, 0.13743, 38, -43.26, -3.82, 0.00077, 4, 31, 67.15, -37.32, 0.59732, 36, -14.16, -4.14, 0.38768, 37, -35.56, -4.03, 0.01499, 38, -57.04, + -4.03, 1e-05, 4, 31, 21.31, 0.52, 0.98403, 36, 21.22, 43.62, 0.00516, 37, -0.19, 43.73, 0.00609, 38, -21.66, 43.73, 0.00473, 3, 31, 11.68, -10.43, 0.98457, 36, 9.78, 52.66, 0.01421, + 37, -11.62, 52.77, 0.00123, 3, 31, 14.7, 11.48, 0.98807, 37, 10.41, 50.91, 0.00101, 38, -11.07, 50.91, 0.01092, 1, 31, 38.71, -23.44, 1, 4, 31, 44.14, -24.78, 0.93122, 36, -2.85, + 19.5, 0.05888, 37, -24.25, 19.61, 0.00959, 38, -45.73, 19.61, 0.0003, 4, 31, 49.74, -26.15, 0.67882, 36, -3.92, 13.83, 0.287, 37, -25.32, 13.94, 0.03374, 38, -46.8, 13.94, 0.00045, + 4, 31, 55.68, -27.73, 0.52353, 36, -5.19, 7.82, 0.4314, 37, -26.59, 7.93, 0.04479, 38, -48.07, 7.93, 0.00029, 4, 31, 62.43, -29.46, 0.41464, 36, -6.56, 0.99, 0.53292, 37, -27.96, + 1.1, 0.05226, 38, -49.44, 1.1, 0.00018, 4, 31, 67.4, -30.57, 0.35706, 36, -7.41, -4.03, 0.58638, 37, -28.81, -3.93, 0.05644, 38, -50.29, -3.93, 0.00012, 4, 31, 39.16, -14.42, + 0.88311, 36, 7.24, 25.02, 0.07338, 37, -14.17, 25.12, 0.03978, 38, -35.64, 25.12, 0.00372, 4, 31, 44.74, -15, 0.62555, 36, 6.96, 19.42, 0.24007, 37, -14.45, 19.52, 0.1259, 38, + -35.92, 19.52, 0.00848, 4, 31, 49.97, -15.49, 0.4342, 36, 6.74, 14.17, 0.37611, 37, -14.67, 14.27, 0.18375, 38, -36.14, 14.27, 0.00595, 4, 31, 55.91, -16.19, 0.33684, 36, 6.35, 8.19, + 0.44427, 37, -15.05, 8.3, 0.21425, 38, -36.53, 8.3, 0.00464, 4, 31, 62.76, -16.95, 0.25537, 36, 5.95, 1.32, 0.49872, 37, -15.45, 1.42, 0.24179, 38, -36.93, 1.42, 0.00413, 4, 31, + 67.88, -17.57, 0.18921, 36, 5.6, -3.83, 0.54119, 37, -15.8, -3.73, 0.26556, 38, -37.28, -3.73, 0.00404, 4, 31, 39.65, -4.74, 0.83361, 36, 16.93, 25.04, 0.05679, 37, -4.48, 25.14, + 0.08927, 38, -25.95, 25.14, 0.02033, 4, 31, 45.13, -5.18, 0.57797, 36, 16.78, 19.54, 0.13938, 37, -4.63, 19.65, 0.23843, 38, -26.1, 19.65, 0.04422, 4, 31, 50.27, -5.8, 0.42696, 36, + 16.43, 14.38, 0.17737, 37, -4.97, 14.48, 0.35156, 38, -26.45, 14.48, 0.04411, 4, 31, 56, -5.99, 0.33132, 36, 16.54, 8.65, 0.20059, 37, -4.86, 8.75, 0.42277, 38, -26.34, 8.75, + 0.04531, 4, 31, 62.89, -6.48, 0.24781, 36, 16.41, 1.73, 0.22055, 37, -4.99, 1.84, 0.48389, 38, -26.47, 1.84, 0.04775, 4, 31, 68.45, -6.83, 0.17763, 36, 16.35, -3.83, 0.23735, 37, + -5.05, -3.73, 0.53429, 38, -26.53, -3.73, 0.05074, 4, 31, 39.88, 4.33, 0.83746, 36, 26, 25.28, 0.02009, 37, 4.59, 25.39, 0.08772, 38, -16.88, 25.39, 0.05473, 4, 31, 45.41, 4.36, + 0.58276, 36, 26.32, 19.77, 0.04346, 37, 4.92, 19.87, 0.23645, 38, -16.56, 19.87, 0.13732, 4, 31, 50.66, 4.3, 0.43226, 36, 26.54, 14.52, 0.04191, 37, 5.13, 14.62, 0.34769, 38, -16.34, + 14.62, 0.17814, 4, 31, 56.21, 4.01, 0.33656, 36, 26.54, 8.96, 0.0422, 37, 5.14, 9.06, 0.41771, 38, -16.34, 9.06, 0.20353, 4, 31, 63.19, 4, 0.25264, 36, 26.89, 1.99, 0.04384, 37, + 5.49, 2.09, 0.47782, 38, -15.99, 2.09, 0.2257, 4, 31, 68.99, 3.91, 0.18189, 36, 27.11, -3.81, 0.04615, 37, 5.71, -3.71, 0.52741, 38, -15.77, -3.71, 0.24456, 4, 31, 39.83, 13, 0.8608, + 36, 34.66, 25.79, 0.00457, 37, 13.26, 25.89, 0.04889, 38, -8.22, 25.89, 0.08574, 4, 31, 45.67, 13.13, 0.60926, 36, 35.09, 19.96, 0.00894, 37, 13.69, 20.06, 0.13479, 38, -7.79, 20.06, + 0.247, 4, 31, 50.93, 13.5, 0.45377, 36, 35.74, 14.73, 0.00554, 37, 14.33, 14.83, 0.18027, 38, -7.14, 14.83, 0.36041, 4, 31, 56.75, 13.83, 0.35749, 36, 36.37, 8.94, 0.00417, 37, + 14.96, 9.04, 0.20976, 38, -6.51, 9.04, 0.42858, 4, 31, 63.53, 14.02, 0.27612, 36, 36.92, 2.18, 0.00359, 37, 15.52, 2.28, 0.23625, 38, -5.96, 2.28, 0.48404, 4, 31, 69.3, 14.3, + 0.20954, 36, 37.5, -3.57, 0.00344, 37, 16.1, -3.46, 0.25903, 38, -5.38, -3.46, 0.52799, 1, 31, 39.78, 21.93, 1, 4, 31, 45.87, 22.69, 0.82489, 36, 44.65, 20.27, 0.00083, 37, 23.25, + 20.37, 0.0268, 38, 1.77, 20.37, 0.14748, 4, 31, 51.28, 24.11, 0.64773, 36, 46.35, 14.94, 0.00052, 37, 24.95, 15.04, 0.04091, 38, 3.47, 15.04, 0.31084, 4, 31, 57.92, 25.42, 0.53225, + 36, 48.01, 8.38, 0.00029, 37, 26.6, 8.49, 0.04857, 38, 5.13, 8.49, 0.41889, 4, 31, 64.49, 27.19, 0.46955, 36, 50.12, 1.91, 0.00016, 37, 28.71, 2.02, 0.05201, 38, 7.24, 2.02, 0.47828, + 4, 31, 70.04, 27.97, 0.41589, 36, 51.19, -3.59, 0.0001, 37, 29.78, -3.48, 0.05591, 38, 8.31, -3.48, 0.5281, 4, 31, 49.73, -28.84, 0.72647, 36, -6.61, 13.71, 0.25381, 37, -28.01, + 13.81, 0.01954, 38, -49.49, 13.81, 0.00018, 4, 31, 55.59, -30.72, 0.64422, 36, -8.18, 7.76, 0.33291, 37, -29.58, 7.86, 0.02275, 38, -51.06, 7.86, 0.00011, 4, 31, 62.32, -32.6, + 0.55448, 36, -9.7, 0.94, 0.41902, 37, -31.11, 1.04, 0.02643, 38, -52.58, 1.04, 7e-05, 4, 31, 67.27, -34.24, 0.44397, 36, -11.07, -4.09, 0.52396, 37, -32.48, -3.99, 0.03202, 38, + -53.95, -3.99, 4e-05, 4, 31, 49.76, -23.57, 0.5094, 36, -1.34, 13.95, 0.4213, 37, -22.75, 14.06, 0.06847, 38, -44.22, 14.06, 0.00083, 4, 31, 55.77, -24.72, 0.42549, 36, -2.17, 7.89, + 0.49746, 37, -23.57, 8, 0.07648, 38, -45.05, 8, 0.00057, 4, 31, 62.54, -26.18, 0.35688, 36, -3.28, 1.05, 0.55926, 37, -24.68, 1.15, 0.08347, 38, -46.16, 1.15, 0.00039, 4, 31, 67.52, + -27.35, 0.29772, 36, -4.19, -3.98, 0.61133, 37, -25.59, -3.88, 0.09064, 38, -47.07, -3.88, 0.00031, 4, 31, 67.77, -20.66, 0.21136, 36, 2.51, -3.88, 0.59029, 37, -18.89, -3.77, + 0.19654, 38, -40.37, -3.77, 0.00182, 4, 31, 62.71, -19.85, 0.275, 36, 3.05, 1.21, 0.54348, 37, -18.35, 1.32, 0.17958, 38, -39.83, 1.32, 0.00194, 4, 31, 55.88, -19.28, 0.35002, 36, + 3.27, 8.06, 0.48643, 37, -18.14, 8.17, 0.16123, 38, -39.61, 8.17, 0.00232, 4, 31, 49.86, -18.41, 0.41881, 36, 3.82, 14.12, 0.43213, 37, -17.59, 14.23, 0.1461, 38, -39.06, 14.23, + 0.00296, 4, 31, 50.06, -13.03, 0.39313, 36, 9.2, 14.21, 0.35299, 37, -12.2, 14.31, 0.24433, 38, -33.68, 14.31, 0.00955, 4, 31, 55.94, -13.47, 0.32258, 36, 9.06, 8.31, 0.39406, 37, + -12.34, 8.41, 0.27473, 38, -33.82, 8.41, 0.00863, 4, 31, 62.8, -14.24, 0.24476, 36, 8.66, 1.42, 0.43744, 37, -12.74, 1.52, 0.30953, 38, -34.22, 1.52, 0.00827, 4, 31, 67.98, -14.86, + 0.17804, 36, 8.31, -3.79, 0.47328, 37, -13.09, -3.69, 0.3403, 38, -34.57, -3.69, 0.00838, 4, 31, 68.28, -9.21, 0.17525, 36, 13.97, -3.79, 0.31355, 37, -7.43, -3.69, 0.48153, 38, + -28.91, -3.69, 0.02968, 4, 31, 62.87, -9.04, 0.24396, 36, 13.85, 1.62, 0.29088, 37, -7.55, 1.73, 0.43695, 38, -29.03, 1.73, 0.02821, 4, 31, 55.98, -8.57, 0.32275, 36, 13.97, 8.53, + 0.26435, 37, -7.44, 8.63, 0.38552, 38, -28.91, 8.63, 0.02739, 4, 31, 50.21, -8.13, 0.39269, 36, 14.1, 14.31, 0.24007, 37, -7.3, 14.42, 0.33961, 38, -28.78, 14.42, 0.02763, 4, 31, + 50.33, -3.07, 0.39835, 36, 19.16, 14.45, 0.13664, 37, -2.25, 14.56, 0.3972, 38, -23.72, 14.56, 0.06781, 4, 31, 56.01, -3.43, 0.32898, 36, 19.1, 8.76, 0.14701, 37, -2.3, 8.87, + 0.45281, 38, -23.78, 8.87, 0.07119, 4, 31, 62.92, -3.84, 0.24968, 36, 19.05, 1.85, 0.15947, 37, -2.36, 1.96, 0.51456, 38, -23.83, 1.96, 0.07629, 4, 31, 68.64, -4.23, 0.17972, 36, + 18.97, -3.88, 0.17094, 37, -2.44, -3.78, 0.56767, 38, -23.91, -3.78, 0.08167, 4, 31, 68.91, 1.29, 0.18179, 36, 24.49, -3.87, 0.07557, 37, 3.08, -3.77, 0.56385, 38, -18.39, -3.77, + 0.17879, 4, 31, 63.06, 1.38, 0.25204, 36, 24.27, 1.98, 0.07119, 37, 2.86, 2.08, 0.51118, 38, -18.61, 2.08, 0.16559, 4, 31, 56.13, 1.74, 0.33157, 36, 24.26, 8.92, 0.0672, 37, 2.86, + 9.03, 0.44995, 38, -18.62, 9.03, 0.15128, 4, 31, 50.52, 1.76, 0.40101, 36, 23.99, 14.52, 0.06478, 37, 2.59, 14.63, 0.39483, 38, -18.89, 14.63, 0.13938, 4, 31, 50.78, 6.45, 0.401, 36, + 28.68, 14.51, 0.0258, 37, 7.28, 14.62, 0.33427, 38, -14.2, 14.62, 0.23894, 4, 31, 56.3, 6.29, 0.3309, 36, 28.82, 8.99, 0.02514, 37, 7.42, 9.09, 0.37908, 38, -14.06, 9.09, 0.26488, 4, + 31, 63.29, 6.06, 0.25155, 36, 28.96, 1.99, 0.02548, 37, 7.56, 2.1, 0.4293, 38, -13.92, 2.1, 0.29367, 4, 31, 69.06, 6.02, 0.18206, 36, 29.22, -3.76, 0.02652, 37, 7.82, -3.66, 0.47284, + 38, -13.66, -3.66, 0.31858, 4, 31, 69.22, 11.49, 0.19245, 36, 34.69, -3.64, 0.00724, 37, 13.29, -3.53, 0.3321, 38, -8.19, -3.53, 0.46821, 4, 31, 69.38, 17.15, 0.23948, 36, 40.35, + -3.5, 0.00153, 37, 18.94, -3.39, 0.19195, 38, -2.53, -3.39, 0.56704, 4, 31, 69.73, 23.61, 0.346, 36, 46.82, -3.51, 0.00026, 37, 25.42, -3.41, 0.08922, 38, 3.94, -3.41, 0.56452, 4, + 31, 70.27, 31.28, 0.48407, 36, 54.51, -3.65, 4e-05, 37, 33.11, -3.54, 0.03358, 38, 11.63, -3.54, 0.48231, 4, 31, 64.84, 30.32, 0.54501, 36, 53.26, 1.73, 7e-05, 37, 31.86, 1.83, + 0.03077, 38, 10.38, 1.83, 0.42415, 4, 31, 64.01, 22.94, 0.40266, 36, 45.85, 2.16, 0.00034, 37, 24.45, 2.27, 0.08247, 38, 2.97, 2.27, 0.51452, 4, 31, 63.58, 16.63, 0.30287, 36, 39.53, + 2.26, 0.00168, 37, 18.13, 2.37, 0.17579, 38, -3.35, 2.37, 0.51965, 4, 31, 63.48, 11.19, 0.25994, 36, 34.09, 2.08, 0.00726, 37, 12.69, 2.19, 0.30245, 38, -8.79, 2.19, 0.43035, 4, 31, + 56.56, 11.07, 0.3382, 36, 33.61, 8.98, 0.00776, 37, 12.21, 9.09, 0.26884, 38, -9.27, 9.09, 0.38519, 4, 31, 56.93, 16.38, 0.37706, 36, 38.93, 8.89, 0.00208, 37, 17.52, 9, 0.15821, 38, + -3.95, 9, 0.46265, 4, 31, 57.5, 22.2, 0.46779, 36, 44.77, 8.63, 0.00052, 37, 23.36, 8.73, 0.07582, 38, 1.89, 8.73, 0.45586, 4, 31, 58.3, 28.37, 0.65325, 36, 50.97, 8.16, 0.00012, 37, + 29.57, 8.26, 0.02541, 38, 8.09, 8.26, 0.32123, 4, 31, 51.42, 26.68, 0.75526, 36, 48.93, 14.93, 0.00017, 37, 27.52, 15.03, 0.02002, 38, 6.05, 15.03, 0.22455, 4, 31, 51.11, 21.17, + 0.52586, 36, 43.41, 14.95, 0.00082, 37, 22, 15.06, 0.07106, 38, 0.53, 15.06, 0.40226, 4, 31, 50.95, 15.93, 0.44455, 36, 38.16, 14.84, 0.00273, 37, 16.76, 14.94, 0.1436, 38, -4.72, + 14.94, 0.40912, 4, 31, 50.92, 10.61, 0.40864, 36, 32.85, 14.59, 0.0088, 37, 11.45, 14.7, 0.23945, 38, -10.03, 14.7, 0.34311, 4, 31, 69.38, -38.1, 0.52059, 36, -14.82, -6.4, 0.45917, + 37, -36.22, -6.3, 0.02022, 38, -57.7, -6.3, 1e-05, 4, 31, 69.44, -34.82, 0.37517, 36, -11.54, -6.29, 0.58803, 37, -32.95, -6.19, 0.03676, 38, -54.42, -6.19, 4e-05, 4, 31, 69.57, + -31.13, 0.31655, 36, -7.85, -6.23, 0.62281, 37, -29.26, -6.13, 0.06054, 38, -50.73, -6.13, 0.00011, 4, 31, 69.74, -27.7, 0.25662, 36, -4.41, -6.22, 0.64624, 37, -25.82, -6.11, + 0.09684, 38, -47.29, -6.11, 0.0003, 4, 31, 69.8, -23.9, 0.20542, 36, -0.61, -6.08, 0.64718, 37, -22.02, -5.97, 0.14662, 38, -43.49, -5.97, 0.00077, 4, 31, 69.96, -20.88, 0.16774, 36, + 2.4, -6.08, 0.62093, 37, -19, -5.97, 0.20946, 38, -40.48, -5.97, 0.00187, 4, 31, 70.09, -17.89, 0.14406, 36, 5.4, -6.05, 0.56885, 37, -16, -5.95, 0.28288, 38, -37.48, -5.95, 0.00421, + 4, 31, 70.25, -15.09, 0.13169, 36, 8.2, -6.07, 0.49722, 37, -13.21, -5.96, 0.36227, 38, -34.68, -5.96, 0.00882, 4, 31, 70.5, -11.95, 0.12708, 36, 11.36, -6.14, 0.41453, 37, -10.05, + -6.04, 0.44117, 38, -31.52, -6.04, 0.01722, 4, 31, 70.58, -9.33, 0.12668, 36, 13.97, -6.1, 0.32958, 37, -7.43, -5.99, 0.51233, 38, -28.91, -5.99, 0.03141, 4, 31, 70.75, -6.95, + 0.12812, 36, 16.36, -6.14, 0.24965, 37, -5.05, -6.03, 0.56851, 38, -26.52, -6.03, 0.05372, 4, 31, 71, -4.39, 0.12979, 36, 18.93, -6.25, 0.1799, 37, -2.47, -6.14, 0.60387, 38, -23.95, + -6.14, 0.08644, 4, 31, 71.07, -1.61, 0.13105, 36, 21.71, -6.18, 0.12302, 37, 0.3, -6.07, 0.61461, 38, -21.17, -6.07, 0.13132, 4, 31, 71.18, 1.28, 0.13159, 36, 24.6, -6.14, 0.07962, + 37, 3.19, -6.03, 0.5998, 38, -18.28, -6.03, 0.18899, 4, 31, 71.31, 3.85, 0.13189, 36, 27.17, -6.13, 0.04862, 37, 5.76, -6.02, 0.56113, 38, -15.71, -6.02, 0.25837, 4, 31, 71.51, 6.02, + 0.13282, 36, 29.35, -6.21, 0.02792, 37, 7.95, -6.1, 0.50297, 38, -13.53, -6.1, 0.33629, 4, 31, 71.56, 8.85, 0.13637, 36, 32.18, -6.12, 0.01503, 37, 10.77, -6.01, 0.43134, 38, -10.7, + -6.01, 0.41726, 4, 31, 71.75, 11.39, 0.14539, 36, 34.72, -6.17, 0.00757, 37, 13.32, -6.07, 0.35328, 38, -8.16, -6.07, 0.49376, 4, 31, 71.87, 14.39, 0.16393, 36, 37.73, -6.13, + 0.00355, 37, 16.32, -6.03, 0.27561, 38, -5.15, -6.03, 0.55691, 4, 31, 72.16, 17.13, 0.19585, 36, 40.48, -6.28, 0.00155, 37, 19.08, -6.18, 0.20422, 38, -2.4, -6.18, 0.59837, 4, 31, + 72.25, 19.76, 0.24372, 36, 43.11, -6.23, 0.00063, 37, 21.71, -6.13, 0.14329, 38, 0.23, -6.13, 0.61235, 4, 31, 72.47, 23.82, 0.30631, 36, 47.17, -6.24, 0.00024, 37, 25.77, -6.14, + 0.09501, 38, 4.29, -6.14, 0.59844, 4, 31, 72.61, 28.41, 0.3775, 36, 51.77, -6.14, 9e-05, 37, 30.37, -6.03, 0.05972, 38, 8.89, -6.03, 0.5627, 4, 31, 72.88, 31.77, 0.44548, 36, 55.14, + -6.23, 3e-05, 37, 33.74, -6.13, 0.03652, 38, 12.26, -6.13, 0.51797, 4, 31, 73.38, 35.45, 0.56131, 36, 58.84, -6.53, 1e-05, 37, 37.44, -6.43, 0.02128, 38, 15.96, -6.43, 0.41739 + ], + "hull": 44, + "edges": [ + 78, 76, 86, 0, 78, 80, 80, 82, 82, 84, 84, 86, 0, 94, 76, 96, 62, 64, 74, 76, 102, 96, 74, 102, 104, 90, 106, 98, 108, 88, 110, 100, 112, 92, 114, 94, 2, 0, 114, 2, 72, 74, 116, 102, + 72, 116, 118, 104, 120, 106, 122, 108, 124, 110, 126, 112, 128, 114, 4, 2, 128, 4, 70, 72, 130, 116, 70, 130, 132, 118, 134, 120, 136, 122, 138, 124, 140, 126, 142, 128, 8, 6, 6, 4, + 142, 6, 68, 70, 144, 130, 68, 144, 146, 132, 148, 134, 150, 136, 152, 138, 154, 140, 156, 142, 156, 8, 8, 10, 10, 12, 12, 158, 158, 156, 10, 158, 160, 154, 162, 152, 164, 150, 166, + 148, 168, 146, 170, 144, 64, 66, 66, 68, 170, 66, 82, 172, 172, 88, 98, 172, 172, 100, 80, 174, 174, 90, 96, 174, 84, 176, 176, 92, 94, 176, 90, 178, 178, 96, 102, 180, 180, 104, + 178, 180, 180, 182, 182, 184, 184, 186, 186, 188, 90, 190, 190, 98, 104, 192, 192, 106, 190, 192, 192, 194, 194, 196, 196, 198, 198, 200, 88, 202, 202, 98, 106, 204, 204, 108, 202, + 204, 204, 206, 206, 208, 208, 210, 210, 212, 88, 214, 214, 100, 108, 216, 216, 110, 214, 216, 216, 218, 218, 220, 220, 222, 222, 224, 92, 226, 226, 100, 110, 228, 228, 112, 226, 228, + 228, 230, 230, 232, 232, 234, 234, 236, 92, 238, 238, 94, 112, 240, 240, 114, 238, 240, 240, 242, 242, 244, 244, 246, 246, 248, 12, 14, 170, 64, 116, 250, 250, 182, 130, 252, 252, + 184, 250, 252, 144, 254, 254, 186, 252, 254, 170, 256, 256, 188, 254, 256, 58, 60, 60, 62, 118, 258, 258, 182, 132, 260, 260, 184, 258, 260, 146, 262, 262, 186, 260, 262, 168, 264, + 264, 188, 262, 264, 54, 56, 56, 58, 50, 52, 52, 54, 168, 266, 266, 200, 146, 268, 268, 198, 266, 268, 132, 270, 270, 196, 268, 270, 118, 272, 272, 194, 270, 272, 120, 274, 274, 194, + 134, 276, 276, 196, 274, 276, 148, 278, 278, 198, 276, 278, 166, 280, 280, 200, 278, 280, 46, 48, 48, 50, 42, 44, 44, 46, 166, 282, 282, 212, 148, 284, 284, 210, 282, 284, 134, 286, + 286, 208, 284, 286, 120, 288, 288, 206, 286, 288, 122, 290, 290, 206, 136, 292, 292, 208, 290, 292, 150, 294, 294, 210, 292, 294, 164, 296, 296, 212, 294, 296, 38, 40, 40, 42, 34, + 36, 36, 38, 164, 298, 298, 224, 150, 300, 300, 222, 298, 300, 136, 302, 302, 220, 300, 302, 122, 304, 304, 218, 302, 304, 124, 306, 306, 218, 138, 308, 308, 220, 306, 308, 152, 310, + 310, 222, 308, 310, 162, 312, 312, 224, 310, 312, 30, 32, 32, 34, 26, 28, 28, 30, 162, 314, 314, 236, 22, 24, 24, 26, 160, 316, 316, 236, 18, 20, 20, 22, 160, 318, 318, 248, 14, 16, + 16, 18, 158, 320, 320, 248, 156, 322, 322, 246, 320, 322, 154, 324, 324, 246, 318, 324, 154, 326, 326, 234, 316, 326, 152, 328, 328, 234, 314, 328, 138, 330, 330, 232, 328, 330, 140, + 332, 332, 232, 326, 332, 140, 334, 334, 244, 324, 334, 142, 336, 336, 244, 322, 336, 128, 338, 338, 242, 336, 338, 126, 340, 340, 242, 334, 340, 126, 342, 342, 230, 332, 342, 124, + 344, 344, 230, 330, 344, 62, 346, 346, 170, 60, 348, 348, 256, 346, 348, 58, 350, 350, 188, 348, 350, 56, 352, 352, 264, 350, 352, 54, 354, 354, 168, 352, 354, 52, 356, 356, 266, + 354, 356, 50, 358, 358, 200, 356, 358, 48, 360, 360, 280, 358, 360, 46, 362, 362, 166, 360, 362, 44, 364, 364, 282, 362, 364, 42, 366, 366, 212, 364, 366, 40, 368, 368, 296, 366, + 368, 38, 370, 370, 164, 368, 370, 36, 372, 372, 298, 370, 372, 34, 374, 374, 224, 372, 374, 32, 376, 376, 312, 374, 376, 30, 378, 378, 162, 376, 378, 28, 380, 380, 314, 378, 380, 26, + 382, 382, 236, 380, 382, 24, 384, 384, 316, 382, 384, 22, 386, 386, 160, 384, 386, 20, 388, 388, 318, 386, 388, 18, 390, 390, 248, 388, 390, 16, 392, 392, 320, 390, 392, 14, 394, + 394, 158, 392, 394 + ], + "width": 82.3529411764706, + "height": 80.0, + "path": "summer-as-lv2.ear-right-bubble", + "x": 0.32352941176470296, + "y": 0.0 + } + }, + "ear-right-bubble-02": { + "ear-right-bubble": { + "type": "mesh", + "uvs": [ + 0.93928, 0.50958, 0.95558, 0.59885, 0.96791, 0.66638, 0.98006, 0.73289, 1, 0.84205, 1, 0.89818, 1, 0.9625, 0.9567, 0.9625, 0.9208, 0.9625, 0.88771, 0.9625, 0.83969, 0.9625, 0.79967, + 0.9625, 0.76574, 0.9625, 0.73418, 0.9625, 0.69508, 0.9625, 0.6661, 0.9625, 0.6319, 0.9625, 0.6046, 0.9625, 0.57454, 0.9625, 0.53755, 0.9625, 0.50387, 0.9625, 0.47341, 0.9625, + 0.44466, 0.9625, 0.41233, 0.9625, 0.37317, 0.9625, 0.33787, 0.9625, 0.30333, 0.9625, 0.2648, 0.9625, 0.21937, 0.9625, 0.17434, 0.9625, 0.12959, 0.9625, 0.08769, 0.9625, 0, 0.9625, + 0.02085, 0.89779, 0.04055, 0.83664, 0.06626, 0.75682, 0.08854, 0.68766, 0.11527, 0.60468, 0.13788, 0.53451, 0.35753, 0.0375, 0.43128, 0.0375, 0.52161, 0.0375, 0.60662, 0.0375, + 0.67954, 0.0375, 0.54109, 0.5336, 0.30907, 0.53412, 0.75362, 0.52077, 0.84707, 0.51514, 0.2081, 0.53435, 0.42115, 0.53387, 0.64269, 0.52747, 0.1892, 0.60156, 0.3018, 0.60447, + 0.41972, 0.60346, 0.54053, 0.60135, 0.64648, 0.59785, 0.76151, 0.59644, 0.87262, 0.58988, 0.16806, 0.67676, 0.29497, 0.67061, 0.41838, 0.66857, 0.54, 0.66508, 0.65011, 0.66538, + 0.7681, 0.65967, 0.89666, 0.66021, 0.14733, 0.75044, 0.28705, 0.74721, 0.41688, 0.74143, 0.53942, 0.73556, 0.6538, 0.73393, 0.7757, 0.7326, 0.91933, 0.7265, 0.12337, 0.83566, 0.2782, + 0.83283, 0.4151, 0.82771, 0.53871, 0.82207, 0.65852, 0.82169, 0.7847, 0.8189, 0.95379, 0.82732, 0.97627, 0.89309, 0.79208, 0.88971, 0.66236, 0.89294, 0.5381, 0.89586, 0.41375, + 0.89349, 0.2717, 0.89571, 0.10571, 0.89844, 0.53197, 0.30141, 0.39415, 0.1884, 0.65961, 0.2117, 0.25473, 0.53425, 0.24202, 0.60293, 0.22911, 0.6738, 0.21379, 0.7489, 0.19729, + 0.83431, 0.18704, 0.8971, 0.36352, 0.534, 0.36013, 0.60397, 0.35748, 0.66957, 0.35288, 0.74428, 0.34802, 0.83022, 0.34383, 0.89458, 0.48024, 0.53373, 0.47847, 0.60244, 0.47433, + 0.66696, 0.47563, 0.73861, 0.47402, 0.82502, 0.47337, 0.89463, 0.58955, 0.53067, 0.59344, 0.5996, 0.59605, 0.66523, 0.5961, 0.73475, 0.60032, 0.82187, 0.60296, 0.89434, 0.69391, + 0.52438, 0.69915, 0.59721, 0.70691, 0.66263, 0.71206, 0.7333, 0.71954, 0.82034, 0.72813, 0.8913, 0.80125, 0.5179, 0.81428, 0.59333, 0.8348, 0.65995, 0.84793, 0.72953, 0.87862, + 0.82358, 0.89305, 0.89156, 0.19669, 0.67537, 0.17782, 0.74974, 0.1594, 0.835, 0.1429, 0.89783, 0.26012, 0.6723, 0.25017, 0.74806, 0.23685, 0.83359, 0.22589, 0.89647, 0.30659, + 0.89517, 0.3131, 0.83153, 0.31569, 0.74593, 0.32231, 0.67016, 0.38717, 0.66908, 0.38553, 0.74282, 0.38068, 0.829, 0.37648, 0.89407, 0.44462, 0.89408, 0.44322, 0.82643, 0.44458, + 0.7401, 0.44621, 0.66777, 0.50711, 0.66602, 0.50646, 0.73714, 0.50582, 0.82357, 0.50482, 0.89523, 0.57134, 0.89508, 0.5687, 0.82197, 0.56865, 0.73514, 0.5654, 0.66515, 0.62192, + 0.6653, 0.6236, 0.73436, 0.62525, 0.8218, 0.62839, 0.89374, 0.69427, 0.89215, 0.76244, 0.89045, 0.84047, 0.89059, 0.93306, 0.89229, 0.91732, 0.8255, 0.82617, 0.82097, 0.75013, + 0.81967, 0.6863, 0.82108, 0.68017, 0.73364, 0.74166, 0.73297, 0.80979, 0.73115, 0.88285, 0.72805, 0.86581, 0.66008, 0.79931, 0.6598, 0.73613, 0.66121, 0.67214, 0.66431, 0.09776, + 0.92671, 0.13724, 0.92534, 0.1817, 0.92459, 0.22313, 0.92439, 0.26892, 0.92268, 0.30526, 0.92265, 0.34139, 0.92236, 0.3751, 0.92252, 0.41313, 0.92351, 0.44464, 0.92289, 0.47339, + 0.92339, 0.5044, 0.9248, 0.53787, 0.92389, 0.57268, 0.92341, 0.60366, 0.9233, 0.62995, 0.92432, 0.66398, 0.92316, 0.69464, 0.92383, 0.73085, 0.92333, 0.76403, 0.92521, 0.79572, + 0.92461, 0.84011, 0.92404, 0.89075, 0.92209, 0.92774, 0.92274, 0.96706, 0.92576 + ], + "triangles": [ + 166, 63, 70, 116, 171, 166, 165, 115, 116, 77, 70, 167, 163, 166, 70, 163, 70, 77, 117, 116, 166, 117, 166, 163, 77, 167, 162, 164, 165, 116, 164, 116, 117, 76, 69, 165, 76, 165, + 164, 162, 122, 123, 80, 77, 162, 158, 163, 77, 158, 77, 80, 159, 162, 123, 80, 162, 159, 118, 117, 163, 118, 163, 158, 124, 123, 161, 159, 123, 124, 157, 164, 117, 157, 117, 118, 81, + 76, 164, 81, 164, 157, 195, 159, 124, 196, 124, 160, 195, 124, 196, 189, 81, 157, 191, 118, 158, 190, 157, 118, 190, 118, 191, 189, 157, 190, 159, 193, 80, 194, 159, 195, 194, 193, + 159, 192, 158, 80, 192, 80, 193, 191, 158, 192, 15, 189, 190, 14, 190, 191, 15, 190, 14, 13, 191, 192, 14, 191, 13, 12, 192, 193, 13, 192, 12, 11, 193, 194, 12, 193, 11, 10, 11, 194, + 9, 194, 195, 10, 194, 9, 8, 195, 196, 9, 195, 8, 8, 196, 7, 151, 109, 110, 68, 152, 151, 146, 145, 68, 104, 103, 146, 155, 154, 69, 155, 69, 76, 111, 110, 154, 111, 154, 155, 150, + 151, 110, 150, 110, 111, 68, 151, 150, 75, 146, 68, 75, 68, 150, 147, 104, 146, 147, 146, 75, 105, 143, 104, 105, 104, 147, 142, 67, 143, 142, 143, 105, 74, 67, 142, 156, 155, 76, + 156, 76, 81, 106, 141, 142, 74, 142, 141, 83, 74, 141, 112, 111, 155, 112, 155, 156, 105, 106, 142, 149, 150, 111, 149, 111, 112, 148, 105, 147, 106, 105, 148, 82, 75, 150, 82, 148, + 147, 147, 75, 82, 150, 149, 82, 182, 141, 106, 187, 112, 156, 183, 106, 148, 182, 106, 183, 186, 149, 112, 186, 112, 187, 182, 181, 83, 182, 83, 141, 185, 148, 82, 185, 82, 149, 185, + 149, 186, 188, 156, 81, 188, 81, 189, 187, 156, 188, 184, 183, 148, 184, 148, 185, 22, 182, 183, 181, 182, 22, 23, 181, 22, 21, 183, 184, 22, 183, 21, 20, 21, 184, 19, 184, 185, 20, + 184, 19, 18, 186, 187, 19, 185, 186, 18, 19, 186, 17, 187, 188, 18, 187, 17, 16, 188, 189, 17, 188, 16, 16, 189, 15, 143, 144, 104, 110, 153, 154, 151, 152, 109, 68, 145, 61, 68, 61, + 152, 146, 103, 145, 83, 139, 74, 181, 140, 83, 23, 180, 181, 138, 137, 67, 98, 136, 97, 98, 97, 138, 135, 59, 136, 135, 136, 98, 66, 59, 135, 130, 129, 66, 74, 138, 67, 139, 98, 138, + 139, 138, 74, 99, 135, 98, 99, 98, 139, 134, 66, 135, 134, 135, 99, 73, 130, 66, 73, 66, 134, 131, 92, 130, 131, 130, 73, 93, 92, 131, 140, 99, 139, 140, 139, 83, 100, 134, 99, 100, + 99, 140, 133, 73, 134, 133, 134, 100, 84, 131, 73, 84, 73, 133, 132, 93, 131, 132, 131, 84, 94, 127, 93, 94, 93, 132, 128, 127, 94, 179, 133, 100, 180, 100, 140, 179, 100, 180, 178, + 84, 133, 178, 133, 179, 177, 132, 84, 177, 84, 178, 180, 140, 181, 176, 94, 132, 176, 132, 177, 175, 128, 94, 175, 94, 176, 174, 85, 128, 174, 128, 175, 30, 173, 174, 31, 173, 30, + 29, 174, 175, 30, 174, 29, 28, 175, 176, 29, 175, 28, 27, 176, 177, 28, 176, 27, 26, 177, 178, 27, 177, 26, 25, 178, 179, 26, 178, 25, 24, 179, 180, 25, 179, 24, 24, 180, 23, 79, 4, + 5, 79, 78, 4, 6, 79, 5, 123, 168, 161, 160, 78, 79, 124, 161, 160, 7, 196, 197, 196, 160, 197, 197, 160, 79, 160, 161, 78, 7, 197, 6, 162, 167, 122, 6, 197, 79, 85, 72, 128, 173, 32, + 85, 31, 32, 173, 173, 85, 174, 85, 32, 33, 66, 129, 59, 167, 170, 121, 167, 121, 122, 70, 63, 170, 70, 170, 167, 166, 171, 63, 123, 122, 168, 130, 91, 129, 92, 91, 130, 122, 169, + 168, 127, 65, 126, 72, 65, 127, 92, 125, 91, 161, 168, 71, 122, 121, 169, 170, 120, 121, 91, 90, 129, 78, 161, 71, 3, 78, 71, 71, 64, 2, 52, 129, 90, 59, 129, 52, 67, 60, 143, 138, + 97, 137, 170, 63, 56, 171, 56, 63, 169, 121, 57, 33, 34, 85, 72, 35, 65, 34, 35, 72, 125, 51, 91, 35, 36, 65, 91, 51, 90, 36, 37, 58, 58, 37, 51, 71, 2, 3, 64, 1, 2, 1, 64, 57, 57, + 0, 1, 87, 39, 40, 88, 42, 43, 88, 86, 41, 88, 41, 42, 0, 88, 43, 47, 88, 0, 86, 88, 113, 47, 119, 88, 119, 46, 88, 46, 113, 88, 50, 86, 113, 107, 86, 50, 44, 86, 107, 87, 41, 86, 41, + 87, 40, 101, 86, 44, 87, 86, 95, 101, 49, 86, 87, 38, 39, 49, 95, 86, 87, 95, 45, 87, 45, 89, 87, 89, 48, 87, 48, 38, 57, 47, 0, 120, 119, 47, 56, 46, 119, 56, 119, 120, 114, 113, + 46, 114, 46, 56, 55, 50, 113, 55, 113, 114, 108, 107, 50, 55, 108, 50, 54, 101, 44, 44, 107, 108, 54, 44, 108, 102, 49, 101, 102, 101, 54, 90, 48, 89, 53, 95, 49, 53, 49, 102, 96, + 45, 95, 96, 95, 53, 52, 89, 45, 52, 45, 96, 90, 89, 52, 171, 114, 56, 115, 114, 171, 172, 55, 114, 172, 114, 115, 54, 145, 102, 152, 54, 108, 61, 54, 152, 153, 109, 108, 55, 153, + 108, 152, 108, 109, 55, 62, 153, 172, 62, 55, 61, 145, 54, 102, 144, 53, 103, 102, 145, 103, 144, 102, 53, 137, 96, 60, 53, 144, 60, 137, 53, 96, 136, 52, 97, 96, 137, 97, 136, 96, + 69, 62, 172, 154, 153, 62, 110, 109, 153, 144, 103, 104, 143, 60, 144, 67, 137, 60, 120, 47, 57, 121, 120, 57, 64, 169, 57, 78, 3, 4, 51, 38, 48, 51, 48, 90, 37, 38, 51, 58, 51, 125, + 65, 36, 58, 120, 170, 56, 154, 62, 69, 116, 115, 171, 165, 172, 115, 69, 172, 165, 59, 52, 136, 126, 58, 125, 65, 58, 126, 168, 169, 64, 168, 64, 71, 85, 34, 72, 126, 125, 92, 93, + 126, 92, 127, 126, 93, 128, 72, 127 + ], + "vertices": [ + 1, 42, 41.12, 33.33, 1, 1, 42, 48.32, 34.31, 1, 1, 42, 53.77, 35.04, 1, 1, 42, 60, 36.01, 1, 4, 42, 68.02, 38.37, 0.9295, 43, 61.47, -1.03, 1e-05, 44, 40.07, -0.92, 0.00266, 45, + 18.6, -0.92, 0.06784, 4, 42, 72.27, 39, 0.79905, 43, 62.32, -5.24, 1e-05, 44, 40.92, -5.13, 0.00721, 45, 19.44, -5.13, 0.19373, 4, 42, 78.35, 40.51, 0.74731, 43, 64.15, -11.23, 0, + 44, 42.75, -11.12, 0.00973, 45, 21.27, -11.12, 0.24296, 4, 42, 77.99, 36.05, 0.54785, 43, 59.68, -11.11, 1e-05, 44, 38.27, -11, 0.02168, 45, 16.8, -11, 0.43046, 4, 42, 77.69, 32.35, + 0.43038, 43, 55.96, -11, 3e-05, 44, 34.56, -10.9, 0.03847, 45, 13.08, -10.9, 0.53112, 4, 42, 77.42, 28.93, 0.36035, 43, 52.54, -10.91, 9e-05, 44, 31.14, -10.81, 0.06275, 45, 9.66, + -10.81, 0.57681, 4, 42, 77.02, 23.98, 0.2889, 43, 47.58, -10.78, 0.00026, 44, 26.17, -10.67, 0.09917, 45, 4.7, -10.67, 0.61167, 4, 42, 76.69, 19.85, 0.22591, 43, 43.44, -10.66, + 0.0007, 44, 22.03, -10.56, 0.14876, 45, 0.56, -10.56, 0.62463, 4, 42, 76.55, 17.04, 0.17724, 43, 40.62, -10.66, 0.0017, 44, 19.22, -10.56, 0.21115, 45, -2.26, -10.56, 0.60991, 4, 42, + 76.41, 14.43, 0.14418, 43, 38, -10.66, 0.00385, 44, 16.6, -10.56, 0.28407, 45, -4.88, -10.56, 0.5679, 4, 42, 76.24, 11.19, 0.12448, 43, 34.76, -10.66, 0.00813, 44, 13.35, -10.56, + 0.36326, 45, -8.12, -10.56, 0.50413, 4, 42, 76.11, 8.78, 0.11438, 43, 32.35, -10.66, 0.016, 44, 10.95, -10.56, 0.44276, 45, -10.53, -10.56, 0.42686, 4, 42, 75.96, 5.95, 0.11006, 43, + 29.51, -10.66, 0.02948, 44, 8.11, -10.56, 0.51561, 45, -13.37, -10.56, 0.34486, 4, 42, 75.84, 3.69, 0.10858, 43, 27.25, -10.66, 0.05095, 44, 5.84, -10.56, 0.57474, 45, -15.63, + -10.56, 0.26573, 4, 42, 75.71, 1.19, 0.10802, 43, 24.75, -10.66, 0.08291, 44, 3.35, -10.56, 0.614, 45, -18.13, -10.56, 0.19506, 4, 42, 75.55, -1.87, 0.1074, 43, 21.68, -10.66, + 0.12742, 44, 0.28, -10.56, 0.62906, 45, -21.2, -10.56, 0.13612, 4, 42, 75.4, -4.66, 0.10634, 43, 18.89, -10.66, 0.18549, 44, -2.52, -10.56, 0.61812, 45, -23.99, -10.56, 0.09006, 4, + 42, 75.27, -7.19, 0.10502, 43, 16.36, -10.66, 0.25646, 44, -5.05, -10.56, 0.58221, 45, -26.52, -10.56, 0.05631, 4, 42, 75.14, -9.57, 0.10419, 43, 13.97, -10.66, 0.33753, 44, -7.43, + -10.56, 0.52513, 45, -28.91, -10.56, 0.03316, 4, 42, 75, -12.25, 0.10536, 43, 11.29, -10.66, 0.42349, 44, -10.12, -10.56, 0.45282, 45, -31.59, -10.56, 0.01833, 4, 42, 74.83, -15.5, + 0.11098, 43, 8.04, -10.66, 0.50701, 44, -13.37, -10.56, 0.37254, 45, -34.84, -10.56, 0.00948, 4, 42, 74.68, -18.42, 0.12436, 43, 5.11, -10.66, 0.57939, 44, -16.3, -10.56, 0.29168, + 45, -37.77, -10.56, 0.00457, 4, 42, 74.53, -21.28, 0.149, 43, 2.24, -10.66, 0.63222, 44, -19.16, -10.56, 0.21673, 45, -40.64, -10.56, 0.00205, 4, 42, 74.36, -24.48, 0.18726, 43, + -0.96, -10.66, 0.65948, 44, -22.36, -10.56, 0.15241, 45, -43.84, -10.56, 0.00085, 4, 42, 74.16, -28.24, 0.23866, 43, -4.73, -10.66, 0.65975, 44, -26.13, -10.56, 0.10126, 45, -47.61, + -10.56, 0.00033, 4, 42, 73.97, -31.98, 0.29871, 43, -8.46, -10.66, 0.63741, 44, -29.87, -10.56, 0.06376, 45, -51.34, -10.56, 0.00012, 4, 42, 73.77, -35.69, 0.35932, 43, -12.18, + -10.66, 0.60181, 44, -33.58, -10.56, 0.03884, 45, -55.06, -10.56, 4e-05, 4, 42, 73.59, -39.16, 0.49297, 43, -15.66, -10.66, 0.48586, 44, -37.06, -10.56, 0.02116, 45, -58.54, -10.56, + 1e-05, 4, 42, 73.2, -46.43, 0.66969, 43, -22.93, -10.66, 0.32512, 44, -44.34, -10.56, 0.00518, 45, -65.81, -10.56, 0, 4, 42, 68.13, -44.43, 0.73638, 43, -21.2, -5.49, 0.26049, 44, + -42.61, -5.38, 0.00313, 45, -64.08, -5.38, 0, 4, 42, 63.33, -42.54, 0.74288, 43, -19.57, -0.59, 0.25402, 44, -40.97, -0.49, 0.00309, 45, -62.45, -0.49, 1e-05, 2, 42, 57.6, -38.81, + 0.86, 43, -16.15, 5.32, 0.14, 2, 42, 52.73, -34.94, 0.87418, 43, -12.54, 10.39, 0.12582, 1, 42, 45.12, -35.37, 1, 1, 42, 39.61, -33.2, 1, 2, 42, 0.87, -12.9, 0.99965, 43, 6.74, + 63.34, 0.00035, 2, 42, 1.19, -6.79, 0.9998, 43, 12.86, 63.34, 0.0002, 3, 42, 1.58, 0.7, 0.99981, 43, 20.36, 63.34, 9e-05, 45, -22.52, 63.44, 0.0001, 3, 42, 1.95, 7.74, 0.99975, 43, + 27.41, 63.34, 1e-05, 45, -15.46, 63.44, 0.00024, 2, 42, 2.27, 13.79, 0.99954, 45, -9.41, 63.44, 0.00046, 4, 42, 41.3, 0.23, 0.88429, 43, 21.98, 23.65, 0.02526, 44, 0.57, 23.75, + 0.06552, 45, -20.9, 23.75, 0.02493, 1, 42, 40.33, -19.01, 1, 4, 42, 41.2, 17.9, 0.94373, 43, 39.62, 24.67, 0.00089, 44, 18.21, 24.78, 0.01419, 45, -3.26, 24.78, 0.04119, 1, 42, + 41.16, 25.66, 1, 1, 42, 39.91, -27.38, 1, 4, 42, 40.8, -9.72, 0.88619, 43, 12.02, 23.63, 0.05505, 44, -9.38, 23.73, 0.05102, 45, -30.86, 23.73, 0.00774, 4, 42, 41.25, 8.67, 0.89286, + 43, 30.41, 24.14, 0.00746, 44, 9, 24.24, 0.04877, 45, -12.47, 24.24, 0.05092, 1, 42, 45.19, -29.23, 1, 4, 42, 45.92, -19.91, 0.74343, 43, 2.11, 17.98, 0.19678, 44, -19.29, 18.08, + 0.05726, 45, -40.76, 18.08, 0.00254, 4, 42, 46.35, -10.13, 0.58833, 43, 11.9, 18.06, 0.20061, 44, -9.5, 18.16, 0.19026, 45, -30.98, 18.16, 0.0208, 4, 42, 46.71, -0.11, 0.58846, 43, + 21.93, 18.23, 0.08112, 44, 0.53, 18.33, 0.24909, 45, -20.95, 18.33, 0.08133, 4, 42, 46.89, 8.69, 0.59817, 43, 30.72, 18.51, 0.02026, 44, 9.32, 18.61, 0.18761, 45, -12.16, 18.61, + 0.19395, 4, 42, 47.28, 18.23, 0.66183, 43, 40.27, 18.62, 0.00346, 44, 18.87, 18.73, 0.07957, 45, -2.61, 18.73, 0.25514, 1, 42, 47.24, 27.47, 1, 4, 42, 51.11, -31.3, 0.84023, 43, + -8.99, 12.2, 0.15068, 44, -30.39, 12.3, 0.00899, 45, -51.87, 12.3, 0.0001, 4, 42, 51.17, -20.75, 0.48016, 43, 1.55, 12.69, 0.41733, 44, -19.86, 12.79, 0.10062, 45, -41.33, 12.79, + 0.0019, 4, 42, 51.55, -10.51, 0.42576, 43, 11.79, 12.85, 0.28082, 44, -9.61, 12.96, 0.27628, 45, -31.09, 12.96, 0.01714, 4, 42, 51.8, -0.42, 0.43345, 43, 21.89, 13.13, 0.09343, 44, + 0.48, 13.24, 0.37698, 45, -20.99, 13.24, 0.09613, 4, 42, 52.3, 8.71, 0.43708, 43, 31.02, 13.11, 0.01603, 44, 9.62, 13.21, 0.27127, 45, -11.86, 13.21, 0.27562, 4, 42, 52.36, 18.51, + 0.51068, 43, 40.82, 13.56, 0.00179, 44, 19.41, 13.67, 0.09933, 45, -2.06, 13.67, 0.3882, 4, 42, 52.97, 29.16, 0.94195, 43, 51.49, 13.52, 4e-05, 44, 30.08, 13.62, 0.00385, 45, 8.61, + 13.62, 0.05416, 4, 42, 56.91, -33.32, 0.72549, 43, -10.71, 6.3, 0.2621, 44, -32.11, 6.41, 0.01235, 45, -53.59, 6.41, 6e-05, 4, 42, 57.26, -21.73, 0.38729, 43, 0.89, 6.56, 0.4981, 44, + -20.51, 6.66, 0.11341, 45, -41.99, 6.66, 0.0012, 4, 42, 57.36, -10.94, 0.32692, 43, 11.67, 7.02, 0.3274, 44, -9.74, 7.13, 0.32983, 45, -31.21, 7.13, 0.01585, 4, 42, 57.43, -0.76, + 0.33677, 43, 21.84, 7.49, 0.10146, 44, 0.43, 7.6, 0.45593, 45, -21.04, 7.6, 0.10584, 4, 42, 57.8, 8.73, 0.33839, 43, 31.33, 7.62, 0.0144, 44, 9.93, 7.73, 0.32329, 45, -11.55, 7.73, + 0.32392, 4, 42, 58.53, 19.24, 0.42143, 43, 41.87, 7.44, 0.00109, 44, 20.47, 7.55, 0.11176, 45, -1.01, 7.55, 0.46572, 4, 42, 60.09, 31.38, 0.79569, 43, 54.07, 6.52, 5e-05, 44, 32.67, + 6.63, 0.01091, 45, 11.19, 6.63, 0.19335, 4, 42, 63.61, -35.67, 0.66085, 43, -12.7, -0.52, 0.32566, 44, -34.1, -0.41, 0.01346, 45, -55.58, -0.41, 3e-05, 4, 42, 64.06, -22.82, 0.31024, + 43, 0.16, -0.29, 0.56299, 44, -21.25, -0.19, 0.12589, 45, -42.72, -0.19, 0.00089, 4, 42, 64.25, -11.45, 0.24349, 43, 11.52, 0.12, 0.36477, 44, -9.89, 0.22, 0.37599, 45, -31.36, 0.22, + 0.01574, 4, 42, 64.34, -1.18, 0.2525, 43, 21.78, 0.57, 0.10936, 44, 0.37, 0.68, 0.52284, 45, -21.1, 0.68, 0.1153, 4, 42, 64.83, 8.75, 0.2544, 43, 31.72, 0.6, 0.01401, 44, 10.32, + 0.71, 0.36809, 45, -11.16, 0.71, 0.3635, 4, 42, 65.03, 19.51, 0.3466, 43, 42.48, 0.96, 0.00077, 44, 21.07, 1.07, 0.1237, 45, -0.4, 1.07, 0.52893, 4, 42, 66.57, 33.2, 0.69411, 43, + 56.23, 0.15, 3e-05, 44, 34.83, 0.26, 0.01435, 45, 13.35, 0.26, 0.29151, 4, 42, 71.92, 34.78, 0.61986, 43, 58.1, -5.11, 1e-05, 44, 36.69, -5.01, 0.01658, 45, 15.22, -5.01, 0.36355, 4, + 42, 70.84, 19.53, 0.28549, 43, 42.81, -4.84, 0.00065, 44, 21.4, -4.73, 0.13463, 45, -0.07, -4.73, 0.57924, 4, 42, 70.54, 8.77, 0.18483, 43, 32.04, -5.1, 0.01432, 44, 10.64, -4.99, + 0.40541, 45, -10.84, -4.99, 0.39544, 4, 42, 70.23, -1.55, 0.18141, 43, 21.73, -5.33, 0.11681, 44, 0.32, -5.23, 0.57764, 45, -21.15, -5.23, 0.12413, 4, 42, 69.5, -11.84, 0.17479, 43, + 11.41, -5.14, 0.39444, 44, -10, -5.04, 0.41447, 45, -31.47, -5.04, 0.0163, 4, 42, 69.05, -23.63, 0.24784, 43, -0.38, -5.32, 0.61396, 44, -21.79, -5.22, 0.13743, 45, -43.26, -5.22, + 0.00077, 4, 42, 68.55, -37.4, 0.59732, 43, -14.16, -5.54, 0.38768, 44, -35.56, -5.43, 0.01499, 45, -57.04, -5.43, 1e-05, 4, 42, 22.71, 0.45, 0.98403, 43, 21.22, 42.22, 0.00516, 44, + -0.19, 42.33, 0.00609, 45, -21.66, 42.33, 0.00473, 3, 42, 13.08, -10.5, 0.98457, 43, 9.78, 51.26, 0.01421, 44, -11.62, 51.37, 0.00123, 3, 42, 16.1, 11.4, 0.98807, 44, 10.41, 49.51, + 0.00101, 45, -11.07, 49.51, 0.01092, 1, 42, 40.1, -23.51, 1, 4, 42, 45.53, -24.85, 0.93122, 43, -2.85, 18.1, 0.05888, 44, -24.25, 18.21, 0.00959, 45, -45.73, 18.21, 0.0003, 4, 42, + 51.14, -26.22, 0.67882, 43, -3.92, 12.43, 0.287, 44, -25.32, 12.54, 0.03374, 45, -46.8, 12.54, 0.00045, 4, 42, 57.07, -27.81, 0.52353, 43, -5.19, 6.42, 0.4314, 44, -26.59, 6.53, + 0.04479, 45, -48.07, 6.53, 0.00029, 4, 42, 63.82, -29.53, 0.41464, 43, -6.56, -0.41, 0.53292, 44, -27.96, -0.3, 0.05226, 45, -49.44, -0.3, 0.00018, 4, 42, 68.8, -30.65, 0.35706, 43, + -7.41, -5.43, 0.58638, 44, -28.81, -5.33, 0.05644, 45, -50.29, -5.33, 0.00012, 4, 42, 40.56, -14.49, 0.88311, 43, 7.24, 23.62, 0.07338, 44, -14.17, 23.72, 0.03978, 45, -35.64, 23.72, + 0.00372, 4, 42, 46.13, -15.07, 0.62555, 43, 6.96, 18.02, 0.24007, 44, -14.45, 18.12, 0.1259, 45, -35.92, 18.12, 0.00848, 4, 42, 51.36, -15.56, 0.4342, 43, 6.74, 12.77, 0.37611, 44, + -14.67, 12.88, 0.18375, 45, -36.14, 12.88, 0.00595, 4, 42, 57.31, -16.26, 0.33684, 43, 6.35, 6.79, 0.44427, 44, -15.05, 6.9, 0.21425, 45, -36.53, 6.9, 0.00464, 4, 42, 64.16, -17.02, + 0.25537, 43, 5.95, -0.08, 0.49872, 44, -15.45, 0.02, 0.24179, 45, -36.93, 0.02, 0.00413, 4, 42, 69.28, -17.64, 0.18921, 43, 5.6, -5.23, 0.54119, 44, -15.8, -5.13, 0.26556, 45, + -37.28, -5.13, 0.00404, 4, 42, 41.05, -4.82, 0.83361, 43, 16.93, 23.64, 0.05679, 44, -4.48, 23.74, 0.08927, 45, -25.95, 23.74, 0.02033, 4, 42, 46.53, -5.25, 0.57797, 43, 16.78, + 18.14, 0.13938, 44, -4.63, 18.25, 0.23843, 45, -26.1, 18.25, 0.04422, 4, 42, 51.66, -5.87, 0.42696, 43, 16.43, 12.98, 0.17737, 44, -4.97, 13.08, 0.35156, 45, -26.45, 13.08, 0.04411, + 4, 42, 57.39, -6.06, 0.33132, 43, 16.54, 7.25, 0.20059, 44, -4.86, 7.35, 0.42277, 45, -26.34, 7.35, 0.04531, 4, 42, 64.29, -6.56, 0.24781, 43, 16.41, 0.33, 0.22055, 44, -4.99, 0.44, + 0.48389, 45, -26.47, 0.44, 0.04775, 4, 42, 69.85, -6.91, 0.17763, 43, 16.35, -5.23, 0.23735, 44, -5.05, -5.13, 0.53429, 45, -26.52, -5.13, 0.05074, 4, 42, 41.28, 4.25, 0.83746, 43, + 26, 23.88, 0.02009, 44, 4.59, 23.99, 0.08772, 45, -16.88, 23.99, 0.05473, 4, 42, 46.8, 4.29, 0.58276, 43, 26.32, 18.37, 0.04346, 44, 4.92, 18.47, 0.23645, 45, -16.56, 18.47, 0.13732, + 4, 42, 52.06, 4.23, 0.43226, 43, 26.54, 13.12, 0.04191, 44, 5.13, 13.22, 0.34769, 45, -16.34, 13.22, 0.17814, 4, 42, 57.61, 3.94, 0.33656, 43, 26.54, 7.56, 0.0422, 44, 5.14, 7.66, + 0.41771, 45, -16.34, 7.66, 0.20353, 4, 42, 64.59, 3.92, 0.25264, 43, 26.89, 0.59, 0.04384, 44, 5.49, 0.69, 0.47782, 45, -15.99, 0.69, 0.2257, 4, 42, 70.39, 3.84, 0.18189, 43, 27.11, + -5.21, 0.04615, 44, 5.71, -5.11, 0.52741, 45, -15.77, -5.11, 0.24456, 4, 42, 41.23, 12.93, 0.8608, 43, 34.66, 24.39, 0.00457, 44, 13.26, 24.49, 0.04889, 45, -8.22, 24.49, 0.08574, 4, + 42, 47.07, 13.06, 0.60926, 43, 35.09, 18.56, 0.00894, 44, 13.69, 18.67, 0.13479, 45, -7.79, 18.67, 0.247, 4, 42, 52.33, 13.43, 0.45377, 43, 35.74, 13.33, 0.00554, 44, 14.33, 13.43, + 0.18027, 45, -7.14, 13.43, 0.36041, 4, 42, 58.15, 13.75, 0.35749, 43, 36.37, 7.54, 0.00417, 44, 14.96, 7.64, 0.20976, 45, -6.51, 7.64, 0.42858, 4, 42, 64.93, 13.95, 0.27612, 43, + 36.92, 0.78, 0.00359, 44, 15.52, 0.88, 0.23625, 45, -5.96, 0.88, 0.48404, 4, 42, 70.69, 14.22, 0.20954, 43, 37.5, -4.97, 0.00344, 44, 16.1, -4.86, 0.25903, 45, -5.38, -4.86, 0.52799, + 1, 42, 41.18, 21.86, 1, 4, 42, 47.26, 22.62, 0.82489, 43, 44.65, 18.87, 0.00083, 44, 23.25, 18.98, 0.0268, 45, 1.77, 18.98, 0.14748, 4, 42, 52.68, 24.04, 0.64773, 43, 46.35, 13.54, + 0.00052, 44, 24.95, 13.65, 0.04091, 45, 3.47, 13.65, 0.31084, 4, 42, 59.31, 25.35, 0.53225, 43, 48.01, 6.98, 0.00029, 44, 26.6, 7.09, 0.04857, 45, 5.13, 7.09, 0.41889, 4, 42, 65.88, + 27.11, 0.46955, 43, 50.12, 0.51, 0.00016, 44, 28.71, 0.62, 0.05201, 45, 7.24, 0.62, 0.47828, 4, 42, 71.43, 27.89, 0.41589, 43, 51.19, -4.99, 0.0001, 44, 29.78, -4.88, 0.05591, 45, + 8.31, -4.88, 0.5281, 4, 42, 51.12, -28.92, 0.72647, 43, -6.61, 12.31, 0.25381, 44, -28.01, 12.41, 0.01954, 45, -49.49, 12.41, 0.00018, 4, 42, 56.98, -30.79, 0.64422, 43, -8.18, 6.36, + 0.33291, 44, -29.58, 6.46, 0.02275, 45, -51.06, 6.46, 0.00011, 4, 42, 63.71, -32.68, 0.55448, 43, -9.7, -0.46, 0.41902, 44, -31.11, -0.36, 0.02643, 45, -52.58, -0.36, 7e-05, 4, 42, + 68.66, -34.31, 0.44397, 43, -11.07, -5.49, 0.52396, 44, -32.48, -5.38, 0.03202, 45, -53.95, -5.38, 4e-05, 4, 42, 51.16, -23.65, 0.5094, 43, -1.35, 12.55, 0.4213, 44, -22.75, 12.66, + 0.06847, 45, -44.22, 12.66, 0.00083, 4, 42, 57.16, -24.79, 0.42549, 43, -2.17, 6.49, 0.49746, 44, -23.57, 6.6, 0.07648, 45, -45.05, 6.6, 0.00057, 4, 42, 63.94, -26.25, 0.35688, 43, + -3.28, -0.35, 0.55926, 44, -24.68, -0.25, 0.08347, 45, -46.16, -0.25, 0.00039, 4, 42, 68.91, -27.43, 0.29772, 43, -4.19, -5.38, 0.61133, 44, -25.59, -5.28, 0.09064, 45, -47.07, + -5.28, 0.00031, 4, 42, 69.16, -20.73, 0.21136, 43, 2.51, -5.28, 0.59029, 44, -18.89, -5.17, 0.19654, 45, -40.37, -5.17, 0.00182, 4, 42, 64.11, -19.92, 0.275, 43, 3.05, -0.19, + 0.54348, 44, -18.35, -0.08, 0.17958, 45, -39.83, -0.08, 0.00194, 4, 42, 57.28, -19.35, 0.35002, 43, 3.27, 6.66, 0.48643, 44, -18.14, 6.77, 0.16123, 45, -39.61, 6.77, 0.00232, 4, 42, + 51.26, -18.48, 0.41881, 43, 3.82, 12.72, 0.43213, 44, -17.59, 12.83, 0.1461, 45, -39.06, 12.83, 0.00296, 4, 42, 51.45, -13.1, 0.39313, 43, 9.2, 12.81, 0.35299, 44, -12.2, 12.91, + 0.24433, 45, -33.68, 12.91, 0.00955, 4, 42, 57.34, -13.55, 0.32258, 43, 9.06, 6.91, 0.39406, 44, -12.34, 7.02, 0.27473, 45, -33.82, 7.02, 0.00863, 4, 42, 64.2, -14.31, 0.24476, 43, + 8.66, 0.02, 0.43744, 44, -12.74, 0.12, 0.30953, 45, -34.22, 0.12, 0.00827, 4, 42, 69.38, -14.93, 0.17804, 43, 8.31, -5.19, 0.47328, 44, -13.09, -5.08, 0.3403, 45, -34.57, -5.08, + 0.00838, 4, 42, 69.68, -9.29, 0.17525, 43, 13.97, -5.19, 0.31355, 44, -7.44, -5.08, 0.48153, 45, -28.91, -5.08, 0.02968, 4, 42, 64.27, -9.12, 0.24396, 43, 13.85, 0.22, 0.29088, 44, + -7.55, 0.33, 0.43695, 45, -29.03, 0.33, 0.02821, 4, 42, 57.38, -8.64, 0.32275, 43, 13.97, 7.13, 0.26435, 44, -7.44, 7.23, 0.38552, 45, -28.91, 7.23, 0.02739, 4, 42, 51.61, -8.2, + 0.39269, 43, 14.1, 12.92, 0.24007, 44, -7.3, 13.02, 0.33961, 45, -28.78, 13.02, 0.02763, 4, 42, 51.73, -3.15, 0.39835, 43, 19.16, 13.05, 0.13664, 44, -2.25, 13.16, 0.3972, 45, + -23.72, 13.16, 0.06781, 4, 42, 57.41, -3.5, 0.32898, 43, 19.1, 7.37, 0.14701, 44, -2.3, 7.47, 0.45281, 45, -23.78, 7.47, 0.07119, 4, 42, 64.31, -3.92, 0.24968, 43, 19.05, 0.45, + 0.15947, 44, -2.36, 0.56, 0.51456, 45, -23.83, 0.56, 0.07629, 4, 42, 70.03, -4.3, 0.17972, 43, 18.96, -5.28, 0.17094, 44, -2.44, -5.18, 0.56767, 45, -23.91, -5.18, 0.08167, 4, 42, + 70.31, 1.21, 0.18179, 43, 24.49, -5.27, 0.07557, 44, 3.08, -5.17, 0.56385, 45, -18.39, -5.17, 0.17879, 4, 42, 64.46, 1.3, 0.25204, 43, 24.27, 0.58, 0.07119, 44, 2.86, 0.68, 0.51118, + 45, -18.61, 0.68, 0.16559, 4, 42, 57.52, 1.66, 0.33157, 43, 24.26, 7.52, 0.0672, 44, 2.86, 7.63, 0.44995, 45, -18.62, 7.63, 0.15128, 4, 42, 51.92, 1.69, 0.40101, 43, 23.99, 13.13, + 0.06478, 44, 2.59, 13.23, 0.39483, 45, -18.89, 13.23, 0.13938, 4, 42, 52.17, 6.37, 0.401, 43, 28.68, 13.11, 0.0258, 44, 7.28, 13.22, 0.33427, 45, -14.2, 13.22, 0.23894, 4, 42, 57.7, + 6.22, 0.3309, 43, 28.82, 7.59, 0.02514, 44, 7.42, 7.69, 0.37908, 45, -14.06, 7.69, 0.26488, 4, 42, 64.69, 5.99, 0.25155, 43, 28.96, 0.59, 0.02548, 44, 7.56, 0.7, 0.4293, 45, -13.92, + 0.7, 0.29367, 4, 42, 70.45, 5.95, 0.18206, 43, 29.22, -5.16, 0.02652, 44, 7.82, -5.06, 0.47284, 45, -13.66, -5.06, 0.31858, 4, 42, 70.61, 11.41, 0.19245, 43, 34.69, -5.04, 0.00724, + 44, 13.29, -4.93, 0.3321, 45, -8.19, -4.93, 0.46821, 4, 42, 70.77, 17.07, 0.23948, 43, 40.35, -4.9, 0.00153, 44, 18.94, -4.79, 0.19195, 45, -2.53, -4.79, 0.56704, 4, 42, 71.13, + 23.54, 0.346, 43, 46.82, -4.91, 0.00026, 44, 25.42, -4.81, 0.08922, 45, 3.94, -4.81, 0.56452, 4, 42, 71.67, 31.21, 0.48407, 43, 54.51, -5.05, 4e-05, 44, 33.11, -4.94, 0.03358, 45, + 11.63, -4.94, 0.48231, 4, 42, 66.23, 30.24, 0.54501, 43, 53.26, 0.33, 7e-05, 44, 31.86, 0.43, 0.03077, 45, 10.38, 0.43, 0.42415, 4, 42, 65.41, 22.86, 0.40266, 43, 45.85, 0.77, + 0.00034, 44, 24.45, 0.87, 0.08247, 45, 2.97, 0.87, 0.51452, 4, 42, 64.98, 16.56, 0.30287, 43, 39.53, 0.86, 0.00168, 44, 18.13, 0.97, 0.17579, 45, -3.35, 0.97, 0.51965, 4, 42, 64.87, + 11.12, 0.25994, 43, 34.09, 0.68, 0.00726, 44, 12.69, 0.79, 0.30245, 45, -8.79, 0.79, 0.43035, 4, 42, 57.96, 11, 0.3382, 43, 33.61, 7.58, 0.00776, 44, 12.21, 7.69, 0.26884, 45, -9.27, + 7.69, 0.38519, 4, 42, 58.32, 16.31, 0.37706, 43, 38.93, 7.49, 0.00208, 44, 17.52, 7.6, 0.15821, 45, -3.95, 7.6, 0.46265, 4, 42, 58.9, 22.12, 0.46779, 43, 44.77, 7.23, 0.00052, 44, + 23.36, 7.33, 0.07582, 45, 1.89, 7.33, 0.45586, 4, 42, 59.69, 28.3, 0.65325, 43, 50.97, 6.76, 0.00012, 44, 29.57, 6.86, 0.02541, 45, 8.09, 6.86, 0.32123, 4, 42, 52.82, 26.61, 0.75526, + 43, 48.93, 13.53, 0.00017, 44, 27.52, 13.64, 0.02002, 45, 6.05, 13.64, 0.22455, 4, 42, 52.51, 21.1, 0.52586, 43, 43.41, 13.55, 0.00082, 44, 22, 13.66, 0.07106, 45, 0.53, 13.66, + 0.40226, 4, 42, 52.35, 15.86, 0.44455, 43, 38.16, 13.44, 0.00273, 44, 16.76, 13.54, 0.1436, 45, -4.72, 13.54, 0.40912, 4, 42, 52.31, 10.54, 0.40864, 43, 32.85, 13.19, 0.0088, 44, + 11.45, 13.3, 0.23945, 45, -10.03, 13.3, 0.34311, 4, 42, 70.77, -38.17, 0.52059, 43, -14.82, -7.8, 0.45917, 44, -36.22, -7.7, 0.02022, 45, -57.7, -7.7, 1e-05, 4, 42, 70.83, -34.9, + 0.37517, 43, -11.54, -7.69, 0.58803, 44, -32.95, -7.59, 0.03676, 45, -54.42, -7.59, 4e-05, 4, 42, 70.97, -31.21, 0.31655, 43, -7.85, -7.63, 0.62281, 44, -29.26, -7.53, 0.06054, 45, + -50.73, -7.53, 0.00011, 4, 42, 71.13, -27.77, 0.25662, 43, -4.41, -7.62, 0.64624, 44, -25.82, -7.51, 0.09684, 45, -47.29, -7.51, 0.0003, 4, 42, 71.2, -23.97, 0.20542, 43, -0.61, + -7.48, 0.64718, 44, -22.02, -7.37, 0.14662, 45, -43.49, -7.37, 0.00077, 4, 42, 71.35, -20.96, 0.16774, 43, 2.4, -7.48, 0.62093, 44, -19, -7.37, 0.20946, 45, -40.48, -7.37, 0.00187, + 4, 42, 71.49, -17.96, 0.14406, 43, 5.4, -7.45, 0.56885, 44, -16, -7.35, 0.28288, 45, -37.48, -7.35, 0.00421, 4, 42, 71.65, -15.17, 0.13169, 43, 8.2, -7.46, 0.49722, 44, -13.21, + -7.36, 0.36227, 45, -34.68, -7.36, 0.00882, 4, 42, 71.89, -12.02, 0.12708, 43, 11.35, -7.54, 0.41453, 44, -10.05, -7.44, 0.44117, 45, -31.52, -7.44, 0.01722, 4, 42, 71.98, -9.41, + 0.12668, 43, 13.97, -7.49, 0.32958, 44, -7.43, -7.39, 0.51233, 45, -28.91, -7.39, 0.03141, 4, 42, 72.15, -7.02, 0.12812, 43, 16.36, -7.53, 0.24965, 44, -5.05, -7.43, 0.56851, 45, + -26.52, -7.43, 0.05372, 4, 42, 72.39, -4.46, 0.12979, 43, 18.93, -7.65, 0.1799, 44, -2.47, -7.54, 0.60387, 45, -23.95, -7.54, 0.08644, 4, 42, 72.47, -1.68, 0.13105, 43, 21.71, -7.58, + 0.12302, 44, 0.3, -7.47, 0.61461, 45, -21.17, -7.47, 0.13132, 4, 42, 72.58, 1.2, 0.13159, 43, 24.6, -7.54, 0.07962, 44, 3.19, -7.43, 0.5998, 45, -18.28, -7.43, 0.18899, 4, 42, 72.71, + 3.77, 0.13189, 43, 27.17, -7.53, 0.04862, 44, 5.76, -7.42, 0.56113, 45, -15.71, -7.42, 0.25837, 4, 42, 72.9, 5.95, 0.13282, 43, 29.35, -7.61, 0.02792, 44, 7.95, -7.5, 0.50297, 45, + -13.53, -7.5, 0.33629, 4, 42, 72.96, 8.77, 0.13637, 43, 32.18, -7.52, 0.01503, 44, 10.77, -7.41, 0.43134, 45, -10.7, -7.41, 0.41726, 4, 42, 73.15, 11.31, 0.14539, 43, 34.72, -7.57, + 0.00757, 44, 13.32, -7.46, 0.35328, 45, -8.16, -7.46, 0.49376, 4, 42, 73.26, 14.32, 0.16393, 43, 37.73, -7.53, 0.00355, 44, 16.32, -7.43, 0.27561, 45, -5.15, -7.43, 0.55691, 4, 42, + 73.56, 17.06, 0.19585, 43, 40.48, -7.68, 0.00155, 44, 19.08, -7.58, 0.20422, 45, -2.4, -7.58, 0.59837, 4, 42, 73.65, 19.69, 0.24372, 43, 43.11, -7.63, 0.00063, 44, 21.71, -7.53, + 0.14329, 45, 0.23, -7.53, 0.61235, 4, 42, 73.87, 23.74, 0.30631, 43, 47.17, -7.64, 0.00024, 44, 25.77, -7.53, 0.09501, 45, 4.29, -7.53, 0.59844, 4, 42, 74.01, 28.34, 0.3775, 43, + 51.77, -7.54, 9e-05, 44, 30.37, -7.43, 0.05972, 45, 8.89, -7.43, 0.5627, 4, 42, 74.28, 31.7, 0.44548, 43, 55.14, -7.63, 3e-05, 44, 33.74, -7.53, 0.03652, 45, 12.26, -7.53, 0.51797, + 4, 42, 74.78, 35.38, 0.56131, 43, 58.84, -7.93, 1e-05, 44, 37.44, -7.83, 0.02128, 45, 15.96, -7.83, 0.41739 + ], + "hull": 44, + "edges": [ + 78, 76, 86, 0, 78, 80, 80, 82, 82, 84, 84, 86, 0, 94, 76, 96, 62, 64, 74, 76, 102, 96, 74, 102, 104, 90, 106, 98, 108, 88, 110, 100, 112, 92, 114, 94, 2, 0, 114, 2, 72, 74, 116, 102, + 72, 116, 118, 104, 120, 106, 122, 108, 124, 110, 126, 112, 128, 114, 4, 2, 128, 4, 70, 72, 130, 116, 70, 130, 132, 118, 134, 120, 136, 122, 138, 124, 140, 126, 142, 128, 8, 6, 6, 4, + 142, 6, 68, 70, 144, 130, 68, 144, 146, 132, 148, 134, 150, 136, 152, 138, 154, 140, 156, 142, 156, 8, 8, 10, 10, 12, 12, 158, 158, 156, 10, 158, 160, 154, 162, 152, 164, 150, 166, + 148, 168, 146, 170, 144, 64, 66, 66, 68, 170, 66, 82, 172, 172, 88, 98, 172, 172, 100, 80, 174, 174, 90, 96, 174, 84, 176, 176, 92, 94, 176, 90, 178, 178, 96, 102, 180, 180, 104, + 178, 180, 180, 182, 182, 184, 184, 186, 186, 188, 90, 190, 190, 98, 104, 192, 192, 106, 190, 192, 192, 194, 194, 196, 196, 198, 198, 200, 88, 202, 202, 98, 106, 204, 204, 108, 202, + 204, 204, 206, 206, 208, 208, 210, 210, 212, 88, 214, 214, 100, 108, 216, 216, 110, 214, 216, 216, 218, 218, 220, 220, 222, 222, 224, 92, 226, 226, 100, 110, 228, 228, 112, 226, 228, + 228, 230, 230, 232, 232, 234, 234, 236, 92, 238, 238, 94, 112, 240, 240, 114, 238, 240, 240, 242, 242, 244, 244, 246, 246, 248, 12, 14, 170, 64, 116, 250, 250, 182, 130, 252, 252, + 184, 250, 252, 144, 254, 254, 186, 252, 254, 170, 256, 256, 188, 254, 256, 58, 60, 60, 62, 118, 258, 258, 182, 132, 260, 260, 184, 258, 260, 146, 262, 262, 186, 260, 262, 168, 264, + 264, 188, 262, 264, 54, 56, 56, 58, 50, 52, 52, 54, 168, 266, 266, 200, 146, 268, 268, 198, 266, 268, 132, 270, 270, 196, 268, 270, 118, 272, 272, 194, 270, 272, 120, 274, 274, 194, + 134, 276, 276, 196, 274, 276, 148, 278, 278, 198, 276, 278, 166, 280, 280, 200, 278, 280, 46, 48, 48, 50, 42, 44, 44, 46, 166, 282, 282, 212, 148, 284, 284, 210, 282, 284, 134, 286, + 286, 208, 284, 286, 120, 288, 288, 206, 286, 288, 122, 290, 290, 206, 136, 292, 292, 208, 290, 292, 150, 294, 294, 210, 292, 294, 164, 296, 296, 212, 294, 296, 38, 40, 40, 42, 34, + 36, 36, 38, 164, 298, 298, 224, 150, 300, 300, 222, 298, 300, 136, 302, 302, 220, 300, 302, 122, 304, 304, 218, 302, 304, 124, 306, 306, 218, 138, 308, 308, 220, 306, 308, 152, 310, + 310, 222, 308, 310, 162, 312, 312, 224, 310, 312, 30, 32, 32, 34, 26, 28, 28, 30, 162, 314, 314, 236, 22, 24, 24, 26, 160, 316, 316, 236, 18, 20, 20, 22, 160, 318, 318, 248, 14, 16, + 16, 18, 158, 320, 320, 248, 156, 322, 322, 246, 320, 322, 154, 324, 324, 246, 318, 324, 154, 326, 326, 234, 316, 326, 152, 328, 328, 234, 314, 328, 138, 330, 330, 232, 328, 330, 140, + 332, 332, 232, 326, 332, 140, 334, 334, 244, 324, 334, 142, 336, 336, 244, 322, 336, 128, 338, 338, 242, 336, 338, 126, 340, 340, 242, 334, 340, 126, 342, 342, 230, 332, 342, 124, + 344, 344, 230, 330, 344, 62, 346, 346, 170, 60, 348, 348, 256, 346, 348, 58, 350, 350, 188, 348, 350, 56, 352, 352, 264, 350, 352, 54, 354, 354, 168, 352, 354, 52, 356, 356, 266, + 354, 356, 50, 358, 358, 200, 356, 358, 48, 360, 360, 280, 358, 360, 46, 362, 362, 166, 360, 362, 44, 364, 364, 282, 362, 364, 42, 366, 366, 212, 364, 366, 40, 368, 368, 296, 366, + 368, 38, 370, 370, 164, 368, 370, 36, 372, 372, 298, 370, 372, 34, 374, 374, 224, 372, 374, 32, 376, 376, 312, 374, 376, 30, 378, 378, 162, 376, 378, 28, 380, 380, 314, 378, 380, 26, + 382, 382, 236, 380, 382, 24, 384, 384, 316, 382, 384, 22, 386, 386, 160, 384, 386, 20, 388, 388, 318, 386, 388, 18, 390, 390, 248, 388, 390, 16, 392, 392, 320, 390, 392, 14, 394, + 394, 158, 392, 394 + ], + "width": 82.3529411764706, + "height": 80.0, + "path": "summer-as-lv2.ear-right-bubble", + "x": 0.32352941176470296, + "y": 0.0 + } + }, + "ear-right-dot-01": { + "ear-right-dot": { + "x": 0.3082352941176467, "y": 0.33764705882352897, "rotation": -0.95, "width": 18.823529411764707, "height": 11.764705882352942, "path": "summer-as-lv2.ear-right-dot" + } + }, + "ear-right-dot-02": { + "ear-right-dot": { + "x": 0.3082352941176467, "y": 0.33764705882352897, "rotation": -0.95, "width": 18.823529411764707, "height": 11.764705882352942, "path": "summer-as-lv2.ear-right-dot" + } + }, + "ear-right-dot-03": { + "ear-right-dot": { + "x": 0.3082352941176467, "y": 0.33764705882352897, "rotation": -0.95, "width": 18.823529411764707, "height": 11.764705882352942, "path": "summer-as-lv2.ear-right-dot" + } + }, + "ear-right-dot-04": { + "ear-right-dot": { + "x": 0.3082352941176467, "y": 0.33764705882352897, "rotation": -0.95, "width": 18.823529411764707, "height": 11.764705882352942, "path": "summer-as-lv2.ear-right-dot" + } + }, + "ear-right-dot-05": { + "ear-right-dot": { + "x": 0.3082352941176467, "y": 0.33764705882352897, "rotation": -0.95, "width": 18.823529411764707, "height": 11.764705882352942, "path": "summer-as-lv2.ear-right-dot" + } + }, + "ear-right-dot-06": { + "ear-right-dot": { + "x": 0.3082352941176467, "y": 0.33764705882352897, "rotation": -0.95, "width": 18.823529411764707, "height": 11.764705882352942, "path": "summer-as-lv2.ear-right-dot" + } + }, + "ear-right-dot-07": { + "ear-right-dot": { + "x": 0.3082352941176467, "y": 0.33764705882352897, "rotation": -0.95, "width": 18.823529411764707, "height": 11.764705882352942, "path": "summer-as-lv2.ear-right-dot" + } + }, + "ear-right-dot-08": { + "ear-right-dot": { + "x": 0.3082352941176467, "y": 0.33764705882352897, "rotation": -0.95, "width": 18.823529411764707, "height": 11.764705882352942, "path": "summer-as-lv2.ear-right-dot" + } + }, + "ear-right-dot-09": { + "ear-right-dot": { + "x": 0.3082352941176467, "y": 0.33764705882352897, "rotation": -0.95, "width": 18.823529411764707, "height": 11.764705882352942, "path": "summer-as-lv2.ear-right-dot" + } + }, + "ear-right-dot-10": { + "ear-right-dot": { + "x": 0.3082352941176467, "y": 0.33764705882352897, "rotation": -0.95, "width": 18.823529411764707, "height": 11.764705882352942, "path": "summer-as-lv2.ear-right-dot" + } + }, + "ear-right-dot-11": { + "ear-right-dot": { + "x": 0.3082352941176467, "y": 0.33764705882352897, "rotation": -0.95, "width": 18.823529411764707, "height": 11.764705882352942, "path": "summer-as-lv2.ear-right-dot" + } + }, + "ear-right-dot-12": { + "ear-right-dot": { + "x": 0.3082352941176467, "y": 0.33764705882352897, "rotation": -0.95, "width": 18.823529411764707, "height": 11.764705882352942, "path": "summer-as-lv2.ear-right-dot" + } + }, + "ear-right-dot-13": { + "ear-right-dot": { + "x": 0.3082352941176467, "y": 0.33764705882352897, "rotation": -0.95, "width": 18.823529411764707, "height": 11.764705882352942, "path": "summer-as-lv2.ear-right-dot" + } + }, + "ear-right-dot-14": { + "ear-right-dot": { + "x": 0.3082352941176467, "y": 0.33764705882352897, "rotation": -0.95, "width": 18.823529411764707, "height": 11.764705882352942, "path": "summer-as-lv2.ear-right-dot" + } + }, + "ear-right-dot-15": { + "ear-right-dot": { + "x": 0.3082352941176467, "y": 0.33764705882352897, "rotation": -0.95, "width": 18.823529411764707, "height": 11.764705882352942, "path": "summer-as-lv2.ear-right-dot" + } + }, + "ear-right-dot-16": { + "ear-right-dot": { + "x": 0.3082352941176467, "y": 0.33764705882352897, "rotation": -0.95, "width": 18.823529411764707, "height": 11.764705882352942, "path": "summer-as-lv2.ear-right-dot" + } + }, + "ear-right-dot-17": { + "ear-right-dot": { + "x": 0.3082352941176467, "y": 0.33764705882352897, "rotation": -0.95, "width": 18.823529411764707, "height": 11.764705882352942, "path": "summer-as-lv2.ear-right-dot" + } + }, + "ear-right-dot-18": { + "ear-right-dot": { + "x": 0.3082352941176467, "y": 0.33764705882352897, "rotation": -0.95, "width": 18.823529411764707, "height": 11.764705882352942, "path": "summer-as-lv2.ear-right-dot" + } + }, + "ear-right-dot-19": { + "ear-right-dot": { + "x": 0.3082352941176467, "y": 0.33764705882352897, "rotation": -0.95, "width": 18.823529411764707, "height": 11.764705882352942, "path": "summer-as-lv2.ear-right-dot" + } + }, + "ear-right-dot-20": { + "ear-right-dot": { + "x": 0.3082352941176467, "y": 0.33764705882352897, "rotation": -0.95, "width": 18.823529411764707, "height": 11.764705882352942, "path": "summer-as-lv2.ear-right-dot" + } + }, + "ear-right-under": { + "ear-right-under": { + "x": 85.06764705882352, "y": -16.772941176470596, "rotation": -93, "width": 131.76470588235296, "height": 204.7058823529412, "path": "summer-as-lv2.ear-right-under" + } + }, + "ear-right-upper": { + "ear-right-upper": {"x": 92.85176470588235, "y": -17.124705882352956, "rotation": -93, "width": 141.1764705882353, "height": 263.5294117647059, "path": "summer-as-lv2.ear-right-upper"} + }, + "eyes": { + "eyes": {"x": 23.029411764705884, "y": 24.631764705882354, "width": 272.94117647058823, "height": 101.17647058823529, "path": "summer-as-lv2.eyes"}, + "eyes-angry": {"x": 23.029411764705884, "y": 24.631764705882354, "width": 272.94117647058823, "height": 101.17647058823529, "path": "summer-as-lv2.eyes-angry"}, + "eyes-happy": {"x": 23.029411764705884, "y": 24.631764705882354, "width": 272.94117647058823, "height": 101.17647058823529, "path": "summer-as-lv2.eyes-happy"}, + "eyes-shut": {"x": 23.029411764705884, "y": 24.631764705882354, "width": 272.94117647058823, "height": 101.17647058823529, "path": "summer-as-lv2.eyes-shut"} + }, + "eyes-happy-accessory": { + "eyes-happy-accessory": { + "x": 0.45823529411764496, "y": 1.135294117647058, "scaleX": 1.4, "scaleY": 1.4, "width": 98.82352941176471, "height": 103.52941176470588, "path": "summer-as-lv2.eyes-happy-accessory" + } + }, + "eyes-upper": {"eyes-upper": {"x": 23.617647058823536, "y": 24.33764705882352, "width": 371.7647058823529, "height": 171.76470588235296, "path": "summer-as-lv2.eyes-upper"}}, + "horn": {"horn": {"x": 87.95529411764704, "y": -6.411764705882362, "rotation": -90, "width": 263.5294117647059, "height": 178.82352941176472, "path": "summer-as-lv2.horn"}}, + "mouth": { + "mouth": {"x": -43.205882352941174, "y": 23.043529411764702, "width": 209.41176470588235, "height": 122.3529411764706, "path": "summer-as-lv2.mouth"}, + "mouth-bite": {"x": -32.794117647058826, "y": 25.690588235294115, "width": 230.58823529411765, "height": 127.05882352941177, "path": "summer-as-lv2.mouth-bite"}, + "mouth-open": {"x": -37.91176470588236, "y": 16.80823529411765, "width": 218.82352941176472, "height": 138.8235294117647, "path": "summer-as-lv2.mouth-open"}, + "mouth-smile": {"x": -33.794117647058826, "y": 21.22, "width": 230.58823529411765, "height": 120.0, "path": "summer-as-lv2.mouth-smile"} + }, + "mouth-accessory": { + "mouth-accessory": { + "type": "mesh", + "uvs": [ + 0.7567, 0.0473, 0.86697, 0.14039, 0.9443, 0.25209, 0.99714, 0.36666, 0.99999, 0.49597, 1, 0.61625, 0.9486, 0.73368, 0.85981, 0.85684, 0.74238, 0.95422, 0.58914, 1, 0.46884, 1, + 0.36484, 0.99858, 0.24169, 0.95082, 0.12854, 0.86646, 0.03732, 0.75174, 0, 0.59723, 0, 0.48254, 0, 0.36237, 0.04691, 0.22488, 0.14286, 0.10888, 0.25027, 0.03298, 0.37916, 0, 0.49749, + 0, 0.62208, 0, 0.48816, 0.49691, 0.38984, 0.47048, 0.40039, 0.4428, 0.42008, 0.42041, 0.44087, 0.4047, 0.46611, 0.39392, 0.49007, 0.39257, 0.5155, 0.39441, 0.54363, 0.40403, 0.56948, + 0.42037, 0.58681, 0.44396, 0.59625, 0.46925, 0.60239, 0.4967, 0.59962, 0.5229, 0.58591, 0.54718, 0.56617, 0.57246, 0.53987, 0.58993, 0.50841, 0.5978, 0.48422, 0.59958, 0.46389, + 0.59563, 0.44255, 0.58693, 0.41915, 0.56782, 0.40098, 0.54296, 0.39091, 0.5164, 0.38677, 0.494, 0.25326, 0.49016, 0.26189, 0.43608, 0.28722, 0.37303, 0.33073, 0.32, 0.38007, 0.28612, + 0.43888, 0.26671, 0.49242, 0.26434, 0.5491, 0.26844, 0.61141, 0.29055, 0.66979, 0.32597, 0.72081, 0.37204, 0.74533, 0.4311, 0.75435, 0.49642, 0.74415, 0.5566, 0.71527, 0.6137, + 0.66814, 0.67121, 0.6053, 0.70764, 0.53338, 0.72221, 0.47953, 0.72167, 0.43531, 0.71188, 0.25606, 0.54343, 0.2836, 0.60497, 0.33013, 0.6593, 0.38745, 0.69572, 0.2371, 0.756, 0.32258, + 0.81152, 0.40412, 0.83877, 0.47432, 0.85748, 0.5622, 0.86577, 0.67514, 0.83328, 0.76201, 0.76212, 0.82762, 0.67147, 0.86788, 0.58544, 0.89046, 0.49617, 0.88879, 0.39439, 0.84496, + 0.30541, 0.77906, 0.22313, 0.69067, 0.15785, 0.58965, 0.1164, 0.49532, 0.10584, 0.40602, 0.11317, 0.30758, 0.14475, 0.22046, 0.19609, 0.15118, 0.28916, 0.11571, 0.39679, 0.10936, + 0.48603, 0.11577, 0.57155, 0.16414, 0.68085 + ], + "triangles": [ + 76, 67, 66, 74, 71, 72, 67, 75, 68, 75, 72, 68, 62, 36, 61, 58, 33, 57, 65, 66, 40, 65, 39, 64, 44, 72, 71, 64, 38, 63, 71, 70, 46, 63, 37, 62, 70, 69, 47, 69, 49, 48, 49, 50, 25, + 50, 51, 26, 26, 51, 52, 52, 53, 28, 57, 32, 56, 56, 31, 55, 53, 54, 29, 55, 29, 54, 35, 34, 59, 41, 42, 24, 40, 41, 24, 43, 24, 42, 39, 40, 24, 24, 43, 44, 44, 45, 24, 39, 24, 38, + 45, 46, 24, 38, 24, 37, 46, 47, 24, 37, 24, 36, 47, 48, 24, 48, 25, 24, 25, 26, 24, 26, 27, 24, 27, 28, 24, 28, 29, 24, 24, 35, 36, 24, 34, 35, 24, 33, 34, 24, 32, 33, 24, 31, 32, + 24, 30, 31, 24, 29, 30, 66, 67, 41, 67, 42, 41, 66, 41, 40, 67, 68, 42, 68, 43, 42, 68, 72, 43, 40, 39, 65, 72, 44, 43, 44, 71, 45, 39, 38, 64, 71, 46, 45, 38, 37, 63, 70, 47, 46, + 37, 36, 62, 69, 48, 47, 36, 35, 60, 48, 49, 25, 25, 50, 26, 34, 33, 58, 27, 26, 52, 27, 52, 28, 28, 53, 29, 33, 32, 57, 32, 31, 56, 30, 29, 55, 31, 30, 55, 61, 36, 60, 60, 35, 59, + 34, 58, 59, 77, 66, 65, 73, 70, 71, 96, 69, 70, 10, 77, 9, 9, 78, 8, 9, 77, 78, 10, 76, 77, 76, 10, 75, 12, 74, 11, 10, 11, 75, 11, 74, 75, 7, 78, 79, 7, 8, 78, 13, 73, 12, 12, 73, + 74, 13, 96, 73, 13, 14, 96, 76, 66, 77, 77, 65, 78, 76, 75, 67, 79, 80, 7, 7, 80, 6, 74, 72, 75, 65, 64, 78, 78, 64, 79, 74, 73, 71, 64, 63, 79, 79, 63, 80, 73, 96, 70, 14, 95, 96, + 14, 15, 95, 80, 81, 6, 6, 81, 5, 96, 95, 69, 63, 62, 80, 80, 62, 81, 81, 82, 5, 82, 4, 5, 95, 16, 94, 95, 15, 16, 62, 61, 81, 81, 61, 82, 69, 94, 49, 69, 95, 94, 61, 60, 82, 60, 83, + 82, 82, 83, 4, 83, 3, 4, 49, 94, 50, 94, 93, 50, 94, 16, 93, 16, 17, 93, 50, 93, 51, 83, 60, 84, 93, 92, 51, 93, 17, 92, 60, 59, 84, 3, 83, 2, 51, 92, 52, 84, 59, 85, 83, 84, 2, 17, + 18, 92, 59, 58, 85, 85, 58, 86, 92, 91, 52, 53, 52, 90, 2, 84, 1, 58, 57, 86, 86, 57, 87, 92, 18, 91, 52, 91, 90, 54, 53, 89, 57, 56, 87, 87, 56, 88, 53, 90, 89, 55, 54, 88, 56, 55, + 88, 88, 54, 89, 84, 85, 1, 18, 19, 91, 1, 85, 0, 90, 91, 20, 85, 86, 0, 0, 86, 23, 91, 19, 20, 89, 90, 21, 86, 87, 23, 23, 87, 22, 90, 20, 21, 88, 89, 22, 87, 88, 22, 22, 89, 21 + ], + "vertices": [ + 1, 29, 42.58, 72.34, 1, 1, 29, 60.45, 57.26, 1, 1, 29, 72.98, 39.16, 1, 1, 29, 81.54, 20.6, 1, 1, 29, 82, -0.34, 1, 1, 29, 82, -19.83, 1, 1, 29, 73.67, -38.85, 1, 1, 29, 59.29, + -58.81, 1, 1, 29, 40.26, -74.58, 1, 1, 29, 15.44, -82, 1, 1, 29, -4.05, -82, 1, 1, 29, -20.9, -81.77, 1, 1, 29, -40.85, -74.03, 1, 1, 29, -59.18, -60.37, 1, 1, 29, -73.95, -41.78, 1, + 1, 29, -82, -16.75, 1, 1, 29, -82, 1.83, 1, 1, 29, -82, 21.3, 1, 1, 29, -72.4, 43.57, 1, 1, 29, -56.86, 62.36, 1, 1, 29, -39.46, 74.66, 1, 1, 29, -18.58, 82, 1, 1, 29, 0.59, 82, 1, + 1, 29, 20.78, 80.84, 1, 1, 81, -0.92, -0.5, 1, 1, 81, -16.85, 3.78, 1, 1, 81, -15.14, 8.27, 1, 1, 81, -11.95, 11.89, 1, 1, 81, -8.58, 14.44, 1, 1, 81, -4.49, 16.19, 1, 1, 81, -0.61, + 16.41, 1, 1, 81, 3.51, 16.11, 1, 1, 81, 8.07, 14.55, 1, 1, 81, 12.26, 11.9, 1, 1, 81, 15.06, 8.08, 1, 1, 81, 16.59, 3.98, 1, 1, 81, 17.59, -0.46, 1, 1, 81, 17.14, -4.71, 1, 1, 81, + 14.92, -8.64, 1, 1, 81, 11.72, -12.74, 1, 1, 81, 7.46, -15.57, 1, 1, 81, 2.36, -16.84, 1, 1, 81, -1.56, -17.13, 1, 1, 81, -4.85, -16.49, 1, 1, 81, -8.31, -15.08, 1, 1, 81, -12.1, + -11.99, 1, 1, 81, -15.04, -7.96, 1, 1, 81, -16.67, -3.66, 1, 1, 81, -17.34, -0.03, 1, 2, 29, -38.97, 0.6, 0.37475, 81, -38.97, 0.6, 0.62525, 2, 29, -37.57, 9.36, 0.38176, 81, -37.57, + 9.36, 0.61824, 2, 29, -33.47, 19.57, 0.39514, 81, -33.47, 19.57, 0.60486, 2, 29, -26.42, 28.16, 0.40154, 81, -26.42, 28.16, 0.59846, 2, 29, -18.43, 33.65, 0.40298, 81, -18.43, 33.65, + 0.59702, 2, 29, -8.9, 36.8, 0.39723, 81, -8.9, 36.8, 0.60277, 2, 29, -0.23, 37.18, 0.38672, 81, -0.23, 37.18, 0.61328, 2, 29, 8.95, 36.51, 0.39243, 81, 8.95, 36.51, 0.60757, 2, 29, + 19.05, 32.93, 0.39729, 81, 19.05, 32.93, 0.60271, 2, 29, 28.51, 27.19, 0.41715, 81, 28.51, 27.19, 0.58285, 2, 29, 36.77, 19.73, 0.45304, 81, 36.77, 19.73, 0.54696, 2, 29, 40.74, + 10.16, 0.44594, 81, 40.74, 10.16, 0.55406, 2, 29, 42.2, -0.42, 0.43856, 81, 42.2, -0.42, 0.56144, 2, 29, 40.55, -10.17, 0.41782, 81, 40.55, -10.17, 0.58218, 2, 29, 35.87, -19.42, + 0.38686, 81, 35.87, -19.42, 0.61314, 2, 29, 28.24, -28.73, 0.36878, 81, 28.24, -28.73, 0.63122, 2, 29, 18.06, -34.64, 0.3386, 81, 18.06, -34.64, 0.6614, 2, 29, 6.41, -37, 0.30037, + 81, 6.41, -37, 0.69963, 2, 29, -2.32, -36.91, 0.28415, 81, -2.32, -36.91, 0.71585, 2, 29, -9.48, -35.32, 0.27399, 81, -9.48, -35.32, 0.72601, 2, 29, -38.52, -8.03, 0.36783, 81, + -38.52, -8.03, 0.63217, 2, 29, -34.06, -18, 0.33446, 81, -34.06, -18, 0.66554, 2, 29, -26.52, -26.8, 0.30599, 81, -26.52, -26.8, 0.69401, 2, 29, -17.23, -32.71, 0.28378, 81, -17.23, + -32.71, 0.71622, 2, 29, -41.59, -42.47, 0.73847, 81, -41.59, -42.47, 0.26153, 2, 29, -27.74, -51.46, 0.71173, 81, -27.74, -51.46, 0.28827, 2, 29, -14.53, -55.88, 0.69513, 81, -14.53, + -55.88, 0.30487, 2, 29, -3.16, -58.91, 0.72225, 81, -3.16, -58.91, 0.27775, 2, 29, 11.08, -60.25, 0.77228, 81, 11.08, -60.25, 0.22772, 2, 29, 29.37, -54.99, 0.80171, 81, 29.37, + -54.99, 0.19829, 2, 29, 43.44, -43.46, 0.78981, 81, 43.44, -43.46, 0.21019, 2, 29, 54.07, -28.78, 0.79382, 81, 54.07, -28.78, 0.20618, 2, 29, 60.6, -14.84, 0.827, 81, 60.6, -14.84, + 0.173, 2, 29, 64.25, -0.38, 0.87698, 81, 64.25, -0.38, 0.12302, 2, 29, 63.98, 16.11, 0.92141, 81, 63.98, 16.11, 0.07859, 2, 29, 56.88, 30.53, 0.90642, 81, 56.88, 30.53, 0.09358, 2, + 29, 46.21, 43.86, 0.90058, 81, 46.21, 43.86, 0.09942, 2, 29, 31.89, 54.43, 0.8953, 81, 31.89, 54.43, 0.1047, 2, 29, 15.52, 61.14, 0.89934, 81, 15.52, 61.14, 0.10066, 2, 29, 0.24, + 62.86, 0.89762, 81, 0.24, 62.86, 0.10238, 2, 29, -14.22, 61.67, 0.90341, 81, -14.22, 61.67, 0.09659, 2, 29, -30.17, 56.55, 0.9151, 81, -30.17, 56.55, 0.0849, 2, 29, -44.28, 48.24, + 0.93596, 81, -44.28, 48.24, 0.06404, 2, 29, -55.51, 33.16, 0.90966, 81, -55.51, 33.16, 0.09034, 2, 29, -61.25, 15.72, 0.86888, 81, -61.25, 15.72, 0.13112, 2, 29, -62.28, 1.26, + 0.83823, 81, -62.28, 1.26, 0.16177, 2, 29, -61.24, -12.59, 0.82811, 81, -61.24, -12.59, 0.17189, 2, 29, -53.41, -30.3, 0.78788, 81, -53.41, -30.3, 0.21212 + ], + "hull": 24, + "edges": [ + 18, 20, 18, 16, 16, 14, 14, 12, 8, 10, 12, 10, 8, 6, 6, 4, 4, 2, 2, 0, 44, 46, 0, 46, 42, 44, 42, 40, 40, 38, 38, 36, 32, 34, 36, 34, 30, 32, 30, 28, 28, 26, 26, 24, 20, 22, 24, 22, + 50, 48, 52, 48, 50, 52, 54, 48, 52, 54, 56, 48, 54, 56, 58, 48, 56, 58, 60, 48, 58, 60, 62, 48, 60, 62, 64, 48, 62, 64, 66, 48, 64, 66, 68, 48, 66, 68, 70, 48, 68, 70, 72, 48, 70, + 72, 74, 48, 72, 74, 76, 48, 74, 76, 78, 48, 76, 78, 80, 48, 78, 80, 82, 48, 80, 82, 84, 48, 82, 84, 86, 48, 84, 86, 88, 48, 86, 88, 90, 48, 88, 90, 92, 48, 90, 92, 94, 48, 92, 94, + 96, 48, 94, 96, 96, 50, 98, 96, 100, 50, 98, 100, 102, 52, 100, 102, 104, 54, 102, 104, 106, 56, 104, 106, 108, 58, 106, 108, 110, 60, 108, 110, 112, 62, 110, 112, 114, 64, 112, 114, + 116, 66, 114, 116, 118, 68, 116, 118, 120, 70, 118, 120, 122, 72, 120, 122, 124, 74, 122, 124, 126, 76, 124, 126, 128, 78, 126, 128, 130, 80, 128, 130, 132, 82, 130, 132, 134, 84, + 132, 134, 136, 86, 134, 136, 138, 94, 98, 138, 140, 92, 138, 140, 142, 90, 140, 142, 144, 88, 142, 144, 144, 136, 26, 146, 146, 142, 24, 148, 148, 144, 146, 148, 22, 150, 150, 136, + 148, 150, 20, 152, 152, 134, 150, 152, 18, 154, 154, 132, 152, 154, 16, 156, 156, 130, 154, 156, 14, 158, 158, 128, 156, 158, 12, 160, 160, 126, 158, 160, 10, 162, 162, 124, 160, + 162, 8, 164, 164, 122, 162, 164, 6, 166, 166, 120, 164, 166, 4, 168, 168, 118, 166, 168, 2, 170, 170, 116, 168, 170, 0, 172, 172, 114, 170, 172, 46, 174, 174, 112, 172, 174, 44, 176, + 176, 110, 174, 176, 42, 178, 178, 108, 176, 178, 40, 180, 180, 106, 178, 180, 38, 182, 182, 104, 180, 182, 36, 184, 184, 102, 182, 184, 34, 186, 186, 100, 184, 186, 32, 188, 188, 98, + 186, 188, 30, 190, 190, 138, 188, 190, 28, 192, 192, 140, 190, 192, 192, 146 + ], + "width": 162.35294117647058, + "height": 162.35294117647058, + "path": "summer-as-lv2.mouth-accessory", + "x": 0.8235294117647101, + "y": 0.8235294117647101 + } + }, + "tail": {"tail": {"x": 111.5964705882353, "y": 26.99, "rotation": 12, "width": 277.6470588235294, "height": 280.0, "path": "summer-as-lv2.tail"}} + } + } + ], + "events": {"hit": {}, "hit-buff": {}, "jump": {}, "start-attack": {}}, + "keyAnimations": { + "activity/appear": "2975056588", + "activity/bath": "4269852312", + "attack/ranged/cast-fly": "1964095857", + "attack/ranged/cast-high": "2755238029", + "attack/ranged/cast-low": "796766875", + "attack/ranged/cast-multi": "2912539256", + "attack/ranged/cast-tail": "515170597", + "action/mix/ear-animation": "901954966", + "activity/eat-bite": "1563829869", + "activity/eat-chew": "4174710305", + "activity/entrance": "636017429", + "defense/evade": "2335495519", + "activity/evolve": "3193680296", + "action/mix/eyes-animation": "3799301307", + "battle/get-buff": "3907351690", + "battle/get-debuff": "503738134", + "defense/hit-by-normal": "978716858", + "defense/hit-by-normal-crit": "3941256645", + "defense/hit-by-normal-dramatic": "2527908154", + "defense/hit-by-ranged-attack": "2207699263", + "defense/hit-with-shield": "3929030741", + "attack/melee/horn-gore": "672810168", + "attack/melee/mouth-bite": "103880736", + "action/move-back": "3766271173", + "action/move-forward": "2945160014", + "attack/melee/multi-attack": "3245081493", + "action/idle/normal": "2865608434", + "attack/melee/normal-attack": "3802408031", + "action/mix/normal-mouth-animation": "1178295570", + "action/idle/normal2": "3503981622", + "activity/prepare": "1112993905", + "action/idle/random-01": "4074297404", + "action/idle/random-02": "3457159700", + "action/idle/random-03": "1228132142", + "action/idle/random-04": "1416671293", + "action/idle/random-05": "2745614147", + "action/run": "1751413398", + "draft/run-origin": "237238075", + "attack/melee/shrimp": "4284047619", + "activity/sleep": "3292250615", + "attack/melee/tail-multi-slap": "4247697367", + "attack/melee/tail-roll": "3634591874", + "attack/melee/tail-smash": "3663734631", + "attack/melee/tail-thrash": "1213410473", + "activity/victory-pose-back-flip": "2227634241" + } + }, + "summer-a-lv2": { + "bones": [ + {"name": "@root"}, {"name": "@pivot-main", "parent": "@root"}, {"name": "@pivot-back", "parent": "@pivot-main", "x": 205, "y": 180, "color": "ff0101ff"}, + {"name": "@pivot-center", "parent": "@pivot-back", "x": -215.11, "y": -5.25, "color": "ff0101ff"}, + {"name": "@axie", "parent": "@pivot-center", "length": 213.28, "rotation": 179.04, "x": 196.39, "y": 5.16}, {"name": "@back", "parent": "@axie", "rotation": -179.04, "x": 37.63, "y": -198.19}, + {"name": "back", "parent": "@back", "length": 149.41, "rotation": 58, "x": -13.97, "y": 26.3, "transform": "noScale"}, + {"name": "@body", "parent": "@axie", "length": 226.28, "rotation": -8.35, "x": 224.58, "y": -0.53}, {"name": "@ear-left", "parent": "@axie", "rotation": -179.04, "x": 112.7, "y": -203.23}, + {"name": "ear-left", "parent": "@ear-left", "length": 113.61, "rotation": 90, "x": -27, "y": 19, "transform": "noScale"}, + {"name": "@ear-right", "parent": "@axie", "rotation": -179.04, "x": 405.28, "y": -235.33}, + {"name": "ear-right", "parent": "@ear-right", "length": 119.39, "rotation": 93, "x": -30, "y": -15, "transform": "noScale"}, + {"name": "@eyes", "parent": "@axie", "rotation": -179.04, "x": 384.24, "y": -113.67}, {"name": "@horn", "parent": "@axie", "rotation": -179.04, "x": 327.92, "y": -214.63}, + {"name": "horn", "parent": "@horn", "length": 176.72, "rotation": 90, "y": 18, "transform": "noScale"}, + {"name": "@leg-back-left", "parent": "@axie", "length": 76.4, "rotation": 100.96, "x": -15.3, "y": 102.56, "transform": "noScale"}, + {"name": "@leg-front-left", "parent": "@axie", "length": 51.19, "rotation": 93.86, "x": 134.77, "y": 149.55, "transform": "noScale"}, + {"name": "@leg-front-right", "parent": "@axie", "length": 74.83, "rotation": 83.2, "x": 382.95, "y": 121.78, "transform": "noScale"}, + {"name": "@mouth", "parent": "@axie", "rotation": -179.04, "x": 382.23, "y": 6.31, "color": "abe323ff"}, + {"name": "body-pattern", "parent": "@body", "rotation": -170.69, "x": -267.21, "y": -49.4, "transform": "noScale"}, {"name": "@shadow", "parent": "@root", "color": "e6d713ff"}, + {"name": "@tail", "parent": "@axie", "rotation": -179.04, "x": -11.76, "y": 61.72}, + {"name": "tail", "parent": "@tail", "length": 203.67, "rotation": -12, "x": 16, "y": 72.87, "transform": "noScale"}, + {"name": "leg-front-right-IK", "parent": "@pivot-main", "x": -195.99, "y": -10.21, "color": "ff3f00ff"}, + {"name": "leg-front-left-IK", "parent": "@pivot-main", "x": 42.3, "y": -18.42, "color": "ff3f00ff"}, + {"name": "leg-back-left-IK", "parent": "@pivot-main", "x": 208.57, "y": 1.35, "color": "ff3f00ff"}, {"name": "@ball", "parent": "@root", "y": 191, "color": "f3981bff"}, + {"name": "ball", "parent": "@ball", "y": -191, "color": "f4a729ff"}, {"name": "mouth-bubble", "parent": "@mouth", "x": -248.49, "y": -1.83}, + {"name": "mouth-accessory", "parent": "mouth-bubble", "x": -67.84, "y": 101.83}, {"name": "eyes-happy-accessory", "parent": "@eyes", "x": 142.51, "y": 62.21}, + {"name": "ear-right-bubble", "parent": "ear-right", "length": 40.07, "rotation": -179.99, "x": 190.79, "y": -17.72}, + {"name": "ear-left-bubble", "parent": "ear-left", "length": 48.54, "rotation": 176.27, "x": 197.3, "y": -23.23, "scaleX": 0.949}, + {"name": "ear-left-all-bubble", "parent": "ear-left", "length": 26.1, "rotation": 0.95, "x": -6.64, "y": -27.7, "color": "3002ffff"}, + {"name": "ear-right-dot-01", "parent": "ear-left-all-bubble", "rotation": -90.95, "x": -13.64, "y": 22.67, "scaleX": 0.3508, "scaleY": 0.3508, "color": "2f9bffff"}, + {"name": "ear-left-dot-01", "parent": "ear-left-all-bubble", "rotation": -90.95, "x": -28.82, "y": -24.72, "scaleX": 0.7755, "scaleY": 0.7755, "color": "2f9bffff"}, + {"name": "ear-right-bubble-02", "parent": "ear-right-bubble", "rotation": 86.99, "x": 42.45, "y": -32.45}, + {"name": "ear-right-bubble-03", "parent": "ear-right-bubble", "rotation": 86.99, "x": 64.75, "y": -1.3}, + {"name": "ear-right-bubble-04", "parent": "ear-right-bubble", "rotation": 86.99, "x": 49.1, "y": 33.33}, + {"name": "ear-left-bubble-02", "parent": "ear-left-bubble", "rotation": 93.73, "x": 59.21, "y": -23.48}, + {"name": "ear-left-bubble-03", "parent": "ear-left-bubble", "rotation": 93.73, "x": 60.37, "y": 9.26}, + {"name": "ear-left-bubble-04", "parent": "ear-left-bubble", "rotation": 93.73, "x": 57.44, "y": 49.26}, + {"name": "ear-right-bubble-05", "parent": "ear-right", "length": 40.07, "rotation": -179.99, "x": 190.79, "y": -17.72}, + {"name": "ear-right-bubble-06", "parent": "ear-right-bubble-05", "rotation": 86.99, "x": 42.45, "y": -32.45}, + {"name": "ear-right-bubble-07", "parent": "ear-right-bubble-05", "rotation": 86.99, "x": 64.75, "y": -1.3}, + {"name": "ear-right-bubble-08", "parent": "ear-right-bubble-05", "rotation": 86.99, "x": 49.1, "y": 33.33}, + {"name": "ear-left-bubble-05", "parent": "ear-left", "length": 48.54, "rotation": 176.27, "x": 197.3, "y": -23.23, "scaleX": 0.991}, + {"name": "ear-left-bubble-06", "parent": "ear-left-bubble-05", "rotation": 93.73, "x": 58.06, "y": -23.58}, + {"name": "ear-left-bubble-07", "parent": "ear-left-bubble-05", "rotation": 93.73, "x": 56.15, "y": 8.97}, + {"name": "ear-left-bubble-08", "parent": "ear-left-bubble-05", "rotation": 93.73, "x": 56.24, "y": 49.17}, + {"name": "ear-right-dot-02", "parent": "ear-left-all-bubble", "rotation": -95.73, "x": -18.26, "y": -8.1, "scaleX": 0.5668, "scaleY": 0.6813, "color": "2f9bffff"}, + {"name": "ear-left-dot-02", "parent": "ear-left-all-bubble", "rotation": -88.74, "x": 8.57, "y": 59.72, "scaleX": 0.6577, "scaleY": 0.5996, "color": "2f9bffff"}, + {"name": "ear-right-dot-03", "parent": "ear-left-all-bubble", "rotation": -87.96, "x": -25.76, "y": -45.18, "scaleX": 0.2583, "scaleY": 0.2881, "color": "2f9bffff"}, + {"name": "ear-right-dot-04", "parent": "ear-left-all-bubble", "rotation": -88.51, "x": -27.05, "y": -31.17, "scaleX": 0.4361, "scaleY": 0.6365, "color": "2f9bffff"}, + {"name": "ear-right-dot-05", "parent": "ear-left-all-bubble", "rotation": -94.07, "x": -5.28, "y": 34.53, "scaleX": 0.854, "scaleY": 0.6721, "color": "2f9bffff"}, + {"name": "ear-left-dot-03", "parent": "ear-left-all-bubble", "rotation": -90.95, "x": -10.57, "y": 11.72, "scaleX": 0.8206, "scaleY": 0.8206, "color": "2f9bffff"}, + {"name": "ear-left-dot-04", "parent": "ear-left-all-bubble", "rotation": -90.95, "x": 11.94, "y": 65.23, "scaleX": 0.7096, "scaleY": 0.7096, "color": "2f9bffff"}, + {"name": "ear-left-dot-05", "parent": "ear-left-all-bubble", "rotation": -88.35, "x": 10.11, "y": 68.29, "scaleX": 0.4014, "scaleY": 0.366, "color": "2f9bffff"}, + {"name": "ear-left-dot-06", "parent": "ear-left-all-bubble", "rotation": -90.95, "x": 34.65, "y": 74.95, "scaleX": 0.8206, "scaleY": 0.8206, "color": "2f9bffff"}, + {"name": "ear-right-dot-06", "parent": "ear-left-all-bubble", "rotation": -90.95, "x": -11.77, "y": 50.86, "scaleX": 0.4361, "scaleY": 0.4361, "color": "2f9bffff"}, + {"name": "ear-right-dot-07", "parent": "ear-left-all-bubble", "rotation": -96.07, "x": -32.28, "y": -4.86, "scaleX": 0.5668, "scaleY": 0.6813, "color": "2f9bffff"}, + {"name": "ear-right-dot-08", "parent": "ear-left-all-bubble", "rotation": -90.23, "x": -18.31, "y": -61.25, "scaleX": 0.7405, "scaleY": 0.826, "color": "2f9bffff"}, + {"name": "ear-right-dot-09", "parent": "ear-left-all-bubble", "rotation": -93.53, "x": -9.54, "y": 52.15, "scaleX": 0.2863, "scaleY": 0.3229, "color": "2f9bffff"}, + {"name": "ear-right-dot-10", "parent": "ear-left-all-bubble", "rotation": -111.97, "x": -31.43, "y": 21.83, "scaleX": 0.5911, "scaleY": 0.3731, "color": "2f9bffff"}, + {"name": "ear-right-all-bubble", "parent": "ear-right", "length": 26.1, "rotation": 3.44, "x": -10.08, "y": -8.05, "color": "3002ffff"}, + {"name": "ear-right-dot-11", "parent": "ear-right-all-bubble", "rotation": -96.44, "x": 10.27, "y": -24.86, "scaleX": 0.3508, "scaleY": 0.3508, "color": "2f9bffff"}, + {"name": "ear-left-dot-07", "parent": "ear-right-all-bubble", "rotation": -96.44, "x": 27.18, "y": -39.33, "scaleX": 0.7755, "scaleY": 0.7755, "color": "2f9bffff"}, + {"name": "ear-right-dot-12", "parent": "ear-right-all-bubble", "rotation": -101.56, "x": -18.26, "y": -8.1, "scaleX": 0.5668, "scaleY": 0.6813, "color": "2f9bffff"}, + {"name": "ear-left-dot-08", "parent": "ear-right-all-bubble", "rotation": -93.99, "x": -7.49, "y": -14.12, "scaleX": 0.6577, "scaleY": 0.5996, "color": "2f9bffff"}, + {"name": "ear-right-dot-13", "parent": "ear-right-all-bubble", "rotation": -93.67, "x": 43.59, "y": -57.74, "scaleX": 0.2583, "scaleY": 0.2881, "color": "2f9bffff"}, + {"name": "ear-right-dot-14", "parent": "ear-right-all-bubble", "rotation": -96.49, "x": 8.09, "y": -20.73, "scaleX": 0.4361, "scaleY": 0.6365, "color": "2f9bffff"}, + {"name": "ear-right-dot-15", "parent": "ear-right-all-bubble", "rotation": -84.65, "x": -5.28, "y": 34.53, "scaleX": 0.5911, "scaleY": 0.8949, "color": "2f9bffff"}, + {"name": "ear-left-dot-09", "parent": "ear-right-all-bubble", "rotation": -96.44, "x": -10.57, "y": 11.72, "scaleX": 0.8206, "scaleY": 0.8206, "color": "2f9bffff"}, + {"name": "ear-left-dot-10", "parent": "ear-right-all-bubble", "rotation": -96.44, "x": -13.81, "y": 2.57, "scaleX": 0.7096, "scaleY": 0.7096, "color": "2f9bffff"}, + {"name": "ear-left-dot-11", "parent": "ear-right-all-bubble", "rotation": -93.79, "x": -9.28, "y": 21.87, "scaleX": 0.4014, "scaleY": 0.366, "color": "2f9bffff"}, + {"name": "ear-left-dot-12", "parent": "ear-right-all-bubble", "rotation": -96.44, "x": -2.52, "y": 33.38, "scaleX": 0.8206, "scaleY": 0.8206, "color": "2f9bffff"}, + {"name": "ear-right-dot-16", "parent": "ear-right-all-bubble", "rotation": -96.44, "x": -4.07, "y": -34.4, "scaleX": 0.4361, "scaleY": 0.4361, "color": "2f9bffff"}, + {"name": "ear-right-dot-17", "parent": "ear-right-all-bubble", "rotation": -101.7, "x": 4.16, "y": -7.75, "scaleX": 0.5668, "scaleY": 0.6813, "color": "2f9bffff"}, + {"name": "ear-right-dot-18", "parent": "ear-right-all-bubble", "rotation": -96.34, "x": 27.4, "y": -55.17, "scaleX": 0.7405, "scaleY": 0.826, "color": "2f9bffff"}, + {"name": "ear-right-dot-19", "parent": "ear-right-all-bubble", "rotation": -99.41, "x": -9.54, "y": 52.15, "scaleX": 0.2863, "scaleY": 0.3229, "color": "2f9bffff"}, + {"name": "ear-right-dot-20", "parent": "ear-right-all-bubble", "rotation": -86.28, "x": 12.43, "y": -37.05, "scaleX": 0.5911, "scaleY": 0.8949, "color": "2f9bffff"}, + {"name": "mouth-bubble-core", "parent": "mouth-accessory"}, {"name": "eyes-light-left", "parent": "@eyes", "length": 15.08, "rotation": -135.48, "x": 69.15, "y": -15.18}, + {"name": "eyes-light-right", "parent": "@eyes", "length": 15.08, "rotation": -135.48, "x": -97.9, "y": -16.49}, {"name": "eyes-light-dot", "parent": "@eyes", "x": -66.73, "y": 27.82}, + {"name": "eyes-light-dot-02", "parent": "@eyes", "x": 103.19, "y": 27.82} + ], + "slots": [ + {"name": "shadow", "bone": "@shadow", "attachment": "shadow"}, {"name": "ball", "bone": "ball"}, + {"name": "leg-front-right", "bone": "@leg-front-right", "attachment": "summer-leg-front-right"}, {"name": "tail", "bone": "tail", "attachment": "tail"}, + {"name": "back", "bone": "back", "attachment": "back"}, {"name": "leg-back-left", "bone": "@leg-back-left", "attachment": "summer-leg-back-left"}, + {"name": "body", "bone": "@body", "attachment": "body"}, {"name": "body-pattern", "bone": "body-pattern"}, {"name": "ear-right-under", "bone": "ear-right", "attachment": "ear-right-under"}, + {"name": "ear-left-dot-07", "bone": "ear-left-dot-07", "color": "ffffff00", "attachment": "ear-left-dot"}, + {"name": "ear-left-dot-10", "bone": "ear-left-dot-10", "color": "ffffff00", "attachment": "ear-left-dot"}, + {"name": "ear-left-dot-09", "bone": "ear-left-dot-09", "color": "ffffff00", "attachment": "ear-left-dot"}, + {"name": "ear-left-dot-12", "bone": "ear-left-dot-12", "color": "ffffff00", "attachment": "ear-left-dot"}, + {"name": "ear-left-dot-08", "bone": "ear-left-dot-08", "color": "ffffff00", "attachment": "ear-left-dot"}, + {"name": "ear-left-dot-11", "bone": "ear-left-dot-11", "color": "ffffff00", "attachment": "ear-left-dot"}, + {"name": "ear-right-dot-11", "bone": "ear-right-dot-11", "color": "ffffff00", "attachment": "ear-right-dot"}, + {"name": "ear-right-dot-16", "bone": "ear-right-dot-16", "color": "ffffff00", "attachment": "ear-right-dot"}, + {"name": "ear-right-dot-12", "bone": "ear-right-dot-12", "color": "ffffff00", "attachment": "ear-right-dot"}, + {"name": "ear-right-dot-17", "bone": "ear-right-dot-17", "color": "ffffff00", "attachment": "ear-right-dot"}, + {"name": "ear-right-dot-13", "bone": "ear-right-dot-13", "color": "ffffff00", "attachment": "ear-right-dot"}, + {"name": "ear-right-dot-18", "bone": "ear-right-dot-18", "color": "ffffff00", "attachment": "ear-right-dot"}, + {"name": "ear-right-dot-14", "bone": "ear-right-dot-14", "color": "ffffff00", "attachment": "ear-right-dot"}, + {"name": "ear-right-dot-19", "bone": "ear-right-dot-19", "color": "ffffff00", "attachment": "ear-right-dot"}, + {"name": "ear-right-dot-15", "bone": "ear-right-dot-15", "color": "ffffff00", "attachment": "ear-right-dot"}, + {"name": "ear-right-dot-20", "bone": "ear-right-dot-20", "color": "ffffff00", "attachment": "ear-right-dot"}, + {"name": "ear-right-bubble", "bone": "ear-right-bubble", "color": "fcae10ff", "attachment": "ear-right-bubble"}, + {"name": "ear-right-bubble-02", "bone": "ear-right-bubble-05", "attachment": "ear-right-bubble"}, {"name": "ear-right-upper", "bone": "ear-right", "attachment": "ear-right-upper"}, + {"name": "leg-front-left", "bone": "@leg-front-left", "attachment": "summer-leg-front-left"}, {"name": "horn", "bone": "horn", "attachment": "horn"}, + {"name": "ear-left-under", "bone": "ear-left", "attachment": "ear-left-under"}, {"name": "ear-left-dot-01", "bone": "ear-left-dot-01", "color": "ffffff00", "attachment": "ear-left-dot"}, + {"name": "ear-left-dot-04", "bone": "ear-left-dot-04", "color": "ffffff00", "attachment": "ear-left-dot"}, + {"name": "ear-left-dot-03", "bone": "ear-left-dot-03", "color": "ffffff00", "attachment": "ear-left-dot"}, + {"name": "ear-left-dot-06", "bone": "ear-left-dot-06", "color": "ffffff00", "attachment": "ear-left-dot"}, + {"name": "ear-left-dot-02", "bone": "ear-left-dot-02", "color": "ffffff00", "attachment": "ear-left-dot"}, + {"name": "ear-left-dot-05", "bone": "ear-left-dot-05", "color": "ffffff00", "attachment": "ear-left-dot"}, + {"name": "ear-right-dot-01", "bone": "ear-right-dot-01", "color": "ffffff00", "attachment": "ear-right-dot"}, + {"name": "ear-right-dot-06", "bone": "ear-right-dot-06", "color": "ffffff00", "attachment": "ear-right-dot"}, + {"name": "ear-right-dot-02", "bone": "ear-right-dot-02", "color": "ffffff00", "attachment": "ear-right-dot"}, + {"name": "ear-right-dot-07", "bone": "ear-right-dot-07", "color": "ffffff00", "attachment": "ear-right-dot"}, + {"name": "ear-right-dot-03", "bone": "ear-right-dot-03", "color": "ffffff00", "attachment": "ear-right-dot"}, + {"name": "ear-right-dot-08", "bone": "ear-right-dot-08", "color": "ffffff00", "attachment": "ear-right-dot"}, + {"name": "ear-right-dot-04", "bone": "ear-right-dot-04", "color": "ffffff00", "attachment": "ear-right-dot"}, + {"name": "ear-right-dot-09", "bone": "ear-right-dot-09", "color": "ffffff00", "attachment": "ear-right-dot"}, + {"name": "ear-right-dot-05", "bone": "ear-right-dot-05", "color": "ffffff00", "attachment": "ear-right-dot"}, + {"name": "ear-right-dot-10", "bone": "ear-right-dot-10", "color": "ffffff00", "attachment": "ear-right-dot"}, + {"name": "ear-left-bubble", "bone": "ear-left-bubble", "color": "fcae10ff", "attachment": "ear-left-bubble"}, + {"name": "ear-left-bubble-02", "bone": "ear-left-bubble-05", "attachment": "ear-left-bubble"}, {"name": "ear-left-upper", "bone": "ear-left", "attachment": "ear-left-upper"}, + {"name": "eyes", "bone": "@eyes", "attachment": "eyes"}, {"name": "eyes-light-dot", "bone": "eyes-light-dot"}, {"name": "eyes-light-dot-02", "bone": "eyes-light-dot-02"}, + {"name": "eyes-light-left", "bone": "eyes-light-left", "color": "fff96500", "attachment": "light", "blend": "additive"}, + {"name": "eyes-light-right", "bone": "eyes-light-right", "color": "fff96500", "attachment": "light", "blend": "additive"}, {"name": "eyes-upper", "bone": "@eyes", "attachment": "eyes-upper"}, + {"name": "mouth", "bone": "@mouth", "attachment": "mouth"}, {"name": "mouth-accessory", "bone": "mouth-accessory", "color": "ffffff00", "attachment": "mouth-accessory"}, + {"name": "eyes-happy-accessory", "bone": "eyes-happy-accessory", "color": "ffffff00", "attachment": "eyes-happy-accessory", "blend": "additive"} + ], + "ik": [ + {"name": "leg-back-left-IK", "order": 3, "bones": ["@leg-back-left"], "target": "leg-back-left-IK"}, + {"name": "leg-front-left-IK", "order": 2, "bones": ["@leg-front-left"], "target": "leg-front-left-IK"}, + {"name": "leg-front-right-IK", "bones": ["@leg-front-right"], "target": "leg-front-right-IK"} + ], + "transform": [{"name": "@mouth", "order": 1, "bones": ["mouth-bubble"], "target": "@mouth", "x": -49.1, "y": 37.9, "rotateMix": 0, "translateMix": 0, "scaleMix": 0, "shearMix": 0}], + "skins": [ + { + "name": "default", + "attachments": { + "back": {"back": {"x": 109.17235294117647, "y": 19.543529411764695, "rotation": -58, "width": 308.2352941176471, "height": 322.3529411764706, "path": "summer-a-lv2.back"}}, + "ear-left-bubble": { + "ear-left-bubble": { + "type": "mesh", + "uvs": [ + 0.87714, 0.57697, 0.91393, 0.67811, 0.94364, 0.75977, 0.96133, 0.8176, 0.97838, 0.87333, 1, 0.94398, 0.93104, 0.94427, 0.90524, 0.94438, 0.88494, 0.94447, 0.85255, 0.94461, 0.82176, + 0.94474, 0.79396, 0.94486, 0.76382, 0.94499, 0.73767, 0.9451, 0.70713, 0.94523, 0.67579, 0.94536, 0.64108, 0.94551, 0.61244, 0.94564, 0.5758, 0.94579, 0.5367, 0.94596, 0.50394, + 0.9461, 0.47091, 0.94624, 0.435, 0.94639, 0.39675, 0.94656, 0.36198, 0.94671, 0.32916, 0.94685, 0.29359, 0.947, 0.25022, 0.94718, 0.20956, 0.94736, 0.17261, 0.94751, 0.12749, + 0.94771, 0.1012, 0.94782, 0.07834, 0.94792, 0.0457, 0.94806, 0.02123, 0.94816, 0, 0.94825, 0, 0.86703, 0, 0.81359, 0, 0.73715, 0.02817, 0.68242, 0.07791, 0.5858, 0.37947, 0, 0.46651, + 0, 0.5261, 0, 0.59994, 0, 0.66726, 0, 0.02864, 0.86721, 0.04805, 0.81379, 0.07275, 0.7389, 0.0999, 0.68207, 0.14259, 0.58508, 0.49108, 0.58123, 0.82646, 0.57753, 0.86109, 0.67837, + 0.88458, 0.75835, 0.90003, 0.81734, 0.91424, 0.87292, 0.48557, 0.6802, 0.48069, 0.74867, 0.47772, 0.81558, 0.4758, 0.87009, 0.29126, 0.58344, 0.25576, 0.68132, 0.23492, 0.74278, + 0.2135, 0.81448, 0.19874, 0.86831, 0.19271, 0.49455, 0.4968, 0.48641, 0.79002, 0.48462, 0.25666, 0.37903, 0.50462, 0.35653, 0.74321, 0.36527, 0.68757, 0.57906, 0.70466, 0.67913, + 0.71716, 0.75434, 0.72541, 0.81661, 0.73109, 0.87174, 0.67152, 0.48534, 0.32349, 0.49105, 0.38378, 0.58242, 0.36974, 0.68076, 0.36036, 0.74579, 0.34895, 0.81504, 0.34148, 0.86923, + 0.20652, 0.58437, 0.16979, 0.68173, 0.1462, 0.74066, 0.12077, 0.81409, 0.10379, 0.8677, 0.59158, 0.58012, 0.59921, 0.67965, 0.60299, 0.7516, 0.60776, 0.81612, 0.60866, 0.87095, + 0.76107, 0.57825, 0.78751, 0.67873, 0.81003, 0.75656, 0.82525, 0.81703, 0.83754, 0.87243, 0.10852, 0.73975, 0.08479, 0.81394, 0.06934, 0.86747, 0.15113, 0.868, 0.1657, 0.81428, + 0.18746, 0.74164, 0.29675, 0.74426, 0.28022, 0.81476, 0.26841, 0.86876, 0.41495, 0.7471, 0.40761, 0.81529, 0.4031, 0.86963, 0.53765, 0.87049, 0.53762, 0.81583, 0.53944, 0.75008, + 0.6595, 0.75296, 0.66217, 0.81635, 0.66857, 0.87134, 0.78397, 0.87208, 0.7758, 0.81682, 0.76492, 0.75548, 0.74852, 0.67892, 0.82675, 0.67854, 0.84222, 0.75734, 0.8595, 0.81717, + 0.87132, 0.87264, 0.01186, 0.9147, 0.056, 0.91293, 0.08943, 0.91297, 0.13846, 0.91074, 0.18465, 0.91102, 0.25824, 0.91262, 0.33507, 0.90958, 0.39978, 0.90977, 0.47313, 0.91161, + 0.53714, 0.91117, 0.61061, 0.90948, 0.67252, 0.91178, 0.73471, 0.91209, 0.78925, 0.91054, 0.84557, 0.91105, 0.87872, 0.91169, 0.92292, 0.90979, 0.21772, 0.91173, 0.11081, 0.912, + 0.02923, 0.91401, 0.29821, 0.91104, 0.36548, 0.90967, 0.43685, 0.9107, 0.50336, 0.9114, 0.57635, 0.91027, 0.64066, 0.9106, 0.70543, 0.91195, 0.76031, 0.91136, 0.81833, 0.9108, + 0.89934, 0.9108 + ], + "triangles": [ + 85, 84, 62, 94, 73, 72, 123, 54, 55, 62, 84, 61, 100, 48, 99, 144, 46, 126, 122, 53, 54, 121, 95, 52, 48, 49, 99, 35, 36, 125, 125, 36, 46, 48, 47, 38, 47, 37, 38, 50, 66, 84, 50, + 40, 66, 56, 3, 4, 54, 53, 1, 52, 68, 0, 70, 42, 43, 71, 0, 68, 44, 45, 71, 70, 43, 44, 71, 70, 44, 69, 41, 42, 69, 42, 70, 71, 45, 0, 77, 70, 71, 77, 71, 68, 70, 78, 69, 67, 70, 77, + 67, 78, 70, 41, 69, 40, 66, 69, 78, 94, 77, 68, 94, 68, 52, 72, 77, 94, 89, 67, 77, 89, 77, 72, 67, 79, 78, 51, 67, 89, 51, 79, 67, 61, 66, 78, 61, 78, 79, 84, 66, 61, 40, 69, 66, + 90, 89, 72, 90, 72, 73, 57, 79, 51, 57, 51, 89, 57, 89, 90, 80, 61, 79, 80, 79, 57, 62, 61, 80, 108, 80, 57, 113, 57, 90, 53, 52, 0, 53, 0, 1, 121, 52, 53, 54, 1, 2, 95, 94, 52, 55, + 2, 3, 55, 54, 2, 5, 6, 4, 39, 40, 49, 49, 40, 50, 38, 39, 48, 46, 36, 37, 48, 39, 49, 85, 50, 84, 49, 50, 85, 47, 46, 37, 56, 55, 3, 122, 121, 53, 47, 48, 100, 46, 47, 101, 125, 46, + 144, 35, 125, 34, 34, 125, 144, 101, 47, 100, 86, 99, 49, 85, 86, 49, 120, 94, 95, 120, 73, 94, 114, 91, 90, 73, 114, 90, 74, 73, 120, 114, 73, 74, 119, 120, 95, 74, 120, 119, 96, + 95, 121, 119, 95, 96, 96, 121, 122, 92, 91, 114, 115, 114, 74, 92, 114, 115, 75, 74, 119, 115, 74, 75, 118, 119, 96, 75, 119, 118, 97, 96, 122, 118, 96, 97, 123, 122, 54, 97, 122, + 123, 93, 92, 115, 116, 115, 75, 93, 115, 116, 76, 75, 118, 116, 75, 76, 117, 118, 97, 76, 118, 117, 98, 97, 123, 117, 97, 98, 124, 123, 55, 98, 123, 124, 150, 135, 93, 153, 138, 117, + 116, 150, 93, 98, 153, 117, 154, 124, 56, 154, 56, 141, 139, 98, 124, 140, 139, 124, 153, 98, 139, 152, 76, 117, 152, 117, 138, 154, 140, 124, 151, 136, 116, 150, 116, 136, 76, 151, + 116, 137, 151, 76, 152, 137, 76, 7, 154, 141, 7, 141, 6, 8, 140, 154, 8, 154, 7, 9, 139, 140, 9, 140, 8, 10, 153, 139, 10, 139, 9, 11, 138, 153, 11, 153, 10, 12, 152, 138, 12, 138, + 11, 13, 137, 152, 13, 152, 12, 14, 151, 137, 14, 137, 13, 15, 136, 151, 15, 151, 14, 16, 150, 136, 16, 136, 15, 17, 135, 150, 17, 150, 16, 124, 55, 56, 6, 141, 4, 141, 56, 4, 113, + 90, 91, 81, 80, 108, 58, 108, 57, 109, 81, 108, 82, 81, 109, 59, 108, 58, 109, 108, 59, 112, 58, 113, 59, 58, 112, 112, 113, 91, 92, 112, 91, 110, 82, 109, 83, 82, 110, 60, 109, 59, + 110, 109, 60, 111, 112, 92, 59, 112, 111, 60, 59, 111, 111, 92, 93, 146, 83, 110, 131, 83, 146, 132, 146, 110, 149, 111, 93, 149, 93, 135, 147, 110, 60, 132, 110, 147, 111, 148, 60, + 134, 111, 149, 134, 148, 111, 133, 147, 60, 148, 133, 60, 18, 134, 149, 18, 149, 135, 18, 135, 17, 19, 148, 134, 19, 134, 18, 20, 148, 19, 21, 147, 133, 20, 21, 133, 20, 133, 148, + 22, 132, 147, 22, 147, 21, 23, 146, 132, 23, 132, 22, 24, 131, 146, 24, 146, 23, 25, 131, 24, 58, 57, 113, 63, 104, 85, 86, 85, 104, 62, 63, 85, 105, 62, 80, 63, 62, 105, 81, 105, + 80, 87, 99, 86, 100, 99, 87, 103, 86, 104, 87, 86, 103, 64, 104, 63, 103, 104, 64, 106, 63, 105, 64, 63, 106, 82, 105, 81, 106, 105, 82, 88, 100, 87, 101, 100, 88, 102, 87, 103, 88, + 87, 102, 65, 103, 64, 102, 103, 65, 107, 64, 106, 65, 64, 107, 83, 106, 82, 107, 106, 83, 83, 145, 107, 128, 88, 102, 129, 102, 65, 128, 102, 129, 131, 145, 83, 142, 65, 107, 129, + 65, 142, 143, 88, 128, 130, 142, 107, 130, 107, 145, 127, 101, 88, 127, 88, 143, 126, 101, 127, 25, 145, 131, 26, 130, 145, 26, 145, 25, 27, 142, 130, 27, 130, 26, 28, 129, 142, 28, + 142, 27, 29, 128, 129, 29, 129, 28, 30, 143, 128, 30, 128, 29, 31, 127, 143, 31, 143, 30, 32, 126, 127, 32, 127, 31, 33, 144, 126, 33, 126, 32, 126, 46, 101, 34, 144, 33 + ], + "vertices": [ + 4, 39, 58.43, 20.31, 0.00012, 40, 36.09, 20.31, 0.00054, 41, 13.17, 20.31, 0.12631, 32, 43.2, 34, 0.87302, 3, 40, 39.33, 12.22, 0.00019, 41, 16.41, 12.22, 0.19743, 32, 51.06, 37.76, + 0.80237, 3, 40, 41.94, 5.69, 6e-05, 41, 19.02, 5.69, 0.26715, 32, 57.41, 40.79, 0.73278, 3, 40, 43.5, 1.06, 1e-05, 41, 20.58, 1.06, 0.33542, 32, 61.92, 42.65, 0.66457, 3, 40, 45, + -3.4, 1e-05, 41, 22.08, -3.4, 0.40033, 32, 66.27, 44.44, 0.59966, 3, 40, 46.9, -9.05, 0, 41, 23.98, -9.05, 0.45012, 32, 71.79, 46.7, 0.54988, 3, 40, 40.83, -9.07, 0, 41, 17.91, + -9.07, 0.5829, 32, 72.21, 40.65, 0.4171, 3, 40, 38.56, -9.08, 4e-05, 41, 15.64, -9.08, 0.72131, 32, 72.37, 38.38, 0.27865, 3, 40, 36.78, -9.09, 0.00031, 41, 13.86, -9.09, 0.8264, 32, + 72.49, 36.6, 0.17329, 3, 40, 33.93, -9.1, 0.00157, 41, 11, -9.1, 0.90359, 32, 72.69, 33.76, 0.09484, 3, 40, 31.22, -9.11, 0.00537, 41, 8.3, -9.11, 0.94975, 32, 72.87, 31.05, 0.04488, + 3, 40, 28.77, -9.12, 0.01601, 41, 5.85, -9.12, 0.96404, 32, 73.04, 28.61, 0.01996, 3, 40, 26.12, -9.13, 0.03803, 41, 3.2, -9.13, 0.95562, 32, 73.22, 25.97, 0.00635, 3, 40, 23.82, + -9.14, 0.08031, 41, 0.9, -9.14, 0.91597, 32, 73.38, 23.67, 0.00372, 4, 39, 43.47, -9.15, 0, 40, 21.13, -9.15, 0.14592, 41, -1.79, -9.15, 0.85165, 32, 73.57, 20.99, 0.00243, 4, 39, + 40.71, -9.16, 2e-05, 40, 18.37, -9.16, 0.23867, 41, -4.55, -9.16, 0.75671, 32, 73.76, 18.24, 0.0046, 4, 39, 37.66, -9.17, 0.00014, 40, 15.32, -9.17, 0.35275, 41, -7.6, -9.17, + 0.64256, 32, 73.97, 15.19, 0.00455, 4, 39, 35.13, -9.18, 0.00092, 40, 12.8, -9.18, 0.48034, 41, -10.13, -9.18, 0.51198, 32, 74.14, 12.68, 0.00676, 4, 39, 31.91, -9.19, 0.00375, 40, + 9.57, -9.19, 0.61095, 41, -13.35, -9.19, 0.38019, 32, 74.36, 9.46, 0.00512, 4, 39, 28.47, -9.21, 0.01298, 40, 6.13, -9.21, 0.72267, 41, -16.79, -9.21, 0.25841, 32, 74.6, 6.03, + 0.00594, 4, 39, 25.59, -9.22, 0.03422, 40, 3.25, -9.22, 0.80451, 41, -19.67, -9.22, 0.15782, 32, 74.8, 3.15, 0.00345, 4, 39, 22.68, -9.23, 0.07754, 40, 0.34, -9.23, 0.83155, 41, + -22.58, -9.23, 0.08642, 32, 75, 0.25, 0.00449, 4, 39, 19.52, -9.24, 0.14705, 40, -2.82, -9.24, 0.80991, 41, -25.74, -9.24, 0.04032, 32, 75.22, -2.9, 0.00272, 4, 39, 16.15, -9.25, + 0.24563, 40, -6.18, -9.25, 0.73344, 41, -29.11, -9.25, 0.01645, 32, 75.45, -6.26, 0.00448, 4, 39, 13.09, -9.27, 0.36774, 40, -9.24, -9.27, 0.62371, 41, -32.17, -9.27, 0.00512, 32, + 75.66, -9.31, 0.00344, 4, 39, 10.21, -9.28, 0.50372, 40, -12.13, -9.28, 0.49001, 41, -35.05, -9.28, 0.00135, 32, 75.86, -12.19, 0.00491, 4, 39, 7.08, -9.29, 0.64487, 40, -15.26, + -9.29, 0.35177, 41, -38.18, -9.29, 0.00021, 32, 76.08, -15.32, 0.00314, 4, 39, 3.26, -9.3, 0.77, 40, -19.08, -9.3, 0.22651, 41, -42, -9.3, 3e-05, 32, 76.34, -19.12, 0.00346, 4, 39, + -0.32, -9.32, 0.87272, 40, -22.66, -9.32, 0.1254, 41, -45.58, -9.32, 0, 32, 76.59, -22.69, 0.00188, 3, 39, -3.57, -9.33, 0.9351, 40, -25.91, -9.33, 0.0605, 32, 76.81, -25.94, 0.0044, + 3, 39, -7.54, -9.35, 0.96153, 40, -29.88, -9.35, 0.02278, 32, 77.09, -29.9, 0.01569, 3, 39, -9.85, -9.35, 0.93655, 40, -32.19, -9.35, 0.00657, 32, 77.24, -32.21, 0.05688, 3, 39, + -11.87, -9.36, 0.83576, 40, -34.2, -9.36, 0.00151, 32, 77.38, -34.21, 0.16273, 3, 39, -14.74, -9.37, 0.65143, 40, -37.08, -9.37, 0.00023, 32, 77.58, -37.08, 0.34834, 3, 39, -16.89, + -9.38, 0.4382, 40, -39.23, -9.38, 2e-05, 32, 77.73, -39.23, 0.56178, 3, 39, -18.76, -9.39, 0.27507, 40, -41.1, -9.39, 0, 32, 77.86, -41.09, 0.72493, 3, 39, -18.76, -2.89, 0.21414, + 40, -41.1, -2.89, 2e-05, 32, 71.37, -41.51, 0.78584, 3, 39, -18.76, 1.38, 0.19077, 40, -41.1, 1.38, 0.00024, 32, 67.11, -41.79, 0.80899, 3, 39, -18.76, 7.5, 0.1765, 40, -41.1, 7.5, + 0.00116, 32, 61.01, -42.19, 0.82235, 4, 39, -16.28, 11.88, 0.15382, 40, -38.62, 11.88, 0.00307, 41, -61.54, 11.88, 1e-05, 32, 56.48, -40, 0.84309, 4, 39, -11.9, 19.61, 0.11079, 40, + -34.24, 19.61, 0.0029, 41, -57.16, 19.61, 0.00014, 32, 48.48, -36.13, 0.88617, 4, 39, 14.63, 66.47, 0.04584, 40, -7.7, 66.47, 0.00083, 41, -30.63, 66.47, 0.00037, 32, -0.01, -12.7, + 0.95296, 4, 39, 22.29, 66.47, 0.02247, 40, -0.04, 66.47, 0.00083, 41, -22.97, 66.47, 0.00288, 32, -0.51, -5.06, 0.97382, 4, 39, 27.54, 66.47, 0.01007, 40, 5.2, 66.47, 0.00155, 41, + -17.72, 66.47, 0.0104, 32, -0.85, 0.17, 0.97798, 4, 39, 34.04, 66.47, 0.00272, 40, 11.7, 66.47, 0.00045, 41, -11.22, 66.47, 0.02285, 32, -1.28, 6.66, 0.97398, 4, 39, 39.96, 66.47, + 0.00033, 40, 17.62, 66.47, 0.00011, 41, -5.3, 66.47, 0.0498, 32, -1.66, 12.57, 0.94976, 3, 39, -16.24, -2.91, 0.33437, 40, -38.58, -2.91, 0.0002, 32, 71.23, -39, 0.66543, 3, 39, + -14.53, 1.37, 0.32645, 40, -36.87, 1.37, 0.00078, 32, 66.85, -37.57, 0.67277, 4, 39, -12.36, 7.36, 0.307, 40, -34.7, 7.36, 0.00285, 41, -57.62, 7.36, 1e-05, 32, 60.73, -35.79, + 0.69014, 4, 39, -9.97, 11.91, 0.26477, 40, -32.31, 11.91, 0.00971, 41, -55.23, 11.91, 0.00027, 32, 56.04, -33.7, 0.72525, 4, 39, -6.21, 19.66, 0.19881, 40, -28.55, 19.66, 0.00959, + 41, -51.47, 19.66, 0.00132, 32, 48.05, -30.46, 0.79028, 4, 39, 24.46, 19.97, 0.10712, 40, 2.12, 19.97, 0.11704, 41, -20.8, 19.97, 0.11672, 32, 45.75, 0.12, 0.65912, 4, 39, 53.97, + 20.27, 0.00116, 40, 31.63, 20.27, 0.00313, 41, 8.71, 20.27, 0.2148, 32, 43.53, 29.55, 0.7809, 4, 39, 57.02, 12.2, 0.0001, 40, 34.68, 12.2, 0.00083, 41, 11.76, 12.2, 0.29942, 32, + 51.38, 33.12, 0.69965, 3, 40, 36.75, 5.8, 0.00034, 41, 13.82, 5.8, 0.378, 32, 57.63, 35.6, 0.62166, 3, 40, 38.1, 1.08, 0.00022, 41, 15.18, 1.08, 0.45653, 32, 62.25, 37.26, 0.54325, + 3, 40, 39.36, -3.36, 0.00015, 41, 16.43, -3.36, 0.53433, 32, 66.61, 38.8, 0.46552, 4, 39, 23.97, 12.06, 0.12565, 40, 1.63, 12.06, 0.24275, 41, -21.29, 12.06, 0.14114, 32, 53.68, + 0.15, 0.49046, 4, 39, 23.54, 6.58, 0.11007, 40, 1.2, 6.58, 0.47217, 41, -21.72, 6.58, 0.12893, 32, 59.17, 0.08, 0.28883, 4, 39, 23.28, 1.22, 0.10884, 40, 0.94, 1.22, 0.60558, 41, + -21.98, 1.22, 0.12698, 32, 64.53, 0.17, 0.1586, 4, 39, 23.11, -3.14, 0.10666, 40, 0.77, -3.14, 0.70334, 41, -22.15, -3.14, 0.12133, 32, 68.89, 0.28, 0.06866, 4, 39, 6.87, 19.8, + 0.29773, 40, -15.47, 19.8, 0.06022, 41, -38.39, 19.8, 0.01488, 32, 47.07, -17.41, 0.62717, 4, 39, 3.75, 11.97, 0.44072, 40, -18.59, 11.97, 0.09602, 41, -41.51, 11.97, 0.01064, 32, + 55.08, -20.02, 0.45261, 4, 39, 1.91, 7.05, 0.66419, 40, -20.42, 7.05, 0.11803, 41, -43.35, 7.05, 0.002, 32, 60.11, -21.53, 0.21579, 4, 39, 0.03, 1.31, 0.77187, 40, -22.31, 1.31, + 0.12352, 41, -45.23, 1.31, 0.00043, 32, 65.96, -23.04, 0.10418, 4, 39, -1.27, -2.99, 0.84303, 40, -23.61, -2.99, 0.11246, 41, -46.53, -2.99, 0.00018, 32, 70.34, -24.05, 0.04432, 4, + 39, -1.8, 26.91, 0.12744, 40, -24.14, 26.91, 0.00959, 41, -47.06, 26.91, 0.0076, 32, 40.54, -26.53, 0.85537, 4, 39, 24.96, 27.56, 0.0719, 40, 2.62, 27.56, 0.03639, 41, -20.3, 27.56, + 0.07572, 32, 38.14, 0.13, 0.81598, 4, 39, 50.76, 27.7, 0.00702, 40, 28.42, 27.7, 0.00523, 41, 5.5, 27.7, 0.131, 32, 36.32, 25.87, 0.85675, 4, 39, 3.83, 36.15, 0.04791, 40, -18.51, + 36.15, 0.00352, 41, -41.43, 36.15, 0.00803, 32, 30.95, -21.51, 0.94054, 4, 39, 25.65, 37.95, 0.02662, 40, 3.31, 37.95, 0.00775, 41, -19.61, 37.95, 0.02767, 32, 27.73, 0.14, 0.93795, + 4, 39, 46.64, 37.25, 0.00753, 40, 24.3, 37.25, 0.00227, 41, 1.38, 37.25, 0.04846, 32, 27.06, 21.14, 0.94174, 4, 39, 41.75, 20.15, 0.01306, 40, 19.41, 20.15, 0.04509, 41, -3.51, + 20.15, 0.32134, 32, 44.45, 17.37, 0.62052, 4, 39, 43.25, 12.14, 0.00895, 40, 20.91, 12.14, 0.07841, 41, -2.01, 12.14, 0.49568, 32, 52.34, 19.39, 0.41696, 4, 39, 44.35, 6.12, 0.0015, + 40, 22.01, 6.12, 0.09572, 41, -0.91, 6.12, 0.67014, 32, 58.27, 20.88, 0.23264, 4, 39, 45.08, 1.14, 0.00025, 40, 22.74, 1.14, 0.108, 41, -0.18, 1.14, 0.76841, 32, 63.2, 21.93, + 0.12334, 4, 39, 45.58, -3.27, 0.0001, 40, 23.24, -3.27, 0.10937, 41, 0.32, -3.27, 0.83473, 32, 67.56, 22.71, 0.0558, 4, 39, 40.33, 27.64, 0.02381, 40, 18, 27.64, 0.02132, 41, -4.93, + 27.64, 0.16866, 32, 37.06, 15.47, 0.78621, 4, 39, 9.71, 27.19, 0.16236, 40, -12.63, 27.19, 0.02827, 41, -35.55, 27.19, 0.02548, 32, 39.51, -15.06, 0.78388, 4, 39, 15.01, 19.88, + 0.23124, 40, -7.33, 19.88, 0.11759, 41, -30.25, 19.88, 0.04679, 32, 46.46, -9.29, 0.60438, 4, 39, 13.78, 12.01, 0.29354, 40, -8.56, 12.01, 0.19873, 41, -31.48, 12.01, 0.04427, 32, + 54.39, -10.01, 0.46346, 4, 39, 12.95, 6.81, 0.37869, 40, -9.39, 6.81, 0.34588, 41, -32.31, 6.81, 0.01968, 32, 59.63, -10.5, 0.25575, 4, 39, 11.95, 1.27, 0.42861, 40, -10.39, 1.27, + 0.42317, 41, -33.31, 1.27, 0.01297, 32, 65.23, -11.14, 0.13524, 4, 39, 11.29, -3.07, 0.46725, 40, -11.05, -3.07, 0.46538, 41, -33.97, -3.07, 0.0097, 32, 69.59, -11.51, 0.05768, 4, + 39, -0.59, 19.72, 0.32338, 40, -22.92, 19.72, 0.02881, 41, -45.85, 19.72, 0.003, 32, 47.63, -24.85, 0.64481, 4, 39, -3.82, 11.93, 0.4391, 40, -26.16, 11.93, 0.03345, 41, -49.08, + 11.93, 0.00177, 32, 55.61, -27.57, 0.52567, 4, 39, -5.89, 7.22, 0.65491, 40, -28.23, 7.22, 0.02015, 41, -51.15, 7.22, 0.00017, 32, 60.45, -29.33, 0.32476, 4, 39, -8.13, 1.34, + 0.75275, 40, -30.47, 1.34, 0.01396, 41, -53.39, 1.34, 1e-05, 32, 66.46, -31.18, 0.23328, 3, 39, -9.63, -2.94, 0.80478, 40, -31.96, -2.94, 0.00944, 32, 70.83, -32.39, 0.18578, 4, 39, + 33.3, 20.06, 0.04166, 40, 10.96, 20.06, 0.10286, 41, -11.96, 20.06, 0.24857, 32, 45.08, 8.94, 0.60691, 4, 39, 33.97, 12.1, 0.03817, 40, 11.63, 12.1, 0.17811, 41, -11.29, 12.1, + 0.32257, 32, 52.98, 10.13, 0.46115, 4, 39, 34.3, 6.34, 0.01531, 40, 11.97, 6.34, 0.31162, 41, -10.96, 6.34, 0.40881, 32, 58.71, 10.84, 0.26426, 4, 39, 34.72, 1.18, 0.00955, 40, + 12.39, 1.18, 0.39036, 41, -10.54, 1.18, 0.4561, 32, 63.83, 11.59, 0.14399, 4, 39, 34.8, -3.2, 0.00731, 40, 12.46, -3.2, 0.44195, 41, -10.46, -3.2, 0.48699, 32, 68.2, 11.96, 0.06375, + 4, 39, 48.21, 20.21, 0.00241, 40, 25.88, 20.21, 0.01421, 41, 2.95, 20.21, 0.36275, 32, 43.96, 23.82, 0.62063, 4, 39, 50.54, 12.17, 0.00034, 40, 28.2, 12.17, 0.01068, 41, 5.28, 12.17, + 0.5453, 32, 51.83, 26.66, 0.44368, 4, 39, 52.52, 5.95, 2e-05, 40, 30.19, 5.95, 0.00999, 41, 7.26, 5.95, 0.66888, 32, 57.92, 29.04, 0.32111, 3, 40, 31.52, 1.11, 0.01011, 41, 8.6, + 1.11, 0.76268, 32, 62.66, 30.7, 0.22721, 3, 40, 32.61, -3.32, 0.00863, 41, 9.68, -3.32, 0.83296, 32, 67.01, 32.06, 0.15841, 4, 39, -9.21, 7.29, 0.52586, 40, -31.55, 7.29, 0.0057, 41, + -54.47, 7.29, 1e-05, 32, 60.59, -32.65, 0.46842, 3, 39, -11.3, 1.36, 0.56698, 40, -33.64, 1.36, 0.00311, 32, 66.65, -34.34, 0.42991, 3, 39, -12.66, -2.93, 0.60013, 40, -35, -2.93, + 0.00167, 32, 71.01, -35.42, 0.39821, 4, 39, -5.46, -2.97, 0.89102, 40, -27.8, -2.97, 0.03888, 41, -50.72, -2.97, 1e-05, 32, 70.59, -28.24, 0.07008, 4, 39, -4.18, 1.33, 0.83362, 40, + -26.52, 1.33, 0.04645, 41, -49.44, 1.33, 3e-05, 32, 66.21, -27.24, 0.1199, 4, 39, -2.26, 7.14, 0.75973, 40, -24.6, 7.14, 0.05134, 41, -47.52, 7.14, 0.00026, 32, 60.29, -25.7, + 0.18867, 4, 39, 7.35, 6.93, 0.57235, 40, -14.98, 6.93, 0.23863, 41, -37.91, 6.93, 0.00435, 32, 59.87, -16.09, 0.18467, 4, 39, 5.9, 1.29, 0.63011, 40, -16.44, 1.29, 0.25936, 41, + -39.36, 1.29, 0.00243, 32, 65.6, -17.18, 0.1081, 4, 39, 4.86, -3.03, 0.68809, 40, -17.48, -3.03, 0.26358, 41, -40.4, -3.03, 0.00168, 32, 69.98, -17.93, 0.04665, 4, 39, 17.76, 6.7, + 0.22941, 40, -4.58, 6.7, 0.4879, 41, -27.5, 6.7, 0.05094, 32, 59.42, -5.7, 0.23175, 4, 39, 17.11, 1.25, 0.24296, 40, -5.23, 1.25, 0.56856, 41, -28.15, 1.25, 0.04581, 32, 64.91, + -5.99, 0.14267, 4, 39, 16.71, -3.1, 0.25552, 40, -5.62, -3.1, 0.64168, 41, -28.55, -3.1, 0.03992, 32, 69.27, -6.1, 0.06288, 4, 39, 28.55, -3.17, 0.03276, 40, 6.22, -3.17, 0.62363, + 41, -16.71, -3.17, 0.27658, 32, 68.57, 5.72, 0.06703, 4, 39, 28.55, 1.2, 0.0367, 40, 6.21, 1.21, 0.54514, 41, -16.71, 1.21, 0.26974, 32, 64.21, 5.43, 0.14843, 4, 39, 28.71, 6.47, + 0.04075, 40, 6.37, 6.47, 0.46337, 41, -16.55, 6.47, 0.25797, 32, 58.95, 5.25, 0.23791, 4, 39, 39.28, 6.23, 0.00305, 40, 16.94, 6.24, 0.20572, 41, -5.98, 6.24, 0.59307, 32, 58.49, + 15.81, 0.19817, 4, 39, 39.51, 1.16, 0.00156, 40, 17.17, 1.16, 0.23228, 41, -5.75, 1.16, 0.64631, 32, 63.54, 16.37, 0.11984, 4, 39, 40.07, -3.24, 0.00112, 40, 17.74, -3.24, 0.25061, + 41, -5.19, -3.24, 0.69415, 32, 67.89, 17.22, 0.05412, 4, 39, 50.23, -3.29, 0, 40, 27.89, -3.29, 0.036, 41, 4.97, -3.29, 0.88144, 32, 67.29, 27.36, 0.08255, 4, 39, 49.51, 1.13, 2e-05, + 40, 27.17, 1.13, 0.03826, 41, 4.25, 1.13, 0.81357, 32, 62.92, 26.35, 0.14816, 4, 39, 48.55, 6.03, 0.00027, 40, 26.22, 6.03, 0.03577, 41, 3.29, 6.03, 0.72045, 32, 58.09, 25.08, + 0.24351, 4, 39, 47.11, 12.16, 0.00156, 40, 24.77, 12.16, 0.03311, 41, 1.85, 12.16, 0.61234, 32, 52.07, 23.24, 0.35299, 4, 39, 53.99, 12.19, 1e-05, 40, 31.66, 12.19, 0.00266, 41, + 8.73, 12.19, 0.47035, 32, 51.59, 30.11, 0.52698, 3, 40, 33.02, 5.88, 0.00213, 41, 10.1, 5.88, 0.54797, 32, 57.79, 31.88, 0.4499, 3, 40, 34.54, 1.1, 0.0018, 41, 11.62, 1.1, 0.63247, + 32, 62.47, 33.7, 0.36573, 3, 40, 35.58, -3.34, 0.00152, 41, 12.66, -3.34, 0.71351, 32, 66.83, 35.03, 0.28497, 3, 39, -17.72, -6.71, 0.31251, 40, -40.05, -6.71, 1e-05, 32, 75.11, + -40.22, 0.68748, 3, 39, -13.83, -6.56, 0.64755, 40, -36.17, -6.56, 0.00038, 32, 74.72, -36.36, 0.35207, 3, 39, -10.89, -6.57, 0.83546, 40, -33.23, -6.57, 0.00245, 32, 74.53, -33.42, + 0.1621, 3, 39, -6.58, -6.39, 0.9505, 40, -28.91, -6.39, 0.02598, 32, 74.07, -29.13, 0.02352, 4, 39, -2.51, -6.41, 0.9185, 40, -24.85, -6.41, 0.06986, 41, -47.77, -6.41, 1e-05, 32, + 73.83, -25.07, 0.01163, 4, 39, 3.97, -6.54, 0.7539, 40, -18.37, -6.54, 0.23416, 41, -41.29, -6.54, 0.00019, 32, 73.54, -18.6, 0.01175, 4, 39, 10.73, -6.3, 0.4945, 40, -11.61, -6.29, + 0.48778, 41, -34.53, -6.29, 0.00242, 32, 72.85, -11.87, 0.01529, 4, 39, 16.42, -6.31, 0.24467, 40, -5.92, -6.31, 0.71967, 41, -28.84, -6.31, 0.01969, 32, 72.5, -6.18, 0.01597, 4, 39, + 22.88, -6.46, 0.08074, 40, 0.54, -6.46, 0.81091, 41, -22.38, -6.46, 0.09131, 32, 72.22, 0.27, 0.01704, 4, 39, 28.51, -6.42, 0.01543, 40, 6.17, -6.42, 0.70591, 41, -16.75, -6.42, + 0.26031, 32, 71.82, 5.89, 0.01836, 4, 39, 34.97, -6.29, 0.00164, 40, 12.64, -6.29, 0.47309, 41, -10.29, -6.29, 0.50689, 32, 71.27, 12.33, 0.01837, 4, 39, 40.42, -6.47, 0.0001, 40, + 18.08, -6.47, 0.23958, 41, -4.84, -6.47, 0.7461, 32, 71.1, 17.78, 0.01421, 4, 39, 45.89, -6.5, 0, 40, 23.56, -6.5, 0.08431, 41, 0.63, -6.5, 0.9025, 32, 70.76, 23.24, 0.01319, 3, 40, + 28.36, -6.37, 0.01867, 41, 5.43, -6.37, 0.94991, 32, 70.33, 28.02, 0.03142, 3, 40, 33.31, -6.41, 0.00244, 41, 10.39, -6.41, 0.88788, 32, 70.05, 32.97, 0.10968, 3, 40, 36.23, -6.46, + 0.00046, 41, 13.31, -6.46, 0.80558, 32, 69.91, 35.88, 0.19395, 3, 40, 40.12, -6.31, 1e-05, 41, 17.2, -6.31, 0.61334, 32, 69.5, 39.76, 0.38665, 4, 39, 0.4, -6.47, 0.86555, 40, -21.94, + -6.47, 0.12959, 41, -44.86, -6.47, 1e-05, 32, 73.7, -22.16, 0.00485, 3, 39, -9.01, -6.49, 0.93616, 40, -31.35, -6.49, 0.00716, 32, 74.33, -31.55, 0.05668, 3, 39, -16.19, -6.65, + 0.44814, 40, -38.53, -6.65, 3e-05, 32, 74.96, -38.7, 0.55184, 4, 39, 7.48, -6.41, 0.63866, 40, -14.86, -6.41, 0.354, 41, -37.78, -6.41, 0.00037, 32, 73.18, -15.1, 0.00698, 4, 39, + 13.4, -6.3, 0.36468, 40, -8.94, -6.3, 0.62161, 41, -31.86, -6.3, 0.00581, 32, 72.69, -9.2, 0.0079, 4, 39, 19.68, -6.38, 0.14684, 40, -2.65, -6.38, 0.80383, 41, -25.58, -6.38, + 0.04176, 32, 72.36, -2.92, 0.00757, 4, 39, 25.54, -6.44, 0.03499, 40, 3.2, -6.44, 0.79745, 41, -19.72, -6.44, 0.15898, 32, 72.03, 2.92, 0.00858, 4, 39, 31.96, -6.35, 0.00417, 40, + 9.62, -6.35, 0.60634, 41, -13.3, -6.35, 0.37927, 32, 71.53, 9.32, 0.01022, 4, 39, 37.62, -6.38, 0.00021, 40, 15.28, -6.38, 0.35157, 41, -7.64, -6.38, 0.63918, 32, 71.18, 14.97, + 0.00904, 4, 39, 43.32, -6.48, 1e-05, 40, 20.98, -6.48, 0.14688, 41, -1.94, -6.48, 0.84692, 32, 70.92, 20.67, 0.00619, 3, 40, 25.81, -6.44, 0.03919, 41, 2.89, -6.44, 0.95006, 32, + 70.56, 25.48, 0.01074, 3, 40, 30.92, -6.39, 0.00591, 41, 7.99, -6.39, 0.9433, 32, 70.18, 30.58, 0.05079, 3, 40, 38.04, -6.39, 5e-05, 41, 15.12, -6.39, 0.72615, 32, 69.72, 37.69, + 0.2738 + ], + "hull": 46, + "edges": [ + 80, 82, 90, 0, 10, 8, 70, 72, 72, 74, 74, 76, 4, 6, 6, 8, 76, 78, 78, 80, 4, 2, 2, 0, 72, 92, 74, 94, 92, 94, 76, 96, 94, 96, 78, 98, 96, 98, 80, 100, 98, 100, 82, 84, 84, 86, 86, + 88, 88, 90, 0, 104, 2, 106, 104, 106, 4, 108, 106, 108, 6, 110, 108, 110, 8, 112, 110, 112, 10, 12, 102, 114, 114, 116, 116, 118, 118, 120, 122, 124, 124, 126, 126, 128, 128, 130, + 132, 100, 134, 102, 136, 104, 84, 138, 138, 132, 86, 140, 140, 134, 138, 140, 88, 142, 142, 136, 140, 142, 144, 146, 146, 148, 148, 150, 150, 152, 134, 154, 154, 136, 144, 154, 132, + 156, 156, 134, 122, 156, 102, 158, 158, 122, 114, 160, 160, 124, 158, 160, 160, 162, 162, 164, 164, 166, 100, 168, 168, 122, 98, 170, 170, 124, 168, 170, 170, 172, 172, 174, 174, + 176, 102, 178, 178, 144, 114, 180, 180, 146, 178, 180, 180, 182, 182, 184, 184, 186, 104, 188, 188, 144, 188, 190, 190, 192, 192, 194, 194, 196, 96, 198, 198, 172, 94, 200, 200, 174, + 198, 200, 92, 202, 202, 176, 200, 202, 64, 66, 58, 60, 130, 204, 204, 176, 128, 206, 206, 174, 204, 206, 126, 208, 208, 172, 206, 208, 126, 210, 210, 162, 128, 212, 212, 164, 210, + 212, 130, 214, 214, 166, 212, 214, 116, 216, 216, 162, 118, 218, 218, 164, 216, 218, 120, 220, 220, 166, 218, 220, 120, 222, 222, 186, 118, 224, 224, 184, 222, 224, 116, 226, 226, + 182, 224, 226, 148, 228, 228, 182, 150, 230, 230, 184, 228, 230, 152, 232, 232, 186, 230, 232, 152, 234, 234, 196, 150, 236, 236, 194, 234, 236, 148, 238, 238, 192, 236, 238, 146, + 240, 240, 190, 238, 240, 106, 242, 242, 190, 108, 244, 244, 192, 242, 244, 110, 246, 246, 194, 244, 246, 112, 248, 248, 196, 246, 248, 16, 18, 70, 250, 250, 92, 66, 252, 252, 202, + 64, 254, 254, 176, 252, 254, 60, 256, 256, 204, 58, 258, 258, 130, 256, 258, 54, 260, 260, 214, 50, 262, 262, 166, 46, 264, 264, 220, 42, 266, 266, 120, 38, 268, 268, 222, 34, 270, + 270, 186, 30, 272, 272, 232, 26, 274, 274, 152, 22, 276, 276, 234, 18, 278, 278, 196, 16, 280, 280, 248, 278, 280, 12, 282, 282, 112, 258, 284, 284, 260, 54, 56, 56, 58, 284, 56, + 254, 286, 286, 256, 60, 62, 62, 64, 286, 62, 250, 288, 288, 252, 66, 68, 68, 70, 288, 68, 260, 290, 290, 262, 50, 52, 52, 54, 290, 52, 262, 292, 292, 264, 46, 48, 48, 50, 292, 48, + 264, 294, 294, 266, 42, 44, 44, 46, 294, 44, 266, 296, 296, 268, 38, 40, 40, 42, 296, 40, 268, 298, 298, 270, 34, 36, 36, 38, 298, 36, 270, 300, 300, 272, 30, 32, 32, 34, 300, 32, + 272, 302, 302, 274, 26, 28, 28, 30, 302, 28, 274, 304, 304, 276, 22, 24, 24, 26, 304, 24, 276, 306, 306, 278, 18, 20, 20, 22, 306, 20, 280, 308, 308, 282, 12, 14, 14, 16, 308, 14 + ], + "width": 87.05882352941177, + "height": 80.0, + "path": "summer-a-lv2.ear-left-bubble", + "x": 0.470588235294116, + "y": 0.0 + } + }, + "ear-left-bubble-02": { + "ear-left-bubble": { + "type": "mesh", + "uvs": [ + 0.87714, 0.57697, 0.91393, 0.67811, 0.94364, 0.75977, 0.96133, 0.8176, 0.97838, 0.87333, 1, 0.94398, 0.93104, 0.94427, 0.90524, 0.94438, 0.88494, 0.94447, 0.85255, 0.94461, 0.82176, + 0.94474, 0.79396, 0.94486, 0.76382, 0.94499, 0.73767, 0.9451, 0.70713, 0.94523, 0.67579, 0.94536, 0.64108, 0.94551, 0.61244, 0.94564, 0.5758, 0.94579, 0.5367, 0.94596, 0.50394, + 0.9461, 0.47091, 0.94624, 0.435, 0.94639, 0.39675, 0.94656, 0.36198, 0.94671, 0.32916, 0.94685, 0.29359, 0.947, 0.25022, 0.94718, 0.20956, 0.94736, 0.17261, 0.94751, 0.12749, + 0.94771, 0.1012, 0.94782, 0.07834, 0.94792, 0.0457, 0.94806, 0.02123, 0.94816, 0, 0.94825, 0, 0.86703, 0, 0.81359, 0, 0.73715, 0.02817, 0.68242, 0.07791, 0.5858, 0.37947, 0, 0.46651, + 0, 0.5261, 0, 0.59994, 0, 0.66726, 0, 0.02864, 0.86721, 0.04805, 0.81379, 0.07275, 0.7389, 0.0999, 0.68207, 0.14259, 0.58508, 0.49108, 0.58123, 0.82646, 0.57753, 0.86109, 0.67837, + 0.88458, 0.75835, 0.90003, 0.81734, 0.91424, 0.87292, 0.48557, 0.6802, 0.48069, 0.74867, 0.47772, 0.81558, 0.4758, 0.87009, 0.29126, 0.58344, 0.25576, 0.68132, 0.23492, 0.74278, + 0.2135, 0.81448, 0.19874, 0.86831, 0.19271, 0.49455, 0.4968, 0.48641, 0.79002, 0.48462, 0.25666, 0.37903, 0.50462, 0.35653, 0.74321, 0.36527, 0.68757, 0.57906, 0.70466, 0.67913, + 0.71716, 0.75434, 0.72541, 0.81661, 0.73109, 0.87174, 0.67152, 0.48534, 0.32349, 0.49105, 0.38378, 0.58242, 0.36974, 0.68076, 0.36036, 0.74579, 0.34895, 0.81504, 0.34148, 0.86923, + 0.20652, 0.58437, 0.16979, 0.68173, 0.1462, 0.74066, 0.12077, 0.81409, 0.10379, 0.8677, 0.59158, 0.58012, 0.59921, 0.67965, 0.60299, 0.7516, 0.60776, 0.81612, 0.60866, 0.87095, + 0.76107, 0.57825, 0.78751, 0.67873, 0.81003, 0.75656, 0.82525, 0.81703, 0.83754, 0.87243, 0.10852, 0.73975, 0.08479, 0.81394, 0.06934, 0.86747, 0.15113, 0.868, 0.1657, 0.81428, + 0.18746, 0.74164, 0.29675, 0.74426, 0.28022, 0.81476, 0.26841, 0.86876, 0.41495, 0.7471, 0.40761, 0.81529, 0.4031, 0.86963, 0.53765, 0.87049, 0.53762, 0.81583, 0.53944, 0.75008, + 0.6595, 0.75296, 0.66217, 0.81635, 0.66857, 0.87134, 0.78397, 0.87208, 0.7758, 0.81682, 0.76492, 0.75548, 0.74852, 0.67892, 0.82675, 0.67854, 0.84222, 0.75734, 0.8595, 0.81717, + 0.87132, 0.87264, 0.01186, 0.9147, 0.056, 0.91293, 0.08943, 0.91297, 0.13846, 0.91074, 0.18465, 0.91102, 0.25824, 0.91262, 0.33507, 0.90958, 0.39978, 0.90977, 0.47313, 0.91161, + 0.53714, 0.91117, 0.61061, 0.90948, 0.67252, 0.91178, 0.73471, 0.91209, 0.78925, 0.91054, 0.84557, 0.91105, 0.87872, 0.91169, 0.92292, 0.90979, 0.21772, 0.91173, 0.11081, 0.912, + 0.02923, 0.91401, 0.29821, 0.91104, 0.36548, 0.90967, 0.43685, 0.9107, 0.50336, 0.9114, 0.57635, 0.91027, 0.64066, 0.9106, 0.70543, 0.91195, 0.76031, 0.91136, 0.81833, 0.9108, + 0.89934, 0.9108 + ], + "triangles": [ + 46, 36, 37, 125, 36, 46, 46, 47, 101, 101, 47, 100, 144, 46, 126, 125, 46, 144, 47, 46, 37, 34, 125, 144, 35, 125, 34, 35, 36, 125, 56, 55, 3, 56, 3, 4, 5, 6, 4, 123, 54, 55, 55, 54, + 2, 55, 2, 3, 85, 86, 49, 86, 99, 49, 47, 48, 100, 122, 121, 53, 49, 50, 85, 85, 50, 84, 48, 39, 49, 38, 39, 48, 49, 40, 50, 39, 40, 49, 95, 94, 52, 54, 1, 2, 121, 52, 53, 53, 0, 1, + 53, 52, 0, 113, 57, 90, 108, 80, 57, 62, 61, 80, 80, 79, 57, 80, 61, 79, 57, 89, 90, 57, 51, 89, 57, 79, 51, 90, 72, 73, 90, 89, 72, 40, 69, 66, 84, 66, 61, 61, 78, 79, 61, 66, 78, + 51, 79, 67, 51, 67, 89, 67, 79, 78, 89, 77, 72, 89, 67, 77, 72, 77, 94, 94, 68, 52, 94, 77, 68, 66, 69, 78, 41, 69, 40, 67, 78, 70, 67, 70, 77, 70, 78, 69, 77, 71, 68, 77, 70, 71, + 71, 45, 0, 69, 42, 70, 69, 41, 42, 71, 70, 44, 70, 43, 44, 44, 45, 71, 71, 0, 68, 70, 42, 43, 52, 68, 0, 54, 53, 1, 50, 40, 66, 50, 66, 84, 47, 37, 38, 48, 47, 38, 48, 49, 99, 121, + 95, 52, 122, 53, 54, 100, 48, 99, 62, 84, 61, 94, 73, 72, 85, 84, 62, 113, 90, 91, 141, 56, 4, 6, 141, 4, 124, 55, 56, 17, 150, 16, 17, 135, 150, 16, 136, 15, 16, 150, 136, 15, 151, + 14, 15, 136, 151, 14, 137, 13, 14, 151, 137, 13, 152, 12, 13, 137, 152, 12, 138, 11, 12, 152, 138, 11, 153, 10, 11, 138, 153, 10, 139, 9, 10, 153, 139, 9, 140, 8, 9, 139, 140, 8, + 154, 7, 8, 140, 154, 7, 141, 6, 7, 154, 141, 152, 137, 76, 137, 151, 76, 76, 151, 116, 150, 116, 136, 151, 136, 116, 154, 140, 124, 152, 117, 138, 152, 76, 117, 153, 98, 139, 140, + 139, 124, 139, 98, 124, 154, 56, 141, 154, 124, 56, 98, 153, 117, 116, 150, 93, 153, 138, 117, 150, 135, 93, 98, 123, 124, 124, 123, 55, 117, 97, 98, 98, 97, 123, 76, 118, 117, 117, + 118, 97, 116, 75, 76, 76, 75, 118, 93, 115, 116, 116, 115, 75, 93, 92, 115, 97, 122, 123, 123, 122, 54, 118, 96, 97, 97, 96, 122, 75, 119, 118, 118, 119, 96, 115, 74, 75, 75, 74, + 119, 92, 114, 115, 115, 114, 74, 92, 91, 114, 96, 121, 122, 119, 95, 96, 96, 95, 121, 74, 120, 119, 119, 120, 95, 114, 73, 74, 74, 73, 120, 73, 114, 90, 114, 91, 90, 120, 73, 94, + 120, 94, 95, 58, 57, 113, 25, 131, 24, 24, 146, 23, 24, 131, 146, 23, 132, 22, 23, 146, 132, 22, 147, 21, 22, 132, 147, 20, 133, 148, 20, 21, 133, 21, 147, 133, 20, 148, 19, 19, 134, + 18, 19, 148, 134, 18, 135, 17, 18, 149, 135, 18, 134, 149, 148, 133, 60, 133, 147, 60, 134, 148, 111, 134, 111, 149, 111, 148, 60, 132, 110, 147, 147, 110, 60, 149, 93, 135, 149, + 111, 93, 132, 146, 110, 131, 83, 146, 146, 83, 110, 111, 92, 93, 60, 59, 111, 59, 112, 111, 111, 112, 92, 110, 109, 60, 60, 109, 59, 83, 82, 110, 110, 82, 109, 92, 112, 91, 112, 113, + 91, 59, 58, 112, 112, 58, 113, 109, 108, 59, 59, 108, 58, 82, 81, 109, 109, 81, 108, 58, 108, 57, 81, 80, 108, 34, 144, 33, 126, 46, 101, 33, 126, 32, 33, 144, 126, 32, 127, 31, 32, + 126, 127, 31, 143, 30, 31, 127, 143, 30, 128, 29, 30, 143, 128, 29, 129, 28, 29, 128, 129, 28, 142, 27, 28, 129, 142, 27, 130, 26, 27, 142, 130, 26, 145, 25, 26, 130, 145, 25, 145, + 131, 126, 101, 127, 127, 88, 143, 127, 101, 88, 130, 107, 145, 130, 142, 107, 143, 88, 128, 129, 65, 142, 142, 65, 107, 131, 145, 83, 128, 102, 129, 129, 102, 65, 128, 88, 102, 83, + 145, 107, 107, 106, 83, 83, 106, 82, 65, 64, 107, 107, 64, 106, 102, 103, 65, 65, 103, 64, 88, 87, 102, 102, 87, 103, 101, 100, 88, 88, 100, 87, 106, 105, 82, 82, 105, 81, 64, 63, + 106, 106, 63, 105, 103, 104, 64, 64, 104, 63, 87, 86, 103, 103, 86, 104, 100, 99, 87, 87, 99, 86, 81, 105, 80, 63, 62, 105, 105, 62, 80, 62, 63, 85, 86, 85, 104, 63, 104, 85 + ], + "vertices": [ + 4, 47, 58.43, 20.31, 0.00012, 48, 36.09, 20.31, 0.00054, 49, 13.17, 20.31, 0.12631, 46, 43.2, 34, 0.87302, 3, 48, 39.33, 12.22, 0.00019, 49, 16.41, 12.22, 0.19743, 46, 51.06, 37.76, + 0.80237, 3, 48, 41.94, 5.69, 6e-05, 49, 19.02, 5.69, 0.26715, 46, 57.41, 40.79, 0.73278, 3, 48, 43.5, 1.06, 1e-05, 49, 20.58, 1.06, 0.33542, 46, 61.92, 42.65, 0.66457, 3, 48, 45, + -3.4, 1e-05, 49, 22.08, -3.4, 0.40033, 46, 66.27, 44.44, 0.59966, 3, 48, 46.9, -9.05, 0, 49, 23.98, -9.05, 0.45012, 46, 71.79, 46.7, 0.54988, 3, 48, 40.83, -9.07, 0, 49, 17.91, + -9.07, 0.5829, 46, 72.21, 40.65, 0.4171, 3, 48, 38.56, -9.08, 4e-05, 49, 15.64, -9.08, 0.72131, 46, 72.37, 38.38, 0.27865, 3, 48, 36.78, -9.09, 0.00031, 49, 13.86, -9.09, 0.8264, 46, + 72.49, 36.6, 0.17329, 3, 48, 33.93, -9.1, 0.00157, 49, 11, -9.1, 0.90359, 46, 72.69, 33.76, 0.09484, 3, 48, 31.22, -9.11, 0.00537, 49, 8.3, -9.11, 0.94975, 46, 72.87, 31.05, 0.04488, + 3, 48, 28.77, -9.12, 0.01601, 49, 5.85, -9.12, 0.96404, 46, 73.04, 28.61, 0.01996, 3, 48, 26.12, -9.13, 0.03803, 49, 3.2, -9.13, 0.95562, 46, 73.22, 25.97, 0.00635, 3, 48, 23.82, + -9.14, 0.08031, 49, 0.9, -9.14, 0.91597, 46, 73.38, 23.67, 0.00372, 4, 47, 43.47, -9.15, 0, 48, 21.13, -9.15, 0.14592, 49, -1.79, -9.15, 0.85165, 46, 73.57, 20.99, 0.00243, 4, 47, + 40.71, -9.16, 2e-05, 48, 18.37, -9.16, 0.23867, 49, -4.55, -9.16, 0.75671, 46, 73.76, 18.24, 0.0046, 4, 47, 37.66, -9.17, 0.00014, 48, 15.32, -9.17, 0.35275, 49, -7.6, -9.17, + 0.64256, 46, 73.97, 15.19, 0.00455, 4, 47, 35.13, -9.18, 0.00092, 48, 12.8, -9.18, 0.48034, 49, -10.13, -9.18, 0.51198, 46, 74.14, 12.68, 0.00676, 4, 47, 31.91, -9.19, 0.00375, 48, + 9.57, -9.19, 0.61095, 49, -13.35, -9.19, 0.38019, 46, 74.36, 9.46, 0.00512, 4, 47, 28.47, -9.21, 0.01298, 48, 6.13, -9.21, 0.72267, 49, -16.79, -9.21, 0.25841, 46, 74.6, 6.03, + 0.00594, 4, 47, 25.59, -9.22, 0.03422, 48, 3.25, -9.22, 0.80451, 49, -19.67, -9.22, 0.15782, 46, 74.8, 3.15, 0.00345, 4, 47, 22.68, -9.23, 0.07754, 48, 0.34, -9.23, 0.83155, 49, + -22.58, -9.23, 0.08642, 46, 75, 0.25, 0.00449, 4, 47, 19.52, -9.24, 0.14705, 48, -2.82, -9.24, 0.80991, 49, -25.74, -9.24, 0.04032, 46, 75.22, -2.9, 0.00272, 4, 47, 16.15, -9.25, + 0.24563, 48, -6.18, -9.25, 0.73344, 49, -29.11, -9.25, 0.01645, 46, 75.45, -6.26, 0.00448, 4, 47, 13.09, -9.27, 0.36774, 48, -9.24, -9.27, 0.62371, 49, -32.17, -9.27, 0.00512, 46, + 75.66, -9.31, 0.00344, 4, 47, 10.21, -9.28, 0.50372, 48, -12.13, -9.28, 0.49001, 49, -35.05, -9.28, 0.00135, 46, 75.86, -12.19, 0.00491, 4, 47, 7.08, -9.29, 0.64487, 48, -15.26, + -9.29, 0.35177, 49, -38.18, -9.29, 0.00021, 46, 76.08, -15.32, 0.00314, 4, 47, 3.26, -9.3, 0.77, 48, -19.08, -9.3, 0.22651, 49, -42, -9.3, 3e-05, 46, 76.34, -19.12, 0.00346, 4, 47, + -0.32, -9.32, 0.87272, 48, -22.66, -9.32, 0.1254, 49, -45.58, -9.32, 0, 46, 76.59, -22.69, 0.00188, 3, 47, -3.57, -9.33, 0.9351, 48, -25.91, -9.33, 0.0605, 46, 76.81, -25.94, 0.0044, + 3, 47, -7.54, -9.35, 0.96153, 48, -29.88, -9.35, 0.02278, 46, 77.09, -29.9, 0.01569, 3, 47, -9.85, -9.35, 0.93655, 48, -32.19, -9.35, 0.00657, 46, 77.24, -32.21, 0.05688, 3, 47, + -11.87, -9.36, 0.83576, 48, -34.2, -9.36, 0.00151, 46, 77.38, -34.21, 0.16273, 3, 47, -14.74, -9.37, 0.65143, 48, -37.08, -9.37, 0.00023, 46, 77.58, -37.08, 0.34834, 3, 47, -16.89, + -9.38, 0.4382, 48, -39.23, -9.38, 2e-05, 46, 77.73, -39.23, 0.56178, 3, 47, -18.76, -9.39, 0.27507, 48, -41.1, -9.39, 0, 46, 77.86, -41.09, 0.72493, 3, 47, -18.76, -2.89, 0.21414, + 48, -41.1, -2.89, 2e-05, 46, 71.37, -41.51, 0.78584, 3, 47, -18.76, 1.38, 0.19077, 48, -41.1, 1.38, 0.00024, 46, 67.11, -41.79, 0.80899, 3, 47, -18.76, 7.5, 0.1765, 48, -41.1, 7.5, + 0.00116, 46, 61.01, -42.19, 0.82235, 4, 47, -16.28, 11.88, 0.15382, 48, -38.62, 11.88, 0.00307, 49, -61.54, 11.88, 1e-05, 46, 56.48, -40, 0.84309, 4, 47, -11.9, 19.61, 0.11079, 48, + -34.24, 19.61, 0.0029, 49, -57.16, 19.61, 0.00014, 46, 48.48, -36.13, 0.88617, 4, 47, 14.63, 66.47, 0.04584, 48, -7.7, 66.47, 0.00083, 49, -30.63, 66.47, 0.00037, 46, -0.01, -12.7, + 0.95296, 4, 47, 22.29, 66.47, 0.02247, 48, -0.04, 66.47, 0.00083, 49, -22.97, 66.47, 0.00288, 46, -0.51, -5.06, 0.97382, 4, 47, 27.54, 66.47, 0.01007, 48, 5.2, 66.47, 0.00155, 49, + -17.72, 66.47, 0.0104, 46, -0.85, 0.17, 0.97798, 4, 47, 34.04, 66.47, 0.00272, 48, 11.7, 66.47, 0.00045, 49, -11.22, 66.47, 0.02285, 46, -1.28, 6.66, 0.97398, 4, 47, 39.96, 66.47, + 0.00033, 48, 17.62, 66.47, 0.00011, 49, -5.3, 66.47, 0.0498, 46, -1.66, 12.57, 0.94976, 3, 47, -16.24, -2.91, 0.33437, 48, -38.58, -2.91, 0.0002, 46, 71.23, -39, 0.66543, 3, 47, + -14.53, 1.37, 0.32645, 48, -36.87, 1.37, 0.00078, 46, 66.85, -37.57, 0.67277, 4, 47, -12.36, 7.36, 0.307, 48, -34.7, 7.36, 0.00285, 49, -57.62, 7.36, 1e-05, 46, 60.73, -35.79, + 0.69014, 4, 47, -9.97, 11.91, 0.26477, 48, -32.31, 11.91, 0.00971, 49, -55.23, 11.91, 0.00027, 46, 56.04, -33.7, 0.72525, 4, 47, -6.21, 19.66, 0.19881, 48, -28.55, 19.66, 0.00959, + 49, -51.47, 19.66, 0.00132, 46, 48.05, -30.46, 0.79028, 4, 47, 24.46, 19.97, 0.10712, 48, 2.12, 19.97, 0.11704, 49, -20.8, 19.97, 0.11672, 46, 45.75, 0.12, 0.65912, 4, 47, 53.97, + 20.27, 0.00116, 48, 31.63, 20.27, 0.00313, 49, 8.71, 20.27, 0.2148, 46, 43.53, 29.55, 0.7809, 4, 47, 57.02, 12.2, 0.0001, 48, 34.68, 12.2, 0.00083, 49, 11.76, 12.2, 0.29942, 46, + 51.38, 33.12, 0.69965, 3, 48, 36.75, 5.8, 0.00034, 49, 13.82, 5.8, 0.378, 46, 57.63, 35.6, 0.62166, 3, 48, 38.1, 1.08, 0.00022, 49, 15.18, 1.08, 0.45653, 46, 62.25, 37.26, 0.54325, + 3, 48, 39.36, -3.36, 0.00015, 49, 16.43, -3.36, 0.53433, 46, 66.61, 38.8, 0.46552, 4, 47, 23.97, 12.06, 0.12565, 48, 1.63, 12.06, 0.24275, 49, -21.29, 12.06, 0.14114, 46, 53.68, + 0.15, 0.49046, 4, 47, 23.54, 6.58, 0.11007, 48, 1.2, 6.58, 0.47217, 49, -21.72, 6.58, 0.12893, 46, 59.17, 0.08, 0.28883, 4, 47, 23.28, 1.22, 0.10884, 48, 0.94, 1.22, 0.60558, 49, + -21.98, 1.22, 0.12698, 46, 64.53, 0.17, 0.1586, 4, 47, 23.11, -3.14, 0.10666, 48, 0.77, -3.14, 0.70334, 49, -22.15, -3.14, 0.12133, 46, 68.89, 0.28, 0.06866, 4, 47, 6.87, 19.8, + 0.29773, 48, -15.47, 19.8, 0.06022, 49, -38.39, 19.8, 0.01488, 46, 47.07, -17.41, 0.62717, 4, 47, 3.75, 11.97, 0.44072, 48, -18.59, 11.97, 0.09602, 49, -41.51, 11.97, 0.01064, 46, + 55.08, -20.02, 0.45261, 4, 47, 1.91, 7.05, 0.66419, 48, -20.42, 7.05, 0.11803, 49, -43.35, 7.05, 0.002, 46, 60.11, -21.53, 0.21579, 4, 47, 0.03, 1.31, 0.77187, 48, -22.31, 1.31, + 0.12352, 49, -45.23, 1.31, 0.00043, 46, 65.96, -23.04, 0.10418, 4, 47, -1.27, -2.99, 0.84303, 48, -23.61, -2.99, 0.11246, 49, -46.53, -2.99, 0.00018, 46, 70.34, -24.05, 0.04432, 4, + 47, -1.8, 26.91, 0.12744, 48, -24.14, 26.91, 0.00959, 49, -47.06, 26.91, 0.0076, 46, 40.54, -26.53, 0.85537, 4, 47, 24.96, 27.56, 0.0719, 48, 2.62, 27.56, 0.03639, 49, -20.3, 27.56, + 0.07572, 46, 38.14, 0.13, 0.81598, 4, 47, 50.76, 27.7, 0.00702, 48, 28.42, 27.7, 0.00523, 49, 5.5, 27.7, 0.131, 46, 36.32, 25.87, 0.85675, 4, 47, 3.83, 36.15, 0.04791, 48, -18.51, + 36.15, 0.00352, 49, -41.43, 36.15, 0.00803, 46, 30.95, -21.51, 0.94054, 4, 47, 25.65, 37.95, 0.02662, 48, 3.31, 37.95, 0.00775, 49, -19.61, 37.95, 0.02767, 46, 27.73, 0.14, 0.93795, + 4, 47, 46.64, 37.25, 0.00753, 48, 24.3, 37.25, 0.00227, 49, 1.38, 37.25, 0.04846, 46, 27.06, 21.14, 0.94174, 4, 47, 41.75, 20.15, 0.01306, 48, 19.41, 20.15, 0.04509, 49, -3.51, + 20.15, 0.32134, 46, 44.45, 17.37, 0.62052, 4, 47, 43.25, 12.14, 0.00895, 48, 20.91, 12.14, 0.07841, 49, -2.01, 12.14, 0.49568, 46, 52.34, 19.39, 0.41696, 4, 47, 44.35, 6.12, 0.0015, + 48, 22.01, 6.12, 0.09572, 49, -0.91, 6.12, 0.67014, 46, 58.27, 20.88, 0.23264, 4, 47, 45.08, 1.14, 0.00025, 48, 22.74, 1.14, 0.108, 49, -0.18, 1.14, 0.76841, 46, 63.2, 21.93, + 0.12334, 4, 47, 45.58, -3.27, 0.0001, 48, 23.24, -3.27, 0.10937, 49, 0.32, -3.27, 0.83473, 46, 67.56, 22.71, 0.0558, 4, 47, 40.33, 27.64, 0.02381, 48, 18, 27.64, 0.02132, 49, -4.93, + 27.64, 0.16866, 46, 37.06, 15.47, 0.78621, 4, 47, 9.71, 27.19, 0.16236, 48, -12.63, 27.19, 0.02827, 49, -35.55, 27.19, 0.02548, 46, 39.51, -15.06, 0.78388, 4, 47, 15.01, 19.88, + 0.23124, 48, -7.33, 19.88, 0.11759, 49, -30.25, 19.88, 0.04679, 46, 46.46, -9.29, 0.60438, 4, 47, 13.78, 12.01, 0.29354, 48, -8.56, 12.01, 0.19873, 49, -31.48, 12.01, 0.04427, 46, + 54.39, -10.01, 0.46346, 4, 47, 12.95, 6.81, 0.37869, 48, -9.39, 6.81, 0.34588, 49, -32.31, 6.81, 0.01968, 46, 59.63, -10.5, 0.25575, 4, 47, 11.95, 1.27, 0.42861, 48, -10.39, 1.27, + 0.42317, 49, -33.31, 1.27, 0.01297, 46, 65.23, -11.14, 0.13524, 4, 47, 11.29, -3.07, 0.46725, 48, -11.05, -3.07, 0.46538, 49, -33.97, -3.07, 0.0097, 46, 69.59, -11.51, 0.05768, 4, + 47, -0.59, 19.72, 0.32338, 48, -22.92, 19.72, 0.02881, 49, -45.85, 19.72, 0.003, 46, 47.63, -24.85, 0.64481, 4, 47, -3.82, 11.93, 0.4391, 48, -26.16, 11.93, 0.03345, 49, -49.08, + 11.93, 0.00177, 46, 55.61, -27.57, 0.52567, 4, 47, -5.89, 7.22, 0.65491, 48, -28.23, 7.22, 0.02015, 49, -51.15, 7.22, 0.00017, 46, 60.45, -29.33, 0.32476, 4, 47, -8.13, 1.34, + 0.75275, 48, -30.47, 1.34, 0.01396, 49, -53.39, 1.34, 1e-05, 46, 66.46, -31.18, 0.23328, 3, 47, -9.63, -2.94, 0.80478, 48, -31.96, -2.94, 0.00944, 46, 70.83, -32.39, 0.18578, 4, 47, + 33.3, 20.06, 0.04166, 48, 10.96, 20.06, 0.10286, 49, -11.96, 20.06, 0.24857, 46, 45.08, 8.94, 0.60691, 4, 47, 33.97, 12.1, 0.03817, 48, 11.63, 12.1, 0.17811, 49, -11.29, 12.1, + 0.32257, 46, 52.98, 10.13, 0.46115, 4, 47, 34.3, 6.34, 0.01531, 48, 11.97, 6.34, 0.31162, 49, -10.96, 6.34, 0.40881, 46, 58.71, 10.84, 0.26426, 4, 47, 34.72, 1.18, 0.00955, 48, + 12.39, 1.18, 0.39036, 49, -10.54, 1.18, 0.4561, 46, 63.83, 11.59, 0.14399, 4, 47, 34.8, -3.2, 0.00731, 48, 12.46, -3.2, 0.44195, 49, -10.46, -3.2, 0.48699, 46, 68.2, 11.96, 0.06375, + 4, 47, 48.21, 20.21, 0.00241, 48, 25.88, 20.21, 0.01421, 49, 2.95, 20.21, 0.36275, 46, 43.96, 23.82, 0.62063, 4, 47, 50.54, 12.17, 0.00034, 48, 28.2, 12.17, 0.01068, 49, 5.28, 12.17, + 0.5453, 46, 51.83, 26.66, 0.44368, 4, 47, 52.52, 5.95, 2e-05, 48, 30.19, 5.95, 0.00999, 49, 7.26, 5.95, 0.66888, 46, 57.92, 29.04, 0.32111, 3, 48, 31.52, 1.11, 0.01011, 49, 8.6, + 1.11, 0.76268, 46, 62.66, 30.7, 0.22721, 3, 48, 32.61, -3.32, 0.00863, 49, 9.68, -3.32, 0.83296, 46, 67.01, 32.06, 0.15841, 4, 47, -9.21, 7.29, 0.52586, 48, -31.55, 7.29, 0.0057, 49, + -54.47, 7.29, 1e-05, 46, 60.59, -32.65, 0.46842, 3, 47, -11.3, 1.36, 0.56698, 48, -33.64, 1.36, 0.00311, 46, 66.65, -34.34, 0.42991, 3, 47, -12.66, -2.93, 0.60013, 48, -35, -2.93, + 0.00167, 46, 71.01, -35.42, 0.39821, 4, 47, -5.46, -2.97, 0.89102, 48, -27.8, -2.97, 0.03888, 49, -50.72, -2.97, 1e-05, 46, 70.59, -28.24, 0.07008, 4, 47, -4.18, 1.33, 0.83362, 48, + -26.52, 1.33, 0.04645, 49, -49.44, 1.33, 3e-05, 46, 66.21, -27.24, 0.1199, 4, 47, -2.26, 7.14, 0.75973, 48, -24.6, 7.14, 0.05134, 49, -47.52, 7.14, 0.00026, 46, 60.29, -25.7, + 0.18867, 4, 47, 7.35, 6.93, 0.57235, 48, -14.98, 6.93, 0.23863, 49, -37.91, 6.93, 0.00435, 46, 59.87, -16.09, 0.18467, 4, 47, 5.9, 1.29, 0.63011, 48, -16.44, 1.29, 0.25936, 49, + -39.36, 1.29, 0.00243, 46, 65.6, -17.18, 0.1081, 4, 47, 4.86, -3.03, 0.68809, 48, -17.48, -3.03, 0.26358, 49, -40.4, -3.03, 0.00168, 46, 69.98, -17.93, 0.04665, 4, 47, 17.76, 6.7, + 0.22941, 48, -4.58, 6.7, 0.4879, 49, -27.5, 6.7, 0.05094, 46, 59.42, -5.7, 0.23175, 4, 47, 17.11, 1.25, 0.24296, 48, -5.23, 1.25, 0.56856, 49, -28.15, 1.25, 0.04581, 46, 64.91, + -5.99, 0.14267, 4, 47, 16.71, -3.1, 0.25552, 48, -5.62, -3.1, 0.64168, 49, -28.55, -3.1, 0.03992, 46, 69.27, -6.1, 0.06288, 4, 47, 28.55, -3.17, 0.03276, 48, 6.22, -3.17, 0.62363, + 49, -16.71, -3.17, 0.27658, 46, 68.57, 5.72, 0.06703, 4, 47, 28.55, 1.2, 0.0367, 48, 6.21, 1.21, 0.54514, 49, -16.71, 1.21, 0.26974, 46, 64.21, 5.43, 0.14843, 4, 47, 28.71, 6.47, + 0.04075, 48, 6.37, 6.47, 0.46337, 49, -16.55, 6.47, 0.25797, 46, 58.95, 5.25, 0.23791, 4, 47, 39.28, 6.23, 0.00305, 48, 16.94, 6.24, 0.20572, 49, -5.98, 6.24, 0.59307, 46, 58.49, + 15.81, 0.19817, 4, 47, 39.51, 1.16, 0.00156, 48, 17.17, 1.16, 0.23228, 49, -5.75, 1.16, 0.64631, 46, 63.54, 16.37, 0.11984, 4, 47, 40.07, -3.24, 0.00112, 48, 17.74, -3.24, 0.25061, + 49, -5.19, -3.24, 0.69415, 46, 67.89, 17.22, 0.05412, 4, 47, 50.23, -3.29, 0, 48, 27.89, -3.29, 0.036, 49, 4.97, -3.29, 0.88144, 46, 67.29, 27.36, 0.08255, 4, 47, 49.51, 1.13, 2e-05, + 48, 27.17, 1.13, 0.03826, 49, 4.25, 1.13, 0.81357, 46, 62.92, 26.35, 0.14816, 4, 47, 48.55, 6.03, 0.00027, 48, 26.22, 6.03, 0.03577, 49, 3.29, 6.03, 0.72045, 46, 58.09, 25.08, + 0.24351, 4, 47, 47.11, 12.16, 0.00156, 48, 24.77, 12.16, 0.03311, 49, 1.85, 12.16, 0.61234, 46, 52.07, 23.24, 0.35299, 4, 47, 53.99, 12.19, 1e-05, 48, 31.66, 12.19, 0.00266, 49, + 8.73, 12.19, 0.47035, 46, 51.59, 30.11, 0.52698, 3, 48, 33.02, 5.88, 0.00213, 49, 10.1, 5.88, 0.54797, 46, 57.79, 31.88, 0.4499, 3, 48, 34.54, 1.1, 0.0018, 49, 11.62, 1.1, 0.63247, + 46, 62.47, 33.7, 0.36573, 3, 48, 35.58, -3.34, 0.00152, 49, 12.66, -3.34, 0.71351, 46, 66.83, 35.03, 0.28497, 3, 47, -17.72, -6.71, 0.31251, 48, -40.05, -6.71, 1e-05, 46, 75.11, + -40.22, 0.68748, 3, 47, -13.83, -6.56, 0.64755, 48, -36.17, -6.56, 0.00038, 46, 74.72, -36.36, 0.35207, 3, 47, -10.89, -6.57, 0.83546, 48, -33.23, -6.57, 0.00245, 46, 74.53, -33.42, + 0.1621, 3, 47, -6.58, -6.39, 0.9505, 48, -28.91, -6.39, 0.02598, 46, 74.07, -29.13, 0.02352, 4, 47, -2.51, -6.41, 0.9185, 48, -24.85, -6.41, 0.06986, 49, -47.77, -6.41, 1e-05, 46, + 73.83, -25.07, 0.01163, 4, 47, 3.97, -6.54, 0.7539, 48, -18.37, -6.54, 0.23416, 49, -41.29, -6.54, 0.00019, 46, 73.54, -18.6, 0.01175, 4, 47, 10.73, -6.3, 0.4945, 48, -11.61, -6.29, + 0.48778, 49, -34.53, -6.29, 0.00242, 46, 72.85, -11.87, 0.01529, 4, 47, 16.42, -6.31, 0.24467, 48, -5.92, -6.31, 0.71967, 49, -28.84, -6.31, 0.01969, 46, 72.5, -6.18, 0.01597, 4, 47, + 22.88, -6.46, 0.08074, 48, 0.54, -6.46, 0.81091, 49, -22.38, -6.46, 0.09131, 46, 72.22, 0.27, 0.01704, 4, 47, 28.51, -6.42, 0.01543, 48, 6.17, -6.42, 0.70591, 49, -16.75, -6.42, + 0.26031, 46, 71.82, 5.89, 0.01836, 4, 47, 34.97, -6.29, 0.00164, 48, 12.64, -6.29, 0.47309, 49, -10.29, -6.29, 0.50689, 46, 71.27, 12.33, 0.01837, 4, 47, 40.42, -6.47, 0.0001, 48, + 18.08, -6.47, 0.23958, 49, -4.84, -6.47, 0.7461, 46, 71.1, 17.78, 0.01421, 4, 47, 45.89, -6.5, 0, 48, 23.56, -6.5, 0.08431, 49, 0.63, -6.5, 0.9025, 46, 70.76, 23.24, 0.01319, 3, 48, + 28.36, -6.37, 0.01867, 49, 5.43, -6.37, 0.94991, 46, 70.33, 28.02, 0.03142, 3, 48, 33.31, -6.41, 0.00244, 49, 10.39, -6.41, 0.88788, 46, 70.05, 32.97, 0.10968, 3, 48, 36.23, -6.46, + 0.00046, 49, 13.31, -6.46, 0.80558, 46, 69.91, 35.88, 0.19395, 3, 48, 40.12, -6.31, 1e-05, 49, 17.2, -6.31, 0.61334, 46, 69.5, 39.76, 0.38665, 4, 47, 0.4, -6.47, 0.86555, 48, -21.94, + -6.47, 0.12959, 49, -44.86, -6.47, 1e-05, 46, 73.7, -22.16, 0.00485, 3, 47, -9.01, -6.49, 0.93616, 48, -31.35, -6.49, 0.00716, 46, 74.33, -31.55, 0.05668, 3, 47, -16.19, -6.65, + 0.44814, 48, -38.53, -6.65, 3e-05, 46, 74.96, -38.7, 0.55184, 4, 47, 7.48, -6.41, 0.63866, 48, -14.86, -6.41, 0.354, 49, -37.78, -6.41, 0.00037, 46, 73.18, -15.1, 0.00698, 4, 47, + 13.4, -6.3, 0.36468, 48, -8.94, -6.3, 0.62161, 49, -31.86, -6.3, 0.00581, 46, 72.69, -9.2, 0.0079, 4, 47, 19.68, -6.38, 0.14684, 48, -2.65, -6.38, 0.80383, 49, -25.58, -6.38, + 0.04176, 46, 72.36, -2.92, 0.00757, 4, 47, 25.54, -6.44, 0.03499, 48, 3.2, -6.44, 0.79745, 49, -19.72, -6.44, 0.15898, 46, 72.03, 2.92, 0.00858, 4, 47, 31.96, -6.35, 0.00417, 48, + 9.62, -6.35, 0.60634, 49, -13.3, -6.35, 0.37927, 46, 71.53, 9.32, 0.01022, 4, 47, 37.62, -6.38, 0.00021, 48, 15.28, -6.38, 0.35157, 49, -7.64, -6.38, 0.63918, 46, 71.18, 14.97, + 0.00904, 4, 47, 43.32, -6.48, 1e-05, 48, 20.98, -6.48, 0.14688, 49, -1.94, -6.48, 0.84692, 46, 70.92, 20.67, 0.00619, 3, 48, 25.81, -6.44, 0.03919, 49, 2.89, -6.44, 0.95006, 46, + 70.56, 25.48, 0.01074, 3, 48, 30.92, -6.39, 0.00591, 49, 7.99, -6.39, 0.9433, 46, 70.18, 30.58, 0.05079, 3, 48, 38.04, -6.39, 5e-05, 49, 15.12, -6.39, 0.72615, 46, 69.72, 37.69, + 0.2738 + ], + "hull": 46, + "edges": [ + 80, 82, 90, 0, 10, 8, 70, 72, 72, 74, 74, 76, 4, 6, 6, 8, 76, 78, 78, 80, 4, 2, 2, 0, 72, 92, 74, 94, 92, 94, 76, 96, 94, 96, 78, 98, 96, 98, 80, 100, 98, 100, 82, 84, 84, 86, 86, + 88, 88, 90, 0, 104, 2, 106, 104, 106, 4, 108, 106, 108, 6, 110, 108, 110, 8, 112, 110, 112, 10, 12, 102, 114, 114, 116, 116, 118, 118, 120, 122, 124, 124, 126, 126, 128, 128, 130, + 132, 100, 134, 102, 136, 104, 84, 138, 138, 132, 86, 140, 140, 134, 138, 140, 88, 142, 142, 136, 140, 142, 144, 146, 146, 148, 148, 150, 150, 152, 134, 154, 154, 136, 144, 154, 132, + 156, 156, 134, 122, 156, 102, 158, 158, 122, 114, 160, 160, 124, 158, 160, 160, 162, 162, 164, 164, 166, 100, 168, 168, 122, 98, 170, 170, 124, 168, 170, 170, 172, 172, 174, 174, + 176, 102, 178, 178, 144, 114, 180, 180, 146, 178, 180, 180, 182, 182, 184, 184, 186, 104, 188, 188, 144, 188, 190, 190, 192, 192, 194, 194, 196, 96, 198, 198, 172, 94, 200, 200, 174, + 198, 200, 92, 202, 202, 176, 200, 202, 64, 66, 58, 60, 130, 204, 204, 176, 128, 206, 206, 174, 204, 206, 126, 208, 208, 172, 206, 208, 126, 210, 210, 162, 128, 212, 212, 164, 210, + 212, 130, 214, 214, 166, 212, 214, 116, 216, 216, 162, 118, 218, 218, 164, 216, 218, 120, 220, 220, 166, 218, 220, 120, 222, 222, 186, 118, 224, 224, 184, 222, 224, 116, 226, 226, + 182, 224, 226, 148, 228, 228, 182, 150, 230, 230, 184, 228, 230, 152, 232, 232, 186, 230, 232, 152, 234, 234, 196, 150, 236, 236, 194, 234, 236, 148, 238, 238, 192, 236, 238, 146, + 240, 240, 190, 238, 240, 106, 242, 242, 190, 108, 244, 244, 192, 242, 244, 110, 246, 246, 194, 244, 246, 112, 248, 248, 196, 246, 248, 16, 18, 70, 250, 250, 92, 66, 252, 252, 202, + 64, 254, 254, 176, 252, 254, 60, 256, 256, 204, 58, 258, 258, 130, 256, 258, 54, 260, 260, 214, 50, 262, 262, 166, 46, 264, 264, 220, 42, 266, 266, 120, 38, 268, 268, 222, 34, 270, + 270, 186, 30, 272, 272, 232, 26, 274, 274, 152, 22, 276, 276, 234, 18, 278, 278, 196, 16, 280, 280, 248, 278, 280, 12, 282, 282, 112, 258, 284, 284, 260, 54, 56, 56, 58, 284, 56, + 254, 286, 286, 256, 60, 62, 62, 64, 286, 62, 250, 288, 288, 252, 66, 68, 68, 70, 288, 68, 260, 290, 290, 262, 50, 52, 52, 54, 290, 52, 262, 292, 292, 264, 46, 48, 48, 50, 292, 48, + 264, 294, 294, 266, 42, 44, 44, 46, 294, 44, 266, 296, 296, 268, 38, 40, 40, 42, 296, 40, 268, 298, 298, 270, 34, 36, 36, 38, 298, 36, 270, 300, 300, 272, 30, 32, 32, 34, 300, 32, + 272, 302, 302, 274, 26, 28, 28, 30, 302, 28, 274, 304, 304, 276, 22, 24, 24, 26, 304, 24, 276, 306, 306, 278, 18, 20, 20, 22, 306, 20, 280, 308, 308, 282, 12, 14, 14, 16, 308, 14 + ], + "width": 87.05882352941177, + "height": 80.0, + "path": "summer-a-lv2.ear-left-bubble", + "x": 0.470588235294116, + "y": 0.0 + } + }, + "ear-left-dot-01": { + "ear-left-dot": {"x": 0.5611764705882355, "y": 1.5111764705882353, "rotation": -0.95, "width": 14.117647058823529, "height": 14.117647058823529, "path": "summer-a-lv2.ear-left-dot"} + }, + "ear-left-dot-02": { + "ear-left-dot": {"x": 0.5611764705882355, "y": 1.5111764705882353, "rotation": -0.95, "width": 14.117647058823529, "height": 14.117647058823529, "path": "summer-a-lv2.ear-left-dot"} + }, + "ear-left-dot-03": { + "ear-left-dot": {"x": 0.5611764705882355, "y": 1.5111764705882353, "rotation": -0.95, "width": 14.117647058823529, "height": 14.117647058823529, "path": "summer-a-lv2.ear-left-dot"} + }, + "ear-left-dot-04": { + "ear-left-dot": {"x": 0.5611764705882355, "y": 1.5111764705882353, "rotation": -0.95, "width": 14.117647058823529, "height": 14.117647058823529, "path": "summer-a-lv2.ear-left-dot"} + }, + "ear-left-dot-05": { + "ear-left-dot": {"x": 0.5611764705882355, "y": 1.5111764705882353, "rotation": -0.95, "width": 14.117647058823529, "height": 14.117647058823529, "path": "summer-a-lv2.ear-left-dot"} + }, + "ear-left-dot-06": { + "ear-left-dot": {"x": 0.5611764705882355, "y": 1.5111764705882353, "rotation": -0.95, "width": 14.117647058823529, "height": 14.117647058823529, "path": "summer-a-lv2.ear-left-dot"} + }, + "ear-left-dot-07": { + "ear-left-dot": {"x": 0.5611764705882355, "y": 1.5111764705882353, "rotation": -0.95, "width": 14.117647058823529, "height": 14.117647058823529, "path": "summer-a-lv2.ear-left-dot"} + }, + "ear-left-dot-08": { + "ear-left-dot": {"x": 0.5611764705882355, "y": 1.5111764705882353, "rotation": -0.95, "width": 14.117647058823529, "height": 14.117647058823529, "path": "summer-a-lv2.ear-left-dot"} + }, + "ear-left-dot-09": { + "ear-left-dot": {"x": 0.5611764705882355, "y": 1.5111764705882353, "rotation": -0.95, "width": 14.117647058823529, "height": 14.117647058823529, "path": "summer-a-lv2.ear-left-dot"} + }, + "ear-left-dot-10": { + "ear-left-dot": {"x": 0.5611764705882355, "y": 1.5111764705882353, "rotation": -0.95, "width": 14.117647058823529, "height": 14.117647058823529, "path": "summer-a-lv2.ear-left-dot"} + }, + "ear-left-dot-11": { + "ear-left-dot": {"x": 0.5611764705882355, "y": 1.5111764705882353, "rotation": -0.95, "width": 14.117647058823529, "height": 14.117647058823529, "path": "summer-a-lv2.ear-left-dot"} + }, + "ear-left-dot-12": { + "ear-left-dot": {"x": 0.5611764705882355, "y": 1.5111764705882353, "rotation": -0.95, "width": 14.117647058823529, "height": 14.117647058823529, "path": "summer-a-lv2.ear-left-dot"} + }, + "ear-left-under": { + "ear-left-under": {"x": 85.09176470588235, "y": -29.18176470588236, "rotation": -90, "width": 141.1764705882353, "height": 218.82352941176472, "path": "summer-a-lv2.ear-left-under"} + }, + "ear-left-upper": { + "ear-left-upper": {"x": 99.70941176470589, "y": -26.681764705882347, "rotation": -90, "width": 152.94117647058823, "height": 258.8235294117647, "path": "summer-a-lv2.ear-left-upper"} + }, + "ear-right-bubble": { + "ear-right-bubble": { + "type": "mesh", + "uvs": [ + 0.93928, 0.51035, 0.95558, 0.60687, 0.96791, 0.67987, 0.98006, 0.75177, 1, 0.86979, 1, 0.93047, 1, 1, 0.9567, 1, 0.9208, 1, 0.88771, 1, 0.83969, 1, 0.79967, 1, 0.76574, 1, 0.73418, + 1, 0.69508, 1, 0.6661, 1, 0.6319, 1, 0.6046, 1, 0.57454, 1, 0.53755, 1, 0.50387, 1, 0.47341, 1, 0.44466, 1, 0.41233, 1, 0.37317, 1, 0.33787, 1, 0.30333, 1, 0.2648, 1, 0.21937, 1, + 0.17434, 1, 0.12959, 1, 0.08769, 1, 0, 1, 0.02085, 0.93004, 0.04055, 0.86394, 0.06626, 0.77764, 0.08854, 0.70287, 0.11527, 0.61317, 0.13788, 0.53731, 0.35753, 0, 0.43128, 0, 0.52161, + 0, 0.60662, 0, 0.67954, 0, 0.54109, 0.53632, 0.30907, 0.53689, 0.75362, 0.52246, 0.84707, 0.51636, 0.2081, 0.53714, 0.42115, 0.53662, 0.64269, 0.52969, 0.1892, 0.6098, 0.3018, + 0.61294, 0.41972, 0.61185, 0.54053, 0.60957, 0.64648, 0.60579, 0.76151, 0.60426, 0.87262, 0.59717, 0.16806, 0.69109, 0.29497, 0.68444, 0.41838, 0.68224, 0.54, 0.67846, 0.65011, + 0.67878, 0.7681, 0.67261, 0.89666, 0.6732, 0.14733, 0.77075, 0.28705, 0.76725, 0.41688, 0.761, 0.53942, 0.75466, 0.6538, 0.7529, 0.7757, 0.75146, 0.91933, 0.74487, 0.12337, 0.86287, + 0.2782, 0.85982, 0.4151, 0.85429, 0.53871, 0.84818, 0.65852, 0.84778, 0.7847, 0.84476, 0.95379, 0.85385, 0.97627, 0.92496, 0.79208, 0.9213, 0.66236, 0.9248, 0.5381, 0.92796, 0.41375, + 0.92539, 0.2717, 0.9278, 0.10571, 0.93074, 0.53197, 0.28531, 0.39415, 0.16313, 0.65961, 0.18832, 0.25473, 0.53703, 0.24202, 0.61127, 0.22911, 0.68789, 0.21379, 0.76908, 0.19729, + 0.86141, 0.18704, 0.9293, 0.36352, 0.53676, 0.36013, 0.6124, 0.35748, 0.68332, 0.35288, 0.76408, 0.34802, 0.857, 0.34383, 0.92658, 0.48024, 0.53647, 0.47847, 0.61074, 0.47433, + 0.6805, 0.47563, 0.75796, 0.47402, 0.85138, 0.47337, 0.92662, 0.58955, 0.53316, 0.59344, 0.60768, 0.59605, 0.67863, 0.5961, 0.75379, 0.60032, 0.84797, 0.60296, 0.92631, 0.69391, + 0.52635, 0.69915, 0.60509, 0.70691, 0.67581, 0.71206, 0.75221, 0.71954, 0.84632, 0.72813, 0.92303, 0.80125, 0.51935, 0.81428, 0.60089, 0.8348, 0.67292, 0.84793, 0.74814, 0.87862, + 0.84981, 0.89305, 0.92331, 0.19669, 0.68959, 0.17782, 0.76999, 0.1594, 0.86216, 0.1429, 0.93008, 0.26012, 0.68627, 0.25017, 0.76817, 0.23685, 0.86063, 0.22589, 0.92861, 0.30659, + 0.92721, 0.3131, 0.85841, 0.31569, 0.76587, 0.32231, 0.68395, 0.38717, 0.68279, 0.38553, 0.76251, 0.38068, 0.85568, 0.37648, 0.92602, 0.44462, 0.92603, 0.44322, 0.8529, 0.44458, + 0.75957, 0.44621, 0.68137, 0.50711, 0.67948, 0.50646, 0.75636, 0.50582, 0.84981, 0.50482, 0.92727, 0.57134, 0.92712, 0.5687, 0.84808, 0.56865, 0.75421, 0.5654, 0.67854, 0.62192, + 0.6787, 0.6236, 0.75336, 0.62525, 0.84789, 0.62839, 0.92567, 0.69427, 0.92394, 0.76244, 0.9221, 0.84047, 0.92226, 0.93306, 0.9241, 0.91732, 0.85189, 0.82617, 0.84699, 0.75013, + 0.84559, 0.6863, 0.84711, 0.68017, 0.75259, 0.74166, 0.75186, 0.80979, 0.74989, 0.88285, 0.74654, 0.86581, 0.67306, 0.79931, 0.67276, 0.73613, 0.67429, 0.67214, 0.67763, 0.09776, + 0.96131, 0.13724, 0.95982, 0.1817, 0.95902, 0.22313, 0.9588, 0.26892, 0.95695, 0.30526, 0.95692, 0.34139, 0.95661, 0.3751, 0.95678, 0.41313, 0.95785, 0.44464, 0.95718, 0.47339, + 0.95772, 0.5044, 0.95925, 0.53787, 0.95826, 0.57268, 0.95774, 0.60366, 0.95762, 0.62995, 0.95872, 0.66398, 0.95747, 0.69464, 0.9582, 0.73085, 0.95766, 0.76403, 0.95969, 0.79572, + 0.95904, 0.84011, 0.95843, 0.89075, 0.95631, 0.92774, 0.95702, 0.96706, 0.96028 + ], + "triangles": [ + 8, 196, 7, 9, 195, 8, 8, 195, 196, 10, 194, 9, 9, 194, 195, 10, 11, 194, 12, 193, 11, 11, 193, 194, 13, 192, 12, 12, 192, 193, 14, 191, 13, 13, 191, 192, 15, 190, 14, 14, 190, 191, + 15, 189, 190, 191, 158, 192, 192, 80, 193, 192, 158, 80, 194, 193, 159, 194, 159, 195, 159, 193, 80, 189, 157, 190, 190, 118, 191, 190, 157, 118, 191, 118, 158, 189, 81, 157, 195, + 124, 196, 196, 124, 160, 195, 159, 124, 81, 164, 157, 81, 76, 164, 157, 117, 118, 157, 164, 117, 159, 123, 124, 124, 123, 161, 118, 163, 158, 118, 117, 163, 80, 162, 159, 159, 162, + 123, 158, 77, 80, 158, 163, 77, 80, 77, 162, 162, 122, 123, 76, 165, 164, 76, 69, 165, 164, 116, 117, 164, 165, 116, 77, 167, 162, 117, 166, 163, 117, 116, 166, 163, 70, 77, 163, + 166, 70, 77, 70, 167, 165, 115, 116, 116, 171, 166, 166, 63, 70, 146, 103, 145, 68, 61, 152, 68, 145, 61, 151, 152, 109, 110, 153, 154, 143, 144, 104, 16, 189, 15, 17, 188, 16, 16, + 188, 189, 18, 187, 17, 17, 187, 188, 18, 19, 186, 19, 185, 186, 18, 186, 187, 20, 184, 19, 19, 184, 185, 20, 21, 184, 22, 183, 21, 21, 183, 184, 23, 181, 22, 181, 182, 22, 22, 182, + 183, 184, 148, 185, 184, 183, 148, 187, 156, 188, 188, 81, 189, 188, 156, 81, 185, 149, 186, 185, 82, 149, 185, 148, 82, 182, 83, 141, 182, 181, 83, 186, 112, 187, 186, 149, 112, + 182, 106, 183, 183, 106, 148, 187, 112, 156, 182, 141, 106, 150, 149, 82, 147, 75, 82, 82, 148, 147, 82, 75, 150, 106, 105, 148, 148, 105, 147, 149, 111, 112, 149, 150, 111, 105, + 106, 142, 112, 155, 156, 112, 111, 155, 83, 74, 141, 74, 142, 141, 106, 141, 142, 156, 76, 81, 156, 155, 76, 74, 67, 142, 142, 143, 105, 142, 67, 143, 105, 104, 147, 105, 143, 104, + 147, 146, 75, 147, 104, 146, 75, 68, 150, 75, 146, 68, 68, 151, 150, 150, 110, 111, 150, 151, 110, 111, 154, 155, 111, 110, 154, 155, 69, 76, 155, 154, 69, 104, 103, 146, 146, 145, + 68, 68, 152, 151, 151, 109, 110, 24, 180, 23, 25, 179, 24, 24, 179, 180, 26, 178, 25, 25, 178, 179, 27, 177, 26, 26, 177, 178, 28, 176, 27, 27, 176, 177, 29, 175, 28, 28, 175, 176, + 30, 174, 29, 29, 174, 175, 31, 173, 30, 30, 173, 174, 174, 128, 175, 174, 85, 128, 175, 94, 176, 175, 128, 94, 176, 132, 177, 176, 94, 132, 180, 140, 181, 177, 84, 178, 177, 132, 84, + 178, 133, 179, 178, 84, 133, 179, 100, 180, 180, 100, 140, 179, 133, 100, 128, 127, 94, 94, 93, 132, 94, 127, 93, 132, 131, 84, 132, 93, 131, 84, 73, 133, 84, 131, 73, 133, 134, 100, + 133, 73, 134, 100, 99, 140, 100, 134, 99, 140, 139, 83, 140, 99, 139, 93, 92, 131, 131, 130, 73, 131, 92, 130, 73, 66, 134, 73, 130, 66, 134, 135, 99, 134, 66, 135, 99, 98, 139, 99, + 135, 98, 139, 138, 74, 139, 98, 138, 74, 138, 67, 130, 129, 66, 66, 59, 135, 135, 136, 98, 135, 59, 136, 98, 97, 138, 98, 136, 97, 138, 137, 67, 23, 180, 181, 181, 140, 83, 83, 139, + 74, 128, 72, 127, 127, 126, 93, 93, 126, 92, 126, 125, 92, 85, 34, 72, 168, 64, 71, 168, 169, 64, 65, 58, 126, 126, 58, 125, 59, 52, 136, 69, 172, 165, 165, 172, 115, 116, 115, 171, + 154, 62, 69, 120, 170, 56, 65, 36, 58, 58, 51, 125, 37, 38, 51, 51, 48, 90, 51, 38, 48, 78, 3, 4, 64, 169, 57, 121, 120, 57, 120, 47, 57, 67, 137, 60, 143, 60, 144, 144, 103, 104, + 110, 109, 153, 154, 153, 62, 69, 62, 172, 97, 136, 96, 97, 96, 137, 96, 136, 52, 60, 137, 53, 60, 53, 144, 53, 137, 96, 103, 144, 102, 103, 102, 145, 102, 144, 53, 61, 145, 54, 172, + 62, 55, 55, 62, 153, 152, 108, 109, 55, 153, 108, 153, 109, 108, 61, 54, 152, 152, 54, 108, 54, 145, 102, 172, 114, 115, 172, 55, 114, 115, 114, 171, 171, 114, 56, 90, 89, 52, 52, + 45, 96, 52, 89, 45, 96, 95, 53, 96, 45, 95, 53, 49, 102, 53, 95, 49, 90, 48, 89, 102, 101, 54, 102, 49, 101, 54, 44, 108, 44, 107, 108, 54, 101, 44, 55, 108, 50, 108, 107, 50, 55, + 113, 114, 55, 50, 113, 114, 46, 56, 114, 113, 46, 56, 119, 120, 56, 46, 119, 120, 119, 47, 57, 47, 0, 87, 48, 38, 87, 89, 48, 87, 45, 89, 87, 95, 45, 49, 95, 86, 87, 38, 39, 101, 49, + 86, 87, 86, 95, 101, 86, 44, 41, 87, 40, 87, 41, 86, 44, 86, 107, 107, 86, 50, 50, 86, 113, 46, 113, 88, 119, 46, 88, 47, 119, 88, 86, 88, 113, 47, 88, 0, 0, 88, 43, 88, 41, 42, 88, + 86, 41, 88, 42, 43, 87, 39, 40, 57, 0, 1, 1, 64, 57, 64, 1, 2, 71, 2, 3, 58, 37, 51, 36, 37, 58, 91, 51, 90, 35, 36, 65, 125, 51, 91, 34, 35, 72, 72, 35, 65, 33, 34, 85, 169, 121, + 57, 171, 56, 63, 170, 63, 56, 138, 97, 137, 67, 60, 143, 59, 129, 52, 52, 129, 90, 71, 64, 2, 3, 78, 71, 78, 161, 71, 91, 90, 129, 170, 120, 121, 122, 121, 169, 161, 168, 71, 92, + 125, 91, 72, 65, 127, 127, 65, 126, 122, 169, 168, 92, 91, 130, 130, 91, 129, 123, 122, 168, 166, 171, 63, 70, 170, 167, 70, 63, 170, 167, 121, 122, 167, 170, 121, 66, 129, 59, 85, + 32, 33, 173, 85, 174, 31, 32, 173, 173, 32, 85, 85, 72, 128, 6, 197, 79, 162, 167, 122, 7, 197, 6, 160, 161, 78, 197, 160, 79, 196, 160, 197, 7, 196, 197, 124, 161, 160, 160, 78, 79, + 123, 168, 161, 6, 79, 5, 79, 78, 4, 79, 4, 5 + ], + "vertices": [ + 1, 31, 39.72, 33.4, 1, 1, 31, 46.93, 34.38, 1, 1, 31, 52.37, 35.12, 1, 1, 31, 58.6, 36.08, 1, 4, 31, 66.62, 38.45, 0.9295, 36, 61.48, 0.37, 1e-05, 37, 40.07, 0.48, 0.00266, 38, 18.6, + 0.48, 0.06784, 4, 31, 70.87, 39.07, 0.79905, 36, 62.32, -3.84, 1e-05, 37, 40.92, -3.73, 0.00721, 38, 19.44, -3.73, 0.19373, 4, 31, 76.95, 40.59, 0.74731, 36, 64.15, -9.83, 0, 37, + 42.75, -9.72, 0.00973, 38, 21.27, -9.72, 0.24296, 4, 31, 76.59, 36.12, 0.54785, 36, 59.68, -9.71, 1e-05, 37, 38.27, -9.6, 0.02168, 38, 16.8, -9.6, 0.43046, 4, 31, 76.3, 32.42, + 0.43038, 36, 55.96, -9.61, 3e-05, 37, 34.56, -9.5, 0.03847, 38, 13.08, -9.5, 0.53112, 4, 31, 76.02, 29.01, 0.36035, 36, 52.54, -9.51, 9e-05, 37, 31.14, -9.41, 0.06275, 38, 9.66, + -9.41, 0.57681, 4, 31, 75.63, 24.06, 0.2889, 36, 47.58, -9.38, 0.00026, 37, 26.17, -9.27, 0.09917, 38, 4.7, -9.27, 0.61167, 4, 31, 75.3, 19.93, 0.22591, 36, 43.44, -9.26, 0.0007, 37, + 22.03, -9.16, 0.14876, 38, 0.56, -9.16, 0.62463, 4, 31, 75.15, 17.12, 0.17724, 36, 40.62, -9.26, 0.0017, 37, 19.22, -9.16, 0.21115, 38, -2.26, -9.16, 0.60991, 4, 31, 75.01, 14.5, + 0.14418, 36, 38, -9.26, 0.00385, 37, 16.6, -9.16, 0.28407, 38, -4.88, -9.16, 0.5679, 4, 31, 74.84, 11.26, 0.12448, 36, 34.76, -9.26, 0.00813, 37, 13.35, -9.16, 0.36326, 38, -8.12, + -9.16, 0.50413, 4, 31, 74.71, 8.86, 0.11438, 36, 32.35, -9.26, 0.016, 37, 10.95, -9.16, 0.44276, 38, -10.53, -9.16, 0.42686, 4, 31, 74.56, 6.02, 0.11006, 36, 29.51, -9.26, 0.02948, + 37, 8.11, -9.16, 0.51561, 38, -13.37, -9.16, 0.34486, 4, 31, 74.45, 3.76, 0.10858, 36, 27.25, -9.26, 0.05095, 37, 5.84, -9.16, 0.57474, 38, -15.63, -9.16, 0.26573, 4, 31, 74.31, + 1.27, 0.10802, 36, 24.75, -9.26, 0.08291, 37, 3.35, -9.16, 0.614, 38, -18.13, -9.16, 0.19506, 4, 31, 74.15, -1.8, 0.1074, 36, 21.68, -9.26, 0.12742, 37, 0.28, -9.16, 0.62906, 38, + -21.2, -9.16, 0.13612, 4, 31, 74.01, -4.59, 0.10634, 36, 18.89, -9.26, 0.18549, 37, -2.52, -9.16, 0.61812, 38, -23.99, -9.16, 0.09006, 4, 31, 73.87, -7.11, 0.10502, 36, 16.36, -9.26, + 0.25646, 37, -5.05, -9.16, 0.58221, 38, -26.52, -9.16, 0.05631, 4, 31, 73.75, -9.5, 0.10419, 36, 13.97, -9.26, 0.33753, 37, -7.43, -9.16, 0.52513, 38, -28.91, -9.16, 0.03316, 4, 31, + 73.61, -12.18, 0.10536, 36, 11.29, -9.26, 0.42349, 37, -10.12, -9.16, 0.45282, 38, -31.59, -9.16, 0.01833, 4, 31, 73.44, -15.42, 0.11098, 36, 8.04, -9.26, 0.50701, 37, -13.37, -9.16, + 0.37254, 38, -34.84, -9.16, 0.00948, 4, 31, 73.28, -18.35, 0.12436, 36, 5.11, -9.26, 0.57939, 37, -16.3, -9.16, 0.29168, 38, -37.77, -9.16, 0.00457, 4, 31, 73.13, -21.21, 0.149, 36, + 2.24, -9.26, 0.63222, 37, -19.16, -9.16, 0.21673, 38, -40.64, -9.16, 0.00205, 4, 31, 72.96, -24.4, 0.18726, 36, -0.96, -9.26, 0.65948, 37, -22.36, -9.16, 0.15241, 38, -43.84, -9.16, + 0.00085, 4, 31, 72.77, -28.17, 0.23866, 36, -4.73, -9.26, 0.65975, 37, -26.13, -9.16, 0.10126, 38, -47.61, -9.16, 0.00033, 4, 31, 72.57, -31.9, 0.29871, 36, -8.46, -9.26, 0.63741, + 37, -29.87, -9.16, 0.06376, 38, -51.34, -9.16, 0.00012, 4, 31, 72.37, -35.61, 0.35932, 36, -12.18, -9.26, 0.60181, 37, -33.58, -9.16, 0.03884, 38, -55.06, -9.16, 4e-05, 4, 31, 72.19, + -39.08, 0.49297, 36, -15.66, -9.26, 0.48586, 37, -37.06, -9.16, 0.02116, 38, -58.54, -9.16, 1e-05, 4, 31, 71.81, -46.35, 0.66969, 36, -22.93, -9.26, 0.32512, 37, -44.34, -9.16, + 0.00518, 38, -65.81, -9.16, 0, 4, 31, 66.73, -44.35, 0.73638, 36, -21.2, -4.09, 0.26049, 37, -42.61, -3.98, 0.00313, 38, -64.08, -3.98, 0, 4, 31, 61.93, -42.46, 0.74288, 36, -19.57, + 0.8, 0.25402, 37, -40.97, 0.91, 0.00309, 38, -62.45, 0.91, 1e-05, 2, 31, 55.67, -40, 0.86, 36, -17.44, 7.19, 0.14, 2, 31, 50.24, -37.86, 0.87418, 36, -15.59, 12.72, 0.12582, 1, 31, + 43.72, -35.29, 1, 1, 31, 38.22, -33.12, 1, 2, 31, -0.53, -12.83, 0.99965, 36, 6.74, 64.74, 0.00035, 2, 31, -0.21, -6.72, 0.9998, 36, 12.86, 64.74, 0.0002, 3, 31, 0.19, 0.77, 0.99981, + 36, 20.36, 64.74, 9e-05, 38, -22.52, 64.84, 0.0001, 3, 31, 0.56, 7.82, 0.99975, 36, 27.41, 64.74, 1e-05, 38, -15.47, 64.84, 0.00024, 2, 31, 0.88, 13.86, 0.99954, 38, -9.41, 64.84, + 0.00046, 4, 31, 39.9, 0.3, 0.88429, 36, 21.98, 25.05, 0.02526, 37, 0.57, 25.15, 0.06552, 38, -20.9, 25.15, 0.02493, 1, 31, 38.93, -18.93, 1, 4, 31, 39.81, 17.97, 0.94373, 36, 39.62, + 26.07, 0.00089, 37, 18.21, 26.18, 0.01419, 38, -3.26, 26.18, 0.04119, 1, 31, 39.76, 25.74, 1, 1, 31, 38.51, -27.3, 1, 4, 31, 39.4, -9.64, 0.88619, 36, 12.02, 25.03, 0.05505, 37, + -9.38, 25.13, 0.05102, 38, -30.86, 25.13, 0.00774, 4, 31, 39.86, 8.75, 0.89286, 36, 30.41, 25.54, 0.00746, 37, 9, 25.64, 0.04877, 38, -12.47, 25.64, 0.05092, 1, 31, 43.8, -29.15, 1, + 4, 31, 44.52, -19.83, 0.74343, 36, 2.11, 19.38, 0.19678, 37, -19.29, 19.48, 0.05726, 38, -40.77, 19.48, 0.00254, 4, 31, 44.96, -10.05, 0.58833, 36, 11.9, 19.46, 0.20061, 37, -9.5, + 19.56, 0.19026, 38, -30.98, 19.56, 0.0208, 4, 31, 45.31, -0.03, 0.58846, 36, 21.93, 19.63, 0.08112, 37, 0.53, 19.73, 0.24909, 38, -20.95, 19.73, 0.08133, 4, 31, 45.5, 8.76, 0.59817, + 36, 30.72, 19.91, 0.02026, 37, 9.32, 20.01, 0.18761, 38, -12.16, 20.01, 0.19395, 4, 31, 45.89, 18.3, 0.66183, 36, 40.27, 20.02, 0.00346, 37, 18.87, 20.13, 0.07957, 38, -2.61, 20.13, + 0.25514, 1, 31, 45.85, 27.54, 1, 4, 31, 49.71, -31.22, 0.84023, 36, -8.99, 13.6, 0.15068, 37, -30.39, 13.7, 0.00899, 38, -51.87, 13.7, 0.0001, 4, 31, 49.78, -20.68, 0.48016, 36, + 1.55, 14.09, 0.41733, 37, -19.86, 14.19, 0.10062, 38, -41.33, 14.19, 0.0019, 4, 31, 50.15, -10.44, 0.42576, 36, 11.79, 14.25, 0.28082, 37, -9.61, 14.36, 0.27628, 38, -31.09, 14.36, + 0.01714, 4, 31, 50.4, -0.34, 0.43345, 36, 21.89, 14.53, 0.09343, 37, 0.48, 14.63, 0.37698, 38, -20.99, 14.63, 0.09613, 4, 31, 50.91, 8.78, 0.43708, 36, 31.02, 14.51, 0.01603, 37, + 9.62, 14.61, 0.27127, 38, -11.86, 14.61, 0.27562, 4, 31, 50.97, 18.59, 0.51068, 36, 40.82, 14.96, 0.00179, 37, 19.41, 15.07, 0.09933, 38, -2.06, 15.07, 0.3882, 4, 31, 51.57, 29.24, + 0.94195, 36, 51.49, 14.92, 4e-05, 37, 30.08, 15.02, 0.00385, 38, 8.61, 15.02, 0.05416, 4, 31, 55.51, -33.25, 0.72549, 36, -10.71, 7.7, 0.2621, 37, -32.11, 7.81, 0.01235, 38, -53.59, + 7.81, 6e-05, 4, 31, 55.86, -21.65, 0.38729, 36, 0.89, 7.96, 0.4981, 37, -20.51, 8.06, 0.11341, 38, -41.99, 8.06, 0.0012, 4, 31, 55.96, -10.87, 0.32692, 36, 11.67, 8.42, 0.3274, 37, + -9.74, 8.53, 0.32983, 38, -31.21, 8.53, 0.01585, 4, 31, 56.03, -0.69, 0.33677, 36, 21.84, 8.89, 0.10146, 37, 0.43, 9, 0.45593, 38, -21.04, 9, 0.10584, 4, 31, 56.4, 8.8, 0.33839, 36, + 31.33, 9.02, 0.0144, 37, 9.93, 9.13, 0.32329, 38, -11.55, 9.13, 0.32392, 4, 31, 57.13, 19.32, 0.42143, 36, 41.87, 8.84, 0.00109, 37, 20.47, 8.95, 0.11176, 38, -1.01, 8.95, 0.46572, + 4, 31, 58.69, 31.45, 0.79569, 36, 54.07, 7.92, 5e-05, 37, 32.67, 8.03, 0.01091, 38, 11.19, 8.03, 0.19335, 4, 31, 62.21, -35.59, 0.66085, 36, -12.7, 0.88, 0.32566, 37, -34.1, 0.99, + 0.01346, 38, -55.58, 0.99, 3e-05, 4, 31, 62.66, -22.75, 0.31024, 36, 0.16, 1.11, 0.56299, 37, -21.25, 1.21, 0.12589, 38, -42.72, 1.21, 0.00089, 4, 31, 62.85, -11.38, 0.24349, 36, + 11.52, 1.52, 0.36477, 37, -9.89, 1.62, 0.37599, 38, -31.36, 1.62, 0.01574, 4, 31, 62.94, -1.11, 0.2525, 36, 21.78, 1.97, 0.10936, 37, 0.37, 2.08, 0.52284, 38, -21.1, 2.08, 0.1153, 4, + 31, 63.43, 8.82, 0.2544, 36, 31.72, 2, 0.01401, 37, 10.32, 2.11, 0.36809, 38, -11.16, 2.11, 0.3635, 4, 31, 63.63, 19.58, 0.3466, 36, 42.48, 2.36, 0.00077, 37, 21.07, 2.47, 0.1237, + 38, -0.4, 2.47, 0.52893, 4, 31, 65.17, 33.27, 0.69411, 36, 56.23, 1.55, 3e-05, 37, 34.83, 1.66, 0.01435, 38, 13.35, 1.66, 0.29151, 4, 31, 70.52, 34.86, 0.61986, 36, 58.1, -3.71, + 1e-05, 37, 36.69, -3.61, 0.01658, 38, 15.22, -3.61, 0.36355, 4, 31, 69.45, 19.61, 0.28549, 36, 42.81, -3.44, 0.00065, 37, 21.4, -3.34, 0.13463, 38, -0.07, -3.34, 0.57924, 4, 31, + 69.14, 8.84, 0.18483, 36, 32.04, -3.7, 0.01432, 37, 10.64, -3.59, 0.40541, 38, -10.84, -3.59, 0.39544, 4, 31, 68.83, -1.47, 0.18141, 36, 21.73, -3.93, 0.11681, 37, 0.32, -3.83, + 0.57764, 38, -21.15, -3.83, 0.12413, 4, 31, 68.1, -11.77, 0.17479, 36, 11.41, -3.74, 0.39444, 37, -10, -3.64, 0.41447, 38, -31.47, -3.64, 0.0163, 4, 31, 67.66, -23.55, 0.24784, 36, + -0.38, -3.92, 0.61396, 37, -21.79, -3.82, 0.13743, 38, -43.26, -3.82, 0.00077, 4, 31, 67.15, -37.32, 0.59732, 36, -14.16, -4.14, 0.38768, 37, -35.56, -4.03, 0.01499, 38, -57.04, + -4.03, 1e-05, 4, 31, 21.31, 0.52, 0.98403, 36, 21.22, 43.62, 0.00516, 37, -0.19, 43.73, 0.00609, 38, -21.66, 43.73, 0.00473, 3, 31, 11.68, -10.43, 0.98457, 36, 9.78, 52.66, 0.01421, + 37, -11.62, 52.77, 0.00123, 3, 31, 14.7, 11.48, 0.98807, 37, 10.41, 50.91, 0.00101, 38, -11.07, 50.91, 0.01092, 1, 31, 38.71, -23.44, 1, 4, 31, 44.14, -24.78, 0.93122, 36, -2.85, + 19.5, 0.05888, 37, -24.25, 19.61, 0.00959, 38, -45.73, 19.61, 0.0003, 4, 31, 49.74, -26.15, 0.67882, 36, -3.92, 13.83, 0.287, 37, -25.32, 13.94, 0.03374, 38, -46.8, 13.94, 0.00045, + 4, 31, 55.68, -27.73, 0.52353, 36, -5.19, 7.82, 0.4314, 37, -26.59, 7.93, 0.04479, 38, -48.07, 7.93, 0.00029, 4, 31, 62.43, -29.46, 0.41464, 36, -6.56, 0.99, 0.53292, 37, -27.96, + 1.1, 0.05226, 38, -49.44, 1.1, 0.00018, 4, 31, 67.4, -30.57, 0.35706, 36, -7.41, -4.03, 0.58638, 37, -28.81, -3.93, 0.05644, 38, -50.29, -3.93, 0.00012, 4, 31, 39.16, -14.42, + 0.88311, 36, 7.24, 25.02, 0.07338, 37, -14.17, 25.12, 0.03978, 38, -35.64, 25.12, 0.00372, 4, 31, 44.74, -15, 0.62555, 36, 6.96, 19.42, 0.24007, 37, -14.45, 19.52, 0.1259, 38, + -35.92, 19.52, 0.00848, 4, 31, 49.97, -15.49, 0.4342, 36, 6.74, 14.17, 0.37611, 37, -14.67, 14.27, 0.18375, 38, -36.14, 14.27, 0.00595, 4, 31, 55.91, -16.19, 0.33684, 36, 6.35, 8.19, + 0.44427, 37, -15.05, 8.3, 0.21425, 38, -36.53, 8.3, 0.00464, 4, 31, 62.76, -16.95, 0.25537, 36, 5.95, 1.32, 0.49872, 37, -15.45, 1.42, 0.24179, 38, -36.93, 1.42, 0.00413, 4, 31, + 67.88, -17.57, 0.18921, 36, 5.6, -3.83, 0.54119, 37, -15.8, -3.73, 0.26556, 38, -37.28, -3.73, 0.00404, 4, 31, 39.65, -4.74, 0.83361, 36, 16.93, 25.04, 0.05679, 37, -4.48, 25.14, + 0.08927, 38, -25.95, 25.14, 0.02033, 4, 31, 45.13, -5.18, 0.57797, 36, 16.78, 19.54, 0.13938, 37, -4.63, 19.65, 0.23843, 38, -26.1, 19.65, 0.04422, 4, 31, 50.27, -5.8, 0.42696, 36, + 16.43, 14.38, 0.17737, 37, -4.97, 14.48, 0.35156, 38, -26.45, 14.48, 0.04411, 4, 31, 56, -5.99, 0.33132, 36, 16.54, 8.65, 0.20059, 37, -4.86, 8.75, 0.42277, 38, -26.34, 8.75, + 0.04531, 4, 31, 62.89, -6.48, 0.24781, 36, 16.41, 1.73, 0.22055, 37, -4.99, 1.84, 0.48389, 38, -26.47, 1.84, 0.04775, 4, 31, 68.45, -6.83, 0.17763, 36, 16.35, -3.83, 0.23735, 37, + -5.05, -3.73, 0.53429, 38, -26.53, -3.73, 0.05074, 4, 31, 39.88, 4.33, 0.83746, 36, 26, 25.28, 0.02009, 37, 4.59, 25.39, 0.08772, 38, -16.88, 25.39, 0.05473, 4, 31, 45.41, 4.36, + 0.58276, 36, 26.32, 19.77, 0.04346, 37, 4.92, 19.87, 0.23645, 38, -16.56, 19.87, 0.13732, 4, 31, 50.66, 4.3, 0.43226, 36, 26.54, 14.52, 0.04191, 37, 5.13, 14.62, 0.34769, 38, -16.34, + 14.62, 0.17814, 4, 31, 56.21, 4.01, 0.33656, 36, 26.54, 8.96, 0.0422, 37, 5.14, 9.06, 0.41771, 38, -16.34, 9.06, 0.20353, 4, 31, 63.19, 4, 0.25264, 36, 26.89, 1.99, 0.04384, 37, + 5.49, 2.09, 0.47782, 38, -15.99, 2.09, 0.2257, 4, 31, 68.99, 3.91, 0.18189, 36, 27.11, -3.81, 0.04615, 37, 5.71, -3.71, 0.52741, 38, -15.77, -3.71, 0.24456, 4, 31, 39.83, 13, 0.8608, + 36, 34.66, 25.79, 0.00457, 37, 13.26, 25.89, 0.04889, 38, -8.22, 25.89, 0.08574, 4, 31, 45.67, 13.13, 0.60926, 36, 35.09, 19.96, 0.00894, 37, 13.69, 20.06, 0.13479, 38, -7.79, 20.06, + 0.247, 4, 31, 50.93, 13.5, 0.45377, 36, 35.74, 14.73, 0.00554, 37, 14.33, 14.83, 0.18027, 38, -7.14, 14.83, 0.36041, 4, 31, 56.75, 13.83, 0.35749, 36, 36.37, 8.94, 0.00417, 37, + 14.96, 9.04, 0.20976, 38, -6.51, 9.04, 0.42858, 4, 31, 63.53, 14.02, 0.27612, 36, 36.92, 2.18, 0.00359, 37, 15.52, 2.28, 0.23625, 38, -5.96, 2.28, 0.48404, 4, 31, 69.3, 14.3, + 0.20954, 36, 37.5, -3.57, 0.00344, 37, 16.1, -3.46, 0.25903, 38, -5.38, -3.46, 0.52799, 1, 31, 39.78, 21.93, 1, 4, 31, 45.87, 22.69, 0.82489, 36, 44.65, 20.27, 0.00083, 37, 23.25, + 20.37, 0.0268, 38, 1.77, 20.37, 0.14748, 4, 31, 51.28, 24.11, 0.64773, 36, 46.35, 14.94, 0.00052, 37, 24.95, 15.04, 0.04091, 38, 3.47, 15.04, 0.31084, 4, 31, 57.92, 25.42, 0.53225, + 36, 48.01, 8.38, 0.00029, 37, 26.6, 8.49, 0.04857, 38, 5.13, 8.49, 0.41889, 4, 31, 64.49, 27.19, 0.46955, 36, 50.12, 1.91, 0.00016, 37, 28.71, 2.02, 0.05201, 38, 7.24, 2.02, 0.47828, + 4, 31, 70.04, 27.97, 0.41589, 36, 51.19, -3.59, 0.0001, 37, 29.78, -3.48, 0.05591, 38, 8.31, -3.48, 0.5281, 4, 31, 49.73, -28.84, 0.72647, 36, -6.61, 13.71, 0.25381, 37, -28.01, + 13.81, 0.01954, 38, -49.49, 13.81, 0.00018, 4, 31, 55.59, -30.72, 0.64422, 36, -8.18, 7.76, 0.33291, 37, -29.58, 7.86, 0.02275, 38, -51.06, 7.86, 0.00011, 4, 31, 62.32, -32.6, + 0.55448, 36, -9.7, 0.94, 0.41902, 37, -31.11, 1.04, 0.02643, 38, -52.58, 1.04, 7e-05, 4, 31, 67.27, -34.24, 0.44397, 36, -11.07, -4.09, 0.52396, 37, -32.48, -3.99, 0.03202, 38, + -53.95, -3.99, 4e-05, 4, 31, 49.76, -23.57, 0.5094, 36, -1.34, 13.95, 0.4213, 37, -22.75, 14.06, 0.06847, 38, -44.22, 14.06, 0.00083, 4, 31, 55.77, -24.72, 0.42549, 36, -2.17, 7.89, + 0.49746, 37, -23.57, 8, 0.07648, 38, -45.05, 8, 0.00057, 4, 31, 62.54, -26.18, 0.35688, 36, -3.28, 1.05, 0.55926, 37, -24.68, 1.15, 0.08347, 38, -46.16, 1.15, 0.00039, 4, 31, 67.52, + -27.35, 0.29772, 36, -4.19, -3.98, 0.61133, 37, -25.59, -3.88, 0.09064, 38, -47.07, -3.88, 0.00031, 4, 31, 67.77, -20.66, 0.21136, 36, 2.51, -3.88, 0.59029, 37, -18.89, -3.77, + 0.19654, 38, -40.37, -3.77, 0.00182, 4, 31, 62.71, -19.85, 0.275, 36, 3.05, 1.21, 0.54348, 37, -18.35, 1.32, 0.17958, 38, -39.83, 1.32, 0.00194, 4, 31, 55.88, -19.28, 0.35002, 36, + 3.27, 8.06, 0.48643, 37, -18.14, 8.17, 0.16123, 38, -39.61, 8.17, 0.00232, 4, 31, 49.86, -18.41, 0.41881, 36, 3.82, 14.12, 0.43213, 37, -17.59, 14.23, 0.1461, 38, -39.06, 14.23, + 0.00296, 4, 31, 50.06, -13.03, 0.39313, 36, 9.2, 14.21, 0.35299, 37, -12.2, 14.31, 0.24433, 38, -33.68, 14.31, 0.00955, 4, 31, 55.94, -13.47, 0.32258, 36, 9.06, 8.31, 0.39406, 37, + -12.34, 8.41, 0.27473, 38, -33.82, 8.41, 0.00863, 4, 31, 62.8, -14.24, 0.24476, 36, 8.66, 1.42, 0.43744, 37, -12.74, 1.52, 0.30953, 38, -34.22, 1.52, 0.00827, 4, 31, 67.98, -14.86, + 0.17804, 36, 8.31, -3.79, 0.47328, 37, -13.09, -3.69, 0.3403, 38, -34.57, -3.69, 0.00838, 4, 31, 68.28, -9.21, 0.17525, 36, 13.97, -3.79, 0.31355, 37, -7.43, -3.69, 0.48153, 38, + -28.91, -3.69, 0.02968, 4, 31, 62.87, -9.04, 0.24396, 36, 13.85, 1.62, 0.29088, 37, -7.55, 1.73, 0.43695, 38, -29.03, 1.73, 0.02821, 4, 31, 55.98, -8.57, 0.32275, 36, 13.97, 8.53, + 0.26435, 37, -7.44, 8.63, 0.38552, 38, -28.91, 8.63, 0.02739, 4, 31, 50.21, -8.13, 0.39269, 36, 14.1, 14.31, 0.24007, 37, -7.3, 14.42, 0.33961, 38, -28.78, 14.42, 0.02763, 4, 31, + 50.33, -3.07, 0.39835, 36, 19.16, 14.45, 0.13664, 37, -2.25, 14.56, 0.3972, 38, -23.72, 14.56, 0.06781, 4, 31, 56.01, -3.43, 0.32898, 36, 19.1, 8.76, 0.14701, 37, -2.3, 8.87, + 0.45281, 38, -23.78, 8.87, 0.07119, 4, 31, 62.92, -3.84, 0.24968, 36, 19.05, 1.85, 0.15947, 37, -2.36, 1.96, 0.51456, 38, -23.83, 1.96, 0.07629, 4, 31, 68.64, -4.23, 0.17972, 36, + 18.97, -3.88, 0.17094, 37, -2.44, -3.78, 0.56767, 38, -23.91, -3.78, 0.08167, 4, 31, 68.91, 1.29, 0.18179, 36, 24.49, -3.87, 0.07557, 37, 3.08, -3.77, 0.56385, 38, -18.39, -3.77, + 0.17879, 4, 31, 63.06, 1.38, 0.25204, 36, 24.27, 1.98, 0.07119, 37, 2.86, 2.08, 0.51118, 38, -18.61, 2.08, 0.16559, 4, 31, 56.13, 1.74, 0.33157, 36, 24.26, 8.92, 0.0672, 37, 2.86, + 9.03, 0.44995, 38, -18.62, 9.03, 0.15128, 4, 31, 50.52, 1.76, 0.40101, 36, 23.99, 14.52, 0.06478, 37, 2.59, 14.63, 0.39483, 38, -18.89, 14.63, 0.13938, 4, 31, 50.78, 6.45, 0.401, 36, + 28.68, 14.51, 0.0258, 37, 7.28, 14.62, 0.33427, 38, -14.2, 14.62, 0.23894, 4, 31, 56.3, 6.29, 0.3309, 36, 28.82, 8.99, 0.02514, 37, 7.42, 9.09, 0.37908, 38, -14.06, 9.09, 0.26488, 4, + 31, 63.29, 6.06, 0.25155, 36, 28.96, 1.99, 0.02548, 37, 7.56, 2.1, 0.4293, 38, -13.92, 2.1, 0.29367, 4, 31, 69.06, 6.02, 0.18206, 36, 29.22, -3.76, 0.02652, 37, 7.82, -3.66, 0.47284, + 38, -13.66, -3.66, 0.31858, 4, 31, 69.22, 11.49, 0.19245, 36, 34.69, -3.64, 0.00724, 37, 13.29, -3.53, 0.3321, 38, -8.19, -3.53, 0.46821, 4, 31, 69.38, 17.15, 0.23948, 36, 40.35, + -3.5, 0.00153, 37, 18.94, -3.39, 0.19195, 38, -2.53, -3.39, 0.56704, 4, 31, 69.73, 23.61, 0.346, 36, 46.82, -3.51, 0.00026, 37, 25.42, -3.41, 0.08922, 38, 3.94, -3.41, 0.56452, 4, + 31, 70.27, 31.28, 0.48407, 36, 54.51, -3.65, 4e-05, 37, 33.11, -3.54, 0.03358, 38, 11.63, -3.54, 0.48231, 4, 31, 64.84, 30.32, 0.54501, 36, 53.26, 1.73, 7e-05, 37, 31.86, 1.83, + 0.03077, 38, 10.38, 1.83, 0.42415, 4, 31, 64.01, 22.94, 0.40266, 36, 45.85, 2.16, 0.00034, 37, 24.45, 2.27, 0.08247, 38, 2.97, 2.27, 0.51452, 4, 31, 63.58, 16.63, 0.30287, 36, 39.53, + 2.26, 0.00168, 37, 18.13, 2.37, 0.17579, 38, -3.35, 2.37, 0.51965, 4, 31, 63.48, 11.19, 0.25994, 36, 34.09, 2.08, 0.00726, 37, 12.69, 2.19, 0.30245, 38, -8.79, 2.19, 0.43035, 4, 31, + 56.56, 11.07, 0.3382, 36, 33.61, 8.98, 0.00776, 37, 12.21, 9.09, 0.26884, 38, -9.27, 9.09, 0.38519, 4, 31, 56.93, 16.38, 0.37706, 36, 38.93, 8.89, 0.00208, 37, 17.52, 9, 0.15821, 38, + -3.95, 9, 0.46265, 4, 31, 57.5, 22.2, 0.46779, 36, 44.77, 8.63, 0.00052, 37, 23.36, 8.73, 0.07582, 38, 1.89, 8.73, 0.45586, 4, 31, 58.3, 28.37, 0.65325, 36, 50.97, 8.16, 0.00012, 37, + 29.57, 8.26, 0.02541, 38, 8.09, 8.26, 0.32123, 4, 31, 51.42, 26.68, 0.75526, 36, 48.93, 14.93, 0.00017, 37, 27.52, 15.03, 0.02002, 38, 6.05, 15.03, 0.22455, 4, 31, 51.11, 21.17, + 0.52586, 36, 43.41, 14.95, 0.00082, 37, 22, 15.06, 0.07106, 38, 0.53, 15.06, 0.40226, 4, 31, 50.95, 15.93, 0.44455, 36, 38.16, 14.84, 0.00273, 37, 16.76, 14.94, 0.1436, 38, -4.72, + 14.94, 0.40912, 4, 31, 50.92, 10.61, 0.40864, 36, 32.85, 14.59, 0.0088, 37, 11.45, 14.7, 0.23945, 38, -10.03, 14.7, 0.34311, 4, 31, 69.38, -38.1, 0.52059, 36, -14.82, -6.4, 0.45917, + 37, -36.22, -6.3, 0.02022, 38, -57.7, -6.3, 1e-05, 4, 31, 69.44, -34.82, 0.37517, 36, -11.54, -6.29, 0.58803, 37, -32.95, -6.19, 0.03676, 38, -54.42, -6.19, 4e-05, 4, 31, 69.57, + -31.13, 0.31655, 36, -7.85, -6.23, 0.62281, 37, -29.26, -6.13, 0.06054, 38, -50.73, -6.13, 0.00011, 4, 31, 69.74, -27.7, 0.25662, 36, -4.41, -6.22, 0.64624, 37, -25.82, -6.11, + 0.09684, 38, -47.29, -6.11, 0.0003, 4, 31, 69.8, -23.9, 0.20542, 36, -0.61, -6.08, 0.64718, 37, -22.02, -5.97, 0.14662, 38, -43.49, -5.97, 0.00077, 4, 31, 69.96, -20.88, 0.16774, 36, + 2.4, -6.08, 0.62093, 37, -19, -5.97, 0.20946, 38, -40.48, -5.97, 0.00187, 4, 31, 70.09, -17.89, 0.14406, 36, 5.4, -6.05, 0.56885, 37, -16, -5.95, 0.28288, 38, -37.48, -5.95, 0.00421, + 4, 31, 70.25, -15.09, 0.13169, 36, 8.2, -6.07, 0.49722, 37, -13.21, -5.96, 0.36227, 38, -34.68, -5.96, 0.00882, 4, 31, 70.5, -11.95, 0.12708, 36, 11.36, -6.14, 0.41453, 37, -10.05, + -6.04, 0.44117, 38, -31.52, -6.04, 0.01722, 4, 31, 70.58, -9.33, 0.12668, 36, 13.97, -6.1, 0.32958, 37, -7.43, -5.99, 0.51233, 38, -28.91, -5.99, 0.03141, 4, 31, 70.75, -6.95, + 0.12812, 36, 16.36, -6.14, 0.24965, 37, -5.05, -6.03, 0.56851, 38, -26.52, -6.03, 0.05372, 4, 31, 71, -4.39, 0.12979, 36, 18.93, -6.25, 0.1799, 37, -2.47, -6.14, 0.60387, 38, -23.95, + -6.14, 0.08644, 4, 31, 71.07, -1.61, 0.13105, 36, 21.71, -6.18, 0.12302, 37, 0.3, -6.07, 0.61461, 38, -21.17, -6.07, 0.13132, 4, 31, 71.18, 1.28, 0.13159, 36, 24.6, -6.14, 0.07962, + 37, 3.19, -6.03, 0.5998, 38, -18.28, -6.03, 0.18899, 4, 31, 71.31, 3.85, 0.13189, 36, 27.17, -6.13, 0.04862, 37, 5.76, -6.02, 0.56113, 38, -15.71, -6.02, 0.25837, 4, 31, 71.51, 6.02, + 0.13282, 36, 29.35, -6.21, 0.02792, 37, 7.95, -6.1, 0.50297, 38, -13.53, -6.1, 0.33629, 4, 31, 71.56, 8.85, 0.13637, 36, 32.18, -6.12, 0.01503, 37, 10.77, -6.01, 0.43134, 38, -10.7, + -6.01, 0.41726, 4, 31, 71.75, 11.39, 0.14539, 36, 34.72, -6.17, 0.00757, 37, 13.32, -6.07, 0.35328, 38, -8.16, -6.07, 0.49376, 4, 31, 71.87, 14.39, 0.16393, 36, 37.73, -6.13, + 0.00355, 37, 16.32, -6.03, 0.27561, 38, -5.15, -6.03, 0.55691, 4, 31, 72.16, 17.13, 0.19585, 36, 40.48, -6.28, 0.00155, 37, 19.08, -6.18, 0.20422, 38, -2.4, -6.18, 0.59837, 4, 31, + 72.25, 19.76, 0.24372, 36, 43.11, -6.23, 0.00063, 37, 21.71, -6.13, 0.14329, 38, 0.23, -6.13, 0.61235, 4, 31, 72.47, 23.82, 0.30631, 36, 47.17, -6.24, 0.00024, 37, 25.77, -6.14, + 0.09501, 38, 4.29, -6.14, 0.59844, 4, 31, 72.61, 28.41, 0.3775, 36, 51.77, -6.14, 9e-05, 37, 30.37, -6.03, 0.05972, 38, 8.89, -6.03, 0.5627, 4, 31, 72.88, 31.77, 0.44548, 36, 55.14, + -6.23, 3e-05, 37, 33.74, -6.13, 0.03652, 38, 12.26, -6.13, 0.51797, 4, 31, 73.38, 35.45, 0.56131, 36, 58.84, -6.53, 1e-05, 37, 37.44, -6.43, 0.02128, 38, 15.96, -6.43, 0.41739 + ], + "hull": 44, + "edges": [ + 78, 76, 86, 0, 78, 80, 80, 82, 82, 84, 84, 86, 0, 94, 76, 96, 62, 64, 74, 76, 102, 96, 74, 102, 104, 90, 106, 98, 108, 88, 110, 100, 112, 92, 114, 94, 2, 0, 114, 2, 72, 74, 116, 102, + 72, 116, 118, 104, 120, 106, 122, 108, 124, 110, 126, 112, 128, 114, 4, 2, 128, 4, 70, 72, 130, 116, 70, 130, 132, 118, 134, 120, 136, 122, 138, 124, 140, 126, 142, 128, 8, 6, 6, 4, + 142, 6, 68, 70, 144, 130, 68, 144, 146, 132, 148, 134, 150, 136, 152, 138, 154, 140, 156, 142, 156, 8, 8, 10, 10, 12, 12, 158, 158, 156, 10, 158, 160, 154, 162, 152, 164, 150, 166, + 148, 168, 146, 170, 144, 64, 66, 66, 68, 170, 66, 82, 172, 172, 88, 98, 172, 172, 100, 80, 174, 174, 90, 96, 174, 84, 176, 176, 92, 94, 176, 90, 178, 178, 96, 102, 180, 180, 104, + 178, 180, 180, 182, 182, 184, 184, 186, 186, 188, 90, 190, 190, 98, 104, 192, 192, 106, 190, 192, 192, 194, 194, 196, 196, 198, 198, 200, 88, 202, 202, 98, 106, 204, 204, 108, 202, + 204, 204, 206, 206, 208, 208, 210, 210, 212, 88, 214, 214, 100, 108, 216, 216, 110, 214, 216, 216, 218, 218, 220, 220, 222, 222, 224, 92, 226, 226, 100, 110, 228, 228, 112, 226, 228, + 228, 230, 230, 232, 232, 234, 234, 236, 92, 238, 238, 94, 112, 240, 240, 114, 238, 240, 240, 242, 242, 244, 244, 246, 246, 248, 12, 14, 170, 64, 116, 250, 250, 182, 130, 252, 252, + 184, 250, 252, 144, 254, 254, 186, 252, 254, 170, 256, 256, 188, 254, 256, 58, 60, 60, 62, 118, 258, 258, 182, 132, 260, 260, 184, 258, 260, 146, 262, 262, 186, 260, 262, 168, 264, + 264, 188, 262, 264, 54, 56, 56, 58, 50, 52, 52, 54, 168, 266, 266, 200, 146, 268, 268, 198, 266, 268, 132, 270, 270, 196, 268, 270, 118, 272, 272, 194, 270, 272, 120, 274, 274, 194, + 134, 276, 276, 196, 274, 276, 148, 278, 278, 198, 276, 278, 166, 280, 280, 200, 278, 280, 46, 48, 48, 50, 42, 44, 44, 46, 166, 282, 282, 212, 148, 284, 284, 210, 282, 284, 134, 286, + 286, 208, 284, 286, 120, 288, 288, 206, 286, 288, 122, 290, 290, 206, 136, 292, 292, 208, 290, 292, 150, 294, 294, 210, 292, 294, 164, 296, 296, 212, 294, 296, 38, 40, 40, 42, 34, + 36, 36, 38, 164, 298, 298, 224, 150, 300, 300, 222, 298, 300, 136, 302, 302, 220, 300, 302, 122, 304, 304, 218, 302, 304, 124, 306, 306, 218, 138, 308, 308, 220, 306, 308, 152, 310, + 310, 222, 308, 310, 162, 312, 312, 224, 310, 312, 30, 32, 32, 34, 26, 28, 28, 30, 162, 314, 314, 236, 22, 24, 24, 26, 160, 316, 316, 236, 18, 20, 20, 22, 160, 318, 318, 248, 14, 16, + 16, 18, 158, 320, 320, 248, 156, 322, 322, 246, 320, 322, 154, 324, 324, 246, 318, 324, 154, 326, 326, 234, 316, 326, 152, 328, 328, 234, 314, 328, 138, 330, 330, 232, 328, 330, 140, + 332, 332, 232, 326, 332, 140, 334, 334, 244, 324, 334, 142, 336, 336, 244, 322, 336, 128, 338, 338, 242, 336, 338, 126, 340, 340, 242, 334, 340, 126, 342, 342, 230, 332, 342, 124, + 344, 344, 230, 330, 344, 62, 346, 346, 170, 60, 348, 348, 256, 346, 348, 58, 350, 350, 188, 348, 350, 56, 352, 352, 264, 350, 352, 54, 354, 354, 168, 352, 354, 52, 356, 356, 266, + 354, 356, 50, 358, 358, 200, 356, 358, 48, 360, 360, 280, 358, 360, 46, 362, 362, 166, 360, 362, 44, 364, 364, 282, 362, 364, 42, 366, 366, 212, 364, 366, 40, 368, 368, 296, 366, + 368, 38, 370, 370, 164, 368, 370, 36, 372, 372, 298, 370, 372, 34, 374, 374, 224, 372, 374, 32, 376, 376, 312, 374, 376, 30, 378, 378, 162, 376, 378, 28, 380, 380, 314, 378, 380, 26, + 382, 382, 236, 380, 382, 24, 384, 384, 316, 382, 384, 22, 386, 386, 160, 384, 386, 20, 388, 388, 318, 386, 388, 18, 390, 390, 248, 388, 390, 16, 392, 392, 320, 390, 392, 14, 394, + 394, 158, 392, 394 + ], + "width": 82.3529411764706, + "height": 72.94117647058823, + "path": "summer-a-lv2.ear-right-bubble", + "x": 0.32352941176470296, + "y": 0.529411764705884 + } + }, + "ear-right-bubble-02": { + "ear-right-bubble": { + "type": "mesh", + "uvs": [ + 0.93928, 0.51035, 0.95558, 0.60687, 0.96791, 0.67987, 0.98006, 0.75177, 1, 0.86979, 1, 0.93047, 1, 1, 0.9567, 1, 0.9208, 1, 0.88771, 1, 0.83969, 1, 0.79967, 1, 0.76574, 1, 0.73418, + 1, 0.69508, 1, 0.6661, 1, 0.6319, 1, 0.6046, 1, 0.57454, 1, 0.53755, 1, 0.50387, 1, 0.47341, 1, 0.44466, 1, 0.41233, 1, 0.37317, 1, 0.33787, 1, 0.30333, 1, 0.2648, 1, 0.21937, 1, + 0.17434, 1, 0.12959, 1, 0.08769, 1, 0, 1, 0.02085, 0.93004, 0.04055, 0.86394, 0.06626, 0.77764, 0.08854, 0.70287, 0.11527, 0.61317, 0.13788, 0.53731, 0.35753, 0, 0.43128, 0, 0.52161, + 0, 0.60662, 0, 0.67954, 0, 0.54109, 0.53632, 0.30907, 0.53689, 0.75362, 0.52246, 0.84707, 0.51636, 0.2081, 0.53714, 0.42115, 0.53662, 0.64269, 0.52969, 0.1892, 0.6098, 0.3018, + 0.61294, 0.41972, 0.61185, 0.54053, 0.60957, 0.64648, 0.60579, 0.76151, 0.60426, 0.87262, 0.59717, 0.16806, 0.69109, 0.29497, 0.68444, 0.41838, 0.68224, 0.54, 0.67846, 0.65011, + 0.67878, 0.7681, 0.67261, 0.89666, 0.6732, 0.14733, 0.77075, 0.28705, 0.76725, 0.41688, 0.761, 0.53942, 0.75466, 0.6538, 0.7529, 0.7757, 0.75146, 0.91933, 0.74487, 0.12337, 0.86287, + 0.2782, 0.85982, 0.4151, 0.85429, 0.53871, 0.84818, 0.65852, 0.84778, 0.7847, 0.84476, 0.95379, 0.85385, 0.97627, 0.92496, 0.79208, 0.9213, 0.66236, 0.9248, 0.5381, 0.92796, 0.41375, + 0.92539, 0.2717, 0.9278, 0.10571, 0.93074, 0.53197, 0.28531, 0.39415, 0.16313, 0.65961, 0.18832, 0.25473, 0.53703, 0.24202, 0.61127, 0.22911, 0.68789, 0.21379, 0.76908, 0.19729, + 0.86141, 0.18704, 0.9293, 0.36352, 0.53676, 0.36013, 0.6124, 0.35748, 0.68332, 0.35288, 0.76408, 0.34802, 0.857, 0.34383, 0.92658, 0.48024, 0.53647, 0.47847, 0.61074, 0.47433, + 0.6805, 0.47563, 0.75796, 0.47402, 0.85138, 0.47337, 0.92662, 0.58955, 0.53316, 0.59344, 0.60768, 0.59605, 0.67863, 0.5961, 0.75379, 0.60032, 0.84797, 0.60296, 0.92631, 0.69391, + 0.52635, 0.69915, 0.60509, 0.70691, 0.67581, 0.71206, 0.75221, 0.71954, 0.84632, 0.72813, 0.92303, 0.80125, 0.51935, 0.81428, 0.60089, 0.8348, 0.67292, 0.84793, 0.74814, 0.87862, + 0.84981, 0.89305, 0.92331, 0.19669, 0.68959, 0.17782, 0.76999, 0.1594, 0.86216, 0.1429, 0.93008, 0.26012, 0.68627, 0.25017, 0.76817, 0.23685, 0.86063, 0.22589, 0.92861, 0.30659, + 0.92721, 0.3131, 0.85841, 0.31569, 0.76587, 0.32231, 0.68395, 0.38717, 0.68279, 0.38553, 0.76251, 0.38068, 0.85568, 0.37648, 0.92602, 0.44462, 0.92603, 0.44322, 0.8529, 0.44458, + 0.75957, 0.44621, 0.68137, 0.50711, 0.67948, 0.50646, 0.75636, 0.50582, 0.84981, 0.50482, 0.92727, 0.57134, 0.92712, 0.5687, 0.84808, 0.56865, 0.75421, 0.5654, 0.67854, 0.62192, + 0.6787, 0.6236, 0.75336, 0.62525, 0.84789, 0.62839, 0.92567, 0.69427, 0.92394, 0.76244, 0.9221, 0.84047, 0.92226, 0.93306, 0.9241, 0.91732, 0.85189, 0.82617, 0.84699, 0.75013, + 0.84559, 0.6863, 0.84711, 0.68017, 0.75259, 0.74166, 0.75186, 0.80979, 0.74989, 0.88285, 0.74654, 0.86581, 0.67306, 0.79931, 0.67276, 0.73613, 0.67429, 0.67214, 0.67763, 0.09776, + 0.96131, 0.13724, 0.95982, 0.1817, 0.95902, 0.22313, 0.9588, 0.26892, 0.95695, 0.30526, 0.95692, 0.34139, 0.95661, 0.3751, 0.95678, 0.41313, 0.95785, 0.44464, 0.95718, 0.47339, + 0.95772, 0.5044, 0.95925, 0.53787, 0.95826, 0.57268, 0.95774, 0.60366, 0.95762, 0.62995, 0.95872, 0.66398, 0.95747, 0.69464, 0.9582, 0.73085, 0.95766, 0.76403, 0.95969, 0.79572, + 0.95904, 0.84011, 0.95843, 0.89075, 0.95631, 0.92774, 0.95702, 0.96706, 0.96028 + ], + "triangles": [ + 8, 196, 7, 9, 195, 8, 8, 195, 196, 10, 194, 9, 9, 194, 195, 10, 11, 194, 12, 193, 11, 11, 193, 194, 13, 192, 12, 12, 192, 193, 14, 191, 13, 13, 191, 192, 15, 190, 14, 14, 190, 191, + 15, 189, 190, 191, 158, 192, 192, 80, 193, 192, 158, 80, 194, 193, 159, 194, 159, 195, 159, 193, 80, 189, 157, 190, 190, 118, 191, 190, 157, 118, 191, 118, 158, 189, 81, 157, 195, + 124, 196, 196, 124, 160, 195, 159, 124, 81, 164, 157, 81, 76, 164, 157, 117, 118, 157, 164, 117, 159, 123, 124, 124, 123, 161, 118, 163, 158, 118, 117, 163, 80, 162, 159, 159, 162, + 123, 158, 77, 80, 158, 163, 77, 80, 77, 162, 162, 122, 123, 76, 165, 164, 76, 69, 165, 164, 116, 117, 164, 165, 116, 77, 167, 162, 117, 166, 163, 117, 116, 166, 163, 70, 77, 163, + 166, 70, 77, 70, 167, 165, 115, 116, 116, 171, 166, 166, 63, 70, 146, 103, 145, 68, 61, 152, 68, 145, 61, 151, 152, 109, 110, 153, 154, 143, 144, 104, 16, 189, 15, 17, 188, 16, 16, + 188, 189, 18, 187, 17, 17, 187, 188, 18, 19, 186, 19, 185, 186, 18, 186, 187, 20, 184, 19, 19, 184, 185, 20, 21, 184, 22, 183, 21, 21, 183, 184, 23, 181, 22, 181, 182, 22, 22, 182, + 183, 184, 148, 185, 184, 183, 148, 187, 156, 188, 188, 81, 189, 188, 156, 81, 185, 149, 186, 185, 82, 149, 185, 148, 82, 182, 83, 141, 182, 181, 83, 186, 112, 187, 186, 149, 112, + 182, 106, 183, 183, 106, 148, 187, 112, 156, 182, 141, 106, 150, 149, 82, 147, 75, 82, 82, 148, 147, 82, 75, 150, 106, 105, 148, 148, 105, 147, 149, 111, 112, 149, 150, 111, 105, + 106, 142, 112, 155, 156, 112, 111, 155, 83, 74, 141, 74, 142, 141, 106, 141, 142, 156, 76, 81, 156, 155, 76, 74, 67, 142, 142, 143, 105, 142, 67, 143, 105, 104, 147, 105, 143, 104, + 147, 146, 75, 147, 104, 146, 75, 68, 150, 75, 146, 68, 68, 151, 150, 150, 110, 111, 150, 151, 110, 111, 154, 155, 111, 110, 154, 155, 69, 76, 155, 154, 69, 104, 103, 146, 146, 145, + 68, 68, 152, 151, 151, 109, 110, 24, 180, 23, 25, 179, 24, 24, 179, 180, 26, 178, 25, 25, 178, 179, 27, 177, 26, 26, 177, 178, 28, 176, 27, 27, 176, 177, 29, 175, 28, 28, 175, 176, + 30, 174, 29, 29, 174, 175, 31, 173, 30, 30, 173, 174, 174, 128, 175, 174, 85, 128, 175, 94, 176, 175, 128, 94, 176, 132, 177, 176, 94, 132, 180, 140, 181, 177, 84, 178, 177, 132, 84, + 178, 133, 179, 178, 84, 133, 179, 100, 180, 180, 100, 140, 179, 133, 100, 128, 127, 94, 94, 93, 132, 94, 127, 93, 132, 131, 84, 132, 93, 131, 84, 73, 133, 84, 131, 73, 133, 134, 100, + 133, 73, 134, 100, 99, 140, 100, 134, 99, 140, 139, 83, 140, 99, 139, 93, 92, 131, 131, 130, 73, 131, 92, 130, 73, 66, 134, 73, 130, 66, 134, 135, 99, 134, 66, 135, 99, 98, 139, 99, + 135, 98, 139, 138, 74, 139, 98, 138, 74, 138, 67, 130, 129, 66, 66, 59, 135, 135, 136, 98, 135, 59, 136, 98, 97, 138, 98, 136, 97, 138, 137, 67, 23, 180, 181, 181, 140, 83, 83, 139, + 74, 128, 72, 127, 127, 126, 93, 93, 126, 92, 126, 125, 92, 85, 34, 72, 168, 64, 71, 168, 169, 64, 65, 58, 126, 126, 58, 125, 59, 52, 136, 69, 172, 165, 165, 172, 115, 116, 115, 171, + 154, 62, 69, 120, 170, 56, 65, 36, 58, 58, 51, 125, 37, 38, 51, 51, 48, 90, 51, 38, 48, 78, 3, 4, 64, 169, 57, 121, 120, 57, 120, 47, 57, 67, 137, 60, 143, 60, 144, 144, 103, 104, + 110, 109, 153, 154, 153, 62, 69, 62, 172, 97, 136, 96, 97, 96, 137, 96, 136, 52, 60, 137, 53, 60, 53, 144, 53, 137, 96, 103, 144, 102, 103, 102, 145, 102, 144, 53, 61, 145, 54, 172, + 62, 55, 55, 62, 153, 152, 108, 109, 55, 153, 108, 153, 109, 108, 61, 54, 152, 152, 54, 108, 54, 145, 102, 172, 114, 115, 172, 55, 114, 115, 114, 171, 171, 114, 56, 90, 89, 52, 52, + 45, 96, 52, 89, 45, 96, 95, 53, 96, 45, 95, 53, 49, 102, 53, 95, 49, 90, 48, 89, 102, 101, 54, 102, 49, 101, 54, 44, 108, 44, 107, 108, 54, 101, 44, 55, 108, 50, 108, 107, 50, 55, + 113, 114, 55, 50, 113, 114, 46, 56, 114, 113, 46, 56, 119, 120, 56, 46, 119, 120, 119, 47, 57, 47, 0, 87, 48, 38, 87, 89, 48, 87, 45, 89, 87, 95, 45, 49, 95, 86, 87, 38, 39, 101, 49, + 86, 87, 86, 95, 101, 86, 44, 41, 87, 40, 87, 41, 86, 44, 86, 107, 107, 86, 50, 50, 86, 113, 46, 113, 88, 119, 46, 88, 47, 119, 88, 86, 88, 113, 47, 88, 0, 0, 88, 43, 88, 41, 42, 88, + 86, 41, 88, 42, 43, 87, 39, 40, 57, 0, 1, 1, 64, 57, 64, 1, 2, 71, 2, 3, 58, 37, 51, 36, 37, 58, 91, 51, 90, 35, 36, 65, 125, 51, 91, 34, 35, 72, 72, 35, 65, 33, 34, 85, 169, 121, + 57, 171, 56, 63, 170, 63, 56, 138, 97, 137, 67, 60, 143, 59, 129, 52, 52, 129, 90, 71, 64, 2, 3, 78, 71, 78, 161, 71, 91, 90, 129, 170, 120, 121, 122, 121, 169, 161, 168, 71, 92, + 125, 91, 72, 65, 127, 127, 65, 126, 122, 169, 168, 92, 91, 130, 130, 91, 129, 123, 122, 168, 166, 171, 63, 70, 170, 167, 70, 63, 170, 167, 121, 122, 167, 170, 121, 66, 129, 59, 85, + 32, 33, 173, 85, 174, 31, 32, 173, 173, 32, 85, 85, 72, 128, 6, 197, 79, 162, 167, 122, 7, 197, 6, 160, 161, 78, 197, 160, 79, 196, 160, 197, 7, 196, 197, 124, 161, 160, 160, 78, 79, + 123, 168, 161, 6, 79, 5, 79, 78, 4, 79, 4, 5 + ], + "vertices": [ + 1, 42, 41.12, 33.33, 1, 1, 42, 48.32, 34.31, 1, 1, 42, 53.77, 35.04, 1, 1, 42, 60, 36.01, 1, 4, 42, 68.02, 38.37, 0.9295, 43, 61.47, -1.03, 1e-05, 44, 40.07, -0.92, 0.00266, 45, + 18.6, -0.92, 0.06784, 4, 42, 72.27, 39, 0.79905, 43, 62.32, -5.24, 1e-05, 44, 40.92, -5.13, 0.00721, 45, 19.44, -5.13, 0.19373, 4, 42, 78.35, 40.51, 0.74731, 43, 64.15, -11.23, 0, + 44, 42.75, -11.12, 0.00973, 45, 21.27, -11.12, 0.24296, 4, 42, 77.99, 36.05, 0.54785, 43, 59.68, -11.11, 1e-05, 44, 38.27, -11, 0.02168, 45, 16.8, -11, 0.43046, 4, 42, 77.69, 32.35, + 0.43038, 43, 55.96, -11, 3e-05, 44, 34.56, -10.9, 0.03847, 45, 13.08, -10.9, 0.53112, 4, 42, 77.42, 28.93, 0.36035, 43, 52.54, -10.91, 9e-05, 44, 31.14, -10.81, 0.06275, 45, 9.66, + -10.81, 0.57681, 4, 42, 77.02, 23.98, 0.2889, 43, 47.58, -10.78, 0.00026, 44, 26.17, -10.67, 0.09917, 45, 4.7, -10.67, 0.61167, 4, 42, 76.69, 19.85, 0.22591, 43, 43.44, -10.66, + 0.0007, 44, 22.03, -10.56, 0.14876, 45, 0.56, -10.56, 0.62463, 4, 42, 76.55, 17.04, 0.17724, 43, 40.62, -10.66, 0.0017, 44, 19.22, -10.56, 0.21115, 45, -2.26, -10.56, 0.60991, 4, 42, + 76.41, 14.43, 0.14418, 43, 38, -10.66, 0.00385, 44, 16.6, -10.56, 0.28407, 45, -4.88, -10.56, 0.5679, 4, 42, 76.24, 11.19, 0.12448, 43, 34.76, -10.66, 0.00813, 44, 13.35, -10.56, + 0.36326, 45, -8.12, -10.56, 0.50413, 4, 42, 76.11, 8.78, 0.11438, 43, 32.35, -10.66, 0.016, 44, 10.95, -10.56, 0.44276, 45, -10.53, -10.56, 0.42686, 4, 42, 75.96, 5.95, 0.11006, 43, + 29.51, -10.66, 0.02948, 44, 8.11, -10.56, 0.51561, 45, -13.37, -10.56, 0.34486, 4, 42, 75.84, 3.69, 0.10858, 43, 27.25, -10.66, 0.05095, 44, 5.84, -10.56, 0.57474, 45, -15.63, + -10.56, 0.26573, 4, 42, 75.71, 1.19, 0.10802, 43, 24.75, -10.66, 0.08291, 44, 3.35, -10.56, 0.614, 45, -18.13, -10.56, 0.19506, 4, 42, 75.55, -1.87, 0.1074, 43, 21.68, -10.66, + 0.12742, 44, 0.28, -10.56, 0.62906, 45, -21.2, -10.56, 0.13612, 4, 42, 75.4, -4.66, 0.10634, 43, 18.89, -10.66, 0.18549, 44, -2.52, -10.56, 0.61812, 45, -23.99, -10.56, 0.09006, 4, + 42, 75.27, -7.19, 0.10502, 43, 16.36, -10.66, 0.25646, 44, -5.05, -10.56, 0.58221, 45, -26.52, -10.56, 0.05631, 4, 42, 75.14, -9.57, 0.10419, 43, 13.97, -10.66, 0.33753, 44, -7.43, + -10.56, 0.52513, 45, -28.91, -10.56, 0.03316, 4, 42, 75, -12.25, 0.10536, 43, 11.29, -10.66, 0.42349, 44, -10.12, -10.56, 0.45282, 45, -31.59, -10.56, 0.01833, 4, 42, 74.83, -15.5, + 0.11098, 43, 8.04, -10.66, 0.50701, 44, -13.37, -10.56, 0.37254, 45, -34.84, -10.56, 0.00948, 4, 42, 74.68, -18.42, 0.12436, 43, 5.11, -10.66, 0.57939, 44, -16.3, -10.56, 0.29168, + 45, -37.77, -10.56, 0.00457, 4, 42, 74.53, -21.28, 0.149, 43, 2.24, -10.66, 0.63222, 44, -19.16, -10.56, 0.21673, 45, -40.64, -10.56, 0.00205, 4, 42, 74.36, -24.48, 0.18726, 43, + -0.96, -10.66, 0.65948, 44, -22.36, -10.56, 0.15241, 45, -43.84, -10.56, 0.00085, 4, 42, 74.16, -28.24, 0.23866, 43, -4.73, -10.66, 0.65975, 44, -26.13, -10.56, 0.10126, 45, -47.61, + -10.56, 0.00033, 4, 42, 73.97, -31.98, 0.29871, 43, -8.46, -10.66, 0.63741, 44, -29.87, -10.56, 0.06376, 45, -51.34, -10.56, 0.00012, 4, 42, 73.77, -35.69, 0.35932, 43, -12.18, + -10.66, 0.60181, 44, -33.58, -10.56, 0.03884, 45, -55.06, -10.56, 4e-05, 4, 42, 73.59, -39.16, 0.49297, 43, -15.66, -10.66, 0.48586, 44, -37.06, -10.56, 0.02116, 45, -58.54, -10.56, + 1e-05, 4, 42, 73.2, -46.43, 0.66969, 43, -22.93, -10.66, 0.32512, 44, -44.34, -10.56, 0.00518, 45, -65.81, -10.56, 0, 4, 42, 68.13, -44.43, 0.73638, 43, -21.2, -5.49, 0.26049, 44, + -42.61, -5.38, 0.00313, 45, -64.08, -5.38, 0, 4, 42, 63.33, -42.54, 0.74288, 43, -19.57, -0.59, 0.25402, 44, -40.97, -0.49, 0.00309, 45, -62.45, -0.49, 1e-05, 2, 42, 57.06, -40.07, + 0.86, 43, -17.44, 5.79, 0.14, 2, 42, 51.63, -37.93, 0.87418, 43, -15.59, 11.32, 0.12582, 1, 42, 45.12, -35.37, 1, 1, 42, 39.61, -33.2, 1, 2, 42, 0.87, -12.9, 0.99965, 43, 6.74, + 63.34, 0.00035, 2, 42, 1.19, -6.79, 0.9998, 43, 12.86, 63.34, 0.0002, 3, 42, 1.58, 0.7, 0.99981, 43, 20.36, 63.34, 9e-05, 45, -22.52, 63.44, 0.0001, 3, 42, 1.95, 7.74, 0.99975, 43, + 27.41, 63.34, 1e-05, 45, -15.46, 63.44, 0.00024, 2, 42, 2.27, 13.79, 0.99954, 45, -9.41, 63.44, 0.00046, 4, 42, 41.3, 0.23, 0.88429, 43, 21.98, 23.65, 0.02526, 44, 0.57, 23.75, + 0.06552, 45, -20.9, 23.75, 0.02493, 1, 42, 40.33, -19.01, 1, 4, 42, 41.2, 17.9, 0.94373, 43, 39.62, 24.67, 0.00089, 44, 18.21, 24.78, 0.01419, 45, -3.26, 24.78, 0.04119, 1, 42, + 41.16, 25.66, 1, 1, 42, 39.91, -27.38, 1, 4, 42, 40.8, -9.72, 0.88619, 43, 12.02, 23.63, 0.05505, 44, -9.38, 23.73, 0.05102, 45, -30.86, 23.73, 0.00774, 4, 42, 41.25, 8.67, 0.89286, + 43, 30.41, 24.14, 0.00746, 44, 9, 24.24, 0.04877, 45, -12.47, 24.24, 0.05092, 1, 42, 45.19, -29.23, 1, 4, 42, 45.92, -19.91, 0.74343, 43, 2.11, 17.98, 0.19678, 44, -19.29, 18.08, + 0.05726, 45, -40.76, 18.08, 0.00254, 4, 42, 46.35, -10.13, 0.58833, 43, 11.9, 18.06, 0.20061, 44, -9.5, 18.16, 0.19026, 45, -30.98, 18.16, 0.0208, 4, 42, 46.71, -0.11, 0.58846, 43, + 21.93, 18.23, 0.08112, 44, 0.53, 18.33, 0.24909, 45, -20.95, 18.33, 0.08133, 4, 42, 46.89, 8.69, 0.59817, 43, 30.72, 18.51, 0.02026, 44, 9.32, 18.61, 0.18761, 45, -12.16, 18.61, + 0.19395, 4, 42, 47.28, 18.23, 0.66183, 43, 40.27, 18.62, 0.00346, 44, 18.87, 18.73, 0.07957, 45, -2.61, 18.73, 0.25514, 1, 42, 47.24, 27.47, 1, 4, 42, 51.11, -31.3, 0.84023, 43, + -8.99, 12.2, 0.15068, 44, -30.39, 12.3, 0.00899, 45, -51.87, 12.3, 0.0001, 4, 42, 51.17, -20.75, 0.48016, 43, 1.55, 12.69, 0.41733, 44, -19.86, 12.79, 0.10062, 45, -41.33, 12.79, + 0.0019, 4, 42, 51.55, -10.51, 0.42576, 43, 11.79, 12.85, 0.28082, 44, -9.61, 12.96, 0.27628, 45, -31.09, 12.96, 0.01714, 4, 42, 51.8, -0.42, 0.43345, 43, 21.89, 13.13, 0.09343, 44, + 0.48, 13.24, 0.37698, 45, -20.99, 13.24, 0.09613, 4, 42, 52.3, 8.71, 0.43708, 43, 31.02, 13.11, 0.01603, 44, 9.62, 13.21, 0.27127, 45, -11.86, 13.21, 0.27562, 4, 42, 52.36, 18.51, + 0.51068, 43, 40.82, 13.56, 0.00179, 44, 19.41, 13.67, 0.09933, 45, -2.06, 13.67, 0.3882, 4, 42, 52.97, 29.16, 0.94195, 43, 51.49, 13.52, 4e-05, 44, 30.08, 13.62, 0.00385, 45, 8.61, + 13.62, 0.05416, 4, 42, 56.91, -33.32, 0.72549, 43, -10.71, 6.3, 0.2621, 44, -32.11, 6.41, 0.01235, 45, -53.59, 6.41, 6e-05, 4, 42, 57.26, -21.73, 0.38729, 43, 0.89, 6.56, 0.4981, 44, + -20.51, 6.66, 0.11341, 45, -41.99, 6.66, 0.0012, 4, 42, 57.36, -10.94, 0.32692, 43, 11.67, 7.02, 0.3274, 44, -9.74, 7.13, 0.32983, 45, -31.21, 7.13, 0.01585, 4, 42, 57.43, -0.76, + 0.33677, 43, 21.84, 7.49, 0.10146, 44, 0.43, 7.6, 0.45593, 45, -21.04, 7.6, 0.10584, 4, 42, 57.8, 8.73, 0.33839, 43, 31.33, 7.62, 0.0144, 44, 9.93, 7.73, 0.32329, 45, -11.55, 7.73, + 0.32392, 4, 42, 58.53, 19.24, 0.42143, 43, 41.87, 7.44, 0.00109, 44, 20.47, 7.55, 0.11176, 45, -1.01, 7.55, 0.46572, 4, 42, 60.09, 31.38, 0.79569, 43, 54.07, 6.52, 5e-05, 44, 32.67, + 6.63, 0.01091, 45, 11.19, 6.63, 0.19335, 4, 42, 63.61, -35.67, 0.66085, 43, -12.7, -0.52, 0.32566, 44, -34.1, -0.41, 0.01346, 45, -55.58, -0.41, 3e-05, 4, 42, 64.06, -22.82, 0.31024, + 43, 0.16, -0.29, 0.56299, 44, -21.25, -0.19, 0.12589, 45, -42.72, -0.19, 0.00089, 4, 42, 64.25, -11.45, 0.24349, 43, 11.52, 0.12, 0.36477, 44, -9.89, 0.22, 0.37599, 45, -31.36, 0.22, + 0.01574, 4, 42, 64.34, -1.18, 0.2525, 43, 21.78, 0.57, 0.10936, 44, 0.37, 0.68, 0.52284, 45, -21.1, 0.68, 0.1153, 4, 42, 64.83, 8.75, 0.2544, 43, 31.72, 0.6, 0.01401, 44, 10.32, + 0.71, 0.36809, 45, -11.16, 0.71, 0.3635, 4, 42, 65.03, 19.51, 0.3466, 43, 42.48, 0.96, 0.00077, 44, 21.07, 1.07, 0.1237, 45, -0.4, 1.07, 0.52893, 4, 42, 66.57, 33.2, 0.69411, 43, + 56.23, 0.15, 3e-05, 44, 34.83, 0.26, 0.01435, 45, 13.35, 0.26, 0.29151, 4, 42, 71.92, 34.78, 0.61986, 43, 58.1, -5.11, 1e-05, 44, 36.69, -5.01, 0.01658, 45, 15.22, -5.01, 0.36355, 4, + 42, 70.84, 19.53, 0.28549, 43, 42.81, -4.84, 0.00065, 44, 21.4, -4.73, 0.13463, 45, -0.07, -4.73, 0.57924, 4, 42, 70.54, 8.77, 0.18483, 43, 32.04, -5.1, 0.01432, 44, 10.64, -4.99, + 0.40541, 45, -10.84, -4.99, 0.39544, 4, 42, 70.23, -1.55, 0.18141, 43, 21.73, -5.33, 0.11681, 44, 0.32, -5.23, 0.57764, 45, -21.15, -5.23, 0.12413, 4, 42, 69.5, -11.84, 0.17479, 43, + 11.41, -5.14, 0.39444, 44, -10, -5.04, 0.41447, 45, -31.47, -5.04, 0.0163, 4, 42, 69.05, -23.63, 0.24784, 43, -0.38, -5.32, 0.61396, 44, -21.79, -5.22, 0.13743, 45, -43.26, -5.22, + 0.00077, 4, 42, 68.55, -37.4, 0.59732, 43, -14.16, -5.54, 0.38768, 44, -35.56, -5.43, 0.01499, 45, -57.04, -5.43, 1e-05, 4, 42, 22.71, 0.45, 0.98403, 43, 21.22, 42.22, 0.00516, 44, + -0.19, 42.33, 0.00609, 45, -21.66, 42.33, 0.00473, 3, 42, 13.08, -10.5, 0.98457, 43, 9.78, 51.26, 0.01421, 44, -11.62, 51.37, 0.00123, 3, 42, 16.1, 11.4, 0.98807, 44, 10.41, 49.51, + 0.00101, 45, -11.07, 49.51, 0.01092, 1, 42, 40.1, -23.51, 1, 4, 42, 45.53, -24.85, 0.93122, 43, -2.85, 18.1, 0.05888, 44, -24.25, 18.21, 0.00959, 45, -45.73, 18.21, 0.0003, 4, 42, + 51.14, -26.22, 0.67882, 43, -3.92, 12.43, 0.287, 44, -25.32, 12.54, 0.03374, 45, -46.8, 12.54, 0.00045, 4, 42, 57.07, -27.81, 0.52353, 43, -5.19, 6.42, 0.4314, 44, -26.59, 6.53, + 0.04479, 45, -48.07, 6.53, 0.00029, 4, 42, 63.82, -29.53, 0.41464, 43, -6.56, -0.41, 0.53292, 44, -27.96, -0.3, 0.05226, 45, -49.44, -0.3, 0.00018, 4, 42, 68.8, -30.65, 0.35706, 43, + -7.41, -5.43, 0.58638, 44, -28.81, -5.33, 0.05644, 45, -50.29, -5.33, 0.00012, 4, 42, 40.56, -14.49, 0.88311, 43, 7.24, 23.62, 0.07338, 44, -14.17, 23.72, 0.03978, 45, -35.64, 23.72, + 0.00372, 4, 42, 46.13, -15.07, 0.62555, 43, 6.96, 18.02, 0.24007, 44, -14.45, 18.12, 0.1259, 45, -35.92, 18.12, 0.00848, 4, 42, 51.36, -15.56, 0.4342, 43, 6.74, 12.77, 0.37611, 44, + -14.67, 12.88, 0.18375, 45, -36.14, 12.88, 0.00595, 4, 42, 57.31, -16.26, 0.33684, 43, 6.35, 6.79, 0.44427, 44, -15.05, 6.9, 0.21425, 45, -36.53, 6.9, 0.00464, 4, 42, 64.16, -17.02, + 0.25537, 43, 5.95, -0.08, 0.49872, 44, -15.45, 0.02, 0.24179, 45, -36.93, 0.02, 0.00413, 4, 42, 69.28, -17.64, 0.18921, 43, 5.6, -5.23, 0.54119, 44, -15.8, -5.13, 0.26556, 45, + -37.28, -5.13, 0.00404, 4, 42, 41.05, -4.82, 0.83361, 43, 16.93, 23.64, 0.05679, 44, -4.48, 23.74, 0.08927, 45, -25.95, 23.74, 0.02033, 4, 42, 46.53, -5.25, 0.57797, 43, 16.78, + 18.14, 0.13938, 44, -4.63, 18.25, 0.23843, 45, -26.1, 18.25, 0.04422, 4, 42, 51.66, -5.87, 0.42696, 43, 16.43, 12.98, 0.17737, 44, -4.97, 13.08, 0.35156, 45, -26.45, 13.08, 0.04411, + 4, 42, 57.39, -6.06, 0.33132, 43, 16.54, 7.25, 0.20059, 44, -4.86, 7.35, 0.42277, 45, -26.34, 7.35, 0.04531, 4, 42, 64.29, -6.56, 0.24781, 43, 16.41, 0.33, 0.22055, 44, -4.99, 0.44, + 0.48389, 45, -26.47, 0.44, 0.04775, 4, 42, 69.85, -6.91, 0.17763, 43, 16.35, -5.23, 0.23735, 44, -5.05, -5.13, 0.53429, 45, -26.52, -5.13, 0.05074, 4, 42, 41.28, 4.25, 0.83746, 43, + 26, 23.88, 0.02009, 44, 4.59, 23.99, 0.08772, 45, -16.88, 23.99, 0.05473, 4, 42, 46.8, 4.29, 0.58276, 43, 26.32, 18.37, 0.04346, 44, 4.92, 18.47, 0.23645, 45, -16.56, 18.47, 0.13732, + 4, 42, 52.06, 4.23, 0.43226, 43, 26.54, 13.12, 0.04191, 44, 5.13, 13.22, 0.34769, 45, -16.34, 13.22, 0.17814, 4, 42, 57.61, 3.94, 0.33656, 43, 26.54, 7.56, 0.0422, 44, 5.14, 7.66, + 0.41771, 45, -16.34, 7.66, 0.20353, 4, 42, 64.59, 3.92, 0.25264, 43, 26.89, 0.59, 0.04384, 44, 5.49, 0.69, 0.47782, 45, -15.99, 0.69, 0.2257, 4, 42, 70.39, 3.84, 0.18189, 43, 27.11, + -5.21, 0.04615, 44, 5.71, -5.11, 0.52741, 45, -15.77, -5.11, 0.24456, 4, 42, 41.23, 12.93, 0.8608, 43, 34.66, 24.39, 0.00457, 44, 13.26, 24.49, 0.04889, 45, -8.22, 24.49, 0.08574, 4, + 42, 47.07, 13.06, 0.60926, 43, 35.09, 18.56, 0.00894, 44, 13.69, 18.67, 0.13479, 45, -7.79, 18.67, 0.247, 4, 42, 52.33, 13.43, 0.45377, 43, 35.74, 13.33, 0.00554, 44, 14.33, 13.43, + 0.18027, 45, -7.14, 13.43, 0.36041, 4, 42, 58.15, 13.75, 0.35749, 43, 36.37, 7.54, 0.00417, 44, 14.96, 7.64, 0.20976, 45, -6.51, 7.64, 0.42858, 4, 42, 64.93, 13.95, 0.27612, 43, + 36.92, 0.78, 0.00359, 44, 15.52, 0.88, 0.23625, 45, -5.96, 0.88, 0.48404, 4, 42, 70.69, 14.22, 0.20954, 43, 37.5, -4.97, 0.00344, 44, 16.1, -4.86, 0.25903, 45, -5.38, -4.86, 0.52799, + 1, 42, 41.18, 21.86, 1, 4, 42, 47.26, 22.62, 0.82489, 43, 44.65, 18.87, 0.00083, 44, 23.25, 18.98, 0.0268, 45, 1.77, 18.98, 0.14748, 4, 42, 52.68, 24.04, 0.64773, 43, 46.35, 13.54, + 0.00052, 44, 24.95, 13.65, 0.04091, 45, 3.47, 13.65, 0.31084, 4, 42, 59.31, 25.35, 0.53225, 43, 48.01, 6.98, 0.00029, 44, 26.6, 7.09, 0.04857, 45, 5.13, 7.09, 0.41889, 4, 42, 65.88, + 27.11, 0.46955, 43, 50.12, 0.51, 0.00016, 44, 28.71, 0.62, 0.05201, 45, 7.24, 0.62, 0.47828, 4, 42, 71.43, 27.89, 0.41589, 43, 51.19, -4.99, 0.0001, 44, 29.78, -4.88, 0.05591, 45, + 8.31, -4.88, 0.5281, 4, 42, 51.12, -28.92, 0.72647, 43, -6.61, 12.31, 0.25381, 44, -28.01, 12.41, 0.01954, 45, -49.49, 12.41, 0.00018, 4, 42, 56.98, -30.79, 0.64422, 43, -8.18, 6.36, + 0.33291, 44, -29.58, 6.46, 0.02275, 45, -51.06, 6.46, 0.00011, 4, 42, 63.71, -32.68, 0.55448, 43, -9.7, -0.46, 0.41902, 44, -31.11, -0.36, 0.02643, 45, -52.58, -0.36, 7e-05, 4, 42, + 68.66, -34.31, 0.44397, 43, -11.07, -5.49, 0.52396, 44, -32.48, -5.38, 0.03202, 45, -53.95, -5.38, 4e-05, 4, 42, 51.16, -23.65, 0.5094, 43, -1.35, 12.55, 0.4213, 44, -22.75, 12.66, + 0.06847, 45, -44.22, 12.66, 0.00083, 4, 42, 57.16, -24.79, 0.42549, 43, -2.17, 6.49, 0.49746, 44, -23.57, 6.6, 0.07648, 45, -45.05, 6.6, 0.00057, 4, 42, 63.94, -26.25, 0.35688, 43, + -3.28, -0.35, 0.55926, 44, -24.68, -0.25, 0.08347, 45, -46.16, -0.25, 0.00039, 4, 42, 68.91, -27.43, 0.29772, 43, -4.19, -5.38, 0.61133, 44, -25.59, -5.28, 0.09064, 45, -47.07, + -5.28, 0.00031, 4, 42, 69.16, -20.73, 0.21136, 43, 2.51, -5.28, 0.59029, 44, -18.89, -5.17, 0.19654, 45, -40.37, -5.17, 0.00182, 4, 42, 64.11, -19.92, 0.275, 43, 3.05, -0.19, + 0.54348, 44, -18.35, -0.08, 0.17958, 45, -39.83, -0.08, 0.00194, 4, 42, 57.28, -19.35, 0.35002, 43, 3.27, 6.66, 0.48643, 44, -18.14, 6.77, 0.16123, 45, -39.61, 6.77, 0.00232, 4, 42, + 51.26, -18.48, 0.41881, 43, 3.82, 12.72, 0.43213, 44, -17.59, 12.83, 0.1461, 45, -39.06, 12.83, 0.00296, 4, 42, 51.45, -13.1, 0.39313, 43, 9.2, 12.81, 0.35299, 44, -12.2, 12.91, + 0.24433, 45, -33.68, 12.91, 0.00955, 4, 42, 57.34, -13.55, 0.32258, 43, 9.06, 6.91, 0.39406, 44, -12.34, 7.02, 0.27473, 45, -33.82, 7.02, 0.00863, 4, 42, 64.2, -14.31, 0.24476, 43, + 8.66, 0.02, 0.43744, 44, -12.74, 0.12, 0.30953, 45, -34.22, 0.12, 0.00827, 4, 42, 69.38, -14.93, 0.17804, 43, 8.31, -5.19, 0.47328, 44, -13.09, -5.08, 0.3403, 45, -34.57, -5.08, + 0.00838, 4, 42, 69.68, -9.29, 0.17525, 43, 13.97, -5.19, 0.31355, 44, -7.44, -5.08, 0.48153, 45, -28.91, -5.08, 0.02968, 4, 42, 64.27, -9.12, 0.24396, 43, 13.85, 0.22, 0.29088, 44, + -7.55, 0.33, 0.43695, 45, -29.03, 0.33, 0.02821, 4, 42, 57.38, -8.64, 0.32275, 43, 13.97, 7.13, 0.26435, 44, -7.44, 7.23, 0.38552, 45, -28.91, 7.23, 0.02739, 4, 42, 51.61, -8.2, + 0.39269, 43, 14.1, 12.92, 0.24007, 44, -7.3, 13.02, 0.33961, 45, -28.78, 13.02, 0.02763, 4, 42, 51.73, -3.15, 0.39835, 43, 19.16, 13.05, 0.13664, 44, -2.25, 13.16, 0.3972, 45, + -23.72, 13.16, 0.06781, 4, 42, 57.41, -3.5, 0.32898, 43, 19.1, 7.37, 0.14701, 44, -2.3, 7.47, 0.45281, 45, -23.78, 7.47, 0.07119, 4, 42, 64.31, -3.92, 0.24968, 43, 19.05, 0.45, + 0.15947, 44, -2.36, 0.56, 0.51456, 45, -23.83, 0.56, 0.07629, 4, 42, 70.03, -4.3, 0.17972, 43, 18.96, -5.28, 0.17094, 44, -2.44, -5.18, 0.56767, 45, -23.91, -5.18, 0.08167, 4, 42, + 70.31, 1.21, 0.18179, 43, 24.49, -5.27, 0.07557, 44, 3.08, -5.17, 0.56385, 45, -18.39, -5.17, 0.17879, 4, 42, 64.46, 1.3, 0.25204, 43, 24.27, 0.58, 0.07119, 44, 2.86, 0.68, 0.51118, + 45, -18.61, 0.68, 0.16559, 4, 42, 57.52, 1.66, 0.33157, 43, 24.26, 7.52, 0.0672, 44, 2.86, 7.63, 0.44995, 45, -18.62, 7.63, 0.15128, 4, 42, 51.92, 1.69, 0.40101, 43, 23.99, 13.13, + 0.06478, 44, 2.59, 13.23, 0.39483, 45, -18.89, 13.23, 0.13938, 4, 42, 52.17, 6.37, 0.401, 43, 28.68, 13.11, 0.0258, 44, 7.28, 13.22, 0.33427, 45, -14.2, 13.22, 0.23894, 4, 42, 57.7, + 6.22, 0.3309, 43, 28.82, 7.59, 0.02514, 44, 7.42, 7.69, 0.37908, 45, -14.06, 7.69, 0.26488, 4, 42, 64.69, 5.99, 0.25155, 43, 28.96, 0.59, 0.02548, 44, 7.56, 0.7, 0.4293, 45, -13.92, + 0.7, 0.29367, 4, 42, 70.45, 5.95, 0.18206, 43, 29.22, -5.16, 0.02652, 44, 7.82, -5.06, 0.47284, 45, -13.66, -5.06, 0.31858, 4, 42, 70.61, 11.41, 0.19245, 43, 34.69, -5.04, 0.00724, + 44, 13.29, -4.93, 0.3321, 45, -8.19, -4.93, 0.46821, 4, 42, 70.77, 17.07, 0.23948, 43, 40.35, -4.9, 0.00153, 44, 18.94, -4.79, 0.19195, 45, -2.53, -4.79, 0.56704, 4, 42, 71.13, + 23.54, 0.346, 43, 46.82, -4.91, 0.00026, 44, 25.42, -4.81, 0.08922, 45, 3.94, -4.81, 0.56452, 4, 42, 71.67, 31.21, 0.48407, 43, 54.51, -5.05, 4e-05, 44, 33.11, -4.94, 0.03358, 45, + 11.63, -4.94, 0.48231, 4, 42, 66.23, 30.24, 0.54501, 43, 53.26, 0.33, 7e-05, 44, 31.86, 0.43, 0.03077, 45, 10.38, 0.43, 0.42415, 4, 42, 65.41, 22.86, 0.40266, 43, 45.85, 0.77, + 0.00034, 44, 24.45, 0.87, 0.08247, 45, 2.97, 0.87, 0.51452, 4, 42, 64.98, 16.56, 0.30287, 43, 39.53, 0.86, 0.00168, 44, 18.13, 0.97, 0.17579, 45, -3.35, 0.97, 0.51965, 4, 42, 64.87, + 11.12, 0.25994, 43, 34.09, 0.68, 0.00726, 44, 12.69, 0.79, 0.30245, 45, -8.79, 0.79, 0.43035, 4, 42, 57.96, 11, 0.3382, 43, 33.61, 7.58, 0.00776, 44, 12.21, 7.69, 0.26884, 45, -9.27, + 7.69, 0.38519, 4, 42, 58.32, 16.31, 0.37706, 43, 38.93, 7.49, 0.00208, 44, 17.52, 7.6, 0.15821, 45, -3.95, 7.6, 0.46265, 4, 42, 58.9, 22.12, 0.46779, 43, 44.77, 7.23, 0.00052, 44, + 23.36, 7.33, 0.07582, 45, 1.89, 7.33, 0.45586, 4, 42, 59.69, 28.3, 0.65325, 43, 50.97, 6.76, 0.00012, 44, 29.57, 6.86, 0.02541, 45, 8.09, 6.86, 0.32123, 4, 42, 52.82, 26.61, 0.75526, + 43, 48.93, 13.53, 0.00017, 44, 27.52, 13.64, 0.02002, 45, 6.05, 13.64, 0.22455, 4, 42, 52.51, 21.1, 0.52586, 43, 43.41, 13.55, 0.00082, 44, 22, 13.66, 0.07106, 45, 0.53, 13.66, + 0.40226, 4, 42, 52.35, 15.86, 0.44455, 43, 38.16, 13.44, 0.00273, 44, 16.76, 13.54, 0.1436, 45, -4.72, 13.54, 0.40912, 4, 42, 52.31, 10.54, 0.40864, 43, 32.85, 13.19, 0.0088, 44, + 11.45, 13.3, 0.23945, 45, -10.03, 13.3, 0.34311, 4, 42, 70.77, -38.17, 0.52059, 43, -14.82, -7.8, 0.45917, 44, -36.22, -7.7, 0.02022, 45, -57.7, -7.7, 1e-05, 4, 42, 70.83, -34.9, + 0.37517, 43, -11.54, -7.69, 0.58803, 44, -32.95, -7.59, 0.03676, 45, -54.42, -7.59, 4e-05, 4, 42, 70.97, -31.21, 0.31655, 43, -7.85, -7.63, 0.62281, 44, -29.26, -7.53, 0.06054, 45, + -50.73, -7.53, 0.00011, 4, 42, 71.13, -27.77, 0.25662, 43, -4.41, -7.62, 0.64624, 44, -25.82, -7.51, 0.09684, 45, -47.29, -7.51, 0.0003, 4, 42, 71.2, -23.97, 0.20542, 43, -0.61, + -7.48, 0.64718, 44, -22.02, -7.37, 0.14662, 45, -43.49, -7.37, 0.00077, 4, 42, 71.35, -20.96, 0.16774, 43, 2.4, -7.48, 0.62093, 44, -19, -7.37, 0.20946, 45, -40.48, -7.37, 0.00187, + 4, 42, 71.49, -17.96, 0.14406, 43, 5.4, -7.45, 0.56885, 44, -16, -7.35, 0.28288, 45, -37.48, -7.35, 0.00421, 4, 42, 71.65, -15.17, 0.13169, 43, 8.2, -7.46, 0.49722, 44, -13.21, + -7.36, 0.36227, 45, -34.68, -7.36, 0.00882, 4, 42, 71.89, -12.02, 0.12708, 43, 11.35, -7.54, 0.41453, 44, -10.05, -7.44, 0.44117, 45, -31.52, -7.44, 0.01722, 4, 42, 71.98, -9.41, + 0.12668, 43, 13.97, -7.49, 0.32958, 44, -7.43, -7.39, 0.51233, 45, -28.91, -7.39, 0.03141, 4, 42, 72.15, -7.02, 0.12812, 43, 16.36, -7.53, 0.24965, 44, -5.05, -7.43, 0.56851, 45, + -26.52, -7.43, 0.05372, 4, 42, 72.39, -4.46, 0.12979, 43, 18.93, -7.65, 0.1799, 44, -2.47, -7.54, 0.60387, 45, -23.95, -7.54, 0.08644, 4, 42, 72.47, -1.68, 0.13105, 43, 21.71, -7.58, + 0.12302, 44, 0.3, -7.47, 0.61461, 45, -21.17, -7.47, 0.13132, 4, 42, 72.58, 1.2, 0.13159, 43, 24.6, -7.54, 0.07962, 44, 3.19, -7.43, 0.5998, 45, -18.28, -7.43, 0.18899, 4, 42, 72.71, + 3.77, 0.13189, 43, 27.17, -7.53, 0.04862, 44, 5.76, -7.42, 0.56113, 45, -15.71, -7.42, 0.25837, 4, 42, 72.9, 5.95, 0.13282, 43, 29.35, -7.61, 0.02792, 44, 7.95, -7.5, 0.50297, 45, + -13.53, -7.5, 0.33629, 4, 42, 72.96, 8.77, 0.13637, 43, 32.18, -7.52, 0.01503, 44, 10.77, -7.41, 0.43134, 45, -10.7, -7.41, 0.41726, 4, 42, 73.15, 11.31, 0.14539, 43, 34.72, -7.57, + 0.00757, 44, 13.32, -7.46, 0.35328, 45, -8.16, -7.46, 0.49376, 4, 42, 73.26, 14.32, 0.16393, 43, 37.73, -7.53, 0.00355, 44, 16.32, -7.43, 0.27561, 45, -5.15, -7.43, 0.55691, 4, 42, + 73.56, 17.06, 0.19585, 43, 40.48, -7.68, 0.00155, 44, 19.08, -7.58, 0.20422, 45, -2.4, -7.58, 0.59837, 4, 42, 73.65, 19.69, 0.24372, 43, 43.11, -7.63, 0.00063, 44, 21.71, -7.53, + 0.14329, 45, 0.23, -7.53, 0.61235, 4, 42, 73.87, 23.74, 0.30631, 43, 47.17, -7.64, 0.00024, 44, 25.77, -7.53, 0.09501, 45, 4.29, -7.53, 0.59844, 4, 42, 74.01, 28.34, 0.3775, 43, + 51.77, -7.54, 9e-05, 44, 30.37, -7.43, 0.05972, 45, 8.89, -7.43, 0.5627, 4, 42, 74.28, 31.7, 0.44548, 43, 55.14, -7.63, 3e-05, 44, 33.74, -7.53, 0.03652, 45, 12.26, -7.53, 0.51797, + 4, 42, 74.78, 35.38, 0.56131, 43, 58.84, -7.93, 1e-05, 44, 37.44, -7.83, 0.02128, 45, 15.96, -7.83, 0.41739 + ], + "hull": 44, + "edges": [ + 78, 76, 86, 0, 78, 80, 80, 82, 82, 84, 84, 86, 0, 94, 76, 96, 62, 64, 74, 76, 102, 96, 74, 102, 104, 90, 106, 98, 108, 88, 110, 100, 112, 92, 114, 94, 2, 0, 114, 2, 72, 74, 116, 102, + 72, 116, 118, 104, 120, 106, 122, 108, 124, 110, 126, 112, 128, 114, 4, 2, 128, 4, 70, 72, 130, 116, 70, 130, 132, 118, 134, 120, 136, 122, 138, 124, 140, 126, 142, 128, 8, 6, 6, 4, + 142, 6, 68, 70, 144, 130, 68, 144, 146, 132, 148, 134, 150, 136, 152, 138, 154, 140, 156, 142, 156, 8, 8, 10, 10, 12, 12, 158, 158, 156, 10, 158, 160, 154, 162, 152, 164, 150, 166, + 148, 168, 146, 170, 144, 64, 66, 66, 68, 170, 66, 82, 172, 172, 88, 98, 172, 172, 100, 80, 174, 174, 90, 96, 174, 84, 176, 176, 92, 94, 176, 90, 178, 178, 96, 102, 180, 180, 104, + 178, 180, 180, 182, 182, 184, 184, 186, 186, 188, 90, 190, 190, 98, 104, 192, 192, 106, 190, 192, 192, 194, 194, 196, 196, 198, 198, 200, 88, 202, 202, 98, 106, 204, 204, 108, 202, + 204, 204, 206, 206, 208, 208, 210, 210, 212, 88, 214, 214, 100, 108, 216, 216, 110, 214, 216, 216, 218, 218, 220, 220, 222, 222, 224, 92, 226, 226, 100, 110, 228, 228, 112, 226, 228, + 228, 230, 230, 232, 232, 234, 234, 236, 92, 238, 238, 94, 112, 240, 240, 114, 238, 240, 240, 242, 242, 244, 244, 246, 246, 248, 12, 14, 170, 64, 116, 250, 250, 182, 130, 252, 252, + 184, 250, 252, 144, 254, 254, 186, 252, 254, 170, 256, 256, 188, 254, 256, 58, 60, 60, 62, 118, 258, 258, 182, 132, 260, 260, 184, 258, 260, 146, 262, 262, 186, 260, 262, 168, 264, + 264, 188, 262, 264, 54, 56, 56, 58, 50, 52, 52, 54, 168, 266, 266, 200, 146, 268, 268, 198, 266, 268, 132, 270, 270, 196, 268, 270, 118, 272, 272, 194, 270, 272, 120, 274, 274, 194, + 134, 276, 276, 196, 274, 276, 148, 278, 278, 198, 276, 278, 166, 280, 280, 200, 278, 280, 46, 48, 48, 50, 42, 44, 44, 46, 166, 282, 282, 212, 148, 284, 284, 210, 282, 284, 134, 286, + 286, 208, 284, 286, 120, 288, 288, 206, 286, 288, 122, 290, 290, 206, 136, 292, 292, 208, 290, 292, 150, 294, 294, 210, 292, 294, 164, 296, 296, 212, 294, 296, 38, 40, 40, 42, 34, + 36, 36, 38, 164, 298, 298, 224, 150, 300, 300, 222, 298, 300, 136, 302, 302, 220, 300, 302, 122, 304, 304, 218, 302, 304, 124, 306, 306, 218, 138, 308, 308, 220, 306, 308, 152, 310, + 310, 222, 308, 310, 162, 312, 312, 224, 310, 312, 30, 32, 32, 34, 26, 28, 28, 30, 162, 314, 314, 236, 22, 24, 24, 26, 160, 316, 316, 236, 18, 20, 20, 22, 160, 318, 318, 248, 14, 16, + 16, 18, 158, 320, 320, 248, 156, 322, 322, 246, 320, 322, 154, 324, 324, 246, 318, 324, 154, 326, 326, 234, 316, 326, 152, 328, 328, 234, 314, 328, 138, 330, 330, 232, 328, 330, 140, + 332, 332, 232, 326, 332, 140, 334, 334, 244, 324, 334, 142, 336, 336, 244, 322, 336, 128, 338, 338, 242, 336, 338, 126, 340, 340, 242, 334, 340, 126, 342, 342, 230, 332, 342, 124, + 344, 344, 230, 330, 344, 62, 346, 346, 170, 60, 348, 348, 256, 346, 348, 58, 350, 350, 188, 348, 350, 56, 352, 352, 264, 350, 352, 54, 354, 354, 168, 352, 354, 52, 356, 356, 266, + 354, 356, 50, 358, 358, 200, 356, 358, 48, 360, 360, 280, 358, 360, 46, 362, 362, 166, 360, 362, 44, 364, 364, 282, 362, 364, 42, 366, 366, 212, 364, 366, 40, 368, 368, 296, 366, + 368, 38, 370, 370, 164, 368, 370, 36, 372, 372, 298, 370, 372, 34, 374, 374, 224, 372, 374, 32, 376, 376, 312, 374, 376, 30, 378, 378, 162, 376, 378, 28, 380, 380, 314, 378, 380, 26, + 382, 382, 236, 380, 382, 24, 384, 384, 316, 382, 384, 22, 386, 386, 160, 384, 386, 20, 388, 388, 318, 386, 388, 18, 390, 390, 248, 388, 390, 16, 392, 392, 320, 390, 392, 14, 394, + 394, 158, 392, 394 + ], + "width": 82.3529411764706, + "height": 72.94117647058823, + "path": "summer-a-lv2.ear-right-bubble", + "x": 0.32352941176470296, + "y": 0.529411764705884 + } + }, + "ear-right-dot-01": { + "ear-right-dot": { + "x": -0.04470588235294204, "y": -0.04470588235294204, "rotation": -0.95, "width": 23.529411764705884, "height": 23.529411764705884, "path": "summer-a-lv2.ear-right-dot" + } + }, + "ear-right-dot-02": { + "ear-right-dot": { + "x": -0.04470588235294204, "y": -0.04470588235294204, "rotation": -0.95, "width": 23.529411764705884, "height": 23.529411764705884, "path": "summer-a-lv2.ear-right-dot" + } + }, + "ear-right-dot-03": { + "ear-right-dot": { + "x": -0.04470588235294204, "y": -0.04470588235294204, "rotation": -0.95, "width": 23.529411764705884, "height": 23.529411764705884, "path": "summer-a-lv2.ear-right-dot" + } + }, + "ear-right-dot-04": { + "ear-right-dot": { + "x": -0.04470588235294204, "y": -0.04470588235294204, "rotation": -0.95, "width": 23.529411764705884, "height": 23.529411764705884, "path": "summer-a-lv2.ear-right-dot" + } + }, + "ear-right-dot-05": { + "ear-right-dot": { + "x": -0.04470588235294204, "y": -0.04470588235294204, "rotation": -0.95, "width": 23.529411764705884, "height": 23.529411764705884, "path": "summer-a-lv2.ear-right-dot" + } + }, + "ear-right-dot-06": { + "ear-right-dot": { + "x": -0.04470588235294204, "y": -0.04470588235294204, "rotation": -0.95, "width": 23.529411764705884, "height": 23.529411764705884, "path": "summer-a-lv2.ear-right-dot" + } + }, + "ear-right-dot-07": { + "ear-right-dot": { + "x": -0.04470588235294204, "y": -0.04470588235294204, "rotation": -0.95, "width": 23.529411764705884, "height": 23.529411764705884, "path": "summer-a-lv2.ear-right-dot" + } + }, + "ear-right-dot-08": { + "ear-right-dot": { + "x": -0.04470588235294204, "y": -0.04470588235294204, "rotation": -0.95, "width": 23.529411764705884, "height": 23.529411764705884, "path": "summer-a-lv2.ear-right-dot" + } + }, + "ear-right-dot-09": { + "ear-right-dot": { + "x": -0.04470588235294204, "y": -0.04470588235294204, "rotation": -0.95, "width": 23.529411764705884, "height": 23.529411764705884, "path": "summer-a-lv2.ear-right-dot" + } + }, + "ear-right-dot-10": { + "ear-right-dot": { + "x": -0.04470588235294204, "y": -0.04470588235294204, "rotation": -0.95, "width": 23.529411764705884, "height": 23.529411764705884, "path": "summer-a-lv2.ear-right-dot" + } + }, + "ear-right-dot-11": { + "ear-right-dot": { + "x": -0.04470588235294204, "y": -0.04470588235294204, "rotation": -0.95, "width": 23.529411764705884, "height": 23.529411764705884, "path": "summer-a-lv2.ear-right-dot" + } + }, + "ear-right-dot-12": { + "ear-right-dot": { + "x": -0.04470588235294204, "y": -0.04470588235294204, "rotation": -0.95, "width": 23.529411764705884, "height": 23.529411764705884, "path": "summer-a-lv2.ear-right-dot" + } + }, + "ear-right-dot-13": { + "ear-right-dot": { + "x": -0.04470588235294204, "y": -0.04470588235294204, "rotation": -0.95, "width": 23.529411764705884, "height": 23.529411764705884, "path": "summer-a-lv2.ear-right-dot" + } + }, + "ear-right-dot-14": { + "ear-right-dot": { + "x": -0.04470588235294204, "y": -0.04470588235294204, "rotation": -0.95, "width": 23.529411764705884, "height": 23.529411764705884, "path": "summer-a-lv2.ear-right-dot" + } + }, + "ear-right-dot-15": { + "ear-right-dot": { + "x": -0.04470588235294204, "y": -0.04470588235294204, "rotation": -0.95, "width": 23.529411764705884, "height": 23.529411764705884, "path": "summer-a-lv2.ear-right-dot" + } + }, + "ear-right-dot-16": { + "ear-right-dot": { + "x": -0.04470588235294204, "y": -0.04470588235294204, "rotation": -0.95, "width": 23.529411764705884, "height": 23.529411764705884, "path": "summer-a-lv2.ear-right-dot" + } + }, + "ear-right-dot-17": { + "ear-right-dot": { + "x": -0.04470588235294204, "y": -0.04470588235294204, "rotation": -0.95, "width": 23.529411764705884, "height": 23.529411764705884, "path": "summer-a-lv2.ear-right-dot" + } + }, + "ear-right-dot-18": { + "ear-right-dot": { + "x": -0.04470588235294204, "y": -0.04470588235294204, "rotation": -0.95, "width": 23.529411764705884, "height": 23.529411764705884, "path": "summer-a-lv2.ear-right-dot" + } + }, + "ear-right-dot-19": { + "ear-right-dot": { + "x": -0.04470588235294204, "y": -0.04470588235294204, "rotation": -0.95, "width": 23.529411764705884, "height": 23.529411764705884, "path": "summer-a-lv2.ear-right-dot" + } + }, + "ear-right-dot-20": { + "ear-right-dot": { + "x": -0.04470588235294204, "y": -0.04470588235294204, "rotation": -0.95, "width": 23.529411764705884, "height": 23.529411764705884, "path": "summer-a-lv2.ear-right-dot" + } + }, + "ear-right-under": { + "ear-right-under": {"x": 85.03764705882352, "y": -16.542941176470595, "rotation": -93, "width": 131.76470588235296, "height": 204.7058823529412, "path": "summer-a-lv2.ear-right-under"} + }, + "ear-right-upper": { + "ear-right-upper": {"x": 92.82176470588234, "y": -16.894705882352955, "rotation": -93, "width": 141.1764705882353, "height": 263.5294117647059, "path": "summer-a-lv2.ear-right-upper"} + }, + "eyes": { + "eyes": {"x": 22.799411764705884, "y": 24.591764705882355, "width": 272.94117647058823, "height": 101.17647058823529, "path": "summer-a-lv2.eyes"}, + "eyes-angry": {"x": 22.799411764705884, "y": 24.591764705882355, "width": 272.94117647058823, "height": 101.17647058823529, "path": "summer-a-lv2.eyes-angry"}, + "eyes-happy": {"x": 22.799411764705884, "y": 24.591764705882355, "width": 272.94117647058823, "height": 101.17647058823529, "path": "summer-a-lv2.eyes-happy"}, + "eyes-shut": {"x": 22.799411764705884, "y": 24.591764705882355, "width": 272.94117647058823, "height": 101.17647058823529, "path": "summer-a-lv2.eyes-shut"} + }, + "eyes-happy-accessory": { + "eyes-happy-accessory": { + "x": 1.458235294117645, "y": 0.958823529411761, "scaleX": 1.4, "scaleY": 1.4, "width": 98.82352941176471, "height": 105.88235294117648, "path": "summer-a-lv2.eyes-happy-accessory" + } + }, + "eyes-upper": {"eyes-upper": {"x": 23.387647058823536, "y": 24.29764705882352, "width": 371.7647058823529, "height": 171.76470588235296, "path": "summer-a-lv2.eyes-upper"}}, + "horn": {"horn": {"x": 87.91529411764705, "y": -6.181764705882362, "rotation": -90, "width": 263.5294117647059, "height": 178.82352941176472, "path": "summer-a-lv2.horn"}}, + "mouth": { + "mouth": {"x": -7.906470588235305, "y": 100.18, "width": 282.3529411764706, "height": 280.0, "path": "summer-a-lv2.mouth"}, + "mouth-bite": {"x": -7.906470588235305, "y": 100.18, "width": 282.3529411764706, "height": 280.0, "path": "summer-a-lv2.mouth-bite"}, + "mouth-open": {"x": -7.906470588235305, "y": 94.29764705882354, "width": 282.3529411764706, "height": 291.7647058823529, "path": "summer-a-lv2.mouth-open"}, + "mouth-smile": {"x": -7.906470588235305, "y": 100.18, "width": 282.3529411764706, "height": 280.0, "path": "summer-a-lv2.mouth-smile"} + }, + "mouth-accessory": { + "mouth-accessory": { + "type": "mesh", + "uvs": [ + 0.7567, 0.0473, 0.86697, 0.14039, 0.9443, 0.25209, 0.99714, 0.36666, 0.99999, 0.49597, 1, 0.61625, 0.9486, 0.73368, 0.85981, 0.85684, 0.74238, 0.95422, 0.58914, 1, 0.46884, 1, + 0.36484, 0.99858, 0.24169, 0.95082, 0.12854, 0.86646, 0.03732, 0.75174, 0, 0.59723, 0, 0.48254, 0, 0.36237, 0.04691, 0.22488, 0.14286, 0.10888, 0.25027, 0.03298, 0.37916, 0, 0.49749, + 0, 0.62208, 0, 0.48816, 0.49691, 0.38984, 0.47048, 0.40039, 0.4428, 0.42008, 0.42041, 0.44087, 0.4047, 0.46611, 0.39392, 0.49007, 0.39257, 0.5155, 0.39441, 0.54363, 0.40403, 0.56948, + 0.42037, 0.58681, 0.44396, 0.59625, 0.46925, 0.60239, 0.4967, 0.59962, 0.5229, 0.58591, 0.54718, 0.56617, 0.57246, 0.53987, 0.58993, 0.50841, 0.5978, 0.48422, 0.59958, 0.46389, + 0.59563, 0.44255, 0.58693, 0.41915, 0.56782, 0.40098, 0.54296, 0.39091, 0.5164, 0.38677, 0.494, 0.25326, 0.49016, 0.26189, 0.43608, 0.28722, 0.37303, 0.33073, 0.32, 0.38007, 0.28612, + 0.43888, 0.26671, 0.49242, 0.26434, 0.5491, 0.26844, 0.61141, 0.29055, 0.66979, 0.32597, 0.72081, 0.37204, 0.74533, 0.4311, 0.75435, 0.49642, 0.74415, 0.5566, 0.71527, 0.6137, + 0.66814, 0.67121, 0.6053, 0.70764, 0.53338, 0.72221, 0.47953, 0.72167, 0.43531, 0.71188, 0.25606, 0.54343, 0.2836, 0.60497, 0.33013, 0.6593, 0.38745, 0.69572, 0.2371, 0.756, 0.32258, + 0.81152, 0.40412, 0.83877, 0.47432, 0.85748, 0.5622, 0.86577, 0.67514, 0.83328, 0.76201, 0.76212, 0.82762, 0.67147, 0.86788, 0.58544, 0.89046, 0.49617, 0.88879, 0.39439, 0.84496, + 0.30541, 0.77906, 0.22313, 0.69067, 0.15785, 0.58965, 0.1164, 0.49532, 0.10584, 0.40602, 0.11317, 0.30758, 0.14475, 0.22046, 0.19609, 0.15118, 0.28916, 0.11571, 0.39679, 0.10936, + 0.48603, 0.11577, 0.57155, 0.16414, 0.68085 + ], + "triangles": [ + 96, 69, 70, 73, 70, 71, 77, 66, 65, 34, 58, 59, 60, 35, 59, 61, 36, 60, 31, 30, 55, 30, 29, 55, 32, 31, 56, 33, 32, 57, 28, 53, 29, 27, 52, 28, 27, 26, 52, 34, 33, 58, 25, 50, 26, + 48, 49, 25, 36, 35, 60, 69, 48, 47, 37, 36, 62, 70, 47, 46, 38, 37, 63, 71, 46, 45, 39, 38, 64, 44, 71, 45, 72, 44, 43, 40, 39, 65, 68, 72, 43, 68, 43, 42, 67, 68, 42, 66, 41, 40, + 67, 42, 41, 66, 67, 41, 24, 29, 30, 24, 30, 31, 24, 31, 32, 24, 32, 33, 24, 33, 34, 24, 34, 35, 24, 35, 36, 28, 29, 24, 27, 28, 24, 26, 27, 24, 25, 26, 24, 48, 25, 24, 47, 48, 24, + 37, 24, 36, 46, 47, 24, 38, 24, 37, 45, 46, 24, 39, 24, 38, 44, 45, 24, 24, 43, 44, 39, 40, 24, 43, 24, 42, 40, 41, 24, 41, 42, 24, 35, 34, 59, 55, 29, 54, 53, 54, 29, 56, 31, 55, + 57, 32, 56, 52, 53, 28, 26, 51, 52, 50, 51, 26, 49, 50, 25, 69, 49, 48, 70, 69, 47, 63, 37, 62, 71, 70, 46, 64, 38, 63, 44, 72, 71, 65, 39, 64, 65, 66, 40, 58, 33, 57, 62, 36, 61, + 75, 72, 68, 67, 75, 68, 74, 71, 72, 76, 67, 66, 22, 89, 21, 87, 88, 22, 88, 89, 22, 90, 20, 21, 23, 87, 22, 86, 87, 23, 89, 90, 21, 91, 19, 20, 0, 86, 23, 85, 86, 0, 90, 91, 20, 1, + 85, 0, 18, 19, 91, 84, 85, 1, 88, 54, 89, 56, 55, 88, 55, 54, 88, 53, 90, 89, 87, 56, 88, 57, 56, 87, 54, 53, 89, 52, 91, 90, 92, 18, 91, 86, 57, 87, 58, 57, 86, 2, 84, 1, 53, 52, + 90, 92, 91, 52, 85, 58, 86, 59, 58, 85, 17, 18, 92, 83, 84, 2, 84, 59, 85, 51, 92, 52, 3, 83, 2, 60, 59, 84, 93, 17, 92, 93, 92, 51, 83, 60, 84, 50, 93, 51, 16, 17, 93, 94, 16, 93, + 94, 93, 50, 49, 94, 50, 83, 3, 4, 82, 83, 4, 60, 83, 82, 61, 60, 82, 69, 95, 94, 69, 94, 49, 81, 61, 82, 62, 61, 81, 95, 15, 16, 95, 16, 94, 82, 4, 5, 81, 82, 5, 80, 62, 81, 63, 62, + 80, 96, 95, 69, 6, 81, 5, 80, 81, 6, 14, 15, 95, 14, 95, 96, 73, 96, 70, 79, 63, 80, 64, 63, 79, 74, 73, 71, 78, 64, 79, 65, 64, 78, 74, 72, 75, 7, 80, 6, 79, 80, 7, 76, 75, 67, 77, + 65, 78, 76, 66, 77, 13, 14, 96, 13, 96, 73, 12, 73, 74, 13, 73, 12, 7, 8, 78, 7, 78, 79, 11, 74, 75, 10, 11, 75, 12, 74, 11, 76, 10, 75, 10, 76, 77, 9, 77, 78, 9, 78, 8, 10, 77, 9 + ], + "vertices": [ + 1, 29, 42.58, 72.34, 1, 1, 29, 60.45, 57.26, 1, 1, 29, 72.98, 39.16, 1, 1, 29, 81.54, 20.6, 1, 1, 29, 82, -0.34, 1, 1, 29, 82, -19.83, 1, 1, 29, 73.67, -38.85, 1, 1, 29, 59.29, + -58.81, 1, 1, 29, 40.26, -74.58, 1, 1, 29, 15.44, -82, 1, 1, 29, -4.05, -82, 1, 1, 29, -20.9, -81.77, 1, 1, 29, -40.85, -74.03, 1, 1, 29, -59.18, -60.37, 1, 1, 29, -73.95, -41.78, 1, + 1, 29, -82, -16.75, 1, 1, 29, -82, 1.83, 1, 1, 29, -82, 21.3, 1, 1, 29, -72.4, 43.57, 1, 1, 29, -56.86, 62.36, 1, 1, 29, -39.46, 74.66, 1, 1, 29, -18.58, 82, 1, 1, 29, 0.59, 82, 1, + 1, 29, 20.78, 80.84, 1, 1, 81, -0.92, -0.5, 1, 1, 81, -16.85, 3.78, 1, 1, 81, -15.14, 8.27, 1, 1, 81, -11.95, 11.89, 1, 1, 81, -8.58, 14.44, 1, 1, 81, -4.49, 16.19, 1, 1, 81, -0.61, + 16.41, 1, 1, 81, 3.51, 16.11, 1, 1, 81, 8.07, 14.55, 1, 1, 81, 12.26, 11.9, 1, 1, 81, 15.06, 8.08, 1, 1, 81, 16.59, 3.98, 1, 1, 81, 17.59, -0.46, 1, 1, 81, 17.14, -4.71, 1, 1, 81, + 14.92, -8.64, 1, 1, 81, 11.72, -12.74, 1, 1, 81, 7.46, -15.57, 1, 1, 81, 2.36, -16.84, 1, 1, 81, -1.56, -17.13, 1, 1, 81, -4.85, -16.49, 1, 1, 81, -8.31, -15.08, 1, 1, 81, -12.1, + -11.99, 1, 1, 81, -15.04, -7.96, 1, 1, 81, -16.67, -3.66, 1, 1, 81, -17.34, -0.03, 1, 2, 29, -38.97, 0.6, 0.37475, 81, -38.97, 0.6, 0.62525, 2, 29, -37.57, 9.36, 0.38176, 81, -37.57, + 9.36, 0.61824, 2, 29, -33.47, 19.57, 0.39514, 81, -33.47, 19.57, 0.60486, 2, 29, -26.42, 28.16, 0.40154, 81, -26.42, 28.16, 0.59846, 2, 29, -18.43, 33.65, 0.40298, 81, -18.43, 33.65, + 0.59702, 2, 29, -8.9, 36.8, 0.39723, 81, -8.9, 36.8, 0.60277, 2, 29, -0.23, 37.18, 0.38672, 81, -0.23, 37.18, 0.61328, 2, 29, 8.95, 36.51, 0.39243, 81, 8.95, 36.51, 0.60757, 2, 29, + 19.05, 32.93, 0.39729, 81, 19.05, 32.93, 0.60271, 2, 29, 28.51, 27.19, 0.41715, 81, 28.51, 27.19, 0.58285, 2, 29, 36.77, 19.73, 0.45304, 81, 36.77, 19.73, 0.54696, 2, 29, 40.74, + 10.16, 0.44594, 81, 40.74, 10.16, 0.55406, 2, 29, 42.2, -0.42, 0.43856, 81, 42.2, -0.42, 0.56144, 2, 29, 40.55, -10.17, 0.41782, 81, 40.55, -10.17, 0.58218, 2, 29, 35.87, -19.42, + 0.38686, 81, 35.87, -19.42, 0.61314, 2, 29, 28.24, -28.73, 0.36878, 81, 28.24, -28.73, 0.63122, 2, 29, 18.06, -34.64, 0.3386, 81, 18.06, -34.64, 0.6614, 2, 29, 6.41, -37, 0.30037, + 81, 6.41, -37, 0.69963, 2, 29, -2.32, -36.91, 0.28415, 81, -2.32, -36.91, 0.71585, 2, 29, -9.48, -35.32, 0.27399, 81, -9.48, -35.32, 0.72601, 2, 29, -38.52, -8.03, 0.36783, 81, + -38.52, -8.03, 0.63217, 2, 29, -34.06, -18, 0.33446, 81, -34.06, -18, 0.66554, 2, 29, -26.52, -26.8, 0.30599, 81, -26.52, -26.8, 0.69401, 2, 29, -17.23, -32.71, 0.28378, 81, -17.23, + -32.71, 0.71622, 2, 29, -41.59, -42.47, 0.73847, 81, -41.59, -42.47, 0.26153, 2, 29, -27.74, -51.46, 0.71173, 81, -27.74, -51.46, 0.28827, 2, 29, -14.53, -55.88, 0.69513, 81, -14.53, + -55.88, 0.30487, 2, 29, -3.16, -58.91, 0.72225, 81, -3.16, -58.91, 0.27775, 2, 29, 11.08, -60.25, 0.77228, 81, 11.08, -60.25, 0.22772, 2, 29, 29.37, -54.99, 0.80171, 81, 29.37, + -54.99, 0.19829, 2, 29, 43.44, -43.46, 0.78981, 81, 43.44, -43.46, 0.21019, 2, 29, 54.07, -28.78, 0.79382, 81, 54.07, -28.78, 0.20618, 2, 29, 60.6, -14.84, 0.827, 81, 60.6, -14.84, + 0.173, 2, 29, 64.25, -0.38, 0.87698, 81, 64.25, -0.38, 0.12302, 2, 29, 63.98, 16.11, 0.92141, 81, 63.98, 16.11, 0.07859, 2, 29, 56.88, 30.53, 0.90642, 81, 56.88, 30.53, 0.09358, 2, + 29, 46.21, 43.86, 0.90058, 81, 46.21, 43.86, 0.09942, 2, 29, 31.89, 54.43, 0.8953, 81, 31.89, 54.43, 0.1047, 2, 29, 15.52, 61.14, 0.89934, 81, 15.52, 61.14, 0.10066, 2, 29, 0.24, + 62.86, 0.89762, 81, 0.24, 62.86, 0.10238, 2, 29, -14.22, 61.67, 0.90341, 81, -14.22, 61.67, 0.09659, 2, 29, -30.17, 56.55, 0.9151, 81, -30.17, 56.55, 0.0849, 2, 29, -44.28, 48.24, + 0.93596, 81, -44.28, 48.24, 0.06404, 2, 29, -55.51, 33.16, 0.90966, 81, -55.51, 33.16, 0.09034, 2, 29, -61.25, 15.72, 0.86888, 81, -61.25, 15.72, 0.13112, 2, 29, -62.28, 1.26, + 0.83823, 81, -62.28, 1.26, 0.16177, 2, 29, -61.24, -12.59, 0.82811, 81, -61.24, -12.59, 0.17189, 2, 29, -53.41, -30.3, 0.78788, 81, -53.41, -30.3, 0.21212 + ], + "hull": 24, + "edges": [ + 18, 20, 18, 16, 16, 14, 14, 12, 8, 10, 12, 10, 8, 6, 6, 4, 4, 2, 2, 0, 44, 46, 0, 46, 42, 44, 42, 40, 40, 38, 38, 36, 32, 34, 36, 34, 30, 32, 30, 28, 28, 26, 26, 24, 20, 22, 24, 22, + 50, 48, 52, 48, 50, 52, 54, 48, 52, 54, 56, 48, 54, 56, 58, 48, 56, 58, 60, 48, 58, 60, 62, 48, 60, 62, 64, 48, 62, 64, 66, 48, 64, 66, 68, 48, 66, 68, 70, 48, 68, 70, 72, 48, 70, + 72, 74, 48, 72, 74, 76, 48, 74, 76, 78, 48, 76, 78, 80, 48, 78, 80, 82, 48, 80, 82, 84, 48, 82, 84, 86, 48, 84, 86, 88, 48, 86, 88, 90, 48, 88, 90, 92, 48, 90, 92, 94, 48, 92, 94, + 96, 48, 94, 96, 96, 50, 98, 96, 100, 50, 98, 100, 102, 52, 100, 102, 104, 54, 102, 104, 106, 56, 104, 106, 108, 58, 106, 108, 110, 60, 108, 110, 112, 62, 110, 112, 114, 64, 112, 114, + 116, 66, 114, 116, 118, 68, 116, 118, 120, 70, 118, 120, 122, 72, 120, 122, 124, 74, 122, 124, 126, 76, 124, 126, 128, 78, 126, 128, 130, 80, 128, 130, 132, 82, 130, 132, 134, 84, + 132, 134, 136, 86, 134, 136, 138, 94, 98, 138, 140, 92, 138, 140, 142, 90, 140, 142, 144, 88, 142, 144, 144, 136, 26, 146, 146, 142, 24, 148, 148, 144, 146, 148, 22, 150, 150, 136, + 148, 150, 20, 152, 152, 134, 150, 152, 18, 154, 154, 132, 152, 154, 16, 156, 156, 130, 154, 156, 14, 158, 158, 128, 156, 158, 12, 160, 160, 126, 158, 160, 10, 162, 162, 124, 160, + 162, 8, 164, 164, 122, 162, 164, 6, 166, 166, 120, 164, 166, 4, 168, 168, 118, 166, 168, 2, 170, 170, 116, 168, 170, 0, 172, 172, 114, 170, 172, 46, 174, 174, 112, 172, 174, 44, 176, + 176, 110, 174, 176, 42, 178, 178, 108, 176, 178, 40, 180, 180, 106, 178, 180, 38, 182, 182, 104, 180, 182, 36, 184, 184, 102, 182, 184, 34, 186, 186, 100, 184, 186, 32, 188, 188, 98, + 186, 188, 30, 190, 190, 138, 188, 190, 28, 192, 192, 140, 190, 192, 192, 146 + ], + "width": 162.35294117647058, + "height": 162.35294117647058, + "path": "summer-a-lv2.mouth-accessory", + "x": 0.8235294117647101, + "y": 0.8235294117647101 + } + }, + "tail": {"tail": {"x": 111.3764705882353, "y": 26.9, "rotation": 12, "width": 277.6470588235294, "height": 280.0, "path": "summer-a-lv2.tail"}} + } + } + ], + "events": {"hit": {}, "hit-buff": {}, "jump": {}, "start-attack": {}}, + "keyAnimations": { + "activity/appear": "1023093953", + "activity/bath": "3305387968", + "attack/ranged/cast-fly": "4180526371", + "attack/ranged/cast-high": "164191126", + "attack/ranged/cast-low": "198813017", + "attack/ranged/cast-multi": "151119", + "attack/ranged/cast-tail": "3850719809", + "action/mix/ear-animation": "901954966", + "activity/eat-bite": "1137807767", + "activity/eat-chew": "1988236421", + "activity/entrance": "3768378365", + "defense/evade": "1735454995", + "activity/evolve": "649307630", + "action/mix/eyes-animation": "3799301307", + "battle/get-buff": "1455190363", + "battle/get-debuff": "606904312", + "defense/hit-by-normal": "978716858", + "defense/hit-by-normal-crit": "3941256645", + "defense/hit-by-normal-crit2": "2130010601", + "defense/hit-by-normal-dramatic": "2527908154", + "defense/hit-by-normal-dramatic2": "3823092125", + "defense/hit-by-normal2": "2045974966", + "defense/hit-by-ranged-attack": "2207699263", + "defense/hit-by-ranged-attack2": "2224561612", + "defense/hit-with-shield": "390714790", + "attack/melee/horn-gore": "1327954218", + "attack/melee/mouth-bite": "2237748264", + "action/move-back": "3766271173", + "action/move-forward": "2945160014", + "attack/melee/multi-attack": "3774600630", + "action/idle/normal": "1659336865", + "attack/melee/normal-attack": "3305373483", + "action/mix/normal-mouth-animation": "1178295570", + "action/idle/normal2": "3503981622", + "activity/prepare": "405864717", + "action/idle/random-01": "554401889", + "action/idle/random-02": "3634120758", + "action/idle/random-03": "2021333900", + "action/idle/random-04": "1003789695", + "action/idle/random-05": "2745614147", + "action/run": "3942433225", + "draft/run-origin": "237238075", + "attack/melee/shrimp": "3833448733", + "activity/sleep": "100562494", + "attack/melee/tail-multi-slap": "3317139533", + "attack/melee/tail-roll": "3108617565", + "attack/melee/tail-smash": "519942130", + "attack/melee/tail-thrash": "628713175", + "activity/victory-pose-back-flip": "2227634241" + } + }, + "aquatic-08-lv2": { + "bones": [ + {"name": "@root"}, {"name": "@pivot-main", "parent": "@root"}, {"name": "@pivot-back", "parent": "@pivot-main", "x": 205, "y": 180, "color": "ff0101ff"}, + {"name": "@pivot-center", "parent": "@pivot-back", "x": -215.11, "y": -5.25, "color": "ff0101ff"}, + {"name": "@axie", "parent": "@pivot-center", "length": 213.28, "rotation": 179.04, "x": 196.39, "y": 5.16}, {"name": "@back", "parent": "@axie", "rotation": -179.04, "x": 37.63, "y": -198.19}, + {"name": "back", "parent": "@back", "length": 149.41, "rotation": 60, "x": 6.8, "y": 15, "transform": "noScale"}, + {"name": "@body", "parent": "@axie", "length": 226.28, "rotation": -8.35, "x": 224.58, "y": -0.53}, {"name": "@ear-left", "parent": "@axie", "rotation": -179.04, "x": 112.7, "y": -203.23}, + {"name": "ear-left", "parent": "@ear-left", "length": 113.61, "rotation": -10, "x": 21, "y": -50, "transform": "noScale"}, + {"name": "@ear-right", "parent": "@axie", "rotation": -179.04, "x": 405.28, "y": -235.33}, + {"name": "ear-right", "parent": "@ear-right", "length": 119.39, "rotation": 191, "x": -60, "y": -92, "transform": "noScale"}, + {"name": "@eyes", "parent": "@axie", "rotation": -179.04, "x": 384.24, "y": -113.67}, {"name": "@horn", "parent": "@axie", "rotation": -179.04, "x": 327.92, "y": -214.63}, + {"name": "horn", "parent": "@horn", "length": 176.72, "rotation": 90, "y": 18, "transform": "noScale"}, + {"name": "@leg-back-left", "parent": "@axie", "length": 76.4, "rotation": 100.96, "x": -15.3, "y": 102.56, "transform": "noScale"}, + {"name": "@leg-front-left", "parent": "@axie", "length": 51.19, "rotation": 93.86, "x": 134.77, "y": 149.55, "transform": "noScale"}, + {"name": "@leg-front-right", "parent": "@axie", "length": 74.83, "rotation": 83.2, "x": 382.95, "y": 121.78, "transform": "noScale"}, + {"name": "@mouth", "parent": "@axie", "rotation": -179.04, "x": 382.23, "y": 6.31}, + {"name": "body-pattern", "parent": "@body", "rotation": -170.69, "x": -267.21, "y": -49.4, "transform": "noScale"}, {"name": "@shadow", "parent": "@root", "color": "e6d713ff"}, + {"name": "@tail", "parent": "@axie", "rotation": -179.04, "x": -11.76, "y": 61.72}, + {"name": "tail", "parent": "@tail", "length": 203.67, "rotation": -5, "x": 36, "y": 52, "transform": "noScale"}, + {"name": "leg-front-right-IK", "parent": "@pivot-main", "x": -195.99, "y": -10.21, "color": "ff3f00ff"}, + {"name": "leg-front-left-IK", "parent": "@pivot-main", "x": 42.3, "y": -18.42, "color": "ff3f00ff"}, + {"name": "leg-back-left-IK", "parent": "@pivot-main", "x": 208.57, "y": 1.35, "color": "ff3f00ff"}, {"name": "@ball", "parent": "@root", "y": 191, "color": "f3981bff"}, + {"name": "ball", "parent": "@ball", "y": -191, "color": "f4a729ff"}, {"name": "@", "parent": "@root", "x": 47.7, "y": -78.67} + ], + "slots": [ + {"name": "shadow", "bone": "@shadow", "attachment": "shadow"}, {"name": "ball", "bone": "ball"}, {"name": "leg-front-right", "bone": "@leg-front-right", "attachment": "leg-front-right"}, + {"name": "ear-right", "bone": "ear-right", "attachment": "ear-right"}, {"name": "tail", "bone": "tail", "attachment": "tail"}, {"name": "back", "bone": "back", "attachment": "back"}, + {"name": "leg-back-left", "bone": "@leg-back-left", "attachment": "leg-back-left"}, {"name": "body", "bone": "@body", "attachment": "body"}, {"name": "body-pattern", "bone": "body-pattern"}, + {"name": "leg-front-left", "bone": "@leg-front-left", "attachment": "leg-front-left"}, {"name": "eyes", "bone": "@eyes", "attachment": "eyes"}, + {"name": "mouth", "bone": "@mouth", "attachment": "mouth"}, {"name": "ear-left", "bone": "ear-left", "attachment": "ear-left"}, {"name": "horn", "bone": "horn", "attachment": "horn"} + ], + "ik": [ + {"name": "leg-back-left-IK", "order": 2, "bones": ["@leg-back-left"], "target": "leg-back-left-IK"}, + {"name": "leg-front-left-IK", "order": 1, "bones": ["@leg-front-left"], "target": "leg-front-left-IK"}, + {"name": "leg-front-right-IK", "bones": ["@leg-front-right"], "target": "leg-front-right-IK"} + ], + "skins": [ + { + "name": "default", + "attachments": { + "back": {"back": {"x": 103.97, "y": 30.348823529411767, "rotation": -60, "width": 280.0, "height": 265.88235294117646, "path": "aquatic-08-lv2.back"}}, + "ear-left": { + "ear-left": {"x": -59.724117647058826, "y": 167.36882352941177, "rotation": 10, "width": 150.58823529411765, "height": 225.88235294117646, "path": "aquatic-08-lv2.ear-left"} + }, + "ear-right": { + "ear-right": {"x": -49.32764705882354, "y": -166.79117647058823, "rotation": 169, "width": 148.23529411764707, "height": 225.88235294117646, "path": "aquatic-08-lv2.ear-right"} + }, + "eyes": { + "eyes": {"x": 36.50882352941177, "y": 32.21117647058823, "width": 305.88235294117646, "height": 134.11764705882354, "path": "aquatic-08-lv2.eyes"}, + "eyes-angry": {"x": 36.50882352941177, "y": 24.27, "width": 305.88235294117646, "height": 120.0, "path": "aquatic-08-lv2.eyes-angry"}, + "eyes-happy": {"x": 36.50882352941177, "y": 32.21117647058823, "width": 305.88235294117646, "height": 134.11764705882354, "path": "aquatic-08-lv2.eyes-happy"}, + "eyes-shut": {"x": 36.50882352941177, "y": 32.21117647058823, "width": 305.88235294117646, "height": 134.11764705882354, "path": "aquatic-08-lv2.eyes-shut"} + }, + "horn": {"horn": {"x": 119.00529411764704, "y": -18.95, "rotation": -90, "width": 303.5294117647059, "height": 240.0, "path": "aquatic-08-lv2.horn"}}, + "mouth": { + "mouth": {"x": 4.508823529411768, "y": 52.50529411764706, "width": 185.88235294117646, "height": 103.52941176470588, "path": "aquatic-08-lv2.mouth"}, + "mouth-bite": {"x": 14.214705882352941, "y": 38.328823529411764, "width": 216.47058823529412, "height": 105.88235294117648, "path": "aquatic-08-lv2.mouth-bite"}, + "mouth-open": {"x": 1.508823529411768, "y": 11.917058823529405, "width": 185.88235294117646, "height": 164.7058823529412, "path": "aquatic-08-lv2.mouth-open"}, + "mouth-smile": {"x": 20.62647058823529, "y": 51.50529411764706, "width": 237.64705882352942, "height": 103.52941176470588, "path": "aquatic-08-lv2.mouth-smile"} + }, + "tail": {"tail": {"x": 88.56, "y": 37.384117647058815, "rotation": 5, "width": 320.0, "height": 329.4117647058824, "path": "aquatic-08-lv2.tail"}} + } + } + ], + "events": {"hit": {}, "hit-buff": {}, "jump": {}, "start-attack": {}}, + "keyAnimations": { + "activity/appear": "1023093953", + "activity/bath": "3305387968", + "attack/ranged/cast-fly": "4180526371", + "attack/ranged/cast-high": "164191126", + "attack/ranged/cast-low": "198813017", + "attack/ranged/cast-multi": "151119", + "attack/ranged/cast-tail": "997902532", + "activity/eat-bite": "1137807767", + "activity/eat-chew": "1988236421", + "activity/entrance": "3768378365", + "defense/evade": "1735454995", + "activity/evolve": "649307630", + "battle/get-buff": "1455190363", + "battle/get-debuff": "606904312", + "defense/hit-by-normal": "2045974966", + "defense/hit-by-normal-crit": "2130010601", + "defense/hit-by-normal-dramatic": "3823092125", + "defense/hit-by-ranged-attack": "2224561612", + "defense/hit-with-shield": "390714790", + "attack/melee/horn-gore": "1327954218", + "attack/melee/mouth-bite": "2237748264", + "action/move-back": "3766271173", + "action/move-forward": "2945160014", + "attack/melee/multi-attack": "905926802", + "action/idle/normal": "1659336865", + "attack/melee/normal-attack": "3305373483", + "activity/prepare": "405864717", "action/idle/random-01": "554401889", "action/idle/random-02": "1085666627", "action/idle/random-03": "2021333900", @@ -7967,7 +21538,7 @@ "activity/victory-pose-back-flip": "2227634241" } }, - "aquatic-04": { + "aquatic-02-lv2": { "bones": [ {"name": "@root"}, {"name": "@pivot-main", "parent": "@root"}, {"name": "@pivot-back", "parent": "@pivot-main", "x": 205, "y": 180, "color": "ff0101ff"}, {"name": "@pivot-center", "parent": "@pivot-back", "x": -215.11, "y": -5.25, "color": "ff0101ff"}, @@ -7985,7 +21556,7 @@ {"name": "@mouth", "parent": "@axie", "rotation": -179.04, "x": 382.23, "y": 6.31}, {"name": "body-pattern", "parent": "@body", "rotation": -170.69, "x": -267.21, "y": -49.4, "transform": "noScale"}, {"name": "@shadow", "parent": "@root", "color": "e6d713ff"}, {"name": "@tail", "parent": "@axie", "rotation": -179.04, "x": -11.76, "y": 61.72}, - {"name": "tail", "parent": "@tail", "length": 203.67, "rotation": -12, "x": 16, "y": 72.87, "transform": "noScale"}, + {"name": "tail", "parent": "@tail", "length": 203.67, "rotation": 6, "x": 16, "y": 72.87, "transform": "noScale"}, {"name": "leg-front-right-IK", "parent": "@pivot-main", "x": -195.99, "y": -10.21, "color": "ff3f00ff"}, {"name": "leg-front-left-IK", "parent": "@pivot-main", "x": 42.3, "y": -18.42, "color": "ff3f00ff"}, {"name": "leg-back-left-IK", "parent": "@pivot-main", "x": 208.57, "y": 1.35, "color": "ff3f00ff"}, {"name": "@ball", "parent": "@root", "y": 191, "color": "f3981bff"}, @@ -8007,23 +21578,23 @@ { "name": "default", "attachments": { - "back": {"back": {"x": 65.65, "y": 116.48, "rotation": -60, "width": 193, "height": 239, "path": "aquatic-04.back"}}, - "ear-left": {"ear-left": {"x": 44.77, "y": -6.62, "rotation": -2, "width": 115, "height": 161, "path": "aquatic-04.ear-left"}}, - "ear-right": {"ear-right": {"x": 23.4, "y": 15.32, "rotation": -9, "width": 69, "height": 159, "path": "aquatic-04.ear-right"}}, + "back": {"back": {"x": 79.48, "y": 79.55647058823527, "rotation": -60, "width": 320.0, "height": 357.64705882352945, "path": "aquatic-02-lv2.back"}}, + "ear-left": {"ear-left": {"x": 64.29470588235294, "y": -7.64705882352942, "rotation": -2, "width": 136.47058823529412, "height": 195.29411764705884, "path": "aquatic-02-lv2.ear-left"}}, + "ear-right": {"ear-right": {"x": 25.71882352941176, "y": 17.49, "rotation": -9, "width": 65.88235294117648, "height": 200.0, "path": "aquatic-02-lv2.ear-right"}}, "eyes": { - "eyes": {"x": 31.22, "y": 17.79, "width": 302, "height": 121, "path": "aquatic-04.eyes"}, - "eyes-angry": {"x": 31.22, "y": 17.79, "width": 302, "height": 121, "path": "aquatic-04.eyes-angry"}, - "eyes-happy": {"x": 31.22, "y": 17.79, "width": 302, "height": 121, "path": "aquatic-04.eyes-happy"}, - "eyes-shut": {"x": 31.22, "y": 17.79, "width": 302, "height": 121, "path": "aquatic-04.eyes-shut"} + "eyes": {"x": 30.299411764705884, "y": 34.92588235294117, "width": 272.94117647058823, "height": 150.58823529411765, "path": "aquatic-02-lv2.eyes"}, + "eyes-angry": {"x": 30.299411764705884, "y": 36.57294117647058, "width": 272.94117647058823, "height": 155.29411764705884, "path": "aquatic-02-lv2.eyes-angry"}, + "eyes-happy": {"x": 24.652352941176463, "y": 34.92588235294117, "width": 268.2352941176471, "height": 150.58823529411765, "path": "aquatic-02-lv2.eyes-happy"}, + "eyes-shut": {"x": 30.299411764705884, "y": 34.92588235294117, "width": 272.94117647058823, "height": 150.58823529411765, "path": "aquatic-02-lv2.eyes-shut"} }, - "horn": {"horn": {"x": 85.32, "y": 6.08, "rotation": -90, "width": 205, "height": 230, "path": "aquatic-04.horn"}}, + "horn": {"horn": {"x": 99.33764705882353, "y": -22.240588235294116, "rotation": -90, "width": 291.7647058823529, "height": 192.94117647058823, "path": "aquatic-02-lv2.horn"}}, "mouth": { - "mouth": {"x": 13.22, "y": 31.29, "width": 314, "height": 118, "path": "aquatic-04.mouth"}, - "mouth-bite": {"x": 12.72, "y": 40.79, "width": 361, "height": 97, "path": "aquatic-04.mouth-bite"}, - "mouth-open": {"x": 13.72, "y": 17.29, "width": 327, "height": 176, "path": "aquatic-04.mouth-open"}, - "mouth-smile": {"x": 11.72, "y": 36.29, "width": 333, "height": 110, "path": "aquatic-04.mouth-smile"} + "mouth": {"x": 23.240588235294116, "y": 37.27882352941176, "width": 247.05882352941177, "height": 105.88235294117648, "path": "aquatic-02-lv2.mouth"}, + "mouth-bite": {"x": 27.828823529411768, "y": 43.98470588235294, "width": 305.88235294117646, "height": 96.47058823529412, "path": "aquatic-02-lv2.mouth-bite"}, + "mouth-open": {"x": 23.240588235294116, "y": 29.33764705882352, "width": 247.05882352941177, "height": 171.76470588235296, "path": "aquatic-02-lv2.mouth-open"}, + "mouth-smile": {"x": 29.41705882352942, "y": 36.27882352941176, "width": 284.70588235294116, "height": 105.88235294117648, "path": "aquatic-02-lv2.mouth-smile"} }, - "tail": {"tail": {"x": 86.18, "y": 4.44, "rotation": 12, "width": 244, "height": 212, "path": "aquatic-04.tail"}} + "tail": {"tail": {"x": 126.73882352941177, "y": 22.28882352941177, "rotation": -6, "width": 345.88235294117646, "height": 305.88235294117646, "path": "aquatic-02-lv2.tail"}} } } ], @@ -8072,16 +21643,16 @@ "activity/victory-pose-back-flip": "2227634241" } }, - "bird-08": { + "aquatic-06-lv2": { "bones": [ {"name": "@root"}, {"name": "@pivot-main", "parent": "@root"}, {"name": "@pivot-back", "parent": "@pivot-main", "x": 205, "y": 180, "color": "ff0101ff"}, {"name": "@pivot-center", "parent": "@pivot-back", "x": -215.11, "y": -5.25, "color": "ff0101ff"}, {"name": "@axie", "parent": "@pivot-center", "length": 213.28, "rotation": 179.04, "x": 196.39, "y": 5.16}, {"name": "@back", "parent": "@axie", "rotation": -179.04, "x": 37.63, "y": -198.19}, - {"name": "back", "parent": "@back", "length": 149.41, "rotation": 73, "x": 6.03, "y": 11.3, "transform": "noScale"}, + {"name": "back", "parent": "@back", "length": 149.41, "rotation": 75, "x": -119.97, "y": 59.3, "transform": "noScale"}, {"name": "@body", "parent": "@axie", "length": 226.28, "rotation": -8.35, "x": 224.58, "y": -0.53}, {"name": "@ear-left", "parent": "@axie", "rotation": -179.04, "x": 112.7, "y": -203.23}, - {"name": "ear-left", "parent": "@ear-left", "length": 113.61, "rotation": 138, "x": 41, "y": -55, "transform": "noScale"}, + {"name": "ear-left", "parent": "@ear-left", "length": 113.61, "rotation": 35, "x": -7, "y": -65, "transform": "noScale"}, {"name": "@ear-right", "parent": "@axie", "rotation": -179.04, "x": 405.28, "y": -235.33}, - {"name": "ear-right", "parent": "@ear-right", "length": 119.39, "rotation": 93, "x": -87, "y": -98, "transform": "noScale"}, + {"name": "ear-right", "parent": "@ear-right", "length": 119.39, "rotation": 135, "x": -33, "y": -107, "transform": "noScale"}, {"name": "@eyes", "parent": "@axie", "rotation": -179.04, "x": 384.24, "y": -113.67}, {"name": "@horn", "parent": "@axie", "rotation": -179.04, "x": 327.92, "y": -214.63}, {"name": "horn", "parent": "@horn", "length": 176.72, "rotation": 90, "y": 18, "transform": "noScale"}, {"name": "@leg-back-left", "parent": "@axie", "length": 76.4, "rotation": 100.96, "x": -15.3, "y": 102.56, "transform": "noScale"}, @@ -8090,11 +21661,11 @@ {"name": "@mouth", "parent": "@axie", "rotation": -179.04, "x": 382.23, "y": 6.31}, {"name": "body-pattern", "parent": "@body", "rotation": -170.69, "x": -267.21, "y": -49.4, "transform": "noScale"}, {"name": "@shadow", "parent": "@root", "color": "e6d713ff"}, {"name": "@tail", "parent": "@axie", "rotation": -179.04, "x": -11.76, "y": 61.72}, - {"name": "tail", "parent": "@tail", "length": 203.67, "rotation": -12, "x": 16, "y": 72.87, "transform": "noScale"}, + {"name": "tail", "parent": "@tail", "length": 203.67, "rotation": 5, "x": -1, "y": 39, "transform": "noScale"}, {"name": "leg-front-right-IK", "parent": "@pivot-main", "x": -195.99, "y": -10.21, "color": "ff3f00ff"}, {"name": "leg-front-left-IK", "parent": "@pivot-main", "x": 42.3, "y": -18.42, "color": "ff3f00ff"}, {"name": "leg-back-left-IK", "parent": "@pivot-main", "x": 208.57, "y": 1.35, "color": "ff3f00ff"}, {"name": "@ball", "parent": "@root", "y": 191, "color": "f3981bff"}, - {"name": "ball", "parent": "@ball", "y": -191, "color": "f4a729ff"} + {"name": "ball", "parent": "@ball", "y": -191, "color": "f4a729ff"}, {"name": "@aa", "parent": "@root", "x": -14.82, "y": -58.55} ], "slots": [ {"name": "shadow", "bone": "@shadow", "attachment": "shadow"}, {"name": "ball", "bone": "ball"}, {"name": "leg-front-right", "bone": "@leg-front-right", "attachment": "leg-front-right"}, @@ -8112,23 +21683,23 @@ { "name": "default", "attachments": { - "back": {"back": {"x": 43.85, "y": -1.63, "rotation": -73, "width": 300, "height": 269, "path": "bird-08.back"}}, - "ear-left": {"ear-left": {"x": 62.5, "y": -4.22, "rotation": -138, "width": 148, "height": 124, "path": "bird-08.ear-left"}}, - "ear-right": {"ear-right": {"x": 46.84, "y": 15.69, "rotation": -93, "width": 97, "height": 140, "path": "bird-08.ear-right"}}, + "back": {"back": {"x": 116.91411764705883, "y": -106.41352941176473, "rotation": -75, "width": 249.41176470588235, "height": 397.64705882352945, "path": "aquatic-06-lv2.back"}}, + "ear-left": {"ear-left": {"x": 89.78411764705882, "y": 83.14, "rotation": -35, "width": 129.41176470588235, "height": 160.0, "path": "aquatic-06-lv2.ear-left"}}, + "ear-right": {"ear-right": {"x": 92.58117647058823, "y": -86.66, "rotation": -135, "width": 134.11764705882354, "height": 160.0, "path": "aquatic-06-lv2.ear-right"}}, "eyes": { - "eyes": {"x": 27.88, "y": 27.46, "width": 281, "height": 129, "path": "bird-08.eyes"}, - "eyes-angry": {"x": 27.88, "y": 27.46, "width": 281, "height": 129, "path": "bird-08.eyes-angry"}, - "eyes-happy": {"x": 26.38, "y": 40.46, "width": 224, "height": 119, "path": "bird-08.eyes-happy"}, - "eyes-shut": {"x": 26.38, "y": 36.46, "width": 224, "height": 111, "path": "bird-08.eyes-shut"} + "eyes": {"x": 31.22, "y": 17.79, "width": 304, "height": 121, "path": "aquatic-06-lv2.eyes"}, + "eyes-angry": {"x": 31.22, "y": 17.79, "width": 304, "height": 121, "path": "aquatic-06-lv2.eyes-angry"}, + "eyes-happy": {"x": 31.22, "y": 17.79, "width": 304, "height": 121, "path": "aquatic-06-lv2.eyes-happy"}, + "eyes-shut": {"x": 31.22, "y": 17.79, "width": 304, "height": 121, "path": "aquatic-06-lv2.eyes-shut"} }, - "horn": {"horn": {"x": 69.96, "y": -23.38, "rotation": -90, "width": 234, "height": 146, "path": "bird-08.horn"}}, + "horn": {"horn": {"x": 76.01823529411766, "y": -30.914117647058827, "rotation": -90, "width": 258.8235294117647, "height": 190.58823529411765, "path": "aquatic-06-lv2.horn"}}, "mouth": { - "mouth": {"x": 4.38, "y": 73.46, "width": 116, "height": 125, "path": "bird-08.mouth"}, - "mouth-bite": {"x": 13.88, "y": 73.96, "width": 159, "height": 124, "path": "bird-08.mouth-bite"}, - "mouth-open": {"x": 4.38, "y": 62.46, "width": 144, "height": 161, "path": "bird-08.mouth-open"}, - "mouth-smile": {"x": 9.38, "y": 73.96, "width": 130, "height": 124, "path": "bird-08.mouth-smile"} + "mouth": {"x": 13.22, "y": 31.29, "width": 314, "height": 118, "path": "aquatic-06-lv2.mouth"}, + "mouth-bite": {"x": 12.72, "y": 40.79, "width": 361, "height": 97, "path": "aquatic-06-lv2.mouth-bite"}, + "mouth-open": {"x": 13.72, "y": 17.29, "width": 327, "height": 176, "path": "aquatic-06-lv2.mouth-open"}, + "mouth-smile": {"x": 11.72, "y": 36.29, "width": 333, "height": 110, "path": "aquatic-06-lv2.mouth-smile"} }, - "tail": {"tail": {"x": 79.29, "y": -15.26, "rotation": 12, "width": 248, "height": 255, "path": "bird-08.tail"}} + "tail": {"tail": {"x": 125.31176470588235, "y": 20.72882352941177, "rotation": -5, "width": 261.1764705882353, "height": 265.88235294117646, "path": "aquatic-06-lv2.tail"}} } } ], @@ -8177,16 +21748,16 @@ "activity/victory-pose-back-flip": "2227634241" } }, - "bug-12": { + "aquatic-12-lv2": { "bones": [ {"name": "@root"}, {"name": "@pivot-main", "parent": "@root"}, {"name": "@pivot-back", "parent": "@pivot-main", "x": 205, "y": 180, "color": "ff0101ff"}, {"name": "@pivot-center", "parent": "@pivot-back", "x": -215.11, "y": -5.25, "color": "ff0101ff"}, {"name": "@axie", "parent": "@pivot-center", "length": 213.28, "rotation": 179.04, "x": 196.39, "y": 5.16}, {"name": "@back", "parent": "@axie", "rotation": -179.04, "x": 37.63, "y": -198.19}, - {"name": "back", "parent": "@back", "length": 149.41, "rotation": 58, "x": -79.97, "y": 60.3, "transform": "noScale"}, + {"name": "back", "parent": "@back", "length": 149.41, "rotation": 75, "x": -65.97, "y": 71.3, "transform": "noScale"}, {"name": "@body", "parent": "@axie", "length": 226.28, "rotation": -8.35, "x": 224.58, "y": -0.53}, {"name": "@ear-left", "parent": "@axie", "rotation": -179.04, "x": 112.7, "y": -203.23}, - {"name": "ear-left", "parent": "@ear-left", "length": 113.61, "rotation": 50, "x": -9, "y": -3, "transform": "noScale"}, + {"name": "ear-left", "parent": "@ear-left", "length": 113.61, "rotation": 56, "x": -17, "y": -13, "transform": "noScale"}, {"name": "@ear-right", "parent": "@axie", "rotation": -179.04, "x": 405.28, "y": -235.33}, - {"name": "ear-right", "parent": "@ear-right", "length": 119.39, "rotation": 90, "x": -67, "y": -59, "transform": "noScale"}, + {"name": "ear-right", "parent": "@ear-right", "length": 119.39, "rotation": 116, "x": -10, "y": -42, "transform": "noScale"}, {"name": "@eyes", "parent": "@axie", "rotation": -179.04, "x": 384.24, "y": -113.67}, {"name": "@horn", "parent": "@axie", "rotation": -179.04, "x": 327.92, "y": -214.63}, {"name": "horn", "parent": "@horn", "length": 176.72, "rotation": 90, "y": 18, "transform": "noScale"}, {"name": "@leg-back-left", "parent": "@axie", "length": 76.4, "rotation": 100.96, "x": -15.3, "y": 102.56, "transform": "noScale"}, @@ -8195,18 +21766,18 @@ {"name": "@mouth", "parent": "@axie", "rotation": -179.04, "x": 382.23, "y": 6.31}, {"name": "body-pattern", "parent": "@body", "rotation": -170.69, "x": -267.21, "y": -49.4, "transform": "noScale"}, {"name": "@shadow", "parent": "@root", "color": "e6d713ff"}, {"name": "@tail", "parent": "@axie", "rotation": -179.04, "x": -11.76, "y": 61.72}, - {"name": "tail", "parent": "@tail", "length": 203.67, "rotation": -30, "x": 3, "y": 40, "transform": "noScale"}, + {"name": "tail", "parent": "@tail", "length": 203.67, "rotation": -5, "x": 8, "y": 45, "transform": "noScale"}, {"name": "leg-front-right-IK", "parent": "@pivot-main", "x": -195.99, "y": -10.21, "color": "ff3f00ff"}, {"name": "leg-front-left-IK", "parent": "@pivot-main", "x": 42.3, "y": -18.42, "color": "ff3f00ff"}, {"name": "leg-back-left-IK", "parent": "@pivot-main", "x": 208.57, "y": 1.35, "color": "ff3f00ff"}, {"name": "@ball", "parent": "@root", "y": 191, "color": "f3981bff"}, - {"name": "ball", "parent": "@ball", "y": -191, "color": "f4a729ff"} + {"name": "ball", "parent": "@ball", "y": -191, "color": "f4a729ff"}, {"name": "@", "parent": "@root", "x": -18.3, "y": -49.99} ], "slots": [ {"name": "shadow", "bone": "@shadow", "attachment": "shadow"}, {"name": "ball", "bone": "ball"}, {"name": "leg-front-right", "bone": "@leg-front-right", "attachment": "leg-front-right"}, {"name": "ear-right", "bone": "ear-right", "attachment": "ear-right"}, {"name": "tail", "bone": "tail", "attachment": "tail"}, {"name": "back", "bone": "back", "attachment": "back"}, {"name": "leg-back-left", "bone": "@leg-back-left", "attachment": "leg-back-left"}, {"name": "body", "bone": "@body", "attachment": "body"}, {"name": "body-pattern", "bone": "body-pattern"}, - {"name": "leg-front-left", "bone": "@leg-front-left", "attachment": "leg-front-left"}, {"name": "eyes", "bone": "@eyes"}, {"name": "mouth", "bone": "@mouth", "attachment": "mouth"}, - {"name": "ear-left", "bone": "ear-left", "attachment": "ear-left"}, {"name": "horn", "bone": "horn", "attachment": "horn"} + {"name": "leg-front-left", "bone": "@leg-front-left", "attachment": "leg-front-left"}, {"name": "eyes", "bone": "@eyes", "attachment": "eyes"}, + {"name": "mouth", "bone": "@mouth", "attachment": "mouth"}, {"name": "ear-left", "bone": "ear-left", "attachment": "ear-left"}, {"name": "horn", "bone": "horn", "attachment": "horn"} ], "ik": [ {"name": "leg-back-left-IK", "order": 2, "bones": ["@leg-back-left"], "target": "leg-back-left-IK"}, @@ -8217,23 +21788,27 @@ { "name": "default", "attachments": { - "back": {"back": {"x": 99.82, "y": -19.96, "rotation": -58, "width": 386, "height": 260, "path": "bug-12.back"}}, - "ear-left": {"ear-left": {"x": 55.84, "y": -1.87, "rotation": -50, "width": 109, "height": 117, "path": "bug-12.ear-left"}}, - "ear-right": {"ear-right": {"x": 54.57, "y": 2.67, "rotation": -90, "width": 49, "height": 125, "path": "bug-12.ear-right"}}, + "back": {"back": {"x": 135.09705882352938, "y": -12.794705882352956, "rotation": -75, "width": 244.7058823529412, "height": 463.5294117647059, "path": "aquatic-12-lv2.back"}}, + "ear-left": { + "ear-left": {"x": 133.49470588235295, "y": 30.98294117647058, "rotation": -56, "width": 176.47058823529412, "height": 235.29411764705884, "path": "aquatic-12-lv2.ear-left"} + }, + "ear-right": { + "ear-right": {"x": 121.51470588235294, "y": -20.47705882352942, "rotation": -116, "width": 176.47058823529412, "height": 235.29411764705884, "path": "aquatic-12-lv2.ear-right"} + }, "eyes": { - "eyes": {"x": 25.62, "y": 19.83, "width": 283, "height": 94, "path": "bug-12.eyes"}, - "eyes-angry": {"x": 25.62, "y": 16.33, "width": 283, "height": 79, "path": "bug-12.eyes-angry"}, - "eyes-happy": {"x": 25.62, "y": 28.33, "width": 283, "height": 109, "path": "bug-12.eyes-happy"}, - "eyes-shut": {"x": 25.62, "y": 20.83, "width": 283, "height": 92, "path": "bug-12.eyes-shut"} + "eyes": {"x": 31.22, "y": 17.79, "width": 304, "height": 121, "path": "aquatic-12-lv2.eyes"}, + "eyes-angry": {"x": 31.22, "y": 17.79, "width": 304, "height": 121, "path": "aquatic-12-lv2.eyes-angry"}, + "eyes-happy": {"x": 31.22, "y": 17.79, "width": 304, "height": 121, "path": "aquatic-12-lv2.eyes-happy"}, + "eyes-shut": {"x": 31.22, "y": 17.79, "width": 304, "height": 121, "path": "aquatic-12-lv2.eyes-shut"} }, - "horn": {"horn": {"x": 97.05, "y": -22.35, "rotation": -90, "width": 316, "height": 206, "path": "bug-12.horn"}}, + "horn": {"horn": {"x": 67.90941176470588, "y": -69.65176470588236, "rotation": -90, "width": 352.94117647058823, "height": 178.82352941176472, "path": "aquatic-12-lv2.horn"}}, "mouth": { - "mouth": {"x": 12.62, "y": 46.83, "width": 121, "height": 106, "path": "bug-12.mouth"}, - "mouth-bite": {"x": 33.12, "y": 41.83, "width": 278, "height": 116, "path": "bug-12.mouth-bite"}, - "mouth-open": {"x": 14.12, "y": 6.33, "width": 124, "height": 189, "path": "bug-12.mouth-open"}, - "mouth-smile": {"x": 13.62, "y": 48.83, "width": 161, "height": 104, "path": "bug-12.mouth-smile"} + "mouth": {"x": 13.22, "y": 31.29, "width": 314, "height": 118, "path": "aquatic-12-lv2.mouth"}, + "mouth-bite": {"x": 12.72, "y": 40.79, "width": 361, "height": 97, "path": "aquatic-12-lv2.mouth-bite"}, + "mouth-open": {"x": 13.72, "y": 17.29, "width": 327, "height": 176, "path": "aquatic-12-lv2.mouth-open"}, + "mouth-smile": {"x": 11.72, "y": 36.29, "width": 333, "height": 110, "path": "aquatic-12-lv2.mouth-smile"} }, - "tail": {"tail": {"x": 82.15, "y": 20.38, "rotation": 30, "width": 247, "height": 207, "path": "bug-12.tail"}} + "tail": {"tail": {"x": 132.42823529411766, "y": -11.934705882352942, "rotation": 5, "width": 378.8235294117647, "height": 223.52941176470588, "path": "aquatic-12-lv2.tail"}} } } ], @@ -8282,16 +21857,16 @@ "activity/victory-pose-back-flip": "2227634241" } }, - "japan-01": { + "aquatic-04-lv2": { "bones": [ {"name": "@root"}, {"name": "@pivot-main", "parent": "@root"}, {"name": "@pivot-back", "parent": "@pivot-main", "x": 205, "y": 180, "color": "ff0101ff"}, {"name": "@pivot-center", "parent": "@pivot-back", "x": -215.11, "y": -5.25, "color": "ff0101ff"}, {"name": "@axie", "parent": "@pivot-center", "length": 213.28, "rotation": 179.04, "x": 196.39, "y": 5.16}, {"name": "@back", "parent": "@axie", "rotation": -179.04, "x": 37.63, "y": -198.19}, - {"name": "back", "parent": "@back", "length": 149.41, "rotation": 73, "x": -120.97, "y": 65.3, "transform": "noScale"}, + {"name": "back", "parent": "@back", "length": 149.41, "rotation": 60, "x": 6.8, "y": 15, "transform": "noScale"}, {"name": "@body", "parent": "@axie", "length": 226.28, "rotation": -8.35, "x": 224.58, "y": -0.53}, {"name": "@ear-left", "parent": "@axie", "rotation": -179.04, "x": 112.7, "y": -203.23}, - {"name": "ear-left", "parent": "@ear-left", "length": 113.61, "rotation": -90, "x": 28, "y": -3, "transform": "noScale"}, + {"name": "ear-left", "parent": "@ear-left", "length": 113.61, "rotation": 2, "x": -21, "y": -43, "transform": "noScale"}, {"name": "@ear-right", "parent": "@axie", "rotation": -179.04, "x": 405.28, "y": -235.33}, - {"name": "ear-right", "parent": "@ear-right", "length": 119.39, "rotation": -90, "x": -91, "y": -56, "transform": "noScale"}, + {"name": "ear-right", "parent": "@ear-right", "length": 119.39, "rotation": 9, "x": -120, "y": -105, "transform": "noScale"}, {"name": "@eyes", "parent": "@axie", "rotation": -179.04, "x": 384.24, "y": -113.67}, {"name": "@horn", "parent": "@axie", "rotation": -179.04, "x": 327.92, "y": -214.63}, {"name": "horn", "parent": "@horn", "length": 176.72, "rotation": 90, "y": 18, "transform": "noScale"}, {"name": "@leg-back-left", "parent": "@axie", "length": 76.4, "rotation": 100.96, "x": -15.3, "y": 102.56, "transform": "noScale"}, @@ -8300,7 +21875,7 @@ {"name": "@mouth", "parent": "@axie", "rotation": -179.04, "x": 382.23, "y": 6.31}, {"name": "body-pattern", "parent": "@body", "rotation": -170.69, "x": -267.21, "y": -49.4, "transform": "noScale"}, {"name": "@shadow", "parent": "@root", "color": "e6d713ff"}, {"name": "@tail", "parent": "@axie", "rotation": -179.04, "x": -11.76, "y": 61.72}, - {"name": "tail", "parent": "@tail", "length": 203.67, "rotation": -12, "x": 35, "y": 3, "transform": "noScale"}, + {"name": "tail", "parent": "@tail", "length": 203.67, "rotation": -12, "x": 16, "y": 72.87, "transform": "noScale"}, {"name": "leg-front-right-IK", "parent": "@pivot-main", "x": -195.99, "y": -10.21, "color": "ff3f00ff"}, {"name": "leg-front-left-IK", "parent": "@pivot-main", "x": 42.3, "y": -18.42, "color": "ff3f00ff"}, {"name": "leg-back-left-IK", "parent": "@pivot-main", "x": 208.57, "y": 1.35, "color": "ff3f00ff"}, {"name": "@ball", "parent": "@root", "y": 191, "color": "f3981bff"}, @@ -8322,23 +21897,25 @@ { "name": "default", "attachments": { - "back": {"back": {"x": 150.15, "y": -10.19, "rotation": -73, "width": 373, "height": 353, "path": "japan-01.back"}}, - "ear-left": {"ear-left": {"x": 43.89, "y": 3.14, "rotation": 90, "width": 182, "height": 288, "path": "japan-01.ear-left"}}, - "ear-right": {"ear-right": {"x": 23.89, "y": -3.86, "rotation": 90, "width": 136, "height": 274, "path": "japan-01.ear-right"}}, + "back": {"back": {"x": 99.45470588235294, "y": 80.15647058823531, "rotation": -60, "width": 216.47058823529412, "height": 317.6470588235294, "path": "aquatic-04-lv2.back"}}, + "ear-left": {"ear-left": {"x": 101.04294117647058, "y": 0.7470588235294059, "rotation": -2, "width": 155.29411764705884, "height": 244.7058823529412, "path": "aquatic-04-lv2.ear-left"}}, + "ear-right": { + "ear-right": {"x": 45.578823529411764, "y": 27.98647058823529, "rotation": -9, "width": 65.88235294117648, "height": 237.64705882352942, "path": "aquatic-04-lv2.ear-right"} + }, "eyes": { - "eyes": {"x": 42.14, "y": 21.11, "width": 364, "height": 146, "path": "japan-01.eyes"}, - "eyes-angry": {"x": 41.14, "y": 23.61, "width": 362, "height": 151, "path": "japan-01.eyes-angry"}, - "eyes-happy": {"x": 42.14, "y": 32.61, "width": 364, "height": 129, "path": "japan-01.eyes-happy"}, - "eyes-shut": {"x": 42.14, "y": 30.11, "width": 364, "height": 134, "path": "japan-01.eyes-shut"} + "eyes": {"x": 51.55117647058823, "y": 19.295882352941174, "width": 334.11764705882354, "height": 110.58823529411765, "path": "aquatic-04-lv2.eyes"}, + "eyes-angry": {"x": 51.55117647058823, "y": 19.295882352941174, "width": 334.11764705882354, "height": 110.58823529411765, "path": "aquatic-04-lv2.eyes-angry"}, + "eyes-happy": {"x": 51.55117647058823, "y": 19.295882352941174, "width": 334.11764705882354, "height": 110.58823529411765, "path": "aquatic-04-lv2.eyes-happy"}, + "eyes-shut": {"x": 51.55117647058823, "y": 19.295882352941174, "width": 334.11764705882354, "height": 110.58823529411765, "path": "aquatic-04-lv2.eyes-shut"} }, - "horn": {"horn": {"x": 94.61, "y": 2.36, "rotation": -90, "width": 197, "height": 219, "path": "japan-01.horn"}}, + "horn": {"horn": {"x": 99.61941176470589, "y": -12.404117647058825, "rotation": -90, "width": 312.94117647058823, "height": 230.58823529411765, "path": "aquatic-04-lv2.horn"}}, "mouth": { - "mouth": {"x": 14.14, "y": 38.11, "width": 150, "height": 114, "path": "japan-01.mouth"}, - "mouth-bite": {"x": 26.14, "y": 46.11, "width": 332, "height": 86, "path": "japan-01.mouth-bite"}, - "mouth-open": {"x": 20.14, "y": 5.11, "width": 190, "height": 180, "path": "japan-01.mouth-open"}, - "mouth-smile": {"x": 17.14, "y": 37.61, "width": 154, "height": 65, "path": "japan-01.mouth-smile"} + "mouth": {"x": 27.69823529411765, "y": 17.795882352941174, "width": 338.8235294117647, "height": 150.58823529411765, "path": "aquatic-04-lv2.mouth"}, + "mouth-bite": {"x": 22.67176470588235, "y": 40.61941176470589, "width": 341.1764705882353, "height": 152.94117647058823, "path": "aquatic-04-lv2.mouth-bite"}, + "mouth-open": {"x": 20.05117647058823, "y": 7.060588235294116, "width": 294.11764705882354, "height": 207.05882352941177, "path": "aquatic-04-lv2.mouth-open"}, + "mouth-smile": {"x": 28.727647058823536, "y": 15.59, "width": 331.7647058823529, "height": 160.0, "path": "aquatic-04-lv2.mouth-smile"} }, - "tail": {"tail": {"x": 72.99, "y": 15.62, "rotation": 12, "width": 231, "height": 158, "path": "japan-01.tail"}} + "tail": {"tail": {"x": 99.16529411764705, "y": -0.5947058823529562, "rotation": 12, "width": 263.5294117647059, "height": 263.5294117647059, "path": "aquatic-04-lv2.tail"}} } } ], @@ -8387,40 +21964,36 @@ "activity/victory-pose-back-flip": "2227634241" } }, - "bug-mystic-02": { + "aquatic-10-lv2": { "bones": [ {"name": "@root"}, {"name": "@pivot-main", "parent": "@root"}, {"name": "@pivot-back", "parent": "@pivot-main", "x": 205, "y": 180, "color": "ff0101ff"}, {"name": "@pivot-center", "parent": "@pivot-back", "x": -215.11, "y": -5.25, "color": "ff0101ff"}, {"name": "@axie", "parent": "@pivot-center", "length": 213.28, "rotation": 179.04, "x": 196.39, "y": 5.16}, {"name": "@back", "parent": "@axie", "rotation": -179.04, "x": 37.63, "y": -198.19}, - {"name": "back", "parent": "@back", "length": 149.41, "rotation": 60, "x": -96.97, "y": 79.3, "transform": "noScale"}, + {"name": "back", "parent": "@back", "length": 149.41, "rotation": 60, "x": -21.97, "y": 41.3, "transform": "noScale"}, {"name": "@body", "parent": "@axie", "length": 226.28, "rotation": -8.35, "x": 224.58, "y": -0.53}, {"name": "@ear-left", "parent": "@axie", "rotation": -179.04, "x": 112.7, "y": -203.23}, - {"name": "ear-left", "parent": "@ear-left", "length": 113.61, "rotation": 88, "x": -34, "y": 65, "transform": "noScale"}, + {"name": "ear-left", "parent": "@ear-left", "length": 113.61, "rotation": 2, "x": -21, "y": -43, "transform": "noScale"}, {"name": "@ear-right", "parent": "@axie", "rotation": -179.04, "x": 405.28, "y": -235.33}, - {"name": "ear-right", "parent": "@ear-right", "length": 119.39, "rotation": 94, "x": -15, "y": 18, "transform": "noScale"}, + {"name": "ear-right", "parent": "@ear-right", "length": 119.39, "rotation": 9, "x": -120, "y": -105, "transform": "noScale"}, {"name": "@eyes", "parent": "@axie", "rotation": -179.04, "x": 384.24, "y": -113.67}, {"name": "@horn", "parent": "@axie", "rotation": -179.04, "x": 327.92, "y": -214.63}, - {"name": "horn", "parent": "@horn", "length": 176.72, "rotation": 90, "y": 52, "transform": "noScale"}, + {"name": "horn", "parent": "@horn", "length": 176.72, "rotation": 90, "y": 18, "transform": "noScale"}, {"name": "@leg-back-left", "parent": "@axie", "length": 76.4, "rotation": 100.96, "x": -15.3, "y": 102.56, "transform": "noScale"}, {"name": "@leg-front-left", "parent": "@axie", "length": 51.19, "rotation": 93.86, "x": 134.77, "y": 149.55, "transform": "noScale"}, {"name": "@leg-front-right", "parent": "@axie", "length": 74.83, "rotation": 83.2, "x": 382.95, "y": 121.78, "transform": "noScale"}, {"name": "@mouth", "parent": "@axie", "rotation": -179.04, "x": 382.23, "y": 6.31}, - {"name": "body-class", "parent": "@body", "rotation": -170.69, "x": -286.29, "y": -103.48, "transform": "noScale"}, {"name": "@shadow", "parent": "@root", "color": "e6d713ff"}, + {"name": "body-pattern", "parent": "@body", "rotation": -170.69, "x": -267.21, "y": -49.4, "transform": "noScale"}, {"name": "@shadow", "parent": "@root", "color": "e6d713ff"}, {"name": "@tail", "parent": "@axie", "rotation": -179.04, "x": -11.76, "y": 61.72}, - {"name": "tail", "parent": "@tail", "length": 203.67, "rotation": -25, "x": 50, "y": 57, "transform": "noScale"}, + {"name": "tail", "parent": "@tail", "length": 203.67, "rotation": 13, "x": 16, "y": 31, "transform": "noScale"}, {"name": "leg-front-right-IK", "parent": "@pivot-main", "x": -195.99, "y": -10.21, "color": "ff3f00ff"}, {"name": "leg-front-left-IK", "parent": "@pivot-main", "x": 42.3, "y": -18.42, "color": "ff3f00ff"}, {"name": "leg-back-left-IK", "parent": "@pivot-main", "x": 208.57, "y": 1.35, "color": "ff3f00ff"}, {"name": "@ball", "parent": "@root", "y": 191, "color": "f3981bff"}, - {"name": "ball", "parent": "@ball", "y": -191, "color": "f4a729ff"}, {"name": "body-id", "parent": "@body", "rotation": -170.69, "x": -290.82, "y": -75.84}, - {"name": "mouth-accessory", "parent": "@mouth", "x": 8.74, "y": 77.12}, {"name": "mouth-blink", "parent": "@mouth", "x": 80.68, "y": 82.83} + {"name": "ball", "parent": "@ball", "y": -191, "color": "f4a729ff"}, {"name": "@", "parent": "@root", "x": -35.12, "y": -57.37} ], "slots": [ - {"name": "shadow", "bone": "@shadow", "attachment": "shadow"}, {"name": "ball", "bone": "ball"}, - {"name": "leg-front-right", "bone": "@leg-front-right", "attachment": "mystic-leg-front-right"}, {"name": "ear-right", "bone": "ear-right", "attachment": "ear-right"}, - {"name": "tail", "bone": "tail", "attachment": "tail"}, {"name": "back", "bone": "back", "attachment": "back"}, - {"name": "leg-back-left", "bone": "@leg-back-left", "attachment": "mystic-leg-back-left"}, {"name": "body", "bone": "@body", "attachment": "body-mystic"}, - {"name": "body-class", "bone": "body-class", "attachment": "body-class-aquatic"}, {"name": "leg-front-left", "bone": "@leg-front-left", "attachment": "mystic-leg-front-left"}, - {"name": "eyes", "bone": "@eyes", "attachment": "eyes"}, {"name": "mouth", "bone": "@mouth", "attachment": "mouth"}, {"name": "ear-left", "bone": "ear-left", "attachment": "ear-left"}, - {"name": "horn", "bone": "horn", "attachment": "horn"}, {"name": "body-id", "bone": "body-id", "attachment": "body-id"}, {"name": "mouth-accessory", "bone": "mouth-accessory"}, - {"name": "mouth-blink", "bone": "mouth-blink"} + {"name": "shadow", "bone": "@shadow", "attachment": "shadow"}, {"name": "ball", "bone": "ball"}, {"name": "leg-front-right", "bone": "@leg-front-right", "attachment": "leg-front-right"}, + {"name": "ear-right", "bone": "ear-right", "attachment": "ear-right"}, {"name": "tail", "bone": "tail", "attachment": "tail"}, {"name": "back", "bone": "back", "attachment": "back"}, + {"name": "leg-back-left", "bone": "@leg-back-left", "attachment": "leg-back-left"}, {"name": "body", "bone": "@body", "attachment": "body"}, {"name": "body-pattern", "bone": "body-pattern"}, + {"name": "leg-front-left", "bone": "@leg-front-left", "attachment": "leg-front-left"}, {"name": "eyes", "bone": "@eyes", "attachment": "eyes"}, + {"name": "mouth", "bone": "@mouth", "attachment": "mouth"}, {"name": "ear-left", "bone": "ear-left", "attachment": "ear-left"}, {"name": "horn", "bone": "horn", "attachment": "horn"} ], "ik": [ {"name": "leg-back-left-IK", "order": 2, "bones": ["@leg-back-left"], "target": "leg-back-left-IK"}, @@ -8431,25 +22004,25 @@ { "name": "default", "attachments": { - "back": {"back": {"x": 71.04, "y": -2.85, "rotation": -60, "width": 243, "height": 211, "path": "bug-mystic-02.back"}}, - "ear-left": {"ear-left": {"x": -18.56, "y": -38.66, "rotation": -88, "width": 167, "height": 283, "path": "bug-mystic-02.ear-left"}}, - "ear-right": {"ear-right": {"x": 45.1, "y": -1.63, "rotation": -94, "width": 104, "height": 169, "path": "bug-mystic-02.ear-right"}}, + "back": {"back": {"x": 105.82764705882353, "y": 23.352352941176463, "rotation": -60, "width": 291.7647058823529, "height": 348.2352941176471, "path": "aquatic-10-lv2.back"}}, + "ear-left": {"ear-left": {"x": 57.207058823529415, "y": 1.738823529411768, "rotation": -2, "width": 124.70588235294117, "height": 225.88235294117646, "path": "aquatic-10-lv2.ear-left"}}, + "ear-right": { + "ear-right": {"x": 65.61764705882354, "y": 20.915294117647058, "rotation": -9, "width": 91.76470588235294, "height": 223.52941176470588, "path": "aquatic-10-lv2.ear-right"} + }, "eyes": { - "eyes": {"x": 34.98, "y": 30.1, "width": 353, "height": 157, "path": "bug-mystic-02.eyes"}, - "eyes-angry": {"x": 34.98, "y": 30.1, "width": 353, "height": 157, "path": "bug-mystic-02.eyes-angry"}, - "eyes-happy": {"x": 34.98, "y": 30.1, "width": 353, "height": 157, "path": "bug-mystic-02.eyes-happy"}, - "eyes-shut": {"x": 34.98, "y": 30.1, "width": 353, "height": 157, "path": "bug-mystic-02.eyes-shut"} + "eyes": {"x": 38.2835294117647, "y": 43.787647058823524, "width": 362.3529411764706, "height": 171.76470588235296, "path": "aquatic-10-lv2.eyes"}, + "eyes-angry": {"x": 38.2835294117647, "y": 43.787647058823524, "width": 362.3529411764706, "height": 171.76470588235296, "path": "aquatic-10-lv2.eyes-angry"}, + "eyes-happy": {"x": 38.2835294117647, "y": 43.787647058823524, "width": 362.3529411764706, "height": 171.76470588235296, "path": "aquatic-10-lv2.eyes-happy"}, + "eyes-shut": {"x": 38.2835294117647, "y": 43.787647058823524, "width": 362.3529411764706, "height": 171.76470588235296, "path": "aquatic-10-lv2.eyes-shut"} }, - "horn": {"horn": {"x": 113.6, "y": -18.98, "rotation": -90, "width": 245, "height": 244, "path": "bug-mystic-02.horn"}}, + "horn": {"horn": {"x": 114.31705882352942, "y": 21.24588235294116, "rotation": -90, "width": 324.70588235294116, "height": 270.5882352941177, "path": "aquatic-10-lv2.horn"}}, "mouth": { - "mouth": {"x": -36.02, "y": 59.1, "width": 181, "height": 137, "path": "bug-mystic-02.mouth"}, - "mouth-bite": {"x": -78.02, "y": 52.6, "width": 265, "height": 150, "path": "bug-mystic-02.mouth-bite"}, - "mouth-open": {"x": -0.52, "y": 73.1, "width": 108, "height": 135, "path": "bug-mystic-02.mouth-open"}, - "mouth-smile": {"x": -40.52, "y": 66.6, "width": 190, "height": 122, "path": "bug-mystic-02.mouth-smile"} - }, - "mouth-accessory": {"mouth-accessory": {"x": -52.68, "y": 4.39, "width": 118, "height": 118, "path": "bug-mystic-02.mouth-accessory"}}, - "mouth-blink": {"mouth-smile-blink": {"x": -0.12, "y": -1.32, "width": 37, "height": 36, "path": "bug-mystic-02.mouth-smile-blink"}}, - "tail": {"tail": {"x": 68.45, "y": 10.52, "rotation": 25, "width": 208, "height": 204, "path": "bug-mystic-02.tail"}} + "mouth": {"x": 20.930588235294117, "y": 13.434705882352942, "width": 207.05882352941177, "height": 136.47058823529412, "path": "aquatic-10-lv2.mouth"}, + "mouth-bite": {"x": 28.577647058823537, "y": 35.199411764705886, "width": 331.7647058823529, "height": 112.94117647058823, "path": "aquatic-10-lv2.mouth-bite"}, + "mouth-open": {"x": 31.901176470588233, "y": 3.787647058823522, "width": 294.11764705882354, "height": 171.76470588235296, "path": "aquatic-10-lv2.mouth-open"}, + "mouth-smile": {"x": 11.342352941176465, "y": 27.67, "width": 308.2352941176471, "height": 120.0, "path": "aquatic-10-lv2.mouth-smile"} + }, + "tail": {"tail": {"x": 120.05470588235293, "y": 4.577058823529406, "rotation": -13, "width": 296.47058823529414, "height": 244.7058823529412, "path": "aquatic-10-lv2.tail"}} } } ], @@ -8461,7 +22034,7 @@ "attack/ranged/cast-high": "164191126", "attack/ranged/cast-low": "198813017", "attack/ranged/cast-multi": "151119", - "attack/ranged/cast-tail": "3899988824", + "attack/ranged/cast-tail": "997902532", "activity/eat-bite": "1137807767", "activity/eat-chew": "1988236421", "activity/entrance": "3768378365", @@ -8478,17 +22051,17 @@ "attack/melee/mouth-bite": "2237748264", "action/move-back": "3766271173", "action/move-forward": "2945160014", - "attack/melee/multi-attack": "3861365989", - "action/idle/normal": "2717938682", + "attack/melee/multi-attack": "905926802", + "action/idle/normal": "1659336865", "attack/melee/normal-attack": "3305373483", "activity/prepare": "405864717", "action/idle/random-01": "554401889", - "action/idle/random-02": "3888196768", + "action/idle/random-02": "1085666627", "action/idle/random-03": "2021333900", "action/idle/random-04": "1003789695", "action/idle/random-05": "2745614147", - "action/run": "3858829480", - "draft/run-origin": "3947527336", + "action/run": "1438840721", + "draft/run-origin": "3577885069", "attack/melee/shrimp": "3833448733", "activity/sleep": "100562494", "attack/melee/tail-multi-slap": "3317139533", @@ -8498,284 +22071,1065 @@ "activity/victory-pose-back-flip": "2227634241" } }, - "body-wetdog": { + "summer-ta": { "bones": [ {"name": "@root"}, {"name": "@pivot-main", "parent": "@root"}, {"name": "@pivot-back", "parent": "@pivot-main", "x": 205, "y": 180, "color": "ff0101ff"}, {"name": "@pivot-center", "parent": "@pivot-back", "x": -215.11, "y": -5.25, "color": "ff0101ff"}, - {"name": "@axie", "parent": "@pivot-center", "length": 213.28, "rotation": 179.04, "x": 196.39, "y": 5.16}, {"name": "@back", "parent": "@axie", "rotation": -179.04, "x": 28.05, "y": -224.65}, + {"name": "@axie", "parent": "@pivot-center", "length": 213.28, "rotation": 179.04, "x": 196.39, "y": 5.16}, {"name": "@back", "parent": "@axie", "rotation": -179.04, "x": 37.63, "y": -198.19}, + {"name": "back", "parent": "@back", "length": 149.41, "rotation": 58, "x": -13.97, "y": 26.3, "transform": "noScale"}, {"name": "@body", "parent": "@axie", "length": 226.28, "rotation": -8.35, "x": 224.58, "y": -0.53}, {"name": "@ear-left", "parent": "@axie", "rotation": -179.04, "x": 112.7, "y": -203.23}, - {"name": "@ear-right", "parent": "@axie", "rotation": -179.04, "x": 405.28, "y": -235.33}, {"name": "@eyes", "parent": "@axie", "rotation": -179.04, "x": 384.24, "y": -113.67}, - {"name": "@horn", "parent": "@axie", "rotation": -179.04, "x": 327.92, "y": -214.63}, + {"name": "ear-left", "parent": "@ear-left", "length": 113.61, "rotation": 90, "x": -27, "y": 19, "transform": "noScale"}, + {"name": "@ear-right", "parent": "@axie", "rotation": -179.04, "x": 405.28, "y": -235.33}, + {"name": "ear-right", "parent": "@ear-right", "length": 119.39, "rotation": 93, "x": -30, "y": -15, "transform": "noScale"}, + {"name": "@eyes", "parent": "@axie", "rotation": -179.04, "x": 384.24, "y": -113.67}, {"name": "@horn", "parent": "@axie", "rotation": -179.04, "x": 327.92, "y": -214.63}, + {"name": "horn", "parent": "@horn", "length": 176.72, "rotation": 90, "y": 18, "transform": "noScale"}, {"name": "@leg-back-left", "parent": "@axie", "length": 76.4, "rotation": 100.96, "x": -15.3, "y": 102.56, "transform": "noScale"}, {"name": "@leg-front-left", "parent": "@axie", "length": 51.19, "rotation": 93.86, "x": 134.77, "y": 149.55, "transform": "noScale"}, {"name": "@leg-front-right", "parent": "@axie", "length": 74.83, "rotation": 83.2, "x": 382.95, "y": 121.78, "transform": "noScale"}, - {"name": "@mouth", "parent": "@axie", "rotation": -179.04, "x": 382.23, "y": 6.31}, + {"name": "@mouth", "parent": "@axie", "rotation": -179.04, "x": 382.23, "y": 6.31, "color": "abe323ff"}, {"name": "body-pattern", "parent": "@body", "rotation": -170.69, "x": -267.21, "y": -49.4, "transform": "noScale"}, {"name": "@shadow", "parent": "@root", "color": "e6d713ff"}, - {"name": "@tail", "parent": "@axie", "rotation": -179.04, "x": -11.76, "y": 61.72}, {"name": "leg-front-right-IK", "parent": "@pivot-main", "x": -195.99, "y": -10.21, "color": "ff3f00ff"}, + {"name": "@tail", "parent": "@axie", "rotation": -179.04, "x": -11.76, "y": 61.72}, + {"name": "tail", "parent": "@tail", "length": 203.67, "rotation": -12, "x": 16, "y": 72.87, "transform": "noScale"}, + {"name": "leg-front-right-IK", "parent": "@pivot-main", "x": -195.99, "y": -10.21, "color": "ff3f00ff"}, {"name": "leg-front-left-IK", "parent": "@pivot-main", "x": 42.3, "y": -18.42, "color": "ff3f00ff"}, {"name": "leg-back-left-IK", "parent": "@pivot-main", "x": 208.57, "y": 1.35, "color": "ff3f00ff"}, {"name": "@ball", "parent": "@root", "y": 191, "color": "f3981bff"}, - {"name": "ball", "parent": "@ball", "y": -191, "color": "f4a729ff"}, - {"name": "body-braid-01", "parent": "@body", "length": 52.53, "rotation": 141.89, "x": -213.99, "y": -204.31, "color": "b041ffff"}, - {"name": "body-braid-02", "parent": "body-braid-01", "length": 42.74, "rotation": -30.07, "x": 55.42, "y": -1.8, "color": "b041ffff"}, - {"name": "body-braid-03", "parent": "body-braid-02", "length": 39.84, "rotation": -6.19, "x": 42.77, "y": -2.26, "color": "b041ffff"}, - {"name": "body-braid-04", "parent": "body-braid-03", "length": 38.01, "rotation": 7.31, "x": 39.84, "color": "b041ffff"}, - {"name": "body-braid-05", "parent": "body-braid-04", "length": 35.42, "rotation": 20.92, "x": 38.01, "color": "b041ffff"}, - {"name": "body-braid-06", "parent": "body-braid-05", "length": 47.15, "rotation": 23.46, "x": 35.42, "color": "b041ffff"}, - {"name": "body-fur-under-01", "parent": "@body", "length": 131.33, "rotation": 64.26, "x": 276.01, "y": 46.09, "color": "b041ffff"}, - {"name": "body-fur-under-02", "parent": "@body", "length": 131.33, "rotation": 83.88, "x": 151.54, "y": 62.34, "color": "b041ffff"}, - {"name": "body-fur-under-03", "parent": "@body", "length": 131.33, "rotation": 93.92, "x": -23.49, "y": 40.75, "color": "b041ffff"}, - {"name": "body-fur-under-04", "parent": "@body", "length": 131.33, "rotation": 109.83, "x": -179.56, "y": 4.52, "color": "b041ffff"}, - {"name": "body-fur-under-05", "parent": "@body", "length": 131.33, "rotation": 123.07, "x": -279.3, "y": -57.95, "color": "b041ffff"}, - {"name": "@body-neck", "parent": "@pivot-center", "x": -161.89, "y": -53.75, "color": "ff0101ff"}, - {"name": "@body-ground", "parent": "@pivot-main", "x": 220, "transform": "noRotationOrReflection", "color": "ff0101ff"}, - {"name": "@body-air", "parent": "@pivot-back", "x": 63, "y": 365, "transform": "noRotationOrReflection", "color": "ff0101ff"}, - {"name": "@body-cheek", "parent": "@pivot-center", "x": 15.11, "y": 47.25, "color": "ff0101ff"} + {"name": "ball", "parent": "@ball", "y": -191, "color": "f4a729ff"}, {"name": "mouth-bubble", "parent": "@mouth", "x": -191.16, "y": -1.83}, + {"name": "mouth-accessory", "parent": "mouth-bubble", "x": -67.84, "y": 101.83}, {"name": "eyes-happy-accessory", "parent": "@eyes", "x": 142.51, "y": 62.21}, + {"name": "ear-right-bubble", "parent": "ear-right", "length": 40.07, "rotation": -179.99, "x": 184.94, "y": -20.48}, + {"name": "ear-left-bubble", "parent": "ear-left", "length": 48.54, "rotation": 176.27, "x": 190.98, "y": -21.07, "scaleX": 0.949}, + {"name": "ear-left-all-bubble", "parent": "ear-left", "length": 26.1, "rotation": 0.95, "x": -6.64, "y": -27.7, "color": "3002ffff"}, + {"name": "ear-right-dot-01", "parent": "ear-left-all-bubble", "rotation": -90.95, "x": -13.64, "y": 22.67, "scaleX": 0.3508, "scaleY": 0.3508, "color": "2f9bffff"}, + {"name": "ear-left-dot-01", "parent": "ear-left-all-bubble", "rotation": -90.95, "x": -28.82, "y": -24.72, "scaleX": 0.7755, "scaleY": 0.7755, "color": "2f9bffff"}, + {"name": "ear-right-bubble-02", "parent": "ear-right-bubble", "rotation": 86.99, "x": 63.76, "y": -22.96}, + {"name": "ear-right-bubble-03", "parent": "ear-right-bubble", "rotation": 86.99, "x": 64.99, "y": -1.59}, + {"name": "ear-right-bubble-04", "parent": "ear-right-bubble", "rotation": 86.99, "x": 66.12, "y": 19.85}, + {"name": "ear-left-bubble-02", "parent": "ear-left-bubble", "rotation": 93.73, "x": 68.81, "y": -22.89}, + {"name": "ear-left-bubble-03", "parent": "ear-left-bubble", "rotation": 93.73, "x": 70.45, "y": -0.4}, + {"name": "ear-left-bubble-04", "parent": "ear-left-bubble", "rotation": 93.73, "x": 65.87, "y": 22.28}, + {"name": "ear-right-bubble-05", "parent": "ear-right", "length": 40.07, "rotation": -179.99, "x": 184.94, "y": -20.48}, + {"name": "ear-right-bubble-06", "parent": "ear-right-bubble-05", "rotation": 86.99, "x": 63.76, "y": -22.96}, + {"name": "ear-right-bubble-07", "parent": "ear-right-bubble-05", "rotation": 86.99, "x": 64.99, "y": -1.59}, + {"name": "ear-right-bubble-08", "parent": "ear-right-bubble-05", "rotation": 86.99, "x": 66.12, "y": 19.85}, + {"name": "ear-left-bubble-05", "parent": "ear-left", "length": 48.54, "rotation": 176.27, "x": 190.98, "y": -21.07, "scaleX": 0.991}, + {"name": "ear-left-bubble-06", "parent": "ear-left-bubble-05", "rotation": 93.73, "x": 67.27, "y": -22.98}, + {"name": "ear-left-bubble-07", "parent": "ear-left-bubble-05", "rotation": 93.73, "x": 65.82, "y": -0.69}, + {"name": "ear-left-bubble-08", "parent": "ear-left-bubble-05", "rotation": 93.73, "x": 64.32, "y": 22.18}, + {"name": "ear-right-dot-02", "parent": "ear-left-all-bubble", "rotation": -95.73, "x": -18.26, "y": -8.1, "scaleX": 0.5668, "scaleY": 0.6813, "color": "2f9bffff"}, + {"name": "ear-left-dot-02", "parent": "ear-left-all-bubble", "rotation": -88.74, "x": 8.57, "y": 59.72, "scaleX": 0.6577, "scaleY": 0.5996, "color": "2f9bffff"}, + {"name": "ear-right-dot-03", "parent": "ear-left-all-bubble", "rotation": -87.96, "x": -25.76, "y": -45.18, "scaleX": 0.2583, "scaleY": 0.2881, "color": "2f9bffff"}, + {"name": "ear-right-dot-04", "parent": "ear-left-all-bubble", "rotation": -88.51, "x": -27.05, "y": -31.17, "scaleX": 0.4361, "scaleY": 0.6365, "color": "2f9bffff"}, + {"name": "ear-right-dot-05", "parent": "ear-left-all-bubble", "rotation": -79.32, "x": -5.28, "y": 34.53, "scaleX": 0.5911, "scaleY": 0.8949, "color": "2f9bffff"}, + {"name": "ear-left-dot-03", "parent": "ear-left-all-bubble", "rotation": -90.95, "x": -10.57, "y": 11.72, "scaleX": 0.8206, "scaleY": 0.8206, "color": "2f9bffff"}, + {"name": "ear-left-dot-04", "parent": "ear-left-all-bubble", "rotation": -90.95, "x": 11.94, "y": 65.23, "scaleX": 0.7096, "scaleY": 0.7096, "color": "2f9bffff"}, + {"name": "ear-left-dot-05", "parent": "ear-left-all-bubble", "rotation": -88.35, "x": 10.11, "y": 68.29, "scaleX": 0.4014, "scaleY": 0.366, "color": "2f9bffff"}, + {"name": "ear-left-dot-06", "parent": "ear-left-all-bubble", "rotation": -90.95, "x": 34.65, "y": 74.95, "scaleX": 0.8206, "scaleY": 0.8206, "color": "2f9bffff"}, + {"name": "ear-right-dot-06", "parent": "ear-left-all-bubble", "rotation": -90.95, "x": -11.77, "y": 50.86, "scaleX": 0.4361, "scaleY": 0.4361, "color": "2f9bffff"}, + {"name": "ear-right-dot-07", "parent": "ear-left-all-bubble", "rotation": -96.07, "x": -32.28, "y": -4.86, "scaleX": 0.5668, "scaleY": 0.6813, "color": "2f9bffff"}, + {"name": "ear-right-dot-08", "parent": "ear-left-all-bubble", "rotation": -90.23, "x": -18.31, "y": -61.25, "scaleX": 0.7405, "scaleY": 0.826, "color": "2f9bffff"}, + {"name": "ear-right-dot-09", "parent": "ear-left-all-bubble", "rotation": -93.53, "x": -9.54, "y": 52.15, "scaleX": 0.2863, "scaleY": 0.3229, "color": "2f9bffff"}, + {"name": "ear-right-dot-10", "parent": "ear-left-all-bubble", "rotation": -81.97, "x": -31.43, "y": 21.83, "scaleX": 0.5911, "scaleY": 0.8949, "color": "2f9bffff"}, + {"name": "ear-right-all-bubble", "parent": "ear-right", "length": 26.1, "rotation": 3.44, "x": -10.08, "y": -8.05, "color": "3002ffff"}, + {"name": "ear-right-dot-11", "parent": "ear-right-all-bubble", "rotation": -96.44, "x": 10.27, "y": -24.86, "scaleX": 0.3508, "scaleY": 0.3508, "color": "2f9bffff"}, + {"name": "ear-left-dot-07", "parent": "ear-right-all-bubble", "rotation": -96.44, "x": 27.18, "y": -39.33, "scaleX": 0.7755, "scaleY": 0.7755, "color": "2f9bffff"}, + {"name": "ear-right-dot-12", "parent": "ear-right-all-bubble", "rotation": -101.56, "x": -18.26, "y": -8.1, "scaleX": 0.5668, "scaleY": 0.6813, "color": "2f9bffff"}, + {"name": "ear-left-dot-08", "parent": "ear-right-all-bubble", "rotation": -93.99, "x": -7.49, "y": -14.12, "scaleX": 0.6577, "scaleY": 0.5996, "color": "2f9bffff"}, + {"name": "ear-right-dot-13", "parent": "ear-right-all-bubble", "rotation": -93.67, "x": 43.59, "y": -57.74, "scaleX": 0.2583, "scaleY": 0.2881, "color": "2f9bffff"}, + {"name": "ear-right-dot-14", "parent": "ear-right-all-bubble", "rotation": -96.49, "x": 8.09, "y": -20.73, "scaleX": 0.4361, "scaleY": 0.6365, "color": "2f9bffff"}, + {"name": "ear-right-dot-15", "parent": "ear-right-all-bubble", "rotation": -84.65, "x": -5.28, "y": 34.53, "scaleX": 0.5911, "scaleY": 0.8949, "color": "2f9bffff"}, + {"name": "ear-left-dot-09", "parent": "ear-right-all-bubble", "rotation": -96.44, "x": -10.57, "y": 11.72, "scaleX": 0.8206, "scaleY": 0.8206, "color": "2f9bffff"}, + {"name": "ear-left-dot-10", "parent": "ear-right-all-bubble", "rotation": -96.44, "x": -13.81, "y": 2.57, "scaleX": 0.7096, "scaleY": 0.7096, "color": "2f9bffff"}, + {"name": "ear-left-dot-11", "parent": "ear-right-all-bubble", "rotation": -93.79, "x": -9.28, "y": 21.87, "scaleX": 0.4014, "scaleY": 0.366, "color": "2f9bffff"}, + {"name": "ear-left-dot-12", "parent": "ear-right-all-bubble", "rotation": -96.44, "x": -2.52, "y": 33.38, "scaleX": 0.8206, "scaleY": 0.8206, "color": "2f9bffff"}, + {"name": "ear-right-dot-16", "parent": "ear-right-all-bubble", "rotation": -96.44, "x": -4.07, "y": -34.4, "scaleX": 0.4361, "scaleY": 0.4361, "color": "2f9bffff"}, + {"name": "ear-right-dot-17", "parent": "ear-right-all-bubble", "rotation": -101.7, "x": 4.16, "y": -7.75, "scaleX": 0.5668, "scaleY": 0.6813, "color": "2f9bffff"}, + {"name": "ear-right-dot-18", "parent": "ear-right-all-bubble", "rotation": -96.34, "x": 27.4, "y": -55.17, "scaleX": 0.7405, "scaleY": 0.826, "color": "2f9bffff"}, + {"name": "ear-right-dot-19", "parent": "ear-right-all-bubble", "rotation": -99.41, "x": -9.54, "y": 52.15, "scaleX": 0.2863, "scaleY": 0.3229, "color": "2f9bffff"}, + {"name": "ear-right-dot-20", "parent": "ear-right-all-bubble", "rotation": -86.28, "x": 12.43, "y": -37.05, "scaleX": 0.5911, "scaleY": 0.8949, "color": "2f9bffff"}, + {"name": "mouth-bubble-core", "parent": "mouth-accessory"}, {"name": "eyes-light-left", "parent": "@eyes", "length": 15.08, "rotation": -135.48, "x": 69.15, "y": -15.18}, + {"name": "eyes-light-right", "parent": "@eyes", "length": 15.08, "rotation": -135.48, "x": -97.9, "y": -16.49}, {"name": "eyes-light-dot", "parent": "@eyes", "x": -66.73, "y": 27.82}, + {"name": "eyes-light-dot-02", "parent": "@eyes", "x": 103.19, "y": 27.82} ], "slots": [ - {"name": "shadow", "bone": "@shadow", "attachment": "shadow"}, {"name": "ball", "bone": "ball"}, {"name": "leg-front-right", "bone": "@leg-front-right", "attachment": "leg-front-right"}, - {"name": "leg-back-left", "bone": "@leg-back-left", "attachment": "leg-back-left"}, {"name": "leg-front-left", "bone": "@leg-front-left", "attachment": "leg-front-left"}, - {"name": "body", "bone": "@body", "attachment": "body-wetdog"}, {"name": "body-braid", "bone": "body-braid-01", "attachment": "body-braid"}, {"name": "body-pattern", "bone": "body-pattern"}, - {"name": "body-neck", "bone": "@body-neck", "attachment": "body-neck"}, {"name": "body-ground", "bone": "@body-ground", "attachment": "body-ground"}, - {"name": "body-air", "bone": "@body-air", "attachment": "body-air"}, {"name": "body-cheek", "bone": "@body-cheek", "attachment": "body-cheek"} + {"name": "shadow", "bone": "@shadow", "attachment": "shadow"}, {"name": "ball", "bone": "ball"}, + {"name": "leg-front-right", "bone": "@leg-front-right", "attachment": "summer-leg-front-right"}, {"name": "tail", "bone": "tail", "attachment": "tail"}, + {"name": "back", "bone": "back", "attachment": "back"}, {"name": "leg-back-left", "bone": "@leg-back-left", "attachment": "summer-leg-back-left"}, + {"name": "body", "bone": "@body", "attachment": "body"}, {"name": "body-pattern", "bone": "body-pattern"}, {"name": "ear-right-under", "bone": "ear-right", "attachment": "ear-right-under"}, + {"name": "ear-left-dot-07", "bone": "ear-left-dot-07", "color": "ffffff00", "attachment": "ear-left-dot"}, + {"name": "ear-left-dot-10", "bone": "ear-left-dot-10", "color": "ffffff00", "attachment": "ear-left-dot"}, + {"name": "ear-left-dot-09", "bone": "ear-left-dot-09", "color": "ffffff00", "attachment": "ear-left-dot"}, + {"name": "ear-left-dot-12", "bone": "ear-left-dot-12", "color": "ffffff00", "attachment": "ear-left-dot"}, + {"name": "ear-left-dot-08", "bone": "ear-left-dot-08", "color": "ffffff00", "attachment": "ear-left-dot"}, + {"name": "ear-left-dot-11", "bone": "ear-left-dot-11", "color": "ffffff00", "attachment": "ear-left-dot"}, + {"name": "ear-right-dot-11", "bone": "ear-right-dot-11", "color": "ffffff00", "attachment": "ear-right-dot"}, + {"name": "ear-right-dot-16", "bone": "ear-right-dot-16", "color": "ffffff00", "attachment": "ear-right-dot"}, + {"name": "ear-right-dot-12", "bone": "ear-right-dot-12", "color": "ffffff00", "attachment": "ear-right-dot"}, + {"name": "ear-right-dot-17", "bone": "ear-right-dot-17", "color": "ffffff00", "attachment": "ear-right-dot"}, + {"name": "ear-right-dot-13", "bone": "ear-right-dot-13", "color": "ffffff00", "attachment": "ear-right-dot"}, + {"name": "ear-right-dot-18", "bone": "ear-right-dot-18", "color": "ffffff00", "attachment": "ear-right-dot"}, + {"name": "ear-right-dot-14", "bone": "ear-right-dot-14", "color": "ffffff00", "attachment": "ear-right-dot"}, + {"name": "ear-right-dot-19", "bone": "ear-right-dot-19", "color": "ffffff00", "attachment": "ear-right-dot"}, + {"name": "ear-right-dot-15", "bone": "ear-right-dot-15", "color": "ffffff00", "attachment": "ear-right-dot"}, + {"name": "ear-right-dot-20", "bone": "ear-right-dot-20", "color": "ffffff00", "attachment": "ear-right-dot"}, + {"name": "ear-right-bubble", "bone": "ear-right-bubble", "color": "00f7c2ff", "attachment": "ear-right-bubble"}, + {"name": "ear-right-bubble-02", "bone": "ear-right-bubble-05", "attachment": "ear-right-bubble"}, {"name": "ear-right-upper", "bone": "ear-right", "attachment": "ear-right-upper"}, + {"name": "leg-front-left", "bone": "@leg-front-left", "attachment": "summer-leg-front-left"}, {"name": "eyes", "bone": "@eyes", "attachment": "eyes"}, + {"name": "eyes-light-dot", "bone": "eyes-light-dot", "attachment": "eye-light-dot"}, {"name": "eyes-light-dot-02", "bone": "eyes-light-dot-02", "attachment": "eye-light-dot"}, + {"name": "eyes-light-left", "bone": "eyes-light-left", "color": "fff96500", "attachment": "light", "blend": "additive"}, + {"name": "eyes-light-right", "bone": "eyes-light-right", "color": "fff96500", "attachment": "light", "blend": "additive"}, {"name": "eyes-upper", "bone": "@eyes", "attachment": "eyes-upper"}, + {"name": "mouth", "bone": "@mouth", "attachment": "mouth"}, {"name": "horn", "bone": "horn", "attachment": "horn"}, + {"name": "ear-left-under", "bone": "ear-left", "attachment": "ear-left-under"}, {"name": "ear-left-dot-01", "bone": "ear-left-dot-01", "color": "ffffff00", "attachment": "ear-left-dot"}, + {"name": "ear-left-dot-04", "bone": "ear-left-dot-04", "color": "ffffff00", "attachment": "ear-left-dot"}, + {"name": "ear-left-dot-03", "bone": "ear-left-dot-03", "color": "ffffff00", "attachment": "ear-left-dot"}, + {"name": "ear-left-dot-06", "bone": "ear-left-dot-06", "color": "ffffff00", "attachment": "ear-left-dot"}, + {"name": "ear-left-dot-02", "bone": "ear-left-dot-02", "color": "ffffff00", "attachment": "ear-left-dot"}, + {"name": "ear-left-dot-05", "bone": "ear-left-dot-05", "color": "ffffff00", "attachment": "ear-left-dot"}, + {"name": "ear-right-dot-01", "bone": "ear-right-dot-01", "color": "ffffff00", "attachment": "ear-right-dot"}, + {"name": "ear-right-dot-06", "bone": "ear-right-dot-06", "color": "ffffff00", "attachment": "ear-right-dot"}, + {"name": "ear-right-dot-02", "bone": "ear-right-dot-02", "color": "ffffff00", "attachment": "ear-right-dot"}, + {"name": "ear-right-dot-07", "bone": "ear-right-dot-07", "color": "ffffff00", "attachment": "ear-right-dot"}, + {"name": "ear-right-dot-03", "bone": "ear-right-dot-03", "color": "ffffff00", "attachment": "ear-right-dot"}, + {"name": "ear-right-dot-08", "bone": "ear-right-dot-08", "color": "ffffff00", "attachment": "ear-right-dot"}, + {"name": "ear-right-dot-04", "bone": "ear-right-dot-04", "color": "ffffff00", "attachment": "ear-right-dot"}, + {"name": "ear-right-dot-09", "bone": "ear-right-dot-09", "color": "ffffff00", "attachment": "ear-right-dot"}, + {"name": "ear-right-dot-05", "bone": "ear-right-dot-05", "color": "ffffff00", "attachment": "ear-right-dot"}, + {"name": "ear-right-dot-10", "bone": "ear-right-dot-10", "color": "ffffff00", "attachment": "ear-right-dot"}, + {"name": "ear-left-bubble", "bone": "ear-left-bubble", "color": "00f7c2ff", "attachment": "ear-left-bubble"}, + {"name": "ear-left-bubble-02", "bone": "ear-left-bubble-05", "attachment": "ear-left-bubble"}, {"name": "ear-left-upper", "bone": "ear-left", "attachment": "ear-left-upper"}, + {"name": "eyes-happy-accessory", "bone": "eyes-happy-accessory", "color": "ffffff00", "attachment": "eyes-happy-accessory", "blend": "additive"}, + {"name": "mouth-accessory", "bone": "mouth-accessory", "color": "ffffff00", "attachment": "mouth-accessory"} ], "ik": [ - {"name": "leg-back-left-IK", "order": 2, "bones": ["@leg-back-left"], "target": "leg-back-left-IK"}, - {"name": "leg-front-left-IK", "order": 1, "bones": ["@leg-front-left"], "target": "leg-front-left-IK"}, + {"name": "leg-back-left-IK", "order": 3, "bones": ["@leg-back-left"], "target": "leg-back-left-IK"}, + {"name": "leg-front-left-IK", "order": 2, "bones": ["@leg-front-left"], "target": "leg-front-left-IK"}, {"name": "leg-front-right-IK", "bones": ["@leg-front-right"], "target": "leg-front-right-IK"} ], + "transform": [{"name": "@mouth", "order": 1, "bones": ["mouth-bubble"], "target": "@mouth", "x": -49.1, "y": 37.9, "rotateMix": 0, "translateMix": 0, "scaleMix": 0, "shearMix": 0}], "skins": [ { "name": "default", "attachments": { - "ball": {"ball": {"y": 191, "width": 393, "height": 390, "path": "body-normal.ball"}}, - "body": { - "body-wetdog": { + "back": {"back": {"x": 110.08705882352942, "y": 18.573529411764696, "rotation": -58, "width": 284.70588235294116, "height": 362.3529411764706, "path": "summer-ta.back"}}, + "ear-left-bubble": { + "ear-left-bubble": { + "type": "mesh", + "uvs": [ + 0.87714, 0.57697, 0.91393, 0.67811, 0.94364, 0.75977, 0.96133, 0.8176, 0.97838, 0.87333, 1, 0.94398, 0.93104, 0.94427, 0.90524, 0.94438, 0.88494, 0.94447, 0.85255, 0.94461, 0.82176, + 0.94474, 0.79396, 0.94486, 0.76382, 0.94499, 0.73767, 0.9451, 0.70713, 0.94523, 0.67579, 0.94536, 0.64108, 0.94551, 0.61244, 0.94564, 0.5758, 0.94579, 0.5367, 0.94596, 0.50394, + 0.9461, 0.47091, 0.94624, 0.435, 0.94639, 0.39675, 0.94656, 0.36198, 0.94671, 0.32916, 0.94685, 0.29359, 0.947, 0.25022, 0.94718, 0.20956, 0.94736, 0.17261, 0.94751, 0.12749, + 0.94771, 0.1012, 0.94782, 0.07834, 0.94792, 0.0457, 0.94806, 0.02123, 0.94816, 0, 0.94825, 0, 0.86703, 0, 0.81359, 0, 0.73715, 0.02817, 0.68242, 0.07791, 0.5858, 0.37947, 0, 0.46651, + 0, 0.5261, 0, 0.59994, 0, 0.66726, 0, 0.02864, 0.86721, 0.04805, 0.81379, 0.07275, 0.7389, 0.0999, 0.68207, 0.14259, 0.58508, 0.49108, 0.58123, 0.82646, 0.57753, 0.86109, 0.67837, + 0.88458, 0.75835, 0.90003, 0.81734, 0.91424, 0.87292, 0.48557, 0.6802, 0.48069, 0.74867, 0.47772, 0.81558, 0.4758, 0.87009, 0.29126, 0.58344, 0.25576, 0.68132, 0.23492, 0.74278, + 0.2135, 0.81448, 0.19874, 0.86831, 0.19271, 0.49455, 0.4968, 0.48641, 0.79002, 0.48462, 0.25666, 0.37903, 0.50462, 0.35653, 0.74321, 0.36527, 0.68757, 0.57906, 0.70466, 0.67913, + 0.71716, 0.75434, 0.72541, 0.81661, 0.73109, 0.87174, 0.67152, 0.48534, 0.32349, 0.49105, 0.38378, 0.58242, 0.36974, 0.68076, 0.36036, 0.74579, 0.34895, 0.81504, 0.34148, 0.86923, + 0.20652, 0.58437, 0.16979, 0.68173, 0.1462, 0.74066, 0.12077, 0.81409, 0.10379, 0.8677, 0.59158, 0.58012, 0.59921, 0.67965, 0.60299, 0.7516, 0.60776, 0.81612, 0.60866, 0.87095, + 0.76107, 0.57825, 0.78751, 0.67873, 0.81003, 0.75656, 0.82525, 0.81703, 0.83754, 0.87243, 0.10852, 0.73975, 0.08479, 0.81394, 0.06934, 0.86747, 0.15113, 0.868, 0.1657, 0.81428, + 0.18746, 0.74164, 0.29675, 0.74426, 0.28022, 0.81476, 0.26841, 0.86876, 0.41495, 0.7471, 0.40761, 0.81529, 0.4031, 0.86963, 0.53765, 0.87049, 0.53762, 0.81583, 0.53944, 0.75008, + 0.6595, 0.75296, 0.66217, 0.81635, 0.66857, 0.87134, 0.78397, 0.87208, 0.7758, 0.81682, 0.76492, 0.75548, 0.74852, 0.67892, 0.82675, 0.67854, 0.84222, 0.75734, 0.8595, 0.81717, + 0.87132, 0.87264, 0.01186, 0.9147, 0.056, 0.91293, 0.08943, 0.91297, 0.13846, 0.91074, 0.18465, 0.91102, 0.25824, 0.91262, 0.33507, 0.90958, 0.39978, 0.90977, 0.47313, 0.91161, + 0.53714, 0.91117, 0.61061, 0.90948, 0.67252, 0.91178, 0.73471, 0.91209, 0.78925, 0.91054, 0.84557, 0.91105, 0.87872, 0.91169, 0.92292, 0.90979, 0.21772, 0.91173, 0.11081, 0.912, + 0.02923, 0.91401, 0.29821, 0.91104, 0.36548, 0.90967, 0.43685, 0.9107, 0.50336, 0.9114, 0.57635, 0.91027, 0.64066, 0.9106, 0.70543, 0.91195, 0.76031, 0.91136, 0.81833, 0.9108, + 0.89934, 0.9108 + ], + "triangles": [ + 85, 86, 49, 86, 99, 49, 101, 47, 100, 34, 125, 144, 35, 125, 34, 125, 46, 144, 46, 47, 101, 47, 48, 100, 122, 121, 53, 56, 55, 3, 47, 46, 37, 49, 50, 85, 85, 50, 84, 48, 39, 49, 46, + 36, 37, 38, 39, 48, 49, 40, 50, 39, 40, 49, 5, 6, 4, 55, 54, 2, 55, 2, 3, 95, 94, 52, 54, 1, 2, 121, 52, 53, 53, 0, 1, 53, 52, 0, 113, 57, 90, 108, 80, 57, 62, 61, 80, 80, 79, 57, + 80, 61, 79, 57, 89, 90, 57, 51, 89, 57, 79, 51, 90, 72, 73, 90, 89, 72, 40, 69, 66, 84, 66, 61, 61, 78, 79, 61, 66, 78, 51, 79, 67, 51, 67, 89, 67, 79, 78, 89, 77, 72, 89, 67, 77, + 72, 77, 94, 94, 68, 52, 94, 77, 68, 66, 69, 78, 41, 69, 40, 67, 78, 70, 67, 70, 77, 70, 78, 69, 77, 71, 68, 77, 70, 71, 71, 45, 0, 69, 42, 70, 69, 41, 42, 71, 70, 44, 70, 43, 44, 44, + 45, 71, 71, 0, 68, 70, 42, 43, 52, 68, 0, 54, 53, 1, 56, 3, 4, 50, 40, 66, 50, 66, 84, 47, 37, 38, 48, 47, 38, 125, 36, 46, 35, 36, 125, 48, 49, 99, 121, 95, 52, 122, 53, 54, 144, + 46, 126, 100, 48, 99, 62, 84, 61, 123, 54, 55, 94, 73, 72, 85, 84, 62, 113, 90, 91, 141, 56, 4, 6, 141, 4, 124, 55, 56, 17, 150, 16, 17, 135, 150, 16, 136, 15, 16, 150, 136, 15, 151, + 14, 15, 136, 151, 14, 137, 13, 14, 151, 137, 13, 152, 12, 13, 137, 152, 12, 138, 11, 12, 152, 138, 11, 153, 10, 11, 138, 153, 10, 139, 9, 10, 153, 139, 9, 140, 8, 9, 139, 140, 8, + 154, 7, 8, 140, 154, 7, 141, 6, 7, 154, 141, 152, 137, 76, 137, 151, 76, 76, 151, 116, 150, 116, 136, 151, 136, 116, 154, 140, 124, 152, 117, 138, 152, 76, 117, 153, 98, 139, 140, + 139, 124, 139, 98, 124, 154, 56, 141, 154, 124, 56, 98, 153, 117, 116, 150, 93, 153, 138, 117, 150, 135, 93, 98, 123, 124, 124, 123, 55, 117, 97, 98, 98, 97, 123, 76, 118, 117, 117, + 118, 97, 116, 75, 76, 76, 75, 118, 93, 115, 116, 116, 115, 75, 93, 92, 115, 97, 122, 123, 123, 122, 54, 118, 96, 97, 97, 96, 122, 75, 119, 118, 118, 119, 96, 115, 74, 75, 75, 74, + 119, 92, 114, 115, 115, 114, 74, 92, 91, 114, 96, 121, 122, 119, 95, 96, 96, 95, 121, 74, 120, 119, 119, 120, 95, 114, 73, 74, 74, 73, 120, 73, 114, 90, 114, 91, 90, 120, 73, 94, + 120, 94, 95, 58, 57, 113, 25, 131, 24, 24, 146, 23, 24, 131, 146, 23, 132, 22, 23, 146, 132, 22, 147, 21, 22, 132, 147, 20, 133, 148, 20, 21, 133, 21, 147, 133, 20, 148, 19, 19, 134, + 18, 19, 148, 134, 18, 135, 17, 18, 149, 135, 18, 134, 149, 148, 133, 60, 133, 147, 60, 134, 148, 111, 134, 111, 149, 111, 148, 60, 132, 110, 147, 147, 110, 60, 149, 93, 135, 149, + 111, 93, 132, 146, 110, 131, 83, 146, 146, 83, 110, 111, 92, 93, 60, 59, 111, 59, 112, 111, 111, 112, 92, 110, 109, 60, 60, 109, 59, 83, 82, 110, 110, 82, 109, 92, 112, 91, 112, 113, + 91, 59, 58, 112, 112, 58, 113, 109, 108, 59, 59, 108, 58, 82, 81, 109, 109, 81, 108, 58, 108, 57, 81, 80, 108, 34, 144, 33, 126, 46, 101, 33, 126, 32, 33, 144, 126, 32, 127, 31, 32, + 126, 127, 31, 143, 30, 31, 127, 143, 30, 128, 29, 30, 143, 128, 29, 129, 28, 29, 128, 129, 28, 142, 27, 28, 129, 142, 27, 130, 26, 27, 142, 130, 26, 145, 25, 26, 130, 145, 25, 145, + 131, 126, 101, 127, 127, 88, 143, 127, 101, 88, 130, 107, 145, 130, 142, 107, 143, 88, 128, 129, 65, 142, 142, 65, 107, 131, 145, 83, 128, 102, 129, 129, 102, 65, 128, 88, 102, 83, + 145, 107, 107, 106, 83, 83, 106, 82, 65, 64, 107, 107, 64, 106, 102, 103, 65, 65, 103, 64, 88, 87, 102, 102, 87, 103, 101, 100, 88, 88, 100, 87, 106, 105, 82, 82, 105, 81, 64, 63, + 106, 106, 63, 105, 103, 104, 64, 64, 104, 63, 87, 86, 103, 103, 86, 104, 100, 99, 87, 87, 99, 86, 81, 105, 80, 63, 62, 105, 105, 62, 80, 62, 63, 85, 86, 85, 104, 63, 104, 85 + ], + "vertices": [ + 4, 39, 58.43, 20.31, 0.00012, 40, 36.09, 20.31, 0.00054, 41, 13.17, 20.31, 0.12631, 32, 43.2, 34, 0.87302, 3, 40, 39.33, 12.22, 0.00019, 41, 16.41, 12.22, 0.19743, 32, 51.06, 37.76, + 0.80237, 3, 40, 41.94, 5.69, 6e-05, 41, 19.02, 5.69, 0.26715, 32, 57.41, 40.79, 0.73278, 3, 40, 43.5, 1.06, 1e-05, 41, 20.58, 1.06, 0.33542, 32, 61.92, 42.65, 0.66457, 3, 40, 45, + -3.4, 1e-05, 41, 22.08, -3.4, 0.40033, 32, 66.27, 44.44, 0.59966, 3, 40, 46.9, -9.05, 0, 41, 23.98, -9.05, 0.45012, 32, 71.79, 46.7, 0.54988, 3, 40, 40.83, -9.07, 0, 41, 17.91, + -9.07, 0.5829, 32, 72.21, 40.65, 0.4171, 3, 40, 38.56, -9.08, 4e-05, 41, 15.64, -9.08, 0.72131, 32, 72.37, 38.38, 0.27865, 3, 40, 36.78, -9.09, 0.00031, 41, 13.86, -9.09, 0.8264, 32, + 72.49, 36.6, 0.17329, 3, 40, 33.93, -9.1, 0.00157, 41, 11, -9.1, 0.90359, 32, 72.69, 33.76, 0.09484, 3, 40, 31.22, -9.11, 0.00537, 41, 8.3, -9.11, 0.94975, 32, 72.87, 31.05, 0.04488, + 3, 40, 28.77, -9.12, 0.01601, 41, 5.85, -9.12, 0.96404, 32, 73.04, 28.61, 0.01996, 3, 40, 26.12, -9.13, 0.03803, 41, 3.2, -9.13, 0.95562, 32, 73.22, 25.97, 0.00635, 3, 40, 23.82, + -9.14, 0.08031, 41, 0.9, -9.14, 0.91597, 32, 73.38, 23.67, 0.00372, 4, 39, 43.47, -9.15, 0, 40, 21.13, -9.15, 0.14592, 41, -1.79, -9.15, 0.85165, 32, 73.57, 20.99, 0.00243, 4, 39, + 40.71, -9.16, 2e-05, 40, 18.37, -9.16, 0.23867, 41, -4.55, -9.16, 0.75671, 32, 73.76, 18.24, 0.0046, 4, 39, 37.66, -9.17, 0.00014, 40, 15.32, -9.17, 0.35275, 41, -7.6, -9.17, + 0.64256, 32, 73.97, 15.19, 0.00455, 4, 39, 35.13, -9.18, 0.00092, 40, 12.8, -9.18, 0.48034, 41, -10.13, -9.18, 0.51198, 32, 74.14, 12.68, 0.00676, 4, 39, 31.91, -9.19, 0.00375, 40, + 9.57, -9.19, 0.61095, 41, -13.35, -9.19, 0.38019, 32, 74.36, 9.46, 0.00512, 4, 39, 28.47, -9.21, 0.01298, 40, 6.13, -9.21, 0.72267, 41, -16.79, -9.21, 0.25841, 32, 74.6, 6.03, + 0.00594, 4, 39, 25.59, -9.22, 0.03422, 40, 3.25, -9.22, 0.80451, 41, -19.67, -9.22, 0.15782, 32, 74.8, 3.15, 0.00345, 4, 39, 22.68, -9.23, 0.07754, 40, 0.34, -9.23, 0.83155, 41, + -22.58, -9.23, 0.08642, 32, 75, 0.25, 0.00449, 4, 39, 19.52, -9.24, 0.14705, 40, -2.82, -9.24, 0.80991, 41, -25.74, -9.24, 0.04032, 32, 75.22, -2.9, 0.00272, 4, 39, 16.15, -9.25, + 0.24563, 40, -6.18, -9.25, 0.73344, 41, -29.11, -9.25, 0.01645, 32, 75.45, -6.26, 0.00448, 4, 39, 13.09, -9.27, 0.36774, 40, -9.24, -9.27, 0.62371, 41, -32.17, -9.27, 0.00512, 32, + 75.66, -9.31, 0.00344, 4, 39, 10.21, -9.28, 0.50372, 40, -12.13, -9.28, 0.49001, 41, -35.05, -9.28, 0.00135, 32, 75.86, -12.19, 0.00491, 4, 39, 7.08, -9.29, 0.64487, 40, -15.26, + -9.29, 0.35177, 41, -38.18, -9.29, 0.00021, 32, 76.08, -15.32, 0.00314, 4, 39, 3.26, -9.3, 0.77, 40, -19.08, -9.3, 0.22651, 41, -42, -9.3, 3e-05, 32, 76.34, -19.12, 0.00346, 4, 39, + -0.32, -9.32, 0.87272, 40, -22.66, -9.32, 0.1254, 41, -45.58, -9.32, 0, 32, 76.59, -22.69, 0.00188, 3, 39, -3.57, -9.33, 0.9351, 40, -25.91, -9.33, 0.0605, 32, 76.81, -25.94, 0.0044, + 3, 39, -7.54, -9.35, 0.96153, 40, -29.88, -9.35, 0.02278, 32, 77.09, -29.9, 0.01569, 3, 39, -9.85, -9.35, 0.93655, 40, -32.19, -9.35, 0.00657, 32, 77.24, -32.21, 0.05688, 3, 39, + -11.87, -9.36, 0.83576, 40, -34.2, -9.36, 0.00151, 32, 77.38, -34.21, 0.16273, 3, 39, -14.74, -9.37, 0.65143, 40, -37.08, -9.37, 0.00023, 32, 77.58, -37.08, 0.34834, 3, 39, -16.89, + -9.38, 0.4382, 40, -39.23, -9.38, 2e-05, 32, 77.73, -39.23, 0.56178, 3, 39, -18.76, -9.39, 0.27507, 40, -41.1, -9.39, 0, 32, 77.86, -41.09, 0.72493, 3, 39, -18.76, -2.89, 0.21414, + 40, -41.1, -2.89, 2e-05, 32, 71.37, -41.51, 0.78584, 3, 39, -18.76, 1.38, 0.19077, 40, -41.1, 1.38, 0.00024, 32, 67.11, -41.79, 0.80899, 3, 39, -18.76, 7.5, 0.1765, 40, -41.1, 7.5, + 0.00116, 32, 61.01, -42.19, 0.82235, 4, 39, -16.28, 11.88, 0.15382, 40, -38.62, 11.88, 0.00307, 41, -61.54, 11.88, 1e-05, 32, 56.48, -40, 0.84309, 4, 39, -11.9, 19.61, 0.11079, 40, + -34.24, 19.61, 0.0029, 41, -57.16, 19.61, 0.00014, 32, 48.48, -36.13, 0.88617, 4, 39, 14.63, 66.47, 0.04584, 40, -7.7, 66.47, 0.00083, 41, -30.63, 66.47, 0.00037, 32, -0.01, -12.7, + 0.95296, 4, 39, 22.29, 66.47, 0.02247, 40, -0.04, 66.47, 0.00083, 41, -22.97, 66.47, 0.00288, 32, -0.51, -5.06, 0.97382, 4, 39, 27.54, 66.47, 0.01007, 40, 5.2, 66.47, 0.00155, 41, + -17.72, 66.47, 0.0104, 32, -0.85, 0.17, 0.97798, 4, 39, 34.04, 66.47, 0.00272, 40, 11.7, 66.47, 0.00045, 41, -11.22, 66.47, 0.02285, 32, -1.28, 6.66, 0.97398, 4, 39, 39.96, 66.47, + 0.00033, 40, 17.62, 66.47, 0.00011, 41, -5.3, 66.47, 0.0498, 32, -1.66, 12.57, 0.94976, 3, 39, -16.24, -2.91, 0.33437, 40, -38.58, -2.91, 0.0002, 32, 71.23, -39, 0.66543, 3, 39, + -14.53, 1.37, 0.32645, 40, -36.87, 1.37, 0.00078, 32, 66.85, -37.57, 0.67277, 4, 39, -12.36, 7.36, 0.307, 40, -34.7, 7.36, 0.00285, 41, -57.62, 7.36, 1e-05, 32, 60.73, -35.79, + 0.69014, 4, 39, -9.97, 11.91, 0.26477, 40, -32.31, 11.91, 0.00971, 41, -55.23, 11.91, 0.00027, 32, 56.04, -33.7, 0.72525, 4, 39, -6.21, 19.66, 0.19881, 40, -28.55, 19.66, 0.00959, + 41, -51.47, 19.66, 0.00132, 32, 48.05, -30.46, 0.79028, 4, 39, 24.46, 19.97, 0.10712, 40, 2.12, 19.97, 0.11704, 41, -20.8, 19.97, 0.11672, 32, 45.75, 0.12, 0.65912, 4, 39, 53.97, + 20.27, 0.00116, 40, 31.63, 20.27, 0.00313, 41, 8.71, 20.27, 0.2148, 32, 43.53, 29.55, 0.7809, 4, 39, 57.02, 12.2, 0.0001, 40, 34.68, 12.2, 0.00083, 41, 11.76, 12.2, 0.29942, 32, + 51.38, 33.12, 0.69965, 3, 40, 36.75, 5.8, 0.00034, 41, 13.82, 5.8, 0.378, 32, 57.63, 35.6, 0.62166, 3, 40, 38.1, 1.08, 0.00022, 41, 15.18, 1.08, 0.45653, 32, 62.25, 37.26, 0.54325, + 3, 40, 39.36, -3.36, 0.00015, 41, 16.43, -3.36, 0.53433, 32, 66.61, 38.8, 0.46552, 4, 39, 23.97, 12.06, 0.12565, 40, 1.63, 12.06, 0.24275, 41, -21.29, 12.06, 0.14114, 32, 53.68, + 0.15, 0.49046, 4, 39, 23.54, 6.58, 0.11007, 40, 1.2, 6.58, 0.47217, 41, -21.72, 6.58, 0.12893, 32, 59.17, 0.08, 0.28883, 4, 39, 23.28, 1.22, 0.10884, 40, 0.94, 1.22, 0.60558, 41, + -21.98, 1.22, 0.12698, 32, 64.53, 0.17, 0.1586, 4, 39, 23.11, -3.14, 0.10666, 40, 0.77, -3.14, 0.70334, 41, -22.15, -3.14, 0.12133, 32, 68.89, 0.28, 0.06866, 4, 39, 6.87, 19.8, + 0.29773, 40, -15.47, 19.8, 0.06022, 41, -38.39, 19.8, 0.01488, 32, 47.07, -17.41, 0.62717, 4, 39, 3.75, 11.97, 0.44072, 40, -18.59, 11.97, 0.09602, 41, -41.51, 11.97, 0.01064, 32, + 55.08, -20.02, 0.45261, 4, 39, 1.91, 7.05, 0.66419, 40, -20.42, 7.05, 0.11803, 41, -43.35, 7.05, 0.002, 32, 60.11, -21.53, 0.21579, 4, 39, 0.03, 1.31, 0.77187, 40, -22.31, 1.31, + 0.12352, 41, -45.23, 1.31, 0.00043, 32, 65.96, -23.04, 0.10418, 4, 39, -1.27, -2.99, 0.84303, 40, -23.61, -2.99, 0.11246, 41, -46.53, -2.99, 0.00018, 32, 70.34, -24.05, 0.04432, 4, + 39, -1.8, 26.91, 0.12744, 40, -24.14, 26.91, 0.00959, 41, -47.06, 26.91, 0.0076, 32, 40.54, -26.53, 0.85537, 4, 39, 24.96, 27.56, 0.0719, 40, 2.62, 27.56, 0.03639, 41, -20.3, 27.56, + 0.07572, 32, 38.14, 0.13, 0.81598, 4, 39, 50.76, 27.7, 0.00702, 40, 28.42, 27.7, 0.00523, 41, 5.5, 27.7, 0.131, 32, 36.32, 25.87, 0.85675, 4, 39, 3.83, 36.15, 0.04791, 40, -18.51, + 36.15, 0.00352, 41, -41.43, 36.15, 0.00803, 32, 30.95, -21.51, 0.94054, 4, 39, 25.65, 37.95, 0.02662, 40, 3.31, 37.95, 0.00775, 41, -19.61, 37.95, 0.02767, 32, 27.73, 0.14, 0.93795, + 4, 39, 46.64, 37.25, 0.00753, 40, 24.3, 37.25, 0.00227, 41, 1.38, 37.25, 0.04846, 32, 27.06, 21.14, 0.94174, 4, 39, 41.75, 20.15, 0.01306, 40, 19.41, 20.15, 0.04509, 41, -3.51, + 20.15, 0.32134, 32, 44.45, 17.37, 0.62052, 4, 39, 43.25, 12.14, 0.00895, 40, 20.91, 12.14, 0.07841, 41, -2.01, 12.14, 0.49568, 32, 52.34, 19.39, 0.41696, 4, 39, 44.35, 6.12, 0.0015, + 40, 22.01, 6.12, 0.09572, 41, -0.91, 6.12, 0.67014, 32, 58.27, 20.88, 0.23264, 4, 39, 45.08, 1.14, 0.00025, 40, 22.74, 1.14, 0.108, 41, -0.18, 1.14, 0.76841, 32, 63.2, 21.93, + 0.12334, 4, 39, 45.58, -3.27, 0.0001, 40, 23.24, -3.27, 0.10937, 41, 0.32, -3.27, 0.83473, 32, 67.56, 22.71, 0.0558, 4, 39, 40.33, 27.64, 0.02381, 40, 18, 27.64, 0.02132, 41, -4.93, + 27.64, 0.16866, 32, 37.06, 15.47, 0.78621, 4, 39, 9.71, 27.19, 0.16236, 40, -12.63, 27.19, 0.02827, 41, -35.55, 27.19, 0.02548, 32, 39.51, -15.06, 0.78388, 4, 39, 15.01, 19.88, + 0.23124, 40, -7.33, 19.88, 0.11759, 41, -30.25, 19.88, 0.04679, 32, 46.46, -9.29, 0.60438, 4, 39, 13.78, 12.01, 0.29354, 40, -8.56, 12.01, 0.19873, 41, -31.48, 12.01, 0.04427, 32, + 54.39, -10.01, 0.46346, 4, 39, 12.95, 6.81, 0.37869, 40, -9.39, 6.81, 0.34588, 41, -32.31, 6.81, 0.01968, 32, 59.63, -10.5, 0.25575, 4, 39, 11.95, 1.27, 0.42861, 40, -10.39, 1.27, + 0.42317, 41, -33.31, 1.27, 0.01297, 32, 65.23, -11.14, 0.13524, 4, 39, 11.29, -3.07, 0.46725, 40, -11.05, -3.07, 0.46538, 41, -33.97, -3.07, 0.0097, 32, 69.59, -11.51, 0.05768, 4, + 39, -0.59, 19.72, 0.32338, 40, -22.92, 19.72, 0.02881, 41, -45.85, 19.72, 0.003, 32, 47.63, -24.85, 0.64481, 4, 39, -3.82, 11.93, 0.4391, 40, -26.16, 11.93, 0.03345, 41, -49.08, + 11.93, 0.00177, 32, 55.61, -27.57, 0.52567, 4, 39, -5.89, 7.22, 0.65491, 40, -28.23, 7.22, 0.02015, 41, -51.15, 7.22, 0.00017, 32, 60.45, -29.33, 0.32476, 4, 39, -8.13, 1.34, + 0.75275, 40, -30.47, 1.34, 0.01396, 41, -53.39, 1.34, 1e-05, 32, 66.46, -31.18, 0.23328, 3, 39, -9.63, -2.94, 0.80478, 40, -31.96, -2.94, 0.00944, 32, 70.83, -32.39, 0.18578, 4, 39, + 33.3, 20.06, 0.04166, 40, 10.96, 20.06, 0.10286, 41, -11.96, 20.06, 0.24857, 32, 45.08, 8.94, 0.60691, 4, 39, 33.97, 12.1, 0.03817, 40, 11.63, 12.1, 0.17811, 41, -11.29, 12.1, + 0.32257, 32, 52.98, 10.13, 0.46115, 4, 39, 34.3, 6.34, 0.01531, 40, 11.97, 6.34, 0.31162, 41, -10.96, 6.34, 0.40881, 32, 58.71, 10.84, 0.26426, 4, 39, 34.72, 1.18, 0.00955, 40, + 12.39, 1.18, 0.39036, 41, -10.54, 1.18, 0.4561, 32, 63.83, 11.59, 0.14399, 4, 39, 34.8, -3.2, 0.00731, 40, 12.46, -3.2, 0.44195, 41, -10.46, -3.2, 0.48699, 32, 68.2, 11.96, 0.06375, + 4, 39, 48.21, 20.21, 0.00241, 40, 25.88, 20.21, 0.01421, 41, 2.95, 20.21, 0.36275, 32, 43.96, 23.82, 0.62063, 4, 39, 50.54, 12.17, 0.00034, 40, 28.2, 12.17, 0.01068, 41, 5.28, 12.17, + 0.5453, 32, 51.83, 26.66, 0.44368, 4, 39, 52.52, 5.95, 2e-05, 40, 30.19, 5.95, 0.00999, 41, 7.26, 5.95, 0.66888, 32, 57.92, 29.04, 0.32111, 3, 40, 31.52, 1.11, 0.01011, 41, 8.6, + 1.11, 0.76268, 32, 62.66, 30.7, 0.22721, 3, 40, 32.61, -3.32, 0.00863, 41, 9.68, -3.32, 0.83296, 32, 67.01, 32.06, 0.15841, 4, 39, -9.21, 7.29, 0.52586, 40, -31.55, 7.29, 0.0057, 41, + -54.47, 7.29, 1e-05, 32, 60.59, -32.65, 0.46842, 3, 39, -11.3, 1.36, 0.56698, 40, -33.64, 1.36, 0.00311, 32, 66.65, -34.34, 0.42991, 3, 39, -12.66, -2.93, 0.60013, 40, -35, -2.93, + 0.00167, 32, 71.01, -35.42, 0.39821, 4, 39, -5.46, -2.97, 0.89102, 40, -27.8, -2.97, 0.03888, 41, -50.72, -2.97, 1e-05, 32, 70.59, -28.24, 0.07008, 4, 39, -4.18, 1.33, 0.83362, 40, + -26.52, 1.33, 0.04645, 41, -49.44, 1.33, 3e-05, 32, 66.21, -27.24, 0.1199, 4, 39, -2.26, 7.14, 0.75973, 40, -24.6, 7.14, 0.05134, 41, -47.52, 7.14, 0.00026, 32, 60.29, -25.7, + 0.18867, 4, 39, 7.35, 6.93, 0.57235, 40, -14.98, 6.93, 0.23863, 41, -37.91, 6.93, 0.00435, 32, 59.87, -16.09, 0.18467, 4, 39, 5.9, 1.29, 0.63011, 40, -16.44, 1.29, 0.25936, 41, + -39.36, 1.29, 0.00243, 32, 65.6, -17.18, 0.1081, 4, 39, 4.86, -3.03, 0.68809, 40, -17.48, -3.03, 0.26358, 41, -40.4, -3.03, 0.00168, 32, 69.98, -17.93, 0.04665, 4, 39, 17.76, 6.7, + 0.22941, 40, -4.58, 6.7, 0.4879, 41, -27.5, 6.7, 0.05094, 32, 59.42, -5.7, 0.23175, 4, 39, 17.11, 1.25, 0.24296, 40, -5.23, 1.25, 0.56856, 41, -28.15, 1.25, 0.04581, 32, 64.91, + -5.99, 0.14267, 4, 39, 16.71, -3.1, 0.25552, 40, -5.62, -3.1, 0.64168, 41, -28.55, -3.1, 0.03992, 32, 69.27, -6.1, 0.06288, 4, 39, 28.55, -3.17, 0.03276, 40, 6.22, -3.17, 0.62363, + 41, -16.71, -3.17, 0.27658, 32, 68.57, 5.72, 0.06703, 4, 39, 28.55, 1.2, 0.0367, 40, 6.21, 1.21, 0.54514, 41, -16.71, 1.21, 0.26974, 32, 64.21, 5.43, 0.14843, 4, 39, 28.71, 6.47, + 0.04075, 40, 6.37, 6.47, 0.46337, 41, -16.55, 6.47, 0.25797, 32, 58.95, 5.25, 0.23791, 4, 39, 39.28, 6.23, 0.00305, 40, 16.94, 6.24, 0.20572, 41, -5.98, 6.24, 0.59307, 32, 58.49, + 15.81, 0.19817, 4, 39, 39.51, 1.16, 0.00156, 40, 17.17, 1.16, 0.23228, 41, -5.75, 1.16, 0.64631, 32, 63.54, 16.37, 0.11984, 4, 39, 40.07, -3.24, 0.00112, 40, 17.74, -3.24, 0.25061, + 41, -5.19, -3.24, 0.69415, 32, 67.89, 17.22, 0.05412, 4, 39, 50.23, -3.29, 0, 40, 27.89, -3.29, 0.036, 41, 4.97, -3.29, 0.88144, 32, 67.29, 27.36, 0.08255, 4, 39, 49.51, 1.13, 2e-05, + 40, 27.17, 1.13, 0.03826, 41, 4.25, 1.13, 0.81357, 32, 62.92, 26.35, 0.14816, 4, 39, 48.55, 6.03, 0.00027, 40, 26.22, 6.03, 0.03577, 41, 3.29, 6.03, 0.72045, 32, 58.09, 25.08, + 0.24351, 4, 39, 47.11, 12.16, 0.00156, 40, 24.77, 12.16, 0.03311, 41, 1.85, 12.16, 0.61234, 32, 52.07, 23.24, 0.35299, 4, 39, 53.99, 12.19, 1e-05, 40, 31.66, 12.19, 0.00266, 41, + 8.73, 12.19, 0.47035, 32, 51.59, 30.11, 0.52698, 3, 40, 33.02, 5.88, 0.00213, 41, 10.1, 5.88, 0.54797, 32, 57.79, 31.88, 0.4499, 3, 40, 34.54, 1.1, 0.0018, 41, 11.62, 1.1, 0.63247, + 32, 62.47, 33.7, 0.36573, 3, 40, 35.58, -3.34, 0.00152, 41, 12.66, -3.34, 0.71351, 32, 66.83, 35.03, 0.28497, 3, 39, -17.72, -6.71, 0.31251, 40, -40.05, -6.71, 1e-05, 32, 75.11, + -40.22, 0.68748, 3, 39, -13.83, -6.56, 0.64755, 40, -36.17, -6.56, 0.00038, 32, 74.72, -36.36, 0.35207, 3, 39, -10.89, -6.57, 0.83546, 40, -33.23, -6.57, 0.00245, 32, 74.53, -33.42, + 0.1621, 3, 39, -6.58, -6.39, 0.9505, 40, -28.91, -6.39, 0.02598, 32, 74.07, -29.13, 0.02352, 4, 39, -2.51, -6.41, 0.9185, 40, -24.85, -6.41, 0.06986, 41, -47.77, -6.41, 1e-05, 32, + 73.83, -25.07, 0.01163, 4, 39, 3.97, -6.54, 0.7539, 40, -18.37, -6.54, 0.23416, 41, -41.29, -6.54, 0.00019, 32, 73.54, -18.6, 0.01175, 4, 39, 10.73, -6.3, 0.4945, 40, -11.61, -6.29, + 0.48778, 41, -34.53, -6.29, 0.00242, 32, 72.85, -11.87, 0.01529, 4, 39, 16.42, -6.31, 0.24467, 40, -5.92, -6.31, 0.71967, 41, -28.84, -6.31, 0.01969, 32, 72.5, -6.18, 0.01597, 4, 39, + 22.88, -6.46, 0.08074, 40, 0.54, -6.46, 0.81091, 41, -22.38, -6.46, 0.09131, 32, 72.22, 0.27, 0.01704, 4, 39, 28.51, -6.42, 0.01543, 40, 6.17, -6.42, 0.70591, 41, -16.75, -6.42, + 0.26031, 32, 71.82, 5.89, 0.01836, 4, 39, 34.97, -6.29, 0.00164, 40, 12.64, -6.29, 0.47309, 41, -10.29, -6.29, 0.50689, 32, 71.27, 12.33, 0.01837, 4, 39, 40.42, -6.47, 0.0001, 40, + 18.08, -6.47, 0.23958, 41, -4.84, -6.47, 0.7461, 32, 71.1, 17.78, 0.01421, 4, 39, 45.89, -6.5, 0, 40, 23.56, -6.5, 0.08431, 41, 0.63, -6.5, 0.9025, 32, 70.76, 23.24, 0.01319, 3, 40, + 28.36, -6.37, 0.01867, 41, 5.43, -6.37, 0.94991, 32, 70.33, 28.02, 0.03142, 3, 40, 33.31, -6.41, 0.00244, 41, 10.39, -6.41, 0.88788, 32, 70.05, 32.97, 0.10968, 3, 40, 36.23, -6.46, + 0.00046, 41, 13.31, -6.46, 0.80558, 32, 69.91, 35.88, 0.19395, 3, 40, 40.12, -6.31, 1e-05, 41, 17.2, -6.31, 0.61334, 32, 69.5, 39.76, 0.38665, 4, 39, 0.4, -6.47, 0.86555, 40, -21.94, + -6.47, 0.12959, 41, -44.86, -6.47, 1e-05, 32, 73.7, -22.16, 0.00485, 3, 39, -9.01, -6.49, 0.93616, 40, -31.35, -6.49, 0.00716, 32, 74.33, -31.55, 0.05668, 3, 39, -16.19, -6.65, + 0.44814, 40, -38.53, -6.65, 3e-05, 32, 74.96, -38.7, 0.55184, 4, 39, 7.48, -6.41, 0.63866, 40, -14.86, -6.41, 0.354, 41, -37.78, -6.41, 0.00037, 32, 73.18, -15.1, 0.00698, 4, 39, + 13.4, -6.3, 0.36468, 40, -8.94, -6.3, 0.62161, 41, -31.86, -6.3, 0.00581, 32, 72.69, -9.2, 0.0079, 4, 39, 19.68, -6.38, 0.14684, 40, -2.65, -6.38, 0.80383, 41, -25.58, -6.38, + 0.04176, 32, 72.36, -2.92, 0.00757, 4, 39, 25.54, -6.44, 0.03499, 40, 3.2, -6.44, 0.79745, 41, -19.72, -6.44, 0.15898, 32, 72.03, 2.92, 0.00858, 4, 39, 31.96, -6.35, 0.00417, 40, + 9.62, -6.35, 0.60634, 41, -13.3, -6.35, 0.37927, 32, 71.53, 9.32, 0.01022, 4, 39, 37.62, -6.38, 0.00021, 40, 15.28, -6.38, 0.35157, 41, -7.64, -6.38, 0.63918, 32, 71.18, 14.97, + 0.00904, 4, 39, 43.32, -6.48, 1e-05, 40, 20.98, -6.48, 0.14688, 41, -1.94, -6.48, 0.84692, 32, 70.92, 20.67, 0.00619, 3, 40, 25.81, -6.44, 0.03919, 41, 2.89, -6.44, 0.95006, 32, + 70.56, 25.48, 0.01074, 3, 40, 30.92, -6.39, 0.00591, 41, 7.99, -6.39, 0.9433, 32, 70.18, 30.58, 0.05079, 3, 40, 38.04, -6.39, 5e-05, 41, 15.12, -6.39, 0.72615, 32, 69.72, 37.69, + 0.2738 + ], + "hull": 46, + "edges": [ + 80, 82, 90, 0, 10, 8, 70, 72, 72, 74, 74, 76, 4, 6, 6, 8, 76, 78, 78, 80, 4, 2, 2, 0, 72, 92, 74, 94, 92, 94, 76, 96, 94, 96, 78, 98, 96, 98, 80, 100, 98, 100, 82, 84, 84, 86, 86, + 88, 88, 90, 0, 104, 2, 106, 104, 106, 4, 108, 106, 108, 6, 110, 108, 110, 8, 112, 110, 112, 10, 12, 102, 114, 114, 116, 116, 118, 118, 120, 122, 124, 124, 126, 126, 128, 128, 130, + 132, 100, 134, 102, 136, 104, 84, 138, 138, 132, 86, 140, 140, 134, 138, 140, 88, 142, 142, 136, 140, 142, 144, 146, 146, 148, 148, 150, 150, 152, 134, 154, 154, 136, 144, 154, 132, + 156, 156, 134, 122, 156, 102, 158, 158, 122, 114, 160, 160, 124, 158, 160, 160, 162, 162, 164, 164, 166, 100, 168, 168, 122, 98, 170, 170, 124, 168, 170, 170, 172, 172, 174, 174, + 176, 102, 178, 178, 144, 114, 180, 180, 146, 178, 180, 180, 182, 182, 184, 184, 186, 104, 188, 188, 144, 188, 190, 190, 192, 192, 194, 194, 196, 96, 198, 198, 172, 94, 200, 200, 174, + 198, 200, 92, 202, 202, 176, 200, 202, 64, 66, 58, 60, 130, 204, 204, 176, 128, 206, 206, 174, 204, 206, 126, 208, 208, 172, 206, 208, 126, 210, 210, 162, 128, 212, 212, 164, 210, + 212, 130, 214, 214, 166, 212, 214, 116, 216, 216, 162, 118, 218, 218, 164, 216, 218, 120, 220, 220, 166, 218, 220, 120, 222, 222, 186, 118, 224, 224, 184, 222, 224, 116, 226, 226, + 182, 224, 226, 148, 228, 228, 182, 150, 230, 230, 184, 228, 230, 152, 232, 232, 186, 230, 232, 152, 234, 234, 196, 150, 236, 236, 194, 234, 236, 148, 238, 238, 192, 236, 238, 146, + 240, 240, 190, 238, 240, 106, 242, 242, 190, 108, 244, 244, 192, 242, 244, 110, 246, 246, 194, 244, 246, 112, 248, 248, 196, 246, 248, 16, 18, 70, 250, 250, 92, 66, 252, 252, 202, + 64, 254, 254, 176, 252, 254, 60, 256, 256, 204, 58, 258, 258, 130, 256, 258, 54, 260, 260, 214, 50, 262, 262, 166, 46, 264, 264, 220, 42, 266, 266, 120, 38, 268, 268, 222, 34, 270, + 270, 186, 30, 272, 272, 232, 26, 274, 274, 152, 22, 276, 276, 234, 18, 278, 278, 196, 16, 280, 280, 248, 278, 280, 12, 282, 282, 112, 258, 284, 284, 260, 54, 56, 56, 58, 284, 56, + 254, 286, 286, 256, 60, 62, 62, 64, 286, 62, 250, 288, 288, 252, 66, 68, 68, 70, 288, 68, 260, 290, 290, 262, 50, 52, 52, 54, 290, 52, 262, 292, 292, 264, 46, 48, 48, 50, 292, 48, + 264, 294, 294, 266, 42, 44, 44, 46, 294, 44, 266, 296, 296, 268, 38, 40, 40, 42, 296, 40, 268, 298, 298, 270, 34, 36, 36, 38, 298, 36, 270, 300, 300, 272, 30, 32, 32, 34, 300, 32, + 272, 302, 302, 274, 26, 28, 28, 30, 302, 28, 274, 304, 304, 276, 22, 24, 24, 26, 304, 24, 276, 306, 306, 278, 18, 20, 20, 22, 306, 20, 280, 308, 308, 282, 12, 14, 14, 16, 308, 14 + ], + "width": 87.05882352941177, + "height": 80.0, + "path": "summer-as.ear-left-bubble", + "x": 0.470588235294116, + "y": 0.0 + } + }, + "ear-left-bubble-02": { + "ear-left-bubble": { + "type": "mesh", + "uvs": [ + 0.87714, 0.57697, 0.91393, 0.67811, 0.94364, 0.75977, 0.96133, 0.8176, 0.97838, 0.87333, 1, 0.94398, 0.93104, 0.94427, 0.90524, 0.94438, 0.88494, 0.94447, 0.85255, 0.94461, 0.82176, + 0.94474, 0.79396, 0.94486, 0.76382, 0.94499, 0.73767, 0.9451, 0.70713, 0.94523, 0.67579, 0.94536, 0.64108, 0.94551, 0.61244, 0.94564, 0.5758, 0.94579, 0.5367, 0.94596, 0.50394, + 0.9461, 0.47091, 0.94624, 0.435, 0.94639, 0.39675, 0.94656, 0.36198, 0.94671, 0.32916, 0.94685, 0.29359, 0.947, 0.25022, 0.94718, 0.20956, 0.94736, 0.17261, 0.94751, 0.12749, + 0.94771, 0.1012, 0.94782, 0.07834, 0.94792, 0.0457, 0.94806, 0.02123, 0.94816, 0, 0.94825, 0, 0.86703, 0, 0.81359, 0, 0.73715, 0.02817, 0.68242, 0.07791, 0.5858, 0.37947, 0, 0.46651, + 0, 0.5261, 0, 0.59994, 0, 0.66726, 0, 0.02864, 0.86721, 0.04805, 0.81379, 0.07275, 0.7389, 0.0999, 0.68207, 0.14259, 0.58508, 0.49108, 0.58123, 0.82646, 0.57753, 0.86109, 0.67837, + 0.88458, 0.75835, 0.90003, 0.81734, 0.91424, 0.87292, 0.48557, 0.6802, 0.48069, 0.74867, 0.47772, 0.81558, 0.4758, 0.87009, 0.29126, 0.58344, 0.25576, 0.68132, 0.23492, 0.74278, + 0.2135, 0.81448, 0.19874, 0.86831, 0.19271, 0.49455, 0.4968, 0.48641, 0.79002, 0.48462, 0.25666, 0.37903, 0.50462, 0.35653, 0.74321, 0.36527, 0.68757, 0.57906, 0.70466, 0.67913, + 0.71716, 0.75434, 0.72541, 0.81661, 0.73109, 0.87174, 0.67152, 0.48534, 0.32349, 0.49105, 0.38378, 0.58242, 0.36974, 0.68076, 0.36036, 0.74579, 0.34895, 0.81504, 0.34148, 0.86923, + 0.20652, 0.58437, 0.16979, 0.68173, 0.1462, 0.74066, 0.12077, 0.81409, 0.10379, 0.8677, 0.59158, 0.58012, 0.59921, 0.67965, 0.60299, 0.7516, 0.60776, 0.81612, 0.60866, 0.87095, + 0.76107, 0.57825, 0.78751, 0.67873, 0.81003, 0.75656, 0.82525, 0.81703, 0.83754, 0.87243, 0.10852, 0.73975, 0.08479, 0.81394, 0.06934, 0.86747, 0.15113, 0.868, 0.1657, 0.81428, + 0.18746, 0.74164, 0.29675, 0.74426, 0.28022, 0.81476, 0.26841, 0.86876, 0.41495, 0.7471, 0.40761, 0.81529, 0.4031, 0.86963, 0.53765, 0.87049, 0.53762, 0.81583, 0.53944, 0.75008, + 0.6595, 0.75296, 0.66217, 0.81635, 0.66857, 0.87134, 0.78397, 0.87208, 0.7758, 0.81682, 0.76492, 0.75548, 0.74852, 0.67892, 0.82675, 0.67854, 0.84222, 0.75734, 0.8595, 0.81717, + 0.87132, 0.87264, 0.01186, 0.9147, 0.056, 0.91293, 0.08943, 0.91297, 0.13846, 0.91074, 0.18465, 0.91102, 0.25824, 0.91262, 0.33507, 0.90958, 0.39978, 0.90977, 0.47313, 0.91161, + 0.53714, 0.91117, 0.61061, 0.90948, 0.67252, 0.91178, 0.73471, 0.91209, 0.78925, 0.91054, 0.84557, 0.91105, 0.87872, 0.91169, 0.92292, 0.90979, 0.21772, 0.91173, 0.11081, 0.912, + 0.02923, 0.91401, 0.29821, 0.91104, 0.36548, 0.90967, 0.43685, 0.9107, 0.50336, 0.9114, 0.57635, 0.91027, 0.64066, 0.9106, 0.70543, 0.91195, 0.76031, 0.91136, 0.81833, 0.9108, + 0.89934, 0.9108 + ], + "triangles": [ + 85, 84, 62, 94, 73, 72, 62, 84, 61, 100, 48, 99, 122, 53, 54, 121, 95, 52, 48, 49, 99, 48, 47, 38, 47, 37, 38, 50, 66, 84, 50, 40, 66, 54, 53, 1, 52, 68, 0, 70, 42, 43, 71, 0, 68, + 44, 45, 71, 70, 43, 44, 71, 70, 44, 69, 41, 42, 69, 42, 70, 71, 45, 0, 77, 70, 71, 77, 71, 68, 70, 78, 69, 67, 70, 77, 67, 78, 70, 41, 69, 40, 66, 69, 78, 94, 77, 68, 94, 68, 52, 72, + 77, 94, 89, 67, 77, 89, 77, 72, 67, 79, 78, 51, 67, 89, 51, 79, 67, 61, 66, 78, 61, 78, 79, 84, 66, 61, 40, 69, 66, 90, 89, 72, 90, 72, 73, 57, 79, 51, 57, 51, 89, 57, 89, 90, 80, + 61, 79, 80, 79, 57, 62, 61, 80, 108, 80, 57, 113, 57, 90, 53, 52, 0, 53, 0, 1, 121, 52, 53, 54, 1, 2, 95, 94, 52, 39, 40, 49, 49, 40, 50, 38, 39, 48, 48, 39, 49, 85, 50, 84, 49, 50, + 85, 122, 121, 53, 47, 48, 100, 86, 99, 49, 85, 86, 49, 55, 2, 3, 55, 54, 2, 123, 54, 55, 5, 6, 4, 56, 3, 4, 56, 55, 3, 35, 36, 125, 35, 125, 34, 34, 125, 144, 47, 46, 37, 125, 46, + 144, 144, 46, 126, 101, 47, 100, 46, 47, 101, 125, 36, 46, 46, 36, 37, 120, 94, 95, 120, 73, 94, 114, 91, 90, 73, 114, 90, 74, 73, 120, 114, 73, 74, 119, 120, 95, 74, 120, 119, 96, + 95, 121, 119, 95, 96, 96, 121, 122, 92, 91, 114, 115, 114, 74, 92, 114, 115, 75, 74, 119, 115, 74, 75, 118, 119, 96, 75, 119, 118, 97, 96, 122, 118, 96, 97, 123, 122, 54, 97, 122, + 123, 93, 92, 115, 116, 115, 75, 93, 115, 116, 76, 75, 118, 116, 75, 76, 117, 118, 97, 76, 118, 117, 98, 97, 123, 117, 97, 98, 124, 123, 55, 98, 123, 124, 150, 135, 93, 153, 138, 117, + 116, 150, 93, 98, 153, 117, 154, 124, 56, 154, 56, 141, 139, 98, 124, 140, 139, 124, 153, 98, 139, 152, 76, 117, 152, 117, 138, 154, 140, 124, 151, 136, 116, 150, 116, 136, 76, 151, + 116, 137, 151, 76, 152, 137, 76, 7, 154, 141, 7, 141, 6, 8, 140, 154, 8, 154, 7, 9, 139, 140, 9, 140, 8, 10, 153, 139, 10, 139, 9, 11, 138, 153, 11, 153, 10, 12, 152, 138, 12, 138, + 11, 13, 137, 152, 13, 152, 12, 14, 151, 137, 14, 137, 13, 15, 136, 151, 15, 151, 14, 16, 150, 136, 16, 136, 15, 17, 135, 150, 17, 150, 16, 124, 55, 56, 6, 141, 4, 141, 56, 4, 113, + 90, 91, 81, 80, 108, 58, 108, 57, 109, 81, 108, 82, 81, 109, 59, 108, 58, 109, 108, 59, 112, 58, 113, 59, 58, 112, 112, 113, 91, 92, 112, 91, 110, 82, 109, 83, 82, 110, 60, 109, 59, + 110, 109, 60, 111, 112, 92, 59, 112, 111, 60, 59, 111, 111, 92, 93, 146, 83, 110, 131, 83, 146, 132, 146, 110, 149, 111, 93, 149, 93, 135, 147, 110, 60, 132, 110, 147, 111, 148, 60, + 134, 111, 149, 134, 148, 111, 133, 147, 60, 148, 133, 60, 18, 134, 149, 18, 149, 135, 18, 135, 17, 19, 148, 134, 19, 134, 18, 20, 148, 19, 21, 147, 133, 20, 21, 133, 20, 133, 148, + 22, 132, 147, 22, 147, 21, 23, 146, 132, 23, 132, 22, 24, 131, 146, 24, 146, 23, 25, 131, 24, 58, 57, 113, 63, 104, 85, 86, 85, 104, 62, 63, 85, 105, 62, 80, 63, 62, 105, 81, 105, + 80, 87, 99, 86, 100, 99, 87, 103, 86, 104, 87, 86, 103, 64, 104, 63, 103, 104, 64, 106, 63, 105, 64, 63, 106, 82, 105, 81, 106, 105, 82, 88, 100, 87, 101, 100, 88, 102, 87, 103, 88, + 87, 102, 65, 103, 64, 102, 103, 65, 107, 64, 106, 65, 64, 107, 83, 106, 82, 107, 106, 83, 83, 145, 107, 128, 88, 102, 129, 102, 65, 128, 102, 129, 131, 145, 83, 142, 65, 107, 129, + 65, 142, 143, 88, 128, 130, 142, 107, 130, 107, 145, 127, 101, 88, 127, 88, 143, 126, 101, 127, 25, 145, 131, 26, 130, 145, 26, 145, 25, 27, 142, 130, 27, 130, 26, 28, 129, 142, 28, + 142, 27, 29, 128, 129, 29, 129, 28, 30, 143, 128, 30, 128, 29, 31, 127, 143, 31, 143, 30, 32, 126, 127, 32, 127, 31, 33, 144, 126, 33, 126, 32, 126, 46, 101, 34, 144, 33 + ], + "vertices": [ + 4, 47, 58.43, 20.31, 0.00012, 48, 36.09, 20.31, 0.00054, 49, 13.17, 20.31, 0.12631, 46, 43.2, 34, 0.87302, 3, 48, 39.33, 12.22, 0.00019, 49, 16.41, 12.22, 0.19743, 46, 51.06, 37.76, + 0.80237, 3, 48, 41.94, 5.69, 6e-05, 49, 19.02, 5.69, 0.26715, 46, 57.41, 40.79, 0.73278, 3, 48, 43.5, 1.06, 1e-05, 49, 20.58, 1.06, 0.33542, 46, 61.92, 42.65, 0.66457, 3, 48, 45, + -3.4, 1e-05, 49, 22.08, -3.4, 0.40033, 46, 66.27, 44.44, 0.59966, 3, 48, 46.9, -9.05, 0, 49, 23.98, -9.05, 0.45012, 46, 71.79, 46.7, 0.54988, 3, 48, 40.83, -9.07, 0, 49, 17.91, + -9.07, 0.5829, 46, 72.21, 40.65, 0.4171, 3, 48, 38.56, -9.08, 4e-05, 49, 15.64, -9.08, 0.72131, 46, 72.37, 38.38, 0.27865, 3, 48, 36.78, -9.09, 0.00031, 49, 13.86, -9.09, 0.8264, 46, + 72.49, 36.6, 0.17329, 3, 48, 33.93, -9.1, 0.00157, 49, 11, -9.1, 0.90359, 46, 72.69, 33.76, 0.09484, 3, 48, 31.22, -9.11, 0.00537, 49, 8.3, -9.11, 0.94975, 46, 72.87, 31.05, 0.04488, + 3, 48, 28.77, -9.12, 0.01601, 49, 5.85, -9.12, 0.96404, 46, 73.04, 28.61, 0.01996, 3, 48, 26.12, -9.13, 0.03803, 49, 3.2, -9.13, 0.95562, 46, 73.22, 25.97, 0.00635, 3, 48, 23.82, + -9.14, 0.08031, 49, 0.9, -9.14, 0.91597, 46, 73.38, 23.67, 0.00372, 4, 47, 43.47, -9.15, 0, 48, 21.13, -9.15, 0.14592, 49, -1.79, -9.15, 0.85165, 46, 73.57, 20.99, 0.00243, 4, 47, + 40.71, -9.16, 2e-05, 48, 18.37, -9.16, 0.23867, 49, -4.55, -9.16, 0.75671, 46, 73.76, 18.24, 0.0046, 4, 47, 37.66, -9.17, 0.00014, 48, 15.32, -9.17, 0.35275, 49, -7.6, -9.17, + 0.64256, 46, 73.97, 15.19, 0.00455, 4, 47, 35.13, -9.18, 0.00092, 48, 12.8, -9.18, 0.48034, 49, -10.13, -9.18, 0.51198, 46, 74.14, 12.68, 0.00676, 4, 47, 31.91, -9.19, 0.00375, 48, + 9.57, -9.19, 0.61095, 49, -13.35, -9.19, 0.38019, 46, 74.36, 9.46, 0.00512, 4, 47, 28.47, -9.21, 0.01298, 48, 6.13, -9.21, 0.72267, 49, -16.79, -9.21, 0.25841, 46, 74.6, 6.03, + 0.00594, 4, 47, 25.59, -9.22, 0.03422, 48, 3.25, -9.22, 0.80451, 49, -19.67, -9.22, 0.15782, 46, 74.8, 3.15, 0.00345, 4, 47, 22.68, -9.23, 0.07754, 48, 0.34, -9.23, 0.83155, 49, + -22.58, -9.23, 0.08642, 46, 75, 0.25, 0.00449, 4, 47, 19.52, -9.24, 0.14705, 48, -2.82, -9.24, 0.80991, 49, -25.74, -9.24, 0.04032, 46, 75.22, -2.9, 0.00272, 4, 47, 16.15, -9.25, + 0.24563, 48, -6.18, -9.25, 0.73344, 49, -29.11, -9.25, 0.01645, 46, 75.45, -6.26, 0.00448, 4, 47, 13.09, -9.27, 0.36774, 48, -9.24, -9.27, 0.62371, 49, -32.17, -9.27, 0.00512, 46, + 75.66, -9.31, 0.00344, 4, 47, 10.21, -9.28, 0.50372, 48, -12.13, -9.28, 0.49001, 49, -35.05, -9.28, 0.00135, 46, 75.86, -12.19, 0.00491, 4, 47, 7.08, -9.29, 0.64487, 48, -15.26, + -9.29, 0.35177, 49, -38.18, -9.29, 0.00021, 46, 76.08, -15.32, 0.00314, 4, 47, 3.26, -9.3, 0.77, 48, -19.08, -9.3, 0.22651, 49, -42, -9.3, 3e-05, 46, 76.34, -19.12, 0.00346, 4, 47, + -0.32, -9.32, 0.87272, 48, -22.66, -9.32, 0.1254, 49, -45.58, -9.32, 0, 46, 76.59, -22.69, 0.00188, 3, 47, -3.57, -9.33, 0.9351, 48, -25.91, -9.33, 0.0605, 46, 76.81, -25.94, 0.0044, + 3, 47, -7.54, -9.35, 0.96153, 48, -29.88, -9.35, 0.02278, 46, 77.09, -29.9, 0.01569, 3, 47, -9.85, -9.35, 0.93655, 48, -32.19, -9.35, 0.00657, 46, 77.24, -32.21, 0.05688, 3, 47, + -11.87, -9.36, 0.83576, 48, -34.2, -9.36, 0.00151, 46, 77.38, -34.21, 0.16273, 3, 47, -14.74, -9.37, 0.65143, 48, -37.08, -9.37, 0.00023, 46, 77.58, -37.08, 0.34834, 3, 47, -16.89, + -9.38, 0.4382, 48, -39.23, -9.38, 2e-05, 46, 77.73, -39.23, 0.56178, 3, 47, -18.76, -9.39, 0.27507, 48, -41.1, -9.39, 0, 46, 77.86, -41.09, 0.72493, 3, 47, -18.76, -2.89, 0.21414, + 48, -41.1, -2.89, 2e-05, 46, 71.37, -41.51, 0.78584, 3, 47, -18.76, 1.38, 0.19077, 48, -41.1, 1.38, 0.00024, 46, 67.11, -41.79, 0.80899, 3, 47, -18.76, 7.5, 0.1765, 48, -41.1, 7.5, + 0.00116, 46, 61.01, -42.19, 0.82235, 4, 47, -16.28, 11.88, 0.15382, 48, -38.62, 11.88, 0.00307, 49, -61.54, 11.88, 1e-05, 46, 56.48, -40, 0.84309, 4, 47, -11.9, 19.61, 0.11079, 48, + -34.24, 19.61, 0.0029, 49, -57.16, 19.61, 0.00014, 46, 48.48, -36.13, 0.88617, 4, 47, 14.63, 66.47, 0.04584, 48, -7.7, 66.47, 0.00083, 49, -30.63, 66.47, 0.00037, 46, -0.01, -12.7, + 0.95296, 4, 47, 22.29, 66.47, 0.02247, 48, -0.04, 66.47, 0.00083, 49, -22.97, 66.47, 0.00288, 46, -0.51, -5.06, 0.97382, 4, 47, 27.54, 66.47, 0.01007, 48, 5.2, 66.47, 0.00155, 49, + -17.72, 66.47, 0.0104, 46, -0.85, 0.17, 0.97798, 4, 47, 34.04, 66.47, 0.00272, 48, 11.7, 66.47, 0.00045, 49, -11.22, 66.47, 0.02285, 46, -1.28, 6.66, 0.97398, 4, 47, 39.96, 66.47, + 0.00033, 48, 17.62, 66.47, 0.00011, 49, -5.3, 66.47, 0.0498, 46, -1.66, 12.57, 0.94976, 3, 47, -16.24, -2.91, 0.33437, 48, -38.58, -2.91, 0.0002, 46, 71.23, -39, 0.66543, 3, 47, + -14.53, 1.37, 0.32645, 48, -36.87, 1.37, 0.00078, 46, 66.85, -37.57, 0.67277, 4, 47, -12.36, 7.36, 0.307, 48, -34.7, 7.36, 0.00285, 49, -57.62, 7.36, 1e-05, 46, 60.73, -35.79, + 0.69014, 4, 47, -9.97, 11.91, 0.26477, 48, -32.31, 11.91, 0.00971, 49, -55.23, 11.91, 0.00027, 46, 56.04, -33.7, 0.72525, 4, 47, -6.21, 19.66, 0.19881, 48, -28.55, 19.66, 0.00959, + 49, -51.47, 19.66, 0.00132, 46, 48.05, -30.46, 0.79028, 4, 47, 24.46, 19.97, 0.10712, 48, 2.12, 19.97, 0.11704, 49, -20.8, 19.97, 0.11672, 46, 45.75, 0.12, 0.65912, 4, 47, 53.97, + 20.27, 0.00116, 48, 31.63, 20.27, 0.00313, 49, 8.71, 20.27, 0.2148, 46, 43.53, 29.55, 0.7809, 4, 47, 57.02, 12.2, 0.0001, 48, 34.68, 12.2, 0.00083, 49, 11.76, 12.2, 0.29942, 46, + 51.38, 33.12, 0.69965, 3, 48, 36.75, 5.8, 0.00034, 49, 13.82, 5.8, 0.378, 46, 57.63, 35.6, 0.62166, 3, 48, 38.1, 1.08, 0.00022, 49, 15.18, 1.08, 0.45653, 46, 62.25, 37.26, 0.54325, + 3, 48, 39.36, -3.36, 0.00015, 49, 16.43, -3.36, 0.53433, 46, 66.61, 38.8, 0.46552, 4, 47, 23.97, 12.06, 0.12565, 48, 1.63, 12.06, 0.24275, 49, -21.29, 12.06, 0.14114, 46, 53.68, + 0.15, 0.49046, 4, 47, 23.54, 6.58, 0.11007, 48, 1.2, 6.58, 0.47217, 49, -21.72, 6.58, 0.12893, 46, 59.17, 0.08, 0.28883, 4, 47, 23.28, 1.22, 0.10884, 48, 0.94, 1.22, 0.60558, 49, + -21.98, 1.22, 0.12698, 46, 64.53, 0.17, 0.1586, 4, 47, 23.11, -3.14, 0.10666, 48, 0.77, -3.14, 0.70334, 49, -22.15, -3.14, 0.12133, 46, 68.89, 0.28, 0.06866, 4, 47, 6.87, 19.8, + 0.29773, 48, -15.47, 19.8, 0.06022, 49, -38.39, 19.8, 0.01488, 46, 47.07, -17.41, 0.62717, 4, 47, 3.75, 11.97, 0.44072, 48, -18.59, 11.97, 0.09602, 49, -41.51, 11.97, 0.01064, 46, + 55.08, -20.02, 0.45261, 4, 47, 1.91, 7.05, 0.66419, 48, -20.42, 7.05, 0.11803, 49, -43.35, 7.05, 0.002, 46, 60.11, -21.53, 0.21579, 4, 47, 0.03, 1.31, 0.77187, 48, -22.31, 1.31, + 0.12352, 49, -45.23, 1.31, 0.00043, 46, 65.96, -23.04, 0.10418, 4, 47, -1.27, -2.99, 0.84303, 48, -23.61, -2.99, 0.11246, 49, -46.53, -2.99, 0.00018, 46, 70.34, -24.05, 0.04432, 4, + 47, -1.8, 26.91, 0.12744, 48, -24.14, 26.91, 0.00959, 49, -47.06, 26.91, 0.0076, 46, 40.54, -26.53, 0.85537, 4, 47, 24.96, 27.56, 0.0719, 48, 2.62, 27.56, 0.03639, 49, -20.3, 27.56, + 0.07572, 46, 38.14, 0.13, 0.81598, 4, 47, 50.76, 27.7, 0.00702, 48, 28.42, 27.7, 0.00523, 49, 5.5, 27.7, 0.131, 46, 36.32, 25.87, 0.85675, 4, 47, 3.83, 36.15, 0.04791, 48, -18.51, + 36.15, 0.00352, 49, -41.43, 36.15, 0.00803, 46, 30.95, -21.51, 0.94054, 4, 47, 25.65, 37.95, 0.02662, 48, 3.31, 37.95, 0.00775, 49, -19.61, 37.95, 0.02767, 46, 27.73, 0.14, 0.93795, + 4, 47, 46.64, 37.25, 0.00753, 48, 24.3, 37.25, 0.00227, 49, 1.38, 37.25, 0.04846, 46, 27.06, 21.14, 0.94174, 4, 47, 41.75, 20.15, 0.01306, 48, 19.41, 20.15, 0.04509, 49, -3.51, + 20.15, 0.32134, 46, 44.45, 17.37, 0.62052, 4, 47, 43.25, 12.14, 0.00895, 48, 20.91, 12.14, 0.07841, 49, -2.01, 12.14, 0.49568, 46, 52.34, 19.39, 0.41696, 4, 47, 44.35, 6.12, 0.0015, + 48, 22.01, 6.12, 0.09572, 49, -0.91, 6.12, 0.67014, 46, 58.27, 20.88, 0.23264, 4, 47, 45.08, 1.14, 0.00025, 48, 22.74, 1.14, 0.108, 49, -0.18, 1.14, 0.76841, 46, 63.2, 21.93, + 0.12334, 4, 47, 45.58, -3.27, 0.0001, 48, 23.24, -3.27, 0.10937, 49, 0.32, -3.27, 0.83473, 46, 67.56, 22.71, 0.0558, 4, 47, 40.33, 27.64, 0.02381, 48, 18, 27.64, 0.02132, 49, -4.93, + 27.64, 0.16866, 46, 37.06, 15.47, 0.78621, 4, 47, 9.71, 27.19, 0.16236, 48, -12.63, 27.19, 0.02827, 49, -35.55, 27.19, 0.02548, 46, 39.51, -15.06, 0.78388, 4, 47, 15.01, 19.88, + 0.23124, 48, -7.33, 19.88, 0.11759, 49, -30.25, 19.88, 0.04679, 46, 46.46, -9.29, 0.60438, 4, 47, 13.78, 12.01, 0.29354, 48, -8.56, 12.01, 0.19873, 49, -31.48, 12.01, 0.04427, 46, + 54.39, -10.01, 0.46346, 4, 47, 12.95, 6.81, 0.37869, 48, -9.39, 6.81, 0.34588, 49, -32.31, 6.81, 0.01968, 46, 59.63, -10.5, 0.25575, 4, 47, 11.95, 1.27, 0.42861, 48, -10.39, 1.27, + 0.42317, 49, -33.31, 1.27, 0.01297, 46, 65.23, -11.14, 0.13524, 4, 47, 11.29, -3.07, 0.46725, 48, -11.05, -3.07, 0.46538, 49, -33.97, -3.07, 0.0097, 46, 69.59, -11.51, 0.05768, 4, + 47, -0.59, 19.72, 0.32338, 48, -22.92, 19.72, 0.02881, 49, -45.85, 19.72, 0.003, 46, 47.63, -24.85, 0.64481, 4, 47, -3.82, 11.93, 0.4391, 48, -26.16, 11.93, 0.03345, 49, -49.08, + 11.93, 0.00177, 46, 55.61, -27.57, 0.52567, 4, 47, -5.89, 7.22, 0.65491, 48, -28.23, 7.22, 0.02015, 49, -51.15, 7.22, 0.00017, 46, 60.45, -29.33, 0.32476, 4, 47, -8.13, 1.34, + 0.75275, 48, -30.47, 1.34, 0.01396, 49, -53.39, 1.34, 1e-05, 46, 66.46, -31.18, 0.23328, 3, 47, -9.63, -2.94, 0.80478, 48, -31.96, -2.94, 0.00944, 46, 70.83, -32.39, 0.18578, 4, 47, + 33.3, 20.06, 0.04166, 48, 10.96, 20.06, 0.10286, 49, -11.96, 20.06, 0.24857, 46, 45.08, 8.94, 0.60691, 4, 47, 33.97, 12.1, 0.03817, 48, 11.63, 12.1, 0.17811, 49, -11.29, 12.1, + 0.32257, 46, 52.98, 10.13, 0.46115, 4, 47, 34.3, 6.34, 0.01531, 48, 11.97, 6.34, 0.31162, 49, -10.96, 6.34, 0.40881, 46, 58.71, 10.84, 0.26426, 4, 47, 34.72, 1.18, 0.00955, 48, + 12.39, 1.18, 0.39036, 49, -10.54, 1.18, 0.4561, 46, 63.83, 11.59, 0.14399, 4, 47, 34.8, -3.2, 0.00731, 48, 12.46, -3.2, 0.44195, 49, -10.46, -3.2, 0.48699, 46, 68.2, 11.96, 0.06375, + 4, 47, 48.21, 20.21, 0.00241, 48, 25.88, 20.21, 0.01421, 49, 2.95, 20.21, 0.36275, 46, 43.96, 23.82, 0.62063, 4, 47, 50.54, 12.17, 0.00034, 48, 28.2, 12.17, 0.01068, 49, 5.28, 12.17, + 0.5453, 46, 51.83, 26.66, 0.44368, 4, 47, 52.52, 5.95, 2e-05, 48, 30.19, 5.95, 0.00999, 49, 7.26, 5.95, 0.66888, 46, 57.92, 29.04, 0.32111, 3, 48, 31.52, 1.11, 0.01011, 49, 8.6, + 1.11, 0.76268, 46, 62.66, 30.7, 0.22721, 3, 48, 32.61, -3.32, 0.00863, 49, 9.68, -3.32, 0.83296, 46, 67.01, 32.06, 0.15841, 4, 47, -9.21, 7.29, 0.52586, 48, -31.55, 7.29, 0.0057, 49, + -54.47, 7.29, 1e-05, 46, 60.59, -32.65, 0.46842, 3, 47, -11.3, 1.36, 0.56698, 48, -33.64, 1.36, 0.00311, 46, 66.65, -34.34, 0.42991, 3, 47, -12.66, -2.93, 0.60013, 48, -35, -2.93, + 0.00167, 46, 71.01, -35.42, 0.39821, 4, 47, -5.46, -2.97, 0.89102, 48, -27.8, -2.97, 0.03888, 49, -50.72, -2.97, 1e-05, 46, 70.59, -28.24, 0.07008, 4, 47, -4.18, 1.33, 0.83362, 48, + -26.52, 1.33, 0.04645, 49, -49.44, 1.33, 3e-05, 46, 66.21, -27.24, 0.1199, 4, 47, -2.26, 7.14, 0.75973, 48, -24.6, 7.14, 0.05134, 49, -47.52, 7.14, 0.00026, 46, 60.29, -25.7, + 0.18867, 4, 47, 7.35, 6.93, 0.57235, 48, -14.98, 6.93, 0.23863, 49, -37.91, 6.93, 0.00435, 46, 59.87, -16.09, 0.18467, 4, 47, 5.9, 1.29, 0.63011, 48, -16.44, 1.29, 0.25936, 49, + -39.36, 1.29, 0.00243, 46, 65.6, -17.18, 0.1081, 4, 47, 4.86, -3.03, 0.68809, 48, -17.48, -3.03, 0.26358, 49, -40.4, -3.03, 0.00168, 46, 69.98, -17.93, 0.04665, 4, 47, 17.76, 6.7, + 0.22941, 48, -4.58, 6.7, 0.4879, 49, -27.5, 6.7, 0.05094, 46, 59.42, -5.7, 0.23175, 4, 47, 17.11, 1.25, 0.24296, 48, -5.23, 1.25, 0.56856, 49, -28.15, 1.25, 0.04581, 46, 64.91, + -5.99, 0.14267, 4, 47, 16.71, -3.1, 0.25552, 48, -5.62, -3.1, 0.64168, 49, -28.55, -3.1, 0.03992, 46, 69.27, -6.1, 0.06288, 4, 47, 28.55, -3.17, 0.03276, 48, 6.22, -3.17, 0.62363, + 49, -16.71, -3.17, 0.27658, 46, 68.57, 5.72, 0.06703, 4, 47, 28.55, 1.2, 0.0367, 48, 6.21, 1.21, 0.54514, 49, -16.71, 1.21, 0.26974, 46, 64.21, 5.43, 0.14843, 4, 47, 28.71, 6.47, + 0.04075, 48, 6.37, 6.47, 0.46337, 49, -16.55, 6.47, 0.25797, 46, 58.95, 5.25, 0.23791, 4, 47, 39.28, 6.23, 0.00305, 48, 16.94, 6.24, 0.20572, 49, -5.98, 6.24, 0.59307, 46, 58.49, + 15.81, 0.19817, 4, 47, 39.51, 1.16, 0.00156, 48, 17.17, 1.16, 0.23228, 49, -5.75, 1.16, 0.64631, 46, 63.54, 16.37, 0.11984, 4, 47, 40.07, -3.24, 0.00112, 48, 17.74, -3.24, 0.25061, + 49, -5.19, -3.24, 0.69415, 46, 67.89, 17.22, 0.05412, 4, 47, 50.23, -3.29, 0, 48, 27.89, -3.29, 0.036, 49, 4.97, -3.29, 0.88144, 46, 67.29, 27.36, 0.08255, 4, 47, 49.51, 1.13, 2e-05, + 48, 27.17, 1.13, 0.03826, 49, 4.25, 1.13, 0.81357, 46, 62.92, 26.35, 0.14816, 4, 47, 48.55, 6.03, 0.00027, 48, 26.22, 6.03, 0.03577, 49, 3.29, 6.03, 0.72045, 46, 58.09, 25.08, + 0.24351, 4, 47, 47.11, 12.16, 0.00156, 48, 24.77, 12.16, 0.03311, 49, 1.85, 12.16, 0.61234, 46, 52.07, 23.24, 0.35299, 4, 47, 53.99, 12.19, 1e-05, 48, 31.66, 12.19, 0.00266, 49, + 8.73, 12.19, 0.47035, 46, 51.59, 30.11, 0.52698, 3, 48, 33.02, 5.88, 0.00213, 49, 10.1, 5.88, 0.54797, 46, 57.79, 31.88, 0.4499, 3, 48, 34.54, 1.1, 0.0018, 49, 11.62, 1.1, 0.63247, + 46, 62.47, 33.7, 0.36573, 3, 48, 35.58, -3.34, 0.00152, 49, 12.66, -3.34, 0.71351, 46, 66.83, 35.03, 0.28497, 3, 47, -17.72, -6.71, 0.31251, 48, -40.05, -6.71, 1e-05, 46, 75.11, + -40.22, 0.68748, 3, 47, -13.83, -6.56, 0.64755, 48, -36.17, -6.56, 0.00038, 46, 74.72, -36.36, 0.35207, 3, 47, -10.89, -6.57, 0.83546, 48, -33.23, -6.57, 0.00245, 46, 74.53, -33.42, + 0.1621, 3, 47, -6.58, -6.39, 0.9505, 48, -28.91, -6.39, 0.02598, 46, 74.07, -29.13, 0.02352, 4, 47, -2.51, -6.41, 0.9185, 48, -24.85, -6.41, 0.06986, 49, -47.77, -6.41, 1e-05, 46, + 73.83, -25.07, 0.01163, 4, 47, 3.97, -6.54, 0.7539, 48, -18.37, -6.54, 0.23416, 49, -41.29, -6.54, 0.00019, 46, 73.54, -18.6, 0.01175, 4, 47, 10.73, -6.3, 0.4945, 48, -11.61, -6.29, + 0.48778, 49, -34.53, -6.29, 0.00242, 46, 72.85, -11.87, 0.01529, 4, 47, 16.42, -6.31, 0.24467, 48, -5.92, -6.31, 0.71967, 49, -28.84, -6.31, 0.01969, 46, 72.5, -6.18, 0.01597, 4, 47, + 22.88, -6.46, 0.08074, 48, 0.54, -6.46, 0.81091, 49, -22.38, -6.46, 0.09131, 46, 72.22, 0.27, 0.01704, 4, 47, 28.51, -6.42, 0.01543, 48, 6.17, -6.42, 0.70591, 49, -16.75, -6.42, + 0.26031, 46, 71.82, 5.89, 0.01836, 4, 47, 34.97, -6.29, 0.00164, 48, 12.64, -6.29, 0.47309, 49, -10.29, -6.29, 0.50689, 46, 71.27, 12.33, 0.01837, 4, 47, 40.42, -6.47, 0.0001, 48, + 18.08, -6.47, 0.23958, 49, -4.84, -6.47, 0.7461, 46, 71.1, 17.78, 0.01421, 4, 47, 45.89, -6.5, 0, 48, 23.56, -6.5, 0.08431, 49, 0.63, -6.5, 0.9025, 46, 70.76, 23.24, 0.01319, 3, 48, + 28.36, -6.37, 0.01867, 49, 5.43, -6.37, 0.94991, 46, 70.33, 28.02, 0.03142, 3, 48, 33.31, -6.41, 0.00244, 49, 10.39, -6.41, 0.88788, 46, 70.05, 32.97, 0.10968, 3, 48, 36.23, -6.46, + 0.00046, 49, 13.31, -6.46, 0.80558, 46, 69.91, 35.88, 0.19395, 3, 48, 40.12, -6.31, 1e-05, 49, 17.2, -6.31, 0.61334, 46, 69.5, 39.76, 0.38665, 4, 47, 0.4, -6.47, 0.86555, 48, -21.94, + -6.47, 0.12959, 49, -44.86, -6.47, 1e-05, 46, 73.7, -22.16, 0.00485, 3, 47, -9.01, -6.49, 0.93616, 48, -31.35, -6.49, 0.00716, 46, 74.33, -31.55, 0.05668, 3, 47, -16.19, -6.65, + 0.44814, 48, -38.53, -6.65, 3e-05, 46, 74.96, -38.7, 0.55184, 4, 47, 7.48, -6.41, 0.63866, 48, -14.86, -6.41, 0.354, 49, -37.78, -6.41, 0.00037, 46, 73.18, -15.1, 0.00698, 4, 47, + 13.4, -6.3, 0.36468, 48, -8.94, -6.3, 0.62161, 49, -31.86, -6.3, 0.00581, 46, 72.69, -9.2, 0.0079, 4, 47, 19.68, -6.38, 0.14684, 48, -2.65, -6.38, 0.80383, 49, -25.58, -6.38, + 0.04176, 46, 72.36, -2.92, 0.00757, 4, 47, 25.54, -6.44, 0.03499, 48, 3.2, -6.44, 0.79745, 49, -19.72, -6.44, 0.15898, 46, 72.03, 2.92, 0.00858, 4, 47, 31.96, -6.35, 0.00417, 48, + 9.62, -6.35, 0.60634, 49, -13.3, -6.35, 0.37927, 46, 71.53, 9.32, 0.01022, 4, 47, 37.62, -6.38, 0.00021, 48, 15.28, -6.38, 0.35157, 49, -7.64, -6.38, 0.63918, 46, 71.18, 14.97, + 0.00904, 4, 47, 43.32, -6.48, 1e-05, 48, 20.98, -6.48, 0.14688, 49, -1.94, -6.48, 0.84692, 46, 70.92, 20.67, 0.00619, 3, 48, 25.81, -6.44, 0.03919, 49, 2.89, -6.44, 0.95006, 46, + 70.56, 25.48, 0.01074, 3, 48, 30.92, -6.39, 0.00591, 49, 7.99, -6.39, 0.9433, 46, 70.18, 30.58, 0.05079, 3, 48, 38.04, -6.39, 5e-05, 49, 15.12, -6.39, 0.72615, 46, 69.72, 37.69, + 0.2738 + ], + "hull": 46, + "edges": [ + 80, 82, 90, 0, 10, 8, 70, 72, 72, 74, 74, 76, 4, 6, 6, 8, 76, 78, 78, 80, 4, 2, 2, 0, 72, 92, 74, 94, 92, 94, 76, 96, 94, 96, 78, 98, 96, 98, 80, 100, 98, 100, 82, 84, 84, 86, 86, + 88, 88, 90, 0, 104, 2, 106, 104, 106, 4, 108, 106, 108, 6, 110, 108, 110, 8, 112, 110, 112, 10, 12, 102, 114, 114, 116, 116, 118, 118, 120, 122, 124, 124, 126, 126, 128, 128, 130, + 132, 100, 134, 102, 136, 104, 84, 138, 138, 132, 86, 140, 140, 134, 138, 140, 88, 142, 142, 136, 140, 142, 144, 146, 146, 148, 148, 150, 150, 152, 134, 154, 154, 136, 144, 154, 132, + 156, 156, 134, 122, 156, 102, 158, 158, 122, 114, 160, 160, 124, 158, 160, 160, 162, 162, 164, 164, 166, 100, 168, 168, 122, 98, 170, 170, 124, 168, 170, 170, 172, 172, 174, 174, + 176, 102, 178, 178, 144, 114, 180, 180, 146, 178, 180, 180, 182, 182, 184, 184, 186, 104, 188, 188, 144, 188, 190, 190, 192, 192, 194, 194, 196, 96, 198, 198, 172, 94, 200, 200, 174, + 198, 200, 92, 202, 202, 176, 200, 202, 64, 66, 58, 60, 130, 204, 204, 176, 128, 206, 206, 174, 204, 206, 126, 208, 208, 172, 206, 208, 126, 210, 210, 162, 128, 212, 212, 164, 210, + 212, 130, 214, 214, 166, 212, 214, 116, 216, 216, 162, 118, 218, 218, 164, 216, 218, 120, 220, 220, 166, 218, 220, 120, 222, 222, 186, 118, 224, 224, 184, 222, 224, 116, 226, 226, + 182, 224, 226, 148, 228, 228, 182, 150, 230, 230, 184, 228, 230, 152, 232, 232, 186, 230, 232, 152, 234, 234, 196, 150, 236, 236, 194, 234, 236, 148, 238, 238, 192, 236, 238, 146, + 240, 240, 190, 238, 240, 106, 242, 242, 190, 108, 244, 244, 192, 242, 244, 110, 246, 246, 194, 244, 246, 112, 248, 248, 196, 246, 248, 16, 18, 70, 250, 250, 92, 66, 252, 252, 202, + 64, 254, 254, 176, 252, 254, 60, 256, 256, 204, 58, 258, 258, 130, 256, 258, 54, 260, 260, 214, 50, 262, 262, 166, 46, 264, 264, 220, 42, 266, 266, 120, 38, 268, 268, 222, 34, 270, + 270, 186, 30, 272, 272, 232, 26, 274, 274, 152, 22, 276, 276, 234, 18, 278, 278, 196, 16, 280, 280, 248, 278, 280, 12, 282, 282, 112, 258, 284, 284, 260, 54, 56, 56, 58, 284, 56, + 254, 286, 286, 256, 60, 62, 62, 64, 286, 62, 250, 288, 288, 252, 66, 68, 68, 70, 288, 68, 260, 290, 290, 262, 50, 52, 52, 54, 290, 52, 262, 292, 292, 264, 46, 48, 48, 50, 292, 48, + 264, 294, 294, 266, 42, 44, 44, 46, 294, 44, 266, 296, 296, 268, 38, 40, 40, 42, 296, 40, 268, 298, 298, 270, 34, 36, 36, 38, 298, 36, 270, 300, 300, 272, 30, 32, 32, 34, 300, 32, + 272, 302, 302, 274, 26, 28, 28, 30, 302, 28, 274, 304, 304, 276, 22, 24, 24, 26, 304, 24, 276, 306, 306, 278, 18, 20, 20, 22, 306, 20, 280, 308, 308, 282, 12, 14, 14, 16, 308, 14 + ], + "width": 87.05882352941177, + "height": 80.0, + "path": "summer-as.ear-left-bubble", + "x": 0.470588235294116, + "y": 0.0 + } + }, + "ear-left-dot-01": { + "ear-left-dot": {"x": 0.8847058823529402, "y": 0.8347058823529402, "rotation": -0.95, "width": 16.47058823529412, "height": 16.47058823529412, "path": "summer-as.ear-left-dot"} + }, + "ear-left-dot-02": { + "ear-left-dot": {"x": 0.8847058823529402, "y": 0.8347058823529402, "rotation": -0.95, "width": 16.47058823529412, "height": 16.47058823529412, "path": "summer-as.ear-left-dot"} + }, + "ear-left-dot-03": { + "ear-left-dot": {"x": 0.8847058823529402, "y": 0.8347058823529402, "rotation": -0.95, "width": 16.47058823529412, "height": 16.47058823529412, "path": "summer-as.ear-left-dot"} + }, + "ear-left-dot-04": { + "ear-left-dot": {"x": 0.8847058823529402, "y": 0.8347058823529402, "rotation": -0.95, "width": 16.47058823529412, "height": 16.47058823529412, "path": "summer-as.ear-left-dot"} + }, + "ear-left-dot-05": { + "ear-left-dot": {"x": 0.8847058823529402, "y": 0.8347058823529402, "rotation": -0.95, "width": 16.47058823529412, "height": 16.47058823529412, "path": "summer-as.ear-left-dot"} + }, + "ear-left-dot-06": { + "ear-left-dot": {"x": 0.8847058823529402, "y": 0.8347058823529402, "rotation": -0.95, "width": 16.47058823529412, "height": 16.47058823529412, "path": "summer-as.ear-left-dot"} + }, + "ear-left-dot-07": { + "ear-left-dot": {"x": 0.8847058823529402, "y": 0.8347058823529402, "rotation": -0.95, "width": 16.47058823529412, "height": 16.47058823529412, "path": "summer-as.ear-left-dot"} + }, + "ear-left-dot-08": { + "ear-left-dot": {"x": 0.8847058823529402, "y": 0.8347058823529402, "rotation": -0.95, "width": 16.47058823529412, "height": 16.47058823529412, "path": "summer-as.ear-left-dot"} + }, + "ear-left-dot-09": { + "ear-left-dot": {"x": 0.8847058823529402, "y": 0.8347058823529402, "rotation": -0.95, "width": 16.47058823529412, "height": 16.47058823529412, "path": "summer-as.ear-left-dot"} + }, + "ear-left-dot-10": { + "ear-left-dot": {"x": 0.8847058823529402, "y": 0.8347058823529402, "rotation": -0.95, "width": 16.47058823529412, "height": 16.47058823529412, "path": "summer-as.ear-left-dot"} + }, + "ear-left-dot-11": { + "ear-left-dot": {"x": 0.8847058823529402, "y": 0.8347058823529402, "rotation": -0.95, "width": 16.47058823529412, "height": 16.47058823529412, "path": "summer-as.ear-left-dot"} + }, + "ear-left-dot-12": { + "ear-left-dot": {"x": 0.8847058823529402, "y": 0.8347058823529402, "rotation": -0.95, "width": 16.47058823529412, "height": 16.47058823529412, "path": "summer-as.ear-left-dot"} + }, + "ear-left-under": { + "ear-left-under": {"x": 84.58058823529412, "y": -22.60529411764706, "rotation": -90, "width": 127.05882352941177, "height": 216.47058823529412, "path": "summer-as.ear-left-under"} + }, + "ear-left-upper": { + "ear-left-upper": {"x": 86.34529411764706, "y": -23.664117647058827, "rotation": -90, "width": 143.52941176470588, "height": 230.58823529411765, "path": "summer-as.ear-left-upper"} + }, + "ear-right-bubble": { + "ear-right-bubble": { + "type": "mesh", + "uvs": [ + 0.93928, 0.50958, 0.95558, 0.59885, 0.96791, 0.66638, 0.98006, 0.73289, 1, 0.84205, 1, 0.89818, 1, 0.9625, 0.9567, 0.9625, 0.9208, 0.9625, 0.88771, 0.9625, 0.83969, 0.9625, 0.79967, + 0.9625, 0.76574, 0.9625, 0.73418, 0.9625, 0.69508, 0.9625, 0.6661, 0.9625, 0.6319, 0.9625, 0.6046, 0.9625, 0.57454, 0.9625, 0.53755, 0.9625, 0.50387, 0.9625, 0.47341, 0.9625, + 0.44466, 0.9625, 0.41233, 0.9625, 0.37317, 0.9625, 0.33787, 0.9625, 0.30333, 0.9625, 0.2648, 0.9625, 0.21937, 0.9625, 0.17434, 0.9625, 0.12959, 0.9625, 0.08769, 0.9625, 0, 0.9625, + 0.02085, 0.89779, 0.04055, 0.83664, 0.06626, 0.75682, 0.08854, 0.68766, 0.11527, 0.60468, 0.13788, 0.53451, 0.35753, 0.0375, 0.43128, 0.0375, 0.52161, 0.0375, 0.60662, 0.0375, + 0.67954, 0.0375, 0.54109, 0.5336, 0.30907, 0.53412, 0.75362, 0.52077, 0.84707, 0.51514, 0.2081, 0.53435, 0.42115, 0.53387, 0.64269, 0.52747, 0.1892, 0.60156, 0.3018, 0.60447, + 0.41972, 0.60346, 0.54053, 0.60135, 0.64648, 0.59785, 0.76151, 0.59644, 0.87262, 0.58988, 0.16806, 0.67676, 0.29497, 0.67061, 0.41838, 0.66857, 0.54, 0.66508, 0.65011, 0.66538, + 0.7681, 0.65967, 0.89666, 0.66021, 0.14733, 0.75044, 0.28705, 0.74721, 0.41688, 0.74143, 0.53942, 0.73556, 0.6538, 0.73393, 0.7757, 0.7326, 0.91933, 0.7265, 0.12337, 0.83566, 0.2782, + 0.83283, 0.4151, 0.82771, 0.53871, 0.82207, 0.65852, 0.82169, 0.7847, 0.8189, 0.95379, 0.82732, 0.97627, 0.89309, 0.79208, 0.88971, 0.66236, 0.89294, 0.5381, 0.89586, 0.41375, + 0.89349, 0.2717, 0.89571, 0.10571, 0.89844, 0.53197, 0.30141, 0.39415, 0.1884, 0.65961, 0.2117, 0.25473, 0.53425, 0.24202, 0.60293, 0.22911, 0.6738, 0.21379, 0.7489, 0.19729, + 0.83431, 0.18704, 0.8971, 0.36352, 0.534, 0.36013, 0.60397, 0.35748, 0.66957, 0.35288, 0.74428, 0.34802, 0.83022, 0.34383, 0.89458, 0.48024, 0.53373, 0.47847, 0.60244, 0.47433, + 0.66696, 0.47563, 0.73861, 0.47402, 0.82502, 0.47337, 0.89463, 0.58955, 0.53067, 0.59344, 0.5996, 0.59605, 0.66523, 0.5961, 0.73475, 0.60032, 0.82187, 0.60296, 0.89434, 0.69391, + 0.52438, 0.69915, 0.59721, 0.70691, 0.66263, 0.71206, 0.7333, 0.71954, 0.82034, 0.72813, 0.8913, 0.80125, 0.5179, 0.81428, 0.59333, 0.8348, 0.65995, 0.84793, 0.72953, 0.87862, + 0.82358, 0.89305, 0.89156, 0.19669, 0.67537, 0.17782, 0.74974, 0.1594, 0.835, 0.1429, 0.89783, 0.26012, 0.6723, 0.25017, 0.74806, 0.23685, 0.83359, 0.22589, 0.89647, 0.30659, + 0.89517, 0.3131, 0.83153, 0.31569, 0.74593, 0.32231, 0.67016, 0.38717, 0.66908, 0.38553, 0.74282, 0.38068, 0.829, 0.37648, 0.89407, 0.44462, 0.89408, 0.44322, 0.82643, 0.44458, + 0.7401, 0.44621, 0.66777, 0.50711, 0.66602, 0.50646, 0.73714, 0.50582, 0.82357, 0.50482, 0.89523, 0.57134, 0.89508, 0.5687, 0.82197, 0.56865, 0.73514, 0.5654, 0.66515, 0.62192, + 0.6653, 0.6236, 0.73436, 0.62525, 0.8218, 0.62839, 0.89374, 0.69427, 0.89215, 0.76244, 0.89045, 0.84047, 0.89059, 0.93306, 0.89229, 0.91732, 0.8255, 0.82617, 0.82097, 0.75013, + 0.81967, 0.6863, 0.82108, 0.68017, 0.73364, 0.74166, 0.73297, 0.80979, 0.73115, 0.88285, 0.72805, 0.86581, 0.66008, 0.79931, 0.6598, 0.73613, 0.66121, 0.67214, 0.66431, 0.09776, + 0.92671, 0.13724, 0.92534, 0.1817, 0.92459, 0.22313, 0.92439, 0.26892, 0.92268, 0.30526, 0.92265, 0.34139, 0.92236, 0.3751, 0.92252, 0.41313, 0.92351, 0.44464, 0.92289, 0.47339, + 0.92339, 0.5044, 0.9248, 0.53787, 0.92389, 0.57268, 0.92341, 0.60366, 0.9233, 0.62995, 0.92432, 0.66398, 0.92316, 0.69464, 0.92383, 0.73085, 0.92333, 0.76403, 0.92521, 0.79572, + 0.92461, 0.84011, 0.92404, 0.89075, 0.92209, 0.92774, 0.92274, 0.96706, 0.92576 + ], + "triangles": [ + 166, 63, 70, 116, 171, 166, 165, 115, 116, 77, 70, 167, 163, 166, 70, 163, 70, 77, 117, 116, 166, 117, 166, 163, 77, 167, 162, 164, 165, 116, 164, 116, 117, 76, 69, 165, 76, 165, + 164, 162, 122, 123, 80, 77, 162, 158, 163, 77, 158, 77, 80, 159, 162, 123, 80, 162, 159, 118, 117, 163, 118, 163, 158, 124, 123, 161, 159, 123, 124, 157, 164, 117, 157, 117, 118, 81, + 76, 164, 81, 164, 157, 195, 159, 124, 196, 124, 160, 195, 124, 196, 189, 81, 157, 191, 118, 158, 190, 157, 118, 190, 118, 191, 189, 157, 190, 159, 193, 80, 194, 159, 195, 194, 193, + 159, 192, 158, 80, 192, 80, 193, 191, 158, 192, 15, 189, 190, 14, 190, 191, 15, 190, 14, 13, 191, 192, 14, 191, 13, 12, 192, 193, 13, 192, 12, 11, 193, 194, 12, 193, 11, 10, 11, 194, + 9, 194, 195, 10, 194, 9, 8, 195, 196, 9, 195, 8, 8, 196, 7, 151, 109, 110, 68, 152, 151, 146, 145, 68, 104, 103, 146, 155, 154, 69, 155, 69, 76, 111, 110, 154, 111, 154, 155, 150, + 151, 110, 150, 110, 111, 68, 151, 150, 75, 146, 68, 75, 68, 150, 147, 104, 146, 147, 146, 75, 105, 143, 104, 105, 104, 147, 142, 67, 143, 142, 143, 105, 74, 67, 142, 156, 155, 76, + 156, 76, 81, 106, 141, 142, 74, 142, 141, 83, 74, 141, 112, 111, 155, 112, 155, 156, 105, 106, 142, 149, 150, 111, 149, 111, 112, 148, 105, 147, 106, 105, 148, 82, 75, 150, 82, 148, + 147, 147, 75, 82, 150, 149, 82, 182, 141, 106, 187, 112, 156, 183, 106, 148, 182, 106, 183, 186, 149, 112, 186, 112, 187, 182, 181, 83, 182, 83, 141, 185, 148, 82, 185, 82, 149, 185, + 149, 186, 188, 156, 81, 188, 81, 189, 187, 156, 188, 184, 183, 148, 184, 148, 185, 22, 182, 183, 181, 182, 22, 23, 181, 22, 21, 183, 184, 22, 183, 21, 20, 21, 184, 19, 184, 185, 20, + 184, 19, 18, 186, 187, 19, 185, 186, 18, 19, 186, 17, 187, 188, 18, 187, 17, 16, 188, 189, 17, 188, 16, 16, 189, 15, 143, 144, 104, 110, 153, 154, 151, 152, 109, 68, 145, 61, 68, 61, + 152, 146, 103, 145, 83, 139, 74, 181, 140, 83, 23, 180, 181, 138, 137, 67, 98, 136, 97, 98, 97, 138, 135, 59, 136, 135, 136, 98, 66, 59, 135, 130, 129, 66, 74, 138, 67, 139, 98, 138, + 139, 138, 74, 99, 135, 98, 99, 98, 139, 134, 66, 135, 134, 135, 99, 73, 130, 66, 73, 66, 134, 131, 92, 130, 131, 130, 73, 93, 92, 131, 140, 99, 139, 140, 139, 83, 100, 134, 99, 100, + 99, 140, 133, 73, 134, 133, 134, 100, 84, 131, 73, 84, 73, 133, 132, 93, 131, 132, 131, 84, 94, 127, 93, 94, 93, 132, 128, 127, 94, 179, 133, 100, 180, 100, 140, 179, 100, 180, 178, + 84, 133, 178, 133, 179, 177, 132, 84, 177, 84, 178, 180, 140, 181, 176, 94, 132, 176, 132, 177, 175, 128, 94, 175, 94, 176, 174, 85, 128, 174, 128, 175, 30, 173, 174, 31, 173, 30, + 29, 174, 175, 30, 174, 29, 28, 175, 176, 29, 175, 28, 27, 176, 177, 28, 176, 27, 26, 177, 178, 27, 177, 26, 25, 178, 179, 26, 178, 25, 24, 179, 180, 25, 179, 24, 24, 180, 23, 79, 4, + 5, 79, 78, 4, 6, 79, 5, 123, 168, 161, 160, 78, 79, 124, 161, 160, 7, 196, 197, 196, 160, 197, 197, 160, 79, 160, 161, 78, 7, 197, 6, 162, 167, 122, 6, 197, 79, 85, 72, 128, 173, 32, + 85, 31, 32, 173, 173, 85, 174, 85, 32, 33, 66, 129, 59, 167, 170, 121, 167, 121, 122, 70, 63, 170, 70, 170, 167, 166, 171, 63, 123, 122, 168, 130, 91, 129, 92, 91, 130, 122, 169, + 168, 127, 65, 126, 72, 65, 127, 92, 125, 91, 161, 168, 71, 122, 121, 169, 170, 120, 121, 91, 90, 129, 78, 161, 71, 3, 78, 71, 71, 64, 2, 52, 129, 90, 59, 129, 52, 67, 60, 143, 138, + 97, 137, 170, 63, 56, 171, 56, 63, 169, 121, 57, 33, 34, 85, 72, 35, 65, 34, 35, 72, 125, 51, 91, 35, 36, 65, 91, 51, 90, 36, 37, 58, 58, 37, 51, 71, 2, 3, 64, 1, 2, 1, 64, 57, 57, + 0, 1, 87, 39, 40, 88, 42, 43, 88, 86, 41, 88, 41, 42, 0, 88, 43, 47, 88, 0, 86, 88, 113, 47, 119, 88, 119, 46, 88, 46, 113, 88, 50, 86, 113, 107, 86, 50, 44, 86, 107, 87, 41, 86, 41, + 87, 40, 101, 86, 44, 87, 86, 95, 101, 49, 86, 87, 38, 39, 49, 95, 86, 87, 95, 45, 87, 45, 89, 87, 89, 48, 87, 48, 38, 57, 47, 0, 120, 119, 47, 56, 46, 119, 56, 119, 120, 114, 113, + 46, 114, 46, 56, 55, 50, 113, 55, 113, 114, 108, 107, 50, 55, 108, 50, 54, 101, 44, 44, 107, 108, 54, 44, 108, 102, 49, 101, 102, 101, 54, 90, 48, 89, 53, 95, 49, 53, 49, 102, 96, + 45, 95, 96, 95, 53, 52, 89, 45, 52, 45, 96, 90, 89, 52, 171, 114, 56, 115, 114, 171, 172, 55, 114, 172, 114, 115, 54, 145, 102, 152, 54, 108, 61, 54, 152, 153, 109, 108, 55, 153, + 108, 152, 108, 109, 55, 62, 153, 172, 62, 55, 61, 145, 54, 102, 144, 53, 103, 102, 145, 103, 144, 102, 53, 137, 96, 60, 53, 144, 60, 137, 53, 96, 136, 52, 97, 96, 137, 97, 136, 96, + 69, 62, 172, 154, 153, 62, 110, 109, 153, 144, 103, 104, 143, 60, 144, 67, 137, 60, 120, 47, 57, 121, 120, 57, 64, 169, 57, 78, 3, 4, 51, 38, 48, 51, 48, 90, 37, 38, 51, 58, 51, 125, + 65, 36, 58, 120, 170, 56, 154, 62, 69, 116, 115, 171, 165, 172, 115, 69, 172, 165, 59, 52, 136, 126, 58, 125, 65, 58, 126, 168, 169, 64, 168, 64, 71, 85, 34, 72, 126, 125, 92, 93, + 126, 92, 127, 126, 93, 128, 72, 127 + ], + "vertices": [ + 1, 31, 39.72, 33.4, 1, 1, 31, 46.93, 34.38, 1, 1, 31, 52.37, 35.12, 1, 1, 31, 58.6, 36.08, 1, 4, 31, 66.62, 38.45, 0.9295, 36, 61.48, 0.37, 1e-05, 37, 40.07, 0.48, 0.00266, 38, 18.6, + 0.48, 0.06784, 4, 31, 70.87, 39.07, 0.79905, 36, 62.32, -3.84, 1e-05, 37, 40.92, -3.73, 0.00721, 38, 19.44, -3.73, 0.19373, 4, 31, 76.95, 40.59, 0.74731, 36, 64.15, -9.83, 0, 37, + 42.75, -9.72, 0.00973, 38, 21.27, -9.72, 0.24296, 4, 31, 76.59, 36.12, 0.54785, 36, 59.68, -9.71, 1e-05, 37, 38.27, -9.6, 0.02168, 38, 16.8, -9.6, 0.43046, 4, 31, 76.3, 32.42, + 0.43038, 36, 55.96, -9.61, 3e-05, 37, 34.56, -9.5, 0.03847, 38, 13.08, -9.5, 0.53112, 4, 31, 76.02, 29.01, 0.36035, 36, 52.54, -9.51, 9e-05, 37, 31.14, -9.41, 0.06275, 38, 9.66, + -9.41, 0.57681, 4, 31, 75.63, 24.06, 0.2889, 36, 47.58, -9.38, 0.00026, 37, 26.17, -9.27, 0.09917, 38, 4.7, -9.27, 0.61167, 4, 31, 75.3, 19.93, 0.22591, 36, 43.44, -9.26, 0.0007, 37, + 22.03, -9.16, 0.14876, 38, 0.56, -9.16, 0.62463, 4, 31, 75.15, 17.12, 0.17724, 36, 40.62, -9.26, 0.0017, 37, 19.22, -9.16, 0.21115, 38, -2.26, -9.16, 0.60991, 4, 31, 75.01, 14.5, + 0.14418, 36, 38, -9.26, 0.00385, 37, 16.6, -9.16, 0.28407, 38, -4.88, -9.16, 0.5679, 4, 31, 74.84, 11.26, 0.12448, 36, 34.76, -9.26, 0.00813, 37, 13.35, -9.16, 0.36326, 38, -8.12, + -9.16, 0.50413, 4, 31, 74.71, 8.86, 0.11438, 36, 32.35, -9.26, 0.016, 37, 10.95, -9.16, 0.44276, 38, -10.53, -9.16, 0.42686, 4, 31, 74.56, 6.02, 0.11006, 36, 29.51, -9.26, 0.02948, + 37, 8.11, -9.16, 0.51561, 38, -13.37, -9.16, 0.34486, 4, 31, 74.45, 3.76, 0.10858, 36, 27.25, -9.26, 0.05095, 37, 5.84, -9.16, 0.57474, 38, -15.63, -9.16, 0.26573, 4, 31, 74.31, + 1.27, 0.10802, 36, 24.75, -9.26, 0.08291, 37, 3.35, -9.16, 0.614, 38, -18.13, -9.16, 0.19506, 4, 31, 74.15, -1.8, 0.1074, 36, 21.68, -9.26, 0.12742, 37, 0.28, -9.16, 0.62906, 38, + -21.2, -9.16, 0.13612, 4, 31, 74.01, -4.59, 0.10634, 36, 18.89, -9.26, 0.18549, 37, -2.52, -9.16, 0.61812, 38, -23.99, -9.16, 0.09006, 4, 31, 73.87, -7.11, 0.10502, 36, 16.36, -9.26, + 0.25646, 37, -5.05, -9.16, 0.58221, 38, -26.52, -9.16, 0.05631, 4, 31, 73.75, -9.5, 0.10419, 36, 13.97, -9.26, 0.33753, 37, -7.43, -9.16, 0.52513, 38, -28.91, -9.16, 0.03316, 4, 31, + 73.61, -12.18, 0.10536, 36, 11.29, -9.26, 0.42349, 37, -10.12, -9.16, 0.45282, 38, -31.59, -9.16, 0.01833, 4, 31, 73.44, -15.42, 0.11098, 36, 8.04, -9.26, 0.50701, 37, -13.37, -9.16, + 0.37254, 38, -34.84, -9.16, 0.00948, 4, 31, 73.28, -18.35, 0.12436, 36, 5.11, -9.26, 0.57939, 37, -16.3, -9.16, 0.29168, 38, -37.77, -9.16, 0.00457, 4, 31, 73.13, -21.21, 0.149, 36, + 2.24, -9.26, 0.63222, 37, -19.16, -9.16, 0.21673, 38, -40.64, -9.16, 0.00205, 4, 31, 72.96, -24.4, 0.18726, 36, -0.96, -9.26, 0.65948, 37, -22.36, -9.16, 0.15241, 38, -43.84, -9.16, + 0.00085, 4, 31, 72.77, -28.17, 0.23866, 36, -4.73, -9.26, 0.65975, 37, -26.13, -9.16, 0.10126, 38, -47.61, -9.16, 0.00033, 4, 31, 72.57, -31.9, 0.29871, 36, -8.46, -9.26, 0.63741, + 37, -29.87, -9.16, 0.06376, 38, -51.34, -9.16, 0.00012, 4, 31, 72.37, -35.61, 0.35932, 36, -12.18, -9.26, 0.60181, 37, -33.58, -9.16, 0.03884, 38, -55.06, -9.16, 4e-05, 4, 31, 72.19, + -39.08, 0.49297, 36, -15.66, -9.26, 0.48586, 37, -37.06, -9.16, 0.02116, 38, -58.54, -9.16, 1e-05, 4, 31, 71.81, -46.35, 0.66969, 36, -22.93, -9.26, 0.32512, 37, -44.34, -9.16, + 0.00518, 38, -65.81, -9.16, 0, 4, 31, 66.73, -44.35, 0.73638, 36, -21.2, -4.09, 0.26049, 37, -42.61, -3.98, 0.00313, 38, -64.08, -3.98, 0, 4, 31, 61.93, -42.46, 0.74288, 36, -19.57, + 0.8, 0.25402, 37, -40.97, 0.91, 0.00309, 38, -62.45, 0.91, 1e-05, 2, 31, 55.67, -40, 0.86, 36, -17.44, 7.19, 0.14, 2, 31, 50.24, -37.86, 0.87418, 36, -15.59, 12.72, 0.12582, 1, 31, + 43.72, -35.29, 1, 1, 31, 38.22, -33.12, 1, 2, 31, -0.53, -12.83, 0.99965, 36, 6.74, 64.74, 0.00035, 2, 31, -0.21, -6.72, 0.9998, 36, 12.86, 64.74, 0.0002, 3, 31, 0.19, 0.77, 0.99981, + 36, 20.36, 64.74, 9e-05, 38, -22.52, 64.84, 0.0001, 3, 31, 0.56, 7.82, 0.99975, 36, 27.41, 64.74, 1e-05, 38, -15.47, 64.84, 0.00024, 2, 31, 0.88, 13.86, 0.99954, 38, -9.41, 64.84, + 0.00046, 4, 31, 39.9, 0.3, 0.88429, 36, 21.98, 25.05, 0.02526, 37, 0.57, 25.15, 0.06552, 38, -20.9, 25.15, 0.02493, 1, 31, 38.93, -18.93, 1, 4, 31, 39.81, 17.97, 0.94373, 36, 39.62, + 26.07, 0.00089, 37, 18.21, 26.18, 0.01419, 38, -3.26, 26.18, 0.04119, 1, 31, 39.76, 25.74, 1, 1, 31, 38.51, -27.3, 1, 4, 31, 39.4, -9.64, 0.88619, 36, 12.02, 25.03, 0.05505, 37, + -9.38, 25.13, 0.05102, 38, -30.86, 25.13, 0.00774, 4, 31, 39.86, 8.75, 0.89286, 36, 30.41, 25.54, 0.00746, 37, 9, 25.64, 0.04877, 38, -12.47, 25.64, 0.05092, 1, 31, 43.8, -29.15, 1, + 4, 31, 44.52, -19.83, 0.74343, 36, 2.11, 19.38, 0.19678, 37, -19.29, 19.48, 0.05726, 38, -40.77, 19.48, 0.00254, 4, 31, 44.96, -10.05, 0.58833, 36, 11.9, 19.46, 0.20061, 37, -9.5, + 19.56, 0.19026, 38, -30.98, 19.56, 0.0208, 4, 31, 45.31, -0.03, 0.58846, 36, 21.93, 19.63, 0.08112, 37, 0.53, 19.73, 0.24909, 38, -20.95, 19.73, 0.08133, 4, 31, 45.5, 8.76, 0.59817, + 36, 30.72, 19.91, 0.02026, 37, 9.32, 20.01, 0.18761, 38, -12.16, 20.01, 0.19395, 4, 31, 45.89, 18.3, 0.66183, 36, 40.27, 20.02, 0.00346, 37, 18.87, 20.13, 0.07957, 38, -2.61, 20.13, + 0.25514, 1, 31, 45.85, 27.54, 1, 4, 31, 49.71, -31.22, 0.84023, 36, -8.99, 13.6, 0.15068, 37, -30.39, 13.7, 0.00899, 38, -51.87, 13.7, 0.0001, 4, 31, 49.78, -20.68, 0.48016, 36, + 1.55, 14.09, 0.41733, 37, -19.86, 14.19, 0.10062, 38, -41.33, 14.19, 0.0019, 4, 31, 50.15, -10.44, 0.42576, 36, 11.79, 14.25, 0.28082, 37, -9.61, 14.36, 0.27628, 38, -31.09, 14.36, + 0.01714, 4, 31, 50.4, -0.34, 0.43345, 36, 21.89, 14.53, 0.09343, 37, 0.48, 14.63, 0.37698, 38, -20.99, 14.63, 0.09613, 4, 31, 50.91, 8.78, 0.43708, 36, 31.02, 14.51, 0.01603, 37, + 9.62, 14.61, 0.27127, 38, -11.86, 14.61, 0.27562, 4, 31, 50.97, 18.59, 0.51068, 36, 40.82, 14.96, 0.00179, 37, 19.41, 15.07, 0.09933, 38, -2.06, 15.07, 0.3882, 4, 31, 51.57, 29.24, + 0.94195, 36, 51.49, 14.92, 4e-05, 37, 30.08, 15.02, 0.00385, 38, 8.61, 15.02, 0.05416, 4, 31, 55.51, -33.25, 0.72549, 36, -10.71, 7.7, 0.2621, 37, -32.11, 7.81, 0.01235, 38, -53.59, + 7.81, 6e-05, 4, 31, 55.86, -21.65, 0.38729, 36, 0.89, 7.96, 0.4981, 37, -20.51, 8.06, 0.11341, 38, -41.99, 8.06, 0.0012, 4, 31, 55.96, -10.87, 0.32692, 36, 11.67, 8.42, 0.3274, 37, + -9.74, 8.53, 0.32983, 38, -31.21, 8.53, 0.01585, 4, 31, 56.03, -0.69, 0.33677, 36, 21.84, 8.89, 0.10146, 37, 0.43, 9, 0.45593, 38, -21.04, 9, 0.10584, 4, 31, 56.4, 8.8, 0.33839, 36, + 31.33, 9.02, 0.0144, 37, 9.93, 9.13, 0.32329, 38, -11.55, 9.13, 0.32392, 4, 31, 57.13, 19.32, 0.42143, 36, 41.87, 8.84, 0.00109, 37, 20.47, 8.95, 0.11176, 38, -1.01, 8.95, 0.46572, + 4, 31, 58.69, 31.45, 0.79569, 36, 54.07, 7.92, 5e-05, 37, 32.67, 8.03, 0.01091, 38, 11.19, 8.03, 0.19335, 4, 31, 62.21, -35.59, 0.66085, 36, -12.7, 0.88, 0.32566, 37, -34.1, 0.99, + 0.01346, 38, -55.58, 0.99, 3e-05, 4, 31, 62.66, -22.75, 0.31024, 36, 0.16, 1.11, 0.56299, 37, -21.25, 1.21, 0.12589, 38, -42.72, 1.21, 0.00089, 4, 31, 62.85, -11.38, 0.24349, 36, + 11.52, 1.52, 0.36477, 37, -9.89, 1.62, 0.37599, 38, -31.36, 1.62, 0.01574, 4, 31, 62.94, -1.11, 0.2525, 36, 21.78, 1.97, 0.10936, 37, 0.37, 2.08, 0.52284, 38, -21.1, 2.08, 0.1153, 4, + 31, 63.43, 8.82, 0.2544, 36, 31.72, 2, 0.01401, 37, 10.32, 2.11, 0.36809, 38, -11.16, 2.11, 0.3635, 4, 31, 63.63, 19.58, 0.3466, 36, 42.48, 2.36, 0.00077, 37, 21.07, 2.47, 0.1237, + 38, -0.4, 2.47, 0.52893, 4, 31, 65.17, 33.27, 0.69411, 36, 56.23, 1.55, 3e-05, 37, 34.83, 1.66, 0.01435, 38, 13.35, 1.66, 0.29151, 4, 31, 70.52, 34.86, 0.61986, 36, 58.1, -3.71, + 1e-05, 37, 36.69, -3.61, 0.01658, 38, 15.22, -3.61, 0.36355, 4, 31, 69.45, 19.61, 0.28549, 36, 42.81, -3.44, 0.00065, 37, 21.4, -3.34, 0.13463, 38, -0.07, -3.34, 0.57924, 4, 31, + 69.14, 8.84, 0.18483, 36, 32.04, -3.7, 0.01432, 37, 10.64, -3.59, 0.40541, 38, -10.84, -3.59, 0.39544, 4, 31, 68.83, -1.47, 0.18141, 36, 21.73, -3.93, 0.11681, 37, 0.32, -3.83, + 0.57764, 38, -21.15, -3.83, 0.12413, 4, 31, 68.1, -11.77, 0.17479, 36, 11.41, -3.74, 0.39444, 37, -10, -3.64, 0.41447, 38, -31.47, -3.64, 0.0163, 4, 31, 67.66, -23.55, 0.24784, 36, + -0.38, -3.92, 0.61396, 37, -21.79, -3.82, 0.13743, 38, -43.26, -3.82, 0.00077, 4, 31, 67.15, -37.32, 0.59732, 36, -14.16, -4.14, 0.38768, 37, -35.56, -4.03, 0.01499, 38, -57.04, + -4.03, 1e-05, 4, 31, 21.31, 0.52, 0.98403, 36, 21.22, 43.62, 0.00516, 37, -0.19, 43.73, 0.00609, 38, -21.66, 43.73, 0.00473, 3, 31, 11.68, -10.43, 0.98457, 36, 9.78, 52.66, 0.01421, + 37, -11.62, 52.77, 0.00123, 3, 31, 14.7, 11.48, 0.98807, 37, 10.41, 50.91, 0.00101, 38, -11.07, 50.91, 0.01092, 1, 31, 38.71, -23.44, 1, 4, 31, 44.14, -24.78, 0.93122, 36, -2.85, + 19.5, 0.05888, 37, -24.25, 19.61, 0.00959, 38, -45.73, 19.61, 0.0003, 4, 31, 49.74, -26.15, 0.67882, 36, -3.92, 13.83, 0.287, 37, -25.32, 13.94, 0.03374, 38, -46.8, 13.94, 0.00045, + 4, 31, 55.68, -27.73, 0.52353, 36, -5.19, 7.82, 0.4314, 37, -26.59, 7.93, 0.04479, 38, -48.07, 7.93, 0.00029, 4, 31, 62.43, -29.46, 0.41464, 36, -6.56, 0.99, 0.53292, 37, -27.96, + 1.1, 0.05226, 38, -49.44, 1.1, 0.00018, 4, 31, 67.4, -30.57, 0.35706, 36, -7.41, -4.03, 0.58638, 37, -28.81, -3.93, 0.05644, 38, -50.29, -3.93, 0.00012, 4, 31, 39.16, -14.42, + 0.88311, 36, 7.24, 25.02, 0.07338, 37, -14.17, 25.12, 0.03978, 38, -35.64, 25.12, 0.00372, 4, 31, 44.74, -15, 0.62555, 36, 6.96, 19.42, 0.24007, 37, -14.45, 19.52, 0.1259, 38, + -35.92, 19.52, 0.00848, 4, 31, 49.97, -15.49, 0.4342, 36, 6.74, 14.17, 0.37611, 37, -14.67, 14.27, 0.18375, 38, -36.14, 14.27, 0.00595, 4, 31, 55.91, -16.19, 0.33684, 36, 6.35, 8.19, + 0.44427, 37, -15.05, 8.3, 0.21425, 38, -36.53, 8.3, 0.00464, 4, 31, 62.76, -16.95, 0.25537, 36, 5.95, 1.32, 0.49872, 37, -15.45, 1.42, 0.24179, 38, -36.93, 1.42, 0.00413, 4, 31, + 67.88, -17.57, 0.18921, 36, 5.6, -3.83, 0.54119, 37, -15.8, -3.73, 0.26556, 38, -37.28, -3.73, 0.00404, 4, 31, 39.65, -4.74, 0.83361, 36, 16.93, 25.04, 0.05679, 37, -4.48, 25.14, + 0.08927, 38, -25.95, 25.14, 0.02033, 4, 31, 45.13, -5.18, 0.57797, 36, 16.78, 19.54, 0.13938, 37, -4.63, 19.65, 0.23843, 38, -26.1, 19.65, 0.04422, 4, 31, 50.27, -5.8, 0.42696, 36, + 16.43, 14.38, 0.17737, 37, -4.97, 14.48, 0.35156, 38, -26.45, 14.48, 0.04411, 4, 31, 56, -5.99, 0.33132, 36, 16.54, 8.65, 0.20059, 37, -4.86, 8.75, 0.42277, 38, -26.34, 8.75, + 0.04531, 4, 31, 62.89, -6.48, 0.24781, 36, 16.41, 1.73, 0.22055, 37, -4.99, 1.84, 0.48389, 38, -26.47, 1.84, 0.04775, 4, 31, 68.45, -6.83, 0.17763, 36, 16.35, -3.83, 0.23735, 37, + -5.05, -3.73, 0.53429, 38, -26.53, -3.73, 0.05074, 4, 31, 39.88, 4.33, 0.83746, 36, 26, 25.28, 0.02009, 37, 4.59, 25.39, 0.08772, 38, -16.88, 25.39, 0.05473, 4, 31, 45.41, 4.36, + 0.58276, 36, 26.32, 19.77, 0.04346, 37, 4.92, 19.87, 0.23645, 38, -16.56, 19.87, 0.13732, 4, 31, 50.66, 4.3, 0.43226, 36, 26.54, 14.52, 0.04191, 37, 5.13, 14.62, 0.34769, 38, -16.34, + 14.62, 0.17814, 4, 31, 56.21, 4.01, 0.33656, 36, 26.54, 8.96, 0.0422, 37, 5.14, 9.06, 0.41771, 38, -16.34, 9.06, 0.20353, 4, 31, 63.19, 4, 0.25264, 36, 26.89, 1.99, 0.04384, 37, + 5.49, 2.09, 0.47782, 38, -15.99, 2.09, 0.2257, 4, 31, 68.99, 3.91, 0.18189, 36, 27.11, -3.81, 0.04615, 37, 5.71, -3.71, 0.52741, 38, -15.77, -3.71, 0.24456, 4, 31, 39.83, 13, 0.8608, + 36, 34.66, 25.79, 0.00457, 37, 13.26, 25.89, 0.04889, 38, -8.22, 25.89, 0.08574, 4, 31, 45.67, 13.13, 0.60926, 36, 35.09, 19.96, 0.00894, 37, 13.69, 20.06, 0.13479, 38, -7.79, 20.06, + 0.247, 4, 31, 50.93, 13.5, 0.45377, 36, 35.74, 14.73, 0.00554, 37, 14.33, 14.83, 0.18027, 38, -7.14, 14.83, 0.36041, 4, 31, 56.75, 13.83, 0.35749, 36, 36.37, 8.94, 0.00417, 37, + 14.96, 9.04, 0.20976, 38, -6.51, 9.04, 0.42858, 4, 31, 63.53, 14.02, 0.27612, 36, 36.92, 2.18, 0.00359, 37, 15.52, 2.28, 0.23625, 38, -5.96, 2.28, 0.48404, 4, 31, 69.3, 14.3, + 0.20954, 36, 37.5, -3.57, 0.00344, 37, 16.1, -3.46, 0.25903, 38, -5.38, -3.46, 0.52799, 1, 31, 39.78, 21.93, 1, 4, 31, 45.87, 22.69, 0.82489, 36, 44.65, 20.27, 0.00083, 37, 23.25, + 20.37, 0.0268, 38, 1.77, 20.37, 0.14748, 4, 31, 51.28, 24.11, 0.64773, 36, 46.35, 14.94, 0.00052, 37, 24.95, 15.04, 0.04091, 38, 3.47, 15.04, 0.31084, 4, 31, 57.92, 25.42, 0.53225, + 36, 48.01, 8.38, 0.00029, 37, 26.6, 8.49, 0.04857, 38, 5.13, 8.49, 0.41889, 4, 31, 64.49, 27.19, 0.46955, 36, 50.12, 1.91, 0.00016, 37, 28.71, 2.02, 0.05201, 38, 7.24, 2.02, 0.47828, + 4, 31, 70.04, 27.97, 0.41589, 36, 51.19, -3.59, 0.0001, 37, 29.78, -3.48, 0.05591, 38, 8.31, -3.48, 0.5281, 4, 31, 49.73, -28.84, 0.72647, 36, -6.61, 13.71, 0.25381, 37, -28.01, + 13.81, 0.01954, 38, -49.49, 13.81, 0.00018, 4, 31, 55.59, -30.72, 0.64422, 36, -8.18, 7.76, 0.33291, 37, -29.58, 7.86, 0.02275, 38, -51.06, 7.86, 0.00011, 4, 31, 62.32, -32.6, + 0.55448, 36, -9.7, 0.94, 0.41902, 37, -31.11, 1.04, 0.02643, 38, -52.58, 1.04, 7e-05, 4, 31, 67.27, -34.24, 0.44397, 36, -11.07, -4.09, 0.52396, 37, -32.48, -3.99, 0.03202, 38, + -53.95, -3.99, 4e-05, 4, 31, 49.76, -23.57, 0.5094, 36, -1.34, 13.95, 0.4213, 37, -22.75, 14.06, 0.06847, 38, -44.22, 14.06, 0.00083, 4, 31, 55.77, -24.72, 0.42549, 36, -2.17, 7.89, + 0.49746, 37, -23.57, 8, 0.07648, 38, -45.05, 8, 0.00057, 4, 31, 62.54, -26.18, 0.35688, 36, -3.28, 1.05, 0.55926, 37, -24.68, 1.15, 0.08347, 38, -46.16, 1.15, 0.00039, 4, 31, 67.52, + -27.35, 0.29772, 36, -4.19, -3.98, 0.61133, 37, -25.59, -3.88, 0.09064, 38, -47.07, -3.88, 0.00031, 4, 31, 67.77, -20.66, 0.21136, 36, 2.51, -3.88, 0.59029, 37, -18.89, -3.77, + 0.19654, 38, -40.37, -3.77, 0.00182, 4, 31, 62.71, -19.85, 0.275, 36, 3.05, 1.21, 0.54348, 37, -18.35, 1.32, 0.17958, 38, -39.83, 1.32, 0.00194, 4, 31, 55.88, -19.28, 0.35002, 36, + 3.27, 8.06, 0.48643, 37, -18.14, 8.17, 0.16123, 38, -39.61, 8.17, 0.00232, 4, 31, 49.86, -18.41, 0.41881, 36, 3.82, 14.12, 0.43213, 37, -17.59, 14.23, 0.1461, 38, -39.06, 14.23, + 0.00296, 4, 31, 50.06, -13.03, 0.39313, 36, 9.2, 14.21, 0.35299, 37, -12.2, 14.31, 0.24433, 38, -33.68, 14.31, 0.00955, 4, 31, 55.94, -13.47, 0.32258, 36, 9.06, 8.31, 0.39406, 37, + -12.34, 8.41, 0.27473, 38, -33.82, 8.41, 0.00863, 4, 31, 62.8, -14.24, 0.24476, 36, 8.66, 1.42, 0.43744, 37, -12.74, 1.52, 0.30953, 38, -34.22, 1.52, 0.00827, 4, 31, 67.98, -14.86, + 0.17804, 36, 8.31, -3.79, 0.47328, 37, -13.09, -3.69, 0.3403, 38, -34.57, -3.69, 0.00838, 4, 31, 68.28, -9.21, 0.17525, 36, 13.97, -3.79, 0.31355, 37, -7.43, -3.69, 0.48153, 38, + -28.91, -3.69, 0.02968, 4, 31, 62.87, -9.04, 0.24396, 36, 13.85, 1.62, 0.29088, 37, -7.55, 1.73, 0.43695, 38, -29.03, 1.73, 0.02821, 4, 31, 55.98, -8.57, 0.32275, 36, 13.97, 8.53, + 0.26435, 37, -7.44, 8.63, 0.38552, 38, -28.91, 8.63, 0.02739, 4, 31, 50.21, -8.13, 0.39269, 36, 14.1, 14.31, 0.24007, 37, -7.3, 14.42, 0.33961, 38, -28.78, 14.42, 0.02763, 4, 31, + 50.33, -3.07, 0.39835, 36, 19.16, 14.45, 0.13664, 37, -2.25, 14.56, 0.3972, 38, -23.72, 14.56, 0.06781, 4, 31, 56.01, -3.43, 0.32898, 36, 19.1, 8.76, 0.14701, 37, -2.3, 8.87, + 0.45281, 38, -23.78, 8.87, 0.07119, 4, 31, 62.92, -3.84, 0.24968, 36, 19.05, 1.85, 0.15947, 37, -2.36, 1.96, 0.51456, 38, -23.83, 1.96, 0.07629, 4, 31, 68.64, -4.23, 0.17972, 36, + 18.97, -3.88, 0.17094, 37, -2.44, -3.78, 0.56767, 38, -23.91, -3.78, 0.08167, 4, 31, 68.91, 1.29, 0.18179, 36, 24.49, -3.87, 0.07557, 37, 3.08, -3.77, 0.56385, 38, -18.39, -3.77, + 0.17879, 4, 31, 63.06, 1.38, 0.25204, 36, 24.27, 1.98, 0.07119, 37, 2.86, 2.08, 0.51118, 38, -18.61, 2.08, 0.16559, 4, 31, 56.13, 1.74, 0.33157, 36, 24.26, 8.92, 0.0672, 37, 2.86, + 9.03, 0.44995, 38, -18.62, 9.03, 0.15128, 4, 31, 50.52, 1.76, 0.40101, 36, 23.99, 14.52, 0.06478, 37, 2.59, 14.63, 0.39483, 38, -18.89, 14.63, 0.13938, 4, 31, 50.78, 6.45, 0.401, 36, + 28.68, 14.51, 0.0258, 37, 7.28, 14.62, 0.33427, 38, -14.2, 14.62, 0.23894, 4, 31, 56.3, 6.29, 0.3309, 36, 28.82, 8.99, 0.02514, 37, 7.42, 9.09, 0.37908, 38, -14.06, 9.09, 0.26488, 4, + 31, 63.29, 6.06, 0.25155, 36, 28.96, 1.99, 0.02548, 37, 7.56, 2.1, 0.4293, 38, -13.92, 2.1, 0.29367, 4, 31, 69.06, 6.02, 0.18206, 36, 29.22, -3.76, 0.02652, 37, 7.82, -3.66, 0.47284, + 38, -13.66, -3.66, 0.31858, 4, 31, 69.22, 11.49, 0.19245, 36, 34.69, -3.64, 0.00724, 37, 13.29, -3.53, 0.3321, 38, -8.19, -3.53, 0.46821, 4, 31, 69.38, 17.15, 0.23948, 36, 40.35, + -3.5, 0.00153, 37, 18.94, -3.39, 0.19195, 38, -2.53, -3.39, 0.56704, 4, 31, 69.73, 23.61, 0.346, 36, 46.82, -3.51, 0.00026, 37, 25.42, -3.41, 0.08922, 38, 3.94, -3.41, 0.56452, 4, + 31, 70.27, 31.28, 0.48407, 36, 54.51, -3.65, 4e-05, 37, 33.11, -3.54, 0.03358, 38, 11.63, -3.54, 0.48231, 4, 31, 64.84, 30.32, 0.54501, 36, 53.26, 1.73, 7e-05, 37, 31.86, 1.83, + 0.03077, 38, 10.38, 1.83, 0.42415, 4, 31, 64.01, 22.94, 0.40266, 36, 45.85, 2.16, 0.00034, 37, 24.45, 2.27, 0.08247, 38, 2.97, 2.27, 0.51452, 4, 31, 63.58, 16.63, 0.30287, 36, 39.53, + 2.26, 0.00168, 37, 18.13, 2.37, 0.17579, 38, -3.35, 2.37, 0.51965, 4, 31, 63.48, 11.19, 0.25994, 36, 34.09, 2.08, 0.00726, 37, 12.69, 2.19, 0.30245, 38, -8.79, 2.19, 0.43035, 4, 31, + 56.56, 11.07, 0.3382, 36, 33.61, 8.98, 0.00776, 37, 12.21, 9.09, 0.26884, 38, -9.27, 9.09, 0.38519, 4, 31, 56.93, 16.38, 0.37706, 36, 38.93, 8.89, 0.00208, 37, 17.52, 9, 0.15821, 38, + -3.95, 9, 0.46265, 4, 31, 57.5, 22.2, 0.46779, 36, 44.77, 8.63, 0.00052, 37, 23.36, 8.73, 0.07582, 38, 1.89, 8.73, 0.45586, 4, 31, 58.3, 28.37, 0.65325, 36, 50.97, 8.16, 0.00012, 37, + 29.57, 8.26, 0.02541, 38, 8.09, 8.26, 0.32123, 4, 31, 51.42, 26.68, 0.75526, 36, 48.93, 14.93, 0.00017, 37, 27.52, 15.03, 0.02002, 38, 6.05, 15.03, 0.22455, 4, 31, 51.11, 21.17, + 0.52586, 36, 43.41, 14.95, 0.00082, 37, 22, 15.06, 0.07106, 38, 0.53, 15.06, 0.40226, 4, 31, 50.95, 15.93, 0.44455, 36, 38.16, 14.84, 0.00273, 37, 16.76, 14.94, 0.1436, 38, -4.72, + 14.94, 0.40912, 4, 31, 50.92, 10.61, 0.40864, 36, 32.85, 14.59, 0.0088, 37, 11.45, 14.7, 0.23945, 38, -10.03, 14.7, 0.34311, 4, 31, 69.38, -38.1, 0.52059, 36, -14.82, -6.4, 0.45917, + 37, -36.22, -6.3, 0.02022, 38, -57.7, -6.3, 1e-05, 4, 31, 69.44, -34.82, 0.37517, 36, -11.54, -6.29, 0.58803, 37, -32.95, -6.19, 0.03676, 38, -54.42, -6.19, 4e-05, 4, 31, 69.57, + -31.13, 0.31655, 36, -7.85, -6.23, 0.62281, 37, -29.26, -6.13, 0.06054, 38, -50.73, -6.13, 0.00011, 4, 31, 69.74, -27.7, 0.25662, 36, -4.41, -6.22, 0.64624, 37, -25.82, -6.11, + 0.09684, 38, -47.29, -6.11, 0.0003, 4, 31, 69.8, -23.9, 0.20542, 36, -0.61, -6.08, 0.64718, 37, -22.02, -5.97, 0.14662, 38, -43.49, -5.97, 0.00077, 4, 31, 69.96, -20.88, 0.16774, 36, + 2.4, -6.08, 0.62093, 37, -19, -5.97, 0.20946, 38, -40.48, -5.97, 0.00187, 4, 31, 70.09, -17.89, 0.14406, 36, 5.4, -6.05, 0.56885, 37, -16, -5.95, 0.28288, 38, -37.48, -5.95, 0.00421, + 4, 31, 70.25, -15.09, 0.13169, 36, 8.2, -6.07, 0.49722, 37, -13.21, -5.96, 0.36227, 38, -34.68, -5.96, 0.00882, 4, 31, 70.5, -11.95, 0.12708, 36, 11.36, -6.14, 0.41453, 37, -10.05, + -6.04, 0.44117, 38, -31.52, -6.04, 0.01722, 4, 31, 70.58, -9.33, 0.12668, 36, 13.97, -6.1, 0.32958, 37, -7.43, -5.99, 0.51233, 38, -28.91, -5.99, 0.03141, 4, 31, 70.75, -6.95, + 0.12812, 36, 16.36, -6.14, 0.24965, 37, -5.05, -6.03, 0.56851, 38, -26.52, -6.03, 0.05372, 4, 31, 71, -4.39, 0.12979, 36, 18.93, -6.25, 0.1799, 37, -2.47, -6.14, 0.60387, 38, -23.95, + -6.14, 0.08644, 4, 31, 71.07, -1.61, 0.13105, 36, 21.71, -6.18, 0.12302, 37, 0.3, -6.07, 0.61461, 38, -21.17, -6.07, 0.13132, 4, 31, 71.18, 1.28, 0.13159, 36, 24.6, -6.14, 0.07962, + 37, 3.19, -6.03, 0.5998, 38, -18.28, -6.03, 0.18899, 4, 31, 71.31, 3.85, 0.13189, 36, 27.17, -6.13, 0.04862, 37, 5.76, -6.02, 0.56113, 38, -15.71, -6.02, 0.25837, 4, 31, 71.51, 6.02, + 0.13282, 36, 29.35, -6.21, 0.02792, 37, 7.95, -6.1, 0.50297, 38, -13.53, -6.1, 0.33629, 4, 31, 71.56, 8.85, 0.13637, 36, 32.18, -6.12, 0.01503, 37, 10.77, -6.01, 0.43134, 38, -10.7, + -6.01, 0.41726, 4, 31, 71.75, 11.39, 0.14539, 36, 34.72, -6.17, 0.00757, 37, 13.32, -6.07, 0.35328, 38, -8.16, -6.07, 0.49376, 4, 31, 71.87, 14.39, 0.16393, 36, 37.73, -6.13, + 0.00355, 37, 16.32, -6.03, 0.27561, 38, -5.15, -6.03, 0.55691, 4, 31, 72.16, 17.13, 0.19585, 36, 40.48, -6.28, 0.00155, 37, 19.08, -6.18, 0.20422, 38, -2.4, -6.18, 0.59837, 4, 31, + 72.25, 19.76, 0.24372, 36, 43.11, -6.23, 0.00063, 37, 21.71, -6.13, 0.14329, 38, 0.23, -6.13, 0.61235, 4, 31, 72.47, 23.82, 0.30631, 36, 47.17, -6.24, 0.00024, 37, 25.77, -6.14, + 0.09501, 38, 4.29, -6.14, 0.59844, 4, 31, 72.61, 28.41, 0.3775, 36, 51.77, -6.14, 9e-05, 37, 30.37, -6.03, 0.05972, 38, 8.89, -6.03, 0.5627, 4, 31, 72.88, 31.77, 0.44548, 36, 55.14, + -6.23, 3e-05, 37, 33.74, -6.13, 0.03652, 38, 12.26, -6.13, 0.51797, 4, 31, 73.38, 35.45, 0.56131, 36, 58.84, -6.53, 1e-05, 37, 37.44, -6.43, 0.02128, 38, 15.96, -6.43, 0.41739 + ], + "hull": 44, + "edges": [ + 78, 76, 86, 0, 78, 80, 80, 82, 82, 84, 84, 86, 0, 94, 76, 96, 62, 64, 74, 76, 102, 96, 74, 102, 104, 90, 106, 98, 108, 88, 110, 100, 112, 92, 114, 94, 2, 0, 114, 2, 72, 74, 116, 102, + 72, 116, 118, 104, 120, 106, 122, 108, 124, 110, 126, 112, 128, 114, 4, 2, 128, 4, 70, 72, 130, 116, 70, 130, 132, 118, 134, 120, 136, 122, 138, 124, 140, 126, 142, 128, 8, 6, 6, 4, + 142, 6, 68, 70, 144, 130, 68, 144, 146, 132, 148, 134, 150, 136, 152, 138, 154, 140, 156, 142, 156, 8, 8, 10, 10, 12, 12, 158, 158, 156, 10, 158, 160, 154, 162, 152, 164, 150, 166, + 148, 168, 146, 170, 144, 64, 66, 66, 68, 170, 66, 82, 172, 172, 88, 98, 172, 172, 100, 80, 174, 174, 90, 96, 174, 84, 176, 176, 92, 94, 176, 90, 178, 178, 96, 102, 180, 180, 104, + 178, 180, 180, 182, 182, 184, 184, 186, 186, 188, 90, 190, 190, 98, 104, 192, 192, 106, 190, 192, 192, 194, 194, 196, 196, 198, 198, 200, 88, 202, 202, 98, 106, 204, 204, 108, 202, + 204, 204, 206, 206, 208, 208, 210, 210, 212, 88, 214, 214, 100, 108, 216, 216, 110, 214, 216, 216, 218, 218, 220, 220, 222, 222, 224, 92, 226, 226, 100, 110, 228, 228, 112, 226, 228, + 228, 230, 230, 232, 232, 234, 234, 236, 92, 238, 238, 94, 112, 240, 240, 114, 238, 240, 240, 242, 242, 244, 244, 246, 246, 248, 12, 14, 170, 64, 116, 250, 250, 182, 130, 252, 252, + 184, 250, 252, 144, 254, 254, 186, 252, 254, 170, 256, 256, 188, 254, 256, 58, 60, 60, 62, 118, 258, 258, 182, 132, 260, 260, 184, 258, 260, 146, 262, 262, 186, 260, 262, 168, 264, + 264, 188, 262, 264, 54, 56, 56, 58, 50, 52, 52, 54, 168, 266, 266, 200, 146, 268, 268, 198, 266, 268, 132, 270, 270, 196, 268, 270, 118, 272, 272, 194, 270, 272, 120, 274, 274, 194, + 134, 276, 276, 196, 274, 276, 148, 278, 278, 198, 276, 278, 166, 280, 280, 200, 278, 280, 46, 48, 48, 50, 42, 44, 44, 46, 166, 282, 282, 212, 148, 284, 284, 210, 282, 284, 134, 286, + 286, 208, 284, 286, 120, 288, 288, 206, 286, 288, 122, 290, 290, 206, 136, 292, 292, 208, 290, 292, 150, 294, 294, 210, 292, 294, 164, 296, 296, 212, 294, 296, 38, 40, 40, 42, 34, + 36, 36, 38, 164, 298, 298, 224, 150, 300, 300, 222, 298, 300, 136, 302, 302, 220, 300, 302, 122, 304, 304, 218, 302, 304, 124, 306, 306, 218, 138, 308, 308, 220, 306, 308, 152, 310, + 310, 222, 308, 310, 162, 312, 312, 224, 310, 312, 30, 32, 32, 34, 26, 28, 28, 30, 162, 314, 314, 236, 22, 24, 24, 26, 160, 316, 316, 236, 18, 20, 20, 22, 160, 318, 318, 248, 14, 16, + 16, 18, 158, 320, 320, 248, 156, 322, 322, 246, 320, 322, 154, 324, 324, 246, 318, 324, 154, 326, 326, 234, 316, 326, 152, 328, 328, 234, 314, 328, 138, 330, 330, 232, 328, 330, 140, + 332, 332, 232, 326, 332, 140, 334, 334, 244, 324, 334, 142, 336, 336, 244, 322, 336, 128, 338, 338, 242, 336, 338, 126, 340, 340, 242, 334, 340, 126, 342, 342, 230, 332, 342, 124, + 344, 344, 230, 330, 344, 62, 346, 346, 170, 60, 348, 348, 256, 346, 348, 58, 350, 350, 188, 348, 350, 56, 352, 352, 264, 350, 352, 54, 354, 354, 168, 352, 354, 52, 356, 356, 266, + 354, 356, 50, 358, 358, 200, 356, 358, 48, 360, 360, 280, 358, 360, 46, 362, 362, 166, 360, 362, 44, 364, 364, 282, 362, 364, 42, 366, 366, 212, 364, 366, 40, 368, 368, 296, 366, + 368, 38, 370, 370, 164, 368, 370, 36, 372, 372, 298, 370, 372, 34, 374, 374, 224, 372, 374, 32, 376, 376, 312, 374, 376, 30, 378, 378, 162, 376, 378, 28, 380, 380, 314, 378, 380, 26, + 382, 382, 236, 380, 382, 24, 384, 384, 316, 382, 384, 22, 386, 386, 160, 384, 386, 20, 388, 388, 318, 386, 388, 18, 390, 390, 248, 388, 390, 16, 392, 392, 320, 390, 392, 14, 394, + 394, 158, 392, 394 + ], + "width": 82.3529411764706, + "height": 80.0, + "path": "summer-as.ear-right-bubble", + "x": 0.32352941176470296, + "y": 0.0 + } + }, + "ear-right-bubble-02": { + "ear-right-bubble": { "type": "mesh", "uvs": [ - 0.43373, 0.03433, 0.46025, 0.05124, 0.52589, 0.04748, 0.54847, 0.05071, 0.59165, 0.05688, 0.69243, 0.07129, 0.8533, 0.23996, 0.95949, 0.45811, 0.97748, 0.53693, 1, 0.63561, 1, - 0.76547, 0.94839, 0.84291, 0.89214, 0.89576, 0.81612, 0.96719, 0.67809, 0.99999, 0.53203, 0.99999, 0.36629, 1, 0.24505, 0.98657, 0.09399, 0.90358, 0.044, 0.8109, 0, 0.72933, 0, - 0.68377, 0, 0.6152, 0, 0.53806, 0, 0.49446, 0.13665, 0.2372, 0.25549, 0.11844, 0.28775, 0.11083, 0.32137, 0.10291, 0.31091, 0.06815, 0.32068, 0.02869, 0.3444, 0, 0.36604, 0, 0.38628, - 0, 0.40651, 0, 0.35627, 0.11512, 0.38348, 0.1217, 0.43443, 0.12076, 0.48328, 0.09351, 0.37371, 0.02211, 0.37511, 0.04842, 0.38907, 0.07566, 0.41838, 0.09539, 0.45888, 0.10712, - 0.34999, 0.02775, 0.3444, 0.06533, 0.36185, 0.09069, 0.38697, 0.10385, 0.39954, 0.03245, 0.4114, 0.05875, 0.43652, 0.07754, 0.19268, 0.55542, 0.40411, 0.58856, 0.63735, 0.5859, - 0.83303, 0.57101, 0.23757, 0.31562, 0.41715, 0.33706, 0.64596, 0.33511, 0.34329, 0.17135, 0.47363, 0.1772, 0.60396, 0.17135, 0.52431, 0.13626, 0.34744, 0.14662, 0.45282, 0.15011, - 0.51686, 0.10921, 0.30251, 0.57263, 0.72235, 0.57943, 0.89353, 0.51699, 0.78194, 0.5749, 0.13023, 0.53566, 0.52019, 0.58724, 0.11045, 0.59882, 0.17099, 0.63193, 0.28973, 0.6647, - 0.39517, 0.68586, 0.52345, 0.70081, 0.64762, 0.69029, 0.74552, 0.67525, 0.80696, 0.64776, 0.85462, 0.62191, 0.92102, 0.58115, 0.08026, 0.69517, 0.14286, 0.73117, 0.27488, 0.77171, - 0.38623, 0.78306, 0.52606, 0.79195, 0.65634, 0.77896, 0.76511, 0.75627, 0.835, 0.72939, 0.88224, 0.68701, 0.94325, 0.63301, 0.96857, 0.69213, 0.90539, 0.74156, 0.85305, 0.78195, - 0.78123, 0.82294, 0.66563, 0.87331, 0.52875, 0.88584, 0.37663, 0.88751, 0.26169, 0.86671, 0.11794, 0.81908, 0.06621, 0.74004 + 0.93928, 0.50958, 0.95558, 0.59885, 0.96791, 0.66638, 0.98006, 0.73289, 1, 0.84205, 1, 0.89818, 1, 0.9625, 0.9567, 0.9625, 0.9208, 0.9625, 0.88771, 0.9625, 0.83969, 0.9625, 0.79967, + 0.9625, 0.76574, 0.9625, 0.73418, 0.9625, 0.69508, 0.9625, 0.6661, 0.9625, 0.6319, 0.9625, 0.6046, 0.9625, 0.57454, 0.9625, 0.53755, 0.9625, 0.50387, 0.9625, 0.47341, 0.9625, + 0.44466, 0.9625, 0.41233, 0.9625, 0.37317, 0.9625, 0.33787, 0.9625, 0.30333, 0.9625, 0.2648, 0.9625, 0.21937, 0.9625, 0.17434, 0.9625, 0.12959, 0.9625, 0.08769, 0.9625, 0, 0.9625, + 0.02085, 0.89779, 0.04055, 0.83664, 0.06626, 0.75682, 0.08854, 0.68766, 0.11527, 0.60468, 0.13788, 0.53451, 0.35753, 0.0375, 0.43128, 0.0375, 0.52161, 0.0375, 0.60662, 0.0375, + 0.67954, 0.0375, 0.54109, 0.5336, 0.30907, 0.53412, 0.75362, 0.52077, 0.84707, 0.51514, 0.2081, 0.53435, 0.42115, 0.53387, 0.64269, 0.52747, 0.1892, 0.60156, 0.3018, 0.60447, + 0.41972, 0.60346, 0.54053, 0.60135, 0.64648, 0.59785, 0.76151, 0.59644, 0.87262, 0.58988, 0.16806, 0.67676, 0.29497, 0.67061, 0.41838, 0.66857, 0.54, 0.66508, 0.65011, 0.66538, + 0.7681, 0.65967, 0.89666, 0.66021, 0.14733, 0.75044, 0.28705, 0.74721, 0.41688, 0.74143, 0.53942, 0.73556, 0.6538, 0.73393, 0.7757, 0.7326, 0.91933, 0.7265, 0.12337, 0.83566, 0.2782, + 0.83283, 0.4151, 0.82771, 0.53871, 0.82207, 0.65852, 0.82169, 0.7847, 0.8189, 0.95379, 0.82732, 0.97627, 0.89309, 0.79208, 0.88971, 0.66236, 0.89294, 0.5381, 0.89586, 0.41375, + 0.89349, 0.2717, 0.89571, 0.10571, 0.89844, 0.53197, 0.30141, 0.39415, 0.1884, 0.65961, 0.2117, 0.25473, 0.53425, 0.24202, 0.60293, 0.22911, 0.6738, 0.21379, 0.7489, 0.19729, + 0.83431, 0.18704, 0.8971, 0.36352, 0.534, 0.36013, 0.60397, 0.35748, 0.66957, 0.35288, 0.74428, 0.34802, 0.83022, 0.34383, 0.89458, 0.48024, 0.53373, 0.47847, 0.60244, 0.47433, + 0.66696, 0.47563, 0.73861, 0.47402, 0.82502, 0.47337, 0.89463, 0.58955, 0.53067, 0.59344, 0.5996, 0.59605, 0.66523, 0.5961, 0.73475, 0.60032, 0.82187, 0.60296, 0.89434, 0.69391, + 0.52438, 0.69915, 0.59721, 0.70691, 0.66263, 0.71206, 0.7333, 0.71954, 0.82034, 0.72813, 0.8913, 0.80125, 0.5179, 0.81428, 0.59333, 0.8348, 0.65995, 0.84793, 0.72953, 0.87862, + 0.82358, 0.89305, 0.89156, 0.19669, 0.67537, 0.17782, 0.74974, 0.1594, 0.835, 0.1429, 0.89783, 0.26012, 0.6723, 0.25017, 0.74806, 0.23685, 0.83359, 0.22589, 0.89647, 0.30659, + 0.89517, 0.3131, 0.83153, 0.31569, 0.74593, 0.32231, 0.67016, 0.38717, 0.66908, 0.38553, 0.74282, 0.38068, 0.829, 0.37648, 0.89407, 0.44462, 0.89408, 0.44322, 0.82643, 0.44458, + 0.7401, 0.44621, 0.66777, 0.50711, 0.66602, 0.50646, 0.73714, 0.50582, 0.82357, 0.50482, 0.89523, 0.57134, 0.89508, 0.5687, 0.82197, 0.56865, 0.73514, 0.5654, 0.66515, 0.62192, + 0.6653, 0.6236, 0.73436, 0.62525, 0.8218, 0.62839, 0.89374, 0.69427, 0.89215, 0.76244, 0.89045, 0.84047, 0.89059, 0.93306, 0.89229, 0.91732, 0.8255, 0.82617, 0.82097, 0.75013, + 0.81967, 0.6863, 0.82108, 0.68017, 0.73364, 0.74166, 0.73297, 0.80979, 0.73115, 0.88285, 0.72805, 0.86581, 0.66008, 0.79931, 0.6598, 0.73613, 0.66121, 0.67214, 0.66431, 0.09776, + 0.92671, 0.13724, 0.92534, 0.1817, 0.92459, 0.22313, 0.92439, 0.26892, 0.92268, 0.30526, 0.92265, 0.34139, 0.92236, 0.3751, 0.92252, 0.41313, 0.92351, 0.44464, 0.92289, 0.47339, + 0.92339, 0.5044, 0.9248, 0.53787, 0.92389, 0.57268, 0.92341, 0.60366, 0.9233, 0.62995, 0.92432, 0.66398, 0.92316, 0.69464, 0.92383, 0.73085, 0.92333, 0.76403, 0.92521, 0.79572, + 0.92461, 0.84011, 0.92404, 0.89075, 0.92209, 0.92774, 0.92274, 0.96706, 0.92576 ], "triangles": [ - 100, 20, 21, 99, 100, 82, 17, 98, 16, 17, 18, 98, 98, 18, 99, 18, 19, 99, 19, 100, 99, 19, 20, 100, 13, 14, 95, 12, 93, 11, 93, 92, 11, 11, 92, 10, 94, 88, 93, 93, 88, 92, 92, 91, - 10, 91, 9, 10, 88, 89, 92, 92, 89, 91, 89, 90, 91, 91, 90, 9, 13, 95, 94, 12, 94, 93, 12, 13, 94, 81, 21, 22, 90, 8, 9, 16, 98, 97, 99, 82, 98, 100, 81, 82, 15, 97, 96, 15, 16, 97, - 15, 96, 95, 94, 95, 86, 15, 95, 14, 89, 78, 79, 89, 88, 78, 89, 80, 90, 89, 79, 80, 94, 87, 88, 79, 54, 67, 23, 24, 69, 76, 53, 66, 77, 66, 68, 53, 57, 66, 6, 68, 57, 74, 52, 75, 52, - 70, 75, 75, 70, 53, 73, 65, 74, 74, 65, 52, 72, 51, 73, 73, 51, 65, 72, 69, 51, 70, 52, 56, 57, 53, 70, 56, 52, 65, 57, 70, 56, 51, 55, 65, 65, 55, 56, 51, 69, 55, 69, 25, 55, 69, - 24, 25, 57, 59, 60, 57, 56, 59, 55, 58, 56, 56, 58, 59, 57, 5, 6, 57, 60, 5, 55, 26, 58, 55, 25, 26, 59, 61, 60, 58, 63, 59, 59, 63, 61, 61, 4, 60, 60, 4, 5, 58, 62, 63, 26, 27, 58, - 58, 27, 62, 63, 62, 36, 62, 35, 36, 36, 37, 63, 64, 63, 38, 64, 61, 63, 63, 43, 38, 63, 37, 43, 27, 28, 62, 62, 28, 35, 61, 3, 4, 61, 64, 3, 36, 47, 37, 47, 36, 46, 47, 42, 37, 37, - 42, 43, 36, 35, 46, 35, 28, 46, 64, 2, 3, 64, 38, 2, 42, 50, 43, 43, 50, 38, 47, 41, 42, 47, 46, 41, 28, 45, 46, 28, 29, 45, 41, 49, 42, 42, 49, 50, 50, 1, 38, 38, 1, 2, 46, 40, 41, - 46, 45, 40, 49, 0, 50, 50, 0, 1, 41, 48, 49, 41, 40, 48, 29, 30, 45, 45, 44, 40, 45, 30, 44, 49, 48, 0, 44, 39, 40, 40, 39, 48, 48, 34, 0, 39, 33, 48, 48, 33, 34, 30, 31, 44, 44, 32, - 39, 44, 31, 32, 39, 32, 33, 66, 57, 68, 6, 67, 68, 67, 6, 7, 67, 54, 68, 67, 7, 8, 87, 78, 88, 78, 68, 54, 90, 80, 8, 80, 79, 67, 80, 67, 8, 77, 68, 78, 94, 86, 87, 86, 77, 87, 86, - 76, 77, 87, 77, 78, 76, 66, 77, 96, 84, 85, 96, 97, 84, 96, 86, 95, 96, 85, 86, 85, 84, 75, 84, 74, 75, 85, 76, 86, 85, 75, 76, 75, 53, 76, 98, 83, 97, 97, 83, 84, 98, 82, 83, 83, - 73, 84, 84, 73, 74, 83, 72, 73, 82, 72, 83, 82, 81, 72, 72, 81, 71, 71, 81, 22, 71, 69, 72, 22, 23, 71, 71, 23, 69, 78, 54, 79, 81, 100, 21 + 166, 63, 70, 116, 171, 166, 165, 115, 116, 77, 70, 167, 163, 166, 70, 163, 70, 77, 117, 116, 166, 117, 166, 163, 77, 167, 162, 164, 165, 116, 164, 116, 117, 76, 69, 165, 76, 165, + 164, 162, 122, 123, 80, 77, 162, 158, 163, 77, 158, 77, 80, 159, 162, 123, 80, 162, 159, 118, 117, 163, 118, 163, 158, 124, 123, 161, 159, 123, 124, 157, 164, 117, 157, 117, 118, 81, + 76, 164, 81, 164, 157, 195, 159, 124, 196, 124, 160, 195, 124, 196, 189, 81, 157, 191, 118, 158, 190, 157, 118, 190, 118, 191, 189, 157, 190, 159, 193, 80, 194, 159, 195, 194, 193, + 159, 192, 158, 80, 192, 80, 193, 191, 158, 192, 15, 189, 190, 14, 190, 191, 15, 190, 14, 13, 191, 192, 14, 191, 13, 12, 192, 193, 13, 192, 12, 11, 193, 194, 12, 193, 11, 10, 11, 194, + 9, 194, 195, 10, 194, 9, 8, 195, 196, 9, 195, 8, 8, 196, 7, 151, 109, 110, 68, 152, 151, 146, 145, 68, 104, 103, 146, 155, 154, 69, 155, 69, 76, 111, 110, 154, 111, 154, 155, 150, + 151, 110, 150, 110, 111, 68, 151, 150, 75, 146, 68, 75, 68, 150, 147, 104, 146, 147, 146, 75, 105, 143, 104, 105, 104, 147, 142, 67, 143, 142, 143, 105, 74, 67, 142, 156, 155, 76, + 156, 76, 81, 106, 141, 142, 74, 142, 141, 83, 74, 141, 112, 111, 155, 112, 155, 156, 105, 106, 142, 149, 150, 111, 149, 111, 112, 148, 105, 147, 106, 105, 148, 82, 75, 150, 82, 148, + 147, 147, 75, 82, 150, 149, 82, 182, 141, 106, 187, 112, 156, 183, 106, 148, 182, 106, 183, 186, 149, 112, 186, 112, 187, 182, 181, 83, 182, 83, 141, 185, 148, 82, 185, 82, 149, 185, + 149, 186, 188, 156, 81, 188, 81, 189, 187, 156, 188, 184, 183, 148, 184, 148, 185, 22, 182, 183, 181, 182, 22, 23, 181, 22, 21, 183, 184, 22, 183, 21, 20, 21, 184, 19, 184, 185, 20, + 184, 19, 18, 186, 187, 19, 185, 186, 18, 19, 186, 17, 187, 188, 18, 187, 17, 16, 188, 189, 17, 188, 16, 16, 189, 15, 143, 144, 104, 110, 153, 154, 151, 152, 109, 68, 145, 61, 68, 61, + 152, 146, 103, 145, 83, 139, 74, 181, 140, 83, 23, 180, 181, 138, 137, 67, 98, 136, 97, 98, 97, 138, 135, 59, 136, 135, 136, 98, 66, 59, 135, 130, 129, 66, 74, 138, 67, 139, 98, 138, + 139, 138, 74, 99, 135, 98, 99, 98, 139, 134, 66, 135, 134, 135, 99, 73, 130, 66, 73, 66, 134, 131, 92, 130, 131, 130, 73, 93, 92, 131, 140, 99, 139, 140, 139, 83, 100, 134, 99, 100, + 99, 140, 133, 73, 134, 133, 134, 100, 84, 131, 73, 84, 73, 133, 132, 93, 131, 132, 131, 84, 94, 127, 93, 94, 93, 132, 128, 127, 94, 179, 133, 100, 180, 100, 140, 179, 100, 180, 178, + 84, 133, 178, 133, 179, 177, 132, 84, 177, 84, 178, 180, 140, 181, 176, 94, 132, 176, 132, 177, 175, 128, 94, 175, 94, 176, 174, 85, 128, 174, 128, 175, 30, 173, 174, 31, 173, 30, + 29, 174, 175, 30, 174, 29, 28, 175, 176, 29, 175, 28, 27, 176, 177, 28, 176, 27, 26, 177, 178, 27, 177, 26, 25, 178, 179, 26, 178, 25, 24, 179, 180, 25, 179, 24, 24, 180, 23, 79, 4, + 5, 79, 78, 4, 6, 79, 5, 123, 168, 161, 160, 78, 79, 124, 161, 160, 7, 196, 197, 196, 160, 197, 197, 160, 79, 160, 161, 78, 7, 197, 6, 162, 167, 122, 6, 197, 79, 85, 72, 128, 173, 32, + 85, 31, 32, 173, 173, 85, 174, 85, 32, 33, 66, 129, 59, 167, 170, 121, 167, 121, 122, 70, 63, 170, 70, 170, 167, 166, 171, 63, 123, 122, 168, 130, 91, 129, 92, 91, 130, 122, 169, + 168, 127, 65, 126, 72, 65, 127, 92, 125, 91, 161, 168, 71, 122, 121, 169, 170, 120, 121, 91, 90, 129, 78, 161, 71, 3, 78, 71, 71, 64, 2, 52, 129, 90, 59, 129, 52, 67, 60, 143, 138, + 97, 137, 170, 63, 56, 171, 56, 63, 169, 121, 57, 33, 34, 85, 72, 35, 65, 34, 35, 72, 125, 51, 91, 35, 36, 65, 91, 51, 90, 36, 37, 58, 58, 37, 51, 71, 2, 3, 64, 1, 2, 1, 64, 57, 57, + 0, 1, 87, 39, 40, 88, 42, 43, 88, 86, 41, 88, 41, 42, 0, 88, 43, 47, 88, 0, 86, 88, 113, 47, 119, 88, 119, 46, 88, 46, 113, 88, 50, 86, 113, 107, 86, 50, 44, 86, 107, 87, 41, 86, 41, + 87, 40, 101, 86, 44, 87, 86, 95, 101, 49, 86, 87, 38, 39, 49, 95, 86, 87, 95, 45, 87, 45, 89, 87, 89, 48, 87, 48, 38, 57, 47, 0, 120, 119, 47, 56, 46, 119, 56, 119, 120, 114, 113, + 46, 114, 46, 56, 55, 50, 113, 55, 113, 114, 108, 107, 50, 55, 108, 50, 54, 101, 44, 44, 107, 108, 54, 44, 108, 102, 49, 101, 102, 101, 54, 90, 48, 89, 53, 95, 49, 53, 49, 102, 96, + 45, 95, 96, 95, 53, 52, 89, 45, 52, 45, 96, 90, 89, 52, 171, 114, 56, 115, 114, 171, 172, 55, 114, 172, 114, 115, 54, 145, 102, 152, 54, 108, 61, 54, 152, 153, 109, 108, 55, 153, + 108, 152, 108, 109, 55, 62, 153, 172, 62, 55, 61, 145, 54, 102, 144, 53, 103, 102, 145, 103, 144, 102, 53, 137, 96, 60, 53, 144, 60, 137, 53, 96, 136, 52, 97, 96, 137, 97, 136, 96, + 69, 62, 172, 154, 153, 62, 110, 109, 153, 144, 103, 104, 143, 60, 144, 67, 137, 60, 120, 47, 57, 121, 120, 57, 64, 169, 57, 78, 3, 4, 51, 38, 48, 51, 48, 90, 37, 38, 51, 58, 51, 125, + 65, 36, 58, 120, 170, 56, 154, 62, 69, 116, 115, 171, 165, 172, 115, 69, 172, 165, 59, 52, 136, 126, 58, 125, 65, 58, 126, 168, 169, 64, 168, 64, 71, 85, 34, 72, 126, 125, 92, 93, + 126, 92, 127, 126, 93, 128, 72, 127 ], "vertices": [ - 1, 6, 100.76, -345.56, 1, 1, 6, 78.17, -339.06, 1, 1, 6, 26.65, -349.78, 1, 1, 6, 8.49, -350.81, 1, 1, 6, -26.24, -352.78, 1, 1, 6, -107.29, -357.38, 1, 2, 33, -181.15, 130.18, - 0.056, 6, -250.68, -279.18, 0.944, 6, 29, -374.38, 550.71, 0.00358, 30, -192.35, 521.37, 0.00958, 31, -119.69, 371.83, 0.02431, 32, -59.36, 236.98, 0.06036, 33, -25.97, 128.75, - 0.21499, 6, -355.61, -164.85, 0.68717, 6, 29, -338, 583.62, 0.00544, 30, -147.03, 540.15, 0.01486, 31, -71.79, 382.42, 0.03789, 32, -10.39, 234.03, 0.09418, 33, 21.02, 114.67, - 0.30206, 6, -377.42, -120.91, 0.54557, 6, 29, -292.45, 624.83, 0.00757, 30, -90.28, 563.67, 0.01998, 31, -11.81, 395.69, 0.04934, 32, 50.93, 230.35, 0.1192, 33, 79.86, 97.04, - 0.35648, 6, -404.72, -65.89, 0.44743, 6, 29, -222.45, 657.55, 0.01066, 30, -13.36, 570.98, 0.0254, 31, 65.21, 389.49, 0.05834, 32, 123.29, 203.27, 0.13248, 33, 144.1, 54.1, 0.37042, - 6, -417.22, 10.36, 0.4027, 6, 29, -163.2, 639.6, 0.0184, 30, 36.42, 534.18, 0.03643, 31, 107.82, 344.58, 0.07276, 32, 151.96, 148.39, 0.1447, 33, 159.43, -5.88, 0.35565, 6, -383.88, - 62.53, 0.37206, 6, 29, -115.64, 612.1, 0.03279, 30, 71.99, 492.31, 0.05321, 31, 135.54, 297.14, 0.09104, 32, 165.61, 95.18, 0.15378, 33, 160.53, -60.81, 0.31728, 6, -344.51, 100.84, - 0.3519, 6, 29, -51.35, 574.93, 0.05621, 30, 120.06, 435.7, 0.0746, 31, 173.01, 233.03, 0.10954, 32, 184.07, 23.25, 0.15636, 33, 162.02, -135.06, 0.26294, 6, -291.29, 152.64, 0.34034, - 6, 29, 13.14, 483.04, 0.0907, 30, 149.95, 327.49, 0.09813, 31, 183.59, 121.26, 0.1237, 32, 163.6, -87.14, 0.14975, 33, 116.81, -237.81, 0.20196, 6, -185.35, 189.78, 0.33575, 6, 29, - 62.68, 377.04, 0.13647, 30, 161.02, 211.02, 0.12045, 31, 174.19, 4.64, 0.12971, 32, 122.58, -196.71, 0.13358, 33, 51.79, -335.08, 0.14341, 6, -69.89, 208.71, 0.33638, 6, 29, 118.9, - 256.78, 0.19026, 30, 173.58, 78.86, 0.13835, 31, 163.54, -127.68, 0.12616, 32, 76.06, -321.04, 0.11034, 33, -21.98, -445.45, 0.09403, 6, 61.11, 230.19, 0.34086, 6, 29, 152.78, - 165.42, 0.24514, 30, 174.82, -18.58, 0.15003, 31, 147.77, -223.84, 0.11485, 32, 34.53, -409.2, 0.08465, 33, -82.6, -521.75, 0.05708, 6, 158.24, 238.02, 0.34825, 6, 29, 159.28, 34.89, - 0.29208, 30, 137.1, -143.7, 0.15565, 31, 88.84, -340.48, 0.10007, 32, -54.13, -505.21, 0.06154, 33, -190.89, -594.9, 0.03254, 6, 285.63, 208.86, 0.35812, 6, 29, 126.28, -24.73, - 0.32341, 30, 86, -188.78, 0.15679, 31, 30.66, -375.96, 0.08695, 32, -119.81, -523.38, 0.0449, 33, -258.98, -597.54, 0.01851, 6, 334.07, 160.92, 0.36944, 6, 29, 97.23, -77.21, - 0.33468, 30, 41.01, -228.46, 0.15536, 31, -20.56, -407.2, 0.07965, 32, -177.62, -539.38, 0.03698, 33, -318.93, -599.87, 0.01281, 6, 376.7, 118.73, 0.38052, 6, 29, 72.67, -88.69, - 0.31763, 30, 14.03, -231.03, 0.14565, 31, -47.58, -405.02, 0.07396, 32, -203.01, -529.87, 0.03373, 33, -341.46, -584.81, 0.0113, 6, 381.09, 91.98, 0.41772, 6, 29, 35.71, -105.96, - 0.27712, 30, -26.59, -234.89, 0.12623, 31, -88.24, -401.75, 0.06435, 32, -241.22, -515.57, 0.02932, 33, -375.38, -562.13, 0.00982, 6, 387.69, 51.71, 0.49316, 6, 29, -5.87, -125.4, - 0.21779, 30, -72.28, -239.23, 0.10099, 31, -134, -398.06, 0.05223, 32, -284.21, -499.48, 0.02416, 33, -413.54, -536.62, 0.00837, 6, 395.11, 6.42, 0.59646, 6, 29, -29.37, -136.38, - 0.13621, 30, -98.11, -241.68, 0.07001, 31, -159.85, -395.98, 0.03668, 32, -308.5, -490.39, 0.01729, 33, -435.11, -522.21, 0.0063, 6, 399.31, -19.18, 0.73351, 5, 30, -260.84, -147.2, - 0.02007, 31, -303.63, -274.58, 0.00891, 32, -413.49, -334.22, 0.00341, 33, -501.53, -346.14, 0.00092, 6, 316.06, -187.94, 0.9667, 1, 6, 233.55, -273.07, 1, 1, 6, 208.78, -281.72, 1, - 1, 6, 182.97, -290.73, 1, 1, 6, 194.59, -309.78, 1, 1, 6, 190.67, -334.22, 1, 1, 6, 174.67, -354.14, 1, 1, 6, 157.57, -356.94, 1, 1, 6, 141.57, -359.56, 1, 1, 6, 125.58, -362.18, 1, - 1, 6, 154.21, -288.08, 1, 1, 6, 132.07, -287.74, 1, 1, 6, 91.89, -294.9, 1, 1, 6, 55.89, -317.23, 1, 1, 6, 149.38, -344.95, 1, 1, 6, 145.74, -329.69, 1, 1, 6, 132.08, -315.5, 1, 1, - 6, 107.02, -307.71, 1, 1, 6, 73.88, -306.07, 1, 1, 6, 167.59, -338.57, 1, 1, 6, 168.38, -315.78, 1, 1, 6, 152.15, -303.14, 1, 1, 6, 131.03, -298.68, 1, 1, 6, 127.97, -342.23, 1, 1, - 6, 116.06, -328.32, 1, 1, 6, 94.39, -320.54, 1, 6, 29, -61.86, 18.79, 0.18579, 30, -76.6, -84.61, 0.09927, 31, -111.31, -245.05, 0.06618, 32, -220.43, -358.56, 0.04153, 33, -319.18, - -414.06, 0.02331, 6, 241.14, -8.36, 0.58393, 6, 29, -115.71, 180.57, 0.1272, 30, -72.99, 85.85, 0.09329, 31, -78.05, -77.83, 0.08686, 32, -142.6, -206.86, 0.07697, 33, -208.67, - -284.22, 0.07026, 6, 70.82, -16.29, 0.54541, 6, 29, -196.24, 349.15, 0.06095, 30, -92.24, 271.69, 0.06728, 31, -64.62, 108.52, 0.08685, 32, -78.59, -31.34, 0.10759, 33, -106.16, - -128.02, 0.15732, 6, -113.28, -48.08, 0.52001, 6, 29, -270.63, 487.39, 0.01272, 30, -115.89, 426.89, 0.02538, 31, -60.86, 265.46, 0.05167, 32, -31.95, 118.56, 0.10451, 33, -26.42, - 7.21, 0.27878, 6, -266.52, -82.18, 0.52694, 1, 6, 228.74, -154.97, 1, 1, 6, 84.73, -165.65, 1, 1, 6, -95.95, -196.45, 1, 1, 6, 159.06, -253.38, 1, 1, 6, 55.47, -266.84, 1, 1, 6, - -46.99, -287.16, 1, 1, 6, 19.35, -297.45, 1, 1, 6, 158.16, -268.44, 1, 1, 6, 74.52, -280.04, 1, 1, 6, 27.85, -312.36, 1, 6, 29, -89.83, 102.83, 0.16208, 30, -74.73, 3.94, 0.09945, - 31, -94.03, -158.18, 0.07813, 32, -180, -279.76, 0.05831, 33, -261.78, -346.61, 0.04179, 6, 152.67, -12.48, 0.56024, 6, 29, -228.56, 409.2, 0.03804, 30, -102.52, 339.1, 0.05161, 31, - -62.99, 176.69, 0.07779, 32, -58.33, 33.78, 0.11393, 33, -71.52, -69.28, 0.20794, 6, -179.85, -62.89, 0.5107, 6, 29, -320.27, 517.69, 0.00703, 30, -152.47, 472.09, 0.01663, 31, - -89.01, 316.35, 0.03863, 32, -45.06, 175.22, 0.08875, 33, -26.21, 65.36, 0.2733, 6, -309.15, -121.73, 0.57566, 6, 29, -251.21, 451.3, 0.02246, 30, -109.72, 386.37, 0.03715, 31, - -61.84, 224.49, 0.0652, 32, -44.13, 79.43, 0.11278, 33, -47.24, -28.1, 0.25229, 6, -226.51, -73.27, 0.51012, 6, 29, -51.33, -31.5, 0.18416, 30, -83.57, -135.52, 0.09112, 31, -127.04, - -293.97, 0.05275, 32, -248.98, -401.29, 0.02815, 33, -356.75, -449.11, 0.01247, 6, 292.4, -11.86, 0.63135, 6, 29, -155.79, 264.47, 0.09148, 30, -82.57, 178.34, 0.08197, 31, -71.36, - 14.92, 0.09013, 32, -110.74, -119.5, 0.09449, 33, -157.65, -206.48, 0.1095, 6, -20.81, -32.11, 0.53244, 6, 29, -10.58, -29.95, 0.22475, 30, -44.66, -147.74, 0.10758, 31, -90.85, - -312.78, 0.06071, 32, -219.34, -429.3, 0.03142, 33, -334.32, -483.17, 0.01307, 6, 301.96, 27.78, 0.56247, 6, 29, -13.26, 22.33, 0.21099, 30, -29.64, -97.6, 0.1111, 31, -67.32, - -266.03, 0.07274, 32, -183.89, -390.79, 0.04471, 33, -290.99, -453.8, 0.02388, 6, 250.92, 39.38, 0.53657, 6, 29, -35.87, 116.75, 0.17915, 30, -19.22, -1.07, 0.10946, 31, -40.25, - -172.79, 0.08519, 32, -132.28, -308.55, 0.06274, 33, -221.92, -385.56, 0.04307, 6, 153.91, 43.24, 0.52039, 6, 29, -60.22, 198.59, 0.13876, 30, -14.68, 84.2, 0.10203, 31, -20.91, - -89.62, 0.09465, 32, -90.89, -233.86, 0.08307, 33, -164.52, -322.35, 0.07296, 6, 68.53, 42, 0.50853, 6, 29, -95.67, 295.45, 0.09871, 30, -15.55, 187.33, 0.08925, 31, -3.8, 12.09, - 0.09811, 32, -46.54, -140.75, 0.10209, 33, -100.02, -241.87, 0.11433, 6, -34.31, 34.15, 0.4975, 6, 29, -143.46, 382.9, 0.06509, 30, -31.19, 285.75, 0.07288, 31, -2.05, 111.73, - 0.09424, 32, -17.54, -45.41, 0.1161, 33, -49.95, -155.7, 0.16493, 6, -131.45, 11.88, 0.48676, 6, 29, -184.77, 450.15, 0.04014, 30, -47.52, 362.97, 0.0555, 31, -4.67, 190.61, 0.08399, - 32, 1.56, 31.17, 0.12269, 33, -13.81, -85.53, 0.21886, 6, -207.38, -9.64, 0.47881, 6, 29, -220.42, 487.82, 0.02344, 30, -68.46, 410.42, 0.03968, 31, -17.02, 240.99, 0.07015, 32, 3.5, - 83, 0.12161, 33, -0.06, -35.53, 0.2673, 6, -253.31, -33.73, 0.47782, 6, 29, -250.52, 515.88, 0.01325, 30, -87.38, 446.97, 0.02724, 31, -29.29, 280.27, 0.05616, 32, 2.47, 124.15, - 0.1145, 33, 8.37, 4.76, 0.30051, 6, -288.49, -55.09, 0.48835, 6, 29, -295.02, 553.8, 0.00779, 30, -116.56, 497.62, 0.01905, 31, -49.19, 335.23, 0.0449, 32, -1.6, 182.46, 0.10413, 33, - 17.76, 62.45, 0.31103, 6, -337.05, -87.63, 0.5131, 6, 29, 51.6, -27.58, 0.27095, 30, 14.7, -166.38, 0.12874, 31, -35.65, -341.49, 0.07136, 32, -174.12, -472.04, 0.03633, 33, -300.09, - -535.13, 0.01457, 6, 316.55, 88.27, 0.47805, 6, 29, 49.77, 26.92, 0.24646, 30, 31.28, -114.44, 0.1295, 31, -10.28, -293.23, 0.08359, 32, -136.48, -432.59, 0.05083, 33, -254.42, - -505.34, 0.02633, 6, 263.6, 101.29, 0.46329, 6, 29, 26.85, 132.93, 0.20657, 30, 45.29, -6.89, 0.12601, 31, 22.26, -189.76, 0.09716, 32, -76.83, -342.01, 0.07107, 33, -175.6, -430.84, - 0.04738, 6, 155.35, 107.99, 0.45181, 6, 29, -4.8, 216.6, 0.15904, 30, 43.57, 82.55, 0.11679, 31, 36.16, -101.39, 0.10765, 32, -39.24, -260.84, 0.0939, 33, -120.42, -360.44, 0.07999, - 6, 66.23, 100.23, 0.44263, 6, 29, -47.43, 320.3, 0.11281, 30, 38.24, 194.55, 0.10181, 31, 50.43, 9.82, 0.11129, 32, 4.98, -157.8, 0.11499, 33, -53.77, -270.26, 0.12479, 6, -45.15, - 87.33, 0.43432, 6, 29, -98.62, 411.57, 0.07407, 30, 20.67, 297.7, 0.08283, 31, 51.1, 114.46, 0.10648, 32, 34.32, -57.35, 0.13012, 33, -2.2, -179.21, 0.17919, 6, -146.88, 62.82, - 0.42731, 6, 29, -147.74, 484.78, 0.04542, 30, -1.01, 383.16, 0.06279, 31, 44.64, 202.39, 0.09445, 32, 52.21, 28.97, 0.13686, 33, 34.99, -99.28, 0.23693, 6, -230.67, 35.4, 0.42354, 6, - 29, -185.94, 528.72, 0.02634, 30, -22.23, 437.37, 0.0447, 31, 33.19, 259.47, 0.07863, 32, 56.86, 87.01, 0.1354, 33, 52.8, -43.85, 0.28917, 6, -283.33, 10.56, 0.42575, 6, 29, -224.8, - 552.33, 0.01494, 30, -50.92, 472.66, 0.0309, 31, 11.1, 299.21, 0.06343, 32, 46.5, 131.29, 0.12851, 33, 52.86, 1.62, 0.32666, 6, -316.59, -20.45, 0.43556, 6, 29, -274.6, 582.99, - 0.0096, 30, -87.52, 518.27, 0.02314, 31, -17, 350.5, 0.05338, 32, 33.55, 188.31, 0.12096, 33, 53.31, 60.1, 0.34268, 6, -359.61, -60.05, 0.45024, 6, 29, -251.32, 616.26, 0.00993, 30, - -54.43, 541.79, 0.02422, 31, 19.69, 367.9, 0.05636, 32, 73.6, 194.99, 0.12908, 33, 93.83, 57.42, 0.36441, 6, -385.32, -28.63, 0.416, 6, 29, -203.24, 582.87, 0.01673, 30, -20.35, - 494.19, 0.03412, 31, 44.94, 315.09, 0.06934, 32, 83.41, 137.27, 0.13953, 33, 90.16, -1, 0.34766, 6, -340.14, 8.59, 0.39262, 6, 29, -163.72, 555.06, 0.02986, 30, 7.53, 454.73, - 0.04988, 31, 65.53, 271.37, 0.08667, 32, 91.22, 89.59, 0.14784, 33, 86.84, -49.21, 0.3086, 6, -302.66, 39.08, 0.37715, 6, 29, -117.27, 513.28, 0.05158, 30, 37.26, 399.77, 0.07024, - 31, 85.22, 212.07, 0.10448, 32, 93.9, 27.16, 0.15009, 33, 75.15, -110.59, 0.2542, 6, -249.83, 72.46, 0.36942, 6, 29, -50.91, 442.08, 0.08398, 30, 75.86, 310.42, 0.09275, 31, 107.66, - 117.37, 0.11812, 32, 89.51, -70.07, 0.14342, 33, 48.6, -204.23, 0.19367, 6, -163.3, 117.02, 0.36806, 6, 29, 2.26, 345.91, 0.12746, 30, 93.65, 201.98, 0.11409, 31, 106.28, 7.48, - 0.12379, 32, 58.06, -175.36, 0.12743, 33, -6.13, -299.52, 0.13611, 6, -56.32, 142.11, 0.37112, 6, 29, 54.76, 235.94, 0.17914, 30, 106.17, 80.77, 0.13108, 31, 97.49, -114.05, 0.12009, - 32, 16.27, -289.83, 0.10463, 33, -73.02, -401.37, 0.08814, 6, 63.77, 162.8, 0.37691, 6, 29, 82.53, 147.29, 0.23212, 30, 102.56, -12.06, 0.14191, 31, 77.75, -204.83, 0.10879, 32, - -27.59, -371.72, 0.07962, 33, -134.48, -471.03, 0.05274, 6, 156.63, 165.48, 0.38482, 6, 29, 105.61, 30.99, 0.2775, 30, 85.24, -129.36, 0.14673, 31, 40.26, -317.32, 0.09413, 32, - -94.49, -469.62, 0.05729, 33, -222.03, -551.01, 0.02959, 6, 274.84, 156.14, 0.39476, 6, 29, 80.55, -26.47, 0.30721, 30, 42.34, -175.07, 0.14727, 31, -9.94, -354.85, 0.08115, 32, - -153.06, -491.94, 0.04131, 33, -284.16, -559.32, 0.01655, 6, 323.34, 116.44, 0.40652 + 1, 42, 41.12, 33.33, 1, 1, 42, 48.32, 34.31, 1, 1, 42, 53.77, 35.04, 1, 1, 42, 60, 36.01, 1, 4, 42, 68.02, 38.37, 0.9295, 43, 61.47, -1.03, 1e-05, 44, 40.07, -0.92, 0.00266, 45, + 18.6, -0.92, 0.06784, 4, 42, 72.27, 39, 0.79905, 43, 62.32, -5.24, 1e-05, 44, 40.92, -5.13, 0.00721, 45, 19.44, -5.13, 0.19373, 4, 42, 78.35, 40.51, 0.74731, 43, 64.15, -11.23, 0, + 44, 42.75, -11.12, 0.00973, 45, 21.27, -11.12, 0.24296, 4, 42, 77.99, 36.05, 0.54785, 43, 59.68, -11.11, 1e-05, 44, 38.27, -11, 0.02168, 45, 16.8, -11, 0.43046, 4, 42, 77.69, 32.35, + 0.43038, 43, 55.96, -11, 3e-05, 44, 34.56, -10.9, 0.03847, 45, 13.08, -10.9, 0.53112, 4, 42, 77.42, 28.93, 0.36035, 43, 52.54, -10.91, 9e-05, 44, 31.14, -10.81, 0.06275, 45, 9.66, + -10.81, 0.57681, 4, 42, 77.02, 23.98, 0.2889, 43, 47.58, -10.78, 0.00026, 44, 26.17, -10.67, 0.09917, 45, 4.7, -10.67, 0.61167, 4, 42, 76.69, 19.85, 0.22591, 43, 43.44, -10.66, + 0.0007, 44, 22.03, -10.56, 0.14876, 45, 0.56, -10.56, 0.62463, 4, 42, 76.55, 17.04, 0.17724, 43, 40.62, -10.66, 0.0017, 44, 19.22, -10.56, 0.21115, 45, -2.26, -10.56, 0.60991, 4, 42, + 76.41, 14.43, 0.14418, 43, 38, -10.66, 0.00385, 44, 16.6, -10.56, 0.28407, 45, -4.88, -10.56, 0.5679, 4, 42, 76.24, 11.19, 0.12448, 43, 34.76, -10.66, 0.00813, 44, 13.35, -10.56, + 0.36326, 45, -8.12, -10.56, 0.50413, 4, 42, 76.11, 8.78, 0.11438, 43, 32.35, -10.66, 0.016, 44, 10.95, -10.56, 0.44276, 45, -10.53, -10.56, 0.42686, 4, 42, 75.96, 5.95, 0.11006, 43, + 29.51, -10.66, 0.02948, 44, 8.11, -10.56, 0.51561, 45, -13.37, -10.56, 0.34486, 4, 42, 75.84, 3.69, 0.10858, 43, 27.25, -10.66, 0.05095, 44, 5.84, -10.56, 0.57474, 45, -15.63, + -10.56, 0.26573, 4, 42, 75.71, 1.19, 0.10802, 43, 24.75, -10.66, 0.08291, 44, 3.35, -10.56, 0.614, 45, -18.13, -10.56, 0.19506, 4, 42, 75.55, -1.87, 0.1074, 43, 21.68, -10.66, + 0.12742, 44, 0.28, -10.56, 0.62906, 45, -21.2, -10.56, 0.13612, 4, 42, 75.4, -4.66, 0.10634, 43, 18.89, -10.66, 0.18549, 44, -2.52, -10.56, 0.61812, 45, -23.99, -10.56, 0.09006, 4, + 42, 75.27, -7.19, 0.10502, 43, 16.36, -10.66, 0.25646, 44, -5.05, -10.56, 0.58221, 45, -26.52, -10.56, 0.05631, 4, 42, 75.14, -9.57, 0.10419, 43, 13.97, -10.66, 0.33753, 44, -7.43, + -10.56, 0.52513, 45, -28.91, -10.56, 0.03316, 4, 42, 75, -12.25, 0.10536, 43, 11.29, -10.66, 0.42349, 44, -10.12, -10.56, 0.45282, 45, -31.59, -10.56, 0.01833, 4, 42, 74.83, -15.5, + 0.11098, 43, 8.04, -10.66, 0.50701, 44, -13.37, -10.56, 0.37254, 45, -34.84, -10.56, 0.00948, 4, 42, 74.68, -18.42, 0.12436, 43, 5.11, -10.66, 0.57939, 44, -16.3, -10.56, 0.29168, + 45, -37.77, -10.56, 0.00457, 4, 42, 74.53, -21.28, 0.149, 43, 2.24, -10.66, 0.63222, 44, -19.16, -10.56, 0.21673, 45, -40.64, -10.56, 0.00205, 4, 42, 74.36, -24.48, 0.18726, 43, + -0.96, -10.66, 0.65948, 44, -22.36, -10.56, 0.15241, 45, -43.84, -10.56, 0.00085, 4, 42, 74.16, -28.24, 0.23866, 43, -4.73, -10.66, 0.65975, 44, -26.13, -10.56, 0.10126, 45, -47.61, + -10.56, 0.00033, 4, 42, 73.97, -31.98, 0.29871, 43, -8.46, -10.66, 0.63741, 44, -29.87, -10.56, 0.06376, 45, -51.34, -10.56, 0.00012, 4, 42, 73.77, -35.69, 0.35932, 43, -12.18, + -10.66, 0.60181, 44, -33.58, -10.56, 0.03884, 45, -55.06, -10.56, 4e-05, 4, 42, 73.59, -39.16, 0.49297, 43, -15.66, -10.66, 0.48586, 44, -37.06, -10.56, 0.02116, 45, -58.54, -10.56, + 1e-05, 4, 42, 73.2, -46.43, 0.66969, 43, -22.93, -10.66, 0.32512, 44, -44.34, -10.56, 0.00518, 45, -65.81, -10.56, 0, 4, 42, 68.13, -44.43, 0.73638, 43, -21.2, -5.49, 0.26049, 44, + -42.61, -5.38, 0.00313, 45, -64.08, -5.38, 0, 4, 42, 63.33, -42.54, 0.74288, 43, -19.57, -0.59, 0.25402, 44, -40.97, -0.49, 0.00309, 45, -62.45, -0.49, 1e-05, 2, 42, 57.06, -40.07, + 0.86, 43, -17.44, 5.79, 0.14, 2, 42, 51.63, -37.93, 0.87418, 43, -15.59, 11.32, 0.12582, 1, 42, 45.12, -35.37, 1, 1, 42, 39.61, -33.2, 1, 2, 42, 0.87, -12.9, 0.99965, 43, 6.74, + 63.34, 0.00035, 2, 42, 1.19, -6.79, 0.9998, 43, 12.86, 63.34, 0.0002, 3, 42, 1.58, 0.7, 0.99981, 43, 20.36, 63.34, 9e-05, 45, -22.52, 63.44, 0.0001, 3, 42, 1.95, 7.74, 0.99975, 43, + 27.41, 63.34, 1e-05, 45, -15.46, 63.44, 0.00024, 2, 42, 2.27, 13.79, 0.99954, 45, -9.41, 63.44, 0.00046, 4, 42, 41.3, 0.23, 0.88429, 43, 21.98, 23.65, 0.02526, 44, 0.57, 23.75, + 0.06552, 45, -20.9, 23.75, 0.02493, 1, 42, 40.33, -19.01, 1, 4, 42, 41.2, 17.9, 0.94373, 43, 39.62, 24.67, 0.00089, 44, 18.21, 24.78, 0.01419, 45, -3.26, 24.78, 0.04119, 1, 42, + 41.16, 25.66, 1, 1, 42, 39.91, -27.38, 1, 4, 42, 40.8, -9.72, 0.88619, 43, 12.02, 23.63, 0.05505, 44, -9.38, 23.73, 0.05102, 45, -30.86, 23.73, 0.00774, 4, 42, 41.25, 8.67, 0.89286, + 43, 30.41, 24.14, 0.00746, 44, 9, 24.24, 0.04877, 45, -12.47, 24.24, 0.05092, 1, 42, 45.19, -29.23, 1, 4, 42, 45.92, -19.91, 0.74343, 43, 2.11, 17.98, 0.19678, 44, -19.29, 18.08, + 0.05726, 45, -40.76, 18.08, 0.00254, 4, 42, 46.35, -10.13, 0.58833, 43, 11.9, 18.06, 0.20061, 44, -9.5, 18.16, 0.19026, 45, -30.98, 18.16, 0.0208, 4, 42, 46.71, -0.11, 0.58846, 43, + 21.93, 18.23, 0.08112, 44, 0.53, 18.33, 0.24909, 45, -20.95, 18.33, 0.08133, 4, 42, 46.89, 8.69, 0.59817, 43, 30.72, 18.51, 0.02026, 44, 9.32, 18.61, 0.18761, 45, -12.16, 18.61, + 0.19395, 4, 42, 47.28, 18.23, 0.66183, 43, 40.27, 18.62, 0.00346, 44, 18.87, 18.73, 0.07957, 45, -2.61, 18.73, 0.25514, 1, 42, 47.24, 27.47, 1, 4, 42, 51.11, -31.3, 0.84023, 43, + -8.99, 12.2, 0.15068, 44, -30.39, 12.3, 0.00899, 45, -51.87, 12.3, 0.0001, 4, 42, 51.17, -20.75, 0.48016, 43, 1.55, 12.69, 0.41733, 44, -19.86, 12.79, 0.10062, 45, -41.33, 12.79, + 0.0019, 4, 42, 51.55, -10.51, 0.42576, 43, 11.79, 12.85, 0.28082, 44, -9.61, 12.96, 0.27628, 45, -31.09, 12.96, 0.01714, 4, 42, 51.8, -0.42, 0.43345, 43, 21.89, 13.13, 0.09343, 44, + 0.48, 13.24, 0.37698, 45, -20.99, 13.24, 0.09613, 4, 42, 52.3, 8.71, 0.43708, 43, 31.02, 13.11, 0.01603, 44, 9.62, 13.21, 0.27127, 45, -11.86, 13.21, 0.27562, 4, 42, 52.36, 18.51, + 0.51068, 43, 40.82, 13.56, 0.00179, 44, 19.41, 13.67, 0.09933, 45, -2.06, 13.67, 0.3882, 4, 42, 52.97, 29.16, 0.94195, 43, 51.49, 13.52, 4e-05, 44, 30.08, 13.62, 0.00385, 45, 8.61, + 13.62, 0.05416, 4, 42, 56.91, -33.32, 0.72549, 43, -10.71, 6.3, 0.2621, 44, -32.11, 6.41, 0.01235, 45, -53.59, 6.41, 6e-05, 4, 42, 57.26, -21.73, 0.38729, 43, 0.89, 6.56, 0.4981, 44, + -20.51, 6.66, 0.11341, 45, -41.99, 6.66, 0.0012, 4, 42, 57.36, -10.94, 0.32692, 43, 11.67, 7.02, 0.3274, 44, -9.74, 7.13, 0.32983, 45, -31.21, 7.13, 0.01585, 4, 42, 57.43, -0.76, + 0.33677, 43, 21.84, 7.49, 0.10146, 44, 0.43, 7.6, 0.45593, 45, -21.04, 7.6, 0.10584, 4, 42, 57.8, 8.73, 0.33839, 43, 31.33, 7.62, 0.0144, 44, 9.93, 7.73, 0.32329, 45, -11.55, 7.73, + 0.32392, 4, 42, 58.53, 19.24, 0.42143, 43, 41.87, 7.44, 0.00109, 44, 20.47, 7.55, 0.11176, 45, -1.01, 7.55, 0.46572, 4, 42, 60.09, 31.38, 0.79569, 43, 54.07, 6.52, 5e-05, 44, 32.67, + 6.63, 0.01091, 45, 11.19, 6.63, 0.19335, 4, 42, 63.61, -35.67, 0.66085, 43, -12.7, -0.52, 0.32566, 44, -34.1, -0.41, 0.01346, 45, -55.58, -0.41, 3e-05, 4, 42, 64.06, -22.82, 0.31024, + 43, 0.16, -0.29, 0.56299, 44, -21.25, -0.19, 0.12589, 45, -42.72, -0.19, 0.00089, 4, 42, 64.25, -11.45, 0.24349, 43, 11.52, 0.12, 0.36477, 44, -9.89, 0.22, 0.37599, 45, -31.36, 0.22, + 0.01574, 4, 42, 64.34, -1.18, 0.2525, 43, 21.78, 0.57, 0.10936, 44, 0.37, 0.68, 0.52284, 45, -21.1, 0.68, 0.1153, 4, 42, 64.83, 8.75, 0.2544, 43, 31.72, 0.6, 0.01401, 44, 10.32, + 0.71, 0.36809, 45, -11.16, 0.71, 0.3635, 4, 42, 65.03, 19.51, 0.3466, 43, 42.48, 0.96, 0.00077, 44, 21.07, 1.07, 0.1237, 45, -0.4, 1.07, 0.52893, 4, 42, 66.57, 33.2, 0.69411, 43, + 56.23, 0.15, 3e-05, 44, 34.83, 0.26, 0.01435, 45, 13.35, 0.26, 0.29151, 4, 42, 71.92, 34.78, 0.61986, 43, 58.1, -5.11, 1e-05, 44, 36.69, -5.01, 0.01658, 45, 15.22, -5.01, 0.36355, 4, + 42, 70.84, 19.53, 0.28549, 43, 42.81, -4.84, 0.00065, 44, 21.4, -4.73, 0.13463, 45, -0.07, -4.73, 0.57924, 4, 42, 70.54, 8.77, 0.18483, 43, 32.04, -5.1, 0.01432, 44, 10.64, -4.99, + 0.40541, 45, -10.84, -4.99, 0.39544, 4, 42, 70.23, -1.55, 0.18141, 43, 21.73, -5.33, 0.11681, 44, 0.32, -5.23, 0.57764, 45, -21.15, -5.23, 0.12413, 4, 42, 69.5, -11.84, 0.17479, 43, + 11.41, -5.14, 0.39444, 44, -10, -5.04, 0.41447, 45, -31.47, -5.04, 0.0163, 4, 42, 69.05, -23.63, 0.24784, 43, -0.38, -5.32, 0.61396, 44, -21.79, -5.22, 0.13743, 45, -43.26, -5.22, + 0.00077, 4, 42, 68.55, -37.4, 0.59732, 43, -14.16, -5.54, 0.38768, 44, -35.56, -5.43, 0.01499, 45, -57.04, -5.43, 1e-05, 4, 42, 22.71, 0.45, 0.98403, 43, 21.22, 42.22, 0.00516, 44, + -0.19, 42.33, 0.00609, 45, -21.66, 42.33, 0.00473, 3, 42, 13.08, -10.5, 0.98457, 43, 9.78, 51.26, 0.01421, 44, -11.62, 51.37, 0.00123, 3, 42, 16.1, 11.4, 0.98807, 44, 10.41, 49.51, + 0.00101, 45, -11.07, 49.51, 0.01092, 1, 42, 40.1, -23.51, 1, 4, 42, 45.53, -24.85, 0.93122, 43, -2.85, 18.1, 0.05888, 44, -24.25, 18.21, 0.00959, 45, -45.73, 18.21, 0.0003, 4, 42, + 51.14, -26.22, 0.67882, 43, -3.92, 12.43, 0.287, 44, -25.32, 12.54, 0.03374, 45, -46.8, 12.54, 0.00045, 4, 42, 57.07, -27.81, 0.52353, 43, -5.19, 6.42, 0.4314, 44, -26.59, 6.53, + 0.04479, 45, -48.07, 6.53, 0.00029, 4, 42, 63.82, -29.53, 0.41464, 43, -6.56, -0.41, 0.53292, 44, -27.96, -0.3, 0.05226, 45, -49.44, -0.3, 0.00018, 4, 42, 68.8, -30.65, 0.35706, 43, + -7.41, -5.43, 0.58638, 44, -28.81, -5.33, 0.05644, 45, -50.29, -5.33, 0.00012, 4, 42, 40.56, -14.49, 0.88311, 43, 7.24, 23.62, 0.07338, 44, -14.17, 23.72, 0.03978, 45, -35.64, 23.72, + 0.00372, 4, 42, 46.13, -15.07, 0.62555, 43, 6.96, 18.02, 0.24007, 44, -14.45, 18.12, 0.1259, 45, -35.92, 18.12, 0.00848, 4, 42, 51.36, -15.56, 0.4342, 43, 6.74, 12.77, 0.37611, 44, + -14.67, 12.88, 0.18375, 45, -36.14, 12.88, 0.00595, 4, 42, 57.31, -16.26, 0.33684, 43, 6.35, 6.79, 0.44427, 44, -15.05, 6.9, 0.21425, 45, -36.53, 6.9, 0.00464, 4, 42, 64.16, -17.02, + 0.25537, 43, 5.95, -0.08, 0.49872, 44, -15.45, 0.02, 0.24179, 45, -36.93, 0.02, 0.00413, 4, 42, 69.28, -17.64, 0.18921, 43, 5.6, -5.23, 0.54119, 44, -15.8, -5.13, 0.26556, 45, + -37.28, -5.13, 0.00404, 4, 42, 41.05, -4.82, 0.83361, 43, 16.93, 23.64, 0.05679, 44, -4.48, 23.74, 0.08927, 45, -25.95, 23.74, 0.02033, 4, 42, 46.53, -5.25, 0.57797, 43, 16.78, + 18.14, 0.13938, 44, -4.63, 18.25, 0.23843, 45, -26.1, 18.25, 0.04422, 4, 42, 51.66, -5.87, 0.42696, 43, 16.43, 12.98, 0.17737, 44, -4.97, 13.08, 0.35156, 45, -26.45, 13.08, 0.04411, + 4, 42, 57.39, -6.06, 0.33132, 43, 16.54, 7.25, 0.20059, 44, -4.86, 7.35, 0.42277, 45, -26.34, 7.35, 0.04531, 4, 42, 64.29, -6.56, 0.24781, 43, 16.41, 0.33, 0.22055, 44, -4.99, 0.44, + 0.48389, 45, -26.47, 0.44, 0.04775, 4, 42, 69.85, -6.91, 0.17763, 43, 16.35, -5.23, 0.23735, 44, -5.05, -5.13, 0.53429, 45, -26.52, -5.13, 0.05074, 4, 42, 41.28, 4.25, 0.83746, 43, + 26, 23.88, 0.02009, 44, 4.59, 23.99, 0.08772, 45, -16.88, 23.99, 0.05473, 4, 42, 46.8, 4.29, 0.58276, 43, 26.32, 18.37, 0.04346, 44, 4.92, 18.47, 0.23645, 45, -16.56, 18.47, 0.13732, + 4, 42, 52.06, 4.23, 0.43226, 43, 26.54, 13.12, 0.04191, 44, 5.13, 13.22, 0.34769, 45, -16.34, 13.22, 0.17814, 4, 42, 57.61, 3.94, 0.33656, 43, 26.54, 7.56, 0.0422, 44, 5.14, 7.66, + 0.41771, 45, -16.34, 7.66, 0.20353, 4, 42, 64.59, 3.92, 0.25264, 43, 26.89, 0.59, 0.04384, 44, 5.49, 0.69, 0.47782, 45, -15.99, 0.69, 0.2257, 4, 42, 70.39, 3.84, 0.18189, 43, 27.11, + -5.21, 0.04615, 44, 5.71, -5.11, 0.52741, 45, -15.77, -5.11, 0.24456, 4, 42, 41.23, 12.93, 0.8608, 43, 34.66, 24.39, 0.00457, 44, 13.26, 24.49, 0.04889, 45, -8.22, 24.49, 0.08574, 4, + 42, 47.07, 13.06, 0.60926, 43, 35.09, 18.56, 0.00894, 44, 13.69, 18.67, 0.13479, 45, -7.79, 18.67, 0.247, 4, 42, 52.33, 13.43, 0.45377, 43, 35.74, 13.33, 0.00554, 44, 14.33, 13.43, + 0.18027, 45, -7.14, 13.43, 0.36041, 4, 42, 58.15, 13.75, 0.35749, 43, 36.37, 7.54, 0.00417, 44, 14.96, 7.64, 0.20976, 45, -6.51, 7.64, 0.42858, 4, 42, 64.93, 13.95, 0.27612, 43, + 36.92, 0.78, 0.00359, 44, 15.52, 0.88, 0.23625, 45, -5.96, 0.88, 0.48404, 4, 42, 70.69, 14.22, 0.20954, 43, 37.5, -4.97, 0.00344, 44, 16.1, -4.86, 0.25903, 45, -5.38, -4.86, 0.52799, + 1, 42, 41.18, 21.86, 1, 4, 42, 47.26, 22.62, 0.82489, 43, 44.65, 18.87, 0.00083, 44, 23.25, 18.98, 0.0268, 45, 1.77, 18.98, 0.14748, 4, 42, 52.68, 24.04, 0.64773, 43, 46.35, 13.54, + 0.00052, 44, 24.95, 13.65, 0.04091, 45, 3.47, 13.65, 0.31084, 4, 42, 59.31, 25.35, 0.53225, 43, 48.01, 6.98, 0.00029, 44, 26.6, 7.09, 0.04857, 45, 5.13, 7.09, 0.41889, 4, 42, 65.88, + 27.11, 0.46955, 43, 50.12, 0.51, 0.00016, 44, 28.71, 0.62, 0.05201, 45, 7.24, 0.62, 0.47828, 4, 42, 71.43, 27.89, 0.41589, 43, 51.19, -4.99, 0.0001, 44, 29.78, -4.88, 0.05591, 45, + 8.31, -4.88, 0.5281, 4, 42, 51.12, -28.92, 0.72647, 43, -6.61, 12.31, 0.25381, 44, -28.01, 12.41, 0.01954, 45, -49.49, 12.41, 0.00018, 4, 42, 56.98, -30.79, 0.64422, 43, -8.18, 6.36, + 0.33291, 44, -29.58, 6.46, 0.02275, 45, -51.06, 6.46, 0.00011, 4, 42, 63.71, -32.68, 0.55448, 43, -9.7, -0.46, 0.41902, 44, -31.11, -0.36, 0.02643, 45, -52.58, -0.36, 7e-05, 4, 42, + 68.66, -34.31, 0.44397, 43, -11.07, -5.49, 0.52396, 44, -32.48, -5.38, 0.03202, 45, -53.95, -5.38, 4e-05, 4, 42, 51.16, -23.65, 0.5094, 43, -1.35, 12.55, 0.4213, 44, -22.75, 12.66, + 0.06847, 45, -44.22, 12.66, 0.00083, 4, 42, 57.16, -24.79, 0.42549, 43, -2.17, 6.49, 0.49746, 44, -23.57, 6.6, 0.07648, 45, -45.05, 6.6, 0.00057, 4, 42, 63.94, -26.25, 0.35688, 43, + -3.28, -0.35, 0.55926, 44, -24.68, -0.25, 0.08347, 45, -46.16, -0.25, 0.00039, 4, 42, 68.91, -27.43, 0.29772, 43, -4.19, -5.38, 0.61133, 44, -25.59, -5.28, 0.09064, 45, -47.07, + -5.28, 0.00031, 4, 42, 69.16, -20.73, 0.21136, 43, 2.51, -5.28, 0.59029, 44, -18.89, -5.17, 0.19654, 45, -40.37, -5.17, 0.00182, 4, 42, 64.11, -19.92, 0.275, 43, 3.05, -0.19, + 0.54348, 44, -18.35, -0.08, 0.17958, 45, -39.83, -0.08, 0.00194, 4, 42, 57.28, -19.35, 0.35002, 43, 3.27, 6.66, 0.48643, 44, -18.14, 6.77, 0.16123, 45, -39.61, 6.77, 0.00232, 4, 42, + 51.26, -18.48, 0.41881, 43, 3.82, 12.72, 0.43213, 44, -17.59, 12.83, 0.1461, 45, -39.06, 12.83, 0.00296, 4, 42, 51.45, -13.1, 0.39313, 43, 9.2, 12.81, 0.35299, 44, -12.2, 12.91, + 0.24433, 45, -33.68, 12.91, 0.00955, 4, 42, 57.34, -13.55, 0.32258, 43, 9.06, 6.91, 0.39406, 44, -12.34, 7.02, 0.27473, 45, -33.82, 7.02, 0.00863, 4, 42, 64.2, -14.31, 0.24476, 43, + 8.66, 0.02, 0.43744, 44, -12.74, 0.12, 0.30953, 45, -34.22, 0.12, 0.00827, 4, 42, 69.38, -14.93, 0.17804, 43, 8.31, -5.19, 0.47328, 44, -13.09, -5.08, 0.3403, 45, -34.57, -5.08, + 0.00838, 4, 42, 69.68, -9.29, 0.17525, 43, 13.97, -5.19, 0.31355, 44, -7.44, -5.08, 0.48153, 45, -28.91, -5.08, 0.02968, 4, 42, 64.27, -9.12, 0.24396, 43, 13.85, 0.22, 0.29088, 44, + -7.55, 0.33, 0.43695, 45, -29.03, 0.33, 0.02821, 4, 42, 57.38, -8.64, 0.32275, 43, 13.97, 7.13, 0.26435, 44, -7.44, 7.23, 0.38552, 45, -28.91, 7.23, 0.02739, 4, 42, 51.61, -8.2, + 0.39269, 43, 14.1, 12.92, 0.24007, 44, -7.3, 13.02, 0.33961, 45, -28.78, 13.02, 0.02763, 4, 42, 51.73, -3.15, 0.39835, 43, 19.16, 13.05, 0.13664, 44, -2.25, 13.16, 0.3972, 45, + -23.72, 13.16, 0.06781, 4, 42, 57.41, -3.5, 0.32898, 43, 19.1, 7.37, 0.14701, 44, -2.3, 7.47, 0.45281, 45, -23.78, 7.47, 0.07119, 4, 42, 64.31, -3.92, 0.24968, 43, 19.05, 0.45, + 0.15947, 44, -2.36, 0.56, 0.51456, 45, -23.83, 0.56, 0.07629, 4, 42, 70.03, -4.3, 0.17972, 43, 18.96, -5.28, 0.17094, 44, -2.44, -5.18, 0.56767, 45, -23.91, -5.18, 0.08167, 4, 42, + 70.31, 1.21, 0.18179, 43, 24.49, -5.27, 0.07557, 44, 3.08, -5.17, 0.56385, 45, -18.39, -5.17, 0.17879, 4, 42, 64.46, 1.3, 0.25204, 43, 24.27, 0.58, 0.07119, 44, 2.86, 0.68, 0.51118, + 45, -18.61, 0.68, 0.16559, 4, 42, 57.52, 1.66, 0.33157, 43, 24.26, 7.52, 0.0672, 44, 2.86, 7.63, 0.44995, 45, -18.62, 7.63, 0.15128, 4, 42, 51.92, 1.69, 0.40101, 43, 23.99, 13.13, + 0.06478, 44, 2.59, 13.23, 0.39483, 45, -18.89, 13.23, 0.13938, 4, 42, 52.17, 6.37, 0.401, 43, 28.68, 13.11, 0.0258, 44, 7.28, 13.22, 0.33427, 45, -14.2, 13.22, 0.23894, 4, 42, 57.7, + 6.22, 0.3309, 43, 28.82, 7.59, 0.02514, 44, 7.42, 7.69, 0.37908, 45, -14.06, 7.69, 0.26488, 4, 42, 64.69, 5.99, 0.25155, 43, 28.96, 0.59, 0.02548, 44, 7.56, 0.7, 0.4293, 45, -13.92, + 0.7, 0.29367, 4, 42, 70.45, 5.95, 0.18206, 43, 29.22, -5.16, 0.02652, 44, 7.82, -5.06, 0.47284, 45, -13.66, -5.06, 0.31858, 4, 42, 70.61, 11.41, 0.19245, 43, 34.69, -5.04, 0.00724, + 44, 13.29, -4.93, 0.3321, 45, -8.19, -4.93, 0.46821, 4, 42, 70.77, 17.07, 0.23948, 43, 40.35, -4.9, 0.00153, 44, 18.94, -4.79, 0.19195, 45, -2.53, -4.79, 0.56704, 4, 42, 71.13, + 23.54, 0.346, 43, 46.82, -4.91, 0.00026, 44, 25.42, -4.81, 0.08922, 45, 3.94, -4.81, 0.56452, 4, 42, 71.67, 31.21, 0.48407, 43, 54.51, -5.05, 4e-05, 44, 33.11, -4.94, 0.03358, 45, + 11.63, -4.94, 0.48231, 4, 42, 66.23, 30.24, 0.54501, 43, 53.26, 0.33, 7e-05, 44, 31.86, 0.43, 0.03077, 45, 10.38, 0.43, 0.42415, 4, 42, 65.41, 22.86, 0.40266, 43, 45.85, 0.77, + 0.00034, 44, 24.45, 0.87, 0.08247, 45, 2.97, 0.87, 0.51452, 4, 42, 64.98, 16.56, 0.30287, 43, 39.53, 0.86, 0.00168, 44, 18.13, 0.97, 0.17579, 45, -3.35, 0.97, 0.51965, 4, 42, 64.87, + 11.12, 0.25994, 43, 34.09, 0.68, 0.00726, 44, 12.69, 0.79, 0.30245, 45, -8.79, 0.79, 0.43035, 4, 42, 57.96, 11, 0.3382, 43, 33.61, 7.58, 0.00776, 44, 12.21, 7.69, 0.26884, 45, -9.27, + 7.69, 0.38519, 4, 42, 58.32, 16.31, 0.37706, 43, 38.93, 7.49, 0.00208, 44, 17.52, 7.6, 0.15821, 45, -3.95, 7.6, 0.46265, 4, 42, 58.9, 22.12, 0.46779, 43, 44.77, 7.23, 0.00052, 44, + 23.36, 7.33, 0.07582, 45, 1.89, 7.33, 0.45586, 4, 42, 59.69, 28.3, 0.65325, 43, 50.97, 6.76, 0.00012, 44, 29.57, 6.86, 0.02541, 45, 8.09, 6.86, 0.32123, 4, 42, 52.82, 26.61, 0.75526, + 43, 48.93, 13.53, 0.00017, 44, 27.52, 13.64, 0.02002, 45, 6.05, 13.64, 0.22455, 4, 42, 52.51, 21.1, 0.52586, 43, 43.41, 13.55, 0.00082, 44, 22, 13.66, 0.07106, 45, 0.53, 13.66, + 0.40226, 4, 42, 52.35, 15.86, 0.44455, 43, 38.16, 13.44, 0.00273, 44, 16.76, 13.54, 0.1436, 45, -4.72, 13.54, 0.40912, 4, 42, 52.31, 10.54, 0.40864, 43, 32.85, 13.19, 0.0088, 44, + 11.45, 13.3, 0.23945, 45, -10.03, 13.3, 0.34311, 4, 42, 70.77, -38.17, 0.52059, 43, -14.82, -7.8, 0.45917, 44, -36.22, -7.7, 0.02022, 45, -57.7, -7.7, 1e-05, 4, 42, 70.83, -34.9, + 0.37517, 43, -11.54, -7.69, 0.58803, 44, -32.95, -7.59, 0.03676, 45, -54.42, -7.59, 4e-05, 4, 42, 70.97, -31.21, 0.31655, 43, -7.85, -7.63, 0.62281, 44, -29.26, -7.53, 0.06054, 45, + -50.73, -7.53, 0.00011, 4, 42, 71.13, -27.77, 0.25662, 43, -4.41, -7.62, 0.64624, 44, -25.82, -7.51, 0.09684, 45, -47.29, -7.51, 0.0003, 4, 42, 71.2, -23.97, 0.20542, 43, -0.61, + -7.48, 0.64718, 44, -22.02, -7.37, 0.14662, 45, -43.49, -7.37, 0.00077, 4, 42, 71.35, -20.96, 0.16774, 43, 2.4, -7.48, 0.62093, 44, -19, -7.37, 0.20946, 45, -40.48, -7.37, 0.00187, + 4, 42, 71.49, -17.96, 0.14406, 43, 5.4, -7.45, 0.56885, 44, -16, -7.35, 0.28288, 45, -37.48, -7.35, 0.00421, 4, 42, 71.65, -15.17, 0.13169, 43, 8.2, -7.46, 0.49722, 44, -13.21, + -7.36, 0.36227, 45, -34.68, -7.36, 0.00882, 4, 42, 71.89, -12.02, 0.12708, 43, 11.35, -7.54, 0.41453, 44, -10.05, -7.44, 0.44117, 45, -31.52, -7.44, 0.01722, 4, 42, 71.98, -9.41, + 0.12668, 43, 13.97, -7.49, 0.32958, 44, -7.43, -7.39, 0.51233, 45, -28.91, -7.39, 0.03141, 4, 42, 72.15, -7.02, 0.12812, 43, 16.36, -7.53, 0.24965, 44, -5.05, -7.43, 0.56851, 45, + -26.52, -7.43, 0.05372, 4, 42, 72.39, -4.46, 0.12979, 43, 18.93, -7.65, 0.1799, 44, -2.47, -7.54, 0.60387, 45, -23.95, -7.54, 0.08644, 4, 42, 72.47, -1.68, 0.13105, 43, 21.71, -7.58, + 0.12302, 44, 0.3, -7.47, 0.61461, 45, -21.17, -7.47, 0.13132, 4, 42, 72.58, 1.2, 0.13159, 43, 24.6, -7.54, 0.07962, 44, 3.19, -7.43, 0.5998, 45, -18.28, -7.43, 0.18899, 4, 42, 72.71, + 3.77, 0.13189, 43, 27.17, -7.53, 0.04862, 44, 5.76, -7.42, 0.56113, 45, -15.71, -7.42, 0.25837, 4, 42, 72.9, 5.95, 0.13282, 43, 29.35, -7.61, 0.02792, 44, 7.95, -7.5, 0.50297, 45, + -13.53, -7.5, 0.33629, 4, 42, 72.96, 8.77, 0.13637, 43, 32.18, -7.52, 0.01503, 44, 10.77, -7.41, 0.43134, 45, -10.7, -7.41, 0.41726, 4, 42, 73.15, 11.31, 0.14539, 43, 34.72, -7.57, + 0.00757, 44, 13.32, -7.46, 0.35328, 45, -8.16, -7.46, 0.49376, 4, 42, 73.26, 14.32, 0.16393, 43, 37.73, -7.53, 0.00355, 44, 16.32, -7.43, 0.27561, 45, -5.15, -7.43, 0.55691, 4, 42, + 73.56, 17.06, 0.19585, 43, 40.48, -7.68, 0.00155, 44, 19.08, -7.58, 0.20422, 45, -2.4, -7.58, 0.59837, 4, 42, 73.65, 19.69, 0.24372, 43, 43.11, -7.63, 0.00063, 44, 21.71, -7.53, + 0.14329, 45, 0.23, -7.53, 0.61235, 4, 42, 73.87, 23.74, 0.30631, 43, 47.17, -7.64, 0.00024, 44, 25.77, -7.53, 0.09501, 45, 4.29, -7.53, 0.59844, 4, 42, 74.01, 28.34, 0.3775, 43, + 51.77, -7.54, 9e-05, 44, 30.37, -7.43, 0.05972, 45, 8.89, -7.43, 0.5627, 4, 42, 74.28, 31.7, 0.44548, 43, 55.14, -7.63, 3e-05, 44, 33.74, -7.53, 0.03652, 45, 12.26, -7.53, 0.51797, + 4, 42, 74.78, 35.38, 0.56131, 43, 58.84, -7.93, 1e-05, 44, 37.44, -7.83, 0.02128, 45, 15.96, -7.83, 0.41739 ], - "hull": 35, + "hull": 44, "edges": [ - 62, 60, 60, 58, 58, 56, 56, 70, 70, 72, 72, 74, 76, 2, 2, 0, 0, 68, 66, 68, 66, 78, 78, 80, 80, 82, 82, 84, 74, 86, 86, 76, 84, 86, 62, 64, 64, 66, 64, 88, 88, 90, 90, 92, 92, 94, - 94, 74, 68, 96, 96, 98, 98, 100, 100, 76, 2, 4, 10, 12, 12, 14, 52, 50, 50, 48, 36, 34, 34, 32, 30, 32, 28, 30, 28, 26, 18, 20, 22, 20, 50, 110, 110, 112, 112, 114, 114, 12, 52, 116, - 116, 118, 118, 120, 120, 10, 8, 10, 8, 122, 56, 54, 54, 52, 54, 124, 116, 126, 126, 122, 124, 126, 126, 128, 4, 6, 6, 8, 128, 6, 4, 76, 102, 130, 130, 104, 106, 132, 14, 134, 134, - 108, 108, 136, 136, 132, 22, 24, 24, 26, 48, 138, 138, 102, 36, 38, 38, 40, 104, 140, 140, 106, 46, 48, 142, 138, 46, 142, 144, 102, 142, 144, 146, 130, 144, 146, 148, 104, 146, 148, - 150, 140, 148, 150, 152, 106, 150, 152, 154, 132, 152, 154, 156, 136, 154, 156, 158, 108, 156, 158, 160, 134, 158, 160, 14, 16, 16, 18, 160, 16, 44, 46, 162, 142, 44, 162, 164, 144, - 162, 164, 166, 146, 164, 166, 168, 148, 166, 168, 170, 150, 168, 170, 172, 152, 170, 172, 174, 154, 172, 174, 176, 156, 174, 176, 178, 158, 176, 178, 180, 160, 178, 180, 20, 182, - 182, 180, 18, 182, 22, 184, 184, 178, 182, 184, 24, 186, 186, 176, 184, 186, 26, 188, 188, 174, 186, 188, 28, 190, 190, 172, 188, 190, 30, 192, 192, 170, 190, 192, 32, 194, 194, 168, - 192, 194, 34, 196, 196, 166, 194, 196, 36, 198, 198, 164, 196, 198, 38, 200, 200, 162, 198, 200, 40, 42, 42, 44, 200, 42 + 78, 76, 86, 0, 78, 80, 80, 82, 82, 84, 84, 86, 0, 94, 76, 96, 62, 64, 74, 76, 102, 96, 74, 102, 104, 90, 106, 98, 108, 88, 110, 100, 112, 92, 114, 94, 2, 0, 114, 2, 72, 74, 116, 102, + 72, 116, 118, 104, 120, 106, 122, 108, 124, 110, 126, 112, 128, 114, 4, 2, 128, 4, 70, 72, 130, 116, 70, 130, 132, 118, 134, 120, 136, 122, 138, 124, 140, 126, 142, 128, 8, 6, 6, 4, + 142, 6, 68, 70, 144, 130, 68, 144, 146, 132, 148, 134, 150, 136, 152, 138, 154, 140, 156, 142, 156, 8, 8, 10, 10, 12, 12, 158, 158, 156, 10, 158, 160, 154, 162, 152, 164, 150, 166, + 148, 168, 146, 170, 144, 64, 66, 66, 68, 170, 66, 82, 172, 172, 88, 98, 172, 172, 100, 80, 174, 174, 90, 96, 174, 84, 176, 176, 92, 94, 176, 90, 178, 178, 96, 102, 180, 180, 104, + 178, 180, 180, 182, 182, 184, 184, 186, 186, 188, 90, 190, 190, 98, 104, 192, 192, 106, 190, 192, 192, 194, 194, 196, 196, 198, 198, 200, 88, 202, 202, 98, 106, 204, 204, 108, 202, + 204, 204, 206, 206, 208, 208, 210, 210, 212, 88, 214, 214, 100, 108, 216, 216, 110, 214, 216, 216, 218, 218, 220, 220, 222, 222, 224, 92, 226, 226, 100, 110, 228, 228, 112, 226, 228, + 228, 230, 230, 232, 232, 234, 234, 236, 92, 238, 238, 94, 112, 240, 240, 114, 238, 240, 240, 242, 242, 244, 244, 246, 246, 248, 12, 14, 170, 64, 116, 250, 250, 182, 130, 252, 252, + 184, 250, 252, 144, 254, 254, 186, 252, 254, 170, 256, 256, 188, 254, 256, 58, 60, 60, 62, 118, 258, 258, 182, 132, 260, 260, 184, 258, 260, 146, 262, 262, 186, 260, 262, 168, 264, + 264, 188, 262, 264, 54, 56, 56, 58, 50, 52, 52, 54, 168, 266, 266, 200, 146, 268, 268, 198, 266, 268, 132, 270, 270, 196, 268, 270, 118, 272, 272, 194, 270, 272, 120, 274, 274, 194, + 134, 276, 276, 196, 274, 276, 148, 278, 278, 198, 276, 278, 166, 280, 280, 200, 278, 280, 46, 48, 48, 50, 42, 44, 44, 46, 166, 282, 282, 212, 148, 284, 284, 210, 282, 284, 134, 286, + 286, 208, 284, 286, 120, 288, 288, 206, 286, 288, 122, 290, 290, 206, 136, 292, 292, 208, 290, 292, 150, 294, 294, 210, 292, 294, 164, 296, 296, 212, 294, 296, 38, 40, 40, 42, 34, + 36, 36, 38, 164, 298, 298, 224, 150, 300, 300, 222, 298, 300, 136, 302, 302, 220, 300, 302, 122, 304, 304, 218, 302, 304, 124, 306, 306, 218, 138, 308, 308, 220, 306, 308, 152, 310, + 310, 222, 308, 310, 162, 312, 312, 224, 310, 312, 30, 32, 32, 34, 26, 28, 28, 30, 162, 314, 314, 236, 22, 24, 24, 26, 160, 316, 316, 236, 18, 20, 20, 22, 160, 318, 318, 248, 14, 16, + 16, 18, 158, 320, 320, 248, 156, 322, 322, 246, 320, 322, 154, 324, 324, 246, 318, 324, 154, 326, 326, 234, 316, 326, 152, 328, 328, 234, 314, 328, 138, 330, 330, 232, 328, 330, 140, + 332, 332, 232, 326, 332, 140, 334, 334, 244, 324, 334, 142, 336, 336, 244, 322, 336, 128, 338, 338, 242, 336, 338, 126, 340, 340, 242, 334, 340, 126, 342, 342, 230, 332, 342, 124, + 344, 344, 230, 330, 344, 62, 346, 346, 170, 60, 348, 348, 256, 346, 348, 58, 350, 350, 188, 348, 350, 56, 352, 352, 264, 350, 352, 54, 354, 354, 168, 352, 354, 52, 356, 356, 266, + 354, 356, 50, 358, 358, 200, 356, 358, 48, 360, 360, 280, 358, 360, 46, 362, 362, 166, 360, 362, 44, 364, 364, 282, 362, 364, 42, 366, 366, 212, 364, 366, 40, 368, 368, 296, 366, + 368, 38, 370, 370, 164, 368, 370, 36, 372, 372, 298, 370, 372, 34, 374, 374, 224, 372, 374, 32, 376, 376, 312, 374, 376, 30, 378, 378, 162, 376, 378, 28, 380, 380, 314, 378, 380, 26, + 382, 382, 236, 380, 382, 24, 384, 384, 316, 382, 384, 22, 386, 386, 160, 384, 386, 20, 388, 388, 318, 386, 388, 18, 390, 390, 248, 388, 390, 16, 392, 392, 320, 390, 392, 14, 394, + 394, 158, 392, 394 ], - "width": 801, - "height": 595, - "path": "body-wetdog.body-wetdog" + "width": 82.3529411764706, + "height": 80.0, + "path": "summer-as.ear-right-bubble", + "x": 0.32352941176470296, + "y": 0.0 } }, - "body-braid": { - "body-braid": { + "ear-right-dot-01": { + "ear-right-dot": {"x": 0.3082352941176467, "y": 0.33764705882352897, "rotation": -0.95, "width": 18.823529411764707, "height": 11.764705882352942, "path": "summer-as.ear-right-dot"} + }, + "ear-right-dot-02": { + "ear-right-dot": {"x": 0.3082352941176467, "y": 0.33764705882352897, "rotation": -0.95, "width": 18.823529411764707, "height": 11.764705882352942, "path": "summer-as.ear-right-dot"} + }, + "ear-right-dot-03": { + "ear-right-dot": {"x": 0.3082352941176467, "y": 0.33764705882352897, "rotation": -0.95, "width": 18.823529411764707, "height": 11.764705882352942, "path": "summer-as.ear-right-dot"} + }, + "ear-right-dot-04": { + "ear-right-dot": {"x": 0.3082352941176467, "y": 0.33764705882352897, "rotation": -0.95, "width": 18.823529411764707, "height": 11.764705882352942, "path": "summer-as.ear-right-dot"} + }, + "ear-right-dot-05": { + "ear-right-dot": {"x": 0.3082352941176467, "y": 0.33764705882352897, "rotation": -0.95, "width": 18.823529411764707, "height": 11.764705882352942, "path": "summer-as.ear-right-dot"} + }, + "ear-right-dot-06": { + "ear-right-dot": {"x": 0.3082352941176467, "y": 0.33764705882352897, "rotation": -0.95, "width": 18.823529411764707, "height": 11.764705882352942, "path": "summer-as.ear-right-dot"} + }, + "ear-right-dot-07": { + "ear-right-dot": {"x": 0.3082352941176467, "y": 0.33764705882352897, "rotation": -0.95, "width": 18.823529411764707, "height": 11.764705882352942, "path": "summer-as.ear-right-dot"} + }, + "ear-right-dot-08": { + "ear-right-dot": {"x": 0.3082352941176467, "y": 0.33764705882352897, "rotation": -0.95, "width": 18.823529411764707, "height": 11.764705882352942, "path": "summer-as.ear-right-dot"} + }, + "ear-right-dot-09": { + "ear-right-dot": {"x": 0.3082352941176467, "y": 0.33764705882352897, "rotation": -0.95, "width": 18.823529411764707, "height": 11.764705882352942, "path": "summer-as.ear-right-dot"} + }, + "ear-right-dot-10": { + "ear-right-dot": {"x": 0.3082352941176467, "y": 0.33764705882352897, "rotation": -0.95, "width": 18.823529411764707, "height": 11.764705882352942, "path": "summer-as.ear-right-dot"} + }, + "ear-right-dot-11": { + "ear-right-dot": {"x": 0.3082352941176467, "y": 0.33764705882352897, "rotation": -0.95, "width": 18.823529411764707, "height": 11.764705882352942, "path": "summer-as.ear-right-dot"} + }, + "ear-right-dot-12": { + "ear-right-dot": {"x": 0.3082352941176467, "y": 0.33764705882352897, "rotation": -0.95, "width": 18.823529411764707, "height": 11.764705882352942, "path": "summer-as.ear-right-dot"} + }, + "ear-right-dot-13": { + "ear-right-dot": {"x": 0.3082352941176467, "y": 0.33764705882352897, "rotation": -0.95, "width": 18.823529411764707, "height": 11.764705882352942, "path": "summer-as.ear-right-dot"} + }, + "ear-right-dot-14": { + "ear-right-dot": {"x": 0.3082352941176467, "y": 0.33764705882352897, "rotation": -0.95, "width": 18.823529411764707, "height": 11.764705882352942, "path": "summer-as.ear-right-dot"} + }, + "ear-right-dot-15": { + "ear-right-dot": {"x": 0.3082352941176467, "y": 0.33764705882352897, "rotation": -0.95, "width": 18.823529411764707, "height": 11.764705882352942, "path": "summer-as.ear-right-dot"} + }, + "ear-right-dot-16": { + "ear-right-dot": {"x": 0.3082352941176467, "y": 0.33764705882352897, "rotation": -0.95, "width": 18.823529411764707, "height": 11.764705882352942, "path": "summer-as.ear-right-dot"} + }, + "ear-right-dot-17": { + "ear-right-dot": {"x": 0.3082352941176467, "y": 0.33764705882352897, "rotation": -0.95, "width": 18.823529411764707, "height": 11.764705882352942, "path": "summer-as.ear-right-dot"} + }, + "ear-right-dot-18": { + "ear-right-dot": {"x": 0.3082352941176467, "y": 0.33764705882352897, "rotation": -0.95, "width": 18.823529411764707, "height": 11.764705882352942, "path": "summer-as.ear-right-dot"} + }, + "ear-right-dot-19": { + "ear-right-dot": {"x": 0.3082352941176467, "y": 0.33764705882352897, "rotation": -0.95, "width": 18.823529411764707, "height": 11.764705882352942, "path": "summer-as.ear-right-dot"} + }, + "ear-right-dot-20": { + "ear-right-dot": {"x": 0.3082352941176467, "y": 0.33764705882352897, "rotation": -0.95, "width": 18.823529411764707, "height": 11.764705882352942, "path": "summer-as.ear-right-dot"} + }, + "ear-right-under": { + "ear-right-under": {"x": 85.5464705882353, "y": -16.192941176470594, "rotation": -93, "width": 117.64705882352942, "height": 204.7058823529412, "path": "summer-as.ear-right-under"} + }, + "ear-right-upper": { + "ear-right-upper": {"x": 90.18058823529411, "y": -18.45235294117648, "rotation": -93, "width": 127.05882352941177, "height": 211.76470588235296, "path": "summer-as.ear-right-upper"} + }, + "eyes": { + "eyes": {"x": 23.524117647058812, "y": 25.639411764705883, "width": 329.4117647058824, "height": 152.94117647058823, "path": "summer-as.eyes"}, + "eyes-angry": {"x": 24.664117647058813, "y": 25.639411764705883, "width": 329.4117647058824, "height": 152.94117647058823, "path": "summer-as.eyes-angry"}, + "eyes-happy": {"x": 24.664117647058813, "y": 25.639411764705883, "width": 329.4117647058824, "height": 152.94117647058823, "path": "summer-as.eyes-happy"}, + "eyes-shut": {"x": 24.664117647058813, "y": 25.639411764705883, "width": 329.4117647058824, "height": 152.94117647058823, "path": "summer-as.eyes-shut"} + }, + "eyes-happy-accessory": { + "eyes-happy-accessory": { + "x": 0.45823529411764496, "y": 1.135294117647058, "scaleX": 1.4, "scaleY": 1.4, "width": 98.82352941176471, "height": 103.52941176470588, "path": "summer-as.eyes-happy-accessory" + } + }, + "eyes-light-dot": {"eye-light-dot": {"x": -0.07764705882352896, "y": 2.2158823529411737, "width": 68.23529411764706, "height": 70.58823529411765, "path": "summer-as.eye-light-dot"}}, + "eyes-light-dot-02": {"eye-light-dot": {"x": -0.07764705882352896, "y": 2.2158823529411737, "width": 68.23529411764706, "height": 70.58823529411765, "path": "summer-as.eye-light-dot"}}, + "eyes-light-left": { + "light": { + "x": 7.520588235294116, "y": 1.589411764705884, "scaleX": 1.2, "scaleY": 1.8, "rotation": 178.57, "width": 47.05882352941177, "height": 72.94117647058823, "path": "summer-as.light" + } + }, + "eyes-light-right": { + "light": { + "x": 7.520588235294116, "y": 1.589411764705884, "scaleX": 1.2, "scaleY": 1.8, "rotation": 178.57, "width": 47.05882352941177, "height": 72.94117647058823, "path": "summer-as.light" + } + }, + "eyes-upper": {"eyes-upper": {"x": 24.510588235294115, "y": 24.749411764705883, "width": 327.05882352941177, "height": 152.94117647058823, "path": "summer-as.eyes-upper"}}, + "horn": {"horn": {"x": 102.31588235294117, "y": -19.51705882352942, "rotation": -90, "width": 230.58823529411765, "height": 235.29411764705884, "path": "summer-ta.horn"}}, + "mouth": { + "mouth": {"x": -11.394705882352943, "y": 54.87470588235294, "width": 143.52941176470588, "height": 56.470588235294116, "path": "summer-as.mouth"}, + "mouth-bite": {"x": 0.01705882352940602, "y": 39.698235294117644, "width": 164.7058823529412, "height": 98.82352941176471, "path": "summer-as.mouth-bite"}, + "mouth-open": {"x": -6.27705882352942, "y": 16.69823529411765, "width": 155.29411764705884, "height": 138.8235294117647, "path": "summer-as.mouth-open"}, + "mouth-smile": {"x": -0.982941176470594, "y": 48.34529411764706, "width": 164.7058823529412, "height": 63.529411764705884, "path": "summer-as.mouth-smile"} + }, + "mouth-accessory": { + "mouth-accessory": { "type": "mesh", "uvs": [ - 0.49678, 0.15356, 0.5365, 0.2678, 0.58125, 0.3965, 0.59332, 0.47832, 0.60399, 0.55062, 0.68521, 0.59864, 0.74523, 0.59519, 0.82165, 0.5908, 1, 0.5699, 1, 0.66656, 1, 0.90166, - 0.87038, 1, 0.74693, 1, 0.63972, 1, 0.47404, 1, 0.38308, 0.92778, 0.32785, 0.77105, 0.34734, 0.61854, 0.33384, 0.56536, 0.31485, 0.49054, 0.27333, 0.42854, 0.22389, 0.3547, 0, - 0.34686, 0, 0.15878, 0.13617, 0.05429, 0.22064, 0, 0.51302, 0, 0.38632, 0.28156, 0.23038, 0.12221, 0.4383, 0.46703, 0.41459, 0.38243, 0.50003, 0.61592, 0.46429, 0.54278, 0.55526, - 0.67962, 0.60074, 0.76321, 0.68196, 0.79717, 0.75668, 0.84158, 0.85089, 0.85725 + 0.7567, 0.0473, 0.86697, 0.14039, 0.9443, 0.25209, 0.99714, 0.36666, 0.99999, 0.49597, 1, 0.61625, 0.9486, 0.73368, 0.85981, 0.85684, 0.74238, 0.95422, 0.58914, 1, 0.46884, 1, + 0.36484, 0.99858, 0.24169, 0.95082, 0.12854, 0.86646, 0.03732, 0.75174, 0, 0.59723, 0, 0.48254, 0, 0.36237, 0.04691, 0.22488, 0.14286, 0.10888, 0.25027, 0.03298, 0.37916, 0, 0.49749, + 0, 0.62208, 0, 0.48816, 0.49691, 0.38984, 0.47048, 0.40039, 0.4428, 0.42008, 0.42041, 0.44087, 0.4047, 0.46611, 0.39392, 0.49007, 0.39257, 0.5155, 0.39441, 0.54363, 0.40403, 0.56948, + 0.42037, 0.58681, 0.44396, 0.59625, 0.46925, 0.60239, 0.4967, 0.59962, 0.5229, 0.58591, 0.54718, 0.56617, 0.57246, 0.53987, 0.58993, 0.50841, 0.5978, 0.48422, 0.59958, 0.46389, + 0.59563, 0.44255, 0.58693, 0.41915, 0.56782, 0.40098, 0.54296, 0.39091, 0.5164, 0.38677, 0.494, 0.25326, 0.49016, 0.26189, 0.43608, 0.28722, 0.37303, 0.33073, 0.32, 0.38007, 0.28612, + 0.43888, 0.26671, 0.49242, 0.26434, 0.5491, 0.26844, 0.61141, 0.29055, 0.66979, 0.32597, 0.72081, 0.37204, 0.74533, 0.4311, 0.75435, 0.49642, 0.74415, 0.5566, 0.71527, 0.6137, + 0.66814, 0.67121, 0.6053, 0.70764, 0.53338, 0.72221, 0.47953, 0.72167, 0.43531, 0.71188, 0.25606, 0.54343, 0.2836, 0.60497, 0.33013, 0.6593, 0.38745, 0.69572, 0.2371, 0.756, 0.32258, + 0.81152, 0.40412, 0.83877, 0.47432, 0.85748, 0.5622, 0.86577, 0.67514, 0.83328, 0.76201, 0.76212, 0.82762, 0.67147, 0.86788, 0.58544, 0.89046, 0.49617, 0.88879, 0.39439, 0.84496, + 0.30541, 0.77906, 0.22313, 0.69067, 0.15785, 0.58965, 0.1164, 0.49532, 0.10584, 0.40602, 0.11317, 0.30758, 0.14475, 0.22046, 0.19609, 0.15118, 0.28916, 0.11571, 0.39679, 0.10936, + 0.48603, 0.11577, 0.57155, 0.16414, 0.68085 ], "triangles": [ - 13, 35, 36, 13, 14, 35, 12, 37, 11, 11, 37, 10, 12, 36, 37, 12, 13, 36, 37, 9, 10, 37, 36, 9, 9, 36, 8, 36, 35, 7, 36, 7, 8, 34, 16, 33, 14, 34, 35, 14, 15, 34, 34, 15, 16, 35, 6, 7, - 35, 34, 6, 34, 5, 6, 16, 31, 33, 34, 33, 5, 33, 4, 5, 33, 31, 4, 29, 2, 3, 19, 20, 30, 29, 30, 2, 17, 32, 31, 17, 18, 32, 31, 32, 4, 18, 29, 32, 18, 19, 29, 32, 3, 4, 32, 29, 3, 29, - 19, 30, 16, 17, 31, 30, 1, 2, 27, 21, 28, 21, 22, 28, 28, 23, 24, 28, 22, 23, 27, 0, 1, 27, 28, 0, 0, 28, 26, 24, 25, 28, 28, 25, 26, 20, 21, 30, 21, 27, 30, 30, 27, 1 + 76, 67, 66, 74, 71, 72, 67, 75, 68, 75, 72, 68, 62, 36, 61, 58, 33, 57, 65, 66, 40, 65, 39, 64, 44, 72, 71, 64, 38, 63, 71, 70, 46, 63, 37, 62, 70, 69, 47, 69, 49, 48, 49, 50, 25, + 50, 51, 26, 26, 51, 52, 52, 53, 28, 57, 32, 56, 56, 31, 55, 53, 54, 29, 55, 29, 54, 35, 34, 59, 41, 42, 24, 40, 41, 24, 43, 24, 42, 39, 40, 24, 24, 43, 44, 44, 45, 24, 39, 24, 38, + 45, 46, 24, 38, 24, 37, 46, 47, 24, 37, 24, 36, 47, 48, 24, 48, 25, 24, 25, 26, 24, 26, 27, 24, 27, 28, 24, 28, 29, 24, 24, 35, 36, 24, 34, 35, 24, 33, 34, 24, 32, 33, 24, 31, 32, + 24, 30, 31, 24, 29, 30, 66, 67, 41, 67, 42, 41, 66, 41, 40, 67, 68, 42, 68, 43, 42, 68, 72, 43, 40, 39, 65, 72, 44, 43, 44, 71, 45, 39, 38, 64, 71, 46, 45, 38, 37, 63, 70, 47, 46, + 37, 36, 62, 69, 48, 47, 36, 35, 60, 48, 49, 25, 25, 50, 26, 34, 33, 58, 27, 26, 52, 27, 52, 28, 28, 53, 29, 33, 32, 57, 32, 31, 56, 30, 29, 55, 31, 30, 55, 61, 36, 60, 60, 35, 59, + 34, 58, 59, 77, 66, 65, 73, 70, 71, 96, 69, 70, 10, 77, 9, 9, 78, 8, 9, 77, 78, 10, 76, 77, 76, 10, 75, 12, 74, 11, 10, 11, 75, 11, 74, 75, 7, 78, 79, 7, 8, 78, 13, 73, 12, 12, 73, + 74, 13, 96, 73, 13, 14, 96, 76, 66, 77, 77, 65, 78, 76, 75, 67, 79, 80, 7, 7, 80, 6, 74, 72, 75, 65, 64, 78, 78, 64, 79, 74, 73, 71, 64, 63, 79, 79, 63, 80, 73, 96, 70, 14, 95, 96, + 14, 15, 95, 80, 81, 6, 6, 81, 5, 96, 95, 69, 63, 62, 80, 80, 62, 81, 81, 82, 5, 82, 4, 5, 95, 16, 94, 95, 15, 16, 62, 61, 81, 81, 61, 82, 69, 94, 49, 69, 95, 94, 61, 60, 82, 60, 83, + 82, 82, 83, 4, 83, 3, 4, 49, 94, 50, 94, 93, 50, 94, 16, 93, 16, 17, 93, 50, 93, 51, 83, 60, 84, 93, 92, 51, 93, 17, 92, 60, 59, 84, 3, 83, 2, 51, 92, 52, 84, 59, 85, 83, 84, 2, 17, + 18, 92, 59, 58, 85, 85, 58, 86, 92, 91, 52, 53, 52, 90, 2, 84, 1, 58, 57, 86, 86, 57, 87, 92, 18, 91, 52, 91, 90, 54, 53, 89, 57, 56, 87, 87, 56, 88, 53, 90, 89, 55, 54, 88, 56, 55, + 88, 88, 54, 89, 84, 85, 1, 18, 19, 91, 1, 85, 0, 90, 91, 20, 85, 86, 0, 0, 86, 23, 91, 19, 20, 89, 90, 21, 86, 87, 23, 23, 87, 22, 90, 20, 21, 88, 89, 22, 87, 88, 22, 22, 89, 21 ], "vertices": [ - 6, 23, 42.39, 36.89, 0.61865, 24, -24.45, 32.69, 0.21662, 25, -66.66, 36.02, 0.14285, 26, -94.46, 60.97, 0.01886, 27, -107.45, 98.58, 0.0024, 28, -98.68, 142.81, 0.00062, 6, 23, - 69.68, 26.91, 0.37334, 24, 4.6, 31.73, 0.31086, 25, -37.63, 34.59, 0.24998, 26, -66.66, 52.49, 0.05339, 27, -83.59, 82, 0.01006, 28, -82.24, 118.85, 0.00239, 6, 23, 100.43, 15.67, - 0.20232, 24, 37.32, 30.64, 0.31139, 25, -4.93, 32.98, 0.3299, 26, -35.35, 42.93, 0.1167, 27, -56.7, 63.32, 0.03218, 28, -63.72, 91.85, 0.00752, 6, 23, 118.1, 5.9, 0.09456, 24, 57.15, - 26.87, 0.2484, 25, 14.84, 28.9, 0.353, 26, -17.18, 34.14, 0.2015, 27, -42.09, 49.39, 0.08159, 28, -54.99, 73.65, 0.02095, 6, 23, 133.71, -2.74, 0.0369, 24, 74.68, 23.54, 0.16417, 25, - 32.31, 25.29, 0.30724, 26, -1.12, 26.37, 0.27689, 27, -29.19, 37.08, 0.16337, 28, -47.28, 57.56, 0.05144, 6, 23, 152.6, 3.39, 0.01189, 24, 90.71, 35.25, 0.09059, 25, 48.53, 36.75, - 0.2159, 26, 17.41, 33.51, 0.30597, 27, -9.36, 38.21, 0.26289, 28, -28.34, 51.59, 0.11276, 6, 23, 158.82, 13.49, 0.00306, 24, 93.47, 46.78, 0.04208, 25, 51.47, 48.24, 0.12219, 26, - 23.07, 43.93, 0.27461, 27, -0.78, 46.39, 0.34261, 28, -17.42, 56.21, 0.21545, 6, 23, 166.73, 26.34, 0.00064, 24, 96.98, 61.46, 0.01636, 25, 55.21, 62.86, 0.05475, 26, 30.27, 57.19, - 0.20269, 27, 10.13, 56.81, 0.36759, 28, -3.52, 62.09, 0.35797, 6, 23, 183.08, 57.86, 0.0001, 24, 102.67, 96.51, 0.00529, 25, 61.46, 97.81, 0.01939, 26, 44.88, 89.55, 0.12689, 27, - 33.95, 83.15, 0.33601, 28, 28.08, 78.28, 0.51231, 6, 23, 202.31, 44.04, 1e-05, 24, 125.26, 89.38, 0.00142, 25, 83.93, 90.32, 0.00537, 26, 64.83, 76.79, 0.07407, 27, 49.04, 64.9, - 0.28478, 28, 35.72, 55.87, 0.63435, 6, 23, 249.08, 10.42, 0, 24, 180.18, 72.03, 0.00042, 25, 138.57, 72.1, 0.0021, 26, 113.36, 45.77, 0.05445, 27, 85.74, 20.51, 0.26218, 28, 54.32, - 1.35, 0.68085, 6, 23, 253.74, -24.38, 0, 24, 195.47, 40.43, 0.00016, 25, 153.35, 40.26, 0.00207, 26, 119.91, 11.28, 0.05049, 27, 81.42, -14.33, 0.26128, 28, 37.94, -29.69, 0.686, 6, - 23, 239.55, -44.13, 0, 24, 188.14, 17.24, 0.00056, 25, 145.66, 17.19, 0.00631, 26, 106.81, -9.21, 0.0712, 27, 62.68, -29.83, 0.29428, 28, 14.92, -37.55, 0.62766, 6, 23, 227.22, - -61.28, 1e-05, 24, 181.78, -2.9, 0.0028, 25, 138.98, -2.85, 0.02232, 26, 95.43, -27.01, 0.1243, 27, 46.4, -43.28, 0.35186, 28, -5.07, -44.37, 0.4987, 6, 23, 208.17, -87.78, 0.00025, - 24, 171.96, -34.03, 0.01058, 25, 128.66, -33.81, 0.06169, 26, 77.85, -54.51, 0.20045, 27, 21.25, -64.09, 0.38535, 28, -35.96, -54.91, 0.34168, 6, 23, 183.34, -92, 0.00179, 24, - 149.69, -45.79, 0.03116, 25, 106.21, -45.22, 0.13569, 26, 53.29, -60.08, 0.27291, 27, -3.84, -61.87, 0.35863, 28, -58.64, -43.95, 0.19981, 6, 23, 145.81, -78.43, 0.00873, 24, 109.79, - -44.6, 0.0735, 25, 66.34, -43.4, 0.23797, 26, 15.08, -48.56, 0.30481, 27, -36.69, -39.21, 0.27493, 28, -81.33, -11.12, 0.10006, 6, 23, 117.71, -53.5, 0.03069, 24, 75.32, -29.68, - 0.1418, 25, 32.11, -27.94, 0.33789, 26, -14.34, -25.2, 0.2761, 27, -57.55, -7.97, 0.17093, 28, -89.76, 25.49, 0.04259, 6, 23, 105.58, -48.06, 0.08481, 24, 62.09, -28.3, 0.22382, 25, - 18.91, -26.34, 0.38929, 26, -26.74, -20.42, 0.20091, 27, -67.9, 0.38, 0.08548, 28, -96.49, 36.96, 0.01568, 6, 23, 88.51, -40.4, 0.19016, 24, 43.49, -26.34, 0.28883, 25, 0.33, -24.09, - 0.36619, 26, -44.2, -13.7, 0.11623, 27, -82.46, 12.12, 0.03374, 28, -105.95, 53.1, 0.00485, 6, 23, 71.41, -38.17, 0.36175, 24, 26.54, -29.57, 0.29406, 25, -16.66, -27.05, 0.27937, - 26, -61.41, -12.4, 0.05304, 27, -98.45, 18.61, 0.0105, 28, -118.59, 64.84, 0.00127, 6, 23, 51.03, -35.52, 0.6115, 24, 6.36, -33.41, 0.2078, 25, -36.91, -30.57, 0.15929, 26, -81.9, - -10.87, 0.01868, 27, -117.48, 26.35, 0.00247, 28, -133.65, 78.81, 0.00026, 1, 23, 23.73, -70.22, 1, 1, 23, -13.69, -43.32, 1, 2, 23, -18.82, -6.6, 0.99473, 24, -69.03, -27.73, - 0.00527, 1, 23, -19.91, 14.67, 1, 1, 23, 13.71, 61.45, 1, 6, 23, 55.16, 0.92, 0.51018, 24, -1.1, 2.5, 0.27442, 25, -43.79, 5.46, 0.19055, 26, -79.76, 25.75, 0.02179, 27, -104.24, - 60.55, 0.00259, 28, -109.15, 106.1, 0.00047, 2, 23, 5.53, -1.24, 0.99899, 24, -47.57, -15.04, 0.00101, 6, 23, 98.03, -17.29, 0.1871, 24, 45.32, -1.42, 0.30719, 25, 2.56, 0.8, - 0.35417, 26, -35.96, 9.9, 0.11492, 27, -67.39, 32.06, 0.03097, 28, -84.79, 66.41, 0.00566, 6, 23, 78.47, -8.98, 0.34132, 24, 24.15, 0.37, 0.32207, 25, -18.58, 2.93, 0.27445, 26, - -55.93, 17.13, 0.05147, 27, -84.2, 45.05, 0.00909, 28, -95.9, 84.51, 0.0016, 6, 23, 134.75, -28.7, 0.03123, 24, 83.77, -0.81, 0.15186, 25, 41.01, 0.8, 0.326, 26, 1.33, 0.49, 0.28017, - 27, -34.77, 11.69, 0.16587, 28, -61.5, 35.81, 0.04487, 6, 23, 116.09, -23.96, 0.08467, 24, 64.56, -2.13, 0.23851, 25, 21.79, -0.21, 0.37731, 26, -17.56, 4.21, 0.20186, 27, -51.62, - 21.02, 0.08071, 28, -73.95, 50.49, 0.01693, 6, 23, 153.77, -28.98, 0.00901, 24, 101.92, 4.87, 0.08017, 25, 59.26, 6.19, 0.22743, 26, 20.34, 1.25, 0.31024, 27, -16.44, 6.6, 0.27034, - 28, -46.16, 24.55, 0.10281, 6, 23, 175.63, -33.65, 0.00202, 24, 124.15, 7.24, 0.03484, 25, 81.52, 8.21, 0.12644, 26, 42.42, -2.23, 0.27685, 27, 3.51, -3.47, 0.35505, 28, -31.07, - 8.06, 0.20481, 6, 23, 191.72, -25.52, 0.00031, 24, 136.9, 20, 0.01242, 25, 94.47, 20.76, 0.05583, 26, 58.05, 6.77, 0.20199, 27, 21.15, 0.31, 0.38126, 28, -13.24, 5.35, 0.34818, 6, - 23, 209.15, -19.91, 4e-05, 24, 151.71, 30.76, 0.00357, 25, 109.45, 31.29, 0.019, 26, 75.14, 13.31, 0.12386, 27, 39.42, 1.31, 0.34567, 28, 4.2, -0.19, 0.50786, 6, 23, 223.1, -7.08, 0, - 24, 160.96, 47.3, 0.00084, 25, 118.96, 47.68, 0.00512, 26, 88.37, 26.88, 0.07106, 27, 56.17, 10.18, 0.28847, 28, 23.01, 2.17, 0.63451 + 1, 29, 42.58, 72.34, 1, 1, 29, 60.45, 57.26, 1, 1, 29, 72.98, 39.16, 1, 1, 29, 81.54, 20.6, 1, 1, 29, 82, -0.34, 1, 1, 29, 82, -19.83, 1, 1, 29, 73.67, -38.85, 1, 1, 29, 59.29, + -58.81, 1, 1, 29, 40.26, -74.58, 1, 1, 29, 15.44, -82, 1, 1, 29, -4.05, -82, 1, 1, 29, -20.9, -81.77, 1, 1, 29, -40.85, -74.03, 1, 1, 29, -59.18, -60.37, 1, 1, 29, -73.95, -41.78, 1, + 1, 29, -82, -16.75, 1, 1, 29, -82, 1.83, 1, 1, 29, -82, 21.3, 1, 1, 29, -72.4, 43.57, 1, 1, 29, -56.86, 62.36, 1, 1, 29, -39.46, 74.66, 1, 1, 29, -18.58, 82, 1, 1, 29, 0.59, 82, 1, + 1, 29, 20.78, 80.84, 1, 1, 81, -0.92, -0.5, 1, 1, 81, -16.85, 3.78, 1, 1, 81, -15.14, 8.27, 1, 1, 81, -11.95, 11.89, 1, 1, 81, -8.58, 14.44, 1, 1, 81, -4.49, 16.19, 1, 1, 81, -0.61, + 16.41, 1, 1, 81, 3.51, 16.11, 1, 1, 81, 8.07, 14.55, 1, 1, 81, 12.26, 11.9, 1, 1, 81, 15.06, 8.08, 1, 1, 81, 16.59, 3.98, 1, 1, 81, 17.59, -0.46, 1, 1, 81, 17.14, -4.71, 1, 1, 81, + 14.92, -8.64, 1, 1, 81, 11.72, -12.74, 1, 1, 81, 7.46, -15.57, 1, 1, 81, 2.36, -16.84, 1, 1, 81, -1.56, -17.13, 1, 1, 81, -4.85, -16.49, 1, 1, 81, -8.31, -15.08, 1, 1, 81, -12.1, + -11.99, 1, 1, 81, -15.04, -7.96, 1, 1, 81, -16.67, -3.66, 1, 1, 81, -17.34, -0.03, 1, 2, 29, -38.97, 0.6, 0.37475, 81, -38.97, 0.6, 0.62525, 2, 29, -37.57, 9.36, 0.38176, 81, -37.57, + 9.36, 0.61824, 2, 29, -33.47, 19.57, 0.39514, 81, -33.47, 19.57, 0.60486, 2, 29, -26.42, 28.16, 0.40154, 81, -26.42, 28.16, 0.59846, 2, 29, -18.43, 33.65, 0.40298, 81, -18.43, 33.65, + 0.59702, 2, 29, -8.9, 36.8, 0.39723, 81, -8.9, 36.8, 0.60277, 2, 29, -0.23, 37.18, 0.38672, 81, -0.23, 37.18, 0.61328, 2, 29, 8.95, 36.51, 0.39243, 81, 8.95, 36.51, 0.60757, 2, 29, + 19.05, 32.93, 0.39729, 81, 19.05, 32.93, 0.60271, 2, 29, 28.51, 27.19, 0.41715, 81, 28.51, 27.19, 0.58285, 2, 29, 36.77, 19.73, 0.45304, 81, 36.77, 19.73, 0.54696, 2, 29, 40.74, + 10.16, 0.44594, 81, 40.74, 10.16, 0.55406, 2, 29, 42.2, -0.42, 0.43856, 81, 42.2, -0.42, 0.56144, 2, 29, 40.55, -10.17, 0.41782, 81, 40.55, -10.17, 0.58218, 2, 29, 35.87, -19.42, + 0.38686, 81, 35.87, -19.42, 0.61314, 2, 29, 28.24, -28.73, 0.36878, 81, 28.24, -28.73, 0.63122, 2, 29, 18.06, -34.64, 0.3386, 81, 18.06, -34.64, 0.6614, 2, 29, 6.41, -37, 0.30037, + 81, 6.41, -37, 0.69963, 2, 29, -2.32, -36.91, 0.28415, 81, -2.32, -36.91, 0.71585, 2, 29, -9.48, -35.32, 0.27399, 81, -9.48, -35.32, 0.72601, 2, 29, -38.52, -8.03, 0.36783, 81, + -38.52, -8.03, 0.63217, 2, 29, -34.06, -18, 0.33446, 81, -34.06, -18, 0.66554, 2, 29, -26.52, -26.8, 0.30599, 81, -26.52, -26.8, 0.69401, 2, 29, -17.23, -32.71, 0.28378, 81, -17.23, + -32.71, 0.71622, 2, 29, -41.59, -42.47, 0.73847, 81, -41.59, -42.47, 0.26153, 2, 29, -27.74, -51.46, 0.71173, 81, -27.74, -51.46, 0.28827, 2, 29, -14.53, -55.88, 0.69513, 81, -14.53, + -55.88, 0.30487, 2, 29, -3.16, -58.91, 0.72225, 81, -3.16, -58.91, 0.27775, 2, 29, 11.08, -60.25, 0.77228, 81, 11.08, -60.25, 0.22772, 2, 29, 29.37, -54.99, 0.80171, 81, 29.37, + -54.99, 0.19829, 2, 29, 43.44, -43.46, 0.78981, 81, 43.44, -43.46, 0.21019, 2, 29, 54.07, -28.78, 0.79382, 81, 54.07, -28.78, 0.20618, 2, 29, 60.6, -14.84, 0.827, 81, 60.6, -14.84, + 0.173, 2, 29, 64.25, -0.38, 0.87698, 81, 64.25, -0.38, 0.12302, 2, 29, 63.98, 16.11, 0.92141, 81, 63.98, 16.11, 0.07859, 2, 29, 56.88, 30.53, 0.90642, 81, 56.88, 30.53, 0.09358, 2, + 29, 46.21, 43.86, 0.90058, 81, 46.21, 43.86, 0.09942, 2, 29, 31.89, 54.43, 0.8953, 81, 31.89, 54.43, 0.1047, 2, 29, 15.52, 61.14, 0.89934, 81, 15.52, 61.14, 0.10066, 2, 29, 0.24, + 62.86, 0.89762, 81, 0.24, 62.86, 0.10238, 2, 29, -14.22, 61.67, 0.90341, 81, -14.22, 61.67, 0.09659, 2, 29, -30.17, 56.55, 0.9151, 81, -30.17, 56.55, 0.0849, 2, 29, -44.28, 48.24, + 0.93596, 81, -44.28, 48.24, 0.06404, 2, 29, -55.51, 33.16, 0.90966, 81, -55.51, 33.16, 0.09034, 2, 29, -61.25, 15.72, 0.86888, 81, -61.25, 15.72, 0.13112, 2, 29, -62.28, 1.26, + 0.83823, 81, -62.28, 1.26, 0.16177, 2, 29, -61.24, -12.59, 0.82811, 81, -61.24, -12.59, 0.17189, 2, 29, -53.41, -30.3, 0.78788, 81, -53.41, -30.3, 0.21212 ], - "hull": 27, + "hull": 24, "edges": [ - 44, 42, 42, 54, 54, 0, 0, 52, 44, 56, 56, 52, 44, 46, 46, 48, 50, 52, 48, 50, 48, 56, 38, 58, 58, 4, 42, 40, 40, 38, 54, 60, 60, 58, 40, 60, 0, 2, 2, 4, 60, 2, 34, 62, 62, 8, 38, 36, - 36, 34, 36, 64, 4, 6, 6, 8, 64, 6, 58, 64, 64, 62, 34, 32, 32, 30, 30, 28, 8, 10, 14, 16, 32, 66, 66, 10, 30, 68, 10, 12, 12, 14, 68, 12, 14, 70, 70, 28, 26, 28, 26, 72, 72, 16, 16, - 18, 18, 74, 24, 26, 74, 24, 22, 24, 18, 20, 22, 20, 62, 66, 66, 68, 68, 70, 70, 72, 72, 74, 74, 20 + 18, 20, 18, 16, 16, 14, 14, 12, 8, 10, 12, 10, 8, 6, 6, 4, 4, 2, 2, 0, 44, 46, 0, 46, 42, 44, 42, 40, 40, 38, 38, 36, 32, 34, 36, 34, 30, 32, 30, 28, 28, 26, 26, 24, 20, 22, 24, 22, + 50, 48, 52, 48, 50, 52, 54, 48, 52, 54, 56, 48, 54, 56, 58, 48, 56, 58, 60, 48, 58, 60, 62, 48, 60, 62, 64, 48, 62, 64, 66, 48, 64, 66, 68, 48, 66, 68, 70, 48, 68, 70, 72, 48, 70, + 72, 74, 48, 72, 74, 76, 48, 74, 76, 78, 48, 76, 78, 80, 48, 78, 80, 82, 48, 80, 82, 84, 48, 82, 84, 86, 48, 84, 86, 88, 48, 86, 88, 90, 48, 88, 90, 92, 48, 90, 92, 94, 48, 92, 94, + 96, 48, 94, 96, 96, 50, 98, 96, 100, 50, 98, 100, 102, 52, 100, 102, 104, 54, 102, 104, 106, 56, 104, 106, 108, 58, 106, 108, 110, 60, 108, 110, 112, 62, 110, 112, 114, 64, 112, 114, + 116, 66, 114, 116, 118, 68, 116, 118, 120, 70, 118, 120, 122, 72, 120, 122, 124, 74, 122, 124, 126, 76, 124, 126, 128, 78, 126, 128, 130, 80, 128, 130, 132, 82, 130, 132, 134, 84, + 132, 134, 136, 86, 134, 136, 138, 94, 98, 138, 140, 92, 138, 140, 142, 90, 140, 142, 144, 88, 142, 144, 144, 136, 26, 146, 146, 142, 24, 148, 148, 144, 146, 148, 22, 150, 150, 136, + 148, 150, 20, 152, 152, 134, 150, 152, 18, 154, 154, 132, 152, 154, 16, 156, 156, 130, 154, 156, 14, 158, 158, 128, 156, 158, 12, 160, 160, 126, 158, 160, 10, 162, 162, 124, 160, + 162, 8, 164, 164, 122, 162, 164, 6, 166, 166, 120, 164, 166, 4, 168, 168, 118, 166, 168, 2, 170, 170, 116, 168, 170, 0, 172, 172, 114, 170, 172, 46, 174, 174, 112, 172, 174, 44, 176, + 176, 110, 174, 176, 42, 178, 178, 108, 176, 178, 40, 180, 180, 106, 178, 180, 38, 182, 182, 104, 180, 182, 36, 184, 184, 102, 182, 184, 34, 186, 186, 100, 184, 186, 32, 188, 188, 98, + 186, 188, 30, 190, 190, 138, 188, 190, 28, 192, 192, 140, 190, 192, 192, 146 ], - "width": 197, - "height": 245, - "path": "body-wetdog.body-braid" + "width": 160.0, + "height": 160.0, + "path": "summer-as.mouth-accessory", + "x": 1.0, + "y": 1.0 } }, - "leg-back-left": { - "leg-back-left": {"x": 32.56, "y": -0.8, "rotation": 83.45, "width": 80, "height": 94, "path": "body-normal.leg-back-left"}, - "leg-back-left-long": {"x": 34.89, "y": -5.5, "rotation": 221.45, "width": 85, "height": 82, "path": "body-normal.leg-back-left-long"}, - "leg-back-left-stretch": {"x": 27.29, "y": 1.58, "rotation": 54.45, "width": 67, "height": 70, "path": "body-normal.leg-back-left-stretch"} - }, - "leg-front-left": { - "leg-front-left": {"x": 21.98, "y": 1.18, "rotation": 97.51, "width": 72, "height": 63, "path": "body-normal.leg-front-left"}, - "leg-front-left-long": {"x": 27.48, "y": -6.04, "rotation": -173.75, "width": 89, "height": 77, "path": "body-normal.leg-front-left-long"}, - "leg-front-left-stretch": {"x": 19.24, "y": -3.96, "rotation": 142.15, "width": 70, "height": 77, "path": "body-normal.leg-front-left-stretch"} - }, - "leg-front-right": { - "leg-front-right": {"x": 31.35, "y": -1.66, "rotation": 87.96, "width": 80, "height": 94, "path": "body-normal.leg-front-right"}, - "leg-front-right-long": {"x": 36.56, "y": -0.65, "rotation": 205.96, "width": 89, "height": 77, "path": "body-normal.leg-front-right-long"}, - "leg-front-right-stretch": {"x": 30.65, "y": 1.81, "rotation": 142.01, "width": 81, "height": 69, "path": "body-normal.leg-front-right-stretch"} - }, - "shadow": {"shadow": {"width": 946, "height": 191, "path": "body-wetdog.shadow"}}, - "body-air": { - "body-air1a_00": {"x": 1.37, "y": 35.21, "width": 209.375, "height": 129.6875, "path": "body-accessory.body-air1a_00"}, - "body-air1a_01": {"x": 1.37, "y": 35.21, "width": 209.375, "height": 129.6875, "path": "body-accessory.body-air1a_01"}, - "body-air1a_02": {"x": 1.37, "y": 35.21, "width": 209.375, "height": 129.6875, "path": "body-accessory.body-air1a_02"}, - "body-air1a_03": {"x": 1.37, "y": 35.21, "width": 209.375, "height": 129.6875, "path": "body-accessory.body-air1a_03"}, - "body-air1a_04": {"x": 1.37, "y": 35.21, "width": 209.375, "height": 129.6875, "path": "body-accessory.body-air1a_04"}, - "body-air1a_05": {"x": 1.37, "y": 35.21, "width": 209.375, "height": 129.6875, "path": "body-accessory.body-air1a_05"}, - "body-air1a_06": {"x": 1.37, "y": 35.21, "width": 209.375, "height": 129.6875, "path": "body-accessory.body-air1a_06"}, - "body-air1a_07": {"x": 1.37, "y": 35.21, "width": 209.375, "height": 129.6875, "path": "body-accessory.body-air1a_07"}, - "body-air1b_00": {"x": 1.37, "y": 35.21, "width": 156.25, "height": 192.1875, "path": "body-accessory.body-air1b_00"}, - "body-air1b_01": {"x": 1.37, "y": 35.21, "width": 156.25, "height": 192.1875, "path": "body-accessory.body-air1b_01"}, - "body-air1b_02": {"x": 1.37, "y": 35.21, "width": 156.25, "height": 192.1875, "path": "body-accessory.body-air1b_02"}, - "body-air1c_00": {"x": 1.37, "y": 35.21, "width": 200.0, "height": 289.0625, "path": "body-accessory.body-air1c_00"}, - "body-air1c_01": {"x": 1.37, "y": 35.21, "width": 200.0, "height": 289.0625, "path": "body-accessory.body-air1c_01"}, - "body-air1c_02": {"x": 1.37, "y": 35.21, "width": 200.0, "height": 289.0625, "path": "body-accessory.body-air1c_02"}, - "body-air1c_03": {"x": 1.37, "y": 35.21, "width": 200.0, "height": 289.0625, "path": "body-accessory.body-air1c_03"}, - "body-air1d_00": {"x": 1.37, "y": 35.21, "width": 204.6875, "height": 273.4375, "path": "body-accessory.body-air1d_00"}, - "body-air1d_01": {"x": 1.37, "y": 35.21, "width": 204.6875, "height": 273.4375, "path": "body-accessory.body-air1d_01"}, - "body-air1d_02": {"x": 1.37, "y": 35.21, "width": 204.6875, "height": 273.4375, "path": "body-accessory.body-air1d_02"}, - "body-air1d_03": {"x": 1.37, "y": 35.21, "width": 204.6875, "height": 273.4375, "path": "body-accessory.body-air1d_03"} - }, - "body-cheek": { - "body-cheek1a": {"x": 1.52, "y": 3.04, "width": 60.9375, "height": 57.8125, "path": "body-accessory.body-cheek1a"}, - "body-cheek1b": {"x": 1.52, "y": 3.04, "width": 50.0, "height": 76.5625, "path": "body-accessory.body-cheek1b"}, - "body-cheek1c": {"x": 1.52, "y": 3.04, "width": 50.0, "height": 76.5625, "path": "body-accessory.body-cheek1c"}, - "body-cheek1d": {"x": 1.52, "y": 3.04, "width": 50.0, "height": 76.5625, "path": "body-accessory.body-cheek1d"}, - "body-cheek1e": {"x": 1.52, "y": 3.04, "width": 54.6875, "height": 79.6875, "path": "body-accessory.body-cheek1e"}, - "body-cheek1f": {"x": 1.52, "y": 3.04, "width": 56.25, "height": 57.8125, "path": "body-accessory.body-cheek1f"}, - "body-cheek1g": {"x": 1.52, "y": 3.04, "width": 104.6875, "height": 96.875, "path": "body-accessory.body-cheek1g"} - }, - "body-ground": { - "body-ground1a_00": {"x": 4.75, "y": 123.01, "width": 254.6875, "height": 275.0, "path": "body-accessory.body-ground1a_00"}, - "body-ground1a_01": {"x": 4.75, "y": 123.01, "width": 254.6875, "height": 275.0, "path": "body-accessory.body-ground1a_01"}, - "body-ground1a_02": {"x": 4.75, "y": 123.01, "width": 254.6875, "height": 275.0, "path": "body-accessory.body-ground1a_02"}, - "body-ground1a_03": {"x": 4.75, "y": 123.01, "width": 254.6875, "height": 275.0, "path": "body-accessory.body-ground1a_03"} - }, - "body-neck": { - "body-neck1a": {"x": -5.4, "y": -54.79, "width": 92.1875, "height": 96.875, "path": "body-accessory.body-neck1a"}, - "body-neck1b": {"x": -5.4, "y": -54.79, "width": 103.125, "height": 117.1875, "path": "body-accessory.body-neck1b"}, - "body-neck1c": {"x": -5.4, "y": -54.79, "width": 79.6875, "height": 110.9375, "path": "body-accessory.body-neck1c"}, - "body-neck1d": {"x": -5.4, "y": -54.79, "width": 121.875, "height": 101.5625, "path": "body-accessory.body-neck1d"}, - "body-neck1e": {"x": -5.4, "y": -54.79, "width": 89.0625, "height": 107.8125, "path": "body-accessory.body-neck1e"}, - "body-neck1f": {"x": -5.4, "y": -54.79, "width": 79.6875, "height": 79.6875, "path": "body-accessory.body-neck1f"} - } + "tail": {"tail": {"x": 114.37529411764706, "y": 4.185294117647058, "rotation": 12, "width": 223.52941176470588, "height": 223.52941176470588, "path": "summer-as.tail"}} } } ], @@ -8783,48 +23137,51 @@ "keyAnimations": { "activity/appear": "1023093953", "activity/bath": "3305387968", - "attack/ranged/cast-fly": "2557998295", - "attack/ranged/cast-high": "260375190", - "attack/ranged/cast-low": "1610371879", - "attack/ranged/cast-multi": "305611055", - "attack/ranged/cast-tail": "3968125421", + "attack/ranged/cast-fly": "4180526371", + "attack/ranged/cast-high": "164191126", + "attack/ranged/cast-low": "198813017", + "attack/ranged/cast-multi": "151119", + "attack/ranged/cast-tail": "3850719809", + "action/mix/ear-animation": "901954966", "activity/eat-bite": "1137807767", "activity/eat-chew": "1988236421", "activity/entrance": "3768378365", - "defense/evade": "3676560492", + "defense/evade": "1735454995", "activity/evolve": "649307630", - "battle/get-buff": "984729030", - "battle/get-debuff": "2827866347", - "defense/hit-by-normal": "2668995378", - "defense/hit-by-normal-crit": "858481981", - "defense/hit-by-normal-dramatic": "1175182584", - "defense/hit-by-ranged-attack": "2632049379", - "defense/hit-with-shield": "2044221994", - "attack/melee/horn-gore": "2912205675", - "attack/melee/mouth-bite": "3099909215", - "action/move-back": "3779315145", - "action/move-forward": "1392842846", - "attack/melee/multi-attack": "3353545678", - "action/idle/normal": "1278187577", - "attack/melee/normal-attack": "3958849146", + "action/mix/eyes-animation": "3799301307", + "battle/get-buff": "1455190363", + "battle/get-debuff": "606904312", + "defense/hit-by-normal": "2045974966", + "defense/hit-by-normal-crit": "2130010601", + "defense/hit-by-normal-dramatic": "3823092125", + "defense/hit-by-ranged-attack": "2224561612", + "defense/hit-with-shield": "390714790", + "attack/melee/horn-gore": "1327954218", + "attack/melee/mouth-bite": "2237748264", + "action/move-back": "3766271173", + "action/move-forward": "2945160014", + "attack/melee/multi-attack": "3774600630", + "action/idle/normal": "1659336865", + "attack/melee/normal-attack": "3305373483", + "action/mix/normal-mouth-animation": "1178295570", "activity/prepare": "405864717", - "action/idle/random-01": "2684952679", - "action/idle/random-02": "2106252256", - "action/idle/random-03": "2939918937", - "action/idle/random-04": "620315410", + "action/idle/random-01": "554401889", + "action/idle/random-02": "3634120758", + "action/idle/random-03": "2021333900", + "action/idle/random-04": "1003789695", "action/idle/random-05": "2745614147", - "action/run": "4243571983", - "draft/run-origin": "3577885069", - "attack/melee/shrimp": "1982530335", + "action/run": "3942433225", + "draft/run-origin": "237238075", + "attack/melee/shrimp": "3833448733", "activity/sleep": "100562494", - "attack/melee/tail-multi-slap": "323348469", - "attack/melee/tail-roll": "2952434131", - "attack/melee/tail-smash": "3155257148", - "attack/melee/tail-thrash": "2338117540", + "attack/melee/tail-multi-slap": "3317139533", + "attack/melee/tail-roll": "3108617565", + "attack/melee/tail-smash": "519942130", + "attack/melee/tail-thrash": "628713175", "activity/victory-pose-back-flip": "2227634241" } }, - "summer-a": { + "summer-tb": { "bones": [ {"name": "@root"}, {"name": "@pivot-main", "parent": "@root"}, {"name": "@pivot-back", "parent": "@pivot-main", "x": 205, "y": 180, "color": "ff0101ff"}, {"name": "@pivot-center", "parent": "@pivot-back", "x": -215.11, "y": -5.25, "color": "ff0101ff"}, @@ -8923,7 +23280,7 @@ {"name": "ear-right-dot-19", "bone": "ear-right-dot-19", "color": "ffffff00", "attachment": "ear-right-dot"}, {"name": "ear-right-dot-15", "bone": "ear-right-dot-15", "color": "ffffff00", "attachment": "ear-right-dot"}, {"name": "ear-right-dot-20", "bone": "ear-right-dot-20", "color": "ffffff00", "attachment": "ear-right-dot"}, - {"name": "ear-right-bubble", "bone": "ear-right-bubble", "color": "fcae10ff", "attachment": "ear-right-bubble"}, + {"name": "ear-right-bubble", "bone": "ear-right-bubble", "color": "00f7c2ff", "attachment": "ear-right-bubble"}, {"name": "ear-right-bubble-02", "bone": "ear-right-bubble-05", "attachment": "ear-right-bubble"}, {"name": "ear-right-upper", "bone": "ear-right", "attachment": "ear-right-upper"}, {"name": "leg-front-left", "bone": "@leg-front-left", "attachment": "summer-leg-front-left"}, {"name": "eyes", "bone": "@eyes", "attachment": "eyes"}, {"name": "eyes-light-dot", "bone": "eyes-light-dot", "attachment": "eye-light-dot"}, {"name": "eyes-light-dot-02", "bone": "eyes-light-dot-02", "attachment": "eye-light-dot"}, @@ -8946,7 +23303,7 @@ {"name": "ear-right-dot-09", "bone": "ear-right-dot-09", "color": "ffffff00", "attachment": "ear-right-dot"}, {"name": "ear-right-dot-05", "bone": "ear-right-dot-05", "color": "ffffff00", "attachment": "ear-right-dot"}, {"name": "ear-right-dot-10", "bone": "ear-right-dot-10", "color": "ffffff00", "attachment": "ear-right-dot"}, - {"name": "ear-left-bubble", "bone": "ear-left-bubble", "color": "fcae10ff", "attachment": "ear-left-bubble"}, + {"name": "ear-left-bubble", "bone": "ear-left-bubble", "color": "00f7c2ff", "attachment": "ear-left-bubble"}, {"name": "ear-left-bubble-02", "bone": "ear-left-bubble-05", "attachment": "ear-left-bubble"}, {"name": "ear-left-upper", "bone": "ear-left", "attachment": "ear-left-upper"}, {"name": "eyes-happy-accessory", "bone": "eyes-happy-accessory", "color": "ffffff00", "attachment": "eyes-happy-accessory", "blend": "additive"}, {"name": "mouth-accessory", "bone": "mouth-accessory", "color": "ffffff00", "attachment": "mouth-accessory"} @@ -8961,7 +23318,7 @@ { "name": "default", "attachments": { - "back": {"back": {"x": 69.83, "y": -8.69, "rotation": -58, "width": 244, "height": 229, "path": "summer-a.back"}}, + "back": {"back": {"x": 110.08705882352942, "y": 18.573529411764696, "rotation": -58, "width": 284.70588235294116, "height": 362.3529411764706, "path": "summer-as.back"}}, "ear-left-bubble": { "ear-left-bubble": { "type": "mesh", @@ -8984,25 +23341,25 @@ 0.89934, 0.9108 ], "triangles": [ - 85, 84, 62, 94, 73, 72, 123, 54, 55, 62, 84, 61, 100, 48, 99, 144, 46, 126, 122, 53, 54, 121, 95, 52, 48, 49, 99, 35, 36, 125, 125, 36, 46, 48, 47, 38, 47, 37, 38, 50, 66, 84, 50, - 40, 66, 56, 3, 4, 54, 53, 1, 52, 68, 0, 70, 42, 43, 71, 0, 68, 44, 45, 71, 70, 43, 44, 71, 70, 44, 69, 41, 42, 69, 42, 70, 71, 45, 0, 77, 70, 71, 77, 71, 68, 70, 78, 69, 67, 70, 77, - 67, 78, 70, 41, 69, 40, 66, 69, 78, 94, 77, 68, 94, 68, 52, 72, 77, 94, 89, 67, 77, 89, 77, 72, 67, 79, 78, 51, 67, 89, 51, 79, 67, 61, 66, 78, 61, 78, 79, 84, 66, 61, 40, 69, 66, - 90, 89, 72, 90, 72, 73, 57, 79, 51, 57, 51, 89, 57, 89, 90, 80, 61, 79, 80, 79, 57, 62, 61, 80, 108, 80, 57, 113, 57, 90, 53, 52, 0, 53, 0, 1, 121, 52, 53, 54, 1, 2, 95, 94, 52, 55, - 2, 3, 55, 54, 2, 5, 6, 4, 39, 40, 49, 49, 40, 50, 38, 39, 48, 46, 36, 37, 48, 39, 49, 85, 50, 84, 49, 50, 85, 47, 46, 37, 56, 55, 3, 122, 121, 53, 47, 48, 100, 46, 47, 101, 125, 46, - 144, 35, 125, 34, 34, 125, 144, 101, 47, 100, 86, 99, 49, 85, 86, 49, 120, 94, 95, 120, 73, 94, 114, 91, 90, 73, 114, 90, 74, 73, 120, 114, 73, 74, 119, 120, 95, 74, 120, 119, 96, - 95, 121, 119, 95, 96, 96, 121, 122, 92, 91, 114, 115, 114, 74, 92, 114, 115, 75, 74, 119, 115, 74, 75, 118, 119, 96, 75, 119, 118, 97, 96, 122, 118, 96, 97, 123, 122, 54, 97, 122, - 123, 93, 92, 115, 116, 115, 75, 93, 115, 116, 76, 75, 118, 116, 75, 76, 117, 118, 97, 76, 118, 117, 98, 97, 123, 117, 97, 98, 124, 123, 55, 98, 123, 124, 150, 135, 93, 153, 138, 117, - 116, 150, 93, 98, 153, 117, 154, 124, 56, 154, 56, 141, 139, 98, 124, 140, 139, 124, 153, 98, 139, 152, 76, 117, 152, 117, 138, 154, 140, 124, 151, 136, 116, 150, 116, 136, 76, 151, - 116, 137, 151, 76, 152, 137, 76, 7, 154, 141, 7, 141, 6, 8, 140, 154, 8, 154, 7, 9, 139, 140, 9, 140, 8, 10, 153, 139, 10, 139, 9, 11, 138, 153, 11, 153, 10, 12, 152, 138, 12, 138, - 11, 13, 137, 152, 13, 152, 12, 14, 151, 137, 14, 137, 13, 15, 136, 151, 15, 151, 14, 16, 150, 136, 16, 136, 15, 17, 135, 150, 17, 150, 16, 124, 55, 56, 6, 141, 4, 141, 56, 4, 113, - 90, 91, 81, 80, 108, 58, 108, 57, 109, 81, 108, 82, 81, 109, 59, 108, 58, 109, 108, 59, 112, 58, 113, 59, 58, 112, 112, 113, 91, 92, 112, 91, 110, 82, 109, 83, 82, 110, 60, 109, 59, - 110, 109, 60, 111, 112, 92, 59, 112, 111, 60, 59, 111, 111, 92, 93, 146, 83, 110, 131, 83, 146, 132, 146, 110, 149, 111, 93, 149, 93, 135, 147, 110, 60, 132, 110, 147, 111, 148, 60, - 134, 111, 149, 134, 148, 111, 133, 147, 60, 148, 133, 60, 18, 134, 149, 18, 149, 135, 18, 135, 17, 19, 148, 134, 19, 134, 18, 20, 148, 19, 21, 147, 133, 20, 21, 133, 20, 133, 148, - 22, 132, 147, 22, 147, 21, 23, 146, 132, 23, 132, 22, 24, 131, 146, 24, 146, 23, 25, 131, 24, 58, 57, 113, 63, 104, 85, 86, 85, 104, 62, 63, 85, 105, 62, 80, 63, 62, 105, 81, 105, - 80, 87, 99, 86, 100, 99, 87, 103, 86, 104, 87, 86, 103, 64, 104, 63, 103, 104, 64, 106, 63, 105, 64, 63, 106, 82, 105, 81, 106, 105, 82, 88, 100, 87, 101, 100, 88, 102, 87, 103, 88, - 87, 102, 65, 103, 64, 102, 103, 65, 107, 64, 106, 65, 64, 107, 83, 106, 82, 107, 106, 83, 83, 145, 107, 128, 88, 102, 129, 102, 65, 128, 102, 129, 131, 145, 83, 142, 65, 107, 129, - 65, 142, 143, 88, 128, 130, 142, 107, 130, 107, 145, 127, 101, 88, 127, 88, 143, 126, 101, 127, 25, 145, 131, 26, 130, 145, 26, 145, 25, 27, 142, 130, 27, 130, 26, 28, 129, 142, 28, - 142, 27, 29, 128, 129, 29, 129, 28, 30, 143, 128, 30, 128, 29, 31, 127, 143, 31, 143, 30, 32, 126, 127, 32, 127, 31, 33, 144, 126, 33, 126, 32, 126, 46, 101, 34, 144, 33 + 85, 86, 49, 86, 99, 49, 101, 47, 100, 34, 125, 144, 35, 125, 34, 125, 46, 144, 46, 47, 101, 47, 48, 100, 122, 121, 53, 56, 55, 3, 47, 46, 37, 49, 50, 85, 85, 50, 84, 48, 39, 49, 46, + 36, 37, 38, 39, 48, 49, 40, 50, 39, 40, 49, 5, 6, 4, 55, 54, 2, 55, 2, 3, 95, 94, 52, 54, 1, 2, 121, 52, 53, 53, 0, 1, 53, 52, 0, 113, 57, 90, 108, 80, 57, 62, 61, 80, 80, 79, 57, + 80, 61, 79, 57, 89, 90, 57, 51, 89, 57, 79, 51, 90, 72, 73, 90, 89, 72, 40, 69, 66, 84, 66, 61, 61, 78, 79, 61, 66, 78, 51, 79, 67, 51, 67, 89, 67, 79, 78, 89, 77, 72, 89, 67, 77, + 72, 77, 94, 94, 68, 52, 94, 77, 68, 66, 69, 78, 41, 69, 40, 67, 78, 70, 67, 70, 77, 70, 78, 69, 77, 71, 68, 77, 70, 71, 71, 45, 0, 69, 42, 70, 69, 41, 42, 71, 70, 44, 70, 43, 44, 44, + 45, 71, 71, 0, 68, 70, 42, 43, 52, 68, 0, 54, 53, 1, 56, 3, 4, 50, 40, 66, 50, 66, 84, 47, 37, 38, 48, 47, 38, 125, 36, 46, 35, 36, 125, 48, 49, 99, 121, 95, 52, 122, 53, 54, 144, + 46, 126, 100, 48, 99, 62, 84, 61, 123, 54, 55, 94, 73, 72, 85, 84, 62, 113, 90, 91, 141, 56, 4, 6, 141, 4, 124, 55, 56, 17, 150, 16, 17, 135, 150, 16, 136, 15, 16, 150, 136, 15, 151, + 14, 15, 136, 151, 14, 137, 13, 14, 151, 137, 13, 152, 12, 13, 137, 152, 12, 138, 11, 12, 152, 138, 11, 153, 10, 11, 138, 153, 10, 139, 9, 10, 153, 139, 9, 140, 8, 9, 139, 140, 8, + 154, 7, 8, 140, 154, 7, 141, 6, 7, 154, 141, 152, 137, 76, 137, 151, 76, 76, 151, 116, 150, 116, 136, 151, 136, 116, 154, 140, 124, 152, 117, 138, 152, 76, 117, 153, 98, 139, 140, + 139, 124, 139, 98, 124, 154, 56, 141, 154, 124, 56, 98, 153, 117, 116, 150, 93, 153, 138, 117, 150, 135, 93, 98, 123, 124, 124, 123, 55, 117, 97, 98, 98, 97, 123, 76, 118, 117, 117, + 118, 97, 116, 75, 76, 76, 75, 118, 93, 115, 116, 116, 115, 75, 93, 92, 115, 97, 122, 123, 123, 122, 54, 118, 96, 97, 97, 96, 122, 75, 119, 118, 118, 119, 96, 115, 74, 75, 75, 74, + 119, 92, 114, 115, 115, 114, 74, 92, 91, 114, 96, 121, 122, 119, 95, 96, 96, 95, 121, 74, 120, 119, 119, 120, 95, 114, 73, 74, 74, 73, 120, 73, 114, 90, 114, 91, 90, 120, 73, 94, + 120, 94, 95, 58, 57, 113, 25, 131, 24, 24, 146, 23, 24, 131, 146, 23, 132, 22, 23, 146, 132, 22, 147, 21, 22, 132, 147, 20, 133, 148, 20, 21, 133, 21, 147, 133, 20, 148, 19, 19, 134, + 18, 19, 148, 134, 18, 135, 17, 18, 149, 135, 18, 134, 149, 148, 133, 60, 133, 147, 60, 134, 148, 111, 134, 111, 149, 111, 148, 60, 132, 110, 147, 147, 110, 60, 149, 93, 135, 149, + 111, 93, 132, 146, 110, 131, 83, 146, 146, 83, 110, 111, 92, 93, 60, 59, 111, 59, 112, 111, 111, 112, 92, 110, 109, 60, 60, 109, 59, 83, 82, 110, 110, 82, 109, 92, 112, 91, 112, 113, + 91, 59, 58, 112, 112, 58, 113, 109, 108, 59, 59, 108, 58, 82, 81, 109, 109, 81, 108, 58, 108, 57, 81, 80, 108, 34, 144, 33, 126, 46, 101, 33, 126, 32, 33, 144, 126, 32, 127, 31, 32, + 126, 127, 31, 143, 30, 31, 127, 143, 30, 128, 29, 30, 143, 128, 29, 129, 28, 29, 128, 129, 28, 142, 27, 28, 129, 142, 27, 130, 26, 27, 142, 130, 26, 145, 25, 26, 130, 145, 25, 145, + 131, 126, 101, 127, 127, 88, 143, 127, 101, 88, 130, 107, 145, 130, 142, 107, 143, 88, 128, 129, 65, 142, 142, 65, 107, 131, 145, 83, 128, 102, 129, 129, 102, 65, 128, 88, 102, 83, + 145, 107, 107, 106, 83, 83, 106, 82, 65, 64, 107, 107, 64, 106, 102, 103, 65, 65, 103, 64, 88, 87, 102, 102, 87, 103, 101, 100, 88, 88, 100, 87, 106, 105, 82, 82, 105, 81, 64, 63, + 106, 106, 63, 105, 103, 104, 64, 64, 104, 63, 87, 86, 103, 103, 86, 104, 100, 99, 87, 87, 99, 86, 81, 105, 80, 63, 62, 105, 105, 62, 80, 62, 63, 85, 86, 85, 104, 63, 104, 85 ], "vertices": [ 4, 39, 58.43, 20.31, 0.00012, 40, 36.09, 20.31, 0.00054, 41, 13.17, 20.31, 0.12631, 32, 43.2, 34, 0.87302, 3, 40, 39.33, 12.22, 0.00019, 41, 16.41, 12.22, 0.19743, 32, 51.06, 37.76, @@ -9034,218 +23391,64 @@ 0.69014, 4, 39, -9.97, 11.91, 0.26477, 40, -32.31, 11.91, 0.00971, 41, -55.23, 11.91, 0.00027, 32, 56.04, -33.7, 0.72525, 4, 39, -6.21, 19.66, 0.19881, 40, -28.55, 19.66, 0.00959, 41, -51.47, 19.66, 0.00132, 32, 48.05, -30.46, 0.79028, 4, 39, 24.46, 19.97, 0.10712, 40, 2.12, 19.97, 0.11704, 41, -20.8, 19.97, 0.11672, 32, 45.75, 0.12, 0.65912, 4, 39, 53.97, 20.27, 0.00116, 40, 31.63, 20.27, 0.00313, 41, 8.71, 20.27, 0.2148, 32, 43.53, 29.55, 0.7809, 4, 39, 57.02, 12.2, 0.0001, 40, 34.68, 12.2, 0.00083, 41, 11.76, 12.2, 0.29942, 32, - 51.38, 33.12, 0.69965, 3, 40, 36.75, 5.8, 0.00034, 41, 13.82, 5.8, 0.378, 32, 57.63, 35.6, 0.62166, 3, 40, 38.1, 1.08, 0.00022, 41, 15.18, 1.08, 0.45653, 32, 62.25, 37.26, 0.54325, - 3, 40, 39.36, -3.36, 0.00015, 41, 16.43, -3.36, 0.53433, 32, 66.61, 38.8, 0.46552, 4, 39, 23.97, 12.06, 0.12565, 40, 1.63, 12.06, 0.24275, 41, -21.29, 12.06, 0.14114, 32, 53.68, - 0.15, 0.49046, 4, 39, 23.54, 6.58, 0.11007, 40, 1.2, 6.58, 0.47217, 41, -21.72, 6.58, 0.12893, 32, 59.17, 0.08, 0.28883, 4, 39, 23.28, 1.22, 0.10884, 40, 0.94, 1.22, 0.60558, 41, - -21.98, 1.22, 0.12698, 32, 64.53, 0.17, 0.1586, 4, 39, 23.11, -3.14, 0.10666, 40, 0.77, -3.14, 0.70334, 41, -22.15, -3.14, 0.12133, 32, 68.89, 0.28, 0.06866, 4, 39, 6.87, 19.8, - 0.29773, 40, -15.47, 19.8, 0.06022, 41, -38.39, 19.8, 0.01488, 32, 47.07, -17.41, 0.62717, 4, 39, 3.75, 11.97, 0.44072, 40, -18.59, 11.97, 0.09602, 41, -41.51, 11.97, 0.01064, 32, - 55.08, -20.02, 0.45261, 4, 39, 1.91, 7.05, 0.66419, 40, -20.42, 7.05, 0.11803, 41, -43.35, 7.05, 0.002, 32, 60.11, -21.53, 0.21579, 4, 39, 0.03, 1.31, 0.77187, 40, -22.31, 1.31, - 0.12352, 41, -45.23, 1.31, 0.00043, 32, 65.96, -23.04, 0.10418, 4, 39, -1.27, -2.99, 0.84303, 40, -23.61, -2.99, 0.11246, 41, -46.53, -2.99, 0.00018, 32, 70.34, -24.05, 0.04432, 4, - 39, -1.8, 26.91, 0.12744, 40, -24.14, 26.91, 0.00959, 41, -47.06, 26.91, 0.0076, 32, 40.54, -26.53, 0.85537, 4, 39, 24.96, 27.56, 0.0719, 40, 2.62, 27.56, 0.03639, 41, -20.3, 27.56, - 0.07572, 32, 38.14, 0.13, 0.81598, 4, 39, 50.76, 27.7, 0.00702, 40, 28.42, 27.7, 0.00523, 41, 5.5, 27.7, 0.131, 32, 36.32, 25.87, 0.85675, 4, 39, 3.83, 36.15, 0.04791, 40, -18.51, - 36.15, 0.00352, 41, -41.43, 36.15, 0.00803, 32, 30.95, -21.51, 0.94054, 4, 39, 25.65, 37.95, 0.02662, 40, 3.31, 37.95, 0.00775, 41, -19.61, 37.95, 0.02767, 32, 27.73, 0.14, 0.93795, - 4, 39, 46.64, 37.25, 0.00753, 40, 24.3, 37.25, 0.00227, 41, 1.38, 37.25, 0.04846, 32, 27.06, 21.14, 0.94174, 4, 39, 41.75, 20.15, 0.01306, 40, 19.41, 20.15, 0.04509, 41, -3.51, - 20.15, 0.32134, 32, 44.45, 17.37, 0.62052, 4, 39, 43.25, 12.14, 0.00895, 40, 20.91, 12.14, 0.07841, 41, -2.01, 12.14, 0.49568, 32, 52.34, 19.39, 0.41696, 4, 39, 44.35, 6.12, 0.0015, - 40, 22.01, 6.12, 0.09572, 41, -0.91, 6.12, 0.67014, 32, 58.27, 20.88, 0.23264, 4, 39, 45.08, 1.14, 0.00025, 40, 22.74, 1.14, 0.108, 41, -0.18, 1.14, 0.76841, 32, 63.2, 21.93, - 0.12334, 4, 39, 45.58, -3.27, 0.0001, 40, 23.24, -3.27, 0.10937, 41, 0.32, -3.27, 0.83473, 32, 67.56, 22.71, 0.0558, 4, 39, 40.33, 27.64, 0.02381, 40, 18, 27.64, 0.02132, 41, -4.93, - 27.64, 0.16866, 32, 37.06, 15.47, 0.78621, 4, 39, 9.71, 27.19, 0.16236, 40, -12.63, 27.19, 0.02827, 41, -35.55, 27.19, 0.02548, 32, 39.51, -15.06, 0.78388, 4, 39, 15.01, 19.88, - 0.23124, 40, -7.33, 19.88, 0.11759, 41, -30.25, 19.88, 0.04679, 32, 46.46, -9.29, 0.60438, 4, 39, 13.78, 12.01, 0.29354, 40, -8.56, 12.01, 0.19873, 41, -31.48, 12.01, 0.04427, 32, - 54.39, -10.01, 0.46346, 4, 39, 12.95, 6.81, 0.37869, 40, -9.39, 6.81, 0.34588, 41, -32.31, 6.81, 0.01968, 32, 59.63, -10.5, 0.25575, 4, 39, 11.95, 1.27, 0.42861, 40, -10.39, 1.27, - 0.42317, 41, -33.31, 1.27, 0.01297, 32, 65.23, -11.14, 0.13524, 4, 39, 11.29, -3.07, 0.46725, 40, -11.05, -3.07, 0.46538, 41, -33.97, -3.07, 0.0097, 32, 69.59, -11.51, 0.05768, 4, - 39, -0.59, 19.72, 0.32338, 40, -22.92, 19.72, 0.02881, 41, -45.85, 19.72, 0.003, 32, 47.63, -24.85, 0.64481, 4, 39, -3.82, 11.93, 0.4391, 40, -26.16, 11.93, 0.03345, 41, -49.08, - 11.93, 0.00177, 32, 55.61, -27.57, 0.52567, 4, 39, -5.89, 7.22, 0.65491, 40, -28.23, 7.22, 0.02015, 41, -51.15, 7.22, 0.00017, 32, 60.45, -29.33, 0.32476, 4, 39, -8.13, 1.34, - 0.75275, 40, -30.47, 1.34, 0.01396, 41, -53.39, 1.34, 1e-05, 32, 66.46, -31.18, 0.23328, 3, 39, -9.63, -2.94, 0.80478, 40, -31.96, -2.94, 0.00944, 32, 70.83, -32.39, 0.18578, 4, 39, - 33.3, 20.06, 0.04166, 40, 10.96, 20.06, 0.10286, 41, -11.96, 20.06, 0.24857, 32, 45.08, 8.94, 0.60691, 4, 39, 33.97, 12.1, 0.03817, 40, 11.63, 12.1, 0.17811, 41, -11.29, 12.1, - 0.32257, 32, 52.98, 10.13, 0.46115, 4, 39, 34.3, 6.34, 0.01531, 40, 11.97, 6.34, 0.31162, 41, -10.96, 6.34, 0.40881, 32, 58.71, 10.84, 0.26426, 4, 39, 34.72, 1.18, 0.00955, 40, - 12.39, 1.18, 0.39036, 41, -10.54, 1.18, 0.4561, 32, 63.83, 11.59, 0.14399, 4, 39, 34.8, -3.2, 0.00731, 40, 12.46, -3.2, 0.44195, 41, -10.46, -3.2, 0.48699, 32, 68.2, 11.96, 0.06375, - 4, 39, 48.21, 20.21, 0.00241, 40, 25.88, 20.21, 0.01421, 41, 2.95, 20.21, 0.36275, 32, 43.96, 23.82, 0.62063, 4, 39, 50.54, 12.17, 0.00034, 40, 28.2, 12.17, 0.01068, 41, 5.28, 12.17, - 0.5453, 32, 51.83, 26.66, 0.44368, 4, 39, 52.52, 5.95, 2e-05, 40, 30.19, 5.95, 0.00999, 41, 7.26, 5.95, 0.66888, 32, 57.92, 29.04, 0.32111, 3, 40, 31.52, 1.11, 0.01011, 41, 8.6, - 1.11, 0.76268, 32, 62.66, 30.7, 0.22721, 3, 40, 32.61, -3.32, 0.00863, 41, 9.68, -3.32, 0.83296, 32, 67.01, 32.06, 0.15841, 4, 39, -9.21, 7.29, 0.52586, 40, -31.55, 7.29, 0.0057, 41, - -54.47, 7.29, 1e-05, 32, 60.59, -32.65, 0.46842, 3, 39, -11.3, 1.36, 0.56698, 40, -33.64, 1.36, 0.00311, 32, 66.65, -34.34, 0.42991, 3, 39, -12.66, -2.93, 0.60013, 40, -35, -2.93, - 0.00167, 32, 71.01, -35.42, 0.39821, 4, 39, -5.46, -2.97, 0.89102, 40, -27.8, -2.97, 0.03888, 41, -50.72, -2.97, 1e-05, 32, 70.59, -28.24, 0.07008, 4, 39, -4.18, 1.33, 0.83362, 40, - -26.52, 1.33, 0.04645, 41, -49.44, 1.33, 3e-05, 32, 66.21, -27.24, 0.1199, 4, 39, -2.26, 7.14, 0.75973, 40, -24.6, 7.14, 0.05134, 41, -47.52, 7.14, 0.00026, 32, 60.29, -25.7, - 0.18867, 4, 39, 7.35, 6.93, 0.57235, 40, -14.98, 6.93, 0.23863, 41, -37.91, 6.93, 0.00435, 32, 59.87, -16.09, 0.18467, 4, 39, 5.9, 1.29, 0.63011, 40, -16.44, 1.29, 0.25936, 41, - -39.36, 1.29, 0.00243, 32, 65.6, -17.18, 0.1081, 4, 39, 4.86, -3.03, 0.68809, 40, -17.48, -3.03, 0.26358, 41, -40.4, -3.03, 0.00168, 32, 69.98, -17.93, 0.04665, 4, 39, 17.76, 6.7, - 0.22941, 40, -4.58, 6.7, 0.4879, 41, -27.5, 6.7, 0.05094, 32, 59.42, -5.7, 0.23175, 4, 39, 17.11, 1.25, 0.24296, 40, -5.23, 1.25, 0.56856, 41, -28.15, 1.25, 0.04581, 32, 64.91, - -5.99, 0.14267, 4, 39, 16.71, -3.1, 0.25552, 40, -5.62, -3.1, 0.64168, 41, -28.55, -3.1, 0.03992, 32, 69.27, -6.1, 0.06288, 4, 39, 28.55, -3.17, 0.03276, 40, 6.22, -3.17, 0.62363, - 41, -16.71, -3.17, 0.27658, 32, 68.57, 5.72, 0.06703, 4, 39, 28.55, 1.2, 0.0367, 40, 6.21, 1.21, 0.54514, 41, -16.71, 1.21, 0.26974, 32, 64.21, 5.43, 0.14843, 4, 39, 28.71, 6.47, - 0.04075, 40, 6.37, 6.47, 0.46337, 41, -16.55, 6.47, 0.25797, 32, 58.95, 5.25, 0.23791, 4, 39, 39.28, 6.23, 0.00305, 40, 16.94, 6.24, 0.20572, 41, -5.98, 6.24, 0.59307, 32, 58.49, - 15.81, 0.19817, 4, 39, 39.51, 1.16, 0.00156, 40, 17.17, 1.16, 0.23228, 41, -5.75, 1.16, 0.64631, 32, 63.54, 16.37, 0.11984, 4, 39, 40.07, -3.24, 0.00112, 40, 17.74, -3.24, 0.25061, - 41, -5.19, -3.24, 0.69415, 32, 67.89, 17.22, 0.05412, 4, 39, 50.23, -3.29, 0, 40, 27.89, -3.29, 0.036, 41, 4.97, -3.29, 0.88144, 32, 67.29, 27.36, 0.08255, 4, 39, 49.51, 1.13, 2e-05, - 40, 27.17, 1.13, 0.03826, 41, 4.25, 1.13, 0.81357, 32, 62.92, 26.35, 0.14816, 4, 39, 48.55, 6.03, 0.00027, 40, 26.22, 6.03, 0.03577, 41, 3.29, 6.03, 0.72045, 32, 58.09, 25.08, - 0.24351, 4, 39, 47.11, 12.16, 0.00156, 40, 24.77, 12.16, 0.03311, 41, 1.85, 12.16, 0.61234, 32, 52.07, 23.24, 0.35299, 4, 39, 53.99, 12.19, 1e-05, 40, 31.66, 12.19, 0.00266, 41, - 8.73, 12.19, 0.47035, 32, 51.59, 30.11, 0.52698, 3, 40, 33.02, 5.88, 0.00213, 41, 10.1, 5.88, 0.54797, 32, 57.79, 31.88, 0.4499, 3, 40, 34.54, 1.1, 0.0018, 41, 11.62, 1.1, 0.63247, - 32, 62.47, 33.7, 0.36573, 3, 40, 35.58, -3.34, 0.00152, 41, 12.66, -3.34, 0.71351, 32, 66.83, 35.03, 0.28497, 3, 39, -17.72, -6.71, 0.31251, 40, -40.05, -6.71, 1e-05, 32, 75.11, - -40.22, 0.68748, 3, 39, -13.83, -6.56, 0.64755, 40, -36.17, -6.56, 0.00038, 32, 74.72, -36.36, 0.35207, 3, 39, -10.89, -6.57, 0.83546, 40, -33.23, -6.57, 0.00245, 32, 74.53, -33.42, - 0.1621, 3, 39, -6.58, -6.39, 0.9505, 40, -28.91, -6.39, 0.02598, 32, 74.07, -29.13, 0.02352, 4, 39, -2.51, -6.41, 0.9185, 40, -24.85, -6.41, 0.06986, 41, -47.77, -6.41, 1e-05, 32, - 73.83, -25.07, 0.01163, 4, 39, 3.97, -6.54, 0.7539, 40, -18.37, -6.54, 0.23416, 41, -41.29, -6.54, 0.00019, 32, 73.54, -18.6, 0.01175, 4, 39, 10.73, -6.3, 0.4945, 40, -11.61, -6.29, - 0.48778, 41, -34.53, -6.29, 0.00242, 32, 72.85, -11.87, 0.01529, 4, 39, 16.42, -6.31, 0.24467, 40, -5.92, -6.31, 0.71967, 41, -28.84, -6.31, 0.01969, 32, 72.5, -6.18, 0.01597, 4, 39, - 22.88, -6.46, 0.08074, 40, 0.54, -6.46, 0.81091, 41, -22.38, -6.46, 0.09131, 32, 72.22, 0.27, 0.01704, 4, 39, 28.51, -6.42, 0.01543, 40, 6.17, -6.42, 0.70591, 41, -16.75, -6.42, - 0.26031, 32, 71.82, 5.89, 0.01836, 4, 39, 34.97, -6.29, 0.00164, 40, 12.64, -6.29, 0.47309, 41, -10.29, -6.29, 0.50689, 32, 71.27, 12.33, 0.01837, 4, 39, 40.42, -6.47, 0.0001, 40, - 18.08, -6.47, 0.23958, 41, -4.84, -6.47, 0.7461, 32, 71.1, 17.78, 0.01421, 4, 39, 45.89, -6.5, 0, 40, 23.56, -6.5, 0.08431, 41, 0.63, -6.5, 0.9025, 32, 70.76, 23.24, 0.01319, 3, 40, - 28.36, -6.37, 0.01867, 41, 5.43, -6.37, 0.94991, 32, 70.33, 28.02, 0.03142, 3, 40, 33.31, -6.41, 0.00244, 41, 10.39, -6.41, 0.88788, 32, 70.05, 32.97, 0.10968, 3, 40, 36.23, -6.46, - 0.00046, 41, 13.31, -6.46, 0.80558, 32, 69.91, 35.88, 0.19395, 3, 40, 40.12, -6.31, 1e-05, 41, 17.2, -6.31, 0.61334, 32, 69.5, 39.76, 0.38665, 4, 39, 0.4, -6.47, 0.86555, 40, -21.94, - -6.47, 0.12959, 41, -44.86, -6.47, 1e-05, 32, 73.7, -22.16, 0.00485, 3, 39, -9.01, -6.49, 0.93616, 40, -31.35, -6.49, 0.00716, 32, 74.33, -31.55, 0.05668, 3, 39, -16.19, -6.65, - 0.44814, 40, -38.53, -6.65, 3e-05, 32, 74.96, -38.7, 0.55184, 4, 39, 7.48, -6.41, 0.63866, 40, -14.86, -6.41, 0.354, 41, -37.78, -6.41, 0.00037, 32, 73.18, -15.1, 0.00698, 4, 39, - 13.4, -6.3, 0.36468, 40, -8.94, -6.3, 0.62161, 41, -31.86, -6.3, 0.00581, 32, 72.69, -9.2, 0.0079, 4, 39, 19.68, -6.38, 0.14684, 40, -2.65, -6.38, 0.80383, 41, -25.58, -6.38, - 0.04176, 32, 72.36, -2.92, 0.00757, 4, 39, 25.54, -6.44, 0.03499, 40, 3.2, -6.44, 0.79745, 41, -19.72, -6.44, 0.15898, 32, 72.03, 2.92, 0.00858, 4, 39, 31.96, -6.35, 0.00417, 40, - 9.62, -6.35, 0.60634, 41, -13.3, -6.35, 0.37927, 32, 71.53, 9.32, 0.01022, 4, 39, 37.62, -6.38, 0.00021, 40, 15.28, -6.38, 0.35157, 41, -7.64, -6.38, 0.63918, 32, 71.18, 14.97, - 0.00904, 4, 39, 43.32, -6.48, 1e-05, 40, 20.98, -6.48, 0.14688, 41, -1.94, -6.48, 0.84692, 32, 70.92, 20.67, 0.00619, 3, 40, 25.81, -6.44, 0.03919, 41, 2.89, -6.44, 0.95006, 32, - 70.56, 25.48, 0.01074, 3, 40, 30.92, -6.39, 0.00591, 41, 7.99, -6.39, 0.9433, 32, 70.18, 30.58, 0.05079, 3, 40, 38.04, -6.39, 5e-05, 41, 15.12, -6.39, 0.72615, 32, 69.72, 37.69, - 0.2738 - ], - "hull": 46, - "edges": [ - 80, 82, 90, 0, 10, 8, 70, 72, 72, 74, 74, 76, 4, 6, 6, 8, 76, 78, 78, 80, 4, 2, 2, 0, 72, 92, 74, 94, 92, 94, 76, 96, 94, 96, 78, 98, 96, 98, 80, 100, 98, 100, 82, 84, 84, 86, 86, - 88, 88, 90, 0, 104, 2, 106, 104, 106, 4, 108, 106, 108, 6, 110, 108, 110, 8, 112, 110, 112, 10, 12, 102, 114, 114, 116, 116, 118, 118, 120, 122, 124, 124, 126, 126, 128, 128, 130, - 132, 100, 134, 102, 136, 104, 84, 138, 138, 132, 86, 140, 140, 134, 138, 140, 88, 142, 142, 136, 140, 142, 144, 146, 146, 148, 148, 150, 150, 152, 134, 154, 154, 136, 144, 154, 132, - 156, 156, 134, 122, 156, 102, 158, 158, 122, 114, 160, 160, 124, 158, 160, 160, 162, 162, 164, 164, 166, 100, 168, 168, 122, 98, 170, 170, 124, 168, 170, 170, 172, 172, 174, 174, - 176, 102, 178, 178, 144, 114, 180, 180, 146, 178, 180, 180, 182, 182, 184, 184, 186, 104, 188, 188, 144, 188, 190, 190, 192, 192, 194, 194, 196, 96, 198, 198, 172, 94, 200, 200, 174, - 198, 200, 92, 202, 202, 176, 200, 202, 64, 66, 58, 60, 130, 204, 204, 176, 128, 206, 206, 174, 204, 206, 126, 208, 208, 172, 206, 208, 126, 210, 210, 162, 128, 212, 212, 164, 210, - 212, 130, 214, 214, 166, 212, 214, 116, 216, 216, 162, 118, 218, 218, 164, 216, 218, 120, 220, 220, 166, 218, 220, 120, 222, 222, 186, 118, 224, 224, 184, 222, 224, 116, 226, 226, - 182, 224, 226, 148, 228, 228, 182, 150, 230, 230, 184, 228, 230, 152, 232, 232, 186, 230, 232, 152, 234, 234, 196, 150, 236, 236, 194, 234, 236, 148, 238, 238, 192, 236, 238, 146, - 240, 240, 190, 238, 240, 106, 242, 242, 190, 108, 244, 244, 192, 242, 244, 110, 246, 246, 194, 244, 246, 112, 248, 248, 196, 246, 248, 16, 18, 70, 250, 250, 92, 66, 252, 252, 202, - 64, 254, 254, 176, 252, 254, 60, 256, 256, 204, 58, 258, 258, 130, 256, 258, 54, 260, 260, 214, 50, 262, 262, 166, 46, 264, 264, 220, 42, 266, 266, 120, 38, 268, 268, 222, 34, 270, - 270, 186, 30, 272, 272, 232, 26, 274, 274, 152, 22, 276, 276, 234, 18, 278, 278, 196, 16, 280, 280, 248, 278, 280, 12, 282, 282, 112, 258, 284, 284, 260, 54, 56, 56, 58, 284, 56, - 254, 286, 286, 256, 60, 62, 62, 64, 286, 62, 250, 288, 288, 252, 66, 68, 68, 70, 288, 68, 260, 290, 290, 262, 50, 52, 52, 54, 290, 52, 262, 292, 292, 264, 46, 48, 48, 50, 292, 48, - 264, 294, 294, 266, 42, 44, 44, 46, 294, 44, 266, 296, 296, 268, 38, 40, 40, 42, 296, 40, 268, 298, 298, 270, 34, 36, 36, 38, 298, 36, 270, 300, 300, 272, 30, 32, 32, 34, 300, 32, - 272, 302, 302, 274, 26, 28, 28, 30, 302, 28, 274, 304, 304, 276, 22, 24, 24, 26, 304, 24, 276, 306, 306, 278, 18, 20, 20, 22, 306, 20, 280, 308, 308, 282, 12, 14, 14, 16, 308, 14 - ], - "width": 88, - "height": 80, - "path": "summer-a.ear-left-bubble" - } - }, - "ear-left-bubble-02": { - "ear-left-bubble": { - "type": "mesh", - "uvs": [ - 0.87714, 0.57697, 0.91393, 0.67811, 0.94364, 0.75977, 0.96133, 0.8176, 0.97838, 0.87333, 1, 0.94398, 0.93104, 0.94427, 0.90524, 0.94438, 0.88494, 0.94447, 0.85255, 0.94461, 0.82176, - 0.94474, 0.79396, 0.94486, 0.76382, 0.94499, 0.73767, 0.9451, 0.70713, 0.94523, 0.67579, 0.94536, 0.64108, 0.94551, 0.61244, 0.94564, 0.5758, 0.94579, 0.5367, 0.94596, 0.50394, - 0.9461, 0.47091, 0.94624, 0.435, 0.94639, 0.39675, 0.94656, 0.36198, 0.94671, 0.32916, 0.94685, 0.29359, 0.947, 0.25022, 0.94718, 0.20956, 0.94736, 0.17261, 0.94751, 0.12749, - 0.94771, 0.1012, 0.94782, 0.07834, 0.94792, 0.0457, 0.94806, 0.02123, 0.94816, 0, 0.94825, 0, 0.86703, 0, 0.81359, 0, 0.73715, 0.02817, 0.68242, 0.07791, 0.5858, 0.37947, 0, 0.46651, - 0, 0.5261, 0, 0.59994, 0, 0.66726, 0, 0.02864, 0.86721, 0.04805, 0.81379, 0.07275, 0.7389, 0.0999, 0.68207, 0.14259, 0.58508, 0.49108, 0.58123, 0.82646, 0.57753, 0.86109, 0.67837, - 0.88458, 0.75835, 0.90003, 0.81734, 0.91424, 0.87292, 0.48557, 0.6802, 0.48069, 0.74867, 0.47772, 0.81558, 0.4758, 0.87009, 0.29126, 0.58344, 0.25576, 0.68132, 0.23492, 0.74278, - 0.2135, 0.81448, 0.19874, 0.86831, 0.19271, 0.49455, 0.4968, 0.48641, 0.79002, 0.48462, 0.25666, 0.37903, 0.50462, 0.35653, 0.74321, 0.36527, 0.68757, 0.57906, 0.70466, 0.67913, - 0.71716, 0.75434, 0.72541, 0.81661, 0.73109, 0.87174, 0.67152, 0.48534, 0.32349, 0.49105, 0.38378, 0.58242, 0.36974, 0.68076, 0.36036, 0.74579, 0.34895, 0.81504, 0.34148, 0.86923, - 0.20652, 0.58437, 0.16979, 0.68173, 0.1462, 0.74066, 0.12077, 0.81409, 0.10379, 0.8677, 0.59158, 0.58012, 0.59921, 0.67965, 0.60299, 0.7516, 0.60776, 0.81612, 0.60866, 0.87095, - 0.76107, 0.57825, 0.78751, 0.67873, 0.81003, 0.75656, 0.82525, 0.81703, 0.83754, 0.87243, 0.10852, 0.73975, 0.08479, 0.81394, 0.06934, 0.86747, 0.15113, 0.868, 0.1657, 0.81428, - 0.18746, 0.74164, 0.29675, 0.74426, 0.28022, 0.81476, 0.26841, 0.86876, 0.41495, 0.7471, 0.40761, 0.81529, 0.4031, 0.86963, 0.53765, 0.87049, 0.53762, 0.81583, 0.53944, 0.75008, - 0.6595, 0.75296, 0.66217, 0.81635, 0.66857, 0.87134, 0.78397, 0.87208, 0.7758, 0.81682, 0.76492, 0.75548, 0.74852, 0.67892, 0.82675, 0.67854, 0.84222, 0.75734, 0.8595, 0.81717, - 0.87132, 0.87264, 0.01186, 0.9147, 0.056, 0.91293, 0.08943, 0.91297, 0.13846, 0.91074, 0.18465, 0.91102, 0.25824, 0.91262, 0.33507, 0.90958, 0.39978, 0.90977, 0.47313, 0.91161, - 0.53714, 0.91117, 0.61061, 0.90948, 0.67252, 0.91178, 0.73471, 0.91209, 0.78925, 0.91054, 0.84557, 0.91105, 0.87872, 0.91169, 0.92292, 0.90979, 0.21772, 0.91173, 0.11081, 0.912, - 0.02923, 0.91401, 0.29821, 0.91104, 0.36548, 0.90967, 0.43685, 0.9107, 0.50336, 0.9114, 0.57635, 0.91027, 0.64066, 0.9106, 0.70543, 0.91195, 0.76031, 0.91136, 0.81833, 0.9108, - 0.89934, 0.9108 - ], - "triangles": [ - 46, 36, 37, 125, 36, 46, 46, 47, 101, 101, 47, 100, 144, 46, 126, 125, 46, 144, 47, 46, 37, 34, 125, 144, 35, 125, 34, 35, 36, 125, 56, 55, 3, 56, 3, 4, 5, 6, 4, 123, 54, 55, 55, 54, - 2, 55, 2, 3, 85, 86, 49, 86, 99, 49, 47, 48, 100, 122, 121, 53, 49, 50, 85, 85, 50, 84, 48, 39, 49, 38, 39, 48, 49, 40, 50, 39, 40, 49, 95, 94, 52, 54, 1, 2, 121, 52, 53, 53, 0, 1, - 53, 52, 0, 113, 57, 90, 108, 80, 57, 62, 61, 80, 80, 79, 57, 80, 61, 79, 57, 89, 90, 57, 51, 89, 57, 79, 51, 90, 72, 73, 90, 89, 72, 40, 69, 66, 84, 66, 61, 61, 78, 79, 61, 66, 78, - 51, 79, 67, 51, 67, 89, 67, 79, 78, 89, 77, 72, 89, 67, 77, 72, 77, 94, 94, 68, 52, 94, 77, 68, 66, 69, 78, 41, 69, 40, 67, 78, 70, 67, 70, 77, 70, 78, 69, 77, 71, 68, 77, 70, 71, - 71, 45, 0, 69, 42, 70, 69, 41, 42, 71, 70, 44, 70, 43, 44, 44, 45, 71, 71, 0, 68, 70, 42, 43, 52, 68, 0, 54, 53, 1, 50, 40, 66, 50, 66, 84, 47, 37, 38, 48, 47, 38, 48, 49, 99, 121, - 95, 52, 122, 53, 54, 100, 48, 99, 62, 84, 61, 94, 73, 72, 85, 84, 62, 113, 90, 91, 141, 56, 4, 6, 141, 4, 124, 55, 56, 17, 150, 16, 17, 135, 150, 16, 136, 15, 16, 150, 136, 15, 151, - 14, 15, 136, 151, 14, 137, 13, 14, 151, 137, 13, 152, 12, 13, 137, 152, 12, 138, 11, 12, 152, 138, 11, 153, 10, 11, 138, 153, 10, 139, 9, 10, 153, 139, 9, 140, 8, 9, 139, 140, 8, - 154, 7, 8, 140, 154, 7, 141, 6, 7, 154, 141, 152, 137, 76, 137, 151, 76, 76, 151, 116, 150, 116, 136, 151, 136, 116, 154, 140, 124, 152, 117, 138, 152, 76, 117, 153, 98, 139, 140, - 139, 124, 139, 98, 124, 154, 56, 141, 154, 124, 56, 98, 153, 117, 116, 150, 93, 153, 138, 117, 150, 135, 93, 98, 123, 124, 124, 123, 55, 117, 97, 98, 98, 97, 123, 76, 118, 117, 117, - 118, 97, 116, 75, 76, 76, 75, 118, 93, 115, 116, 116, 115, 75, 93, 92, 115, 97, 122, 123, 123, 122, 54, 118, 96, 97, 97, 96, 122, 75, 119, 118, 118, 119, 96, 115, 74, 75, 75, 74, - 119, 92, 114, 115, 115, 114, 74, 92, 91, 114, 96, 121, 122, 119, 95, 96, 96, 95, 121, 74, 120, 119, 119, 120, 95, 114, 73, 74, 74, 73, 120, 73, 114, 90, 114, 91, 90, 120, 73, 94, - 120, 94, 95, 58, 57, 113, 25, 131, 24, 24, 146, 23, 24, 131, 146, 23, 132, 22, 23, 146, 132, 22, 147, 21, 22, 132, 147, 20, 133, 148, 20, 21, 133, 21, 147, 133, 20, 148, 19, 19, 134, - 18, 19, 148, 134, 18, 135, 17, 18, 149, 135, 18, 134, 149, 148, 133, 60, 133, 147, 60, 134, 148, 111, 134, 111, 149, 111, 148, 60, 132, 110, 147, 147, 110, 60, 149, 93, 135, 149, - 111, 93, 132, 146, 110, 131, 83, 146, 146, 83, 110, 111, 92, 93, 60, 59, 111, 59, 112, 111, 111, 112, 92, 110, 109, 60, 60, 109, 59, 83, 82, 110, 110, 82, 109, 92, 112, 91, 112, 113, - 91, 59, 58, 112, 112, 58, 113, 109, 108, 59, 59, 108, 58, 82, 81, 109, 109, 81, 108, 58, 108, 57, 81, 80, 108, 34, 144, 33, 126, 46, 101, 33, 126, 32, 33, 144, 126, 32, 127, 31, 32, - 126, 127, 31, 143, 30, 31, 127, 143, 30, 128, 29, 30, 143, 128, 29, 129, 28, 29, 128, 129, 28, 142, 27, 28, 129, 142, 27, 130, 26, 27, 142, 130, 26, 145, 25, 26, 130, 145, 25, 145, - 131, 126, 101, 127, 127, 88, 143, 127, 101, 88, 130, 107, 145, 130, 142, 107, 143, 88, 128, 129, 65, 142, 142, 65, 107, 131, 145, 83, 128, 102, 129, 129, 102, 65, 128, 88, 102, 83, - 145, 107, 107, 106, 83, 83, 106, 82, 65, 64, 107, 107, 64, 106, 102, 103, 65, 65, 103, 64, 88, 87, 102, 102, 87, 103, 101, 100, 88, 88, 100, 87, 106, 105, 82, 82, 105, 81, 64, 63, - 106, 106, 63, 105, 103, 104, 64, 64, 104, 63, 87, 86, 103, 103, 86, 104, 100, 99, 87, 87, 99, 86, 81, 105, 80, 63, 62, 105, 105, 62, 80, 62, 63, 85, 86, 85, 104, 63, 104, 85 - ], - "vertices": [ - 4, 47, 58.43, 20.31, 0.00012, 48, 36.09, 20.31, 0.00054, 49, 13.17, 20.31, 0.12631, 46, 43.2, 34, 0.87302, 3, 48, 39.33, 12.22, 0.00019, 49, 16.41, 12.22, 0.19743, 46, 51.06, 37.76, - 0.80237, 3, 48, 41.94, 5.69, 6e-05, 49, 19.02, 5.69, 0.26715, 46, 57.41, 40.79, 0.73278, 3, 48, 43.5, 1.06, 1e-05, 49, 20.58, 1.06, 0.33542, 46, 61.92, 42.65, 0.66457, 3, 48, 45, - -3.4, 1e-05, 49, 22.08, -3.4, 0.40033, 46, 66.27, 44.44, 0.59966, 3, 48, 46.9, -9.05, 0, 49, 23.98, -9.05, 0.45012, 46, 71.79, 46.7, 0.54988, 3, 48, 40.83, -9.07, 0, 49, 17.91, - -9.07, 0.5829, 46, 72.21, 40.65, 0.4171, 3, 48, 38.56, -9.08, 4e-05, 49, 15.64, -9.08, 0.72131, 46, 72.37, 38.38, 0.27865, 3, 48, 36.78, -9.09, 0.00031, 49, 13.86, -9.09, 0.8264, 46, - 72.49, 36.6, 0.17329, 3, 48, 33.93, -9.1, 0.00157, 49, 11, -9.1, 0.90359, 46, 72.69, 33.76, 0.09484, 3, 48, 31.22, -9.11, 0.00537, 49, 8.3, -9.11, 0.94975, 46, 72.87, 31.05, 0.04488, - 3, 48, 28.77, -9.12, 0.01601, 49, 5.85, -9.12, 0.96404, 46, 73.04, 28.61, 0.01996, 3, 48, 26.12, -9.13, 0.03803, 49, 3.2, -9.13, 0.95562, 46, 73.22, 25.97, 0.00635, 3, 48, 23.82, - -9.14, 0.08031, 49, 0.9, -9.14, 0.91597, 46, 73.38, 23.67, 0.00372, 4, 47, 43.47, -9.15, 0, 48, 21.13, -9.15, 0.14592, 49, -1.79, -9.15, 0.85165, 46, 73.57, 20.99, 0.00243, 4, 47, - 40.71, -9.16, 2e-05, 48, 18.37, -9.16, 0.23867, 49, -4.55, -9.16, 0.75671, 46, 73.76, 18.24, 0.0046, 4, 47, 37.66, -9.17, 0.00014, 48, 15.32, -9.17, 0.35275, 49, -7.6, -9.17, - 0.64256, 46, 73.97, 15.19, 0.00455, 4, 47, 35.13, -9.18, 0.00092, 48, 12.8, -9.18, 0.48034, 49, -10.13, -9.18, 0.51198, 46, 74.14, 12.68, 0.00676, 4, 47, 31.91, -9.19, 0.00375, 48, - 9.57, -9.19, 0.61095, 49, -13.35, -9.19, 0.38019, 46, 74.36, 9.46, 0.00512, 4, 47, 28.47, -9.21, 0.01298, 48, 6.13, -9.21, 0.72267, 49, -16.79, -9.21, 0.25841, 46, 74.6, 6.03, - 0.00594, 4, 47, 25.59, -9.22, 0.03422, 48, 3.25, -9.22, 0.80451, 49, -19.67, -9.22, 0.15782, 46, 74.8, 3.15, 0.00345, 4, 47, 22.68, -9.23, 0.07754, 48, 0.34, -9.23, 0.83155, 49, - -22.58, -9.23, 0.08642, 46, 75, 0.25, 0.00449, 4, 47, 19.52, -9.24, 0.14705, 48, -2.82, -9.24, 0.80991, 49, -25.74, -9.24, 0.04032, 46, 75.22, -2.9, 0.00272, 4, 47, 16.15, -9.25, - 0.24563, 48, -6.18, -9.25, 0.73344, 49, -29.11, -9.25, 0.01645, 46, 75.45, -6.26, 0.00448, 4, 47, 13.09, -9.27, 0.36774, 48, -9.24, -9.27, 0.62371, 49, -32.17, -9.27, 0.00512, 46, - 75.66, -9.31, 0.00344, 4, 47, 10.21, -9.28, 0.50372, 48, -12.13, -9.28, 0.49001, 49, -35.05, -9.28, 0.00135, 46, 75.86, -12.19, 0.00491, 4, 47, 7.08, -9.29, 0.64487, 48, -15.26, - -9.29, 0.35177, 49, -38.18, -9.29, 0.00021, 46, 76.08, -15.32, 0.00314, 4, 47, 3.26, -9.3, 0.77, 48, -19.08, -9.3, 0.22651, 49, -42, -9.3, 3e-05, 46, 76.34, -19.12, 0.00346, 4, 47, - -0.32, -9.32, 0.87272, 48, -22.66, -9.32, 0.1254, 49, -45.58, -9.32, 0, 46, 76.59, -22.69, 0.00188, 3, 47, -3.57, -9.33, 0.9351, 48, -25.91, -9.33, 0.0605, 46, 76.81, -25.94, 0.0044, - 3, 47, -7.54, -9.35, 0.96153, 48, -29.88, -9.35, 0.02278, 46, 77.09, -29.9, 0.01569, 3, 47, -9.85, -9.35, 0.93655, 48, -32.19, -9.35, 0.00657, 46, 77.24, -32.21, 0.05688, 3, 47, - -11.87, -9.36, 0.83576, 48, -34.2, -9.36, 0.00151, 46, 77.38, -34.21, 0.16273, 3, 47, -14.74, -9.37, 0.65143, 48, -37.08, -9.37, 0.00023, 46, 77.58, -37.08, 0.34834, 3, 47, -16.89, - -9.38, 0.4382, 48, -39.23, -9.38, 2e-05, 46, 77.73, -39.23, 0.56178, 3, 47, -18.76, -9.39, 0.27507, 48, -41.1, -9.39, 0, 46, 77.86, -41.09, 0.72493, 3, 47, -18.76, -2.89, 0.21414, - 48, -41.1, -2.89, 2e-05, 46, 71.37, -41.51, 0.78584, 3, 47, -18.76, 1.38, 0.19077, 48, -41.1, 1.38, 0.00024, 46, 67.11, -41.79, 0.80899, 3, 47, -18.76, 7.5, 0.1765, 48, -41.1, 7.5, - 0.00116, 46, 61.01, -42.19, 0.82235, 4, 47, -16.28, 11.88, 0.15382, 48, -38.62, 11.88, 0.00307, 49, -61.54, 11.88, 1e-05, 46, 56.48, -40, 0.84309, 4, 47, -11.9, 19.61, 0.11079, 48, - -34.24, 19.61, 0.0029, 49, -57.16, 19.61, 0.00014, 46, 48.48, -36.13, 0.88617, 4, 47, 14.63, 66.47, 0.04584, 48, -7.7, 66.47, 0.00083, 49, -30.63, 66.47, 0.00037, 46, -0.01, -12.7, - 0.95296, 4, 47, 22.29, 66.47, 0.02247, 48, -0.04, 66.47, 0.00083, 49, -22.97, 66.47, 0.00288, 46, -0.51, -5.06, 0.97382, 4, 47, 27.54, 66.47, 0.01007, 48, 5.2, 66.47, 0.00155, 49, - -17.72, 66.47, 0.0104, 46, -0.85, 0.17, 0.97798, 4, 47, 34.04, 66.47, 0.00272, 48, 11.7, 66.47, 0.00045, 49, -11.22, 66.47, 0.02285, 46, -1.28, 6.66, 0.97398, 4, 47, 39.96, 66.47, - 0.00033, 48, 17.62, 66.47, 0.00011, 49, -5.3, 66.47, 0.0498, 46, -1.66, 12.57, 0.94976, 3, 47, -16.24, -2.91, 0.33437, 48, -38.58, -2.91, 0.0002, 46, 71.23, -39, 0.66543, 3, 47, - -14.53, 1.37, 0.32645, 48, -36.87, 1.37, 0.00078, 46, 66.85, -37.57, 0.67277, 4, 47, -12.36, 7.36, 0.307, 48, -34.7, 7.36, 0.00285, 49, -57.62, 7.36, 1e-05, 46, 60.73, -35.79, - 0.69014, 4, 47, -9.97, 11.91, 0.26477, 48, -32.31, 11.91, 0.00971, 49, -55.23, 11.91, 0.00027, 46, 56.04, -33.7, 0.72525, 4, 47, -6.21, 19.66, 0.19881, 48, -28.55, 19.66, 0.00959, - 49, -51.47, 19.66, 0.00132, 46, 48.05, -30.46, 0.79028, 4, 47, 24.46, 19.97, 0.10712, 48, 2.12, 19.97, 0.11704, 49, -20.8, 19.97, 0.11672, 46, 45.75, 0.12, 0.65912, 4, 47, 53.97, - 20.27, 0.00116, 48, 31.63, 20.27, 0.00313, 49, 8.71, 20.27, 0.2148, 46, 43.53, 29.55, 0.7809, 4, 47, 57.02, 12.2, 0.0001, 48, 34.68, 12.2, 0.00083, 49, 11.76, 12.2, 0.29942, 46, - 51.38, 33.12, 0.69965, 3, 48, 36.75, 5.8, 0.00034, 49, 13.82, 5.8, 0.378, 46, 57.63, 35.6, 0.62166, 3, 48, 38.1, 1.08, 0.00022, 49, 15.18, 1.08, 0.45653, 46, 62.25, 37.26, 0.54325, - 3, 48, 39.36, -3.36, 0.00015, 49, 16.43, -3.36, 0.53433, 46, 66.61, 38.8, 0.46552, 4, 47, 23.97, 12.06, 0.12565, 48, 1.63, 12.06, 0.24275, 49, -21.29, 12.06, 0.14114, 46, 53.68, - 0.15, 0.49046, 4, 47, 23.54, 6.58, 0.11007, 48, 1.2, 6.58, 0.47217, 49, -21.72, 6.58, 0.12893, 46, 59.17, 0.08, 0.28883, 4, 47, 23.28, 1.22, 0.10884, 48, 0.94, 1.22, 0.60558, 49, - -21.98, 1.22, 0.12698, 46, 64.53, 0.17, 0.1586, 4, 47, 23.11, -3.14, 0.10666, 48, 0.77, -3.14, 0.70334, 49, -22.15, -3.14, 0.12133, 46, 68.89, 0.28, 0.06866, 4, 47, 6.87, 19.8, - 0.29773, 48, -15.47, 19.8, 0.06022, 49, -38.39, 19.8, 0.01488, 46, 47.07, -17.41, 0.62717, 4, 47, 3.75, 11.97, 0.44072, 48, -18.59, 11.97, 0.09602, 49, -41.51, 11.97, 0.01064, 46, - 55.08, -20.02, 0.45261, 4, 47, 1.91, 7.05, 0.66419, 48, -20.42, 7.05, 0.11803, 49, -43.35, 7.05, 0.002, 46, 60.11, -21.53, 0.21579, 4, 47, 0.03, 1.31, 0.77187, 48, -22.31, 1.31, - 0.12352, 49, -45.23, 1.31, 0.00043, 46, 65.96, -23.04, 0.10418, 4, 47, -1.27, -2.99, 0.84303, 48, -23.61, -2.99, 0.11246, 49, -46.53, -2.99, 0.00018, 46, 70.34, -24.05, 0.04432, 4, - 47, -1.8, 26.91, 0.12744, 48, -24.14, 26.91, 0.00959, 49, -47.06, 26.91, 0.0076, 46, 40.54, -26.53, 0.85537, 4, 47, 24.96, 27.56, 0.0719, 48, 2.62, 27.56, 0.03639, 49, -20.3, 27.56, - 0.07572, 46, 38.14, 0.13, 0.81598, 4, 47, 50.76, 27.7, 0.00702, 48, 28.42, 27.7, 0.00523, 49, 5.5, 27.7, 0.131, 46, 36.32, 25.87, 0.85675, 4, 47, 3.83, 36.15, 0.04791, 48, -18.51, - 36.15, 0.00352, 49, -41.43, 36.15, 0.00803, 46, 30.95, -21.51, 0.94054, 4, 47, 25.65, 37.95, 0.02662, 48, 3.31, 37.95, 0.00775, 49, -19.61, 37.95, 0.02767, 46, 27.73, 0.14, 0.93795, - 4, 47, 46.64, 37.25, 0.00753, 48, 24.3, 37.25, 0.00227, 49, 1.38, 37.25, 0.04846, 46, 27.06, 21.14, 0.94174, 4, 47, 41.75, 20.15, 0.01306, 48, 19.41, 20.15, 0.04509, 49, -3.51, - 20.15, 0.32134, 46, 44.45, 17.37, 0.62052, 4, 47, 43.25, 12.14, 0.00895, 48, 20.91, 12.14, 0.07841, 49, -2.01, 12.14, 0.49568, 46, 52.34, 19.39, 0.41696, 4, 47, 44.35, 6.12, 0.0015, - 48, 22.01, 6.12, 0.09572, 49, -0.91, 6.12, 0.67014, 46, 58.27, 20.88, 0.23264, 4, 47, 45.08, 1.14, 0.00025, 48, 22.74, 1.14, 0.108, 49, -0.18, 1.14, 0.76841, 46, 63.2, 21.93, - 0.12334, 4, 47, 45.58, -3.27, 0.0001, 48, 23.24, -3.27, 0.10937, 49, 0.32, -3.27, 0.83473, 46, 67.56, 22.71, 0.0558, 4, 47, 40.33, 27.64, 0.02381, 48, 18, 27.64, 0.02132, 49, -4.93, - 27.64, 0.16866, 46, 37.06, 15.47, 0.78621, 4, 47, 9.71, 27.19, 0.16236, 48, -12.63, 27.19, 0.02827, 49, -35.55, 27.19, 0.02548, 46, 39.51, -15.06, 0.78388, 4, 47, 15.01, 19.88, - 0.23124, 48, -7.33, 19.88, 0.11759, 49, -30.25, 19.88, 0.04679, 46, 46.46, -9.29, 0.60438, 4, 47, 13.78, 12.01, 0.29354, 48, -8.56, 12.01, 0.19873, 49, -31.48, 12.01, 0.04427, 46, - 54.39, -10.01, 0.46346, 4, 47, 12.95, 6.81, 0.37869, 48, -9.39, 6.81, 0.34588, 49, -32.31, 6.81, 0.01968, 46, 59.63, -10.5, 0.25575, 4, 47, 11.95, 1.27, 0.42861, 48, -10.39, 1.27, - 0.42317, 49, -33.31, 1.27, 0.01297, 46, 65.23, -11.14, 0.13524, 4, 47, 11.29, -3.07, 0.46725, 48, -11.05, -3.07, 0.46538, 49, -33.97, -3.07, 0.0097, 46, 69.59, -11.51, 0.05768, 4, - 47, -0.59, 19.72, 0.32338, 48, -22.92, 19.72, 0.02881, 49, -45.85, 19.72, 0.003, 46, 47.63, -24.85, 0.64481, 4, 47, -3.82, 11.93, 0.4391, 48, -26.16, 11.93, 0.03345, 49, -49.08, - 11.93, 0.00177, 46, 55.61, -27.57, 0.52567, 4, 47, -5.89, 7.22, 0.65491, 48, -28.23, 7.22, 0.02015, 49, -51.15, 7.22, 0.00017, 46, 60.45, -29.33, 0.32476, 4, 47, -8.13, 1.34, - 0.75275, 48, -30.47, 1.34, 0.01396, 49, -53.39, 1.34, 1e-05, 46, 66.46, -31.18, 0.23328, 3, 47, -9.63, -2.94, 0.80478, 48, -31.96, -2.94, 0.00944, 46, 70.83, -32.39, 0.18578, 4, 47, - 33.3, 20.06, 0.04166, 48, 10.96, 20.06, 0.10286, 49, -11.96, 20.06, 0.24857, 46, 45.08, 8.94, 0.60691, 4, 47, 33.97, 12.1, 0.03817, 48, 11.63, 12.1, 0.17811, 49, -11.29, 12.1, - 0.32257, 46, 52.98, 10.13, 0.46115, 4, 47, 34.3, 6.34, 0.01531, 48, 11.97, 6.34, 0.31162, 49, -10.96, 6.34, 0.40881, 46, 58.71, 10.84, 0.26426, 4, 47, 34.72, 1.18, 0.00955, 48, - 12.39, 1.18, 0.39036, 49, -10.54, 1.18, 0.4561, 46, 63.83, 11.59, 0.14399, 4, 47, 34.8, -3.2, 0.00731, 48, 12.46, -3.2, 0.44195, 49, -10.46, -3.2, 0.48699, 46, 68.2, 11.96, 0.06375, - 4, 47, 48.21, 20.21, 0.00241, 48, 25.88, 20.21, 0.01421, 49, 2.95, 20.21, 0.36275, 46, 43.96, 23.82, 0.62063, 4, 47, 50.54, 12.17, 0.00034, 48, 28.2, 12.17, 0.01068, 49, 5.28, 12.17, - 0.5453, 46, 51.83, 26.66, 0.44368, 4, 47, 52.52, 5.95, 2e-05, 48, 30.19, 5.95, 0.00999, 49, 7.26, 5.95, 0.66888, 46, 57.92, 29.04, 0.32111, 3, 48, 31.52, 1.11, 0.01011, 49, 8.6, - 1.11, 0.76268, 46, 62.66, 30.7, 0.22721, 3, 48, 32.61, -3.32, 0.00863, 49, 9.68, -3.32, 0.83296, 46, 67.01, 32.06, 0.15841, 4, 47, -9.21, 7.29, 0.52586, 48, -31.55, 7.29, 0.0057, 49, - -54.47, 7.29, 1e-05, 46, 60.59, -32.65, 0.46842, 3, 47, -11.3, 1.36, 0.56698, 48, -33.64, 1.36, 0.00311, 46, 66.65, -34.34, 0.42991, 3, 47, -12.66, -2.93, 0.60013, 48, -35, -2.93, - 0.00167, 46, 71.01, -35.42, 0.39821, 4, 47, -5.46, -2.97, 0.89102, 48, -27.8, -2.97, 0.03888, 49, -50.72, -2.97, 1e-05, 46, 70.59, -28.24, 0.07008, 4, 47, -4.18, 1.33, 0.83362, 48, - -26.52, 1.33, 0.04645, 49, -49.44, 1.33, 3e-05, 46, 66.21, -27.24, 0.1199, 4, 47, -2.26, 7.14, 0.75973, 48, -24.6, 7.14, 0.05134, 49, -47.52, 7.14, 0.00026, 46, 60.29, -25.7, - 0.18867, 4, 47, 7.35, 6.93, 0.57235, 48, -14.98, 6.93, 0.23863, 49, -37.91, 6.93, 0.00435, 46, 59.87, -16.09, 0.18467, 4, 47, 5.9, 1.29, 0.63011, 48, -16.44, 1.29, 0.25936, 49, - -39.36, 1.29, 0.00243, 46, 65.6, -17.18, 0.1081, 4, 47, 4.86, -3.03, 0.68809, 48, -17.48, -3.03, 0.26358, 49, -40.4, -3.03, 0.00168, 46, 69.98, -17.93, 0.04665, 4, 47, 17.76, 6.7, - 0.22941, 48, -4.58, 6.7, 0.4879, 49, -27.5, 6.7, 0.05094, 46, 59.42, -5.7, 0.23175, 4, 47, 17.11, 1.25, 0.24296, 48, -5.23, 1.25, 0.56856, 49, -28.15, 1.25, 0.04581, 46, 64.91, - -5.99, 0.14267, 4, 47, 16.71, -3.1, 0.25552, 48, -5.62, -3.1, 0.64168, 49, -28.55, -3.1, 0.03992, 46, 69.27, -6.1, 0.06288, 4, 47, 28.55, -3.17, 0.03276, 48, 6.22, -3.17, 0.62363, - 49, -16.71, -3.17, 0.27658, 46, 68.57, 5.72, 0.06703, 4, 47, 28.55, 1.2, 0.0367, 48, 6.21, 1.21, 0.54514, 49, -16.71, 1.21, 0.26974, 46, 64.21, 5.43, 0.14843, 4, 47, 28.71, 6.47, - 0.04075, 48, 6.37, 6.47, 0.46337, 49, -16.55, 6.47, 0.25797, 46, 58.95, 5.25, 0.23791, 4, 47, 39.28, 6.23, 0.00305, 48, 16.94, 6.24, 0.20572, 49, -5.98, 6.24, 0.59307, 46, 58.49, - 15.81, 0.19817, 4, 47, 39.51, 1.16, 0.00156, 48, 17.17, 1.16, 0.23228, 49, -5.75, 1.16, 0.64631, 46, 63.54, 16.37, 0.11984, 4, 47, 40.07, -3.24, 0.00112, 48, 17.74, -3.24, 0.25061, - 49, -5.19, -3.24, 0.69415, 46, 67.89, 17.22, 0.05412, 4, 47, 50.23, -3.29, 0, 48, 27.89, -3.29, 0.036, 49, 4.97, -3.29, 0.88144, 46, 67.29, 27.36, 0.08255, 4, 47, 49.51, 1.13, 2e-05, - 48, 27.17, 1.13, 0.03826, 49, 4.25, 1.13, 0.81357, 46, 62.92, 26.35, 0.14816, 4, 47, 48.55, 6.03, 0.00027, 48, 26.22, 6.03, 0.03577, 49, 3.29, 6.03, 0.72045, 46, 58.09, 25.08, - 0.24351, 4, 47, 47.11, 12.16, 0.00156, 48, 24.77, 12.16, 0.03311, 49, 1.85, 12.16, 0.61234, 46, 52.07, 23.24, 0.35299, 4, 47, 53.99, 12.19, 1e-05, 48, 31.66, 12.19, 0.00266, 49, - 8.73, 12.19, 0.47035, 46, 51.59, 30.11, 0.52698, 3, 48, 33.02, 5.88, 0.00213, 49, 10.1, 5.88, 0.54797, 46, 57.79, 31.88, 0.4499, 3, 48, 34.54, 1.1, 0.0018, 49, 11.62, 1.1, 0.63247, - 46, 62.47, 33.7, 0.36573, 3, 48, 35.58, -3.34, 0.00152, 49, 12.66, -3.34, 0.71351, 46, 66.83, 35.03, 0.28497, 3, 47, -17.72, -6.71, 0.31251, 48, -40.05, -6.71, 1e-05, 46, 75.11, - -40.22, 0.68748, 3, 47, -13.83, -6.56, 0.64755, 48, -36.17, -6.56, 0.00038, 46, 74.72, -36.36, 0.35207, 3, 47, -10.89, -6.57, 0.83546, 48, -33.23, -6.57, 0.00245, 46, 74.53, -33.42, - 0.1621, 3, 47, -6.58, -6.39, 0.9505, 48, -28.91, -6.39, 0.02598, 46, 74.07, -29.13, 0.02352, 4, 47, -2.51, -6.41, 0.9185, 48, -24.85, -6.41, 0.06986, 49, -47.77, -6.41, 1e-05, 46, - 73.83, -25.07, 0.01163, 4, 47, 3.97, -6.54, 0.7539, 48, -18.37, -6.54, 0.23416, 49, -41.29, -6.54, 0.00019, 46, 73.54, -18.6, 0.01175, 4, 47, 10.73, -6.3, 0.4945, 48, -11.61, -6.29, - 0.48778, 49, -34.53, -6.29, 0.00242, 46, 72.85, -11.87, 0.01529, 4, 47, 16.42, -6.31, 0.24467, 48, -5.92, -6.31, 0.71967, 49, -28.84, -6.31, 0.01969, 46, 72.5, -6.18, 0.01597, 4, 47, - 22.88, -6.46, 0.08074, 48, 0.54, -6.46, 0.81091, 49, -22.38, -6.46, 0.09131, 46, 72.22, 0.27, 0.01704, 4, 47, 28.51, -6.42, 0.01543, 48, 6.17, -6.42, 0.70591, 49, -16.75, -6.42, - 0.26031, 46, 71.82, 5.89, 0.01836, 4, 47, 34.97, -6.29, 0.00164, 48, 12.64, -6.29, 0.47309, 49, -10.29, -6.29, 0.50689, 46, 71.27, 12.33, 0.01837, 4, 47, 40.42, -6.47, 0.0001, 48, - 18.08, -6.47, 0.23958, 49, -4.84, -6.47, 0.7461, 46, 71.1, 17.78, 0.01421, 4, 47, 45.89, -6.5, 0, 48, 23.56, -6.5, 0.08431, 49, 0.63, -6.5, 0.9025, 46, 70.76, 23.24, 0.01319, 3, 48, - 28.36, -6.37, 0.01867, 49, 5.43, -6.37, 0.94991, 46, 70.33, 28.02, 0.03142, 3, 48, 33.31, -6.41, 0.00244, 49, 10.39, -6.41, 0.88788, 46, 70.05, 32.97, 0.10968, 3, 48, 36.23, -6.46, - 0.00046, 49, 13.31, -6.46, 0.80558, 46, 69.91, 35.88, 0.19395, 3, 48, 40.12, -6.31, 1e-05, 49, 17.2, -6.31, 0.61334, 46, 69.5, 39.76, 0.38665, 4, 47, 0.4, -6.47, 0.86555, 48, -21.94, - -6.47, 0.12959, 49, -44.86, -6.47, 1e-05, 46, 73.7, -22.16, 0.00485, 3, 47, -9.01, -6.49, 0.93616, 48, -31.35, -6.49, 0.00716, 46, 74.33, -31.55, 0.05668, 3, 47, -16.19, -6.65, - 0.44814, 48, -38.53, -6.65, 3e-05, 46, 74.96, -38.7, 0.55184, 4, 47, 7.48, -6.41, 0.63866, 48, -14.86, -6.41, 0.354, 49, -37.78, -6.41, 0.00037, 46, 73.18, -15.1, 0.00698, 4, 47, - 13.4, -6.3, 0.36468, 48, -8.94, -6.3, 0.62161, 49, -31.86, -6.3, 0.00581, 46, 72.69, -9.2, 0.0079, 4, 47, 19.68, -6.38, 0.14684, 48, -2.65, -6.38, 0.80383, 49, -25.58, -6.38, - 0.04176, 46, 72.36, -2.92, 0.00757, 4, 47, 25.54, -6.44, 0.03499, 48, 3.2, -6.44, 0.79745, 49, -19.72, -6.44, 0.15898, 46, 72.03, 2.92, 0.00858, 4, 47, 31.96, -6.35, 0.00417, 48, - 9.62, -6.35, 0.60634, 49, -13.3, -6.35, 0.37927, 46, 71.53, 9.32, 0.01022, 4, 47, 37.62, -6.38, 0.00021, 48, 15.28, -6.38, 0.35157, 49, -7.64, -6.38, 0.63918, 46, 71.18, 14.97, - 0.00904, 4, 47, 43.32, -6.48, 1e-05, 48, 20.98, -6.48, 0.14688, 49, -1.94, -6.48, 0.84692, 46, 70.92, 20.67, 0.00619, 3, 48, 25.81, -6.44, 0.03919, 49, 2.89, -6.44, 0.95006, 46, - 70.56, 25.48, 0.01074, 3, 48, 30.92, -6.39, 0.00591, 49, 7.99, -6.39, 0.9433, 46, 70.18, 30.58, 0.05079, 3, 48, 38.04, -6.39, 5e-05, 49, 15.12, -6.39, 0.72615, 46, 69.72, 37.69, + 51.38, 33.12, 0.69965, 3, 40, 36.75, 5.8, 0.00034, 41, 13.82, 5.8, 0.378, 32, 57.63, 35.6, 0.62166, 3, 40, 38.1, 1.08, 0.00022, 41, 15.18, 1.08, 0.45653, 32, 62.25, 37.26, 0.54325, + 3, 40, 39.36, -3.36, 0.00015, 41, 16.43, -3.36, 0.53433, 32, 66.61, 38.8, 0.46552, 4, 39, 23.97, 12.06, 0.12565, 40, 1.63, 12.06, 0.24275, 41, -21.29, 12.06, 0.14114, 32, 53.68, + 0.15, 0.49046, 4, 39, 23.54, 6.58, 0.11007, 40, 1.2, 6.58, 0.47217, 41, -21.72, 6.58, 0.12893, 32, 59.17, 0.08, 0.28883, 4, 39, 23.28, 1.22, 0.10884, 40, 0.94, 1.22, 0.60558, 41, + -21.98, 1.22, 0.12698, 32, 64.53, 0.17, 0.1586, 4, 39, 23.11, -3.14, 0.10666, 40, 0.77, -3.14, 0.70334, 41, -22.15, -3.14, 0.12133, 32, 68.89, 0.28, 0.06866, 4, 39, 6.87, 19.8, + 0.29773, 40, -15.47, 19.8, 0.06022, 41, -38.39, 19.8, 0.01488, 32, 47.07, -17.41, 0.62717, 4, 39, 3.75, 11.97, 0.44072, 40, -18.59, 11.97, 0.09602, 41, -41.51, 11.97, 0.01064, 32, + 55.08, -20.02, 0.45261, 4, 39, 1.91, 7.05, 0.66419, 40, -20.42, 7.05, 0.11803, 41, -43.35, 7.05, 0.002, 32, 60.11, -21.53, 0.21579, 4, 39, 0.03, 1.31, 0.77187, 40, -22.31, 1.31, + 0.12352, 41, -45.23, 1.31, 0.00043, 32, 65.96, -23.04, 0.10418, 4, 39, -1.27, -2.99, 0.84303, 40, -23.61, -2.99, 0.11246, 41, -46.53, -2.99, 0.00018, 32, 70.34, -24.05, 0.04432, 4, + 39, -1.8, 26.91, 0.12744, 40, -24.14, 26.91, 0.00959, 41, -47.06, 26.91, 0.0076, 32, 40.54, -26.53, 0.85537, 4, 39, 24.96, 27.56, 0.0719, 40, 2.62, 27.56, 0.03639, 41, -20.3, 27.56, + 0.07572, 32, 38.14, 0.13, 0.81598, 4, 39, 50.76, 27.7, 0.00702, 40, 28.42, 27.7, 0.00523, 41, 5.5, 27.7, 0.131, 32, 36.32, 25.87, 0.85675, 4, 39, 3.83, 36.15, 0.04791, 40, -18.51, + 36.15, 0.00352, 41, -41.43, 36.15, 0.00803, 32, 30.95, -21.51, 0.94054, 4, 39, 25.65, 37.95, 0.02662, 40, 3.31, 37.95, 0.00775, 41, -19.61, 37.95, 0.02767, 32, 27.73, 0.14, 0.93795, + 4, 39, 46.64, 37.25, 0.00753, 40, 24.3, 37.25, 0.00227, 41, 1.38, 37.25, 0.04846, 32, 27.06, 21.14, 0.94174, 4, 39, 41.75, 20.15, 0.01306, 40, 19.41, 20.15, 0.04509, 41, -3.51, + 20.15, 0.32134, 32, 44.45, 17.37, 0.62052, 4, 39, 43.25, 12.14, 0.00895, 40, 20.91, 12.14, 0.07841, 41, -2.01, 12.14, 0.49568, 32, 52.34, 19.39, 0.41696, 4, 39, 44.35, 6.12, 0.0015, + 40, 22.01, 6.12, 0.09572, 41, -0.91, 6.12, 0.67014, 32, 58.27, 20.88, 0.23264, 4, 39, 45.08, 1.14, 0.00025, 40, 22.74, 1.14, 0.108, 41, -0.18, 1.14, 0.76841, 32, 63.2, 21.93, + 0.12334, 4, 39, 45.58, -3.27, 0.0001, 40, 23.24, -3.27, 0.10937, 41, 0.32, -3.27, 0.83473, 32, 67.56, 22.71, 0.0558, 4, 39, 40.33, 27.64, 0.02381, 40, 18, 27.64, 0.02132, 41, -4.93, + 27.64, 0.16866, 32, 37.06, 15.47, 0.78621, 4, 39, 9.71, 27.19, 0.16236, 40, -12.63, 27.19, 0.02827, 41, -35.55, 27.19, 0.02548, 32, 39.51, -15.06, 0.78388, 4, 39, 15.01, 19.88, + 0.23124, 40, -7.33, 19.88, 0.11759, 41, -30.25, 19.88, 0.04679, 32, 46.46, -9.29, 0.60438, 4, 39, 13.78, 12.01, 0.29354, 40, -8.56, 12.01, 0.19873, 41, -31.48, 12.01, 0.04427, 32, + 54.39, -10.01, 0.46346, 4, 39, 12.95, 6.81, 0.37869, 40, -9.39, 6.81, 0.34588, 41, -32.31, 6.81, 0.01968, 32, 59.63, -10.5, 0.25575, 4, 39, 11.95, 1.27, 0.42861, 40, -10.39, 1.27, + 0.42317, 41, -33.31, 1.27, 0.01297, 32, 65.23, -11.14, 0.13524, 4, 39, 11.29, -3.07, 0.46725, 40, -11.05, -3.07, 0.46538, 41, -33.97, -3.07, 0.0097, 32, 69.59, -11.51, 0.05768, 4, + 39, -0.59, 19.72, 0.32338, 40, -22.92, 19.72, 0.02881, 41, -45.85, 19.72, 0.003, 32, 47.63, -24.85, 0.64481, 4, 39, -3.82, 11.93, 0.4391, 40, -26.16, 11.93, 0.03345, 41, -49.08, + 11.93, 0.00177, 32, 55.61, -27.57, 0.52567, 4, 39, -5.89, 7.22, 0.65491, 40, -28.23, 7.22, 0.02015, 41, -51.15, 7.22, 0.00017, 32, 60.45, -29.33, 0.32476, 4, 39, -8.13, 1.34, + 0.75275, 40, -30.47, 1.34, 0.01396, 41, -53.39, 1.34, 1e-05, 32, 66.46, -31.18, 0.23328, 3, 39, -9.63, -2.94, 0.80478, 40, -31.96, -2.94, 0.00944, 32, 70.83, -32.39, 0.18578, 4, 39, + 33.3, 20.06, 0.04166, 40, 10.96, 20.06, 0.10286, 41, -11.96, 20.06, 0.24857, 32, 45.08, 8.94, 0.60691, 4, 39, 33.97, 12.1, 0.03817, 40, 11.63, 12.1, 0.17811, 41, -11.29, 12.1, + 0.32257, 32, 52.98, 10.13, 0.46115, 4, 39, 34.3, 6.34, 0.01531, 40, 11.97, 6.34, 0.31162, 41, -10.96, 6.34, 0.40881, 32, 58.71, 10.84, 0.26426, 4, 39, 34.72, 1.18, 0.00955, 40, + 12.39, 1.18, 0.39036, 41, -10.54, 1.18, 0.4561, 32, 63.83, 11.59, 0.14399, 4, 39, 34.8, -3.2, 0.00731, 40, 12.46, -3.2, 0.44195, 41, -10.46, -3.2, 0.48699, 32, 68.2, 11.96, 0.06375, + 4, 39, 48.21, 20.21, 0.00241, 40, 25.88, 20.21, 0.01421, 41, 2.95, 20.21, 0.36275, 32, 43.96, 23.82, 0.62063, 4, 39, 50.54, 12.17, 0.00034, 40, 28.2, 12.17, 0.01068, 41, 5.28, 12.17, + 0.5453, 32, 51.83, 26.66, 0.44368, 4, 39, 52.52, 5.95, 2e-05, 40, 30.19, 5.95, 0.00999, 41, 7.26, 5.95, 0.66888, 32, 57.92, 29.04, 0.32111, 3, 40, 31.52, 1.11, 0.01011, 41, 8.6, + 1.11, 0.76268, 32, 62.66, 30.7, 0.22721, 3, 40, 32.61, -3.32, 0.00863, 41, 9.68, -3.32, 0.83296, 32, 67.01, 32.06, 0.15841, 4, 39, -9.21, 7.29, 0.52586, 40, -31.55, 7.29, 0.0057, 41, + -54.47, 7.29, 1e-05, 32, 60.59, -32.65, 0.46842, 3, 39, -11.3, 1.36, 0.56698, 40, -33.64, 1.36, 0.00311, 32, 66.65, -34.34, 0.42991, 3, 39, -12.66, -2.93, 0.60013, 40, -35, -2.93, + 0.00167, 32, 71.01, -35.42, 0.39821, 4, 39, -5.46, -2.97, 0.89102, 40, -27.8, -2.97, 0.03888, 41, -50.72, -2.97, 1e-05, 32, 70.59, -28.24, 0.07008, 4, 39, -4.18, 1.33, 0.83362, 40, + -26.52, 1.33, 0.04645, 41, -49.44, 1.33, 3e-05, 32, 66.21, -27.24, 0.1199, 4, 39, -2.26, 7.14, 0.75973, 40, -24.6, 7.14, 0.05134, 41, -47.52, 7.14, 0.00026, 32, 60.29, -25.7, + 0.18867, 4, 39, 7.35, 6.93, 0.57235, 40, -14.98, 6.93, 0.23863, 41, -37.91, 6.93, 0.00435, 32, 59.87, -16.09, 0.18467, 4, 39, 5.9, 1.29, 0.63011, 40, -16.44, 1.29, 0.25936, 41, + -39.36, 1.29, 0.00243, 32, 65.6, -17.18, 0.1081, 4, 39, 4.86, -3.03, 0.68809, 40, -17.48, -3.03, 0.26358, 41, -40.4, -3.03, 0.00168, 32, 69.98, -17.93, 0.04665, 4, 39, 17.76, 6.7, + 0.22941, 40, -4.58, 6.7, 0.4879, 41, -27.5, 6.7, 0.05094, 32, 59.42, -5.7, 0.23175, 4, 39, 17.11, 1.25, 0.24296, 40, -5.23, 1.25, 0.56856, 41, -28.15, 1.25, 0.04581, 32, 64.91, + -5.99, 0.14267, 4, 39, 16.71, -3.1, 0.25552, 40, -5.62, -3.1, 0.64168, 41, -28.55, -3.1, 0.03992, 32, 69.27, -6.1, 0.06288, 4, 39, 28.55, -3.17, 0.03276, 40, 6.22, -3.17, 0.62363, + 41, -16.71, -3.17, 0.27658, 32, 68.57, 5.72, 0.06703, 4, 39, 28.55, 1.2, 0.0367, 40, 6.21, 1.21, 0.54514, 41, -16.71, 1.21, 0.26974, 32, 64.21, 5.43, 0.14843, 4, 39, 28.71, 6.47, + 0.04075, 40, 6.37, 6.47, 0.46337, 41, -16.55, 6.47, 0.25797, 32, 58.95, 5.25, 0.23791, 4, 39, 39.28, 6.23, 0.00305, 40, 16.94, 6.24, 0.20572, 41, -5.98, 6.24, 0.59307, 32, 58.49, + 15.81, 0.19817, 4, 39, 39.51, 1.16, 0.00156, 40, 17.17, 1.16, 0.23228, 41, -5.75, 1.16, 0.64631, 32, 63.54, 16.37, 0.11984, 4, 39, 40.07, -3.24, 0.00112, 40, 17.74, -3.24, 0.25061, + 41, -5.19, -3.24, 0.69415, 32, 67.89, 17.22, 0.05412, 4, 39, 50.23, -3.29, 0, 40, 27.89, -3.29, 0.036, 41, 4.97, -3.29, 0.88144, 32, 67.29, 27.36, 0.08255, 4, 39, 49.51, 1.13, 2e-05, + 40, 27.17, 1.13, 0.03826, 41, 4.25, 1.13, 0.81357, 32, 62.92, 26.35, 0.14816, 4, 39, 48.55, 6.03, 0.00027, 40, 26.22, 6.03, 0.03577, 41, 3.29, 6.03, 0.72045, 32, 58.09, 25.08, + 0.24351, 4, 39, 47.11, 12.16, 0.00156, 40, 24.77, 12.16, 0.03311, 41, 1.85, 12.16, 0.61234, 32, 52.07, 23.24, 0.35299, 4, 39, 53.99, 12.19, 1e-05, 40, 31.66, 12.19, 0.00266, 41, + 8.73, 12.19, 0.47035, 32, 51.59, 30.11, 0.52698, 3, 40, 33.02, 5.88, 0.00213, 41, 10.1, 5.88, 0.54797, 32, 57.79, 31.88, 0.4499, 3, 40, 34.54, 1.1, 0.0018, 41, 11.62, 1.1, 0.63247, + 32, 62.47, 33.7, 0.36573, 3, 40, 35.58, -3.34, 0.00152, 41, 12.66, -3.34, 0.71351, 32, 66.83, 35.03, 0.28497, 3, 39, -17.72, -6.71, 0.31251, 40, -40.05, -6.71, 1e-05, 32, 75.11, + -40.22, 0.68748, 3, 39, -13.83, -6.56, 0.64755, 40, -36.17, -6.56, 0.00038, 32, 74.72, -36.36, 0.35207, 3, 39, -10.89, -6.57, 0.83546, 40, -33.23, -6.57, 0.00245, 32, 74.53, -33.42, + 0.1621, 3, 39, -6.58, -6.39, 0.9505, 40, -28.91, -6.39, 0.02598, 32, 74.07, -29.13, 0.02352, 4, 39, -2.51, -6.41, 0.9185, 40, -24.85, -6.41, 0.06986, 41, -47.77, -6.41, 1e-05, 32, + 73.83, -25.07, 0.01163, 4, 39, 3.97, -6.54, 0.7539, 40, -18.37, -6.54, 0.23416, 41, -41.29, -6.54, 0.00019, 32, 73.54, -18.6, 0.01175, 4, 39, 10.73, -6.3, 0.4945, 40, -11.61, -6.29, + 0.48778, 41, -34.53, -6.29, 0.00242, 32, 72.85, -11.87, 0.01529, 4, 39, 16.42, -6.31, 0.24467, 40, -5.92, -6.31, 0.71967, 41, -28.84, -6.31, 0.01969, 32, 72.5, -6.18, 0.01597, 4, 39, + 22.88, -6.46, 0.08074, 40, 0.54, -6.46, 0.81091, 41, -22.38, -6.46, 0.09131, 32, 72.22, 0.27, 0.01704, 4, 39, 28.51, -6.42, 0.01543, 40, 6.17, -6.42, 0.70591, 41, -16.75, -6.42, + 0.26031, 32, 71.82, 5.89, 0.01836, 4, 39, 34.97, -6.29, 0.00164, 40, 12.64, -6.29, 0.47309, 41, -10.29, -6.29, 0.50689, 32, 71.27, 12.33, 0.01837, 4, 39, 40.42, -6.47, 0.0001, 40, + 18.08, -6.47, 0.23958, 41, -4.84, -6.47, 0.7461, 32, 71.1, 17.78, 0.01421, 4, 39, 45.89, -6.5, 0, 40, 23.56, -6.5, 0.08431, 41, 0.63, -6.5, 0.9025, 32, 70.76, 23.24, 0.01319, 3, 40, + 28.36, -6.37, 0.01867, 41, 5.43, -6.37, 0.94991, 32, 70.33, 28.02, 0.03142, 3, 40, 33.31, -6.41, 0.00244, 41, 10.39, -6.41, 0.88788, 32, 70.05, 32.97, 0.10968, 3, 40, 36.23, -6.46, + 0.00046, 41, 13.31, -6.46, 0.80558, 32, 69.91, 35.88, 0.19395, 3, 40, 40.12, -6.31, 1e-05, 41, 17.2, -6.31, 0.61334, 32, 69.5, 39.76, 0.38665, 4, 39, 0.4, -6.47, 0.86555, 40, -21.94, + -6.47, 0.12959, 41, -44.86, -6.47, 1e-05, 32, 73.7, -22.16, 0.00485, 3, 39, -9.01, -6.49, 0.93616, 40, -31.35, -6.49, 0.00716, 32, 74.33, -31.55, 0.05668, 3, 39, -16.19, -6.65, + 0.44814, 40, -38.53, -6.65, 3e-05, 32, 74.96, -38.7, 0.55184, 4, 39, 7.48, -6.41, 0.63866, 40, -14.86, -6.41, 0.354, 41, -37.78, -6.41, 0.00037, 32, 73.18, -15.1, 0.00698, 4, 39, + 13.4, -6.3, 0.36468, 40, -8.94, -6.3, 0.62161, 41, -31.86, -6.3, 0.00581, 32, 72.69, -9.2, 0.0079, 4, 39, 19.68, -6.38, 0.14684, 40, -2.65, -6.38, 0.80383, 41, -25.58, -6.38, + 0.04176, 32, 72.36, -2.92, 0.00757, 4, 39, 25.54, -6.44, 0.03499, 40, 3.2, -6.44, 0.79745, 41, -19.72, -6.44, 0.15898, 32, 72.03, 2.92, 0.00858, 4, 39, 31.96, -6.35, 0.00417, 40, + 9.62, -6.35, 0.60634, 41, -13.3, -6.35, 0.37927, 32, 71.53, 9.32, 0.01022, 4, 39, 37.62, -6.38, 0.00021, 40, 15.28, -6.38, 0.35157, 41, -7.64, -6.38, 0.63918, 32, 71.18, 14.97, + 0.00904, 4, 39, 43.32, -6.48, 1e-05, 40, 20.98, -6.48, 0.14688, 41, -1.94, -6.48, 0.84692, 32, 70.92, 20.67, 0.00619, 3, 40, 25.81, -6.44, 0.03919, 41, 2.89, -6.44, 0.95006, 32, + 70.56, 25.48, 0.01074, 3, 40, 30.92, -6.39, 0.00591, 41, 7.99, -6.39, 0.9433, 32, 70.18, 30.58, 0.05079, 3, 40, 38.04, -6.39, 5e-05, 41, 15.12, -6.39, 0.72615, 32, 69.72, 37.69, 0.2738 ], "hull": 46, @@ -9265,1015 +23468,778 @@ 264, 294, 294, 266, 42, 44, 44, 46, 294, 44, 266, 296, 296, 268, 38, 40, 40, 42, 296, 40, 268, 298, 298, 270, 34, 36, 36, 38, 298, 36, 270, 300, 300, 272, 30, 32, 32, 34, 300, 32, 272, 302, 302, 274, 26, 28, 28, 30, 302, 28, 274, 304, 304, 276, 22, 24, 24, 26, 304, 24, 276, 306, 306, 278, 18, 20, 20, 22, 306, 20, 280, 308, 308, 282, 12, 14, 14, 16, 308, 14 ], - "width": 88, - "height": 80, - "path": "summer-a.ear-left-bubble" - } - }, - "ear-left-dot-01": {"ear-left-dot": {"x": 0.12, "y": 0.57, "rotation": -0.95, "width": 15, "height": 16, "path": "summer-a.ear-left-dot"}}, - "ear-left-dot-02": {"ear-left-dot": {"x": 0.12, "y": 0.57, "rotation": -0.95, "width": 15, "height": 16, "path": "summer-a.ear-left-dot"}}, - "ear-left-dot-03": {"ear-left-dot": {"x": 0.12, "y": 0.57, "rotation": -0.95, "width": 15, "height": 16, "path": "summer-a.ear-left-dot"}}, - "ear-left-dot-04": {"ear-left-dot": {"x": 0.12, "y": 0.57, "rotation": -0.95, "width": 15, "height": 16, "path": "summer-a.ear-left-dot"}}, - "ear-left-dot-05": {"ear-left-dot": {"x": 0.12, "y": 0.57, "rotation": -0.95, "width": 15, "height": 16, "path": "summer-a.ear-left-dot"}}, - "ear-left-dot-06": {"ear-left-dot": {"x": 0.12, "y": 0.57, "rotation": -0.95, "width": 15, "height": 16, "path": "summer-a.ear-left-dot"}}, - "ear-left-dot-07": {"ear-left-dot": {"x": 0.12, "y": 0.57, "rotation": -0.95, "width": 15, "height": 16, "path": "summer-a.ear-left-dot"}}, - "ear-left-dot-08": {"ear-left-dot": {"x": 0.12, "y": 0.57, "rotation": -0.95, "width": 15, "height": 16, "path": "summer-a.ear-left-dot"}}, - "ear-left-dot-09": {"ear-left-dot": {"x": 0.12, "y": 0.57, "rotation": -0.95, "width": 15, "height": 16, "path": "summer-a.ear-left-dot"}}, - "ear-left-dot-10": {"ear-left-dot": {"x": 0.12, "y": 0.57, "rotation": -0.95, "width": 15, "height": 16, "path": "summer-a.ear-left-dot"}}, - "ear-left-dot-11": {"ear-left-dot": {"x": 0.12, "y": 0.57, "rotation": -0.95, "width": 15, "height": 16, "path": "summer-a.ear-left-dot"}}, - "ear-left-dot-12": {"ear-left-dot": {"x": 0.12, "y": 0.57, "rotation": -0.95, "width": 15, "height": 16, "path": "summer-a.ear-left-dot"}}, - "ear-left-under": {"ear-left-under": {"x": 84.11, "y": -23.37, "rotation": -90, "width": 130, "height": 220, "path": "summer-a.ear-left-under"}}, - "ear-left-upper": {"ear-left-upper": {"x": 85.61, "y": -23.87, "rotation": -90, "width": 145, "height": 231, "path": "summer-a.ear-left-upper"}}, - "ear-right-bubble": { - "ear-right-bubble": { - "type": "mesh", - "uvs": [ - 0.93928, 0.50958, 0.95558, 0.59885, 0.96791, 0.66638, 0.98006, 0.73289, 1, 0.84205, 1, 0.89818, 1, 0.9625, 0.9567, 0.9625, 0.9208, 0.9625, 0.88771, 0.9625, 0.83969, 0.9625, 0.79967, - 0.9625, 0.76574, 0.9625, 0.73418, 0.9625, 0.69508, 0.9625, 0.6661, 0.9625, 0.6319, 0.9625, 0.6046, 0.9625, 0.57454, 0.9625, 0.53755, 0.9625, 0.50387, 0.9625, 0.47341, 0.9625, - 0.44466, 0.9625, 0.41233, 0.9625, 0.37317, 0.9625, 0.33787, 0.9625, 0.30333, 0.9625, 0.2648, 0.9625, 0.21937, 0.9625, 0.17434, 0.9625, 0.12959, 0.9625, 0.08769, 0.9625, 0, 0.9625, - 0.02085, 0.89779, 0.04055, 0.83664, 0.06626, 0.75682, 0.08854, 0.68766, 0.11527, 0.60468, 0.13788, 0.53451, 0.35753, 0.0375, 0.43128, 0.0375, 0.52161, 0.0375, 0.60662, 0.0375, - 0.67954, 0.0375, 0.54109, 0.5336, 0.30907, 0.53412, 0.75362, 0.52077, 0.84707, 0.51514, 0.2081, 0.53435, 0.42115, 0.53387, 0.64269, 0.52747, 0.1892, 0.60156, 0.3018, 0.60447, - 0.41972, 0.60346, 0.54053, 0.60135, 0.64648, 0.59785, 0.76151, 0.59644, 0.87262, 0.58988, 0.16806, 0.67676, 0.29497, 0.67061, 0.41838, 0.66857, 0.54, 0.66508, 0.65011, 0.66538, - 0.7681, 0.65967, 0.89666, 0.66021, 0.14733, 0.75044, 0.28705, 0.74721, 0.41688, 0.74143, 0.53942, 0.73556, 0.6538, 0.73393, 0.7757, 0.7326, 0.91933, 0.7265, 0.12337, 0.83566, 0.2782, - 0.83283, 0.4151, 0.82771, 0.53871, 0.82207, 0.65852, 0.82169, 0.7847, 0.8189, 0.95379, 0.82732, 0.97627, 0.89309, 0.79208, 0.88971, 0.66236, 0.89294, 0.5381, 0.89586, 0.41375, - 0.89349, 0.2717, 0.89571, 0.10571, 0.89844, 0.53197, 0.30141, 0.39415, 0.1884, 0.65961, 0.2117, 0.25473, 0.53425, 0.24202, 0.60293, 0.22911, 0.6738, 0.21379, 0.7489, 0.19729, - 0.83431, 0.18704, 0.8971, 0.36352, 0.534, 0.36013, 0.60397, 0.35748, 0.66957, 0.35288, 0.74428, 0.34802, 0.83022, 0.34383, 0.89458, 0.48024, 0.53373, 0.47847, 0.60244, 0.47433, - 0.66696, 0.47563, 0.73861, 0.47402, 0.82502, 0.47337, 0.89463, 0.58955, 0.53067, 0.59344, 0.5996, 0.59605, 0.66523, 0.5961, 0.73475, 0.60032, 0.82187, 0.60296, 0.89434, 0.69391, - 0.52438, 0.69915, 0.59721, 0.70691, 0.66263, 0.71206, 0.7333, 0.71954, 0.82034, 0.72813, 0.8913, 0.80125, 0.5179, 0.81428, 0.59333, 0.8348, 0.65995, 0.84793, 0.72953, 0.87862, - 0.82358, 0.89305, 0.89156, 0.19669, 0.67537, 0.17782, 0.74974, 0.1594, 0.835, 0.1429, 0.89783, 0.26012, 0.6723, 0.25017, 0.74806, 0.23685, 0.83359, 0.22589, 0.89647, 0.30659, - 0.89517, 0.3131, 0.83153, 0.31569, 0.74593, 0.32231, 0.67016, 0.38717, 0.66908, 0.38553, 0.74282, 0.38068, 0.829, 0.37648, 0.89407, 0.44462, 0.89408, 0.44322, 0.82643, 0.44458, - 0.7401, 0.44621, 0.66777, 0.50711, 0.66602, 0.50646, 0.73714, 0.50582, 0.82357, 0.50482, 0.89523, 0.57134, 0.89508, 0.5687, 0.82197, 0.56865, 0.73514, 0.5654, 0.66515, 0.62192, - 0.6653, 0.6236, 0.73436, 0.62525, 0.8218, 0.62839, 0.89374, 0.69427, 0.89215, 0.76244, 0.89045, 0.84047, 0.89059, 0.93306, 0.89229, 0.91732, 0.8255, 0.82617, 0.82097, 0.75013, - 0.81967, 0.6863, 0.82108, 0.68017, 0.73364, 0.74166, 0.73297, 0.80979, 0.73115, 0.88285, 0.72805, 0.86581, 0.66008, 0.79931, 0.6598, 0.73613, 0.66121, 0.67214, 0.66431, 0.09776, - 0.92671, 0.13724, 0.92534, 0.1817, 0.92459, 0.22313, 0.92439, 0.26892, 0.92268, 0.30526, 0.92265, 0.34139, 0.92236, 0.3751, 0.92252, 0.41313, 0.92351, 0.44464, 0.92289, 0.47339, - 0.92339, 0.5044, 0.9248, 0.53787, 0.92389, 0.57268, 0.92341, 0.60366, 0.9233, 0.62995, 0.92432, 0.66398, 0.92316, 0.69464, 0.92383, 0.73085, 0.92333, 0.76403, 0.92521, 0.79572, - 0.92461, 0.84011, 0.92404, 0.89075, 0.92209, 0.92774, 0.92274, 0.96706, 0.92576 - ], - "triangles": [ - 8, 196, 7, 9, 195, 8, 8, 195, 196, 10, 194, 9, 9, 194, 195, 10, 11, 194, 12, 193, 11, 11, 193, 194, 13, 192, 12, 12, 192, 193, 14, 191, 13, 13, 191, 192, 15, 190, 14, 14, 190, 191, - 15, 189, 190, 191, 158, 192, 192, 80, 193, 192, 158, 80, 194, 193, 159, 194, 159, 195, 159, 193, 80, 189, 157, 190, 190, 118, 191, 190, 157, 118, 191, 118, 158, 189, 81, 157, 195, - 124, 196, 196, 124, 160, 195, 159, 124, 81, 164, 157, 81, 76, 164, 157, 117, 118, 157, 164, 117, 159, 123, 124, 124, 123, 161, 118, 163, 158, 118, 117, 163, 80, 162, 159, 159, 162, - 123, 158, 77, 80, 158, 163, 77, 80, 77, 162, 162, 122, 123, 76, 165, 164, 76, 69, 165, 164, 116, 117, 164, 165, 116, 77, 167, 162, 117, 166, 163, 117, 116, 166, 163, 70, 77, 163, - 166, 70, 77, 70, 167, 165, 115, 116, 116, 171, 166, 166, 63, 70, 146, 103, 145, 68, 61, 152, 68, 145, 61, 151, 152, 109, 110, 153, 154, 143, 144, 104, 16, 189, 15, 17, 188, 16, 16, - 188, 189, 18, 187, 17, 17, 187, 188, 18, 19, 186, 19, 185, 186, 18, 186, 187, 20, 184, 19, 19, 184, 185, 20, 21, 184, 22, 183, 21, 21, 183, 184, 23, 181, 22, 181, 182, 22, 22, 182, - 183, 184, 148, 185, 184, 183, 148, 187, 156, 188, 188, 81, 189, 188, 156, 81, 185, 149, 186, 185, 82, 149, 185, 148, 82, 182, 83, 141, 182, 181, 83, 186, 112, 187, 186, 149, 112, - 182, 106, 183, 183, 106, 148, 187, 112, 156, 182, 141, 106, 150, 149, 82, 147, 75, 82, 82, 148, 147, 82, 75, 150, 106, 105, 148, 148, 105, 147, 149, 111, 112, 149, 150, 111, 105, - 106, 142, 112, 155, 156, 112, 111, 155, 83, 74, 141, 74, 142, 141, 106, 141, 142, 156, 76, 81, 156, 155, 76, 74, 67, 142, 142, 143, 105, 142, 67, 143, 105, 104, 147, 105, 143, 104, - 147, 146, 75, 147, 104, 146, 75, 68, 150, 75, 146, 68, 68, 151, 150, 150, 110, 111, 150, 151, 110, 111, 154, 155, 111, 110, 154, 155, 69, 76, 155, 154, 69, 104, 103, 146, 146, 145, - 68, 68, 152, 151, 151, 109, 110, 24, 180, 23, 25, 179, 24, 24, 179, 180, 26, 178, 25, 25, 178, 179, 27, 177, 26, 26, 177, 178, 28, 176, 27, 27, 176, 177, 29, 175, 28, 28, 175, 176, - 30, 174, 29, 29, 174, 175, 31, 173, 30, 30, 173, 174, 174, 128, 175, 174, 85, 128, 175, 94, 176, 175, 128, 94, 176, 132, 177, 176, 94, 132, 180, 140, 181, 177, 84, 178, 177, 132, 84, - 178, 133, 179, 178, 84, 133, 179, 100, 180, 180, 100, 140, 179, 133, 100, 128, 127, 94, 94, 93, 132, 94, 127, 93, 132, 131, 84, 132, 93, 131, 84, 73, 133, 84, 131, 73, 133, 134, 100, - 133, 73, 134, 100, 99, 140, 100, 134, 99, 140, 139, 83, 140, 99, 139, 93, 92, 131, 131, 130, 73, 131, 92, 130, 73, 66, 134, 73, 130, 66, 134, 135, 99, 134, 66, 135, 99, 98, 139, 99, - 135, 98, 139, 138, 74, 139, 98, 138, 74, 138, 67, 130, 129, 66, 66, 59, 135, 135, 136, 98, 135, 59, 136, 98, 97, 138, 98, 136, 97, 138, 137, 67, 23, 180, 181, 181, 140, 83, 83, 139, - 74, 128, 72, 127, 127, 126, 93, 93, 126, 92, 126, 125, 92, 85, 34, 72, 168, 64, 71, 168, 169, 64, 65, 58, 126, 126, 58, 125, 59, 52, 136, 69, 172, 165, 165, 172, 115, 116, 115, 171, - 154, 62, 69, 120, 170, 56, 65, 36, 58, 58, 51, 125, 37, 38, 51, 51, 48, 90, 51, 38, 48, 78, 3, 4, 64, 169, 57, 121, 120, 57, 120, 47, 57, 67, 137, 60, 143, 60, 144, 144, 103, 104, - 110, 109, 153, 154, 153, 62, 69, 62, 172, 97, 136, 96, 97, 96, 137, 96, 136, 52, 60, 137, 53, 60, 53, 144, 53, 137, 96, 103, 144, 102, 103, 102, 145, 102, 144, 53, 61, 145, 54, 172, - 62, 55, 55, 62, 153, 152, 108, 109, 55, 153, 108, 153, 109, 108, 61, 54, 152, 152, 54, 108, 54, 145, 102, 172, 114, 115, 172, 55, 114, 115, 114, 171, 171, 114, 56, 90, 89, 52, 52, - 45, 96, 52, 89, 45, 96, 95, 53, 96, 45, 95, 53, 49, 102, 53, 95, 49, 90, 48, 89, 102, 101, 54, 102, 49, 101, 54, 44, 108, 44, 107, 108, 54, 101, 44, 55, 108, 50, 108, 107, 50, 55, - 113, 114, 55, 50, 113, 114, 46, 56, 114, 113, 46, 56, 119, 120, 56, 46, 119, 120, 119, 47, 57, 47, 0, 87, 48, 38, 87, 89, 48, 87, 45, 89, 87, 95, 45, 49, 95, 86, 87, 38, 39, 101, 49, - 86, 87, 86, 95, 101, 86, 44, 41, 87, 40, 87, 41, 86, 44, 86, 107, 107, 86, 50, 50, 86, 113, 46, 113, 88, 119, 46, 88, 47, 119, 88, 86, 88, 113, 47, 88, 0, 0, 88, 43, 88, 41, 42, 88, - 86, 41, 88, 42, 43, 87, 39, 40, 57, 0, 1, 1, 64, 57, 64, 1, 2, 71, 2, 3, 58, 37, 51, 36, 37, 58, 91, 51, 90, 35, 36, 65, 125, 51, 91, 34, 35, 72, 72, 35, 65, 33, 34, 85, 169, 121, - 57, 171, 56, 63, 170, 63, 56, 138, 97, 137, 67, 60, 143, 59, 129, 52, 52, 129, 90, 71, 64, 2, 3, 78, 71, 78, 161, 71, 91, 90, 129, 170, 120, 121, 122, 121, 169, 161, 168, 71, 92, - 125, 91, 72, 65, 127, 127, 65, 126, 122, 169, 168, 92, 91, 130, 130, 91, 129, 123, 122, 168, 166, 171, 63, 70, 170, 167, 70, 63, 170, 167, 121, 122, 167, 170, 121, 66, 129, 59, 85, - 32, 33, 173, 85, 174, 31, 32, 173, 173, 32, 85, 85, 72, 128, 6, 197, 79, 162, 167, 122, 7, 197, 6, 160, 161, 78, 197, 160, 79, 196, 160, 197, 7, 196, 197, 124, 161, 160, 160, 78, 79, - 123, 168, 161, 6, 79, 5, 79, 78, 4, 79, 4, 5 - ], - "vertices": [ - 1, 31, 39.72, 33.4, 1, 1, 31, 46.93, 34.38, 1, 1, 31, 52.37, 35.12, 1, 1, 31, 58.6, 36.08, 1, 4, 31, 66.62, 38.45, 0.9295, 36, 61.48, 0.37, 1e-05, 37, 40.07, 0.48, 0.00266, 38, 18.6, - 0.48, 0.06784, 4, 31, 70.87, 39.07, 0.79905, 36, 62.32, -3.84, 1e-05, 37, 40.92, -3.73, 0.00721, 38, 19.44, -3.73, 0.19373, 4, 31, 76.95, 40.59, 0.74731, 36, 64.15, -9.83, 0, 37, - 42.75, -9.72, 0.00973, 38, 21.27, -9.72, 0.24296, 4, 31, 76.59, 36.12, 0.54785, 36, 59.68, -9.71, 1e-05, 37, 38.27, -9.6, 0.02168, 38, 16.8, -9.6, 0.43046, 4, 31, 76.3, 32.42, - 0.43038, 36, 55.96, -9.61, 3e-05, 37, 34.56, -9.5, 0.03847, 38, 13.08, -9.5, 0.53112, 4, 31, 76.02, 29.01, 0.36035, 36, 52.54, -9.51, 9e-05, 37, 31.14, -9.41, 0.06275, 38, 9.66, - -9.41, 0.57681, 4, 31, 75.63, 24.06, 0.2889, 36, 47.58, -9.38, 0.00026, 37, 26.17, -9.27, 0.09917, 38, 4.7, -9.27, 0.61167, 4, 31, 75.3, 19.93, 0.22591, 36, 43.44, -9.26, 0.0007, 37, - 22.03, -9.16, 0.14876, 38, 0.56, -9.16, 0.62463, 4, 31, 75.15, 17.12, 0.17724, 36, 40.62, -9.26, 0.0017, 37, 19.22, -9.16, 0.21115, 38, -2.26, -9.16, 0.60991, 4, 31, 75.01, 14.5, - 0.14418, 36, 38, -9.26, 0.00385, 37, 16.6, -9.16, 0.28407, 38, -4.88, -9.16, 0.5679, 4, 31, 74.84, 11.26, 0.12448, 36, 34.76, -9.26, 0.00813, 37, 13.35, -9.16, 0.36326, 38, -8.12, - -9.16, 0.50413, 4, 31, 74.71, 8.86, 0.11438, 36, 32.35, -9.26, 0.016, 37, 10.95, -9.16, 0.44276, 38, -10.53, -9.16, 0.42686, 4, 31, 74.56, 6.02, 0.11006, 36, 29.51, -9.26, 0.02948, - 37, 8.11, -9.16, 0.51561, 38, -13.37, -9.16, 0.34486, 4, 31, 74.45, 3.76, 0.10858, 36, 27.25, -9.26, 0.05095, 37, 5.84, -9.16, 0.57474, 38, -15.63, -9.16, 0.26573, 4, 31, 74.31, - 1.27, 0.10802, 36, 24.75, -9.26, 0.08291, 37, 3.35, -9.16, 0.614, 38, -18.13, -9.16, 0.19506, 4, 31, 74.15, -1.8, 0.1074, 36, 21.68, -9.26, 0.12742, 37, 0.28, -9.16, 0.62906, 38, - -21.2, -9.16, 0.13612, 4, 31, 74.01, -4.59, 0.10634, 36, 18.89, -9.26, 0.18549, 37, -2.52, -9.16, 0.61812, 38, -23.99, -9.16, 0.09006, 4, 31, 73.87, -7.11, 0.10502, 36, 16.36, -9.26, - 0.25646, 37, -5.05, -9.16, 0.58221, 38, -26.52, -9.16, 0.05631, 4, 31, 73.75, -9.5, 0.10419, 36, 13.97, -9.26, 0.33753, 37, -7.43, -9.16, 0.52513, 38, -28.91, -9.16, 0.03316, 4, 31, - 73.61, -12.18, 0.10536, 36, 11.29, -9.26, 0.42349, 37, -10.12, -9.16, 0.45282, 38, -31.59, -9.16, 0.01833, 4, 31, 73.44, -15.42, 0.11098, 36, 8.04, -9.26, 0.50701, 37, -13.37, -9.16, - 0.37254, 38, -34.84, -9.16, 0.00948, 4, 31, 73.28, -18.35, 0.12436, 36, 5.11, -9.26, 0.57939, 37, -16.3, -9.16, 0.29168, 38, -37.77, -9.16, 0.00457, 4, 31, 73.13, -21.21, 0.149, 36, - 2.24, -9.26, 0.63222, 37, -19.16, -9.16, 0.21673, 38, -40.64, -9.16, 0.00205, 4, 31, 72.96, -24.4, 0.18726, 36, -0.96, -9.26, 0.65948, 37, -22.36, -9.16, 0.15241, 38, -43.84, -9.16, - 0.00085, 4, 31, 72.77, -28.17, 0.23866, 36, -4.73, -9.26, 0.65975, 37, -26.13, -9.16, 0.10126, 38, -47.61, -9.16, 0.00033, 4, 31, 72.57, -31.9, 0.29871, 36, -8.46, -9.26, 0.63741, - 37, -29.87, -9.16, 0.06376, 38, -51.34, -9.16, 0.00012, 4, 31, 72.37, -35.61, 0.35932, 36, -12.18, -9.26, 0.60181, 37, -33.58, -9.16, 0.03884, 38, -55.06, -9.16, 4e-05, 4, 31, 72.19, - -39.08, 0.49297, 36, -15.66, -9.26, 0.48586, 37, -37.06, -9.16, 0.02116, 38, -58.54, -9.16, 1e-05, 4, 31, 71.81, -46.35, 0.66969, 36, -22.93, -9.26, 0.32512, 37, -44.34, -9.16, - 0.00518, 38, -65.81, -9.16, 0, 4, 31, 66.73, -44.35, 0.73638, 36, -21.2, -4.09, 0.26049, 37, -42.61, -3.98, 0.00313, 38, -64.08, -3.98, 0, 4, 31, 61.93, -42.46, 0.74288, 36, -19.57, - 0.8, 0.25402, 37, -40.97, 0.91, 0.00309, 38, -62.45, 0.91, 1e-05, 2, 31, 55.67, -40, 0.86, 36, -17.44, 7.19, 0.14, 2, 31, 50.24, -37.86, 0.87418, 36, -15.59, 12.72, 0.12582, 1, 31, - 43.72, -35.29, 1, 1, 31, 38.22, -33.12, 1, 2, 31, -0.53, -12.83, 0.99965, 36, 6.74, 64.74, 0.00035, 2, 31, -0.21, -6.72, 0.9998, 36, 12.86, 64.74, 0.0002, 3, 31, 0.19, 0.77, 0.99981, - 36, 20.36, 64.74, 9e-05, 38, -22.52, 64.84, 0.0001, 3, 31, 0.56, 7.82, 0.99975, 36, 27.41, 64.74, 1e-05, 38, -15.47, 64.84, 0.00024, 2, 31, 0.88, 13.86, 0.99954, 38, -9.41, 64.84, - 0.00046, 4, 31, 39.9, 0.3, 0.88429, 36, 21.98, 25.05, 0.02526, 37, 0.57, 25.15, 0.06552, 38, -20.9, 25.15, 0.02493, 1, 31, 38.93, -18.93, 1, 4, 31, 39.81, 17.97, 0.94373, 36, 39.62, - 26.07, 0.00089, 37, 18.21, 26.18, 0.01419, 38, -3.26, 26.18, 0.04119, 1, 31, 39.76, 25.74, 1, 1, 31, 38.51, -27.3, 1, 4, 31, 39.4, -9.64, 0.88619, 36, 12.02, 25.03, 0.05505, 37, - -9.38, 25.13, 0.05102, 38, -30.86, 25.13, 0.00774, 4, 31, 39.86, 8.75, 0.89286, 36, 30.41, 25.54, 0.00746, 37, 9, 25.64, 0.04877, 38, -12.47, 25.64, 0.05092, 1, 31, 43.8, -29.15, 1, - 4, 31, 44.52, -19.83, 0.74343, 36, 2.11, 19.38, 0.19678, 37, -19.29, 19.48, 0.05726, 38, -40.77, 19.48, 0.00254, 4, 31, 44.96, -10.05, 0.58833, 36, 11.9, 19.46, 0.20061, 37, -9.5, - 19.56, 0.19026, 38, -30.98, 19.56, 0.0208, 4, 31, 45.31, -0.03, 0.58846, 36, 21.93, 19.63, 0.08112, 37, 0.53, 19.73, 0.24909, 38, -20.95, 19.73, 0.08133, 4, 31, 45.5, 8.76, 0.59817, - 36, 30.72, 19.91, 0.02026, 37, 9.32, 20.01, 0.18761, 38, -12.16, 20.01, 0.19395, 4, 31, 45.89, 18.3, 0.66183, 36, 40.27, 20.02, 0.00346, 37, 18.87, 20.13, 0.07957, 38, -2.61, 20.13, - 0.25514, 1, 31, 45.85, 27.54, 1, 4, 31, 49.71, -31.22, 0.84023, 36, -8.99, 13.6, 0.15068, 37, -30.39, 13.7, 0.00899, 38, -51.87, 13.7, 0.0001, 4, 31, 49.78, -20.68, 0.48016, 36, - 1.55, 14.09, 0.41733, 37, -19.86, 14.19, 0.10062, 38, -41.33, 14.19, 0.0019, 4, 31, 50.15, -10.44, 0.42576, 36, 11.79, 14.25, 0.28082, 37, -9.61, 14.36, 0.27628, 38, -31.09, 14.36, - 0.01714, 4, 31, 50.4, -0.34, 0.43345, 36, 21.89, 14.53, 0.09343, 37, 0.48, 14.63, 0.37698, 38, -20.99, 14.63, 0.09613, 4, 31, 50.91, 8.78, 0.43708, 36, 31.02, 14.51, 0.01603, 37, - 9.62, 14.61, 0.27127, 38, -11.86, 14.61, 0.27562, 4, 31, 50.97, 18.59, 0.51068, 36, 40.82, 14.96, 0.00179, 37, 19.41, 15.07, 0.09933, 38, -2.06, 15.07, 0.3882, 4, 31, 51.57, 29.24, - 0.94195, 36, 51.49, 14.92, 4e-05, 37, 30.08, 15.02, 0.00385, 38, 8.61, 15.02, 0.05416, 4, 31, 55.51, -33.25, 0.72549, 36, -10.71, 7.7, 0.2621, 37, -32.11, 7.81, 0.01235, 38, -53.59, - 7.81, 6e-05, 4, 31, 55.86, -21.65, 0.38729, 36, 0.89, 7.96, 0.4981, 37, -20.51, 8.06, 0.11341, 38, -41.99, 8.06, 0.0012, 4, 31, 55.96, -10.87, 0.32692, 36, 11.67, 8.42, 0.3274, 37, - -9.74, 8.53, 0.32983, 38, -31.21, 8.53, 0.01585, 4, 31, 56.03, -0.69, 0.33677, 36, 21.84, 8.89, 0.10146, 37, 0.43, 9, 0.45593, 38, -21.04, 9, 0.10584, 4, 31, 56.4, 8.8, 0.33839, 36, - 31.33, 9.02, 0.0144, 37, 9.93, 9.13, 0.32329, 38, -11.55, 9.13, 0.32392, 4, 31, 57.13, 19.32, 0.42143, 36, 41.87, 8.84, 0.00109, 37, 20.47, 8.95, 0.11176, 38, -1.01, 8.95, 0.46572, - 4, 31, 58.69, 31.45, 0.79569, 36, 54.07, 7.92, 5e-05, 37, 32.67, 8.03, 0.01091, 38, 11.19, 8.03, 0.19335, 4, 31, 62.21, -35.59, 0.66085, 36, -12.7, 0.88, 0.32566, 37, -34.1, 0.99, - 0.01346, 38, -55.58, 0.99, 3e-05, 4, 31, 62.66, -22.75, 0.31024, 36, 0.16, 1.11, 0.56299, 37, -21.25, 1.21, 0.12589, 38, -42.72, 1.21, 0.00089, 4, 31, 62.85, -11.38, 0.24349, 36, - 11.52, 1.52, 0.36477, 37, -9.89, 1.62, 0.37599, 38, -31.36, 1.62, 0.01574, 4, 31, 62.94, -1.11, 0.2525, 36, 21.78, 1.97, 0.10936, 37, 0.37, 2.08, 0.52284, 38, -21.1, 2.08, 0.1153, 4, - 31, 63.43, 8.82, 0.2544, 36, 31.72, 2, 0.01401, 37, 10.32, 2.11, 0.36809, 38, -11.16, 2.11, 0.3635, 4, 31, 63.63, 19.58, 0.3466, 36, 42.48, 2.36, 0.00077, 37, 21.07, 2.47, 0.1237, - 38, -0.4, 2.47, 0.52893, 4, 31, 65.17, 33.27, 0.69411, 36, 56.23, 1.55, 3e-05, 37, 34.83, 1.66, 0.01435, 38, 13.35, 1.66, 0.29151, 4, 31, 70.52, 34.86, 0.61986, 36, 58.1, -3.71, - 1e-05, 37, 36.69, -3.61, 0.01658, 38, 15.22, -3.61, 0.36355, 4, 31, 69.45, 19.61, 0.28549, 36, 42.81, -3.44, 0.00065, 37, 21.4, -3.34, 0.13463, 38, -0.07, -3.34, 0.57924, 4, 31, - 69.14, 8.84, 0.18483, 36, 32.04, -3.7, 0.01432, 37, 10.64, -3.59, 0.40541, 38, -10.84, -3.59, 0.39544, 4, 31, 68.83, -1.47, 0.18141, 36, 21.73, -3.93, 0.11681, 37, 0.32, -3.83, - 0.57764, 38, -21.15, -3.83, 0.12413, 4, 31, 68.1, -11.77, 0.17479, 36, 11.41, -3.74, 0.39444, 37, -10, -3.64, 0.41447, 38, -31.47, -3.64, 0.0163, 4, 31, 67.66, -23.55, 0.24784, 36, - -0.38, -3.92, 0.61396, 37, -21.79, -3.82, 0.13743, 38, -43.26, -3.82, 0.00077, 4, 31, 67.15, -37.32, 0.59732, 36, -14.16, -4.14, 0.38768, 37, -35.56, -4.03, 0.01499, 38, -57.04, - -4.03, 1e-05, 4, 31, 21.31, 0.52, 0.98403, 36, 21.22, 43.62, 0.00516, 37, -0.19, 43.73, 0.00609, 38, -21.66, 43.73, 0.00473, 3, 31, 11.68, -10.43, 0.98457, 36, 9.78, 52.66, 0.01421, - 37, -11.62, 52.77, 0.00123, 3, 31, 14.7, 11.48, 0.98807, 37, 10.41, 50.91, 0.00101, 38, -11.07, 50.91, 0.01092, 1, 31, 38.71, -23.44, 1, 4, 31, 44.14, -24.78, 0.93122, 36, -2.85, - 19.5, 0.05888, 37, -24.25, 19.61, 0.00959, 38, -45.73, 19.61, 0.0003, 4, 31, 49.74, -26.15, 0.67882, 36, -3.92, 13.83, 0.287, 37, -25.32, 13.94, 0.03374, 38, -46.8, 13.94, 0.00045, - 4, 31, 55.68, -27.73, 0.52353, 36, -5.19, 7.82, 0.4314, 37, -26.59, 7.93, 0.04479, 38, -48.07, 7.93, 0.00029, 4, 31, 62.43, -29.46, 0.41464, 36, -6.56, 0.99, 0.53292, 37, -27.96, - 1.1, 0.05226, 38, -49.44, 1.1, 0.00018, 4, 31, 67.4, -30.57, 0.35706, 36, -7.41, -4.03, 0.58638, 37, -28.81, -3.93, 0.05644, 38, -50.29, -3.93, 0.00012, 4, 31, 39.16, -14.42, - 0.88311, 36, 7.24, 25.02, 0.07338, 37, -14.17, 25.12, 0.03978, 38, -35.64, 25.12, 0.00372, 4, 31, 44.74, -15, 0.62555, 36, 6.96, 19.42, 0.24007, 37, -14.45, 19.52, 0.1259, 38, - -35.92, 19.52, 0.00848, 4, 31, 49.97, -15.49, 0.4342, 36, 6.74, 14.17, 0.37611, 37, -14.67, 14.27, 0.18375, 38, -36.14, 14.27, 0.00595, 4, 31, 55.91, -16.19, 0.33684, 36, 6.35, 8.19, - 0.44427, 37, -15.05, 8.3, 0.21425, 38, -36.53, 8.3, 0.00464, 4, 31, 62.76, -16.95, 0.25537, 36, 5.95, 1.32, 0.49872, 37, -15.45, 1.42, 0.24179, 38, -36.93, 1.42, 0.00413, 4, 31, - 67.88, -17.57, 0.18921, 36, 5.6, -3.83, 0.54119, 37, -15.8, -3.73, 0.26556, 38, -37.28, -3.73, 0.00404, 4, 31, 39.65, -4.74, 0.83361, 36, 16.93, 25.04, 0.05679, 37, -4.48, 25.14, - 0.08927, 38, -25.95, 25.14, 0.02033, 4, 31, 45.13, -5.18, 0.57797, 36, 16.78, 19.54, 0.13938, 37, -4.63, 19.65, 0.23843, 38, -26.1, 19.65, 0.04422, 4, 31, 50.27, -5.8, 0.42696, 36, - 16.43, 14.38, 0.17737, 37, -4.97, 14.48, 0.35156, 38, -26.45, 14.48, 0.04411, 4, 31, 56, -5.99, 0.33132, 36, 16.54, 8.65, 0.20059, 37, -4.86, 8.75, 0.42277, 38, -26.34, 8.75, - 0.04531, 4, 31, 62.89, -6.48, 0.24781, 36, 16.41, 1.73, 0.22055, 37, -4.99, 1.84, 0.48389, 38, -26.47, 1.84, 0.04775, 4, 31, 68.45, -6.83, 0.17763, 36, 16.35, -3.83, 0.23735, 37, - -5.05, -3.73, 0.53429, 38, -26.53, -3.73, 0.05074, 4, 31, 39.88, 4.33, 0.83746, 36, 26, 25.28, 0.02009, 37, 4.59, 25.39, 0.08772, 38, -16.88, 25.39, 0.05473, 4, 31, 45.41, 4.36, - 0.58276, 36, 26.32, 19.77, 0.04346, 37, 4.92, 19.87, 0.23645, 38, -16.56, 19.87, 0.13732, 4, 31, 50.66, 4.3, 0.43226, 36, 26.54, 14.52, 0.04191, 37, 5.13, 14.62, 0.34769, 38, -16.34, - 14.62, 0.17814, 4, 31, 56.21, 4.01, 0.33656, 36, 26.54, 8.96, 0.0422, 37, 5.14, 9.06, 0.41771, 38, -16.34, 9.06, 0.20353, 4, 31, 63.19, 4, 0.25264, 36, 26.89, 1.99, 0.04384, 37, - 5.49, 2.09, 0.47782, 38, -15.99, 2.09, 0.2257, 4, 31, 68.99, 3.91, 0.18189, 36, 27.11, -3.81, 0.04615, 37, 5.71, -3.71, 0.52741, 38, -15.77, -3.71, 0.24456, 4, 31, 39.83, 13, 0.8608, - 36, 34.66, 25.79, 0.00457, 37, 13.26, 25.89, 0.04889, 38, -8.22, 25.89, 0.08574, 4, 31, 45.67, 13.13, 0.60926, 36, 35.09, 19.96, 0.00894, 37, 13.69, 20.06, 0.13479, 38, -7.79, 20.06, - 0.247, 4, 31, 50.93, 13.5, 0.45377, 36, 35.74, 14.73, 0.00554, 37, 14.33, 14.83, 0.18027, 38, -7.14, 14.83, 0.36041, 4, 31, 56.75, 13.83, 0.35749, 36, 36.37, 8.94, 0.00417, 37, - 14.96, 9.04, 0.20976, 38, -6.51, 9.04, 0.42858, 4, 31, 63.53, 14.02, 0.27612, 36, 36.92, 2.18, 0.00359, 37, 15.52, 2.28, 0.23625, 38, -5.96, 2.28, 0.48404, 4, 31, 69.3, 14.3, - 0.20954, 36, 37.5, -3.57, 0.00344, 37, 16.1, -3.46, 0.25903, 38, -5.38, -3.46, 0.52799, 1, 31, 39.78, 21.93, 1, 4, 31, 45.87, 22.69, 0.82489, 36, 44.65, 20.27, 0.00083, 37, 23.25, - 20.37, 0.0268, 38, 1.77, 20.37, 0.14748, 4, 31, 51.28, 24.11, 0.64773, 36, 46.35, 14.94, 0.00052, 37, 24.95, 15.04, 0.04091, 38, 3.47, 15.04, 0.31084, 4, 31, 57.92, 25.42, 0.53225, - 36, 48.01, 8.38, 0.00029, 37, 26.6, 8.49, 0.04857, 38, 5.13, 8.49, 0.41889, 4, 31, 64.49, 27.19, 0.46955, 36, 50.12, 1.91, 0.00016, 37, 28.71, 2.02, 0.05201, 38, 7.24, 2.02, 0.47828, - 4, 31, 70.04, 27.97, 0.41589, 36, 51.19, -3.59, 0.0001, 37, 29.78, -3.48, 0.05591, 38, 8.31, -3.48, 0.5281, 4, 31, 49.73, -28.84, 0.72647, 36, -6.61, 13.71, 0.25381, 37, -28.01, - 13.81, 0.01954, 38, -49.49, 13.81, 0.00018, 4, 31, 55.59, -30.72, 0.64422, 36, -8.18, 7.76, 0.33291, 37, -29.58, 7.86, 0.02275, 38, -51.06, 7.86, 0.00011, 4, 31, 62.32, -32.6, - 0.55448, 36, -9.7, 0.94, 0.41902, 37, -31.11, 1.04, 0.02643, 38, -52.58, 1.04, 7e-05, 4, 31, 67.27, -34.24, 0.44397, 36, -11.07, -4.09, 0.52396, 37, -32.48, -3.99, 0.03202, 38, - -53.95, -3.99, 4e-05, 4, 31, 49.76, -23.57, 0.5094, 36, -1.34, 13.95, 0.4213, 37, -22.75, 14.06, 0.06847, 38, -44.22, 14.06, 0.00083, 4, 31, 55.77, -24.72, 0.42549, 36, -2.17, 7.89, - 0.49746, 37, -23.57, 8, 0.07648, 38, -45.05, 8, 0.00057, 4, 31, 62.54, -26.18, 0.35688, 36, -3.28, 1.05, 0.55926, 37, -24.68, 1.15, 0.08347, 38, -46.16, 1.15, 0.00039, 4, 31, 67.52, - -27.35, 0.29772, 36, -4.19, -3.98, 0.61133, 37, -25.59, -3.88, 0.09064, 38, -47.07, -3.88, 0.00031, 4, 31, 67.77, -20.66, 0.21136, 36, 2.51, -3.88, 0.59029, 37, -18.89, -3.77, - 0.19654, 38, -40.37, -3.77, 0.00182, 4, 31, 62.71, -19.85, 0.275, 36, 3.05, 1.21, 0.54348, 37, -18.35, 1.32, 0.17958, 38, -39.83, 1.32, 0.00194, 4, 31, 55.88, -19.28, 0.35002, 36, - 3.27, 8.06, 0.48643, 37, -18.14, 8.17, 0.16123, 38, -39.61, 8.17, 0.00232, 4, 31, 49.86, -18.41, 0.41881, 36, 3.82, 14.12, 0.43213, 37, -17.59, 14.23, 0.1461, 38, -39.06, 14.23, - 0.00296, 4, 31, 50.06, -13.03, 0.39313, 36, 9.2, 14.21, 0.35299, 37, -12.2, 14.31, 0.24433, 38, -33.68, 14.31, 0.00955, 4, 31, 55.94, -13.47, 0.32258, 36, 9.06, 8.31, 0.39406, 37, - -12.34, 8.41, 0.27473, 38, -33.82, 8.41, 0.00863, 4, 31, 62.8, -14.24, 0.24476, 36, 8.66, 1.42, 0.43744, 37, -12.74, 1.52, 0.30953, 38, -34.22, 1.52, 0.00827, 4, 31, 67.98, -14.86, - 0.17804, 36, 8.31, -3.79, 0.47328, 37, -13.09, -3.69, 0.3403, 38, -34.57, -3.69, 0.00838, 4, 31, 68.28, -9.21, 0.17525, 36, 13.97, -3.79, 0.31355, 37, -7.43, -3.69, 0.48153, 38, - -28.91, -3.69, 0.02968, 4, 31, 62.87, -9.04, 0.24396, 36, 13.85, 1.62, 0.29088, 37, -7.55, 1.73, 0.43695, 38, -29.03, 1.73, 0.02821, 4, 31, 55.98, -8.57, 0.32275, 36, 13.97, 8.53, - 0.26435, 37, -7.44, 8.63, 0.38552, 38, -28.91, 8.63, 0.02739, 4, 31, 50.21, -8.13, 0.39269, 36, 14.1, 14.31, 0.24007, 37, -7.3, 14.42, 0.33961, 38, -28.78, 14.42, 0.02763, 4, 31, - 50.33, -3.07, 0.39835, 36, 19.16, 14.45, 0.13664, 37, -2.25, 14.56, 0.3972, 38, -23.72, 14.56, 0.06781, 4, 31, 56.01, -3.43, 0.32898, 36, 19.1, 8.76, 0.14701, 37, -2.3, 8.87, - 0.45281, 38, -23.78, 8.87, 0.07119, 4, 31, 62.92, -3.84, 0.24968, 36, 19.05, 1.85, 0.15947, 37, -2.36, 1.96, 0.51456, 38, -23.83, 1.96, 0.07629, 4, 31, 68.64, -4.23, 0.17972, 36, - 18.97, -3.88, 0.17094, 37, -2.44, -3.78, 0.56767, 38, -23.91, -3.78, 0.08167, 4, 31, 68.91, 1.29, 0.18179, 36, 24.49, -3.87, 0.07557, 37, 3.08, -3.77, 0.56385, 38, -18.39, -3.77, - 0.17879, 4, 31, 63.06, 1.38, 0.25204, 36, 24.27, 1.98, 0.07119, 37, 2.86, 2.08, 0.51118, 38, -18.61, 2.08, 0.16559, 4, 31, 56.13, 1.74, 0.33157, 36, 24.26, 8.92, 0.0672, 37, 2.86, - 9.03, 0.44995, 38, -18.62, 9.03, 0.15128, 4, 31, 50.52, 1.76, 0.40101, 36, 23.99, 14.52, 0.06478, 37, 2.59, 14.63, 0.39483, 38, -18.89, 14.63, 0.13938, 4, 31, 50.78, 6.45, 0.401, 36, - 28.68, 14.51, 0.0258, 37, 7.28, 14.62, 0.33427, 38, -14.2, 14.62, 0.23894, 4, 31, 56.3, 6.29, 0.3309, 36, 28.82, 8.99, 0.02514, 37, 7.42, 9.09, 0.37908, 38, -14.06, 9.09, 0.26488, 4, - 31, 63.29, 6.06, 0.25155, 36, 28.96, 1.99, 0.02548, 37, 7.56, 2.1, 0.4293, 38, -13.92, 2.1, 0.29367, 4, 31, 69.06, 6.02, 0.18206, 36, 29.22, -3.76, 0.02652, 37, 7.82, -3.66, 0.47284, - 38, -13.66, -3.66, 0.31858, 4, 31, 69.22, 11.49, 0.19245, 36, 34.69, -3.64, 0.00724, 37, 13.29, -3.53, 0.3321, 38, -8.19, -3.53, 0.46821, 4, 31, 69.38, 17.15, 0.23948, 36, 40.35, - -3.5, 0.00153, 37, 18.94, -3.39, 0.19195, 38, -2.53, -3.39, 0.56704, 4, 31, 69.73, 23.61, 0.346, 36, 46.82, -3.51, 0.00026, 37, 25.42, -3.41, 0.08922, 38, 3.94, -3.41, 0.56452, 4, - 31, 70.27, 31.28, 0.48407, 36, 54.51, -3.65, 4e-05, 37, 33.11, -3.54, 0.03358, 38, 11.63, -3.54, 0.48231, 4, 31, 64.84, 30.32, 0.54501, 36, 53.26, 1.73, 7e-05, 37, 31.86, 1.83, - 0.03077, 38, 10.38, 1.83, 0.42415, 4, 31, 64.01, 22.94, 0.40266, 36, 45.85, 2.16, 0.00034, 37, 24.45, 2.27, 0.08247, 38, 2.97, 2.27, 0.51452, 4, 31, 63.58, 16.63, 0.30287, 36, 39.53, - 2.26, 0.00168, 37, 18.13, 2.37, 0.17579, 38, -3.35, 2.37, 0.51965, 4, 31, 63.48, 11.19, 0.25994, 36, 34.09, 2.08, 0.00726, 37, 12.69, 2.19, 0.30245, 38, -8.79, 2.19, 0.43035, 4, 31, - 56.56, 11.07, 0.3382, 36, 33.61, 8.98, 0.00776, 37, 12.21, 9.09, 0.26884, 38, -9.27, 9.09, 0.38519, 4, 31, 56.93, 16.38, 0.37706, 36, 38.93, 8.89, 0.00208, 37, 17.52, 9, 0.15821, 38, - -3.95, 9, 0.46265, 4, 31, 57.5, 22.2, 0.46779, 36, 44.77, 8.63, 0.00052, 37, 23.36, 8.73, 0.07582, 38, 1.89, 8.73, 0.45586, 4, 31, 58.3, 28.37, 0.65325, 36, 50.97, 8.16, 0.00012, 37, - 29.57, 8.26, 0.02541, 38, 8.09, 8.26, 0.32123, 4, 31, 51.42, 26.68, 0.75526, 36, 48.93, 14.93, 0.00017, 37, 27.52, 15.03, 0.02002, 38, 6.05, 15.03, 0.22455, 4, 31, 51.11, 21.17, - 0.52586, 36, 43.41, 14.95, 0.00082, 37, 22, 15.06, 0.07106, 38, 0.53, 15.06, 0.40226, 4, 31, 50.95, 15.93, 0.44455, 36, 38.16, 14.84, 0.00273, 37, 16.76, 14.94, 0.1436, 38, -4.72, - 14.94, 0.40912, 4, 31, 50.92, 10.61, 0.40864, 36, 32.85, 14.59, 0.0088, 37, 11.45, 14.7, 0.23945, 38, -10.03, 14.7, 0.34311, 4, 31, 69.38, -38.1, 0.52059, 36, -14.82, -6.4, 0.45917, - 37, -36.22, -6.3, 0.02022, 38, -57.7, -6.3, 1e-05, 4, 31, 69.44, -34.82, 0.37517, 36, -11.54, -6.29, 0.58803, 37, -32.95, -6.19, 0.03676, 38, -54.42, -6.19, 4e-05, 4, 31, 69.57, - -31.13, 0.31655, 36, -7.85, -6.23, 0.62281, 37, -29.26, -6.13, 0.06054, 38, -50.73, -6.13, 0.00011, 4, 31, 69.74, -27.7, 0.25662, 36, -4.41, -6.22, 0.64624, 37, -25.82, -6.11, - 0.09684, 38, -47.29, -6.11, 0.0003, 4, 31, 69.8, -23.9, 0.20542, 36, -0.61, -6.08, 0.64718, 37, -22.02, -5.97, 0.14662, 38, -43.49, -5.97, 0.00077, 4, 31, 69.96, -20.88, 0.16774, 36, - 2.4, -6.08, 0.62093, 37, -19, -5.97, 0.20946, 38, -40.48, -5.97, 0.00187, 4, 31, 70.09, -17.89, 0.14406, 36, 5.4, -6.05, 0.56885, 37, -16, -5.95, 0.28288, 38, -37.48, -5.95, 0.00421, - 4, 31, 70.25, -15.09, 0.13169, 36, 8.2, -6.07, 0.49722, 37, -13.21, -5.96, 0.36227, 38, -34.68, -5.96, 0.00882, 4, 31, 70.5, -11.95, 0.12708, 36, 11.36, -6.14, 0.41453, 37, -10.05, - -6.04, 0.44117, 38, -31.52, -6.04, 0.01722, 4, 31, 70.58, -9.33, 0.12668, 36, 13.97, -6.1, 0.32958, 37, -7.43, -5.99, 0.51233, 38, -28.91, -5.99, 0.03141, 4, 31, 70.75, -6.95, - 0.12812, 36, 16.36, -6.14, 0.24965, 37, -5.05, -6.03, 0.56851, 38, -26.52, -6.03, 0.05372, 4, 31, 71, -4.39, 0.12979, 36, 18.93, -6.25, 0.1799, 37, -2.47, -6.14, 0.60387, 38, -23.95, - -6.14, 0.08644, 4, 31, 71.07, -1.61, 0.13105, 36, 21.71, -6.18, 0.12302, 37, 0.3, -6.07, 0.61461, 38, -21.17, -6.07, 0.13132, 4, 31, 71.18, 1.28, 0.13159, 36, 24.6, -6.14, 0.07962, - 37, 3.19, -6.03, 0.5998, 38, -18.28, -6.03, 0.18899, 4, 31, 71.31, 3.85, 0.13189, 36, 27.17, -6.13, 0.04862, 37, 5.76, -6.02, 0.56113, 38, -15.71, -6.02, 0.25837, 4, 31, 71.51, 6.02, - 0.13282, 36, 29.35, -6.21, 0.02792, 37, 7.95, -6.1, 0.50297, 38, -13.53, -6.1, 0.33629, 4, 31, 71.56, 8.85, 0.13637, 36, 32.18, -6.12, 0.01503, 37, 10.77, -6.01, 0.43134, 38, -10.7, - -6.01, 0.41726, 4, 31, 71.75, 11.39, 0.14539, 36, 34.72, -6.17, 0.00757, 37, 13.32, -6.07, 0.35328, 38, -8.16, -6.07, 0.49376, 4, 31, 71.87, 14.39, 0.16393, 36, 37.73, -6.13, - 0.00355, 37, 16.32, -6.03, 0.27561, 38, -5.15, -6.03, 0.55691, 4, 31, 72.16, 17.13, 0.19585, 36, 40.48, -6.28, 0.00155, 37, 19.08, -6.18, 0.20422, 38, -2.4, -6.18, 0.59837, 4, 31, - 72.25, 19.76, 0.24372, 36, 43.11, -6.23, 0.00063, 37, 21.71, -6.13, 0.14329, 38, 0.23, -6.13, 0.61235, 4, 31, 72.47, 23.82, 0.30631, 36, 47.17, -6.24, 0.00024, 37, 25.77, -6.14, - 0.09501, 38, 4.29, -6.14, 0.59844, 4, 31, 72.61, 28.41, 0.3775, 36, 51.77, -6.14, 9e-05, 37, 30.37, -6.03, 0.05972, 38, 8.89, -6.03, 0.5627, 4, 31, 72.88, 31.77, 0.44548, 36, 55.14, - -6.23, 3e-05, 37, 33.74, -6.13, 0.03652, 38, 12.26, -6.13, 0.51797, 4, 31, 73.38, 35.45, 0.56131, 36, 58.84, -6.53, 1e-05, 37, 37.44, -6.43, 0.02128, 38, 15.96, -6.43, 0.41739 - ], - "hull": 44, - "edges": [ - 78, 76, 86, 0, 78, 80, 80, 82, 82, 84, 84, 86, 0, 94, 76, 96, 62, 64, 74, 76, 102, 96, 74, 102, 104, 90, 106, 98, 108, 88, 110, 100, 112, 92, 114, 94, 2, 0, 114, 2, 72, 74, 116, 102, - 72, 116, 118, 104, 120, 106, 122, 108, 124, 110, 126, 112, 128, 114, 4, 2, 128, 4, 70, 72, 130, 116, 70, 130, 132, 118, 134, 120, 136, 122, 138, 124, 140, 126, 142, 128, 8, 6, 6, 4, - 142, 6, 68, 70, 144, 130, 68, 144, 146, 132, 148, 134, 150, 136, 152, 138, 154, 140, 156, 142, 156, 8, 8, 10, 10, 12, 12, 158, 158, 156, 10, 158, 160, 154, 162, 152, 164, 150, 166, - 148, 168, 146, 170, 144, 64, 66, 66, 68, 170, 66, 82, 172, 172, 88, 98, 172, 172, 100, 80, 174, 174, 90, 96, 174, 84, 176, 176, 92, 94, 176, 90, 178, 178, 96, 102, 180, 180, 104, - 178, 180, 180, 182, 182, 184, 184, 186, 186, 188, 90, 190, 190, 98, 104, 192, 192, 106, 190, 192, 192, 194, 194, 196, 196, 198, 198, 200, 88, 202, 202, 98, 106, 204, 204, 108, 202, - 204, 204, 206, 206, 208, 208, 210, 210, 212, 88, 214, 214, 100, 108, 216, 216, 110, 214, 216, 216, 218, 218, 220, 220, 222, 222, 224, 92, 226, 226, 100, 110, 228, 228, 112, 226, 228, - 228, 230, 230, 232, 232, 234, 234, 236, 92, 238, 238, 94, 112, 240, 240, 114, 238, 240, 240, 242, 242, 244, 244, 246, 246, 248, 12, 14, 170, 64, 116, 250, 250, 182, 130, 252, 252, - 184, 250, 252, 144, 254, 254, 186, 252, 254, 170, 256, 256, 188, 254, 256, 58, 60, 60, 62, 118, 258, 258, 182, 132, 260, 260, 184, 258, 260, 146, 262, 262, 186, 260, 262, 168, 264, - 264, 188, 262, 264, 54, 56, 56, 58, 50, 52, 52, 54, 168, 266, 266, 200, 146, 268, 268, 198, 266, 268, 132, 270, 270, 196, 268, 270, 118, 272, 272, 194, 270, 272, 120, 274, 274, 194, - 134, 276, 276, 196, 274, 276, 148, 278, 278, 198, 276, 278, 166, 280, 280, 200, 278, 280, 46, 48, 48, 50, 42, 44, 44, 46, 166, 282, 282, 212, 148, 284, 284, 210, 282, 284, 134, 286, - 286, 208, 284, 286, 120, 288, 288, 206, 286, 288, 122, 290, 290, 206, 136, 292, 292, 208, 290, 292, 150, 294, 294, 210, 292, 294, 164, 296, 296, 212, 294, 296, 38, 40, 40, 42, 34, - 36, 36, 38, 164, 298, 298, 224, 150, 300, 300, 222, 298, 300, 136, 302, 302, 220, 300, 302, 122, 304, 304, 218, 302, 304, 124, 306, 306, 218, 138, 308, 308, 220, 306, 308, 152, 310, - 310, 222, 308, 310, 162, 312, 312, 224, 310, 312, 30, 32, 32, 34, 26, 28, 28, 30, 162, 314, 314, 236, 22, 24, 24, 26, 160, 316, 316, 236, 18, 20, 20, 22, 160, 318, 318, 248, 14, 16, - 16, 18, 158, 320, 320, 248, 156, 322, 322, 246, 320, 322, 154, 324, 324, 246, 318, 324, 154, 326, 326, 234, 316, 326, 152, 328, 328, 234, 314, 328, 138, 330, 330, 232, 328, 330, 140, - 332, 332, 232, 326, 332, 140, 334, 334, 244, 324, 334, 142, 336, 336, 244, 322, 336, 128, 338, 338, 242, 336, 338, 126, 340, 340, 242, 334, 340, 126, 342, 342, 230, 332, 342, 124, - 344, 344, 230, 330, 344, 62, 346, 346, 170, 60, 348, 348, 256, 346, 348, 58, 350, 350, 188, 348, 350, 56, 352, 352, 264, 350, 352, 54, 354, 354, 168, 352, 354, 52, 356, 356, 266, - 354, 356, 50, 358, 358, 200, 356, 358, 48, 360, 360, 280, 358, 360, 46, 362, 362, 166, 360, 362, 44, 364, 364, 282, 362, 364, 42, 366, 366, 212, 364, 366, 40, 368, 368, 296, 366, - 368, 38, 370, 370, 164, 368, 370, 36, 372, 372, 298, 370, 372, 34, 374, 374, 224, 372, 374, 32, 376, 376, 312, 374, 376, 30, 378, 378, 162, 376, 378, 28, 380, 380, 314, 378, 380, 26, - 382, 382, 236, 380, 382, 24, 384, 384, 316, 382, 384, 22, 386, 386, 160, 384, 386, 20, 388, 388, 318, 386, 388, 18, 390, 390, 248, 388, 390, 16, 392, 392, 320, 390, 392, 14, 394, - 394, 158, 392, 394 - ], - "width": 83, - "height": 74, - "path": "summer-a.ear-right-bubble" + "width": 87.05882352941177, + "height": 80.0, + "path": "summer-as.ear-left-bubble", + "x": 0.470588235294116, + "y": 0.0 } - }, - "ear-right-bubble-02": { - "ear-right-bubble": { + }, + "ear-left-bubble-02": { + "ear-left-bubble": { "type": "mesh", "uvs": [ - 0.93928, 0.50958, 0.95558, 0.59885, 0.96791, 0.66638, 0.98006, 0.73289, 1, 0.84205, 1, 0.89818, 1, 0.9625, 0.9567, 0.9625, 0.9208, 0.9625, 0.88771, 0.9625, 0.83969, 0.9625, 0.79967, - 0.9625, 0.76574, 0.9625, 0.73418, 0.9625, 0.69508, 0.9625, 0.6661, 0.9625, 0.6319, 0.9625, 0.6046, 0.9625, 0.57454, 0.9625, 0.53755, 0.9625, 0.50387, 0.9625, 0.47341, 0.9625, - 0.44466, 0.9625, 0.41233, 0.9625, 0.37317, 0.9625, 0.33787, 0.9625, 0.30333, 0.9625, 0.2648, 0.9625, 0.21937, 0.9625, 0.17434, 0.9625, 0.12959, 0.9625, 0.08769, 0.9625, 0, 0.9625, - 0.02085, 0.89779, 0.04055, 0.83664, 0.06626, 0.75682, 0.08854, 0.68766, 0.11527, 0.60468, 0.13788, 0.53451, 0.35753, 0.0375, 0.43128, 0.0375, 0.52161, 0.0375, 0.60662, 0.0375, - 0.67954, 0.0375, 0.54109, 0.5336, 0.30907, 0.53412, 0.75362, 0.52077, 0.84707, 0.51514, 0.2081, 0.53435, 0.42115, 0.53387, 0.64269, 0.52747, 0.1892, 0.60156, 0.3018, 0.60447, - 0.41972, 0.60346, 0.54053, 0.60135, 0.64648, 0.59785, 0.76151, 0.59644, 0.87262, 0.58988, 0.16806, 0.67676, 0.29497, 0.67061, 0.41838, 0.66857, 0.54, 0.66508, 0.65011, 0.66538, - 0.7681, 0.65967, 0.89666, 0.66021, 0.14733, 0.75044, 0.28705, 0.74721, 0.41688, 0.74143, 0.53942, 0.73556, 0.6538, 0.73393, 0.7757, 0.7326, 0.91933, 0.7265, 0.12337, 0.83566, 0.2782, - 0.83283, 0.4151, 0.82771, 0.53871, 0.82207, 0.65852, 0.82169, 0.7847, 0.8189, 0.95379, 0.82732, 0.97627, 0.89309, 0.79208, 0.88971, 0.66236, 0.89294, 0.5381, 0.89586, 0.41375, - 0.89349, 0.2717, 0.89571, 0.10571, 0.89844, 0.53197, 0.30141, 0.39415, 0.1884, 0.65961, 0.2117, 0.25473, 0.53425, 0.24202, 0.60293, 0.22911, 0.6738, 0.21379, 0.7489, 0.19729, - 0.83431, 0.18704, 0.8971, 0.36352, 0.534, 0.36013, 0.60397, 0.35748, 0.66957, 0.35288, 0.74428, 0.34802, 0.83022, 0.34383, 0.89458, 0.48024, 0.53373, 0.47847, 0.60244, 0.47433, - 0.66696, 0.47563, 0.73861, 0.47402, 0.82502, 0.47337, 0.89463, 0.58955, 0.53067, 0.59344, 0.5996, 0.59605, 0.66523, 0.5961, 0.73475, 0.60032, 0.82187, 0.60296, 0.89434, 0.69391, - 0.52438, 0.69915, 0.59721, 0.70691, 0.66263, 0.71206, 0.7333, 0.71954, 0.82034, 0.72813, 0.8913, 0.80125, 0.5179, 0.81428, 0.59333, 0.8348, 0.65995, 0.84793, 0.72953, 0.87862, - 0.82358, 0.89305, 0.89156, 0.19669, 0.67537, 0.17782, 0.74974, 0.1594, 0.835, 0.1429, 0.89783, 0.26012, 0.6723, 0.25017, 0.74806, 0.23685, 0.83359, 0.22589, 0.89647, 0.30659, - 0.89517, 0.3131, 0.83153, 0.31569, 0.74593, 0.32231, 0.67016, 0.38717, 0.66908, 0.38553, 0.74282, 0.38068, 0.829, 0.37648, 0.89407, 0.44462, 0.89408, 0.44322, 0.82643, 0.44458, - 0.7401, 0.44621, 0.66777, 0.50711, 0.66602, 0.50646, 0.73714, 0.50582, 0.82357, 0.50482, 0.89523, 0.57134, 0.89508, 0.5687, 0.82197, 0.56865, 0.73514, 0.5654, 0.66515, 0.62192, - 0.6653, 0.6236, 0.73436, 0.62525, 0.8218, 0.62839, 0.89374, 0.69427, 0.89215, 0.76244, 0.89045, 0.84047, 0.89059, 0.93306, 0.89229, 0.91732, 0.8255, 0.82617, 0.82097, 0.75013, - 0.81967, 0.6863, 0.82108, 0.68017, 0.73364, 0.74166, 0.73297, 0.80979, 0.73115, 0.88285, 0.72805, 0.86581, 0.66008, 0.79931, 0.6598, 0.73613, 0.66121, 0.67214, 0.66431, 0.09776, - 0.92671, 0.13724, 0.92534, 0.1817, 0.92459, 0.22313, 0.92439, 0.26892, 0.92268, 0.30526, 0.92265, 0.34139, 0.92236, 0.3751, 0.92252, 0.41313, 0.92351, 0.44464, 0.92289, 0.47339, - 0.92339, 0.5044, 0.9248, 0.53787, 0.92389, 0.57268, 0.92341, 0.60366, 0.9233, 0.62995, 0.92432, 0.66398, 0.92316, 0.69464, 0.92383, 0.73085, 0.92333, 0.76403, 0.92521, 0.79572, - 0.92461, 0.84011, 0.92404, 0.89075, 0.92209, 0.92774, 0.92274, 0.96706, 0.92576 + 0.87714, 0.57697, 0.91393, 0.67811, 0.94364, 0.75977, 0.96133, 0.8176, 0.97838, 0.87333, 1, 0.94398, 0.93104, 0.94427, 0.90524, 0.94438, 0.88494, 0.94447, 0.85255, 0.94461, 0.82176, + 0.94474, 0.79396, 0.94486, 0.76382, 0.94499, 0.73767, 0.9451, 0.70713, 0.94523, 0.67579, 0.94536, 0.64108, 0.94551, 0.61244, 0.94564, 0.5758, 0.94579, 0.5367, 0.94596, 0.50394, + 0.9461, 0.47091, 0.94624, 0.435, 0.94639, 0.39675, 0.94656, 0.36198, 0.94671, 0.32916, 0.94685, 0.29359, 0.947, 0.25022, 0.94718, 0.20956, 0.94736, 0.17261, 0.94751, 0.12749, + 0.94771, 0.1012, 0.94782, 0.07834, 0.94792, 0.0457, 0.94806, 0.02123, 0.94816, 0, 0.94825, 0, 0.86703, 0, 0.81359, 0, 0.73715, 0.02817, 0.68242, 0.07791, 0.5858, 0.37947, 0, 0.46651, + 0, 0.5261, 0, 0.59994, 0, 0.66726, 0, 0.02864, 0.86721, 0.04805, 0.81379, 0.07275, 0.7389, 0.0999, 0.68207, 0.14259, 0.58508, 0.49108, 0.58123, 0.82646, 0.57753, 0.86109, 0.67837, + 0.88458, 0.75835, 0.90003, 0.81734, 0.91424, 0.87292, 0.48557, 0.6802, 0.48069, 0.74867, 0.47772, 0.81558, 0.4758, 0.87009, 0.29126, 0.58344, 0.25576, 0.68132, 0.23492, 0.74278, + 0.2135, 0.81448, 0.19874, 0.86831, 0.19271, 0.49455, 0.4968, 0.48641, 0.79002, 0.48462, 0.25666, 0.37903, 0.50462, 0.35653, 0.74321, 0.36527, 0.68757, 0.57906, 0.70466, 0.67913, + 0.71716, 0.75434, 0.72541, 0.81661, 0.73109, 0.87174, 0.67152, 0.48534, 0.32349, 0.49105, 0.38378, 0.58242, 0.36974, 0.68076, 0.36036, 0.74579, 0.34895, 0.81504, 0.34148, 0.86923, + 0.20652, 0.58437, 0.16979, 0.68173, 0.1462, 0.74066, 0.12077, 0.81409, 0.10379, 0.8677, 0.59158, 0.58012, 0.59921, 0.67965, 0.60299, 0.7516, 0.60776, 0.81612, 0.60866, 0.87095, + 0.76107, 0.57825, 0.78751, 0.67873, 0.81003, 0.75656, 0.82525, 0.81703, 0.83754, 0.87243, 0.10852, 0.73975, 0.08479, 0.81394, 0.06934, 0.86747, 0.15113, 0.868, 0.1657, 0.81428, + 0.18746, 0.74164, 0.29675, 0.74426, 0.28022, 0.81476, 0.26841, 0.86876, 0.41495, 0.7471, 0.40761, 0.81529, 0.4031, 0.86963, 0.53765, 0.87049, 0.53762, 0.81583, 0.53944, 0.75008, + 0.6595, 0.75296, 0.66217, 0.81635, 0.66857, 0.87134, 0.78397, 0.87208, 0.7758, 0.81682, 0.76492, 0.75548, 0.74852, 0.67892, 0.82675, 0.67854, 0.84222, 0.75734, 0.8595, 0.81717, + 0.87132, 0.87264, 0.01186, 0.9147, 0.056, 0.91293, 0.08943, 0.91297, 0.13846, 0.91074, 0.18465, 0.91102, 0.25824, 0.91262, 0.33507, 0.90958, 0.39978, 0.90977, 0.47313, 0.91161, + 0.53714, 0.91117, 0.61061, 0.90948, 0.67252, 0.91178, 0.73471, 0.91209, 0.78925, 0.91054, 0.84557, 0.91105, 0.87872, 0.91169, 0.92292, 0.90979, 0.21772, 0.91173, 0.11081, 0.912, + 0.02923, 0.91401, 0.29821, 0.91104, 0.36548, 0.90967, 0.43685, 0.9107, 0.50336, 0.9114, 0.57635, 0.91027, 0.64066, 0.9106, 0.70543, 0.91195, 0.76031, 0.91136, 0.81833, 0.9108, + 0.89934, 0.9108 ], "triangles": [ - 8, 196, 7, 9, 195, 8, 8, 195, 196, 10, 194, 9, 9, 194, 195, 10, 11, 194, 12, 193, 11, 11, 193, 194, 13, 192, 12, 12, 192, 193, 14, 191, 13, 13, 191, 192, 15, 190, 14, 14, 190, 191, - 15, 189, 190, 191, 158, 192, 192, 80, 193, 192, 158, 80, 194, 193, 159, 194, 159, 195, 159, 193, 80, 189, 157, 190, 190, 118, 191, 190, 157, 118, 191, 118, 158, 189, 81, 157, 195, - 124, 196, 196, 124, 160, 195, 159, 124, 81, 164, 157, 81, 76, 164, 157, 117, 118, 157, 164, 117, 159, 123, 124, 124, 123, 161, 118, 163, 158, 118, 117, 163, 80, 162, 159, 159, 162, - 123, 158, 77, 80, 158, 163, 77, 80, 77, 162, 162, 122, 123, 76, 165, 164, 76, 69, 165, 164, 116, 117, 164, 165, 116, 77, 167, 162, 117, 166, 163, 117, 116, 166, 163, 70, 77, 163, - 166, 70, 77, 70, 167, 165, 115, 116, 116, 171, 166, 166, 63, 70, 146, 103, 145, 68, 61, 152, 68, 145, 61, 151, 152, 109, 110, 153, 154, 143, 144, 104, 16, 189, 15, 17, 188, 16, 16, - 188, 189, 18, 187, 17, 17, 187, 188, 18, 19, 186, 19, 185, 186, 18, 186, 187, 20, 184, 19, 19, 184, 185, 20, 21, 184, 22, 183, 21, 21, 183, 184, 23, 181, 22, 181, 182, 22, 22, 182, - 183, 184, 148, 185, 184, 183, 148, 187, 156, 188, 188, 81, 189, 188, 156, 81, 185, 149, 186, 185, 82, 149, 185, 148, 82, 182, 83, 141, 182, 181, 83, 186, 112, 187, 186, 149, 112, - 182, 106, 183, 183, 106, 148, 187, 112, 156, 182, 141, 106, 150, 149, 82, 147, 75, 82, 82, 148, 147, 82, 75, 150, 106, 105, 148, 148, 105, 147, 149, 111, 112, 149, 150, 111, 105, - 106, 142, 112, 155, 156, 112, 111, 155, 83, 74, 141, 74, 142, 141, 106, 141, 142, 156, 76, 81, 156, 155, 76, 74, 67, 142, 142, 143, 105, 142, 67, 143, 105, 104, 147, 105, 143, 104, - 147, 146, 75, 147, 104, 146, 75, 68, 150, 75, 146, 68, 68, 151, 150, 150, 110, 111, 150, 151, 110, 111, 154, 155, 111, 110, 154, 155, 69, 76, 155, 154, 69, 104, 103, 146, 146, 145, - 68, 68, 152, 151, 151, 109, 110, 24, 180, 23, 25, 179, 24, 24, 179, 180, 26, 178, 25, 25, 178, 179, 27, 177, 26, 26, 177, 178, 28, 176, 27, 27, 176, 177, 29, 175, 28, 28, 175, 176, - 30, 174, 29, 29, 174, 175, 31, 173, 30, 30, 173, 174, 174, 128, 175, 174, 85, 128, 175, 94, 176, 175, 128, 94, 176, 132, 177, 176, 94, 132, 180, 140, 181, 177, 84, 178, 177, 132, 84, - 178, 133, 179, 178, 84, 133, 179, 100, 180, 180, 100, 140, 179, 133, 100, 128, 127, 94, 94, 93, 132, 94, 127, 93, 132, 131, 84, 132, 93, 131, 84, 73, 133, 84, 131, 73, 133, 134, 100, - 133, 73, 134, 100, 99, 140, 100, 134, 99, 140, 139, 83, 140, 99, 139, 93, 92, 131, 131, 130, 73, 131, 92, 130, 73, 66, 134, 73, 130, 66, 134, 135, 99, 134, 66, 135, 99, 98, 139, 99, - 135, 98, 139, 138, 74, 139, 98, 138, 74, 138, 67, 130, 129, 66, 66, 59, 135, 135, 136, 98, 135, 59, 136, 98, 97, 138, 98, 136, 97, 138, 137, 67, 23, 180, 181, 181, 140, 83, 83, 139, - 74, 128, 72, 127, 127, 126, 93, 93, 126, 92, 126, 125, 92, 85, 34, 72, 168, 64, 71, 168, 169, 64, 65, 58, 126, 126, 58, 125, 59, 52, 136, 69, 172, 165, 165, 172, 115, 116, 115, 171, - 154, 62, 69, 120, 170, 56, 65, 36, 58, 58, 51, 125, 37, 38, 51, 51, 48, 90, 51, 38, 48, 78, 3, 4, 64, 169, 57, 121, 120, 57, 120, 47, 57, 67, 137, 60, 143, 60, 144, 144, 103, 104, - 110, 109, 153, 154, 153, 62, 69, 62, 172, 97, 136, 96, 97, 96, 137, 96, 136, 52, 60, 137, 53, 60, 53, 144, 53, 137, 96, 103, 144, 102, 103, 102, 145, 102, 144, 53, 61, 145, 54, 172, - 62, 55, 55, 62, 153, 152, 108, 109, 55, 153, 108, 153, 109, 108, 61, 54, 152, 152, 54, 108, 54, 145, 102, 172, 114, 115, 172, 55, 114, 115, 114, 171, 171, 114, 56, 90, 89, 52, 52, - 45, 96, 52, 89, 45, 96, 95, 53, 96, 45, 95, 53, 49, 102, 53, 95, 49, 90, 48, 89, 102, 101, 54, 102, 49, 101, 54, 44, 108, 44, 107, 108, 54, 101, 44, 55, 108, 50, 108, 107, 50, 55, - 113, 114, 55, 50, 113, 114, 46, 56, 114, 113, 46, 56, 119, 120, 56, 46, 119, 120, 119, 47, 57, 47, 0, 87, 48, 38, 87, 89, 48, 87, 45, 89, 87, 95, 45, 49, 95, 86, 87, 38, 39, 101, 49, - 86, 87, 86, 95, 101, 86, 44, 41, 87, 40, 87, 41, 86, 44, 86, 107, 107, 86, 50, 50, 86, 113, 46, 113, 88, 119, 46, 88, 47, 119, 88, 86, 88, 113, 47, 88, 0, 0, 88, 43, 88, 41, 42, 88, - 86, 41, 88, 42, 43, 87, 39, 40, 57, 0, 1, 1, 64, 57, 64, 1, 2, 71, 2, 3, 58, 37, 51, 36, 37, 58, 91, 51, 90, 35, 36, 65, 125, 51, 91, 34, 35, 72, 72, 35, 65, 33, 34, 85, 169, 121, - 57, 171, 56, 63, 170, 63, 56, 138, 97, 137, 67, 60, 143, 59, 129, 52, 52, 129, 90, 71, 64, 2, 3, 78, 71, 78, 161, 71, 91, 90, 129, 170, 120, 121, 122, 121, 169, 161, 168, 71, 92, - 125, 91, 72, 65, 127, 127, 65, 126, 122, 169, 168, 92, 91, 130, 130, 91, 129, 123, 122, 168, 166, 171, 63, 70, 170, 167, 70, 63, 170, 167, 121, 122, 167, 170, 121, 66, 129, 59, 85, - 32, 33, 173, 85, 174, 31, 32, 173, 173, 32, 85, 85, 72, 128, 6, 197, 79, 162, 167, 122, 7, 197, 6, 160, 161, 78, 197, 160, 79, 196, 160, 197, 7, 196, 197, 124, 161, 160, 160, 78, 79, - 123, 168, 161, 6, 79, 5, 79, 78, 4, 79, 4, 5 + 85, 84, 62, 94, 73, 72, 62, 84, 61, 100, 48, 99, 122, 53, 54, 121, 95, 52, 48, 49, 99, 48, 47, 38, 47, 37, 38, 50, 66, 84, 50, 40, 66, 54, 53, 1, 52, 68, 0, 70, 42, 43, 71, 0, 68, + 44, 45, 71, 70, 43, 44, 71, 70, 44, 69, 41, 42, 69, 42, 70, 71, 45, 0, 77, 70, 71, 77, 71, 68, 70, 78, 69, 67, 70, 77, 67, 78, 70, 41, 69, 40, 66, 69, 78, 94, 77, 68, 94, 68, 52, 72, + 77, 94, 89, 67, 77, 89, 77, 72, 67, 79, 78, 51, 67, 89, 51, 79, 67, 61, 66, 78, 61, 78, 79, 84, 66, 61, 40, 69, 66, 90, 89, 72, 90, 72, 73, 57, 79, 51, 57, 51, 89, 57, 89, 90, 80, + 61, 79, 80, 79, 57, 62, 61, 80, 108, 80, 57, 113, 57, 90, 53, 52, 0, 53, 0, 1, 121, 52, 53, 54, 1, 2, 95, 94, 52, 39, 40, 49, 49, 40, 50, 38, 39, 48, 48, 39, 49, 85, 50, 84, 49, 50, + 85, 122, 121, 53, 47, 48, 100, 86, 99, 49, 85, 86, 49, 55, 2, 3, 55, 54, 2, 123, 54, 55, 5, 6, 4, 56, 3, 4, 56, 55, 3, 35, 36, 125, 35, 125, 34, 34, 125, 144, 47, 46, 37, 125, 46, + 144, 144, 46, 126, 101, 47, 100, 46, 47, 101, 125, 36, 46, 46, 36, 37, 120, 94, 95, 120, 73, 94, 114, 91, 90, 73, 114, 90, 74, 73, 120, 114, 73, 74, 119, 120, 95, 74, 120, 119, 96, + 95, 121, 119, 95, 96, 96, 121, 122, 92, 91, 114, 115, 114, 74, 92, 114, 115, 75, 74, 119, 115, 74, 75, 118, 119, 96, 75, 119, 118, 97, 96, 122, 118, 96, 97, 123, 122, 54, 97, 122, + 123, 93, 92, 115, 116, 115, 75, 93, 115, 116, 76, 75, 118, 116, 75, 76, 117, 118, 97, 76, 118, 117, 98, 97, 123, 117, 97, 98, 124, 123, 55, 98, 123, 124, 150, 135, 93, 153, 138, 117, + 116, 150, 93, 98, 153, 117, 154, 124, 56, 154, 56, 141, 139, 98, 124, 140, 139, 124, 153, 98, 139, 152, 76, 117, 152, 117, 138, 154, 140, 124, 151, 136, 116, 150, 116, 136, 76, 151, + 116, 137, 151, 76, 152, 137, 76, 7, 154, 141, 7, 141, 6, 8, 140, 154, 8, 154, 7, 9, 139, 140, 9, 140, 8, 10, 153, 139, 10, 139, 9, 11, 138, 153, 11, 153, 10, 12, 152, 138, 12, 138, + 11, 13, 137, 152, 13, 152, 12, 14, 151, 137, 14, 137, 13, 15, 136, 151, 15, 151, 14, 16, 150, 136, 16, 136, 15, 17, 135, 150, 17, 150, 16, 124, 55, 56, 6, 141, 4, 141, 56, 4, 113, + 90, 91, 81, 80, 108, 58, 108, 57, 109, 81, 108, 82, 81, 109, 59, 108, 58, 109, 108, 59, 112, 58, 113, 59, 58, 112, 112, 113, 91, 92, 112, 91, 110, 82, 109, 83, 82, 110, 60, 109, 59, + 110, 109, 60, 111, 112, 92, 59, 112, 111, 60, 59, 111, 111, 92, 93, 146, 83, 110, 131, 83, 146, 132, 146, 110, 149, 111, 93, 149, 93, 135, 147, 110, 60, 132, 110, 147, 111, 148, 60, + 134, 111, 149, 134, 148, 111, 133, 147, 60, 148, 133, 60, 18, 134, 149, 18, 149, 135, 18, 135, 17, 19, 148, 134, 19, 134, 18, 20, 148, 19, 21, 147, 133, 20, 21, 133, 20, 133, 148, + 22, 132, 147, 22, 147, 21, 23, 146, 132, 23, 132, 22, 24, 131, 146, 24, 146, 23, 25, 131, 24, 58, 57, 113, 63, 104, 85, 86, 85, 104, 62, 63, 85, 105, 62, 80, 63, 62, 105, 81, 105, + 80, 87, 99, 86, 100, 99, 87, 103, 86, 104, 87, 86, 103, 64, 104, 63, 103, 104, 64, 106, 63, 105, 64, 63, 106, 82, 105, 81, 106, 105, 82, 88, 100, 87, 101, 100, 88, 102, 87, 103, 88, + 87, 102, 65, 103, 64, 102, 103, 65, 107, 64, 106, 65, 64, 107, 83, 106, 82, 107, 106, 83, 83, 145, 107, 128, 88, 102, 129, 102, 65, 128, 102, 129, 131, 145, 83, 142, 65, 107, 129, + 65, 142, 143, 88, 128, 130, 142, 107, 130, 107, 145, 127, 101, 88, 127, 88, 143, 126, 101, 127, 25, 145, 131, 26, 130, 145, 26, 145, 25, 27, 142, 130, 27, 130, 26, 28, 129, 142, 28, + 142, 27, 29, 128, 129, 29, 129, 28, 30, 143, 128, 30, 128, 29, 31, 127, 143, 31, 143, 30, 32, 126, 127, 32, 127, 31, 33, 144, 126, 33, 126, 32, 126, 46, 101, 34, 144, 33 ], "vertices": [ - 1, 42, 41.12, 33.33, 1, 1, 42, 48.32, 34.31, 1, 1, 42, 53.77, 35.04, 1, 1, 42, 60, 36.01, 1, 4, 42, 68.02, 38.37, 0.9295, 43, 61.47, -1.03, 1e-05, 44, 40.07, -0.92, 0.00266, 45, - 18.6, -0.92, 0.06784, 4, 42, 72.27, 39, 0.79905, 43, 62.32, -5.24, 1e-05, 44, 40.92, -5.13, 0.00721, 45, 19.44, -5.13, 0.19373, 4, 42, 78.35, 40.51, 0.74731, 43, 64.15, -11.23, 0, - 44, 42.75, -11.12, 0.00973, 45, 21.27, -11.12, 0.24296, 4, 42, 77.99, 36.05, 0.54785, 43, 59.68, -11.11, 1e-05, 44, 38.27, -11, 0.02168, 45, 16.8, -11, 0.43046, 4, 42, 77.69, 32.35, - 0.43038, 43, 55.96, -11, 3e-05, 44, 34.56, -10.9, 0.03847, 45, 13.08, -10.9, 0.53112, 4, 42, 77.42, 28.93, 0.36035, 43, 52.54, -10.91, 9e-05, 44, 31.14, -10.81, 0.06275, 45, 9.66, - -10.81, 0.57681, 4, 42, 77.02, 23.98, 0.2889, 43, 47.58, -10.78, 0.00026, 44, 26.17, -10.67, 0.09917, 45, 4.7, -10.67, 0.61167, 4, 42, 76.69, 19.85, 0.22591, 43, 43.44, -10.66, - 0.0007, 44, 22.03, -10.56, 0.14876, 45, 0.56, -10.56, 0.62463, 4, 42, 76.55, 17.04, 0.17724, 43, 40.62, -10.66, 0.0017, 44, 19.22, -10.56, 0.21115, 45, -2.26, -10.56, 0.60991, 4, 42, - 76.41, 14.43, 0.14418, 43, 38, -10.66, 0.00385, 44, 16.6, -10.56, 0.28407, 45, -4.88, -10.56, 0.5679, 4, 42, 76.24, 11.19, 0.12448, 43, 34.76, -10.66, 0.00813, 44, 13.35, -10.56, - 0.36326, 45, -8.12, -10.56, 0.50413, 4, 42, 76.11, 8.78, 0.11438, 43, 32.35, -10.66, 0.016, 44, 10.95, -10.56, 0.44276, 45, -10.53, -10.56, 0.42686, 4, 42, 75.96, 5.95, 0.11006, 43, - 29.51, -10.66, 0.02948, 44, 8.11, -10.56, 0.51561, 45, -13.37, -10.56, 0.34486, 4, 42, 75.84, 3.69, 0.10858, 43, 27.25, -10.66, 0.05095, 44, 5.84, -10.56, 0.57474, 45, -15.63, - -10.56, 0.26573, 4, 42, 75.71, 1.19, 0.10802, 43, 24.75, -10.66, 0.08291, 44, 3.35, -10.56, 0.614, 45, -18.13, -10.56, 0.19506, 4, 42, 75.55, -1.87, 0.1074, 43, 21.68, -10.66, - 0.12742, 44, 0.28, -10.56, 0.62906, 45, -21.2, -10.56, 0.13612, 4, 42, 75.4, -4.66, 0.10634, 43, 18.89, -10.66, 0.18549, 44, -2.52, -10.56, 0.61812, 45, -23.99, -10.56, 0.09006, 4, - 42, 75.27, -7.19, 0.10502, 43, 16.36, -10.66, 0.25646, 44, -5.05, -10.56, 0.58221, 45, -26.52, -10.56, 0.05631, 4, 42, 75.14, -9.57, 0.10419, 43, 13.97, -10.66, 0.33753, 44, -7.43, - -10.56, 0.52513, 45, -28.91, -10.56, 0.03316, 4, 42, 75, -12.25, 0.10536, 43, 11.29, -10.66, 0.42349, 44, -10.12, -10.56, 0.45282, 45, -31.59, -10.56, 0.01833, 4, 42, 74.83, -15.5, - 0.11098, 43, 8.04, -10.66, 0.50701, 44, -13.37, -10.56, 0.37254, 45, -34.84, -10.56, 0.00948, 4, 42, 74.68, -18.42, 0.12436, 43, 5.11, -10.66, 0.57939, 44, -16.3, -10.56, 0.29168, - 45, -37.77, -10.56, 0.00457, 4, 42, 74.53, -21.28, 0.149, 43, 2.24, -10.66, 0.63222, 44, -19.16, -10.56, 0.21673, 45, -40.64, -10.56, 0.00205, 4, 42, 74.36, -24.48, 0.18726, 43, - -0.96, -10.66, 0.65948, 44, -22.36, -10.56, 0.15241, 45, -43.84, -10.56, 0.00085, 4, 42, 74.16, -28.24, 0.23866, 43, -4.73, -10.66, 0.65975, 44, -26.13, -10.56, 0.10126, 45, -47.61, - -10.56, 0.00033, 4, 42, 73.97, -31.98, 0.29871, 43, -8.46, -10.66, 0.63741, 44, -29.87, -10.56, 0.06376, 45, -51.34, -10.56, 0.00012, 4, 42, 73.77, -35.69, 0.35932, 43, -12.18, - -10.66, 0.60181, 44, -33.58, -10.56, 0.03884, 45, -55.06, -10.56, 4e-05, 4, 42, 73.59, -39.16, 0.49297, 43, -15.66, -10.66, 0.48586, 44, -37.06, -10.56, 0.02116, 45, -58.54, -10.56, - 1e-05, 4, 42, 73.2, -46.43, 0.66969, 43, -22.93, -10.66, 0.32512, 44, -44.34, -10.56, 0.00518, 45, -65.81, -10.56, 0, 4, 42, 68.13, -44.43, 0.73638, 43, -21.2, -5.49, 0.26049, 44, - -42.61, -5.38, 0.00313, 45, -64.08, -5.38, 0, 4, 42, 63.33, -42.54, 0.74288, 43, -19.57, -0.59, 0.25402, 44, -40.97, -0.49, 0.00309, 45, -62.45, -0.49, 1e-05, 2, 42, 57.06, -40.07, - 0.86, 43, -17.44, 5.79, 0.14, 2, 42, 51.63, -37.93, 0.87418, 43, -15.59, 11.32, 0.12582, 1, 42, 45.12, -35.37, 1, 1, 42, 39.61, -33.2, 1, 2, 42, 0.87, -12.9, 0.99965, 43, 6.74, - 63.34, 0.00035, 2, 42, 1.19, -6.79, 0.9998, 43, 12.86, 63.34, 0.0002, 3, 42, 1.58, 0.7, 0.99981, 43, 20.36, 63.34, 9e-05, 45, -22.52, 63.44, 0.0001, 3, 42, 1.95, 7.74, 0.99975, 43, - 27.41, 63.34, 1e-05, 45, -15.46, 63.44, 0.00024, 2, 42, 2.27, 13.79, 0.99954, 45, -9.41, 63.44, 0.00046, 4, 42, 41.3, 0.23, 0.88429, 43, 21.98, 23.65, 0.02526, 44, 0.57, 23.75, - 0.06552, 45, -20.9, 23.75, 0.02493, 1, 42, 40.33, -19.01, 1, 4, 42, 41.2, 17.9, 0.94373, 43, 39.62, 24.67, 0.00089, 44, 18.21, 24.78, 0.01419, 45, -3.26, 24.78, 0.04119, 1, 42, - 41.16, 25.66, 1, 1, 42, 39.91, -27.38, 1, 4, 42, 40.8, -9.72, 0.88619, 43, 12.02, 23.63, 0.05505, 44, -9.38, 23.73, 0.05102, 45, -30.86, 23.73, 0.00774, 4, 42, 41.25, 8.67, 0.89286, - 43, 30.41, 24.14, 0.00746, 44, 9, 24.24, 0.04877, 45, -12.47, 24.24, 0.05092, 1, 42, 45.19, -29.23, 1, 4, 42, 45.92, -19.91, 0.74343, 43, 2.11, 17.98, 0.19678, 44, -19.29, 18.08, - 0.05726, 45, -40.76, 18.08, 0.00254, 4, 42, 46.35, -10.13, 0.58833, 43, 11.9, 18.06, 0.20061, 44, -9.5, 18.16, 0.19026, 45, -30.98, 18.16, 0.0208, 4, 42, 46.71, -0.11, 0.58846, 43, - 21.93, 18.23, 0.08112, 44, 0.53, 18.33, 0.24909, 45, -20.95, 18.33, 0.08133, 4, 42, 46.89, 8.69, 0.59817, 43, 30.72, 18.51, 0.02026, 44, 9.32, 18.61, 0.18761, 45, -12.16, 18.61, - 0.19395, 4, 42, 47.28, 18.23, 0.66183, 43, 40.27, 18.62, 0.00346, 44, 18.87, 18.73, 0.07957, 45, -2.61, 18.73, 0.25514, 1, 42, 47.24, 27.47, 1, 4, 42, 51.11, -31.3, 0.84023, 43, - -8.99, 12.2, 0.15068, 44, -30.39, 12.3, 0.00899, 45, -51.87, 12.3, 0.0001, 4, 42, 51.17, -20.75, 0.48016, 43, 1.55, 12.69, 0.41733, 44, -19.86, 12.79, 0.10062, 45, -41.33, 12.79, - 0.0019, 4, 42, 51.55, -10.51, 0.42576, 43, 11.79, 12.85, 0.28082, 44, -9.61, 12.96, 0.27628, 45, -31.09, 12.96, 0.01714, 4, 42, 51.8, -0.42, 0.43345, 43, 21.89, 13.13, 0.09343, 44, - 0.48, 13.24, 0.37698, 45, -20.99, 13.24, 0.09613, 4, 42, 52.3, 8.71, 0.43708, 43, 31.02, 13.11, 0.01603, 44, 9.62, 13.21, 0.27127, 45, -11.86, 13.21, 0.27562, 4, 42, 52.36, 18.51, - 0.51068, 43, 40.82, 13.56, 0.00179, 44, 19.41, 13.67, 0.09933, 45, -2.06, 13.67, 0.3882, 4, 42, 52.97, 29.16, 0.94195, 43, 51.49, 13.52, 4e-05, 44, 30.08, 13.62, 0.00385, 45, 8.61, - 13.62, 0.05416, 4, 42, 56.91, -33.32, 0.72549, 43, -10.71, 6.3, 0.2621, 44, -32.11, 6.41, 0.01235, 45, -53.59, 6.41, 6e-05, 4, 42, 57.26, -21.73, 0.38729, 43, 0.89, 6.56, 0.4981, 44, - -20.51, 6.66, 0.11341, 45, -41.99, 6.66, 0.0012, 4, 42, 57.36, -10.94, 0.32692, 43, 11.67, 7.02, 0.3274, 44, -9.74, 7.13, 0.32983, 45, -31.21, 7.13, 0.01585, 4, 42, 57.43, -0.76, - 0.33677, 43, 21.84, 7.49, 0.10146, 44, 0.43, 7.6, 0.45593, 45, -21.04, 7.6, 0.10584, 4, 42, 57.8, 8.73, 0.33839, 43, 31.33, 7.62, 0.0144, 44, 9.93, 7.73, 0.32329, 45, -11.55, 7.73, - 0.32392, 4, 42, 58.53, 19.24, 0.42143, 43, 41.87, 7.44, 0.00109, 44, 20.47, 7.55, 0.11176, 45, -1.01, 7.55, 0.46572, 4, 42, 60.09, 31.38, 0.79569, 43, 54.07, 6.52, 5e-05, 44, 32.67, - 6.63, 0.01091, 45, 11.19, 6.63, 0.19335, 4, 42, 63.61, -35.67, 0.66085, 43, -12.7, -0.52, 0.32566, 44, -34.1, -0.41, 0.01346, 45, -55.58, -0.41, 3e-05, 4, 42, 64.06, -22.82, 0.31024, - 43, 0.16, -0.29, 0.56299, 44, -21.25, -0.19, 0.12589, 45, -42.72, -0.19, 0.00089, 4, 42, 64.25, -11.45, 0.24349, 43, 11.52, 0.12, 0.36477, 44, -9.89, 0.22, 0.37599, 45, -31.36, 0.22, - 0.01574, 4, 42, 64.34, -1.18, 0.2525, 43, 21.78, 0.57, 0.10936, 44, 0.37, 0.68, 0.52284, 45, -21.1, 0.68, 0.1153, 4, 42, 64.83, 8.75, 0.2544, 43, 31.72, 0.6, 0.01401, 44, 10.32, - 0.71, 0.36809, 45, -11.16, 0.71, 0.3635, 4, 42, 65.03, 19.51, 0.3466, 43, 42.48, 0.96, 0.00077, 44, 21.07, 1.07, 0.1237, 45, -0.4, 1.07, 0.52893, 4, 42, 66.57, 33.2, 0.69411, 43, - 56.23, 0.15, 3e-05, 44, 34.83, 0.26, 0.01435, 45, 13.35, 0.26, 0.29151, 4, 42, 71.92, 34.78, 0.61986, 43, 58.1, -5.11, 1e-05, 44, 36.69, -5.01, 0.01658, 45, 15.22, -5.01, 0.36355, 4, - 42, 70.84, 19.53, 0.28549, 43, 42.81, -4.84, 0.00065, 44, 21.4, -4.73, 0.13463, 45, -0.07, -4.73, 0.57924, 4, 42, 70.54, 8.77, 0.18483, 43, 32.04, -5.1, 0.01432, 44, 10.64, -4.99, - 0.40541, 45, -10.84, -4.99, 0.39544, 4, 42, 70.23, -1.55, 0.18141, 43, 21.73, -5.33, 0.11681, 44, 0.32, -5.23, 0.57764, 45, -21.15, -5.23, 0.12413, 4, 42, 69.5, -11.84, 0.17479, 43, - 11.41, -5.14, 0.39444, 44, -10, -5.04, 0.41447, 45, -31.47, -5.04, 0.0163, 4, 42, 69.05, -23.63, 0.24784, 43, -0.38, -5.32, 0.61396, 44, -21.79, -5.22, 0.13743, 45, -43.26, -5.22, - 0.00077, 4, 42, 68.55, -37.4, 0.59732, 43, -14.16, -5.54, 0.38768, 44, -35.56, -5.43, 0.01499, 45, -57.04, -5.43, 1e-05, 4, 42, 22.71, 0.45, 0.98403, 43, 21.22, 42.22, 0.00516, 44, - -0.19, 42.33, 0.00609, 45, -21.66, 42.33, 0.00473, 3, 42, 13.08, -10.5, 0.98457, 43, 9.78, 51.26, 0.01421, 44, -11.62, 51.37, 0.00123, 3, 42, 16.1, 11.4, 0.98807, 44, 10.41, 49.51, - 0.00101, 45, -11.07, 49.51, 0.01092, 1, 42, 40.1, -23.51, 1, 4, 42, 45.53, -24.85, 0.93122, 43, -2.85, 18.1, 0.05888, 44, -24.25, 18.21, 0.00959, 45, -45.73, 18.21, 0.0003, 4, 42, - 51.14, -26.22, 0.67882, 43, -3.92, 12.43, 0.287, 44, -25.32, 12.54, 0.03374, 45, -46.8, 12.54, 0.00045, 4, 42, 57.07, -27.81, 0.52353, 43, -5.19, 6.42, 0.4314, 44, -26.59, 6.53, - 0.04479, 45, -48.07, 6.53, 0.00029, 4, 42, 63.82, -29.53, 0.41464, 43, -6.56, -0.41, 0.53292, 44, -27.96, -0.3, 0.05226, 45, -49.44, -0.3, 0.00018, 4, 42, 68.8, -30.65, 0.35706, 43, - -7.41, -5.43, 0.58638, 44, -28.81, -5.33, 0.05644, 45, -50.29, -5.33, 0.00012, 4, 42, 40.56, -14.49, 0.88311, 43, 7.24, 23.62, 0.07338, 44, -14.17, 23.72, 0.03978, 45, -35.64, 23.72, - 0.00372, 4, 42, 46.13, -15.07, 0.62555, 43, 6.96, 18.02, 0.24007, 44, -14.45, 18.12, 0.1259, 45, -35.92, 18.12, 0.00848, 4, 42, 51.36, -15.56, 0.4342, 43, 6.74, 12.77, 0.37611, 44, - -14.67, 12.88, 0.18375, 45, -36.14, 12.88, 0.00595, 4, 42, 57.31, -16.26, 0.33684, 43, 6.35, 6.79, 0.44427, 44, -15.05, 6.9, 0.21425, 45, -36.53, 6.9, 0.00464, 4, 42, 64.16, -17.02, - 0.25537, 43, 5.95, -0.08, 0.49872, 44, -15.45, 0.02, 0.24179, 45, -36.93, 0.02, 0.00413, 4, 42, 69.28, -17.64, 0.18921, 43, 5.6, -5.23, 0.54119, 44, -15.8, -5.13, 0.26556, 45, - -37.28, -5.13, 0.00404, 4, 42, 41.05, -4.82, 0.83361, 43, 16.93, 23.64, 0.05679, 44, -4.48, 23.74, 0.08927, 45, -25.95, 23.74, 0.02033, 4, 42, 46.53, -5.25, 0.57797, 43, 16.78, - 18.14, 0.13938, 44, -4.63, 18.25, 0.23843, 45, -26.1, 18.25, 0.04422, 4, 42, 51.66, -5.87, 0.42696, 43, 16.43, 12.98, 0.17737, 44, -4.97, 13.08, 0.35156, 45, -26.45, 13.08, 0.04411, - 4, 42, 57.39, -6.06, 0.33132, 43, 16.54, 7.25, 0.20059, 44, -4.86, 7.35, 0.42277, 45, -26.34, 7.35, 0.04531, 4, 42, 64.29, -6.56, 0.24781, 43, 16.41, 0.33, 0.22055, 44, -4.99, 0.44, - 0.48389, 45, -26.47, 0.44, 0.04775, 4, 42, 69.85, -6.91, 0.17763, 43, 16.35, -5.23, 0.23735, 44, -5.05, -5.13, 0.53429, 45, -26.52, -5.13, 0.05074, 4, 42, 41.28, 4.25, 0.83746, 43, - 26, 23.88, 0.02009, 44, 4.59, 23.99, 0.08772, 45, -16.88, 23.99, 0.05473, 4, 42, 46.8, 4.29, 0.58276, 43, 26.32, 18.37, 0.04346, 44, 4.92, 18.47, 0.23645, 45, -16.56, 18.47, 0.13732, - 4, 42, 52.06, 4.23, 0.43226, 43, 26.54, 13.12, 0.04191, 44, 5.13, 13.22, 0.34769, 45, -16.34, 13.22, 0.17814, 4, 42, 57.61, 3.94, 0.33656, 43, 26.54, 7.56, 0.0422, 44, 5.14, 7.66, - 0.41771, 45, -16.34, 7.66, 0.20353, 4, 42, 64.59, 3.92, 0.25264, 43, 26.89, 0.59, 0.04384, 44, 5.49, 0.69, 0.47782, 45, -15.99, 0.69, 0.2257, 4, 42, 70.39, 3.84, 0.18189, 43, 27.11, - -5.21, 0.04615, 44, 5.71, -5.11, 0.52741, 45, -15.77, -5.11, 0.24456, 4, 42, 41.23, 12.93, 0.8608, 43, 34.66, 24.39, 0.00457, 44, 13.26, 24.49, 0.04889, 45, -8.22, 24.49, 0.08574, 4, - 42, 47.07, 13.06, 0.60926, 43, 35.09, 18.56, 0.00894, 44, 13.69, 18.67, 0.13479, 45, -7.79, 18.67, 0.247, 4, 42, 52.33, 13.43, 0.45377, 43, 35.74, 13.33, 0.00554, 44, 14.33, 13.43, - 0.18027, 45, -7.14, 13.43, 0.36041, 4, 42, 58.15, 13.75, 0.35749, 43, 36.37, 7.54, 0.00417, 44, 14.96, 7.64, 0.20976, 45, -6.51, 7.64, 0.42858, 4, 42, 64.93, 13.95, 0.27612, 43, - 36.92, 0.78, 0.00359, 44, 15.52, 0.88, 0.23625, 45, -5.96, 0.88, 0.48404, 4, 42, 70.69, 14.22, 0.20954, 43, 37.5, -4.97, 0.00344, 44, 16.1, -4.86, 0.25903, 45, -5.38, -4.86, 0.52799, - 1, 42, 41.18, 21.86, 1, 4, 42, 47.26, 22.62, 0.82489, 43, 44.65, 18.87, 0.00083, 44, 23.25, 18.98, 0.0268, 45, 1.77, 18.98, 0.14748, 4, 42, 52.68, 24.04, 0.64773, 43, 46.35, 13.54, - 0.00052, 44, 24.95, 13.65, 0.04091, 45, 3.47, 13.65, 0.31084, 4, 42, 59.31, 25.35, 0.53225, 43, 48.01, 6.98, 0.00029, 44, 26.6, 7.09, 0.04857, 45, 5.13, 7.09, 0.41889, 4, 42, 65.88, - 27.11, 0.46955, 43, 50.12, 0.51, 0.00016, 44, 28.71, 0.62, 0.05201, 45, 7.24, 0.62, 0.47828, 4, 42, 71.43, 27.89, 0.41589, 43, 51.19, -4.99, 0.0001, 44, 29.78, -4.88, 0.05591, 45, - 8.31, -4.88, 0.5281, 4, 42, 51.12, -28.92, 0.72647, 43, -6.61, 12.31, 0.25381, 44, -28.01, 12.41, 0.01954, 45, -49.49, 12.41, 0.00018, 4, 42, 56.98, -30.79, 0.64422, 43, -8.18, 6.36, - 0.33291, 44, -29.58, 6.46, 0.02275, 45, -51.06, 6.46, 0.00011, 4, 42, 63.71, -32.68, 0.55448, 43, -9.7, -0.46, 0.41902, 44, -31.11, -0.36, 0.02643, 45, -52.58, -0.36, 7e-05, 4, 42, - 68.66, -34.31, 0.44397, 43, -11.07, -5.49, 0.52396, 44, -32.48, -5.38, 0.03202, 45, -53.95, -5.38, 4e-05, 4, 42, 51.16, -23.65, 0.5094, 43, -1.35, 12.55, 0.4213, 44, -22.75, 12.66, - 0.06847, 45, -44.22, 12.66, 0.00083, 4, 42, 57.16, -24.79, 0.42549, 43, -2.17, 6.49, 0.49746, 44, -23.57, 6.6, 0.07648, 45, -45.05, 6.6, 0.00057, 4, 42, 63.94, -26.25, 0.35688, 43, - -3.28, -0.35, 0.55926, 44, -24.68, -0.25, 0.08347, 45, -46.16, -0.25, 0.00039, 4, 42, 68.91, -27.43, 0.29772, 43, -4.19, -5.38, 0.61133, 44, -25.59, -5.28, 0.09064, 45, -47.07, - -5.28, 0.00031, 4, 42, 69.16, -20.73, 0.21136, 43, 2.51, -5.28, 0.59029, 44, -18.89, -5.17, 0.19654, 45, -40.37, -5.17, 0.00182, 4, 42, 64.11, -19.92, 0.275, 43, 3.05, -0.19, - 0.54348, 44, -18.35, -0.08, 0.17958, 45, -39.83, -0.08, 0.00194, 4, 42, 57.28, -19.35, 0.35002, 43, 3.27, 6.66, 0.48643, 44, -18.14, 6.77, 0.16123, 45, -39.61, 6.77, 0.00232, 4, 42, - 51.26, -18.48, 0.41881, 43, 3.82, 12.72, 0.43213, 44, -17.59, 12.83, 0.1461, 45, -39.06, 12.83, 0.00296, 4, 42, 51.45, -13.1, 0.39313, 43, 9.2, 12.81, 0.35299, 44, -12.2, 12.91, - 0.24433, 45, -33.68, 12.91, 0.00955, 4, 42, 57.34, -13.55, 0.32258, 43, 9.06, 6.91, 0.39406, 44, -12.34, 7.02, 0.27473, 45, -33.82, 7.02, 0.00863, 4, 42, 64.2, -14.31, 0.24476, 43, - 8.66, 0.02, 0.43744, 44, -12.74, 0.12, 0.30953, 45, -34.22, 0.12, 0.00827, 4, 42, 69.38, -14.93, 0.17804, 43, 8.31, -5.19, 0.47328, 44, -13.09, -5.08, 0.3403, 45, -34.57, -5.08, - 0.00838, 4, 42, 69.68, -9.29, 0.17525, 43, 13.97, -5.19, 0.31355, 44, -7.44, -5.08, 0.48153, 45, -28.91, -5.08, 0.02968, 4, 42, 64.27, -9.12, 0.24396, 43, 13.85, 0.22, 0.29088, 44, - -7.55, 0.33, 0.43695, 45, -29.03, 0.33, 0.02821, 4, 42, 57.38, -8.64, 0.32275, 43, 13.97, 7.13, 0.26435, 44, -7.44, 7.23, 0.38552, 45, -28.91, 7.23, 0.02739, 4, 42, 51.61, -8.2, - 0.39269, 43, 14.1, 12.92, 0.24007, 44, -7.3, 13.02, 0.33961, 45, -28.78, 13.02, 0.02763, 4, 42, 51.73, -3.15, 0.39835, 43, 19.16, 13.05, 0.13664, 44, -2.25, 13.16, 0.3972, 45, - -23.72, 13.16, 0.06781, 4, 42, 57.41, -3.5, 0.32898, 43, 19.1, 7.37, 0.14701, 44, -2.3, 7.47, 0.45281, 45, -23.78, 7.47, 0.07119, 4, 42, 64.31, -3.92, 0.24968, 43, 19.05, 0.45, - 0.15947, 44, -2.36, 0.56, 0.51456, 45, -23.83, 0.56, 0.07629, 4, 42, 70.03, -4.3, 0.17972, 43, 18.96, -5.28, 0.17094, 44, -2.44, -5.18, 0.56767, 45, -23.91, -5.18, 0.08167, 4, 42, - 70.31, 1.21, 0.18179, 43, 24.49, -5.27, 0.07557, 44, 3.08, -5.17, 0.56385, 45, -18.39, -5.17, 0.17879, 4, 42, 64.46, 1.3, 0.25204, 43, 24.27, 0.58, 0.07119, 44, 2.86, 0.68, 0.51118, - 45, -18.61, 0.68, 0.16559, 4, 42, 57.52, 1.66, 0.33157, 43, 24.26, 7.52, 0.0672, 44, 2.86, 7.63, 0.44995, 45, -18.62, 7.63, 0.15128, 4, 42, 51.92, 1.69, 0.40101, 43, 23.99, 13.13, - 0.06478, 44, 2.59, 13.23, 0.39483, 45, -18.89, 13.23, 0.13938, 4, 42, 52.17, 6.37, 0.401, 43, 28.68, 13.11, 0.0258, 44, 7.28, 13.22, 0.33427, 45, -14.2, 13.22, 0.23894, 4, 42, 57.7, - 6.22, 0.3309, 43, 28.82, 7.59, 0.02514, 44, 7.42, 7.69, 0.37908, 45, -14.06, 7.69, 0.26488, 4, 42, 64.69, 5.99, 0.25155, 43, 28.96, 0.59, 0.02548, 44, 7.56, 0.7, 0.4293, 45, -13.92, - 0.7, 0.29367, 4, 42, 70.45, 5.95, 0.18206, 43, 29.22, -5.16, 0.02652, 44, 7.82, -5.06, 0.47284, 45, -13.66, -5.06, 0.31858, 4, 42, 70.61, 11.41, 0.19245, 43, 34.69, -5.04, 0.00724, - 44, 13.29, -4.93, 0.3321, 45, -8.19, -4.93, 0.46821, 4, 42, 70.77, 17.07, 0.23948, 43, 40.35, -4.9, 0.00153, 44, 18.94, -4.79, 0.19195, 45, -2.53, -4.79, 0.56704, 4, 42, 71.13, - 23.54, 0.346, 43, 46.82, -4.91, 0.00026, 44, 25.42, -4.81, 0.08922, 45, 3.94, -4.81, 0.56452, 4, 42, 71.67, 31.21, 0.48407, 43, 54.51, -5.05, 4e-05, 44, 33.11, -4.94, 0.03358, 45, - 11.63, -4.94, 0.48231, 4, 42, 66.23, 30.24, 0.54501, 43, 53.26, 0.33, 7e-05, 44, 31.86, 0.43, 0.03077, 45, 10.38, 0.43, 0.42415, 4, 42, 65.41, 22.86, 0.40266, 43, 45.85, 0.77, - 0.00034, 44, 24.45, 0.87, 0.08247, 45, 2.97, 0.87, 0.51452, 4, 42, 64.98, 16.56, 0.30287, 43, 39.53, 0.86, 0.00168, 44, 18.13, 0.97, 0.17579, 45, -3.35, 0.97, 0.51965, 4, 42, 64.87, - 11.12, 0.25994, 43, 34.09, 0.68, 0.00726, 44, 12.69, 0.79, 0.30245, 45, -8.79, 0.79, 0.43035, 4, 42, 57.96, 11, 0.3382, 43, 33.61, 7.58, 0.00776, 44, 12.21, 7.69, 0.26884, 45, -9.27, - 7.69, 0.38519, 4, 42, 58.32, 16.31, 0.37706, 43, 38.93, 7.49, 0.00208, 44, 17.52, 7.6, 0.15821, 45, -3.95, 7.6, 0.46265, 4, 42, 58.9, 22.12, 0.46779, 43, 44.77, 7.23, 0.00052, 44, - 23.36, 7.33, 0.07582, 45, 1.89, 7.33, 0.45586, 4, 42, 59.69, 28.3, 0.65325, 43, 50.97, 6.76, 0.00012, 44, 29.57, 6.86, 0.02541, 45, 8.09, 6.86, 0.32123, 4, 42, 52.82, 26.61, 0.75526, - 43, 48.93, 13.53, 0.00017, 44, 27.52, 13.64, 0.02002, 45, 6.05, 13.64, 0.22455, 4, 42, 52.51, 21.1, 0.52586, 43, 43.41, 13.55, 0.00082, 44, 22, 13.66, 0.07106, 45, 0.53, 13.66, - 0.40226, 4, 42, 52.35, 15.86, 0.44455, 43, 38.16, 13.44, 0.00273, 44, 16.76, 13.54, 0.1436, 45, -4.72, 13.54, 0.40912, 4, 42, 52.31, 10.54, 0.40864, 43, 32.85, 13.19, 0.0088, 44, - 11.45, 13.3, 0.23945, 45, -10.03, 13.3, 0.34311, 4, 42, 70.77, -38.17, 0.52059, 43, -14.82, -7.8, 0.45917, 44, -36.22, -7.7, 0.02022, 45, -57.7, -7.7, 1e-05, 4, 42, 70.83, -34.9, - 0.37517, 43, -11.54, -7.69, 0.58803, 44, -32.95, -7.59, 0.03676, 45, -54.42, -7.59, 4e-05, 4, 42, 70.97, -31.21, 0.31655, 43, -7.85, -7.63, 0.62281, 44, -29.26, -7.53, 0.06054, 45, - -50.73, -7.53, 0.00011, 4, 42, 71.13, -27.77, 0.25662, 43, -4.41, -7.62, 0.64624, 44, -25.82, -7.51, 0.09684, 45, -47.29, -7.51, 0.0003, 4, 42, 71.2, -23.97, 0.20542, 43, -0.61, - -7.48, 0.64718, 44, -22.02, -7.37, 0.14662, 45, -43.49, -7.37, 0.00077, 4, 42, 71.35, -20.96, 0.16774, 43, 2.4, -7.48, 0.62093, 44, -19, -7.37, 0.20946, 45, -40.48, -7.37, 0.00187, - 4, 42, 71.49, -17.96, 0.14406, 43, 5.4, -7.45, 0.56885, 44, -16, -7.35, 0.28288, 45, -37.48, -7.35, 0.00421, 4, 42, 71.65, -15.17, 0.13169, 43, 8.2, -7.46, 0.49722, 44, -13.21, - -7.36, 0.36227, 45, -34.68, -7.36, 0.00882, 4, 42, 71.89, -12.02, 0.12708, 43, 11.35, -7.54, 0.41453, 44, -10.05, -7.44, 0.44117, 45, -31.52, -7.44, 0.01722, 4, 42, 71.98, -9.41, - 0.12668, 43, 13.97, -7.49, 0.32958, 44, -7.43, -7.39, 0.51233, 45, -28.91, -7.39, 0.03141, 4, 42, 72.15, -7.02, 0.12812, 43, 16.36, -7.53, 0.24965, 44, -5.05, -7.43, 0.56851, 45, - -26.52, -7.43, 0.05372, 4, 42, 72.39, -4.46, 0.12979, 43, 18.93, -7.65, 0.1799, 44, -2.47, -7.54, 0.60387, 45, -23.95, -7.54, 0.08644, 4, 42, 72.47, -1.68, 0.13105, 43, 21.71, -7.58, - 0.12302, 44, 0.3, -7.47, 0.61461, 45, -21.17, -7.47, 0.13132, 4, 42, 72.58, 1.2, 0.13159, 43, 24.6, -7.54, 0.07962, 44, 3.19, -7.43, 0.5998, 45, -18.28, -7.43, 0.18899, 4, 42, 72.71, - 3.77, 0.13189, 43, 27.17, -7.53, 0.04862, 44, 5.76, -7.42, 0.56113, 45, -15.71, -7.42, 0.25837, 4, 42, 72.9, 5.95, 0.13282, 43, 29.35, -7.61, 0.02792, 44, 7.95, -7.5, 0.50297, 45, - -13.53, -7.5, 0.33629, 4, 42, 72.96, 8.77, 0.13637, 43, 32.18, -7.52, 0.01503, 44, 10.77, -7.41, 0.43134, 45, -10.7, -7.41, 0.41726, 4, 42, 73.15, 11.31, 0.14539, 43, 34.72, -7.57, - 0.00757, 44, 13.32, -7.46, 0.35328, 45, -8.16, -7.46, 0.49376, 4, 42, 73.26, 14.32, 0.16393, 43, 37.73, -7.53, 0.00355, 44, 16.32, -7.43, 0.27561, 45, -5.15, -7.43, 0.55691, 4, 42, - 73.56, 17.06, 0.19585, 43, 40.48, -7.68, 0.00155, 44, 19.08, -7.58, 0.20422, 45, -2.4, -7.58, 0.59837, 4, 42, 73.65, 19.69, 0.24372, 43, 43.11, -7.63, 0.00063, 44, 21.71, -7.53, - 0.14329, 45, 0.23, -7.53, 0.61235, 4, 42, 73.87, 23.74, 0.30631, 43, 47.17, -7.64, 0.00024, 44, 25.77, -7.53, 0.09501, 45, 4.29, -7.53, 0.59844, 4, 42, 74.01, 28.34, 0.3775, 43, - 51.77, -7.54, 9e-05, 44, 30.37, -7.43, 0.05972, 45, 8.89, -7.43, 0.5627, 4, 42, 74.28, 31.7, 0.44548, 43, 55.14, -7.63, 3e-05, 44, 33.74, -7.53, 0.03652, 45, 12.26, -7.53, 0.51797, - 4, 42, 74.78, 35.38, 0.56131, 43, 58.84, -7.93, 1e-05, 44, 37.44, -7.83, 0.02128, 45, 15.96, -7.83, 0.41739 + 4, 47, 58.43, 20.31, 0.00012, 48, 36.09, 20.31, 0.00054, 49, 13.17, 20.31, 0.12631, 46, 43.2, 34, 0.87302, 3, 48, 39.33, 12.22, 0.00019, 49, 16.41, 12.22, 0.19743, 46, 51.06, 37.76, + 0.80237, 3, 48, 41.94, 5.69, 6e-05, 49, 19.02, 5.69, 0.26715, 46, 57.41, 40.79, 0.73278, 3, 48, 43.5, 1.06, 1e-05, 49, 20.58, 1.06, 0.33542, 46, 61.92, 42.65, 0.66457, 3, 48, 45, + -3.4, 1e-05, 49, 22.08, -3.4, 0.40033, 46, 66.27, 44.44, 0.59966, 3, 48, 46.9, -9.05, 0, 49, 23.98, -9.05, 0.45012, 46, 71.79, 46.7, 0.54988, 3, 48, 40.83, -9.07, 0, 49, 17.91, + -9.07, 0.5829, 46, 72.21, 40.65, 0.4171, 3, 48, 38.56, -9.08, 4e-05, 49, 15.64, -9.08, 0.72131, 46, 72.37, 38.38, 0.27865, 3, 48, 36.78, -9.09, 0.00031, 49, 13.86, -9.09, 0.8264, 46, + 72.49, 36.6, 0.17329, 3, 48, 33.93, -9.1, 0.00157, 49, 11, -9.1, 0.90359, 46, 72.69, 33.76, 0.09484, 3, 48, 31.22, -9.11, 0.00537, 49, 8.3, -9.11, 0.94975, 46, 72.87, 31.05, 0.04488, + 3, 48, 28.77, -9.12, 0.01601, 49, 5.85, -9.12, 0.96404, 46, 73.04, 28.61, 0.01996, 3, 48, 26.12, -9.13, 0.03803, 49, 3.2, -9.13, 0.95562, 46, 73.22, 25.97, 0.00635, 3, 48, 23.82, + -9.14, 0.08031, 49, 0.9, -9.14, 0.91597, 46, 73.38, 23.67, 0.00372, 4, 47, 43.47, -9.15, 0, 48, 21.13, -9.15, 0.14592, 49, -1.79, -9.15, 0.85165, 46, 73.57, 20.99, 0.00243, 4, 47, + 40.71, -9.16, 2e-05, 48, 18.37, -9.16, 0.23867, 49, -4.55, -9.16, 0.75671, 46, 73.76, 18.24, 0.0046, 4, 47, 37.66, -9.17, 0.00014, 48, 15.32, -9.17, 0.35275, 49, -7.6, -9.17, + 0.64256, 46, 73.97, 15.19, 0.00455, 4, 47, 35.13, -9.18, 0.00092, 48, 12.8, -9.18, 0.48034, 49, -10.13, -9.18, 0.51198, 46, 74.14, 12.68, 0.00676, 4, 47, 31.91, -9.19, 0.00375, 48, + 9.57, -9.19, 0.61095, 49, -13.35, -9.19, 0.38019, 46, 74.36, 9.46, 0.00512, 4, 47, 28.47, -9.21, 0.01298, 48, 6.13, -9.21, 0.72267, 49, -16.79, -9.21, 0.25841, 46, 74.6, 6.03, + 0.00594, 4, 47, 25.59, -9.22, 0.03422, 48, 3.25, -9.22, 0.80451, 49, -19.67, -9.22, 0.15782, 46, 74.8, 3.15, 0.00345, 4, 47, 22.68, -9.23, 0.07754, 48, 0.34, -9.23, 0.83155, 49, + -22.58, -9.23, 0.08642, 46, 75, 0.25, 0.00449, 4, 47, 19.52, -9.24, 0.14705, 48, -2.82, -9.24, 0.80991, 49, -25.74, -9.24, 0.04032, 46, 75.22, -2.9, 0.00272, 4, 47, 16.15, -9.25, + 0.24563, 48, -6.18, -9.25, 0.73344, 49, -29.11, -9.25, 0.01645, 46, 75.45, -6.26, 0.00448, 4, 47, 13.09, -9.27, 0.36774, 48, -9.24, -9.27, 0.62371, 49, -32.17, -9.27, 0.00512, 46, + 75.66, -9.31, 0.00344, 4, 47, 10.21, -9.28, 0.50372, 48, -12.13, -9.28, 0.49001, 49, -35.05, -9.28, 0.00135, 46, 75.86, -12.19, 0.00491, 4, 47, 7.08, -9.29, 0.64487, 48, -15.26, + -9.29, 0.35177, 49, -38.18, -9.29, 0.00021, 46, 76.08, -15.32, 0.00314, 4, 47, 3.26, -9.3, 0.77, 48, -19.08, -9.3, 0.22651, 49, -42, -9.3, 3e-05, 46, 76.34, -19.12, 0.00346, 4, 47, + -0.32, -9.32, 0.87272, 48, -22.66, -9.32, 0.1254, 49, -45.58, -9.32, 0, 46, 76.59, -22.69, 0.00188, 3, 47, -3.57, -9.33, 0.9351, 48, -25.91, -9.33, 0.0605, 46, 76.81, -25.94, 0.0044, + 3, 47, -7.54, -9.35, 0.96153, 48, -29.88, -9.35, 0.02278, 46, 77.09, -29.9, 0.01569, 3, 47, -9.85, -9.35, 0.93655, 48, -32.19, -9.35, 0.00657, 46, 77.24, -32.21, 0.05688, 3, 47, + -11.87, -9.36, 0.83576, 48, -34.2, -9.36, 0.00151, 46, 77.38, -34.21, 0.16273, 3, 47, -14.74, -9.37, 0.65143, 48, -37.08, -9.37, 0.00023, 46, 77.58, -37.08, 0.34834, 3, 47, -16.89, + -9.38, 0.4382, 48, -39.23, -9.38, 2e-05, 46, 77.73, -39.23, 0.56178, 3, 47, -18.76, -9.39, 0.27507, 48, -41.1, -9.39, 0, 46, 77.86, -41.09, 0.72493, 3, 47, -18.76, -2.89, 0.21414, + 48, -41.1, -2.89, 2e-05, 46, 71.37, -41.51, 0.78584, 3, 47, -18.76, 1.38, 0.19077, 48, -41.1, 1.38, 0.00024, 46, 67.11, -41.79, 0.80899, 3, 47, -18.76, 7.5, 0.1765, 48, -41.1, 7.5, + 0.00116, 46, 61.01, -42.19, 0.82235, 4, 47, -16.28, 11.88, 0.15382, 48, -38.62, 11.88, 0.00307, 49, -61.54, 11.88, 1e-05, 46, 56.48, -40, 0.84309, 4, 47, -11.9, 19.61, 0.11079, 48, + -34.24, 19.61, 0.0029, 49, -57.16, 19.61, 0.00014, 46, 48.48, -36.13, 0.88617, 4, 47, 14.63, 66.47, 0.04584, 48, -7.7, 66.47, 0.00083, 49, -30.63, 66.47, 0.00037, 46, -0.01, -12.7, + 0.95296, 4, 47, 22.29, 66.47, 0.02247, 48, -0.04, 66.47, 0.00083, 49, -22.97, 66.47, 0.00288, 46, -0.51, -5.06, 0.97382, 4, 47, 27.54, 66.47, 0.01007, 48, 5.2, 66.47, 0.00155, 49, + -17.72, 66.47, 0.0104, 46, -0.85, 0.17, 0.97798, 4, 47, 34.04, 66.47, 0.00272, 48, 11.7, 66.47, 0.00045, 49, -11.22, 66.47, 0.02285, 46, -1.28, 6.66, 0.97398, 4, 47, 39.96, 66.47, + 0.00033, 48, 17.62, 66.47, 0.00011, 49, -5.3, 66.47, 0.0498, 46, -1.66, 12.57, 0.94976, 3, 47, -16.24, -2.91, 0.33437, 48, -38.58, -2.91, 0.0002, 46, 71.23, -39, 0.66543, 3, 47, + -14.53, 1.37, 0.32645, 48, -36.87, 1.37, 0.00078, 46, 66.85, -37.57, 0.67277, 4, 47, -12.36, 7.36, 0.307, 48, -34.7, 7.36, 0.00285, 49, -57.62, 7.36, 1e-05, 46, 60.73, -35.79, + 0.69014, 4, 47, -9.97, 11.91, 0.26477, 48, -32.31, 11.91, 0.00971, 49, -55.23, 11.91, 0.00027, 46, 56.04, -33.7, 0.72525, 4, 47, -6.21, 19.66, 0.19881, 48, -28.55, 19.66, 0.00959, + 49, -51.47, 19.66, 0.00132, 46, 48.05, -30.46, 0.79028, 4, 47, 24.46, 19.97, 0.10712, 48, 2.12, 19.97, 0.11704, 49, -20.8, 19.97, 0.11672, 46, 45.75, 0.12, 0.65912, 4, 47, 53.97, + 20.27, 0.00116, 48, 31.63, 20.27, 0.00313, 49, 8.71, 20.27, 0.2148, 46, 43.53, 29.55, 0.7809, 4, 47, 57.02, 12.2, 0.0001, 48, 34.68, 12.2, 0.00083, 49, 11.76, 12.2, 0.29942, 46, + 51.38, 33.12, 0.69965, 3, 48, 36.75, 5.8, 0.00034, 49, 13.82, 5.8, 0.378, 46, 57.63, 35.6, 0.62166, 3, 48, 38.1, 1.08, 0.00022, 49, 15.18, 1.08, 0.45653, 46, 62.25, 37.26, 0.54325, + 3, 48, 39.36, -3.36, 0.00015, 49, 16.43, -3.36, 0.53433, 46, 66.61, 38.8, 0.46552, 4, 47, 23.97, 12.06, 0.12565, 48, 1.63, 12.06, 0.24275, 49, -21.29, 12.06, 0.14114, 46, 53.68, + 0.15, 0.49046, 4, 47, 23.54, 6.58, 0.11007, 48, 1.2, 6.58, 0.47217, 49, -21.72, 6.58, 0.12893, 46, 59.17, 0.08, 0.28883, 4, 47, 23.28, 1.22, 0.10884, 48, 0.94, 1.22, 0.60558, 49, + -21.98, 1.22, 0.12698, 46, 64.53, 0.17, 0.1586, 4, 47, 23.11, -3.14, 0.10666, 48, 0.77, -3.14, 0.70334, 49, -22.15, -3.14, 0.12133, 46, 68.89, 0.28, 0.06866, 4, 47, 6.87, 19.8, + 0.29773, 48, -15.47, 19.8, 0.06022, 49, -38.39, 19.8, 0.01488, 46, 47.07, -17.41, 0.62717, 4, 47, 3.75, 11.97, 0.44072, 48, -18.59, 11.97, 0.09602, 49, -41.51, 11.97, 0.01064, 46, + 55.08, -20.02, 0.45261, 4, 47, 1.91, 7.05, 0.66419, 48, -20.42, 7.05, 0.11803, 49, -43.35, 7.05, 0.002, 46, 60.11, -21.53, 0.21579, 4, 47, 0.03, 1.31, 0.77187, 48, -22.31, 1.31, + 0.12352, 49, -45.23, 1.31, 0.00043, 46, 65.96, -23.04, 0.10418, 4, 47, -1.27, -2.99, 0.84303, 48, -23.61, -2.99, 0.11246, 49, -46.53, -2.99, 0.00018, 46, 70.34, -24.05, 0.04432, 4, + 47, -1.8, 26.91, 0.12744, 48, -24.14, 26.91, 0.00959, 49, -47.06, 26.91, 0.0076, 46, 40.54, -26.53, 0.85537, 4, 47, 24.96, 27.56, 0.0719, 48, 2.62, 27.56, 0.03639, 49, -20.3, 27.56, + 0.07572, 46, 38.14, 0.13, 0.81598, 4, 47, 50.76, 27.7, 0.00702, 48, 28.42, 27.7, 0.00523, 49, 5.5, 27.7, 0.131, 46, 36.32, 25.87, 0.85675, 4, 47, 3.83, 36.15, 0.04791, 48, -18.51, + 36.15, 0.00352, 49, -41.43, 36.15, 0.00803, 46, 30.95, -21.51, 0.94054, 4, 47, 25.65, 37.95, 0.02662, 48, 3.31, 37.95, 0.00775, 49, -19.61, 37.95, 0.02767, 46, 27.73, 0.14, 0.93795, + 4, 47, 46.64, 37.25, 0.00753, 48, 24.3, 37.25, 0.00227, 49, 1.38, 37.25, 0.04846, 46, 27.06, 21.14, 0.94174, 4, 47, 41.75, 20.15, 0.01306, 48, 19.41, 20.15, 0.04509, 49, -3.51, + 20.15, 0.32134, 46, 44.45, 17.37, 0.62052, 4, 47, 43.25, 12.14, 0.00895, 48, 20.91, 12.14, 0.07841, 49, -2.01, 12.14, 0.49568, 46, 52.34, 19.39, 0.41696, 4, 47, 44.35, 6.12, 0.0015, + 48, 22.01, 6.12, 0.09572, 49, -0.91, 6.12, 0.67014, 46, 58.27, 20.88, 0.23264, 4, 47, 45.08, 1.14, 0.00025, 48, 22.74, 1.14, 0.108, 49, -0.18, 1.14, 0.76841, 46, 63.2, 21.93, + 0.12334, 4, 47, 45.58, -3.27, 0.0001, 48, 23.24, -3.27, 0.10937, 49, 0.32, -3.27, 0.83473, 46, 67.56, 22.71, 0.0558, 4, 47, 40.33, 27.64, 0.02381, 48, 18, 27.64, 0.02132, 49, -4.93, + 27.64, 0.16866, 46, 37.06, 15.47, 0.78621, 4, 47, 9.71, 27.19, 0.16236, 48, -12.63, 27.19, 0.02827, 49, -35.55, 27.19, 0.02548, 46, 39.51, -15.06, 0.78388, 4, 47, 15.01, 19.88, + 0.23124, 48, -7.33, 19.88, 0.11759, 49, -30.25, 19.88, 0.04679, 46, 46.46, -9.29, 0.60438, 4, 47, 13.78, 12.01, 0.29354, 48, -8.56, 12.01, 0.19873, 49, -31.48, 12.01, 0.04427, 46, + 54.39, -10.01, 0.46346, 4, 47, 12.95, 6.81, 0.37869, 48, -9.39, 6.81, 0.34588, 49, -32.31, 6.81, 0.01968, 46, 59.63, -10.5, 0.25575, 4, 47, 11.95, 1.27, 0.42861, 48, -10.39, 1.27, + 0.42317, 49, -33.31, 1.27, 0.01297, 46, 65.23, -11.14, 0.13524, 4, 47, 11.29, -3.07, 0.46725, 48, -11.05, -3.07, 0.46538, 49, -33.97, -3.07, 0.0097, 46, 69.59, -11.51, 0.05768, 4, + 47, -0.59, 19.72, 0.32338, 48, -22.92, 19.72, 0.02881, 49, -45.85, 19.72, 0.003, 46, 47.63, -24.85, 0.64481, 4, 47, -3.82, 11.93, 0.4391, 48, -26.16, 11.93, 0.03345, 49, -49.08, + 11.93, 0.00177, 46, 55.61, -27.57, 0.52567, 4, 47, -5.89, 7.22, 0.65491, 48, -28.23, 7.22, 0.02015, 49, -51.15, 7.22, 0.00017, 46, 60.45, -29.33, 0.32476, 4, 47, -8.13, 1.34, + 0.75275, 48, -30.47, 1.34, 0.01396, 49, -53.39, 1.34, 1e-05, 46, 66.46, -31.18, 0.23328, 3, 47, -9.63, -2.94, 0.80478, 48, -31.96, -2.94, 0.00944, 46, 70.83, -32.39, 0.18578, 4, 47, + 33.3, 20.06, 0.04166, 48, 10.96, 20.06, 0.10286, 49, -11.96, 20.06, 0.24857, 46, 45.08, 8.94, 0.60691, 4, 47, 33.97, 12.1, 0.03817, 48, 11.63, 12.1, 0.17811, 49, -11.29, 12.1, + 0.32257, 46, 52.98, 10.13, 0.46115, 4, 47, 34.3, 6.34, 0.01531, 48, 11.97, 6.34, 0.31162, 49, -10.96, 6.34, 0.40881, 46, 58.71, 10.84, 0.26426, 4, 47, 34.72, 1.18, 0.00955, 48, + 12.39, 1.18, 0.39036, 49, -10.54, 1.18, 0.4561, 46, 63.83, 11.59, 0.14399, 4, 47, 34.8, -3.2, 0.00731, 48, 12.46, -3.2, 0.44195, 49, -10.46, -3.2, 0.48699, 46, 68.2, 11.96, 0.06375, + 4, 47, 48.21, 20.21, 0.00241, 48, 25.88, 20.21, 0.01421, 49, 2.95, 20.21, 0.36275, 46, 43.96, 23.82, 0.62063, 4, 47, 50.54, 12.17, 0.00034, 48, 28.2, 12.17, 0.01068, 49, 5.28, 12.17, + 0.5453, 46, 51.83, 26.66, 0.44368, 4, 47, 52.52, 5.95, 2e-05, 48, 30.19, 5.95, 0.00999, 49, 7.26, 5.95, 0.66888, 46, 57.92, 29.04, 0.32111, 3, 48, 31.52, 1.11, 0.01011, 49, 8.6, + 1.11, 0.76268, 46, 62.66, 30.7, 0.22721, 3, 48, 32.61, -3.32, 0.00863, 49, 9.68, -3.32, 0.83296, 46, 67.01, 32.06, 0.15841, 4, 47, -9.21, 7.29, 0.52586, 48, -31.55, 7.29, 0.0057, 49, + -54.47, 7.29, 1e-05, 46, 60.59, -32.65, 0.46842, 3, 47, -11.3, 1.36, 0.56698, 48, -33.64, 1.36, 0.00311, 46, 66.65, -34.34, 0.42991, 3, 47, -12.66, -2.93, 0.60013, 48, -35, -2.93, + 0.00167, 46, 71.01, -35.42, 0.39821, 4, 47, -5.46, -2.97, 0.89102, 48, -27.8, -2.97, 0.03888, 49, -50.72, -2.97, 1e-05, 46, 70.59, -28.24, 0.07008, 4, 47, -4.18, 1.33, 0.83362, 48, + -26.52, 1.33, 0.04645, 49, -49.44, 1.33, 3e-05, 46, 66.21, -27.24, 0.1199, 4, 47, -2.26, 7.14, 0.75973, 48, -24.6, 7.14, 0.05134, 49, -47.52, 7.14, 0.00026, 46, 60.29, -25.7, + 0.18867, 4, 47, 7.35, 6.93, 0.57235, 48, -14.98, 6.93, 0.23863, 49, -37.91, 6.93, 0.00435, 46, 59.87, -16.09, 0.18467, 4, 47, 5.9, 1.29, 0.63011, 48, -16.44, 1.29, 0.25936, 49, + -39.36, 1.29, 0.00243, 46, 65.6, -17.18, 0.1081, 4, 47, 4.86, -3.03, 0.68809, 48, -17.48, -3.03, 0.26358, 49, -40.4, -3.03, 0.00168, 46, 69.98, -17.93, 0.04665, 4, 47, 17.76, 6.7, + 0.22941, 48, -4.58, 6.7, 0.4879, 49, -27.5, 6.7, 0.05094, 46, 59.42, -5.7, 0.23175, 4, 47, 17.11, 1.25, 0.24296, 48, -5.23, 1.25, 0.56856, 49, -28.15, 1.25, 0.04581, 46, 64.91, + -5.99, 0.14267, 4, 47, 16.71, -3.1, 0.25552, 48, -5.62, -3.1, 0.64168, 49, -28.55, -3.1, 0.03992, 46, 69.27, -6.1, 0.06288, 4, 47, 28.55, -3.17, 0.03276, 48, 6.22, -3.17, 0.62363, + 49, -16.71, -3.17, 0.27658, 46, 68.57, 5.72, 0.06703, 4, 47, 28.55, 1.2, 0.0367, 48, 6.21, 1.21, 0.54514, 49, -16.71, 1.21, 0.26974, 46, 64.21, 5.43, 0.14843, 4, 47, 28.71, 6.47, + 0.04075, 48, 6.37, 6.47, 0.46337, 49, -16.55, 6.47, 0.25797, 46, 58.95, 5.25, 0.23791, 4, 47, 39.28, 6.23, 0.00305, 48, 16.94, 6.24, 0.20572, 49, -5.98, 6.24, 0.59307, 46, 58.49, + 15.81, 0.19817, 4, 47, 39.51, 1.16, 0.00156, 48, 17.17, 1.16, 0.23228, 49, -5.75, 1.16, 0.64631, 46, 63.54, 16.37, 0.11984, 4, 47, 40.07, -3.24, 0.00112, 48, 17.74, -3.24, 0.25061, + 49, -5.19, -3.24, 0.69415, 46, 67.89, 17.22, 0.05412, 4, 47, 50.23, -3.29, 0, 48, 27.89, -3.29, 0.036, 49, 4.97, -3.29, 0.88144, 46, 67.29, 27.36, 0.08255, 4, 47, 49.51, 1.13, 2e-05, + 48, 27.17, 1.13, 0.03826, 49, 4.25, 1.13, 0.81357, 46, 62.92, 26.35, 0.14816, 4, 47, 48.55, 6.03, 0.00027, 48, 26.22, 6.03, 0.03577, 49, 3.29, 6.03, 0.72045, 46, 58.09, 25.08, + 0.24351, 4, 47, 47.11, 12.16, 0.00156, 48, 24.77, 12.16, 0.03311, 49, 1.85, 12.16, 0.61234, 46, 52.07, 23.24, 0.35299, 4, 47, 53.99, 12.19, 1e-05, 48, 31.66, 12.19, 0.00266, 49, + 8.73, 12.19, 0.47035, 46, 51.59, 30.11, 0.52698, 3, 48, 33.02, 5.88, 0.00213, 49, 10.1, 5.88, 0.54797, 46, 57.79, 31.88, 0.4499, 3, 48, 34.54, 1.1, 0.0018, 49, 11.62, 1.1, 0.63247, + 46, 62.47, 33.7, 0.36573, 3, 48, 35.58, -3.34, 0.00152, 49, 12.66, -3.34, 0.71351, 46, 66.83, 35.03, 0.28497, 3, 47, -17.72, -6.71, 0.31251, 48, -40.05, -6.71, 1e-05, 46, 75.11, + -40.22, 0.68748, 3, 47, -13.83, -6.56, 0.64755, 48, -36.17, -6.56, 0.00038, 46, 74.72, -36.36, 0.35207, 3, 47, -10.89, -6.57, 0.83546, 48, -33.23, -6.57, 0.00245, 46, 74.53, -33.42, + 0.1621, 3, 47, -6.58, -6.39, 0.9505, 48, -28.91, -6.39, 0.02598, 46, 74.07, -29.13, 0.02352, 4, 47, -2.51, -6.41, 0.9185, 48, -24.85, -6.41, 0.06986, 49, -47.77, -6.41, 1e-05, 46, + 73.83, -25.07, 0.01163, 4, 47, 3.97, -6.54, 0.7539, 48, -18.37, -6.54, 0.23416, 49, -41.29, -6.54, 0.00019, 46, 73.54, -18.6, 0.01175, 4, 47, 10.73, -6.3, 0.4945, 48, -11.61, -6.29, + 0.48778, 49, -34.53, -6.29, 0.00242, 46, 72.85, -11.87, 0.01529, 4, 47, 16.42, -6.31, 0.24467, 48, -5.92, -6.31, 0.71967, 49, -28.84, -6.31, 0.01969, 46, 72.5, -6.18, 0.01597, 4, 47, + 22.88, -6.46, 0.08074, 48, 0.54, -6.46, 0.81091, 49, -22.38, -6.46, 0.09131, 46, 72.22, 0.27, 0.01704, 4, 47, 28.51, -6.42, 0.01543, 48, 6.17, -6.42, 0.70591, 49, -16.75, -6.42, + 0.26031, 46, 71.82, 5.89, 0.01836, 4, 47, 34.97, -6.29, 0.00164, 48, 12.64, -6.29, 0.47309, 49, -10.29, -6.29, 0.50689, 46, 71.27, 12.33, 0.01837, 4, 47, 40.42, -6.47, 0.0001, 48, + 18.08, -6.47, 0.23958, 49, -4.84, -6.47, 0.7461, 46, 71.1, 17.78, 0.01421, 4, 47, 45.89, -6.5, 0, 48, 23.56, -6.5, 0.08431, 49, 0.63, -6.5, 0.9025, 46, 70.76, 23.24, 0.01319, 3, 48, + 28.36, -6.37, 0.01867, 49, 5.43, -6.37, 0.94991, 46, 70.33, 28.02, 0.03142, 3, 48, 33.31, -6.41, 0.00244, 49, 10.39, -6.41, 0.88788, 46, 70.05, 32.97, 0.10968, 3, 48, 36.23, -6.46, + 0.00046, 49, 13.31, -6.46, 0.80558, 46, 69.91, 35.88, 0.19395, 3, 48, 40.12, -6.31, 1e-05, 49, 17.2, -6.31, 0.61334, 46, 69.5, 39.76, 0.38665, 4, 47, 0.4, -6.47, 0.86555, 48, -21.94, + -6.47, 0.12959, 49, -44.86, -6.47, 1e-05, 46, 73.7, -22.16, 0.00485, 3, 47, -9.01, -6.49, 0.93616, 48, -31.35, -6.49, 0.00716, 46, 74.33, -31.55, 0.05668, 3, 47, -16.19, -6.65, + 0.44814, 48, -38.53, -6.65, 3e-05, 46, 74.96, -38.7, 0.55184, 4, 47, 7.48, -6.41, 0.63866, 48, -14.86, -6.41, 0.354, 49, -37.78, -6.41, 0.00037, 46, 73.18, -15.1, 0.00698, 4, 47, + 13.4, -6.3, 0.36468, 48, -8.94, -6.3, 0.62161, 49, -31.86, -6.3, 0.00581, 46, 72.69, -9.2, 0.0079, 4, 47, 19.68, -6.38, 0.14684, 48, -2.65, -6.38, 0.80383, 49, -25.58, -6.38, + 0.04176, 46, 72.36, -2.92, 0.00757, 4, 47, 25.54, -6.44, 0.03499, 48, 3.2, -6.44, 0.79745, 49, -19.72, -6.44, 0.15898, 46, 72.03, 2.92, 0.00858, 4, 47, 31.96, -6.35, 0.00417, 48, + 9.62, -6.35, 0.60634, 49, -13.3, -6.35, 0.37927, 46, 71.53, 9.32, 0.01022, 4, 47, 37.62, -6.38, 0.00021, 48, 15.28, -6.38, 0.35157, 49, -7.64, -6.38, 0.63918, 46, 71.18, 14.97, + 0.00904, 4, 47, 43.32, -6.48, 1e-05, 48, 20.98, -6.48, 0.14688, 49, -1.94, -6.48, 0.84692, 46, 70.92, 20.67, 0.00619, 3, 48, 25.81, -6.44, 0.03919, 49, 2.89, -6.44, 0.95006, 46, + 70.56, 25.48, 0.01074, 3, 48, 30.92, -6.39, 0.00591, 49, 7.99, -6.39, 0.9433, 46, 70.18, 30.58, 0.05079, 3, 48, 38.04, -6.39, 5e-05, 49, 15.12, -6.39, 0.72615, 46, 69.72, 37.69, + 0.2738 ], - "hull": 44, + "hull": 46, "edges": [ - 78, 76, 86, 0, 78, 80, 80, 82, 82, 84, 84, 86, 0, 94, 76, 96, 62, 64, 74, 76, 102, 96, 74, 102, 104, 90, 106, 98, 108, 88, 110, 100, 112, 92, 114, 94, 2, 0, 114, 2, 72, 74, 116, 102, - 72, 116, 118, 104, 120, 106, 122, 108, 124, 110, 126, 112, 128, 114, 4, 2, 128, 4, 70, 72, 130, 116, 70, 130, 132, 118, 134, 120, 136, 122, 138, 124, 140, 126, 142, 128, 8, 6, 6, 4, - 142, 6, 68, 70, 144, 130, 68, 144, 146, 132, 148, 134, 150, 136, 152, 138, 154, 140, 156, 142, 156, 8, 8, 10, 10, 12, 12, 158, 158, 156, 10, 158, 160, 154, 162, 152, 164, 150, 166, - 148, 168, 146, 170, 144, 64, 66, 66, 68, 170, 66, 82, 172, 172, 88, 98, 172, 172, 100, 80, 174, 174, 90, 96, 174, 84, 176, 176, 92, 94, 176, 90, 178, 178, 96, 102, 180, 180, 104, - 178, 180, 180, 182, 182, 184, 184, 186, 186, 188, 90, 190, 190, 98, 104, 192, 192, 106, 190, 192, 192, 194, 194, 196, 196, 198, 198, 200, 88, 202, 202, 98, 106, 204, 204, 108, 202, - 204, 204, 206, 206, 208, 208, 210, 210, 212, 88, 214, 214, 100, 108, 216, 216, 110, 214, 216, 216, 218, 218, 220, 220, 222, 222, 224, 92, 226, 226, 100, 110, 228, 228, 112, 226, 228, - 228, 230, 230, 232, 232, 234, 234, 236, 92, 238, 238, 94, 112, 240, 240, 114, 238, 240, 240, 242, 242, 244, 244, 246, 246, 248, 12, 14, 170, 64, 116, 250, 250, 182, 130, 252, 252, - 184, 250, 252, 144, 254, 254, 186, 252, 254, 170, 256, 256, 188, 254, 256, 58, 60, 60, 62, 118, 258, 258, 182, 132, 260, 260, 184, 258, 260, 146, 262, 262, 186, 260, 262, 168, 264, - 264, 188, 262, 264, 54, 56, 56, 58, 50, 52, 52, 54, 168, 266, 266, 200, 146, 268, 268, 198, 266, 268, 132, 270, 270, 196, 268, 270, 118, 272, 272, 194, 270, 272, 120, 274, 274, 194, - 134, 276, 276, 196, 274, 276, 148, 278, 278, 198, 276, 278, 166, 280, 280, 200, 278, 280, 46, 48, 48, 50, 42, 44, 44, 46, 166, 282, 282, 212, 148, 284, 284, 210, 282, 284, 134, 286, - 286, 208, 284, 286, 120, 288, 288, 206, 286, 288, 122, 290, 290, 206, 136, 292, 292, 208, 290, 292, 150, 294, 294, 210, 292, 294, 164, 296, 296, 212, 294, 296, 38, 40, 40, 42, 34, - 36, 36, 38, 164, 298, 298, 224, 150, 300, 300, 222, 298, 300, 136, 302, 302, 220, 300, 302, 122, 304, 304, 218, 302, 304, 124, 306, 306, 218, 138, 308, 308, 220, 306, 308, 152, 310, - 310, 222, 308, 310, 162, 312, 312, 224, 310, 312, 30, 32, 32, 34, 26, 28, 28, 30, 162, 314, 314, 236, 22, 24, 24, 26, 160, 316, 316, 236, 18, 20, 20, 22, 160, 318, 318, 248, 14, 16, - 16, 18, 158, 320, 320, 248, 156, 322, 322, 246, 320, 322, 154, 324, 324, 246, 318, 324, 154, 326, 326, 234, 316, 326, 152, 328, 328, 234, 314, 328, 138, 330, 330, 232, 328, 330, 140, - 332, 332, 232, 326, 332, 140, 334, 334, 244, 324, 334, 142, 336, 336, 244, 322, 336, 128, 338, 338, 242, 336, 338, 126, 340, 340, 242, 334, 340, 126, 342, 342, 230, 332, 342, 124, - 344, 344, 230, 330, 344, 62, 346, 346, 170, 60, 348, 348, 256, 346, 348, 58, 350, 350, 188, 348, 350, 56, 352, 352, 264, 350, 352, 54, 354, 354, 168, 352, 354, 52, 356, 356, 266, - 354, 356, 50, 358, 358, 200, 356, 358, 48, 360, 360, 280, 358, 360, 46, 362, 362, 166, 360, 362, 44, 364, 364, 282, 362, 364, 42, 366, 366, 212, 364, 366, 40, 368, 368, 296, 366, - 368, 38, 370, 370, 164, 368, 370, 36, 372, 372, 298, 370, 372, 34, 374, 374, 224, 372, 374, 32, 376, 376, 312, 374, 376, 30, 378, 378, 162, 376, 378, 28, 380, 380, 314, 378, 380, 26, - 382, 382, 236, 380, 382, 24, 384, 384, 316, 382, 384, 22, 386, 386, 160, 384, 386, 20, 388, 388, 318, 386, 388, 18, 390, 390, 248, 388, 390, 16, 392, 392, 320, 390, 392, 14, 394, - 394, 158, 392, 394 + 80, 82, 90, 0, 10, 8, 70, 72, 72, 74, 74, 76, 4, 6, 6, 8, 76, 78, 78, 80, 4, 2, 2, 0, 72, 92, 74, 94, 92, 94, 76, 96, 94, 96, 78, 98, 96, 98, 80, 100, 98, 100, 82, 84, 84, 86, 86, + 88, 88, 90, 0, 104, 2, 106, 104, 106, 4, 108, 106, 108, 6, 110, 108, 110, 8, 112, 110, 112, 10, 12, 102, 114, 114, 116, 116, 118, 118, 120, 122, 124, 124, 126, 126, 128, 128, 130, + 132, 100, 134, 102, 136, 104, 84, 138, 138, 132, 86, 140, 140, 134, 138, 140, 88, 142, 142, 136, 140, 142, 144, 146, 146, 148, 148, 150, 150, 152, 134, 154, 154, 136, 144, 154, 132, + 156, 156, 134, 122, 156, 102, 158, 158, 122, 114, 160, 160, 124, 158, 160, 160, 162, 162, 164, 164, 166, 100, 168, 168, 122, 98, 170, 170, 124, 168, 170, 170, 172, 172, 174, 174, + 176, 102, 178, 178, 144, 114, 180, 180, 146, 178, 180, 180, 182, 182, 184, 184, 186, 104, 188, 188, 144, 188, 190, 190, 192, 192, 194, 194, 196, 96, 198, 198, 172, 94, 200, 200, 174, + 198, 200, 92, 202, 202, 176, 200, 202, 64, 66, 58, 60, 130, 204, 204, 176, 128, 206, 206, 174, 204, 206, 126, 208, 208, 172, 206, 208, 126, 210, 210, 162, 128, 212, 212, 164, 210, + 212, 130, 214, 214, 166, 212, 214, 116, 216, 216, 162, 118, 218, 218, 164, 216, 218, 120, 220, 220, 166, 218, 220, 120, 222, 222, 186, 118, 224, 224, 184, 222, 224, 116, 226, 226, + 182, 224, 226, 148, 228, 228, 182, 150, 230, 230, 184, 228, 230, 152, 232, 232, 186, 230, 232, 152, 234, 234, 196, 150, 236, 236, 194, 234, 236, 148, 238, 238, 192, 236, 238, 146, + 240, 240, 190, 238, 240, 106, 242, 242, 190, 108, 244, 244, 192, 242, 244, 110, 246, 246, 194, 244, 246, 112, 248, 248, 196, 246, 248, 16, 18, 70, 250, 250, 92, 66, 252, 252, 202, + 64, 254, 254, 176, 252, 254, 60, 256, 256, 204, 58, 258, 258, 130, 256, 258, 54, 260, 260, 214, 50, 262, 262, 166, 46, 264, 264, 220, 42, 266, 266, 120, 38, 268, 268, 222, 34, 270, + 270, 186, 30, 272, 272, 232, 26, 274, 274, 152, 22, 276, 276, 234, 18, 278, 278, 196, 16, 280, 280, 248, 278, 280, 12, 282, 282, 112, 258, 284, 284, 260, 54, 56, 56, 58, 284, 56, + 254, 286, 286, 256, 60, 62, 62, 64, 286, 62, 250, 288, 288, 252, 66, 68, 68, 70, 288, 68, 260, 290, 290, 262, 50, 52, 52, 54, 290, 52, 262, 292, 292, 264, 46, 48, 48, 50, 292, 48, + 264, 294, 294, 266, 42, 44, 44, 46, 294, 44, 266, 296, 296, 268, 38, 40, 40, 42, 296, 40, 268, 298, 298, 270, 34, 36, 36, 38, 298, 36, 270, 300, 300, 272, 30, 32, 32, 34, 300, 32, + 272, 302, 302, 274, 26, 28, 28, 30, 302, 28, 274, 304, 304, 276, 22, 24, 24, 26, 304, 24, 276, 306, 306, 278, 18, 20, 20, 22, 306, 20, 280, 308, 308, 282, 12, 14, 14, 16, 308, 14 ], - "width": 83, - "height": 74, - "path": "summer-a.ear-right-bubble" - } - }, - "ear-right-dot-01": {"ear-right-dot": {"x": -0.78, "y": -0.78, "rotation": -0.95, "width": 17, "height": 12, "path": "summer-a.ear-right-dot"}}, - "ear-right-dot-02": {"ear-right-dot": {"x": -0.78, "y": -0.78, "rotation": -0.95, "width": 17, "height": 12, "path": "summer-a.ear-right-dot"}}, - "ear-right-dot-03": {"ear-right-dot": {"x": -0.78, "y": -0.78, "rotation": -0.95, "width": 17, "height": 12, "path": "summer-a.ear-right-dot"}}, - "ear-right-dot-04": {"ear-right-dot": {"x": -0.78, "y": -0.78, "rotation": -0.95, "width": 17, "height": 12, "path": "summer-a.ear-right-dot"}}, - "ear-right-dot-05": {"ear-right-dot": {"x": -0.78, "y": -0.78, "rotation": -0.95, "width": 17, "height": 12, "path": "summer-a.ear-right-dot"}}, - "ear-right-dot-06": {"ear-right-dot": {"x": -0.78, "y": -0.78, "rotation": -0.95, "width": 17, "height": 12, "path": "summer-a.ear-right-dot"}}, - "ear-right-dot-07": {"ear-right-dot": {"x": -0.78, "y": -0.78, "rotation": -0.95, "width": 17, "height": 12, "path": "summer-a.ear-right-dot"}}, - "ear-right-dot-08": {"ear-right-dot": {"x": -0.78, "y": -0.78, "rotation": -0.95, "width": 17, "height": 12, "path": "summer-a.ear-right-dot"}}, - "ear-right-dot-09": {"ear-right-dot": {"x": -0.78, "y": -0.78, "rotation": -0.95, "width": 17, "height": 12, "path": "summer-a.ear-right-dot"}}, - "ear-right-dot-10": {"ear-right-dot": {"x": -0.78, "y": -0.78, "rotation": -0.95, "width": 17, "height": 12, "path": "summer-a.ear-right-dot"}}, - "ear-right-dot-11": {"ear-right-dot": {"x": -0.78, "y": -0.78, "rotation": -0.95, "width": 17, "height": 12, "path": "summer-a.ear-right-dot"}}, - "ear-right-dot-12": {"ear-right-dot": {"x": -0.78, "y": -0.78, "rotation": -0.95, "width": 17, "height": 12, "path": "summer-a.ear-right-dot"}}, - "ear-right-dot-13": {"ear-right-dot": {"x": -0.78, "y": -0.78, "rotation": -0.95, "width": 17, "height": 12, "path": "summer-a.ear-right-dot"}}, - "ear-right-dot-14": {"ear-right-dot": {"x": -0.78, "y": -0.78, "rotation": -0.95, "width": 17, "height": 12, "path": "summer-a.ear-right-dot"}}, - "ear-right-dot-15": {"ear-right-dot": {"x": -0.78, "y": -0.78, "rotation": -0.95, "width": 17, "height": 12, "path": "summer-a.ear-right-dot"}}, - "ear-right-dot-16": {"ear-right-dot": {"x": -0.78, "y": -0.78, "rotation": -0.95, "width": 17, "height": 12, "path": "summer-a.ear-right-dot"}}, - "ear-right-dot-17": {"ear-right-dot": {"x": -0.78, "y": -0.78, "rotation": -0.95, "width": 17, "height": 12, "path": "summer-a.ear-right-dot"}}, - "ear-right-dot-18": {"ear-right-dot": {"x": -0.78, "y": -0.78, "rotation": -0.95, "width": 17, "height": 12, "path": "summer-a.ear-right-dot"}}, - "ear-right-dot-19": {"ear-right-dot": {"x": -0.78, "y": -0.78, "rotation": -0.95, "width": 17, "height": 12, "path": "summer-a.ear-right-dot"}}, - "ear-right-dot-20": {"ear-right-dot": {"x": -0.78, "y": -0.78, "rotation": -0.95, "width": 17, "height": 12, "path": "summer-a.ear-right-dot"}}, - "ear-right-under": {"ear-right-under": {"x": 84.87, "y": -16.34, "rotation": -93, "width": 119, "height": 205, "path": "summer-a.ear-right-under"}}, - "ear-right-upper": {"ear-right-upper": {"x": 89.21, "y": -19.57, "rotation": -93, "width": 129, "height": 214, "path": "summer-a.ear-right-upper"}}, - "eyes": { - "eyes": {"x": 24.37, "y": 24.61, "width": 330, "height": 155, "path": "summer-a.eyes"}, - "eyes-angry": {"x": 24.37, "y": 24.61, "width": 330, "height": 155, "path": "summer-a.eyes-angry"}, - "eyes-happy": {"x": 24.37, "y": 24.61, "width": 330, "height": 155, "path": "summer-a.eyes-happy"}, - "eyes-shut": {"x": 24.37, "y": 24.61, "width": 330, "height": 155, "path": "summer-a.eyes-shut"} - }, - "eyes-happy-accessory": {"eyes-happy-accessory": {"x": 0.37, "y": 0.4, "scaleX": 1.4, "scaleY": 1.4, "width": 101, "height": 107, "path": "summer-a.eyes-happy-accessory"}}, - "eyes-light-dot": {"eye-light-dot": {"x": -0.96, "y": 1.51, "width": 70, "height": 72, "path": "summer-a.eye-light-dot"}}, - "eyes-light-dot-02": {"eye-light-dot": {"x": -0.96, "y": 1.51, "width": 70, "height": 72, "path": "summer-a.eye-light-dot"}}, - "eyes-light-left": {"light": {"x": 6.55, "y": 1.56, "scaleX": 1.2, "scaleY": 1.8, "rotation": 178.57, "width": 49, "height": 73, "path": "summer-a.light"}}, - "eyes-light-right": {"light": {"x": 6.55, "y": 1.56, "scaleX": 1.2, "scaleY": 1.8, "rotation": 178.57, "width": 49, "height": 73, "path": "summer-a.light"}}, - "eyes-upper": {"eyes-upper": {"x": 24.04, "y": 24.72, "width": 328, "height": 153, "path": "summer-a.eyes-upper"}}, - "horn": {"horn": {"x": 101.61, "y": -20.37, "rotation": -90, "width": 234, "height": 239, "path": "summer-a.horn"}}, - "mouth": { - "mouth": {"x": -11.63, "y": 54.61, "width": 146, "height": 59, "path": "summer-a.mouth"}, - "mouth-bite": {"x": -1.13, "y": 39.61, "width": 167, "height": 99, "path": "summer-a.mouth-bite"}, - "mouth-open": {"x": -6.63, "y": 16.11, "width": 156, "height": 140, "path": "summer-a.mouth-open"}, - "mouth-smile": {"x": -1.63, "y": 47.61, "width": 166, "height": 65, "path": "summer-a.mouth-smile"} + "width": 87.05882352941177, + "height": 80.0, + "path": "summer-as.ear-left-bubble", + "x": 0.470588235294116, + "y": 0.0 + } }, - "mouth-accessory": { - "mouth-accessory": { + "ear-left-dot-01": { + "ear-left-dot": {"x": 0.8847058823529402, "y": 0.8347058823529402, "rotation": -0.95, "width": 16.47058823529412, "height": 16.47058823529412, "path": "summer-as.ear-left-dot"} + }, + "ear-left-dot-02": { + "ear-left-dot": {"x": 0.8847058823529402, "y": 0.8347058823529402, "rotation": -0.95, "width": 16.47058823529412, "height": 16.47058823529412, "path": "summer-as.ear-left-dot"} + }, + "ear-left-dot-03": { + "ear-left-dot": {"x": 0.8847058823529402, "y": 0.8347058823529402, "rotation": -0.95, "width": 16.47058823529412, "height": 16.47058823529412, "path": "summer-as.ear-left-dot"} + }, + "ear-left-dot-04": { + "ear-left-dot": {"x": 0.8847058823529402, "y": 0.8347058823529402, "rotation": -0.95, "width": 16.47058823529412, "height": 16.47058823529412, "path": "summer-as.ear-left-dot"} + }, + "ear-left-dot-05": { + "ear-left-dot": {"x": 0.8847058823529402, "y": 0.8347058823529402, "rotation": -0.95, "width": 16.47058823529412, "height": 16.47058823529412, "path": "summer-as.ear-left-dot"} + }, + "ear-left-dot-06": { + "ear-left-dot": {"x": 0.8847058823529402, "y": 0.8347058823529402, "rotation": -0.95, "width": 16.47058823529412, "height": 16.47058823529412, "path": "summer-as.ear-left-dot"} + }, + "ear-left-dot-07": { + "ear-left-dot": {"x": 0.8847058823529402, "y": 0.8347058823529402, "rotation": -0.95, "width": 16.47058823529412, "height": 16.47058823529412, "path": "summer-as.ear-left-dot"} + }, + "ear-left-dot-08": { + "ear-left-dot": {"x": 0.8847058823529402, "y": 0.8347058823529402, "rotation": -0.95, "width": 16.47058823529412, "height": 16.47058823529412, "path": "summer-as.ear-left-dot"} + }, + "ear-left-dot-09": { + "ear-left-dot": {"x": 0.8847058823529402, "y": 0.8347058823529402, "rotation": -0.95, "width": 16.47058823529412, "height": 16.47058823529412, "path": "summer-as.ear-left-dot"} + }, + "ear-left-dot-10": { + "ear-left-dot": {"x": 0.8847058823529402, "y": 0.8347058823529402, "rotation": -0.95, "width": 16.47058823529412, "height": 16.47058823529412, "path": "summer-as.ear-left-dot"} + }, + "ear-left-dot-11": { + "ear-left-dot": {"x": 0.8847058823529402, "y": 0.8347058823529402, "rotation": -0.95, "width": 16.47058823529412, "height": 16.47058823529412, "path": "summer-as.ear-left-dot"} + }, + "ear-left-dot-12": { + "ear-left-dot": {"x": 0.8847058823529402, "y": 0.8347058823529402, "rotation": -0.95, "width": 16.47058823529412, "height": 16.47058823529412, "path": "summer-as.ear-left-dot"} + }, + "ear-left-under": { + "ear-left-under": {"x": 84.58058823529412, "y": -22.60529411764706, "rotation": -90, "width": 127.05882352941177, "height": 216.47058823529412, "path": "summer-as.ear-left-under"} + }, + "ear-left-upper": { + "ear-left-upper": {"x": 86.34529411764706, "y": -23.664117647058827, "rotation": -90, "width": 143.52941176470588, "height": 230.58823529411765, "path": "summer-as.ear-left-upper"} + }, + "ear-right-bubble": { + "ear-right-bubble": { "type": "mesh", "uvs": [ - 0.7567, 0.0473, 0.86697, 0.14039, 0.9443, 0.25209, 0.99714, 0.36666, 0.99999, 0.49597, 1, 0.61625, 0.9486, 0.73368, 0.85981, 0.85684, 0.74238, 0.95422, 0.58914, 1, 0.46884, 1, - 0.36484, 0.99858, 0.24169, 0.95082, 0.12854, 0.86646, 0.03732, 0.75174, 0, 0.59723, 0, 0.48254, 0, 0.36237, 0.04691, 0.22488, 0.14286, 0.10888, 0.25027, 0.03298, 0.37916, 0, 0.49749, - 0, 0.62208, 0, 0.48816, 0.49691, 0.38984, 0.47048, 0.40039, 0.4428, 0.42008, 0.42041, 0.44087, 0.4047, 0.46611, 0.39392, 0.49007, 0.39257, 0.5155, 0.39441, 0.54363, 0.40403, 0.56948, - 0.42037, 0.58681, 0.44396, 0.59625, 0.46925, 0.60239, 0.4967, 0.59962, 0.5229, 0.58591, 0.54718, 0.56617, 0.57246, 0.53987, 0.58993, 0.50841, 0.5978, 0.48422, 0.59958, 0.46389, - 0.59563, 0.44255, 0.58693, 0.41915, 0.56782, 0.40098, 0.54296, 0.39091, 0.5164, 0.38677, 0.494, 0.25326, 0.49016, 0.26189, 0.43608, 0.28722, 0.37303, 0.33073, 0.32, 0.38007, 0.28612, - 0.43888, 0.26671, 0.49242, 0.26434, 0.5491, 0.26844, 0.61141, 0.29055, 0.66979, 0.32597, 0.72081, 0.37204, 0.74533, 0.4311, 0.75435, 0.49642, 0.74415, 0.5566, 0.71527, 0.6137, - 0.66814, 0.67121, 0.6053, 0.70764, 0.53338, 0.72221, 0.47953, 0.72167, 0.43531, 0.71188, 0.25606, 0.54343, 0.2836, 0.60497, 0.33013, 0.6593, 0.38745, 0.69572, 0.2371, 0.756, 0.32258, - 0.81152, 0.40412, 0.83877, 0.47432, 0.85748, 0.5622, 0.86577, 0.67514, 0.83328, 0.76201, 0.76212, 0.82762, 0.67147, 0.86788, 0.58544, 0.89046, 0.49617, 0.88879, 0.39439, 0.84496, - 0.30541, 0.77906, 0.22313, 0.69067, 0.15785, 0.58965, 0.1164, 0.49532, 0.10584, 0.40602, 0.11317, 0.30758, 0.14475, 0.22046, 0.19609, 0.15118, 0.28916, 0.11571, 0.39679, 0.10936, - 0.48603, 0.11577, 0.57155, 0.16414, 0.68085 + 0.93928, 0.50958, 0.95558, 0.59885, 0.96791, 0.66638, 0.98006, 0.73289, 1, 0.84205, 1, 0.89818, 1, 0.9625, 0.9567, 0.9625, 0.9208, 0.9625, 0.88771, 0.9625, 0.83969, 0.9625, 0.79967, + 0.9625, 0.76574, 0.9625, 0.73418, 0.9625, 0.69508, 0.9625, 0.6661, 0.9625, 0.6319, 0.9625, 0.6046, 0.9625, 0.57454, 0.9625, 0.53755, 0.9625, 0.50387, 0.9625, 0.47341, 0.9625, + 0.44466, 0.9625, 0.41233, 0.9625, 0.37317, 0.9625, 0.33787, 0.9625, 0.30333, 0.9625, 0.2648, 0.9625, 0.21937, 0.9625, 0.17434, 0.9625, 0.12959, 0.9625, 0.08769, 0.9625, 0, 0.9625, + 0.02085, 0.89779, 0.04055, 0.83664, 0.06626, 0.75682, 0.08854, 0.68766, 0.11527, 0.60468, 0.13788, 0.53451, 0.35753, 0.0375, 0.43128, 0.0375, 0.52161, 0.0375, 0.60662, 0.0375, + 0.67954, 0.0375, 0.54109, 0.5336, 0.30907, 0.53412, 0.75362, 0.52077, 0.84707, 0.51514, 0.2081, 0.53435, 0.42115, 0.53387, 0.64269, 0.52747, 0.1892, 0.60156, 0.3018, 0.60447, + 0.41972, 0.60346, 0.54053, 0.60135, 0.64648, 0.59785, 0.76151, 0.59644, 0.87262, 0.58988, 0.16806, 0.67676, 0.29497, 0.67061, 0.41838, 0.66857, 0.54, 0.66508, 0.65011, 0.66538, + 0.7681, 0.65967, 0.89666, 0.66021, 0.14733, 0.75044, 0.28705, 0.74721, 0.41688, 0.74143, 0.53942, 0.73556, 0.6538, 0.73393, 0.7757, 0.7326, 0.91933, 0.7265, 0.12337, 0.83566, 0.2782, + 0.83283, 0.4151, 0.82771, 0.53871, 0.82207, 0.65852, 0.82169, 0.7847, 0.8189, 0.95379, 0.82732, 0.97627, 0.89309, 0.79208, 0.88971, 0.66236, 0.89294, 0.5381, 0.89586, 0.41375, + 0.89349, 0.2717, 0.89571, 0.10571, 0.89844, 0.53197, 0.30141, 0.39415, 0.1884, 0.65961, 0.2117, 0.25473, 0.53425, 0.24202, 0.60293, 0.22911, 0.6738, 0.21379, 0.7489, 0.19729, + 0.83431, 0.18704, 0.8971, 0.36352, 0.534, 0.36013, 0.60397, 0.35748, 0.66957, 0.35288, 0.74428, 0.34802, 0.83022, 0.34383, 0.89458, 0.48024, 0.53373, 0.47847, 0.60244, 0.47433, + 0.66696, 0.47563, 0.73861, 0.47402, 0.82502, 0.47337, 0.89463, 0.58955, 0.53067, 0.59344, 0.5996, 0.59605, 0.66523, 0.5961, 0.73475, 0.60032, 0.82187, 0.60296, 0.89434, 0.69391, + 0.52438, 0.69915, 0.59721, 0.70691, 0.66263, 0.71206, 0.7333, 0.71954, 0.82034, 0.72813, 0.8913, 0.80125, 0.5179, 0.81428, 0.59333, 0.8348, 0.65995, 0.84793, 0.72953, 0.87862, + 0.82358, 0.89305, 0.89156, 0.19669, 0.67537, 0.17782, 0.74974, 0.1594, 0.835, 0.1429, 0.89783, 0.26012, 0.6723, 0.25017, 0.74806, 0.23685, 0.83359, 0.22589, 0.89647, 0.30659, + 0.89517, 0.3131, 0.83153, 0.31569, 0.74593, 0.32231, 0.67016, 0.38717, 0.66908, 0.38553, 0.74282, 0.38068, 0.829, 0.37648, 0.89407, 0.44462, 0.89408, 0.44322, 0.82643, 0.44458, + 0.7401, 0.44621, 0.66777, 0.50711, 0.66602, 0.50646, 0.73714, 0.50582, 0.82357, 0.50482, 0.89523, 0.57134, 0.89508, 0.5687, 0.82197, 0.56865, 0.73514, 0.5654, 0.66515, 0.62192, + 0.6653, 0.6236, 0.73436, 0.62525, 0.8218, 0.62839, 0.89374, 0.69427, 0.89215, 0.76244, 0.89045, 0.84047, 0.89059, 0.93306, 0.89229, 0.91732, 0.8255, 0.82617, 0.82097, 0.75013, + 0.81967, 0.6863, 0.82108, 0.68017, 0.73364, 0.74166, 0.73297, 0.80979, 0.73115, 0.88285, 0.72805, 0.86581, 0.66008, 0.79931, 0.6598, 0.73613, 0.66121, 0.67214, 0.66431, 0.09776, + 0.92671, 0.13724, 0.92534, 0.1817, 0.92459, 0.22313, 0.92439, 0.26892, 0.92268, 0.30526, 0.92265, 0.34139, 0.92236, 0.3751, 0.92252, 0.41313, 0.92351, 0.44464, 0.92289, 0.47339, + 0.92339, 0.5044, 0.9248, 0.53787, 0.92389, 0.57268, 0.92341, 0.60366, 0.9233, 0.62995, 0.92432, 0.66398, 0.92316, 0.69464, 0.92383, 0.73085, 0.92333, 0.76403, 0.92521, 0.79572, + 0.92461, 0.84011, 0.92404, 0.89075, 0.92209, 0.92774, 0.92274, 0.96706, 0.92576 ], "triangles": [ - 96, 69, 70, 73, 70, 71, 77, 66, 65, 34, 58, 59, 60, 35, 59, 61, 36, 60, 31, 30, 55, 30, 29, 55, 32, 31, 56, 33, 32, 57, 28, 53, 29, 27, 52, 28, 27, 26, 52, 34, 33, 58, 25, 50, 26, - 48, 49, 25, 36, 35, 60, 69, 48, 47, 37, 36, 62, 70, 47, 46, 38, 37, 63, 71, 46, 45, 39, 38, 64, 44, 71, 45, 72, 44, 43, 40, 39, 65, 68, 72, 43, 68, 43, 42, 67, 68, 42, 66, 41, 40, - 67, 42, 41, 66, 67, 41, 24, 29, 30, 24, 30, 31, 24, 31, 32, 24, 32, 33, 24, 33, 34, 24, 34, 35, 24, 35, 36, 28, 29, 24, 27, 28, 24, 26, 27, 24, 25, 26, 24, 48, 25, 24, 47, 48, 24, - 37, 24, 36, 46, 47, 24, 38, 24, 37, 45, 46, 24, 39, 24, 38, 44, 45, 24, 24, 43, 44, 39, 40, 24, 43, 24, 42, 40, 41, 24, 41, 42, 24, 35, 34, 59, 55, 29, 54, 53, 54, 29, 56, 31, 55, - 57, 32, 56, 52, 53, 28, 26, 51, 52, 50, 51, 26, 49, 50, 25, 69, 49, 48, 70, 69, 47, 63, 37, 62, 71, 70, 46, 64, 38, 63, 44, 72, 71, 65, 39, 64, 65, 66, 40, 58, 33, 57, 62, 36, 61, - 75, 72, 68, 67, 75, 68, 74, 71, 72, 76, 67, 66, 22, 89, 21, 87, 88, 22, 88, 89, 22, 90, 20, 21, 23, 87, 22, 86, 87, 23, 89, 90, 21, 91, 19, 20, 0, 86, 23, 85, 86, 0, 90, 91, 20, 1, - 85, 0, 18, 19, 91, 84, 85, 1, 88, 54, 89, 56, 55, 88, 55, 54, 88, 53, 90, 89, 87, 56, 88, 57, 56, 87, 54, 53, 89, 52, 91, 90, 92, 18, 91, 86, 57, 87, 58, 57, 86, 2, 84, 1, 53, 52, - 90, 92, 91, 52, 85, 58, 86, 59, 58, 85, 17, 18, 92, 83, 84, 2, 84, 59, 85, 51, 92, 52, 3, 83, 2, 60, 59, 84, 93, 17, 92, 93, 92, 51, 83, 60, 84, 50, 93, 51, 16, 17, 93, 94, 16, 93, - 94, 93, 50, 49, 94, 50, 83, 3, 4, 82, 83, 4, 60, 83, 82, 61, 60, 82, 69, 95, 94, 69, 94, 49, 81, 61, 82, 62, 61, 81, 95, 15, 16, 95, 16, 94, 82, 4, 5, 81, 82, 5, 80, 62, 81, 63, 62, - 80, 96, 95, 69, 6, 81, 5, 80, 81, 6, 14, 15, 95, 14, 95, 96, 73, 96, 70, 79, 63, 80, 64, 63, 79, 74, 73, 71, 78, 64, 79, 65, 64, 78, 74, 72, 75, 7, 80, 6, 79, 80, 7, 76, 75, 67, 77, - 65, 78, 76, 66, 77, 13, 14, 96, 13, 96, 73, 12, 73, 74, 13, 73, 12, 7, 8, 78, 7, 78, 79, 11, 74, 75, 10, 11, 75, 12, 74, 11, 76, 10, 75, 10, 76, 77, 9, 77, 78, 9, 78, 8, 10, 77, 9 + 166, 63, 70, 116, 171, 166, 165, 115, 116, 77, 70, 167, 163, 166, 70, 163, 70, 77, 117, 116, 166, 117, 166, 163, 77, 167, 162, 164, 165, 116, 164, 116, 117, 76, 69, 165, 76, 165, + 164, 162, 122, 123, 80, 77, 162, 158, 163, 77, 158, 77, 80, 159, 162, 123, 80, 162, 159, 118, 117, 163, 118, 163, 158, 124, 123, 161, 159, 123, 124, 157, 164, 117, 157, 117, 118, 81, + 76, 164, 81, 164, 157, 195, 159, 124, 196, 124, 160, 195, 124, 196, 189, 81, 157, 191, 118, 158, 190, 157, 118, 190, 118, 191, 189, 157, 190, 159, 193, 80, 194, 159, 195, 194, 193, + 159, 192, 158, 80, 192, 80, 193, 191, 158, 192, 15, 189, 190, 14, 190, 191, 15, 190, 14, 13, 191, 192, 14, 191, 13, 12, 192, 193, 13, 192, 12, 11, 193, 194, 12, 193, 11, 10, 11, 194, + 9, 194, 195, 10, 194, 9, 8, 195, 196, 9, 195, 8, 8, 196, 7, 151, 109, 110, 68, 152, 151, 146, 145, 68, 104, 103, 146, 155, 154, 69, 155, 69, 76, 111, 110, 154, 111, 154, 155, 150, + 151, 110, 150, 110, 111, 68, 151, 150, 75, 146, 68, 75, 68, 150, 147, 104, 146, 147, 146, 75, 105, 143, 104, 105, 104, 147, 142, 67, 143, 142, 143, 105, 74, 67, 142, 156, 155, 76, + 156, 76, 81, 106, 141, 142, 74, 142, 141, 83, 74, 141, 112, 111, 155, 112, 155, 156, 105, 106, 142, 149, 150, 111, 149, 111, 112, 148, 105, 147, 106, 105, 148, 82, 75, 150, 82, 148, + 147, 147, 75, 82, 150, 149, 82, 182, 141, 106, 187, 112, 156, 183, 106, 148, 182, 106, 183, 186, 149, 112, 186, 112, 187, 182, 181, 83, 182, 83, 141, 185, 148, 82, 185, 82, 149, 185, + 149, 186, 188, 156, 81, 188, 81, 189, 187, 156, 188, 184, 183, 148, 184, 148, 185, 22, 182, 183, 181, 182, 22, 23, 181, 22, 21, 183, 184, 22, 183, 21, 20, 21, 184, 19, 184, 185, 20, + 184, 19, 18, 186, 187, 19, 185, 186, 18, 19, 186, 17, 187, 188, 18, 187, 17, 16, 188, 189, 17, 188, 16, 16, 189, 15, 143, 144, 104, 110, 153, 154, 151, 152, 109, 68, 145, 61, 68, 61, + 152, 146, 103, 145, 83, 139, 74, 181, 140, 83, 23, 180, 181, 138, 137, 67, 98, 136, 97, 98, 97, 138, 135, 59, 136, 135, 136, 98, 66, 59, 135, 130, 129, 66, 74, 138, 67, 139, 98, 138, + 139, 138, 74, 99, 135, 98, 99, 98, 139, 134, 66, 135, 134, 135, 99, 73, 130, 66, 73, 66, 134, 131, 92, 130, 131, 130, 73, 93, 92, 131, 140, 99, 139, 140, 139, 83, 100, 134, 99, 100, + 99, 140, 133, 73, 134, 133, 134, 100, 84, 131, 73, 84, 73, 133, 132, 93, 131, 132, 131, 84, 94, 127, 93, 94, 93, 132, 128, 127, 94, 179, 133, 100, 180, 100, 140, 179, 100, 180, 178, + 84, 133, 178, 133, 179, 177, 132, 84, 177, 84, 178, 180, 140, 181, 176, 94, 132, 176, 132, 177, 175, 128, 94, 175, 94, 176, 174, 85, 128, 174, 128, 175, 30, 173, 174, 31, 173, 30, + 29, 174, 175, 30, 174, 29, 28, 175, 176, 29, 175, 28, 27, 176, 177, 28, 176, 27, 26, 177, 178, 27, 177, 26, 25, 178, 179, 26, 178, 25, 24, 179, 180, 25, 179, 24, 24, 180, 23, 79, 4, + 5, 79, 78, 4, 6, 79, 5, 123, 168, 161, 160, 78, 79, 124, 161, 160, 7, 196, 197, 196, 160, 197, 197, 160, 79, 160, 161, 78, 7, 197, 6, 162, 167, 122, 6, 197, 79, 85, 72, 128, 173, 32, + 85, 31, 32, 173, 173, 85, 174, 85, 32, 33, 66, 129, 59, 167, 170, 121, 167, 121, 122, 70, 63, 170, 70, 170, 167, 166, 171, 63, 123, 122, 168, 130, 91, 129, 92, 91, 130, 122, 169, + 168, 127, 65, 126, 72, 65, 127, 92, 125, 91, 161, 168, 71, 122, 121, 169, 170, 120, 121, 91, 90, 129, 78, 161, 71, 3, 78, 71, 71, 64, 2, 52, 129, 90, 59, 129, 52, 67, 60, 143, 138, + 97, 137, 170, 63, 56, 171, 56, 63, 169, 121, 57, 33, 34, 85, 72, 35, 65, 34, 35, 72, 125, 51, 91, 35, 36, 65, 91, 51, 90, 36, 37, 58, 58, 37, 51, 71, 2, 3, 64, 1, 2, 1, 64, 57, 57, + 0, 1, 87, 39, 40, 88, 42, 43, 88, 86, 41, 88, 41, 42, 0, 88, 43, 47, 88, 0, 86, 88, 113, 47, 119, 88, 119, 46, 88, 46, 113, 88, 50, 86, 113, 107, 86, 50, 44, 86, 107, 87, 41, 86, 41, + 87, 40, 101, 86, 44, 87, 86, 95, 101, 49, 86, 87, 38, 39, 49, 95, 86, 87, 95, 45, 87, 45, 89, 87, 89, 48, 87, 48, 38, 57, 47, 0, 120, 119, 47, 56, 46, 119, 56, 119, 120, 114, 113, + 46, 114, 46, 56, 55, 50, 113, 55, 113, 114, 108, 107, 50, 55, 108, 50, 54, 101, 44, 44, 107, 108, 54, 44, 108, 102, 49, 101, 102, 101, 54, 90, 48, 89, 53, 95, 49, 53, 49, 102, 96, + 45, 95, 96, 95, 53, 52, 89, 45, 52, 45, 96, 90, 89, 52, 171, 114, 56, 115, 114, 171, 172, 55, 114, 172, 114, 115, 54, 145, 102, 152, 54, 108, 61, 54, 152, 153, 109, 108, 55, 153, + 108, 152, 108, 109, 55, 62, 153, 172, 62, 55, 61, 145, 54, 102, 144, 53, 103, 102, 145, 103, 144, 102, 53, 137, 96, 60, 53, 144, 60, 137, 53, 96, 136, 52, 97, 96, 137, 97, 136, 96, + 69, 62, 172, 154, 153, 62, 110, 109, 153, 144, 103, 104, 143, 60, 144, 67, 137, 60, 120, 47, 57, 121, 120, 57, 64, 169, 57, 78, 3, 4, 51, 38, 48, 51, 48, 90, 37, 38, 51, 58, 51, 125, + 65, 36, 58, 120, 170, 56, 154, 62, 69, 116, 115, 171, 165, 172, 115, 69, 172, 165, 59, 52, 136, 126, 58, 125, 65, 58, 126, 168, 169, 64, 168, 64, 71, 85, 34, 72, 126, 125, 92, 93, + 126, 92, 127, 126, 93, 128, 72, 127 ], "vertices": [ - 1, 29, 42.58, 72.34, 1, 1, 29, 60.45, 57.26, 1, 1, 29, 72.98, 39.16, 1, 1, 29, 81.54, 20.6, 1, 1, 29, 82, -0.34, 1, 1, 29, 82, -19.83, 1, 1, 29, 73.67, -38.85, 1, 1, 29, 59.29, - -58.81, 1, 1, 29, 40.26, -74.58, 1, 1, 29, 15.44, -82, 1, 1, 29, -4.05, -82, 1, 1, 29, -20.9, -81.77, 1, 1, 29, -40.85, -74.03, 1, 1, 29, -59.18, -60.37, 1, 1, 29, -73.95, -41.78, 1, - 1, 29, -82, -16.75, 1, 1, 29, -82, 1.83, 1, 1, 29, -82, 21.3, 1, 1, 29, -72.4, 43.57, 1, 1, 29, -56.86, 62.36, 1, 1, 29, -39.46, 74.66, 1, 1, 29, -18.58, 82, 1, 1, 29, 0.59, 82, 1, - 1, 29, 20.78, 80.84, 1, 1, 81, -0.92, -0.5, 1, 1, 81, -16.85, 3.78, 1, 1, 81, -15.14, 8.27, 1, 1, 81, -11.95, 11.89, 1, 1, 81, -8.58, 14.44, 1, 1, 81, -4.49, 16.19, 1, 1, 81, -0.61, - 16.41, 1, 1, 81, 3.51, 16.11, 1, 1, 81, 8.07, 14.55, 1, 1, 81, 12.26, 11.9, 1, 1, 81, 15.06, 8.08, 1, 1, 81, 16.59, 3.98, 1, 1, 81, 17.59, -0.46, 1, 1, 81, 17.14, -4.71, 1, 1, 81, - 14.92, -8.64, 1, 1, 81, 11.72, -12.74, 1, 1, 81, 7.46, -15.57, 1, 1, 81, 2.36, -16.84, 1, 1, 81, -1.56, -17.13, 1, 1, 81, -4.85, -16.49, 1, 1, 81, -8.31, -15.08, 1, 1, 81, -12.1, - -11.99, 1, 1, 81, -15.04, -7.96, 1, 1, 81, -16.67, -3.66, 1, 1, 81, -17.34, -0.03, 1, 2, 29, -38.97, 0.6, 0.37475, 81, -38.97, 0.6, 0.62525, 2, 29, -37.57, 9.36, 0.38176, 81, -37.57, - 9.36, 0.61824, 2, 29, -33.47, 19.57, 0.39514, 81, -33.47, 19.57, 0.60486, 2, 29, -26.42, 28.16, 0.40154, 81, -26.42, 28.16, 0.59846, 2, 29, -18.43, 33.65, 0.40298, 81, -18.43, 33.65, - 0.59702, 2, 29, -8.9, 36.8, 0.39723, 81, -8.9, 36.8, 0.60277, 2, 29, -0.23, 37.18, 0.38672, 81, -0.23, 37.18, 0.61328, 2, 29, 8.95, 36.51, 0.39243, 81, 8.95, 36.51, 0.60757, 2, 29, - 19.05, 32.93, 0.39729, 81, 19.05, 32.93, 0.60271, 2, 29, 28.51, 27.19, 0.41715, 81, 28.51, 27.19, 0.58285, 2, 29, 36.77, 19.73, 0.45304, 81, 36.77, 19.73, 0.54696, 2, 29, 40.74, - 10.16, 0.44594, 81, 40.74, 10.16, 0.55406, 2, 29, 42.2, -0.42, 0.43856, 81, 42.2, -0.42, 0.56144, 2, 29, 40.55, -10.17, 0.41782, 81, 40.55, -10.17, 0.58218, 2, 29, 35.87, -19.42, - 0.38686, 81, 35.87, -19.42, 0.61314, 2, 29, 28.24, -28.73, 0.36878, 81, 28.24, -28.73, 0.63122, 2, 29, 18.06, -34.64, 0.3386, 81, 18.06, -34.64, 0.6614, 2, 29, 6.41, -37, 0.30037, - 81, 6.41, -37, 0.69963, 2, 29, -2.32, -36.91, 0.28415, 81, -2.32, -36.91, 0.71585, 2, 29, -9.48, -35.32, 0.27399, 81, -9.48, -35.32, 0.72601, 2, 29, -38.52, -8.03, 0.36783, 81, - -38.52, -8.03, 0.63217, 2, 29, -34.06, -18, 0.33446, 81, -34.06, -18, 0.66554, 2, 29, -26.52, -26.8, 0.30599, 81, -26.52, -26.8, 0.69401, 2, 29, -17.23, -32.71, 0.28378, 81, -17.23, - -32.71, 0.71622, 2, 29, -41.59, -42.47, 0.73847, 81, -41.59, -42.47, 0.26153, 2, 29, -27.74, -51.46, 0.71173, 81, -27.74, -51.46, 0.28827, 2, 29, -14.53, -55.88, 0.69513, 81, -14.53, - -55.88, 0.30487, 2, 29, -3.16, -58.91, 0.72225, 81, -3.16, -58.91, 0.27775, 2, 29, 11.08, -60.25, 0.77228, 81, 11.08, -60.25, 0.22772, 2, 29, 29.37, -54.99, 0.80171, 81, 29.37, - -54.99, 0.19829, 2, 29, 43.44, -43.46, 0.78981, 81, 43.44, -43.46, 0.21019, 2, 29, 54.07, -28.78, 0.79382, 81, 54.07, -28.78, 0.20618, 2, 29, 60.6, -14.84, 0.827, 81, 60.6, -14.84, - 0.173, 2, 29, 64.25, -0.38, 0.87698, 81, 64.25, -0.38, 0.12302, 2, 29, 63.98, 16.11, 0.92141, 81, 63.98, 16.11, 0.07859, 2, 29, 56.88, 30.53, 0.90642, 81, 56.88, 30.53, 0.09358, 2, - 29, 46.21, 43.86, 0.90058, 81, 46.21, 43.86, 0.09942, 2, 29, 31.89, 54.43, 0.8953, 81, 31.89, 54.43, 0.1047, 2, 29, 15.52, 61.14, 0.89934, 81, 15.52, 61.14, 0.10066, 2, 29, 0.24, - 62.86, 0.89762, 81, 0.24, 62.86, 0.10238, 2, 29, -14.22, 61.67, 0.90341, 81, -14.22, 61.67, 0.09659, 2, 29, -30.17, 56.55, 0.9151, 81, -30.17, 56.55, 0.0849, 2, 29, -44.28, 48.24, - 0.93596, 81, -44.28, 48.24, 0.06404, 2, 29, -55.51, 33.16, 0.90966, 81, -55.51, 33.16, 0.09034, 2, 29, -61.25, 15.72, 0.86888, 81, -61.25, 15.72, 0.13112, 2, 29, -62.28, 1.26, - 0.83823, 81, -62.28, 1.26, 0.16177, 2, 29, -61.24, -12.59, 0.82811, 81, -61.24, -12.59, 0.17189, 2, 29, -53.41, -30.3, 0.78788, 81, -53.41, -30.3, 0.21212 + 1, 31, 39.72, 33.4, 1, 1, 31, 46.93, 34.38, 1, 1, 31, 52.37, 35.12, 1, 1, 31, 58.6, 36.08, 1, 4, 31, 66.62, 38.45, 0.9295, 36, 61.48, 0.37, 1e-05, 37, 40.07, 0.48, 0.00266, 38, 18.6, + 0.48, 0.06784, 4, 31, 70.87, 39.07, 0.79905, 36, 62.32, -3.84, 1e-05, 37, 40.92, -3.73, 0.00721, 38, 19.44, -3.73, 0.19373, 4, 31, 76.95, 40.59, 0.74731, 36, 64.15, -9.83, 0, 37, + 42.75, -9.72, 0.00973, 38, 21.27, -9.72, 0.24296, 4, 31, 76.59, 36.12, 0.54785, 36, 59.68, -9.71, 1e-05, 37, 38.27, -9.6, 0.02168, 38, 16.8, -9.6, 0.43046, 4, 31, 76.3, 32.42, + 0.43038, 36, 55.96, -9.61, 3e-05, 37, 34.56, -9.5, 0.03847, 38, 13.08, -9.5, 0.53112, 4, 31, 76.02, 29.01, 0.36035, 36, 52.54, -9.51, 9e-05, 37, 31.14, -9.41, 0.06275, 38, 9.66, + -9.41, 0.57681, 4, 31, 75.63, 24.06, 0.2889, 36, 47.58, -9.38, 0.00026, 37, 26.17, -9.27, 0.09917, 38, 4.7, -9.27, 0.61167, 4, 31, 75.3, 19.93, 0.22591, 36, 43.44, -9.26, 0.0007, 37, + 22.03, -9.16, 0.14876, 38, 0.56, -9.16, 0.62463, 4, 31, 75.15, 17.12, 0.17724, 36, 40.62, -9.26, 0.0017, 37, 19.22, -9.16, 0.21115, 38, -2.26, -9.16, 0.60991, 4, 31, 75.01, 14.5, + 0.14418, 36, 38, -9.26, 0.00385, 37, 16.6, -9.16, 0.28407, 38, -4.88, -9.16, 0.5679, 4, 31, 74.84, 11.26, 0.12448, 36, 34.76, -9.26, 0.00813, 37, 13.35, -9.16, 0.36326, 38, -8.12, + -9.16, 0.50413, 4, 31, 74.71, 8.86, 0.11438, 36, 32.35, -9.26, 0.016, 37, 10.95, -9.16, 0.44276, 38, -10.53, -9.16, 0.42686, 4, 31, 74.56, 6.02, 0.11006, 36, 29.51, -9.26, 0.02948, + 37, 8.11, -9.16, 0.51561, 38, -13.37, -9.16, 0.34486, 4, 31, 74.45, 3.76, 0.10858, 36, 27.25, -9.26, 0.05095, 37, 5.84, -9.16, 0.57474, 38, -15.63, -9.16, 0.26573, 4, 31, 74.31, + 1.27, 0.10802, 36, 24.75, -9.26, 0.08291, 37, 3.35, -9.16, 0.614, 38, -18.13, -9.16, 0.19506, 4, 31, 74.15, -1.8, 0.1074, 36, 21.68, -9.26, 0.12742, 37, 0.28, -9.16, 0.62906, 38, + -21.2, -9.16, 0.13612, 4, 31, 74.01, -4.59, 0.10634, 36, 18.89, -9.26, 0.18549, 37, -2.52, -9.16, 0.61812, 38, -23.99, -9.16, 0.09006, 4, 31, 73.87, -7.11, 0.10502, 36, 16.36, -9.26, + 0.25646, 37, -5.05, -9.16, 0.58221, 38, -26.52, -9.16, 0.05631, 4, 31, 73.75, -9.5, 0.10419, 36, 13.97, -9.26, 0.33753, 37, -7.43, -9.16, 0.52513, 38, -28.91, -9.16, 0.03316, 4, 31, + 73.61, -12.18, 0.10536, 36, 11.29, -9.26, 0.42349, 37, -10.12, -9.16, 0.45282, 38, -31.59, -9.16, 0.01833, 4, 31, 73.44, -15.42, 0.11098, 36, 8.04, -9.26, 0.50701, 37, -13.37, -9.16, + 0.37254, 38, -34.84, -9.16, 0.00948, 4, 31, 73.28, -18.35, 0.12436, 36, 5.11, -9.26, 0.57939, 37, -16.3, -9.16, 0.29168, 38, -37.77, -9.16, 0.00457, 4, 31, 73.13, -21.21, 0.149, 36, + 2.24, -9.26, 0.63222, 37, -19.16, -9.16, 0.21673, 38, -40.64, -9.16, 0.00205, 4, 31, 72.96, -24.4, 0.18726, 36, -0.96, -9.26, 0.65948, 37, -22.36, -9.16, 0.15241, 38, -43.84, -9.16, + 0.00085, 4, 31, 72.77, -28.17, 0.23866, 36, -4.73, -9.26, 0.65975, 37, -26.13, -9.16, 0.10126, 38, -47.61, -9.16, 0.00033, 4, 31, 72.57, -31.9, 0.29871, 36, -8.46, -9.26, 0.63741, + 37, -29.87, -9.16, 0.06376, 38, -51.34, -9.16, 0.00012, 4, 31, 72.37, -35.61, 0.35932, 36, -12.18, -9.26, 0.60181, 37, -33.58, -9.16, 0.03884, 38, -55.06, -9.16, 4e-05, 4, 31, 72.19, + -39.08, 0.49297, 36, -15.66, -9.26, 0.48586, 37, -37.06, -9.16, 0.02116, 38, -58.54, -9.16, 1e-05, 4, 31, 71.81, -46.35, 0.66969, 36, -22.93, -9.26, 0.32512, 37, -44.34, -9.16, + 0.00518, 38, -65.81, -9.16, 0, 4, 31, 66.73, -44.35, 0.73638, 36, -21.2, -4.09, 0.26049, 37, -42.61, -3.98, 0.00313, 38, -64.08, -3.98, 0, 4, 31, 61.93, -42.46, 0.74288, 36, -19.57, + 0.8, 0.25402, 37, -40.97, 0.91, 0.00309, 38, -62.45, 0.91, 1e-05, 2, 31, 55.67, -40, 0.86, 36, -17.44, 7.19, 0.14, 2, 31, 50.24, -37.86, 0.87418, 36, -15.59, 12.72, 0.12582, 1, 31, + 43.72, -35.29, 1, 1, 31, 38.22, -33.12, 1, 2, 31, -0.53, -12.83, 0.99965, 36, 6.74, 64.74, 0.00035, 2, 31, -0.21, -6.72, 0.9998, 36, 12.86, 64.74, 0.0002, 3, 31, 0.19, 0.77, 0.99981, + 36, 20.36, 64.74, 9e-05, 38, -22.52, 64.84, 0.0001, 3, 31, 0.56, 7.82, 0.99975, 36, 27.41, 64.74, 1e-05, 38, -15.47, 64.84, 0.00024, 2, 31, 0.88, 13.86, 0.99954, 38, -9.41, 64.84, + 0.00046, 4, 31, 39.9, 0.3, 0.88429, 36, 21.98, 25.05, 0.02526, 37, 0.57, 25.15, 0.06552, 38, -20.9, 25.15, 0.02493, 1, 31, 38.93, -18.93, 1, 4, 31, 39.81, 17.97, 0.94373, 36, 39.62, + 26.07, 0.00089, 37, 18.21, 26.18, 0.01419, 38, -3.26, 26.18, 0.04119, 1, 31, 39.76, 25.74, 1, 1, 31, 38.51, -27.3, 1, 4, 31, 39.4, -9.64, 0.88619, 36, 12.02, 25.03, 0.05505, 37, + -9.38, 25.13, 0.05102, 38, -30.86, 25.13, 0.00774, 4, 31, 39.86, 8.75, 0.89286, 36, 30.41, 25.54, 0.00746, 37, 9, 25.64, 0.04877, 38, -12.47, 25.64, 0.05092, 1, 31, 43.8, -29.15, 1, + 4, 31, 44.52, -19.83, 0.74343, 36, 2.11, 19.38, 0.19678, 37, -19.29, 19.48, 0.05726, 38, -40.77, 19.48, 0.00254, 4, 31, 44.96, -10.05, 0.58833, 36, 11.9, 19.46, 0.20061, 37, -9.5, + 19.56, 0.19026, 38, -30.98, 19.56, 0.0208, 4, 31, 45.31, -0.03, 0.58846, 36, 21.93, 19.63, 0.08112, 37, 0.53, 19.73, 0.24909, 38, -20.95, 19.73, 0.08133, 4, 31, 45.5, 8.76, 0.59817, + 36, 30.72, 19.91, 0.02026, 37, 9.32, 20.01, 0.18761, 38, -12.16, 20.01, 0.19395, 4, 31, 45.89, 18.3, 0.66183, 36, 40.27, 20.02, 0.00346, 37, 18.87, 20.13, 0.07957, 38, -2.61, 20.13, + 0.25514, 1, 31, 45.85, 27.54, 1, 4, 31, 49.71, -31.22, 0.84023, 36, -8.99, 13.6, 0.15068, 37, -30.39, 13.7, 0.00899, 38, -51.87, 13.7, 0.0001, 4, 31, 49.78, -20.68, 0.48016, 36, + 1.55, 14.09, 0.41733, 37, -19.86, 14.19, 0.10062, 38, -41.33, 14.19, 0.0019, 4, 31, 50.15, -10.44, 0.42576, 36, 11.79, 14.25, 0.28082, 37, -9.61, 14.36, 0.27628, 38, -31.09, 14.36, + 0.01714, 4, 31, 50.4, -0.34, 0.43345, 36, 21.89, 14.53, 0.09343, 37, 0.48, 14.63, 0.37698, 38, -20.99, 14.63, 0.09613, 4, 31, 50.91, 8.78, 0.43708, 36, 31.02, 14.51, 0.01603, 37, + 9.62, 14.61, 0.27127, 38, -11.86, 14.61, 0.27562, 4, 31, 50.97, 18.59, 0.51068, 36, 40.82, 14.96, 0.00179, 37, 19.41, 15.07, 0.09933, 38, -2.06, 15.07, 0.3882, 4, 31, 51.57, 29.24, + 0.94195, 36, 51.49, 14.92, 4e-05, 37, 30.08, 15.02, 0.00385, 38, 8.61, 15.02, 0.05416, 4, 31, 55.51, -33.25, 0.72549, 36, -10.71, 7.7, 0.2621, 37, -32.11, 7.81, 0.01235, 38, -53.59, + 7.81, 6e-05, 4, 31, 55.86, -21.65, 0.38729, 36, 0.89, 7.96, 0.4981, 37, -20.51, 8.06, 0.11341, 38, -41.99, 8.06, 0.0012, 4, 31, 55.96, -10.87, 0.32692, 36, 11.67, 8.42, 0.3274, 37, + -9.74, 8.53, 0.32983, 38, -31.21, 8.53, 0.01585, 4, 31, 56.03, -0.69, 0.33677, 36, 21.84, 8.89, 0.10146, 37, 0.43, 9, 0.45593, 38, -21.04, 9, 0.10584, 4, 31, 56.4, 8.8, 0.33839, 36, + 31.33, 9.02, 0.0144, 37, 9.93, 9.13, 0.32329, 38, -11.55, 9.13, 0.32392, 4, 31, 57.13, 19.32, 0.42143, 36, 41.87, 8.84, 0.00109, 37, 20.47, 8.95, 0.11176, 38, -1.01, 8.95, 0.46572, + 4, 31, 58.69, 31.45, 0.79569, 36, 54.07, 7.92, 5e-05, 37, 32.67, 8.03, 0.01091, 38, 11.19, 8.03, 0.19335, 4, 31, 62.21, -35.59, 0.66085, 36, -12.7, 0.88, 0.32566, 37, -34.1, 0.99, + 0.01346, 38, -55.58, 0.99, 3e-05, 4, 31, 62.66, -22.75, 0.31024, 36, 0.16, 1.11, 0.56299, 37, -21.25, 1.21, 0.12589, 38, -42.72, 1.21, 0.00089, 4, 31, 62.85, -11.38, 0.24349, 36, + 11.52, 1.52, 0.36477, 37, -9.89, 1.62, 0.37599, 38, -31.36, 1.62, 0.01574, 4, 31, 62.94, -1.11, 0.2525, 36, 21.78, 1.97, 0.10936, 37, 0.37, 2.08, 0.52284, 38, -21.1, 2.08, 0.1153, 4, + 31, 63.43, 8.82, 0.2544, 36, 31.72, 2, 0.01401, 37, 10.32, 2.11, 0.36809, 38, -11.16, 2.11, 0.3635, 4, 31, 63.63, 19.58, 0.3466, 36, 42.48, 2.36, 0.00077, 37, 21.07, 2.47, 0.1237, + 38, -0.4, 2.47, 0.52893, 4, 31, 65.17, 33.27, 0.69411, 36, 56.23, 1.55, 3e-05, 37, 34.83, 1.66, 0.01435, 38, 13.35, 1.66, 0.29151, 4, 31, 70.52, 34.86, 0.61986, 36, 58.1, -3.71, + 1e-05, 37, 36.69, -3.61, 0.01658, 38, 15.22, -3.61, 0.36355, 4, 31, 69.45, 19.61, 0.28549, 36, 42.81, -3.44, 0.00065, 37, 21.4, -3.34, 0.13463, 38, -0.07, -3.34, 0.57924, 4, 31, + 69.14, 8.84, 0.18483, 36, 32.04, -3.7, 0.01432, 37, 10.64, -3.59, 0.40541, 38, -10.84, -3.59, 0.39544, 4, 31, 68.83, -1.47, 0.18141, 36, 21.73, -3.93, 0.11681, 37, 0.32, -3.83, + 0.57764, 38, -21.15, -3.83, 0.12413, 4, 31, 68.1, -11.77, 0.17479, 36, 11.41, -3.74, 0.39444, 37, -10, -3.64, 0.41447, 38, -31.47, -3.64, 0.0163, 4, 31, 67.66, -23.55, 0.24784, 36, + -0.38, -3.92, 0.61396, 37, -21.79, -3.82, 0.13743, 38, -43.26, -3.82, 0.00077, 4, 31, 67.15, -37.32, 0.59732, 36, -14.16, -4.14, 0.38768, 37, -35.56, -4.03, 0.01499, 38, -57.04, + -4.03, 1e-05, 4, 31, 21.31, 0.52, 0.98403, 36, 21.22, 43.62, 0.00516, 37, -0.19, 43.73, 0.00609, 38, -21.66, 43.73, 0.00473, 3, 31, 11.68, -10.43, 0.98457, 36, 9.78, 52.66, 0.01421, + 37, -11.62, 52.77, 0.00123, 3, 31, 14.7, 11.48, 0.98807, 37, 10.41, 50.91, 0.00101, 38, -11.07, 50.91, 0.01092, 1, 31, 38.71, -23.44, 1, 4, 31, 44.14, -24.78, 0.93122, 36, -2.85, + 19.5, 0.05888, 37, -24.25, 19.61, 0.00959, 38, -45.73, 19.61, 0.0003, 4, 31, 49.74, -26.15, 0.67882, 36, -3.92, 13.83, 0.287, 37, -25.32, 13.94, 0.03374, 38, -46.8, 13.94, 0.00045, + 4, 31, 55.68, -27.73, 0.52353, 36, -5.19, 7.82, 0.4314, 37, -26.59, 7.93, 0.04479, 38, -48.07, 7.93, 0.00029, 4, 31, 62.43, -29.46, 0.41464, 36, -6.56, 0.99, 0.53292, 37, -27.96, + 1.1, 0.05226, 38, -49.44, 1.1, 0.00018, 4, 31, 67.4, -30.57, 0.35706, 36, -7.41, -4.03, 0.58638, 37, -28.81, -3.93, 0.05644, 38, -50.29, -3.93, 0.00012, 4, 31, 39.16, -14.42, + 0.88311, 36, 7.24, 25.02, 0.07338, 37, -14.17, 25.12, 0.03978, 38, -35.64, 25.12, 0.00372, 4, 31, 44.74, -15, 0.62555, 36, 6.96, 19.42, 0.24007, 37, -14.45, 19.52, 0.1259, 38, + -35.92, 19.52, 0.00848, 4, 31, 49.97, -15.49, 0.4342, 36, 6.74, 14.17, 0.37611, 37, -14.67, 14.27, 0.18375, 38, -36.14, 14.27, 0.00595, 4, 31, 55.91, -16.19, 0.33684, 36, 6.35, 8.19, + 0.44427, 37, -15.05, 8.3, 0.21425, 38, -36.53, 8.3, 0.00464, 4, 31, 62.76, -16.95, 0.25537, 36, 5.95, 1.32, 0.49872, 37, -15.45, 1.42, 0.24179, 38, -36.93, 1.42, 0.00413, 4, 31, + 67.88, -17.57, 0.18921, 36, 5.6, -3.83, 0.54119, 37, -15.8, -3.73, 0.26556, 38, -37.28, -3.73, 0.00404, 4, 31, 39.65, -4.74, 0.83361, 36, 16.93, 25.04, 0.05679, 37, -4.48, 25.14, + 0.08927, 38, -25.95, 25.14, 0.02033, 4, 31, 45.13, -5.18, 0.57797, 36, 16.78, 19.54, 0.13938, 37, -4.63, 19.65, 0.23843, 38, -26.1, 19.65, 0.04422, 4, 31, 50.27, -5.8, 0.42696, 36, + 16.43, 14.38, 0.17737, 37, -4.97, 14.48, 0.35156, 38, -26.45, 14.48, 0.04411, 4, 31, 56, -5.99, 0.33132, 36, 16.54, 8.65, 0.20059, 37, -4.86, 8.75, 0.42277, 38, -26.34, 8.75, + 0.04531, 4, 31, 62.89, -6.48, 0.24781, 36, 16.41, 1.73, 0.22055, 37, -4.99, 1.84, 0.48389, 38, -26.47, 1.84, 0.04775, 4, 31, 68.45, -6.83, 0.17763, 36, 16.35, -3.83, 0.23735, 37, + -5.05, -3.73, 0.53429, 38, -26.53, -3.73, 0.05074, 4, 31, 39.88, 4.33, 0.83746, 36, 26, 25.28, 0.02009, 37, 4.59, 25.39, 0.08772, 38, -16.88, 25.39, 0.05473, 4, 31, 45.41, 4.36, + 0.58276, 36, 26.32, 19.77, 0.04346, 37, 4.92, 19.87, 0.23645, 38, -16.56, 19.87, 0.13732, 4, 31, 50.66, 4.3, 0.43226, 36, 26.54, 14.52, 0.04191, 37, 5.13, 14.62, 0.34769, 38, -16.34, + 14.62, 0.17814, 4, 31, 56.21, 4.01, 0.33656, 36, 26.54, 8.96, 0.0422, 37, 5.14, 9.06, 0.41771, 38, -16.34, 9.06, 0.20353, 4, 31, 63.19, 4, 0.25264, 36, 26.89, 1.99, 0.04384, 37, + 5.49, 2.09, 0.47782, 38, -15.99, 2.09, 0.2257, 4, 31, 68.99, 3.91, 0.18189, 36, 27.11, -3.81, 0.04615, 37, 5.71, -3.71, 0.52741, 38, -15.77, -3.71, 0.24456, 4, 31, 39.83, 13, 0.8608, + 36, 34.66, 25.79, 0.00457, 37, 13.26, 25.89, 0.04889, 38, -8.22, 25.89, 0.08574, 4, 31, 45.67, 13.13, 0.60926, 36, 35.09, 19.96, 0.00894, 37, 13.69, 20.06, 0.13479, 38, -7.79, 20.06, + 0.247, 4, 31, 50.93, 13.5, 0.45377, 36, 35.74, 14.73, 0.00554, 37, 14.33, 14.83, 0.18027, 38, -7.14, 14.83, 0.36041, 4, 31, 56.75, 13.83, 0.35749, 36, 36.37, 8.94, 0.00417, 37, + 14.96, 9.04, 0.20976, 38, -6.51, 9.04, 0.42858, 4, 31, 63.53, 14.02, 0.27612, 36, 36.92, 2.18, 0.00359, 37, 15.52, 2.28, 0.23625, 38, -5.96, 2.28, 0.48404, 4, 31, 69.3, 14.3, + 0.20954, 36, 37.5, -3.57, 0.00344, 37, 16.1, -3.46, 0.25903, 38, -5.38, -3.46, 0.52799, 1, 31, 39.78, 21.93, 1, 4, 31, 45.87, 22.69, 0.82489, 36, 44.65, 20.27, 0.00083, 37, 23.25, + 20.37, 0.0268, 38, 1.77, 20.37, 0.14748, 4, 31, 51.28, 24.11, 0.64773, 36, 46.35, 14.94, 0.00052, 37, 24.95, 15.04, 0.04091, 38, 3.47, 15.04, 0.31084, 4, 31, 57.92, 25.42, 0.53225, + 36, 48.01, 8.38, 0.00029, 37, 26.6, 8.49, 0.04857, 38, 5.13, 8.49, 0.41889, 4, 31, 64.49, 27.19, 0.46955, 36, 50.12, 1.91, 0.00016, 37, 28.71, 2.02, 0.05201, 38, 7.24, 2.02, 0.47828, + 4, 31, 70.04, 27.97, 0.41589, 36, 51.19, -3.59, 0.0001, 37, 29.78, -3.48, 0.05591, 38, 8.31, -3.48, 0.5281, 4, 31, 49.73, -28.84, 0.72647, 36, -6.61, 13.71, 0.25381, 37, -28.01, + 13.81, 0.01954, 38, -49.49, 13.81, 0.00018, 4, 31, 55.59, -30.72, 0.64422, 36, -8.18, 7.76, 0.33291, 37, -29.58, 7.86, 0.02275, 38, -51.06, 7.86, 0.00011, 4, 31, 62.32, -32.6, + 0.55448, 36, -9.7, 0.94, 0.41902, 37, -31.11, 1.04, 0.02643, 38, -52.58, 1.04, 7e-05, 4, 31, 67.27, -34.24, 0.44397, 36, -11.07, -4.09, 0.52396, 37, -32.48, -3.99, 0.03202, 38, + -53.95, -3.99, 4e-05, 4, 31, 49.76, -23.57, 0.5094, 36, -1.34, 13.95, 0.4213, 37, -22.75, 14.06, 0.06847, 38, -44.22, 14.06, 0.00083, 4, 31, 55.77, -24.72, 0.42549, 36, -2.17, 7.89, + 0.49746, 37, -23.57, 8, 0.07648, 38, -45.05, 8, 0.00057, 4, 31, 62.54, -26.18, 0.35688, 36, -3.28, 1.05, 0.55926, 37, -24.68, 1.15, 0.08347, 38, -46.16, 1.15, 0.00039, 4, 31, 67.52, + -27.35, 0.29772, 36, -4.19, -3.98, 0.61133, 37, -25.59, -3.88, 0.09064, 38, -47.07, -3.88, 0.00031, 4, 31, 67.77, -20.66, 0.21136, 36, 2.51, -3.88, 0.59029, 37, -18.89, -3.77, + 0.19654, 38, -40.37, -3.77, 0.00182, 4, 31, 62.71, -19.85, 0.275, 36, 3.05, 1.21, 0.54348, 37, -18.35, 1.32, 0.17958, 38, -39.83, 1.32, 0.00194, 4, 31, 55.88, -19.28, 0.35002, 36, + 3.27, 8.06, 0.48643, 37, -18.14, 8.17, 0.16123, 38, -39.61, 8.17, 0.00232, 4, 31, 49.86, -18.41, 0.41881, 36, 3.82, 14.12, 0.43213, 37, -17.59, 14.23, 0.1461, 38, -39.06, 14.23, + 0.00296, 4, 31, 50.06, -13.03, 0.39313, 36, 9.2, 14.21, 0.35299, 37, -12.2, 14.31, 0.24433, 38, -33.68, 14.31, 0.00955, 4, 31, 55.94, -13.47, 0.32258, 36, 9.06, 8.31, 0.39406, 37, + -12.34, 8.41, 0.27473, 38, -33.82, 8.41, 0.00863, 4, 31, 62.8, -14.24, 0.24476, 36, 8.66, 1.42, 0.43744, 37, -12.74, 1.52, 0.30953, 38, -34.22, 1.52, 0.00827, 4, 31, 67.98, -14.86, + 0.17804, 36, 8.31, -3.79, 0.47328, 37, -13.09, -3.69, 0.3403, 38, -34.57, -3.69, 0.00838, 4, 31, 68.28, -9.21, 0.17525, 36, 13.97, -3.79, 0.31355, 37, -7.43, -3.69, 0.48153, 38, + -28.91, -3.69, 0.02968, 4, 31, 62.87, -9.04, 0.24396, 36, 13.85, 1.62, 0.29088, 37, -7.55, 1.73, 0.43695, 38, -29.03, 1.73, 0.02821, 4, 31, 55.98, -8.57, 0.32275, 36, 13.97, 8.53, + 0.26435, 37, -7.44, 8.63, 0.38552, 38, -28.91, 8.63, 0.02739, 4, 31, 50.21, -8.13, 0.39269, 36, 14.1, 14.31, 0.24007, 37, -7.3, 14.42, 0.33961, 38, -28.78, 14.42, 0.02763, 4, 31, + 50.33, -3.07, 0.39835, 36, 19.16, 14.45, 0.13664, 37, -2.25, 14.56, 0.3972, 38, -23.72, 14.56, 0.06781, 4, 31, 56.01, -3.43, 0.32898, 36, 19.1, 8.76, 0.14701, 37, -2.3, 8.87, + 0.45281, 38, -23.78, 8.87, 0.07119, 4, 31, 62.92, -3.84, 0.24968, 36, 19.05, 1.85, 0.15947, 37, -2.36, 1.96, 0.51456, 38, -23.83, 1.96, 0.07629, 4, 31, 68.64, -4.23, 0.17972, 36, + 18.97, -3.88, 0.17094, 37, -2.44, -3.78, 0.56767, 38, -23.91, -3.78, 0.08167, 4, 31, 68.91, 1.29, 0.18179, 36, 24.49, -3.87, 0.07557, 37, 3.08, -3.77, 0.56385, 38, -18.39, -3.77, + 0.17879, 4, 31, 63.06, 1.38, 0.25204, 36, 24.27, 1.98, 0.07119, 37, 2.86, 2.08, 0.51118, 38, -18.61, 2.08, 0.16559, 4, 31, 56.13, 1.74, 0.33157, 36, 24.26, 8.92, 0.0672, 37, 2.86, + 9.03, 0.44995, 38, -18.62, 9.03, 0.15128, 4, 31, 50.52, 1.76, 0.40101, 36, 23.99, 14.52, 0.06478, 37, 2.59, 14.63, 0.39483, 38, -18.89, 14.63, 0.13938, 4, 31, 50.78, 6.45, 0.401, 36, + 28.68, 14.51, 0.0258, 37, 7.28, 14.62, 0.33427, 38, -14.2, 14.62, 0.23894, 4, 31, 56.3, 6.29, 0.3309, 36, 28.82, 8.99, 0.02514, 37, 7.42, 9.09, 0.37908, 38, -14.06, 9.09, 0.26488, 4, + 31, 63.29, 6.06, 0.25155, 36, 28.96, 1.99, 0.02548, 37, 7.56, 2.1, 0.4293, 38, -13.92, 2.1, 0.29367, 4, 31, 69.06, 6.02, 0.18206, 36, 29.22, -3.76, 0.02652, 37, 7.82, -3.66, 0.47284, + 38, -13.66, -3.66, 0.31858, 4, 31, 69.22, 11.49, 0.19245, 36, 34.69, -3.64, 0.00724, 37, 13.29, -3.53, 0.3321, 38, -8.19, -3.53, 0.46821, 4, 31, 69.38, 17.15, 0.23948, 36, 40.35, + -3.5, 0.00153, 37, 18.94, -3.39, 0.19195, 38, -2.53, -3.39, 0.56704, 4, 31, 69.73, 23.61, 0.346, 36, 46.82, -3.51, 0.00026, 37, 25.42, -3.41, 0.08922, 38, 3.94, -3.41, 0.56452, 4, + 31, 70.27, 31.28, 0.48407, 36, 54.51, -3.65, 4e-05, 37, 33.11, -3.54, 0.03358, 38, 11.63, -3.54, 0.48231, 4, 31, 64.84, 30.32, 0.54501, 36, 53.26, 1.73, 7e-05, 37, 31.86, 1.83, + 0.03077, 38, 10.38, 1.83, 0.42415, 4, 31, 64.01, 22.94, 0.40266, 36, 45.85, 2.16, 0.00034, 37, 24.45, 2.27, 0.08247, 38, 2.97, 2.27, 0.51452, 4, 31, 63.58, 16.63, 0.30287, 36, 39.53, + 2.26, 0.00168, 37, 18.13, 2.37, 0.17579, 38, -3.35, 2.37, 0.51965, 4, 31, 63.48, 11.19, 0.25994, 36, 34.09, 2.08, 0.00726, 37, 12.69, 2.19, 0.30245, 38, -8.79, 2.19, 0.43035, 4, 31, + 56.56, 11.07, 0.3382, 36, 33.61, 8.98, 0.00776, 37, 12.21, 9.09, 0.26884, 38, -9.27, 9.09, 0.38519, 4, 31, 56.93, 16.38, 0.37706, 36, 38.93, 8.89, 0.00208, 37, 17.52, 9, 0.15821, 38, + -3.95, 9, 0.46265, 4, 31, 57.5, 22.2, 0.46779, 36, 44.77, 8.63, 0.00052, 37, 23.36, 8.73, 0.07582, 38, 1.89, 8.73, 0.45586, 4, 31, 58.3, 28.37, 0.65325, 36, 50.97, 8.16, 0.00012, 37, + 29.57, 8.26, 0.02541, 38, 8.09, 8.26, 0.32123, 4, 31, 51.42, 26.68, 0.75526, 36, 48.93, 14.93, 0.00017, 37, 27.52, 15.03, 0.02002, 38, 6.05, 15.03, 0.22455, 4, 31, 51.11, 21.17, + 0.52586, 36, 43.41, 14.95, 0.00082, 37, 22, 15.06, 0.07106, 38, 0.53, 15.06, 0.40226, 4, 31, 50.95, 15.93, 0.44455, 36, 38.16, 14.84, 0.00273, 37, 16.76, 14.94, 0.1436, 38, -4.72, + 14.94, 0.40912, 4, 31, 50.92, 10.61, 0.40864, 36, 32.85, 14.59, 0.0088, 37, 11.45, 14.7, 0.23945, 38, -10.03, 14.7, 0.34311, 4, 31, 69.38, -38.1, 0.52059, 36, -14.82, -6.4, 0.45917, + 37, -36.22, -6.3, 0.02022, 38, -57.7, -6.3, 1e-05, 4, 31, 69.44, -34.82, 0.37517, 36, -11.54, -6.29, 0.58803, 37, -32.95, -6.19, 0.03676, 38, -54.42, -6.19, 4e-05, 4, 31, 69.57, + -31.13, 0.31655, 36, -7.85, -6.23, 0.62281, 37, -29.26, -6.13, 0.06054, 38, -50.73, -6.13, 0.00011, 4, 31, 69.74, -27.7, 0.25662, 36, -4.41, -6.22, 0.64624, 37, -25.82, -6.11, + 0.09684, 38, -47.29, -6.11, 0.0003, 4, 31, 69.8, -23.9, 0.20542, 36, -0.61, -6.08, 0.64718, 37, -22.02, -5.97, 0.14662, 38, -43.49, -5.97, 0.00077, 4, 31, 69.96, -20.88, 0.16774, 36, + 2.4, -6.08, 0.62093, 37, -19, -5.97, 0.20946, 38, -40.48, -5.97, 0.00187, 4, 31, 70.09, -17.89, 0.14406, 36, 5.4, -6.05, 0.56885, 37, -16, -5.95, 0.28288, 38, -37.48, -5.95, 0.00421, + 4, 31, 70.25, -15.09, 0.13169, 36, 8.2, -6.07, 0.49722, 37, -13.21, -5.96, 0.36227, 38, -34.68, -5.96, 0.00882, 4, 31, 70.5, -11.95, 0.12708, 36, 11.36, -6.14, 0.41453, 37, -10.05, + -6.04, 0.44117, 38, -31.52, -6.04, 0.01722, 4, 31, 70.58, -9.33, 0.12668, 36, 13.97, -6.1, 0.32958, 37, -7.43, -5.99, 0.51233, 38, -28.91, -5.99, 0.03141, 4, 31, 70.75, -6.95, + 0.12812, 36, 16.36, -6.14, 0.24965, 37, -5.05, -6.03, 0.56851, 38, -26.52, -6.03, 0.05372, 4, 31, 71, -4.39, 0.12979, 36, 18.93, -6.25, 0.1799, 37, -2.47, -6.14, 0.60387, 38, -23.95, + -6.14, 0.08644, 4, 31, 71.07, -1.61, 0.13105, 36, 21.71, -6.18, 0.12302, 37, 0.3, -6.07, 0.61461, 38, -21.17, -6.07, 0.13132, 4, 31, 71.18, 1.28, 0.13159, 36, 24.6, -6.14, 0.07962, + 37, 3.19, -6.03, 0.5998, 38, -18.28, -6.03, 0.18899, 4, 31, 71.31, 3.85, 0.13189, 36, 27.17, -6.13, 0.04862, 37, 5.76, -6.02, 0.56113, 38, -15.71, -6.02, 0.25837, 4, 31, 71.51, 6.02, + 0.13282, 36, 29.35, -6.21, 0.02792, 37, 7.95, -6.1, 0.50297, 38, -13.53, -6.1, 0.33629, 4, 31, 71.56, 8.85, 0.13637, 36, 32.18, -6.12, 0.01503, 37, 10.77, -6.01, 0.43134, 38, -10.7, + -6.01, 0.41726, 4, 31, 71.75, 11.39, 0.14539, 36, 34.72, -6.17, 0.00757, 37, 13.32, -6.07, 0.35328, 38, -8.16, -6.07, 0.49376, 4, 31, 71.87, 14.39, 0.16393, 36, 37.73, -6.13, + 0.00355, 37, 16.32, -6.03, 0.27561, 38, -5.15, -6.03, 0.55691, 4, 31, 72.16, 17.13, 0.19585, 36, 40.48, -6.28, 0.00155, 37, 19.08, -6.18, 0.20422, 38, -2.4, -6.18, 0.59837, 4, 31, + 72.25, 19.76, 0.24372, 36, 43.11, -6.23, 0.00063, 37, 21.71, -6.13, 0.14329, 38, 0.23, -6.13, 0.61235, 4, 31, 72.47, 23.82, 0.30631, 36, 47.17, -6.24, 0.00024, 37, 25.77, -6.14, + 0.09501, 38, 4.29, -6.14, 0.59844, 4, 31, 72.61, 28.41, 0.3775, 36, 51.77, -6.14, 9e-05, 37, 30.37, -6.03, 0.05972, 38, 8.89, -6.03, 0.5627, 4, 31, 72.88, 31.77, 0.44548, 36, 55.14, + -6.23, 3e-05, 37, 33.74, -6.13, 0.03652, 38, 12.26, -6.13, 0.51797, 4, 31, 73.38, 35.45, 0.56131, 36, 58.84, -6.53, 1e-05, 37, 37.44, -6.43, 0.02128, 38, 15.96, -6.43, 0.41739 ], - "hull": 24, + "hull": 44, "edges": [ - 18, 20, 18, 16, 16, 14, 14, 12, 8, 10, 12, 10, 8, 6, 6, 4, 4, 2, 2, 0, 44, 46, 0, 46, 42, 44, 42, 40, 40, 38, 38, 36, 32, 34, 36, 34, 30, 32, 30, 28, 28, 26, 26, 24, 20, 22, 24, 22, - 50, 48, 52, 48, 50, 52, 54, 48, 52, 54, 56, 48, 54, 56, 58, 48, 56, 58, 60, 48, 58, 60, 62, 48, 60, 62, 64, 48, 62, 64, 66, 48, 64, 66, 68, 48, 66, 68, 70, 48, 68, 70, 72, 48, 70, - 72, 74, 48, 72, 74, 76, 48, 74, 76, 78, 48, 76, 78, 80, 48, 78, 80, 82, 48, 80, 82, 84, 48, 82, 84, 86, 48, 84, 86, 88, 48, 86, 88, 90, 48, 88, 90, 92, 48, 90, 92, 94, 48, 92, 94, - 96, 48, 94, 96, 96, 50, 98, 96, 100, 50, 98, 100, 102, 52, 100, 102, 104, 54, 102, 104, 106, 56, 104, 106, 108, 58, 106, 108, 110, 60, 108, 110, 112, 62, 110, 112, 114, 64, 112, 114, - 116, 66, 114, 116, 118, 68, 116, 118, 120, 70, 118, 120, 122, 72, 120, 122, 124, 74, 122, 124, 126, 76, 124, 126, 128, 78, 126, 128, 130, 80, 128, 130, 132, 82, 130, 132, 134, 84, - 132, 134, 136, 86, 134, 136, 138, 94, 98, 138, 140, 92, 138, 140, 142, 90, 140, 142, 144, 88, 142, 144, 144, 136, 26, 146, 146, 142, 24, 148, 148, 144, 146, 148, 22, 150, 150, 136, - 148, 150, 20, 152, 152, 134, 150, 152, 18, 154, 154, 132, 152, 154, 16, 156, 156, 130, 154, 156, 14, 158, 158, 128, 156, 158, 12, 160, 160, 126, 158, 160, 10, 162, 162, 124, 160, - 162, 8, 164, 164, 122, 162, 164, 6, 166, 166, 120, 164, 166, 4, 168, 168, 118, 166, 168, 2, 170, 170, 116, 168, 170, 0, 172, 172, 114, 170, 172, 46, 174, 174, 112, 172, 174, 44, 176, - 176, 110, 174, 176, 42, 178, 178, 108, 176, 178, 40, 180, 180, 106, 178, 180, 38, 182, 182, 104, 180, 182, 36, 184, 184, 102, 182, 184, 34, 186, 186, 100, 184, 186, 32, 188, 188, 98, - 186, 188, 30, 190, 190, 138, 188, 190, 28, 192, 192, 140, 190, 192, 192, 146 - ], - "width": 164, - "height": 164, - "path": "summer-a.mouth-accessory" - } - }, - "tail": {"tail": {"x": 113.64, "y": 3.45, "rotation": 12, "width": 227, "height": 227, "path": "summer-a.tail"}} - } - } - ], - "events": {"hit": {}, "hit-buff": {}, "jump": {}, "start-attack": {}}, - "keyAnimations": { - "activity/appear": "1023093953", - "activity/bath": "3305387968", - "attack/ranged/cast-fly": "4180526371", - "attack/ranged/cast-high": "164191126", - "attack/ranged/cast-low": "198813017", - "attack/ranged/cast-multi": "151119", - "attack/ranged/cast-tail": "3850719809", - "action/mix/ear-animation": "901954966", - "activity/eat-bite": "1137807767", - "activity/eat-chew": "1988236421", - "activity/entrance": "3768378365", - "defense/evade": "1735454995", - "activity/evolve": "649307630", - "action/mix/eyes-animation": "3799301307", - "battle/get-buff": "1455190363", - "battle/get-debuff": "606904312", - "defense/hit-by-normal": "2045974966", - "defense/hit-by-normal-crit": "2130010601", - "defense/hit-by-normal-dramatic": "3823092125", - "defense/hit-by-ranged-attack": "2224561612", - "defense/hit-with-shield": "390714790", - "attack/melee/horn-gore": "1327954218", - "attack/melee/mouth-bite": "2237748264", - "action/move-back": "3766271173", - "action/move-forward": "2945160014", - "attack/melee/multi-attack": "3774600630", - "action/idle/normal": "1659336865", - "attack/melee/normal-attack": "3305373483", - "action/mix/normal-mouth-animation": "1178295570", - "activity/prepare": "405864717", - "action/idle/random-01": "554401889", - "action/idle/random-02": "3634120758", - "action/idle/random-03": "2021333900", - "action/idle/random-04": "1003789695", - "action/idle/random-05": "2745614147", - "action/run": "3942433225", - "draft/run-origin": "237238075", - "attack/melee/shrimp": "3833448733", - "activity/sleep": "100562494", - "attack/melee/tail-multi-slap": "3317139533", - "attack/melee/tail-roll": "3108617565", - "attack/melee/tail-smash": "519942130", - "attack/melee/tail-thrash": "628713175", - "activity/victory-pose-back-flip": "2227634241" - } - }, - "body-agamo": { - "bones": [ - {"name": "@root"}, {"name": "@pivot-main", "parent": "@root"}, {"name": "@pivot-back", "parent": "@pivot-main", "x": 205, "y": 180, "color": "ff0101ff"}, - {"name": "@pivot-center", "parent": "@pivot-back", "x": -215.11, "y": -5.25, "color": "ff0101ff"}, - {"name": "@axie", "parent": "@pivot-center", "length": 213.28, "rotation": 179.04, "x": 196.39, "y": 5.16}, {"name": "@back", "parent": "@axie", "rotation": -179.04, "x": 37.63, "y": -198.19}, - {"name": "@body", "parent": "@axie", "length": 226.28, "rotation": -8.35, "x": 224.58, "y": -0.53}, {"name": "@ear-left", "parent": "@axie", "rotation": -179.04, "x": 112.7, "y": -203.23}, - {"name": "@ear-right", "parent": "@axie", "rotation": -179.04, "x": 405.28, "y": -235.33}, {"name": "@eyes", "parent": "@axie", "rotation": -179.04, "x": 384.24, "y": -113.67}, - {"name": "@horn", "parent": "@axie", "rotation": -179.04, "x": 327.92, "y": -214.63}, - {"name": "@leg-back-left", "parent": "@axie", "length": 76.4, "rotation": 100.96, "x": -15.3, "y": 102.56, "transform": "noScale"}, - {"name": "@leg-front-left", "parent": "@axie", "length": 51.19, "rotation": 93.86, "x": 134.77, "y": 149.55, "transform": "noScale"}, - {"name": "@leg-front-right", "parent": "@axie", "length": 74.83, "rotation": 83.2, "x": 382.95, "y": 121.78, "transform": "noScale"}, - {"name": "@mouth", "parent": "@axie", "rotation": -179.04, "x": 382.23, "y": 6.31}, - {"name": "body-pattern", "parent": "@body", "rotation": -170.69, "x": -267.21, "y": -49.4, "transform": "noScale"}, {"name": "@shadow", "parent": "@root", "color": "e6d713ff"}, - {"name": "@tail", "parent": "@axie", "rotation": -179.04, "x": -11.76, "y": 61.72}, {"name": "leg-front-right-IK", "parent": "@pivot-main", "x": -195.99, "y": -10.21, "color": "ff3f00ff"}, - {"name": "leg-front-left-IK", "parent": "@pivot-main", "x": 42.3, "y": -18.42, "color": "ff3f00ff"}, - {"name": "leg-back-left-IK", "parent": "@pivot-main", "x": 208.57, "y": 1.35, "color": "ff3f00ff"}, {"name": "@ball", "parent": "@root", "y": 191, "color": "f3981bff"}, - {"name": "ball", "parent": "@ball", "y": -191, "color": "f4a729ff"}, {"name": "@body-neck", "parent": "@pivot-center", "x": -161.89, "y": -53.75, "color": "ff0101ff"}, - {"name": "@body-ground", "parent": "@pivot-main", "x": 220, "transform": "noRotationOrReflection", "color": "ff0101ff"}, - {"name": "@body-hip", "parent": "@pivot-center", "x": 240.11, "y": 55.25, "color": "ff0101ff"}, - {"name": "@body-air", "parent": "@pivot-back", "x": 63, "y": 365, "transform": "noRotationOrReflection", "color": "ff0101ff"}, - {"name": "@body-cheek", "parent": "@pivot-center", "x": 15.11, "y": 47.25, "color": "ff0101ff"} - ], - "slots": [ - {"name": "shadow", "bone": "@shadow", "attachment": "shadow"}, {"name": "ball", "bone": "ball"}, {"name": "leg-front-right", "bone": "@leg-front-right", "attachment": "leg-front-right"}, - {"name": "leg-back-left", "bone": "@leg-back-left", "attachment": "leg-back-left"}, {"name": "body", "bone": "@body", "attachment": "body"}, - {"name": "body-pattern", "bone": "body-pattern", "attachment": "body-pattern"}, {"name": "leg-front-left", "bone": "@leg-front-left", "attachment": "leg-front-left"}, - {"name": "body-hip", "bone": "@body-hip", "attachment": "body-hip"}, {"name": "body-neck", "bone": "@body-neck", "attachment": "body-neck"}, - {"name": "body-ground", "bone": "@body-ground", "attachment": "body-ground"}, {"name": "body-air", "bone": "@body-air", "attachment": "body-air"}, - {"name": "body-cheek", "bone": "@body-cheek", "attachment": "body-cheek"} - ], - "ik": [ - {"name": "leg-back-left-IK", "order": 2, "bones": ["@leg-back-left"], "target": "leg-back-left-IK"}, - {"name": "leg-front-left-IK", "order": 1, "bones": ["@leg-front-left"], "target": "leg-front-left-IK"}, - {"name": "leg-front-right-IK", "bones": ["@leg-front-right"], "target": "leg-front-right-IK"} - ], - "skins": [ - { - "name": "default", - "attachments": { - "ball": {"ball": {"y": 191, "width": 393, "height": 390, "path": "body-normal.ball"}}, - "body": {"body": {"x": -1.32, "y": -73.7, "rotation": -170.69, "width": 679, "height": 509, "path": "body-normal.body"}}, - "body-pattern": {"body-pattern": {"x": 14.18, "y": 75.01, "width": 66, "height": 71, "path": "body-agamo.body-pattern"}}, - "leg-back-left": { - "leg-back-left": {"x": 32.56, "y": -0.8, "rotation": 83.45, "width": 80, "height": 94, "path": "body-normal.leg-back-left"}, - "leg-back-left-long": {"x": 34.89, "y": -5.5, "rotation": 221.45, "width": 85, "height": 82, "path": "body-normal.leg-back-left-long"}, - "leg-back-left-stretch": {"x": 27.29, "y": 1.58, "rotation": 54.45, "width": 67, "height": 70, "path": "body-normal.leg-back-left-stretch"} - }, - "leg-front-left": { - "leg-front-left": {"x": 21.98, "y": 1.18, "rotation": 97.51, "width": 72, "height": 63, "path": "body-normal.leg-front-left"}, - "leg-front-left-long": {"x": 27.48, "y": -6.04, "rotation": -173.75, "width": 89, "height": 77, "path": "body-normal.leg-front-left-long"}, - "leg-front-left-stretch": {"x": 19.24, "y": -3.96, "rotation": 142.15, "width": 70, "height": 77, "path": "body-normal.leg-front-left-stretch"} - }, - "leg-front-right": { - "leg-front-right": {"x": 31.35, "y": -1.66, "rotation": 87.96, "width": 80, "height": 94, "path": "body-normal.leg-front-right"}, - "leg-front-right-long": {"x": 36.56, "y": -0.65, "rotation": 205.96, "width": 89, "height": 77, "path": "body-normal.leg-front-right-long"}, - "leg-front-right-stretch": {"x": 30.65, "y": 1.81, "rotation": 142.01, "width": 81, "height": 69, "path": "body-normal.leg-front-right-stretch"} - }, - "shadow": {"shadow": {"width": 946, "height": 191, "path": "body-agamo.shadow"}}, - "body-air": { - "body-air1a_00": {"x": 1.37, "y": 35.21, "width": 209.375, "height": 129.6875, "path": "body-accessory.body-air1a_00"}, - "body-air1a_01": {"x": 1.37, "y": 35.21, "width": 209.375, "height": 129.6875, "path": "body-accessory.body-air1a_01"}, - "body-air1a_02": {"x": 1.37, "y": 35.21, "width": 209.375, "height": 129.6875, "path": "body-accessory.body-air1a_02"}, - "body-air1a_03": {"x": 1.37, "y": 35.21, "width": 209.375, "height": 129.6875, "path": "body-accessory.body-air1a_03"}, - "body-air1a_04": {"x": 1.37, "y": 35.21, "width": 209.375, "height": 129.6875, "path": "body-accessory.body-air1a_04"}, - "body-air1a_05": {"x": 1.37, "y": 35.21, "width": 209.375, "height": 129.6875, "path": "body-accessory.body-air1a_05"}, - "body-air1a_06": {"x": 1.37, "y": 35.21, "width": 209.375, "height": 129.6875, "path": "body-accessory.body-air1a_06"}, - "body-air1a_07": {"x": 1.37, "y": 35.21, "width": 209.375, "height": 129.6875, "path": "body-accessory.body-air1a_07"}, - "body-air1b_00": {"x": 1.37, "y": 35.21, "width": 156.25, "height": 192.1875, "path": "body-accessory.body-air1b_00"}, - "body-air1b_01": {"x": 1.37, "y": 35.21, "width": 156.25, "height": 192.1875, "path": "body-accessory.body-air1b_01"}, - "body-air1b_02": {"x": 1.37, "y": 35.21, "width": 156.25, "height": 192.1875, "path": "body-accessory.body-air1b_02"}, - "body-air1c_00": {"x": 1.37, "y": 35.21, "width": 200.0, "height": 289.0625, "path": "body-accessory.body-air1c_00"}, - "body-air1c_01": {"x": 1.37, "y": 35.21, "width": 200.0, "height": 289.0625, "path": "body-accessory.body-air1c_01"}, - "body-air1c_02": {"x": 1.37, "y": 35.21, "width": 200.0, "height": 289.0625, "path": "body-accessory.body-air1c_02"}, - "body-air1c_03": {"x": 1.37, "y": 35.21, "width": 200.0, "height": 289.0625, "path": "body-accessory.body-air1c_03"}, - "body-air1d_00": {"x": 1.37, "y": 35.21, "width": 204.6875, "height": 273.4375, "path": "body-accessory.body-air1d_00"}, - "body-air1d_01": {"x": 1.37, "y": 35.21, "width": 204.6875, "height": 273.4375, "path": "body-accessory.body-air1d_01"}, - "body-air1d_02": {"x": 1.37, "y": 35.21, "width": 204.6875, "height": 273.4375, "path": "body-accessory.body-air1d_02"}, - "body-air1d_03": {"x": 1.37, "y": 35.21, "width": 204.6875, "height": 273.4375, "path": "body-accessory.body-air1d_03"} - }, - "body-cheek": { - "body-cheek1a": {"x": 1.52, "y": 3.04, "width": 60.9375, "height": 57.8125, "path": "body-accessory.body-cheek1a"}, - "body-cheek1b": {"x": 1.52, "y": 3.04, "width": 50.0, "height": 76.5625, "path": "body-accessory.body-cheek1b"}, - "body-cheek1c": {"x": 1.52, "y": 3.04, "width": 50.0, "height": 76.5625, "path": "body-accessory.body-cheek1c"}, - "body-cheek1d": {"x": 1.52, "y": 3.04, "width": 50.0, "height": 76.5625, "path": "body-accessory.body-cheek1d"}, - "body-cheek1e": {"x": 1.52, "y": 3.04, "width": 54.6875, "height": 79.6875, "path": "body-accessory.body-cheek1e"}, - "body-cheek1f": {"x": 1.52, "y": 3.04, "width": 56.25, "height": 57.8125, "path": "body-accessory.body-cheek1f"}, - "body-cheek1g": {"x": 1.52, "y": 3.04, "width": 104.6875, "height": 96.875, "path": "body-accessory.body-cheek1g"} - }, - "body-ground": { - "body-ground1a_00": {"x": 4.75, "y": 123.01, "width": 254.6875, "height": 275.0, "path": "body-accessory.body-ground1a_00"}, - "body-ground1a_01": {"x": 4.75, "y": 123.01, "width": 254.6875, "height": 275.0, "path": "body-accessory.body-ground1a_01"}, - "body-ground1a_02": {"x": 4.75, "y": 123.01, "width": 254.6875, "height": 275.0, "path": "body-accessory.body-ground1a_02"}, - "body-ground1a_03": {"x": 4.75, "y": 123.01, "width": 254.6875, "height": 275.0, "path": "body-accessory.body-ground1a_03"} - }, - "body-hip": { - "body-hip1a": {"x": -16, "width": 109.375, "height": 140.625, "path": "body-accessory.body-hip1a"}, - "body-hip1b": {"x": -16, "width": 210.9375, "height": 214.0625, "path": "body-accessory.body-hip1b"}, - "body-hip1c": {"x": -16, "width": 123.4375, "height": 157.8125, "path": "body-accessory.body-hip1c"}, - "body-hip1d": {"x": -16, "width": 203.125, "height": 143.75, "path": "body-accessory.body-hip1d"} - }, - "body-neck": { - "body-neck1a": {"x": -5.4, "y": -54.79, "width": 92.1875, "height": 96.875, "path": "body-accessory.body-neck1a"}, - "body-neck1b": {"x": -5.4, "y": -54.79, "width": 103.125, "height": 117.1875, "path": "body-accessory.body-neck1b"}, - "body-neck1c": {"x": -5.4, "y": -54.79, "width": 79.6875, "height": 110.9375, "path": "body-accessory.body-neck1c"}, - "body-neck1d": {"x": -5.4, "y": -54.79, "width": 121.875, "height": 101.5625, "path": "body-accessory.body-neck1d"}, - "body-neck1e": {"x": -5.4, "y": -54.79, "width": 89.0625, "height": 107.8125, "path": "body-accessory.body-neck1e"}, - "body-neck1f": {"x": -5.4, "y": -54.79, "width": 79.6875, "height": 79.6875, "path": "body-accessory.body-neck1f"} - } - } - } - ], - "events": {"hit": {}, "hit-buff": {}, "jump": {}, "start-attack": {}}, - "keyAnimations": { - "activity/appear": "1023093953", - "activity/bath": "3305387968", - "attack/ranged/cast-fly": "4180526371", - "attack/ranged/cast-high": "164191126", - "attack/ranged/cast-low": "198813017", - "attack/ranged/cast-multi": "151119", - "attack/ranged/cast-tail": "997902532", - "activity/eat-bite": "1137807767", - "activity/eat-chew": "1988236421", - "activity/entrance": "3768378365", - "defense/evade": "1735454995", - "activity/evolve": "649307630", - "battle/get-buff": "1455190363", - "battle/get-debuff": "606904312", - "defense/hit-by-normal": "2045974966", - "defense/hit-by-normal-crit": "2130010601", - "defense/hit-by-normal-dramatic": "3823092125", - "defense/hit-by-ranged-attack": "2224561612", - "defense/hit-with-shield": "390714790", - "attack/melee/horn-gore": "1327954218", - "attack/melee/mouth-bite": "2237748264", - "action/move-back": "3766271173", - "action/move-forward": "2945160014", - "attack/melee/multi-attack": "905926802", - "action/idle/normal": "1659336865", - "attack/melee/normal-attack": "3305373483", - "activity/prepare": "405864717", - "action/idle/random-01": "554401889", - "action/idle/random-02": "1085666627", - "action/idle/random-03": "2021333900", - "action/idle/random-04": "1003789695", - "action/idle/random-05": "2745614147", - "action/run": "1438840721", - "draft/run-origin": "3577885069", - "attack/melee/shrimp": "3833448733", - "activity/sleep": "100562494", - "attack/melee/tail-multi-slap": "3317139533", - "attack/melee/tail-roll": "3108617565", - "attack/melee/tail-smash": "519942130", - "attack/melee/tail-thrash": "628713175", - "activity/victory-pose-back-flip": "2227634241" - } - }, - "bug-08": { - "bones": [ - {"name": "@root"}, {"name": "@pivot-main", "parent": "@root"}, {"name": "@pivot-back", "parent": "@pivot-main", "x": 205, "y": 180, "color": "ff0101ff"}, - {"name": "@pivot-center", "parent": "@pivot-back", "x": -215.11, "y": -5.25, "color": "ff0101ff"}, - {"name": "@axie", "parent": "@pivot-center", "length": 213.28, "rotation": 179.04, "x": 196.39, "y": 5.16}, {"name": "@back", "parent": "@axie", "rotation": -179.04, "x": 37.63, "y": -198.19}, - {"name": "back", "parent": "@back", "length": 149.41, "rotation": 58, "x": -84.97, "y": -22.7, "transform": "noScale"}, - {"name": "@body", "parent": "@axie", "length": 226.28, "rotation": -8.35, "x": 224.58, "y": -0.53}, {"name": "@ear-left", "parent": "@axie", "rotation": -179.04, "x": 112.7, "y": -203.23}, - {"name": "ear-left", "parent": "@ear-left", "length": 113.61, "rotation": 90, "x": -27, "y": 19, "transform": "noScale"}, - {"name": "@ear-right", "parent": "@axie", "rotation": -179.04, "x": 405.28, "y": -235.33}, - {"name": "ear-right", "parent": "@ear-right", "length": 119.39, "rotation": 68, "x": -73, "y": -68, "transform": "noScale"}, - {"name": "@eyes", "parent": "@axie", "rotation": -179.04, "x": 384.24, "y": -113.67}, {"name": "@horn", "parent": "@axie", "rotation": -179.04, "x": 327.92, "y": -214.63}, - {"name": "horn", "parent": "@horn", "length": 176.72, "rotation": 90, "y": 18, "transform": "noScale"}, - {"name": "@leg-back-left", "parent": "@axie", "length": 76.4, "rotation": 100.96, "x": -15.3, "y": 102.56, "transform": "noScale"}, - {"name": "@leg-front-left", "parent": "@axie", "length": 51.19, "rotation": 93.86, "x": 134.77, "y": 149.55, "transform": "noScale"}, - {"name": "@leg-front-right", "parent": "@axie", "length": 74.83, "rotation": 83.2, "x": 382.95, "y": 121.78, "transform": "noScale"}, - {"name": "@mouth", "parent": "@axie", "rotation": -179.04, "x": 382.23, "y": 6.31}, - {"name": "body-pattern", "parent": "@body", "rotation": -170.69, "x": -267.21, "y": -49.4, "transform": "noScale"}, {"name": "@shadow", "parent": "@root", "color": "e6d713ff"}, - {"name": "@tail", "parent": "@axie", "rotation": -179.04, "x": -11.76, "y": 61.72}, - {"name": "tail", "parent": "@tail", "length": 203.67, "rotation": -42, "x": 16, "y": 72.87, "transform": "noScale"}, - {"name": "leg-front-right-IK", "parent": "@pivot-main", "x": -195.99, "y": -10.21, "color": "ff3f00ff"}, - {"name": "leg-front-left-IK", "parent": "@pivot-main", "x": 42.3, "y": -18.42, "color": "ff3f00ff"}, - {"name": "leg-back-left-IK", "parent": "@pivot-main", "x": 208.57, "y": 1.35, "color": "ff3f00ff"}, {"name": "@ball", "parent": "@root", "y": 191, "color": "f3981bff"}, - {"name": "ball", "parent": "@ball", "y": -191, "color": "f4a729ff"} - ], - "slots": [ - {"name": "shadow", "bone": "@shadow", "attachment": "shadow"}, {"name": "ball", "bone": "ball"}, {"name": "leg-front-right", "bone": "@leg-front-right", "attachment": "leg-front-right"}, - {"name": "ear-right", "bone": "ear-right", "attachment": "ear-right"}, {"name": "tail", "bone": "tail", "attachment": "tail"}, {"name": "back", "bone": "back", "attachment": "back"}, - {"name": "leg-back-left", "bone": "@leg-back-left", "attachment": "leg-back-left"}, {"name": "body", "bone": "@body", "attachment": "body"}, {"name": "body-pattern", "bone": "body-pattern"}, - {"name": "leg-front-left", "bone": "@leg-front-left", "attachment": "leg-front-left"}, {"name": "eyes", "bone": "@eyes", "attachment": "eyes"}, - {"name": "mouth", "bone": "@mouth", "attachment": "mouth"}, {"name": "ear-left", "bone": "ear-left", "attachment": "ear-left"}, {"name": "horn", "bone": "horn", "attachment": "horn"} - ], - "ik": [ - {"name": "leg-back-left-IK", "order": 2, "bones": ["@leg-back-left"], "target": "leg-back-left-IK"}, - {"name": "leg-front-left-IK", "order": 1, "bones": ["@leg-front-left"], "target": "leg-front-left-IK"}, - {"name": "leg-front-right-IK", "bones": ["@leg-front-right"], "target": "leg-front-right-IK"} - ], - "skins": [ - { - "name": "default", - "attachments": { - "back": {"back": {"x": 128.2, "y": 45.64, "rotation": -58, "width": 352, "height": 249, "path": "bug-08.back"}}, - "ear-left": {"ear-left": {"x": 41.18, "y": -70.73, "rotation": -90, "width": 163, "height": 201, "path": "bug-08.ear-left"}}, - "ear-right": {"ear-right": {"x": 100.38, "y": -4.45, "rotation": -68, "width": 157, "height": 208, "path": "bug-08.ear-right"}}, - "eyes": { - "eyes": {"x": 31.23, "y": 42.91, "width": 290, "height": 169, "path": "bug-08.eyes"}, - "eyes-angry": {"x": 31.23, "y": 42.91, "width": 290, "height": 169, "path": "bug-08.eyes-angry"}, - "eyes-happy": {"x": 31.23, "y": 42.91, "width": 290, "height": 169, "path": "bug-08.eyes-happy"}, - "eyes-shut": {"x": 31.23, "y": 42.91, "width": 290, "height": 169, "path": "bug-08.eyes-shut"} - }, - "horn": {"horn": {"x": 69.41, "y": 11.27, "rotation": -90, "width": 259, "height": 116, "path": "bug-08.horn"}}, - "mouth": { - "mouth": {"x": 23.73, "y": 65.91, "width": 283, "height": 45, "path": "bug-08.mouth"}, - "mouth-bite": {"x": 23.73, "y": 49.41, "width": 283, "height": 114, "path": "bug-08.mouth-bite"}, - "mouth-open": {"x": 23.73, "y": 13.91, "width": 283, "height": 203, "path": "bug-08.mouth-open"}, - "mouth-smile": {"x": 23.73, "y": 46.91, "width": 283, "height": 105, "path": "bug-08.mouth-smile"} + 78, 76, 86, 0, 78, 80, 80, 82, 82, 84, 84, 86, 0, 94, 76, 96, 62, 64, 74, 76, 102, 96, 74, 102, 104, 90, 106, 98, 108, 88, 110, 100, 112, 92, 114, 94, 2, 0, 114, 2, 72, 74, 116, 102, + 72, 116, 118, 104, 120, 106, 122, 108, 124, 110, 126, 112, 128, 114, 4, 2, 128, 4, 70, 72, 130, 116, 70, 130, 132, 118, 134, 120, 136, 122, 138, 124, 140, 126, 142, 128, 8, 6, 6, 4, + 142, 6, 68, 70, 144, 130, 68, 144, 146, 132, 148, 134, 150, 136, 152, 138, 154, 140, 156, 142, 156, 8, 8, 10, 10, 12, 12, 158, 158, 156, 10, 158, 160, 154, 162, 152, 164, 150, 166, + 148, 168, 146, 170, 144, 64, 66, 66, 68, 170, 66, 82, 172, 172, 88, 98, 172, 172, 100, 80, 174, 174, 90, 96, 174, 84, 176, 176, 92, 94, 176, 90, 178, 178, 96, 102, 180, 180, 104, + 178, 180, 180, 182, 182, 184, 184, 186, 186, 188, 90, 190, 190, 98, 104, 192, 192, 106, 190, 192, 192, 194, 194, 196, 196, 198, 198, 200, 88, 202, 202, 98, 106, 204, 204, 108, 202, + 204, 204, 206, 206, 208, 208, 210, 210, 212, 88, 214, 214, 100, 108, 216, 216, 110, 214, 216, 216, 218, 218, 220, 220, 222, 222, 224, 92, 226, 226, 100, 110, 228, 228, 112, 226, 228, + 228, 230, 230, 232, 232, 234, 234, 236, 92, 238, 238, 94, 112, 240, 240, 114, 238, 240, 240, 242, 242, 244, 244, 246, 246, 248, 12, 14, 170, 64, 116, 250, 250, 182, 130, 252, 252, + 184, 250, 252, 144, 254, 254, 186, 252, 254, 170, 256, 256, 188, 254, 256, 58, 60, 60, 62, 118, 258, 258, 182, 132, 260, 260, 184, 258, 260, 146, 262, 262, 186, 260, 262, 168, 264, + 264, 188, 262, 264, 54, 56, 56, 58, 50, 52, 52, 54, 168, 266, 266, 200, 146, 268, 268, 198, 266, 268, 132, 270, 270, 196, 268, 270, 118, 272, 272, 194, 270, 272, 120, 274, 274, 194, + 134, 276, 276, 196, 274, 276, 148, 278, 278, 198, 276, 278, 166, 280, 280, 200, 278, 280, 46, 48, 48, 50, 42, 44, 44, 46, 166, 282, 282, 212, 148, 284, 284, 210, 282, 284, 134, 286, + 286, 208, 284, 286, 120, 288, 288, 206, 286, 288, 122, 290, 290, 206, 136, 292, 292, 208, 290, 292, 150, 294, 294, 210, 292, 294, 164, 296, 296, 212, 294, 296, 38, 40, 40, 42, 34, + 36, 36, 38, 164, 298, 298, 224, 150, 300, 300, 222, 298, 300, 136, 302, 302, 220, 300, 302, 122, 304, 304, 218, 302, 304, 124, 306, 306, 218, 138, 308, 308, 220, 306, 308, 152, 310, + 310, 222, 308, 310, 162, 312, 312, 224, 310, 312, 30, 32, 32, 34, 26, 28, 28, 30, 162, 314, 314, 236, 22, 24, 24, 26, 160, 316, 316, 236, 18, 20, 20, 22, 160, 318, 318, 248, 14, 16, + 16, 18, 158, 320, 320, 248, 156, 322, 322, 246, 320, 322, 154, 324, 324, 246, 318, 324, 154, 326, 326, 234, 316, 326, 152, 328, 328, 234, 314, 328, 138, 330, 330, 232, 328, 330, 140, + 332, 332, 232, 326, 332, 140, 334, 334, 244, 324, 334, 142, 336, 336, 244, 322, 336, 128, 338, 338, 242, 336, 338, 126, 340, 340, 242, 334, 340, 126, 342, 342, 230, 332, 342, 124, + 344, 344, 230, 330, 344, 62, 346, 346, 170, 60, 348, 348, 256, 346, 348, 58, 350, 350, 188, 348, 350, 56, 352, 352, 264, 350, 352, 54, 354, 354, 168, 352, 354, 52, 356, 356, 266, + 354, 356, 50, 358, 358, 200, 356, 358, 48, 360, 360, 280, 358, 360, 46, 362, 362, 166, 360, 362, 44, 364, 364, 282, 362, 364, 42, 366, 366, 212, 364, 366, 40, 368, 368, 296, 366, + 368, 38, 370, 370, 164, 368, 370, 36, 372, 372, 298, 370, 372, 34, 374, 374, 224, 372, 374, 32, 376, 376, 312, 374, 376, 30, 378, 378, 162, 376, 378, 28, 380, 380, 314, 378, 380, 26, + 382, 382, 236, 380, 382, 24, 384, 384, 316, 382, 384, 22, 386, 386, 160, 384, 386, 20, 388, 388, 318, 386, 388, 18, 390, 390, 248, 388, 390, 16, 392, 392, 320, 390, 392, 14, 394, + 394, 158, 392, 394 + ], + "width": 82.3529411764706, + "height": 80.0, + "path": "summer-as.ear-right-bubble", + "x": 0.32352941176470296, + "y": 0.0 + } }, - "tail": {"tail": {"x": 98.19, "y": -0.35, "rotation": 42, "width": 235, "height": 205, "path": "bug-08.tail"}} - } - } - ], - "events": {"hit": {}, "hit-buff": {}, "jump": {}, "start-attack": {}}, - "keyAnimations": { - "activity/appear": "1023093953", - "activity/bath": "3305387968", - "attack/ranged/cast-fly": "4180526371", - "attack/ranged/cast-high": "164191126", - "attack/ranged/cast-low": "198813017", - "attack/ranged/cast-multi": "151119", - "attack/ranged/cast-tail": "997902532", - "activity/eat-bite": "1137807767", - "activity/eat-chew": "1988236421", - "activity/entrance": "3768378365", - "defense/evade": "1735454995", - "activity/evolve": "649307630", - "battle/get-buff": "1455190363", - "battle/get-debuff": "606904312", - "defense/hit-by-normal": "2045974966", - "defense/hit-by-normal-crit": "2130010601", - "defense/hit-by-normal-dramatic": "3823092125", - "defense/hit-by-ranged-attack": "2224561612", - "defense/hit-with-shield": "390714790", - "attack/melee/horn-gore": "1327954218", - "attack/melee/mouth-bite": "2237748264", - "action/move-back": "3766271173", - "action/move-forward": "2945160014", - "attack/melee/multi-attack": "905926802", - "action/idle/normal": "1659336865", - "attack/melee/normal-attack": "3305373483", - "activity/prepare": "405864717", - "action/idle/random-01": "554401889", - "action/idle/random-02": "1085666627", - "action/idle/random-03": "2021333900", - "action/idle/random-04": "1003789695", - "action/idle/random-05": "2745614147", - "action/run": "1438840721", - "draft/run-origin": "3577885069", - "attack/melee/shrimp": "3833448733", - "activity/sleep": "100562494", - "attack/melee/tail-multi-slap": "3317139533", - "attack/melee/tail-roll": "3108617565", - "attack/melee/tail-smash": "519942130", - "attack/melee/tail-thrash": "628713175", - "activity/victory-pose-back-flip": "2227634241" - } - }, - "bug-06": { - "bones": [ - {"name": "@root"}, {"name": "@pivot-main", "parent": "@root"}, {"name": "@pivot-back", "parent": "@pivot-main", "x": 205, "y": 180, "color": "ff0101ff"}, - {"name": "@pivot-center", "parent": "@pivot-back", "x": -215.11, "y": -5.25, "color": "ff0101ff"}, - {"name": "@axie", "parent": "@pivot-center", "length": 213.28, "rotation": 179.04, "x": 196.39, "y": 5.16}, {"name": "@back", "parent": "@axie", "rotation": -179.04, "x": 37.63, "y": -198.19}, - {"name": "back", "parent": "@back", "length": 149.41, "rotation": 77, "x": -39.97, "y": 26.3, "transform": "noScale"}, - {"name": "@body", "parent": "@axie", "length": 226.28, "rotation": -8.35, "x": 224.58, "y": -0.53}, {"name": "@ear-left", "parent": "@axie", "rotation": -179.04, "x": 112.7, "y": -203.23}, - {"name": "ear-left", "parent": "@ear-left", "length": 113.61, "rotation": 90, "x": -27, "y": 19, "transform": "noScale"}, - {"name": "@ear-right", "parent": "@axie", "rotation": -179.04, "x": 405.28, "y": -235.33}, - {"name": "ear-right", "parent": "@ear-right", "length": 119.39, "rotation": 93, "x": -30, "y": -15, "transform": "noScale"}, - {"name": "@eyes", "parent": "@axie", "rotation": -179.04, "x": 384.24, "y": -113.67}, {"name": "@horn", "parent": "@axie", "rotation": -179.04, "x": 327.92, "y": -214.63}, - {"name": "horn", "parent": "@horn", "length": 176.72, "rotation": 90, "y": 18, "transform": "noScale"}, - {"name": "@leg-back-left", "parent": "@axie", "length": 76.4, "rotation": 100.96, "x": -15.3, "y": 102.56, "transform": "noScale"}, - {"name": "@leg-front-left", "parent": "@axie", "length": 51.19, "rotation": 93.86, "x": 134.77, "y": 149.55, "transform": "noScale"}, - {"name": "@leg-front-right", "parent": "@axie", "length": 74.83, "rotation": 83.2, "x": 382.95, "y": 121.78, "transform": "noScale"}, - {"name": "@mouth", "parent": "@axie", "rotation": -179.04, "x": 382.23, "y": 6.31}, - {"name": "body-pattern", "parent": "@body", "rotation": -170.69, "x": -267.21, "y": -49.4, "transform": "noScale"}, {"name": "@shadow", "parent": "@root", "color": "e6d713ff"}, - {"name": "@tail", "parent": "@axie", "rotation": -179.04, "x": -11.76, "y": 61.72}, - {"name": "tail", "parent": "@tail", "length": 203.67, "rotation": -8, "x": 16, "y": -11, "transform": "noScale"}, - {"name": "leg-front-right-IK", "parent": "@pivot-main", "x": -195.99, "y": -10.21, "color": "ff3f00ff"}, - {"name": "leg-front-left-IK", "parent": "@pivot-main", "x": 42.3, "y": -18.42, "color": "ff3f00ff"}, - {"name": "leg-back-left-IK", "parent": "@pivot-main", "x": 208.57, "y": 1.35, "color": "ff3f00ff"}, {"name": "@ball", "parent": "@root", "y": 191, "color": "f3981bff"}, - {"name": "ball", "parent": "@ball", "y": -191, "color": "f4a729ff"} - ], - "slots": [ - {"name": "shadow", "bone": "@shadow", "attachment": "shadow"}, {"name": "ball", "bone": "ball"}, {"name": "leg-front-right", "bone": "@leg-front-right", "attachment": "leg-front-right"}, - {"name": "ear-right", "bone": "ear-right"}, {"name": "tail", "bone": "tail", "attachment": "tail"}, {"name": "back", "bone": "back", "attachment": "back"}, - {"name": "leg-back-left", "bone": "@leg-back-left", "attachment": "leg-back-left"}, {"name": "body", "bone": "@body", "attachment": "body"}, {"name": "body-pattern", "bone": "body-pattern"}, - {"name": "leg-front-left", "bone": "@leg-front-left", "attachment": "leg-front-left"}, {"name": "eyes", "bone": "@eyes", "attachment": "eyes"}, - {"name": "mouth", "bone": "@mouth", "attachment": "mouth"}, {"name": "ear-left", "bone": "ear-left", "attachment": "ear-left"}, {"name": "horn", "bone": "horn", "attachment": "horn"} - ], - "ik": [ - {"name": "leg-back-left-IK", "order": 2, "bones": ["@leg-back-left"], "target": "leg-back-left-IK"}, - {"name": "leg-front-left-IK", "order": 1, "bones": ["@leg-front-left"], "target": "leg-front-left-IK"}, - {"name": "leg-front-right-IK", "bones": ["@leg-front-right"], "target": "leg-front-right-IK"} - ], - "skins": [ - { - "name": "default", - "attachments": { - "back": {"back": {"x": 129.75, "y": -52.88, "rotation": -77, "width": 303, "height": 252, "path": "bug-06.back"}}, - "ear-left": {"ear-left": {"x": -41.47, "y": -68.71, "rotation": -90, "width": 95, "height": 50, "path": "bug-06.ear-left"}}, - "eyes": { - "eyes": {"x": 25.62, "y": 19.83, "width": 283, "height": 94, "path": "bug-06.eyes"}, - "eyes-angry": {"x": 25.62, "y": 16.33, "width": 283, "height": 79, "path": "bug-06.eyes-angry"}, - "eyes-happy": {"x": 25.62, "y": 28.33, "width": 283, "height": 109, "path": "bug-06.eyes-happy"}, - "eyes-shut": {"x": 25.62, "y": 20.83, "width": 283, "height": 92, "path": "bug-06.eyes-shut"} + "ear-right-bubble-02": { + "ear-right-bubble": { + "type": "mesh", + "uvs": [ + 0.93928, 0.50958, 0.95558, 0.59885, 0.96791, 0.66638, 0.98006, 0.73289, 1, 0.84205, 1, 0.89818, 1, 0.9625, 0.9567, 0.9625, 0.9208, 0.9625, 0.88771, 0.9625, 0.83969, 0.9625, 0.79967, + 0.9625, 0.76574, 0.9625, 0.73418, 0.9625, 0.69508, 0.9625, 0.6661, 0.9625, 0.6319, 0.9625, 0.6046, 0.9625, 0.57454, 0.9625, 0.53755, 0.9625, 0.50387, 0.9625, 0.47341, 0.9625, + 0.44466, 0.9625, 0.41233, 0.9625, 0.37317, 0.9625, 0.33787, 0.9625, 0.30333, 0.9625, 0.2648, 0.9625, 0.21937, 0.9625, 0.17434, 0.9625, 0.12959, 0.9625, 0.08769, 0.9625, 0, 0.9625, + 0.02085, 0.89779, 0.04055, 0.83664, 0.06626, 0.75682, 0.08854, 0.68766, 0.11527, 0.60468, 0.13788, 0.53451, 0.35753, 0.0375, 0.43128, 0.0375, 0.52161, 0.0375, 0.60662, 0.0375, + 0.67954, 0.0375, 0.54109, 0.5336, 0.30907, 0.53412, 0.75362, 0.52077, 0.84707, 0.51514, 0.2081, 0.53435, 0.42115, 0.53387, 0.64269, 0.52747, 0.1892, 0.60156, 0.3018, 0.60447, + 0.41972, 0.60346, 0.54053, 0.60135, 0.64648, 0.59785, 0.76151, 0.59644, 0.87262, 0.58988, 0.16806, 0.67676, 0.29497, 0.67061, 0.41838, 0.66857, 0.54, 0.66508, 0.65011, 0.66538, + 0.7681, 0.65967, 0.89666, 0.66021, 0.14733, 0.75044, 0.28705, 0.74721, 0.41688, 0.74143, 0.53942, 0.73556, 0.6538, 0.73393, 0.7757, 0.7326, 0.91933, 0.7265, 0.12337, 0.83566, 0.2782, + 0.83283, 0.4151, 0.82771, 0.53871, 0.82207, 0.65852, 0.82169, 0.7847, 0.8189, 0.95379, 0.82732, 0.97627, 0.89309, 0.79208, 0.88971, 0.66236, 0.89294, 0.5381, 0.89586, 0.41375, + 0.89349, 0.2717, 0.89571, 0.10571, 0.89844, 0.53197, 0.30141, 0.39415, 0.1884, 0.65961, 0.2117, 0.25473, 0.53425, 0.24202, 0.60293, 0.22911, 0.6738, 0.21379, 0.7489, 0.19729, + 0.83431, 0.18704, 0.8971, 0.36352, 0.534, 0.36013, 0.60397, 0.35748, 0.66957, 0.35288, 0.74428, 0.34802, 0.83022, 0.34383, 0.89458, 0.48024, 0.53373, 0.47847, 0.60244, 0.47433, + 0.66696, 0.47563, 0.73861, 0.47402, 0.82502, 0.47337, 0.89463, 0.58955, 0.53067, 0.59344, 0.5996, 0.59605, 0.66523, 0.5961, 0.73475, 0.60032, 0.82187, 0.60296, 0.89434, 0.69391, + 0.52438, 0.69915, 0.59721, 0.70691, 0.66263, 0.71206, 0.7333, 0.71954, 0.82034, 0.72813, 0.8913, 0.80125, 0.5179, 0.81428, 0.59333, 0.8348, 0.65995, 0.84793, 0.72953, 0.87862, + 0.82358, 0.89305, 0.89156, 0.19669, 0.67537, 0.17782, 0.74974, 0.1594, 0.835, 0.1429, 0.89783, 0.26012, 0.6723, 0.25017, 0.74806, 0.23685, 0.83359, 0.22589, 0.89647, 0.30659, + 0.89517, 0.3131, 0.83153, 0.31569, 0.74593, 0.32231, 0.67016, 0.38717, 0.66908, 0.38553, 0.74282, 0.38068, 0.829, 0.37648, 0.89407, 0.44462, 0.89408, 0.44322, 0.82643, 0.44458, + 0.7401, 0.44621, 0.66777, 0.50711, 0.66602, 0.50646, 0.73714, 0.50582, 0.82357, 0.50482, 0.89523, 0.57134, 0.89508, 0.5687, 0.82197, 0.56865, 0.73514, 0.5654, 0.66515, 0.62192, + 0.6653, 0.6236, 0.73436, 0.62525, 0.8218, 0.62839, 0.89374, 0.69427, 0.89215, 0.76244, 0.89045, 0.84047, 0.89059, 0.93306, 0.89229, 0.91732, 0.8255, 0.82617, 0.82097, 0.75013, + 0.81967, 0.6863, 0.82108, 0.68017, 0.73364, 0.74166, 0.73297, 0.80979, 0.73115, 0.88285, 0.72805, 0.86581, 0.66008, 0.79931, 0.6598, 0.73613, 0.66121, 0.67214, 0.66431, 0.09776, + 0.92671, 0.13724, 0.92534, 0.1817, 0.92459, 0.22313, 0.92439, 0.26892, 0.92268, 0.30526, 0.92265, 0.34139, 0.92236, 0.3751, 0.92252, 0.41313, 0.92351, 0.44464, 0.92289, 0.47339, + 0.92339, 0.5044, 0.9248, 0.53787, 0.92389, 0.57268, 0.92341, 0.60366, 0.9233, 0.62995, 0.92432, 0.66398, 0.92316, 0.69464, 0.92383, 0.73085, 0.92333, 0.76403, 0.92521, 0.79572, + 0.92461, 0.84011, 0.92404, 0.89075, 0.92209, 0.92774, 0.92274, 0.96706, 0.92576 + ], + "triangles": [ + 166, 63, 70, 116, 171, 166, 165, 115, 116, 77, 70, 167, 163, 166, 70, 163, 70, 77, 117, 116, 166, 117, 166, 163, 77, 167, 162, 164, 165, 116, 164, 116, 117, 76, 69, 165, 76, 165, + 164, 162, 122, 123, 80, 77, 162, 158, 163, 77, 158, 77, 80, 159, 162, 123, 80, 162, 159, 118, 117, 163, 118, 163, 158, 124, 123, 161, 159, 123, 124, 157, 164, 117, 157, 117, 118, 81, + 76, 164, 81, 164, 157, 195, 159, 124, 196, 124, 160, 195, 124, 196, 189, 81, 157, 191, 118, 158, 190, 157, 118, 190, 118, 191, 189, 157, 190, 159, 193, 80, 194, 159, 195, 194, 193, + 159, 192, 158, 80, 192, 80, 193, 191, 158, 192, 15, 189, 190, 14, 190, 191, 15, 190, 14, 13, 191, 192, 14, 191, 13, 12, 192, 193, 13, 192, 12, 11, 193, 194, 12, 193, 11, 10, 11, 194, + 9, 194, 195, 10, 194, 9, 8, 195, 196, 9, 195, 8, 8, 196, 7, 151, 109, 110, 68, 152, 151, 146, 145, 68, 104, 103, 146, 155, 154, 69, 155, 69, 76, 111, 110, 154, 111, 154, 155, 150, + 151, 110, 150, 110, 111, 68, 151, 150, 75, 146, 68, 75, 68, 150, 147, 104, 146, 147, 146, 75, 105, 143, 104, 105, 104, 147, 142, 67, 143, 142, 143, 105, 74, 67, 142, 156, 155, 76, + 156, 76, 81, 106, 141, 142, 74, 142, 141, 83, 74, 141, 112, 111, 155, 112, 155, 156, 105, 106, 142, 149, 150, 111, 149, 111, 112, 148, 105, 147, 106, 105, 148, 82, 75, 150, 82, 148, + 147, 147, 75, 82, 150, 149, 82, 182, 141, 106, 187, 112, 156, 183, 106, 148, 182, 106, 183, 186, 149, 112, 186, 112, 187, 182, 181, 83, 182, 83, 141, 185, 148, 82, 185, 82, 149, 185, + 149, 186, 188, 156, 81, 188, 81, 189, 187, 156, 188, 184, 183, 148, 184, 148, 185, 22, 182, 183, 181, 182, 22, 23, 181, 22, 21, 183, 184, 22, 183, 21, 20, 21, 184, 19, 184, 185, 20, + 184, 19, 18, 186, 187, 19, 185, 186, 18, 19, 186, 17, 187, 188, 18, 187, 17, 16, 188, 189, 17, 188, 16, 16, 189, 15, 143, 144, 104, 110, 153, 154, 151, 152, 109, 68, 145, 61, 68, 61, + 152, 146, 103, 145, 83, 139, 74, 181, 140, 83, 23, 180, 181, 138, 137, 67, 98, 136, 97, 98, 97, 138, 135, 59, 136, 135, 136, 98, 66, 59, 135, 130, 129, 66, 74, 138, 67, 139, 98, 138, + 139, 138, 74, 99, 135, 98, 99, 98, 139, 134, 66, 135, 134, 135, 99, 73, 130, 66, 73, 66, 134, 131, 92, 130, 131, 130, 73, 93, 92, 131, 140, 99, 139, 140, 139, 83, 100, 134, 99, 100, + 99, 140, 133, 73, 134, 133, 134, 100, 84, 131, 73, 84, 73, 133, 132, 93, 131, 132, 131, 84, 94, 127, 93, 94, 93, 132, 128, 127, 94, 179, 133, 100, 180, 100, 140, 179, 100, 180, 178, + 84, 133, 178, 133, 179, 177, 132, 84, 177, 84, 178, 180, 140, 181, 176, 94, 132, 176, 132, 177, 175, 128, 94, 175, 94, 176, 174, 85, 128, 174, 128, 175, 30, 173, 174, 31, 173, 30, + 29, 174, 175, 30, 174, 29, 28, 175, 176, 29, 175, 28, 27, 176, 177, 28, 176, 27, 26, 177, 178, 27, 177, 26, 25, 178, 179, 26, 178, 25, 24, 179, 180, 25, 179, 24, 24, 180, 23, 79, 4, + 5, 79, 78, 4, 6, 79, 5, 123, 168, 161, 160, 78, 79, 124, 161, 160, 7, 196, 197, 196, 160, 197, 197, 160, 79, 160, 161, 78, 7, 197, 6, 162, 167, 122, 6, 197, 79, 85, 72, 128, 173, 32, + 85, 31, 32, 173, 173, 85, 174, 85, 32, 33, 66, 129, 59, 167, 170, 121, 167, 121, 122, 70, 63, 170, 70, 170, 167, 166, 171, 63, 123, 122, 168, 130, 91, 129, 92, 91, 130, 122, 169, + 168, 127, 65, 126, 72, 65, 127, 92, 125, 91, 161, 168, 71, 122, 121, 169, 170, 120, 121, 91, 90, 129, 78, 161, 71, 3, 78, 71, 71, 64, 2, 52, 129, 90, 59, 129, 52, 67, 60, 143, 138, + 97, 137, 170, 63, 56, 171, 56, 63, 169, 121, 57, 33, 34, 85, 72, 35, 65, 34, 35, 72, 125, 51, 91, 35, 36, 65, 91, 51, 90, 36, 37, 58, 58, 37, 51, 71, 2, 3, 64, 1, 2, 1, 64, 57, 57, + 0, 1, 87, 39, 40, 88, 42, 43, 88, 86, 41, 88, 41, 42, 0, 88, 43, 47, 88, 0, 86, 88, 113, 47, 119, 88, 119, 46, 88, 46, 113, 88, 50, 86, 113, 107, 86, 50, 44, 86, 107, 87, 41, 86, 41, + 87, 40, 101, 86, 44, 87, 86, 95, 101, 49, 86, 87, 38, 39, 49, 95, 86, 87, 95, 45, 87, 45, 89, 87, 89, 48, 87, 48, 38, 57, 47, 0, 120, 119, 47, 56, 46, 119, 56, 119, 120, 114, 113, + 46, 114, 46, 56, 55, 50, 113, 55, 113, 114, 108, 107, 50, 55, 108, 50, 54, 101, 44, 44, 107, 108, 54, 44, 108, 102, 49, 101, 102, 101, 54, 90, 48, 89, 53, 95, 49, 53, 49, 102, 96, + 45, 95, 96, 95, 53, 52, 89, 45, 52, 45, 96, 90, 89, 52, 171, 114, 56, 115, 114, 171, 172, 55, 114, 172, 114, 115, 54, 145, 102, 152, 54, 108, 61, 54, 152, 153, 109, 108, 55, 153, + 108, 152, 108, 109, 55, 62, 153, 172, 62, 55, 61, 145, 54, 102, 144, 53, 103, 102, 145, 103, 144, 102, 53, 137, 96, 60, 53, 144, 60, 137, 53, 96, 136, 52, 97, 96, 137, 97, 136, 96, + 69, 62, 172, 154, 153, 62, 110, 109, 153, 144, 103, 104, 143, 60, 144, 67, 137, 60, 120, 47, 57, 121, 120, 57, 64, 169, 57, 78, 3, 4, 51, 38, 48, 51, 48, 90, 37, 38, 51, 58, 51, 125, + 65, 36, 58, 120, 170, 56, 154, 62, 69, 116, 115, 171, 165, 172, 115, 69, 172, 165, 59, 52, 136, 126, 58, 125, 65, 58, 126, 168, 169, 64, 168, 64, 71, 85, 34, 72, 126, 125, 92, 93, + 126, 92, 127, 126, 93, 128, 72, 127 + ], + "vertices": [ + 1, 42, 41.12, 33.33, 1, 1, 42, 48.32, 34.31, 1, 1, 42, 53.77, 35.04, 1, 1, 42, 60, 36.01, 1, 4, 42, 68.02, 38.37, 0.9295, 43, 61.47, -1.03, 1e-05, 44, 40.07, -0.92, 0.00266, 45, + 18.6, -0.92, 0.06784, 4, 42, 72.27, 39, 0.79905, 43, 62.32, -5.24, 1e-05, 44, 40.92, -5.13, 0.00721, 45, 19.44, -5.13, 0.19373, 4, 42, 78.35, 40.51, 0.74731, 43, 64.15, -11.23, 0, + 44, 42.75, -11.12, 0.00973, 45, 21.27, -11.12, 0.24296, 4, 42, 77.99, 36.05, 0.54785, 43, 59.68, -11.11, 1e-05, 44, 38.27, -11, 0.02168, 45, 16.8, -11, 0.43046, 4, 42, 77.69, 32.35, + 0.43038, 43, 55.96, -11, 3e-05, 44, 34.56, -10.9, 0.03847, 45, 13.08, -10.9, 0.53112, 4, 42, 77.42, 28.93, 0.36035, 43, 52.54, -10.91, 9e-05, 44, 31.14, -10.81, 0.06275, 45, 9.66, + -10.81, 0.57681, 4, 42, 77.02, 23.98, 0.2889, 43, 47.58, -10.78, 0.00026, 44, 26.17, -10.67, 0.09917, 45, 4.7, -10.67, 0.61167, 4, 42, 76.69, 19.85, 0.22591, 43, 43.44, -10.66, + 0.0007, 44, 22.03, -10.56, 0.14876, 45, 0.56, -10.56, 0.62463, 4, 42, 76.55, 17.04, 0.17724, 43, 40.62, -10.66, 0.0017, 44, 19.22, -10.56, 0.21115, 45, -2.26, -10.56, 0.60991, 4, 42, + 76.41, 14.43, 0.14418, 43, 38, -10.66, 0.00385, 44, 16.6, -10.56, 0.28407, 45, -4.88, -10.56, 0.5679, 4, 42, 76.24, 11.19, 0.12448, 43, 34.76, -10.66, 0.00813, 44, 13.35, -10.56, + 0.36326, 45, -8.12, -10.56, 0.50413, 4, 42, 76.11, 8.78, 0.11438, 43, 32.35, -10.66, 0.016, 44, 10.95, -10.56, 0.44276, 45, -10.53, -10.56, 0.42686, 4, 42, 75.96, 5.95, 0.11006, 43, + 29.51, -10.66, 0.02948, 44, 8.11, -10.56, 0.51561, 45, -13.37, -10.56, 0.34486, 4, 42, 75.84, 3.69, 0.10858, 43, 27.25, -10.66, 0.05095, 44, 5.84, -10.56, 0.57474, 45, -15.63, + -10.56, 0.26573, 4, 42, 75.71, 1.19, 0.10802, 43, 24.75, -10.66, 0.08291, 44, 3.35, -10.56, 0.614, 45, -18.13, -10.56, 0.19506, 4, 42, 75.55, -1.87, 0.1074, 43, 21.68, -10.66, + 0.12742, 44, 0.28, -10.56, 0.62906, 45, -21.2, -10.56, 0.13612, 4, 42, 75.4, -4.66, 0.10634, 43, 18.89, -10.66, 0.18549, 44, -2.52, -10.56, 0.61812, 45, -23.99, -10.56, 0.09006, 4, + 42, 75.27, -7.19, 0.10502, 43, 16.36, -10.66, 0.25646, 44, -5.05, -10.56, 0.58221, 45, -26.52, -10.56, 0.05631, 4, 42, 75.14, -9.57, 0.10419, 43, 13.97, -10.66, 0.33753, 44, -7.43, + -10.56, 0.52513, 45, -28.91, -10.56, 0.03316, 4, 42, 75, -12.25, 0.10536, 43, 11.29, -10.66, 0.42349, 44, -10.12, -10.56, 0.45282, 45, -31.59, -10.56, 0.01833, 4, 42, 74.83, -15.5, + 0.11098, 43, 8.04, -10.66, 0.50701, 44, -13.37, -10.56, 0.37254, 45, -34.84, -10.56, 0.00948, 4, 42, 74.68, -18.42, 0.12436, 43, 5.11, -10.66, 0.57939, 44, -16.3, -10.56, 0.29168, + 45, -37.77, -10.56, 0.00457, 4, 42, 74.53, -21.28, 0.149, 43, 2.24, -10.66, 0.63222, 44, -19.16, -10.56, 0.21673, 45, -40.64, -10.56, 0.00205, 4, 42, 74.36, -24.48, 0.18726, 43, + -0.96, -10.66, 0.65948, 44, -22.36, -10.56, 0.15241, 45, -43.84, -10.56, 0.00085, 4, 42, 74.16, -28.24, 0.23866, 43, -4.73, -10.66, 0.65975, 44, -26.13, -10.56, 0.10126, 45, -47.61, + -10.56, 0.00033, 4, 42, 73.97, -31.98, 0.29871, 43, -8.46, -10.66, 0.63741, 44, -29.87, -10.56, 0.06376, 45, -51.34, -10.56, 0.00012, 4, 42, 73.77, -35.69, 0.35932, 43, -12.18, + -10.66, 0.60181, 44, -33.58, -10.56, 0.03884, 45, -55.06, -10.56, 4e-05, 4, 42, 73.59, -39.16, 0.49297, 43, -15.66, -10.66, 0.48586, 44, -37.06, -10.56, 0.02116, 45, -58.54, -10.56, + 1e-05, 4, 42, 73.2, -46.43, 0.66969, 43, -22.93, -10.66, 0.32512, 44, -44.34, -10.56, 0.00518, 45, -65.81, -10.56, 0, 4, 42, 68.13, -44.43, 0.73638, 43, -21.2, -5.49, 0.26049, 44, + -42.61, -5.38, 0.00313, 45, -64.08, -5.38, 0, 4, 42, 63.33, -42.54, 0.74288, 43, -19.57, -0.59, 0.25402, 44, -40.97, -0.49, 0.00309, 45, -62.45, -0.49, 1e-05, 2, 42, 57.06, -40.07, + 0.86, 43, -17.44, 5.79, 0.14, 2, 42, 51.63, -37.93, 0.87418, 43, -15.59, 11.32, 0.12582, 1, 42, 45.12, -35.37, 1, 1, 42, 39.61, -33.2, 1, 2, 42, 0.87, -12.9, 0.99965, 43, 6.74, + 63.34, 0.00035, 2, 42, 1.19, -6.79, 0.9998, 43, 12.86, 63.34, 0.0002, 3, 42, 1.58, 0.7, 0.99981, 43, 20.36, 63.34, 9e-05, 45, -22.52, 63.44, 0.0001, 3, 42, 1.95, 7.74, 0.99975, 43, + 27.41, 63.34, 1e-05, 45, -15.46, 63.44, 0.00024, 2, 42, 2.27, 13.79, 0.99954, 45, -9.41, 63.44, 0.00046, 4, 42, 41.3, 0.23, 0.88429, 43, 21.98, 23.65, 0.02526, 44, 0.57, 23.75, + 0.06552, 45, -20.9, 23.75, 0.02493, 1, 42, 40.33, -19.01, 1, 4, 42, 41.2, 17.9, 0.94373, 43, 39.62, 24.67, 0.00089, 44, 18.21, 24.78, 0.01419, 45, -3.26, 24.78, 0.04119, 1, 42, + 41.16, 25.66, 1, 1, 42, 39.91, -27.38, 1, 4, 42, 40.8, -9.72, 0.88619, 43, 12.02, 23.63, 0.05505, 44, -9.38, 23.73, 0.05102, 45, -30.86, 23.73, 0.00774, 4, 42, 41.25, 8.67, 0.89286, + 43, 30.41, 24.14, 0.00746, 44, 9, 24.24, 0.04877, 45, -12.47, 24.24, 0.05092, 1, 42, 45.19, -29.23, 1, 4, 42, 45.92, -19.91, 0.74343, 43, 2.11, 17.98, 0.19678, 44, -19.29, 18.08, + 0.05726, 45, -40.76, 18.08, 0.00254, 4, 42, 46.35, -10.13, 0.58833, 43, 11.9, 18.06, 0.20061, 44, -9.5, 18.16, 0.19026, 45, -30.98, 18.16, 0.0208, 4, 42, 46.71, -0.11, 0.58846, 43, + 21.93, 18.23, 0.08112, 44, 0.53, 18.33, 0.24909, 45, -20.95, 18.33, 0.08133, 4, 42, 46.89, 8.69, 0.59817, 43, 30.72, 18.51, 0.02026, 44, 9.32, 18.61, 0.18761, 45, -12.16, 18.61, + 0.19395, 4, 42, 47.28, 18.23, 0.66183, 43, 40.27, 18.62, 0.00346, 44, 18.87, 18.73, 0.07957, 45, -2.61, 18.73, 0.25514, 1, 42, 47.24, 27.47, 1, 4, 42, 51.11, -31.3, 0.84023, 43, + -8.99, 12.2, 0.15068, 44, -30.39, 12.3, 0.00899, 45, -51.87, 12.3, 0.0001, 4, 42, 51.17, -20.75, 0.48016, 43, 1.55, 12.69, 0.41733, 44, -19.86, 12.79, 0.10062, 45, -41.33, 12.79, + 0.0019, 4, 42, 51.55, -10.51, 0.42576, 43, 11.79, 12.85, 0.28082, 44, -9.61, 12.96, 0.27628, 45, -31.09, 12.96, 0.01714, 4, 42, 51.8, -0.42, 0.43345, 43, 21.89, 13.13, 0.09343, 44, + 0.48, 13.24, 0.37698, 45, -20.99, 13.24, 0.09613, 4, 42, 52.3, 8.71, 0.43708, 43, 31.02, 13.11, 0.01603, 44, 9.62, 13.21, 0.27127, 45, -11.86, 13.21, 0.27562, 4, 42, 52.36, 18.51, + 0.51068, 43, 40.82, 13.56, 0.00179, 44, 19.41, 13.67, 0.09933, 45, -2.06, 13.67, 0.3882, 4, 42, 52.97, 29.16, 0.94195, 43, 51.49, 13.52, 4e-05, 44, 30.08, 13.62, 0.00385, 45, 8.61, + 13.62, 0.05416, 4, 42, 56.91, -33.32, 0.72549, 43, -10.71, 6.3, 0.2621, 44, -32.11, 6.41, 0.01235, 45, -53.59, 6.41, 6e-05, 4, 42, 57.26, -21.73, 0.38729, 43, 0.89, 6.56, 0.4981, 44, + -20.51, 6.66, 0.11341, 45, -41.99, 6.66, 0.0012, 4, 42, 57.36, -10.94, 0.32692, 43, 11.67, 7.02, 0.3274, 44, -9.74, 7.13, 0.32983, 45, -31.21, 7.13, 0.01585, 4, 42, 57.43, -0.76, + 0.33677, 43, 21.84, 7.49, 0.10146, 44, 0.43, 7.6, 0.45593, 45, -21.04, 7.6, 0.10584, 4, 42, 57.8, 8.73, 0.33839, 43, 31.33, 7.62, 0.0144, 44, 9.93, 7.73, 0.32329, 45, -11.55, 7.73, + 0.32392, 4, 42, 58.53, 19.24, 0.42143, 43, 41.87, 7.44, 0.00109, 44, 20.47, 7.55, 0.11176, 45, -1.01, 7.55, 0.46572, 4, 42, 60.09, 31.38, 0.79569, 43, 54.07, 6.52, 5e-05, 44, 32.67, + 6.63, 0.01091, 45, 11.19, 6.63, 0.19335, 4, 42, 63.61, -35.67, 0.66085, 43, -12.7, -0.52, 0.32566, 44, -34.1, -0.41, 0.01346, 45, -55.58, -0.41, 3e-05, 4, 42, 64.06, -22.82, 0.31024, + 43, 0.16, -0.29, 0.56299, 44, -21.25, -0.19, 0.12589, 45, -42.72, -0.19, 0.00089, 4, 42, 64.25, -11.45, 0.24349, 43, 11.52, 0.12, 0.36477, 44, -9.89, 0.22, 0.37599, 45, -31.36, 0.22, + 0.01574, 4, 42, 64.34, -1.18, 0.2525, 43, 21.78, 0.57, 0.10936, 44, 0.37, 0.68, 0.52284, 45, -21.1, 0.68, 0.1153, 4, 42, 64.83, 8.75, 0.2544, 43, 31.72, 0.6, 0.01401, 44, 10.32, + 0.71, 0.36809, 45, -11.16, 0.71, 0.3635, 4, 42, 65.03, 19.51, 0.3466, 43, 42.48, 0.96, 0.00077, 44, 21.07, 1.07, 0.1237, 45, -0.4, 1.07, 0.52893, 4, 42, 66.57, 33.2, 0.69411, 43, + 56.23, 0.15, 3e-05, 44, 34.83, 0.26, 0.01435, 45, 13.35, 0.26, 0.29151, 4, 42, 71.92, 34.78, 0.61986, 43, 58.1, -5.11, 1e-05, 44, 36.69, -5.01, 0.01658, 45, 15.22, -5.01, 0.36355, 4, + 42, 70.84, 19.53, 0.28549, 43, 42.81, -4.84, 0.00065, 44, 21.4, -4.73, 0.13463, 45, -0.07, -4.73, 0.57924, 4, 42, 70.54, 8.77, 0.18483, 43, 32.04, -5.1, 0.01432, 44, 10.64, -4.99, + 0.40541, 45, -10.84, -4.99, 0.39544, 4, 42, 70.23, -1.55, 0.18141, 43, 21.73, -5.33, 0.11681, 44, 0.32, -5.23, 0.57764, 45, -21.15, -5.23, 0.12413, 4, 42, 69.5, -11.84, 0.17479, 43, + 11.41, -5.14, 0.39444, 44, -10, -5.04, 0.41447, 45, -31.47, -5.04, 0.0163, 4, 42, 69.05, -23.63, 0.24784, 43, -0.38, -5.32, 0.61396, 44, -21.79, -5.22, 0.13743, 45, -43.26, -5.22, + 0.00077, 4, 42, 68.55, -37.4, 0.59732, 43, -14.16, -5.54, 0.38768, 44, -35.56, -5.43, 0.01499, 45, -57.04, -5.43, 1e-05, 4, 42, 22.71, 0.45, 0.98403, 43, 21.22, 42.22, 0.00516, 44, + -0.19, 42.33, 0.00609, 45, -21.66, 42.33, 0.00473, 3, 42, 13.08, -10.5, 0.98457, 43, 9.78, 51.26, 0.01421, 44, -11.62, 51.37, 0.00123, 3, 42, 16.1, 11.4, 0.98807, 44, 10.41, 49.51, + 0.00101, 45, -11.07, 49.51, 0.01092, 1, 42, 40.1, -23.51, 1, 4, 42, 45.53, -24.85, 0.93122, 43, -2.85, 18.1, 0.05888, 44, -24.25, 18.21, 0.00959, 45, -45.73, 18.21, 0.0003, 4, 42, + 51.14, -26.22, 0.67882, 43, -3.92, 12.43, 0.287, 44, -25.32, 12.54, 0.03374, 45, -46.8, 12.54, 0.00045, 4, 42, 57.07, -27.81, 0.52353, 43, -5.19, 6.42, 0.4314, 44, -26.59, 6.53, + 0.04479, 45, -48.07, 6.53, 0.00029, 4, 42, 63.82, -29.53, 0.41464, 43, -6.56, -0.41, 0.53292, 44, -27.96, -0.3, 0.05226, 45, -49.44, -0.3, 0.00018, 4, 42, 68.8, -30.65, 0.35706, 43, + -7.41, -5.43, 0.58638, 44, -28.81, -5.33, 0.05644, 45, -50.29, -5.33, 0.00012, 4, 42, 40.56, -14.49, 0.88311, 43, 7.24, 23.62, 0.07338, 44, -14.17, 23.72, 0.03978, 45, -35.64, 23.72, + 0.00372, 4, 42, 46.13, -15.07, 0.62555, 43, 6.96, 18.02, 0.24007, 44, -14.45, 18.12, 0.1259, 45, -35.92, 18.12, 0.00848, 4, 42, 51.36, -15.56, 0.4342, 43, 6.74, 12.77, 0.37611, 44, + -14.67, 12.88, 0.18375, 45, -36.14, 12.88, 0.00595, 4, 42, 57.31, -16.26, 0.33684, 43, 6.35, 6.79, 0.44427, 44, -15.05, 6.9, 0.21425, 45, -36.53, 6.9, 0.00464, 4, 42, 64.16, -17.02, + 0.25537, 43, 5.95, -0.08, 0.49872, 44, -15.45, 0.02, 0.24179, 45, -36.93, 0.02, 0.00413, 4, 42, 69.28, -17.64, 0.18921, 43, 5.6, -5.23, 0.54119, 44, -15.8, -5.13, 0.26556, 45, + -37.28, -5.13, 0.00404, 4, 42, 41.05, -4.82, 0.83361, 43, 16.93, 23.64, 0.05679, 44, -4.48, 23.74, 0.08927, 45, -25.95, 23.74, 0.02033, 4, 42, 46.53, -5.25, 0.57797, 43, 16.78, + 18.14, 0.13938, 44, -4.63, 18.25, 0.23843, 45, -26.1, 18.25, 0.04422, 4, 42, 51.66, -5.87, 0.42696, 43, 16.43, 12.98, 0.17737, 44, -4.97, 13.08, 0.35156, 45, -26.45, 13.08, 0.04411, + 4, 42, 57.39, -6.06, 0.33132, 43, 16.54, 7.25, 0.20059, 44, -4.86, 7.35, 0.42277, 45, -26.34, 7.35, 0.04531, 4, 42, 64.29, -6.56, 0.24781, 43, 16.41, 0.33, 0.22055, 44, -4.99, 0.44, + 0.48389, 45, -26.47, 0.44, 0.04775, 4, 42, 69.85, -6.91, 0.17763, 43, 16.35, -5.23, 0.23735, 44, -5.05, -5.13, 0.53429, 45, -26.52, -5.13, 0.05074, 4, 42, 41.28, 4.25, 0.83746, 43, + 26, 23.88, 0.02009, 44, 4.59, 23.99, 0.08772, 45, -16.88, 23.99, 0.05473, 4, 42, 46.8, 4.29, 0.58276, 43, 26.32, 18.37, 0.04346, 44, 4.92, 18.47, 0.23645, 45, -16.56, 18.47, 0.13732, + 4, 42, 52.06, 4.23, 0.43226, 43, 26.54, 13.12, 0.04191, 44, 5.13, 13.22, 0.34769, 45, -16.34, 13.22, 0.17814, 4, 42, 57.61, 3.94, 0.33656, 43, 26.54, 7.56, 0.0422, 44, 5.14, 7.66, + 0.41771, 45, -16.34, 7.66, 0.20353, 4, 42, 64.59, 3.92, 0.25264, 43, 26.89, 0.59, 0.04384, 44, 5.49, 0.69, 0.47782, 45, -15.99, 0.69, 0.2257, 4, 42, 70.39, 3.84, 0.18189, 43, 27.11, + -5.21, 0.04615, 44, 5.71, -5.11, 0.52741, 45, -15.77, -5.11, 0.24456, 4, 42, 41.23, 12.93, 0.8608, 43, 34.66, 24.39, 0.00457, 44, 13.26, 24.49, 0.04889, 45, -8.22, 24.49, 0.08574, 4, + 42, 47.07, 13.06, 0.60926, 43, 35.09, 18.56, 0.00894, 44, 13.69, 18.67, 0.13479, 45, -7.79, 18.67, 0.247, 4, 42, 52.33, 13.43, 0.45377, 43, 35.74, 13.33, 0.00554, 44, 14.33, 13.43, + 0.18027, 45, -7.14, 13.43, 0.36041, 4, 42, 58.15, 13.75, 0.35749, 43, 36.37, 7.54, 0.00417, 44, 14.96, 7.64, 0.20976, 45, -6.51, 7.64, 0.42858, 4, 42, 64.93, 13.95, 0.27612, 43, + 36.92, 0.78, 0.00359, 44, 15.52, 0.88, 0.23625, 45, -5.96, 0.88, 0.48404, 4, 42, 70.69, 14.22, 0.20954, 43, 37.5, -4.97, 0.00344, 44, 16.1, -4.86, 0.25903, 45, -5.38, -4.86, 0.52799, + 1, 42, 41.18, 21.86, 1, 4, 42, 47.26, 22.62, 0.82489, 43, 44.65, 18.87, 0.00083, 44, 23.25, 18.98, 0.0268, 45, 1.77, 18.98, 0.14748, 4, 42, 52.68, 24.04, 0.64773, 43, 46.35, 13.54, + 0.00052, 44, 24.95, 13.65, 0.04091, 45, 3.47, 13.65, 0.31084, 4, 42, 59.31, 25.35, 0.53225, 43, 48.01, 6.98, 0.00029, 44, 26.6, 7.09, 0.04857, 45, 5.13, 7.09, 0.41889, 4, 42, 65.88, + 27.11, 0.46955, 43, 50.12, 0.51, 0.00016, 44, 28.71, 0.62, 0.05201, 45, 7.24, 0.62, 0.47828, 4, 42, 71.43, 27.89, 0.41589, 43, 51.19, -4.99, 0.0001, 44, 29.78, -4.88, 0.05591, 45, + 8.31, -4.88, 0.5281, 4, 42, 51.12, -28.92, 0.72647, 43, -6.61, 12.31, 0.25381, 44, -28.01, 12.41, 0.01954, 45, -49.49, 12.41, 0.00018, 4, 42, 56.98, -30.79, 0.64422, 43, -8.18, 6.36, + 0.33291, 44, -29.58, 6.46, 0.02275, 45, -51.06, 6.46, 0.00011, 4, 42, 63.71, -32.68, 0.55448, 43, -9.7, -0.46, 0.41902, 44, -31.11, -0.36, 0.02643, 45, -52.58, -0.36, 7e-05, 4, 42, + 68.66, -34.31, 0.44397, 43, -11.07, -5.49, 0.52396, 44, -32.48, -5.38, 0.03202, 45, -53.95, -5.38, 4e-05, 4, 42, 51.16, -23.65, 0.5094, 43, -1.35, 12.55, 0.4213, 44, -22.75, 12.66, + 0.06847, 45, -44.22, 12.66, 0.00083, 4, 42, 57.16, -24.79, 0.42549, 43, -2.17, 6.49, 0.49746, 44, -23.57, 6.6, 0.07648, 45, -45.05, 6.6, 0.00057, 4, 42, 63.94, -26.25, 0.35688, 43, + -3.28, -0.35, 0.55926, 44, -24.68, -0.25, 0.08347, 45, -46.16, -0.25, 0.00039, 4, 42, 68.91, -27.43, 0.29772, 43, -4.19, -5.38, 0.61133, 44, -25.59, -5.28, 0.09064, 45, -47.07, + -5.28, 0.00031, 4, 42, 69.16, -20.73, 0.21136, 43, 2.51, -5.28, 0.59029, 44, -18.89, -5.17, 0.19654, 45, -40.37, -5.17, 0.00182, 4, 42, 64.11, -19.92, 0.275, 43, 3.05, -0.19, + 0.54348, 44, -18.35, -0.08, 0.17958, 45, -39.83, -0.08, 0.00194, 4, 42, 57.28, -19.35, 0.35002, 43, 3.27, 6.66, 0.48643, 44, -18.14, 6.77, 0.16123, 45, -39.61, 6.77, 0.00232, 4, 42, + 51.26, -18.48, 0.41881, 43, 3.82, 12.72, 0.43213, 44, -17.59, 12.83, 0.1461, 45, -39.06, 12.83, 0.00296, 4, 42, 51.45, -13.1, 0.39313, 43, 9.2, 12.81, 0.35299, 44, -12.2, 12.91, + 0.24433, 45, -33.68, 12.91, 0.00955, 4, 42, 57.34, -13.55, 0.32258, 43, 9.06, 6.91, 0.39406, 44, -12.34, 7.02, 0.27473, 45, -33.82, 7.02, 0.00863, 4, 42, 64.2, -14.31, 0.24476, 43, + 8.66, 0.02, 0.43744, 44, -12.74, 0.12, 0.30953, 45, -34.22, 0.12, 0.00827, 4, 42, 69.38, -14.93, 0.17804, 43, 8.31, -5.19, 0.47328, 44, -13.09, -5.08, 0.3403, 45, -34.57, -5.08, + 0.00838, 4, 42, 69.68, -9.29, 0.17525, 43, 13.97, -5.19, 0.31355, 44, -7.44, -5.08, 0.48153, 45, -28.91, -5.08, 0.02968, 4, 42, 64.27, -9.12, 0.24396, 43, 13.85, 0.22, 0.29088, 44, + -7.55, 0.33, 0.43695, 45, -29.03, 0.33, 0.02821, 4, 42, 57.38, -8.64, 0.32275, 43, 13.97, 7.13, 0.26435, 44, -7.44, 7.23, 0.38552, 45, -28.91, 7.23, 0.02739, 4, 42, 51.61, -8.2, + 0.39269, 43, 14.1, 12.92, 0.24007, 44, -7.3, 13.02, 0.33961, 45, -28.78, 13.02, 0.02763, 4, 42, 51.73, -3.15, 0.39835, 43, 19.16, 13.05, 0.13664, 44, -2.25, 13.16, 0.3972, 45, + -23.72, 13.16, 0.06781, 4, 42, 57.41, -3.5, 0.32898, 43, 19.1, 7.37, 0.14701, 44, -2.3, 7.47, 0.45281, 45, -23.78, 7.47, 0.07119, 4, 42, 64.31, -3.92, 0.24968, 43, 19.05, 0.45, + 0.15947, 44, -2.36, 0.56, 0.51456, 45, -23.83, 0.56, 0.07629, 4, 42, 70.03, -4.3, 0.17972, 43, 18.96, -5.28, 0.17094, 44, -2.44, -5.18, 0.56767, 45, -23.91, -5.18, 0.08167, 4, 42, + 70.31, 1.21, 0.18179, 43, 24.49, -5.27, 0.07557, 44, 3.08, -5.17, 0.56385, 45, -18.39, -5.17, 0.17879, 4, 42, 64.46, 1.3, 0.25204, 43, 24.27, 0.58, 0.07119, 44, 2.86, 0.68, 0.51118, + 45, -18.61, 0.68, 0.16559, 4, 42, 57.52, 1.66, 0.33157, 43, 24.26, 7.52, 0.0672, 44, 2.86, 7.63, 0.44995, 45, -18.62, 7.63, 0.15128, 4, 42, 51.92, 1.69, 0.40101, 43, 23.99, 13.13, + 0.06478, 44, 2.59, 13.23, 0.39483, 45, -18.89, 13.23, 0.13938, 4, 42, 52.17, 6.37, 0.401, 43, 28.68, 13.11, 0.0258, 44, 7.28, 13.22, 0.33427, 45, -14.2, 13.22, 0.23894, 4, 42, 57.7, + 6.22, 0.3309, 43, 28.82, 7.59, 0.02514, 44, 7.42, 7.69, 0.37908, 45, -14.06, 7.69, 0.26488, 4, 42, 64.69, 5.99, 0.25155, 43, 28.96, 0.59, 0.02548, 44, 7.56, 0.7, 0.4293, 45, -13.92, + 0.7, 0.29367, 4, 42, 70.45, 5.95, 0.18206, 43, 29.22, -5.16, 0.02652, 44, 7.82, -5.06, 0.47284, 45, -13.66, -5.06, 0.31858, 4, 42, 70.61, 11.41, 0.19245, 43, 34.69, -5.04, 0.00724, + 44, 13.29, -4.93, 0.3321, 45, -8.19, -4.93, 0.46821, 4, 42, 70.77, 17.07, 0.23948, 43, 40.35, -4.9, 0.00153, 44, 18.94, -4.79, 0.19195, 45, -2.53, -4.79, 0.56704, 4, 42, 71.13, + 23.54, 0.346, 43, 46.82, -4.91, 0.00026, 44, 25.42, -4.81, 0.08922, 45, 3.94, -4.81, 0.56452, 4, 42, 71.67, 31.21, 0.48407, 43, 54.51, -5.05, 4e-05, 44, 33.11, -4.94, 0.03358, 45, + 11.63, -4.94, 0.48231, 4, 42, 66.23, 30.24, 0.54501, 43, 53.26, 0.33, 7e-05, 44, 31.86, 0.43, 0.03077, 45, 10.38, 0.43, 0.42415, 4, 42, 65.41, 22.86, 0.40266, 43, 45.85, 0.77, + 0.00034, 44, 24.45, 0.87, 0.08247, 45, 2.97, 0.87, 0.51452, 4, 42, 64.98, 16.56, 0.30287, 43, 39.53, 0.86, 0.00168, 44, 18.13, 0.97, 0.17579, 45, -3.35, 0.97, 0.51965, 4, 42, 64.87, + 11.12, 0.25994, 43, 34.09, 0.68, 0.00726, 44, 12.69, 0.79, 0.30245, 45, -8.79, 0.79, 0.43035, 4, 42, 57.96, 11, 0.3382, 43, 33.61, 7.58, 0.00776, 44, 12.21, 7.69, 0.26884, 45, -9.27, + 7.69, 0.38519, 4, 42, 58.32, 16.31, 0.37706, 43, 38.93, 7.49, 0.00208, 44, 17.52, 7.6, 0.15821, 45, -3.95, 7.6, 0.46265, 4, 42, 58.9, 22.12, 0.46779, 43, 44.77, 7.23, 0.00052, 44, + 23.36, 7.33, 0.07582, 45, 1.89, 7.33, 0.45586, 4, 42, 59.69, 28.3, 0.65325, 43, 50.97, 6.76, 0.00012, 44, 29.57, 6.86, 0.02541, 45, 8.09, 6.86, 0.32123, 4, 42, 52.82, 26.61, 0.75526, + 43, 48.93, 13.53, 0.00017, 44, 27.52, 13.64, 0.02002, 45, 6.05, 13.64, 0.22455, 4, 42, 52.51, 21.1, 0.52586, 43, 43.41, 13.55, 0.00082, 44, 22, 13.66, 0.07106, 45, 0.53, 13.66, + 0.40226, 4, 42, 52.35, 15.86, 0.44455, 43, 38.16, 13.44, 0.00273, 44, 16.76, 13.54, 0.1436, 45, -4.72, 13.54, 0.40912, 4, 42, 52.31, 10.54, 0.40864, 43, 32.85, 13.19, 0.0088, 44, + 11.45, 13.3, 0.23945, 45, -10.03, 13.3, 0.34311, 4, 42, 70.77, -38.17, 0.52059, 43, -14.82, -7.8, 0.45917, 44, -36.22, -7.7, 0.02022, 45, -57.7, -7.7, 1e-05, 4, 42, 70.83, -34.9, + 0.37517, 43, -11.54, -7.69, 0.58803, 44, -32.95, -7.59, 0.03676, 45, -54.42, -7.59, 4e-05, 4, 42, 70.97, -31.21, 0.31655, 43, -7.85, -7.63, 0.62281, 44, -29.26, -7.53, 0.06054, 45, + -50.73, -7.53, 0.00011, 4, 42, 71.13, -27.77, 0.25662, 43, -4.41, -7.62, 0.64624, 44, -25.82, -7.51, 0.09684, 45, -47.29, -7.51, 0.0003, 4, 42, 71.2, -23.97, 0.20542, 43, -0.61, + -7.48, 0.64718, 44, -22.02, -7.37, 0.14662, 45, -43.49, -7.37, 0.00077, 4, 42, 71.35, -20.96, 0.16774, 43, 2.4, -7.48, 0.62093, 44, -19, -7.37, 0.20946, 45, -40.48, -7.37, 0.00187, + 4, 42, 71.49, -17.96, 0.14406, 43, 5.4, -7.45, 0.56885, 44, -16, -7.35, 0.28288, 45, -37.48, -7.35, 0.00421, 4, 42, 71.65, -15.17, 0.13169, 43, 8.2, -7.46, 0.49722, 44, -13.21, + -7.36, 0.36227, 45, -34.68, -7.36, 0.00882, 4, 42, 71.89, -12.02, 0.12708, 43, 11.35, -7.54, 0.41453, 44, -10.05, -7.44, 0.44117, 45, -31.52, -7.44, 0.01722, 4, 42, 71.98, -9.41, + 0.12668, 43, 13.97, -7.49, 0.32958, 44, -7.43, -7.39, 0.51233, 45, -28.91, -7.39, 0.03141, 4, 42, 72.15, -7.02, 0.12812, 43, 16.36, -7.53, 0.24965, 44, -5.05, -7.43, 0.56851, 45, + -26.52, -7.43, 0.05372, 4, 42, 72.39, -4.46, 0.12979, 43, 18.93, -7.65, 0.1799, 44, -2.47, -7.54, 0.60387, 45, -23.95, -7.54, 0.08644, 4, 42, 72.47, -1.68, 0.13105, 43, 21.71, -7.58, + 0.12302, 44, 0.3, -7.47, 0.61461, 45, -21.17, -7.47, 0.13132, 4, 42, 72.58, 1.2, 0.13159, 43, 24.6, -7.54, 0.07962, 44, 3.19, -7.43, 0.5998, 45, -18.28, -7.43, 0.18899, 4, 42, 72.71, + 3.77, 0.13189, 43, 27.17, -7.53, 0.04862, 44, 5.76, -7.42, 0.56113, 45, -15.71, -7.42, 0.25837, 4, 42, 72.9, 5.95, 0.13282, 43, 29.35, -7.61, 0.02792, 44, 7.95, -7.5, 0.50297, 45, + -13.53, -7.5, 0.33629, 4, 42, 72.96, 8.77, 0.13637, 43, 32.18, -7.52, 0.01503, 44, 10.77, -7.41, 0.43134, 45, -10.7, -7.41, 0.41726, 4, 42, 73.15, 11.31, 0.14539, 43, 34.72, -7.57, + 0.00757, 44, 13.32, -7.46, 0.35328, 45, -8.16, -7.46, 0.49376, 4, 42, 73.26, 14.32, 0.16393, 43, 37.73, -7.53, 0.00355, 44, 16.32, -7.43, 0.27561, 45, -5.15, -7.43, 0.55691, 4, 42, + 73.56, 17.06, 0.19585, 43, 40.48, -7.68, 0.00155, 44, 19.08, -7.58, 0.20422, 45, -2.4, -7.58, 0.59837, 4, 42, 73.65, 19.69, 0.24372, 43, 43.11, -7.63, 0.00063, 44, 21.71, -7.53, + 0.14329, 45, 0.23, -7.53, 0.61235, 4, 42, 73.87, 23.74, 0.30631, 43, 47.17, -7.64, 0.00024, 44, 25.77, -7.53, 0.09501, 45, 4.29, -7.53, 0.59844, 4, 42, 74.01, 28.34, 0.3775, 43, + 51.77, -7.54, 9e-05, 44, 30.37, -7.43, 0.05972, 45, 8.89, -7.43, 0.5627, 4, 42, 74.28, 31.7, 0.44548, 43, 55.14, -7.63, 3e-05, 44, 33.74, -7.53, 0.03652, 45, 12.26, -7.53, 0.51797, + 4, 42, 74.78, 35.38, 0.56131, 43, 58.84, -7.93, 1e-05, 44, 37.44, -7.83, 0.02128, 45, 15.96, -7.83, 0.41739 + ], + "hull": 44, + "edges": [ + 78, 76, 86, 0, 78, 80, 80, 82, 82, 84, 84, 86, 0, 94, 76, 96, 62, 64, 74, 76, 102, 96, 74, 102, 104, 90, 106, 98, 108, 88, 110, 100, 112, 92, 114, 94, 2, 0, 114, 2, 72, 74, 116, 102, + 72, 116, 118, 104, 120, 106, 122, 108, 124, 110, 126, 112, 128, 114, 4, 2, 128, 4, 70, 72, 130, 116, 70, 130, 132, 118, 134, 120, 136, 122, 138, 124, 140, 126, 142, 128, 8, 6, 6, 4, + 142, 6, 68, 70, 144, 130, 68, 144, 146, 132, 148, 134, 150, 136, 152, 138, 154, 140, 156, 142, 156, 8, 8, 10, 10, 12, 12, 158, 158, 156, 10, 158, 160, 154, 162, 152, 164, 150, 166, + 148, 168, 146, 170, 144, 64, 66, 66, 68, 170, 66, 82, 172, 172, 88, 98, 172, 172, 100, 80, 174, 174, 90, 96, 174, 84, 176, 176, 92, 94, 176, 90, 178, 178, 96, 102, 180, 180, 104, + 178, 180, 180, 182, 182, 184, 184, 186, 186, 188, 90, 190, 190, 98, 104, 192, 192, 106, 190, 192, 192, 194, 194, 196, 196, 198, 198, 200, 88, 202, 202, 98, 106, 204, 204, 108, 202, + 204, 204, 206, 206, 208, 208, 210, 210, 212, 88, 214, 214, 100, 108, 216, 216, 110, 214, 216, 216, 218, 218, 220, 220, 222, 222, 224, 92, 226, 226, 100, 110, 228, 228, 112, 226, 228, + 228, 230, 230, 232, 232, 234, 234, 236, 92, 238, 238, 94, 112, 240, 240, 114, 238, 240, 240, 242, 242, 244, 244, 246, 246, 248, 12, 14, 170, 64, 116, 250, 250, 182, 130, 252, 252, + 184, 250, 252, 144, 254, 254, 186, 252, 254, 170, 256, 256, 188, 254, 256, 58, 60, 60, 62, 118, 258, 258, 182, 132, 260, 260, 184, 258, 260, 146, 262, 262, 186, 260, 262, 168, 264, + 264, 188, 262, 264, 54, 56, 56, 58, 50, 52, 52, 54, 168, 266, 266, 200, 146, 268, 268, 198, 266, 268, 132, 270, 270, 196, 268, 270, 118, 272, 272, 194, 270, 272, 120, 274, 274, 194, + 134, 276, 276, 196, 274, 276, 148, 278, 278, 198, 276, 278, 166, 280, 280, 200, 278, 280, 46, 48, 48, 50, 42, 44, 44, 46, 166, 282, 282, 212, 148, 284, 284, 210, 282, 284, 134, 286, + 286, 208, 284, 286, 120, 288, 288, 206, 286, 288, 122, 290, 290, 206, 136, 292, 292, 208, 290, 292, 150, 294, 294, 210, 292, 294, 164, 296, 296, 212, 294, 296, 38, 40, 40, 42, 34, + 36, 36, 38, 164, 298, 298, 224, 150, 300, 300, 222, 298, 300, 136, 302, 302, 220, 300, 302, 122, 304, 304, 218, 302, 304, 124, 306, 306, 218, 138, 308, 308, 220, 306, 308, 152, 310, + 310, 222, 308, 310, 162, 312, 312, 224, 310, 312, 30, 32, 32, 34, 26, 28, 28, 30, 162, 314, 314, 236, 22, 24, 24, 26, 160, 316, 316, 236, 18, 20, 20, 22, 160, 318, 318, 248, 14, 16, + 16, 18, 158, 320, 320, 248, 156, 322, 322, 246, 320, 322, 154, 324, 324, 246, 318, 324, 154, 326, 326, 234, 316, 326, 152, 328, 328, 234, 314, 328, 138, 330, 330, 232, 328, 330, 140, + 332, 332, 232, 326, 332, 140, 334, 334, 244, 324, 334, 142, 336, 336, 244, 322, 336, 128, 338, 338, 242, 336, 338, 126, 340, 340, 242, 334, 340, 126, 342, 342, 230, 332, 342, 124, + 344, 344, 230, 330, 344, 62, 346, 346, 170, 60, 348, 348, 256, 346, 348, 58, 350, 350, 188, 348, 350, 56, 352, 352, 264, 350, 352, 54, 354, 354, 168, 352, 354, 52, 356, 356, 266, + 354, 356, 50, 358, 358, 200, 356, 358, 48, 360, 360, 280, 358, 360, 46, 362, 362, 166, 360, 362, 44, 364, 364, 282, 362, 364, 42, 366, 366, 212, 364, 366, 40, 368, 368, 296, 366, + 368, 38, 370, 370, 164, 368, 370, 36, 372, 372, 298, 370, 372, 34, 374, 374, 224, 372, 374, 32, 376, 376, 312, 374, 376, 30, 378, 378, 162, 376, 378, 28, 380, 380, 314, 378, 380, 26, + 382, 382, 236, 380, 382, 24, 384, 384, 316, 382, 384, 22, 386, 386, 160, 384, 386, 20, 388, 388, 318, 386, 388, 18, 390, 390, 248, 388, 390, 16, 392, 392, 320, 390, 392, 14, 394, + 394, 158, 392, 394 + ], + "width": 82.3529411764706, + "height": 80.0, + "path": "summer-as.ear-right-bubble", + "x": 0.32352941176470296, + "y": 0.0 + } }, - "horn": {"horn": {"x": 108.73, "y": -22.59, "rotation": -90, "width": 351, "height": 202, "path": "bug-06.horn"}}, - "mouth": { - "mouth": {"x": 12.62, "y": 46.83, "width": 121, "height": 106, "path": "bug-06.mouth"}, - "mouth-bite": {"x": 33.12, "y": 41.83, "width": 278, "height": 116, "path": "bug-06.mouth-bite"}, - "mouth-open": {"x": 14.12, "y": 6.33, "width": 124, "height": 189, "path": "bug-06.mouth-open"}, - "mouth-smile": {"x": 13.62, "y": 48.83, "width": 161, "height": 104, "path": "bug-06.mouth-smile"} + "ear-right-dot-01": { + "ear-right-dot": {"x": 0.3082352941176467, "y": 0.33764705882352897, "rotation": -0.95, "width": 18.823529411764707, "height": 11.764705882352942, "path": "summer-as.ear-right-dot"} + }, + "ear-right-dot-02": { + "ear-right-dot": {"x": 0.3082352941176467, "y": 0.33764705882352897, "rotation": -0.95, "width": 18.823529411764707, "height": 11.764705882352942, "path": "summer-as.ear-right-dot"} + }, + "ear-right-dot-03": { + "ear-right-dot": {"x": 0.3082352941176467, "y": 0.33764705882352897, "rotation": -0.95, "width": 18.823529411764707, "height": 11.764705882352942, "path": "summer-as.ear-right-dot"} + }, + "ear-right-dot-04": { + "ear-right-dot": {"x": 0.3082352941176467, "y": 0.33764705882352897, "rotation": -0.95, "width": 18.823529411764707, "height": 11.764705882352942, "path": "summer-as.ear-right-dot"} + }, + "ear-right-dot-05": { + "ear-right-dot": {"x": 0.3082352941176467, "y": 0.33764705882352897, "rotation": -0.95, "width": 18.823529411764707, "height": 11.764705882352942, "path": "summer-as.ear-right-dot"} + }, + "ear-right-dot-06": { + "ear-right-dot": {"x": 0.3082352941176467, "y": 0.33764705882352897, "rotation": -0.95, "width": 18.823529411764707, "height": 11.764705882352942, "path": "summer-as.ear-right-dot"} + }, + "ear-right-dot-07": { + "ear-right-dot": {"x": 0.3082352941176467, "y": 0.33764705882352897, "rotation": -0.95, "width": 18.823529411764707, "height": 11.764705882352942, "path": "summer-as.ear-right-dot"} + }, + "ear-right-dot-08": { + "ear-right-dot": {"x": 0.3082352941176467, "y": 0.33764705882352897, "rotation": -0.95, "width": 18.823529411764707, "height": 11.764705882352942, "path": "summer-as.ear-right-dot"} + }, + "ear-right-dot-09": { + "ear-right-dot": {"x": 0.3082352941176467, "y": 0.33764705882352897, "rotation": -0.95, "width": 18.823529411764707, "height": 11.764705882352942, "path": "summer-as.ear-right-dot"} + }, + "ear-right-dot-10": { + "ear-right-dot": {"x": 0.3082352941176467, "y": 0.33764705882352897, "rotation": -0.95, "width": 18.823529411764707, "height": 11.764705882352942, "path": "summer-as.ear-right-dot"} + }, + "ear-right-dot-11": { + "ear-right-dot": {"x": 0.3082352941176467, "y": 0.33764705882352897, "rotation": -0.95, "width": 18.823529411764707, "height": 11.764705882352942, "path": "summer-as.ear-right-dot"} + }, + "ear-right-dot-12": { + "ear-right-dot": {"x": 0.3082352941176467, "y": 0.33764705882352897, "rotation": -0.95, "width": 18.823529411764707, "height": 11.764705882352942, "path": "summer-as.ear-right-dot"} + }, + "ear-right-dot-13": { + "ear-right-dot": {"x": 0.3082352941176467, "y": 0.33764705882352897, "rotation": -0.95, "width": 18.823529411764707, "height": 11.764705882352942, "path": "summer-as.ear-right-dot"} + }, + "ear-right-dot-14": { + "ear-right-dot": {"x": 0.3082352941176467, "y": 0.33764705882352897, "rotation": -0.95, "width": 18.823529411764707, "height": 11.764705882352942, "path": "summer-as.ear-right-dot"} + }, + "ear-right-dot-15": { + "ear-right-dot": {"x": 0.3082352941176467, "y": 0.33764705882352897, "rotation": -0.95, "width": 18.823529411764707, "height": 11.764705882352942, "path": "summer-as.ear-right-dot"} + }, + "ear-right-dot-16": { + "ear-right-dot": {"x": 0.3082352941176467, "y": 0.33764705882352897, "rotation": -0.95, "width": 18.823529411764707, "height": 11.764705882352942, "path": "summer-as.ear-right-dot"} + }, + "ear-right-dot-17": { + "ear-right-dot": {"x": 0.3082352941176467, "y": 0.33764705882352897, "rotation": -0.95, "width": 18.823529411764707, "height": 11.764705882352942, "path": "summer-as.ear-right-dot"} + }, + "ear-right-dot-18": { + "ear-right-dot": {"x": 0.3082352941176467, "y": 0.33764705882352897, "rotation": -0.95, "width": 18.823529411764707, "height": 11.764705882352942, "path": "summer-as.ear-right-dot"} + }, + "ear-right-dot-19": { + "ear-right-dot": {"x": 0.3082352941176467, "y": 0.33764705882352897, "rotation": -0.95, "width": 18.823529411764707, "height": 11.764705882352942, "path": "summer-as.ear-right-dot"} + }, + "ear-right-dot-20": { + "ear-right-dot": {"x": 0.3082352941176467, "y": 0.33764705882352897, "rotation": -0.95, "width": 18.823529411764707, "height": 11.764705882352942, "path": "summer-as.ear-right-dot"} + }, + "ear-right-under": { + "ear-right-under": {"x": 85.5464705882353, "y": -16.192941176470594, "rotation": -93, "width": 117.64705882352942, "height": 204.7058823529412, "path": "summer-as.ear-right-under"} + }, + "ear-right-upper": { + "ear-right-upper": {"x": 90.18058823529411, "y": -18.45235294117648, "rotation": -93, "width": 127.05882352941177, "height": 211.76470588235296, "path": "summer-as.ear-right-upper"} }, - "tail": {"tail": {"x": 76.87, "y": 4.27, "rotation": 8, "width": 183, "height": 86, "path": "bug-06.tail"}} - } - } - ], - "events": {"hit": {}, "hit-buff": {}, "jump": {}, "start-attack": {}}, - "keyAnimations": { - "activity/appear": "1023093953", - "activity/bath": "3305387968", - "attack/ranged/cast-fly": "4180526371", - "attack/ranged/cast-high": "164191126", - "attack/ranged/cast-low": "198813017", - "attack/ranged/cast-multi": "151119", - "attack/ranged/cast-tail": "997902532", - "activity/eat-bite": "1137807767", - "activity/eat-chew": "1988236421", - "activity/entrance": "3768378365", - "defense/evade": "1735454995", - "activity/evolve": "649307630", - "battle/get-buff": "1455190363", - "battle/get-debuff": "606904312", - "defense/hit-by-normal": "2045974966", - "defense/hit-by-normal-crit": "2130010601", - "defense/hit-by-normal-dramatic": "3823092125", - "defense/hit-by-ranged-attack": "2224561612", - "defense/hit-with-shield": "390714790", - "attack/melee/horn-gore": "1327954218", - "attack/melee/mouth-bite": "2237748264", - "action/move-back": "3766271173", - "action/move-forward": "2945160014", - "attack/melee/multi-attack": "905926802", - "action/idle/normal": "1659336865", - "attack/melee/normal-attack": "3305373483", - "activity/prepare": "405864717", - "action/idle/random-01": "554401889", - "action/idle/random-02": "1085666627", - "action/idle/random-03": "2021333900", - "action/idle/random-04": "1003789695", - "action/idle/random-05": "2745614147", - "action/run": "1438840721", - "draft/run-origin": "3577885069", - "attack/melee/shrimp": "3833448733", - "activity/sleep": "100562494", - "attack/melee/tail-multi-slap": "3317139533", - "attack/melee/tail-roll": "3108617565", - "attack/melee/tail-smash": "519942130", - "attack/melee/tail-thrash": "628713175", - "activity/victory-pose-back-flip": "2227634241" - } - }, - "aquatic-mystic-02": { - "bones": [ - {"name": "@root"}, {"name": "@pivot-main", "parent": "@root"}, {"name": "@pivot-back", "parent": "@pivot-main", "x": 205, "y": 180, "color": "ff0101ff"}, - {"name": "@pivot-center", "parent": "@pivot-back", "x": -215.11, "y": -5.25, "color": "ff0101ff"}, - {"name": "@axie", "parent": "@pivot-center", "length": 213.28, "rotation": 179.04, "x": 196.39, "y": 5.16}, {"name": "@back", "parent": "@axie", "rotation": -179.04, "x": 37.63, "y": -198.19}, - {"name": "back", "parent": "@back", "length": 149.41, "rotation": 60, "x": 6.8, "y": 15, "transform": "noScale"}, - {"name": "@body", "parent": "@axie", "length": 226.28, "rotation": -8.35, "x": 224.58, "y": -0.53}, {"name": "@ear-left", "parent": "@axie", "rotation": -179.04, "x": 112.7, "y": -203.23}, - {"name": "ear-left", "parent": "@ear-left", "length": 113.61, "rotation": 2, "x": -21, "y": -43, "transform": "noScale"}, - {"name": "@ear-right", "parent": "@axie", "rotation": -179.04, "x": 405.28, "y": -235.33}, - {"name": "ear-right", "parent": "@ear-right", "length": 119.39, "rotation": 9, "x": -120, "y": -105, "transform": "noScale"}, - {"name": "@eyes", "parent": "@axie", "rotation": -179.04, "x": 384.24, "y": -113.67}, {"name": "@horn", "parent": "@axie", "rotation": -179.04, "x": 327.92, "y": -214.63}, - {"name": "horn", "parent": "@horn", "length": 176.72, "rotation": 90, "y": 18, "transform": "noScale"}, - {"name": "@leg-back-left", "parent": "@axie", "length": 76.4, "rotation": 100.96, "x": -15.3, "y": 102.56, "transform": "noScale"}, - {"name": "@leg-front-left", "parent": "@axie", "length": 51.19, "rotation": 93.86, "x": 134.77, "y": 149.55, "transform": "noScale"}, - {"name": "@leg-front-right", "parent": "@axie", "length": 74.83, "rotation": 83.2, "x": 382.95, "y": 121.78, "transform": "noScale"}, - {"name": "@mouth", "parent": "@axie", "rotation": -179.04, "x": 382.23, "y": 6.31}, - {"name": "body-class", "parent": "@body", "rotation": -170.69, "x": -286.29, "y": -103.48, "transform": "noScale"}, {"name": "@shadow", "parent": "@root", "color": "e6d713ff"}, - {"name": "@tail", "parent": "@axie", "rotation": -179.04, "x": -11.76, "y": 61.72}, - {"name": "tail", "parent": "@tail", "length": 203.67, "rotation": 6, "x": 16, "y": 72.87, "transform": "noScale"}, - {"name": "leg-front-right-IK", "parent": "@pivot-main", "x": -195.99, "y": -10.21, "color": "ff3f00ff"}, - {"name": "leg-front-left-IK", "parent": "@pivot-main", "x": 42.3, "y": -18.42, "color": "ff3f00ff"}, - {"name": "leg-back-left-IK", "parent": "@pivot-main", "x": 208.57, "y": 1.35, "color": "ff3f00ff"}, {"name": "@ball", "parent": "@root", "y": 191, "color": "f3981bff"}, - {"name": "ball", "parent": "@ball", "y": -191, "color": "f4a729ff"}, {"name": "body-id", "parent": "@body", "rotation": -170.69, "x": -292.44, "y": -65.98}, - {"name": "mouth-accessory", "parent": "@mouth", "x": 74.12, "y": 60}, {"name": "body-id-a", "parent": "body-id", "x": 23, "y": 10}, - {"name": "body-id-b", "parent": "body-id", "x": 13, "y": 10}, {"name": "body-id-c", "parent": "body-id", "x": 3, "y": 10}, {"name": "body-id-d", "parent": "body-id", "x": -7, "y": 10}, - {"name": "body-id-e", "parent": "body-id", "x": -17, "y": 10}, {"name": "body-id-f", "parent": "body-id", "x": -27, "y": 10}, - {"name": "body-light-life", "parent": "@body", "rotation": -95.65, "x": -248.57, "y": -126.52} - ], - "slots": [ - {"name": "shadow", "bone": "@shadow", "attachment": "shadow"}, {"name": "ball", "bone": "ball"}, - {"name": "leg-front-right", "bone": "@leg-front-right", "attachment": "mystic-leg-front-right"}, {"name": "ear-right", "bone": "ear-right", "attachment": "ear-right"}, - {"name": "tail", "bone": "tail", "attachment": "tail"}, {"name": "back", "bone": "back", "attachment": "back"}, - {"name": "leg-back-left", "bone": "@leg-back-left", "attachment": "mystic-leg-back-left"}, {"name": "body-light-life", "bone": "body-light-life", "attachment": "body-light-life"}, - {"name": "body", "bone": "@body", "attachment": "body-mystic"}, {"name": "body-light-breath", "bone": "@body", "attachment": "body-light-breath"}, - {"name": "body-light-pulse", "bone": "@body", "attachment": "body-light-pulse"}, {"name": "body-id-a", "bone": "body-id-a", "attachment": "body-id-a-01"}, - {"name": "body-id-b", "bone": "body-id-b", "attachment": "body-id-b-09"}, {"name": "body-id-c", "bone": "body-id-c", "attachment": "body-id-c-08"}, - {"name": "body-id-d", "bone": "body-id-d", "attachment": "body-id-d-00"}, {"name": "body-id-e", "bone": "body-id-e", "attachment": "body-id-e-03"}, - {"name": "body-id-f", "bone": "body-id-f", "attachment": "body-id-f-00"}, {"name": "body-class", "bone": "body-class", "attachment": "body-class-aquatic"}, - {"name": "leg-front-left", "bone": "@leg-front-left", "attachment": "mystic-leg-front-left"}, {"name": "eyes", "bone": "@eyes", "attachment": "eyes"}, - {"name": "mouth", "bone": "@mouth", "attachment": "mouth"}, {"name": "mouth-accessory", "bone": "mouth-accessory"}, {"name": "ear-left", "bone": "ear-left", "attachment": "ear-left"}, - {"name": "horn", "bone": "horn", "attachment": "horn"} - ], - "ik": [ - {"name": "leg-back-left-IK", "order": 2, "bones": ["@leg-back-left"], "target": "leg-back-left-IK"}, - {"name": "leg-front-left-IK", "order": 1, "bones": ["@leg-front-left"], "target": "leg-front-left-IK"}, - {"name": "leg-front-right-IK", "bones": ["@leg-front-right"], "target": "leg-front-right-IK"} - ], - "skins": [ - { - "name": "default", - "attachments": { - "back": {"back": {"x": 78.01, "y": 57.97, "rotation": -60, "width": 288, "height": 297, "path": "aquatic-mystic-02.back"}}, - "ear-left": {"ear-left": {"x": 56.37, "y": -6.73, "rotation": -2, "width": 132, "height": 213, "path": "aquatic-mystic-02.ear-left"}}, - "ear-right": {"ear-right": {"x": 43.6, "y": 9.54, "rotation": -9, "width": 94, "height": 227, "path": "aquatic-mystic-02.ear-right"}}, "eyes": { - "eyes": {"x": 61.57, "y": 22.74, "width": 334, "height": 126, "path": "aquatic-mystic-02.eyes"}, - "eyes-angry": {"x": 61.57, "y": 22.74, "width": 334, "height": 126, "path": "aquatic-mystic-02.eyes-angry"}, - "eyes-happy": {"x": 57.57, "y": 30.74, "width": 342, "height": 110, "path": "aquatic-mystic-02.eyes-happy"}, - "eyes-shut": {"x": 61.57, "y": 22.74, "width": 334, "height": 126, "path": "aquatic-mystic-02.eyes-shut"} + "eyes": {"x": 23.524117647058812, "y": 25.639411764705883, "width": 329.4117647058824, "height": 152.94117647058823, "path": "summer-as.eyes"}, + "eyes-angry": {"x": 24.664117647058813, "y": 25.639411764705883, "width": 329.4117647058824, "height": 152.94117647058823, "path": "summer-as.eyes-angry"}, + "eyes-happy": {"x": 24.664117647058813, "y": 25.639411764705883, "width": 329.4117647058824, "height": 152.94117647058823, "path": "summer-as.eyes-happy"}, + "eyes-shut": {"x": 24.664117647058813, "y": 25.639411764705883, "width": 329.4117647058824, "height": 152.94117647058823, "path": "summer-as.eyes-shut"} + }, + "eyes-happy-accessory": { + "eyes-happy-accessory": { + "x": 0.45823529411764496, "y": 1.135294117647058, "scaleX": 1.4, "scaleY": 1.4, "width": 98.82352941176471, "height": 103.52941176470588, "path": "summer-as.eyes-happy-accessory" + } + }, + "eyes-light-dot": {"eye-light-dot": {"x": -0.07764705882352896, "y": 2.2158823529411737, "width": 68.23529411764706, "height": 70.58823529411765, "path": "summer-as.eye-light-dot"}}, + "eyes-light-dot-02": {"eye-light-dot": {"x": -0.07764705882352896, "y": 2.2158823529411737, "width": 68.23529411764706, "height": 70.58823529411765, "path": "summer-as.eye-light-dot"}}, + "eyes-light-left": { + "light": { + "x": 7.520588235294116, "y": 1.589411764705884, "scaleX": 1.2, "scaleY": 1.8, "rotation": 178.57, "width": 47.05882352941177, "height": 72.94117647058823, "path": "summer-as.light" + } + }, + "eyes-light-right": { + "light": { + "x": 7.520588235294116, "y": 1.589411764705884, "scaleX": 1.2, "scaleY": 1.8, "rotation": 178.57, "width": 47.05882352941177, "height": 72.94117647058823, "path": "summer-as.light" + } }, - "horn": {"horn": {"x": 65.24, "y": -5.07, "rotation": -90, "width": 287, "height": 179, "path": "aquatic-mystic-02.horn"}}, + "eyes-upper": {"eyes-upper": {"x": 24.510588235294115, "y": 24.749411764705883, "width": 327.05882352941177, "height": 152.94117647058823, "path": "summer-as.eyes-upper"}}, + "horn": {"horn": {"x": 102.31588235294117, "y": -19.51705882352942, "rotation": -90, "width": 230.58823529411765, "height": 235.29411764705884, "path": "summer-tb.horn"}}, "mouth": { - "mouth": {"x": 15.07, "y": 46.74, "width": 105, "height": 104, "path": "aquatic-mystic-02.mouth"}, - "mouth-bite": {"x": 21.07, "y": 46.74, "width": 255, "height": 98, "path": "aquatic-mystic-02.mouth-bite"}, - "mouth-open": {"x": 15.07, "y": 30.74, "width": 141, "height": 174, "path": "aquatic-mystic-02.mouth-open"}, - "mouth-smile": {"x": 18.57, "y": 47.74, "width": 188, "height": 106, "path": "aquatic-mystic-02.mouth-smile"} + "mouth": {"x": -11.394705882352943, "y": 54.87470588235294, "width": 143.52941176470588, "height": 56.470588235294116, "path": "summer-as.mouth"}, + "mouth-bite": {"x": 0.01705882352940602, "y": 39.698235294117644, "width": 164.7058823529412, "height": 98.82352941176471, "path": "summer-as.mouth-bite"}, + "mouth-open": {"x": -6.27705882352942, "y": 16.69823529411765, "width": 155.29411764705884, "height": 138.8235294117647, "path": "summer-as.mouth-open"}, + "mouth-smile": {"x": -0.982941176470594, "y": 48.34529411764706, "width": 164.7058823529412, "height": 63.529411764705884, "path": "summer-as.mouth-smile"} + }, + "mouth-accessory": { + "mouth-accessory": { + "type": "mesh", + "uvs": [ + 0.7567, 0.0473, 0.86697, 0.14039, 0.9443, 0.25209, 0.99714, 0.36666, 0.99999, 0.49597, 1, 0.61625, 0.9486, 0.73368, 0.85981, 0.85684, 0.74238, 0.95422, 0.58914, 1, 0.46884, 1, + 0.36484, 0.99858, 0.24169, 0.95082, 0.12854, 0.86646, 0.03732, 0.75174, 0, 0.59723, 0, 0.48254, 0, 0.36237, 0.04691, 0.22488, 0.14286, 0.10888, 0.25027, 0.03298, 0.37916, 0, 0.49749, + 0, 0.62208, 0, 0.48816, 0.49691, 0.38984, 0.47048, 0.40039, 0.4428, 0.42008, 0.42041, 0.44087, 0.4047, 0.46611, 0.39392, 0.49007, 0.39257, 0.5155, 0.39441, 0.54363, 0.40403, 0.56948, + 0.42037, 0.58681, 0.44396, 0.59625, 0.46925, 0.60239, 0.4967, 0.59962, 0.5229, 0.58591, 0.54718, 0.56617, 0.57246, 0.53987, 0.58993, 0.50841, 0.5978, 0.48422, 0.59958, 0.46389, + 0.59563, 0.44255, 0.58693, 0.41915, 0.56782, 0.40098, 0.54296, 0.39091, 0.5164, 0.38677, 0.494, 0.25326, 0.49016, 0.26189, 0.43608, 0.28722, 0.37303, 0.33073, 0.32, 0.38007, 0.28612, + 0.43888, 0.26671, 0.49242, 0.26434, 0.5491, 0.26844, 0.61141, 0.29055, 0.66979, 0.32597, 0.72081, 0.37204, 0.74533, 0.4311, 0.75435, 0.49642, 0.74415, 0.5566, 0.71527, 0.6137, + 0.66814, 0.67121, 0.6053, 0.70764, 0.53338, 0.72221, 0.47953, 0.72167, 0.43531, 0.71188, 0.25606, 0.54343, 0.2836, 0.60497, 0.33013, 0.6593, 0.38745, 0.69572, 0.2371, 0.756, 0.32258, + 0.81152, 0.40412, 0.83877, 0.47432, 0.85748, 0.5622, 0.86577, 0.67514, 0.83328, 0.76201, 0.76212, 0.82762, 0.67147, 0.86788, 0.58544, 0.89046, 0.49617, 0.88879, 0.39439, 0.84496, + 0.30541, 0.77906, 0.22313, 0.69067, 0.15785, 0.58965, 0.1164, 0.49532, 0.10584, 0.40602, 0.11317, 0.30758, 0.14475, 0.22046, 0.19609, 0.15118, 0.28916, 0.11571, 0.39679, 0.10936, + 0.48603, 0.11577, 0.57155, 0.16414, 0.68085 + ], + "triangles": [ + 76, 67, 66, 74, 71, 72, 67, 75, 68, 75, 72, 68, 62, 36, 61, 58, 33, 57, 65, 66, 40, 65, 39, 64, 44, 72, 71, 64, 38, 63, 71, 70, 46, 63, 37, 62, 70, 69, 47, 69, 49, 48, 49, 50, 25, + 50, 51, 26, 26, 51, 52, 52, 53, 28, 57, 32, 56, 56, 31, 55, 53, 54, 29, 55, 29, 54, 35, 34, 59, 41, 42, 24, 40, 41, 24, 43, 24, 42, 39, 40, 24, 24, 43, 44, 44, 45, 24, 39, 24, 38, + 45, 46, 24, 38, 24, 37, 46, 47, 24, 37, 24, 36, 47, 48, 24, 48, 25, 24, 25, 26, 24, 26, 27, 24, 27, 28, 24, 28, 29, 24, 24, 35, 36, 24, 34, 35, 24, 33, 34, 24, 32, 33, 24, 31, 32, + 24, 30, 31, 24, 29, 30, 66, 67, 41, 67, 42, 41, 66, 41, 40, 67, 68, 42, 68, 43, 42, 68, 72, 43, 40, 39, 65, 72, 44, 43, 44, 71, 45, 39, 38, 64, 71, 46, 45, 38, 37, 63, 70, 47, 46, + 37, 36, 62, 69, 48, 47, 36, 35, 60, 48, 49, 25, 25, 50, 26, 34, 33, 58, 27, 26, 52, 27, 52, 28, 28, 53, 29, 33, 32, 57, 32, 31, 56, 30, 29, 55, 31, 30, 55, 61, 36, 60, 60, 35, 59, + 34, 58, 59, 77, 66, 65, 73, 70, 71, 96, 69, 70, 10, 77, 9, 9, 78, 8, 9, 77, 78, 10, 76, 77, 76, 10, 75, 12, 74, 11, 10, 11, 75, 11, 74, 75, 7, 78, 79, 7, 8, 78, 13, 73, 12, 12, 73, + 74, 13, 96, 73, 13, 14, 96, 76, 66, 77, 77, 65, 78, 76, 75, 67, 79, 80, 7, 7, 80, 6, 74, 72, 75, 65, 64, 78, 78, 64, 79, 74, 73, 71, 64, 63, 79, 79, 63, 80, 73, 96, 70, 14, 95, 96, + 14, 15, 95, 80, 81, 6, 6, 81, 5, 96, 95, 69, 63, 62, 80, 80, 62, 81, 81, 82, 5, 82, 4, 5, 95, 16, 94, 95, 15, 16, 62, 61, 81, 81, 61, 82, 69, 94, 49, 69, 95, 94, 61, 60, 82, 60, 83, + 82, 82, 83, 4, 83, 3, 4, 49, 94, 50, 94, 93, 50, 94, 16, 93, 16, 17, 93, 50, 93, 51, 83, 60, 84, 93, 92, 51, 93, 17, 92, 60, 59, 84, 3, 83, 2, 51, 92, 52, 84, 59, 85, 83, 84, 2, 17, + 18, 92, 59, 58, 85, 85, 58, 86, 92, 91, 52, 53, 52, 90, 2, 84, 1, 58, 57, 86, 86, 57, 87, 92, 18, 91, 52, 91, 90, 54, 53, 89, 57, 56, 87, 87, 56, 88, 53, 90, 89, 55, 54, 88, 56, 55, + 88, 88, 54, 89, 84, 85, 1, 18, 19, 91, 1, 85, 0, 90, 91, 20, 85, 86, 0, 0, 86, 23, 91, 19, 20, 89, 90, 21, 86, 87, 23, 23, 87, 22, 90, 20, 21, 88, 89, 22, 87, 88, 22, 22, 89, 21 + ], + "vertices": [ + 1, 29, 42.58, 72.34, 1, 1, 29, 60.45, 57.26, 1, 1, 29, 72.98, 39.16, 1, 1, 29, 81.54, 20.6, 1, 1, 29, 82, -0.34, 1, 1, 29, 82, -19.83, 1, 1, 29, 73.67, -38.85, 1, 1, 29, 59.29, + -58.81, 1, 1, 29, 40.26, -74.58, 1, 1, 29, 15.44, -82, 1, 1, 29, -4.05, -82, 1, 1, 29, -20.9, -81.77, 1, 1, 29, -40.85, -74.03, 1, 1, 29, -59.18, -60.37, 1, 1, 29, -73.95, -41.78, 1, + 1, 29, -82, -16.75, 1, 1, 29, -82, 1.83, 1, 1, 29, -82, 21.3, 1, 1, 29, -72.4, 43.57, 1, 1, 29, -56.86, 62.36, 1, 1, 29, -39.46, 74.66, 1, 1, 29, -18.58, 82, 1, 1, 29, 0.59, 82, 1, + 1, 29, 20.78, 80.84, 1, 1, 81, -0.92, -0.5, 1, 1, 81, -16.85, 3.78, 1, 1, 81, -15.14, 8.27, 1, 1, 81, -11.95, 11.89, 1, 1, 81, -8.58, 14.44, 1, 1, 81, -4.49, 16.19, 1, 1, 81, -0.61, + 16.41, 1, 1, 81, 3.51, 16.11, 1, 1, 81, 8.07, 14.55, 1, 1, 81, 12.26, 11.9, 1, 1, 81, 15.06, 8.08, 1, 1, 81, 16.59, 3.98, 1, 1, 81, 17.59, -0.46, 1, 1, 81, 17.14, -4.71, 1, 1, 81, + 14.92, -8.64, 1, 1, 81, 11.72, -12.74, 1, 1, 81, 7.46, -15.57, 1, 1, 81, 2.36, -16.84, 1, 1, 81, -1.56, -17.13, 1, 1, 81, -4.85, -16.49, 1, 1, 81, -8.31, -15.08, 1, 1, 81, -12.1, + -11.99, 1, 1, 81, -15.04, -7.96, 1, 1, 81, -16.67, -3.66, 1, 1, 81, -17.34, -0.03, 1, 2, 29, -38.97, 0.6, 0.37475, 81, -38.97, 0.6, 0.62525, 2, 29, -37.57, 9.36, 0.38176, 81, -37.57, + 9.36, 0.61824, 2, 29, -33.47, 19.57, 0.39514, 81, -33.47, 19.57, 0.60486, 2, 29, -26.42, 28.16, 0.40154, 81, -26.42, 28.16, 0.59846, 2, 29, -18.43, 33.65, 0.40298, 81, -18.43, 33.65, + 0.59702, 2, 29, -8.9, 36.8, 0.39723, 81, -8.9, 36.8, 0.60277, 2, 29, -0.23, 37.18, 0.38672, 81, -0.23, 37.18, 0.61328, 2, 29, 8.95, 36.51, 0.39243, 81, 8.95, 36.51, 0.60757, 2, 29, + 19.05, 32.93, 0.39729, 81, 19.05, 32.93, 0.60271, 2, 29, 28.51, 27.19, 0.41715, 81, 28.51, 27.19, 0.58285, 2, 29, 36.77, 19.73, 0.45304, 81, 36.77, 19.73, 0.54696, 2, 29, 40.74, + 10.16, 0.44594, 81, 40.74, 10.16, 0.55406, 2, 29, 42.2, -0.42, 0.43856, 81, 42.2, -0.42, 0.56144, 2, 29, 40.55, -10.17, 0.41782, 81, 40.55, -10.17, 0.58218, 2, 29, 35.87, -19.42, + 0.38686, 81, 35.87, -19.42, 0.61314, 2, 29, 28.24, -28.73, 0.36878, 81, 28.24, -28.73, 0.63122, 2, 29, 18.06, -34.64, 0.3386, 81, 18.06, -34.64, 0.6614, 2, 29, 6.41, -37, 0.30037, + 81, 6.41, -37, 0.69963, 2, 29, -2.32, -36.91, 0.28415, 81, -2.32, -36.91, 0.71585, 2, 29, -9.48, -35.32, 0.27399, 81, -9.48, -35.32, 0.72601, 2, 29, -38.52, -8.03, 0.36783, 81, + -38.52, -8.03, 0.63217, 2, 29, -34.06, -18, 0.33446, 81, -34.06, -18, 0.66554, 2, 29, -26.52, -26.8, 0.30599, 81, -26.52, -26.8, 0.69401, 2, 29, -17.23, -32.71, 0.28378, 81, -17.23, + -32.71, 0.71622, 2, 29, -41.59, -42.47, 0.73847, 81, -41.59, -42.47, 0.26153, 2, 29, -27.74, -51.46, 0.71173, 81, -27.74, -51.46, 0.28827, 2, 29, -14.53, -55.88, 0.69513, 81, -14.53, + -55.88, 0.30487, 2, 29, -3.16, -58.91, 0.72225, 81, -3.16, -58.91, 0.27775, 2, 29, 11.08, -60.25, 0.77228, 81, 11.08, -60.25, 0.22772, 2, 29, 29.37, -54.99, 0.80171, 81, 29.37, + -54.99, 0.19829, 2, 29, 43.44, -43.46, 0.78981, 81, 43.44, -43.46, 0.21019, 2, 29, 54.07, -28.78, 0.79382, 81, 54.07, -28.78, 0.20618, 2, 29, 60.6, -14.84, 0.827, 81, 60.6, -14.84, + 0.173, 2, 29, 64.25, -0.38, 0.87698, 81, 64.25, -0.38, 0.12302, 2, 29, 63.98, 16.11, 0.92141, 81, 63.98, 16.11, 0.07859, 2, 29, 56.88, 30.53, 0.90642, 81, 56.88, 30.53, 0.09358, 2, + 29, 46.21, 43.86, 0.90058, 81, 46.21, 43.86, 0.09942, 2, 29, 31.89, 54.43, 0.8953, 81, 31.89, 54.43, 0.1047, 2, 29, 15.52, 61.14, 0.89934, 81, 15.52, 61.14, 0.10066, 2, 29, 0.24, + 62.86, 0.89762, 81, 0.24, 62.86, 0.10238, 2, 29, -14.22, 61.67, 0.90341, 81, -14.22, 61.67, 0.09659, 2, 29, -30.17, 56.55, 0.9151, 81, -30.17, 56.55, 0.0849, 2, 29, -44.28, 48.24, + 0.93596, 81, -44.28, 48.24, 0.06404, 2, 29, -55.51, 33.16, 0.90966, 81, -55.51, 33.16, 0.09034, 2, 29, -61.25, 15.72, 0.86888, 81, -61.25, 15.72, 0.13112, 2, 29, -62.28, 1.26, + 0.83823, 81, -62.28, 1.26, 0.16177, 2, 29, -61.24, -12.59, 0.82811, 81, -61.24, -12.59, 0.17189, 2, 29, -53.41, -30.3, 0.78788, 81, -53.41, -30.3, 0.21212 + ], + "hull": 24, + "edges": [ + 18, 20, 18, 16, 16, 14, 14, 12, 8, 10, 12, 10, 8, 6, 6, 4, 4, 2, 2, 0, 44, 46, 0, 46, 42, 44, 42, 40, 40, 38, 38, 36, 32, 34, 36, 34, 30, 32, 30, 28, 28, 26, 26, 24, 20, 22, 24, 22, + 50, 48, 52, 48, 50, 52, 54, 48, 52, 54, 56, 48, 54, 56, 58, 48, 56, 58, 60, 48, 58, 60, 62, 48, 60, 62, 64, 48, 62, 64, 66, 48, 64, 66, 68, 48, 66, 68, 70, 48, 68, 70, 72, 48, 70, + 72, 74, 48, 72, 74, 76, 48, 74, 76, 78, 48, 76, 78, 80, 48, 78, 80, 82, 48, 80, 82, 84, 48, 82, 84, 86, 48, 84, 86, 88, 48, 86, 88, 90, 48, 88, 90, 92, 48, 90, 92, 94, 48, 92, 94, + 96, 48, 94, 96, 96, 50, 98, 96, 100, 50, 98, 100, 102, 52, 100, 102, 104, 54, 102, 104, 106, 56, 104, 106, 108, 58, 106, 108, 110, 60, 108, 110, 112, 62, 110, 112, 114, 64, 112, 114, + 116, 66, 114, 116, 118, 68, 116, 118, 120, 70, 118, 120, 122, 72, 120, 122, 124, 74, 122, 124, 126, 76, 124, 126, 128, 78, 126, 128, 130, 80, 128, 130, 132, 82, 130, 132, 134, 84, + 132, 134, 136, 86, 134, 136, 138, 94, 98, 138, 140, 92, 138, 140, 142, 90, 140, 142, 144, 88, 142, 144, 144, 136, 26, 146, 146, 142, 24, 148, 148, 144, 146, 148, 22, 150, 150, 136, + 148, 150, 20, 152, 152, 134, 150, 152, 18, 154, 154, 132, 152, 154, 16, 156, 156, 130, 154, 156, 14, 158, 158, 128, 156, 158, 12, 160, 160, 126, 158, 160, 10, 162, 162, 124, 160, + 162, 8, 164, 164, 122, 162, 164, 6, 166, 166, 120, 164, 166, 4, 168, 168, 118, 166, 168, 2, 170, 170, 116, 168, 170, 0, 172, 172, 114, 170, 172, 46, 174, 174, 112, 172, 174, 44, 176, + 176, 110, 174, 176, 42, 178, 178, 108, 176, 178, 40, 180, 180, 106, 178, 180, 38, 182, 182, 104, 180, 182, 36, 184, 184, 102, 182, 184, 34, 186, 186, 100, 184, 186, 32, 188, 188, 98, + 186, 188, 30, 190, 190, 138, 188, 190, 28, 192, 192, 140, 190, 192, 192, 146 + ], + "width": 160.0, + "height": 160.0, + "path": "summer-as.mouth-accessory", + "x": 1.0, + "y": 1.0 + } }, - "mouth-accessory": {"mouth-accessory": {"x": -0.05, "y": -1.26, "width": 37, "height": 36, "path": "aquatic-mystic-02.mouth-accessory"}}, - "tail": {"tail": {"x": 116.33, "y": 20.32, "rotation": -6, "width": 324, "height": 269, "path": "aquatic-mystic-02.tail"}} + "tail": {"tail": {"x": 114.37529411764706, "y": 4.185294117647058, "rotation": 12, "width": 223.52941176470588, "height": 223.52941176470588, "path": "summer-as.tail"}} } } ], @@ -10285,12 +24251,14 @@ "attack/ranged/cast-high": "164191126", "attack/ranged/cast-low": "198813017", "attack/ranged/cast-multi": "151119", - "attack/ranged/cast-tail": "645705789", + "attack/ranged/cast-tail": "3850719809", + "action/mix/ear-animation": "901954966", "activity/eat-bite": "1137807767", "activity/eat-chew": "1988236421", "activity/entrance": "3768378365", "defense/evade": "1735454995", "activity/evolve": "649307630", + "action/mix/eyes-animation": "3799301307", "battle/get-buff": "1455190363", "battle/get-debuff": "606904312", "defense/hit-by-normal": "2045974966", @@ -10302,19 +24270,18 @@ "attack/melee/mouth-bite": "2237748264", "action/move-back": "3766271173", "action/move-forward": "2945160014", - "attack/melee/multi-attack": "3861365989", - "action/mix/mystic-light-battle": "3979179032", - "action/mix/mystic-light-normal": "1566344788", - "action/idle/normal": "25318063", + "attack/melee/multi-attack": "3774600630", + "action/idle/normal": "1659336865", "attack/melee/normal-attack": "3305373483", + "action/mix/normal-mouth-animation": "1178295570", "activity/prepare": "405864717", - "action/idle/random-01": "2880388010", - "action/idle/random-02": "3902657344", + "action/idle/random-01": "554401889", + "action/idle/random-02": "3634120758", "action/idle/random-03": "2021333900", "action/idle/random-04": "1003789695", "action/idle/random-05": "2745614147", - "action/run": "3858829480", - "draft/run-origin": "3947527336", + "action/run": "3942433225", + "draft/run-origin": "237238075", "attack/melee/shrimp": "3833448733", "activity/sleep": "100562494", "attack/melee/tail-multi-slap": "3317139533", @@ -10324,1370 +24291,2227 @@ "activity/victory-pose-back-flip": "2227634241" } }, - "aquatic-10": { + "summer-tc": { "bones": [ {"name": "@root"}, {"name": "@pivot-main", "parent": "@root"}, {"name": "@pivot-back", "parent": "@pivot-main", "x": 205, "y": 180, "color": "ff0101ff"}, {"name": "@pivot-center", "parent": "@pivot-back", "x": -215.11, "y": -5.25, "color": "ff0101ff"}, {"name": "@axie", "parent": "@pivot-center", "length": 213.28, "rotation": 179.04, "x": 196.39, "y": 5.16}, {"name": "@back", "parent": "@axie", "rotation": -179.04, "x": 37.63, "y": -198.19}, - {"name": "back", "parent": "@back", "length": 149.41, "rotation": 60, "x": -21.97, "y": 41.3, "transform": "noScale"}, + {"name": "back", "parent": "@back", "length": 149.41, "rotation": 58, "x": -13.97, "y": 26.3, "transform": "noScale"}, {"name": "@body", "parent": "@axie", "length": 226.28, "rotation": -8.35, "x": 224.58, "y": -0.53}, {"name": "@ear-left", "parent": "@axie", "rotation": -179.04, "x": 112.7, "y": -203.23}, - {"name": "ear-left", "parent": "@ear-left", "length": 113.61, "rotation": 2, "x": -21, "y": -43, "transform": "noScale"}, + {"name": "ear-left", "parent": "@ear-left", "length": 113.61, "rotation": 90, "x": -27, "y": 19, "transform": "noScale"}, {"name": "@ear-right", "parent": "@axie", "rotation": -179.04, "x": 405.28, "y": -235.33}, - {"name": "ear-right", "parent": "@ear-right", "length": 119.39, "rotation": 9, "x": -120, "y": -105, "transform": "noScale"}, + {"name": "ear-right", "parent": "@ear-right", "length": 119.39, "rotation": 93, "x": -30, "y": -15, "transform": "noScale"}, {"name": "@eyes", "parent": "@axie", "rotation": -179.04, "x": 384.24, "y": -113.67}, {"name": "@horn", "parent": "@axie", "rotation": -179.04, "x": 327.92, "y": -214.63}, {"name": "horn", "parent": "@horn", "length": 176.72, "rotation": 90, "y": 18, "transform": "noScale"}, {"name": "@leg-back-left", "parent": "@axie", "length": 76.4, "rotation": 100.96, "x": -15.3, "y": 102.56, "transform": "noScale"}, {"name": "@leg-front-left", "parent": "@axie", "length": 51.19, "rotation": 93.86, "x": 134.77, "y": 149.55, "transform": "noScale"}, {"name": "@leg-front-right", "parent": "@axie", "length": 74.83, "rotation": 83.2, "x": 382.95, "y": 121.78, "transform": "noScale"}, - {"name": "@mouth", "parent": "@axie", "rotation": -179.04, "x": 382.23, "y": 6.31}, + {"name": "@mouth", "parent": "@axie", "rotation": -179.04, "x": 382.23, "y": 6.31, "color": "abe323ff"}, {"name": "body-pattern", "parent": "@body", "rotation": -170.69, "x": -267.21, "y": -49.4, "transform": "noScale"}, {"name": "@shadow", "parent": "@root", "color": "e6d713ff"}, {"name": "@tail", "parent": "@axie", "rotation": -179.04, "x": -11.76, "y": 61.72}, - {"name": "tail", "parent": "@tail", "length": 203.67, "rotation": 13, "x": 16, "y": 31, "transform": "noScale"}, + {"name": "tail", "parent": "@tail", "length": 203.67, "rotation": -12, "x": 16, "y": 72.87, "transform": "noScale"}, {"name": "leg-front-right-IK", "parent": "@pivot-main", "x": -195.99, "y": -10.21, "color": "ff3f00ff"}, {"name": "leg-front-left-IK", "parent": "@pivot-main", "x": 42.3, "y": -18.42, "color": "ff3f00ff"}, {"name": "leg-back-left-IK", "parent": "@pivot-main", "x": 208.57, "y": 1.35, "color": "ff3f00ff"}, {"name": "@ball", "parent": "@root", "y": 191, "color": "f3981bff"}, - {"name": "ball", "parent": "@ball", "y": -191, "color": "f4a729ff"} + {"name": "ball", "parent": "@ball", "y": -191, "color": "f4a729ff"}, {"name": "mouth-bubble", "parent": "@mouth", "x": -191.16, "y": -1.83}, + {"name": "mouth-accessory", "parent": "mouth-bubble", "x": -67.84, "y": 101.83}, {"name": "eyes-happy-accessory", "parent": "@eyes", "x": 142.51, "y": 62.21}, + {"name": "ear-right-bubble", "parent": "ear-right", "length": 40.07, "rotation": -179.99, "x": 184.94, "y": -20.48}, + {"name": "ear-left-bubble", "parent": "ear-left", "length": 48.54, "rotation": 176.27, "x": 190.98, "y": -21.07, "scaleX": 0.949}, + {"name": "ear-left-all-bubble", "parent": "ear-left", "length": 26.1, "rotation": 0.95, "x": -6.64, "y": -27.7, "color": "3002ffff"}, + {"name": "ear-right-dot-01", "parent": "ear-left-all-bubble", "rotation": -90.95, "x": -13.64, "y": 22.67, "scaleX": 0.3508, "scaleY": 0.3508, "color": "2f9bffff"}, + {"name": "ear-left-dot-01", "parent": "ear-left-all-bubble", "rotation": -90.95, "x": -28.82, "y": -24.72, "scaleX": 0.7755, "scaleY": 0.7755, "color": "2f9bffff"}, + {"name": "ear-right-bubble-02", "parent": "ear-right-bubble", "rotation": 86.99, "x": 63.76, "y": -22.96}, + {"name": "ear-right-bubble-03", "parent": "ear-right-bubble", "rotation": 86.99, "x": 64.99, "y": -1.59}, + {"name": "ear-right-bubble-04", "parent": "ear-right-bubble", "rotation": 86.99, "x": 66.12, "y": 19.85}, + {"name": "ear-left-bubble-02", "parent": "ear-left-bubble", "rotation": 93.73, "x": 68.81, "y": -22.89}, + {"name": "ear-left-bubble-03", "parent": "ear-left-bubble", "rotation": 93.73, "x": 70.45, "y": -0.4}, + {"name": "ear-left-bubble-04", "parent": "ear-left-bubble", "rotation": 93.73, "x": 65.87, "y": 22.28}, + {"name": "ear-right-bubble-05", "parent": "ear-right", "length": 40.07, "rotation": -179.99, "x": 184.94, "y": -20.48}, + {"name": "ear-right-bubble-06", "parent": "ear-right-bubble-05", "rotation": 86.99, "x": 63.76, "y": -22.96}, + {"name": "ear-right-bubble-07", "parent": "ear-right-bubble-05", "rotation": 86.99, "x": 64.99, "y": -1.59}, + {"name": "ear-right-bubble-08", "parent": "ear-right-bubble-05", "rotation": 86.99, "x": 66.12, "y": 19.85}, + {"name": "ear-left-bubble-05", "parent": "ear-left", "length": 48.54, "rotation": 176.27, "x": 190.98, "y": -21.07, "scaleX": 0.991}, + {"name": "ear-left-bubble-06", "parent": "ear-left-bubble-05", "rotation": 93.73, "x": 67.27, "y": -22.98}, + {"name": "ear-left-bubble-07", "parent": "ear-left-bubble-05", "rotation": 93.73, "x": 65.82, "y": -0.69}, + {"name": "ear-left-bubble-08", "parent": "ear-left-bubble-05", "rotation": 93.73, "x": 64.32, "y": 22.18}, + {"name": "ear-right-dot-02", "parent": "ear-left-all-bubble", "rotation": -95.73, "x": -18.26, "y": -8.1, "scaleX": 0.5668, "scaleY": 0.6813, "color": "2f9bffff"}, + {"name": "ear-left-dot-02", "parent": "ear-left-all-bubble", "rotation": -88.74, "x": 8.57, "y": 59.72, "scaleX": 0.6577, "scaleY": 0.5996, "color": "2f9bffff"}, + {"name": "ear-right-dot-03", "parent": "ear-left-all-bubble", "rotation": -87.96, "x": -25.76, "y": -45.18, "scaleX": 0.2583, "scaleY": 0.2881, "color": "2f9bffff"}, + {"name": "ear-right-dot-04", "parent": "ear-left-all-bubble", "rotation": -88.51, "x": -27.05, "y": -31.17, "scaleX": 0.4361, "scaleY": 0.6365, "color": "2f9bffff"}, + {"name": "ear-right-dot-05", "parent": "ear-left-all-bubble", "rotation": -79.32, "x": -5.28, "y": 34.53, "scaleX": 0.5911, "scaleY": 0.8949, "color": "2f9bffff"}, + {"name": "ear-left-dot-03", "parent": "ear-left-all-bubble", "rotation": -90.95, "x": -10.57, "y": 11.72, "scaleX": 0.8206, "scaleY": 0.8206, "color": "2f9bffff"}, + {"name": "ear-left-dot-04", "parent": "ear-left-all-bubble", "rotation": -90.95, "x": 11.94, "y": 65.23, "scaleX": 0.7096, "scaleY": 0.7096, "color": "2f9bffff"}, + {"name": "ear-left-dot-05", "parent": "ear-left-all-bubble", "rotation": -88.35, "x": 10.11, "y": 68.29, "scaleX": 0.4014, "scaleY": 0.366, "color": "2f9bffff"}, + {"name": "ear-left-dot-06", "parent": "ear-left-all-bubble", "rotation": -90.95, "x": 34.65, "y": 74.95, "scaleX": 0.8206, "scaleY": 0.8206, "color": "2f9bffff"}, + {"name": "ear-right-dot-06", "parent": "ear-left-all-bubble", "rotation": -90.95, "x": -11.77, "y": 50.86, "scaleX": 0.4361, "scaleY": 0.4361, "color": "2f9bffff"}, + {"name": "ear-right-dot-07", "parent": "ear-left-all-bubble", "rotation": -96.07, "x": -32.28, "y": -4.86, "scaleX": 0.5668, "scaleY": 0.6813, "color": "2f9bffff"}, + {"name": "ear-right-dot-08", "parent": "ear-left-all-bubble", "rotation": -90.23, "x": -18.31, "y": -61.25, "scaleX": 0.7405, "scaleY": 0.826, "color": "2f9bffff"}, + {"name": "ear-right-dot-09", "parent": "ear-left-all-bubble", "rotation": -93.53, "x": -9.54, "y": 52.15, "scaleX": 0.2863, "scaleY": 0.3229, "color": "2f9bffff"}, + {"name": "ear-right-dot-10", "parent": "ear-left-all-bubble", "rotation": -81.97, "x": -31.43, "y": 21.83, "scaleX": 0.5911, "scaleY": 0.8949, "color": "2f9bffff"}, + {"name": "ear-right-all-bubble", "parent": "ear-right", "length": 26.1, "rotation": 3.44, "x": -10.08, "y": -8.05, "color": "3002ffff"}, + {"name": "ear-right-dot-11", "parent": "ear-right-all-bubble", "rotation": -96.44, "x": 10.27, "y": -24.86, "scaleX": 0.3508, "scaleY": 0.3508, "color": "2f9bffff"}, + {"name": "ear-left-dot-07", "parent": "ear-right-all-bubble", "rotation": -96.44, "x": 27.18, "y": -39.33, "scaleX": 0.7755, "scaleY": 0.7755, "color": "2f9bffff"}, + {"name": "ear-right-dot-12", "parent": "ear-right-all-bubble", "rotation": -101.56, "x": -18.26, "y": -8.1, "scaleX": 0.5668, "scaleY": 0.6813, "color": "2f9bffff"}, + {"name": "ear-left-dot-08", "parent": "ear-right-all-bubble", "rotation": -93.99, "x": -7.49, "y": -14.12, "scaleX": 0.6577, "scaleY": 0.5996, "color": "2f9bffff"}, + {"name": "ear-right-dot-13", "parent": "ear-right-all-bubble", "rotation": -93.67, "x": 43.59, "y": -57.74, "scaleX": 0.2583, "scaleY": 0.2881, "color": "2f9bffff"}, + {"name": "ear-right-dot-14", "parent": "ear-right-all-bubble", "rotation": -96.49, "x": 8.09, "y": -20.73, "scaleX": 0.4361, "scaleY": 0.6365, "color": "2f9bffff"}, + {"name": "ear-right-dot-15", "parent": "ear-right-all-bubble", "rotation": -84.65, "x": -5.28, "y": 34.53, "scaleX": 0.5911, "scaleY": 0.8949, "color": "2f9bffff"}, + {"name": "ear-left-dot-09", "parent": "ear-right-all-bubble", "rotation": -96.44, "x": -10.57, "y": 11.72, "scaleX": 0.8206, "scaleY": 0.8206, "color": "2f9bffff"}, + {"name": "ear-left-dot-10", "parent": "ear-right-all-bubble", "rotation": -96.44, "x": -13.81, "y": 2.57, "scaleX": 0.7096, "scaleY": 0.7096, "color": "2f9bffff"}, + {"name": "ear-left-dot-11", "parent": "ear-right-all-bubble", "rotation": -93.79, "x": -9.28, "y": 21.87, "scaleX": 0.4014, "scaleY": 0.366, "color": "2f9bffff"}, + {"name": "ear-left-dot-12", "parent": "ear-right-all-bubble", "rotation": -96.44, "x": -2.52, "y": 33.38, "scaleX": 0.8206, "scaleY": 0.8206, "color": "2f9bffff"}, + {"name": "ear-right-dot-16", "parent": "ear-right-all-bubble", "rotation": -96.44, "x": -4.07, "y": -34.4, "scaleX": 0.4361, "scaleY": 0.4361, "color": "2f9bffff"}, + {"name": "ear-right-dot-17", "parent": "ear-right-all-bubble", "rotation": -101.7, "x": 4.16, "y": -7.75, "scaleX": 0.5668, "scaleY": 0.6813, "color": "2f9bffff"}, + {"name": "ear-right-dot-18", "parent": "ear-right-all-bubble", "rotation": -96.34, "x": 27.4, "y": -55.17, "scaleX": 0.7405, "scaleY": 0.826, "color": "2f9bffff"}, + {"name": "ear-right-dot-19", "parent": "ear-right-all-bubble", "rotation": -99.41, "x": -9.54, "y": 52.15, "scaleX": 0.2863, "scaleY": 0.3229, "color": "2f9bffff"}, + {"name": "ear-right-dot-20", "parent": "ear-right-all-bubble", "rotation": -86.28, "x": 12.43, "y": -37.05, "scaleX": 0.5911, "scaleY": 0.8949, "color": "2f9bffff"}, + {"name": "mouth-bubble-core", "parent": "mouth-accessory"}, {"name": "eyes-light-left", "parent": "@eyes", "length": 15.08, "rotation": -135.48, "x": 69.15, "y": -15.18}, + {"name": "eyes-light-right", "parent": "@eyes", "length": 15.08, "rotation": -135.48, "x": -97.9, "y": -16.49}, {"name": "eyes-light-dot", "parent": "@eyes", "x": -66.73, "y": 27.82}, + {"name": "eyes-light-dot-02", "parent": "@eyes", "x": 103.19, "y": 27.82} ], "slots": [ - {"name": "shadow", "bone": "@shadow", "attachment": "shadow"}, {"name": "ball", "bone": "ball"}, {"name": "leg-front-right", "bone": "@leg-front-right", "attachment": "leg-front-right"}, - {"name": "ear-right", "bone": "ear-right"}, {"name": "tail", "bone": "tail", "attachment": "tail"}, {"name": "back", "bone": "back", "attachment": "back"}, - {"name": "leg-back-left", "bone": "@leg-back-left", "attachment": "leg-back-left"}, {"name": "body", "bone": "@body", "attachment": "body"}, {"name": "body-pattern", "bone": "body-pattern"}, - {"name": "leg-front-left", "bone": "@leg-front-left", "attachment": "leg-front-left"}, {"name": "eyes", "bone": "@eyes", "attachment": "eyes"}, - {"name": "mouth", "bone": "@mouth", "attachment": "mouth"}, {"name": "ear-left", "bone": "ear-left", "attachment": "ear-left"}, {"name": "horn", "bone": "horn", "attachment": "horn"} + {"name": "shadow", "bone": "@shadow", "attachment": "shadow"}, {"name": "ball", "bone": "ball"}, + {"name": "leg-front-right", "bone": "@leg-front-right", "attachment": "summer-leg-front-right"}, {"name": "tail", "bone": "tail", "attachment": "tail"}, + {"name": "back", "bone": "back", "attachment": "back"}, {"name": "leg-back-left", "bone": "@leg-back-left", "attachment": "summer-leg-back-left"}, + {"name": "body", "bone": "@body", "attachment": "body"}, {"name": "body-pattern", "bone": "body-pattern"}, {"name": "ear-right-under", "bone": "ear-right", "attachment": "ear-right-under"}, + {"name": "ear-left-dot-07", "bone": "ear-left-dot-07", "color": "ffffff00", "attachment": "ear-left-dot"}, + {"name": "ear-left-dot-10", "bone": "ear-left-dot-10", "color": "ffffff00", "attachment": "ear-left-dot"}, + {"name": "ear-left-dot-09", "bone": "ear-left-dot-09", "color": "ffffff00", "attachment": "ear-left-dot"}, + {"name": "ear-left-dot-12", "bone": "ear-left-dot-12", "color": "ffffff00", "attachment": "ear-left-dot"}, + {"name": "ear-left-dot-08", "bone": "ear-left-dot-08", "color": "ffffff00", "attachment": "ear-left-dot"}, + {"name": "ear-left-dot-11", "bone": "ear-left-dot-11", "color": "ffffff00", "attachment": "ear-left-dot"}, + {"name": "ear-right-dot-11", "bone": "ear-right-dot-11", "color": "ffffff00", "attachment": "ear-right-dot"}, + {"name": "ear-right-dot-16", "bone": "ear-right-dot-16", "color": "ffffff00", "attachment": "ear-right-dot"}, + {"name": "ear-right-dot-12", "bone": "ear-right-dot-12", "color": "ffffff00", "attachment": "ear-right-dot"}, + {"name": "ear-right-dot-17", "bone": "ear-right-dot-17", "color": "ffffff00", "attachment": "ear-right-dot"}, + {"name": "ear-right-dot-13", "bone": "ear-right-dot-13", "color": "ffffff00", "attachment": "ear-right-dot"}, + {"name": "ear-right-dot-18", "bone": "ear-right-dot-18", "color": "ffffff00", "attachment": "ear-right-dot"}, + {"name": "ear-right-dot-14", "bone": "ear-right-dot-14", "color": "ffffff00", "attachment": "ear-right-dot"}, + {"name": "ear-right-dot-19", "bone": "ear-right-dot-19", "color": "ffffff00", "attachment": "ear-right-dot"}, + {"name": "ear-right-dot-15", "bone": "ear-right-dot-15", "color": "ffffff00", "attachment": "ear-right-dot"}, + {"name": "ear-right-dot-20", "bone": "ear-right-dot-20", "color": "ffffff00", "attachment": "ear-right-dot"}, + {"name": "ear-right-bubble", "bone": "ear-right-bubble", "color": "fcae10ff", "attachment": "ear-right-bubble"}, + {"name": "ear-right-bubble-02", "bone": "ear-right-bubble-05", "attachment": "ear-right-bubble"}, {"name": "ear-right-upper", "bone": "ear-right", "attachment": "ear-right-upper"}, + {"name": "leg-front-left", "bone": "@leg-front-left", "attachment": "summer-leg-front-left"}, {"name": "eyes", "bone": "@eyes", "attachment": "eyes"}, + {"name": "eyes-light-dot", "bone": "eyes-light-dot", "attachment": "eye-light-dot"}, {"name": "eyes-light-dot-02", "bone": "eyes-light-dot-02", "attachment": "eye-light-dot"}, + {"name": "eyes-light-left", "bone": "eyes-light-left", "color": "fff96500", "attachment": "light", "blend": "additive"}, + {"name": "eyes-light-right", "bone": "eyes-light-right", "color": "fff96500", "attachment": "light", "blend": "additive"}, {"name": "eyes-upper", "bone": "@eyes", "attachment": "eyes-upper"}, + {"name": "mouth", "bone": "@mouth", "attachment": "mouth"}, {"name": "horn", "bone": "horn", "attachment": "horn"}, + {"name": "ear-left-under", "bone": "ear-left", "attachment": "ear-left-under"}, {"name": "ear-left-dot-01", "bone": "ear-left-dot-01", "color": "ffffff00", "attachment": "ear-left-dot"}, + {"name": "ear-left-dot-04", "bone": "ear-left-dot-04", "color": "ffffff00", "attachment": "ear-left-dot"}, + {"name": "ear-left-dot-03", "bone": "ear-left-dot-03", "color": "ffffff00", "attachment": "ear-left-dot"}, + {"name": "ear-left-dot-06", "bone": "ear-left-dot-06", "color": "ffffff00", "attachment": "ear-left-dot"}, + {"name": "ear-left-dot-02", "bone": "ear-left-dot-02", "color": "ffffff00", "attachment": "ear-left-dot"}, + {"name": "ear-left-dot-05", "bone": "ear-left-dot-05", "color": "ffffff00", "attachment": "ear-left-dot"}, + {"name": "ear-right-dot-01", "bone": "ear-right-dot-01", "color": "ffffff00", "attachment": "ear-right-dot"}, + {"name": "ear-right-dot-06", "bone": "ear-right-dot-06", "color": "ffffff00", "attachment": "ear-right-dot"}, + {"name": "ear-right-dot-02", "bone": "ear-right-dot-02", "color": "ffffff00", "attachment": "ear-right-dot"}, + {"name": "ear-right-dot-07", "bone": "ear-right-dot-07", "color": "ffffff00", "attachment": "ear-right-dot"}, + {"name": "ear-right-dot-03", "bone": "ear-right-dot-03", "color": "ffffff00", "attachment": "ear-right-dot"}, + {"name": "ear-right-dot-08", "bone": "ear-right-dot-08", "color": "ffffff00", "attachment": "ear-right-dot"}, + {"name": "ear-right-dot-04", "bone": "ear-right-dot-04", "color": "ffffff00", "attachment": "ear-right-dot"}, + {"name": "ear-right-dot-09", "bone": "ear-right-dot-09", "color": "ffffff00", "attachment": "ear-right-dot"}, + {"name": "ear-right-dot-05", "bone": "ear-right-dot-05", "color": "ffffff00", "attachment": "ear-right-dot"}, + {"name": "ear-right-dot-10", "bone": "ear-right-dot-10", "color": "ffffff00", "attachment": "ear-right-dot"}, + {"name": "ear-left-bubble", "bone": "ear-left-bubble", "color": "fcae10ff", "attachment": "ear-left-bubble"}, + {"name": "ear-left-bubble-02", "bone": "ear-left-bubble-05", "attachment": "ear-left-bubble"}, {"name": "ear-left-upper", "bone": "ear-left", "attachment": "ear-left-upper"}, + {"name": "eyes-happy-accessory", "bone": "eyes-happy-accessory", "color": "ffffff00", "attachment": "eyes-happy-accessory", "blend": "additive"}, + {"name": "mouth-accessory", "bone": "mouth-accessory", "color": "ffffff00", "attachment": "mouth-accessory"} ], "ik": [ - {"name": "leg-back-left-IK", "order": 2, "bones": ["@leg-back-left"], "target": "leg-back-left-IK"}, - {"name": "leg-front-left-IK", "order": 1, "bones": ["@leg-front-left"], "target": "leg-front-left-IK"}, + {"name": "leg-back-left-IK", "order": 3, "bones": ["@leg-back-left"], "target": "leg-back-left-IK"}, + {"name": "leg-front-left-IK", "order": 2, "bones": ["@leg-front-left"], "target": "leg-front-left-IK"}, {"name": "leg-front-right-IK", "bones": ["@leg-front-right"], "target": "leg-front-right-IK"} ], + "transform": [{"name": "@mouth", "order": 1, "bones": ["mouth-bubble"], "target": "@mouth", "x": -49.1, "y": 37.9, "rotateMix": 0, "translateMix": 0, "scaleMix": 0, "shearMix": 0}], "skins": [ { "name": "default", "attachments": { - "back": {"back": {"x": 95.58, "y": -0.36, "rotation": -60, "width": 251, "height": 241, "path": "aquatic-10.back"}}, - "ear-left": {"ear-left": {"x": 54.04, "y": -15.8, "rotation": -2, "width": 108, "height": 198, "path": "aquatic-10.ear-left"}}, - "eyes": { - "eyes": {"x": 23.27, "y": 31.16, "width": 360, "height": 164, "path": "aquatic-10.eyes"}, - "eyes-angry": {"x": 23.27, "y": 31.16, "width": 360, "height": 164, "path": "aquatic-10.eyes-angry"}, - "eyes-happy": {"x": 23.27, "y": 31.16, "width": 360, "height": 164, "path": "aquatic-10.eyes-happy"}, - "eyes-shut": {"x": 23.27, "y": 31.16, "width": 360, "height": 164, "path": "aquatic-10.eyes-shut"} - }, - "horn": {"horn": {"x": 86.89, "y": -8.1, "rotation": -90, "width": 254, "height": 204, "path": "aquatic-10.horn"}}, - "mouth": { - "mouth": {"x": 9.32, "y": 39.67, "width": 150, "height": 95, "path": "aquatic-10.mouth"}, - "mouth-bite": {"x": 22.32, "y": 44.17, "width": 332, "height": 84, "path": "aquatic-10.mouth-bite"}, - "mouth-open": {"x": 14.32, "y": 3.17, "width": 190, "height": 168, "path": "aquatic-10.mouth-open"}, - "mouth-smile": {"x": 9.32, "y": 28.67, "width": 162, "height": 93, "path": "aquatic-10.mouth-smile"} + "back": {"back": {"x": 70.6535294117647, "y": -8.307647058823536, "rotation": -58, "width": 242.3529411764706, "height": 228.23529411764707, "path": "summer-tc.back"}}, + "ear-left-bubble": { + "ear-left-bubble": { + "type": "mesh", + "uvs": [ + 0.87714, 0.57697, 0.91393, 0.67811, 0.94364, 0.75977, 0.96133, 0.8176, 0.97838, 0.87333, 1, 0.94398, 0.93104, 0.94427, 0.90524, 0.94438, 0.88494, 0.94447, 0.85255, 0.94461, 0.82176, + 0.94474, 0.79396, 0.94486, 0.76382, 0.94499, 0.73767, 0.9451, 0.70713, 0.94523, 0.67579, 0.94536, 0.64108, 0.94551, 0.61244, 0.94564, 0.5758, 0.94579, 0.5367, 0.94596, 0.50394, + 0.9461, 0.47091, 0.94624, 0.435, 0.94639, 0.39675, 0.94656, 0.36198, 0.94671, 0.32916, 0.94685, 0.29359, 0.947, 0.25022, 0.94718, 0.20956, 0.94736, 0.17261, 0.94751, 0.12749, + 0.94771, 0.1012, 0.94782, 0.07834, 0.94792, 0.0457, 0.94806, 0.02123, 0.94816, 0, 0.94825, 0, 0.86703, 0, 0.81359, 0, 0.73715, 0.02817, 0.68242, 0.07791, 0.5858, 0.37947, 0, 0.46651, + 0, 0.5261, 0, 0.59994, 0, 0.66726, 0, 0.02864, 0.86721, 0.04805, 0.81379, 0.07275, 0.7389, 0.0999, 0.68207, 0.14259, 0.58508, 0.49108, 0.58123, 0.82646, 0.57753, 0.86109, 0.67837, + 0.88458, 0.75835, 0.90003, 0.81734, 0.91424, 0.87292, 0.48557, 0.6802, 0.48069, 0.74867, 0.47772, 0.81558, 0.4758, 0.87009, 0.29126, 0.58344, 0.25576, 0.68132, 0.23492, 0.74278, + 0.2135, 0.81448, 0.19874, 0.86831, 0.19271, 0.49455, 0.4968, 0.48641, 0.79002, 0.48462, 0.25666, 0.37903, 0.50462, 0.35653, 0.74321, 0.36527, 0.68757, 0.57906, 0.70466, 0.67913, + 0.71716, 0.75434, 0.72541, 0.81661, 0.73109, 0.87174, 0.67152, 0.48534, 0.32349, 0.49105, 0.38378, 0.58242, 0.36974, 0.68076, 0.36036, 0.74579, 0.34895, 0.81504, 0.34148, 0.86923, + 0.20652, 0.58437, 0.16979, 0.68173, 0.1462, 0.74066, 0.12077, 0.81409, 0.10379, 0.8677, 0.59158, 0.58012, 0.59921, 0.67965, 0.60299, 0.7516, 0.60776, 0.81612, 0.60866, 0.87095, + 0.76107, 0.57825, 0.78751, 0.67873, 0.81003, 0.75656, 0.82525, 0.81703, 0.83754, 0.87243, 0.10852, 0.73975, 0.08479, 0.81394, 0.06934, 0.86747, 0.15113, 0.868, 0.1657, 0.81428, + 0.18746, 0.74164, 0.29675, 0.74426, 0.28022, 0.81476, 0.26841, 0.86876, 0.41495, 0.7471, 0.40761, 0.81529, 0.4031, 0.86963, 0.53765, 0.87049, 0.53762, 0.81583, 0.53944, 0.75008, + 0.6595, 0.75296, 0.66217, 0.81635, 0.66857, 0.87134, 0.78397, 0.87208, 0.7758, 0.81682, 0.76492, 0.75548, 0.74852, 0.67892, 0.82675, 0.67854, 0.84222, 0.75734, 0.8595, 0.81717, + 0.87132, 0.87264, 0.01186, 0.9147, 0.056, 0.91293, 0.08943, 0.91297, 0.13846, 0.91074, 0.18465, 0.91102, 0.25824, 0.91262, 0.33507, 0.90958, 0.39978, 0.90977, 0.47313, 0.91161, + 0.53714, 0.91117, 0.61061, 0.90948, 0.67252, 0.91178, 0.73471, 0.91209, 0.78925, 0.91054, 0.84557, 0.91105, 0.87872, 0.91169, 0.92292, 0.90979, 0.21772, 0.91173, 0.11081, 0.912, + 0.02923, 0.91401, 0.29821, 0.91104, 0.36548, 0.90967, 0.43685, 0.9107, 0.50336, 0.9114, 0.57635, 0.91027, 0.64066, 0.9106, 0.70543, 0.91195, 0.76031, 0.91136, 0.81833, 0.9108, + 0.89934, 0.9108 + ], + "triangles": [ + 85, 84, 62, 94, 73, 72, 123, 54, 55, 62, 84, 61, 100, 48, 99, 144, 46, 126, 122, 53, 54, 121, 95, 52, 48, 49, 99, 35, 36, 125, 125, 36, 46, 48, 47, 38, 47, 37, 38, 50, 66, 84, 50, + 40, 66, 56, 3, 4, 54, 53, 1, 52, 68, 0, 70, 42, 43, 71, 0, 68, 44, 45, 71, 70, 43, 44, 71, 70, 44, 69, 41, 42, 69, 42, 70, 71, 45, 0, 77, 70, 71, 77, 71, 68, 70, 78, 69, 67, 70, 77, + 67, 78, 70, 41, 69, 40, 66, 69, 78, 94, 77, 68, 94, 68, 52, 72, 77, 94, 89, 67, 77, 89, 77, 72, 67, 79, 78, 51, 67, 89, 51, 79, 67, 61, 66, 78, 61, 78, 79, 84, 66, 61, 40, 69, 66, + 90, 89, 72, 90, 72, 73, 57, 79, 51, 57, 51, 89, 57, 89, 90, 80, 61, 79, 80, 79, 57, 62, 61, 80, 108, 80, 57, 113, 57, 90, 53, 52, 0, 53, 0, 1, 121, 52, 53, 54, 1, 2, 95, 94, 52, 55, + 2, 3, 55, 54, 2, 5, 6, 4, 39, 40, 49, 49, 40, 50, 38, 39, 48, 46, 36, 37, 48, 39, 49, 85, 50, 84, 49, 50, 85, 47, 46, 37, 56, 55, 3, 122, 121, 53, 47, 48, 100, 46, 47, 101, 125, 46, + 144, 35, 125, 34, 34, 125, 144, 101, 47, 100, 86, 99, 49, 85, 86, 49, 120, 94, 95, 120, 73, 94, 114, 91, 90, 73, 114, 90, 74, 73, 120, 114, 73, 74, 119, 120, 95, 74, 120, 119, 96, + 95, 121, 119, 95, 96, 96, 121, 122, 92, 91, 114, 115, 114, 74, 92, 114, 115, 75, 74, 119, 115, 74, 75, 118, 119, 96, 75, 119, 118, 97, 96, 122, 118, 96, 97, 123, 122, 54, 97, 122, + 123, 93, 92, 115, 116, 115, 75, 93, 115, 116, 76, 75, 118, 116, 75, 76, 117, 118, 97, 76, 118, 117, 98, 97, 123, 117, 97, 98, 124, 123, 55, 98, 123, 124, 150, 135, 93, 153, 138, 117, + 116, 150, 93, 98, 153, 117, 154, 124, 56, 154, 56, 141, 139, 98, 124, 140, 139, 124, 153, 98, 139, 152, 76, 117, 152, 117, 138, 154, 140, 124, 151, 136, 116, 150, 116, 136, 76, 151, + 116, 137, 151, 76, 152, 137, 76, 7, 154, 141, 7, 141, 6, 8, 140, 154, 8, 154, 7, 9, 139, 140, 9, 140, 8, 10, 153, 139, 10, 139, 9, 11, 138, 153, 11, 153, 10, 12, 152, 138, 12, 138, + 11, 13, 137, 152, 13, 152, 12, 14, 151, 137, 14, 137, 13, 15, 136, 151, 15, 151, 14, 16, 150, 136, 16, 136, 15, 17, 135, 150, 17, 150, 16, 124, 55, 56, 6, 141, 4, 141, 56, 4, 113, + 90, 91, 81, 80, 108, 58, 108, 57, 109, 81, 108, 82, 81, 109, 59, 108, 58, 109, 108, 59, 112, 58, 113, 59, 58, 112, 112, 113, 91, 92, 112, 91, 110, 82, 109, 83, 82, 110, 60, 109, 59, + 110, 109, 60, 111, 112, 92, 59, 112, 111, 60, 59, 111, 111, 92, 93, 146, 83, 110, 131, 83, 146, 132, 146, 110, 149, 111, 93, 149, 93, 135, 147, 110, 60, 132, 110, 147, 111, 148, 60, + 134, 111, 149, 134, 148, 111, 133, 147, 60, 148, 133, 60, 18, 134, 149, 18, 149, 135, 18, 135, 17, 19, 148, 134, 19, 134, 18, 20, 148, 19, 21, 147, 133, 20, 21, 133, 20, 133, 148, + 22, 132, 147, 22, 147, 21, 23, 146, 132, 23, 132, 22, 24, 131, 146, 24, 146, 23, 25, 131, 24, 58, 57, 113, 63, 104, 85, 86, 85, 104, 62, 63, 85, 105, 62, 80, 63, 62, 105, 81, 105, + 80, 87, 99, 86, 100, 99, 87, 103, 86, 104, 87, 86, 103, 64, 104, 63, 103, 104, 64, 106, 63, 105, 64, 63, 106, 82, 105, 81, 106, 105, 82, 88, 100, 87, 101, 100, 88, 102, 87, 103, 88, + 87, 102, 65, 103, 64, 102, 103, 65, 107, 64, 106, 65, 64, 107, 83, 106, 82, 107, 106, 83, 83, 145, 107, 128, 88, 102, 129, 102, 65, 128, 102, 129, 131, 145, 83, 142, 65, 107, 129, + 65, 142, 143, 88, 128, 130, 142, 107, 130, 107, 145, 127, 101, 88, 127, 88, 143, 126, 101, 127, 25, 145, 131, 26, 130, 145, 26, 145, 25, 27, 142, 130, 27, 130, 26, 28, 129, 142, 28, + 142, 27, 29, 128, 129, 29, 129, 28, 30, 143, 128, 30, 128, 29, 31, 127, 143, 31, 143, 30, 32, 126, 127, 32, 127, 31, 33, 144, 126, 33, 126, 32, 126, 46, 101, 34, 144, 33 + ], + "vertices": [ + 4, 39, 58.43, 20.31, 0.00012, 40, 36.09, 20.31, 0.00054, 41, 13.17, 20.31, 0.12631, 32, 43.2, 34, 0.87302, 3, 40, 39.33, 12.22, 0.00019, 41, 16.41, 12.22, 0.19743, 32, 51.06, 37.76, + 0.80237, 3, 40, 41.94, 5.69, 6e-05, 41, 19.02, 5.69, 0.26715, 32, 57.41, 40.79, 0.73278, 3, 40, 43.5, 1.06, 1e-05, 41, 20.58, 1.06, 0.33542, 32, 61.92, 42.65, 0.66457, 3, 40, 45, + -3.4, 1e-05, 41, 22.08, -3.4, 0.40033, 32, 66.27, 44.44, 0.59966, 3, 40, 46.9, -9.05, 0, 41, 23.98, -9.05, 0.45012, 32, 71.79, 46.7, 0.54988, 3, 40, 40.83, -9.07, 0, 41, 17.91, + -9.07, 0.5829, 32, 72.21, 40.65, 0.4171, 3, 40, 38.56, -9.08, 4e-05, 41, 15.64, -9.08, 0.72131, 32, 72.37, 38.38, 0.27865, 3, 40, 36.78, -9.09, 0.00031, 41, 13.86, -9.09, 0.8264, 32, + 72.49, 36.6, 0.17329, 3, 40, 33.93, -9.1, 0.00157, 41, 11, -9.1, 0.90359, 32, 72.69, 33.76, 0.09484, 3, 40, 31.22, -9.11, 0.00537, 41, 8.3, -9.11, 0.94975, 32, 72.87, 31.05, 0.04488, + 3, 40, 28.77, -9.12, 0.01601, 41, 5.85, -9.12, 0.96404, 32, 73.04, 28.61, 0.01996, 3, 40, 26.12, -9.13, 0.03803, 41, 3.2, -9.13, 0.95562, 32, 73.22, 25.97, 0.00635, 3, 40, 23.82, + -9.14, 0.08031, 41, 0.9, -9.14, 0.91597, 32, 73.38, 23.67, 0.00372, 4, 39, 43.47, -9.15, 0, 40, 21.13, -9.15, 0.14592, 41, -1.79, -9.15, 0.85165, 32, 73.57, 20.99, 0.00243, 4, 39, + 40.71, -9.16, 2e-05, 40, 18.37, -9.16, 0.23867, 41, -4.55, -9.16, 0.75671, 32, 73.76, 18.24, 0.0046, 4, 39, 37.66, -9.17, 0.00014, 40, 15.32, -9.17, 0.35275, 41, -7.6, -9.17, + 0.64256, 32, 73.97, 15.19, 0.00455, 4, 39, 35.13, -9.18, 0.00092, 40, 12.8, -9.18, 0.48034, 41, -10.13, -9.18, 0.51198, 32, 74.14, 12.68, 0.00676, 4, 39, 31.91, -9.19, 0.00375, 40, + 9.57, -9.19, 0.61095, 41, -13.35, -9.19, 0.38019, 32, 74.36, 9.46, 0.00512, 4, 39, 28.47, -9.21, 0.01298, 40, 6.13, -9.21, 0.72267, 41, -16.79, -9.21, 0.25841, 32, 74.6, 6.03, + 0.00594, 4, 39, 25.59, -9.22, 0.03422, 40, 3.25, -9.22, 0.80451, 41, -19.67, -9.22, 0.15782, 32, 74.8, 3.15, 0.00345, 4, 39, 22.68, -9.23, 0.07754, 40, 0.34, -9.23, 0.83155, 41, + -22.58, -9.23, 0.08642, 32, 75, 0.25, 0.00449, 4, 39, 19.52, -9.24, 0.14705, 40, -2.82, -9.24, 0.80991, 41, -25.74, -9.24, 0.04032, 32, 75.22, -2.9, 0.00272, 4, 39, 16.15, -9.25, + 0.24563, 40, -6.18, -9.25, 0.73344, 41, -29.11, -9.25, 0.01645, 32, 75.45, -6.26, 0.00448, 4, 39, 13.09, -9.27, 0.36774, 40, -9.24, -9.27, 0.62371, 41, -32.17, -9.27, 0.00512, 32, + 75.66, -9.31, 0.00344, 4, 39, 10.21, -9.28, 0.50372, 40, -12.13, -9.28, 0.49001, 41, -35.05, -9.28, 0.00135, 32, 75.86, -12.19, 0.00491, 4, 39, 7.08, -9.29, 0.64487, 40, -15.26, + -9.29, 0.35177, 41, -38.18, -9.29, 0.00021, 32, 76.08, -15.32, 0.00314, 4, 39, 3.26, -9.3, 0.77, 40, -19.08, -9.3, 0.22651, 41, -42, -9.3, 3e-05, 32, 76.34, -19.12, 0.00346, 4, 39, + -0.32, -9.32, 0.87272, 40, -22.66, -9.32, 0.1254, 41, -45.58, -9.32, 0, 32, 76.59, -22.69, 0.00188, 3, 39, -3.57, -9.33, 0.9351, 40, -25.91, -9.33, 0.0605, 32, 76.81, -25.94, 0.0044, + 3, 39, -7.54, -9.35, 0.96153, 40, -29.88, -9.35, 0.02278, 32, 77.09, -29.9, 0.01569, 3, 39, -9.85, -9.35, 0.93655, 40, -32.19, -9.35, 0.00657, 32, 77.24, -32.21, 0.05688, 3, 39, + -11.87, -9.36, 0.83576, 40, -34.2, -9.36, 0.00151, 32, 77.38, -34.21, 0.16273, 3, 39, -14.74, -9.37, 0.65143, 40, -37.08, -9.37, 0.00023, 32, 77.58, -37.08, 0.34834, 3, 39, -16.89, + -9.38, 0.4382, 40, -39.23, -9.38, 2e-05, 32, 77.73, -39.23, 0.56178, 3, 39, -18.76, -9.39, 0.27507, 40, -41.1, -9.39, 0, 32, 77.86, -41.09, 0.72493, 3, 39, -18.76, -2.89, 0.21414, + 40, -41.1, -2.89, 2e-05, 32, 71.37, -41.51, 0.78584, 3, 39, -18.76, 1.38, 0.19077, 40, -41.1, 1.38, 0.00024, 32, 67.11, -41.79, 0.80899, 3, 39, -18.76, 7.5, 0.1765, 40, -41.1, 7.5, + 0.00116, 32, 61.01, -42.19, 0.82235, 4, 39, -16.28, 11.88, 0.15382, 40, -38.62, 11.88, 0.00307, 41, -61.54, 11.88, 1e-05, 32, 56.48, -40, 0.84309, 4, 39, -11.9, 19.61, 0.11079, 40, + -34.24, 19.61, 0.0029, 41, -57.16, 19.61, 0.00014, 32, 48.48, -36.13, 0.88617, 4, 39, 14.63, 66.47, 0.04584, 40, -7.7, 66.47, 0.00083, 41, -30.63, 66.47, 0.00037, 32, -0.01, -12.7, + 0.95296, 4, 39, 22.29, 66.47, 0.02247, 40, -0.04, 66.47, 0.00083, 41, -22.97, 66.47, 0.00288, 32, -0.51, -5.06, 0.97382, 4, 39, 27.54, 66.47, 0.01007, 40, 5.2, 66.47, 0.00155, 41, + -17.72, 66.47, 0.0104, 32, -0.85, 0.17, 0.97798, 4, 39, 34.04, 66.47, 0.00272, 40, 11.7, 66.47, 0.00045, 41, -11.22, 66.47, 0.02285, 32, -1.28, 6.66, 0.97398, 4, 39, 39.96, 66.47, + 0.00033, 40, 17.62, 66.47, 0.00011, 41, -5.3, 66.47, 0.0498, 32, -1.66, 12.57, 0.94976, 3, 39, -16.24, -2.91, 0.33437, 40, -38.58, -2.91, 0.0002, 32, 71.23, -39, 0.66543, 3, 39, + -14.53, 1.37, 0.32645, 40, -36.87, 1.37, 0.00078, 32, 66.85, -37.57, 0.67277, 4, 39, -12.36, 7.36, 0.307, 40, -34.7, 7.36, 0.00285, 41, -57.62, 7.36, 1e-05, 32, 60.73, -35.79, + 0.69014, 4, 39, -9.97, 11.91, 0.26477, 40, -32.31, 11.91, 0.00971, 41, -55.23, 11.91, 0.00027, 32, 56.04, -33.7, 0.72525, 4, 39, -6.21, 19.66, 0.19881, 40, -28.55, 19.66, 0.00959, + 41, -51.47, 19.66, 0.00132, 32, 48.05, -30.46, 0.79028, 4, 39, 24.46, 19.97, 0.10712, 40, 2.12, 19.97, 0.11704, 41, -20.8, 19.97, 0.11672, 32, 45.75, 0.12, 0.65912, 4, 39, 53.97, + 20.27, 0.00116, 40, 31.63, 20.27, 0.00313, 41, 8.71, 20.27, 0.2148, 32, 43.53, 29.55, 0.7809, 4, 39, 57.02, 12.2, 0.0001, 40, 34.68, 12.2, 0.00083, 41, 11.76, 12.2, 0.29942, 32, + 51.38, 33.12, 0.69965, 3, 40, 36.75, 5.8, 0.00034, 41, 13.82, 5.8, 0.378, 32, 57.63, 35.6, 0.62166, 3, 40, 38.1, 1.08, 0.00022, 41, 15.18, 1.08, 0.45653, 32, 62.25, 37.26, 0.54325, + 3, 40, 39.36, -3.36, 0.00015, 41, 16.43, -3.36, 0.53433, 32, 66.61, 38.8, 0.46552, 4, 39, 23.97, 12.06, 0.12565, 40, 1.63, 12.06, 0.24275, 41, -21.29, 12.06, 0.14114, 32, 53.68, + 0.15, 0.49046, 4, 39, 23.54, 6.58, 0.11007, 40, 1.2, 6.58, 0.47217, 41, -21.72, 6.58, 0.12893, 32, 59.17, 0.08, 0.28883, 4, 39, 23.28, 1.22, 0.10884, 40, 0.94, 1.22, 0.60558, 41, + -21.98, 1.22, 0.12698, 32, 64.53, 0.17, 0.1586, 4, 39, 23.11, -3.14, 0.10666, 40, 0.77, -3.14, 0.70334, 41, -22.15, -3.14, 0.12133, 32, 68.89, 0.28, 0.06866, 4, 39, 6.87, 19.8, + 0.29773, 40, -15.47, 19.8, 0.06022, 41, -38.39, 19.8, 0.01488, 32, 47.07, -17.41, 0.62717, 4, 39, 3.75, 11.97, 0.44072, 40, -18.59, 11.97, 0.09602, 41, -41.51, 11.97, 0.01064, 32, + 55.08, -20.02, 0.45261, 4, 39, 1.91, 7.05, 0.66419, 40, -20.42, 7.05, 0.11803, 41, -43.35, 7.05, 0.002, 32, 60.11, -21.53, 0.21579, 4, 39, 0.03, 1.31, 0.77187, 40, -22.31, 1.31, + 0.12352, 41, -45.23, 1.31, 0.00043, 32, 65.96, -23.04, 0.10418, 4, 39, -1.27, -2.99, 0.84303, 40, -23.61, -2.99, 0.11246, 41, -46.53, -2.99, 0.00018, 32, 70.34, -24.05, 0.04432, 4, + 39, -1.8, 26.91, 0.12744, 40, -24.14, 26.91, 0.00959, 41, -47.06, 26.91, 0.0076, 32, 40.54, -26.53, 0.85537, 4, 39, 24.96, 27.56, 0.0719, 40, 2.62, 27.56, 0.03639, 41, -20.3, 27.56, + 0.07572, 32, 38.14, 0.13, 0.81598, 4, 39, 50.76, 27.7, 0.00702, 40, 28.42, 27.7, 0.00523, 41, 5.5, 27.7, 0.131, 32, 36.32, 25.87, 0.85675, 4, 39, 3.83, 36.15, 0.04791, 40, -18.51, + 36.15, 0.00352, 41, -41.43, 36.15, 0.00803, 32, 30.95, -21.51, 0.94054, 4, 39, 25.65, 37.95, 0.02662, 40, 3.31, 37.95, 0.00775, 41, -19.61, 37.95, 0.02767, 32, 27.73, 0.14, 0.93795, + 4, 39, 46.64, 37.25, 0.00753, 40, 24.3, 37.25, 0.00227, 41, 1.38, 37.25, 0.04846, 32, 27.06, 21.14, 0.94174, 4, 39, 41.75, 20.15, 0.01306, 40, 19.41, 20.15, 0.04509, 41, -3.51, + 20.15, 0.32134, 32, 44.45, 17.37, 0.62052, 4, 39, 43.25, 12.14, 0.00895, 40, 20.91, 12.14, 0.07841, 41, -2.01, 12.14, 0.49568, 32, 52.34, 19.39, 0.41696, 4, 39, 44.35, 6.12, 0.0015, + 40, 22.01, 6.12, 0.09572, 41, -0.91, 6.12, 0.67014, 32, 58.27, 20.88, 0.23264, 4, 39, 45.08, 1.14, 0.00025, 40, 22.74, 1.14, 0.108, 41, -0.18, 1.14, 0.76841, 32, 63.2, 21.93, + 0.12334, 4, 39, 45.58, -3.27, 0.0001, 40, 23.24, -3.27, 0.10937, 41, 0.32, -3.27, 0.83473, 32, 67.56, 22.71, 0.0558, 4, 39, 40.33, 27.64, 0.02381, 40, 18, 27.64, 0.02132, 41, -4.93, + 27.64, 0.16866, 32, 37.06, 15.47, 0.78621, 4, 39, 9.71, 27.19, 0.16236, 40, -12.63, 27.19, 0.02827, 41, -35.55, 27.19, 0.02548, 32, 39.51, -15.06, 0.78388, 4, 39, 15.01, 19.88, + 0.23124, 40, -7.33, 19.88, 0.11759, 41, -30.25, 19.88, 0.04679, 32, 46.46, -9.29, 0.60438, 4, 39, 13.78, 12.01, 0.29354, 40, -8.56, 12.01, 0.19873, 41, -31.48, 12.01, 0.04427, 32, + 54.39, -10.01, 0.46346, 4, 39, 12.95, 6.81, 0.37869, 40, -9.39, 6.81, 0.34588, 41, -32.31, 6.81, 0.01968, 32, 59.63, -10.5, 0.25575, 4, 39, 11.95, 1.27, 0.42861, 40, -10.39, 1.27, + 0.42317, 41, -33.31, 1.27, 0.01297, 32, 65.23, -11.14, 0.13524, 4, 39, 11.29, -3.07, 0.46725, 40, -11.05, -3.07, 0.46538, 41, -33.97, -3.07, 0.0097, 32, 69.59, -11.51, 0.05768, 4, + 39, -0.59, 19.72, 0.32338, 40, -22.92, 19.72, 0.02881, 41, -45.85, 19.72, 0.003, 32, 47.63, -24.85, 0.64481, 4, 39, -3.82, 11.93, 0.4391, 40, -26.16, 11.93, 0.03345, 41, -49.08, + 11.93, 0.00177, 32, 55.61, -27.57, 0.52567, 4, 39, -5.89, 7.22, 0.65491, 40, -28.23, 7.22, 0.02015, 41, -51.15, 7.22, 0.00017, 32, 60.45, -29.33, 0.32476, 4, 39, -8.13, 1.34, + 0.75275, 40, -30.47, 1.34, 0.01396, 41, -53.39, 1.34, 1e-05, 32, 66.46, -31.18, 0.23328, 3, 39, -9.63, -2.94, 0.80478, 40, -31.96, -2.94, 0.00944, 32, 70.83, -32.39, 0.18578, 4, 39, + 33.3, 20.06, 0.04166, 40, 10.96, 20.06, 0.10286, 41, -11.96, 20.06, 0.24857, 32, 45.08, 8.94, 0.60691, 4, 39, 33.97, 12.1, 0.03817, 40, 11.63, 12.1, 0.17811, 41, -11.29, 12.1, + 0.32257, 32, 52.98, 10.13, 0.46115, 4, 39, 34.3, 6.34, 0.01531, 40, 11.97, 6.34, 0.31162, 41, -10.96, 6.34, 0.40881, 32, 58.71, 10.84, 0.26426, 4, 39, 34.72, 1.18, 0.00955, 40, + 12.39, 1.18, 0.39036, 41, -10.54, 1.18, 0.4561, 32, 63.83, 11.59, 0.14399, 4, 39, 34.8, -3.2, 0.00731, 40, 12.46, -3.2, 0.44195, 41, -10.46, -3.2, 0.48699, 32, 68.2, 11.96, 0.06375, + 4, 39, 48.21, 20.21, 0.00241, 40, 25.88, 20.21, 0.01421, 41, 2.95, 20.21, 0.36275, 32, 43.96, 23.82, 0.62063, 4, 39, 50.54, 12.17, 0.00034, 40, 28.2, 12.17, 0.01068, 41, 5.28, 12.17, + 0.5453, 32, 51.83, 26.66, 0.44368, 4, 39, 52.52, 5.95, 2e-05, 40, 30.19, 5.95, 0.00999, 41, 7.26, 5.95, 0.66888, 32, 57.92, 29.04, 0.32111, 3, 40, 31.52, 1.11, 0.01011, 41, 8.6, + 1.11, 0.76268, 32, 62.66, 30.7, 0.22721, 3, 40, 32.61, -3.32, 0.00863, 41, 9.68, -3.32, 0.83296, 32, 67.01, 32.06, 0.15841, 4, 39, -9.21, 7.29, 0.52586, 40, -31.55, 7.29, 0.0057, 41, + -54.47, 7.29, 1e-05, 32, 60.59, -32.65, 0.46842, 3, 39, -11.3, 1.36, 0.56698, 40, -33.64, 1.36, 0.00311, 32, 66.65, -34.34, 0.42991, 3, 39, -12.66, -2.93, 0.60013, 40, -35, -2.93, + 0.00167, 32, 71.01, -35.42, 0.39821, 4, 39, -5.46, -2.97, 0.89102, 40, -27.8, -2.97, 0.03888, 41, -50.72, -2.97, 1e-05, 32, 70.59, -28.24, 0.07008, 4, 39, -4.18, 1.33, 0.83362, 40, + -26.52, 1.33, 0.04645, 41, -49.44, 1.33, 3e-05, 32, 66.21, -27.24, 0.1199, 4, 39, -2.26, 7.14, 0.75973, 40, -24.6, 7.14, 0.05134, 41, -47.52, 7.14, 0.00026, 32, 60.29, -25.7, + 0.18867, 4, 39, 7.35, 6.93, 0.57235, 40, -14.98, 6.93, 0.23863, 41, -37.91, 6.93, 0.00435, 32, 59.87, -16.09, 0.18467, 4, 39, 5.9, 1.29, 0.63011, 40, -16.44, 1.29, 0.25936, 41, + -39.36, 1.29, 0.00243, 32, 65.6, -17.18, 0.1081, 4, 39, 4.86, -3.03, 0.68809, 40, -17.48, -3.03, 0.26358, 41, -40.4, -3.03, 0.00168, 32, 69.98, -17.93, 0.04665, 4, 39, 17.76, 6.7, + 0.22941, 40, -4.58, 6.7, 0.4879, 41, -27.5, 6.7, 0.05094, 32, 59.42, -5.7, 0.23175, 4, 39, 17.11, 1.25, 0.24296, 40, -5.23, 1.25, 0.56856, 41, -28.15, 1.25, 0.04581, 32, 64.91, + -5.99, 0.14267, 4, 39, 16.71, -3.1, 0.25552, 40, -5.62, -3.1, 0.64168, 41, -28.55, -3.1, 0.03992, 32, 69.27, -6.1, 0.06288, 4, 39, 28.55, -3.17, 0.03276, 40, 6.22, -3.17, 0.62363, + 41, -16.71, -3.17, 0.27658, 32, 68.57, 5.72, 0.06703, 4, 39, 28.55, 1.2, 0.0367, 40, 6.21, 1.21, 0.54514, 41, -16.71, 1.21, 0.26974, 32, 64.21, 5.43, 0.14843, 4, 39, 28.71, 6.47, + 0.04075, 40, 6.37, 6.47, 0.46337, 41, -16.55, 6.47, 0.25797, 32, 58.95, 5.25, 0.23791, 4, 39, 39.28, 6.23, 0.00305, 40, 16.94, 6.24, 0.20572, 41, -5.98, 6.24, 0.59307, 32, 58.49, + 15.81, 0.19817, 4, 39, 39.51, 1.16, 0.00156, 40, 17.17, 1.16, 0.23228, 41, -5.75, 1.16, 0.64631, 32, 63.54, 16.37, 0.11984, 4, 39, 40.07, -3.24, 0.00112, 40, 17.74, -3.24, 0.25061, + 41, -5.19, -3.24, 0.69415, 32, 67.89, 17.22, 0.05412, 4, 39, 50.23, -3.29, 0, 40, 27.89, -3.29, 0.036, 41, 4.97, -3.29, 0.88144, 32, 67.29, 27.36, 0.08255, 4, 39, 49.51, 1.13, 2e-05, + 40, 27.17, 1.13, 0.03826, 41, 4.25, 1.13, 0.81357, 32, 62.92, 26.35, 0.14816, 4, 39, 48.55, 6.03, 0.00027, 40, 26.22, 6.03, 0.03577, 41, 3.29, 6.03, 0.72045, 32, 58.09, 25.08, + 0.24351, 4, 39, 47.11, 12.16, 0.00156, 40, 24.77, 12.16, 0.03311, 41, 1.85, 12.16, 0.61234, 32, 52.07, 23.24, 0.35299, 4, 39, 53.99, 12.19, 1e-05, 40, 31.66, 12.19, 0.00266, 41, + 8.73, 12.19, 0.47035, 32, 51.59, 30.11, 0.52698, 3, 40, 33.02, 5.88, 0.00213, 41, 10.1, 5.88, 0.54797, 32, 57.79, 31.88, 0.4499, 3, 40, 34.54, 1.1, 0.0018, 41, 11.62, 1.1, 0.63247, + 32, 62.47, 33.7, 0.36573, 3, 40, 35.58, -3.34, 0.00152, 41, 12.66, -3.34, 0.71351, 32, 66.83, 35.03, 0.28497, 3, 39, -17.72, -6.71, 0.31251, 40, -40.05, -6.71, 1e-05, 32, 75.11, + -40.22, 0.68748, 3, 39, -13.83, -6.56, 0.64755, 40, -36.17, -6.56, 0.00038, 32, 74.72, -36.36, 0.35207, 3, 39, -10.89, -6.57, 0.83546, 40, -33.23, -6.57, 0.00245, 32, 74.53, -33.42, + 0.1621, 3, 39, -6.58, -6.39, 0.9505, 40, -28.91, -6.39, 0.02598, 32, 74.07, -29.13, 0.02352, 4, 39, -2.51, -6.41, 0.9185, 40, -24.85, -6.41, 0.06986, 41, -47.77, -6.41, 1e-05, 32, + 73.83, -25.07, 0.01163, 4, 39, 3.97, -6.54, 0.7539, 40, -18.37, -6.54, 0.23416, 41, -41.29, -6.54, 0.00019, 32, 73.54, -18.6, 0.01175, 4, 39, 10.73, -6.3, 0.4945, 40, -11.61, -6.29, + 0.48778, 41, -34.53, -6.29, 0.00242, 32, 72.85, -11.87, 0.01529, 4, 39, 16.42, -6.31, 0.24467, 40, -5.92, -6.31, 0.71967, 41, -28.84, -6.31, 0.01969, 32, 72.5, -6.18, 0.01597, 4, 39, + 22.88, -6.46, 0.08074, 40, 0.54, -6.46, 0.81091, 41, -22.38, -6.46, 0.09131, 32, 72.22, 0.27, 0.01704, 4, 39, 28.51, -6.42, 0.01543, 40, 6.17, -6.42, 0.70591, 41, -16.75, -6.42, + 0.26031, 32, 71.82, 5.89, 0.01836, 4, 39, 34.97, -6.29, 0.00164, 40, 12.64, -6.29, 0.47309, 41, -10.29, -6.29, 0.50689, 32, 71.27, 12.33, 0.01837, 4, 39, 40.42, -6.47, 0.0001, 40, + 18.08, -6.47, 0.23958, 41, -4.84, -6.47, 0.7461, 32, 71.1, 17.78, 0.01421, 4, 39, 45.89, -6.5, 0, 40, 23.56, -6.5, 0.08431, 41, 0.63, -6.5, 0.9025, 32, 70.76, 23.24, 0.01319, 3, 40, + 28.36, -6.37, 0.01867, 41, 5.43, -6.37, 0.94991, 32, 70.33, 28.02, 0.03142, 3, 40, 33.31, -6.41, 0.00244, 41, 10.39, -6.41, 0.88788, 32, 70.05, 32.97, 0.10968, 3, 40, 36.23, -6.46, + 0.00046, 41, 13.31, -6.46, 0.80558, 32, 69.91, 35.88, 0.19395, 3, 40, 40.12, -6.31, 1e-05, 41, 17.2, -6.31, 0.61334, 32, 69.5, 39.76, 0.38665, 4, 39, 0.4, -6.47, 0.86555, 40, -21.94, + -6.47, 0.12959, 41, -44.86, -6.47, 1e-05, 32, 73.7, -22.16, 0.00485, 3, 39, -9.01, -6.49, 0.93616, 40, -31.35, -6.49, 0.00716, 32, 74.33, -31.55, 0.05668, 3, 39, -16.19, -6.65, + 0.44814, 40, -38.53, -6.65, 3e-05, 32, 74.96, -38.7, 0.55184, 4, 39, 7.48, -6.41, 0.63866, 40, -14.86, -6.41, 0.354, 41, -37.78, -6.41, 0.00037, 32, 73.18, -15.1, 0.00698, 4, 39, + 13.4, -6.3, 0.36468, 40, -8.94, -6.3, 0.62161, 41, -31.86, -6.3, 0.00581, 32, 72.69, -9.2, 0.0079, 4, 39, 19.68, -6.38, 0.14684, 40, -2.65, -6.38, 0.80383, 41, -25.58, -6.38, + 0.04176, 32, 72.36, -2.92, 0.00757, 4, 39, 25.54, -6.44, 0.03499, 40, 3.2, -6.44, 0.79745, 41, -19.72, -6.44, 0.15898, 32, 72.03, 2.92, 0.00858, 4, 39, 31.96, -6.35, 0.00417, 40, + 9.62, -6.35, 0.60634, 41, -13.3, -6.35, 0.37927, 32, 71.53, 9.32, 0.01022, 4, 39, 37.62, -6.38, 0.00021, 40, 15.28, -6.38, 0.35157, 41, -7.64, -6.38, 0.63918, 32, 71.18, 14.97, + 0.00904, 4, 39, 43.32, -6.48, 1e-05, 40, 20.98, -6.48, 0.14688, 41, -1.94, -6.48, 0.84692, 32, 70.92, 20.67, 0.00619, 3, 40, 25.81, -6.44, 0.03919, 41, 2.89, -6.44, 0.95006, 32, + 70.56, 25.48, 0.01074, 3, 40, 30.92, -6.39, 0.00591, 41, 7.99, -6.39, 0.9433, 32, 70.18, 30.58, 0.05079, 3, 40, 38.04, -6.39, 5e-05, 41, 15.12, -6.39, 0.72615, 32, 69.72, 37.69, + 0.2738 + ], + "hull": 46, + "edges": [ + 80, 82, 90, 0, 10, 8, 70, 72, 72, 74, 74, 76, 4, 6, 6, 8, 76, 78, 78, 80, 4, 2, 2, 0, 72, 92, 74, 94, 92, 94, 76, 96, 94, 96, 78, 98, 96, 98, 80, 100, 98, 100, 82, 84, 84, 86, 86, + 88, 88, 90, 0, 104, 2, 106, 104, 106, 4, 108, 106, 108, 6, 110, 108, 110, 8, 112, 110, 112, 10, 12, 102, 114, 114, 116, 116, 118, 118, 120, 122, 124, 124, 126, 126, 128, 128, 130, + 132, 100, 134, 102, 136, 104, 84, 138, 138, 132, 86, 140, 140, 134, 138, 140, 88, 142, 142, 136, 140, 142, 144, 146, 146, 148, 148, 150, 150, 152, 134, 154, 154, 136, 144, 154, 132, + 156, 156, 134, 122, 156, 102, 158, 158, 122, 114, 160, 160, 124, 158, 160, 160, 162, 162, 164, 164, 166, 100, 168, 168, 122, 98, 170, 170, 124, 168, 170, 170, 172, 172, 174, 174, + 176, 102, 178, 178, 144, 114, 180, 180, 146, 178, 180, 180, 182, 182, 184, 184, 186, 104, 188, 188, 144, 188, 190, 190, 192, 192, 194, 194, 196, 96, 198, 198, 172, 94, 200, 200, 174, + 198, 200, 92, 202, 202, 176, 200, 202, 64, 66, 58, 60, 130, 204, 204, 176, 128, 206, 206, 174, 204, 206, 126, 208, 208, 172, 206, 208, 126, 210, 210, 162, 128, 212, 212, 164, 210, + 212, 130, 214, 214, 166, 212, 214, 116, 216, 216, 162, 118, 218, 218, 164, 216, 218, 120, 220, 220, 166, 218, 220, 120, 222, 222, 186, 118, 224, 224, 184, 222, 224, 116, 226, 226, + 182, 224, 226, 148, 228, 228, 182, 150, 230, 230, 184, 228, 230, 152, 232, 232, 186, 230, 232, 152, 234, 234, 196, 150, 236, 236, 194, 234, 236, 148, 238, 238, 192, 236, 238, 146, + 240, 240, 190, 238, 240, 106, 242, 242, 190, 108, 244, 244, 192, 242, 244, 110, 246, 246, 194, 244, 246, 112, 248, 248, 196, 246, 248, 16, 18, 70, 250, 250, 92, 66, 252, 252, 202, + 64, 254, 254, 176, 252, 254, 60, 256, 256, 204, 58, 258, 258, 130, 256, 258, 54, 260, 260, 214, 50, 262, 262, 166, 46, 264, 264, 220, 42, 266, 266, 120, 38, 268, 268, 222, 34, 270, + 270, 186, 30, 272, 272, 232, 26, 274, 274, 152, 22, 276, 276, 234, 18, 278, 278, 196, 16, 280, 280, 248, 278, 280, 12, 282, 282, 112, 258, 284, 284, 260, 54, 56, 56, 58, 284, 56, + 254, 286, 286, 256, 60, 62, 62, 64, 286, 62, 250, 288, 288, 252, 66, 68, 68, 70, 288, 68, 260, 290, 290, 262, 50, 52, 52, 54, 290, 52, 262, 292, 292, 264, 46, 48, 48, 50, 292, 48, + 264, 294, 294, 266, 42, 44, 44, 46, 294, 44, 266, 296, 296, 268, 38, 40, 40, 42, 296, 40, 268, 298, 298, 270, 34, 36, 36, 38, 298, 36, 270, 300, 300, 272, 30, 32, 32, 34, 300, 32, + 272, 302, 302, 274, 26, 28, 28, 30, 302, 28, 274, 304, 304, 276, 22, 24, 24, 26, 304, 24, 276, 306, 306, 278, 18, 20, 20, 22, 306, 20, 280, 308, 308, 282, 12, 14, 14, 16, 308, 14 + ], + "width": 87.05882352941177, + "height": 80.0, + "path": "summer-a.ear-left-bubble", + "x": 0.470588235294116, + "y": 0.0 + } }, - "tail": {"tail": {"x": 100.9, "y": 20.93, "rotation": -13, "width": 310, "height": 240, "path": "aquatic-10.tail"}} - } - } - ], - "events": {"hit": {}, "hit-buff": {}, "jump": {}, "start-attack": {}}, - "keyAnimations": { - "activity/appear": "1023093953", - "activity/bath": "3305387968", - "attack/ranged/cast-fly": "4180526371", - "attack/ranged/cast-high": "164191126", - "attack/ranged/cast-low": "198813017", - "attack/ranged/cast-multi": "151119", - "attack/ranged/cast-tail": "997902532", - "activity/eat-bite": "1137807767", - "activity/eat-chew": "1988236421", - "activity/entrance": "3768378365", - "defense/evade": "1735454995", - "activity/evolve": "649307630", - "battle/get-buff": "1455190363", - "battle/get-debuff": "606904312", - "defense/hit-by-normal": "2045974966", - "defense/hit-by-normal-crit": "2130010601", - "defense/hit-by-normal-dramatic": "3823092125", - "defense/hit-by-ranged-attack": "2224561612", - "defense/hit-with-shield": "390714790", - "attack/melee/horn-gore": "1327954218", - "attack/melee/mouth-bite": "2237748264", - "action/move-back": "3766271173", - "action/move-forward": "2945160014", - "attack/melee/multi-attack": "905926802", - "action/idle/normal": "1659336865", - "attack/melee/normal-attack": "3305373483", - "activity/prepare": "405864717", - "action/idle/random-01": "554401889", - "action/idle/random-02": "1085666627", - "action/idle/random-03": "2021333900", - "action/idle/random-04": "1003789695", - "action/idle/random-05": "2745614147", - "action/run": "1438840721", - "draft/run-origin": "3577885069", - "attack/melee/shrimp": "3833448733", - "activity/sleep": "100562494", - "attack/melee/tail-multi-slap": "3317139533", - "attack/melee/tail-roll": "3108617565", - "attack/melee/tail-smash": "519942130", - "attack/melee/tail-thrash": "628713175", - "activity/victory-pose-back-flip": "2227634241" - } - }, - "bird-12": { - "bones": [ - {"name": "@root"}, {"name": "@pivot-main", "parent": "@root"}, {"name": "@pivot-back", "parent": "@pivot-main", "x": 205, "y": 180, "color": "ff0101ff"}, - {"name": "@pivot-center", "parent": "@pivot-back", "x": -215.11, "y": -5.25, "color": "ff0101ff"}, - {"name": "@axie", "parent": "@pivot-center", "length": 213.28, "rotation": 179.04, "x": 196.39, "y": 5.16}, {"name": "@back", "parent": "@axie", "rotation": -179.04, "x": 37.63, "y": -198.19}, - {"name": "back", "parent": "@back", "length": 149.41, "rotation": 48, "x": -35.97, "y": 27.3, "transform": "noScale"}, - {"name": "@body", "parent": "@axie", "length": 226.28, "rotation": -8.35, "x": 224.58, "y": -0.53}, {"name": "@ear-left", "parent": "@axie", "rotation": -179.04, "x": 112.7, "y": -203.23}, - {"name": "ear-left", "parent": "@ear-left", "length": 113.61, "rotation": 5, "x": 5, "y": -40.5, "transform": "noScale"}, - {"name": "@ear-right", "parent": "@axie", "rotation": -179.04, "x": 405.28, "y": -235.33}, - {"name": "ear-right", "parent": "@ear-right", "length": 119.39, "rotation": 181, "x": -83, "y": -102, "transform": "noScale"}, - {"name": "@eyes", "parent": "@axie", "rotation": -179.04, "x": 384.24, "y": -113.67}, {"name": "@horn", "parent": "@axie", "rotation": -179.04, "x": 327.92, "y": -214.63}, - {"name": "horn", "parent": "@horn", "length": 176.72, "rotation": 90, "y": 18, "transform": "noScale"}, - {"name": "@leg-back-left", "parent": "@axie", "length": 76.4, "rotation": 100.96, "x": -15.3, "y": 102.56, "transform": "noScale"}, - {"name": "@leg-front-left", "parent": "@axie", "length": 51.19, "rotation": 93.86, "x": 134.77, "y": 149.55, "transform": "noScale"}, - {"name": "@leg-front-right", "parent": "@axie", "length": 74.83, "rotation": 83.2, "x": 382.95, "y": 121.78, "transform": "noScale"}, - {"name": "@mouth", "parent": "@axie", "rotation": -179.04, "x": 382.23, "y": 6.31}, - {"name": "body-pattern", "parent": "@body", "rotation": -170.69, "x": -267.21, "y": -49.4, "transform": "noScale"}, {"name": "@shadow", "parent": "@root", "color": "e6d713ff"}, - {"name": "@tail", "parent": "@axie", "rotation": -179.04, "x": -11.76, "y": 61.72}, - {"name": "tail", "parent": "@tail", "length": 203.67, "rotation": 32, "x": -9, "y": -8, "transform": "noScale"}, - {"name": "leg-front-right-IK", "parent": "@pivot-main", "x": -195.99, "y": -10.21, "color": "ff3f00ff"}, - {"name": "leg-front-left-IK", "parent": "@pivot-main", "x": 42.3, "y": -18.42, "color": "ff3f00ff"}, - {"name": "leg-back-left-IK", "parent": "@pivot-main", "x": 208.57, "y": 1.35, "color": "ff3f00ff"}, {"name": "@ball", "parent": "@root", "y": 191, "color": "f3981bff"}, - {"name": "ball", "parent": "@ball", "y": -191, "color": "f4a729ff"} - ], - "slots": [ - {"name": "shadow", "bone": "@shadow", "attachment": "shadow"}, {"name": "ball", "bone": "ball"}, {"name": "leg-front-right", "bone": "@leg-front-right", "attachment": "leg-front-right"}, - {"name": "ear-right", "bone": "ear-right", "attachment": "ear-right"}, {"name": "tail", "bone": "tail", "attachment": "tail"}, {"name": "back", "bone": "back", "attachment": "back"}, - {"name": "leg-back-left", "bone": "@leg-back-left", "attachment": "leg-back-left"}, {"name": "body", "bone": "@body", "attachment": "body"}, {"name": "body-pattern", "bone": "body-pattern"}, - {"name": "leg-front-left", "bone": "@leg-front-left", "attachment": "leg-front-left"}, {"name": "eyes", "bone": "@eyes", "attachment": "eyes"}, - {"name": "mouth", "bone": "@mouth", "attachment": "mouth"}, {"name": "ear-left", "bone": "ear-left", "attachment": "ear-left"}, {"name": "horn", "bone": "horn", "attachment": "horn"} - ], - "ik": [ - {"name": "leg-back-left-IK", "order": 2, "bones": ["@leg-back-left"], "target": "leg-back-left-IK"}, - {"name": "leg-front-left-IK", "order": 1, "bones": ["@leg-front-left"], "target": "leg-front-left-IK"}, - {"name": "leg-front-right-IK", "bones": ["@leg-front-right"], "target": "leg-front-right-IK"} - ], - "skins": [ - { - "name": "default", - "attachments": { - "back": {"back": {"x": 112.03, "y": 16.45, "rotation": -48, "width": 237, "height": 246, "path": "bird-12.back"}}, - "ear-left": {"ear-left": {"x": 48.06, "y": 1.58, "rotation": -5, "width": 109, "height": 152, "path": "bird-12.ear-left"}}, - "ear-right": {"ear-right": {"x": 53.26, "y": -0.69, "rotation": 179, "width": 119, "height": 77, "path": "bird-12.ear-right"}}, - "eyes": { - "eyes": {"x": 28.16, "y": 17.98, "width": 293, "height": 97, "path": "bird-12.eyes"}, - "eyes-angry": {"x": 28.16, "y": 17.98, "width": 293, "height": 97, "path": "bird-12.eyes-angry"}, - "eyes-happy": {"x": 28.16, "y": 15.48, "width": 293, "height": 60, "path": "bird-12.eyes-happy"}, - "eyes-shut": {"x": 26.16, "y": 7.98, "width": 289, "height": 49, "path": "bird-12.eyes-shut"} + "ear-left-bubble-02": { + "ear-left-bubble": { + "type": "mesh", + "uvs": [ + 0.87714, 0.57697, 0.91393, 0.67811, 0.94364, 0.75977, 0.96133, 0.8176, 0.97838, 0.87333, 1, 0.94398, 0.93104, 0.94427, 0.90524, 0.94438, 0.88494, 0.94447, 0.85255, 0.94461, 0.82176, + 0.94474, 0.79396, 0.94486, 0.76382, 0.94499, 0.73767, 0.9451, 0.70713, 0.94523, 0.67579, 0.94536, 0.64108, 0.94551, 0.61244, 0.94564, 0.5758, 0.94579, 0.5367, 0.94596, 0.50394, + 0.9461, 0.47091, 0.94624, 0.435, 0.94639, 0.39675, 0.94656, 0.36198, 0.94671, 0.32916, 0.94685, 0.29359, 0.947, 0.25022, 0.94718, 0.20956, 0.94736, 0.17261, 0.94751, 0.12749, + 0.94771, 0.1012, 0.94782, 0.07834, 0.94792, 0.0457, 0.94806, 0.02123, 0.94816, 0, 0.94825, 0, 0.86703, 0, 0.81359, 0, 0.73715, 0.02817, 0.68242, 0.07791, 0.5858, 0.37947, 0, 0.46651, + 0, 0.5261, 0, 0.59994, 0, 0.66726, 0, 0.02864, 0.86721, 0.04805, 0.81379, 0.07275, 0.7389, 0.0999, 0.68207, 0.14259, 0.58508, 0.49108, 0.58123, 0.82646, 0.57753, 0.86109, 0.67837, + 0.88458, 0.75835, 0.90003, 0.81734, 0.91424, 0.87292, 0.48557, 0.6802, 0.48069, 0.74867, 0.47772, 0.81558, 0.4758, 0.87009, 0.29126, 0.58344, 0.25576, 0.68132, 0.23492, 0.74278, + 0.2135, 0.81448, 0.19874, 0.86831, 0.19271, 0.49455, 0.4968, 0.48641, 0.79002, 0.48462, 0.25666, 0.37903, 0.50462, 0.35653, 0.74321, 0.36527, 0.68757, 0.57906, 0.70466, 0.67913, + 0.71716, 0.75434, 0.72541, 0.81661, 0.73109, 0.87174, 0.67152, 0.48534, 0.32349, 0.49105, 0.38378, 0.58242, 0.36974, 0.68076, 0.36036, 0.74579, 0.34895, 0.81504, 0.34148, 0.86923, + 0.20652, 0.58437, 0.16979, 0.68173, 0.1462, 0.74066, 0.12077, 0.81409, 0.10379, 0.8677, 0.59158, 0.58012, 0.59921, 0.67965, 0.60299, 0.7516, 0.60776, 0.81612, 0.60866, 0.87095, + 0.76107, 0.57825, 0.78751, 0.67873, 0.81003, 0.75656, 0.82525, 0.81703, 0.83754, 0.87243, 0.10852, 0.73975, 0.08479, 0.81394, 0.06934, 0.86747, 0.15113, 0.868, 0.1657, 0.81428, + 0.18746, 0.74164, 0.29675, 0.74426, 0.28022, 0.81476, 0.26841, 0.86876, 0.41495, 0.7471, 0.40761, 0.81529, 0.4031, 0.86963, 0.53765, 0.87049, 0.53762, 0.81583, 0.53944, 0.75008, + 0.6595, 0.75296, 0.66217, 0.81635, 0.66857, 0.87134, 0.78397, 0.87208, 0.7758, 0.81682, 0.76492, 0.75548, 0.74852, 0.67892, 0.82675, 0.67854, 0.84222, 0.75734, 0.8595, 0.81717, + 0.87132, 0.87264, 0.01186, 0.9147, 0.056, 0.91293, 0.08943, 0.91297, 0.13846, 0.91074, 0.18465, 0.91102, 0.25824, 0.91262, 0.33507, 0.90958, 0.39978, 0.90977, 0.47313, 0.91161, + 0.53714, 0.91117, 0.61061, 0.90948, 0.67252, 0.91178, 0.73471, 0.91209, 0.78925, 0.91054, 0.84557, 0.91105, 0.87872, 0.91169, 0.92292, 0.90979, 0.21772, 0.91173, 0.11081, 0.912, + 0.02923, 0.91401, 0.29821, 0.91104, 0.36548, 0.90967, 0.43685, 0.9107, 0.50336, 0.9114, 0.57635, 0.91027, 0.64066, 0.9106, 0.70543, 0.91195, 0.76031, 0.91136, 0.81833, 0.9108, + 0.89934, 0.9108 + ], + "triangles": [ + 46, 36, 37, 125, 36, 46, 46, 47, 101, 101, 47, 100, 144, 46, 126, 125, 46, 144, 47, 46, 37, 34, 125, 144, 35, 125, 34, 35, 36, 125, 56, 55, 3, 56, 3, 4, 5, 6, 4, 123, 54, 55, 55, 54, + 2, 55, 2, 3, 85, 86, 49, 86, 99, 49, 47, 48, 100, 122, 121, 53, 49, 50, 85, 85, 50, 84, 48, 39, 49, 38, 39, 48, 49, 40, 50, 39, 40, 49, 95, 94, 52, 54, 1, 2, 121, 52, 53, 53, 0, 1, + 53, 52, 0, 113, 57, 90, 108, 80, 57, 62, 61, 80, 80, 79, 57, 80, 61, 79, 57, 89, 90, 57, 51, 89, 57, 79, 51, 90, 72, 73, 90, 89, 72, 40, 69, 66, 84, 66, 61, 61, 78, 79, 61, 66, 78, + 51, 79, 67, 51, 67, 89, 67, 79, 78, 89, 77, 72, 89, 67, 77, 72, 77, 94, 94, 68, 52, 94, 77, 68, 66, 69, 78, 41, 69, 40, 67, 78, 70, 67, 70, 77, 70, 78, 69, 77, 71, 68, 77, 70, 71, + 71, 45, 0, 69, 42, 70, 69, 41, 42, 71, 70, 44, 70, 43, 44, 44, 45, 71, 71, 0, 68, 70, 42, 43, 52, 68, 0, 54, 53, 1, 50, 40, 66, 50, 66, 84, 47, 37, 38, 48, 47, 38, 48, 49, 99, 121, + 95, 52, 122, 53, 54, 100, 48, 99, 62, 84, 61, 94, 73, 72, 85, 84, 62, 113, 90, 91, 141, 56, 4, 6, 141, 4, 124, 55, 56, 17, 150, 16, 17, 135, 150, 16, 136, 15, 16, 150, 136, 15, 151, + 14, 15, 136, 151, 14, 137, 13, 14, 151, 137, 13, 152, 12, 13, 137, 152, 12, 138, 11, 12, 152, 138, 11, 153, 10, 11, 138, 153, 10, 139, 9, 10, 153, 139, 9, 140, 8, 9, 139, 140, 8, + 154, 7, 8, 140, 154, 7, 141, 6, 7, 154, 141, 152, 137, 76, 137, 151, 76, 76, 151, 116, 150, 116, 136, 151, 136, 116, 154, 140, 124, 152, 117, 138, 152, 76, 117, 153, 98, 139, 140, + 139, 124, 139, 98, 124, 154, 56, 141, 154, 124, 56, 98, 153, 117, 116, 150, 93, 153, 138, 117, 150, 135, 93, 98, 123, 124, 124, 123, 55, 117, 97, 98, 98, 97, 123, 76, 118, 117, 117, + 118, 97, 116, 75, 76, 76, 75, 118, 93, 115, 116, 116, 115, 75, 93, 92, 115, 97, 122, 123, 123, 122, 54, 118, 96, 97, 97, 96, 122, 75, 119, 118, 118, 119, 96, 115, 74, 75, 75, 74, + 119, 92, 114, 115, 115, 114, 74, 92, 91, 114, 96, 121, 122, 119, 95, 96, 96, 95, 121, 74, 120, 119, 119, 120, 95, 114, 73, 74, 74, 73, 120, 73, 114, 90, 114, 91, 90, 120, 73, 94, + 120, 94, 95, 58, 57, 113, 25, 131, 24, 24, 146, 23, 24, 131, 146, 23, 132, 22, 23, 146, 132, 22, 147, 21, 22, 132, 147, 20, 133, 148, 20, 21, 133, 21, 147, 133, 20, 148, 19, 19, 134, + 18, 19, 148, 134, 18, 135, 17, 18, 149, 135, 18, 134, 149, 148, 133, 60, 133, 147, 60, 134, 148, 111, 134, 111, 149, 111, 148, 60, 132, 110, 147, 147, 110, 60, 149, 93, 135, 149, + 111, 93, 132, 146, 110, 131, 83, 146, 146, 83, 110, 111, 92, 93, 60, 59, 111, 59, 112, 111, 111, 112, 92, 110, 109, 60, 60, 109, 59, 83, 82, 110, 110, 82, 109, 92, 112, 91, 112, 113, + 91, 59, 58, 112, 112, 58, 113, 109, 108, 59, 59, 108, 58, 82, 81, 109, 109, 81, 108, 58, 108, 57, 81, 80, 108, 34, 144, 33, 126, 46, 101, 33, 126, 32, 33, 144, 126, 32, 127, 31, 32, + 126, 127, 31, 143, 30, 31, 127, 143, 30, 128, 29, 30, 143, 128, 29, 129, 28, 29, 128, 129, 28, 142, 27, 28, 129, 142, 27, 130, 26, 27, 142, 130, 26, 145, 25, 26, 130, 145, 25, 145, + 131, 126, 101, 127, 127, 88, 143, 127, 101, 88, 130, 107, 145, 130, 142, 107, 143, 88, 128, 129, 65, 142, 142, 65, 107, 131, 145, 83, 128, 102, 129, 129, 102, 65, 128, 88, 102, 83, + 145, 107, 107, 106, 83, 83, 106, 82, 65, 64, 107, 107, 64, 106, 102, 103, 65, 65, 103, 64, 88, 87, 102, 102, 87, 103, 101, 100, 88, 88, 100, 87, 106, 105, 82, 82, 105, 81, 64, 63, + 106, 106, 63, 105, 103, 104, 64, 64, 104, 63, 87, 86, 103, 103, 86, 104, 100, 99, 87, 87, 99, 86, 81, 105, 80, 63, 62, 105, 105, 62, 80, 62, 63, 85, 86, 85, 104, 63, 104, 85 + ], + "vertices": [ + 4, 47, 58.43, 20.31, 0.00012, 48, 36.09, 20.31, 0.00054, 49, 13.17, 20.31, 0.12631, 46, 43.2, 34, 0.87302, 3, 48, 39.33, 12.22, 0.00019, 49, 16.41, 12.22, 0.19743, 46, 51.06, 37.76, + 0.80237, 3, 48, 41.94, 5.69, 6e-05, 49, 19.02, 5.69, 0.26715, 46, 57.41, 40.79, 0.73278, 3, 48, 43.5, 1.06, 1e-05, 49, 20.58, 1.06, 0.33542, 46, 61.92, 42.65, 0.66457, 3, 48, 45, + -3.4, 1e-05, 49, 22.08, -3.4, 0.40033, 46, 66.27, 44.44, 0.59966, 3, 48, 46.9, -9.05, 0, 49, 23.98, -9.05, 0.45012, 46, 71.79, 46.7, 0.54988, 3, 48, 40.83, -9.07, 0, 49, 17.91, + -9.07, 0.5829, 46, 72.21, 40.65, 0.4171, 3, 48, 38.56, -9.08, 4e-05, 49, 15.64, -9.08, 0.72131, 46, 72.37, 38.38, 0.27865, 3, 48, 36.78, -9.09, 0.00031, 49, 13.86, -9.09, 0.8264, 46, + 72.49, 36.6, 0.17329, 3, 48, 33.93, -9.1, 0.00157, 49, 11, -9.1, 0.90359, 46, 72.69, 33.76, 0.09484, 3, 48, 31.22, -9.11, 0.00537, 49, 8.3, -9.11, 0.94975, 46, 72.87, 31.05, 0.04488, + 3, 48, 28.77, -9.12, 0.01601, 49, 5.85, -9.12, 0.96404, 46, 73.04, 28.61, 0.01996, 3, 48, 26.12, -9.13, 0.03803, 49, 3.2, -9.13, 0.95562, 46, 73.22, 25.97, 0.00635, 3, 48, 23.82, + -9.14, 0.08031, 49, 0.9, -9.14, 0.91597, 46, 73.38, 23.67, 0.00372, 4, 47, 43.47, -9.15, 0, 48, 21.13, -9.15, 0.14592, 49, -1.79, -9.15, 0.85165, 46, 73.57, 20.99, 0.00243, 4, 47, + 40.71, -9.16, 2e-05, 48, 18.37, -9.16, 0.23867, 49, -4.55, -9.16, 0.75671, 46, 73.76, 18.24, 0.0046, 4, 47, 37.66, -9.17, 0.00014, 48, 15.32, -9.17, 0.35275, 49, -7.6, -9.17, + 0.64256, 46, 73.97, 15.19, 0.00455, 4, 47, 35.13, -9.18, 0.00092, 48, 12.8, -9.18, 0.48034, 49, -10.13, -9.18, 0.51198, 46, 74.14, 12.68, 0.00676, 4, 47, 31.91, -9.19, 0.00375, 48, + 9.57, -9.19, 0.61095, 49, -13.35, -9.19, 0.38019, 46, 74.36, 9.46, 0.00512, 4, 47, 28.47, -9.21, 0.01298, 48, 6.13, -9.21, 0.72267, 49, -16.79, -9.21, 0.25841, 46, 74.6, 6.03, + 0.00594, 4, 47, 25.59, -9.22, 0.03422, 48, 3.25, -9.22, 0.80451, 49, -19.67, -9.22, 0.15782, 46, 74.8, 3.15, 0.00345, 4, 47, 22.68, -9.23, 0.07754, 48, 0.34, -9.23, 0.83155, 49, + -22.58, -9.23, 0.08642, 46, 75, 0.25, 0.00449, 4, 47, 19.52, -9.24, 0.14705, 48, -2.82, -9.24, 0.80991, 49, -25.74, -9.24, 0.04032, 46, 75.22, -2.9, 0.00272, 4, 47, 16.15, -9.25, + 0.24563, 48, -6.18, -9.25, 0.73344, 49, -29.11, -9.25, 0.01645, 46, 75.45, -6.26, 0.00448, 4, 47, 13.09, -9.27, 0.36774, 48, -9.24, -9.27, 0.62371, 49, -32.17, -9.27, 0.00512, 46, + 75.66, -9.31, 0.00344, 4, 47, 10.21, -9.28, 0.50372, 48, -12.13, -9.28, 0.49001, 49, -35.05, -9.28, 0.00135, 46, 75.86, -12.19, 0.00491, 4, 47, 7.08, -9.29, 0.64487, 48, -15.26, + -9.29, 0.35177, 49, -38.18, -9.29, 0.00021, 46, 76.08, -15.32, 0.00314, 4, 47, 3.26, -9.3, 0.77, 48, -19.08, -9.3, 0.22651, 49, -42, -9.3, 3e-05, 46, 76.34, -19.12, 0.00346, 4, 47, + -0.32, -9.32, 0.87272, 48, -22.66, -9.32, 0.1254, 49, -45.58, -9.32, 0, 46, 76.59, -22.69, 0.00188, 3, 47, -3.57, -9.33, 0.9351, 48, -25.91, -9.33, 0.0605, 46, 76.81, -25.94, 0.0044, + 3, 47, -7.54, -9.35, 0.96153, 48, -29.88, -9.35, 0.02278, 46, 77.09, -29.9, 0.01569, 3, 47, -9.85, -9.35, 0.93655, 48, -32.19, -9.35, 0.00657, 46, 77.24, -32.21, 0.05688, 3, 47, + -11.87, -9.36, 0.83576, 48, -34.2, -9.36, 0.00151, 46, 77.38, -34.21, 0.16273, 3, 47, -14.74, -9.37, 0.65143, 48, -37.08, -9.37, 0.00023, 46, 77.58, -37.08, 0.34834, 3, 47, -16.89, + -9.38, 0.4382, 48, -39.23, -9.38, 2e-05, 46, 77.73, -39.23, 0.56178, 3, 47, -18.76, -9.39, 0.27507, 48, -41.1, -9.39, 0, 46, 77.86, -41.09, 0.72493, 3, 47, -18.76, -2.89, 0.21414, + 48, -41.1, -2.89, 2e-05, 46, 71.37, -41.51, 0.78584, 3, 47, -18.76, 1.38, 0.19077, 48, -41.1, 1.38, 0.00024, 46, 67.11, -41.79, 0.80899, 3, 47, -18.76, 7.5, 0.1765, 48, -41.1, 7.5, + 0.00116, 46, 61.01, -42.19, 0.82235, 4, 47, -16.28, 11.88, 0.15382, 48, -38.62, 11.88, 0.00307, 49, -61.54, 11.88, 1e-05, 46, 56.48, -40, 0.84309, 4, 47, -11.9, 19.61, 0.11079, 48, + -34.24, 19.61, 0.0029, 49, -57.16, 19.61, 0.00014, 46, 48.48, -36.13, 0.88617, 4, 47, 14.63, 66.47, 0.04584, 48, -7.7, 66.47, 0.00083, 49, -30.63, 66.47, 0.00037, 46, -0.01, -12.7, + 0.95296, 4, 47, 22.29, 66.47, 0.02247, 48, -0.04, 66.47, 0.00083, 49, -22.97, 66.47, 0.00288, 46, -0.51, -5.06, 0.97382, 4, 47, 27.54, 66.47, 0.01007, 48, 5.2, 66.47, 0.00155, 49, + -17.72, 66.47, 0.0104, 46, -0.85, 0.17, 0.97798, 4, 47, 34.04, 66.47, 0.00272, 48, 11.7, 66.47, 0.00045, 49, -11.22, 66.47, 0.02285, 46, -1.28, 6.66, 0.97398, 4, 47, 39.96, 66.47, + 0.00033, 48, 17.62, 66.47, 0.00011, 49, -5.3, 66.47, 0.0498, 46, -1.66, 12.57, 0.94976, 3, 47, -16.24, -2.91, 0.33437, 48, -38.58, -2.91, 0.0002, 46, 71.23, -39, 0.66543, 3, 47, + -14.53, 1.37, 0.32645, 48, -36.87, 1.37, 0.00078, 46, 66.85, -37.57, 0.67277, 4, 47, -12.36, 7.36, 0.307, 48, -34.7, 7.36, 0.00285, 49, -57.62, 7.36, 1e-05, 46, 60.73, -35.79, + 0.69014, 4, 47, -9.97, 11.91, 0.26477, 48, -32.31, 11.91, 0.00971, 49, -55.23, 11.91, 0.00027, 46, 56.04, -33.7, 0.72525, 4, 47, -6.21, 19.66, 0.19881, 48, -28.55, 19.66, 0.00959, + 49, -51.47, 19.66, 0.00132, 46, 48.05, -30.46, 0.79028, 4, 47, 24.46, 19.97, 0.10712, 48, 2.12, 19.97, 0.11704, 49, -20.8, 19.97, 0.11672, 46, 45.75, 0.12, 0.65912, 4, 47, 53.97, + 20.27, 0.00116, 48, 31.63, 20.27, 0.00313, 49, 8.71, 20.27, 0.2148, 46, 43.53, 29.55, 0.7809, 4, 47, 57.02, 12.2, 0.0001, 48, 34.68, 12.2, 0.00083, 49, 11.76, 12.2, 0.29942, 46, + 51.38, 33.12, 0.69965, 3, 48, 36.75, 5.8, 0.00034, 49, 13.82, 5.8, 0.378, 46, 57.63, 35.6, 0.62166, 3, 48, 38.1, 1.08, 0.00022, 49, 15.18, 1.08, 0.45653, 46, 62.25, 37.26, 0.54325, + 3, 48, 39.36, -3.36, 0.00015, 49, 16.43, -3.36, 0.53433, 46, 66.61, 38.8, 0.46552, 4, 47, 23.97, 12.06, 0.12565, 48, 1.63, 12.06, 0.24275, 49, -21.29, 12.06, 0.14114, 46, 53.68, + 0.15, 0.49046, 4, 47, 23.54, 6.58, 0.11007, 48, 1.2, 6.58, 0.47217, 49, -21.72, 6.58, 0.12893, 46, 59.17, 0.08, 0.28883, 4, 47, 23.28, 1.22, 0.10884, 48, 0.94, 1.22, 0.60558, 49, + -21.98, 1.22, 0.12698, 46, 64.53, 0.17, 0.1586, 4, 47, 23.11, -3.14, 0.10666, 48, 0.77, -3.14, 0.70334, 49, -22.15, -3.14, 0.12133, 46, 68.89, 0.28, 0.06866, 4, 47, 6.87, 19.8, + 0.29773, 48, -15.47, 19.8, 0.06022, 49, -38.39, 19.8, 0.01488, 46, 47.07, -17.41, 0.62717, 4, 47, 3.75, 11.97, 0.44072, 48, -18.59, 11.97, 0.09602, 49, -41.51, 11.97, 0.01064, 46, + 55.08, -20.02, 0.45261, 4, 47, 1.91, 7.05, 0.66419, 48, -20.42, 7.05, 0.11803, 49, -43.35, 7.05, 0.002, 46, 60.11, -21.53, 0.21579, 4, 47, 0.03, 1.31, 0.77187, 48, -22.31, 1.31, + 0.12352, 49, -45.23, 1.31, 0.00043, 46, 65.96, -23.04, 0.10418, 4, 47, -1.27, -2.99, 0.84303, 48, -23.61, -2.99, 0.11246, 49, -46.53, -2.99, 0.00018, 46, 70.34, -24.05, 0.04432, 4, + 47, -1.8, 26.91, 0.12744, 48, -24.14, 26.91, 0.00959, 49, -47.06, 26.91, 0.0076, 46, 40.54, -26.53, 0.85537, 4, 47, 24.96, 27.56, 0.0719, 48, 2.62, 27.56, 0.03639, 49, -20.3, 27.56, + 0.07572, 46, 38.14, 0.13, 0.81598, 4, 47, 50.76, 27.7, 0.00702, 48, 28.42, 27.7, 0.00523, 49, 5.5, 27.7, 0.131, 46, 36.32, 25.87, 0.85675, 4, 47, 3.83, 36.15, 0.04791, 48, -18.51, + 36.15, 0.00352, 49, -41.43, 36.15, 0.00803, 46, 30.95, -21.51, 0.94054, 4, 47, 25.65, 37.95, 0.02662, 48, 3.31, 37.95, 0.00775, 49, -19.61, 37.95, 0.02767, 46, 27.73, 0.14, 0.93795, + 4, 47, 46.64, 37.25, 0.00753, 48, 24.3, 37.25, 0.00227, 49, 1.38, 37.25, 0.04846, 46, 27.06, 21.14, 0.94174, 4, 47, 41.75, 20.15, 0.01306, 48, 19.41, 20.15, 0.04509, 49, -3.51, + 20.15, 0.32134, 46, 44.45, 17.37, 0.62052, 4, 47, 43.25, 12.14, 0.00895, 48, 20.91, 12.14, 0.07841, 49, -2.01, 12.14, 0.49568, 46, 52.34, 19.39, 0.41696, 4, 47, 44.35, 6.12, 0.0015, + 48, 22.01, 6.12, 0.09572, 49, -0.91, 6.12, 0.67014, 46, 58.27, 20.88, 0.23264, 4, 47, 45.08, 1.14, 0.00025, 48, 22.74, 1.14, 0.108, 49, -0.18, 1.14, 0.76841, 46, 63.2, 21.93, + 0.12334, 4, 47, 45.58, -3.27, 0.0001, 48, 23.24, -3.27, 0.10937, 49, 0.32, -3.27, 0.83473, 46, 67.56, 22.71, 0.0558, 4, 47, 40.33, 27.64, 0.02381, 48, 18, 27.64, 0.02132, 49, -4.93, + 27.64, 0.16866, 46, 37.06, 15.47, 0.78621, 4, 47, 9.71, 27.19, 0.16236, 48, -12.63, 27.19, 0.02827, 49, -35.55, 27.19, 0.02548, 46, 39.51, -15.06, 0.78388, 4, 47, 15.01, 19.88, + 0.23124, 48, -7.33, 19.88, 0.11759, 49, -30.25, 19.88, 0.04679, 46, 46.46, -9.29, 0.60438, 4, 47, 13.78, 12.01, 0.29354, 48, -8.56, 12.01, 0.19873, 49, -31.48, 12.01, 0.04427, 46, + 54.39, -10.01, 0.46346, 4, 47, 12.95, 6.81, 0.37869, 48, -9.39, 6.81, 0.34588, 49, -32.31, 6.81, 0.01968, 46, 59.63, -10.5, 0.25575, 4, 47, 11.95, 1.27, 0.42861, 48, -10.39, 1.27, + 0.42317, 49, -33.31, 1.27, 0.01297, 46, 65.23, -11.14, 0.13524, 4, 47, 11.29, -3.07, 0.46725, 48, -11.05, -3.07, 0.46538, 49, -33.97, -3.07, 0.0097, 46, 69.59, -11.51, 0.05768, 4, + 47, -0.59, 19.72, 0.32338, 48, -22.92, 19.72, 0.02881, 49, -45.85, 19.72, 0.003, 46, 47.63, -24.85, 0.64481, 4, 47, -3.82, 11.93, 0.4391, 48, -26.16, 11.93, 0.03345, 49, -49.08, + 11.93, 0.00177, 46, 55.61, -27.57, 0.52567, 4, 47, -5.89, 7.22, 0.65491, 48, -28.23, 7.22, 0.02015, 49, -51.15, 7.22, 0.00017, 46, 60.45, -29.33, 0.32476, 4, 47, -8.13, 1.34, + 0.75275, 48, -30.47, 1.34, 0.01396, 49, -53.39, 1.34, 1e-05, 46, 66.46, -31.18, 0.23328, 3, 47, -9.63, -2.94, 0.80478, 48, -31.96, -2.94, 0.00944, 46, 70.83, -32.39, 0.18578, 4, 47, + 33.3, 20.06, 0.04166, 48, 10.96, 20.06, 0.10286, 49, -11.96, 20.06, 0.24857, 46, 45.08, 8.94, 0.60691, 4, 47, 33.97, 12.1, 0.03817, 48, 11.63, 12.1, 0.17811, 49, -11.29, 12.1, + 0.32257, 46, 52.98, 10.13, 0.46115, 4, 47, 34.3, 6.34, 0.01531, 48, 11.97, 6.34, 0.31162, 49, -10.96, 6.34, 0.40881, 46, 58.71, 10.84, 0.26426, 4, 47, 34.72, 1.18, 0.00955, 48, + 12.39, 1.18, 0.39036, 49, -10.54, 1.18, 0.4561, 46, 63.83, 11.59, 0.14399, 4, 47, 34.8, -3.2, 0.00731, 48, 12.46, -3.2, 0.44195, 49, -10.46, -3.2, 0.48699, 46, 68.2, 11.96, 0.06375, + 4, 47, 48.21, 20.21, 0.00241, 48, 25.88, 20.21, 0.01421, 49, 2.95, 20.21, 0.36275, 46, 43.96, 23.82, 0.62063, 4, 47, 50.54, 12.17, 0.00034, 48, 28.2, 12.17, 0.01068, 49, 5.28, 12.17, + 0.5453, 46, 51.83, 26.66, 0.44368, 4, 47, 52.52, 5.95, 2e-05, 48, 30.19, 5.95, 0.00999, 49, 7.26, 5.95, 0.66888, 46, 57.92, 29.04, 0.32111, 3, 48, 31.52, 1.11, 0.01011, 49, 8.6, + 1.11, 0.76268, 46, 62.66, 30.7, 0.22721, 3, 48, 32.61, -3.32, 0.00863, 49, 9.68, -3.32, 0.83296, 46, 67.01, 32.06, 0.15841, 4, 47, -9.21, 7.29, 0.52586, 48, -31.55, 7.29, 0.0057, 49, + -54.47, 7.29, 1e-05, 46, 60.59, -32.65, 0.46842, 3, 47, -11.3, 1.36, 0.56698, 48, -33.64, 1.36, 0.00311, 46, 66.65, -34.34, 0.42991, 3, 47, -12.66, -2.93, 0.60013, 48, -35, -2.93, + 0.00167, 46, 71.01, -35.42, 0.39821, 4, 47, -5.46, -2.97, 0.89102, 48, -27.8, -2.97, 0.03888, 49, -50.72, -2.97, 1e-05, 46, 70.59, -28.24, 0.07008, 4, 47, -4.18, 1.33, 0.83362, 48, + -26.52, 1.33, 0.04645, 49, -49.44, 1.33, 3e-05, 46, 66.21, -27.24, 0.1199, 4, 47, -2.26, 7.14, 0.75973, 48, -24.6, 7.14, 0.05134, 49, -47.52, 7.14, 0.00026, 46, 60.29, -25.7, + 0.18867, 4, 47, 7.35, 6.93, 0.57235, 48, -14.98, 6.93, 0.23863, 49, -37.91, 6.93, 0.00435, 46, 59.87, -16.09, 0.18467, 4, 47, 5.9, 1.29, 0.63011, 48, -16.44, 1.29, 0.25936, 49, + -39.36, 1.29, 0.00243, 46, 65.6, -17.18, 0.1081, 4, 47, 4.86, -3.03, 0.68809, 48, -17.48, -3.03, 0.26358, 49, -40.4, -3.03, 0.00168, 46, 69.98, -17.93, 0.04665, 4, 47, 17.76, 6.7, + 0.22941, 48, -4.58, 6.7, 0.4879, 49, -27.5, 6.7, 0.05094, 46, 59.42, -5.7, 0.23175, 4, 47, 17.11, 1.25, 0.24296, 48, -5.23, 1.25, 0.56856, 49, -28.15, 1.25, 0.04581, 46, 64.91, + -5.99, 0.14267, 4, 47, 16.71, -3.1, 0.25552, 48, -5.62, -3.1, 0.64168, 49, -28.55, -3.1, 0.03992, 46, 69.27, -6.1, 0.06288, 4, 47, 28.55, -3.17, 0.03276, 48, 6.22, -3.17, 0.62363, + 49, -16.71, -3.17, 0.27658, 46, 68.57, 5.72, 0.06703, 4, 47, 28.55, 1.2, 0.0367, 48, 6.21, 1.21, 0.54514, 49, -16.71, 1.21, 0.26974, 46, 64.21, 5.43, 0.14843, 4, 47, 28.71, 6.47, + 0.04075, 48, 6.37, 6.47, 0.46337, 49, -16.55, 6.47, 0.25797, 46, 58.95, 5.25, 0.23791, 4, 47, 39.28, 6.23, 0.00305, 48, 16.94, 6.24, 0.20572, 49, -5.98, 6.24, 0.59307, 46, 58.49, + 15.81, 0.19817, 4, 47, 39.51, 1.16, 0.00156, 48, 17.17, 1.16, 0.23228, 49, -5.75, 1.16, 0.64631, 46, 63.54, 16.37, 0.11984, 4, 47, 40.07, -3.24, 0.00112, 48, 17.74, -3.24, 0.25061, + 49, -5.19, -3.24, 0.69415, 46, 67.89, 17.22, 0.05412, 4, 47, 50.23, -3.29, 0, 48, 27.89, -3.29, 0.036, 49, 4.97, -3.29, 0.88144, 46, 67.29, 27.36, 0.08255, 4, 47, 49.51, 1.13, 2e-05, + 48, 27.17, 1.13, 0.03826, 49, 4.25, 1.13, 0.81357, 46, 62.92, 26.35, 0.14816, 4, 47, 48.55, 6.03, 0.00027, 48, 26.22, 6.03, 0.03577, 49, 3.29, 6.03, 0.72045, 46, 58.09, 25.08, + 0.24351, 4, 47, 47.11, 12.16, 0.00156, 48, 24.77, 12.16, 0.03311, 49, 1.85, 12.16, 0.61234, 46, 52.07, 23.24, 0.35299, 4, 47, 53.99, 12.19, 1e-05, 48, 31.66, 12.19, 0.00266, 49, + 8.73, 12.19, 0.47035, 46, 51.59, 30.11, 0.52698, 3, 48, 33.02, 5.88, 0.00213, 49, 10.1, 5.88, 0.54797, 46, 57.79, 31.88, 0.4499, 3, 48, 34.54, 1.1, 0.0018, 49, 11.62, 1.1, 0.63247, + 46, 62.47, 33.7, 0.36573, 3, 48, 35.58, -3.34, 0.00152, 49, 12.66, -3.34, 0.71351, 46, 66.83, 35.03, 0.28497, 3, 47, -17.72, -6.71, 0.31251, 48, -40.05, -6.71, 1e-05, 46, 75.11, + -40.22, 0.68748, 3, 47, -13.83, -6.56, 0.64755, 48, -36.17, -6.56, 0.00038, 46, 74.72, -36.36, 0.35207, 3, 47, -10.89, -6.57, 0.83546, 48, -33.23, -6.57, 0.00245, 46, 74.53, -33.42, + 0.1621, 3, 47, -6.58, -6.39, 0.9505, 48, -28.91, -6.39, 0.02598, 46, 74.07, -29.13, 0.02352, 4, 47, -2.51, -6.41, 0.9185, 48, -24.85, -6.41, 0.06986, 49, -47.77, -6.41, 1e-05, 46, + 73.83, -25.07, 0.01163, 4, 47, 3.97, -6.54, 0.7539, 48, -18.37, -6.54, 0.23416, 49, -41.29, -6.54, 0.00019, 46, 73.54, -18.6, 0.01175, 4, 47, 10.73, -6.3, 0.4945, 48, -11.61, -6.29, + 0.48778, 49, -34.53, -6.29, 0.00242, 46, 72.85, -11.87, 0.01529, 4, 47, 16.42, -6.31, 0.24467, 48, -5.92, -6.31, 0.71967, 49, -28.84, -6.31, 0.01969, 46, 72.5, -6.18, 0.01597, 4, 47, + 22.88, -6.46, 0.08074, 48, 0.54, -6.46, 0.81091, 49, -22.38, -6.46, 0.09131, 46, 72.22, 0.27, 0.01704, 4, 47, 28.51, -6.42, 0.01543, 48, 6.17, -6.42, 0.70591, 49, -16.75, -6.42, + 0.26031, 46, 71.82, 5.89, 0.01836, 4, 47, 34.97, -6.29, 0.00164, 48, 12.64, -6.29, 0.47309, 49, -10.29, -6.29, 0.50689, 46, 71.27, 12.33, 0.01837, 4, 47, 40.42, -6.47, 0.0001, 48, + 18.08, -6.47, 0.23958, 49, -4.84, -6.47, 0.7461, 46, 71.1, 17.78, 0.01421, 4, 47, 45.89, -6.5, 0, 48, 23.56, -6.5, 0.08431, 49, 0.63, -6.5, 0.9025, 46, 70.76, 23.24, 0.01319, 3, 48, + 28.36, -6.37, 0.01867, 49, 5.43, -6.37, 0.94991, 46, 70.33, 28.02, 0.03142, 3, 48, 33.31, -6.41, 0.00244, 49, 10.39, -6.41, 0.88788, 46, 70.05, 32.97, 0.10968, 3, 48, 36.23, -6.46, + 0.00046, 49, 13.31, -6.46, 0.80558, 46, 69.91, 35.88, 0.19395, 3, 48, 40.12, -6.31, 1e-05, 49, 17.2, -6.31, 0.61334, 46, 69.5, 39.76, 0.38665, 4, 47, 0.4, -6.47, 0.86555, 48, -21.94, + -6.47, 0.12959, 49, -44.86, -6.47, 1e-05, 46, 73.7, -22.16, 0.00485, 3, 47, -9.01, -6.49, 0.93616, 48, -31.35, -6.49, 0.00716, 46, 74.33, -31.55, 0.05668, 3, 47, -16.19, -6.65, + 0.44814, 48, -38.53, -6.65, 3e-05, 46, 74.96, -38.7, 0.55184, 4, 47, 7.48, -6.41, 0.63866, 48, -14.86, -6.41, 0.354, 49, -37.78, -6.41, 0.00037, 46, 73.18, -15.1, 0.00698, 4, 47, + 13.4, -6.3, 0.36468, 48, -8.94, -6.3, 0.62161, 49, -31.86, -6.3, 0.00581, 46, 72.69, -9.2, 0.0079, 4, 47, 19.68, -6.38, 0.14684, 48, -2.65, -6.38, 0.80383, 49, -25.58, -6.38, + 0.04176, 46, 72.36, -2.92, 0.00757, 4, 47, 25.54, -6.44, 0.03499, 48, 3.2, -6.44, 0.79745, 49, -19.72, -6.44, 0.15898, 46, 72.03, 2.92, 0.00858, 4, 47, 31.96, -6.35, 0.00417, 48, + 9.62, -6.35, 0.60634, 49, -13.3, -6.35, 0.37927, 46, 71.53, 9.32, 0.01022, 4, 47, 37.62, -6.38, 0.00021, 48, 15.28, -6.38, 0.35157, 49, -7.64, -6.38, 0.63918, 46, 71.18, 14.97, + 0.00904, 4, 47, 43.32, -6.48, 1e-05, 48, 20.98, -6.48, 0.14688, 49, -1.94, -6.48, 0.84692, 46, 70.92, 20.67, 0.00619, 3, 48, 25.81, -6.44, 0.03919, 49, 2.89, -6.44, 0.95006, 46, + 70.56, 25.48, 0.01074, 3, 48, 30.92, -6.39, 0.00591, 49, 7.99, -6.39, 0.9433, 46, 70.18, 30.58, 0.05079, 3, 48, 38.04, -6.39, 5e-05, 49, 15.12, -6.39, 0.72615, 46, 69.72, 37.69, + 0.2738 + ], + "hull": 46, + "edges": [ + 80, 82, 90, 0, 10, 8, 70, 72, 72, 74, 74, 76, 4, 6, 6, 8, 76, 78, 78, 80, 4, 2, 2, 0, 72, 92, 74, 94, 92, 94, 76, 96, 94, 96, 78, 98, 96, 98, 80, 100, 98, 100, 82, 84, 84, 86, 86, + 88, 88, 90, 0, 104, 2, 106, 104, 106, 4, 108, 106, 108, 6, 110, 108, 110, 8, 112, 110, 112, 10, 12, 102, 114, 114, 116, 116, 118, 118, 120, 122, 124, 124, 126, 126, 128, 128, 130, + 132, 100, 134, 102, 136, 104, 84, 138, 138, 132, 86, 140, 140, 134, 138, 140, 88, 142, 142, 136, 140, 142, 144, 146, 146, 148, 148, 150, 150, 152, 134, 154, 154, 136, 144, 154, 132, + 156, 156, 134, 122, 156, 102, 158, 158, 122, 114, 160, 160, 124, 158, 160, 160, 162, 162, 164, 164, 166, 100, 168, 168, 122, 98, 170, 170, 124, 168, 170, 170, 172, 172, 174, 174, + 176, 102, 178, 178, 144, 114, 180, 180, 146, 178, 180, 180, 182, 182, 184, 184, 186, 104, 188, 188, 144, 188, 190, 190, 192, 192, 194, 194, 196, 96, 198, 198, 172, 94, 200, 200, 174, + 198, 200, 92, 202, 202, 176, 200, 202, 64, 66, 58, 60, 130, 204, 204, 176, 128, 206, 206, 174, 204, 206, 126, 208, 208, 172, 206, 208, 126, 210, 210, 162, 128, 212, 212, 164, 210, + 212, 130, 214, 214, 166, 212, 214, 116, 216, 216, 162, 118, 218, 218, 164, 216, 218, 120, 220, 220, 166, 218, 220, 120, 222, 222, 186, 118, 224, 224, 184, 222, 224, 116, 226, 226, + 182, 224, 226, 148, 228, 228, 182, 150, 230, 230, 184, 228, 230, 152, 232, 232, 186, 230, 232, 152, 234, 234, 196, 150, 236, 236, 194, 234, 236, 148, 238, 238, 192, 236, 238, 146, + 240, 240, 190, 238, 240, 106, 242, 242, 190, 108, 244, 244, 192, 242, 244, 110, 246, 246, 194, 244, 246, 112, 248, 248, 196, 246, 248, 16, 18, 70, 250, 250, 92, 66, 252, 252, 202, + 64, 254, 254, 176, 252, 254, 60, 256, 256, 204, 58, 258, 258, 130, 256, 258, 54, 260, 260, 214, 50, 262, 262, 166, 46, 264, 264, 220, 42, 266, 266, 120, 38, 268, 268, 222, 34, 270, + 270, 186, 30, 272, 272, 232, 26, 274, 274, 152, 22, 276, 276, 234, 18, 278, 278, 196, 16, 280, 280, 248, 278, 280, 12, 282, 282, 112, 258, 284, 284, 260, 54, 56, 56, 58, 284, 56, + 254, 286, 286, 256, 60, 62, 62, 64, 286, 62, 250, 288, 288, 252, 66, 68, 68, 70, 288, 68, 260, 290, 290, 262, 50, 52, 52, 54, 290, 52, 262, 292, 292, 264, 46, 48, 48, 50, 292, 48, + 264, 294, 294, 266, 42, 44, 44, 46, 294, 44, 266, 296, 296, 268, 38, 40, 40, 42, 296, 40, 268, 298, 298, 270, 34, 36, 36, 38, 298, 36, 270, 300, 300, 272, 30, 32, 32, 34, 300, 32, + 272, 302, 302, 274, 26, 28, 28, 30, 302, 28, 274, 304, 304, 276, 22, 24, 24, 26, 304, 24, 276, 306, 306, 278, 18, 20, 20, 22, 306, 20, 280, 308, 308, 282, 12, 14, 14, 16, 308, 14 + ], + "width": 87.05882352941177, + "height": 80.0, + "path": "summer-a.ear-left-bubble", + "x": 0.470588235294116, + "y": 0.0 + } }, - "horn": {"horn": {"x": 111.76, "y": 4.76, "rotation": -90, "width": 210, "height": 263, "path": "bird-12.horn"}}, - "mouth": { - "mouth": {"x": 2.66, "y": 67.48, "width": 100, "height": 124, "path": "bird-12.mouth"}, - "mouth-bite": {"x": 8.66, "y": 73.98, "width": 140, "height": 111, "path": "bird-12.mouth-bite"}, - "mouth-open": {"x": 3.16, "y": 55.48, "width": 99, "height": 180, "path": "bird-12.mouth-open"}, - "mouth-smile": {"x": 11.66, "y": 67.48, "width": 118, "height": 124, "path": "bird-12.mouth-smile"} + "ear-left-dot-01": { + "ear-left-dot": {"x": 0.5611764705882355, "y": 1.5111764705882353, "rotation": -0.95, "width": 14.117647058823529, "height": 14.117647058823529, "path": "summer-a.ear-left-dot"} }, - "tail": {"tail": {"x": 186.85, "y": 17.4, "rotation": -32, "width": 342, "height": 303, "path": "bird-12.tail"}} - } - } - ], - "events": {"hit": {}, "hit-buff": {}, "jump": {}, "start-attack": {}}, - "keyAnimations": { - "activity/appear": "1023093953", - "activity/bath": "3305387968", - "attack/ranged/cast-fly": "4180526371", - "attack/ranged/cast-high": "164191126", - "attack/ranged/cast-low": "198813017", - "attack/ranged/cast-multi": "151119", - "attack/ranged/cast-tail": "997902532", - "activity/eat-bite": "1137807767", - "activity/eat-chew": "1988236421", - "activity/entrance": "3768378365", - "defense/evade": "1735454995", - "activity/evolve": "649307630", - "battle/get-buff": "1455190363", - "battle/get-debuff": "606904312", - "defense/hit-by-normal": "2045974966", - "defense/hit-by-normal-crit": "2130010601", - "defense/hit-by-normal-dramatic": "3823092125", - "defense/hit-by-ranged-attack": "2224561612", - "defense/hit-with-shield": "390714790", - "attack/melee/horn-gore": "1327954218", - "attack/melee/mouth-bite": "2237748264", - "action/move-back": "3766271173", - "action/move-forward": "2945160014", - "attack/melee/multi-attack": "905926802", - "action/idle/normal": "1659336865", - "attack/melee/normal-attack": "3305373483", - "activity/prepare": "405864717", - "action/idle/random-01": "554401889", - "action/idle/random-02": "1085666627", - "action/idle/random-03": "2021333900", - "action/idle/random-04": "1003789695", - "action/idle/random-05": "2745614147", - "action/run": "1438840721", - "draft/run-origin": "3577885069", - "attack/melee/shrimp": "3833448733", - "activity/sleep": "100562494", - "attack/melee/tail-multi-slap": "3317139533", - "attack/melee/tail-roll": "3108617565", - "attack/melee/tail-smash": "519942130", - "attack/melee/tail-thrash": "628713175", - "activity/victory-pose-back-flip": "2227634241" - } - }, - "beast-12": { - "bones": [ - {"name": "@root"}, {"name": "@pivot-main", "parent": "@root"}, {"name": "@pivot-back", "parent": "@pivot-main", "x": 205, "y": 180, "color": "ff0101ff"}, - {"name": "@pivot-center", "parent": "@pivot-back", "x": -215.11, "y": -5.25, "color": "ff0101ff"}, - {"name": "@axie", "parent": "@pivot-center", "length": 213.28, "rotation": 179.04, "x": 196.39, "y": 5.16}, {"name": "@back", "parent": "@axie", "rotation": -179.04, "x": 37.63, "y": -198.19}, - {"name": "back", "parent": "@back", "length": 149.41, "rotation": 58, "x": -13.97, "y": 26.3, "transform": "noScale"}, - {"name": "@body", "parent": "@axie", "length": 226.28, "rotation": -8.35, "x": 224.58, "y": -0.53}, {"name": "@ear-left", "parent": "@axie", "rotation": -179.04, "x": 112.7, "y": -203.23}, - {"name": "ear-left", "parent": "@ear-left", "length": 113.61, "rotation": 90, "x": -27, "y": 19, "transform": "noScale"}, - {"name": "@ear-right", "parent": "@axie", "rotation": -179.04, "x": 405.28, "y": -235.33}, - {"name": "ear-right", "parent": "@ear-right", "length": 119.39, "rotation": 93, "x": -30, "y": -15, "transform": "noScale"}, - {"name": "@eyes", "parent": "@axie", "rotation": -179.04, "x": 384.24, "y": -113.67}, {"name": "@horn", "parent": "@axie", "rotation": -179.04, "x": 327.92, "y": -214.63}, - {"name": "horn", "parent": "@horn", "length": 176.72, "rotation": 90, "y": 18, "transform": "noScale"}, - {"name": "@leg-back-left", "parent": "@axie", "length": 76.4, "rotation": 100.96, "x": -15.3, "y": 102.56, "transform": "noScale"}, - {"name": "@leg-front-left", "parent": "@axie", "length": 51.19, "rotation": 93.86, "x": 134.77, "y": 149.55, "transform": "noScale"}, - {"name": "@leg-front-right", "parent": "@axie", "length": 74.83, "rotation": 83.2, "x": 382.95, "y": 121.78, "transform": "noScale"}, - {"name": "@mouth", "parent": "@axie", "rotation": -179.04, "x": 382.23, "y": 6.31}, - {"name": "body-pattern", "parent": "@body", "rotation": -170.69, "x": -267.21, "y": -49.4, "transform": "noScale"}, {"name": "@shadow", "parent": "@root", "color": "e6d713ff"}, - {"name": "@tail", "parent": "@axie", "rotation": -179.04, "x": -11.76, "y": 61.72}, - {"name": "tail", "parent": "@tail", "length": 203.67, "rotation": -12, "x": 16, "y": 72.87, "transform": "noScale"}, - {"name": "leg-front-right-IK", "parent": "@pivot-main", "x": -195.99, "y": -10.21, "color": "ff3f00ff"}, - {"name": "leg-front-left-IK", "parent": "@pivot-main", "x": 42.3, "y": -18.42, "color": "ff3f00ff"}, - {"name": "leg-back-left-IK", "parent": "@pivot-main", "x": 208.57, "y": 1.35, "color": "ff3f00ff"}, {"name": "@ball", "parent": "@root", "y": 191, "color": "f3981bff"}, - {"name": "ball", "parent": "@ball", "y": -191, "color": "f4a729ff"} - ], - "slots": [ - {"name": "shadow", "bone": "@shadow", "attachment": "shadow"}, {"name": "ball", "bone": "ball"}, {"name": "leg-front-right", "bone": "@leg-front-right", "attachment": "leg-front-right"}, - {"name": "tail", "bone": "tail", "attachment": "tail"}, {"name": "back", "bone": "back", "attachment": "back"}, - {"name": "leg-back-left", "bone": "@leg-back-left", "attachment": "leg-back-left"}, {"name": "body", "bone": "@body", "attachment": "body"}, - {"name": "ear-right", "bone": "ear-right", "attachment": "ear-right"}, {"name": "body-pattern", "bone": "body-pattern"}, - {"name": "leg-front-left", "bone": "@leg-front-left", "attachment": "leg-front-left"}, {"name": "eyes", "bone": "@eyes", "attachment": "eyes"}, - {"name": "mouth", "bone": "@mouth", "attachment": "mouth"}, {"name": "ear-left", "bone": "ear-left", "attachment": "ear-left"}, {"name": "horn", "bone": "horn", "attachment": "horn"} - ], - "ik": [ - {"name": "leg-back-left-IK", "order": 2, "bones": ["@leg-back-left"], "target": "leg-back-left-IK"}, - {"name": "leg-front-left-IK", "order": 1, "bones": ["@leg-front-left"], "target": "leg-front-left-IK"}, - {"name": "leg-front-right-IK", "bones": ["@leg-front-right"], "target": "leg-front-right-IK"} - ], - "skins": [ - { - "name": "default", - "attachments": { - "back": {"back": {"x": 82.39, "y": 103.17, "rotation": -58, "width": 276, "height": 259, "path": "beast-12.back"}}, - "ear-left": {"ear-left": {"x": -25.9, "y": -78.79, "rotation": -90, "width": 123, "height": 112, "path": "beast-12.ear-left"}}, - "ear-right": {"ear-right": {"x": -26.48, "y": 55.29, "rotation": -93, "width": 86, "height": 105, "path": "beast-12.ear-right"}}, - "eyes": { - "eyes": {"x": 25.62, "y": 19.83, "width": 283, "height": 94, "path": "beast-12.eyes"}, - "eyes-angry": {"x": 25.62, "y": 16.33, "width": 283, "height": 79, "path": "beast-12.eyes-angry"}, - "eyes-happy": {"x": 25.62, "y": 28.33, "width": 283, "height": 109, "path": "beast-12.eyes-happy"}, - "eyes-shut": {"x": 25.62, "y": 20.83, "width": 283, "height": 92, "path": "beast-12.eyes-shut"} + "ear-left-dot-02": { + "ear-left-dot": {"x": 0.5611764705882355, "y": 1.5111764705882353, "rotation": -0.95, "width": 14.117647058823529, "height": 14.117647058823529, "path": "summer-a.ear-left-dot"} }, - "horn": {"horn": {"x": 91.54, "y": -38.17, "rotation": -90, "width": 256, "height": 169, "path": "beast-12.horn"}}, - "mouth": { - "mouth": {"x": 12.62, "y": 46.83, "width": 121, "height": 106, "path": "beast-12.mouth"}, - "mouth-bite": {"x": 33.12, "y": 41.83, "width": 278, "height": 116, "path": "beast-12.mouth-bite"}, - "mouth-open": {"x": 14.12, "y": 6.33, "width": 124, "height": 189, "path": "beast-12.mouth-open"}, - "mouth-smile": {"x": 13.62, "y": 48.83, "width": 161, "height": 104, "path": "beast-12.mouth-smile"} + "ear-left-dot-03": { + "ear-left-dot": {"x": 0.5611764705882355, "y": 1.5111764705882353, "rotation": -0.95, "width": 14.117647058823529, "height": 14.117647058823529, "path": "summer-a.ear-left-dot"} + }, + "ear-left-dot-04": { + "ear-left-dot": {"x": 0.5611764705882355, "y": 1.5111764705882353, "rotation": -0.95, "width": 14.117647058823529, "height": 14.117647058823529, "path": "summer-a.ear-left-dot"} + }, + "ear-left-dot-05": { + "ear-left-dot": {"x": 0.5611764705882355, "y": 1.5111764705882353, "rotation": -0.95, "width": 14.117647058823529, "height": 14.117647058823529, "path": "summer-a.ear-left-dot"} + }, + "ear-left-dot-06": { + "ear-left-dot": {"x": 0.5611764705882355, "y": 1.5111764705882353, "rotation": -0.95, "width": 14.117647058823529, "height": 14.117647058823529, "path": "summer-a.ear-left-dot"} + }, + "ear-left-dot-07": { + "ear-left-dot": {"x": 0.5611764705882355, "y": 1.5111764705882353, "rotation": -0.95, "width": 14.117647058823529, "height": 14.117647058823529, "path": "summer-a.ear-left-dot"} + }, + "ear-left-dot-08": { + "ear-left-dot": {"x": 0.5611764705882355, "y": 1.5111764705882353, "rotation": -0.95, "width": 14.117647058823529, "height": 14.117647058823529, "path": "summer-a.ear-left-dot"} + }, + "ear-left-dot-09": { + "ear-left-dot": {"x": 0.5611764705882355, "y": 1.5111764705882353, "rotation": -0.95, "width": 14.117647058823529, "height": 14.117647058823529, "path": "summer-a.ear-left-dot"} + }, + "ear-left-dot-10": { + "ear-left-dot": {"x": 0.5611764705882355, "y": 1.5111764705882353, "rotation": -0.95, "width": 14.117647058823529, "height": 14.117647058823529, "path": "summer-a.ear-left-dot"} + }, + "ear-left-dot-11": { + "ear-left-dot": {"x": 0.5611764705882355, "y": 1.5111764705882353, "rotation": -0.95, "width": 14.117647058823529, "height": 14.117647058823529, "path": "summer-a.ear-left-dot"} + }, + "ear-left-dot-12": { + "ear-left-dot": {"x": 0.5611764705882355, "y": 1.5111764705882353, "rotation": -0.95, "width": 14.117647058823529, "height": 14.117647058823529, "path": "summer-a.ear-left-dot"} + }, + "ear-left-under": { + "ear-left-under": {"x": 84.40411764705883, "y": -22.781764705882363, "rotation": -90, "width": 129.41176470588235, "height": 218.82352941176472, "path": "summer-a.ear-left-under"} + }, + "ear-left-upper": { + "ear-left-upper": {"x": 86.34529411764706, "y": -23.664117647058827, "rotation": -90, "width": 143.52941176470588, "height": 230.58823529411765, "path": "summer-a.ear-left-upper"} + }, + "ear-right-bubble": { + "ear-right-bubble": { + "type": "mesh", + "uvs": [ + 0.93928, 0.50958, 0.95558, 0.59885, 0.96791, 0.66638, 0.98006, 0.73289, 1, 0.84205, 1, 0.89818, 1, 0.9625, 0.9567, 0.9625, 0.9208, 0.9625, 0.88771, 0.9625, 0.83969, 0.9625, 0.79967, + 0.9625, 0.76574, 0.9625, 0.73418, 0.9625, 0.69508, 0.9625, 0.6661, 0.9625, 0.6319, 0.9625, 0.6046, 0.9625, 0.57454, 0.9625, 0.53755, 0.9625, 0.50387, 0.9625, 0.47341, 0.9625, + 0.44466, 0.9625, 0.41233, 0.9625, 0.37317, 0.9625, 0.33787, 0.9625, 0.30333, 0.9625, 0.2648, 0.9625, 0.21937, 0.9625, 0.17434, 0.9625, 0.12959, 0.9625, 0.08769, 0.9625, 0, 0.9625, + 0.02085, 0.89779, 0.04055, 0.83664, 0.06626, 0.75682, 0.08854, 0.68766, 0.11527, 0.60468, 0.13788, 0.53451, 0.35753, 0.0375, 0.43128, 0.0375, 0.52161, 0.0375, 0.60662, 0.0375, + 0.67954, 0.0375, 0.54109, 0.5336, 0.30907, 0.53412, 0.75362, 0.52077, 0.84707, 0.51514, 0.2081, 0.53435, 0.42115, 0.53387, 0.64269, 0.52747, 0.1892, 0.60156, 0.3018, 0.60447, + 0.41972, 0.60346, 0.54053, 0.60135, 0.64648, 0.59785, 0.76151, 0.59644, 0.87262, 0.58988, 0.16806, 0.67676, 0.29497, 0.67061, 0.41838, 0.66857, 0.54, 0.66508, 0.65011, 0.66538, + 0.7681, 0.65967, 0.89666, 0.66021, 0.14733, 0.75044, 0.28705, 0.74721, 0.41688, 0.74143, 0.53942, 0.73556, 0.6538, 0.73393, 0.7757, 0.7326, 0.91933, 0.7265, 0.12337, 0.83566, 0.2782, + 0.83283, 0.4151, 0.82771, 0.53871, 0.82207, 0.65852, 0.82169, 0.7847, 0.8189, 0.95379, 0.82732, 0.97627, 0.89309, 0.79208, 0.88971, 0.66236, 0.89294, 0.5381, 0.89586, 0.41375, + 0.89349, 0.2717, 0.89571, 0.10571, 0.89844, 0.53197, 0.30141, 0.39415, 0.1884, 0.65961, 0.2117, 0.25473, 0.53425, 0.24202, 0.60293, 0.22911, 0.6738, 0.21379, 0.7489, 0.19729, + 0.83431, 0.18704, 0.8971, 0.36352, 0.534, 0.36013, 0.60397, 0.35748, 0.66957, 0.35288, 0.74428, 0.34802, 0.83022, 0.34383, 0.89458, 0.48024, 0.53373, 0.47847, 0.60244, 0.47433, + 0.66696, 0.47563, 0.73861, 0.47402, 0.82502, 0.47337, 0.89463, 0.58955, 0.53067, 0.59344, 0.5996, 0.59605, 0.66523, 0.5961, 0.73475, 0.60032, 0.82187, 0.60296, 0.89434, 0.69391, + 0.52438, 0.69915, 0.59721, 0.70691, 0.66263, 0.71206, 0.7333, 0.71954, 0.82034, 0.72813, 0.8913, 0.80125, 0.5179, 0.81428, 0.59333, 0.8348, 0.65995, 0.84793, 0.72953, 0.87862, + 0.82358, 0.89305, 0.89156, 0.19669, 0.67537, 0.17782, 0.74974, 0.1594, 0.835, 0.1429, 0.89783, 0.26012, 0.6723, 0.25017, 0.74806, 0.23685, 0.83359, 0.22589, 0.89647, 0.30659, + 0.89517, 0.3131, 0.83153, 0.31569, 0.74593, 0.32231, 0.67016, 0.38717, 0.66908, 0.38553, 0.74282, 0.38068, 0.829, 0.37648, 0.89407, 0.44462, 0.89408, 0.44322, 0.82643, 0.44458, + 0.7401, 0.44621, 0.66777, 0.50711, 0.66602, 0.50646, 0.73714, 0.50582, 0.82357, 0.50482, 0.89523, 0.57134, 0.89508, 0.5687, 0.82197, 0.56865, 0.73514, 0.5654, 0.66515, 0.62192, + 0.6653, 0.6236, 0.73436, 0.62525, 0.8218, 0.62839, 0.89374, 0.69427, 0.89215, 0.76244, 0.89045, 0.84047, 0.89059, 0.93306, 0.89229, 0.91732, 0.8255, 0.82617, 0.82097, 0.75013, + 0.81967, 0.6863, 0.82108, 0.68017, 0.73364, 0.74166, 0.73297, 0.80979, 0.73115, 0.88285, 0.72805, 0.86581, 0.66008, 0.79931, 0.6598, 0.73613, 0.66121, 0.67214, 0.66431, 0.09776, + 0.92671, 0.13724, 0.92534, 0.1817, 0.92459, 0.22313, 0.92439, 0.26892, 0.92268, 0.30526, 0.92265, 0.34139, 0.92236, 0.3751, 0.92252, 0.41313, 0.92351, 0.44464, 0.92289, 0.47339, + 0.92339, 0.5044, 0.9248, 0.53787, 0.92389, 0.57268, 0.92341, 0.60366, 0.9233, 0.62995, 0.92432, 0.66398, 0.92316, 0.69464, 0.92383, 0.73085, 0.92333, 0.76403, 0.92521, 0.79572, + 0.92461, 0.84011, 0.92404, 0.89075, 0.92209, 0.92774, 0.92274, 0.96706, 0.92576 + ], + "triangles": [ + 8, 196, 7, 9, 195, 8, 8, 195, 196, 10, 194, 9, 9, 194, 195, 10, 11, 194, 12, 193, 11, 11, 193, 194, 13, 192, 12, 12, 192, 193, 14, 191, 13, 13, 191, 192, 15, 190, 14, 14, 190, 191, + 15, 189, 190, 191, 158, 192, 192, 80, 193, 192, 158, 80, 194, 193, 159, 194, 159, 195, 159, 193, 80, 189, 157, 190, 190, 118, 191, 190, 157, 118, 191, 118, 158, 189, 81, 157, 195, + 124, 196, 196, 124, 160, 195, 159, 124, 81, 164, 157, 81, 76, 164, 157, 117, 118, 157, 164, 117, 159, 123, 124, 124, 123, 161, 118, 163, 158, 118, 117, 163, 80, 162, 159, 159, 162, + 123, 158, 77, 80, 158, 163, 77, 80, 77, 162, 162, 122, 123, 76, 165, 164, 76, 69, 165, 164, 116, 117, 164, 165, 116, 77, 167, 162, 117, 166, 163, 117, 116, 166, 163, 70, 77, 163, + 166, 70, 77, 70, 167, 165, 115, 116, 116, 171, 166, 166, 63, 70, 146, 103, 145, 68, 61, 152, 68, 145, 61, 151, 152, 109, 110, 153, 154, 143, 144, 104, 16, 189, 15, 17, 188, 16, 16, + 188, 189, 18, 187, 17, 17, 187, 188, 18, 19, 186, 19, 185, 186, 18, 186, 187, 20, 184, 19, 19, 184, 185, 20, 21, 184, 22, 183, 21, 21, 183, 184, 23, 181, 22, 181, 182, 22, 22, 182, + 183, 184, 148, 185, 184, 183, 148, 187, 156, 188, 188, 81, 189, 188, 156, 81, 185, 149, 186, 185, 82, 149, 185, 148, 82, 182, 83, 141, 182, 181, 83, 186, 112, 187, 186, 149, 112, + 182, 106, 183, 183, 106, 148, 187, 112, 156, 182, 141, 106, 150, 149, 82, 147, 75, 82, 82, 148, 147, 82, 75, 150, 106, 105, 148, 148, 105, 147, 149, 111, 112, 149, 150, 111, 105, + 106, 142, 112, 155, 156, 112, 111, 155, 83, 74, 141, 74, 142, 141, 106, 141, 142, 156, 76, 81, 156, 155, 76, 74, 67, 142, 142, 143, 105, 142, 67, 143, 105, 104, 147, 105, 143, 104, + 147, 146, 75, 147, 104, 146, 75, 68, 150, 75, 146, 68, 68, 151, 150, 150, 110, 111, 150, 151, 110, 111, 154, 155, 111, 110, 154, 155, 69, 76, 155, 154, 69, 104, 103, 146, 146, 145, + 68, 68, 152, 151, 151, 109, 110, 24, 180, 23, 25, 179, 24, 24, 179, 180, 26, 178, 25, 25, 178, 179, 27, 177, 26, 26, 177, 178, 28, 176, 27, 27, 176, 177, 29, 175, 28, 28, 175, 176, + 30, 174, 29, 29, 174, 175, 31, 173, 30, 30, 173, 174, 174, 128, 175, 174, 85, 128, 175, 94, 176, 175, 128, 94, 176, 132, 177, 176, 94, 132, 180, 140, 181, 177, 84, 178, 177, 132, 84, + 178, 133, 179, 178, 84, 133, 179, 100, 180, 180, 100, 140, 179, 133, 100, 128, 127, 94, 94, 93, 132, 94, 127, 93, 132, 131, 84, 132, 93, 131, 84, 73, 133, 84, 131, 73, 133, 134, 100, + 133, 73, 134, 100, 99, 140, 100, 134, 99, 140, 139, 83, 140, 99, 139, 93, 92, 131, 131, 130, 73, 131, 92, 130, 73, 66, 134, 73, 130, 66, 134, 135, 99, 134, 66, 135, 99, 98, 139, 99, + 135, 98, 139, 138, 74, 139, 98, 138, 74, 138, 67, 130, 129, 66, 66, 59, 135, 135, 136, 98, 135, 59, 136, 98, 97, 138, 98, 136, 97, 138, 137, 67, 23, 180, 181, 181, 140, 83, 83, 139, + 74, 128, 72, 127, 127, 126, 93, 93, 126, 92, 126, 125, 92, 85, 34, 72, 168, 64, 71, 168, 169, 64, 65, 58, 126, 126, 58, 125, 59, 52, 136, 69, 172, 165, 165, 172, 115, 116, 115, 171, + 154, 62, 69, 120, 170, 56, 65, 36, 58, 58, 51, 125, 37, 38, 51, 51, 48, 90, 51, 38, 48, 78, 3, 4, 64, 169, 57, 121, 120, 57, 120, 47, 57, 67, 137, 60, 143, 60, 144, 144, 103, 104, + 110, 109, 153, 154, 153, 62, 69, 62, 172, 97, 136, 96, 97, 96, 137, 96, 136, 52, 60, 137, 53, 60, 53, 144, 53, 137, 96, 103, 144, 102, 103, 102, 145, 102, 144, 53, 61, 145, 54, 172, + 62, 55, 55, 62, 153, 152, 108, 109, 55, 153, 108, 153, 109, 108, 61, 54, 152, 152, 54, 108, 54, 145, 102, 172, 114, 115, 172, 55, 114, 115, 114, 171, 171, 114, 56, 90, 89, 52, 52, + 45, 96, 52, 89, 45, 96, 95, 53, 96, 45, 95, 53, 49, 102, 53, 95, 49, 90, 48, 89, 102, 101, 54, 102, 49, 101, 54, 44, 108, 44, 107, 108, 54, 101, 44, 55, 108, 50, 108, 107, 50, 55, + 113, 114, 55, 50, 113, 114, 46, 56, 114, 113, 46, 56, 119, 120, 56, 46, 119, 120, 119, 47, 57, 47, 0, 87, 48, 38, 87, 89, 48, 87, 45, 89, 87, 95, 45, 49, 95, 86, 87, 38, 39, 101, 49, + 86, 87, 86, 95, 101, 86, 44, 41, 87, 40, 87, 41, 86, 44, 86, 107, 107, 86, 50, 50, 86, 113, 46, 113, 88, 119, 46, 88, 47, 119, 88, 86, 88, 113, 47, 88, 0, 0, 88, 43, 88, 41, 42, 88, + 86, 41, 88, 42, 43, 87, 39, 40, 57, 0, 1, 1, 64, 57, 64, 1, 2, 71, 2, 3, 58, 37, 51, 36, 37, 58, 91, 51, 90, 35, 36, 65, 125, 51, 91, 34, 35, 72, 72, 35, 65, 33, 34, 85, 169, 121, + 57, 171, 56, 63, 170, 63, 56, 138, 97, 137, 67, 60, 143, 59, 129, 52, 52, 129, 90, 71, 64, 2, 3, 78, 71, 78, 161, 71, 91, 90, 129, 170, 120, 121, 122, 121, 169, 161, 168, 71, 92, + 125, 91, 72, 65, 127, 127, 65, 126, 122, 169, 168, 92, 91, 130, 130, 91, 129, 123, 122, 168, 166, 171, 63, 70, 170, 167, 70, 63, 170, 167, 121, 122, 167, 170, 121, 66, 129, 59, 85, + 32, 33, 173, 85, 174, 31, 32, 173, 173, 32, 85, 85, 72, 128, 6, 197, 79, 162, 167, 122, 7, 197, 6, 160, 161, 78, 197, 160, 79, 196, 160, 197, 7, 196, 197, 124, 161, 160, 160, 78, 79, + 123, 168, 161, 6, 79, 5, 79, 78, 4, 79, 4, 5 + ], + "vertices": [ + 1, 31, 39.72, 33.4, 1, 1, 31, 46.93, 34.38, 1, 1, 31, 52.37, 35.12, 1, 1, 31, 58.6, 36.08, 1, 4, 31, 66.62, 38.45, 0.9295, 36, 61.48, 0.37, 1e-05, 37, 40.07, 0.48, 0.00266, 38, 18.6, + 0.48, 0.06784, 4, 31, 70.87, 39.07, 0.79905, 36, 62.32, -3.84, 1e-05, 37, 40.92, -3.73, 0.00721, 38, 19.44, -3.73, 0.19373, 4, 31, 76.95, 40.59, 0.74731, 36, 64.15, -9.83, 0, 37, + 42.75, -9.72, 0.00973, 38, 21.27, -9.72, 0.24296, 4, 31, 76.59, 36.12, 0.54785, 36, 59.68, -9.71, 1e-05, 37, 38.27, -9.6, 0.02168, 38, 16.8, -9.6, 0.43046, 4, 31, 76.3, 32.42, + 0.43038, 36, 55.96, -9.61, 3e-05, 37, 34.56, -9.5, 0.03847, 38, 13.08, -9.5, 0.53112, 4, 31, 76.02, 29.01, 0.36035, 36, 52.54, -9.51, 9e-05, 37, 31.14, -9.41, 0.06275, 38, 9.66, + -9.41, 0.57681, 4, 31, 75.63, 24.06, 0.2889, 36, 47.58, -9.38, 0.00026, 37, 26.17, -9.27, 0.09917, 38, 4.7, -9.27, 0.61167, 4, 31, 75.3, 19.93, 0.22591, 36, 43.44, -9.26, 0.0007, 37, + 22.03, -9.16, 0.14876, 38, 0.56, -9.16, 0.62463, 4, 31, 75.15, 17.12, 0.17724, 36, 40.62, -9.26, 0.0017, 37, 19.22, -9.16, 0.21115, 38, -2.26, -9.16, 0.60991, 4, 31, 75.01, 14.5, + 0.14418, 36, 38, -9.26, 0.00385, 37, 16.6, -9.16, 0.28407, 38, -4.88, -9.16, 0.5679, 4, 31, 74.84, 11.26, 0.12448, 36, 34.76, -9.26, 0.00813, 37, 13.35, -9.16, 0.36326, 38, -8.12, + -9.16, 0.50413, 4, 31, 74.71, 8.86, 0.11438, 36, 32.35, -9.26, 0.016, 37, 10.95, -9.16, 0.44276, 38, -10.53, -9.16, 0.42686, 4, 31, 74.56, 6.02, 0.11006, 36, 29.51, -9.26, 0.02948, + 37, 8.11, -9.16, 0.51561, 38, -13.37, -9.16, 0.34486, 4, 31, 74.45, 3.76, 0.10858, 36, 27.25, -9.26, 0.05095, 37, 5.84, -9.16, 0.57474, 38, -15.63, -9.16, 0.26573, 4, 31, 74.31, + 1.27, 0.10802, 36, 24.75, -9.26, 0.08291, 37, 3.35, -9.16, 0.614, 38, -18.13, -9.16, 0.19506, 4, 31, 74.15, -1.8, 0.1074, 36, 21.68, -9.26, 0.12742, 37, 0.28, -9.16, 0.62906, 38, + -21.2, -9.16, 0.13612, 4, 31, 74.01, -4.59, 0.10634, 36, 18.89, -9.26, 0.18549, 37, -2.52, -9.16, 0.61812, 38, -23.99, -9.16, 0.09006, 4, 31, 73.87, -7.11, 0.10502, 36, 16.36, -9.26, + 0.25646, 37, -5.05, -9.16, 0.58221, 38, -26.52, -9.16, 0.05631, 4, 31, 73.75, -9.5, 0.10419, 36, 13.97, -9.26, 0.33753, 37, -7.43, -9.16, 0.52513, 38, -28.91, -9.16, 0.03316, 4, 31, + 73.61, -12.18, 0.10536, 36, 11.29, -9.26, 0.42349, 37, -10.12, -9.16, 0.45282, 38, -31.59, -9.16, 0.01833, 4, 31, 73.44, -15.42, 0.11098, 36, 8.04, -9.26, 0.50701, 37, -13.37, -9.16, + 0.37254, 38, -34.84, -9.16, 0.00948, 4, 31, 73.28, -18.35, 0.12436, 36, 5.11, -9.26, 0.57939, 37, -16.3, -9.16, 0.29168, 38, -37.77, -9.16, 0.00457, 4, 31, 73.13, -21.21, 0.149, 36, + 2.24, -9.26, 0.63222, 37, -19.16, -9.16, 0.21673, 38, -40.64, -9.16, 0.00205, 4, 31, 72.96, -24.4, 0.18726, 36, -0.96, -9.26, 0.65948, 37, -22.36, -9.16, 0.15241, 38, -43.84, -9.16, + 0.00085, 4, 31, 72.77, -28.17, 0.23866, 36, -4.73, -9.26, 0.65975, 37, -26.13, -9.16, 0.10126, 38, -47.61, -9.16, 0.00033, 4, 31, 72.57, -31.9, 0.29871, 36, -8.46, -9.26, 0.63741, + 37, -29.87, -9.16, 0.06376, 38, -51.34, -9.16, 0.00012, 4, 31, 72.37, -35.61, 0.35932, 36, -12.18, -9.26, 0.60181, 37, -33.58, -9.16, 0.03884, 38, -55.06, -9.16, 4e-05, 4, 31, 72.19, + -39.08, 0.49297, 36, -15.66, -9.26, 0.48586, 37, -37.06, -9.16, 0.02116, 38, -58.54, -9.16, 1e-05, 4, 31, 71.81, -46.35, 0.66969, 36, -22.93, -9.26, 0.32512, 37, -44.34, -9.16, + 0.00518, 38, -65.81, -9.16, 0, 4, 31, 66.73, -44.35, 0.73638, 36, -21.2, -4.09, 0.26049, 37, -42.61, -3.98, 0.00313, 38, -64.08, -3.98, 0, 4, 31, 61.93, -42.46, 0.74288, 36, -19.57, + 0.8, 0.25402, 37, -40.97, 0.91, 0.00309, 38, -62.45, 0.91, 1e-05, 2, 31, 55.67, -40, 0.86, 36, -17.44, 7.19, 0.14, 2, 31, 50.24, -37.86, 0.87418, 36, -15.59, 12.72, 0.12582, 1, 31, + 43.72, -35.29, 1, 1, 31, 38.22, -33.12, 1, 2, 31, -0.53, -12.83, 0.99965, 36, 6.74, 64.74, 0.00035, 2, 31, -0.21, -6.72, 0.9998, 36, 12.86, 64.74, 0.0002, 3, 31, 0.19, 0.77, 0.99981, + 36, 20.36, 64.74, 9e-05, 38, -22.52, 64.84, 0.0001, 3, 31, 0.56, 7.82, 0.99975, 36, 27.41, 64.74, 1e-05, 38, -15.47, 64.84, 0.00024, 2, 31, 0.88, 13.86, 0.99954, 38, -9.41, 64.84, + 0.00046, 4, 31, 39.9, 0.3, 0.88429, 36, 21.98, 25.05, 0.02526, 37, 0.57, 25.15, 0.06552, 38, -20.9, 25.15, 0.02493, 1, 31, 38.93, -18.93, 1, 4, 31, 39.81, 17.97, 0.94373, 36, 39.62, + 26.07, 0.00089, 37, 18.21, 26.18, 0.01419, 38, -3.26, 26.18, 0.04119, 1, 31, 39.76, 25.74, 1, 1, 31, 38.51, -27.3, 1, 4, 31, 39.4, -9.64, 0.88619, 36, 12.02, 25.03, 0.05505, 37, + -9.38, 25.13, 0.05102, 38, -30.86, 25.13, 0.00774, 4, 31, 39.86, 8.75, 0.89286, 36, 30.41, 25.54, 0.00746, 37, 9, 25.64, 0.04877, 38, -12.47, 25.64, 0.05092, 1, 31, 43.8, -29.15, 1, + 4, 31, 44.52, -19.83, 0.74343, 36, 2.11, 19.38, 0.19678, 37, -19.29, 19.48, 0.05726, 38, -40.77, 19.48, 0.00254, 4, 31, 44.96, -10.05, 0.58833, 36, 11.9, 19.46, 0.20061, 37, -9.5, + 19.56, 0.19026, 38, -30.98, 19.56, 0.0208, 4, 31, 45.31, -0.03, 0.58846, 36, 21.93, 19.63, 0.08112, 37, 0.53, 19.73, 0.24909, 38, -20.95, 19.73, 0.08133, 4, 31, 45.5, 8.76, 0.59817, + 36, 30.72, 19.91, 0.02026, 37, 9.32, 20.01, 0.18761, 38, -12.16, 20.01, 0.19395, 4, 31, 45.89, 18.3, 0.66183, 36, 40.27, 20.02, 0.00346, 37, 18.87, 20.13, 0.07957, 38, -2.61, 20.13, + 0.25514, 1, 31, 45.85, 27.54, 1, 4, 31, 49.71, -31.22, 0.84023, 36, -8.99, 13.6, 0.15068, 37, -30.39, 13.7, 0.00899, 38, -51.87, 13.7, 0.0001, 4, 31, 49.78, -20.68, 0.48016, 36, + 1.55, 14.09, 0.41733, 37, -19.86, 14.19, 0.10062, 38, -41.33, 14.19, 0.0019, 4, 31, 50.15, -10.44, 0.42576, 36, 11.79, 14.25, 0.28082, 37, -9.61, 14.36, 0.27628, 38, -31.09, 14.36, + 0.01714, 4, 31, 50.4, -0.34, 0.43345, 36, 21.89, 14.53, 0.09343, 37, 0.48, 14.63, 0.37698, 38, -20.99, 14.63, 0.09613, 4, 31, 50.91, 8.78, 0.43708, 36, 31.02, 14.51, 0.01603, 37, + 9.62, 14.61, 0.27127, 38, -11.86, 14.61, 0.27562, 4, 31, 50.97, 18.59, 0.51068, 36, 40.82, 14.96, 0.00179, 37, 19.41, 15.07, 0.09933, 38, -2.06, 15.07, 0.3882, 4, 31, 51.57, 29.24, + 0.94195, 36, 51.49, 14.92, 4e-05, 37, 30.08, 15.02, 0.00385, 38, 8.61, 15.02, 0.05416, 4, 31, 55.51, -33.25, 0.72549, 36, -10.71, 7.7, 0.2621, 37, -32.11, 7.81, 0.01235, 38, -53.59, + 7.81, 6e-05, 4, 31, 55.86, -21.65, 0.38729, 36, 0.89, 7.96, 0.4981, 37, -20.51, 8.06, 0.11341, 38, -41.99, 8.06, 0.0012, 4, 31, 55.96, -10.87, 0.32692, 36, 11.67, 8.42, 0.3274, 37, + -9.74, 8.53, 0.32983, 38, -31.21, 8.53, 0.01585, 4, 31, 56.03, -0.69, 0.33677, 36, 21.84, 8.89, 0.10146, 37, 0.43, 9, 0.45593, 38, -21.04, 9, 0.10584, 4, 31, 56.4, 8.8, 0.33839, 36, + 31.33, 9.02, 0.0144, 37, 9.93, 9.13, 0.32329, 38, -11.55, 9.13, 0.32392, 4, 31, 57.13, 19.32, 0.42143, 36, 41.87, 8.84, 0.00109, 37, 20.47, 8.95, 0.11176, 38, -1.01, 8.95, 0.46572, + 4, 31, 58.69, 31.45, 0.79569, 36, 54.07, 7.92, 5e-05, 37, 32.67, 8.03, 0.01091, 38, 11.19, 8.03, 0.19335, 4, 31, 62.21, -35.59, 0.66085, 36, -12.7, 0.88, 0.32566, 37, -34.1, 0.99, + 0.01346, 38, -55.58, 0.99, 3e-05, 4, 31, 62.66, -22.75, 0.31024, 36, 0.16, 1.11, 0.56299, 37, -21.25, 1.21, 0.12589, 38, -42.72, 1.21, 0.00089, 4, 31, 62.85, -11.38, 0.24349, 36, + 11.52, 1.52, 0.36477, 37, -9.89, 1.62, 0.37599, 38, -31.36, 1.62, 0.01574, 4, 31, 62.94, -1.11, 0.2525, 36, 21.78, 1.97, 0.10936, 37, 0.37, 2.08, 0.52284, 38, -21.1, 2.08, 0.1153, 4, + 31, 63.43, 8.82, 0.2544, 36, 31.72, 2, 0.01401, 37, 10.32, 2.11, 0.36809, 38, -11.16, 2.11, 0.3635, 4, 31, 63.63, 19.58, 0.3466, 36, 42.48, 2.36, 0.00077, 37, 21.07, 2.47, 0.1237, + 38, -0.4, 2.47, 0.52893, 4, 31, 65.17, 33.27, 0.69411, 36, 56.23, 1.55, 3e-05, 37, 34.83, 1.66, 0.01435, 38, 13.35, 1.66, 0.29151, 4, 31, 70.52, 34.86, 0.61986, 36, 58.1, -3.71, + 1e-05, 37, 36.69, -3.61, 0.01658, 38, 15.22, -3.61, 0.36355, 4, 31, 69.45, 19.61, 0.28549, 36, 42.81, -3.44, 0.00065, 37, 21.4, -3.34, 0.13463, 38, -0.07, -3.34, 0.57924, 4, 31, + 69.14, 8.84, 0.18483, 36, 32.04, -3.7, 0.01432, 37, 10.64, -3.59, 0.40541, 38, -10.84, -3.59, 0.39544, 4, 31, 68.83, -1.47, 0.18141, 36, 21.73, -3.93, 0.11681, 37, 0.32, -3.83, + 0.57764, 38, -21.15, -3.83, 0.12413, 4, 31, 68.1, -11.77, 0.17479, 36, 11.41, -3.74, 0.39444, 37, -10, -3.64, 0.41447, 38, -31.47, -3.64, 0.0163, 4, 31, 67.66, -23.55, 0.24784, 36, + -0.38, -3.92, 0.61396, 37, -21.79, -3.82, 0.13743, 38, -43.26, -3.82, 0.00077, 4, 31, 67.15, -37.32, 0.59732, 36, -14.16, -4.14, 0.38768, 37, -35.56, -4.03, 0.01499, 38, -57.04, + -4.03, 1e-05, 4, 31, 21.31, 0.52, 0.98403, 36, 21.22, 43.62, 0.00516, 37, -0.19, 43.73, 0.00609, 38, -21.66, 43.73, 0.00473, 3, 31, 11.68, -10.43, 0.98457, 36, 9.78, 52.66, 0.01421, + 37, -11.62, 52.77, 0.00123, 3, 31, 14.7, 11.48, 0.98807, 37, 10.41, 50.91, 0.00101, 38, -11.07, 50.91, 0.01092, 1, 31, 38.71, -23.44, 1, 4, 31, 44.14, -24.78, 0.93122, 36, -2.85, + 19.5, 0.05888, 37, -24.25, 19.61, 0.00959, 38, -45.73, 19.61, 0.0003, 4, 31, 49.74, -26.15, 0.67882, 36, -3.92, 13.83, 0.287, 37, -25.32, 13.94, 0.03374, 38, -46.8, 13.94, 0.00045, + 4, 31, 55.68, -27.73, 0.52353, 36, -5.19, 7.82, 0.4314, 37, -26.59, 7.93, 0.04479, 38, -48.07, 7.93, 0.00029, 4, 31, 62.43, -29.46, 0.41464, 36, -6.56, 0.99, 0.53292, 37, -27.96, + 1.1, 0.05226, 38, -49.44, 1.1, 0.00018, 4, 31, 67.4, -30.57, 0.35706, 36, -7.41, -4.03, 0.58638, 37, -28.81, -3.93, 0.05644, 38, -50.29, -3.93, 0.00012, 4, 31, 39.16, -14.42, + 0.88311, 36, 7.24, 25.02, 0.07338, 37, -14.17, 25.12, 0.03978, 38, -35.64, 25.12, 0.00372, 4, 31, 44.74, -15, 0.62555, 36, 6.96, 19.42, 0.24007, 37, -14.45, 19.52, 0.1259, 38, + -35.92, 19.52, 0.00848, 4, 31, 49.97, -15.49, 0.4342, 36, 6.74, 14.17, 0.37611, 37, -14.67, 14.27, 0.18375, 38, -36.14, 14.27, 0.00595, 4, 31, 55.91, -16.19, 0.33684, 36, 6.35, 8.19, + 0.44427, 37, -15.05, 8.3, 0.21425, 38, -36.53, 8.3, 0.00464, 4, 31, 62.76, -16.95, 0.25537, 36, 5.95, 1.32, 0.49872, 37, -15.45, 1.42, 0.24179, 38, -36.93, 1.42, 0.00413, 4, 31, + 67.88, -17.57, 0.18921, 36, 5.6, -3.83, 0.54119, 37, -15.8, -3.73, 0.26556, 38, -37.28, -3.73, 0.00404, 4, 31, 39.65, -4.74, 0.83361, 36, 16.93, 25.04, 0.05679, 37, -4.48, 25.14, + 0.08927, 38, -25.95, 25.14, 0.02033, 4, 31, 45.13, -5.18, 0.57797, 36, 16.78, 19.54, 0.13938, 37, -4.63, 19.65, 0.23843, 38, -26.1, 19.65, 0.04422, 4, 31, 50.27, -5.8, 0.42696, 36, + 16.43, 14.38, 0.17737, 37, -4.97, 14.48, 0.35156, 38, -26.45, 14.48, 0.04411, 4, 31, 56, -5.99, 0.33132, 36, 16.54, 8.65, 0.20059, 37, -4.86, 8.75, 0.42277, 38, -26.34, 8.75, + 0.04531, 4, 31, 62.89, -6.48, 0.24781, 36, 16.41, 1.73, 0.22055, 37, -4.99, 1.84, 0.48389, 38, -26.47, 1.84, 0.04775, 4, 31, 68.45, -6.83, 0.17763, 36, 16.35, -3.83, 0.23735, 37, + -5.05, -3.73, 0.53429, 38, -26.53, -3.73, 0.05074, 4, 31, 39.88, 4.33, 0.83746, 36, 26, 25.28, 0.02009, 37, 4.59, 25.39, 0.08772, 38, -16.88, 25.39, 0.05473, 4, 31, 45.41, 4.36, + 0.58276, 36, 26.32, 19.77, 0.04346, 37, 4.92, 19.87, 0.23645, 38, -16.56, 19.87, 0.13732, 4, 31, 50.66, 4.3, 0.43226, 36, 26.54, 14.52, 0.04191, 37, 5.13, 14.62, 0.34769, 38, -16.34, + 14.62, 0.17814, 4, 31, 56.21, 4.01, 0.33656, 36, 26.54, 8.96, 0.0422, 37, 5.14, 9.06, 0.41771, 38, -16.34, 9.06, 0.20353, 4, 31, 63.19, 4, 0.25264, 36, 26.89, 1.99, 0.04384, 37, + 5.49, 2.09, 0.47782, 38, -15.99, 2.09, 0.2257, 4, 31, 68.99, 3.91, 0.18189, 36, 27.11, -3.81, 0.04615, 37, 5.71, -3.71, 0.52741, 38, -15.77, -3.71, 0.24456, 4, 31, 39.83, 13, 0.8608, + 36, 34.66, 25.79, 0.00457, 37, 13.26, 25.89, 0.04889, 38, -8.22, 25.89, 0.08574, 4, 31, 45.67, 13.13, 0.60926, 36, 35.09, 19.96, 0.00894, 37, 13.69, 20.06, 0.13479, 38, -7.79, 20.06, + 0.247, 4, 31, 50.93, 13.5, 0.45377, 36, 35.74, 14.73, 0.00554, 37, 14.33, 14.83, 0.18027, 38, -7.14, 14.83, 0.36041, 4, 31, 56.75, 13.83, 0.35749, 36, 36.37, 8.94, 0.00417, 37, + 14.96, 9.04, 0.20976, 38, -6.51, 9.04, 0.42858, 4, 31, 63.53, 14.02, 0.27612, 36, 36.92, 2.18, 0.00359, 37, 15.52, 2.28, 0.23625, 38, -5.96, 2.28, 0.48404, 4, 31, 69.3, 14.3, + 0.20954, 36, 37.5, -3.57, 0.00344, 37, 16.1, -3.46, 0.25903, 38, -5.38, -3.46, 0.52799, 1, 31, 39.78, 21.93, 1, 4, 31, 45.87, 22.69, 0.82489, 36, 44.65, 20.27, 0.00083, 37, 23.25, + 20.37, 0.0268, 38, 1.77, 20.37, 0.14748, 4, 31, 51.28, 24.11, 0.64773, 36, 46.35, 14.94, 0.00052, 37, 24.95, 15.04, 0.04091, 38, 3.47, 15.04, 0.31084, 4, 31, 57.92, 25.42, 0.53225, + 36, 48.01, 8.38, 0.00029, 37, 26.6, 8.49, 0.04857, 38, 5.13, 8.49, 0.41889, 4, 31, 64.49, 27.19, 0.46955, 36, 50.12, 1.91, 0.00016, 37, 28.71, 2.02, 0.05201, 38, 7.24, 2.02, 0.47828, + 4, 31, 70.04, 27.97, 0.41589, 36, 51.19, -3.59, 0.0001, 37, 29.78, -3.48, 0.05591, 38, 8.31, -3.48, 0.5281, 4, 31, 49.73, -28.84, 0.72647, 36, -6.61, 13.71, 0.25381, 37, -28.01, + 13.81, 0.01954, 38, -49.49, 13.81, 0.00018, 4, 31, 55.59, -30.72, 0.64422, 36, -8.18, 7.76, 0.33291, 37, -29.58, 7.86, 0.02275, 38, -51.06, 7.86, 0.00011, 4, 31, 62.32, -32.6, + 0.55448, 36, -9.7, 0.94, 0.41902, 37, -31.11, 1.04, 0.02643, 38, -52.58, 1.04, 7e-05, 4, 31, 67.27, -34.24, 0.44397, 36, -11.07, -4.09, 0.52396, 37, -32.48, -3.99, 0.03202, 38, + -53.95, -3.99, 4e-05, 4, 31, 49.76, -23.57, 0.5094, 36, -1.34, 13.95, 0.4213, 37, -22.75, 14.06, 0.06847, 38, -44.22, 14.06, 0.00083, 4, 31, 55.77, -24.72, 0.42549, 36, -2.17, 7.89, + 0.49746, 37, -23.57, 8, 0.07648, 38, -45.05, 8, 0.00057, 4, 31, 62.54, -26.18, 0.35688, 36, -3.28, 1.05, 0.55926, 37, -24.68, 1.15, 0.08347, 38, -46.16, 1.15, 0.00039, 4, 31, 67.52, + -27.35, 0.29772, 36, -4.19, -3.98, 0.61133, 37, -25.59, -3.88, 0.09064, 38, -47.07, -3.88, 0.00031, 4, 31, 67.77, -20.66, 0.21136, 36, 2.51, -3.88, 0.59029, 37, -18.89, -3.77, + 0.19654, 38, -40.37, -3.77, 0.00182, 4, 31, 62.71, -19.85, 0.275, 36, 3.05, 1.21, 0.54348, 37, -18.35, 1.32, 0.17958, 38, -39.83, 1.32, 0.00194, 4, 31, 55.88, -19.28, 0.35002, 36, + 3.27, 8.06, 0.48643, 37, -18.14, 8.17, 0.16123, 38, -39.61, 8.17, 0.00232, 4, 31, 49.86, -18.41, 0.41881, 36, 3.82, 14.12, 0.43213, 37, -17.59, 14.23, 0.1461, 38, -39.06, 14.23, + 0.00296, 4, 31, 50.06, -13.03, 0.39313, 36, 9.2, 14.21, 0.35299, 37, -12.2, 14.31, 0.24433, 38, -33.68, 14.31, 0.00955, 4, 31, 55.94, -13.47, 0.32258, 36, 9.06, 8.31, 0.39406, 37, + -12.34, 8.41, 0.27473, 38, -33.82, 8.41, 0.00863, 4, 31, 62.8, -14.24, 0.24476, 36, 8.66, 1.42, 0.43744, 37, -12.74, 1.52, 0.30953, 38, -34.22, 1.52, 0.00827, 4, 31, 67.98, -14.86, + 0.17804, 36, 8.31, -3.79, 0.47328, 37, -13.09, -3.69, 0.3403, 38, -34.57, -3.69, 0.00838, 4, 31, 68.28, -9.21, 0.17525, 36, 13.97, -3.79, 0.31355, 37, -7.43, -3.69, 0.48153, 38, + -28.91, -3.69, 0.02968, 4, 31, 62.87, -9.04, 0.24396, 36, 13.85, 1.62, 0.29088, 37, -7.55, 1.73, 0.43695, 38, -29.03, 1.73, 0.02821, 4, 31, 55.98, -8.57, 0.32275, 36, 13.97, 8.53, + 0.26435, 37, -7.44, 8.63, 0.38552, 38, -28.91, 8.63, 0.02739, 4, 31, 50.21, -8.13, 0.39269, 36, 14.1, 14.31, 0.24007, 37, -7.3, 14.42, 0.33961, 38, -28.78, 14.42, 0.02763, 4, 31, + 50.33, -3.07, 0.39835, 36, 19.16, 14.45, 0.13664, 37, -2.25, 14.56, 0.3972, 38, -23.72, 14.56, 0.06781, 4, 31, 56.01, -3.43, 0.32898, 36, 19.1, 8.76, 0.14701, 37, -2.3, 8.87, + 0.45281, 38, -23.78, 8.87, 0.07119, 4, 31, 62.92, -3.84, 0.24968, 36, 19.05, 1.85, 0.15947, 37, -2.36, 1.96, 0.51456, 38, -23.83, 1.96, 0.07629, 4, 31, 68.64, -4.23, 0.17972, 36, + 18.97, -3.88, 0.17094, 37, -2.44, -3.78, 0.56767, 38, -23.91, -3.78, 0.08167, 4, 31, 68.91, 1.29, 0.18179, 36, 24.49, -3.87, 0.07557, 37, 3.08, -3.77, 0.56385, 38, -18.39, -3.77, + 0.17879, 4, 31, 63.06, 1.38, 0.25204, 36, 24.27, 1.98, 0.07119, 37, 2.86, 2.08, 0.51118, 38, -18.61, 2.08, 0.16559, 4, 31, 56.13, 1.74, 0.33157, 36, 24.26, 8.92, 0.0672, 37, 2.86, + 9.03, 0.44995, 38, -18.62, 9.03, 0.15128, 4, 31, 50.52, 1.76, 0.40101, 36, 23.99, 14.52, 0.06478, 37, 2.59, 14.63, 0.39483, 38, -18.89, 14.63, 0.13938, 4, 31, 50.78, 6.45, 0.401, 36, + 28.68, 14.51, 0.0258, 37, 7.28, 14.62, 0.33427, 38, -14.2, 14.62, 0.23894, 4, 31, 56.3, 6.29, 0.3309, 36, 28.82, 8.99, 0.02514, 37, 7.42, 9.09, 0.37908, 38, -14.06, 9.09, 0.26488, 4, + 31, 63.29, 6.06, 0.25155, 36, 28.96, 1.99, 0.02548, 37, 7.56, 2.1, 0.4293, 38, -13.92, 2.1, 0.29367, 4, 31, 69.06, 6.02, 0.18206, 36, 29.22, -3.76, 0.02652, 37, 7.82, -3.66, 0.47284, + 38, -13.66, -3.66, 0.31858, 4, 31, 69.22, 11.49, 0.19245, 36, 34.69, -3.64, 0.00724, 37, 13.29, -3.53, 0.3321, 38, -8.19, -3.53, 0.46821, 4, 31, 69.38, 17.15, 0.23948, 36, 40.35, + -3.5, 0.00153, 37, 18.94, -3.39, 0.19195, 38, -2.53, -3.39, 0.56704, 4, 31, 69.73, 23.61, 0.346, 36, 46.82, -3.51, 0.00026, 37, 25.42, -3.41, 0.08922, 38, 3.94, -3.41, 0.56452, 4, + 31, 70.27, 31.28, 0.48407, 36, 54.51, -3.65, 4e-05, 37, 33.11, -3.54, 0.03358, 38, 11.63, -3.54, 0.48231, 4, 31, 64.84, 30.32, 0.54501, 36, 53.26, 1.73, 7e-05, 37, 31.86, 1.83, + 0.03077, 38, 10.38, 1.83, 0.42415, 4, 31, 64.01, 22.94, 0.40266, 36, 45.85, 2.16, 0.00034, 37, 24.45, 2.27, 0.08247, 38, 2.97, 2.27, 0.51452, 4, 31, 63.58, 16.63, 0.30287, 36, 39.53, + 2.26, 0.00168, 37, 18.13, 2.37, 0.17579, 38, -3.35, 2.37, 0.51965, 4, 31, 63.48, 11.19, 0.25994, 36, 34.09, 2.08, 0.00726, 37, 12.69, 2.19, 0.30245, 38, -8.79, 2.19, 0.43035, 4, 31, + 56.56, 11.07, 0.3382, 36, 33.61, 8.98, 0.00776, 37, 12.21, 9.09, 0.26884, 38, -9.27, 9.09, 0.38519, 4, 31, 56.93, 16.38, 0.37706, 36, 38.93, 8.89, 0.00208, 37, 17.52, 9, 0.15821, 38, + -3.95, 9, 0.46265, 4, 31, 57.5, 22.2, 0.46779, 36, 44.77, 8.63, 0.00052, 37, 23.36, 8.73, 0.07582, 38, 1.89, 8.73, 0.45586, 4, 31, 58.3, 28.37, 0.65325, 36, 50.97, 8.16, 0.00012, 37, + 29.57, 8.26, 0.02541, 38, 8.09, 8.26, 0.32123, 4, 31, 51.42, 26.68, 0.75526, 36, 48.93, 14.93, 0.00017, 37, 27.52, 15.03, 0.02002, 38, 6.05, 15.03, 0.22455, 4, 31, 51.11, 21.17, + 0.52586, 36, 43.41, 14.95, 0.00082, 37, 22, 15.06, 0.07106, 38, 0.53, 15.06, 0.40226, 4, 31, 50.95, 15.93, 0.44455, 36, 38.16, 14.84, 0.00273, 37, 16.76, 14.94, 0.1436, 38, -4.72, + 14.94, 0.40912, 4, 31, 50.92, 10.61, 0.40864, 36, 32.85, 14.59, 0.0088, 37, 11.45, 14.7, 0.23945, 38, -10.03, 14.7, 0.34311, 4, 31, 69.38, -38.1, 0.52059, 36, -14.82, -6.4, 0.45917, + 37, -36.22, -6.3, 0.02022, 38, -57.7, -6.3, 1e-05, 4, 31, 69.44, -34.82, 0.37517, 36, -11.54, -6.29, 0.58803, 37, -32.95, -6.19, 0.03676, 38, -54.42, -6.19, 4e-05, 4, 31, 69.57, + -31.13, 0.31655, 36, -7.85, -6.23, 0.62281, 37, -29.26, -6.13, 0.06054, 38, -50.73, -6.13, 0.00011, 4, 31, 69.74, -27.7, 0.25662, 36, -4.41, -6.22, 0.64624, 37, -25.82, -6.11, + 0.09684, 38, -47.29, -6.11, 0.0003, 4, 31, 69.8, -23.9, 0.20542, 36, -0.61, -6.08, 0.64718, 37, -22.02, -5.97, 0.14662, 38, -43.49, -5.97, 0.00077, 4, 31, 69.96, -20.88, 0.16774, 36, + 2.4, -6.08, 0.62093, 37, -19, -5.97, 0.20946, 38, -40.48, -5.97, 0.00187, 4, 31, 70.09, -17.89, 0.14406, 36, 5.4, -6.05, 0.56885, 37, -16, -5.95, 0.28288, 38, -37.48, -5.95, 0.00421, + 4, 31, 70.25, -15.09, 0.13169, 36, 8.2, -6.07, 0.49722, 37, -13.21, -5.96, 0.36227, 38, -34.68, -5.96, 0.00882, 4, 31, 70.5, -11.95, 0.12708, 36, 11.36, -6.14, 0.41453, 37, -10.05, + -6.04, 0.44117, 38, -31.52, -6.04, 0.01722, 4, 31, 70.58, -9.33, 0.12668, 36, 13.97, -6.1, 0.32958, 37, -7.43, -5.99, 0.51233, 38, -28.91, -5.99, 0.03141, 4, 31, 70.75, -6.95, + 0.12812, 36, 16.36, -6.14, 0.24965, 37, -5.05, -6.03, 0.56851, 38, -26.52, -6.03, 0.05372, 4, 31, 71, -4.39, 0.12979, 36, 18.93, -6.25, 0.1799, 37, -2.47, -6.14, 0.60387, 38, -23.95, + -6.14, 0.08644, 4, 31, 71.07, -1.61, 0.13105, 36, 21.71, -6.18, 0.12302, 37, 0.3, -6.07, 0.61461, 38, -21.17, -6.07, 0.13132, 4, 31, 71.18, 1.28, 0.13159, 36, 24.6, -6.14, 0.07962, + 37, 3.19, -6.03, 0.5998, 38, -18.28, -6.03, 0.18899, 4, 31, 71.31, 3.85, 0.13189, 36, 27.17, -6.13, 0.04862, 37, 5.76, -6.02, 0.56113, 38, -15.71, -6.02, 0.25837, 4, 31, 71.51, 6.02, + 0.13282, 36, 29.35, -6.21, 0.02792, 37, 7.95, -6.1, 0.50297, 38, -13.53, -6.1, 0.33629, 4, 31, 71.56, 8.85, 0.13637, 36, 32.18, -6.12, 0.01503, 37, 10.77, -6.01, 0.43134, 38, -10.7, + -6.01, 0.41726, 4, 31, 71.75, 11.39, 0.14539, 36, 34.72, -6.17, 0.00757, 37, 13.32, -6.07, 0.35328, 38, -8.16, -6.07, 0.49376, 4, 31, 71.87, 14.39, 0.16393, 36, 37.73, -6.13, + 0.00355, 37, 16.32, -6.03, 0.27561, 38, -5.15, -6.03, 0.55691, 4, 31, 72.16, 17.13, 0.19585, 36, 40.48, -6.28, 0.00155, 37, 19.08, -6.18, 0.20422, 38, -2.4, -6.18, 0.59837, 4, 31, + 72.25, 19.76, 0.24372, 36, 43.11, -6.23, 0.00063, 37, 21.71, -6.13, 0.14329, 38, 0.23, -6.13, 0.61235, 4, 31, 72.47, 23.82, 0.30631, 36, 47.17, -6.24, 0.00024, 37, 25.77, -6.14, + 0.09501, 38, 4.29, -6.14, 0.59844, 4, 31, 72.61, 28.41, 0.3775, 36, 51.77, -6.14, 9e-05, 37, 30.37, -6.03, 0.05972, 38, 8.89, -6.03, 0.5627, 4, 31, 72.88, 31.77, 0.44548, 36, 55.14, + -6.23, 3e-05, 37, 33.74, -6.13, 0.03652, 38, 12.26, -6.13, 0.51797, 4, 31, 73.38, 35.45, 0.56131, 36, 58.84, -6.53, 1e-05, 37, 37.44, -6.43, 0.02128, 38, 15.96, -6.43, 0.41739 + ], + "hull": 44, + "edges": [ + 78, 76, 86, 0, 78, 80, 80, 82, 82, 84, 84, 86, 0, 94, 76, 96, 62, 64, 74, 76, 102, 96, 74, 102, 104, 90, 106, 98, 108, 88, 110, 100, 112, 92, 114, 94, 2, 0, 114, 2, 72, 74, 116, 102, + 72, 116, 118, 104, 120, 106, 122, 108, 124, 110, 126, 112, 128, 114, 4, 2, 128, 4, 70, 72, 130, 116, 70, 130, 132, 118, 134, 120, 136, 122, 138, 124, 140, 126, 142, 128, 8, 6, 6, 4, + 142, 6, 68, 70, 144, 130, 68, 144, 146, 132, 148, 134, 150, 136, 152, 138, 154, 140, 156, 142, 156, 8, 8, 10, 10, 12, 12, 158, 158, 156, 10, 158, 160, 154, 162, 152, 164, 150, 166, + 148, 168, 146, 170, 144, 64, 66, 66, 68, 170, 66, 82, 172, 172, 88, 98, 172, 172, 100, 80, 174, 174, 90, 96, 174, 84, 176, 176, 92, 94, 176, 90, 178, 178, 96, 102, 180, 180, 104, + 178, 180, 180, 182, 182, 184, 184, 186, 186, 188, 90, 190, 190, 98, 104, 192, 192, 106, 190, 192, 192, 194, 194, 196, 196, 198, 198, 200, 88, 202, 202, 98, 106, 204, 204, 108, 202, + 204, 204, 206, 206, 208, 208, 210, 210, 212, 88, 214, 214, 100, 108, 216, 216, 110, 214, 216, 216, 218, 218, 220, 220, 222, 222, 224, 92, 226, 226, 100, 110, 228, 228, 112, 226, 228, + 228, 230, 230, 232, 232, 234, 234, 236, 92, 238, 238, 94, 112, 240, 240, 114, 238, 240, 240, 242, 242, 244, 244, 246, 246, 248, 12, 14, 170, 64, 116, 250, 250, 182, 130, 252, 252, + 184, 250, 252, 144, 254, 254, 186, 252, 254, 170, 256, 256, 188, 254, 256, 58, 60, 60, 62, 118, 258, 258, 182, 132, 260, 260, 184, 258, 260, 146, 262, 262, 186, 260, 262, 168, 264, + 264, 188, 262, 264, 54, 56, 56, 58, 50, 52, 52, 54, 168, 266, 266, 200, 146, 268, 268, 198, 266, 268, 132, 270, 270, 196, 268, 270, 118, 272, 272, 194, 270, 272, 120, 274, 274, 194, + 134, 276, 276, 196, 274, 276, 148, 278, 278, 198, 276, 278, 166, 280, 280, 200, 278, 280, 46, 48, 48, 50, 42, 44, 44, 46, 166, 282, 282, 212, 148, 284, 284, 210, 282, 284, 134, 286, + 286, 208, 284, 286, 120, 288, 288, 206, 286, 288, 122, 290, 290, 206, 136, 292, 292, 208, 290, 292, 150, 294, 294, 210, 292, 294, 164, 296, 296, 212, 294, 296, 38, 40, 40, 42, 34, + 36, 36, 38, 164, 298, 298, 224, 150, 300, 300, 222, 298, 300, 136, 302, 302, 220, 300, 302, 122, 304, 304, 218, 302, 304, 124, 306, 306, 218, 138, 308, 308, 220, 306, 308, 152, 310, + 310, 222, 308, 310, 162, 312, 312, 224, 310, 312, 30, 32, 32, 34, 26, 28, 28, 30, 162, 314, 314, 236, 22, 24, 24, 26, 160, 316, 316, 236, 18, 20, 20, 22, 160, 318, 318, 248, 14, 16, + 16, 18, 158, 320, 320, 248, 156, 322, 322, 246, 320, 322, 154, 324, 324, 246, 318, 324, 154, 326, 326, 234, 316, 326, 152, 328, 328, 234, 314, 328, 138, 330, 330, 232, 328, 330, 140, + 332, 332, 232, 326, 332, 140, 334, 334, 244, 324, 334, 142, 336, 336, 244, 322, 336, 128, 338, 338, 242, 336, 338, 126, 340, 340, 242, 334, 340, 126, 342, 342, 230, 332, 342, 124, + 344, 344, 230, 330, 344, 62, 346, 346, 170, 60, 348, 348, 256, 346, 348, 58, 350, 350, 188, 348, 350, 56, 352, 352, 264, 350, 352, 54, 354, 354, 168, 352, 354, 52, 356, 356, 266, + 354, 356, 50, 358, 358, 200, 356, 358, 48, 360, 360, 280, 358, 360, 46, 362, 362, 166, 360, 362, 44, 364, 364, 282, 362, 364, 42, 366, 366, 212, 364, 366, 40, 368, 368, 296, 366, + 368, 38, 370, 370, 164, 368, 370, 36, 372, 372, 298, 370, 372, 34, 374, 374, 224, 372, 374, 32, 376, 376, 312, 374, 376, 30, 378, 378, 162, 376, 378, 28, 380, 380, 314, 378, 380, 26, + 382, 382, 236, 380, 382, 24, 384, 384, 316, 382, 384, 22, 386, 386, 160, 384, 386, 20, 388, 388, 318, 386, 388, 18, 390, 390, 248, 388, 390, 16, 392, 392, 320, 390, 392, 14, 394, + 394, 158, 392, 394 + ], + "width": 82.3529411764706, + "height": 72.94117647058823, + "path": "summer-a.ear-right-bubble", + "x": 0.32352941176470296, + "y": 0.529411764705884 + } }, - "tail": {"tail": {"x": 118.24, "y": 21.73, "rotation": 12, "width": 368, "height": 247, "path": "beast-12.tail"}} - } - } - ], - "events": {"hit": {}, "hit-buff": {}, "jump": {}, "start-attack": {}}, - "keyAnimations": { - "activity/appear": "1023093953", - "activity/bath": "3305387968", - "attack/ranged/cast-fly": "4180526371", - "attack/ranged/cast-high": "164191126", - "attack/ranged/cast-low": "198813017", - "attack/ranged/cast-multi": "151119", - "attack/ranged/cast-tail": "1843465463", - "activity/eat-bite": "1137807767", - "activity/eat-chew": "1988236421", - "activity/entrance": "3768378365", - "defense/evade": "1735454995", - "activity/evolve": "649307630", - "battle/get-buff": "1455190363", - "battle/get-debuff": "606904312", - "defense/hit-by-normal": "2045974966", - "defense/hit-by-normal-crit": "2130010601", - "defense/hit-by-normal-dramatic": "3823092125", - "defense/hit-by-ranged-attack": "2224561612", - "defense/hit-with-shield": "390714790", - "attack/melee/horn-gore": "1327954218", - "attack/melee/mouth-bite": "2237748264", - "action/move-back": "3766271173", - "action/move-forward": "2945160014", - "attack/melee/multi-attack": "905926802", - "action/idle/normal": "1659336865", - "attack/melee/normal-attack": "3305373483", - "activity/prepare": "405864717", - "action/idle/random-01": "554401889", - "action/idle/random-02": "1001093024", - "action/idle/random-03": "2021333900", - "action/idle/random-04": "1003789695", - "action/idle/random-05": "2745614147", - "action/run": "1438840721", - "draft/run-origin": "3577885069", - "attack/melee/shrimp": "3833448733", - "activity/sleep": "100562494", - "attack/melee/tail-multi-slap": "3317139533", - "attack/melee/tail-roll": "3108617565", - "attack/melee/tail-smash": "519942130", - "attack/melee/tail-thrash": "628713175", - "activity/victory-pose-back-flip": "2227634241" - } - }, - "body-fuzzy": { - "bones": [ - {"name": "@root"}, {"name": "@pivot-main", "parent": "@root"}, {"name": "@pivot-back", "parent": "@pivot-main", "x": 205, "y": 180, "color": "ff0101ff"}, - {"name": "@pivot-center", "parent": "@pivot-back", "x": -215.11, "y": -5.25, "color": "ff0101ff"}, - {"name": "@axie", "parent": "@pivot-center", "length": 213.28, "rotation": 179.04, "x": 196.39, "y": 5.16}, {"name": "@back", "parent": "@axie", "rotation": -179.04, "x": 37.63, "y": -198.19}, - {"name": "@body", "parent": "@axie", "length": 226.28, "rotation": -8.35, "x": 224.58, "y": -0.53}, {"name": "@ear-left", "parent": "@axie", "rotation": -179.04, "x": 112.7, "y": -203.23}, - {"name": "@ear-right", "parent": "@axie", "rotation": -179.04, "x": 405.28, "y": -235.33}, {"name": "@eyes", "parent": "@axie", "rotation": -179.04, "x": 384.24, "y": -113.67}, - {"name": "@horn", "parent": "@axie", "rotation": -179.04, "x": 327.92, "y": -214.63}, - {"name": "@leg-back-left", "parent": "@axie", "length": 76.4, "rotation": 100.96, "x": -15.3, "y": 102.56, "transform": "noScale"}, - {"name": "@leg-front-left", "parent": "@axie", "length": 51.19, "rotation": 93.86, "x": 134.77, "y": 149.55, "transform": "noScale"}, - {"name": "@leg-front-right", "parent": "@axie", "length": 74.83, "rotation": 83.2, "x": 382.95, "y": 121.78, "transform": "noScale"}, - {"name": "@mouth", "parent": "@axie", "rotation": -179.04, "x": 382.23, "y": 6.31}, - {"name": "body-pattern", "parent": "@body", "rotation": -170.69, "x": -267.21, "y": -49.4, "transform": "noScale"}, {"name": "@shadow", "parent": "@root", "color": "e6d713ff"}, - {"name": "@tail", "parent": "@axie", "rotation": -179.04, "x": -11.76, "y": 61.72}, {"name": "leg-front-right-IK", "parent": "@pivot-main", "x": -195.99, "y": -10.21, "color": "ff3f00ff"}, - {"name": "leg-front-left-IK", "parent": "@pivot-main", "x": 42.3, "y": -18.42, "color": "ff3f00ff"}, - {"name": "leg-back-left-IK", "parent": "@pivot-main", "x": 208.57, "y": 1.35, "color": "ff3f00ff"}, {"name": "@ball", "parent": "@root", "y": 191, "color": "f3981bff"}, - {"name": "ball", "parent": "@ball", "y": -191, "color": "f4a729ff"}, - {"name": "body-fur-01", "parent": "@body", "length": 82.06, "rotation": -137.67, "x": -226.17, "y": -153.01, "color": "ff6700ff"}, - {"name": "body-fur-02", "parent": "body-fur-01", "length": 61.3, "rotation": 11.98, "x": 82.06, "color": "ff6700ff"}, - {"name": "body-fur-03", "parent": "@body", "length": 82.06, "rotation": -131.46, "x": -88.75, "y": -282.29, "color": "ff6700ff"}, - {"name": "body-fur-04", "parent": "body-fur-03", "length": 61.3, "rotation": 11.98, "x": 82.06, "color": "ff6700ff"}, - {"name": "body-fur-05", "parent": "@body", "length": 82.06, "rotation": -100.2, "x": 120.04, "y": -275.86, "color": "ff6700ff"}, - {"name": "body-fur-06", "parent": "body-fur-05", "length": 61.3, "rotation": -10.39, "x": 82.06, "color": "ff6700ff"}, - {"name": "body-fur-07", "parent": "@body", "length": 82.06, "rotation": -72.42, "x": 256.68, "y": -198.34, "color": "ff6700ff"}, - {"name": "body-fur-08", "parent": "@body", "length": 82.06, "rotation": -11.73, "x": 246.13, "y": -1.85, "color": "ff6700ff"}, - {"name": "body-fur-09", "parent": "body-fur-08", "length": 51.31, "rotation": -10.39, "x": 82.06, "color": "ff6700ff"}, - {"name": "body-fur-10", "parent": "@body", "length": 82.06, "rotation": 36.56, "x": 201.44, "y": 104.13, "color": "ff6700ff"}, - {"name": "body-fur-11", "parent": "@body", "length": 82.06, "rotation": 94.86, "x": 30.05, "y": 109.99, "color": "ff6700ff"}, - {"name": "body-fur-12", "parent": "@body", "length": 82.06, "rotation": 114.95, "x": -129.8, "y": 83.31, "color": "ff6700ff"}, - {"name": "body-fur-13", "parent": "@body", "length": 82.06, "rotation": 140.7, "x": -246.68, "y": -25.38, "color": "ff6700ff"}, - {"name": "body-fur-14", "parent": "body-fur-13", "length": 51.31, "rotation": 6.53, "x": 82.06, "color": "ff6700ff"}, - {"name": "body-fur-15", "parent": "@body", "length": 82.06, "rotation": 139.64, "x": -122.87, "y": -27.02, "color": "ff6700ff"}, - {"name": "body-fur-16", "parent": "@body", "length": 82.06, "rotation": 176.82, "x": -146.99, "y": -104.69, "color": "ff6700ff"}, - {"name": "@body-neck", "parent": "@pivot-center", "x": -161.89, "y": -53.75, "color": "ff0101ff"}, - {"name": "@body-ground", "parent": "@pivot-main", "x": 220, "transform": "noRotationOrReflection", "color": "ff0101ff"}, - {"name": "@body-hip", "parent": "@pivot-center", "x": 240.11, "y": 55.25, "color": "ff0101ff"}, - {"name": "@body-air", "parent": "@pivot-back", "x": 63, "y": 365, "transform": "noRotationOrReflection", "color": "ff0101ff"}, - {"name": "@body-cheek", "parent": "@pivot-center", "x": 15.11, "y": 47.25, "color": "ff0101ff"} - ], - "slots": [ - {"name": "shadow", "bone": "@shadow", "attachment": "shadow"}, {"name": "ball", "bone": "ball"}, {"name": "leg-front-right", "bone": "@leg-front-right", "attachment": "leg-front-right"}, - {"name": "leg-back-left", "bone": "@leg-back-left", "attachment": "leg-back-left"}, {"name": "leg-front-left", "bone": "@leg-front-left", "attachment": "leg-front-left"}, - {"name": "body", "bone": "@body", "attachment": "body-fuzzy"}, {"name": "body-pattern", "bone": "body-pattern"}, {"name": "body-hip", "bone": "@body-hip", "attachment": "body-hip"}, - {"name": "body-neck", "bone": "@body-neck", "attachment": "body-neck"}, {"name": "body-ground", "bone": "@body-ground", "attachment": "body-ground"}, - {"name": "body-air", "bone": "@body-air", "attachment": "body-air"}, {"name": "body-cheek", "bone": "@body-cheek", "attachment": "body-cheek"} - ], - "ik": [ - {"name": "leg-back-left-IK", "order": 2, "bones": ["@leg-back-left"], "target": "leg-back-left-IK"}, - {"name": "leg-front-left-IK", "order": 1, "bones": ["@leg-front-left"], "target": "leg-front-left-IK"}, - {"name": "leg-front-right-IK", "bones": ["@leg-front-right"], "target": "leg-front-right-IK"} - ], - "skins": [ - { - "name": "default", - "attachments": { - "ball": {"ball": {"y": 191, "width": 393, "height": 390, "path": "body-normal.ball"}}, - "body": { - "body-fuzzy": { + "ear-right-bubble-02": { + "ear-right-bubble": { "type": "mesh", "uvs": [ - 0.79925, 0.08668, 0.73505, 0.08609, 0.67673, 0.0849, 0.63214, 0.09498, 0.61792, 0.06889, 0.55569, 0.07957, 0.51991, 0.09558, 0.48748, 0.03509, 0.46298, 0, 0.39535, 0.01138, 0.33017, - 0.06178, 0.27724, 0.12878, 0.25029, 0.18689, 0.17041, 0.15961, 0.13365, 0.2195, 0.10425, 0.30133, 0.07779, 0.30192, 0.06086, 0.38893, 0.06772, 0.46127, 0.02655, 0.49032, 0, 0.52353, - 0.00548, 0.60259, 0.02312, 0.65833, 0.04762, 0.7028, 0.03145, 0.74312, 0.06968, 0.80186, 0.07556, 0.86293, 0.12407, 0.91096, 0.19905, 0.94061, 0.22797, 0.97204, 0.28766, 0.97204, - 0.31951, 0.96255, 0.37048, 0.98805, 0.42512, 0.99991, 0.48785, 0.9833, 0.54862, 0.99635, 0.62458, 0.98271, 0.67456, 0.99398, 0.73582, 0.96433, 0.82354, 0.95899, 0.84952, 0.91689, - 0.89803, 0.89673, 0.94802, 0.86768, 0.95635, 0.79297, 1, 0.72359, 0.99605, 0.67912, 0.9789, 0.62042, 0.96321, 0.57891, 0.98485, 0.50643, 0.99024, 0.42282, 0.96917, 0.40919, 0.9672, - 0.34277, 0.9133, 0.30636, 0.86723, 0.27257, 0.81234, 0.25478, 0.81766, 0.18763, 0.81275, 0.12122, 0.4548, 0.03508, 0.40843, 0.05503, 0.35227, 0.09742, 0.30178, 0.16849, 0.26262, - 0.23332, 0.18997, 0.20028, 0.16422, 0.24081, 0.14149, 0.31326, 0.12532, 0.40158, 0.09865, 0.34499, 0.09218, 0.39651, 0.09638, 0.47932, 0.05886, 0.5071, 0.03199, 0.53662, 0.03648, - 0.58683, 0.05345, 0.64032, 0.07555, 0.68139, 0.10634, 0.71195, 0.06213, 0.73822, 0.0836, 0.76766, 0.11259, 0.79166, 0.10572, 0.84289, 0.1371, 0.87177, 0.17797, 0.89315, 0.20853, - 0.90028, 0.23247, 0.86909, 0.23394, 0.923, 0.26229, 0.93681, 0.32309, 0.91711, 0.36238, 0.9462, 0.41461, 0.96465, 0.47332, 0.95178, 0.50273, 0.94753, 0.53894, 0.96665, 0.57727, - 0.96667, 0.609, 0.9449, 0.64303, 0.92194, 0.63092, 0.95123, 0.65873, 0.9631, 0.69683, 0.94503, 0.7269, 0.92588, 0.77027, 0.92894, 0.80573, 0.92626, 0.8317, 0.87859, 0.87733, 0.86118, - 0.91629, 0.84122, 0.92148, 0.77568, 0.95403, 0.74204, 0.98319, 0.70388, 0.95817, 0.65649, 0.9279, 0.60041, 0.87186, 0.6418, 0.91096, 0.58898, 0.93963, 0.53172, 0.96076, 0.45768, - 0.93053, 0.47399, 0.93963, 0.41493, 0.94255, 0.36513, 0.90277, 0.34427, 0.86037, 0.31911, 0.80717, 0.29539, 0.75277, 0.30991, 0.77237, 0.2678, 0.78437, 0.20731, 0.78331, 0.12495, - 0.73877, 0.11908, 0.67834, 0.12281, 0.63291, 0.14202, 0.60248, 0.17938, 0.60865, 0.13188, 0.60689, 0.09826, 0.56818, 0.11437, 0.53512, 0.14129, 0.50556, 0.16168, 0.48585, 0.11668, - 0.46742, 0.06937, 0.77927, 0.446, 0.74755, 0.49242, 0.81616, 0.49867, 0.8796, 0.52723, 0.84124, 0.58257, 0.77779, 0.6272, 0.81689, 0.71022, 0.7896, 0.75574, 0.72394, 0.77787, - 0.67119, 0.78042, 0.67401, 0.84935, 0.62196, 0.82978, 0.57484, 0.8051, 0.52069, 0.86042, 0.46301, 0.90041, 0.40928, 0.88057, 0.36603, 0.84177, 0.32651, 0.88688, 0.27058, 0.84719, - 0.24001, 0.8138, 0.18781, 0.83546, 0.13039, 0.82734, 0.73078, 0.50676, 0.73021, 0.56921, 0.67573, 0.58864, 0.6641, 0.67635, 0.65966, 0.75618, 0.6013, 0.72087, 0.7686, 0.78848, - 0.77678, 0.83796, 0.71449, 0.85242, 0.89935, 0.62149, 0.93157, 0.67625, 0.87213, 0.70466 + 0.93928, 0.50958, 0.95558, 0.59885, 0.96791, 0.66638, 0.98006, 0.73289, 1, 0.84205, 1, 0.89818, 1, 0.9625, 0.9567, 0.9625, 0.9208, 0.9625, 0.88771, 0.9625, 0.83969, 0.9625, 0.79967, + 0.9625, 0.76574, 0.9625, 0.73418, 0.9625, 0.69508, 0.9625, 0.6661, 0.9625, 0.6319, 0.9625, 0.6046, 0.9625, 0.57454, 0.9625, 0.53755, 0.9625, 0.50387, 0.9625, 0.47341, 0.9625, + 0.44466, 0.9625, 0.41233, 0.9625, 0.37317, 0.9625, 0.33787, 0.9625, 0.30333, 0.9625, 0.2648, 0.9625, 0.21937, 0.9625, 0.17434, 0.9625, 0.12959, 0.9625, 0.08769, 0.9625, 0, 0.9625, + 0.02085, 0.89779, 0.04055, 0.83664, 0.06626, 0.75682, 0.08854, 0.68766, 0.11527, 0.60468, 0.13788, 0.53451, 0.35753, 0.0375, 0.43128, 0.0375, 0.52161, 0.0375, 0.60662, 0.0375, + 0.67954, 0.0375, 0.54109, 0.5336, 0.30907, 0.53412, 0.75362, 0.52077, 0.84707, 0.51514, 0.2081, 0.53435, 0.42115, 0.53387, 0.64269, 0.52747, 0.1892, 0.60156, 0.3018, 0.60447, + 0.41972, 0.60346, 0.54053, 0.60135, 0.64648, 0.59785, 0.76151, 0.59644, 0.87262, 0.58988, 0.16806, 0.67676, 0.29497, 0.67061, 0.41838, 0.66857, 0.54, 0.66508, 0.65011, 0.66538, + 0.7681, 0.65967, 0.89666, 0.66021, 0.14733, 0.75044, 0.28705, 0.74721, 0.41688, 0.74143, 0.53942, 0.73556, 0.6538, 0.73393, 0.7757, 0.7326, 0.91933, 0.7265, 0.12337, 0.83566, 0.2782, + 0.83283, 0.4151, 0.82771, 0.53871, 0.82207, 0.65852, 0.82169, 0.7847, 0.8189, 0.95379, 0.82732, 0.97627, 0.89309, 0.79208, 0.88971, 0.66236, 0.89294, 0.5381, 0.89586, 0.41375, + 0.89349, 0.2717, 0.89571, 0.10571, 0.89844, 0.53197, 0.30141, 0.39415, 0.1884, 0.65961, 0.2117, 0.25473, 0.53425, 0.24202, 0.60293, 0.22911, 0.6738, 0.21379, 0.7489, 0.19729, + 0.83431, 0.18704, 0.8971, 0.36352, 0.534, 0.36013, 0.60397, 0.35748, 0.66957, 0.35288, 0.74428, 0.34802, 0.83022, 0.34383, 0.89458, 0.48024, 0.53373, 0.47847, 0.60244, 0.47433, + 0.66696, 0.47563, 0.73861, 0.47402, 0.82502, 0.47337, 0.89463, 0.58955, 0.53067, 0.59344, 0.5996, 0.59605, 0.66523, 0.5961, 0.73475, 0.60032, 0.82187, 0.60296, 0.89434, 0.69391, + 0.52438, 0.69915, 0.59721, 0.70691, 0.66263, 0.71206, 0.7333, 0.71954, 0.82034, 0.72813, 0.8913, 0.80125, 0.5179, 0.81428, 0.59333, 0.8348, 0.65995, 0.84793, 0.72953, 0.87862, + 0.82358, 0.89305, 0.89156, 0.19669, 0.67537, 0.17782, 0.74974, 0.1594, 0.835, 0.1429, 0.89783, 0.26012, 0.6723, 0.25017, 0.74806, 0.23685, 0.83359, 0.22589, 0.89647, 0.30659, + 0.89517, 0.3131, 0.83153, 0.31569, 0.74593, 0.32231, 0.67016, 0.38717, 0.66908, 0.38553, 0.74282, 0.38068, 0.829, 0.37648, 0.89407, 0.44462, 0.89408, 0.44322, 0.82643, 0.44458, + 0.7401, 0.44621, 0.66777, 0.50711, 0.66602, 0.50646, 0.73714, 0.50582, 0.82357, 0.50482, 0.89523, 0.57134, 0.89508, 0.5687, 0.82197, 0.56865, 0.73514, 0.5654, 0.66515, 0.62192, + 0.6653, 0.6236, 0.73436, 0.62525, 0.8218, 0.62839, 0.89374, 0.69427, 0.89215, 0.76244, 0.89045, 0.84047, 0.89059, 0.93306, 0.89229, 0.91732, 0.8255, 0.82617, 0.82097, 0.75013, + 0.81967, 0.6863, 0.82108, 0.68017, 0.73364, 0.74166, 0.73297, 0.80979, 0.73115, 0.88285, 0.72805, 0.86581, 0.66008, 0.79931, 0.6598, 0.73613, 0.66121, 0.67214, 0.66431, 0.09776, + 0.92671, 0.13724, 0.92534, 0.1817, 0.92459, 0.22313, 0.92439, 0.26892, 0.92268, 0.30526, 0.92265, 0.34139, 0.92236, 0.3751, 0.92252, 0.41313, 0.92351, 0.44464, 0.92289, 0.47339, + 0.92339, 0.5044, 0.9248, 0.53787, 0.92389, 0.57268, 0.92341, 0.60366, 0.9233, 0.62995, 0.92432, 0.66398, 0.92316, 0.69464, 0.92383, 0.73085, 0.92333, 0.76403, 0.92521, 0.79572, + 0.92461, 0.84011, 0.92404, 0.89075, 0.92209, 0.92774, 0.92274, 0.96706, 0.92576 ], "triangles": [ - 134, 155, 118, 155, 157, 125, 156, 157, 155, 156, 155, 134, 135, 138, 156, 157, 61, 130, 157, 156, 138, 158, 157, 138, 158, 160, 157, 159, 160, 158, 141, 158, 138, 159, 158, 141, - 142, 159, 141, 161, 141, 140, 61, 157, 160, 61, 160, 149, 159, 144, 160, 144, 159, 142, 162, 161, 140, 163, 143, 142, 141, 163, 142, 163, 141, 161, 163, 161, 162, 100, 162, 140, 162, - 98, 163, 107, 109, 110, 47, 107, 110, 107, 47, 46, 109, 108, 137, 164, 109, 107, 164, 108, 109, 106, 107, 46, 165, 107, 106, 164, 107, 165, 106, 46, 45, 105, 106, 45, 165, 166, 108, - 165, 108, 164, 108, 139, 138, 108, 138, 137, 139, 108, 166, 105, 45, 44, 105, 104, 165, 105, 165, 106, 140, 138, 139, 103, 166, 165, 103, 165, 104, 141, 138, 140, 140, 139, 166, 101, - 140, 166, 104, 105, 44, 43, 104, 44, 103, 104, 43, 103, 101, 166, 102, 103, 43, 102, 101, 103, 42, 102, 43, 101, 100, 140, 41, 101, 102, 41, 102, 42, 40, 100, 101, 40, 101, 41, 99, - 162, 100, 99, 100, 40, 39, 99, 40, 144, 145, 160, 144, 142, 143, 145, 146, 160, 93, 144, 143, 98, 97, 163, 99, 98, 162, 144, 146, 145, 92, 144, 93, 92, 146, 144, 96, 143, 163, 96, - 163, 97, 93, 143, 96, 94, 92, 93, 95, 93, 96, 94, 93, 95, 38, 97, 98, 96, 97, 38, 39, 38, 98, 39, 98, 99, 146, 91, 90, 92, 91, 146, 36, 92, 94, 36, 94, 95, 91, 92, 36, 37, 95, 96, - 36, 95, 37, 37, 96, 38, 35, 90, 91, 35, 34, 90, 35, 91, 36, 149, 152, 65, 160, 146, 149, 148, 149, 146, 150, 151, 149, 147, 148, 146, 150, 84, 151, 150, 85, 84, 148, 86, 150, 148, - 150, 149, 85, 150, 86, 89, 147, 146, 90, 89, 146, 88, 147, 89, 85, 30, 84, 31, 85, 86, 87, 148, 147, 87, 147, 88, 86, 148, 87, 31, 30, 85, 34, 88, 89, 32, 86, 87, 31, 86, 32, 34, 89, - 90, 33, 87, 88, 33, 88, 34, 32, 87, 33, 152, 74, 68, 24, 23, 75, 76, 75, 74, 74, 153, 77, 76, 74, 77, 25, 75, 76, 25, 76, 77, 24, 75, 25, 153, 154, 77, 74, 152, 153, 78, 25, 77, 78, - 77, 154, 151, 152, 149, 26, 25, 78, 82, 153, 152, 82, 152, 151, 79, 154, 153, 78, 154, 79, 80, 79, 153, 81, 80, 153, 82, 81, 153, 27, 78, 79, 27, 79, 80, 26, 78, 27, 84, 83, 82, 151, - 84, 82, 81, 82, 83, 28, 80, 81, 28, 81, 83, 27, 80, 28, 29, 28, 83, 29, 83, 84, 29, 84, 30, 73, 72, 68, 23, 22, 72, 23, 72, 73, 73, 68, 74, 75, 23, 73, 75, 73, 74, 69, 19, 18, 69, - 18, 68, 70, 19, 69, 20, 19, 70, 71, 70, 69, 21, 20, 70, 21, 70, 71, 68, 72, 71, 21, 71, 72, 22, 21, 72, 69, 68, 71, 62, 13, 12, 14, 13, 62, 61, 12, 60, 62, 12, 61, 63, 14, 62, 15, - 14, 63, 64, 15, 63, 66, 16, 15, 66, 15, 64, 17, 16, 66, 67, 17, 66, 65, 66, 64, 67, 66, 65, 63, 62, 61, 18, 17, 67, 68, 67, 65, 18, 67, 68, 61, 64, 63, 61, 65, 64, 65, 152, 68, 65, - 61, 149, 11, 10, 59, 60, 11, 59, 12, 11, 60, 130, 60, 59, 130, 61, 60, 57, 9, 8, 57, 8, 7, 58, 9, 57, 10, 9, 58, 132, 57, 7, 132, 7, 6, 59, 10, 58, 131, 132, 6, 131, 6, 129, 130, - 131, 129, 58, 57, 132, 131, 59, 58, 131, 58, 132, 130, 59, 131, 127, 5, 4, 127, 4, 3, 128, 5, 127, 3, 2, 123, 126, 127, 3, 128, 127, 126, 128, 129, 6, 128, 6, 5, 124, 3, 123, 126, 3, - 124, 125, 128, 126, 125, 126, 124, 129, 128, 125, 117, 119, 54, 120, 119, 123, 118, 119, 117, 119, 118, 123, 118, 124, 123, 118, 125, 124, 118, 155, 125, 129, 125, 130, 130, 125, - 157, 121, 122, 1, 123, 2, 1, 123, 1, 122, 0, 121, 1, 121, 0, 56, 121, 56, 55, 120, 121, 55, 54, 120, 55, 122, 120, 123, 120, 122, 121, 119, 120, 54, 133, 118, 117, 133, 117, 116, - 134, 118, 133, 115, 135, 133, 134, 133, 135, 136, 135, 112, 137, 135, 136, 109, 136, 110, 137, 136, 109, 135, 156, 134, 138, 135, 137, 117, 54, 53, 116, 117, 53, 116, 53, 52, 115, - 116, 52, 114, 115, 52, 51, 114, 52, 114, 51, 50, 113, 115, 114, 113, 114, 50, 111, 113, 50, 111, 50, 49, 113, 135, 115, 112, 113, 111, 115, 133, 116, 112, 135, 113, 48, 111, 49, 111, - 48, 110, 111, 110, 112, 136, 112, 110, 47, 110, 48 + 8, 196, 7, 9, 195, 8, 8, 195, 196, 10, 194, 9, 9, 194, 195, 10, 11, 194, 12, 193, 11, 11, 193, 194, 13, 192, 12, 12, 192, 193, 14, 191, 13, 13, 191, 192, 15, 190, 14, 14, 190, 191, + 15, 189, 190, 191, 158, 192, 192, 80, 193, 192, 158, 80, 194, 193, 159, 194, 159, 195, 159, 193, 80, 189, 157, 190, 190, 118, 191, 190, 157, 118, 191, 118, 158, 189, 81, 157, 195, + 124, 196, 196, 124, 160, 195, 159, 124, 81, 164, 157, 81, 76, 164, 157, 117, 118, 157, 164, 117, 159, 123, 124, 124, 123, 161, 118, 163, 158, 118, 117, 163, 80, 162, 159, 159, 162, + 123, 158, 77, 80, 158, 163, 77, 80, 77, 162, 162, 122, 123, 76, 165, 164, 76, 69, 165, 164, 116, 117, 164, 165, 116, 77, 167, 162, 117, 166, 163, 117, 116, 166, 163, 70, 77, 163, + 166, 70, 77, 70, 167, 165, 115, 116, 116, 171, 166, 166, 63, 70, 146, 103, 145, 68, 61, 152, 68, 145, 61, 151, 152, 109, 110, 153, 154, 143, 144, 104, 16, 189, 15, 17, 188, 16, 16, + 188, 189, 18, 187, 17, 17, 187, 188, 18, 19, 186, 19, 185, 186, 18, 186, 187, 20, 184, 19, 19, 184, 185, 20, 21, 184, 22, 183, 21, 21, 183, 184, 23, 181, 22, 181, 182, 22, 22, 182, + 183, 184, 148, 185, 184, 183, 148, 187, 156, 188, 188, 81, 189, 188, 156, 81, 185, 149, 186, 185, 82, 149, 185, 148, 82, 182, 83, 141, 182, 181, 83, 186, 112, 187, 186, 149, 112, + 182, 106, 183, 183, 106, 148, 187, 112, 156, 182, 141, 106, 150, 149, 82, 147, 75, 82, 82, 148, 147, 82, 75, 150, 106, 105, 148, 148, 105, 147, 149, 111, 112, 149, 150, 111, 105, + 106, 142, 112, 155, 156, 112, 111, 155, 83, 74, 141, 74, 142, 141, 106, 141, 142, 156, 76, 81, 156, 155, 76, 74, 67, 142, 142, 143, 105, 142, 67, 143, 105, 104, 147, 105, 143, 104, + 147, 146, 75, 147, 104, 146, 75, 68, 150, 75, 146, 68, 68, 151, 150, 150, 110, 111, 150, 151, 110, 111, 154, 155, 111, 110, 154, 155, 69, 76, 155, 154, 69, 104, 103, 146, 146, 145, + 68, 68, 152, 151, 151, 109, 110, 24, 180, 23, 25, 179, 24, 24, 179, 180, 26, 178, 25, 25, 178, 179, 27, 177, 26, 26, 177, 178, 28, 176, 27, 27, 176, 177, 29, 175, 28, 28, 175, 176, + 30, 174, 29, 29, 174, 175, 31, 173, 30, 30, 173, 174, 174, 128, 175, 174, 85, 128, 175, 94, 176, 175, 128, 94, 176, 132, 177, 176, 94, 132, 180, 140, 181, 177, 84, 178, 177, 132, 84, + 178, 133, 179, 178, 84, 133, 179, 100, 180, 180, 100, 140, 179, 133, 100, 128, 127, 94, 94, 93, 132, 94, 127, 93, 132, 131, 84, 132, 93, 131, 84, 73, 133, 84, 131, 73, 133, 134, 100, + 133, 73, 134, 100, 99, 140, 100, 134, 99, 140, 139, 83, 140, 99, 139, 93, 92, 131, 131, 130, 73, 131, 92, 130, 73, 66, 134, 73, 130, 66, 134, 135, 99, 134, 66, 135, 99, 98, 139, 99, + 135, 98, 139, 138, 74, 139, 98, 138, 74, 138, 67, 130, 129, 66, 66, 59, 135, 135, 136, 98, 135, 59, 136, 98, 97, 138, 98, 136, 97, 138, 137, 67, 23, 180, 181, 181, 140, 83, 83, 139, + 74, 128, 72, 127, 127, 126, 93, 93, 126, 92, 126, 125, 92, 85, 34, 72, 168, 64, 71, 168, 169, 64, 65, 58, 126, 126, 58, 125, 59, 52, 136, 69, 172, 165, 165, 172, 115, 116, 115, 171, + 154, 62, 69, 120, 170, 56, 65, 36, 58, 58, 51, 125, 37, 38, 51, 51, 48, 90, 51, 38, 48, 78, 3, 4, 64, 169, 57, 121, 120, 57, 120, 47, 57, 67, 137, 60, 143, 60, 144, 144, 103, 104, + 110, 109, 153, 154, 153, 62, 69, 62, 172, 97, 136, 96, 97, 96, 137, 96, 136, 52, 60, 137, 53, 60, 53, 144, 53, 137, 96, 103, 144, 102, 103, 102, 145, 102, 144, 53, 61, 145, 54, 172, + 62, 55, 55, 62, 153, 152, 108, 109, 55, 153, 108, 153, 109, 108, 61, 54, 152, 152, 54, 108, 54, 145, 102, 172, 114, 115, 172, 55, 114, 115, 114, 171, 171, 114, 56, 90, 89, 52, 52, + 45, 96, 52, 89, 45, 96, 95, 53, 96, 45, 95, 53, 49, 102, 53, 95, 49, 90, 48, 89, 102, 101, 54, 102, 49, 101, 54, 44, 108, 44, 107, 108, 54, 101, 44, 55, 108, 50, 108, 107, 50, 55, + 113, 114, 55, 50, 113, 114, 46, 56, 114, 113, 46, 56, 119, 120, 56, 46, 119, 120, 119, 47, 57, 47, 0, 87, 48, 38, 87, 89, 48, 87, 45, 89, 87, 95, 45, 49, 95, 86, 87, 38, 39, 101, 49, + 86, 87, 86, 95, 101, 86, 44, 41, 87, 40, 87, 41, 86, 44, 86, 107, 107, 86, 50, 50, 86, 113, 46, 113, 88, 119, 46, 88, 47, 119, 88, 86, 88, 113, 47, 88, 0, 0, 88, 43, 88, 41, 42, 88, + 86, 41, 88, 42, 43, 87, 39, 40, 57, 0, 1, 1, 64, 57, 64, 1, 2, 71, 2, 3, 58, 37, 51, 36, 37, 58, 91, 51, 90, 35, 36, 65, 125, 51, 91, 34, 35, 72, 72, 35, 65, 33, 34, 85, 169, 121, + 57, 171, 56, 63, 170, 63, 56, 138, 97, 137, 67, 60, 143, 59, 129, 52, 52, 129, 90, 71, 64, 2, 3, 78, 71, 78, 161, 71, 91, 90, 129, 170, 120, 121, 122, 121, 169, 161, 168, 71, 92, + 125, 91, 72, 65, 127, 127, 65, 126, 122, 169, 168, 92, 91, 130, 130, 91, 129, 123, 122, 168, 166, 171, 63, 70, 170, 167, 70, 63, 170, 167, 121, 122, 167, 170, 121, 66, 129, 59, 85, + 32, 33, 173, 85, 174, 31, 32, 173, 173, 32, 85, 85, 72, 128, 6, 197, 79, 162, 167, 122, 7, 197, 6, 160, 161, 78, 197, 160, 79, 196, 160, 197, 7, 196, 197, 124, 161, 160, 160, 78, 79, + 123, 168, 161, 6, 79, 5, 79, 78, 4, 79, 4, 5 ], "vertices": [ - 8, 24, 95.7, 204.73, 0.00971, 23, 133.19, 220.14, 0.01193, 26, 70.05, 1.35, 0.78718, 25, 150.31, 15.86, 0.17645, 28, 144.82, -246.73, 0.00915, 27, 180, -268.8, 0.00556, 32, -607, - -184.26, 0, 38, 12.65, 301.91, 2e-05, 7, 24, 61.69, 239.27, 0.00126, 23, 92.75, 246.86, 0.00159, 26, 39.98, 39.36, 0.64336, 25, 113, 46.8, 0.31034, 28, 120.98, -204.52, 0.02586, 27, - 164.17, -222.99, 0.0176, 32, -564.08, -206.78, 0, 7, 24, 31.08, 270.93, 6e-05, 23, 56.24, 271.48, 6e-05, 26, 12.97, 74.14, 0.42066, 25, 79.36, 75.22, 0.48089, 28, 99.67, -165.98, - 0.05677, 27, 150.16, -181.24, 0.04157, 32, -525.27, -227.6, 0, 7, 26, -13.02, 96.45, 0.21555, 25, 49.3, 91.65, 0.60002, 28, 77.44, -139.93, 0.1065, 27, 132.99, -151.6, 0.07792, 32, - -492.46, -237.42, 0, 37, -281.97, 223.49, 0, 38, -109.41, 269.57, 1e-05, 7, 26, -7.06, 115.01, 0.08571, 25, 51.29, 111.04, 0.60256, 28, 86.2, -122.51, 0.19561, 27, 144.75, -136.05, - 0.1161, 32, -490.38, -256.81, 0, 37, -301.33, 225.84, 0, 38, -123.41, 283.14, 2e-05, 7, 26, -41.68, 147.46, 0.02586, 25, 10.68, 135.6, 0.49733, 28, 57.01, -85.09, 0.339, 27, 122.78, - -93.98, 0.13776, 32, -445.55, -272.4, 0, 37, -326.66, 185.71, 1e-05, 38, -167.85, 266.48, 4e-05, 9, 26, -66.39, 162.26, 0.0066, 25, -16.56, 144.95, 0.3312, 28, 34.89, -66.66, - 0.53336, 27, 104.35, -71.86, 0.12876, 29, 91.49, -265.87, 2e-05, 31, -143.06, -433.07, 0, 32, -416.96, -275.89, 0, 37, -336.53, 158.66, 1e-05, 38, -192.06, 250.88, 5e-05, 9, 26, - -52.31, 204.98, 0.00146, 25, -11.65, 189.67, 0.1744, 28, 55.4, -26.62, 0.69694, 27, 131.75, -36.18, 0.12569, 29, 132.36, -247.07, 0.00147, 31, -102.49, -452.5, 0, 32, -412.48, - -320.65, 0, 37, -381.15, 164.42, 1e-05, 38, -224.12, 282.43, 4e-05, 9, 26, -46.83, 233.12, 0.00011, 25, -12.13, 218.33, 0.06646, 28, 65.16, 0.33, 0.74393, 27, 146.21, -11.43, - 0.17703, 29, 156.69, -231.91, 0.01245, 31, -75.28, -461.54, 0, 32, -406.06, -348.59, 0, 37, -409.81, 164.49, 0, 38, -246.92, 299.81, 2e-05, 9, 25, -56.17, 245.13, 0.01644, 28, 33.56, - 41.06, 0.61975, 27, 122.47, 34.33, 0.30879, 29, 157.01, -180.36, 0.05501, 31, -35.42, -428.85, 0, 32, -357.41, -365.66, 0, 33, -519.26, -58.37, 0, 37, -437.45, 120.98, 0, 38, - -295.24, 281.84, 1e-05, 8, 25, -114.18, 251.89, 0.00137, 28, -18.23, 68.05, 0.39988, 27, 76.4, 70.22, 0.4368, 29, 132.96, -127.14, 0.16193, 31, -9.83, -376.36, 0, 32, -299.26, - -360.23, 0, 33, -484.09, -104.98, 1e-05, 37, -445.33, 63.11, 1e-05, 8, 28, -74.4, 81.85, 0.18552, 27, 23.64, 93.92, 0.4685, 29, 97.33, -81.58, 0.34584, 31, 2.46, -319.84, 0.0001, 30, - 26.79, -315.04, 1e-05, 32, -244.6, -341.35, 0, 33, -439.3, -141.58, 1e-05, 37, -439.32, 5.59, 1e-05, 8, 28, -115.97, 81.42, 0.05888, 27, -17.33, 101, 0.36321, 29, 64.37, -56.23, - 0.57298, 31, 0.91, -278.29, 0.00242, 30, 32.76, -273.89, 0.00247, 32, -209.9, -318.44, 0, 33, -401.57, -159.05, 1e-05, 37, -424.85, -33.39, 2e-05, 8, 28, -131.28, 142.19, 0.00913, - 27, -21.43, 163.53, 0.20295, 29, 89.88, 1.01, 0.76727, 31, 61.25, -261.36, 0.00986, 30, 95.16, -268.12, 0.01076, 32, -164.08, -361.18, 0, 33, -413.85, -220.5, 1e-05, 37, -476.86, - -68.35, 1e-05, 8, 28, -177.51, 147.62, 0.00038, 27, -65.92, 177.21, 0.07339, 29, 56.89, 33.84, 0.86545, 31, 65.44, -215, 0.0283, 30, 107.64, -223.28, 0.03247, 32, -122.3, -340.66, 0, - 33, -374.44, -245.26, 1e-05, 37, -466.34, -113.69, 1e-05, 8, 27, -121.46, 181.09, 0.01494, 29, 9.56, 63.15, 0.84681, 31, 57.75, -159.86, 0.06666, 30, 110.03, -167.65, 0.07157, 32, - -79.18, -305.44, 0, 33, -321.81, -263.43, 0, 37, -441.79, -163.66, 0, 38, -470.68, 57.66, 0, 6, 29, 12.06, 82.98, 0.73065, 31, 74.6, -149.12, 0.14893, 30, 128.54, -160.13, 0.12041, - 32, -61.25, -314.25, 0, 37, -454.44, -179.13, 0, 38, -490.11, 52.97, 0, 6, 29, -39.83, 103.44, 0.54998, 31, 57.2, -96.13, 0.29388, 30, 120.98, -104.87, 0.15613, 32, -25.03, -271.84, - 1e-05, 37, -421.32, -224.02, 0, 38, -490.85, -2.8, 0, 6, 29, -85.24, 104.8, 0.34873, 31, 29.24, -60.32, 0.48985, 30, 99.94, -64.6, 0.16058, 32, -8.97, -229.34, 0.00083, 37, -383.56, - -249.29, 1e-05, 38, -476.03, -45.75, 0, 6, 29, -98.72, 138.16, 0.17649, 31, 46.3, -28.64, 0.65763, 30, 122.43, -36.52, 0.15885, 32, 26.97, -227.45, 0.00702, 37, -389.86, -284.71, 0, - 38, -502.45, -70.17, 0, 6, 29, -116.34, 160.98, 0.066, 31, 52.6, -0.51, 0.70665, 30, 133.7, -9.99, 0.19547, 32, 54.28, -218.21, 0.03188, 37, -387.04, -313.4, 0, 38, -517.54, -94.74, - 0, 6, 29, -165.76, 163.98, 0.01616, 31, 23.34, 39.43, 0.59766, 30, 112.13, 34.58, 0.29338, 32, 73.19, -172.45, 0.0928, 37, -346.75, -342.19, 0, 38, -502.83, -142.01, 0, 4, 29, - -202.09, 155.8, 0.0019, 31, -6.16, 62.16, 0.39533, 30, 87.21, 62.25, 0.39626, 32, 77.27, -135.43, 0.20651, 4, 29, -232.22, 141.48, 0, 31, -36.42, 76.19, 0.19837, 30, 59.98, 81.51, - 0.43176, 32, 73.53, -102.29, 0.36986, 4, 31, -39.12, 104.03, 0.07361, 30, 62.34, 109.38, 0.36358, 32, 95.91, -85.52, 0.5622, 33, -42.69, -296.81, 0.00061, 4, 31, -82.86, 120.25, - 0.01887, 30, 22.24, 133.22, 0.23618, 32, 87.03, -39.72, 0.73598, 33, -8.39, -265.19, 0.00897, 4, 31, -106.53, 150.45, 0.00332, 30, 4.41, 167.2, 0.11379, 32, 100.53, -3.8, 0.84635, - 33, 29.26, -257.8, 0.03654, 4, 31, -153.41, 156.92, 0.00042, 30, -40.54, 182.02, 0.03829, 32, 81.69, 39.61, 0.86092, 33, 56.29, -218.96, 0.10037, 4, 31, -211.36, 143.18, 0, 30, - -100.01, 178.95, 0.00742, 32, 39.83, 81.98, 0.78823, 33, 70.34, -161.08, 0.20435, 3, 30, -127.43, 189.42, 0.00025, 32, 29.4, 109.41, 0.65089, 33, 88.19, -137.79, 0.34887, 3, 32, - -10.66, 130.04, 0.48385, 33, 84.69, -92.86, 0.51548, 34, 4.37, -272.49, 0.00067, 3, 32, -34.75, 135.79, 0.31129, 33, 76.92, -69.35, 0.67606, 34, 5.15, -247.74, 0.01265, 3, 32, - -61.68, 167.55, 0.16632, 33, 89.8, -29.75, 0.77445, 34, 30.85, -214.97, 0.05923, 3, 32, -94.96, 193.02, 0.06699, 33, 93.97, 11.96, 0.75983, 34, 49.1, -177.25, 0.17318, 6, 32, - -141.81, 205.5, 0.01856, 33, 79.96, 58.37, 0.62178, 34, 51.9, -128.85, 0.35924, 36, -145.92, -281.97, 0.00016, 35, -30.84, -296.74, 6e-05, 37, 70.06, -218.33, 0.0002, 6, 32, -178.87, - 233.74, 0.00228, 33, 84.51, 104.74, 0.41192, 34, 72.11, -86.86, 0.573, 36, -106.41, -257.26, 0.00469, 35, 5.6, -267.7, 0.00219, 37, 105.96, -188.63, 0.00591, 6, 32, -233.76, 252.43, - 0, 33, 71.57, 161.26, 0.21372, 34, 79.38, -29.34, 0.72267, 36, -69.55, -212.52, 0.02825, 35, 37.14, -219.05, 0.01155, 37, 136.59, -139.4, 0.02381, 6, 32, -264.09, 275.96, 0, 33, - 75.65, 199.43, 0.08108, 34, 96.32, 5.11, 0.73604, 36, -36.82, -192.45, 0.09153, 35, 67.37, -195.38, 0.03327, 37, 166.38, -115.19, 0.05808, 6, 32, -313.68, 280.69, 0, 33, 53.62, - 244.1, 0.02047, 34, 90.98, 54.63, 0.60764, 36, -14.89, -147.72, 0.21611, 35, 84.07, -148.46, 0.0619, 37, 182.21, -67.96, 0.09389, 6, 32, -374.08, 308.06, 0, 33, 45.15, 309.87, - 0.00224, 34, 105.63, 119.31, 0.40946, 36, 32.04, -100.87, 0.3951, 35, 125.37, -96.57, 0.08202, 37, 222.54, -15.32, 0.11118, 8, 24, -243.78, -188.42, 0, 23, -117.32, -234.91, 0.00057, - 32, -403.54, 293.68, 0, 34, 85.63, 145.27, 0.22343, 36, 28.99, -68.23, 0.59218, 35, 118.62, -64.49, 0.08678, 37, 215.21, 16.64, 0.09618, 38, 161.75, -195.67, 0.00086, 8, 24, -208.99, - -205.43, 0.0002, 23, -79.75, -244.32, 0.00419, 32, -441.87, 299.27, 0, 34, 83.39, 183.94, 0.09945, 36, 47.75, -34.35, 0.73061, 35, 133.41, -28.69, 0.09808, 37, 229.33, 52.7, 0.0616, - 38, 194.79, -175.47, 0.00588, 8, 24, -169.48, -219.29, 0.00108, 23, -38.23, -249.69, 0.01454, 32, -483.72, 300.43, 0, 34, 76.11, 225.17, 0.03443, 36, 63.62, 4.4, 0.75333, 35, 144.76, - 11.61, 0.14964, 37, 239.93, 93.2, 0.02748, 38, 227.72, -149.6, 0.0195, 8, 24, -132.07, -190.78, 0.00455, 23, -7.55, -214.03, 0.03703, 32, -510.66, 261.86, 0, 34, 32.91, 243.8, - 0.00904, 36, 37.05, 43.22, 0.64896, 35, 113.95, 47.16, 0.2467, 37, 208.47, 128.17, 0.008, 38, 223.78, -102.73, 0.04571, 8, 24, -78.16, -183.47, 0.01537, 23, 43.67, -195.69, 0.0758, - 32, -559.78, 238.47, 0, 34, 0.11, 287.21, 0.00109, 36, 32.5, 97.44, 0.47833, 35, 103.26, 100.5, 0.34684, 37, 196.8, 181.31, 0.00107, 38, 246.59, -53.33, 0.0815, 6, 24, -60.64, - -161.73, 0.05142, 23, 56.29, -170.8, 0.13092, 32, -569.83, 212.43, 0, 36, 11.69, 116.04, 0.30799, 35, 80.47, 116.61, 0.39322, 38, 237.67, -26.89, 0.11645, 6, 24, -43.9, -126.68, - 0.14088, 23, 65.4, -133.03, 0.18479, 32, -575.09, 173.93, 0, 36, -22.47, 134.55, 0.18089, 35, 44.43, 131.12, 0.35944, 38, 217.11, 6.08, 0.134, 6, 24, -33.96, -99.99, 0.30402, 23, - 69.59, -104.86, 0.21094, 32, -576.42, 145.49, 0, 36, -48.61, 145.84, 0.09567, 35, 17.17, 139.36, 0.26581, 38, 199.95, 28.8, 0.12356, 7, 24, 9.57, -79.56, 0.52122, 23, 107.93, -75.84, - 0.18706, 25, 93.18, -275.65, 0, 32, -611.65, 112.76, 0, 36, -66.8, 190.36, 0.04429, 35, -5.96, 181.52, 0.15769, 38, 206.11, 76.5, 0.08973, 8, 24, 49.34, -45.55, 0.72591, 23, 139.78, - -34.32, 0.13196, 26, -3.1, -242.45, 0.00031, 25, 129.33, -237.81, 0.00322, 32, -639.16, 68.24, 0, 36, -98.74, 231.81, 0.01587, 35, -42.41, 219.07, 0.07295, 38, 198.8, 128.31, - 0.04977, 8, 24, 44.11, -28.28, 0.84445, 23, 131.07, -18.51, 0.08449, 26, -6.44, -224.72, 0.00233, 25, 122.39, -221.16, 0.01862, 32, -628.91, 53.39, 0, 36, -116.25, 227.46, 0.00426, - 35, -59.31, 212.76, 0.02545, 38, 181.43, 133.18, 0.0204, 8, 24, 72.37, 2.07, 0.82949, 23, 152.42, 17.04, 0.08165, 26, 24.94, -197.6, 0.01308, 25, 147.45, -188.13, 0.06272, 32, - -646.57, 15.87, 0, 36, -145.11, 257.23, 0.00073, 35, -91.38, 239.05, 0.00641, 38, 171.02, 173.32, 0.00592, 8, 24, 59.65, 46.92, 0.69378, 23, 130.68, 58.27, 0.11142, 26, 17.15, - -151.64, 0.06016, 25, 130.3, -144.79, 0.13187, 32, -620.79, -22.96, 0, 36, -190.55, 246.82, 0.0001, 35, -135.33, 223.54, 0.00135, 38, 126.37, 186.7, 0.00131, 8, 24, 49.97, 86.42, - 0.48624, 23, 113.01, 94.91, 0.13755, 26, 11.8, -111.32, 0.17632, 25, 116.7, -106.45, 0.19923, 32, -599.52, -57.64, 0, 36, -230.5, 239.17, 2e-05, 35, -174.15, 211.4, 0.00027, 38, - 87.85, 199.77, 0.00038, 6, 24, 28.52, 123.57, 0.28027, 23, 84.31, 126.8, 0.1269, 26, -5.51, -72.07, 0.37749, 25, 91.62, -71.64, 0.21518, 32, -567.76, -86.48, 0, 38, 44.99, 201.64, - 0.00016, 8, 24, 60.98, 150.36, 0.12681, 23, 110.51, 159.74, 0.08564, 26, 29.66, -48.95, 0.6089, 25, 121.23, -41.73, 0.17825, 28, 97.13, -290.17, 0.00022, 27, 125.26, -302.93, 5e-05, - 32, -590.51, -121.89, 0, 38, 39.84, 243.41, 0.00014, 8, 24, 87.67, 182.28, 0.04286, 23, 129.99, 196.51, 0.03997, 26, 59.64, -20.1, 0.77462, 25, 144.57, -7.29, 0.13949, 28, 131.21, - -266.31, 0.00204, 27, 163.09, -285.61, 0.00095, 32, -606.2, -160.43, 0, 38, 27.27, 283.07, 7e-05, 10, 25, -30.76, 205.28, 0.04567, 28, 43.11, -5.23, 0.71352, 27, 123.52, -12.92, - 0.22759, 29, 135.91, -222.65, 0.01281, 31, -81.43, -439.64, 0, 30, -77.33, -417.74, 3e-05, 32, -390.54, -331.95, 0, 33, -508, -12.47, 3e-05, 37, -397.12, 145.62, 8e-05, 38, -248.21, - 277.1, 0.00029, 10, 25, -65.75, 217.78, 0.01355, 28, 14.87, 18.92, 0.58674, 27, 100.09, 15.93, 0.34296, 29, 128.63, -186.21, 0.05644, 31, -58.05, -410.76, 0, 30, -49.13, -393.56, - 0.00016, 32, -353.72, -336.92, 0, 33, -492.87, -46.4, 4e-05, 37, -410.29, 110.87, 5e-05, 38, -279.7, 257.38, 5e-05, 10, 25, -115.33, 224.11, 0.00235, 28, -29.2, 42.49, 0.36938, 27, - 61, 47.06, 0.46285, 29, 108.55, -140.45, 0.16462, 31, -35.67, -366.08, 0, 30, -19.05, -353.64, 0.00046, 32, -303.91, -332.81, 0, 33, -463.21, -86.62, 0.00013, 37, -417.57, 61.43, - 0.00014, 38, -315.38, 222.38, 7e-05, 10, 25, -172.9, 213.87, 0.00015, 28, -86.65, 53.44, 0.16403, 27, 6.47, 68.19, 0.4863, 29, 70.14, -96.35, 0.34787, 31, -26.27, -308.36, 6e-05, 30, - 0.61, -298.56, 0.00092, 32, -249.72, -310.84, 0, 33, -416.03, -121.18, 0.00025, 37, -408.45, 3.67, 0.00027, 38, -343.01, 170.84, 0.00015, 9, 28, -136.45, 58.91, 0.04814, 27, -41.54, - 82.55, 0.37291, 29, 34.36, -61.27, 0.5739, 31, -22.14, -258.42, 0.0014, 30, 13.67, -250.19, 0.00288, 32, -204.91, -288.41, 0, 33, -373.4, -147.52, 0.00029, 37, -396.74, -45.05, - 0.00032, 38, -363.12, 124.95, 0.00017, 9, 28, -145.92, 116.73, 0.00569, 27, -40.42, 141.14, 0.20842, 29, 62.65, -9.96, 0.76088, 31, 35.41, -247.41, 0.00839, 30, 72.27, -249.74, - 0.01589, 32, -165.59, -331.86, 0, 33, -389.7, -203.8, 0.00027, 37, -447.96, -73.52, 0.00031, 38, -421.13, 133.21, 0.00016, 9, 28, -177.53, 120.99, 8e-05, 27, -70.75, 151.02, 0.07719, - 29, 40.42, 12.92, 0.85327, 31, 38.81, -215.69, 0.02432, 30, 81.33, -219.15, 0.04456, 32, -136.72, -318.28, 0, 33, -362.97, -221.22, 0.00021, 37, -441.27, -104.71, 0.00024, 38, - -434.65, 104.32, 0.00012, 8, 27, -119.09, 152.1, 0.01752, 29, -1.86, 36.4, 0.83816, 31, 29.88, -168.17, 0.05142, 30, 81.12, -170.8, 0.09232, 32, -100.77, -285.94, 0, 33, -316.57, - -234.82, 0.00021, 37, -417.91, -147.05, 0.00026, 38, -441.62, 56.47, 0.00011, 8, 27, -175.12, 145.21, 0.00134, 29, -54.64, 56.41, 0.76367, 31, 11.56, -114.78, 0.08746, 30, 72.72, - -114.98, 0.14695, 32, -64.68, -242.54, 0, 33, -260.68, -242.71, 0.0002, 37, -383.81, -192.03, 0.00027, 38, -441.63, 0.02, 0.00011, 8, 27, -148.55, 175.97, 0.00051, 29, -16.8, 71.25, - 0.64835, 31, 47.15, -134.41, 0.14727, 30, 104.19, -140.71, 0.20331, 32, -62.95, -283.15, 0, 33, -294.32, -265.52, 0.00019, 37, -423.75, -184.52, 0.00027, 38, -468.92, 30.14, 0.00011, - 8, 27, -180.49, 169.84, 0.00037, 29, -47.91, 80.71, 0.50411, 31, 34.55, -104.43, 0.2534, 30, 97.21, -108.95, 0.2417, 32, -43.89, -256.8, 0, 33, -261.89, -267.9, 0.00012, 37, -402.41, - -209.05, 0.00021, 38, -466.73, -2.3, 8e-05, 8, 27, -228.13, 149.6, 0.00026, 29, -99.5, 85, 0.33463, 31, 4.9, -62, 0.41276, 30, 75.69, -61.86, 0.2516, 32, -23.05, -209.42, 0.00048, - 33, -210.62, -260.72, 7e-05, 37, -360.97, -240.08, 0.00015, 38, -452.46, -52.06, 6e-05, 8, 27, -253.93, 170.51, 0.00016, 29, -112.58, 115.52, 0.17993, 31, 20.03, -32.43, 0.56768, 30, - 95.91, -35.51, 0.24675, 32, 10.07, -206.98, 0.00533, 33, -191.14, -287.62, 3e-05, 37, -366.09, -272.89, 9e-05, 38, -476.37, -75.11, 3e-05, 8, 27, -278.07, 183.49, 8e-05, 29, -127.9, - 138.25, 0.07341, 31, 27.73, -6.13, 0.62643, 30, 108.23, -11.03, 0.2753, 32, 36.55, -199.89, 0.0247, 33, -171.19, -306.42, 2e-05, 37, -365.18, -300.28, 4e-05, 38, -492.2, -97.49, - 2e-05, 8, 27, -306.47, 169.83, 3e-05, 29, -159.39, 139.4, 0.02116, 31, 8.5, 18.83, 0.53817, 30, 93.81, 16.99, 0.36659, 32, 47.88, -170.48, 0.07403, 33, -140.22, -300.6, 0, 37, - -339.1, -317.98, 1e-05, 38, -482.11, -127.35, 0, 4, 29, -194.26, 131.52, 0.00409, 31, -19.84, 40.63, 0.35353, 30, 69.87, 43.54, 0.4808, 32, 51.77, -134.94, 0.16158, 4, 29, -222.02, - 118.69, 0.00027, 31, -47.44, 53.79, 0.17171, 30, 45.09, 61.47, 0.54518, 32, 48.66, -104.52, 0.28285, 3, 31, -77.22, 57.94, 0.06064, 30, 16.55, 70.92, 0.51868, 32, 36.73, -76.92, - 0.42068, 3, 31, -57.29, 89.33, 0.01555, 30, 41.82, 98.2, 0.42082, 32, 73.91, -77.63, 0.56363, 4, 31, -80.7, 96.56, 0.00451, 30, 20.09, 109.53, 0.29427, 32, 67.91, -53.88, 0.70079, - 33, -30.49, -256.37, 0.00043, 4, 31, -107.19, 97.92, 0.00148, 30, -5.71, 115.65, 0.17382, 32, 55.31, -30.54, 0.82041, 33, -17.26, -233.38, 0.00428, 4, 31, -119.43, 127.9, 0.00048, - 30, -12.35, 147.34, 0.08258, 32, 74.56, -4.5, 0.89909, 33, 15.02, -236.07, 0.01785, 6, 27, -448.7, 38.85, 0, 31, -149.05, 130.92, 3e-05, 30, -40.93, 155.66, 0.02827, 32, 61.75, - 22.37, 0.92404, 33, 31.14, -211.05, 0.04766, 37, -154.4, -375.15, 0, 5, 27, -450.98, 5.31, 1e-05, 30, -74.52, 157.03, 0.00609, 32, 40.42, 48.36, 0.89876, 33, 42.05, -179.25, 0.09515, - 37, -124.25, -360.26, 0, 5, 27, -447.46, -17.92, 2e-05, 30, -97.66, 152.9, 0.00034, 32, 21.95, 62.88, 0.8434, 33, 44.69, -155.9, 0.15624, 37, -105.93, -345.55, 0, 5, 27, -423.09, - -28.46, 2e-05, 30, -107.53, 128.25, 1e-05, 32, -3.03, 53.86, 0.76601, 33, 23.89, -139.4, 0.23396, 37, -109.07, -319.18, 1e-05, 5, 27, -454.42, -40.74, 2e-05, 30, -120.65, 159.24, - 3e-05, 32, 11.38, 84.27, 0.66126, 33, 57.34, -135.68, 0.33868, 37, -82.7, -340.11, 0, 6, 27, -455.4, -63.79, 1e-05, 30, -143.72, 159.6, 7e-05, 32, -3.7, 101.73, 0.51795, 33, 64.27, - -113.66, 0.48189, 34, -21.96, -285.01, 9e-05, 37, -62.28, -329.37, 0, 6, 27, -428.49, -102.95, 1e-05, 30, -182.15, 131.65, 8e-05, 32, -50.13, 111.82, 0.3516, 33, 48.45, -68.86, - 0.64044, 34, -21.42, -237.5, 0.00787, 37, -41.94, -286.43, 0, 6, 27, -435.69, -136.98, 0, 30, -216.35, 137.93, 7e-05, 32, -68.2, 141.54, 0.19493, 33, 64.24, -37.88, 0.76785, 34, - 4.06, -213.82, 0.03714, 37, -8.91, -275.56, 2e-05, 6, 27, -433.38, -177.99, 0, 30, -257.29, 134.52, 3e-05, 32, -97.98, 169.83, 0.08395, 33, 72.65, 2.34, 0.80689, 34, 25.78, -178.95, - 0.10908, 37, 25.4, -252.95, 6e-05, 6, 27, -411.01, -217.09, 0, 30, -295.78, 111.11, 1e-05, 32, -141.06, 182.99, 0.02493, 33, 61.21, 45.9, 0.74583, 34, 30, -134.11, 0.22912, 37, - 47.96, -213.97, 0.00011, 4, 32, -162.02, 190.79, 0.00437, 33, 56.83, 67.83, 0.60625, 34, 33.43, -112.01, 0.38926, 37, 60.31, -195.32, 0.00013, 4, 32, -180.86, 213.92, 0, 33, 66.61, - 96.02, 0.43776, 34, 52.29, -88.9, 0.56213, 37, 87.11, -182.2, 0.00011, 4, 32, -206.59, 227.18, 0, 33, 64.37, 124.87, 0.27854, 34, 60.1, -61.03, 0.7214, 37, 105.84, -160.15, 5e-05, 4, - 32, -234.11, 226.07, 0, 33, 48.96, 147.7, 0.15459, 34, 53.48, -34.3, 0.84539, 37, 110.99, -133.09, 2e-05, 6, 32, -263.5, 225.1, 0, 33, 32.68, 172.2, 0.07484, 34, 46.62, -5.7, - 0.92068, 36, -84.62, -175.03, 0.00135, 35, 17.9, -183.52, 0.00062, 37, 116.7, -104.24, 0.00251, 6, 32, -247.01, 237.16, 0, 33, 51.62, 164.51, 0.03188, 34, 61.75, -19.43, 0.94265, 36, - -79.15, -194.72, 0.00762, 35, 25.57, -202.46, 0.0039, 37, 124.72, -123.04, 0.01394, 6, 32, -262.28, 253.36, 0, 33, 57.37, 186.02, 0.01347, 34, 74.55, -1.21, 0.90298, 36, -58.6, - -186.16, 0.02719, 35, 45.01, -191.61, 0.01423, 37, 143.96, -111.83, 0.04214, 6, 32, -293.02, 256.5, 0, 33, 43.89, 213.82, 0.00485, 34, 71.44, 29.53, 0.80374, 36, -44.81, -158.51, - 0.06926, 35, 55.57, -162.58, 0.03541, 37, 153.98, -82.6, 0.08675, 6, 32, -318.68, 256.28, 0, 33, 30.22, 235.53, 0.00156, 34, 66.06, 54.62, 0.65341, 36, -35.96, -134.42, 0.14052, 35, - 61.62, -137.64, 0.07043, 37, 159.56, -57.56, 0.13408, 6, 32, -346.91, 272.97, 0, 33, 29.58, 268.32, 4e-05, 34, 76.73, 85.63, 0.48166, 36, -10.38, -113.9, 0.24754, 35, 84.7, -114.34, - 0.10875, 37, 182.21, -33.84, 0.16201, 7, 23, -148.23, -221.79, 0, 32, -371.47, 283.74, 0, 34, 82.34, 111.86, 0.31664, 36, 8.37, -94.72, 0.39158, 35, 101.15, -93.16, 0.1353, 37, - 198.26, -12.35, 0.15648, 38, 130.73, -208.53, 0, 8, 24, -236.39, -162.01, 0, 23, -115.57, -207.53, 0.0005, 32, -402.53, 266.27, 0, 34, 58.98, 138.77, 0.18268, 36, 2.99, -59.5, - 0.55308, 35, 91.8, -58.77, 0.14271, 37, 188.28, 21.85, 0.1202, 38, 143.45, -175.24, 0.00082, 8, 24, -204.35, -178.69, 8e-05, 23, -80.77, -217.2, 0.00305, 32, -438.13, 272.39, 0, 34, - 57.81, 174.87, 0.08827, 36, 21.28, -28.35, 0.67828, 35, 106.43, -25.75, 0.15312, 37, 202.3, 55.15, 0.07244, 38, 174.73, -157.19, 0.00477, 8, 24, -174.75, -190.68, 0.00051, 23, - -49.32, -222.79, 0.01055, 32, -469.98, 274.78, 0, 34, 53.75, 206.55, 0.0336, 36, 34.77, 0.6, 0.70659, 35, 116.53, 4.56, 0.2009, 37, 211.84, 85.63, 0.03226, 38, 200.76, -138.66, - 0.01559, 8, 24, -143.06, -164.53, 0.00224, 23, -23.75, -190.63, 0.02658, 32, -492.19, 240.22, 0, 34, 15.42, 221.35, 0.00881, 36, 10.27, 33.58, 0.6277, 35, 88.44, 34.53, 0.28824, 37, - 183.2, 115.08, 0.00978, 38, 195.73, -97.89, 0.03665, 8, 24, -110.84, -167.06, 0.00759, 23, 8.3, -186.43, 0.0565, 32, -523.65, 232.81, 0, 34, 1.83, 250.68, 0.00125, 36, 14.45, 65.63, - 0.48236, 35, 88.94, 66.85, 0.38108, 37, 183.11, 147.4, 0.00143, 38, 215.19, -72.08, 0.06979, 6, 24, -78.44, -165.79, 0.01668, 23, 39.73, -178.46, 0.09882, 32, -554.12, 221.72, 0, 36, - 14.84, 98.06, 0.33449, 35, 85.64, 99.11, 0.43535, 38, 231.53, -44.07, 0.11466, 6, 24, -70.88, -131.52, 0.02639, 23, 40.01, -143.37, 0.1411, 32, -550.87, 186.78, 0, 36, -19, 107.35, - 0.21662, 35, 50.96, 104.49, 0.45128, 38, 206.69, -19.28, 0.1646, 6, 24, -62.29, -90.62, 0.03055, 23, 39.92, -101.58, 0.16506, 32, -546.58, 145.21, 0, 36, -59.41, 118.01, 0.13763, 35, - 9.6, 110.49, 0.45937, 38, 176.82, 9.94, 0.20739, 6, 24, -110.48, -78.97, 0.08468, 23, -9.63, -100.17, 0.21707, 32, -497.13, 148.8, 0, 36, -73.51, 70.49, 0.05713, 35, 1, 61.67, - 0.39573, 38, 141.09, -24.43, 0.24538, 6, 24, -66.3, -76.53, 0.1834, 23, 33.08, -88.62, 0.26456, 32, -538.47, 133.01, 0, 36, -73.69, 114.74, 0.03726, 35, -4.21, 105.61, 0.29744, 38, - 162.78, 14.14, 0.21734, 6, 24, -25.72, -66.58, 0.34249, 23, 70.71, -70.47, 0.28764, 32, -574.08, 111.16, 0, 36, -81.56, 155.77, 0.02319, 35, -16.69, 145.48, 0.1906, 38, 176.2, 53.7, - 0.15609, 8, 24, 18.22, -45.19, 0.5153, 23, 109.26, -40.42, 0.27725, 26, -34, -238.73, 1e-05, 25, 98.33, -240.59, 0.00014, 32, -609.41, 77.39, 0, 36, -100.68, 200.75, 0.01334, 35, - -40.81, 187.99, 0.102, 38, 181.78, 102.26, 0.09196, 8, 24, -5.11, -36.24, 0.68228, 23, 84.58, -36.51, 0.21853, 26, -56.23, -227.31, 0.00023, 25, 74.22, -234.03, 0.00289, 32, -584.46, - 75.98, 0, 36, -110.8, 177.9, 0.00627, 35, -48.27, 164.14, 0.04474, 38, 161.69, 87.39, 0.04507, 8, 24, 25.81, -15.05, 0.78147, 23, 110.43, -9.36, 0.16091, 26, -23.2, -209.58, 0.0015, - 25, 102.85, -209.84, 0.01576, 32, -607.44, 46.37, 0, 36, -130.39, 209.86, 0.00235, 35, -71.36, 193.66, 0.01828, 38, 160.43, 124.85, 0.01973, 8, 24, 49.34, 5.37, 0.79425, 23, 129.21, - 15.49, 0.13103, 26, 2.4, -191.83, 0.0064, 25, 124.21, -187.16, 0.05405, 32, -623.63, 19.75, 0, 36, -149.58, 234.4, 0.00072, 35, -93.22, 215.86, 0.00632, 38, 155.86, 155.67, 0.00722, - 9, 24, 37.3, 35.81, 0.68614, 23, 111.12, 42.77, 0.15961, 26, -6.27, -160.26, 0.01489, 25, 109.18, -158.08, 0.13336, 30, -462.27, -359.12, 0, 32, -602.89, -5.58, 0, 36, -180.6, - 223.94, 0.00021, 35, -122.85, 201.94, 0.00188, 38, 123.72, 161.88, 0.00391, 9, 24, 25.77, 69.55, 0.50501, 23, 92.84, 73.39, 0.20707, 26, -14.08, -125.48, 0.02803, 25, 94.32, -125.67, - 0.25449, 30, -426.75, -362.28, 0, 32, -581.62, -34.19, 0, 36, -214.89, 214.14, 1e-05, 35, -155.8, 188.31, 0.00015, 38, 89.07, 170.29, 0.00524, 6, 24, 7.83, 108.42, 0.31183, 23, - 67.22, 107.68, 0.23636, 26, -27.71, -84.9, 0.05759, 25, 72.56, -88.8, 0.38458, 30, -383.95, -361.67, 0, 38, 46.65, 176.05, 0.00964, 6, 24, -27.61, 131.05, 0.16996, 23, 27.85, 122.47, - 0.21701, 26, -60.5, -58.56, 0.13953, 25, 35.02, -69.84, 0.46198, 30, -348.87, -338.47, 0, 38, 8.51, 158.32, 0.01152, 9, 24, 1.43, 139.17, 0.08717, 23, 54.58, 136.44, 0.16092, 26, - -30.75, -53.63, 0.29668, 25, 63.1, -58.85, 0.44506, 28, 36.72, -285.46, 0.00015, 27, 66.69, -287.4, 3e-05, 30, -353.25, -368.3, 0, 32, -537.21, -93.07, 0, 38, 17.28, 187.18, 0.00999, - 9, 24, 34.53, 159.46, 0.04501, 23, 82.74, 163.15, 0.09458, 26, 4.35, -37.05, 0.48678, 25, 94, -35.34, 0.36559, 28, 73.96, -274.5, 0.00167, 27, 105.3, -283.34, 0.00083, 30, -348.15, - -406.79, 0, 32, -562.55, -122.49, 0, 38, 17.96, 225.99, 0.00554, 9, 24, 70.31, 196.36, 0.0212, 23, 110.09, 206.67, 0.0423, 26, 43.91, -4.23, 0.60196, 25, 125.89, 4.97, 0.32013, 28, - 118.12, -248.2, 0.00738, 27, 153.48, -265.43, 0.00499, 30, -328.95, -454.47, 0, 32, -585.37, -168.54, 0, 38, 6.07, 276, 0.00204, 11, 24, 49.11, 222.73, 0.00776, 23, 83.88, 228.07, - 0.01304, 26, 25.69, 24.28, 0.55911, 25, 102.15, 29.08, 0.3825, 28, 104.53, -217.21, 0.01991, 27, 145.7, -232.5, 0.01731, 30, -296.25, -445.81, 1e-05, 32, -557.15, -187.19, 0, 33, - -472.4, 205.35, 1e-05, 37, -218.4, 275.12, 2e-05, 38, -27.56, 272.3, 0.00033, 11, 24, 15.21, 253.34, 0.00151, 23, 44.36, 250.98, 0.00216, 26, -4.7, 58.38, 0.38915, 25, 65.34, 56.13, - 0.52735, 28, 79.77, -178.83, 0.03984, 27, 128.27, -190.28, 0.03963, 30, -254.5, -427.25, 3e-05, 32, -515.52, -206.01, 0, 33, -466.53, 160.05, 3e-05, 37, -246.16, 238.84, 7e-05, 38, - -71.6, 260.16, 0.00023, 11, 24, -17.52, 269.12, 2e-05, 23, 9.07, 259.62, 2e-05, 26, -35.54, 77.6, 0.19848, 25, 31.19, 68.54, 0.66856, 28, 52.28, -155.07, 0.06385, 27, 105.52, - -161.95, 0.06836, 30, -226.8, -403.75, 6e-05, 32, -479.54, -211.06, 0, 33, -451.92, 126.78, 5e-05, 37, -259.22, 204.93, 0.00014, 38, -102.49, 241.04, 0.00046, 9, 26, -68.1, 80.91, - 0.07636, 25, -1.35, 65.02, 0.7365, 28, 20.62, -146.76, 0.09056, 27, 75.87, -148.08, 0.09573, 30, -213.72, -373.74, 7e-05, 32, -448.44, -200.85, 0, 33, -426.89, 105.69, 6e-05, 37, - -256.32, 172.33, 0.00017, 38, -119.88, 213.31, 0.00055, 9, 26, -42.08, 95.84, 0.02679, 25, 21.01, 85.02, 0.7301, 28, 48.64, -136.03, 0.11966, 27, 105.36, -142.58, 0.12258, 30, - -207.43, -403.08, 7e-05, 32, -466.16, -225.07, 0, 33, -456.8, 108.03, 6e-05, 37, -275.89, 195.07, 0.00018, 38, -121.74, 243.25, 0.00057, 9, 26, -26.56, 110.02, 0.01487, 25, 33.24, - 102.12, 0.67118, 28, 66.16, -124.42, 0.15199, 27, 124.7, -134.32, 0.16085, 30, -198.66, -422.18, 7e-05, 32, -474.58, -244.33, 0, 33, -477.62, 105.08, 7e-05, 37, -292.75, 207.63, - 0.00022, 38, -127.58, 263.45, 0.00073, 9, 26, -52.7, 126.5, 0.00957, 25, 4.25, 112.81, 0.57929, 28, 42.88, -104.1, 0.19092, 27, 105.46, -110.13, 0.21834, 30, -174.99, -402.31, - 0.00012, 32, -444, -248.77, 0, 33, -465.33, 76.72, 0.00012, 37, -304, 178.85, 0.00037, 38, -153.94, 247.31, 0.00127, 9, 26, -81.43, 135.43, 0.00467, 25, -25.71, 115.59, 0.46178, 28, - 15.88, -90.83, 0.25394, 27, 81.29, -92.21, 0.27673, 30, -157.73, -377.67, 0.00019, 32, -414.11, -245.27, 0, 33, -446.64, 53.14, 0.00019, 37, -307.35, 148.95, 0.00056, 38, -174.67, - 225.51, 0.00194, 9, 26, -105.33, 144.86, 0.00143, 25, -51.04, 119.85, 0.33223, 28, -6.27, -77.82, 0.36722, 27, 61.85, -75.42, 0.29597, 30, -141.46, -357.78, 0.00021, 32, -388.45, - -244.18, 0, 33, -432.22, 31.88, 0.00021, 37, -312.1, 123.7, 0.00061, 38, -193.71, 208.27, 0.00212, 11, 26, -92.76, 174.05, 0.00015, 25, -44.81, 151.01, 0.209, 28, 10.65, -50.93, - 0.53168, 27, 83.35, -52.01, 0.25667, 29, 82.16, -238.53, 2e-05, 31, -127.99, -408.42, 0, 30, -117.49, -378.64, 0.00016, 32, -388.07, -275.95, 0, 33, -459.06, 14.86, 0.00016, 37, - -343.14, 130.53, 0.00048, 38, -214.31, 232.46, 0.00168, 10, 25, -36.92, 182.68, 0.11021, 28, 29.31, -24.15, 0.67791, 27, 106.53, -29.04, 0.20927, 29, 113.37, -229, 0.00135, 31, - -100.72, -426.35, 0, 30, -93.9, -401.2, 8e-05, 32, -389.22, -308.57, 0, 33, -487.41, -1.31, 8e-05, 37, -374.65, 139.03, 0.00024, 38, -234.29, 258.27, 0.00086, 9, 24, -73.51, 56.86, - 0.00581, 23, -1.65, 40.36, 0.67504, 25, -3.19, -148.27, 0.07186, 27, -36.38, -329.45, 0.0002, 30, -398.04, -266.4, 1e-05, 32, -490.93, 8.17, 0, 36, -207.27, 114.34, 0.00046, 35, - -136.88, 90.02, 0.0045, 38, 46.42, 79.74, 0.24212, 9, 24, -110.93, 53.31, 0.00736, 23, -37.52, 29.13, 0.6792, 25, -40.06, -155.56, 0.05778, 27, -71.68, -316.54, 0.00017, 30, -386.08, - -230.76, 1e-05, 32, -456.37, 22.95, 0, 36, -205.64, 76.79, 0.00112, 35, -130.99, 52.9, 0.01428, 38, 29.3, 46.28, 0.24008, 10, 24, -77.06, 13.93, 0.01065, 23, 3.79, -2.37, 0.63678, - 25, -2.41, -191.34, 0.03322, 27, -58.06, -366.67, 0.00012, 30, -435.83, -245.72, 1e-05, 32, -500.64, 50.14, 0, 36, -164.58, 108.61, 0.00244, 35, -93.81, 89.18, 0.04224, 37, -0.03, - 166.35, 0.00264, 38, 80.72, 53.68, 0.2719, 10, 24, -55.79, -32.55, 0.01152, 23, 34.24, -43.42, 0.52031, 25, 23.42, -235.45, 0.01249, 27, -58.87, -417.77, 5e-05, 30, -486.94, -246.29, - 0, 32, -535.07, 87.91, 0, 36, -117.08, 127.48, 0.00337, 35, -48.76, 113.33, 0.11486, 37, 44.56, 191.33, 0.00792, 38, 131.34, 46.64, 0.32948, 11, 24, -100.69, -36.49, 0.00974, 23, - -8.87, -56.59, 0.33211, 25, -20.85, -243.88, 0.00262, 27, -101.09, -402, 2e-05, 30, -472.31, -203.66, 0, 32, -493.5, 105.35, 0, 34, -116.95, 195.51, 0.0002, 36, -115.44, 82.43, - 0.00345, 35, -42.01, 68.77, 0.2427, 37, 52.14, 146.9, 0.02606, 38, 110.53, 6.66, 0.38309, 8, 24, -154.25, -22.31, 0.00513, 23, -64.21, -53.83, 0.15953, 32, -438.17, 108.18, 0, 34, - -103.05, 141.87, 0.00118, 36, -132.33, 29.66, 0.00279, 35, -52.79, 14.41, 0.40157, 37, 42.36, 92.36, 0.08446, 38, 69.78, -30.9, 0.34534, 9, 24, -170.01, -79.81, 0.00181, 23, -67.69, - -113.35, 0.04908, 32, -440.69, 167.75, 0, 33, -109.22, 292.81, 9e-05, 34, -45.2, 156.33, 0.0134, 36, -75.71, 10.99, 0.00225, 35, 5.59, 2.31, 0.48966, 37, 100.96, 81.33, 0.2096, 38, - 109.81, -75.09, 0.2341, 9, 24, -204.67, -85.33, 0.0001, 23, -100.45, -125.94, 0.00811, 32, -409.37, 183.57, 0, 33, -79.3, 274.47, 0.00027, 34, -23.41, 128.83, 0.06356, 36, -71.97, - -23.9, 0.00229, 35, 13.27, -31.94, 0.44361, 37, 109.27, 47.24, 0.38014, 38, 95.83, -107.28, 0.10191, 10, 23, -149.54, -110.5, 4e-05, 27, -245.53, -359.22, 1e-05, 30, -433.41, -58.12, - 1e-05, 32, -358.97, 173.15, 0, 33, -61.69, 226.12, 0.00173, 34, -23.48, 77.37, 0.18233, 36, -99.51, -67.37, 0.0026, 35, -9.14, -78.25, 0.28553, 37, 87.71, 0.51, 0.50149, 38, 50.42, - -131.48, 0.02627, 12, 23, -183.8, -90.13, 1e-05, 25, -198.38, -258.3, 0, 27, -260.33, -322.21, 0.00011, 29, -347.84, -317.46, 0, 30, -396.81, -42.33, 0.00014, 32, -322.84, 156.33, 0, - 33, -57, 186.54, 0.01162, 34, -32.68, 38.59, 0.35989, 36, -128, -95.24, 0.00288, 35, -34.28, -109.18, 0.1232, 37, 63.15, -30.88, 0.50205, 38, 11.89, -141.65, 0.0001, 10, 25, -223.94, - -292.96, 0, 27, -300.17, -338.57, 0.00034, 29, -390.71, -313.38, 1e-05, 30, -414.24, -2.95, 0.00043, 32, -305.03, 195.54, 0, 33, -14.29, 192, 0.04868, 34, 9.31, 29.04, 0.53126, 36, - -97.61, -125.74, 0.00255, 35, -0.61, -136.03, 0.03035, 37, 97.31, -57.1, 0.38637, 10, 25, -246.65, -258.65, 1e-05, 27, -301.77, -297.46, 0.0007, 29, -372.97, -276.25, 2e-05, 30, - -373.18, -0.24, 0.00087, 32, -275.69, 166.69, 0, 33, -23.41, 151.88, 0.1407, 34, -13.05, -5.51, 0.6065, 36, -134.96, -143.01, 0.00188, 35, -35.76, -157.43, 0.0017, 37, 62.57, -79.14, - 0.24763, 10, 25, -264.47, -224.22, 1e-05, 27, -299.14, -258.78, 0.0009, 29, -352.62, -243.25, 3e-05, 30, -334.45, -1.84, 0.00111, 32, -251.12, 136.71, 0.00035, 33, -36, 115.21, - 0.30236, 34, -37.47, -35.61, 0.55238, 36, -171.68, -155.42, 0.00089, 35, -70.83, -173.94, 0.00033, 37, 27.81, -96.3, 0.14165, 11, 25, -317.97, -225.09, 1e-05, 27, -345.32, -231.77, - 0.00093, 29, -380.9, -197.83, 4e-05, 30, -308.68, 45.06, 0.00161, 32, -198.96, 148.67, 0.00699, 33, 1.59, 77.13, 0.50763, 34, -15.26, -84.29, 0.40148, 36, -178.9, -208.43, 0.00029, - 35, -71.97, -227.43, 0.00011, 37, 27.65, -149.8, 0.08088, 38, -88.26, -214.96, 3e-05, 9, 25, -367.48, -216.88, 1e-05, 27, -383.39, -199.06, 0.00082, 29, -399.33, -151.15, 6e-05, 30, - -277, 83.98, 0.00253, 32, -148.83, 150.93, 0.03176, 33, 29.85, 35.66, 0.69106, 34, -2.97, -132.95, 0.2339, 37, 18.49, -199.15, 0.03979, 38, -125.38, -248.74, 8e-05, 9, 25, -391.07, - -181.63, 2e-05, 27, -385.26, -156.68, 0.00089, 29, -381.25, -112.78, 9e-05, 30, -234.7, 86.99, 0.00455, 32, -118.43, 121.34, 0.09712, 33, 20.66, -5.75, 0.77783, 34, -25.83, -168.68, - 0.10376, 37, -17.2, -222.06, 0.01557, 38, -167.66, -245.43, 0.00016, 9, 25, -401.05, -142.23, 2e-05, 27, -373.35, -117.82, 0.001, 29, -352.6, -83.95, 0.0001, 30, -195.53, 76.12, - 0.00668, 32, -100.48, 84.87, 0.21526, 33, -0.94, -40.18, 0.73989, 34, -57.95, -193.6, 0.03292, 37, -56.79, -231.28, 0.0039, 38, -204.78, -228.85, 0.00021, 9, 25, -441.97, -145.16, - 2e-05, 27, -409.84, -99.09, 0.00112, 29, -376.16, -50.37, 9e-05, 30, -177.79, 113.11, 0.00857, 32, -61.07, 96.23, 0.38638, 33, 29.44, -67.75, 0.59623, 34, -38.89, -229.92, 0.00551, - 37, -54.65, -272.25, 0.00185, 38, -227.82, -262.79, 0.00023, 8, 25, -459.01, -99.26, 1e-05, 27, -400.59, -51.02, 0.00101, 29, -345.58, -12.15, 5e-05, 30, -129.48, 105.15, 0.00931, - 32, -34.87, 54.88, 0.57773, 33, 8.02, -111.77, 0.41032, 37, -100.86, -288.4, 0.00138, 38, -274.41, -247.74, 0.00019, 8, 25, -463.71, -68.53, 0, 27, -388.67, -22.31, 0.00078, 29, - -321.64, 7.7, 2e-05, 30, -100.46, 94, 0.00886, 32, -23.89, 25.79, 0.75344, 33, -10.95, -136.4, 0.23574, 37, -131.68, -292.51, 0.00101, 38, -301.45, -232.39, 0.00014, 7, 27, -414.56, - 10.33, 0.00049, 29, -329.35, 48.64, 0, 30, -68.53, 120.76, 0.00782, 32, 17.34, 19.76, 0.87436, 33, 5.58, -174.64, 0.11661, 37, -146.89, -331.3, 0.00062, 38, -337, -254.11, 9e-05, 7, - 27, -424.26, 52.89, 0.00035, 29, -318.1, 90.81, 0, 30, -26.25, 131.6, 0.00703, 32, 53.56, -4.6, 0.92594, 33, 3.89, -218.26, 0.06617, 37, -178.81, -361.06, 0.00045, 38, -380.43, - -258.54, 7e-05, 10, 23, -53.01, 28.53, 0.09361, 25, -55.52, -154.49, 0.02062, 27, -84.34, -307.6, 0.00109, 29, -185.31, -386.53, 2e-05, 30, -377.49, -217.87, 0.00033, 32, -441.03, - 25.11, 0, 33, -230.75, 218.13, 0.00042, 35, -132.64, 37.49, 0.00261, 37, -37.9, 113.95, 0.06846, 38, 18.88, 34.81, 0.81283, 10, 23, -74.61, -3.91, 0.07738, 25, -80.51, -184.4, - 0.01717, 27, -121.22, -320.2, 0.00125, 29, -223.82, -380.5, 3e-05, 30, -391.08, -181.34, 0.00042, 32, -422.8, 59.56, 0, 33, -191.87, 220.73, 0.00054, 35, -103.69, 11.39, 0.00286, 37, - -8.47, 88.4, 0.08682, 38, 26.88, -3.33, 0.81354, 10, 23, -115.71, 8.34, 0.05991, 25, -120.04, -167.77, 0.01344, 27, -146.38, -285.48, 0.00138, 29, -229.9, -338.05, 3e-05, 30, - -357.04, -155.25, 0.00049, 32, -380.68, 51.5, 0, 33, -176.58, 180.66, 0.00066, 35, -121.8, -27.48, 0.00312, 37, -25.86, 49.19, 0.10398, 38, -10.66, -24.07, 0.817, 10, 25, -161.45, - -204.61, 0.00026, 27, -200.9, -295.48, 0.00139, 29, -282.8, -321.5, 0.00011, 30, -368.5, -101.02, 0.00149, 32, -347.82, 96.14, 0, 33, -121.34, 176.16, 0.02366, 34, -96.66, 50.95, - 0.13086, 35, -86.54, -70.25, 0.00158, 37, 10.18, 7.08, 0.82649, 38, -7.39, -79.4, 0.01416, 10, 25, -195.56, -241.08, 0.00034, 27, -248.98, -308.95, 0.00179, 29, -331.62, -311.02, - 0.00015, 30, -383.26, -53.33, 0.00191, 32, -322.03, 138.89, 0, 33, -71.41, 176.69, 0.02952, 34, -49.6, 34.29, 0.14297, 35, -51.39, -105.71, 0.00131, 37, 45.99, -27.72, 0.81008, 38, - 0.11, -128.76, 0.01194, 10, 25, -215.75, -196.14, 0.00041, 27, -242.92, -260.06, 0.00216, 29, -303.48, -270.58, 0.00018, 30, -334.22, -58.07, 0.0023, 32, -292.94, 99.13, 0, 33, - -89.95, 131.04, 0.03503, 34, -82.7, -2.21, 0.15601, 35, -97.06, -124.2, 0.00101, 37, 0.67, -47.05, 0.79338, 38, -47.68, -116.78, 0.00953, 4, 34, -8.01, 108.05, 0.19469, 36, -70.05, - -49.69, 0.07095, 35, 18.12, -57.34, 0.29258, 37, 114.58, 21.93, 0.44179, 4, 34, 23.39, 105.67, 0.22225, 36, -44.77, -68.47, 0.07138, 35, 45.36, -73.12, 0.26974, 37, 142.12, 6.65, - 0.43663, 4, 34, 19.4, 57.95, 0.24898, 36, -73.63, -106.68, 0.07264, 35, 21.04, -114.36, 0.24777, 37, 118.56, -35.04, 0.43061, 6, 24, -86.84, -84.69, 0.03422, 23, 14.68, -100.86, - 0.16887, 32, -521.39, 147.03, 0, 36, -66.6, 93.81, 0.09065, 35, 5.22, 85.62, 0.47997, 38, 158.62, -7.57, 0.22629, 6, 24, -93.8, -126.04, 0.01856, 23, 16.45, -142.76, 0.12235, 32, - -527.37, 188.55, 0, 36, -25.65, 84.74, 0.09577, 35, 46.94, 81.28, 0.57184, 38, 189.76, -35.66, 0.19147, 6, 24, -138.07, -106.85, 0.01347, 23, -30.83, -133.17, 0.09887, 32, -479.36, - 183.76, 0, 36, -47.08, 41.51, 0.10247, 35, 30.56, 35.89, 0.61779, 38, 149.78, -62.68, 0.1674 + 1, 42, 41.12, 33.33, 1, 1, 42, 48.32, 34.31, 1, 1, 42, 53.77, 35.04, 1, 1, 42, 60, 36.01, 1, 4, 42, 68.02, 38.37, 0.9295, 43, 61.47, -1.03, 1e-05, 44, 40.07, -0.92, 0.00266, 45, + 18.6, -0.92, 0.06784, 4, 42, 72.27, 39, 0.79905, 43, 62.32, -5.24, 1e-05, 44, 40.92, -5.13, 0.00721, 45, 19.44, -5.13, 0.19373, 4, 42, 78.35, 40.51, 0.74731, 43, 64.15, -11.23, 0, + 44, 42.75, -11.12, 0.00973, 45, 21.27, -11.12, 0.24296, 4, 42, 77.99, 36.05, 0.54785, 43, 59.68, -11.11, 1e-05, 44, 38.27, -11, 0.02168, 45, 16.8, -11, 0.43046, 4, 42, 77.69, 32.35, + 0.43038, 43, 55.96, -11, 3e-05, 44, 34.56, -10.9, 0.03847, 45, 13.08, -10.9, 0.53112, 4, 42, 77.42, 28.93, 0.36035, 43, 52.54, -10.91, 9e-05, 44, 31.14, -10.81, 0.06275, 45, 9.66, + -10.81, 0.57681, 4, 42, 77.02, 23.98, 0.2889, 43, 47.58, -10.78, 0.00026, 44, 26.17, -10.67, 0.09917, 45, 4.7, -10.67, 0.61167, 4, 42, 76.69, 19.85, 0.22591, 43, 43.44, -10.66, + 0.0007, 44, 22.03, -10.56, 0.14876, 45, 0.56, -10.56, 0.62463, 4, 42, 76.55, 17.04, 0.17724, 43, 40.62, -10.66, 0.0017, 44, 19.22, -10.56, 0.21115, 45, -2.26, -10.56, 0.60991, 4, 42, + 76.41, 14.43, 0.14418, 43, 38, -10.66, 0.00385, 44, 16.6, -10.56, 0.28407, 45, -4.88, -10.56, 0.5679, 4, 42, 76.24, 11.19, 0.12448, 43, 34.76, -10.66, 0.00813, 44, 13.35, -10.56, + 0.36326, 45, -8.12, -10.56, 0.50413, 4, 42, 76.11, 8.78, 0.11438, 43, 32.35, -10.66, 0.016, 44, 10.95, -10.56, 0.44276, 45, -10.53, -10.56, 0.42686, 4, 42, 75.96, 5.95, 0.11006, 43, + 29.51, -10.66, 0.02948, 44, 8.11, -10.56, 0.51561, 45, -13.37, -10.56, 0.34486, 4, 42, 75.84, 3.69, 0.10858, 43, 27.25, -10.66, 0.05095, 44, 5.84, -10.56, 0.57474, 45, -15.63, + -10.56, 0.26573, 4, 42, 75.71, 1.19, 0.10802, 43, 24.75, -10.66, 0.08291, 44, 3.35, -10.56, 0.614, 45, -18.13, -10.56, 0.19506, 4, 42, 75.55, -1.87, 0.1074, 43, 21.68, -10.66, + 0.12742, 44, 0.28, -10.56, 0.62906, 45, -21.2, -10.56, 0.13612, 4, 42, 75.4, -4.66, 0.10634, 43, 18.89, -10.66, 0.18549, 44, -2.52, -10.56, 0.61812, 45, -23.99, -10.56, 0.09006, 4, + 42, 75.27, -7.19, 0.10502, 43, 16.36, -10.66, 0.25646, 44, -5.05, -10.56, 0.58221, 45, -26.52, -10.56, 0.05631, 4, 42, 75.14, -9.57, 0.10419, 43, 13.97, -10.66, 0.33753, 44, -7.43, + -10.56, 0.52513, 45, -28.91, -10.56, 0.03316, 4, 42, 75, -12.25, 0.10536, 43, 11.29, -10.66, 0.42349, 44, -10.12, -10.56, 0.45282, 45, -31.59, -10.56, 0.01833, 4, 42, 74.83, -15.5, + 0.11098, 43, 8.04, -10.66, 0.50701, 44, -13.37, -10.56, 0.37254, 45, -34.84, -10.56, 0.00948, 4, 42, 74.68, -18.42, 0.12436, 43, 5.11, -10.66, 0.57939, 44, -16.3, -10.56, 0.29168, + 45, -37.77, -10.56, 0.00457, 4, 42, 74.53, -21.28, 0.149, 43, 2.24, -10.66, 0.63222, 44, -19.16, -10.56, 0.21673, 45, -40.64, -10.56, 0.00205, 4, 42, 74.36, -24.48, 0.18726, 43, + -0.96, -10.66, 0.65948, 44, -22.36, -10.56, 0.15241, 45, -43.84, -10.56, 0.00085, 4, 42, 74.16, -28.24, 0.23866, 43, -4.73, -10.66, 0.65975, 44, -26.13, -10.56, 0.10126, 45, -47.61, + -10.56, 0.00033, 4, 42, 73.97, -31.98, 0.29871, 43, -8.46, -10.66, 0.63741, 44, -29.87, -10.56, 0.06376, 45, -51.34, -10.56, 0.00012, 4, 42, 73.77, -35.69, 0.35932, 43, -12.18, + -10.66, 0.60181, 44, -33.58, -10.56, 0.03884, 45, -55.06, -10.56, 4e-05, 4, 42, 73.59, -39.16, 0.49297, 43, -15.66, -10.66, 0.48586, 44, -37.06, -10.56, 0.02116, 45, -58.54, -10.56, + 1e-05, 4, 42, 73.2, -46.43, 0.66969, 43, -22.93, -10.66, 0.32512, 44, -44.34, -10.56, 0.00518, 45, -65.81, -10.56, 0, 4, 42, 68.13, -44.43, 0.73638, 43, -21.2, -5.49, 0.26049, 44, + -42.61, -5.38, 0.00313, 45, -64.08, -5.38, 0, 4, 42, 63.33, -42.54, 0.74288, 43, -19.57, -0.59, 0.25402, 44, -40.97, -0.49, 0.00309, 45, -62.45, -0.49, 1e-05, 2, 42, 57.06, -40.07, + 0.86, 43, -17.44, 5.79, 0.14, 2, 42, 51.63, -37.93, 0.87418, 43, -15.59, 11.32, 0.12582, 1, 42, 45.12, -35.37, 1, 1, 42, 39.61, -33.2, 1, 2, 42, 0.87, -12.9, 0.99965, 43, 6.74, + 63.34, 0.00035, 2, 42, 1.19, -6.79, 0.9998, 43, 12.86, 63.34, 0.0002, 3, 42, 1.58, 0.7, 0.99981, 43, 20.36, 63.34, 9e-05, 45, -22.52, 63.44, 0.0001, 3, 42, 1.95, 7.74, 0.99975, 43, + 27.41, 63.34, 1e-05, 45, -15.46, 63.44, 0.00024, 2, 42, 2.27, 13.79, 0.99954, 45, -9.41, 63.44, 0.00046, 4, 42, 41.3, 0.23, 0.88429, 43, 21.98, 23.65, 0.02526, 44, 0.57, 23.75, + 0.06552, 45, -20.9, 23.75, 0.02493, 1, 42, 40.33, -19.01, 1, 4, 42, 41.2, 17.9, 0.94373, 43, 39.62, 24.67, 0.00089, 44, 18.21, 24.78, 0.01419, 45, -3.26, 24.78, 0.04119, 1, 42, + 41.16, 25.66, 1, 1, 42, 39.91, -27.38, 1, 4, 42, 40.8, -9.72, 0.88619, 43, 12.02, 23.63, 0.05505, 44, -9.38, 23.73, 0.05102, 45, -30.86, 23.73, 0.00774, 4, 42, 41.25, 8.67, 0.89286, + 43, 30.41, 24.14, 0.00746, 44, 9, 24.24, 0.04877, 45, -12.47, 24.24, 0.05092, 1, 42, 45.19, -29.23, 1, 4, 42, 45.92, -19.91, 0.74343, 43, 2.11, 17.98, 0.19678, 44, -19.29, 18.08, + 0.05726, 45, -40.76, 18.08, 0.00254, 4, 42, 46.35, -10.13, 0.58833, 43, 11.9, 18.06, 0.20061, 44, -9.5, 18.16, 0.19026, 45, -30.98, 18.16, 0.0208, 4, 42, 46.71, -0.11, 0.58846, 43, + 21.93, 18.23, 0.08112, 44, 0.53, 18.33, 0.24909, 45, -20.95, 18.33, 0.08133, 4, 42, 46.89, 8.69, 0.59817, 43, 30.72, 18.51, 0.02026, 44, 9.32, 18.61, 0.18761, 45, -12.16, 18.61, + 0.19395, 4, 42, 47.28, 18.23, 0.66183, 43, 40.27, 18.62, 0.00346, 44, 18.87, 18.73, 0.07957, 45, -2.61, 18.73, 0.25514, 1, 42, 47.24, 27.47, 1, 4, 42, 51.11, -31.3, 0.84023, 43, + -8.99, 12.2, 0.15068, 44, -30.39, 12.3, 0.00899, 45, -51.87, 12.3, 0.0001, 4, 42, 51.17, -20.75, 0.48016, 43, 1.55, 12.69, 0.41733, 44, -19.86, 12.79, 0.10062, 45, -41.33, 12.79, + 0.0019, 4, 42, 51.55, -10.51, 0.42576, 43, 11.79, 12.85, 0.28082, 44, -9.61, 12.96, 0.27628, 45, -31.09, 12.96, 0.01714, 4, 42, 51.8, -0.42, 0.43345, 43, 21.89, 13.13, 0.09343, 44, + 0.48, 13.24, 0.37698, 45, -20.99, 13.24, 0.09613, 4, 42, 52.3, 8.71, 0.43708, 43, 31.02, 13.11, 0.01603, 44, 9.62, 13.21, 0.27127, 45, -11.86, 13.21, 0.27562, 4, 42, 52.36, 18.51, + 0.51068, 43, 40.82, 13.56, 0.00179, 44, 19.41, 13.67, 0.09933, 45, -2.06, 13.67, 0.3882, 4, 42, 52.97, 29.16, 0.94195, 43, 51.49, 13.52, 4e-05, 44, 30.08, 13.62, 0.00385, 45, 8.61, + 13.62, 0.05416, 4, 42, 56.91, -33.32, 0.72549, 43, -10.71, 6.3, 0.2621, 44, -32.11, 6.41, 0.01235, 45, -53.59, 6.41, 6e-05, 4, 42, 57.26, -21.73, 0.38729, 43, 0.89, 6.56, 0.4981, 44, + -20.51, 6.66, 0.11341, 45, -41.99, 6.66, 0.0012, 4, 42, 57.36, -10.94, 0.32692, 43, 11.67, 7.02, 0.3274, 44, -9.74, 7.13, 0.32983, 45, -31.21, 7.13, 0.01585, 4, 42, 57.43, -0.76, + 0.33677, 43, 21.84, 7.49, 0.10146, 44, 0.43, 7.6, 0.45593, 45, -21.04, 7.6, 0.10584, 4, 42, 57.8, 8.73, 0.33839, 43, 31.33, 7.62, 0.0144, 44, 9.93, 7.73, 0.32329, 45, -11.55, 7.73, + 0.32392, 4, 42, 58.53, 19.24, 0.42143, 43, 41.87, 7.44, 0.00109, 44, 20.47, 7.55, 0.11176, 45, -1.01, 7.55, 0.46572, 4, 42, 60.09, 31.38, 0.79569, 43, 54.07, 6.52, 5e-05, 44, 32.67, + 6.63, 0.01091, 45, 11.19, 6.63, 0.19335, 4, 42, 63.61, -35.67, 0.66085, 43, -12.7, -0.52, 0.32566, 44, -34.1, -0.41, 0.01346, 45, -55.58, -0.41, 3e-05, 4, 42, 64.06, -22.82, 0.31024, + 43, 0.16, -0.29, 0.56299, 44, -21.25, -0.19, 0.12589, 45, -42.72, -0.19, 0.00089, 4, 42, 64.25, -11.45, 0.24349, 43, 11.52, 0.12, 0.36477, 44, -9.89, 0.22, 0.37599, 45, -31.36, 0.22, + 0.01574, 4, 42, 64.34, -1.18, 0.2525, 43, 21.78, 0.57, 0.10936, 44, 0.37, 0.68, 0.52284, 45, -21.1, 0.68, 0.1153, 4, 42, 64.83, 8.75, 0.2544, 43, 31.72, 0.6, 0.01401, 44, 10.32, + 0.71, 0.36809, 45, -11.16, 0.71, 0.3635, 4, 42, 65.03, 19.51, 0.3466, 43, 42.48, 0.96, 0.00077, 44, 21.07, 1.07, 0.1237, 45, -0.4, 1.07, 0.52893, 4, 42, 66.57, 33.2, 0.69411, 43, + 56.23, 0.15, 3e-05, 44, 34.83, 0.26, 0.01435, 45, 13.35, 0.26, 0.29151, 4, 42, 71.92, 34.78, 0.61986, 43, 58.1, -5.11, 1e-05, 44, 36.69, -5.01, 0.01658, 45, 15.22, -5.01, 0.36355, 4, + 42, 70.84, 19.53, 0.28549, 43, 42.81, -4.84, 0.00065, 44, 21.4, -4.73, 0.13463, 45, -0.07, -4.73, 0.57924, 4, 42, 70.54, 8.77, 0.18483, 43, 32.04, -5.1, 0.01432, 44, 10.64, -4.99, + 0.40541, 45, -10.84, -4.99, 0.39544, 4, 42, 70.23, -1.55, 0.18141, 43, 21.73, -5.33, 0.11681, 44, 0.32, -5.23, 0.57764, 45, -21.15, -5.23, 0.12413, 4, 42, 69.5, -11.84, 0.17479, 43, + 11.41, -5.14, 0.39444, 44, -10, -5.04, 0.41447, 45, -31.47, -5.04, 0.0163, 4, 42, 69.05, -23.63, 0.24784, 43, -0.38, -5.32, 0.61396, 44, -21.79, -5.22, 0.13743, 45, -43.26, -5.22, + 0.00077, 4, 42, 68.55, -37.4, 0.59732, 43, -14.16, -5.54, 0.38768, 44, -35.56, -5.43, 0.01499, 45, -57.04, -5.43, 1e-05, 4, 42, 22.71, 0.45, 0.98403, 43, 21.22, 42.22, 0.00516, 44, + -0.19, 42.33, 0.00609, 45, -21.66, 42.33, 0.00473, 3, 42, 13.08, -10.5, 0.98457, 43, 9.78, 51.26, 0.01421, 44, -11.62, 51.37, 0.00123, 3, 42, 16.1, 11.4, 0.98807, 44, 10.41, 49.51, + 0.00101, 45, -11.07, 49.51, 0.01092, 1, 42, 40.1, -23.51, 1, 4, 42, 45.53, -24.85, 0.93122, 43, -2.85, 18.1, 0.05888, 44, -24.25, 18.21, 0.00959, 45, -45.73, 18.21, 0.0003, 4, 42, + 51.14, -26.22, 0.67882, 43, -3.92, 12.43, 0.287, 44, -25.32, 12.54, 0.03374, 45, -46.8, 12.54, 0.00045, 4, 42, 57.07, -27.81, 0.52353, 43, -5.19, 6.42, 0.4314, 44, -26.59, 6.53, + 0.04479, 45, -48.07, 6.53, 0.00029, 4, 42, 63.82, -29.53, 0.41464, 43, -6.56, -0.41, 0.53292, 44, -27.96, -0.3, 0.05226, 45, -49.44, -0.3, 0.00018, 4, 42, 68.8, -30.65, 0.35706, 43, + -7.41, -5.43, 0.58638, 44, -28.81, -5.33, 0.05644, 45, -50.29, -5.33, 0.00012, 4, 42, 40.56, -14.49, 0.88311, 43, 7.24, 23.62, 0.07338, 44, -14.17, 23.72, 0.03978, 45, -35.64, 23.72, + 0.00372, 4, 42, 46.13, -15.07, 0.62555, 43, 6.96, 18.02, 0.24007, 44, -14.45, 18.12, 0.1259, 45, -35.92, 18.12, 0.00848, 4, 42, 51.36, -15.56, 0.4342, 43, 6.74, 12.77, 0.37611, 44, + -14.67, 12.88, 0.18375, 45, -36.14, 12.88, 0.00595, 4, 42, 57.31, -16.26, 0.33684, 43, 6.35, 6.79, 0.44427, 44, -15.05, 6.9, 0.21425, 45, -36.53, 6.9, 0.00464, 4, 42, 64.16, -17.02, + 0.25537, 43, 5.95, -0.08, 0.49872, 44, -15.45, 0.02, 0.24179, 45, -36.93, 0.02, 0.00413, 4, 42, 69.28, -17.64, 0.18921, 43, 5.6, -5.23, 0.54119, 44, -15.8, -5.13, 0.26556, 45, + -37.28, -5.13, 0.00404, 4, 42, 41.05, -4.82, 0.83361, 43, 16.93, 23.64, 0.05679, 44, -4.48, 23.74, 0.08927, 45, -25.95, 23.74, 0.02033, 4, 42, 46.53, -5.25, 0.57797, 43, 16.78, + 18.14, 0.13938, 44, -4.63, 18.25, 0.23843, 45, -26.1, 18.25, 0.04422, 4, 42, 51.66, -5.87, 0.42696, 43, 16.43, 12.98, 0.17737, 44, -4.97, 13.08, 0.35156, 45, -26.45, 13.08, 0.04411, + 4, 42, 57.39, -6.06, 0.33132, 43, 16.54, 7.25, 0.20059, 44, -4.86, 7.35, 0.42277, 45, -26.34, 7.35, 0.04531, 4, 42, 64.29, -6.56, 0.24781, 43, 16.41, 0.33, 0.22055, 44, -4.99, 0.44, + 0.48389, 45, -26.47, 0.44, 0.04775, 4, 42, 69.85, -6.91, 0.17763, 43, 16.35, -5.23, 0.23735, 44, -5.05, -5.13, 0.53429, 45, -26.52, -5.13, 0.05074, 4, 42, 41.28, 4.25, 0.83746, 43, + 26, 23.88, 0.02009, 44, 4.59, 23.99, 0.08772, 45, -16.88, 23.99, 0.05473, 4, 42, 46.8, 4.29, 0.58276, 43, 26.32, 18.37, 0.04346, 44, 4.92, 18.47, 0.23645, 45, -16.56, 18.47, 0.13732, + 4, 42, 52.06, 4.23, 0.43226, 43, 26.54, 13.12, 0.04191, 44, 5.13, 13.22, 0.34769, 45, -16.34, 13.22, 0.17814, 4, 42, 57.61, 3.94, 0.33656, 43, 26.54, 7.56, 0.0422, 44, 5.14, 7.66, + 0.41771, 45, -16.34, 7.66, 0.20353, 4, 42, 64.59, 3.92, 0.25264, 43, 26.89, 0.59, 0.04384, 44, 5.49, 0.69, 0.47782, 45, -15.99, 0.69, 0.2257, 4, 42, 70.39, 3.84, 0.18189, 43, 27.11, + -5.21, 0.04615, 44, 5.71, -5.11, 0.52741, 45, -15.77, -5.11, 0.24456, 4, 42, 41.23, 12.93, 0.8608, 43, 34.66, 24.39, 0.00457, 44, 13.26, 24.49, 0.04889, 45, -8.22, 24.49, 0.08574, 4, + 42, 47.07, 13.06, 0.60926, 43, 35.09, 18.56, 0.00894, 44, 13.69, 18.67, 0.13479, 45, -7.79, 18.67, 0.247, 4, 42, 52.33, 13.43, 0.45377, 43, 35.74, 13.33, 0.00554, 44, 14.33, 13.43, + 0.18027, 45, -7.14, 13.43, 0.36041, 4, 42, 58.15, 13.75, 0.35749, 43, 36.37, 7.54, 0.00417, 44, 14.96, 7.64, 0.20976, 45, -6.51, 7.64, 0.42858, 4, 42, 64.93, 13.95, 0.27612, 43, + 36.92, 0.78, 0.00359, 44, 15.52, 0.88, 0.23625, 45, -5.96, 0.88, 0.48404, 4, 42, 70.69, 14.22, 0.20954, 43, 37.5, -4.97, 0.00344, 44, 16.1, -4.86, 0.25903, 45, -5.38, -4.86, 0.52799, + 1, 42, 41.18, 21.86, 1, 4, 42, 47.26, 22.62, 0.82489, 43, 44.65, 18.87, 0.00083, 44, 23.25, 18.98, 0.0268, 45, 1.77, 18.98, 0.14748, 4, 42, 52.68, 24.04, 0.64773, 43, 46.35, 13.54, + 0.00052, 44, 24.95, 13.65, 0.04091, 45, 3.47, 13.65, 0.31084, 4, 42, 59.31, 25.35, 0.53225, 43, 48.01, 6.98, 0.00029, 44, 26.6, 7.09, 0.04857, 45, 5.13, 7.09, 0.41889, 4, 42, 65.88, + 27.11, 0.46955, 43, 50.12, 0.51, 0.00016, 44, 28.71, 0.62, 0.05201, 45, 7.24, 0.62, 0.47828, 4, 42, 71.43, 27.89, 0.41589, 43, 51.19, -4.99, 0.0001, 44, 29.78, -4.88, 0.05591, 45, + 8.31, -4.88, 0.5281, 4, 42, 51.12, -28.92, 0.72647, 43, -6.61, 12.31, 0.25381, 44, -28.01, 12.41, 0.01954, 45, -49.49, 12.41, 0.00018, 4, 42, 56.98, -30.79, 0.64422, 43, -8.18, 6.36, + 0.33291, 44, -29.58, 6.46, 0.02275, 45, -51.06, 6.46, 0.00011, 4, 42, 63.71, -32.68, 0.55448, 43, -9.7, -0.46, 0.41902, 44, -31.11, -0.36, 0.02643, 45, -52.58, -0.36, 7e-05, 4, 42, + 68.66, -34.31, 0.44397, 43, -11.07, -5.49, 0.52396, 44, -32.48, -5.38, 0.03202, 45, -53.95, -5.38, 4e-05, 4, 42, 51.16, -23.65, 0.5094, 43, -1.35, 12.55, 0.4213, 44, -22.75, 12.66, + 0.06847, 45, -44.22, 12.66, 0.00083, 4, 42, 57.16, -24.79, 0.42549, 43, -2.17, 6.49, 0.49746, 44, -23.57, 6.6, 0.07648, 45, -45.05, 6.6, 0.00057, 4, 42, 63.94, -26.25, 0.35688, 43, + -3.28, -0.35, 0.55926, 44, -24.68, -0.25, 0.08347, 45, -46.16, -0.25, 0.00039, 4, 42, 68.91, -27.43, 0.29772, 43, -4.19, -5.38, 0.61133, 44, -25.59, -5.28, 0.09064, 45, -47.07, + -5.28, 0.00031, 4, 42, 69.16, -20.73, 0.21136, 43, 2.51, -5.28, 0.59029, 44, -18.89, -5.17, 0.19654, 45, -40.37, -5.17, 0.00182, 4, 42, 64.11, -19.92, 0.275, 43, 3.05, -0.19, + 0.54348, 44, -18.35, -0.08, 0.17958, 45, -39.83, -0.08, 0.00194, 4, 42, 57.28, -19.35, 0.35002, 43, 3.27, 6.66, 0.48643, 44, -18.14, 6.77, 0.16123, 45, -39.61, 6.77, 0.00232, 4, 42, + 51.26, -18.48, 0.41881, 43, 3.82, 12.72, 0.43213, 44, -17.59, 12.83, 0.1461, 45, -39.06, 12.83, 0.00296, 4, 42, 51.45, -13.1, 0.39313, 43, 9.2, 12.81, 0.35299, 44, -12.2, 12.91, + 0.24433, 45, -33.68, 12.91, 0.00955, 4, 42, 57.34, -13.55, 0.32258, 43, 9.06, 6.91, 0.39406, 44, -12.34, 7.02, 0.27473, 45, -33.82, 7.02, 0.00863, 4, 42, 64.2, -14.31, 0.24476, 43, + 8.66, 0.02, 0.43744, 44, -12.74, 0.12, 0.30953, 45, -34.22, 0.12, 0.00827, 4, 42, 69.38, -14.93, 0.17804, 43, 8.31, -5.19, 0.47328, 44, -13.09, -5.08, 0.3403, 45, -34.57, -5.08, + 0.00838, 4, 42, 69.68, -9.29, 0.17525, 43, 13.97, -5.19, 0.31355, 44, -7.44, -5.08, 0.48153, 45, -28.91, -5.08, 0.02968, 4, 42, 64.27, -9.12, 0.24396, 43, 13.85, 0.22, 0.29088, 44, + -7.55, 0.33, 0.43695, 45, -29.03, 0.33, 0.02821, 4, 42, 57.38, -8.64, 0.32275, 43, 13.97, 7.13, 0.26435, 44, -7.44, 7.23, 0.38552, 45, -28.91, 7.23, 0.02739, 4, 42, 51.61, -8.2, + 0.39269, 43, 14.1, 12.92, 0.24007, 44, -7.3, 13.02, 0.33961, 45, -28.78, 13.02, 0.02763, 4, 42, 51.73, -3.15, 0.39835, 43, 19.16, 13.05, 0.13664, 44, -2.25, 13.16, 0.3972, 45, + -23.72, 13.16, 0.06781, 4, 42, 57.41, -3.5, 0.32898, 43, 19.1, 7.37, 0.14701, 44, -2.3, 7.47, 0.45281, 45, -23.78, 7.47, 0.07119, 4, 42, 64.31, -3.92, 0.24968, 43, 19.05, 0.45, + 0.15947, 44, -2.36, 0.56, 0.51456, 45, -23.83, 0.56, 0.07629, 4, 42, 70.03, -4.3, 0.17972, 43, 18.96, -5.28, 0.17094, 44, -2.44, -5.18, 0.56767, 45, -23.91, -5.18, 0.08167, 4, 42, + 70.31, 1.21, 0.18179, 43, 24.49, -5.27, 0.07557, 44, 3.08, -5.17, 0.56385, 45, -18.39, -5.17, 0.17879, 4, 42, 64.46, 1.3, 0.25204, 43, 24.27, 0.58, 0.07119, 44, 2.86, 0.68, 0.51118, + 45, -18.61, 0.68, 0.16559, 4, 42, 57.52, 1.66, 0.33157, 43, 24.26, 7.52, 0.0672, 44, 2.86, 7.63, 0.44995, 45, -18.62, 7.63, 0.15128, 4, 42, 51.92, 1.69, 0.40101, 43, 23.99, 13.13, + 0.06478, 44, 2.59, 13.23, 0.39483, 45, -18.89, 13.23, 0.13938, 4, 42, 52.17, 6.37, 0.401, 43, 28.68, 13.11, 0.0258, 44, 7.28, 13.22, 0.33427, 45, -14.2, 13.22, 0.23894, 4, 42, 57.7, + 6.22, 0.3309, 43, 28.82, 7.59, 0.02514, 44, 7.42, 7.69, 0.37908, 45, -14.06, 7.69, 0.26488, 4, 42, 64.69, 5.99, 0.25155, 43, 28.96, 0.59, 0.02548, 44, 7.56, 0.7, 0.4293, 45, -13.92, + 0.7, 0.29367, 4, 42, 70.45, 5.95, 0.18206, 43, 29.22, -5.16, 0.02652, 44, 7.82, -5.06, 0.47284, 45, -13.66, -5.06, 0.31858, 4, 42, 70.61, 11.41, 0.19245, 43, 34.69, -5.04, 0.00724, + 44, 13.29, -4.93, 0.3321, 45, -8.19, -4.93, 0.46821, 4, 42, 70.77, 17.07, 0.23948, 43, 40.35, -4.9, 0.00153, 44, 18.94, -4.79, 0.19195, 45, -2.53, -4.79, 0.56704, 4, 42, 71.13, + 23.54, 0.346, 43, 46.82, -4.91, 0.00026, 44, 25.42, -4.81, 0.08922, 45, 3.94, -4.81, 0.56452, 4, 42, 71.67, 31.21, 0.48407, 43, 54.51, -5.05, 4e-05, 44, 33.11, -4.94, 0.03358, 45, + 11.63, -4.94, 0.48231, 4, 42, 66.23, 30.24, 0.54501, 43, 53.26, 0.33, 7e-05, 44, 31.86, 0.43, 0.03077, 45, 10.38, 0.43, 0.42415, 4, 42, 65.41, 22.86, 0.40266, 43, 45.85, 0.77, + 0.00034, 44, 24.45, 0.87, 0.08247, 45, 2.97, 0.87, 0.51452, 4, 42, 64.98, 16.56, 0.30287, 43, 39.53, 0.86, 0.00168, 44, 18.13, 0.97, 0.17579, 45, -3.35, 0.97, 0.51965, 4, 42, 64.87, + 11.12, 0.25994, 43, 34.09, 0.68, 0.00726, 44, 12.69, 0.79, 0.30245, 45, -8.79, 0.79, 0.43035, 4, 42, 57.96, 11, 0.3382, 43, 33.61, 7.58, 0.00776, 44, 12.21, 7.69, 0.26884, 45, -9.27, + 7.69, 0.38519, 4, 42, 58.32, 16.31, 0.37706, 43, 38.93, 7.49, 0.00208, 44, 17.52, 7.6, 0.15821, 45, -3.95, 7.6, 0.46265, 4, 42, 58.9, 22.12, 0.46779, 43, 44.77, 7.23, 0.00052, 44, + 23.36, 7.33, 0.07582, 45, 1.89, 7.33, 0.45586, 4, 42, 59.69, 28.3, 0.65325, 43, 50.97, 6.76, 0.00012, 44, 29.57, 6.86, 0.02541, 45, 8.09, 6.86, 0.32123, 4, 42, 52.82, 26.61, 0.75526, + 43, 48.93, 13.53, 0.00017, 44, 27.52, 13.64, 0.02002, 45, 6.05, 13.64, 0.22455, 4, 42, 52.51, 21.1, 0.52586, 43, 43.41, 13.55, 0.00082, 44, 22, 13.66, 0.07106, 45, 0.53, 13.66, + 0.40226, 4, 42, 52.35, 15.86, 0.44455, 43, 38.16, 13.44, 0.00273, 44, 16.76, 13.54, 0.1436, 45, -4.72, 13.54, 0.40912, 4, 42, 52.31, 10.54, 0.40864, 43, 32.85, 13.19, 0.0088, 44, + 11.45, 13.3, 0.23945, 45, -10.03, 13.3, 0.34311, 4, 42, 70.77, -38.17, 0.52059, 43, -14.82, -7.8, 0.45917, 44, -36.22, -7.7, 0.02022, 45, -57.7, -7.7, 1e-05, 4, 42, 70.83, -34.9, + 0.37517, 43, -11.54, -7.69, 0.58803, 44, -32.95, -7.59, 0.03676, 45, -54.42, -7.59, 4e-05, 4, 42, 70.97, -31.21, 0.31655, 43, -7.85, -7.63, 0.62281, 44, -29.26, -7.53, 0.06054, 45, + -50.73, -7.53, 0.00011, 4, 42, 71.13, -27.77, 0.25662, 43, -4.41, -7.62, 0.64624, 44, -25.82, -7.51, 0.09684, 45, -47.29, -7.51, 0.0003, 4, 42, 71.2, -23.97, 0.20542, 43, -0.61, + -7.48, 0.64718, 44, -22.02, -7.37, 0.14662, 45, -43.49, -7.37, 0.00077, 4, 42, 71.35, -20.96, 0.16774, 43, 2.4, -7.48, 0.62093, 44, -19, -7.37, 0.20946, 45, -40.48, -7.37, 0.00187, + 4, 42, 71.49, -17.96, 0.14406, 43, 5.4, -7.45, 0.56885, 44, -16, -7.35, 0.28288, 45, -37.48, -7.35, 0.00421, 4, 42, 71.65, -15.17, 0.13169, 43, 8.2, -7.46, 0.49722, 44, -13.21, + -7.36, 0.36227, 45, -34.68, -7.36, 0.00882, 4, 42, 71.89, -12.02, 0.12708, 43, 11.35, -7.54, 0.41453, 44, -10.05, -7.44, 0.44117, 45, -31.52, -7.44, 0.01722, 4, 42, 71.98, -9.41, + 0.12668, 43, 13.97, -7.49, 0.32958, 44, -7.43, -7.39, 0.51233, 45, -28.91, -7.39, 0.03141, 4, 42, 72.15, -7.02, 0.12812, 43, 16.36, -7.53, 0.24965, 44, -5.05, -7.43, 0.56851, 45, + -26.52, -7.43, 0.05372, 4, 42, 72.39, -4.46, 0.12979, 43, 18.93, -7.65, 0.1799, 44, -2.47, -7.54, 0.60387, 45, -23.95, -7.54, 0.08644, 4, 42, 72.47, -1.68, 0.13105, 43, 21.71, -7.58, + 0.12302, 44, 0.3, -7.47, 0.61461, 45, -21.17, -7.47, 0.13132, 4, 42, 72.58, 1.2, 0.13159, 43, 24.6, -7.54, 0.07962, 44, 3.19, -7.43, 0.5998, 45, -18.28, -7.43, 0.18899, 4, 42, 72.71, + 3.77, 0.13189, 43, 27.17, -7.53, 0.04862, 44, 5.76, -7.42, 0.56113, 45, -15.71, -7.42, 0.25837, 4, 42, 72.9, 5.95, 0.13282, 43, 29.35, -7.61, 0.02792, 44, 7.95, -7.5, 0.50297, 45, + -13.53, -7.5, 0.33629, 4, 42, 72.96, 8.77, 0.13637, 43, 32.18, -7.52, 0.01503, 44, 10.77, -7.41, 0.43134, 45, -10.7, -7.41, 0.41726, 4, 42, 73.15, 11.31, 0.14539, 43, 34.72, -7.57, + 0.00757, 44, 13.32, -7.46, 0.35328, 45, -8.16, -7.46, 0.49376, 4, 42, 73.26, 14.32, 0.16393, 43, 37.73, -7.53, 0.00355, 44, 16.32, -7.43, 0.27561, 45, -5.15, -7.43, 0.55691, 4, 42, + 73.56, 17.06, 0.19585, 43, 40.48, -7.68, 0.00155, 44, 19.08, -7.58, 0.20422, 45, -2.4, -7.58, 0.59837, 4, 42, 73.65, 19.69, 0.24372, 43, 43.11, -7.63, 0.00063, 44, 21.71, -7.53, + 0.14329, 45, 0.23, -7.53, 0.61235, 4, 42, 73.87, 23.74, 0.30631, 43, 47.17, -7.64, 0.00024, 44, 25.77, -7.53, 0.09501, 45, 4.29, -7.53, 0.59844, 4, 42, 74.01, 28.34, 0.3775, 43, + 51.77, -7.54, 9e-05, 44, 30.37, -7.43, 0.05972, 45, 8.89, -7.43, 0.5627, 4, 42, 74.28, 31.7, 0.44548, 43, 55.14, -7.63, 3e-05, 44, 33.74, -7.53, 0.03652, 45, 12.26, -7.53, 0.51797, + 4, 42, 74.78, 35.38, 0.56131, 43, 58.84, -7.93, 1e-05, 44, 37.44, -7.83, 0.02128, 45, 15.96, -7.83, 0.41739 ], - "hull": 57, + "hull": 44, "edges": [ - 0, 2, 2, 4, 4, 6, 6, 8, 8, 10, 10, 12, 12, 14, 14, 16, 16, 18, 18, 20, 20, 22, 22, 24, 24, 26, 26, 28, 28, 30, 30, 32, 32, 34, 34, 36, 36, 38, 38, 40, 40, 42, 42, 44, 44, 46, 46, 48, - 48, 50, 50, 52, 52, 54, 54, 56, 56, 58, 58, 60, 60, 62, 62, 64, 64, 66, 66, 68, 68, 70, 70, 72, 72, 74, 74, 76, 76, 78, 78, 80, 80, 82, 82, 84, 84, 86, 86, 88, 88, 90, 90, 92, 92, - 94, 94, 96, 96, 98, 98, 100, 100, 102, 102, 104, 104, 106, 106, 108, 108, 110, 110, 112, 0, 112, 114, 116, 116, 118, 118, 120, 120, 122, 122, 124, 124, 126, 126, 128, 128, 130, 130, - 132, 132, 134, 134, 136, 136, 138, 138, 140, 140, 142, 142, 144, 144, 146, 146, 148, 148, 150, 150, 152, 152, 154, 154, 156, 156, 158, 158, 160, 160, 162, 162, 164, 164, 166, 166, - 168, 168, 170, 170, 172, 172, 174, 174, 176, 176, 178, 178, 180, 180, 182, 182, 184, 184, 186, 186, 188, 188, 190, 190, 192, 192, 194, 194, 196, 196, 198, 198, 200, 200, 202, 202, - 204, 204, 206, 206, 208, 208, 210, 210, 212, 212, 214, 216, 218, 218, 220, 220, 222, 222, 224, 224, 226, 226, 228, 228, 230, 230, 232, 232, 234, 234, 236, 236, 238, 238, 240, 240, - 242, 242, 244, 244, 246, 246, 248, 248, 250, 250, 252, 252, 254, 254, 256, 256, 258, 258, 260, 260, 262, 262, 264, 264, 114, 266, 268, 268, 270, 270, 272, 272, 274, 274, 276, 276, - 278, 278, 280, 280, 282, 282, 284, 284, 286, 286, 288, 288, 290, 290, 292, 292, 294, 294, 296, 296, 298, 298, 300, 300, 302, 302, 304, 304, 306, 306, 308, 310, 312, 312, 314, 316, - 318, 318, 320, 322, 324, 324, 326, 214, 328, 328, 216, 328, 330, 330, 332 + 78, 76, 86, 0, 78, 80, 80, 82, 82, 84, 84, 86, 0, 94, 76, 96, 62, 64, 74, 76, 102, 96, 74, 102, 104, 90, 106, 98, 108, 88, 110, 100, 112, 92, 114, 94, 2, 0, 114, 2, 72, 74, 116, 102, + 72, 116, 118, 104, 120, 106, 122, 108, 124, 110, 126, 112, 128, 114, 4, 2, 128, 4, 70, 72, 130, 116, 70, 130, 132, 118, 134, 120, 136, 122, 138, 124, 140, 126, 142, 128, 8, 6, 6, 4, + 142, 6, 68, 70, 144, 130, 68, 144, 146, 132, 148, 134, 150, 136, 152, 138, 154, 140, 156, 142, 156, 8, 8, 10, 10, 12, 12, 158, 158, 156, 10, 158, 160, 154, 162, 152, 164, 150, 166, + 148, 168, 146, 170, 144, 64, 66, 66, 68, 170, 66, 82, 172, 172, 88, 98, 172, 172, 100, 80, 174, 174, 90, 96, 174, 84, 176, 176, 92, 94, 176, 90, 178, 178, 96, 102, 180, 180, 104, + 178, 180, 180, 182, 182, 184, 184, 186, 186, 188, 90, 190, 190, 98, 104, 192, 192, 106, 190, 192, 192, 194, 194, 196, 196, 198, 198, 200, 88, 202, 202, 98, 106, 204, 204, 108, 202, + 204, 204, 206, 206, 208, 208, 210, 210, 212, 88, 214, 214, 100, 108, 216, 216, 110, 214, 216, 216, 218, 218, 220, 220, 222, 222, 224, 92, 226, 226, 100, 110, 228, 228, 112, 226, 228, + 228, 230, 230, 232, 232, 234, 234, 236, 92, 238, 238, 94, 112, 240, 240, 114, 238, 240, 240, 242, 242, 244, 244, 246, 246, 248, 12, 14, 170, 64, 116, 250, 250, 182, 130, 252, 252, + 184, 250, 252, 144, 254, 254, 186, 252, 254, 170, 256, 256, 188, 254, 256, 58, 60, 60, 62, 118, 258, 258, 182, 132, 260, 260, 184, 258, 260, 146, 262, 262, 186, 260, 262, 168, 264, + 264, 188, 262, 264, 54, 56, 56, 58, 50, 52, 52, 54, 168, 266, 266, 200, 146, 268, 268, 198, 266, 268, 132, 270, 270, 196, 268, 270, 118, 272, 272, 194, 270, 272, 120, 274, 274, 194, + 134, 276, 276, 196, 274, 276, 148, 278, 278, 198, 276, 278, 166, 280, 280, 200, 278, 280, 46, 48, 48, 50, 42, 44, 44, 46, 166, 282, 282, 212, 148, 284, 284, 210, 282, 284, 134, 286, + 286, 208, 284, 286, 120, 288, 288, 206, 286, 288, 122, 290, 290, 206, 136, 292, 292, 208, 290, 292, 150, 294, 294, 210, 292, 294, 164, 296, 296, 212, 294, 296, 38, 40, 40, 42, 34, + 36, 36, 38, 164, 298, 298, 224, 150, 300, 300, 222, 298, 300, 136, 302, 302, 220, 300, 302, 122, 304, 304, 218, 302, 304, 124, 306, 306, 218, 138, 308, 308, 220, 306, 308, 152, 310, + 310, 222, 308, 310, 162, 312, 312, 224, 310, 312, 30, 32, 32, 34, 26, 28, 28, 30, 162, 314, 314, 236, 22, 24, 24, 26, 160, 316, 316, 236, 18, 20, 20, 22, 160, 318, 318, 248, 14, 16, + 16, 18, 158, 320, 320, 248, 156, 322, 322, 246, 320, 322, 154, 324, 324, 246, 318, 324, 154, 326, 326, 234, 316, 326, 152, 328, 328, 234, 314, 328, 138, 330, 330, 232, 328, 330, 140, + 332, 332, 232, 326, 332, 140, 334, 334, 244, 324, 334, 142, 336, 336, 244, 322, 336, 128, 338, 338, 242, 336, 338, 126, 340, 340, 242, 334, 340, 126, 342, 342, 230, 332, 342, 124, + 344, 344, 230, 330, 344, 62, 346, 346, 170, 60, 348, 348, 256, 346, 348, 58, 350, 350, 188, 348, 350, 56, 352, 352, 264, 350, 352, 54, 354, 354, 168, 352, 354, 52, 356, 356, 266, + 354, 356, 50, 358, 358, 200, 356, 358, 48, 360, 360, 280, 358, 360, 46, 362, 362, 166, 360, 362, 44, 364, 364, 282, 362, 364, 42, 366, 366, 212, 364, 366, 40, 368, 368, 296, 366, + 368, 38, 370, 370, 164, 368, 370, 36, 372, 372, 298, 370, 372, 34, 374, 374, 224, 372, 374, 32, 376, 376, 312, 374, 376, 30, 378, 378, 162, 376, 378, 28, 380, 380, 314, 378, 380, 26, + 382, 382, 236, 380, 382, 24, 384, 384, 316, 382, 384, 22, 386, 386, 160, 384, 386, 20, 388, 388, 318, 386, 388, 18, 390, 390, 248, 388, 390, 16, 392, 392, 320, 390, 392, 14, 394, + 394, 158, 392, 394 ], - "width": 755, - "height": 624, - "path": "body-fuzzy.body-fuzzy" + "width": 82.3529411764706, + "height": 72.94117647058823, + "path": "summer-a.ear-right-bubble", + "x": 0.32352941176470296, + "y": 0.529411764705884 } }, - "leg-back-left": { - "leg-back-left": {"x": 32.56, "y": -0.8, "rotation": 83.45, "width": 80, "height": 94, "path": "body-normal.leg-back-left"}, - "leg-back-left-long": {"x": 34.89, "y": -5.5, "rotation": 221.45, "width": 85, "height": 82, "path": "body-normal.leg-back-left-long"}, - "leg-back-left-stretch": {"x": 27.29, "y": 1.58, "rotation": 54.45, "width": 67, "height": 70, "path": "body-normal.leg-back-left-stretch"} + "ear-right-dot-01": { + "ear-right-dot": {"x": -0.5152941176470598, "y": -0.662352941176471, "rotation": -0.95, "width": 16.47058823529412, "height": 11.764705882352942, "path": "summer-a.ear-right-dot"} }, - "leg-front-left": { - "leg-front-left": {"x": 21.98, "y": 1.18, "rotation": 97.51, "width": 72, "height": 63, "path": "body-normal.leg-front-left"}, - "leg-front-left-long": {"x": 27.48, "y": -6.04, "rotation": -173.75, "width": 89, "height": 77, "path": "body-normal.leg-front-left-long"}, - "leg-front-left-stretch": {"x": 19.24, "y": -3.96, "rotation": 142.15, "width": 70, "height": 77, "path": "body-normal.leg-front-left-stretch"} + "ear-right-dot-02": { + "ear-right-dot": {"x": -0.5152941176470598, "y": -0.662352941176471, "rotation": -0.95, "width": 16.47058823529412, "height": 11.764705882352942, "path": "summer-a.ear-right-dot"} }, - "leg-front-right": { - "leg-front-right": {"x": 31.35, "y": -1.66, "rotation": 87.96, "width": 80, "height": 94, "path": "body-normal.leg-front-right"}, - "leg-front-right-long": {"x": 36.56, "y": -0.65, "rotation": 205.96, "width": 89, "height": 77, "path": "body-normal.leg-front-right-long"}, - "leg-front-right-stretch": {"x": 30.65, "y": 1.81, "rotation": 142.01, "width": 81, "height": 69, "path": "body-normal.leg-front-right-stretch"} + "ear-right-dot-03": { + "ear-right-dot": {"x": -0.5152941176470598, "y": -0.662352941176471, "rotation": -0.95, "width": 16.47058823529412, "height": 11.764705882352942, "path": "summer-a.ear-right-dot"} }, - "shadow": {"shadow": {"width": 946, "height": 191, "path": "body-fuzzy.shadow"}}, - "body-air": { - "body-air1a_00": {"x": 1.37, "y": 35.21, "width": 209.375, "height": 129.6875, "path": "body-accessory.body-air1a_00"}, - "body-air1a_01": {"x": 1.37, "y": 35.21, "width": 209.375, "height": 129.6875, "path": "body-accessory.body-air1a_01"}, - "body-air1a_02": {"x": 1.37, "y": 35.21, "width": 209.375, "height": 129.6875, "path": "body-accessory.body-air1a_02"}, - "body-air1a_03": {"x": 1.37, "y": 35.21, "width": 209.375, "height": 129.6875, "path": "body-accessory.body-air1a_03"}, - "body-air1a_04": {"x": 1.37, "y": 35.21, "width": 209.375, "height": 129.6875, "path": "body-accessory.body-air1a_04"}, - "body-air1a_05": {"x": 1.37, "y": 35.21, "width": 209.375, "height": 129.6875, "path": "body-accessory.body-air1a_05"}, - "body-air1a_06": {"x": 1.37, "y": 35.21, "width": 209.375, "height": 129.6875, "path": "body-accessory.body-air1a_06"}, - "body-air1a_07": {"x": 1.37, "y": 35.21, "width": 209.375, "height": 129.6875, "path": "body-accessory.body-air1a_07"}, - "body-air1b_00": {"x": 1.37, "y": 35.21, "width": 156.25, "height": 192.1875, "path": "body-accessory.body-air1b_00"}, - "body-air1b_01": {"x": 1.37, "y": 35.21, "width": 156.25, "height": 192.1875, "path": "body-accessory.body-air1b_01"}, - "body-air1b_02": {"x": 1.37, "y": 35.21, "width": 156.25, "height": 192.1875, "path": "body-accessory.body-air1b_02"}, - "body-air1c_00": {"x": 1.37, "y": 35.21, "width": 200.0, "height": 289.0625, "path": "body-accessory.body-air1c_00"}, - "body-air1c_01": {"x": 1.37, "y": 35.21, "width": 200.0, "height": 289.0625, "path": "body-accessory.body-air1c_01"}, - "body-air1c_02": {"x": 1.37, "y": 35.21, "width": 200.0, "height": 289.0625, "path": "body-accessory.body-air1c_02"}, - "body-air1c_03": {"x": 1.37, "y": 35.21, "width": 200.0, "height": 289.0625, "path": "body-accessory.body-air1c_03"}, - "body-air1d_00": {"x": 1.37, "y": 35.21, "width": 204.6875, "height": 273.4375, "path": "body-accessory.body-air1d_00"}, - "body-air1d_01": {"x": 1.37, "y": 35.21, "width": 204.6875, "height": 273.4375, "path": "body-accessory.body-air1d_01"}, - "body-air1d_02": {"x": 1.37, "y": 35.21, "width": 204.6875, "height": 273.4375, "path": "body-accessory.body-air1d_02"}, - "body-air1d_03": {"x": 1.37, "y": 35.21, "width": 204.6875, "height": 273.4375, "path": "body-accessory.body-air1d_03"} + "ear-right-dot-04": { + "ear-right-dot": {"x": -0.5152941176470598, "y": -0.662352941176471, "rotation": -0.95, "width": 16.47058823529412, "height": 11.764705882352942, "path": "summer-a.ear-right-dot"} }, - "body-cheek": { - "body-cheek1a": {"x": 1.52, "y": 3.04, "width": 60.9375, "height": 57.8125, "path": "body-accessory.body-cheek1a"}, - "body-cheek1b": {"x": 1.52, "y": 3.04, "width": 50.0, "height": 76.5625, "path": "body-accessory.body-cheek1b"}, - "body-cheek1c": {"x": 1.52, "y": 3.04, "width": 50.0, "height": 76.5625, "path": "body-accessory.body-cheek1c"}, - "body-cheek1d": {"x": 1.52, "y": 3.04, "width": 50.0, "height": 76.5625, "path": "body-accessory.body-cheek1d"}, - "body-cheek1e": {"x": 1.52, "y": 3.04, "width": 54.6875, "height": 79.6875, "path": "body-accessory.body-cheek1e"}, - "body-cheek1f": {"x": 1.52, "y": 3.04, "width": 56.25, "height": 57.8125, "path": "body-accessory.body-cheek1f"}, - "body-cheek1g": {"x": 1.52, "y": 3.04, "width": 104.6875, "height": 96.875, "path": "body-accessory.body-cheek1g"} + "ear-right-dot-05": { + "ear-right-dot": {"x": -0.5152941176470598, "y": -0.662352941176471, "rotation": -0.95, "width": 16.47058823529412, "height": 11.764705882352942, "path": "summer-a.ear-right-dot"} }, - "body-ground": { - "body-ground1a_00": {"x": 4.75, "y": 123.01, "width": 254.6875, "height": 275.0, "path": "body-accessory.body-ground1a_00"}, - "body-ground1a_01": {"x": 4.75, "y": 123.01, "width": 254.6875, "height": 275.0, "path": "body-accessory.body-ground1a_01"}, - "body-ground1a_02": {"x": 4.75, "y": 123.01, "width": 254.6875, "height": 275.0, "path": "body-accessory.body-ground1a_02"}, - "body-ground1a_03": {"x": 4.75, "y": 123.01, "width": 254.6875, "height": 275.0, "path": "body-accessory.body-ground1a_03"} + "ear-right-dot-06": { + "ear-right-dot": {"x": -0.5152941176470598, "y": -0.662352941176471, "rotation": -0.95, "width": 16.47058823529412, "height": 11.764705882352942, "path": "summer-a.ear-right-dot"} }, - "body-hip": { - "body-hip1a": {"x": -16, "width": 109.375, "height": 140.625, "path": "body-accessory.body-hip1a"}, - "body-hip1b": {"x": -16, "width": 210.9375, "height": 214.0625, "path": "body-accessory.body-hip1b"}, - "body-hip1c": {"x": -16, "width": 123.4375, "height": 157.8125, "path": "body-accessory.body-hip1c"}, - "body-hip1d": {"x": -16, "width": 203.125, "height": 143.75, "path": "body-accessory.body-hip1d"} + "ear-right-dot-07": { + "ear-right-dot": {"x": -0.5152941176470598, "y": -0.662352941176471, "rotation": -0.95, "width": 16.47058823529412, "height": 11.764705882352942, "path": "summer-a.ear-right-dot"} }, - "body-neck": { - "body-neck1a": {"x": -5.4, "y": -54.79, "width": 92.1875, "height": 96.875, "path": "body-accessory.body-neck1a"}, - "body-neck1b": {"x": -5.4, "y": -54.79, "width": 103.125, "height": 117.1875, "path": "body-accessory.body-neck1b"}, - "body-neck1c": {"x": -5.4, "y": -54.79, "width": 79.6875, "height": 110.9375, "path": "body-accessory.body-neck1c"}, - "body-neck1d": {"x": -5.4, "y": -54.79, "width": 121.875, "height": 101.5625, "path": "body-accessory.body-neck1d"}, - "body-neck1e": {"x": -5.4, "y": -54.79, "width": 89.0625, "height": 107.8125, "path": "body-accessory.body-neck1e"}, - "body-neck1f": {"x": -5.4, "y": -54.79, "width": 79.6875, "height": 79.6875, "path": "body-accessory.body-neck1f"} - } + "ear-right-dot-08": { + "ear-right-dot": {"x": -0.5152941176470598, "y": -0.662352941176471, "rotation": -0.95, "width": 16.47058823529412, "height": 11.764705882352942, "path": "summer-a.ear-right-dot"} + }, + "ear-right-dot-09": { + "ear-right-dot": {"x": -0.5152941176470598, "y": -0.662352941176471, "rotation": -0.95, "width": 16.47058823529412, "height": 11.764705882352942, "path": "summer-a.ear-right-dot"} + }, + "ear-right-dot-10": { + "ear-right-dot": {"x": -0.5152941176470598, "y": -0.662352941176471, "rotation": -0.95, "width": 16.47058823529412, "height": 11.764705882352942, "path": "summer-a.ear-right-dot"} + }, + "ear-right-dot-11": { + "ear-right-dot": {"x": -0.5152941176470598, "y": -0.662352941176471, "rotation": -0.95, "width": 16.47058823529412, "height": 11.764705882352942, "path": "summer-a.ear-right-dot"} + }, + "ear-right-dot-12": { + "ear-right-dot": {"x": -0.5152941176470598, "y": -0.662352941176471, "rotation": -0.95, "width": 16.47058823529412, "height": 11.764705882352942, "path": "summer-a.ear-right-dot"} + }, + "ear-right-dot-13": { + "ear-right-dot": {"x": -0.5152941176470598, "y": -0.662352941176471, "rotation": -0.95, "width": 16.47058823529412, "height": 11.764705882352942, "path": "summer-a.ear-right-dot"} + }, + "ear-right-dot-14": { + "ear-right-dot": {"x": -0.5152941176470598, "y": -0.662352941176471, "rotation": -0.95, "width": 16.47058823529412, "height": 11.764705882352942, "path": "summer-a.ear-right-dot"} + }, + "ear-right-dot-15": { + "ear-right-dot": {"x": -0.5152941176470598, "y": -0.662352941176471, "rotation": -0.95, "width": 16.47058823529412, "height": 11.764705882352942, "path": "summer-a.ear-right-dot"} + }, + "ear-right-dot-16": { + "ear-right-dot": {"x": -0.5152941176470598, "y": -0.662352941176471, "rotation": -0.95, "width": 16.47058823529412, "height": 11.764705882352942, "path": "summer-a.ear-right-dot"} + }, + "ear-right-dot-17": { + "ear-right-dot": {"x": -0.5152941176470598, "y": -0.662352941176471, "rotation": -0.95, "width": 16.47058823529412, "height": 11.764705882352942, "path": "summer-a.ear-right-dot"} + }, + "ear-right-dot-18": { + "ear-right-dot": {"x": -0.5152941176470598, "y": -0.662352941176471, "rotation": -0.95, "width": 16.47058823529412, "height": 11.764705882352942, "path": "summer-a.ear-right-dot"} + }, + "ear-right-dot-19": { + "ear-right-dot": {"x": -0.5152941176470598, "y": -0.662352941176471, "rotation": -0.95, "width": 16.47058823529412, "height": 11.764705882352942, "path": "summer-a.ear-right-dot"} + }, + "ear-right-dot-20": { + "ear-right-dot": {"x": -0.5152941176470598, "y": -0.662352941176471, "rotation": -0.95, "width": 16.47058823529412, "height": 11.764705882352942, "path": "summer-a.ear-right-dot"} + }, + "ear-right-under": { + "ear-right-under": {"x": 85.5464705882353, "y": -16.192941176470594, "rotation": -93, "width": 117.64705882352942, "height": 204.7058823529412, "path": "summer-a.ear-right-under"} + }, + "ear-right-upper": { + "ear-right-upper": {"x": 90.18058823529411, "y": -18.45235294117648, "rotation": -93, "width": 127.05882352941177, "height": 211.76470588235296, "path": "summer-a.ear-right-upper"} + }, + "eyes": { + "eyes": {"x": 24.664117647058813, "y": 25.639411764705883, "width": 329.4117647058824, "height": 152.94117647058823, "path": "summer-a.eyes"}, + "eyes-angry": {"x": 24.664117647058813, "y": 25.639411764705883, "width": 329.4117647058824, "height": 152.94117647058823, "path": "summer-a.eyes-angry"}, + "eyes-happy": {"x": 24.664117647058813, "y": 25.639411764705883, "width": 329.4117647058824, "height": 152.94117647058823, "path": "summer-a.eyes-happy"}, + "eyes-shut": {"x": 24.664117647058813, "y": 25.639411764705883, "width": 329.4117647058824, "height": 152.94117647058823, "path": "summer-a.eyes-shut"} + }, + "eyes-happy-accessory": { + "eyes-happy-accessory": { + "x": 1.458235294117645, "y": 0.958823529411761, "scaleX": 1.4, "scaleY": 1.4, "width": 98.82352941176471, "height": 105.88235294117648, "path": "summer-a.eyes-happy-accessory" + } + }, + "eyes-light-dot": {"eye-light-dot": {"x": -0.07764705882352896, "y": 2.2158823529411737, "width": 68.23529411764706, "height": 70.58823529411765, "path": "summer-a.eye-light-dot"}}, + "eyes-light-dot-02": {"eye-light-dot": {"x": -0.07764705882352896, "y": 2.2158823529411737, "width": 68.23529411764706, "height": 70.58823529411765, "path": "summer-a.eye-light-dot"}}, + "eyes-light-left": { + "light": { + "x": 7.520588235294116, "y": 1.589411764705884, "scaleX": 1.2, "scaleY": 1.8, "rotation": 178.57, "width": 47.05882352941177, "height": 72.94117647058823, "path": "summer-a.light" + } + }, + "eyes-light-right": { + "light": { + "x": 7.520588235294116, "y": 1.589411764705884, "scaleX": 1.2, "scaleY": 1.8, "rotation": 178.57, "width": 47.05882352941177, "height": 72.94117647058823, "path": "summer-a.light" + } + }, + "eyes-upper": {"eyes-upper": {"x": 24.510588235294115, "y": 24.749411764705883, "width": 327.05882352941177, "height": 152.94117647058823, "path": "summer-a.eyes-upper"}}, + "horn": {"horn": {"x": 102.13941176470588, "y": -19.69352941176471, "rotation": -90, "width": 232.94117647058823, "height": 237.64705882352942, "path": "summer-tc.horn"}}, + "mouth": { + "mouth": {"x": -11.571176470588233, "y": 54.698235294117644, "width": 145.88235294117646, "height": 58.82352941176471, "path": "summer-a.mouth"}, + "mouth-bite": {"x": 0.01705882352940602, "y": 39.698235294117644, "width": 164.7058823529412, "height": 98.82352941176471, "path": "summer-a.mouth-bite"}, + "mouth-open": {"x": -6.27705882352942, "y": 16.69823529411765, "width": 155.29411764705884, "height": 138.8235294117647, "path": "summer-a.mouth-open"}, + "mouth-smile": {"x": -0.982941176470594, "y": 48.34529411764706, "width": 164.7058823529412, "height": 63.529411764705884, "path": "summer-a.mouth-smile"} + }, + "mouth-accessory": { + "mouth-accessory": { + "type": "mesh", + "uvs": [ + 0.7567, 0.0473, 0.86697, 0.14039, 0.9443, 0.25209, 0.99714, 0.36666, 0.99999, 0.49597, 1, 0.61625, 0.9486, 0.73368, 0.85981, 0.85684, 0.74238, 0.95422, 0.58914, 1, 0.46884, 1, + 0.36484, 0.99858, 0.24169, 0.95082, 0.12854, 0.86646, 0.03732, 0.75174, 0, 0.59723, 0, 0.48254, 0, 0.36237, 0.04691, 0.22488, 0.14286, 0.10888, 0.25027, 0.03298, 0.37916, 0, 0.49749, + 0, 0.62208, 0, 0.48816, 0.49691, 0.38984, 0.47048, 0.40039, 0.4428, 0.42008, 0.42041, 0.44087, 0.4047, 0.46611, 0.39392, 0.49007, 0.39257, 0.5155, 0.39441, 0.54363, 0.40403, 0.56948, + 0.42037, 0.58681, 0.44396, 0.59625, 0.46925, 0.60239, 0.4967, 0.59962, 0.5229, 0.58591, 0.54718, 0.56617, 0.57246, 0.53987, 0.58993, 0.50841, 0.5978, 0.48422, 0.59958, 0.46389, + 0.59563, 0.44255, 0.58693, 0.41915, 0.56782, 0.40098, 0.54296, 0.39091, 0.5164, 0.38677, 0.494, 0.25326, 0.49016, 0.26189, 0.43608, 0.28722, 0.37303, 0.33073, 0.32, 0.38007, 0.28612, + 0.43888, 0.26671, 0.49242, 0.26434, 0.5491, 0.26844, 0.61141, 0.29055, 0.66979, 0.32597, 0.72081, 0.37204, 0.74533, 0.4311, 0.75435, 0.49642, 0.74415, 0.5566, 0.71527, 0.6137, + 0.66814, 0.67121, 0.6053, 0.70764, 0.53338, 0.72221, 0.47953, 0.72167, 0.43531, 0.71188, 0.25606, 0.54343, 0.2836, 0.60497, 0.33013, 0.6593, 0.38745, 0.69572, 0.2371, 0.756, 0.32258, + 0.81152, 0.40412, 0.83877, 0.47432, 0.85748, 0.5622, 0.86577, 0.67514, 0.83328, 0.76201, 0.76212, 0.82762, 0.67147, 0.86788, 0.58544, 0.89046, 0.49617, 0.88879, 0.39439, 0.84496, + 0.30541, 0.77906, 0.22313, 0.69067, 0.15785, 0.58965, 0.1164, 0.49532, 0.10584, 0.40602, 0.11317, 0.30758, 0.14475, 0.22046, 0.19609, 0.15118, 0.28916, 0.11571, 0.39679, 0.10936, + 0.48603, 0.11577, 0.57155, 0.16414, 0.68085 + ], + "triangles": [ + 96, 69, 70, 73, 70, 71, 77, 66, 65, 34, 58, 59, 60, 35, 59, 61, 36, 60, 31, 30, 55, 30, 29, 55, 32, 31, 56, 33, 32, 57, 28, 53, 29, 27, 52, 28, 27, 26, 52, 34, 33, 58, 25, 50, 26, + 48, 49, 25, 36, 35, 60, 69, 48, 47, 37, 36, 62, 70, 47, 46, 38, 37, 63, 71, 46, 45, 39, 38, 64, 44, 71, 45, 72, 44, 43, 40, 39, 65, 68, 72, 43, 68, 43, 42, 67, 68, 42, 66, 41, 40, + 67, 42, 41, 66, 67, 41, 24, 29, 30, 24, 30, 31, 24, 31, 32, 24, 32, 33, 24, 33, 34, 24, 34, 35, 24, 35, 36, 28, 29, 24, 27, 28, 24, 26, 27, 24, 25, 26, 24, 48, 25, 24, 47, 48, 24, + 37, 24, 36, 46, 47, 24, 38, 24, 37, 45, 46, 24, 39, 24, 38, 44, 45, 24, 24, 43, 44, 39, 40, 24, 43, 24, 42, 40, 41, 24, 41, 42, 24, 35, 34, 59, 55, 29, 54, 53, 54, 29, 56, 31, 55, + 57, 32, 56, 52, 53, 28, 26, 51, 52, 50, 51, 26, 49, 50, 25, 69, 49, 48, 70, 69, 47, 63, 37, 62, 71, 70, 46, 64, 38, 63, 44, 72, 71, 65, 39, 64, 65, 66, 40, 58, 33, 57, 62, 36, 61, + 75, 72, 68, 67, 75, 68, 74, 71, 72, 76, 67, 66, 22, 89, 21, 87, 88, 22, 88, 89, 22, 90, 20, 21, 23, 87, 22, 86, 87, 23, 89, 90, 21, 91, 19, 20, 0, 86, 23, 85, 86, 0, 90, 91, 20, 1, + 85, 0, 18, 19, 91, 84, 85, 1, 88, 54, 89, 56, 55, 88, 55, 54, 88, 53, 90, 89, 87, 56, 88, 57, 56, 87, 54, 53, 89, 52, 91, 90, 92, 18, 91, 86, 57, 87, 58, 57, 86, 2, 84, 1, 53, 52, + 90, 92, 91, 52, 85, 58, 86, 59, 58, 85, 17, 18, 92, 83, 84, 2, 84, 59, 85, 51, 92, 52, 3, 83, 2, 60, 59, 84, 93, 17, 92, 93, 92, 51, 83, 60, 84, 50, 93, 51, 16, 17, 93, 94, 16, 93, + 94, 93, 50, 49, 94, 50, 83, 3, 4, 82, 83, 4, 60, 83, 82, 61, 60, 82, 69, 95, 94, 69, 94, 49, 81, 61, 82, 62, 61, 81, 95, 15, 16, 95, 16, 94, 82, 4, 5, 81, 82, 5, 80, 62, 81, 63, 62, + 80, 96, 95, 69, 6, 81, 5, 80, 81, 6, 14, 15, 95, 14, 95, 96, 73, 96, 70, 79, 63, 80, 64, 63, 79, 74, 73, 71, 78, 64, 79, 65, 64, 78, 74, 72, 75, 7, 80, 6, 79, 80, 7, 76, 75, 67, 77, + 65, 78, 76, 66, 77, 13, 14, 96, 13, 96, 73, 12, 73, 74, 13, 73, 12, 7, 8, 78, 7, 78, 79, 11, 74, 75, 10, 11, 75, 12, 74, 11, 76, 10, 75, 10, 76, 77, 9, 77, 78, 9, 78, 8, 10, 77, 9 + ], + "vertices": [ + 1, 29, 42.58, 72.34, 1, 1, 29, 60.45, 57.26, 1, 1, 29, 72.98, 39.16, 1, 1, 29, 81.54, 20.6, 1, 1, 29, 82, -0.34, 1, 1, 29, 82, -19.83, 1, 1, 29, 73.67, -38.85, 1, 1, 29, 59.29, + -58.81, 1, 1, 29, 40.26, -74.58, 1, 1, 29, 15.44, -82, 1, 1, 29, -4.05, -82, 1, 1, 29, -20.9, -81.77, 1, 1, 29, -40.85, -74.03, 1, 1, 29, -59.18, -60.37, 1, 1, 29, -73.95, -41.78, 1, + 1, 29, -82, -16.75, 1, 1, 29, -82, 1.83, 1, 1, 29, -82, 21.3, 1, 1, 29, -72.4, 43.57, 1, 1, 29, -56.86, 62.36, 1, 1, 29, -39.46, 74.66, 1, 1, 29, -18.58, 82, 1, 1, 29, 0.59, 82, 1, + 1, 29, 20.78, 80.84, 1, 1, 81, -0.92, -0.5, 1, 1, 81, -16.85, 3.78, 1, 1, 81, -15.14, 8.27, 1, 1, 81, -11.95, 11.89, 1, 1, 81, -8.58, 14.44, 1, 1, 81, -4.49, 16.19, 1, 1, 81, -0.61, + 16.41, 1, 1, 81, 3.51, 16.11, 1, 1, 81, 8.07, 14.55, 1, 1, 81, 12.26, 11.9, 1, 1, 81, 15.06, 8.08, 1, 1, 81, 16.59, 3.98, 1, 1, 81, 17.59, -0.46, 1, 1, 81, 17.14, -4.71, 1, 1, 81, + 14.92, -8.64, 1, 1, 81, 11.72, -12.74, 1, 1, 81, 7.46, -15.57, 1, 1, 81, 2.36, -16.84, 1, 1, 81, -1.56, -17.13, 1, 1, 81, -4.85, -16.49, 1, 1, 81, -8.31, -15.08, 1, 1, 81, -12.1, + -11.99, 1, 1, 81, -15.04, -7.96, 1, 1, 81, -16.67, -3.66, 1, 1, 81, -17.34, -0.03, 1, 2, 29, -38.97, 0.6, 0.37475, 81, -38.97, 0.6, 0.62525, 2, 29, -37.57, 9.36, 0.38176, 81, -37.57, + 9.36, 0.61824, 2, 29, -33.47, 19.57, 0.39514, 81, -33.47, 19.57, 0.60486, 2, 29, -26.42, 28.16, 0.40154, 81, -26.42, 28.16, 0.59846, 2, 29, -18.43, 33.65, 0.40298, 81, -18.43, 33.65, + 0.59702, 2, 29, -8.9, 36.8, 0.39723, 81, -8.9, 36.8, 0.60277, 2, 29, -0.23, 37.18, 0.38672, 81, -0.23, 37.18, 0.61328, 2, 29, 8.95, 36.51, 0.39243, 81, 8.95, 36.51, 0.60757, 2, 29, + 19.05, 32.93, 0.39729, 81, 19.05, 32.93, 0.60271, 2, 29, 28.51, 27.19, 0.41715, 81, 28.51, 27.19, 0.58285, 2, 29, 36.77, 19.73, 0.45304, 81, 36.77, 19.73, 0.54696, 2, 29, 40.74, + 10.16, 0.44594, 81, 40.74, 10.16, 0.55406, 2, 29, 42.2, -0.42, 0.43856, 81, 42.2, -0.42, 0.56144, 2, 29, 40.55, -10.17, 0.41782, 81, 40.55, -10.17, 0.58218, 2, 29, 35.87, -19.42, + 0.38686, 81, 35.87, -19.42, 0.61314, 2, 29, 28.24, -28.73, 0.36878, 81, 28.24, -28.73, 0.63122, 2, 29, 18.06, -34.64, 0.3386, 81, 18.06, -34.64, 0.6614, 2, 29, 6.41, -37, 0.30037, + 81, 6.41, -37, 0.69963, 2, 29, -2.32, -36.91, 0.28415, 81, -2.32, -36.91, 0.71585, 2, 29, -9.48, -35.32, 0.27399, 81, -9.48, -35.32, 0.72601, 2, 29, -38.52, -8.03, 0.36783, 81, + -38.52, -8.03, 0.63217, 2, 29, -34.06, -18, 0.33446, 81, -34.06, -18, 0.66554, 2, 29, -26.52, -26.8, 0.30599, 81, -26.52, -26.8, 0.69401, 2, 29, -17.23, -32.71, 0.28378, 81, -17.23, + -32.71, 0.71622, 2, 29, -41.59, -42.47, 0.73847, 81, -41.59, -42.47, 0.26153, 2, 29, -27.74, -51.46, 0.71173, 81, -27.74, -51.46, 0.28827, 2, 29, -14.53, -55.88, 0.69513, 81, -14.53, + -55.88, 0.30487, 2, 29, -3.16, -58.91, 0.72225, 81, -3.16, -58.91, 0.27775, 2, 29, 11.08, -60.25, 0.77228, 81, 11.08, -60.25, 0.22772, 2, 29, 29.37, -54.99, 0.80171, 81, 29.37, + -54.99, 0.19829, 2, 29, 43.44, -43.46, 0.78981, 81, 43.44, -43.46, 0.21019, 2, 29, 54.07, -28.78, 0.79382, 81, 54.07, -28.78, 0.20618, 2, 29, 60.6, -14.84, 0.827, 81, 60.6, -14.84, + 0.173, 2, 29, 64.25, -0.38, 0.87698, 81, 64.25, -0.38, 0.12302, 2, 29, 63.98, 16.11, 0.92141, 81, 63.98, 16.11, 0.07859, 2, 29, 56.88, 30.53, 0.90642, 81, 56.88, 30.53, 0.09358, 2, + 29, 46.21, 43.86, 0.90058, 81, 46.21, 43.86, 0.09942, 2, 29, 31.89, 54.43, 0.8953, 81, 31.89, 54.43, 0.1047, 2, 29, 15.52, 61.14, 0.89934, 81, 15.52, 61.14, 0.10066, 2, 29, 0.24, + 62.86, 0.89762, 81, 0.24, 62.86, 0.10238, 2, 29, -14.22, 61.67, 0.90341, 81, -14.22, 61.67, 0.09659, 2, 29, -30.17, 56.55, 0.9151, 81, -30.17, 56.55, 0.0849, 2, 29, -44.28, 48.24, + 0.93596, 81, -44.28, 48.24, 0.06404, 2, 29, -55.51, 33.16, 0.90966, 81, -55.51, 33.16, 0.09034, 2, 29, -61.25, 15.72, 0.86888, 81, -61.25, 15.72, 0.13112, 2, 29, -62.28, 1.26, + 0.83823, 81, -62.28, 1.26, 0.16177, 2, 29, -61.24, -12.59, 0.82811, 81, -61.24, -12.59, 0.17189, 2, 29, -53.41, -30.3, 0.78788, 81, -53.41, -30.3, 0.21212 + ], + "hull": 24, + "edges": [ + 18, 20, 18, 16, 16, 14, 14, 12, 8, 10, 12, 10, 8, 6, 6, 4, 4, 2, 2, 0, 44, 46, 0, 46, 42, 44, 42, 40, 40, 38, 38, 36, 32, 34, 36, 34, 30, 32, 30, 28, 28, 26, 26, 24, 20, 22, 24, 22, + 50, 48, 52, 48, 50, 52, 54, 48, 52, 54, 56, 48, 54, 56, 58, 48, 56, 58, 60, 48, 58, 60, 62, 48, 60, 62, 64, 48, 62, 64, 66, 48, 64, 66, 68, 48, 66, 68, 70, 48, 68, 70, 72, 48, 70, + 72, 74, 48, 72, 74, 76, 48, 74, 76, 78, 48, 76, 78, 80, 48, 78, 80, 82, 48, 80, 82, 84, 48, 82, 84, 86, 48, 84, 86, 88, 48, 86, 88, 90, 48, 88, 90, 92, 48, 90, 92, 94, 48, 92, 94, + 96, 48, 94, 96, 96, 50, 98, 96, 100, 50, 98, 100, 102, 52, 100, 102, 104, 54, 102, 104, 106, 56, 104, 106, 108, 58, 106, 108, 110, 60, 108, 110, 112, 62, 110, 112, 114, 64, 112, 114, + 116, 66, 114, 116, 118, 68, 116, 118, 120, 70, 118, 120, 122, 72, 120, 122, 124, 74, 122, 124, 126, 76, 124, 126, 128, 78, 126, 128, 130, 80, 128, 130, 132, 82, 130, 132, 134, 84, + 132, 134, 136, 86, 134, 136, 138, 94, 98, 138, 140, 92, 138, 140, 142, 90, 140, 142, 144, 88, 142, 144, 144, 136, 26, 146, 146, 142, 24, 148, 148, 144, 146, 148, 22, 150, 150, 136, + 148, 150, 20, 152, 152, 134, 150, 152, 18, 154, 154, 132, 152, 154, 16, 156, 156, 130, 154, 156, 14, 158, 158, 128, 156, 158, 12, 160, 160, 126, 158, 160, 10, 162, 162, 124, 160, + 162, 8, 164, 164, 122, 162, 164, 6, 166, 166, 120, 164, 166, 4, 168, 168, 118, 166, 168, 2, 170, 170, 116, 168, 170, 0, 172, 172, 114, 170, 172, 46, 174, 174, 112, 172, 174, 44, 176, + 176, 110, 174, 176, 42, 178, 178, 108, 176, 178, 40, 180, 180, 106, 178, 180, 38, 182, 182, 104, 180, 182, 36, 184, 184, 102, 182, 184, 34, 186, 186, 100, 184, 186, 32, 188, 188, 98, + 186, 188, 30, 190, 190, 138, 188, 190, 28, 192, 192, 140, 190, 192, 192, 146 + ], + "width": 162.35294117647058, + "height": 162.35294117647058, + "path": "summer-a.mouth-accessory", + "x": 0.8235294117647101, + "y": 0.8235294117647101 + } + }, + "tail": {"tail": {"x": 114.19882352941177, "y": 4.008823529411768, "rotation": 12, "width": 225.88235294117646, "height": 225.88235294117646, "path": "summer-a.tail"}} } } ], "events": {"hit": {}, "hit-buff": {}, "jump": {}, "start-attack": {}}, "keyAnimations": { - "activity/appear": "2516301341", - "activity/bath": "3188102483", - "attack/ranged/cast-fly": "3451796327", - "attack/ranged/cast-high": "2081555660", - "attack/ranged/cast-low": "4283524375", - "attack/ranged/cast-multi": "2979763470", - "attack/ranged/cast-tail": "1370524738", - "activity/eat-bite": "3760585416", - "activity/eat-chew": "3987941875", - "activity/entrance": "3632603752", - "defense/evade": "1756453214", - "activity/evolve": "413498100", - "battle/get-buff": "545324325", - "battle/get-debuff": "3925968729", - "defense/hit-by-normal": "685375493", - "defense/hit-by-normal-crit": "2105733975", - "defense/hit-by-normal-dramatic": "42307048", - "defense/hit-by-ranged-attack": "912481638", - "defense/hit-with-shield": "2842428225", - "attack/melee/horn-gore": "339640524", - "attack/melee/mouth-bite": "1963086355", - "action/move-back": "2980215034", - "action/move-forward": "160094506", - "attack/melee/multi-attack": "2847851775", - "action/idle/normal": "1279050865", - "attack/melee/normal-attack": "2307702827", - "activity/prepare": "3515345276", - "action/idle/random-01": "4102515873", - "action/idle/random-02": "4047015022", - "action/idle/random-03": "1772223510", - "action/idle/random-04": "1055348841", - "action/idle/random-05": "765106252", - "action/run": "3746342726", - "draft/run-origin": "2477462439", - "attack/melee/shrimp": "2456423644", - "activity/sleep": "3386570360", - "attack/melee/tail-multi-slap": "3650044337", - "attack/melee/tail-roll": "3237083422", - "attack/melee/tail-smash": "3603559322", - "attack/melee/tail-thrash": "2168073331", - "activity/victory-pose-back-flip": "2029961928" + "activity/appear": "1023093953", + "activity/bath": "3305387968", + "attack/ranged/cast-fly": "4180526371", + "attack/ranged/cast-high": "164191126", + "attack/ranged/cast-low": "198813017", + "attack/ranged/cast-multi": "151119", + "attack/ranged/cast-tail": "3850719809", + "action/mix/ear-animation": "901954966", + "activity/eat-bite": "1137807767", + "activity/eat-chew": "1988236421", + "activity/entrance": "3768378365", + "defense/evade": "1735454995", + "activity/evolve": "649307630", + "action/mix/eyes-animation": "3799301307", + "battle/get-buff": "1455190363", + "battle/get-debuff": "606904312", + "defense/hit-by-normal": "2045974966", + "defense/hit-by-normal-crit": "2130010601", + "defense/hit-by-normal-dramatic": "3823092125", + "defense/hit-by-ranged-attack": "2224561612", + "defense/hit-with-shield": "390714790", + "attack/melee/horn-gore": "1327954218", + "attack/melee/mouth-bite": "2237748264", + "action/move-back": "3766271173", + "action/move-forward": "2945160014", + "attack/melee/multi-attack": "3774600630", + "action/idle/normal": "1659336865", + "attack/melee/normal-attack": "3305373483", + "action/mix/normal-mouth-animation": "1178295570", + "activity/prepare": "405864717", + "action/idle/random-01": "554401889", + "action/idle/random-02": "3634120758", + "action/idle/random-03": "2021333900", + "action/idle/random-04": "1003789695", + "action/idle/random-05": "2745614147", + "action/run": "3942433225", + "draft/run-origin": "237238075", + "attack/melee/shrimp": "3833448733", + "activity/sleep": "100562494", + "attack/melee/tail-multi-slap": "3317139533", + "attack/melee/tail-roll": "3108617565", + "attack/melee/tail-smash": "519942130", + "attack/melee/tail-thrash": "628713175", + "activity/victory-pose-back-flip": "2227634241" } }, - "bird-mystic-02": { + "summer-td": { "bones": [ {"name": "@root"}, {"name": "@pivot-main", "parent": "@root"}, {"name": "@pivot-back", "parent": "@pivot-main", "x": 205, "y": 180, "color": "ff0101ff"}, {"name": "@pivot-center", "parent": "@pivot-back", "x": -215.11, "y": -5.25, "color": "ff0101ff"}, {"name": "@axie", "parent": "@pivot-center", "length": 213.28, "rotation": 179.04, "x": 196.39, "y": 5.16}, {"name": "@back", "parent": "@axie", "rotation": -179.04, "x": 37.63, "y": -198.19}, - {"name": "back", "parent": "@back", "length": 149.41, "rotation": 86, "x": 30.03, "y": 56.3, "transform": "noScale"}, + {"name": "back", "parent": "@back", "length": 149.41, "rotation": 58, "x": -13.97, "y": 26.3, "transform": "noScale"}, {"name": "@body", "parent": "@axie", "length": 226.28, "rotation": -8.35, "x": 224.58, "y": -0.53}, {"name": "@ear-left", "parent": "@axie", "rotation": -179.04, "x": 112.7, "y": -203.23}, - {"name": "ear-left", "parent": "@ear-left", "length": 113.61, "rotation": 114, "x": 55, "y": -63, "transform": "noScale"}, + {"name": "ear-left", "parent": "@ear-left", "length": 113.61, "rotation": 90, "x": -27, "y": 19, "transform": "noScale"}, {"name": "@ear-right", "parent": "@axie", "rotation": -179.04, "x": 405.28, "y": -235.33}, - {"name": "ear-right", "parent": "@ear-right", "length": 119.39, "rotation": 68, "x": -73, "y": -107, "transform": "noScale"}, + {"name": "ear-right", "parent": "@ear-right", "length": 119.39, "rotation": 93, "x": -30, "y": -15, "transform": "noScale"}, {"name": "@eyes", "parent": "@axie", "rotation": -179.04, "x": 384.24, "y": -113.67}, {"name": "@horn", "parent": "@axie", "rotation": -179.04, "x": 327.92, "y": -214.63}, {"name": "horn", "parent": "@horn", "length": 176.72, "rotation": 90, "y": 18, "transform": "noScale"}, {"name": "@leg-back-left", "parent": "@axie", "length": 76.4, "rotation": 100.96, "x": -15.3, "y": 102.56, "transform": "noScale"}, {"name": "@leg-front-left", "parent": "@axie", "length": 51.19, "rotation": 93.86, "x": 134.77, "y": 149.55, "transform": "noScale"}, {"name": "@leg-front-right", "parent": "@axie", "length": 74.83, "rotation": 83.2, "x": 382.95, "y": 121.78, "transform": "noScale"}, - {"name": "@mouth", "parent": "@axie", "rotation": -179.04, "x": 382.23, "y": 6.31}, - {"name": "body-class", "parent": "@body", "rotation": -170.69, "x": -286.29, "y": -103.48, "transform": "noScale"}, {"name": "@shadow", "parent": "@root", "color": "e6d713ff"}, + {"name": "@mouth", "parent": "@axie", "rotation": -179.04, "x": 382.23, "y": 6.31, "color": "abe323ff"}, + {"name": "body-pattern", "parent": "@body", "rotation": -170.69, "x": -267.21, "y": -49.4, "transform": "noScale"}, {"name": "@shadow", "parent": "@root", "color": "e6d713ff"}, {"name": "@tail", "parent": "@axie", "rotation": -179.04, "x": -11.76, "y": 61.72}, - {"name": "tail", "parent": "@tail", "length": 203.67, "rotation": 45, "x": 36.24, "y": -18, "transform": "noScale"}, + {"name": "tail", "parent": "@tail", "length": 203.67, "rotation": -12, "x": 16, "y": 72.87, "transform": "noScale"}, {"name": "leg-front-right-IK", "parent": "@pivot-main", "x": -195.99, "y": -10.21, "color": "ff3f00ff"}, {"name": "leg-front-left-IK", "parent": "@pivot-main", "x": 42.3, "y": -18.42, "color": "ff3f00ff"}, {"name": "leg-back-left-IK", "parent": "@pivot-main", "x": 208.57, "y": 1.35, "color": "ff3f00ff"}, {"name": "@ball", "parent": "@root", "y": 191, "color": "f3981bff"}, - {"name": "ball", "parent": "@ball", "y": -191, "color": "f4a729ff"}, {"name": "body-id", "parent": "@body", "rotation": -170.69, "x": -290.82, "y": -75.84}, - {"name": "mouth-accessory", "parent": "@mouth", "x": 8.74, "y": 77.12}, {"name": "mouth-blink", "parent": "@mouth", "x": 80.68, "y": 82.83} + {"name": "ball", "parent": "@ball", "y": -191, "color": "f4a729ff"}, {"name": "mouth-bubble", "parent": "@mouth", "x": -191.16, "y": -1.83}, + {"name": "mouth-accessory", "parent": "mouth-bubble", "x": -67.84, "y": 101.83}, {"name": "eyes-happy-accessory", "parent": "@eyes", "x": 142.51, "y": 62.21}, + {"name": "ear-right-bubble", "parent": "ear-right", "length": 40.07, "rotation": -179.99, "x": 184.94, "y": -20.48}, + {"name": "ear-left-bubble", "parent": "ear-left", "length": 48.54, "rotation": 176.27, "x": 190.98, "y": -21.07, "scaleX": 0.949}, + {"name": "ear-left-all-bubble", "parent": "ear-left", "length": 26.1, "rotation": 0.95, "x": -6.64, "y": -27.7, "color": "3002ffff"}, + {"name": "ear-right-dot-01", "parent": "ear-left-all-bubble", "rotation": -90.95, "x": -13.64, "y": 22.67, "scaleX": 0.3508, "scaleY": 0.3508, "color": "2f9bffff"}, + {"name": "ear-left-dot-01", "parent": "ear-left-all-bubble", "rotation": -90.95, "x": -28.82, "y": -24.72, "scaleX": 0.7755, "scaleY": 0.7755, "color": "2f9bffff"}, + {"name": "ear-right-bubble-02", "parent": "ear-right-bubble", "rotation": 86.99, "x": 63.76, "y": -22.96}, + {"name": "ear-right-bubble-03", "parent": "ear-right-bubble", "rotation": 86.99, "x": 64.99, "y": -1.59}, + {"name": "ear-right-bubble-04", "parent": "ear-right-bubble", "rotation": 86.99, "x": 66.12, "y": 19.85}, + {"name": "ear-left-bubble-02", "parent": "ear-left-bubble", "rotation": 93.73, "x": 68.81, "y": -22.89}, + {"name": "ear-left-bubble-03", "parent": "ear-left-bubble", "rotation": 93.73, "x": 70.45, "y": -0.4}, + {"name": "ear-left-bubble-04", "parent": "ear-left-bubble", "rotation": 93.73, "x": 65.87, "y": 22.28}, + {"name": "ear-right-bubble-05", "parent": "ear-right", "length": 40.07, "rotation": -179.99, "x": 184.94, "y": -20.48}, + {"name": "ear-right-bubble-06", "parent": "ear-right-bubble-05", "rotation": 86.99, "x": 63.76, "y": -22.96}, + {"name": "ear-right-bubble-07", "parent": "ear-right-bubble-05", "rotation": 86.99, "x": 64.99, "y": -1.59}, + {"name": "ear-right-bubble-08", "parent": "ear-right-bubble-05", "rotation": 86.99, "x": 66.12, "y": 19.85}, + {"name": "ear-left-bubble-05", "parent": "ear-left", "length": 48.54, "rotation": 176.27, "x": 190.98, "y": -21.07, "scaleX": 0.991}, + {"name": "ear-left-bubble-06", "parent": "ear-left-bubble-05", "rotation": 93.73, "x": 67.27, "y": -22.98}, + {"name": "ear-left-bubble-07", "parent": "ear-left-bubble-05", "rotation": 93.73, "x": 65.82, "y": -0.69}, + {"name": "ear-left-bubble-08", "parent": "ear-left-bubble-05", "rotation": 93.73, "x": 64.32, "y": 22.18}, + {"name": "ear-right-dot-02", "parent": "ear-left-all-bubble", "rotation": -95.73, "x": -18.26, "y": -8.1, "scaleX": 0.5668, "scaleY": 0.6813, "color": "2f9bffff"}, + {"name": "ear-left-dot-02", "parent": "ear-left-all-bubble", "rotation": -88.74, "x": 8.57, "y": 59.72, "scaleX": 0.6577, "scaleY": 0.5996, "color": "2f9bffff"}, + {"name": "ear-right-dot-03", "parent": "ear-left-all-bubble", "rotation": -87.96, "x": -25.76, "y": -45.18, "scaleX": 0.2583, "scaleY": 0.2881, "color": "2f9bffff"}, + {"name": "ear-right-dot-04", "parent": "ear-left-all-bubble", "rotation": -88.51, "x": -27.05, "y": -31.17, "scaleX": 0.4361, "scaleY": 0.6365, "color": "2f9bffff"}, + {"name": "ear-right-dot-05", "parent": "ear-left-all-bubble", "rotation": -79.32, "x": -5.28, "y": 34.53, "scaleX": 0.5911, "scaleY": 0.8949, "color": "2f9bffff"}, + {"name": "ear-left-dot-03", "parent": "ear-left-all-bubble", "rotation": -90.95, "x": -10.57, "y": 11.72, "scaleX": 0.8206, "scaleY": 0.8206, "color": "2f9bffff"}, + {"name": "ear-left-dot-04", "parent": "ear-left-all-bubble", "rotation": -90.95, "x": 11.94, "y": 65.23, "scaleX": 0.7096, "scaleY": 0.7096, "color": "2f9bffff"}, + {"name": "ear-left-dot-05", "parent": "ear-left-all-bubble", "rotation": -88.35, "x": 10.11, "y": 68.29, "scaleX": 0.4014, "scaleY": 0.366, "color": "2f9bffff"}, + {"name": "ear-left-dot-06", "parent": "ear-left-all-bubble", "rotation": -90.95, "x": 34.65, "y": 74.95, "scaleX": 0.8206, "scaleY": 0.8206, "color": "2f9bffff"}, + {"name": "ear-right-dot-06", "parent": "ear-left-all-bubble", "rotation": -90.95, "x": -11.77, "y": 50.86, "scaleX": 0.4361, "scaleY": 0.4361, "color": "2f9bffff"}, + {"name": "ear-right-dot-07", "parent": "ear-left-all-bubble", "rotation": -96.07, "x": -32.28, "y": -4.86, "scaleX": 0.5668, "scaleY": 0.6813, "color": "2f9bffff"}, + {"name": "ear-right-dot-08", "parent": "ear-left-all-bubble", "rotation": -90.23, "x": -18.31, "y": -61.25, "scaleX": 0.7405, "scaleY": 0.826, "color": "2f9bffff"}, + {"name": "ear-right-dot-09", "parent": "ear-left-all-bubble", "rotation": -93.53, "x": -9.54, "y": 52.15, "scaleX": 0.2863, "scaleY": 0.3229, "color": "2f9bffff"}, + {"name": "ear-right-dot-10", "parent": "ear-left-all-bubble", "rotation": -81.97, "x": -31.43, "y": 21.83, "scaleX": 0.5911, "scaleY": 0.8949, "color": "2f9bffff"}, + {"name": "ear-right-all-bubble", "parent": "ear-right", "length": 26.1, "rotation": 3.44, "x": -10.08, "y": -8.05, "color": "3002ffff"}, + {"name": "ear-right-dot-11", "parent": "ear-right-all-bubble", "rotation": -96.44, "x": 10.27, "y": -24.86, "scaleX": 0.3508, "scaleY": 0.3508, "color": "2f9bffff"}, + {"name": "ear-left-dot-07", "parent": "ear-right-all-bubble", "rotation": -96.44, "x": 27.18, "y": -39.33, "scaleX": 0.7755, "scaleY": 0.7755, "color": "2f9bffff"}, + {"name": "ear-right-dot-12", "parent": "ear-right-all-bubble", "rotation": -101.56, "x": -18.26, "y": -8.1, "scaleX": 0.5668, "scaleY": 0.6813, "color": "2f9bffff"}, + {"name": "ear-left-dot-08", "parent": "ear-right-all-bubble", "rotation": -93.99, "x": -7.49, "y": -14.12, "scaleX": 0.6577, "scaleY": 0.5996, "color": "2f9bffff"}, + {"name": "ear-right-dot-13", "parent": "ear-right-all-bubble", "rotation": -93.67, "x": 43.59, "y": -57.74, "scaleX": 0.2583, "scaleY": 0.2881, "color": "2f9bffff"}, + {"name": "ear-right-dot-14", "parent": "ear-right-all-bubble", "rotation": -96.49, "x": 8.09, "y": -20.73, "scaleX": 0.4361, "scaleY": 0.6365, "color": "2f9bffff"}, + {"name": "ear-right-dot-15", "parent": "ear-right-all-bubble", "rotation": -84.65, "x": -5.28, "y": 34.53, "scaleX": 0.5911, "scaleY": 0.8949, "color": "2f9bffff"}, + {"name": "ear-left-dot-09", "parent": "ear-right-all-bubble", "rotation": -96.44, "x": -10.57, "y": 11.72, "scaleX": 0.8206, "scaleY": 0.8206, "color": "2f9bffff"}, + {"name": "ear-left-dot-10", "parent": "ear-right-all-bubble", "rotation": -96.44, "x": -13.81, "y": 2.57, "scaleX": 0.7096, "scaleY": 0.7096, "color": "2f9bffff"}, + {"name": "ear-left-dot-11", "parent": "ear-right-all-bubble", "rotation": -93.79, "x": -9.28, "y": 21.87, "scaleX": 0.4014, "scaleY": 0.366, "color": "2f9bffff"}, + {"name": "ear-left-dot-12", "parent": "ear-right-all-bubble", "rotation": -96.44, "x": -2.52, "y": 33.38, "scaleX": 0.8206, "scaleY": 0.8206, "color": "2f9bffff"}, + {"name": "ear-right-dot-16", "parent": "ear-right-all-bubble", "rotation": -96.44, "x": -4.07, "y": -34.4, "scaleX": 0.4361, "scaleY": 0.4361, "color": "2f9bffff"}, + {"name": "ear-right-dot-17", "parent": "ear-right-all-bubble", "rotation": -101.7, "x": 4.16, "y": -7.75, "scaleX": 0.5668, "scaleY": 0.6813, "color": "2f9bffff"}, + {"name": "ear-right-dot-18", "parent": "ear-right-all-bubble", "rotation": -96.34, "x": 27.4, "y": -55.17, "scaleX": 0.7405, "scaleY": 0.826, "color": "2f9bffff"}, + {"name": "ear-right-dot-19", "parent": "ear-right-all-bubble", "rotation": -99.41, "x": -9.54, "y": 52.15, "scaleX": 0.2863, "scaleY": 0.3229, "color": "2f9bffff"}, + {"name": "ear-right-dot-20", "parent": "ear-right-all-bubble", "rotation": -86.28, "x": 12.43, "y": -37.05, "scaleX": 0.5911, "scaleY": 0.8949, "color": "2f9bffff"}, + {"name": "mouth-bubble-core", "parent": "mouth-accessory"}, {"name": "eyes-light-left", "parent": "@eyes", "length": 15.08, "rotation": -135.48, "x": 69.15, "y": -15.18}, + {"name": "eyes-light-right", "parent": "@eyes", "length": 15.08, "rotation": -135.48, "x": -97.9, "y": -16.49}, {"name": "eyes-light-dot", "parent": "@eyes", "x": -66.73, "y": 27.82}, + {"name": "eyes-light-dot-02", "parent": "@eyes", "x": 103.19, "y": 27.82} ], "slots": [ {"name": "shadow", "bone": "@shadow", "attachment": "shadow"}, {"name": "ball", "bone": "ball"}, - {"name": "leg-front-right", "bone": "@leg-front-right", "attachment": "mystic-leg-front-right"}, {"name": "ear-right", "bone": "ear-right", "attachment": "ear-right"}, - {"name": "tail", "bone": "tail", "attachment": "tail"}, {"name": "back", "bone": "back", "attachment": "back"}, - {"name": "leg-back-left", "bone": "@leg-back-left", "attachment": "mystic-leg-back-left"}, {"name": "body", "bone": "@body", "attachment": "body-mystic"}, - {"name": "body-class", "bone": "body-class", "attachment": "body-class-aquatic"}, {"name": "leg-front-left", "bone": "@leg-front-left", "attachment": "mystic-leg-front-left"}, - {"name": "eyes", "bone": "@eyes", "attachment": "eyes"}, {"name": "mouth", "bone": "@mouth", "attachment": "mouth"}, {"name": "ear-left", "bone": "ear-left", "attachment": "ear-left"}, - {"name": "horn", "bone": "horn", "attachment": "horn"}, {"name": "body-id", "bone": "body-id", "attachment": "body-id"}, {"name": "mouth-accessory", "bone": "mouth-accessory"}, - {"name": "mouth-blink", "bone": "mouth-blink"} + {"name": "leg-front-right", "bone": "@leg-front-right", "attachment": "summer-leg-front-right"}, {"name": "tail", "bone": "tail", "attachment": "tail"}, + {"name": "back", "bone": "back", "attachment": "back"}, {"name": "leg-back-left", "bone": "@leg-back-left", "attachment": "summer-leg-back-left"}, + {"name": "body", "bone": "@body", "attachment": "body"}, {"name": "body-pattern", "bone": "body-pattern"}, {"name": "ear-right-under", "bone": "ear-right", "attachment": "ear-right-under"}, + {"name": "ear-left-dot-07", "bone": "ear-left-dot-07", "color": "ffffff00", "attachment": "ear-left-dot"}, + {"name": "ear-left-dot-10", "bone": "ear-left-dot-10", "color": "ffffff00", "attachment": "ear-left-dot"}, + {"name": "ear-left-dot-09", "bone": "ear-left-dot-09", "color": "ffffff00", "attachment": "ear-left-dot"}, + {"name": "ear-left-dot-12", "bone": "ear-left-dot-12", "color": "ffffff00", "attachment": "ear-left-dot"}, + {"name": "ear-left-dot-08", "bone": "ear-left-dot-08", "color": "ffffff00", "attachment": "ear-left-dot"}, + {"name": "ear-left-dot-11", "bone": "ear-left-dot-11", "color": "ffffff00", "attachment": "ear-left-dot"}, + {"name": "ear-right-dot-11", "bone": "ear-right-dot-11", "color": "ffffff00", "attachment": "ear-right-dot"}, + {"name": "ear-right-dot-16", "bone": "ear-right-dot-16", "color": "ffffff00", "attachment": "ear-right-dot"}, + {"name": "ear-right-dot-12", "bone": "ear-right-dot-12", "color": "ffffff00", "attachment": "ear-right-dot"}, + {"name": "ear-right-dot-17", "bone": "ear-right-dot-17", "color": "ffffff00", "attachment": "ear-right-dot"}, + {"name": "ear-right-dot-13", "bone": "ear-right-dot-13", "color": "ffffff00", "attachment": "ear-right-dot"}, + {"name": "ear-right-dot-18", "bone": "ear-right-dot-18", "color": "ffffff00", "attachment": "ear-right-dot"}, + {"name": "ear-right-dot-14", "bone": "ear-right-dot-14", "color": "ffffff00", "attachment": "ear-right-dot"}, + {"name": "ear-right-dot-19", "bone": "ear-right-dot-19", "color": "ffffff00", "attachment": "ear-right-dot"}, + {"name": "ear-right-dot-15", "bone": "ear-right-dot-15", "color": "ffffff00", "attachment": "ear-right-dot"}, + {"name": "ear-right-dot-20", "bone": "ear-right-dot-20", "color": "ffffff00", "attachment": "ear-right-dot"}, + {"name": "ear-right-bubble", "bone": "ear-right-bubble", "color": "fcae10ff", "attachment": "ear-right-bubble"}, + {"name": "ear-right-bubble-02", "bone": "ear-right-bubble-05", "attachment": "ear-right-bubble"}, {"name": "ear-right-upper", "bone": "ear-right", "attachment": "ear-right-upper"}, + {"name": "leg-front-left", "bone": "@leg-front-left", "attachment": "summer-leg-front-left"}, {"name": "eyes", "bone": "@eyes", "attachment": "eyes"}, + {"name": "eyes-light-dot", "bone": "eyes-light-dot", "attachment": "eye-light-dot"}, {"name": "eyes-light-dot-02", "bone": "eyes-light-dot-02", "attachment": "eye-light-dot"}, + {"name": "eyes-light-left", "bone": "eyes-light-left", "color": "fff96500", "attachment": "light", "blend": "additive"}, + {"name": "eyes-light-right", "bone": "eyes-light-right", "color": "fff96500", "attachment": "light", "blend": "additive"}, {"name": "eyes-upper", "bone": "@eyes", "attachment": "eyes-upper"}, + {"name": "mouth", "bone": "@mouth", "attachment": "mouth"}, {"name": "horn", "bone": "horn", "attachment": "horn"}, + {"name": "ear-left-under", "bone": "ear-left", "attachment": "ear-left-under"}, {"name": "ear-left-dot-01", "bone": "ear-left-dot-01", "color": "ffffff00", "attachment": "ear-left-dot"}, + {"name": "ear-left-dot-04", "bone": "ear-left-dot-04", "color": "ffffff00", "attachment": "ear-left-dot"}, + {"name": "ear-left-dot-03", "bone": "ear-left-dot-03", "color": "ffffff00", "attachment": "ear-left-dot"}, + {"name": "ear-left-dot-06", "bone": "ear-left-dot-06", "color": "ffffff00", "attachment": "ear-left-dot"}, + {"name": "ear-left-dot-02", "bone": "ear-left-dot-02", "color": "ffffff00", "attachment": "ear-left-dot"}, + {"name": "ear-left-dot-05", "bone": "ear-left-dot-05", "color": "ffffff00", "attachment": "ear-left-dot"}, + {"name": "ear-right-dot-01", "bone": "ear-right-dot-01", "color": "ffffff00", "attachment": "ear-right-dot"}, + {"name": "ear-right-dot-06", "bone": "ear-right-dot-06", "color": "ffffff00", "attachment": "ear-right-dot"}, + {"name": "ear-right-dot-02", "bone": "ear-right-dot-02", "color": "ffffff00", "attachment": "ear-right-dot"}, + {"name": "ear-right-dot-07", "bone": "ear-right-dot-07", "color": "ffffff00", "attachment": "ear-right-dot"}, + {"name": "ear-right-dot-03", "bone": "ear-right-dot-03", "color": "ffffff00", "attachment": "ear-right-dot"}, + {"name": "ear-right-dot-08", "bone": "ear-right-dot-08", "color": "ffffff00", "attachment": "ear-right-dot"}, + {"name": "ear-right-dot-04", "bone": "ear-right-dot-04", "color": "ffffff00", "attachment": "ear-right-dot"}, + {"name": "ear-right-dot-09", "bone": "ear-right-dot-09", "color": "ffffff00", "attachment": "ear-right-dot"}, + {"name": "ear-right-dot-05", "bone": "ear-right-dot-05", "color": "ffffff00", "attachment": "ear-right-dot"}, + {"name": "ear-right-dot-10", "bone": "ear-right-dot-10", "color": "ffffff00", "attachment": "ear-right-dot"}, + {"name": "ear-left-bubble", "bone": "ear-left-bubble", "color": "fcae10ff", "attachment": "ear-left-bubble"}, + {"name": "ear-left-bubble-02", "bone": "ear-left-bubble-05", "attachment": "ear-left-bubble"}, {"name": "ear-left-upper", "bone": "ear-left", "attachment": "ear-left-upper"}, + {"name": "eyes-happy-accessory", "bone": "eyes-happy-accessory", "color": "ffffff00", "attachment": "eyes-happy-accessory", "blend": "additive"}, + {"name": "mouth-accessory", "bone": "mouth-accessory", "color": "ffffff00", "attachment": "mouth-accessory"} ], "ik": [ - {"name": "leg-back-left-IK", "order": 2, "bones": ["@leg-back-left"], "target": "leg-back-left-IK"}, - {"name": "leg-front-left-IK", "order": 1, "bones": ["@leg-front-left"], "target": "leg-front-left-IK"}, + {"name": "leg-back-left-IK", "order": 3, "bones": ["@leg-back-left"], "target": "leg-back-left-IK"}, + {"name": "leg-front-left-IK", "order": 2, "bones": ["@leg-front-left"], "target": "leg-front-left-IK"}, {"name": "leg-front-right-IK", "bones": ["@leg-front-right"], "target": "leg-front-right-IK"} ], + "transform": [{"name": "@mouth", "order": 1, "bones": ["mouth-bubble"], "target": "@mouth", "x": -49.1, "y": 37.9, "rotateMix": 0, "translateMix": 0, "scaleMix": 0, "shearMix": 0}], "skins": [ { "name": "default", "attachments": { - "back": {"back": {"x": 166.77, "y": -4.72, "rotation": -86, "width": 250, "height": 274, "path": "bird-mystic-02.back"}}, - "ear-left": {"ear-left": {"x": 29.4, "y": 10.62, "rotation": -114, "width": 164, "height": 237, "path": "bird-mystic-02.ear-left"}}, - "ear-right": {"ear-right": {"x": -3.75, "y": 4.04, "rotation": -68, "width": 133, "height": 176, "path": "bird-mystic-02.ear-right"}}, - "eyes": { - "eyes": {"x": 49.35, "y": 28.04, "width": 336, "height": 118, "path": "bird-mystic-02.eyes"}, - "eyes-angry": {"x": 49.35, "y": 28.04, "width": 336, "height": 118, "path": "bird-mystic-02.eyes-angry"}, - "eyes-happy": {"x": 48.85, "y": 36.04, "width": 337, "height": 102, "path": "bird-mystic-02.eyes-happy"}, - "eyes-shut": {"x": 48.85, "y": 35.04, "width": 337, "height": 104, "path": "bird-mystic-02.eyes-shut"} + "back": {"back": {"x": 70.6535294117647, "y": -8.307647058823536, "rotation": -58, "width": 242.3529411764706, "height": 228.23529411764707, "path": "summer-a.back"}}, + "ear-left-bubble": { + "ear-left-bubble": { + "type": "mesh", + "uvs": [ + 0.87714, 0.57697, 0.91393, 0.67811, 0.94364, 0.75977, 0.96133, 0.8176, 0.97838, 0.87333, 1, 0.94398, 0.93104, 0.94427, 0.90524, 0.94438, 0.88494, 0.94447, 0.85255, 0.94461, 0.82176, + 0.94474, 0.79396, 0.94486, 0.76382, 0.94499, 0.73767, 0.9451, 0.70713, 0.94523, 0.67579, 0.94536, 0.64108, 0.94551, 0.61244, 0.94564, 0.5758, 0.94579, 0.5367, 0.94596, 0.50394, + 0.9461, 0.47091, 0.94624, 0.435, 0.94639, 0.39675, 0.94656, 0.36198, 0.94671, 0.32916, 0.94685, 0.29359, 0.947, 0.25022, 0.94718, 0.20956, 0.94736, 0.17261, 0.94751, 0.12749, + 0.94771, 0.1012, 0.94782, 0.07834, 0.94792, 0.0457, 0.94806, 0.02123, 0.94816, 0, 0.94825, 0, 0.86703, 0, 0.81359, 0, 0.73715, 0.02817, 0.68242, 0.07791, 0.5858, 0.37947, 0, 0.46651, + 0, 0.5261, 0, 0.59994, 0, 0.66726, 0, 0.02864, 0.86721, 0.04805, 0.81379, 0.07275, 0.7389, 0.0999, 0.68207, 0.14259, 0.58508, 0.49108, 0.58123, 0.82646, 0.57753, 0.86109, 0.67837, + 0.88458, 0.75835, 0.90003, 0.81734, 0.91424, 0.87292, 0.48557, 0.6802, 0.48069, 0.74867, 0.47772, 0.81558, 0.4758, 0.87009, 0.29126, 0.58344, 0.25576, 0.68132, 0.23492, 0.74278, + 0.2135, 0.81448, 0.19874, 0.86831, 0.19271, 0.49455, 0.4968, 0.48641, 0.79002, 0.48462, 0.25666, 0.37903, 0.50462, 0.35653, 0.74321, 0.36527, 0.68757, 0.57906, 0.70466, 0.67913, + 0.71716, 0.75434, 0.72541, 0.81661, 0.73109, 0.87174, 0.67152, 0.48534, 0.32349, 0.49105, 0.38378, 0.58242, 0.36974, 0.68076, 0.36036, 0.74579, 0.34895, 0.81504, 0.34148, 0.86923, + 0.20652, 0.58437, 0.16979, 0.68173, 0.1462, 0.74066, 0.12077, 0.81409, 0.10379, 0.8677, 0.59158, 0.58012, 0.59921, 0.67965, 0.60299, 0.7516, 0.60776, 0.81612, 0.60866, 0.87095, + 0.76107, 0.57825, 0.78751, 0.67873, 0.81003, 0.75656, 0.82525, 0.81703, 0.83754, 0.87243, 0.10852, 0.73975, 0.08479, 0.81394, 0.06934, 0.86747, 0.15113, 0.868, 0.1657, 0.81428, + 0.18746, 0.74164, 0.29675, 0.74426, 0.28022, 0.81476, 0.26841, 0.86876, 0.41495, 0.7471, 0.40761, 0.81529, 0.4031, 0.86963, 0.53765, 0.87049, 0.53762, 0.81583, 0.53944, 0.75008, + 0.6595, 0.75296, 0.66217, 0.81635, 0.66857, 0.87134, 0.78397, 0.87208, 0.7758, 0.81682, 0.76492, 0.75548, 0.74852, 0.67892, 0.82675, 0.67854, 0.84222, 0.75734, 0.8595, 0.81717, + 0.87132, 0.87264, 0.01186, 0.9147, 0.056, 0.91293, 0.08943, 0.91297, 0.13846, 0.91074, 0.18465, 0.91102, 0.25824, 0.91262, 0.33507, 0.90958, 0.39978, 0.90977, 0.47313, 0.91161, + 0.53714, 0.91117, 0.61061, 0.90948, 0.67252, 0.91178, 0.73471, 0.91209, 0.78925, 0.91054, 0.84557, 0.91105, 0.87872, 0.91169, 0.92292, 0.90979, 0.21772, 0.91173, 0.11081, 0.912, + 0.02923, 0.91401, 0.29821, 0.91104, 0.36548, 0.90967, 0.43685, 0.9107, 0.50336, 0.9114, 0.57635, 0.91027, 0.64066, 0.9106, 0.70543, 0.91195, 0.76031, 0.91136, 0.81833, 0.9108, + 0.89934, 0.9108 + ], + "triangles": [ + 85, 84, 62, 94, 73, 72, 123, 54, 55, 62, 84, 61, 100, 48, 99, 144, 46, 126, 122, 53, 54, 121, 95, 52, 48, 49, 99, 35, 36, 125, 125, 36, 46, 48, 47, 38, 47, 37, 38, 50, 66, 84, 50, + 40, 66, 56, 3, 4, 54, 53, 1, 52, 68, 0, 70, 42, 43, 71, 0, 68, 44, 45, 71, 70, 43, 44, 71, 70, 44, 69, 41, 42, 69, 42, 70, 71, 45, 0, 77, 70, 71, 77, 71, 68, 70, 78, 69, 67, 70, 77, + 67, 78, 70, 41, 69, 40, 66, 69, 78, 94, 77, 68, 94, 68, 52, 72, 77, 94, 89, 67, 77, 89, 77, 72, 67, 79, 78, 51, 67, 89, 51, 79, 67, 61, 66, 78, 61, 78, 79, 84, 66, 61, 40, 69, 66, + 90, 89, 72, 90, 72, 73, 57, 79, 51, 57, 51, 89, 57, 89, 90, 80, 61, 79, 80, 79, 57, 62, 61, 80, 108, 80, 57, 113, 57, 90, 53, 52, 0, 53, 0, 1, 121, 52, 53, 54, 1, 2, 95, 94, 52, 55, + 2, 3, 55, 54, 2, 5, 6, 4, 39, 40, 49, 49, 40, 50, 38, 39, 48, 46, 36, 37, 48, 39, 49, 85, 50, 84, 49, 50, 85, 47, 46, 37, 56, 55, 3, 122, 121, 53, 47, 48, 100, 46, 47, 101, 125, 46, + 144, 35, 125, 34, 34, 125, 144, 101, 47, 100, 86, 99, 49, 85, 86, 49, 120, 94, 95, 120, 73, 94, 114, 91, 90, 73, 114, 90, 74, 73, 120, 114, 73, 74, 119, 120, 95, 74, 120, 119, 96, + 95, 121, 119, 95, 96, 96, 121, 122, 92, 91, 114, 115, 114, 74, 92, 114, 115, 75, 74, 119, 115, 74, 75, 118, 119, 96, 75, 119, 118, 97, 96, 122, 118, 96, 97, 123, 122, 54, 97, 122, + 123, 93, 92, 115, 116, 115, 75, 93, 115, 116, 76, 75, 118, 116, 75, 76, 117, 118, 97, 76, 118, 117, 98, 97, 123, 117, 97, 98, 124, 123, 55, 98, 123, 124, 150, 135, 93, 153, 138, 117, + 116, 150, 93, 98, 153, 117, 154, 124, 56, 154, 56, 141, 139, 98, 124, 140, 139, 124, 153, 98, 139, 152, 76, 117, 152, 117, 138, 154, 140, 124, 151, 136, 116, 150, 116, 136, 76, 151, + 116, 137, 151, 76, 152, 137, 76, 7, 154, 141, 7, 141, 6, 8, 140, 154, 8, 154, 7, 9, 139, 140, 9, 140, 8, 10, 153, 139, 10, 139, 9, 11, 138, 153, 11, 153, 10, 12, 152, 138, 12, 138, + 11, 13, 137, 152, 13, 152, 12, 14, 151, 137, 14, 137, 13, 15, 136, 151, 15, 151, 14, 16, 150, 136, 16, 136, 15, 17, 135, 150, 17, 150, 16, 124, 55, 56, 6, 141, 4, 141, 56, 4, 113, + 90, 91, 81, 80, 108, 58, 108, 57, 109, 81, 108, 82, 81, 109, 59, 108, 58, 109, 108, 59, 112, 58, 113, 59, 58, 112, 112, 113, 91, 92, 112, 91, 110, 82, 109, 83, 82, 110, 60, 109, 59, + 110, 109, 60, 111, 112, 92, 59, 112, 111, 60, 59, 111, 111, 92, 93, 146, 83, 110, 131, 83, 146, 132, 146, 110, 149, 111, 93, 149, 93, 135, 147, 110, 60, 132, 110, 147, 111, 148, 60, + 134, 111, 149, 134, 148, 111, 133, 147, 60, 148, 133, 60, 18, 134, 149, 18, 149, 135, 18, 135, 17, 19, 148, 134, 19, 134, 18, 20, 148, 19, 21, 147, 133, 20, 21, 133, 20, 133, 148, + 22, 132, 147, 22, 147, 21, 23, 146, 132, 23, 132, 22, 24, 131, 146, 24, 146, 23, 25, 131, 24, 58, 57, 113, 63, 104, 85, 86, 85, 104, 62, 63, 85, 105, 62, 80, 63, 62, 105, 81, 105, + 80, 87, 99, 86, 100, 99, 87, 103, 86, 104, 87, 86, 103, 64, 104, 63, 103, 104, 64, 106, 63, 105, 64, 63, 106, 82, 105, 81, 106, 105, 82, 88, 100, 87, 101, 100, 88, 102, 87, 103, 88, + 87, 102, 65, 103, 64, 102, 103, 65, 107, 64, 106, 65, 64, 107, 83, 106, 82, 107, 106, 83, 83, 145, 107, 128, 88, 102, 129, 102, 65, 128, 102, 129, 131, 145, 83, 142, 65, 107, 129, + 65, 142, 143, 88, 128, 130, 142, 107, 130, 107, 145, 127, 101, 88, 127, 88, 143, 126, 101, 127, 25, 145, 131, 26, 130, 145, 26, 145, 25, 27, 142, 130, 27, 130, 26, 28, 129, 142, 28, + 142, 27, 29, 128, 129, 29, 129, 28, 30, 143, 128, 30, 128, 29, 31, 127, 143, 31, 143, 30, 32, 126, 127, 32, 127, 31, 33, 144, 126, 33, 126, 32, 126, 46, 101, 34, 144, 33 + ], + "vertices": [ + 4, 39, 58.43, 20.31, 0.00012, 40, 36.09, 20.31, 0.00054, 41, 13.17, 20.31, 0.12631, 32, 43.2, 34, 0.87302, 3, 40, 39.33, 12.22, 0.00019, 41, 16.41, 12.22, 0.19743, 32, 51.06, 37.76, + 0.80237, 3, 40, 41.94, 5.69, 6e-05, 41, 19.02, 5.69, 0.26715, 32, 57.41, 40.79, 0.73278, 3, 40, 43.5, 1.06, 1e-05, 41, 20.58, 1.06, 0.33542, 32, 61.92, 42.65, 0.66457, 3, 40, 45, + -3.4, 1e-05, 41, 22.08, -3.4, 0.40033, 32, 66.27, 44.44, 0.59966, 3, 40, 46.9, -9.05, 0, 41, 23.98, -9.05, 0.45012, 32, 71.79, 46.7, 0.54988, 3, 40, 40.83, -9.07, 0, 41, 17.91, + -9.07, 0.5829, 32, 72.21, 40.65, 0.4171, 3, 40, 38.56, -9.08, 4e-05, 41, 15.64, -9.08, 0.72131, 32, 72.37, 38.38, 0.27865, 3, 40, 36.78, -9.09, 0.00031, 41, 13.86, -9.09, 0.8264, 32, + 72.49, 36.6, 0.17329, 3, 40, 33.93, -9.1, 0.00157, 41, 11, -9.1, 0.90359, 32, 72.69, 33.76, 0.09484, 3, 40, 31.22, -9.11, 0.00537, 41, 8.3, -9.11, 0.94975, 32, 72.87, 31.05, 0.04488, + 3, 40, 28.77, -9.12, 0.01601, 41, 5.85, -9.12, 0.96404, 32, 73.04, 28.61, 0.01996, 3, 40, 26.12, -9.13, 0.03803, 41, 3.2, -9.13, 0.95562, 32, 73.22, 25.97, 0.00635, 3, 40, 23.82, + -9.14, 0.08031, 41, 0.9, -9.14, 0.91597, 32, 73.38, 23.67, 0.00372, 4, 39, 43.47, -9.15, 0, 40, 21.13, -9.15, 0.14592, 41, -1.79, -9.15, 0.85165, 32, 73.57, 20.99, 0.00243, 4, 39, + 40.71, -9.16, 2e-05, 40, 18.37, -9.16, 0.23867, 41, -4.55, -9.16, 0.75671, 32, 73.76, 18.24, 0.0046, 4, 39, 37.66, -9.17, 0.00014, 40, 15.32, -9.17, 0.35275, 41, -7.6, -9.17, + 0.64256, 32, 73.97, 15.19, 0.00455, 4, 39, 35.13, -9.18, 0.00092, 40, 12.8, -9.18, 0.48034, 41, -10.13, -9.18, 0.51198, 32, 74.14, 12.68, 0.00676, 4, 39, 31.91, -9.19, 0.00375, 40, + 9.57, -9.19, 0.61095, 41, -13.35, -9.19, 0.38019, 32, 74.36, 9.46, 0.00512, 4, 39, 28.47, -9.21, 0.01298, 40, 6.13, -9.21, 0.72267, 41, -16.79, -9.21, 0.25841, 32, 74.6, 6.03, + 0.00594, 4, 39, 25.59, -9.22, 0.03422, 40, 3.25, -9.22, 0.80451, 41, -19.67, -9.22, 0.15782, 32, 74.8, 3.15, 0.00345, 4, 39, 22.68, -9.23, 0.07754, 40, 0.34, -9.23, 0.83155, 41, + -22.58, -9.23, 0.08642, 32, 75, 0.25, 0.00449, 4, 39, 19.52, -9.24, 0.14705, 40, -2.82, -9.24, 0.80991, 41, -25.74, -9.24, 0.04032, 32, 75.22, -2.9, 0.00272, 4, 39, 16.15, -9.25, + 0.24563, 40, -6.18, -9.25, 0.73344, 41, -29.11, -9.25, 0.01645, 32, 75.45, -6.26, 0.00448, 4, 39, 13.09, -9.27, 0.36774, 40, -9.24, -9.27, 0.62371, 41, -32.17, -9.27, 0.00512, 32, + 75.66, -9.31, 0.00344, 4, 39, 10.21, -9.28, 0.50372, 40, -12.13, -9.28, 0.49001, 41, -35.05, -9.28, 0.00135, 32, 75.86, -12.19, 0.00491, 4, 39, 7.08, -9.29, 0.64487, 40, -15.26, + -9.29, 0.35177, 41, -38.18, -9.29, 0.00021, 32, 76.08, -15.32, 0.00314, 4, 39, 3.26, -9.3, 0.77, 40, -19.08, -9.3, 0.22651, 41, -42, -9.3, 3e-05, 32, 76.34, -19.12, 0.00346, 4, 39, + -0.32, -9.32, 0.87272, 40, -22.66, -9.32, 0.1254, 41, -45.58, -9.32, 0, 32, 76.59, -22.69, 0.00188, 3, 39, -3.57, -9.33, 0.9351, 40, -25.91, -9.33, 0.0605, 32, 76.81, -25.94, 0.0044, + 3, 39, -7.54, -9.35, 0.96153, 40, -29.88, -9.35, 0.02278, 32, 77.09, -29.9, 0.01569, 3, 39, -9.85, -9.35, 0.93655, 40, -32.19, -9.35, 0.00657, 32, 77.24, -32.21, 0.05688, 3, 39, + -11.87, -9.36, 0.83576, 40, -34.2, -9.36, 0.00151, 32, 77.38, -34.21, 0.16273, 3, 39, -14.74, -9.37, 0.65143, 40, -37.08, -9.37, 0.00023, 32, 77.58, -37.08, 0.34834, 3, 39, -16.89, + -9.38, 0.4382, 40, -39.23, -9.38, 2e-05, 32, 77.73, -39.23, 0.56178, 3, 39, -18.76, -9.39, 0.27507, 40, -41.1, -9.39, 0, 32, 77.86, -41.09, 0.72493, 3, 39, -18.76, -2.89, 0.21414, + 40, -41.1, -2.89, 2e-05, 32, 71.37, -41.51, 0.78584, 3, 39, -18.76, 1.38, 0.19077, 40, -41.1, 1.38, 0.00024, 32, 67.11, -41.79, 0.80899, 3, 39, -18.76, 7.5, 0.1765, 40, -41.1, 7.5, + 0.00116, 32, 61.01, -42.19, 0.82235, 4, 39, -16.28, 11.88, 0.15382, 40, -38.62, 11.88, 0.00307, 41, -61.54, 11.88, 1e-05, 32, 56.48, -40, 0.84309, 4, 39, -11.9, 19.61, 0.11079, 40, + -34.24, 19.61, 0.0029, 41, -57.16, 19.61, 0.00014, 32, 48.48, -36.13, 0.88617, 4, 39, 14.63, 66.47, 0.04584, 40, -7.7, 66.47, 0.00083, 41, -30.63, 66.47, 0.00037, 32, -0.01, -12.7, + 0.95296, 4, 39, 22.29, 66.47, 0.02247, 40, -0.04, 66.47, 0.00083, 41, -22.97, 66.47, 0.00288, 32, -0.51, -5.06, 0.97382, 4, 39, 27.54, 66.47, 0.01007, 40, 5.2, 66.47, 0.00155, 41, + -17.72, 66.47, 0.0104, 32, -0.85, 0.17, 0.97798, 4, 39, 34.04, 66.47, 0.00272, 40, 11.7, 66.47, 0.00045, 41, -11.22, 66.47, 0.02285, 32, -1.28, 6.66, 0.97398, 4, 39, 39.96, 66.47, + 0.00033, 40, 17.62, 66.47, 0.00011, 41, -5.3, 66.47, 0.0498, 32, -1.66, 12.57, 0.94976, 3, 39, -16.24, -2.91, 0.33437, 40, -38.58, -2.91, 0.0002, 32, 71.23, -39, 0.66543, 3, 39, + -14.53, 1.37, 0.32645, 40, -36.87, 1.37, 0.00078, 32, 66.85, -37.57, 0.67277, 4, 39, -12.36, 7.36, 0.307, 40, -34.7, 7.36, 0.00285, 41, -57.62, 7.36, 1e-05, 32, 60.73, -35.79, + 0.69014, 4, 39, -9.97, 11.91, 0.26477, 40, -32.31, 11.91, 0.00971, 41, -55.23, 11.91, 0.00027, 32, 56.04, -33.7, 0.72525, 4, 39, -6.21, 19.66, 0.19881, 40, -28.55, 19.66, 0.00959, + 41, -51.47, 19.66, 0.00132, 32, 48.05, -30.46, 0.79028, 4, 39, 24.46, 19.97, 0.10712, 40, 2.12, 19.97, 0.11704, 41, -20.8, 19.97, 0.11672, 32, 45.75, 0.12, 0.65912, 4, 39, 53.97, + 20.27, 0.00116, 40, 31.63, 20.27, 0.00313, 41, 8.71, 20.27, 0.2148, 32, 43.53, 29.55, 0.7809, 4, 39, 57.02, 12.2, 0.0001, 40, 34.68, 12.2, 0.00083, 41, 11.76, 12.2, 0.29942, 32, + 51.38, 33.12, 0.69965, 3, 40, 36.75, 5.8, 0.00034, 41, 13.82, 5.8, 0.378, 32, 57.63, 35.6, 0.62166, 3, 40, 38.1, 1.08, 0.00022, 41, 15.18, 1.08, 0.45653, 32, 62.25, 37.26, 0.54325, + 3, 40, 39.36, -3.36, 0.00015, 41, 16.43, -3.36, 0.53433, 32, 66.61, 38.8, 0.46552, 4, 39, 23.97, 12.06, 0.12565, 40, 1.63, 12.06, 0.24275, 41, -21.29, 12.06, 0.14114, 32, 53.68, + 0.15, 0.49046, 4, 39, 23.54, 6.58, 0.11007, 40, 1.2, 6.58, 0.47217, 41, -21.72, 6.58, 0.12893, 32, 59.17, 0.08, 0.28883, 4, 39, 23.28, 1.22, 0.10884, 40, 0.94, 1.22, 0.60558, 41, + -21.98, 1.22, 0.12698, 32, 64.53, 0.17, 0.1586, 4, 39, 23.11, -3.14, 0.10666, 40, 0.77, -3.14, 0.70334, 41, -22.15, -3.14, 0.12133, 32, 68.89, 0.28, 0.06866, 4, 39, 6.87, 19.8, + 0.29773, 40, -15.47, 19.8, 0.06022, 41, -38.39, 19.8, 0.01488, 32, 47.07, -17.41, 0.62717, 4, 39, 3.75, 11.97, 0.44072, 40, -18.59, 11.97, 0.09602, 41, -41.51, 11.97, 0.01064, 32, + 55.08, -20.02, 0.45261, 4, 39, 1.91, 7.05, 0.66419, 40, -20.42, 7.05, 0.11803, 41, -43.35, 7.05, 0.002, 32, 60.11, -21.53, 0.21579, 4, 39, 0.03, 1.31, 0.77187, 40, -22.31, 1.31, + 0.12352, 41, -45.23, 1.31, 0.00043, 32, 65.96, -23.04, 0.10418, 4, 39, -1.27, -2.99, 0.84303, 40, -23.61, -2.99, 0.11246, 41, -46.53, -2.99, 0.00018, 32, 70.34, -24.05, 0.04432, 4, + 39, -1.8, 26.91, 0.12744, 40, -24.14, 26.91, 0.00959, 41, -47.06, 26.91, 0.0076, 32, 40.54, -26.53, 0.85537, 4, 39, 24.96, 27.56, 0.0719, 40, 2.62, 27.56, 0.03639, 41, -20.3, 27.56, + 0.07572, 32, 38.14, 0.13, 0.81598, 4, 39, 50.76, 27.7, 0.00702, 40, 28.42, 27.7, 0.00523, 41, 5.5, 27.7, 0.131, 32, 36.32, 25.87, 0.85675, 4, 39, 3.83, 36.15, 0.04791, 40, -18.51, + 36.15, 0.00352, 41, -41.43, 36.15, 0.00803, 32, 30.95, -21.51, 0.94054, 4, 39, 25.65, 37.95, 0.02662, 40, 3.31, 37.95, 0.00775, 41, -19.61, 37.95, 0.02767, 32, 27.73, 0.14, 0.93795, + 4, 39, 46.64, 37.25, 0.00753, 40, 24.3, 37.25, 0.00227, 41, 1.38, 37.25, 0.04846, 32, 27.06, 21.14, 0.94174, 4, 39, 41.75, 20.15, 0.01306, 40, 19.41, 20.15, 0.04509, 41, -3.51, + 20.15, 0.32134, 32, 44.45, 17.37, 0.62052, 4, 39, 43.25, 12.14, 0.00895, 40, 20.91, 12.14, 0.07841, 41, -2.01, 12.14, 0.49568, 32, 52.34, 19.39, 0.41696, 4, 39, 44.35, 6.12, 0.0015, + 40, 22.01, 6.12, 0.09572, 41, -0.91, 6.12, 0.67014, 32, 58.27, 20.88, 0.23264, 4, 39, 45.08, 1.14, 0.00025, 40, 22.74, 1.14, 0.108, 41, -0.18, 1.14, 0.76841, 32, 63.2, 21.93, + 0.12334, 4, 39, 45.58, -3.27, 0.0001, 40, 23.24, -3.27, 0.10937, 41, 0.32, -3.27, 0.83473, 32, 67.56, 22.71, 0.0558, 4, 39, 40.33, 27.64, 0.02381, 40, 18, 27.64, 0.02132, 41, -4.93, + 27.64, 0.16866, 32, 37.06, 15.47, 0.78621, 4, 39, 9.71, 27.19, 0.16236, 40, -12.63, 27.19, 0.02827, 41, -35.55, 27.19, 0.02548, 32, 39.51, -15.06, 0.78388, 4, 39, 15.01, 19.88, + 0.23124, 40, -7.33, 19.88, 0.11759, 41, -30.25, 19.88, 0.04679, 32, 46.46, -9.29, 0.60438, 4, 39, 13.78, 12.01, 0.29354, 40, -8.56, 12.01, 0.19873, 41, -31.48, 12.01, 0.04427, 32, + 54.39, -10.01, 0.46346, 4, 39, 12.95, 6.81, 0.37869, 40, -9.39, 6.81, 0.34588, 41, -32.31, 6.81, 0.01968, 32, 59.63, -10.5, 0.25575, 4, 39, 11.95, 1.27, 0.42861, 40, -10.39, 1.27, + 0.42317, 41, -33.31, 1.27, 0.01297, 32, 65.23, -11.14, 0.13524, 4, 39, 11.29, -3.07, 0.46725, 40, -11.05, -3.07, 0.46538, 41, -33.97, -3.07, 0.0097, 32, 69.59, -11.51, 0.05768, 4, + 39, -0.59, 19.72, 0.32338, 40, -22.92, 19.72, 0.02881, 41, -45.85, 19.72, 0.003, 32, 47.63, -24.85, 0.64481, 4, 39, -3.82, 11.93, 0.4391, 40, -26.16, 11.93, 0.03345, 41, -49.08, + 11.93, 0.00177, 32, 55.61, -27.57, 0.52567, 4, 39, -5.89, 7.22, 0.65491, 40, -28.23, 7.22, 0.02015, 41, -51.15, 7.22, 0.00017, 32, 60.45, -29.33, 0.32476, 4, 39, -8.13, 1.34, + 0.75275, 40, -30.47, 1.34, 0.01396, 41, -53.39, 1.34, 1e-05, 32, 66.46, -31.18, 0.23328, 3, 39, -9.63, -2.94, 0.80478, 40, -31.96, -2.94, 0.00944, 32, 70.83, -32.39, 0.18578, 4, 39, + 33.3, 20.06, 0.04166, 40, 10.96, 20.06, 0.10286, 41, -11.96, 20.06, 0.24857, 32, 45.08, 8.94, 0.60691, 4, 39, 33.97, 12.1, 0.03817, 40, 11.63, 12.1, 0.17811, 41, -11.29, 12.1, + 0.32257, 32, 52.98, 10.13, 0.46115, 4, 39, 34.3, 6.34, 0.01531, 40, 11.97, 6.34, 0.31162, 41, -10.96, 6.34, 0.40881, 32, 58.71, 10.84, 0.26426, 4, 39, 34.72, 1.18, 0.00955, 40, + 12.39, 1.18, 0.39036, 41, -10.54, 1.18, 0.4561, 32, 63.83, 11.59, 0.14399, 4, 39, 34.8, -3.2, 0.00731, 40, 12.46, -3.2, 0.44195, 41, -10.46, -3.2, 0.48699, 32, 68.2, 11.96, 0.06375, + 4, 39, 48.21, 20.21, 0.00241, 40, 25.88, 20.21, 0.01421, 41, 2.95, 20.21, 0.36275, 32, 43.96, 23.82, 0.62063, 4, 39, 50.54, 12.17, 0.00034, 40, 28.2, 12.17, 0.01068, 41, 5.28, 12.17, + 0.5453, 32, 51.83, 26.66, 0.44368, 4, 39, 52.52, 5.95, 2e-05, 40, 30.19, 5.95, 0.00999, 41, 7.26, 5.95, 0.66888, 32, 57.92, 29.04, 0.32111, 3, 40, 31.52, 1.11, 0.01011, 41, 8.6, + 1.11, 0.76268, 32, 62.66, 30.7, 0.22721, 3, 40, 32.61, -3.32, 0.00863, 41, 9.68, -3.32, 0.83296, 32, 67.01, 32.06, 0.15841, 4, 39, -9.21, 7.29, 0.52586, 40, -31.55, 7.29, 0.0057, 41, + -54.47, 7.29, 1e-05, 32, 60.59, -32.65, 0.46842, 3, 39, -11.3, 1.36, 0.56698, 40, -33.64, 1.36, 0.00311, 32, 66.65, -34.34, 0.42991, 3, 39, -12.66, -2.93, 0.60013, 40, -35, -2.93, + 0.00167, 32, 71.01, -35.42, 0.39821, 4, 39, -5.46, -2.97, 0.89102, 40, -27.8, -2.97, 0.03888, 41, -50.72, -2.97, 1e-05, 32, 70.59, -28.24, 0.07008, 4, 39, -4.18, 1.33, 0.83362, 40, + -26.52, 1.33, 0.04645, 41, -49.44, 1.33, 3e-05, 32, 66.21, -27.24, 0.1199, 4, 39, -2.26, 7.14, 0.75973, 40, -24.6, 7.14, 0.05134, 41, -47.52, 7.14, 0.00026, 32, 60.29, -25.7, + 0.18867, 4, 39, 7.35, 6.93, 0.57235, 40, -14.98, 6.93, 0.23863, 41, -37.91, 6.93, 0.00435, 32, 59.87, -16.09, 0.18467, 4, 39, 5.9, 1.29, 0.63011, 40, -16.44, 1.29, 0.25936, 41, + -39.36, 1.29, 0.00243, 32, 65.6, -17.18, 0.1081, 4, 39, 4.86, -3.03, 0.68809, 40, -17.48, -3.03, 0.26358, 41, -40.4, -3.03, 0.00168, 32, 69.98, -17.93, 0.04665, 4, 39, 17.76, 6.7, + 0.22941, 40, -4.58, 6.7, 0.4879, 41, -27.5, 6.7, 0.05094, 32, 59.42, -5.7, 0.23175, 4, 39, 17.11, 1.25, 0.24296, 40, -5.23, 1.25, 0.56856, 41, -28.15, 1.25, 0.04581, 32, 64.91, + -5.99, 0.14267, 4, 39, 16.71, -3.1, 0.25552, 40, -5.62, -3.1, 0.64168, 41, -28.55, -3.1, 0.03992, 32, 69.27, -6.1, 0.06288, 4, 39, 28.55, -3.17, 0.03276, 40, 6.22, -3.17, 0.62363, + 41, -16.71, -3.17, 0.27658, 32, 68.57, 5.72, 0.06703, 4, 39, 28.55, 1.2, 0.0367, 40, 6.21, 1.21, 0.54514, 41, -16.71, 1.21, 0.26974, 32, 64.21, 5.43, 0.14843, 4, 39, 28.71, 6.47, + 0.04075, 40, 6.37, 6.47, 0.46337, 41, -16.55, 6.47, 0.25797, 32, 58.95, 5.25, 0.23791, 4, 39, 39.28, 6.23, 0.00305, 40, 16.94, 6.24, 0.20572, 41, -5.98, 6.24, 0.59307, 32, 58.49, + 15.81, 0.19817, 4, 39, 39.51, 1.16, 0.00156, 40, 17.17, 1.16, 0.23228, 41, -5.75, 1.16, 0.64631, 32, 63.54, 16.37, 0.11984, 4, 39, 40.07, -3.24, 0.00112, 40, 17.74, -3.24, 0.25061, + 41, -5.19, -3.24, 0.69415, 32, 67.89, 17.22, 0.05412, 4, 39, 50.23, -3.29, 0, 40, 27.89, -3.29, 0.036, 41, 4.97, -3.29, 0.88144, 32, 67.29, 27.36, 0.08255, 4, 39, 49.51, 1.13, 2e-05, + 40, 27.17, 1.13, 0.03826, 41, 4.25, 1.13, 0.81357, 32, 62.92, 26.35, 0.14816, 4, 39, 48.55, 6.03, 0.00027, 40, 26.22, 6.03, 0.03577, 41, 3.29, 6.03, 0.72045, 32, 58.09, 25.08, + 0.24351, 4, 39, 47.11, 12.16, 0.00156, 40, 24.77, 12.16, 0.03311, 41, 1.85, 12.16, 0.61234, 32, 52.07, 23.24, 0.35299, 4, 39, 53.99, 12.19, 1e-05, 40, 31.66, 12.19, 0.00266, 41, + 8.73, 12.19, 0.47035, 32, 51.59, 30.11, 0.52698, 3, 40, 33.02, 5.88, 0.00213, 41, 10.1, 5.88, 0.54797, 32, 57.79, 31.88, 0.4499, 3, 40, 34.54, 1.1, 0.0018, 41, 11.62, 1.1, 0.63247, + 32, 62.47, 33.7, 0.36573, 3, 40, 35.58, -3.34, 0.00152, 41, 12.66, -3.34, 0.71351, 32, 66.83, 35.03, 0.28497, 3, 39, -17.72, -6.71, 0.31251, 40, -40.05, -6.71, 1e-05, 32, 75.11, + -40.22, 0.68748, 3, 39, -13.83, -6.56, 0.64755, 40, -36.17, -6.56, 0.00038, 32, 74.72, -36.36, 0.35207, 3, 39, -10.89, -6.57, 0.83546, 40, -33.23, -6.57, 0.00245, 32, 74.53, -33.42, + 0.1621, 3, 39, -6.58, -6.39, 0.9505, 40, -28.91, -6.39, 0.02598, 32, 74.07, -29.13, 0.02352, 4, 39, -2.51, -6.41, 0.9185, 40, -24.85, -6.41, 0.06986, 41, -47.77, -6.41, 1e-05, 32, + 73.83, -25.07, 0.01163, 4, 39, 3.97, -6.54, 0.7539, 40, -18.37, -6.54, 0.23416, 41, -41.29, -6.54, 0.00019, 32, 73.54, -18.6, 0.01175, 4, 39, 10.73, -6.3, 0.4945, 40, -11.61, -6.29, + 0.48778, 41, -34.53, -6.29, 0.00242, 32, 72.85, -11.87, 0.01529, 4, 39, 16.42, -6.31, 0.24467, 40, -5.92, -6.31, 0.71967, 41, -28.84, -6.31, 0.01969, 32, 72.5, -6.18, 0.01597, 4, 39, + 22.88, -6.46, 0.08074, 40, 0.54, -6.46, 0.81091, 41, -22.38, -6.46, 0.09131, 32, 72.22, 0.27, 0.01704, 4, 39, 28.51, -6.42, 0.01543, 40, 6.17, -6.42, 0.70591, 41, -16.75, -6.42, + 0.26031, 32, 71.82, 5.89, 0.01836, 4, 39, 34.97, -6.29, 0.00164, 40, 12.64, -6.29, 0.47309, 41, -10.29, -6.29, 0.50689, 32, 71.27, 12.33, 0.01837, 4, 39, 40.42, -6.47, 0.0001, 40, + 18.08, -6.47, 0.23958, 41, -4.84, -6.47, 0.7461, 32, 71.1, 17.78, 0.01421, 4, 39, 45.89, -6.5, 0, 40, 23.56, -6.5, 0.08431, 41, 0.63, -6.5, 0.9025, 32, 70.76, 23.24, 0.01319, 3, 40, + 28.36, -6.37, 0.01867, 41, 5.43, -6.37, 0.94991, 32, 70.33, 28.02, 0.03142, 3, 40, 33.31, -6.41, 0.00244, 41, 10.39, -6.41, 0.88788, 32, 70.05, 32.97, 0.10968, 3, 40, 36.23, -6.46, + 0.00046, 41, 13.31, -6.46, 0.80558, 32, 69.91, 35.88, 0.19395, 3, 40, 40.12, -6.31, 1e-05, 41, 17.2, -6.31, 0.61334, 32, 69.5, 39.76, 0.38665, 4, 39, 0.4, -6.47, 0.86555, 40, -21.94, + -6.47, 0.12959, 41, -44.86, -6.47, 1e-05, 32, 73.7, -22.16, 0.00485, 3, 39, -9.01, -6.49, 0.93616, 40, -31.35, -6.49, 0.00716, 32, 74.33, -31.55, 0.05668, 3, 39, -16.19, -6.65, + 0.44814, 40, -38.53, -6.65, 3e-05, 32, 74.96, -38.7, 0.55184, 4, 39, 7.48, -6.41, 0.63866, 40, -14.86, -6.41, 0.354, 41, -37.78, -6.41, 0.00037, 32, 73.18, -15.1, 0.00698, 4, 39, + 13.4, -6.3, 0.36468, 40, -8.94, -6.3, 0.62161, 41, -31.86, -6.3, 0.00581, 32, 72.69, -9.2, 0.0079, 4, 39, 19.68, -6.38, 0.14684, 40, -2.65, -6.38, 0.80383, 41, -25.58, -6.38, + 0.04176, 32, 72.36, -2.92, 0.00757, 4, 39, 25.54, -6.44, 0.03499, 40, 3.2, -6.44, 0.79745, 41, -19.72, -6.44, 0.15898, 32, 72.03, 2.92, 0.00858, 4, 39, 31.96, -6.35, 0.00417, 40, + 9.62, -6.35, 0.60634, 41, -13.3, -6.35, 0.37927, 32, 71.53, 9.32, 0.01022, 4, 39, 37.62, -6.38, 0.00021, 40, 15.28, -6.38, 0.35157, 41, -7.64, -6.38, 0.63918, 32, 71.18, 14.97, + 0.00904, 4, 39, 43.32, -6.48, 1e-05, 40, 20.98, -6.48, 0.14688, 41, -1.94, -6.48, 0.84692, 32, 70.92, 20.67, 0.00619, 3, 40, 25.81, -6.44, 0.03919, 41, 2.89, -6.44, 0.95006, 32, + 70.56, 25.48, 0.01074, 3, 40, 30.92, -6.39, 0.00591, 41, 7.99, -6.39, 0.9433, 32, 70.18, 30.58, 0.05079, 3, 40, 38.04, -6.39, 5e-05, 41, 15.12, -6.39, 0.72615, 32, 69.72, 37.69, + 0.2738 + ], + "hull": 46, + "edges": [ + 80, 82, 90, 0, 10, 8, 70, 72, 72, 74, 74, 76, 4, 6, 6, 8, 76, 78, 78, 80, 4, 2, 2, 0, 72, 92, 74, 94, 92, 94, 76, 96, 94, 96, 78, 98, 96, 98, 80, 100, 98, 100, 82, 84, 84, 86, 86, + 88, 88, 90, 0, 104, 2, 106, 104, 106, 4, 108, 106, 108, 6, 110, 108, 110, 8, 112, 110, 112, 10, 12, 102, 114, 114, 116, 116, 118, 118, 120, 122, 124, 124, 126, 126, 128, 128, 130, + 132, 100, 134, 102, 136, 104, 84, 138, 138, 132, 86, 140, 140, 134, 138, 140, 88, 142, 142, 136, 140, 142, 144, 146, 146, 148, 148, 150, 150, 152, 134, 154, 154, 136, 144, 154, 132, + 156, 156, 134, 122, 156, 102, 158, 158, 122, 114, 160, 160, 124, 158, 160, 160, 162, 162, 164, 164, 166, 100, 168, 168, 122, 98, 170, 170, 124, 168, 170, 170, 172, 172, 174, 174, + 176, 102, 178, 178, 144, 114, 180, 180, 146, 178, 180, 180, 182, 182, 184, 184, 186, 104, 188, 188, 144, 188, 190, 190, 192, 192, 194, 194, 196, 96, 198, 198, 172, 94, 200, 200, 174, + 198, 200, 92, 202, 202, 176, 200, 202, 64, 66, 58, 60, 130, 204, 204, 176, 128, 206, 206, 174, 204, 206, 126, 208, 208, 172, 206, 208, 126, 210, 210, 162, 128, 212, 212, 164, 210, + 212, 130, 214, 214, 166, 212, 214, 116, 216, 216, 162, 118, 218, 218, 164, 216, 218, 120, 220, 220, 166, 218, 220, 120, 222, 222, 186, 118, 224, 224, 184, 222, 224, 116, 226, 226, + 182, 224, 226, 148, 228, 228, 182, 150, 230, 230, 184, 228, 230, 152, 232, 232, 186, 230, 232, 152, 234, 234, 196, 150, 236, 236, 194, 234, 236, 148, 238, 238, 192, 236, 238, 146, + 240, 240, 190, 238, 240, 106, 242, 242, 190, 108, 244, 244, 192, 242, 244, 110, 246, 246, 194, 244, 246, 112, 248, 248, 196, 246, 248, 16, 18, 70, 250, 250, 92, 66, 252, 252, 202, + 64, 254, 254, 176, 252, 254, 60, 256, 256, 204, 58, 258, 258, 130, 256, 258, 54, 260, 260, 214, 50, 262, 262, 166, 46, 264, 264, 220, 42, 266, 266, 120, 38, 268, 268, 222, 34, 270, + 270, 186, 30, 272, 272, 232, 26, 274, 274, 152, 22, 276, 276, 234, 18, 278, 278, 196, 16, 280, 280, 248, 278, 280, 12, 282, 282, 112, 258, 284, 284, 260, 54, 56, 56, 58, 284, 56, + 254, 286, 286, 256, 60, 62, 62, 64, 286, 62, 250, 288, 288, 252, 66, 68, 68, 70, 288, 68, 260, 290, 290, 262, 50, 52, 52, 54, 290, 52, 262, 292, 292, 264, 46, 48, 48, 50, 292, 48, + 264, 294, 294, 266, 42, 44, 44, 46, 294, 44, 266, 296, 296, 268, 38, 40, 40, 42, 296, 40, 268, 298, 298, 270, 34, 36, 36, 38, 298, 36, 270, 300, 300, 272, 30, 32, 32, 34, 300, 32, + 272, 302, 302, 274, 26, 28, 28, 30, 302, 28, 274, 304, 304, 276, 22, 24, 24, 26, 304, 24, 276, 306, 306, 278, 18, 20, 20, 22, 306, 20, 280, 308, 308, 282, 12, 14, 14, 16, 308, 14 + ], + "width": 87.05882352941177, + "height": 80.0, + "path": "summer-a.ear-left-bubble", + "x": 0.470588235294116, + "y": 0.0 + } }, - "horn": {"horn": {"x": 67.54, "y": -28.85, "rotation": -90, "width": 243, "height": 183, "path": "bird-mystic-02.horn"}}, - "mouth": { - "mouth": {"x": 4.85, "y": 40.04, "width": 103, "height": 178, "path": "bird-mystic-02.mouth"}, - "mouth-bite": {"x": 7.35, "y": 40.04, "width": 140, "height": 178, "path": "bird-mystic-02.mouth-bite"}, - "mouth-open": {"x": 4.85, "y": 35.54, "width": 105, "height": 219, "path": "bird-mystic-02.mouth-open"}, - "mouth-smile": {"x": 6.85, "y": 40.04, "width": 125, "height": 178, "path": "bird-mystic-02.mouth-smile"} - }, - "mouth-accessory": {"mouth-accessory": {"x": -52.68, "y": 4.39, "width": 118, "height": 118, "path": "bird-mystic-02.mouth-accessory"}}, - "mouth-blink": {"mouth-smile-blink": {"x": -0.12, "y": -1.32, "width": 37, "height": 36, "path": "bird-mystic-02.mouth-smile-blink"}}, - "tail": {"tail": {"x": 136.57, "y": -13.48, "rotation": -45, "width": 246, "height": 206, "path": "bird-mystic-02.tail"}} - } - } - ], - "events": {"hit": {}, "hit-buff": {}, "jump": {}, "start-attack": {}}, - "keyAnimations": { - "activity/appear": "1023093953", - "activity/bath": "3305387968", - "attack/ranged/cast-fly": "4180526371", - "attack/ranged/cast-high": "164191126", - "attack/ranged/cast-low": "198813017", - "attack/ranged/cast-multi": "151119", - "attack/ranged/cast-tail": "3899988824", - "activity/eat-bite": "1137807767", - "activity/eat-chew": "1988236421", - "activity/entrance": "3768378365", - "defense/evade": "1735454995", - "activity/evolve": "649307630", - "battle/get-buff": "1455190363", - "battle/get-debuff": "606904312", - "defense/hit-by-normal": "2045974966", - "defense/hit-by-normal-crit": "2130010601", - "defense/hit-by-normal-dramatic": "3823092125", - "defense/hit-by-ranged-attack": "2224561612", - "defense/hit-with-shield": "390714790", - "attack/melee/horn-gore": "1327954218", - "attack/melee/mouth-bite": "2237748264", - "action/move-back": "3766271173", - "action/move-forward": "2945160014", - "attack/melee/multi-attack": "3861365989", - "action/idle/normal": "2717938682", - "attack/melee/normal-attack": "3305373483", - "activity/prepare": "405864717", - "action/idle/random-01": "554401889", - "action/idle/random-02": "3888196768", - "action/idle/random-03": "2021333900", - "action/idle/random-04": "1003789695", - "action/idle/random-05": "2745614147", - "action/run": "3858829480", - "draft/run-origin": "3947527336", - "attack/melee/shrimp": "3833448733", - "activity/sleep": "100562494", - "attack/melee/tail-multi-slap": "3317139533", - "attack/melee/tail-roll": "3108617565", - "attack/melee/tail-smash": "519942130", - "attack/melee/tail-thrash": "628713175", - "activity/victory-pose-back-flip": "2227634241" - } - }, - "plant-12": { - "bones": [ - {"name": "@root"}, {"name": "@pivot-main", "parent": "@root"}, {"name": "@pivot-back", "parent": "@pivot-main", "x": 205, "y": 180, "color": "ff0101ff"}, - {"name": "@pivot-center", "parent": "@pivot-back", "x": -215.11, "y": -5.25, "color": "ff0101ff"}, - {"name": "@axie", "parent": "@pivot-center", "length": 213.28, "rotation": 179.04, "x": 196.39, "y": 5.16}, {"name": "@back", "parent": "@axie", "rotation": -179.04, "x": 37.63, "y": -198.19}, - {"name": "back", "parent": "@back", "length": 149.41, "rotation": 58, "x": -56.97, "y": 31.3, "transform": "noScale"}, - {"name": "@body", "parent": "@axie", "length": 226.28, "rotation": -8.35, "x": 224.58, "y": -0.53}, {"name": "@ear-left", "parent": "@axie", "rotation": -179.04, "x": 112.7, "y": -203.23}, - {"name": "ear-left", "parent": "@ear-left", "length": 113.61, "rotation": 90, "x": 5, "y": 19, "transform": "noScale"}, - {"name": "@ear-right", "parent": "@axie", "rotation": -179.04, "x": 405.28, "y": -235.33}, - {"name": "ear-right", "parent": "@ear-right", "length": 119.39, "rotation": 93, "x": -50, "y": -20, "transform": "noScale"}, - {"name": "@eyes", "parent": "@axie", "rotation": -179.04, "x": 384.24, "y": -113.67}, {"name": "@horn", "parent": "@axie", "rotation": -179.04, "x": 327.92, "y": -214.63}, - {"name": "horn", "parent": "@horn", "length": 176.72, "rotation": 90, "y": 18, "transform": "noScale"}, - {"name": "@leg-back-left", "parent": "@axie", "length": 76.4, "rotation": 100.96, "x": -15.3, "y": 102.56, "transform": "noScale"}, - {"name": "@leg-front-left", "parent": "@axie", "length": 51.19, "rotation": 93.86, "x": 134.77, "y": 149.55, "transform": "noScale"}, - {"name": "@leg-front-right", "parent": "@axie", "length": 74.83, "rotation": 83.2, "x": 382.95, "y": 121.78, "transform": "noScale"}, - {"name": "@mouth", "parent": "@axie", "rotation": -179.04, "x": 382.23, "y": 6.31}, - {"name": "body-pattern", "parent": "@body", "rotation": -170.69, "x": -267.21, "y": -49.4, "transform": "noScale"}, {"name": "@shadow", "parent": "@root", "color": "e6d713ff"}, - {"name": "@tail", "parent": "@axie", "rotation": -179.04, "x": -11.76, "y": 61.72}, - {"name": "tail", "parent": "@tail", "length": 203.67, "rotation": 28, "x": 28, "y": -13, "transform": "noScale"}, - {"name": "leg-front-right-IK", "parent": "@pivot-main", "x": -195.99, "y": -10.21, "color": "ff3f00ff"}, - {"name": "leg-front-left-IK", "parent": "@pivot-main", "x": 42.3, "y": -18.42, "color": "ff3f00ff"}, - {"name": "leg-back-left-IK", "parent": "@pivot-main", "x": 208.57, "y": 1.35, "color": "ff3f00ff"}, {"name": "@ball", "parent": "@root", "y": 191, "color": "f3981bff"}, - {"name": "ball", "parent": "@ball", "y": -191, "color": "f4a729ff"} - ], - "slots": [ - {"name": "shadow", "bone": "@shadow", "attachment": "shadow"}, {"name": "ball", "bone": "ball"}, {"name": "leg-front-right", "bone": "@leg-front-right", "attachment": "leg-front-right"}, - {"name": "ear-right", "bone": "ear-right", "attachment": "ear-right"}, {"name": "tail", "bone": "tail", "attachment": "tail"}, {"name": "back", "bone": "back", "attachment": "back"}, - {"name": "leg-back-left", "bone": "@leg-back-left", "attachment": "leg-back-left"}, {"name": "body", "bone": "@body", "attachment": "body"}, {"name": "body-pattern", "bone": "body-pattern"}, - {"name": "leg-front-left", "bone": "@leg-front-left", "attachment": "leg-front-left"}, {"name": "eyes", "bone": "@eyes", "attachment": "eyes"}, - {"name": "mouth", "bone": "@mouth", "attachment": "mouth"}, {"name": "ear-left", "bone": "ear-left", "attachment": "ear-left"}, {"name": "horn", "bone": "horn", "attachment": "horn"} - ], - "ik": [ - {"name": "leg-back-left-IK", "order": 2, "bones": ["@leg-back-left"], "target": "leg-back-left-IK"}, - {"name": "leg-front-left-IK", "order": 1, "bones": ["@leg-front-left"], "target": "leg-front-left-IK"}, - {"name": "leg-front-right-IK", "bones": ["@leg-front-right"], "target": "leg-front-right-IK"} - ], - "skins": [ - { - "name": "default", - "attachments": { - "back": {"back": {"x": 75.6, "y": -19.11, "rotation": -58, "width": 390, "height": 311, "path": "plant-12.back"}}, - "ear-left": {"ear-left": {"x": -35.14, "y": -2.27, "rotation": -90, "width": 175, "height": 149, "path": "plant-12.ear-left"}}, - "ear-right": {"ear-right": {"x": -29.23, "y": 53.84, "rotation": -93, "width": 137, "height": 137, "path": "plant-12.ear-right"}}, - "eyes": { - "eyes": {"x": 29.54, "y": 27.4, "width": 333, "height": 159, "path": "plant-12.eyes"}, - "eyes-angry": {"x": 33.04, "y": 27.4, "width": 340, "height": 159, "path": "plant-12.eyes-angry"}, - "eyes-happy": {"x": 33.04, "y": 27.4, "width": 340, "height": 159, "path": "plant-12.eyes-happy"}, - "eyes-shut": {"x": 33.04, "y": 27.4, "width": 340, "height": 159, "path": "plant-12.eyes-shut"} + "ear-left-bubble-02": { + "ear-left-bubble": { + "type": "mesh", + "uvs": [ + 0.87714, 0.57697, 0.91393, 0.67811, 0.94364, 0.75977, 0.96133, 0.8176, 0.97838, 0.87333, 1, 0.94398, 0.93104, 0.94427, 0.90524, 0.94438, 0.88494, 0.94447, 0.85255, 0.94461, 0.82176, + 0.94474, 0.79396, 0.94486, 0.76382, 0.94499, 0.73767, 0.9451, 0.70713, 0.94523, 0.67579, 0.94536, 0.64108, 0.94551, 0.61244, 0.94564, 0.5758, 0.94579, 0.5367, 0.94596, 0.50394, + 0.9461, 0.47091, 0.94624, 0.435, 0.94639, 0.39675, 0.94656, 0.36198, 0.94671, 0.32916, 0.94685, 0.29359, 0.947, 0.25022, 0.94718, 0.20956, 0.94736, 0.17261, 0.94751, 0.12749, + 0.94771, 0.1012, 0.94782, 0.07834, 0.94792, 0.0457, 0.94806, 0.02123, 0.94816, 0, 0.94825, 0, 0.86703, 0, 0.81359, 0, 0.73715, 0.02817, 0.68242, 0.07791, 0.5858, 0.37947, 0, 0.46651, + 0, 0.5261, 0, 0.59994, 0, 0.66726, 0, 0.02864, 0.86721, 0.04805, 0.81379, 0.07275, 0.7389, 0.0999, 0.68207, 0.14259, 0.58508, 0.49108, 0.58123, 0.82646, 0.57753, 0.86109, 0.67837, + 0.88458, 0.75835, 0.90003, 0.81734, 0.91424, 0.87292, 0.48557, 0.6802, 0.48069, 0.74867, 0.47772, 0.81558, 0.4758, 0.87009, 0.29126, 0.58344, 0.25576, 0.68132, 0.23492, 0.74278, + 0.2135, 0.81448, 0.19874, 0.86831, 0.19271, 0.49455, 0.4968, 0.48641, 0.79002, 0.48462, 0.25666, 0.37903, 0.50462, 0.35653, 0.74321, 0.36527, 0.68757, 0.57906, 0.70466, 0.67913, + 0.71716, 0.75434, 0.72541, 0.81661, 0.73109, 0.87174, 0.67152, 0.48534, 0.32349, 0.49105, 0.38378, 0.58242, 0.36974, 0.68076, 0.36036, 0.74579, 0.34895, 0.81504, 0.34148, 0.86923, + 0.20652, 0.58437, 0.16979, 0.68173, 0.1462, 0.74066, 0.12077, 0.81409, 0.10379, 0.8677, 0.59158, 0.58012, 0.59921, 0.67965, 0.60299, 0.7516, 0.60776, 0.81612, 0.60866, 0.87095, + 0.76107, 0.57825, 0.78751, 0.67873, 0.81003, 0.75656, 0.82525, 0.81703, 0.83754, 0.87243, 0.10852, 0.73975, 0.08479, 0.81394, 0.06934, 0.86747, 0.15113, 0.868, 0.1657, 0.81428, + 0.18746, 0.74164, 0.29675, 0.74426, 0.28022, 0.81476, 0.26841, 0.86876, 0.41495, 0.7471, 0.40761, 0.81529, 0.4031, 0.86963, 0.53765, 0.87049, 0.53762, 0.81583, 0.53944, 0.75008, + 0.6595, 0.75296, 0.66217, 0.81635, 0.66857, 0.87134, 0.78397, 0.87208, 0.7758, 0.81682, 0.76492, 0.75548, 0.74852, 0.67892, 0.82675, 0.67854, 0.84222, 0.75734, 0.8595, 0.81717, + 0.87132, 0.87264, 0.01186, 0.9147, 0.056, 0.91293, 0.08943, 0.91297, 0.13846, 0.91074, 0.18465, 0.91102, 0.25824, 0.91262, 0.33507, 0.90958, 0.39978, 0.90977, 0.47313, 0.91161, + 0.53714, 0.91117, 0.61061, 0.90948, 0.67252, 0.91178, 0.73471, 0.91209, 0.78925, 0.91054, 0.84557, 0.91105, 0.87872, 0.91169, 0.92292, 0.90979, 0.21772, 0.91173, 0.11081, 0.912, + 0.02923, 0.91401, 0.29821, 0.91104, 0.36548, 0.90967, 0.43685, 0.9107, 0.50336, 0.9114, 0.57635, 0.91027, 0.64066, 0.9106, 0.70543, 0.91195, 0.76031, 0.91136, 0.81833, 0.9108, + 0.89934, 0.9108 + ], + "triangles": [ + 46, 36, 37, 125, 36, 46, 46, 47, 101, 101, 47, 100, 144, 46, 126, 125, 46, 144, 47, 46, 37, 34, 125, 144, 35, 125, 34, 35, 36, 125, 56, 55, 3, 56, 3, 4, 5, 6, 4, 123, 54, 55, 55, 54, + 2, 55, 2, 3, 85, 86, 49, 86, 99, 49, 47, 48, 100, 122, 121, 53, 49, 50, 85, 85, 50, 84, 48, 39, 49, 38, 39, 48, 49, 40, 50, 39, 40, 49, 95, 94, 52, 54, 1, 2, 121, 52, 53, 53, 0, 1, + 53, 52, 0, 113, 57, 90, 108, 80, 57, 62, 61, 80, 80, 79, 57, 80, 61, 79, 57, 89, 90, 57, 51, 89, 57, 79, 51, 90, 72, 73, 90, 89, 72, 40, 69, 66, 84, 66, 61, 61, 78, 79, 61, 66, 78, + 51, 79, 67, 51, 67, 89, 67, 79, 78, 89, 77, 72, 89, 67, 77, 72, 77, 94, 94, 68, 52, 94, 77, 68, 66, 69, 78, 41, 69, 40, 67, 78, 70, 67, 70, 77, 70, 78, 69, 77, 71, 68, 77, 70, 71, + 71, 45, 0, 69, 42, 70, 69, 41, 42, 71, 70, 44, 70, 43, 44, 44, 45, 71, 71, 0, 68, 70, 42, 43, 52, 68, 0, 54, 53, 1, 50, 40, 66, 50, 66, 84, 47, 37, 38, 48, 47, 38, 48, 49, 99, 121, + 95, 52, 122, 53, 54, 100, 48, 99, 62, 84, 61, 94, 73, 72, 85, 84, 62, 113, 90, 91, 141, 56, 4, 6, 141, 4, 124, 55, 56, 17, 150, 16, 17, 135, 150, 16, 136, 15, 16, 150, 136, 15, 151, + 14, 15, 136, 151, 14, 137, 13, 14, 151, 137, 13, 152, 12, 13, 137, 152, 12, 138, 11, 12, 152, 138, 11, 153, 10, 11, 138, 153, 10, 139, 9, 10, 153, 139, 9, 140, 8, 9, 139, 140, 8, + 154, 7, 8, 140, 154, 7, 141, 6, 7, 154, 141, 152, 137, 76, 137, 151, 76, 76, 151, 116, 150, 116, 136, 151, 136, 116, 154, 140, 124, 152, 117, 138, 152, 76, 117, 153, 98, 139, 140, + 139, 124, 139, 98, 124, 154, 56, 141, 154, 124, 56, 98, 153, 117, 116, 150, 93, 153, 138, 117, 150, 135, 93, 98, 123, 124, 124, 123, 55, 117, 97, 98, 98, 97, 123, 76, 118, 117, 117, + 118, 97, 116, 75, 76, 76, 75, 118, 93, 115, 116, 116, 115, 75, 93, 92, 115, 97, 122, 123, 123, 122, 54, 118, 96, 97, 97, 96, 122, 75, 119, 118, 118, 119, 96, 115, 74, 75, 75, 74, + 119, 92, 114, 115, 115, 114, 74, 92, 91, 114, 96, 121, 122, 119, 95, 96, 96, 95, 121, 74, 120, 119, 119, 120, 95, 114, 73, 74, 74, 73, 120, 73, 114, 90, 114, 91, 90, 120, 73, 94, + 120, 94, 95, 58, 57, 113, 25, 131, 24, 24, 146, 23, 24, 131, 146, 23, 132, 22, 23, 146, 132, 22, 147, 21, 22, 132, 147, 20, 133, 148, 20, 21, 133, 21, 147, 133, 20, 148, 19, 19, 134, + 18, 19, 148, 134, 18, 135, 17, 18, 149, 135, 18, 134, 149, 148, 133, 60, 133, 147, 60, 134, 148, 111, 134, 111, 149, 111, 148, 60, 132, 110, 147, 147, 110, 60, 149, 93, 135, 149, + 111, 93, 132, 146, 110, 131, 83, 146, 146, 83, 110, 111, 92, 93, 60, 59, 111, 59, 112, 111, 111, 112, 92, 110, 109, 60, 60, 109, 59, 83, 82, 110, 110, 82, 109, 92, 112, 91, 112, 113, + 91, 59, 58, 112, 112, 58, 113, 109, 108, 59, 59, 108, 58, 82, 81, 109, 109, 81, 108, 58, 108, 57, 81, 80, 108, 34, 144, 33, 126, 46, 101, 33, 126, 32, 33, 144, 126, 32, 127, 31, 32, + 126, 127, 31, 143, 30, 31, 127, 143, 30, 128, 29, 30, 143, 128, 29, 129, 28, 29, 128, 129, 28, 142, 27, 28, 129, 142, 27, 130, 26, 27, 142, 130, 26, 145, 25, 26, 130, 145, 25, 145, + 131, 126, 101, 127, 127, 88, 143, 127, 101, 88, 130, 107, 145, 130, 142, 107, 143, 88, 128, 129, 65, 142, 142, 65, 107, 131, 145, 83, 128, 102, 129, 129, 102, 65, 128, 88, 102, 83, + 145, 107, 107, 106, 83, 83, 106, 82, 65, 64, 107, 107, 64, 106, 102, 103, 65, 65, 103, 64, 88, 87, 102, 102, 87, 103, 101, 100, 88, 88, 100, 87, 106, 105, 82, 82, 105, 81, 64, 63, + 106, 106, 63, 105, 103, 104, 64, 64, 104, 63, 87, 86, 103, 103, 86, 104, 100, 99, 87, 87, 99, 86, 81, 105, 80, 63, 62, 105, 105, 62, 80, 62, 63, 85, 86, 85, 104, 63, 104, 85 + ], + "vertices": [ + 4, 47, 58.43, 20.31, 0.00012, 48, 36.09, 20.31, 0.00054, 49, 13.17, 20.31, 0.12631, 46, 43.2, 34, 0.87302, 3, 48, 39.33, 12.22, 0.00019, 49, 16.41, 12.22, 0.19743, 46, 51.06, 37.76, + 0.80237, 3, 48, 41.94, 5.69, 6e-05, 49, 19.02, 5.69, 0.26715, 46, 57.41, 40.79, 0.73278, 3, 48, 43.5, 1.06, 1e-05, 49, 20.58, 1.06, 0.33542, 46, 61.92, 42.65, 0.66457, 3, 48, 45, + -3.4, 1e-05, 49, 22.08, -3.4, 0.40033, 46, 66.27, 44.44, 0.59966, 3, 48, 46.9, -9.05, 0, 49, 23.98, -9.05, 0.45012, 46, 71.79, 46.7, 0.54988, 3, 48, 40.83, -9.07, 0, 49, 17.91, + -9.07, 0.5829, 46, 72.21, 40.65, 0.4171, 3, 48, 38.56, -9.08, 4e-05, 49, 15.64, -9.08, 0.72131, 46, 72.37, 38.38, 0.27865, 3, 48, 36.78, -9.09, 0.00031, 49, 13.86, -9.09, 0.8264, 46, + 72.49, 36.6, 0.17329, 3, 48, 33.93, -9.1, 0.00157, 49, 11, -9.1, 0.90359, 46, 72.69, 33.76, 0.09484, 3, 48, 31.22, -9.11, 0.00537, 49, 8.3, -9.11, 0.94975, 46, 72.87, 31.05, 0.04488, + 3, 48, 28.77, -9.12, 0.01601, 49, 5.85, -9.12, 0.96404, 46, 73.04, 28.61, 0.01996, 3, 48, 26.12, -9.13, 0.03803, 49, 3.2, -9.13, 0.95562, 46, 73.22, 25.97, 0.00635, 3, 48, 23.82, + -9.14, 0.08031, 49, 0.9, -9.14, 0.91597, 46, 73.38, 23.67, 0.00372, 4, 47, 43.47, -9.15, 0, 48, 21.13, -9.15, 0.14592, 49, -1.79, -9.15, 0.85165, 46, 73.57, 20.99, 0.00243, 4, 47, + 40.71, -9.16, 2e-05, 48, 18.37, -9.16, 0.23867, 49, -4.55, -9.16, 0.75671, 46, 73.76, 18.24, 0.0046, 4, 47, 37.66, -9.17, 0.00014, 48, 15.32, -9.17, 0.35275, 49, -7.6, -9.17, + 0.64256, 46, 73.97, 15.19, 0.00455, 4, 47, 35.13, -9.18, 0.00092, 48, 12.8, -9.18, 0.48034, 49, -10.13, -9.18, 0.51198, 46, 74.14, 12.68, 0.00676, 4, 47, 31.91, -9.19, 0.00375, 48, + 9.57, -9.19, 0.61095, 49, -13.35, -9.19, 0.38019, 46, 74.36, 9.46, 0.00512, 4, 47, 28.47, -9.21, 0.01298, 48, 6.13, -9.21, 0.72267, 49, -16.79, -9.21, 0.25841, 46, 74.6, 6.03, + 0.00594, 4, 47, 25.59, -9.22, 0.03422, 48, 3.25, -9.22, 0.80451, 49, -19.67, -9.22, 0.15782, 46, 74.8, 3.15, 0.00345, 4, 47, 22.68, -9.23, 0.07754, 48, 0.34, -9.23, 0.83155, 49, + -22.58, -9.23, 0.08642, 46, 75, 0.25, 0.00449, 4, 47, 19.52, -9.24, 0.14705, 48, -2.82, -9.24, 0.80991, 49, -25.74, -9.24, 0.04032, 46, 75.22, -2.9, 0.00272, 4, 47, 16.15, -9.25, + 0.24563, 48, -6.18, -9.25, 0.73344, 49, -29.11, -9.25, 0.01645, 46, 75.45, -6.26, 0.00448, 4, 47, 13.09, -9.27, 0.36774, 48, -9.24, -9.27, 0.62371, 49, -32.17, -9.27, 0.00512, 46, + 75.66, -9.31, 0.00344, 4, 47, 10.21, -9.28, 0.50372, 48, -12.13, -9.28, 0.49001, 49, -35.05, -9.28, 0.00135, 46, 75.86, -12.19, 0.00491, 4, 47, 7.08, -9.29, 0.64487, 48, -15.26, + -9.29, 0.35177, 49, -38.18, -9.29, 0.00021, 46, 76.08, -15.32, 0.00314, 4, 47, 3.26, -9.3, 0.77, 48, -19.08, -9.3, 0.22651, 49, -42, -9.3, 3e-05, 46, 76.34, -19.12, 0.00346, 4, 47, + -0.32, -9.32, 0.87272, 48, -22.66, -9.32, 0.1254, 49, -45.58, -9.32, 0, 46, 76.59, -22.69, 0.00188, 3, 47, -3.57, -9.33, 0.9351, 48, -25.91, -9.33, 0.0605, 46, 76.81, -25.94, 0.0044, + 3, 47, -7.54, -9.35, 0.96153, 48, -29.88, -9.35, 0.02278, 46, 77.09, -29.9, 0.01569, 3, 47, -9.85, -9.35, 0.93655, 48, -32.19, -9.35, 0.00657, 46, 77.24, -32.21, 0.05688, 3, 47, + -11.87, -9.36, 0.83576, 48, -34.2, -9.36, 0.00151, 46, 77.38, -34.21, 0.16273, 3, 47, -14.74, -9.37, 0.65143, 48, -37.08, -9.37, 0.00023, 46, 77.58, -37.08, 0.34834, 3, 47, -16.89, + -9.38, 0.4382, 48, -39.23, -9.38, 2e-05, 46, 77.73, -39.23, 0.56178, 3, 47, -18.76, -9.39, 0.27507, 48, -41.1, -9.39, 0, 46, 77.86, -41.09, 0.72493, 3, 47, -18.76, -2.89, 0.21414, + 48, -41.1, -2.89, 2e-05, 46, 71.37, -41.51, 0.78584, 3, 47, -18.76, 1.38, 0.19077, 48, -41.1, 1.38, 0.00024, 46, 67.11, -41.79, 0.80899, 3, 47, -18.76, 7.5, 0.1765, 48, -41.1, 7.5, + 0.00116, 46, 61.01, -42.19, 0.82235, 4, 47, -16.28, 11.88, 0.15382, 48, -38.62, 11.88, 0.00307, 49, -61.54, 11.88, 1e-05, 46, 56.48, -40, 0.84309, 4, 47, -11.9, 19.61, 0.11079, 48, + -34.24, 19.61, 0.0029, 49, -57.16, 19.61, 0.00014, 46, 48.48, -36.13, 0.88617, 4, 47, 14.63, 66.47, 0.04584, 48, -7.7, 66.47, 0.00083, 49, -30.63, 66.47, 0.00037, 46, -0.01, -12.7, + 0.95296, 4, 47, 22.29, 66.47, 0.02247, 48, -0.04, 66.47, 0.00083, 49, -22.97, 66.47, 0.00288, 46, -0.51, -5.06, 0.97382, 4, 47, 27.54, 66.47, 0.01007, 48, 5.2, 66.47, 0.00155, 49, + -17.72, 66.47, 0.0104, 46, -0.85, 0.17, 0.97798, 4, 47, 34.04, 66.47, 0.00272, 48, 11.7, 66.47, 0.00045, 49, -11.22, 66.47, 0.02285, 46, -1.28, 6.66, 0.97398, 4, 47, 39.96, 66.47, + 0.00033, 48, 17.62, 66.47, 0.00011, 49, -5.3, 66.47, 0.0498, 46, -1.66, 12.57, 0.94976, 3, 47, -16.24, -2.91, 0.33437, 48, -38.58, -2.91, 0.0002, 46, 71.23, -39, 0.66543, 3, 47, + -14.53, 1.37, 0.32645, 48, -36.87, 1.37, 0.00078, 46, 66.85, -37.57, 0.67277, 4, 47, -12.36, 7.36, 0.307, 48, -34.7, 7.36, 0.00285, 49, -57.62, 7.36, 1e-05, 46, 60.73, -35.79, + 0.69014, 4, 47, -9.97, 11.91, 0.26477, 48, -32.31, 11.91, 0.00971, 49, -55.23, 11.91, 0.00027, 46, 56.04, -33.7, 0.72525, 4, 47, -6.21, 19.66, 0.19881, 48, -28.55, 19.66, 0.00959, + 49, -51.47, 19.66, 0.00132, 46, 48.05, -30.46, 0.79028, 4, 47, 24.46, 19.97, 0.10712, 48, 2.12, 19.97, 0.11704, 49, -20.8, 19.97, 0.11672, 46, 45.75, 0.12, 0.65912, 4, 47, 53.97, + 20.27, 0.00116, 48, 31.63, 20.27, 0.00313, 49, 8.71, 20.27, 0.2148, 46, 43.53, 29.55, 0.7809, 4, 47, 57.02, 12.2, 0.0001, 48, 34.68, 12.2, 0.00083, 49, 11.76, 12.2, 0.29942, 46, + 51.38, 33.12, 0.69965, 3, 48, 36.75, 5.8, 0.00034, 49, 13.82, 5.8, 0.378, 46, 57.63, 35.6, 0.62166, 3, 48, 38.1, 1.08, 0.00022, 49, 15.18, 1.08, 0.45653, 46, 62.25, 37.26, 0.54325, + 3, 48, 39.36, -3.36, 0.00015, 49, 16.43, -3.36, 0.53433, 46, 66.61, 38.8, 0.46552, 4, 47, 23.97, 12.06, 0.12565, 48, 1.63, 12.06, 0.24275, 49, -21.29, 12.06, 0.14114, 46, 53.68, + 0.15, 0.49046, 4, 47, 23.54, 6.58, 0.11007, 48, 1.2, 6.58, 0.47217, 49, -21.72, 6.58, 0.12893, 46, 59.17, 0.08, 0.28883, 4, 47, 23.28, 1.22, 0.10884, 48, 0.94, 1.22, 0.60558, 49, + -21.98, 1.22, 0.12698, 46, 64.53, 0.17, 0.1586, 4, 47, 23.11, -3.14, 0.10666, 48, 0.77, -3.14, 0.70334, 49, -22.15, -3.14, 0.12133, 46, 68.89, 0.28, 0.06866, 4, 47, 6.87, 19.8, + 0.29773, 48, -15.47, 19.8, 0.06022, 49, -38.39, 19.8, 0.01488, 46, 47.07, -17.41, 0.62717, 4, 47, 3.75, 11.97, 0.44072, 48, -18.59, 11.97, 0.09602, 49, -41.51, 11.97, 0.01064, 46, + 55.08, -20.02, 0.45261, 4, 47, 1.91, 7.05, 0.66419, 48, -20.42, 7.05, 0.11803, 49, -43.35, 7.05, 0.002, 46, 60.11, -21.53, 0.21579, 4, 47, 0.03, 1.31, 0.77187, 48, -22.31, 1.31, + 0.12352, 49, -45.23, 1.31, 0.00043, 46, 65.96, -23.04, 0.10418, 4, 47, -1.27, -2.99, 0.84303, 48, -23.61, -2.99, 0.11246, 49, -46.53, -2.99, 0.00018, 46, 70.34, -24.05, 0.04432, 4, + 47, -1.8, 26.91, 0.12744, 48, -24.14, 26.91, 0.00959, 49, -47.06, 26.91, 0.0076, 46, 40.54, -26.53, 0.85537, 4, 47, 24.96, 27.56, 0.0719, 48, 2.62, 27.56, 0.03639, 49, -20.3, 27.56, + 0.07572, 46, 38.14, 0.13, 0.81598, 4, 47, 50.76, 27.7, 0.00702, 48, 28.42, 27.7, 0.00523, 49, 5.5, 27.7, 0.131, 46, 36.32, 25.87, 0.85675, 4, 47, 3.83, 36.15, 0.04791, 48, -18.51, + 36.15, 0.00352, 49, -41.43, 36.15, 0.00803, 46, 30.95, -21.51, 0.94054, 4, 47, 25.65, 37.95, 0.02662, 48, 3.31, 37.95, 0.00775, 49, -19.61, 37.95, 0.02767, 46, 27.73, 0.14, 0.93795, + 4, 47, 46.64, 37.25, 0.00753, 48, 24.3, 37.25, 0.00227, 49, 1.38, 37.25, 0.04846, 46, 27.06, 21.14, 0.94174, 4, 47, 41.75, 20.15, 0.01306, 48, 19.41, 20.15, 0.04509, 49, -3.51, + 20.15, 0.32134, 46, 44.45, 17.37, 0.62052, 4, 47, 43.25, 12.14, 0.00895, 48, 20.91, 12.14, 0.07841, 49, -2.01, 12.14, 0.49568, 46, 52.34, 19.39, 0.41696, 4, 47, 44.35, 6.12, 0.0015, + 48, 22.01, 6.12, 0.09572, 49, -0.91, 6.12, 0.67014, 46, 58.27, 20.88, 0.23264, 4, 47, 45.08, 1.14, 0.00025, 48, 22.74, 1.14, 0.108, 49, -0.18, 1.14, 0.76841, 46, 63.2, 21.93, + 0.12334, 4, 47, 45.58, -3.27, 0.0001, 48, 23.24, -3.27, 0.10937, 49, 0.32, -3.27, 0.83473, 46, 67.56, 22.71, 0.0558, 4, 47, 40.33, 27.64, 0.02381, 48, 18, 27.64, 0.02132, 49, -4.93, + 27.64, 0.16866, 46, 37.06, 15.47, 0.78621, 4, 47, 9.71, 27.19, 0.16236, 48, -12.63, 27.19, 0.02827, 49, -35.55, 27.19, 0.02548, 46, 39.51, -15.06, 0.78388, 4, 47, 15.01, 19.88, + 0.23124, 48, -7.33, 19.88, 0.11759, 49, -30.25, 19.88, 0.04679, 46, 46.46, -9.29, 0.60438, 4, 47, 13.78, 12.01, 0.29354, 48, -8.56, 12.01, 0.19873, 49, -31.48, 12.01, 0.04427, 46, + 54.39, -10.01, 0.46346, 4, 47, 12.95, 6.81, 0.37869, 48, -9.39, 6.81, 0.34588, 49, -32.31, 6.81, 0.01968, 46, 59.63, -10.5, 0.25575, 4, 47, 11.95, 1.27, 0.42861, 48, -10.39, 1.27, + 0.42317, 49, -33.31, 1.27, 0.01297, 46, 65.23, -11.14, 0.13524, 4, 47, 11.29, -3.07, 0.46725, 48, -11.05, -3.07, 0.46538, 49, -33.97, -3.07, 0.0097, 46, 69.59, -11.51, 0.05768, 4, + 47, -0.59, 19.72, 0.32338, 48, -22.92, 19.72, 0.02881, 49, -45.85, 19.72, 0.003, 46, 47.63, -24.85, 0.64481, 4, 47, -3.82, 11.93, 0.4391, 48, -26.16, 11.93, 0.03345, 49, -49.08, + 11.93, 0.00177, 46, 55.61, -27.57, 0.52567, 4, 47, -5.89, 7.22, 0.65491, 48, -28.23, 7.22, 0.02015, 49, -51.15, 7.22, 0.00017, 46, 60.45, -29.33, 0.32476, 4, 47, -8.13, 1.34, + 0.75275, 48, -30.47, 1.34, 0.01396, 49, -53.39, 1.34, 1e-05, 46, 66.46, -31.18, 0.23328, 3, 47, -9.63, -2.94, 0.80478, 48, -31.96, -2.94, 0.00944, 46, 70.83, -32.39, 0.18578, 4, 47, + 33.3, 20.06, 0.04166, 48, 10.96, 20.06, 0.10286, 49, -11.96, 20.06, 0.24857, 46, 45.08, 8.94, 0.60691, 4, 47, 33.97, 12.1, 0.03817, 48, 11.63, 12.1, 0.17811, 49, -11.29, 12.1, + 0.32257, 46, 52.98, 10.13, 0.46115, 4, 47, 34.3, 6.34, 0.01531, 48, 11.97, 6.34, 0.31162, 49, -10.96, 6.34, 0.40881, 46, 58.71, 10.84, 0.26426, 4, 47, 34.72, 1.18, 0.00955, 48, + 12.39, 1.18, 0.39036, 49, -10.54, 1.18, 0.4561, 46, 63.83, 11.59, 0.14399, 4, 47, 34.8, -3.2, 0.00731, 48, 12.46, -3.2, 0.44195, 49, -10.46, -3.2, 0.48699, 46, 68.2, 11.96, 0.06375, + 4, 47, 48.21, 20.21, 0.00241, 48, 25.88, 20.21, 0.01421, 49, 2.95, 20.21, 0.36275, 46, 43.96, 23.82, 0.62063, 4, 47, 50.54, 12.17, 0.00034, 48, 28.2, 12.17, 0.01068, 49, 5.28, 12.17, + 0.5453, 46, 51.83, 26.66, 0.44368, 4, 47, 52.52, 5.95, 2e-05, 48, 30.19, 5.95, 0.00999, 49, 7.26, 5.95, 0.66888, 46, 57.92, 29.04, 0.32111, 3, 48, 31.52, 1.11, 0.01011, 49, 8.6, + 1.11, 0.76268, 46, 62.66, 30.7, 0.22721, 3, 48, 32.61, -3.32, 0.00863, 49, 9.68, -3.32, 0.83296, 46, 67.01, 32.06, 0.15841, 4, 47, -9.21, 7.29, 0.52586, 48, -31.55, 7.29, 0.0057, 49, + -54.47, 7.29, 1e-05, 46, 60.59, -32.65, 0.46842, 3, 47, -11.3, 1.36, 0.56698, 48, -33.64, 1.36, 0.00311, 46, 66.65, -34.34, 0.42991, 3, 47, -12.66, -2.93, 0.60013, 48, -35, -2.93, + 0.00167, 46, 71.01, -35.42, 0.39821, 4, 47, -5.46, -2.97, 0.89102, 48, -27.8, -2.97, 0.03888, 49, -50.72, -2.97, 1e-05, 46, 70.59, -28.24, 0.07008, 4, 47, -4.18, 1.33, 0.83362, 48, + -26.52, 1.33, 0.04645, 49, -49.44, 1.33, 3e-05, 46, 66.21, -27.24, 0.1199, 4, 47, -2.26, 7.14, 0.75973, 48, -24.6, 7.14, 0.05134, 49, -47.52, 7.14, 0.00026, 46, 60.29, -25.7, + 0.18867, 4, 47, 7.35, 6.93, 0.57235, 48, -14.98, 6.93, 0.23863, 49, -37.91, 6.93, 0.00435, 46, 59.87, -16.09, 0.18467, 4, 47, 5.9, 1.29, 0.63011, 48, -16.44, 1.29, 0.25936, 49, + -39.36, 1.29, 0.00243, 46, 65.6, -17.18, 0.1081, 4, 47, 4.86, -3.03, 0.68809, 48, -17.48, -3.03, 0.26358, 49, -40.4, -3.03, 0.00168, 46, 69.98, -17.93, 0.04665, 4, 47, 17.76, 6.7, + 0.22941, 48, -4.58, 6.7, 0.4879, 49, -27.5, 6.7, 0.05094, 46, 59.42, -5.7, 0.23175, 4, 47, 17.11, 1.25, 0.24296, 48, -5.23, 1.25, 0.56856, 49, -28.15, 1.25, 0.04581, 46, 64.91, + -5.99, 0.14267, 4, 47, 16.71, -3.1, 0.25552, 48, -5.62, -3.1, 0.64168, 49, -28.55, -3.1, 0.03992, 46, 69.27, -6.1, 0.06288, 4, 47, 28.55, -3.17, 0.03276, 48, 6.22, -3.17, 0.62363, + 49, -16.71, -3.17, 0.27658, 46, 68.57, 5.72, 0.06703, 4, 47, 28.55, 1.2, 0.0367, 48, 6.21, 1.21, 0.54514, 49, -16.71, 1.21, 0.26974, 46, 64.21, 5.43, 0.14843, 4, 47, 28.71, 6.47, + 0.04075, 48, 6.37, 6.47, 0.46337, 49, -16.55, 6.47, 0.25797, 46, 58.95, 5.25, 0.23791, 4, 47, 39.28, 6.23, 0.00305, 48, 16.94, 6.24, 0.20572, 49, -5.98, 6.24, 0.59307, 46, 58.49, + 15.81, 0.19817, 4, 47, 39.51, 1.16, 0.00156, 48, 17.17, 1.16, 0.23228, 49, -5.75, 1.16, 0.64631, 46, 63.54, 16.37, 0.11984, 4, 47, 40.07, -3.24, 0.00112, 48, 17.74, -3.24, 0.25061, + 49, -5.19, -3.24, 0.69415, 46, 67.89, 17.22, 0.05412, 4, 47, 50.23, -3.29, 0, 48, 27.89, -3.29, 0.036, 49, 4.97, -3.29, 0.88144, 46, 67.29, 27.36, 0.08255, 4, 47, 49.51, 1.13, 2e-05, + 48, 27.17, 1.13, 0.03826, 49, 4.25, 1.13, 0.81357, 46, 62.92, 26.35, 0.14816, 4, 47, 48.55, 6.03, 0.00027, 48, 26.22, 6.03, 0.03577, 49, 3.29, 6.03, 0.72045, 46, 58.09, 25.08, + 0.24351, 4, 47, 47.11, 12.16, 0.00156, 48, 24.77, 12.16, 0.03311, 49, 1.85, 12.16, 0.61234, 46, 52.07, 23.24, 0.35299, 4, 47, 53.99, 12.19, 1e-05, 48, 31.66, 12.19, 0.00266, 49, + 8.73, 12.19, 0.47035, 46, 51.59, 30.11, 0.52698, 3, 48, 33.02, 5.88, 0.00213, 49, 10.1, 5.88, 0.54797, 46, 57.79, 31.88, 0.4499, 3, 48, 34.54, 1.1, 0.0018, 49, 11.62, 1.1, 0.63247, + 46, 62.47, 33.7, 0.36573, 3, 48, 35.58, -3.34, 0.00152, 49, 12.66, -3.34, 0.71351, 46, 66.83, 35.03, 0.28497, 3, 47, -17.72, -6.71, 0.31251, 48, -40.05, -6.71, 1e-05, 46, 75.11, + -40.22, 0.68748, 3, 47, -13.83, -6.56, 0.64755, 48, -36.17, -6.56, 0.00038, 46, 74.72, -36.36, 0.35207, 3, 47, -10.89, -6.57, 0.83546, 48, -33.23, -6.57, 0.00245, 46, 74.53, -33.42, + 0.1621, 3, 47, -6.58, -6.39, 0.9505, 48, -28.91, -6.39, 0.02598, 46, 74.07, -29.13, 0.02352, 4, 47, -2.51, -6.41, 0.9185, 48, -24.85, -6.41, 0.06986, 49, -47.77, -6.41, 1e-05, 46, + 73.83, -25.07, 0.01163, 4, 47, 3.97, -6.54, 0.7539, 48, -18.37, -6.54, 0.23416, 49, -41.29, -6.54, 0.00019, 46, 73.54, -18.6, 0.01175, 4, 47, 10.73, -6.3, 0.4945, 48, -11.61, -6.29, + 0.48778, 49, -34.53, -6.29, 0.00242, 46, 72.85, -11.87, 0.01529, 4, 47, 16.42, -6.31, 0.24467, 48, -5.92, -6.31, 0.71967, 49, -28.84, -6.31, 0.01969, 46, 72.5, -6.18, 0.01597, 4, 47, + 22.88, -6.46, 0.08074, 48, 0.54, -6.46, 0.81091, 49, -22.38, -6.46, 0.09131, 46, 72.22, 0.27, 0.01704, 4, 47, 28.51, -6.42, 0.01543, 48, 6.17, -6.42, 0.70591, 49, -16.75, -6.42, + 0.26031, 46, 71.82, 5.89, 0.01836, 4, 47, 34.97, -6.29, 0.00164, 48, 12.64, -6.29, 0.47309, 49, -10.29, -6.29, 0.50689, 46, 71.27, 12.33, 0.01837, 4, 47, 40.42, -6.47, 0.0001, 48, + 18.08, -6.47, 0.23958, 49, -4.84, -6.47, 0.7461, 46, 71.1, 17.78, 0.01421, 4, 47, 45.89, -6.5, 0, 48, 23.56, -6.5, 0.08431, 49, 0.63, -6.5, 0.9025, 46, 70.76, 23.24, 0.01319, 3, 48, + 28.36, -6.37, 0.01867, 49, 5.43, -6.37, 0.94991, 46, 70.33, 28.02, 0.03142, 3, 48, 33.31, -6.41, 0.00244, 49, 10.39, -6.41, 0.88788, 46, 70.05, 32.97, 0.10968, 3, 48, 36.23, -6.46, + 0.00046, 49, 13.31, -6.46, 0.80558, 46, 69.91, 35.88, 0.19395, 3, 48, 40.12, -6.31, 1e-05, 49, 17.2, -6.31, 0.61334, 46, 69.5, 39.76, 0.38665, 4, 47, 0.4, -6.47, 0.86555, 48, -21.94, + -6.47, 0.12959, 49, -44.86, -6.47, 1e-05, 46, 73.7, -22.16, 0.00485, 3, 47, -9.01, -6.49, 0.93616, 48, -31.35, -6.49, 0.00716, 46, 74.33, -31.55, 0.05668, 3, 47, -16.19, -6.65, + 0.44814, 48, -38.53, -6.65, 3e-05, 46, 74.96, -38.7, 0.55184, 4, 47, 7.48, -6.41, 0.63866, 48, -14.86, -6.41, 0.354, 49, -37.78, -6.41, 0.00037, 46, 73.18, -15.1, 0.00698, 4, 47, + 13.4, -6.3, 0.36468, 48, -8.94, -6.3, 0.62161, 49, -31.86, -6.3, 0.00581, 46, 72.69, -9.2, 0.0079, 4, 47, 19.68, -6.38, 0.14684, 48, -2.65, -6.38, 0.80383, 49, -25.58, -6.38, + 0.04176, 46, 72.36, -2.92, 0.00757, 4, 47, 25.54, -6.44, 0.03499, 48, 3.2, -6.44, 0.79745, 49, -19.72, -6.44, 0.15898, 46, 72.03, 2.92, 0.00858, 4, 47, 31.96, -6.35, 0.00417, 48, + 9.62, -6.35, 0.60634, 49, -13.3, -6.35, 0.37927, 46, 71.53, 9.32, 0.01022, 4, 47, 37.62, -6.38, 0.00021, 48, 15.28, -6.38, 0.35157, 49, -7.64, -6.38, 0.63918, 46, 71.18, 14.97, + 0.00904, 4, 47, 43.32, -6.48, 1e-05, 48, 20.98, -6.48, 0.14688, 49, -1.94, -6.48, 0.84692, 46, 70.92, 20.67, 0.00619, 3, 48, 25.81, -6.44, 0.03919, 49, 2.89, -6.44, 0.95006, 46, + 70.56, 25.48, 0.01074, 3, 48, 30.92, -6.39, 0.00591, 49, 7.99, -6.39, 0.9433, 46, 70.18, 30.58, 0.05079, 3, 48, 38.04, -6.39, 5e-05, 49, 15.12, -6.39, 0.72615, 46, 69.72, 37.69, + 0.2738 + ], + "hull": 46, + "edges": [ + 80, 82, 90, 0, 10, 8, 70, 72, 72, 74, 74, 76, 4, 6, 6, 8, 76, 78, 78, 80, 4, 2, 2, 0, 72, 92, 74, 94, 92, 94, 76, 96, 94, 96, 78, 98, 96, 98, 80, 100, 98, 100, 82, 84, 84, 86, 86, + 88, 88, 90, 0, 104, 2, 106, 104, 106, 4, 108, 106, 108, 6, 110, 108, 110, 8, 112, 110, 112, 10, 12, 102, 114, 114, 116, 116, 118, 118, 120, 122, 124, 124, 126, 126, 128, 128, 130, + 132, 100, 134, 102, 136, 104, 84, 138, 138, 132, 86, 140, 140, 134, 138, 140, 88, 142, 142, 136, 140, 142, 144, 146, 146, 148, 148, 150, 150, 152, 134, 154, 154, 136, 144, 154, 132, + 156, 156, 134, 122, 156, 102, 158, 158, 122, 114, 160, 160, 124, 158, 160, 160, 162, 162, 164, 164, 166, 100, 168, 168, 122, 98, 170, 170, 124, 168, 170, 170, 172, 172, 174, 174, + 176, 102, 178, 178, 144, 114, 180, 180, 146, 178, 180, 180, 182, 182, 184, 184, 186, 104, 188, 188, 144, 188, 190, 190, 192, 192, 194, 194, 196, 96, 198, 198, 172, 94, 200, 200, 174, + 198, 200, 92, 202, 202, 176, 200, 202, 64, 66, 58, 60, 130, 204, 204, 176, 128, 206, 206, 174, 204, 206, 126, 208, 208, 172, 206, 208, 126, 210, 210, 162, 128, 212, 212, 164, 210, + 212, 130, 214, 214, 166, 212, 214, 116, 216, 216, 162, 118, 218, 218, 164, 216, 218, 120, 220, 220, 166, 218, 220, 120, 222, 222, 186, 118, 224, 224, 184, 222, 224, 116, 226, 226, + 182, 224, 226, 148, 228, 228, 182, 150, 230, 230, 184, 228, 230, 152, 232, 232, 186, 230, 232, 152, 234, 234, 196, 150, 236, 236, 194, 234, 236, 148, 238, 238, 192, 236, 238, 146, + 240, 240, 190, 238, 240, 106, 242, 242, 190, 108, 244, 244, 192, 242, 244, 110, 246, 246, 194, 244, 246, 112, 248, 248, 196, 246, 248, 16, 18, 70, 250, 250, 92, 66, 252, 252, 202, + 64, 254, 254, 176, 252, 254, 60, 256, 256, 204, 58, 258, 258, 130, 256, 258, 54, 260, 260, 214, 50, 262, 262, 166, 46, 264, 264, 220, 42, 266, 266, 120, 38, 268, 268, 222, 34, 270, + 270, 186, 30, 272, 272, 232, 26, 274, 274, 152, 22, 276, 276, 234, 18, 278, 278, 196, 16, 280, 280, 248, 278, 280, 12, 282, 282, 112, 258, 284, 284, 260, 54, 56, 56, 58, 284, 56, + 254, 286, 286, 256, 60, 62, 62, 64, 286, 62, 250, 288, 288, 252, 66, 68, 68, 70, 288, 68, 260, 290, 290, 262, 50, 52, 52, 54, 290, 52, 262, 292, 292, 264, 46, 48, 48, 50, 292, 48, + 264, 294, 294, 266, 42, 44, 44, 46, 294, 44, 266, 296, 296, 268, 38, 40, 40, 42, 296, 40, 268, 298, 298, 270, 34, 36, 36, 38, 298, 36, 270, 300, 300, 272, 30, 32, 32, 34, 300, 32, + 272, 302, 302, 274, 26, 28, 28, 30, 302, 28, 274, 304, 304, 276, 22, 24, 24, 26, 304, 24, 276, 306, 306, 278, 18, 20, 20, 22, 306, 20, 280, 308, 308, 282, 12, 14, 14, 16, 308, 14 + ], + "width": 87.05882352941177, + "height": 80.0, + "path": "summer-a.ear-left-bubble", + "x": 0.470588235294116, + "y": 0.0 + } }, - "horn": {"horn": {"x": 85.4, "y": 4, "rotation": -90, "width": 186, "height": 226, "path": "plant-12.horn"}}, - "mouth": { - "mouth": {"x": -28.96, "y": 89.9, "width": 168, "height": 76, "path": "plant-12.mouth"}, - "mouth-bite": {"x": -91.96, "y": 80.4, "width": 274, "height": 85, "path": "plant-12.mouth-bite"}, - "mouth-open": {"x": -1.96, "y": 95.9, "width": 118, "height": 82, "path": "plant-12.mouth-open"}, - "mouth-smile": {"x": -22.96, "y": 75.4, "width": 148, "height": 95, "path": "plant-12.mouth-smile"} + "ear-left-dot-01": { + "ear-left-dot": {"x": 0.5611764705882355, "y": 1.5111764705882353, "rotation": -0.95, "width": 14.117647058823529, "height": 14.117647058823529, "path": "summer-a.ear-left-dot"} }, - "tail": {"tail": {"x": 136.86, "y": 16.13, "rotation": -28, "width": 282, "height": 224, "path": "plant-12.tail"}} - } - } - ], - "events": {"hit": {}, "hit-buff": {}, "jump": {}, "start-attack": {}}, - "keyAnimations": { - "activity/appear": "1023093953", - "activity/bath": "3305387968", - "attack/ranged/cast-fly": "4180526371", - "attack/ranged/cast-high": "164191126", - "attack/ranged/cast-low": "198813017", - "attack/ranged/cast-multi": "151119", - "attack/ranged/cast-tail": "997902532", - "activity/eat-bite": "1137807767", - "activity/eat-chew": "1988236421", - "activity/entrance": "3768378365", - "defense/evade": "1735454995", - "activity/evolve": "649307630", - "battle/get-buff": "1455190363", - "battle/get-debuff": "606904312", - "defense/hit-by-normal": "2045974966", - "defense/hit-by-normal-crit": "2130010601", - "defense/hit-by-normal-dramatic": "3823092125", - "defense/hit-by-ranged-attack": "2224561612", - "defense/hit-with-shield": "390714790", - "attack/melee/horn-gore": "1327954218", - "attack/melee/mouth-bite": "2237748264", - "action/move-back": "3766271173", - "action/move-forward": "2945160014", - "attack/melee/multi-attack": "905926802", - "action/idle/normal": "1659336865", - "attack/melee/normal-attack": "3305373483", - "activity/prepare": "405864717", - "action/idle/random-01": "554401889", - "action/idle/random-02": "1085666627", - "action/idle/random-03": "2021333900", - "action/idle/random-04": "1003789695", - "action/idle/random-05": "2745614147", - "action/run": "1438840721", - "draft/run-origin": "3577885069", - "attack/melee/shrimp": "3833448733", - "activity/sleep": "100562494", - "attack/melee/tail-multi-slap": "3317139533", - "attack/melee/tail-roll": "3108617565", - "attack/melee/tail-smash": "519942130", - "attack/melee/tail-thrash": "628713175", - "activity/victory-pose-back-flip": "2227634241" - } - }, - "body-sumo": { - "bones": [ - {"name": "@root"}, {"name": "@pivot-main", "parent": "@root"}, {"name": "@pivot-back", "parent": "@pivot-main", "x": 232, "y": 264.98, "color": "ff0101ff"}, - {"name": "@pivot-center", "parent": "@pivot-back", "x": -243, "y": -5.25, "color": "ff0101ff"}, - {"name": "@axie", "parent": "@pivot-center", "length": 213.28, "rotation": 179.04, "x": 224.28, "y": 5.16}, {"name": "@back", "parent": "@axie", "rotation": -179.04, "x": 65.14, "y": -230.05}, - {"name": "@body", "parent": "@axie", "length": 226.28, "rotation": -8.35, "x": 224.58, "y": -0.53}, {"name": "@ear-left", "parent": "@axie", "rotation": -179.04, "x": 135.95, "y": -217.87}, - {"name": "@ear-right", "parent": "@axie", "rotation": -179.04, "x": 467.52, "y": -249.32}, {"name": "@eyes", "parent": "@axie", "rotation": -179.04, "x": 423.48, "y": -128.03}, - {"name": "@horn", "parent": "@axie", "rotation": -179.04, "x": 373.17, "y": -228.89}, - {"name": "@leg-back-left", "parent": "@axie", "length": 82.39, "rotation": 99.1, "x": -7.41, "y": 183.62, "transform": "noScale"}, - {"name": "@leg-front-left", "parent": "@axie", "length": 87.35, "rotation": 89.4, "x": 146.09, "y": 187.6, "transform": "noScale"}, - {"name": "@leg-front-right", "parent": "@axie", "length": 90.99, "rotation": 75.06, "x": 455.08, "y": 185.83, "transform": "noScale"}, - {"name": "@mouth", "parent": "@axie", "rotation": -179.04, "x": 421.46, "y": -8.05}, - {"name": "body-pattern", "parent": "@body", "rotation": -170.69, "x": -287.64, "y": -107.32, "transform": "noScale"}, {"name": "@shadow", "parent": "@root", "color": "e6d713ff"}, - {"name": "@tail", "parent": "@axie", "rotation": -179.04, "x": -38.64, "y": 114.26}, - {"name": "leg-front-right-IK", "parent": "@pivot-main", "x": -263.59, "y": -3.12, "transform": "noScale", "color": "ff3f00ff"}, - {"name": "leg-front-left-IK", "parent": "@pivot-main", "x": 73.81, "y": -7.07, "transform": "noScale", "color": "ff3f00ff"}, - {"name": "leg-back-left-IK", "parent": "@pivot-main", "x": 246.97, "y": 2.5, "transform": "noScale", "color": "ff3f00ff"}, {"name": "@ball", "parent": "@root", "y": 191, "color": "f3981bff"}, - {"name": "ball", "parent": "@ball", "y": -191, "color": "f4a729ff"}, {"name": "@body-neck", "parent": "@pivot-center", "x": -161.89, "y": -53.75, "color": "ff0101ff"}, - {"name": "@body-ground", "parent": "@pivot-main", "x": 220, "transform": "noRotationOrReflection", "color": "ff0101ff"}, - {"name": "@body-hip", "parent": "@pivot-center", "x": 240.11, "y": 55.25, "color": "ff0101ff"}, - {"name": "@body-air", "parent": "@pivot-back", "x": 63, "y": 365, "transform": "noRotationOrReflection", "color": "ff0101ff"}, - {"name": "@body-cheek", "parent": "@pivot-center", "x": 15.11, "y": 47.25, "color": "ff0101ff"} - ], - "slots": [ - {"name": "shadow", "bone": "@shadow", "attachment": "shadow"}, {"name": "ball", "bone": "ball"}, {"name": "leg-front-right", "bone": "@leg-front-right", "attachment": "sumo-leg-front-right"}, - {"name": "body", "bone": "@body", "attachment": "body-sumo"}, {"name": "body-pattern", "bone": "body-pattern", "attachment": "body-pattern"}, - {"name": "leg-back-left", "bone": "@leg-back-left", "attachment": "sumo-leg-back-left"}, {"name": "leg-front-left", "bone": "@leg-front-left", "attachment": "sumo-leg-front-left"}, - {"name": "body-hip", "bone": "@body-hip", "attachment": "body-hip"}, {"name": "body-neck", "bone": "@body-neck", "attachment": "body-neck"}, - {"name": "body-ground", "bone": "@body-ground", "attachment": "body-ground"}, {"name": "body-air", "bone": "@body-air", "attachment": "body-air"}, - {"name": "body-cheek", "bone": "@body-cheek", "attachment": "body-cheek"} - ], - "ik": [ - {"name": "leg-back-left-IK", "order": 2, "bones": ["@leg-back-left"], "target": "leg-back-left-IK"}, - {"name": "leg-front-left-IK", "order": 1, "bones": ["@leg-front-left"], "target": "leg-front-left-IK"}, - {"name": "leg-front-right-IK", "bones": ["@leg-front-right"], "target": "leg-front-right-IK"} - ], - "skins": [ - { - "name": "default", - "attachments": { - "ball": {"ball": {"y": 191, "width": 393, "height": 390, "path": "body-normal.ball"}}, - "body": {"body-sumo": {"x": 15.71, "y": -32.51, "rotation": -170.69, "width": 789, "height": 623, "path": "body-sumo.body-sumo"}}, - "body-pattern": {"body-pattern": {"x": -41.42, "y": -23.57, "width": 175, "height": 257, "path": "body-sumo.body-pattern"}}, - "leg-back-left": { - "sumo-leg-back-left": {"x": 35.48, "y": -3.22, "rotation": 69.54, "width": 104, "height": 95, "path": "body-normal.sumo-leg-back-left"}, - "sumo-leg-back-left-long": {"x": 34.3, "y": 2.31, "rotation": 216.69, "width": 101, "height": 112, "path": "body-normal.sumo-leg-back-left-long"}, - "sumo-leg-back-left-stretch": {"x": 34.53, "y": 4.56, "rotation": 37.34, "width": 102, "height": 105, "path": "body-normal.sumo-leg-back-left-stretch"} + "ear-left-dot-02": { + "ear-left-dot": {"x": 0.5611764705882355, "y": 1.5111764705882353, "rotation": -0.95, "width": 14.117647058823529, "height": 14.117647058823529, "path": "summer-a.ear-left-dot"} + }, + "ear-left-dot-03": { + "ear-left-dot": {"x": 0.5611764705882355, "y": 1.5111764705882353, "rotation": -0.95, "width": 14.117647058823529, "height": 14.117647058823529, "path": "summer-a.ear-left-dot"} + }, + "ear-left-dot-04": { + "ear-left-dot": {"x": 0.5611764705882355, "y": 1.5111764705882353, "rotation": -0.95, "width": 14.117647058823529, "height": 14.117647058823529, "path": "summer-a.ear-left-dot"} + }, + "ear-left-dot-05": { + "ear-left-dot": {"x": 0.5611764705882355, "y": 1.5111764705882353, "rotation": -0.95, "width": 14.117647058823529, "height": 14.117647058823529, "path": "summer-a.ear-left-dot"} + }, + "ear-left-dot-06": { + "ear-left-dot": {"x": 0.5611764705882355, "y": 1.5111764705882353, "rotation": -0.95, "width": 14.117647058823529, "height": 14.117647058823529, "path": "summer-a.ear-left-dot"} + }, + "ear-left-dot-07": { + "ear-left-dot": {"x": 0.5611764705882355, "y": 1.5111764705882353, "rotation": -0.95, "width": 14.117647058823529, "height": 14.117647058823529, "path": "summer-a.ear-left-dot"} + }, + "ear-left-dot-08": { + "ear-left-dot": {"x": 0.5611764705882355, "y": 1.5111764705882353, "rotation": -0.95, "width": 14.117647058823529, "height": 14.117647058823529, "path": "summer-a.ear-left-dot"} + }, + "ear-left-dot-09": { + "ear-left-dot": {"x": 0.5611764705882355, "y": 1.5111764705882353, "rotation": -0.95, "width": 14.117647058823529, "height": 14.117647058823529, "path": "summer-a.ear-left-dot"} + }, + "ear-left-dot-10": { + "ear-left-dot": {"x": 0.5611764705882355, "y": 1.5111764705882353, "rotation": -0.95, "width": 14.117647058823529, "height": 14.117647058823529, "path": "summer-a.ear-left-dot"} + }, + "ear-left-dot-11": { + "ear-left-dot": {"x": 0.5611764705882355, "y": 1.5111764705882353, "rotation": -0.95, "width": 14.117647058823529, "height": 14.117647058823529, "path": "summer-a.ear-left-dot"} + }, + "ear-left-dot-12": { + "ear-left-dot": {"x": 0.5611764705882355, "y": 1.5111764705882353, "rotation": -0.95, "width": 14.117647058823529, "height": 14.117647058823529, "path": "summer-a.ear-left-dot"} + }, + "ear-left-under": { + "ear-left-under": {"x": 84.40411764705883, "y": -22.781764705882363, "rotation": -90, "width": 129.41176470588235, "height": 218.82352941176472, "path": "summer-a.ear-left-under"} + }, + "ear-left-upper": { + "ear-left-upper": {"x": 86.34529411764706, "y": -23.664117647058827, "rotation": -90, "width": 143.52941176470588, "height": 230.58823529411765, "path": "summer-a.ear-left-upper"} + }, + "ear-right-bubble": { + "ear-right-bubble": { + "type": "mesh", + "uvs": [ + 0.93928, 0.50958, 0.95558, 0.59885, 0.96791, 0.66638, 0.98006, 0.73289, 1, 0.84205, 1, 0.89818, 1, 0.9625, 0.9567, 0.9625, 0.9208, 0.9625, 0.88771, 0.9625, 0.83969, 0.9625, 0.79967, + 0.9625, 0.76574, 0.9625, 0.73418, 0.9625, 0.69508, 0.9625, 0.6661, 0.9625, 0.6319, 0.9625, 0.6046, 0.9625, 0.57454, 0.9625, 0.53755, 0.9625, 0.50387, 0.9625, 0.47341, 0.9625, + 0.44466, 0.9625, 0.41233, 0.9625, 0.37317, 0.9625, 0.33787, 0.9625, 0.30333, 0.9625, 0.2648, 0.9625, 0.21937, 0.9625, 0.17434, 0.9625, 0.12959, 0.9625, 0.08769, 0.9625, 0, 0.9625, + 0.02085, 0.89779, 0.04055, 0.83664, 0.06626, 0.75682, 0.08854, 0.68766, 0.11527, 0.60468, 0.13788, 0.53451, 0.35753, 0.0375, 0.43128, 0.0375, 0.52161, 0.0375, 0.60662, 0.0375, + 0.67954, 0.0375, 0.54109, 0.5336, 0.30907, 0.53412, 0.75362, 0.52077, 0.84707, 0.51514, 0.2081, 0.53435, 0.42115, 0.53387, 0.64269, 0.52747, 0.1892, 0.60156, 0.3018, 0.60447, + 0.41972, 0.60346, 0.54053, 0.60135, 0.64648, 0.59785, 0.76151, 0.59644, 0.87262, 0.58988, 0.16806, 0.67676, 0.29497, 0.67061, 0.41838, 0.66857, 0.54, 0.66508, 0.65011, 0.66538, + 0.7681, 0.65967, 0.89666, 0.66021, 0.14733, 0.75044, 0.28705, 0.74721, 0.41688, 0.74143, 0.53942, 0.73556, 0.6538, 0.73393, 0.7757, 0.7326, 0.91933, 0.7265, 0.12337, 0.83566, 0.2782, + 0.83283, 0.4151, 0.82771, 0.53871, 0.82207, 0.65852, 0.82169, 0.7847, 0.8189, 0.95379, 0.82732, 0.97627, 0.89309, 0.79208, 0.88971, 0.66236, 0.89294, 0.5381, 0.89586, 0.41375, + 0.89349, 0.2717, 0.89571, 0.10571, 0.89844, 0.53197, 0.30141, 0.39415, 0.1884, 0.65961, 0.2117, 0.25473, 0.53425, 0.24202, 0.60293, 0.22911, 0.6738, 0.21379, 0.7489, 0.19729, + 0.83431, 0.18704, 0.8971, 0.36352, 0.534, 0.36013, 0.60397, 0.35748, 0.66957, 0.35288, 0.74428, 0.34802, 0.83022, 0.34383, 0.89458, 0.48024, 0.53373, 0.47847, 0.60244, 0.47433, + 0.66696, 0.47563, 0.73861, 0.47402, 0.82502, 0.47337, 0.89463, 0.58955, 0.53067, 0.59344, 0.5996, 0.59605, 0.66523, 0.5961, 0.73475, 0.60032, 0.82187, 0.60296, 0.89434, 0.69391, + 0.52438, 0.69915, 0.59721, 0.70691, 0.66263, 0.71206, 0.7333, 0.71954, 0.82034, 0.72813, 0.8913, 0.80125, 0.5179, 0.81428, 0.59333, 0.8348, 0.65995, 0.84793, 0.72953, 0.87862, + 0.82358, 0.89305, 0.89156, 0.19669, 0.67537, 0.17782, 0.74974, 0.1594, 0.835, 0.1429, 0.89783, 0.26012, 0.6723, 0.25017, 0.74806, 0.23685, 0.83359, 0.22589, 0.89647, 0.30659, + 0.89517, 0.3131, 0.83153, 0.31569, 0.74593, 0.32231, 0.67016, 0.38717, 0.66908, 0.38553, 0.74282, 0.38068, 0.829, 0.37648, 0.89407, 0.44462, 0.89408, 0.44322, 0.82643, 0.44458, + 0.7401, 0.44621, 0.66777, 0.50711, 0.66602, 0.50646, 0.73714, 0.50582, 0.82357, 0.50482, 0.89523, 0.57134, 0.89508, 0.5687, 0.82197, 0.56865, 0.73514, 0.5654, 0.66515, 0.62192, + 0.6653, 0.6236, 0.73436, 0.62525, 0.8218, 0.62839, 0.89374, 0.69427, 0.89215, 0.76244, 0.89045, 0.84047, 0.89059, 0.93306, 0.89229, 0.91732, 0.8255, 0.82617, 0.82097, 0.75013, + 0.81967, 0.6863, 0.82108, 0.68017, 0.73364, 0.74166, 0.73297, 0.80979, 0.73115, 0.88285, 0.72805, 0.86581, 0.66008, 0.79931, 0.6598, 0.73613, 0.66121, 0.67214, 0.66431, 0.09776, + 0.92671, 0.13724, 0.92534, 0.1817, 0.92459, 0.22313, 0.92439, 0.26892, 0.92268, 0.30526, 0.92265, 0.34139, 0.92236, 0.3751, 0.92252, 0.41313, 0.92351, 0.44464, 0.92289, 0.47339, + 0.92339, 0.5044, 0.9248, 0.53787, 0.92389, 0.57268, 0.92341, 0.60366, 0.9233, 0.62995, 0.92432, 0.66398, 0.92316, 0.69464, 0.92383, 0.73085, 0.92333, 0.76403, 0.92521, 0.79572, + 0.92461, 0.84011, 0.92404, 0.89075, 0.92209, 0.92774, 0.92274, 0.96706, 0.92576 + ], + "triangles": [ + 8, 196, 7, 9, 195, 8, 8, 195, 196, 10, 194, 9, 9, 194, 195, 10, 11, 194, 12, 193, 11, 11, 193, 194, 13, 192, 12, 12, 192, 193, 14, 191, 13, 13, 191, 192, 15, 190, 14, 14, 190, 191, + 15, 189, 190, 191, 158, 192, 192, 80, 193, 192, 158, 80, 194, 193, 159, 194, 159, 195, 159, 193, 80, 189, 157, 190, 190, 118, 191, 190, 157, 118, 191, 118, 158, 189, 81, 157, 195, + 124, 196, 196, 124, 160, 195, 159, 124, 81, 164, 157, 81, 76, 164, 157, 117, 118, 157, 164, 117, 159, 123, 124, 124, 123, 161, 118, 163, 158, 118, 117, 163, 80, 162, 159, 159, 162, + 123, 158, 77, 80, 158, 163, 77, 80, 77, 162, 162, 122, 123, 76, 165, 164, 76, 69, 165, 164, 116, 117, 164, 165, 116, 77, 167, 162, 117, 166, 163, 117, 116, 166, 163, 70, 77, 163, + 166, 70, 77, 70, 167, 165, 115, 116, 116, 171, 166, 166, 63, 70, 146, 103, 145, 68, 61, 152, 68, 145, 61, 151, 152, 109, 110, 153, 154, 143, 144, 104, 16, 189, 15, 17, 188, 16, 16, + 188, 189, 18, 187, 17, 17, 187, 188, 18, 19, 186, 19, 185, 186, 18, 186, 187, 20, 184, 19, 19, 184, 185, 20, 21, 184, 22, 183, 21, 21, 183, 184, 23, 181, 22, 181, 182, 22, 22, 182, + 183, 184, 148, 185, 184, 183, 148, 187, 156, 188, 188, 81, 189, 188, 156, 81, 185, 149, 186, 185, 82, 149, 185, 148, 82, 182, 83, 141, 182, 181, 83, 186, 112, 187, 186, 149, 112, + 182, 106, 183, 183, 106, 148, 187, 112, 156, 182, 141, 106, 150, 149, 82, 147, 75, 82, 82, 148, 147, 82, 75, 150, 106, 105, 148, 148, 105, 147, 149, 111, 112, 149, 150, 111, 105, + 106, 142, 112, 155, 156, 112, 111, 155, 83, 74, 141, 74, 142, 141, 106, 141, 142, 156, 76, 81, 156, 155, 76, 74, 67, 142, 142, 143, 105, 142, 67, 143, 105, 104, 147, 105, 143, 104, + 147, 146, 75, 147, 104, 146, 75, 68, 150, 75, 146, 68, 68, 151, 150, 150, 110, 111, 150, 151, 110, 111, 154, 155, 111, 110, 154, 155, 69, 76, 155, 154, 69, 104, 103, 146, 146, 145, + 68, 68, 152, 151, 151, 109, 110, 24, 180, 23, 25, 179, 24, 24, 179, 180, 26, 178, 25, 25, 178, 179, 27, 177, 26, 26, 177, 178, 28, 176, 27, 27, 176, 177, 29, 175, 28, 28, 175, 176, + 30, 174, 29, 29, 174, 175, 31, 173, 30, 30, 173, 174, 174, 128, 175, 174, 85, 128, 175, 94, 176, 175, 128, 94, 176, 132, 177, 176, 94, 132, 180, 140, 181, 177, 84, 178, 177, 132, 84, + 178, 133, 179, 178, 84, 133, 179, 100, 180, 180, 100, 140, 179, 133, 100, 128, 127, 94, 94, 93, 132, 94, 127, 93, 132, 131, 84, 132, 93, 131, 84, 73, 133, 84, 131, 73, 133, 134, 100, + 133, 73, 134, 100, 99, 140, 100, 134, 99, 140, 139, 83, 140, 99, 139, 93, 92, 131, 131, 130, 73, 131, 92, 130, 73, 66, 134, 73, 130, 66, 134, 135, 99, 134, 66, 135, 99, 98, 139, 99, + 135, 98, 139, 138, 74, 139, 98, 138, 74, 138, 67, 130, 129, 66, 66, 59, 135, 135, 136, 98, 135, 59, 136, 98, 97, 138, 98, 136, 97, 138, 137, 67, 23, 180, 181, 181, 140, 83, 83, 139, + 74, 128, 72, 127, 127, 126, 93, 93, 126, 92, 126, 125, 92, 85, 34, 72, 168, 64, 71, 168, 169, 64, 65, 58, 126, 126, 58, 125, 59, 52, 136, 69, 172, 165, 165, 172, 115, 116, 115, 171, + 154, 62, 69, 120, 170, 56, 65, 36, 58, 58, 51, 125, 37, 38, 51, 51, 48, 90, 51, 38, 48, 78, 3, 4, 64, 169, 57, 121, 120, 57, 120, 47, 57, 67, 137, 60, 143, 60, 144, 144, 103, 104, + 110, 109, 153, 154, 153, 62, 69, 62, 172, 97, 136, 96, 97, 96, 137, 96, 136, 52, 60, 137, 53, 60, 53, 144, 53, 137, 96, 103, 144, 102, 103, 102, 145, 102, 144, 53, 61, 145, 54, 172, + 62, 55, 55, 62, 153, 152, 108, 109, 55, 153, 108, 153, 109, 108, 61, 54, 152, 152, 54, 108, 54, 145, 102, 172, 114, 115, 172, 55, 114, 115, 114, 171, 171, 114, 56, 90, 89, 52, 52, + 45, 96, 52, 89, 45, 96, 95, 53, 96, 45, 95, 53, 49, 102, 53, 95, 49, 90, 48, 89, 102, 101, 54, 102, 49, 101, 54, 44, 108, 44, 107, 108, 54, 101, 44, 55, 108, 50, 108, 107, 50, 55, + 113, 114, 55, 50, 113, 114, 46, 56, 114, 113, 46, 56, 119, 120, 56, 46, 119, 120, 119, 47, 57, 47, 0, 87, 48, 38, 87, 89, 48, 87, 45, 89, 87, 95, 45, 49, 95, 86, 87, 38, 39, 101, 49, + 86, 87, 86, 95, 101, 86, 44, 41, 87, 40, 87, 41, 86, 44, 86, 107, 107, 86, 50, 50, 86, 113, 46, 113, 88, 119, 46, 88, 47, 119, 88, 86, 88, 113, 47, 88, 0, 0, 88, 43, 88, 41, 42, 88, + 86, 41, 88, 42, 43, 87, 39, 40, 57, 0, 1, 1, 64, 57, 64, 1, 2, 71, 2, 3, 58, 37, 51, 36, 37, 58, 91, 51, 90, 35, 36, 65, 125, 51, 91, 34, 35, 72, 72, 35, 65, 33, 34, 85, 169, 121, + 57, 171, 56, 63, 170, 63, 56, 138, 97, 137, 67, 60, 143, 59, 129, 52, 52, 129, 90, 71, 64, 2, 3, 78, 71, 78, 161, 71, 91, 90, 129, 170, 120, 121, 122, 121, 169, 161, 168, 71, 92, + 125, 91, 72, 65, 127, 127, 65, 126, 122, 169, 168, 92, 91, 130, 130, 91, 129, 123, 122, 168, 166, 171, 63, 70, 170, 167, 70, 63, 170, 167, 121, 122, 167, 170, 121, 66, 129, 59, 85, + 32, 33, 173, 85, 174, 31, 32, 173, 173, 32, 85, 85, 72, 128, 6, 197, 79, 162, 167, 122, 7, 197, 6, 160, 161, 78, 197, 160, 79, 196, 160, 197, 7, 196, 197, 124, 161, 160, 160, 78, 79, + 123, 168, 161, 6, 79, 5, 79, 78, 4, 79, 4, 5 + ], + "vertices": [ + 1, 31, 39.72, 33.4, 1, 1, 31, 46.93, 34.38, 1, 1, 31, 52.37, 35.12, 1, 1, 31, 58.6, 36.08, 1, 4, 31, 66.62, 38.45, 0.9295, 36, 61.48, 0.37, 1e-05, 37, 40.07, 0.48, 0.00266, 38, 18.6, + 0.48, 0.06784, 4, 31, 70.87, 39.07, 0.79905, 36, 62.32, -3.84, 1e-05, 37, 40.92, -3.73, 0.00721, 38, 19.44, -3.73, 0.19373, 4, 31, 76.95, 40.59, 0.74731, 36, 64.15, -9.83, 0, 37, + 42.75, -9.72, 0.00973, 38, 21.27, -9.72, 0.24296, 4, 31, 76.59, 36.12, 0.54785, 36, 59.68, -9.71, 1e-05, 37, 38.27, -9.6, 0.02168, 38, 16.8, -9.6, 0.43046, 4, 31, 76.3, 32.42, + 0.43038, 36, 55.96, -9.61, 3e-05, 37, 34.56, -9.5, 0.03847, 38, 13.08, -9.5, 0.53112, 4, 31, 76.02, 29.01, 0.36035, 36, 52.54, -9.51, 9e-05, 37, 31.14, -9.41, 0.06275, 38, 9.66, + -9.41, 0.57681, 4, 31, 75.63, 24.06, 0.2889, 36, 47.58, -9.38, 0.00026, 37, 26.17, -9.27, 0.09917, 38, 4.7, -9.27, 0.61167, 4, 31, 75.3, 19.93, 0.22591, 36, 43.44, -9.26, 0.0007, 37, + 22.03, -9.16, 0.14876, 38, 0.56, -9.16, 0.62463, 4, 31, 75.15, 17.12, 0.17724, 36, 40.62, -9.26, 0.0017, 37, 19.22, -9.16, 0.21115, 38, -2.26, -9.16, 0.60991, 4, 31, 75.01, 14.5, + 0.14418, 36, 38, -9.26, 0.00385, 37, 16.6, -9.16, 0.28407, 38, -4.88, -9.16, 0.5679, 4, 31, 74.84, 11.26, 0.12448, 36, 34.76, -9.26, 0.00813, 37, 13.35, -9.16, 0.36326, 38, -8.12, + -9.16, 0.50413, 4, 31, 74.71, 8.86, 0.11438, 36, 32.35, -9.26, 0.016, 37, 10.95, -9.16, 0.44276, 38, -10.53, -9.16, 0.42686, 4, 31, 74.56, 6.02, 0.11006, 36, 29.51, -9.26, 0.02948, + 37, 8.11, -9.16, 0.51561, 38, -13.37, -9.16, 0.34486, 4, 31, 74.45, 3.76, 0.10858, 36, 27.25, -9.26, 0.05095, 37, 5.84, -9.16, 0.57474, 38, -15.63, -9.16, 0.26573, 4, 31, 74.31, + 1.27, 0.10802, 36, 24.75, -9.26, 0.08291, 37, 3.35, -9.16, 0.614, 38, -18.13, -9.16, 0.19506, 4, 31, 74.15, -1.8, 0.1074, 36, 21.68, -9.26, 0.12742, 37, 0.28, -9.16, 0.62906, 38, + -21.2, -9.16, 0.13612, 4, 31, 74.01, -4.59, 0.10634, 36, 18.89, -9.26, 0.18549, 37, -2.52, -9.16, 0.61812, 38, -23.99, -9.16, 0.09006, 4, 31, 73.87, -7.11, 0.10502, 36, 16.36, -9.26, + 0.25646, 37, -5.05, -9.16, 0.58221, 38, -26.52, -9.16, 0.05631, 4, 31, 73.75, -9.5, 0.10419, 36, 13.97, -9.26, 0.33753, 37, -7.43, -9.16, 0.52513, 38, -28.91, -9.16, 0.03316, 4, 31, + 73.61, -12.18, 0.10536, 36, 11.29, -9.26, 0.42349, 37, -10.12, -9.16, 0.45282, 38, -31.59, -9.16, 0.01833, 4, 31, 73.44, -15.42, 0.11098, 36, 8.04, -9.26, 0.50701, 37, -13.37, -9.16, + 0.37254, 38, -34.84, -9.16, 0.00948, 4, 31, 73.28, -18.35, 0.12436, 36, 5.11, -9.26, 0.57939, 37, -16.3, -9.16, 0.29168, 38, -37.77, -9.16, 0.00457, 4, 31, 73.13, -21.21, 0.149, 36, + 2.24, -9.26, 0.63222, 37, -19.16, -9.16, 0.21673, 38, -40.64, -9.16, 0.00205, 4, 31, 72.96, -24.4, 0.18726, 36, -0.96, -9.26, 0.65948, 37, -22.36, -9.16, 0.15241, 38, -43.84, -9.16, + 0.00085, 4, 31, 72.77, -28.17, 0.23866, 36, -4.73, -9.26, 0.65975, 37, -26.13, -9.16, 0.10126, 38, -47.61, -9.16, 0.00033, 4, 31, 72.57, -31.9, 0.29871, 36, -8.46, -9.26, 0.63741, + 37, -29.87, -9.16, 0.06376, 38, -51.34, -9.16, 0.00012, 4, 31, 72.37, -35.61, 0.35932, 36, -12.18, -9.26, 0.60181, 37, -33.58, -9.16, 0.03884, 38, -55.06, -9.16, 4e-05, 4, 31, 72.19, + -39.08, 0.49297, 36, -15.66, -9.26, 0.48586, 37, -37.06, -9.16, 0.02116, 38, -58.54, -9.16, 1e-05, 4, 31, 71.81, -46.35, 0.66969, 36, -22.93, -9.26, 0.32512, 37, -44.34, -9.16, + 0.00518, 38, -65.81, -9.16, 0, 4, 31, 66.73, -44.35, 0.73638, 36, -21.2, -4.09, 0.26049, 37, -42.61, -3.98, 0.00313, 38, -64.08, -3.98, 0, 4, 31, 61.93, -42.46, 0.74288, 36, -19.57, + 0.8, 0.25402, 37, -40.97, 0.91, 0.00309, 38, -62.45, 0.91, 1e-05, 2, 31, 55.67, -40, 0.86, 36, -17.44, 7.19, 0.14, 2, 31, 50.24, -37.86, 0.87418, 36, -15.59, 12.72, 0.12582, 1, 31, + 43.72, -35.29, 1, 1, 31, 38.22, -33.12, 1, 2, 31, -0.53, -12.83, 0.99965, 36, 6.74, 64.74, 0.00035, 2, 31, -0.21, -6.72, 0.9998, 36, 12.86, 64.74, 0.0002, 3, 31, 0.19, 0.77, 0.99981, + 36, 20.36, 64.74, 9e-05, 38, -22.52, 64.84, 0.0001, 3, 31, 0.56, 7.82, 0.99975, 36, 27.41, 64.74, 1e-05, 38, -15.47, 64.84, 0.00024, 2, 31, 0.88, 13.86, 0.99954, 38, -9.41, 64.84, + 0.00046, 4, 31, 39.9, 0.3, 0.88429, 36, 21.98, 25.05, 0.02526, 37, 0.57, 25.15, 0.06552, 38, -20.9, 25.15, 0.02493, 1, 31, 38.93, -18.93, 1, 4, 31, 39.81, 17.97, 0.94373, 36, 39.62, + 26.07, 0.00089, 37, 18.21, 26.18, 0.01419, 38, -3.26, 26.18, 0.04119, 1, 31, 39.76, 25.74, 1, 1, 31, 38.51, -27.3, 1, 4, 31, 39.4, -9.64, 0.88619, 36, 12.02, 25.03, 0.05505, 37, + -9.38, 25.13, 0.05102, 38, -30.86, 25.13, 0.00774, 4, 31, 39.86, 8.75, 0.89286, 36, 30.41, 25.54, 0.00746, 37, 9, 25.64, 0.04877, 38, -12.47, 25.64, 0.05092, 1, 31, 43.8, -29.15, 1, + 4, 31, 44.52, -19.83, 0.74343, 36, 2.11, 19.38, 0.19678, 37, -19.29, 19.48, 0.05726, 38, -40.77, 19.48, 0.00254, 4, 31, 44.96, -10.05, 0.58833, 36, 11.9, 19.46, 0.20061, 37, -9.5, + 19.56, 0.19026, 38, -30.98, 19.56, 0.0208, 4, 31, 45.31, -0.03, 0.58846, 36, 21.93, 19.63, 0.08112, 37, 0.53, 19.73, 0.24909, 38, -20.95, 19.73, 0.08133, 4, 31, 45.5, 8.76, 0.59817, + 36, 30.72, 19.91, 0.02026, 37, 9.32, 20.01, 0.18761, 38, -12.16, 20.01, 0.19395, 4, 31, 45.89, 18.3, 0.66183, 36, 40.27, 20.02, 0.00346, 37, 18.87, 20.13, 0.07957, 38, -2.61, 20.13, + 0.25514, 1, 31, 45.85, 27.54, 1, 4, 31, 49.71, -31.22, 0.84023, 36, -8.99, 13.6, 0.15068, 37, -30.39, 13.7, 0.00899, 38, -51.87, 13.7, 0.0001, 4, 31, 49.78, -20.68, 0.48016, 36, + 1.55, 14.09, 0.41733, 37, -19.86, 14.19, 0.10062, 38, -41.33, 14.19, 0.0019, 4, 31, 50.15, -10.44, 0.42576, 36, 11.79, 14.25, 0.28082, 37, -9.61, 14.36, 0.27628, 38, -31.09, 14.36, + 0.01714, 4, 31, 50.4, -0.34, 0.43345, 36, 21.89, 14.53, 0.09343, 37, 0.48, 14.63, 0.37698, 38, -20.99, 14.63, 0.09613, 4, 31, 50.91, 8.78, 0.43708, 36, 31.02, 14.51, 0.01603, 37, + 9.62, 14.61, 0.27127, 38, -11.86, 14.61, 0.27562, 4, 31, 50.97, 18.59, 0.51068, 36, 40.82, 14.96, 0.00179, 37, 19.41, 15.07, 0.09933, 38, -2.06, 15.07, 0.3882, 4, 31, 51.57, 29.24, + 0.94195, 36, 51.49, 14.92, 4e-05, 37, 30.08, 15.02, 0.00385, 38, 8.61, 15.02, 0.05416, 4, 31, 55.51, -33.25, 0.72549, 36, -10.71, 7.7, 0.2621, 37, -32.11, 7.81, 0.01235, 38, -53.59, + 7.81, 6e-05, 4, 31, 55.86, -21.65, 0.38729, 36, 0.89, 7.96, 0.4981, 37, -20.51, 8.06, 0.11341, 38, -41.99, 8.06, 0.0012, 4, 31, 55.96, -10.87, 0.32692, 36, 11.67, 8.42, 0.3274, 37, + -9.74, 8.53, 0.32983, 38, -31.21, 8.53, 0.01585, 4, 31, 56.03, -0.69, 0.33677, 36, 21.84, 8.89, 0.10146, 37, 0.43, 9, 0.45593, 38, -21.04, 9, 0.10584, 4, 31, 56.4, 8.8, 0.33839, 36, + 31.33, 9.02, 0.0144, 37, 9.93, 9.13, 0.32329, 38, -11.55, 9.13, 0.32392, 4, 31, 57.13, 19.32, 0.42143, 36, 41.87, 8.84, 0.00109, 37, 20.47, 8.95, 0.11176, 38, -1.01, 8.95, 0.46572, + 4, 31, 58.69, 31.45, 0.79569, 36, 54.07, 7.92, 5e-05, 37, 32.67, 8.03, 0.01091, 38, 11.19, 8.03, 0.19335, 4, 31, 62.21, -35.59, 0.66085, 36, -12.7, 0.88, 0.32566, 37, -34.1, 0.99, + 0.01346, 38, -55.58, 0.99, 3e-05, 4, 31, 62.66, -22.75, 0.31024, 36, 0.16, 1.11, 0.56299, 37, -21.25, 1.21, 0.12589, 38, -42.72, 1.21, 0.00089, 4, 31, 62.85, -11.38, 0.24349, 36, + 11.52, 1.52, 0.36477, 37, -9.89, 1.62, 0.37599, 38, -31.36, 1.62, 0.01574, 4, 31, 62.94, -1.11, 0.2525, 36, 21.78, 1.97, 0.10936, 37, 0.37, 2.08, 0.52284, 38, -21.1, 2.08, 0.1153, 4, + 31, 63.43, 8.82, 0.2544, 36, 31.72, 2, 0.01401, 37, 10.32, 2.11, 0.36809, 38, -11.16, 2.11, 0.3635, 4, 31, 63.63, 19.58, 0.3466, 36, 42.48, 2.36, 0.00077, 37, 21.07, 2.47, 0.1237, + 38, -0.4, 2.47, 0.52893, 4, 31, 65.17, 33.27, 0.69411, 36, 56.23, 1.55, 3e-05, 37, 34.83, 1.66, 0.01435, 38, 13.35, 1.66, 0.29151, 4, 31, 70.52, 34.86, 0.61986, 36, 58.1, -3.71, + 1e-05, 37, 36.69, -3.61, 0.01658, 38, 15.22, -3.61, 0.36355, 4, 31, 69.45, 19.61, 0.28549, 36, 42.81, -3.44, 0.00065, 37, 21.4, -3.34, 0.13463, 38, -0.07, -3.34, 0.57924, 4, 31, + 69.14, 8.84, 0.18483, 36, 32.04, -3.7, 0.01432, 37, 10.64, -3.59, 0.40541, 38, -10.84, -3.59, 0.39544, 4, 31, 68.83, -1.47, 0.18141, 36, 21.73, -3.93, 0.11681, 37, 0.32, -3.83, + 0.57764, 38, -21.15, -3.83, 0.12413, 4, 31, 68.1, -11.77, 0.17479, 36, 11.41, -3.74, 0.39444, 37, -10, -3.64, 0.41447, 38, -31.47, -3.64, 0.0163, 4, 31, 67.66, -23.55, 0.24784, 36, + -0.38, -3.92, 0.61396, 37, -21.79, -3.82, 0.13743, 38, -43.26, -3.82, 0.00077, 4, 31, 67.15, -37.32, 0.59732, 36, -14.16, -4.14, 0.38768, 37, -35.56, -4.03, 0.01499, 38, -57.04, + -4.03, 1e-05, 4, 31, 21.31, 0.52, 0.98403, 36, 21.22, 43.62, 0.00516, 37, -0.19, 43.73, 0.00609, 38, -21.66, 43.73, 0.00473, 3, 31, 11.68, -10.43, 0.98457, 36, 9.78, 52.66, 0.01421, + 37, -11.62, 52.77, 0.00123, 3, 31, 14.7, 11.48, 0.98807, 37, 10.41, 50.91, 0.00101, 38, -11.07, 50.91, 0.01092, 1, 31, 38.71, -23.44, 1, 4, 31, 44.14, -24.78, 0.93122, 36, -2.85, + 19.5, 0.05888, 37, -24.25, 19.61, 0.00959, 38, -45.73, 19.61, 0.0003, 4, 31, 49.74, -26.15, 0.67882, 36, -3.92, 13.83, 0.287, 37, -25.32, 13.94, 0.03374, 38, -46.8, 13.94, 0.00045, + 4, 31, 55.68, -27.73, 0.52353, 36, -5.19, 7.82, 0.4314, 37, -26.59, 7.93, 0.04479, 38, -48.07, 7.93, 0.00029, 4, 31, 62.43, -29.46, 0.41464, 36, -6.56, 0.99, 0.53292, 37, -27.96, + 1.1, 0.05226, 38, -49.44, 1.1, 0.00018, 4, 31, 67.4, -30.57, 0.35706, 36, -7.41, -4.03, 0.58638, 37, -28.81, -3.93, 0.05644, 38, -50.29, -3.93, 0.00012, 4, 31, 39.16, -14.42, + 0.88311, 36, 7.24, 25.02, 0.07338, 37, -14.17, 25.12, 0.03978, 38, -35.64, 25.12, 0.00372, 4, 31, 44.74, -15, 0.62555, 36, 6.96, 19.42, 0.24007, 37, -14.45, 19.52, 0.1259, 38, + -35.92, 19.52, 0.00848, 4, 31, 49.97, -15.49, 0.4342, 36, 6.74, 14.17, 0.37611, 37, -14.67, 14.27, 0.18375, 38, -36.14, 14.27, 0.00595, 4, 31, 55.91, -16.19, 0.33684, 36, 6.35, 8.19, + 0.44427, 37, -15.05, 8.3, 0.21425, 38, -36.53, 8.3, 0.00464, 4, 31, 62.76, -16.95, 0.25537, 36, 5.95, 1.32, 0.49872, 37, -15.45, 1.42, 0.24179, 38, -36.93, 1.42, 0.00413, 4, 31, + 67.88, -17.57, 0.18921, 36, 5.6, -3.83, 0.54119, 37, -15.8, -3.73, 0.26556, 38, -37.28, -3.73, 0.00404, 4, 31, 39.65, -4.74, 0.83361, 36, 16.93, 25.04, 0.05679, 37, -4.48, 25.14, + 0.08927, 38, -25.95, 25.14, 0.02033, 4, 31, 45.13, -5.18, 0.57797, 36, 16.78, 19.54, 0.13938, 37, -4.63, 19.65, 0.23843, 38, -26.1, 19.65, 0.04422, 4, 31, 50.27, -5.8, 0.42696, 36, + 16.43, 14.38, 0.17737, 37, -4.97, 14.48, 0.35156, 38, -26.45, 14.48, 0.04411, 4, 31, 56, -5.99, 0.33132, 36, 16.54, 8.65, 0.20059, 37, -4.86, 8.75, 0.42277, 38, -26.34, 8.75, + 0.04531, 4, 31, 62.89, -6.48, 0.24781, 36, 16.41, 1.73, 0.22055, 37, -4.99, 1.84, 0.48389, 38, -26.47, 1.84, 0.04775, 4, 31, 68.45, -6.83, 0.17763, 36, 16.35, -3.83, 0.23735, 37, + -5.05, -3.73, 0.53429, 38, -26.53, -3.73, 0.05074, 4, 31, 39.88, 4.33, 0.83746, 36, 26, 25.28, 0.02009, 37, 4.59, 25.39, 0.08772, 38, -16.88, 25.39, 0.05473, 4, 31, 45.41, 4.36, + 0.58276, 36, 26.32, 19.77, 0.04346, 37, 4.92, 19.87, 0.23645, 38, -16.56, 19.87, 0.13732, 4, 31, 50.66, 4.3, 0.43226, 36, 26.54, 14.52, 0.04191, 37, 5.13, 14.62, 0.34769, 38, -16.34, + 14.62, 0.17814, 4, 31, 56.21, 4.01, 0.33656, 36, 26.54, 8.96, 0.0422, 37, 5.14, 9.06, 0.41771, 38, -16.34, 9.06, 0.20353, 4, 31, 63.19, 4, 0.25264, 36, 26.89, 1.99, 0.04384, 37, + 5.49, 2.09, 0.47782, 38, -15.99, 2.09, 0.2257, 4, 31, 68.99, 3.91, 0.18189, 36, 27.11, -3.81, 0.04615, 37, 5.71, -3.71, 0.52741, 38, -15.77, -3.71, 0.24456, 4, 31, 39.83, 13, 0.8608, + 36, 34.66, 25.79, 0.00457, 37, 13.26, 25.89, 0.04889, 38, -8.22, 25.89, 0.08574, 4, 31, 45.67, 13.13, 0.60926, 36, 35.09, 19.96, 0.00894, 37, 13.69, 20.06, 0.13479, 38, -7.79, 20.06, + 0.247, 4, 31, 50.93, 13.5, 0.45377, 36, 35.74, 14.73, 0.00554, 37, 14.33, 14.83, 0.18027, 38, -7.14, 14.83, 0.36041, 4, 31, 56.75, 13.83, 0.35749, 36, 36.37, 8.94, 0.00417, 37, + 14.96, 9.04, 0.20976, 38, -6.51, 9.04, 0.42858, 4, 31, 63.53, 14.02, 0.27612, 36, 36.92, 2.18, 0.00359, 37, 15.52, 2.28, 0.23625, 38, -5.96, 2.28, 0.48404, 4, 31, 69.3, 14.3, + 0.20954, 36, 37.5, -3.57, 0.00344, 37, 16.1, -3.46, 0.25903, 38, -5.38, -3.46, 0.52799, 1, 31, 39.78, 21.93, 1, 4, 31, 45.87, 22.69, 0.82489, 36, 44.65, 20.27, 0.00083, 37, 23.25, + 20.37, 0.0268, 38, 1.77, 20.37, 0.14748, 4, 31, 51.28, 24.11, 0.64773, 36, 46.35, 14.94, 0.00052, 37, 24.95, 15.04, 0.04091, 38, 3.47, 15.04, 0.31084, 4, 31, 57.92, 25.42, 0.53225, + 36, 48.01, 8.38, 0.00029, 37, 26.6, 8.49, 0.04857, 38, 5.13, 8.49, 0.41889, 4, 31, 64.49, 27.19, 0.46955, 36, 50.12, 1.91, 0.00016, 37, 28.71, 2.02, 0.05201, 38, 7.24, 2.02, 0.47828, + 4, 31, 70.04, 27.97, 0.41589, 36, 51.19, -3.59, 0.0001, 37, 29.78, -3.48, 0.05591, 38, 8.31, -3.48, 0.5281, 4, 31, 49.73, -28.84, 0.72647, 36, -6.61, 13.71, 0.25381, 37, -28.01, + 13.81, 0.01954, 38, -49.49, 13.81, 0.00018, 4, 31, 55.59, -30.72, 0.64422, 36, -8.18, 7.76, 0.33291, 37, -29.58, 7.86, 0.02275, 38, -51.06, 7.86, 0.00011, 4, 31, 62.32, -32.6, + 0.55448, 36, -9.7, 0.94, 0.41902, 37, -31.11, 1.04, 0.02643, 38, -52.58, 1.04, 7e-05, 4, 31, 67.27, -34.24, 0.44397, 36, -11.07, -4.09, 0.52396, 37, -32.48, -3.99, 0.03202, 38, + -53.95, -3.99, 4e-05, 4, 31, 49.76, -23.57, 0.5094, 36, -1.34, 13.95, 0.4213, 37, -22.75, 14.06, 0.06847, 38, -44.22, 14.06, 0.00083, 4, 31, 55.77, -24.72, 0.42549, 36, -2.17, 7.89, + 0.49746, 37, -23.57, 8, 0.07648, 38, -45.05, 8, 0.00057, 4, 31, 62.54, -26.18, 0.35688, 36, -3.28, 1.05, 0.55926, 37, -24.68, 1.15, 0.08347, 38, -46.16, 1.15, 0.00039, 4, 31, 67.52, + -27.35, 0.29772, 36, -4.19, -3.98, 0.61133, 37, -25.59, -3.88, 0.09064, 38, -47.07, -3.88, 0.00031, 4, 31, 67.77, -20.66, 0.21136, 36, 2.51, -3.88, 0.59029, 37, -18.89, -3.77, + 0.19654, 38, -40.37, -3.77, 0.00182, 4, 31, 62.71, -19.85, 0.275, 36, 3.05, 1.21, 0.54348, 37, -18.35, 1.32, 0.17958, 38, -39.83, 1.32, 0.00194, 4, 31, 55.88, -19.28, 0.35002, 36, + 3.27, 8.06, 0.48643, 37, -18.14, 8.17, 0.16123, 38, -39.61, 8.17, 0.00232, 4, 31, 49.86, -18.41, 0.41881, 36, 3.82, 14.12, 0.43213, 37, -17.59, 14.23, 0.1461, 38, -39.06, 14.23, + 0.00296, 4, 31, 50.06, -13.03, 0.39313, 36, 9.2, 14.21, 0.35299, 37, -12.2, 14.31, 0.24433, 38, -33.68, 14.31, 0.00955, 4, 31, 55.94, -13.47, 0.32258, 36, 9.06, 8.31, 0.39406, 37, + -12.34, 8.41, 0.27473, 38, -33.82, 8.41, 0.00863, 4, 31, 62.8, -14.24, 0.24476, 36, 8.66, 1.42, 0.43744, 37, -12.74, 1.52, 0.30953, 38, -34.22, 1.52, 0.00827, 4, 31, 67.98, -14.86, + 0.17804, 36, 8.31, -3.79, 0.47328, 37, -13.09, -3.69, 0.3403, 38, -34.57, -3.69, 0.00838, 4, 31, 68.28, -9.21, 0.17525, 36, 13.97, -3.79, 0.31355, 37, -7.43, -3.69, 0.48153, 38, + -28.91, -3.69, 0.02968, 4, 31, 62.87, -9.04, 0.24396, 36, 13.85, 1.62, 0.29088, 37, -7.55, 1.73, 0.43695, 38, -29.03, 1.73, 0.02821, 4, 31, 55.98, -8.57, 0.32275, 36, 13.97, 8.53, + 0.26435, 37, -7.44, 8.63, 0.38552, 38, -28.91, 8.63, 0.02739, 4, 31, 50.21, -8.13, 0.39269, 36, 14.1, 14.31, 0.24007, 37, -7.3, 14.42, 0.33961, 38, -28.78, 14.42, 0.02763, 4, 31, + 50.33, -3.07, 0.39835, 36, 19.16, 14.45, 0.13664, 37, -2.25, 14.56, 0.3972, 38, -23.72, 14.56, 0.06781, 4, 31, 56.01, -3.43, 0.32898, 36, 19.1, 8.76, 0.14701, 37, -2.3, 8.87, + 0.45281, 38, -23.78, 8.87, 0.07119, 4, 31, 62.92, -3.84, 0.24968, 36, 19.05, 1.85, 0.15947, 37, -2.36, 1.96, 0.51456, 38, -23.83, 1.96, 0.07629, 4, 31, 68.64, -4.23, 0.17972, 36, + 18.97, -3.88, 0.17094, 37, -2.44, -3.78, 0.56767, 38, -23.91, -3.78, 0.08167, 4, 31, 68.91, 1.29, 0.18179, 36, 24.49, -3.87, 0.07557, 37, 3.08, -3.77, 0.56385, 38, -18.39, -3.77, + 0.17879, 4, 31, 63.06, 1.38, 0.25204, 36, 24.27, 1.98, 0.07119, 37, 2.86, 2.08, 0.51118, 38, -18.61, 2.08, 0.16559, 4, 31, 56.13, 1.74, 0.33157, 36, 24.26, 8.92, 0.0672, 37, 2.86, + 9.03, 0.44995, 38, -18.62, 9.03, 0.15128, 4, 31, 50.52, 1.76, 0.40101, 36, 23.99, 14.52, 0.06478, 37, 2.59, 14.63, 0.39483, 38, -18.89, 14.63, 0.13938, 4, 31, 50.78, 6.45, 0.401, 36, + 28.68, 14.51, 0.0258, 37, 7.28, 14.62, 0.33427, 38, -14.2, 14.62, 0.23894, 4, 31, 56.3, 6.29, 0.3309, 36, 28.82, 8.99, 0.02514, 37, 7.42, 9.09, 0.37908, 38, -14.06, 9.09, 0.26488, 4, + 31, 63.29, 6.06, 0.25155, 36, 28.96, 1.99, 0.02548, 37, 7.56, 2.1, 0.4293, 38, -13.92, 2.1, 0.29367, 4, 31, 69.06, 6.02, 0.18206, 36, 29.22, -3.76, 0.02652, 37, 7.82, -3.66, 0.47284, + 38, -13.66, -3.66, 0.31858, 4, 31, 69.22, 11.49, 0.19245, 36, 34.69, -3.64, 0.00724, 37, 13.29, -3.53, 0.3321, 38, -8.19, -3.53, 0.46821, 4, 31, 69.38, 17.15, 0.23948, 36, 40.35, + -3.5, 0.00153, 37, 18.94, -3.39, 0.19195, 38, -2.53, -3.39, 0.56704, 4, 31, 69.73, 23.61, 0.346, 36, 46.82, -3.51, 0.00026, 37, 25.42, -3.41, 0.08922, 38, 3.94, -3.41, 0.56452, 4, + 31, 70.27, 31.28, 0.48407, 36, 54.51, -3.65, 4e-05, 37, 33.11, -3.54, 0.03358, 38, 11.63, -3.54, 0.48231, 4, 31, 64.84, 30.32, 0.54501, 36, 53.26, 1.73, 7e-05, 37, 31.86, 1.83, + 0.03077, 38, 10.38, 1.83, 0.42415, 4, 31, 64.01, 22.94, 0.40266, 36, 45.85, 2.16, 0.00034, 37, 24.45, 2.27, 0.08247, 38, 2.97, 2.27, 0.51452, 4, 31, 63.58, 16.63, 0.30287, 36, 39.53, + 2.26, 0.00168, 37, 18.13, 2.37, 0.17579, 38, -3.35, 2.37, 0.51965, 4, 31, 63.48, 11.19, 0.25994, 36, 34.09, 2.08, 0.00726, 37, 12.69, 2.19, 0.30245, 38, -8.79, 2.19, 0.43035, 4, 31, + 56.56, 11.07, 0.3382, 36, 33.61, 8.98, 0.00776, 37, 12.21, 9.09, 0.26884, 38, -9.27, 9.09, 0.38519, 4, 31, 56.93, 16.38, 0.37706, 36, 38.93, 8.89, 0.00208, 37, 17.52, 9, 0.15821, 38, + -3.95, 9, 0.46265, 4, 31, 57.5, 22.2, 0.46779, 36, 44.77, 8.63, 0.00052, 37, 23.36, 8.73, 0.07582, 38, 1.89, 8.73, 0.45586, 4, 31, 58.3, 28.37, 0.65325, 36, 50.97, 8.16, 0.00012, 37, + 29.57, 8.26, 0.02541, 38, 8.09, 8.26, 0.32123, 4, 31, 51.42, 26.68, 0.75526, 36, 48.93, 14.93, 0.00017, 37, 27.52, 15.03, 0.02002, 38, 6.05, 15.03, 0.22455, 4, 31, 51.11, 21.17, + 0.52586, 36, 43.41, 14.95, 0.00082, 37, 22, 15.06, 0.07106, 38, 0.53, 15.06, 0.40226, 4, 31, 50.95, 15.93, 0.44455, 36, 38.16, 14.84, 0.00273, 37, 16.76, 14.94, 0.1436, 38, -4.72, + 14.94, 0.40912, 4, 31, 50.92, 10.61, 0.40864, 36, 32.85, 14.59, 0.0088, 37, 11.45, 14.7, 0.23945, 38, -10.03, 14.7, 0.34311, 4, 31, 69.38, -38.1, 0.52059, 36, -14.82, -6.4, 0.45917, + 37, -36.22, -6.3, 0.02022, 38, -57.7, -6.3, 1e-05, 4, 31, 69.44, -34.82, 0.37517, 36, -11.54, -6.29, 0.58803, 37, -32.95, -6.19, 0.03676, 38, -54.42, -6.19, 4e-05, 4, 31, 69.57, + -31.13, 0.31655, 36, -7.85, -6.23, 0.62281, 37, -29.26, -6.13, 0.06054, 38, -50.73, -6.13, 0.00011, 4, 31, 69.74, -27.7, 0.25662, 36, -4.41, -6.22, 0.64624, 37, -25.82, -6.11, + 0.09684, 38, -47.29, -6.11, 0.0003, 4, 31, 69.8, -23.9, 0.20542, 36, -0.61, -6.08, 0.64718, 37, -22.02, -5.97, 0.14662, 38, -43.49, -5.97, 0.00077, 4, 31, 69.96, -20.88, 0.16774, 36, + 2.4, -6.08, 0.62093, 37, -19, -5.97, 0.20946, 38, -40.48, -5.97, 0.00187, 4, 31, 70.09, -17.89, 0.14406, 36, 5.4, -6.05, 0.56885, 37, -16, -5.95, 0.28288, 38, -37.48, -5.95, 0.00421, + 4, 31, 70.25, -15.09, 0.13169, 36, 8.2, -6.07, 0.49722, 37, -13.21, -5.96, 0.36227, 38, -34.68, -5.96, 0.00882, 4, 31, 70.5, -11.95, 0.12708, 36, 11.36, -6.14, 0.41453, 37, -10.05, + -6.04, 0.44117, 38, -31.52, -6.04, 0.01722, 4, 31, 70.58, -9.33, 0.12668, 36, 13.97, -6.1, 0.32958, 37, -7.43, -5.99, 0.51233, 38, -28.91, -5.99, 0.03141, 4, 31, 70.75, -6.95, + 0.12812, 36, 16.36, -6.14, 0.24965, 37, -5.05, -6.03, 0.56851, 38, -26.52, -6.03, 0.05372, 4, 31, 71, -4.39, 0.12979, 36, 18.93, -6.25, 0.1799, 37, -2.47, -6.14, 0.60387, 38, -23.95, + -6.14, 0.08644, 4, 31, 71.07, -1.61, 0.13105, 36, 21.71, -6.18, 0.12302, 37, 0.3, -6.07, 0.61461, 38, -21.17, -6.07, 0.13132, 4, 31, 71.18, 1.28, 0.13159, 36, 24.6, -6.14, 0.07962, + 37, 3.19, -6.03, 0.5998, 38, -18.28, -6.03, 0.18899, 4, 31, 71.31, 3.85, 0.13189, 36, 27.17, -6.13, 0.04862, 37, 5.76, -6.02, 0.56113, 38, -15.71, -6.02, 0.25837, 4, 31, 71.51, 6.02, + 0.13282, 36, 29.35, -6.21, 0.02792, 37, 7.95, -6.1, 0.50297, 38, -13.53, -6.1, 0.33629, 4, 31, 71.56, 8.85, 0.13637, 36, 32.18, -6.12, 0.01503, 37, 10.77, -6.01, 0.43134, 38, -10.7, + -6.01, 0.41726, 4, 31, 71.75, 11.39, 0.14539, 36, 34.72, -6.17, 0.00757, 37, 13.32, -6.07, 0.35328, 38, -8.16, -6.07, 0.49376, 4, 31, 71.87, 14.39, 0.16393, 36, 37.73, -6.13, + 0.00355, 37, 16.32, -6.03, 0.27561, 38, -5.15, -6.03, 0.55691, 4, 31, 72.16, 17.13, 0.19585, 36, 40.48, -6.28, 0.00155, 37, 19.08, -6.18, 0.20422, 38, -2.4, -6.18, 0.59837, 4, 31, + 72.25, 19.76, 0.24372, 36, 43.11, -6.23, 0.00063, 37, 21.71, -6.13, 0.14329, 38, 0.23, -6.13, 0.61235, 4, 31, 72.47, 23.82, 0.30631, 36, 47.17, -6.24, 0.00024, 37, 25.77, -6.14, + 0.09501, 38, 4.29, -6.14, 0.59844, 4, 31, 72.61, 28.41, 0.3775, 36, 51.77, -6.14, 9e-05, 37, 30.37, -6.03, 0.05972, 38, 8.89, -6.03, 0.5627, 4, 31, 72.88, 31.77, 0.44548, 36, 55.14, + -6.23, 3e-05, 37, 33.74, -6.13, 0.03652, 38, 12.26, -6.13, 0.51797, 4, 31, 73.38, 35.45, 0.56131, 36, 58.84, -6.53, 1e-05, 37, 37.44, -6.43, 0.02128, 38, 15.96, -6.43, 0.41739 + ], + "hull": 44, + "edges": [ + 78, 76, 86, 0, 78, 80, 80, 82, 82, 84, 84, 86, 0, 94, 76, 96, 62, 64, 74, 76, 102, 96, 74, 102, 104, 90, 106, 98, 108, 88, 110, 100, 112, 92, 114, 94, 2, 0, 114, 2, 72, 74, 116, 102, + 72, 116, 118, 104, 120, 106, 122, 108, 124, 110, 126, 112, 128, 114, 4, 2, 128, 4, 70, 72, 130, 116, 70, 130, 132, 118, 134, 120, 136, 122, 138, 124, 140, 126, 142, 128, 8, 6, 6, 4, + 142, 6, 68, 70, 144, 130, 68, 144, 146, 132, 148, 134, 150, 136, 152, 138, 154, 140, 156, 142, 156, 8, 8, 10, 10, 12, 12, 158, 158, 156, 10, 158, 160, 154, 162, 152, 164, 150, 166, + 148, 168, 146, 170, 144, 64, 66, 66, 68, 170, 66, 82, 172, 172, 88, 98, 172, 172, 100, 80, 174, 174, 90, 96, 174, 84, 176, 176, 92, 94, 176, 90, 178, 178, 96, 102, 180, 180, 104, + 178, 180, 180, 182, 182, 184, 184, 186, 186, 188, 90, 190, 190, 98, 104, 192, 192, 106, 190, 192, 192, 194, 194, 196, 196, 198, 198, 200, 88, 202, 202, 98, 106, 204, 204, 108, 202, + 204, 204, 206, 206, 208, 208, 210, 210, 212, 88, 214, 214, 100, 108, 216, 216, 110, 214, 216, 216, 218, 218, 220, 220, 222, 222, 224, 92, 226, 226, 100, 110, 228, 228, 112, 226, 228, + 228, 230, 230, 232, 232, 234, 234, 236, 92, 238, 238, 94, 112, 240, 240, 114, 238, 240, 240, 242, 242, 244, 244, 246, 246, 248, 12, 14, 170, 64, 116, 250, 250, 182, 130, 252, 252, + 184, 250, 252, 144, 254, 254, 186, 252, 254, 170, 256, 256, 188, 254, 256, 58, 60, 60, 62, 118, 258, 258, 182, 132, 260, 260, 184, 258, 260, 146, 262, 262, 186, 260, 262, 168, 264, + 264, 188, 262, 264, 54, 56, 56, 58, 50, 52, 52, 54, 168, 266, 266, 200, 146, 268, 268, 198, 266, 268, 132, 270, 270, 196, 268, 270, 118, 272, 272, 194, 270, 272, 120, 274, 274, 194, + 134, 276, 276, 196, 274, 276, 148, 278, 278, 198, 276, 278, 166, 280, 280, 200, 278, 280, 46, 48, 48, 50, 42, 44, 44, 46, 166, 282, 282, 212, 148, 284, 284, 210, 282, 284, 134, 286, + 286, 208, 284, 286, 120, 288, 288, 206, 286, 288, 122, 290, 290, 206, 136, 292, 292, 208, 290, 292, 150, 294, 294, 210, 292, 294, 164, 296, 296, 212, 294, 296, 38, 40, 40, 42, 34, + 36, 36, 38, 164, 298, 298, 224, 150, 300, 300, 222, 298, 300, 136, 302, 302, 220, 300, 302, 122, 304, 304, 218, 302, 304, 124, 306, 306, 218, 138, 308, 308, 220, 306, 308, 152, 310, + 310, 222, 308, 310, 162, 312, 312, 224, 310, 312, 30, 32, 32, 34, 26, 28, 28, 30, 162, 314, 314, 236, 22, 24, 24, 26, 160, 316, 316, 236, 18, 20, 20, 22, 160, 318, 318, 248, 14, 16, + 16, 18, 158, 320, 320, 248, 156, 322, 322, 246, 320, 322, 154, 324, 324, 246, 318, 324, 154, 326, 326, 234, 316, 326, 152, 328, 328, 234, 314, 328, 138, 330, 330, 232, 328, 330, 140, + 332, 332, 232, 326, 332, 140, 334, 334, 244, 324, 334, 142, 336, 336, 244, 322, 336, 128, 338, 338, 242, 336, 338, 126, 340, 340, 242, 334, 340, 126, 342, 342, 230, 332, 342, 124, + 344, 344, 230, 330, 344, 62, 346, 346, 170, 60, 348, 348, 256, 346, 348, 58, 350, 350, 188, 348, 350, 56, 352, 352, 264, 350, 352, 54, 354, 354, 168, 352, 354, 52, 356, 356, 266, + 354, 356, 50, 358, 358, 200, 356, 358, 48, 360, 360, 280, 358, 360, 46, 362, 362, 166, 360, 362, 44, 364, 364, 282, 362, 364, 42, 366, 366, 212, 364, 366, 40, 368, 368, 296, 366, + 368, 38, 370, 370, 164, 368, 370, 36, 372, 372, 298, 370, 372, 34, 374, 374, 224, 372, 374, 32, 376, 376, 312, 374, 376, 30, 378, 378, 162, 376, 378, 28, 380, 380, 314, 378, 380, 26, + 382, 382, 236, 380, 382, 24, 384, 384, 316, 382, 384, 22, 386, 386, 160, 384, 386, 20, 388, 388, 318, 386, 388, 18, 390, 390, 248, 388, 390, 16, 392, 392, 320, 390, 392, 14, 394, + 394, 158, 392, 394 + ], + "width": 82.3529411764706, + "height": 72.94117647058823, + "path": "summer-a.ear-right-bubble", + "x": 0.32352941176470296, + "y": 0.529411764705884 + } + }, + "ear-right-bubble-02": { + "ear-right-bubble": { + "type": "mesh", + "uvs": [ + 0.93928, 0.50958, 0.95558, 0.59885, 0.96791, 0.66638, 0.98006, 0.73289, 1, 0.84205, 1, 0.89818, 1, 0.9625, 0.9567, 0.9625, 0.9208, 0.9625, 0.88771, 0.9625, 0.83969, 0.9625, 0.79967, + 0.9625, 0.76574, 0.9625, 0.73418, 0.9625, 0.69508, 0.9625, 0.6661, 0.9625, 0.6319, 0.9625, 0.6046, 0.9625, 0.57454, 0.9625, 0.53755, 0.9625, 0.50387, 0.9625, 0.47341, 0.9625, + 0.44466, 0.9625, 0.41233, 0.9625, 0.37317, 0.9625, 0.33787, 0.9625, 0.30333, 0.9625, 0.2648, 0.9625, 0.21937, 0.9625, 0.17434, 0.9625, 0.12959, 0.9625, 0.08769, 0.9625, 0, 0.9625, + 0.02085, 0.89779, 0.04055, 0.83664, 0.06626, 0.75682, 0.08854, 0.68766, 0.11527, 0.60468, 0.13788, 0.53451, 0.35753, 0.0375, 0.43128, 0.0375, 0.52161, 0.0375, 0.60662, 0.0375, + 0.67954, 0.0375, 0.54109, 0.5336, 0.30907, 0.53412, 0.75362, 0.52077, 0.84707, 0.51514, 0.2081, 0.53435, 0.42115, 0.53387, 0.64269, 0.52747, 0.1892, 0.60156, 0.3018, 0.60447, + 0.41972, 0.60346, 0.54053, 0.60135, 0.64648, 0.59785, 0.76151, 0.59644, 0.87262, 0.58988, 0.16806, 0.67676, 0.29497, 0.67061, 0.41838, 0.66857, 0.54, 0.66508, 0.65011, 0.66538, + 0.7681, 0.65967, 0.89666, 0.66021, 0.14733, 0.75044, 0.28705, 0.74721, 0.41688, 0.74143, 0.53942, 0.73556, 0.6538, 0.73393, 0.7757, 0.7326, 0.91933, 0.7265, 0.12337, 0.83566, 0.2782, + 0.83283, 0.4151, 0.82771, 0.53871, 0.82207, 0.65852, 0.82169, 0.7847, 0.8189, 0.95379, 0.82732, 0.97627, 0.89309, 0.79208, 0.88971, 0.66236, 0.89294, 0.5381, 0.89586, 0.41375, + 0.89349, 0.2717, 0.89571, 0.10571, 0.89844, 0.53197, 0.30141, 0.39415, 0.1884, 0.65961, 0.2117, 0.25473, 0.53425, 0.24202, 0.60293, 0.22911, 0.6738, 0.21379, 0.7489, 0.19729, + 0.83431, 0.18704, 0.8971, 0.36352, 0.534, 0.36013, 0.60397, 0.35748, 0.66957, 0.35288, 0.74428, 0.34802, 0.83022, 0.34383, 0.89458, 0.48024, 0.53373, 0.47847, 0.60244, 0.47433, + 0.66696, 0.47563, 0.73861, 0.47402, 0.82502, 0.47337, 0.89463, 0.58955, 0.53067, 0.59344, 0.5996, 0.59605, 0.66523, 0.5961, 0.73475, 0.60032, 0.82187, 0.60296, 0.89434, 0.69391, + 0.52438, 0.69915, 0.59721, 0.70691, 0.66263, 0.71206, 0.7333, 0.71954, 0.82034, 0.72813, 0.8913, 0.80125, 0.5179, 0.81428, 0.59333, 0.8348, 0.65995, 0.84793, 0.72953, 0.87862, + 0.82358, 0.89305, 0.89156, 0.19669, 0.67537, 0.17782, 0.74974, 0.1594, 0.835, 0.1429, 0.89783, 0.26012, 0.6723, 0.25017, 0.74806, 0.23685, 0.83359, 0.22589, 0.89647, 0.30659, + 0.89517, 0.3131, 0.83153, 0.31569, 0.74593, 0.32231, 0.67016, 0.38717, 0.66908, 0.38553, 0.74282, 0.38068, 0.829, 0.37648, 0.89407, 0.44462, 0.89408, 0.44322, 0.82643, 0.44458, + 0.7401, 0.44621, 0.66777, 0.50711, 0.66602, 0.50646, 0.73714, 0.50582, 0.82357, 0.50482, 0.89523, 0.57134, 0.89508, 0.5687, 0.82197, 0.56865, 0.73514, 0.5654, 0.66515, 0.62192, + 0.6653, 0.6236, 0.73436, 0.62525, 0.8218, 0.62839, 0.89374, 0.69427, 0.89215, 0.76244, 0.89045, 0.84047, 0.89059, 0.93306, 0.89229, 0.91732, 0.8255, 0.82617, 0.82097, 0.75013, + 0.81967, 0.6863, 0.82108, 0.68017, 0.73364, 0.74166, 0.73297, 0.80979, 0.73115, 0.88285, 0.72805, 0.86581, 0.66008, 0.79931, 0.6598, 0.73613, 0.66121, 0.67214, 0.66431, 0.09776, + 0.92671, 0.13724, 0.92534, 0.1817, 0.92459, 0.22313, 0.92439, 0.26892, 0.92268, 0.30526, 0.92265, 0.34139, 0.92236, 0.3751, 0.92252, 0.41313, 0.92351, 0.44464, 0.92289, 0.47339, + 0.92339, 0.5044, 0.9248, 0.53787, 0.92389, 0.57268, 0.92341, 0.60366, 0.9233, 0.62995, 0.92432, 0.66398, 0.92316, 0.69464, 0.92383, 0.73085, 0.92333, 0.76403, 0.92521, 0.79572, + 0.92461, 0.84011, 0.92404, 0.89075, 0.92209, 0.92774, 0.92274, 0.96706, 0.92576 + ], + "triangles": [ + 8, 196, 7, 9, 195, 8, 8, 195, 196, 10, 194, 9, 9, 194, 195, 10, 11, 194, 12, 193, 11, 11, 193, 194, 13, 192, 12, 12, 192, 193, 14, 191, 13, 13, 191, 192, 15, 190, 14, 14, 190, 191, + 15, 189, 190, 191, 158, 192, 192, 80, 193, 192, 158, 80, 194, 193, 159, 194, 159, 195, 159, 193, 80, 189, 157, 190, 190, 118, 191, 190, 157, 118, 191, 118, 158, 189, 81, 157, 195, + 124, 196, 196, 124, 160, 195, 159, 124, 81, 164, 157, 81, 76, 164, 157, 117, 118, 157, 164, 117, 159, 123, 124, 124, 123, 161, 118, 163, 158, 118, 117, 163, 80, 162, 159, 159, 162, + 123, 158, 77, 80, 158, 163, 77, 80, 77, 162, 162, 122, 123, 76, 165, 164, 76, 69, 165, 164, 116, 117, 164, 165, 116, 77, 167, 162, 117, 166, 163, 117, 116, 166, 163, 70, 77, 163, + 166, 70, 77, 70, 167, 165, 115, 116, 116, 171, 166, 166, 63, 70, 146, 103, 145, 68, 61, 152, 68, 145, 61, 151, 152, 109, 110, 153, 154, 143, 144, 104, 16, 189, 15, 17, 188, 16, 16, + 188, 189, 18, 187, 17, 17, 187, 188, 18, 19, 186, 19, 185, 186, 18, 186, 187, 20, 184, 19, 19, 184, 185, 20, 21, 184, 22, 183, 21, 21, 183, 184, 23, 181, 22, 181, 182, 22, 22, 182, + 183, 184, 148, 185, 184, 183, 148, 187, 156, 188, 188, 81, 189, 188, 156, 81, 185, 149, 186, 185, 82, 149, 185, 148, 82, 182, 83, 141, 182, 181, 83, 186, 112, 187, 186, 149, 112, + 182, 106, 183, 183, 106, 148, 187, 112, 156, 182, 141, 106, 150, 149, 82, 147, 75, 82, 82, 148, 147, 82, 75, 150, 106, 105, 148, 148, 105, 147, 149, 111, 112, 149, 150, 111, 105, + 106, 142, 112, 155, 156, 112, 111, 155, 83, 74, 141, 74, 142, 141, 106, 141, 142, 156, 76, 81, 156, 155, 76, 74, 67, 142, 142, 143, 105, 142, 67, 143, 105, 104, 147, 105, 143, 104, + 147, 146, 75, 147, 104, 146, 75, 68, 150, 75, 146, 68, 68, 151, 150, 150, 110, 111, 150, 151, 110, 111, 154, 155, 111, 110, 154, 155, 69, 76, 155, 154, 69, 104, 103, 146, 146, 145, + 68, 68, 152, 151, 151, 109, 110, 24, 180, 23, 25, 179, 24, 24, 179, 180, 26, 178, 25, 25, 178, 179, 27, 177, 26, 26, 177, 178, 28, 176, 27, 27, 176, 177, 29, 175, 28, 28, 175, 176, + 30, 174, 29, 29, 174, 175, 31, 173, 30, 30, 173, 174, 174, 128, 175, 174, 85, 128, 175, 94, 176, 175, 128, 94, 176, 132, 177, 176, 94, 132, 180, 140, 181, 177, 84, 178, 177, 132, 84, + 178, 133, 179, 178, 84, 133, 179, 100, 180, 180, 100, 140, 179, 133, 100, 128, 127, 94, 94, 93, 132, 94, 127, 93, 132, 131, 84, 132, 93, 131, 84, 73, 133, 84, 131, 73, 133, 134, 100, + 133, 73, 134, 100, 99, 140, 100, 134, 99, 140, 139, 83, 140, 99, 139, 93, 92, 131, 131, 130, 73, 131, 92, 130, 73, 66, 134, 73, 130, 66, 134, 135, 99, 134, 66, 135, 99, 98, 139, 99, + 135, 98, 139, 138, 74, 139, 98, 138, 74, 138, 67, 130, 129, 66, 66, 59, 135, 135, 136, 98, 135, 59, 136, 98, 97, 138, 98, 136, 97, 138, 137, 67, 23, 180, 181, 181, 140, 83, 83, 139, + 74, 128, 72, 127, 127, 126, 93, 93, 126, 92, 126, 125, 92, 85, 34, 72, 168, 64, 71, 168, 169, 64, 65, 58, 126, 126, 58, 125, 59, 52, 136, 69, 172, 165, 165, 172, 115, 116, 115, 171, + 154, 62, 69, 120, 170, 56, 65, 36, 58, 58, 51, 125, 37, 38, 51, 51, 48, 90, 51, 38, 48, 78, 3, 4, 64, 169, 57, 121, 120, 57, 120, 47, 57, 67, 137, 60, 143, 60, 144, 144, 103, 104, + 110, 109, 153, 154, 153, 62, 69, 62, 172, 97, 136, 96, 97, 96, 137, 96, 136, 52, 60, 137, 53, 60, 53, 144, 53, 137, 96, 103, 144, 102, 103, 102, 145, 102, 144, 53, 61, 145, 54, 172, + 62, 55, 55, 62, 153, 152, 108, 109, 55, 153, 108, 153, 109, 108, 61, 54, 152, 152, 54, 108, 54, 145, 102, 172, 114, 115, 172, 55, 114, 115, 114, 171, 171, 114, 56, 90, 89, 52, 52, + 45, 96, 52, 89, 45, 96, 95, 53, 96, 45, 95, 53, 49, 102, 53, 95, 49, 90, 48, 89, 102, 101, 54, 102, 49, 101, 54, 44, 108, 44, 107, 108, 54, 101, 44, 55, 108, 50, 108, 107, 50, 55, + 113, 114, 55, 50, 113, 114, 46, 56, 114, 113, 46, 56, 119, 120, 56, 46, 119, 120, 119, 47, 57, 47, 0, 87, 48, 38, 87, 89, 48, 87, 45, 89, 87, 95, 45, 49, 95, 86, 87, 38, 39, 101, 49, + 86, 87, 86, 95, 101, 86, 44, 41, 87, 40, 87, 41, 86, 44, 86, 107, 107, 86, 50, 50, 86, 113, 46, 113, 88, 119, 46, 88, 47, 119, 88, 86, 88, 113, 47, 88, 0, 0, 88, 43, 88, 41, 42, 88, + 86, 41, 88, 42, 43, 87, 39, 40, 57, 0, 1, 1, 64, 57, 64, 1, 2, 71, 2, 3, 58, 37, 51, 36, 37, 58, 91, 51, 90, 35, 36, 65, 125, 51, 91, 34, 35, 72, 72, 35, 65, 33, 34, 85, 169, 121, + 57, 171, 56, 63, 170, 63, 56, 138, 97, 137, 67, 60, 143, 59, 129, 52, 52, 129, 90, 71, 64, 2, 3, 78, 71, 78, 161, 71, 91, 90, 129, 170, 120, 121, 122, 121, 169, 161, 168, 71, 92, + 125, 91, 72, 65, 127, 127, 65, 126, 122, 169, 168, 92, 91, 130, 130, 91, 129, 123, 122, 168, 166, 171, 63, 70, 170, 167, 70, 63, 170, 167, 121, 122, 167, 170, 121, 66, 129, 59, 85, + 32, 33, 173, 85, 174, 31, 32, 173, 173, 32, 85, 85, 72, 128, 6, 197, 79, 162, 167, 122, 7, 197, 6, 160, 161, 78, 197, 160, 79, 196, 160, 197, 7, 196, 197, 124, 161, 160, 160, 78, 79, + 123, 168, 161, 6, 79, 5, 79, 78, 4, 79, 4, 5 + ], + "vertices": [ + 1, 42, 41.12, 33.33, 1, 1, 42, 48.32, 34.31, 1, 1, 42, 53.77, 35.04, 1, 1, 42, 60, 36.01, 1, 4, 42, 68.02, 38.37, 0.9295, 43, 61.47, -1.03, 1e-05, 44, 40.07, -0.92, 0.00266, 45, + 18.6, -0.92, 0.06784, 4, 42, 72.27, 39, 0.79905, 43, 62.32, -5.24, 1e-05, 44, 40.92, -5.13, 0.00721, 45, 19.44, -5.13, 0.19373, 4, 42, 78.35, 40.51, 0.74731, 43, 64.15, -11.23, 0, + 44, 42.75, -11.12, 0.00973, 45, 21.27, -11.12, 0.24296, 4, 42, 77.99, 36.05, 0.54785, 43, 59.68, -11.11, 1e-05, 44, 38.27, -11, 0.02168, 45, 16.8, -11, 0.43046, 4, 42, 77.69, 32.35, + 0.43038, 43, 55.96, -11, 3e-05, 44, 34.56, -10.9, 0.03847, 45, 13.08, -10.9, 0.53112, 4, 42, 77.42, 28.93, 0.36035, 43, 52.54, -10.91, 9e-05, 44, 31.14, -10.81, 0.06275, 45, 9.66, + -10.81, 0.57681, 4, 42, 77.02, 23.98, 0.2889, 43, 47.58, -10.78, 0.00026, 44, 26.17, -10.67, 0.09917, 45, 4.7, -10.67, 0.61167, 4, 42, 76.69, 19.85, 0.22591, 43, 43.44, -10.66, + 0.0007, 44, 22.03, -10.56, 0.14876, 45, 0.56, -10.56, 0.62463, 4, 42, 76.55, 17.04, 0.17724, 43, 40.62, -10.66, 0.0017, 44, 19.22, -10.56, 0.21115, 45, -2.26, -10.56, 0.60991, 4, 42, + 76.41, 14.43, 0.14418, 43, 38, -10.66, 0.00385, 44, 16.6, -10.56, 0.28407, 45, -4.88, -10.56, 0.5679, 4, 42, 76.24, 11.19, 0.12448, 43, 34.76, -10.66, 0.00813, 44, 13.35, -10.56, + 0.36326, 45, -8.12, -10.56, 0.50413, 4, 42, 76.11, 8.78, 0.11438, 43, 32.35, -10.66, 0.016, 44, 10.95, -10.56, 0.44276, 45, -10.53, -10.56, 0.42686, 4, 42, 75.96, 5.95, 0.11006, 43, + 29.51, -10.66, 0.02948, 44, 8.11, -10.56, 0.51561, 45, -13.37, -10.56, 0.34486, 4, 42, 75.84, 3.69, 0.10858, 43, 27.25, -10.66, 0.05095, 44, 5.84, -10.56, 0.57474, 45, -15.63, + -10.56, 0.26573, 4, 42, 75.71, 1.19, 0.10802, 43, 24.75, -10.66, 0.08291, 44, 3.35, -10.56, 0.614, 45, -18.13, -10.56, 0.19506, 4, 42, 75.55, -1.87, 0.1074, 43, 21.68, -10.66, + 0.12742, 44, 0.28, -10.56, 0.62906, 45, -21.2, -10.56, 0.13612, 4, 42, 75.4, -4.66, 0.10634, 43, 18.89, -10.66, 0.18549, 44, -2.52, -10.56, 0.61812, 45, -23.99, -10.56, 0.09006, 4, + 42, 75.27, -7.19, 0.10502, 43, 16.36, -10.66, 0.25646, 44, -5.05, -10.56, 0.58221, 45, -26.52, -10.56, 0.05631, 4, 42, 75.14, -9.57, 0.10419, 43, 13.97, -10.66, 0.33753, 44, -7.43, + -10.56, 0.52513, 45, -28.91, -10.56, 0.03316, 4, 42, 75, -12.25, 0.10536, 43, 11.29, -10.66, 0.42349, 44, -10.12, -10.56, 0.45282, 45, -31.59, -10.56, 0.01833, 4, 42, 74.83, -15.5, + 0.11098, 43, 8.04, -10.66, 0.50701, 44, -13.37, -10.56, 0.37254, 45, -34.84, -10.56, 0.00948, 4, 42, 74.68, -18.42, 0.12436, 43, 5.11, -10.66, 0.57939, 44, -16.3, -10.56, 0.29168, + 45, -37.77, -10.56, 0.00457, 4, 42, 74.53, -21.28, 0.149, 43, 2.24, -10.66, 0.63222, 44, -19.16, -10.56, 0.21673, 45, -40.64, -10.56, 0.00205, 4, 42, 74.36, -24.48, 0.18726, 43, + -0.96, -10.66, 0.65948, 44, -22.36, -10.56, 0.15241, 45, -43.84, -10.56, 0.00085, 4, 42, 74.16, -28.24, 0.23866, 43, -4.73, -10.66, 0.65975, 44, -26.13, -10.56, 0.10126, 45, -47.61, + -10.56, 0.00033, 4, 42, 73.97, -31.98, 0.29871, 43, -8.46, -10.66, 0.63741, 44, -29.87, -10.56, 0.06376, 45, -51.34, -10.56, 0.00012, 4, 42, 73.77, -35.69, 0.35932, 43, -12.18, + -10.66, 0.60181, 44, -33.58, -10.56, 0.03884, 45, -55.06, -10.56, 4e-05, 4, 42, 73.59, -39.16, 0.49297, 43, -15.66, -10.66, 0.48586, 44, -37.06, -10.56, 0.02116, 45, -58.54, -10.56, + 1e-05, 4, 42, 73.2, -46.43, 0.66969, 43, -22.93, -10.66, 0.32512, 44, -44.34, -10.56, 0.00518, 45, -65.81, -10.56, 0, 4, 42, 68.13, -44.43, 0.73638, 43, -21.2, -5.49, 0.26049, 44, + -42.61, -5.38, 0.00313, 45, -64.08, -5.38, 0, 4, 42, 63.33, -42.54, 0.74288, 43, -19.57, -0.59, 0.25402, 44, -40.97, -0.49, 0.00309, 45, -62.45, -0.49, 1e-05, 2, 42, 57.06, -40.07, + 0.86, 43, -17.44, 5.79, 0.14, 2, 42, 51.63, -37.93, 0.87418, 43, -15.59, 11.32, 0.12582, 1, 42, 45.12, -35.37, 1, 1, 42, 39.61, -33.2, 1, 2, 42, 0.87, -12.9, 0.99965, 43, 6.74, + 63.34, 0.00035, 2, 42, 1.19, -6.79, 0.9998, 43, 12.86, 63.34, 0.0002, 3, 42, 1.58, 0.7, 0.99981, 43, 20.36, 63.34, 9e-05, 45, -22.52, 63.44, 0.0001, 3, 42, 1.95, 7.74, 0.99975, 43, + 27.41, 63.34, 1e-05, 45, -15.46, 63.44, 0.00024, 2, 42, 2.27, 13.79, 0.99954, 45, -9.41, 63.44, 0.00046, 4, 42, 41.3, 0.23, 0.88429, 43, 21.98, 23.65, 0.02526, 44, 0.57, 23.75, + 0.06552, 45, -20.9, 23.75, 0.02493, 1, 42, 40.33, -19.01, 1, 4, 42, 41.2, 17.9, 0.94373, 43, 39.62, 24.67, 0.00089, 44, 18.21, 24.78, 0.01419, 45, -3.26, 24.78, 0.04119, 1, 42, + 41.16, 25.66, 1, 1, 42, 39.91, -27.38, 1, 4, 42, 40.8, -9.72, 0.88619, 43, 12.02, 23.63, 0.05505, 44, -9.38, 23.73, 0.05102, 45, -30.86, 23.73, 0.00774, 4, 42, 41.25, 8.67, 0.89286, + 43, 30.41, 24.14, 0.00746, 44, 9, 24.24, 0.04877, 45, -12.47, 24.24, 0.05092, 1, 42, 45.19, -29.23, 1, 4, 42, 45.92, -19.91, 0.74343, 43, 2.11, 17.98, 0.19678, 44, -19.29, 18.08, + 0.05726, 45, -40.76, 18.08, 0.00254, 4, 42, 46.35, -10.13, 0.58833, 43, 11.9, 18.06, 0.20061, 44, -9.5, 18.16, 0.19026, 45, -30.98, 18.16, 0.0208, 4, 42, 46.71, -0.11, 0.58846, 43, + 21.93, 18.23, 0.08112, 44, 0.53, 18.33, 0.24909, 45, -20.95, 18.33, 0.08133, 4, 42, 46.89, 8.69, 0.59817, 43, 30.72, 18.51, 0.02026, 44, 9.32, 18.61, 0.18761, 45, -12.16, 18.61, + 0.19395, 4, 42, 47.28, 18.23, 0.66183, 43, 40.27, 18.62, 0.00346, 44, 18.87, 18.73, 0.07957, 45, -2.61, 18.73, 0.25514, 1, 42, 47.24, 27.47, 1, 4, 42, 51.11, -31.3, 0.84023, 43, + -8.99, 12.2, 0.15068, 44, -30.39, 12.3, 0.00899, 45, -51.87, 12.3, 0.0001, 4, 42, 51.17, -20.75, 0.48016, 43, 1.55, 12.69, 0.41733, 44, -19.86, 12.79, 0.10062, 45, -41.33, 12.79, + 0.0019, 4, 42, 51.55, -10.51, 0.42576, 43, 11.79, 12.85, 0.28082, 44, -9.61, 12.96, 0.27628, 45, -31.09, 12.96, 0.01714, 4, 42, 51.8, -0.42, 0.43345, 43, 21.89, 13.13, 0.09343, 44, + 0.48, 13.24, 0.37698, 45, -20.99, 13.24, 0.09613, 4, 42, 52.3, 8.71, 0.43708, 43, 31.02, 13.11, 0.01603, 44, 9.62, 13.21, 0.27127, 45, -11.86, 13.21, 0.27562, 4, 42, 52.36, 18.51, + 0.51068, 43, 40.82, 13.56, 0.00179, 44, 19.41, 13.67, 0.09933, 45, -2.06, 13.67, 0.3882, 4, 42, 52.97, 29.16, 0.94195, 43, 51.49, 13.52, 4e-05, 44, 30.08, 13.62, 0.00385, 45, 8.61, + 13.62, 0.05416, 4, 42, 56.91, -33.32, 0.72549, 43, -10.71, 6.3, 0.2621, 44, -32.11, 6.41, 0.01235, 45, -53.59, 6.41, 6e-05, 4, 42, 57.26, -21.73, 0.38729, 43, 0.89, 6.56, 0.4981, 44, + -20.51, 6.66, 0.11341, 45, -41.99, 6.66, 0.0012, 4, 42, 57.36, -10.94, 0.32692, 43, 11.67, 7.02, 0.3274, 44, -9.74, 7.13, 0.32983, 45, -31.21, 7.13, 0.01585, 4, 42, 57.43, -0.76, + 0.33677, 43, 21.84, 7.49, 0.10146, 44, 0.43, 7.6, 0.45593, 45, -21.04, 7.6, 0.10584, 4, 42, 57.8, 8.73, 0.33839, 43, 31.33, 7.62, 0.0144, 44, 9.93, 7.73, 0.32329, 45, -11.55, 7.73, + 0.32392, 4, 42, 58.53, 19.24, 0.42143, 43, 41.87, 7.44, 0.00109, 44, 20.47, 7.55, 0.11176, 45, -1.01, 7.55, 0.46572, 4, 42, 60.09, 31.38, 0.79569, 43, 54.07, 6.52, 5e-05, 44, 32.67, + 6.63, 0.01091, 45, 11.19, 6.63, 0.19335, 4, 42, 63.61, -35.67, 0.66085, 43, -12.7, -0.52, 0.32566, 44, -34.1, -0.41, 0.01346, 45, -55.58, -0.41, 3e-05, 4, 42, 64.06, -22.82, 0.31024, + 43, 0.16, -0.29, 0.56299, 44, -21.25, -0.19, 0.12589, 45, -42.72, -0.19, 0.00089, 4, 42, 64.25, -11.45, 0.24349, 43, 11.52, 0.12, 0.36477, 44, -9.89, 0.22, 0.37599, 45, -31.36, 0.22, + 0.01574, 4, 42, 64.34, -1.18, 0.2525, 43, 21.78, 0.57, 0.10936, 44, 0.37, 0.68, 0.52284, 45, -21.1, 0.68, 0.1153, 4, 42, 64.83, 8.75, 0.2544, 43, 31.72, 0.6, 0.01401, 44, 10.32, + 0.71, 0.36809, 45, -11.16, 0.71, 0.3635, 4, 42, 65.03, 19.51, 0.3466, 43, 42.48, 0.96, 0.00077, 44, 21.07, 1.07, 0.1237, 45, -0.4, 1.07, 0.52893, 4, 42, 66.57, 33.2, 0.69411, 43, + 56.23, 0.15, 3e-05, 44, 34.83, 0.26, 0.01435, 45, 13.35, 0.26, 0.29151, 4, 42, 71.92, 34.78, 0.61986, 43, 58.1, -5.11, 1e-05, 44, 36.69, -5.01, 0.01658, 45, 15.22, -5.01, 0.36355, 4, + 42, 70.84, 19.53, 0.28549, 43, 42.81, -4.84, 0.00065, 44, 21.4, -4.73, 0.13463, 45, -0.07, -4.73, 0.57924, 4, 42, 70.54, 8.77, 0.18483, 43, 32.04, -5.1, 0.01432, 44, 10.64, -4.99, + 0.40541, 45, -10.84, -4.99, 0.39544, 4, 42, 70.23, -1.55, 0.18141, 43, 21.73, -5.33, 0.11681, 44, 0.32, -5.23, 0.57764, 45, -21.15, -5.23, 0.12413, 4, 42, 69.5, -11.84, 0.17479, 43, + 11.41, -5.14, 0.39444, 44, -10, -5.04, 0.41447, 45, -31.47, -5.04, 0.0163, 4, 42, 69.05, -23.63, 0.24784, 43, -0.38, -5.32, 0.61396, 44, -21.79, -5.22, 0.13743, 45, -43.26, -5.22, + 0.00077, 4, 42, 68.55, -37.4, 0.59732, 43, -14.16, -5.54, 0.38768, 44, -35.56, -5.43, 0.01499, 45, -57.04, -5.43, 1e-05, 4, 42, 22.71, 0.45, 0.98403, 43, 21.22, 42.22, 0.00516, 44, + -0.19, 42.33, 0.00609, 45, -21.66, 42.33, 0.00473, 3, 42, 13.08, -10.5, 0.98457, 43, 9.78, 51.26, 0.01421, 44, -11.62, 51.37, 0.00123, 3, 42, 16.1, 11.4, 0.98807, 44, 10.41, 49.51, + 0.00101, 45, -11.07, 49.51, 0.01092, 1, 42, 40.1, -23.51, 1, 4, 42, 45.53, -24.85, 0.93122, 43, -2.85, 18.1, 0.05888, 44, -24.25, 18.21, 0.00959, 45, -45.73, 18.21, 0.0003, 4, 42, + 51.14, -26.22, 0.67882, 43, -3.92, 12.43, 0.287, 44, -25.32, 12.54, 0.03374, 45, -46.8, 12.54, 0.00045, 4, 42, 57.07, -27.81, 0.52353, 43, -5.19, 6.42, 0.4314, 44, -26.59, 6.53, + 0.04479, 45, -48.07, 6.53, 0.00029, 4, 42, 63.82, -29.53, 0.41464, 43, -6.56, -0.41, 0.53292, 44, -27.96, -0.3, 0.05226, 45, -49.44, -0.3, 0.00018, 4, 42, 68.8, -30.65, 0.35706, 43, + -7.41, -5.43, 0.58638, 44, -28.81, -5.33, 0.05644, 45, -50.29, -5.33, 0.00012, 4, 42, 40.56, -14.49, 0.88311, 43, 7.24, 23.62, 0.07338, 44, -14.17, 23.72, 0.03978, 45, -35.64, 23.72, + 0.00372, 4, 42, 46.13, -15.07, 0.62555, 43, 6.96, 18.02, 0.24007, 44, -14.45, 18.12, 0.1259, 45, -35.92, 18.12, 0.00848, 4, 42, 51.36, -15.56, 0.4342, 43, 6.74, 12.77, 0.37611, 44, + -14.67, 12.88, 0.18375, 45, -36.14, 12.88, 0.00595, 4, 42, 57.31, -16.26, 0.33684, 43, 6.35, 6.79, 0.44427, 44, -15.05, 6.9, 0.21425, 45, -36.53, 6.9, 0.00464, 4, 42, 64.16, -17.02, + 0.25537, 43, 5.95, -0.08, 0.49872, 44, -15.45, 0.02, 0.24179, 45, -36.93, 0.02, 0.00413, 4, 42, 69.28, -17.64, 0.18921, 43, 5.6, -5.23, 0.54119, 44, -15.8, -5.13, 0.26556, 45, + -37.28, -5.13, 0.00404, 4, 42, 41.05, -4.82, 0.83361, 43, 16.93, 23.64, 0.05679, 44, -4.48, 23.74, 0.08927, 45, -25.95, 23.74, 0.02033, 4, 42, 46.53, -5.25, 0.57797, 43, 16.78, + 18.14, 0.13938, 44, -4.63, 18.25, 0.23843, 45, -26.1, 18.25, 0.04422, 4, 42, 51.66, -5.87, 0.42696, 43, 16.43, 12.98, 0.17737, 44, -4.97, 13.08, 0.35156, 45, -26.45, 13.08, 0.04411, + 4, 42, 57.39, -6.06, 0.33132, 43, 16.54, 7.25, 0.20059, 44, -4.86, 7.35, 0.42277, 45, -26.34, 7.35, 0.04531, 4, 42, 64.29, -6.56, 0.24781, 43, 16.41, 0.33, 0.22055, 44, -4.99, 0.44, + 0.48389, 45, -26.47, 0.44, 0.04775, 4, 42, 69.85, -6.91, 0.17763, 43, 16.35, -5.23, 0.23735, 44, -5.05, -5.13, 0.53429, 45, -26.52, -5.13, 0.05074, 4, 42, 41.28, 4.25, 0.83746, 43, + 26, 23.88, 0.02009, 44, 4.59, 23.99, 0.08772, 45, -16.88, 23.99, 0.05473, 4, 42, 46.8, 4.29, 0.58276, 43, 26.32, 18.37, 0.04346, 44, 4.92, 18.47, 0.23645, 45, -16.56, 18.47, 0.13732, + 4, 42, 52.06, 4.23, 0.43226, 43, 26.54, 13.12, 0.04191, 44, 5.13, 13.22, 0.34769, 45, -16.34, 13.22, 0.17814, 4, 42, 57.61, 3.94, 0.33656, 43, 26.54, 7.56, 0.0422, 44, 5.14, 7.66, + 0.41771, 45, -16.34, 7.66, 0.20353, 4, 42, 64.59, 3.92, 0.25264, 43, 26.89, 0.59, 0.04384, 44, 5.49, 0.69, 0.47782, 45, -15.99, 0.69, 0.2257, 4, 42, 70.39, 3.84, 0.18189, 43, 27.11, + -5.21, 0.04615, 44, 5.71, -5.11, 0.52741, 45, -15.77, -5.11, 0.24456, 4, 42, 41.23, 12.93, 0.8608, 43, 34.66, 24.39, 0.00457, 44, 13.26, 24.49, 0.04889, 45, -8.22, 24.49, 0.08574, 4, + 42, 47.07, 13.06, 0.60926, 43, 35.09, 18.56, 0.00894, 44, 13.69, 18.67, 0.13479, 45, -7.79, 18.67, 0.247, 4, 42, 52.33, 13.43, 0.45377, 43, 35.74, 13.33, 0.00554, 44, 14.33, 13.43, + 0.18027, 45, -7.14, 13.43, 0.36041, 4, 42, 58.15, 13.75, 0.35749, 43, 36.37, 7.54, 0.00417, 44, 14.96, 7.64, 0.20976, 45, -6.51, 7.64, 0.42858, 4, 42, 64.93, 13.95, 0.27612, 43, + 36.92, 0.78, 0.00359, 44, 15.52, 0.88, 0.23625, 45, -5.96, 0.88, 0.48404, 4, 42, 70.69, 14.22, 0.20954, 43, 37.5, -4.97, 0.00344, 44, 16.1, -4.86, 0.25903, 45, -5.38, -4.86, 0.52799, + 1, 42, 41.18, 21.86, 1, 4, 42, 47.26, 22.62, 0.82489, 43, 44.65, 18.87, 0.00083, 44, 23.25, 18.98, 0.0268, 45, 1.77, 18.98, 0.14748, 4, 42, 52.68, 24.04, 0.64773, 43, 46.35, 13.54, + 0.00052, 44, 24.95, 13.65, 0.04091, 45, 3.47, 13.65, 0.31084, 4, 42, 59.31, 25.35, 0.53225, 43, 48.01, 6.98, 0.00029, 44, 26.6, 7.09, 0.04857, 45, 5.13, 7.09, 0.41889, 4, 42, 65.88, + 27.11, 0.46955, 43, 50.12, 0.51, 0.00016, 44, 28.71, 0.62, 0.05201, 45, 7.24, 0.62, 0.47828, 4, 42, 71.43, 27.89, 0.41589, 43, 51.19, -4.99, 0.0001, 44, 29.78, -4.88, 0.05591, 45, + 8.31, -4.88, 0.5281, 4, 42, 51.12, -28.92, 0.72647, 43, -6.61, 12.31, 0.25381, 44, -28.01, 12.41, 0.01954, 45, -49.49, 12.41, 0.00018, 4, 42, 56.98, -30.79, 0.64422, 43, -8.18, 6.36, + 0.33291, 44, -29.58, 6.46, 0.02275, 45, -51.06, 6.46, 0.00011, 4, 42, 63.71, -32.68, 0.55448, 43, -9.7, -0.46, 0.41902, 44, -31.11, -0.36, 0.02643, 45, -52.58, -0.36, 7e-05, 4, 42, + 68.66, -34.31, 0.44397, 43, -11.07, -5.49, 0.52396, 44, -32.48, -5.38, 0.03202, 45, -53.95, -5.38, 4e-05, 4, 42, 51.16, -23.65, 0.5094, 43, -1.35, 12.55, 0.4213, 44, -22.75, 12.66, + 0.06847, 45, -44.22, 12.66, 0.00083, 4, 42, 57.16, -24.79, 0.42549, 43, -2.17, 6.49, 0.49746, 44, -23.57, 6.6, 0.07648, 45, -45.05, 6.6, 0.00057, 4, 42, 63.94, -26.25, 0.35688, 43, + -3.28, -0.35, 0.55926, 44, -24.68, -0.25, 0.08347, 45, -46.16, -0.25, 0.00039, 4, 42, 68.91, -27.43, 0.29772, 43, -4.19, -5.38, 0.61133, 44, -25.59, -5.28, 0.09064, 45, -47.07, + -5.28, 0.00031, 4, 42, 69.16, -20.73, 0.21136, 43, 2.51, -5.28, 0.59029, 44, -18.89, -5.17, 0.19654, 45, -40.37, -5.17, 0.00182, 4, 42, 64.11, -19.92, 0.275, 43, 3.05, -0.19, + 0.54348, 44, -18.35, -0.08, 0.17958, 45, -39.83, -0.08, 0.00194, 4, 42, 57.28, -19.35, 0.35002, 43, 3.27, 6.66, 0.48643, 44, -18.14, 6.77, 0.16123, 45, -39.61, 6.77, 0.00232, 4, 42, + 51.26, -18.48, 0.41881, 43, 3.82, 12.72, 0.43213, 44, -17.59, 12.83, 0.1461, 45, -39.06, 12.83, 0.00296, 4, 42, 51.45, -13.1, 0.39313, 43, 9.2, 12.81, 0.35299, 44, -12.2, 12.91, + 0.24433, 45, -33.68, 12.91, 0.00955, 4, 42, 57.34, -13.55, 0.32258, 43, 9.06, 6.91, 0.39406, 44, -12.34, 7.02, 0.27473, 45, -33.82, 7.02, 0.00863, 4, 42, 64.2, -14.31, 0.24476, 43, + 8.66, 0.02, 0.43744, 44, -12.74, 0.12, 0.30953, 45, -34.22, 0.12, 0.00827, 4, 42, 69.38, -14.93, 0.17804, 43, 8.31, -5.19, 0.47328, 44, -13.09, -5.08, 0.3403, 45, -34.57, -5.08, + 0.00838, 4, 42, 69.68, -9.29, 0.17525, 43, 13.97, -5.19, 0.31355, 44, -7.44, -5.08, 0.48153, 45, -28.91, -5.08, 0.02968, 4, 42, 64.27, -9.12, 0.24396, 43, 13.85, 0.22, 0.29088, 44, + -7.55, 0.33, 0.43695, 45, -29.03, 0.33, 0.02821, 4, 42, 57.38, -8.64, 0.32275, 43, 13.97, 7.13, 0.26435, 44, -7.44, 7.23, 0.38552, 45, -28.91, 7.23, 0.02739, 4, 42, 51.61, -8.2, + 0.39269, 43, 14.1, 12.92, 0.24007, 44, -7.3, 13.02, 0.33961, 45, -28.78, 13.02, 0.02763, 4, 42, 51.73, -3.15, 0.39835, 43, 19.16, 13.05, 0.13664, 44, -2.25, 13.16, 0.3972, 45, + -23.72, 13.16, 0.06781, 4, 42, 57.41, -3.5, 0.32898, 43, 19.1, 7.37, 0.14701, 44, -2.3, 7.47, 0.45281, 45, -23.78, 7.47, 0.07119, 4, 42, 64.31, -3.92, 0.24968, 43, 19.05, 0.45, + 0.15947, 44, -2.36, 0.56, 0.51456, 45, -23.83, 0.56, 0.07629, 4, 42, 70.03, -4.3, 0.17972, 43, 18.96, -5.28, 0.17094, 44, -2.44, -5.18, 0.56767, 45, -23.91, -5.18, 0.08167, 4, 42, + 70.31, 1.21, 0.18179, 43, 24.49, -5.27, 0.07557, 44, 3.08, -5.17, 0.56385, 45, -18.39, -5.17, 0.17879, 4, 42, 64.46, 1.3, 0.25204, 43, 24.27, 0.58, 0.07119, 44, 2.86, 0.68, 0.51118, + 45, -18.61, 0.68, 0.16559, 4, 42, 57.52, 1.66, 0.33157, 43, 24.26, 7.52, 0.0672, 44, 2.86, 7.63, 0.44995, 45, -18.62, 7.63, 0.15128, 4, 42, 51.92, 1.69, 0.40101, 43, 23.99, 13.13, + 0.06478, 44, 2.59, 13.23, 0.39483, 45, -18.89, 13.23, 0.13938, 4, 42, 52.17, 6.37, 0.401, 43, 28.68, 13.11, 0.0258, 44, 7.28, 13.22, 0.33427, 45, -14.2, 13.22, 0.23894, 4, 42, 57.7, + 6.22, 0.3309, 43, 28.82, 7.59, 0.02514, 44, 7.42, 7.69, 0.37908, 45, -14.06, 7.69, 0.26488, 4, 42, 64.69, 5.99, 0.25155, 43, 28.96, 0.59, 0.02548, 44, 7.56, 0.7, 0.4293, 45, -13.92, + 0.7, 0.29367, 4, 42, 70.45, 5.95, 0.18206, 43, 29.22, -5.16, 0.02652, 44, 7.82, -5.06, 0.47284, 45, -13.66, -5.06, 0.31858, 4, 42, 70.61, 11.41, 0.19245, 43, 34.69, -5.04, 0.00724, + 44, 13.29, -4.93, 0.3321, 45, -8.19, -4.93, 0.46821, 4, 42, 70.77, 17.07, 0.23948, 43, 40.35, -4.9, 0.00153, 44, 18.94, -4.79, 0.19195, 45, -2.53, -4.79, 0.56704, 4, 42, 71.13, + 23.54, 0.346, 43, 46.82, -4.91, 0.00026, 44, 25.42, -4.81, 0.08922, 45, 3.94, -4.81, 0.56452, 4, 42, 71.67, 31.21, 0.48407, 43, 54.51, -5.05, 4e-05, 44, 33.11, -4.94, 0.03358, 45, + 11.63, -4.94, 0.48231, 4, 42, 66.23, 30.24, 0.54501, 43, 53.26, 0.33, 7e-05, 44, 31.86, 0.43, 0.03077, 45, 10.38, 0.43, 0.42415, 4, 42, 65.41, 22.86, 0.40266, 43, 45.85, 0.77, + 0.00034, 44, 24.45, 0.87, 0.08247, 45, 2.97, 0.87, 0.51452, 4, 42, 64.98, 16.56, 0.30287, 43, 39.53, 0.86, 0.00168, 44, 18.13, 0.97, 0.17579, 45, -3.35, 0.97, 0.51965, 4, 42, 64.87, + 11.12, 0.25994, 43, 34.09, 0.68, 0.00726, 44, 12.69, 0.79, 0.30245, 45, -8.79, 0.79, 0.43035, 4, 42, 57.96, 11, 0.3382, 43, 33.61, 7.58, 0.00776, 44, 12.21, 7.69, 0.26884, 45, -9.27, + 7.69, 0.38519, 4, 42, 58.32, 16.31, 0.37706, 43, 38.93, 7.49, 0.00208, 44, 17.52, 7.6, 0.15821, 45, -3.95, 7.6, 0.46265, 4, 42, 58.9, 22.12, 0.46779, 43, 44.77, 7.23, 0.00052, 44, + 23.36, 7.33, 0.07582, 45, 1.89, 7.33, 0.45586, 4, 42, 59.69, 28.3, 0.65325, 43, 50.97, 6.76, 0.00012, 44, 29.57, 6.86, 0.02541, 45, 8.09, 6.86, 0.32123, 4, 42, 52.82, 26.61, 0.75526, + 43, 48.93, 13.53, 0.00017, 44, 27.52, 13.64, 0.02002, 45, 6.05, 13.64, 0.22455, 4, 42, 52.51, 21.1, 0.52586, 43, 43.41, 13.55, 0.00082, 44, 22, 13.66, 0.07106, 45, 0.53, 13.66, + 0.40226, 4, 42, 52.35, 15.86, 0.44455, 43, 38.16, 13.44, 0.00273, 44, 16.76, 13.54, 0.1436, 45, -4.72, 13.54, 0.40912, 4, 42, 52.31, 10.54, 0.40864, 43, 32.85, 13.19, 0.0088, 44, + 11.45, 13.3, 0.23945, 45, -10.03, 13.3, 0.34311, 4, 42, 70.77, -38.17, 0.52059, 43, -14.82, -7.8, 0.45917, 44, -36.22, -7.7, 0.02022, 45, -57.7, -7.7, 1e-05, 4, 42, 70.83, -34.9, + 0.37517, 43, -11.54, -7.69, 0.58803, 44, -32.95, -7.59, 0.03676, 45, -54.42, -7.59, 4e-05, 4, 42, 70.97, -31.21, 0.31655, 43, -7.85, -7.63, 0.62281, 44, -29.26, -7.53, 0.06054, 45, + -50.73, -7.53, 0.00011, 4, 42, 71.13, -27.77, 0.25662, 43, -4.41, -7.62, 0.64624, 44, -25.82, -7.51, 0.09684, 45, -47.29, -7.51, 0.0003, 4, 42, 71.2, -23.97, 0.20542, 43, -0.61, + -7.48, 0.64718, 44, -22.02, -7.37, 0.14662, 45, -43.49, -7.37, 0.00077, 4, 42, 71.35, -20.96, 0.16774, 43, 2.4, -7.48, 0.62093, 44, -19, -7.37, 0.20946, 45, -40.48, -7.37, 0.00187, + 4, 42, 71.49, -17.96, 0.14406, 43, 5.4, -7.45, 0.56885, 44, -16, -7.35, 0.28288, 45, -37.48, -7.35, 0.00421, 4, 42, 71.65, -15.17, 0.13169, 43, 8.2, -7.46, 0.49722, 44, -13.21, + -7.36, 0.36227, 45, -34.68, -7.36, 0.00882, 4, 42, 71.89, -12.02, 0.12708, 43, 11.35, -7.54, 0.41453, 44, -10.05, -7.44, 0.44117, 45, -31.52, -7.44, 0.01722, 4, 42, 71.98, -9.41, + 0.12668, 43, 13.97, -7.49, 0.32958, 44, -7.43, -7.39, 0.51233, 45, -28.91, -7.39, 0.03141, 4, 42, 72.15, -7.02, 0.12812, 43, 16.36, -7.53, 0.24965, 44, -5.05, -7.43, 0.56851, 45, + -26.52, -7.43, 0.05372, 4, 42, 72.39, -4.46, 0.12979, 43, 18.93, -7.65, 0.1799, 44, -2.47, -7.54, 0.60387, 45, -23.95, -7.54, 0.08644, 4, 42, 72.47, -1.68, 0.13105, 43, 21.71, -7.58, + 0.12302, 44, 0.3, -7.47, 0.61461, 45, -21.17, -7.47, 0.13132, 4, 42, 72.58, 1.2, 0.13159, 43, 24.6, -7.54, 0.07962, 44, 3.19, -7.43, 0.5998, 45, -18.28, -7.43, 0.18899, 4, 42, 72.71, + 3.77, 0.13189, 43, 27.17, -7.53, 0.04862, 44, 5.76, -7.42, 0.56113, 45, -15.71, -7.42, 0.25837, 4, 42, 72.9, 5.95, 0.13282, 43, 29.35, -7.61, 0.02792, 44, 7.95, -7.5, 0.50297, 45, + -13.53, -7.5, 0.33629, 4, 42, 72.96, 8.77, 0.13637, 43, 32.18, -7.52, 0.01503, 44, 10.77, -7.41, 0.43134, 45, -10.7, -7.41, 0.41726, 4, 42, 73.15, 11.31, 0.14539, 43, 34.72, -7.57, + 0.00757, 44, 13.32, -7.46, 0.35328, 45, -8.16, -7.46, 0.49376, 4, 42, 73.26, 14.32, 0.16393, 43, 37.73, -7.53, 0.00355, 44, 16.32, -7.43, 0.27561, 45, -5.15, -7.43, 0.55691, 4, 42, + 73.56, 17.06, 0.19585, 43, 40.48, -7.68, 0.00155, 44, 19.08, -7.58, 0.20422, 45, -2.4, -7.58, 0.59837, 4, 42, 73.65, 19.69, 0.24372, 43, 43.11, -7.63, 0.00063, 44, 21.71, -7.53, + 0.14329, 45, 0.23, -7.53, 0.61235, 4, 42, 73.87, 23.74, 0.30631, 43, 47.17, -7.64, 0.00024, 44, 25.77, -7.53, 0.09501, 45, 4.29, -7.53, 0.59844, 4, 42, 74.01, 28.34, 0.3775, 43, + 51.77, -7.54, 9e-05, 44, 30.37, -7.43, 0.05972, 45, 8.89, -7.43, 0.5627, 4, 42, 74.28, 31.7, 0.44548, 43, 55.14, -7.63, 3e-05, 44, 33.74, -7.53, 0.03652, 45, 12.26, -7.53, 0.51797, + 4, 42, 74.78, 35.38, 0.56131, 43, 58.84, -7.93, 1e-05, 44, 37.44, -7.83, 0.02128, 45, 15.96, -7.83, 0.41739 + ], + "hull": 44, + "edges": [ + 78, 76, 86, 0, 78, 80, 80, 82, 82, 84, 84, 86, 0, 94, 76, 96, 62, 64, 74, 76, 102, 96, 74, 102, 104, 90, 106, 98, 108, 88, 110, 100, 112, 92, 114, 94, 2, 0, 114, 2, 72, 74, 116, 102, + 72, 116, 118, 104, 120, 106, 122, 108, 124, 110, 126, 112, 128, 114, 4, 2, 128, 4, 70, 72, 130, 116, 70, 130, 132, 118, 134, 120, 136, 122, 138, 124, 140, 126, 142, 128, 8, 6, 6, 4, + 142, 6, 68, 70, 144, 130, 68, 144, 146, 132, 148, 134, 150, 136, 152, 138, 154, 140, 156, 142, 156, 8, 8, 10, 10, 12, 12, 158, 158, 156, 10, 158, 160, 154, 162, 152, 164, 150, 166, + 148, 168, 146, 170, 144, 64, 66, 66, 68, 170, 66, 82, 172, 172, 88, 98, 172, 172, 100, 80, 174, 174, 90, 96, 174, 84, 176, 176, 92, 94, 176, 90, 178, 178, 96, 102, 180, 180, 104, + 178, 180, 180, 182, 182, 184, 184, 186, 186, 188, 90, 190, 190, 98, 104, 192, 192, 106, 190, 192, 192, 194, 194, 196, 196, 198, 198, 200, 88, 202, 202, 98, 106, 204, 204, 108, 202, + 204, 204, 206, 206, 208, 208, 210, 210, 212, 88, 214, 214, 100, 108, 216, 216, 110, 214, 216, 216, 218, 218, 220, 220, 222, 222, 224, 92, 226, 226, 100, 110, 228, 228, 112, 226, 228, + 228, 230, 230, 232, 232, 234, 234, 236, 92, 238, 238, 94, 112, 240, 240, 114, 238, 240, 240, 242, 242, 244, 244, 246, 246, 248, 12, 14, 170, 64, 116, 250, 250, 182, 130, 252, 252, + 184, 250, 252, 144, 254, 254, 186, 252, 254, 170, 256, 256, 188, 254, 256, 58, 60, 60, 62, 118, 258, 258, 182, 132, 260, 260, 184, 258, 260, 146, 262, 262, 186, 260, 262, 168, 264, + 264, 188, 262, 264, 54, 56, 56, 58, 50, 52, 52, 54, 168, 266, 266, 200, 146, 268, 268, 198, 266, 268, 132, 270, 270, 196, 268, 270, 118, 272, 272, 194, 270, 272, 120, 274, 274, 194, + 134, 276, 276, 196, 274, 276, 148, 278, 278, 198, 276, 278, 166, 280, 280, 200, 278, 280, 46, 48, 48, 50, 42, 44, 44, 46, 166, 282, 282, 212, 148, 284, 284, 210, 282, 284, 134, 286, + 286, 208, 284, 286, 120, 288, 288, 206, 286, 288, 122, 290, 290, 206, 136, 292, 292, 208, 290, 292, 150, 294, 294, 210, 292, 294, 164, 296, 296, 212, 294, 296, 38, 40, 40, 42, 34, + 36, 36, 38, 164, 298, 298, 224, 150, 300, 300, 222, 298, 300, 136, 302, 302, 220, 300, 302, 122, 304, 304, 218, 302, 304, 124, 306, 306, 218, 138, 308, 308, 220, 306, 308, 152, 310, + 310, 222, 308, 310, 162, 312, 312, 224, 310, 312, 30, 32, 32, 34, 26, 28, 28, 30, 162, 314, 314, 236, 22, 24, 24, 26, 160, 316, 316, 236, 18, 20, 20, 22, 160, 318, 318, 248, 14, 16, + 16, 18, 158, 320, 320, 248, 156, 322, 322, 246, 320, 322, 154, 324, 324, 246, 318, 324, 154, 326, 326, 234, 316, 326, 152, 328, 328, 234, 314, 328, 138, 330, 330, 232, 328, 330, 140, + 332, 332, 232, 326, 332, 140, 334, 334, 244, 324, 334, 142, 336, 336, 244, 322, 336, 128, 338, 338, 242, 336, 338, 126, 340, 340, 242, 334, 340, 126, 342, 342, 230, 332, 342, 124, + 344, 344, 230, 330, 344, 62, 346, 346, 170, 60, 348, 348, 256, 346, 348, 58, 350, 350, 188, 348, 350, 56, 352, 352, 264, 350, 352, 54, 354, 354, 168, 352, 354, 52, 356, 356, 266, + 354, 356, 50, 358, 358, 200, 356, 358, 48, 360, 360, 280, 358, 360, 46, 362, 362, 166, 360, 362, 44, 364, 364, 282, 362, 364, 42, 366, 366, 212, 364, 366, 40, 368, 368, 296, 366, + 368, 38, 370, 370, 164, 368, 370, 36, 372, 372, 298, 370, 372, 34, 374, 374, 224, 372, 374, 32, 376, 376, 312, 374, 376, 30, 378, 378, 162, 376, 378, 28, 380, 380, 314, 378, 380, 26, + 382, 382, 236, 380, 382, 24, 384, 384, 316, 382, 384, 22, 386, 386, 160, 384, 386, 20, 388, 388, 318, 386, 388, 18, 390, 390, 248, 388, 390, 16, 392, 392, 320, 390, 392, 14, 394, + 394, 158, 392, 394 + ], + "width": 82.3529411764706, + "height": 72.94117647058823, + "path": "summer-a.ear-right-bubble", + "x": 0.32352941176470296, + "y": 0.529411764705884 + } }, - "leg-front-left": { - "sumo-leg-front-left": {"x": 39.53, "y": -6.01, "rotation": 83.6, "width": 111, "height": 101, "path": "body-normal.sumo-leg-front-left"}, - "sumo-leg-front-left-long": {"x": 44.5, "y": 1.43, "rotation": 221.6, "width": 111, "height": 114, "path": "body-normal.sumo-leg-front-left-long"}, - "sumo-leg-front-left-stretch": {"x": 35.38, "y": -0.11, "rotation": 151.6, "width": 112, "height": 104, "path": "body-normal.sumo-leg-front-left-stretch"} + "ear-right-dot-01": { + "ear-right-dot": {"x": -0.5152941176470598, "y": -0.662352941176471, "rotation": -0.95, "width": 16.47058823529412, "height": 11.764705882352942, "path": "summer-a.ear-right-dot"} }, - "leg-front-right": { - "sumo-leg-front-right": {"x": 42.24, "y": 7.63, "rotation": 101.78, "width": 112, "height": 101, "path": "body-normal.sumo-leg-front-right"}, - "sumo-leg-front-right-long": {"x": 39.97, "y": -2.03, "rotation": 219.78, "width": 111, "height": 114, "path": "body-normal.sumo-leg-front-right-long"}, - "sumo-leg-front-right-stretch": {"x": 44.29, "y": 3.3, "rotation": 137.24, "width": 106, "height": 103, "path": "body-normal.sumo-leg-front-right-stretch"} + "ear-right-dot-02": { + "ear-right-dot": {"x": -0.5152941176470598, "y": -0.662352941176471, "rotation": -0.95, "width": 16.47058823529412, "height": 11.764705882352942, "path": "summer-a.ear-right-dot"} }, - "shadow": {"shadow": {"width": 1049, "height": 211, "path": "body-sumo.shadow"}}, - "body-air": { - "body-air1a_00": {"x": 1.37, "y": 35.21, "width": 209.375, "height": 129.6875, "path": "body-accessory.body-air1a_00"}, - "body-air1a_01": {"x": 1.37, "y": 35.21, "width": 209.375, "height": 129.6875, "path": "body-accessory.body-air1a_01"}, - "body-air1a_02": {"x": 1.37, "y": 35.21, "width": 209.375, "height": 129.6875, "path": "body-accessory.body-air1a_02"}, - "body-air1a_03": {"x": 1.37, "y": 35.21, "width": 209.375, "height": 129.6875, "path": "body-accessory.body-air1a_03"}, - "body-air1a_04": {"x": 1.37, "y": 35.21, "width": 209.375, "height": 129.6875, "path": "body-accessory.body-air1a_04"}, - "body-air1a_05": {"x": 1.37, "y": 35.21, "width": 209.375, "height": 129.6875, "path": "body-accessory.body-air1a_05"}, - "body-air1a_06": {"x": 1.37, "y": 35.21, "width": 209.375, "height": 129.6875, "path": "body-accessory.body-air1a_06"}, - "body-air1a_07": {"x": 1.37, "y": 35.21, "width": 209.375, "height": 129.6875, "path": "body-accessory.body-air1a_07"}, - "body-air1b_00": {"x": 1.37, "y": 35.21, "width": 156.25, "height": 192.1875, "path": "body-accessory.body-air1b_00"}, - "body-air1b_01": {"x": 1.37, "y": 35.21, "width": 156.25, "height": 192.1875, "path": "body-accessory.body-air1b_01"}, - "body-air1b_02": {"x": 1.37, "y": 35.21, "width": 156.25, "height": 192.1875, "path": "body-accessory.body-air1b_02"}, - "body-air1c_00": {"x": 1.37, "y": 35.21, "width": 200.0, "height": 289.0625, "path": "body-accessory.body-air1c_00"}, - "body-air1c_01": {"x": 1.37, "y": 35.21, "width": 200.0, "height": 289.0625, "path": "body-accessory.body-air1c_01"}, - "body-air1c_02": {"x": 1.37, "y": 35.21, "width": 200.0, "height": 289.0625, "path": "body-accessory.body-air1c_02"}, - "body-air1c_03": {"x": 1.37, "y": 35.21, "width": 200.0, "height": 289.0625, "path": "body-accessory.body-air1c_03"}, - "body-air1d_00": {"x": 1.37, "y": 35.21, "width": 204.6875, "height": 273.4375, "path": "body-accessory.body-air1d_00"}, - "body-air1d_01": {"x": 1.37, "y": 35.21, "width": 204.6875, "height": 273.4375, "path": "body-accessory.body-air1d_01"}, - "body-air1d_02": {"x": 1.37, "y": 35.21, "width": 204.6875, "height": 273.4375, "path": "body-accessory.body-air1d_02"}, - "body-air1d_03": {"x": 1.37, "y": 35.21, "width": 204.6875, "height": 273.4375, "path": "body-accessory.body-air1d_03"} + "ear-right-dot-03": { + "ear-right-dot": {"x": -0.5152941176470598, "y": -0.662352941176471, "rotation": -0.95, "width": 16.47058823529412, "height": 11.764705882352942, "path": "summer-a.ear-right-dot"} }, - "body-cheek": { - "body-cheek1a": {"x": 1.52, "y": 3.04, "width": 60.9375, "height": 57.8125, "path": "body-accessory.body-cheek1a"}, - "body-cheek1b": {"x": 1.52, "y": 3.04, "width": 50.0, "height": 76.5625, "path": "body-accessory.body-cheek1b"}, - "body-cheek1c": {"x": 1.52, "y": 3.04, "width": 50.0, "height": 76.5625, "path": "body-accessory.body-cheek1c"}, - "body-cheek1d": {"x": 1.52, "y": 3.04, "width": 50.0, "height": 76.5625, "path": "body-accessory.body-cheek1d"}, - "body-cheek1e": {"x": 1.52, "y": 3.04, "width": 54.6875, "height": 79.6875, "path": "body-accessory.body-cheek1e"}, - "body-cheek1f": {"x": 1.52, "y": 3.04, "width": 56.25, "height": 57.8125, "path": "body-accessory.body-cheek1f"}, - "body-cheek1g": {"x": 1.52, "y": 3.04, "width": 104.6875, "height": 96.875, "path": "body-accessory.body-cheek1g"} + "ear-right-dot-04": { + "ear-right-dot": {"x": -0.5152941176470598, "y": -0.662352941176471, "rotation": -0.95, "width": 16.47058823529412, "height": 11.764705882352942, "path": "summer-a.ear-right-dot"} }, - "body-ground": { - "body-ground1a_00": {"x": 4.75, "y": 123.01, "width": 254.6875, "height": 275.0, "path": "body-accessory.body-ground1a_00"}, - "body-ground1a_01": {"x": 4.75, "y": 123.01, "width": 254.6875, "height": 275.0, "path": "body-accessory.body-ground1a_01"}, - "body-ground1a_02": {"x": 4.75, "y": 123.01, "width": 254.6875, "height": 275.0, "path": "body-accessory.body-ground1a_02"}, - "body-ground1a_03": {"x": 4.75, "y": 123.01, "width": 254.6875, "height": 275.0, "path": "body-accessory.body-ground1a_03"} + "ear-right-dot-05": { + "ear-right-dot": {"x": -0.5152941176470598, "y": -0.662352941176471, "rotation": -0.95, "width": 16.47058823529412, "height": 11.764705882352942, "path": "summer-a.ear-right-dot"} }, - "body-hip": { - "body-hip1a": {"x": -16, "width": 109.375, "height": 140.625, "path": "body-accessory.body-hip1a"}, - "body-hip1b": {"x": -16, "width": 210.9375, "height": 214.0625, "path": "body-accessory.body-hip1b"}, - "body-hip1c": {"x": -16, "width": 123.4375, "height": 157.8125, "path": "body-accessory.body-hip1c"}, - "body-hip1d": {"x": -16, "width": 203.125, "height": 143.75, "path": "body-accessory.body-hip1d"} + "ear-right-dot-06": { + "ear-right-dot": {"x": -0.5152941176470598, "y": -0.662352941176471, "rotation": -0.95, "width": 16.47058823529412, "height": 11.764705882352942, "path": "summer-a.ear-right-dot"} }, - "body-neck": { - "body-neck1a": {"x": -5.4, "y": -54.79, "width": 92.1875, "height": 96.875, "path": "body-accessory.body-neck1a"}, - "body-neck1b": {"x": -5.4, "y": -54.79, "width": 103.125, "height": 117.1875, "path": "body-accessory.body-neck1b"}, - "body-neck1c": {"x": -5.4, "y": -54.79, "width": 79.6875, "height": 110.9375, "path": "body-accessory.body-neck1c"}, - "body-neck1d": {"x": -5.4, "y": -54.79, "width": 121.875, "height": 101.5625, "path": "body-accessory.body-neck1d"}, - "body-neck1e": {"x": -5.4, "y": -54.79, "width": 89.0625, "height": 107.8125, "path": "body-accessory.body-neck1e"}, - "body-neck1f": {"x": -5.4, "y": -54.79, "width": 79.6875, "height": 79.6875, "path": "body-accessory.body-neck1f"} - } - } - } - ], - "events": {"hit": {}, "hit-buff": {}, "jump": {}, "start-attack": {}}, - "keyAnimations": { - "activity/appear": "3921179016", - "attack/melee/multi-attack/attack-01": "2457312172", - "attack/melee/multi-attack/attack-02": "604960256", - "attack/melee/multi-attack/attack-03": "3835769860", - "activity/bath": "3305387968", - "attack/ranged/cast-fly": "640070672", - "attack/ranged/cast-high": "3530118163", - "attack/ranged/cast-low": "2870090226", - "attack/ranged/cast-multi": "151119", - "attack/ranged/cast-tail": "1771510038", - "activity/eat-bite": "1137807767", - "activity/eat-chew": "1988236421", - "attack/melee/multi-attack/end": "3487453701", - "activity/entrance": "3768378365", - "defense/evade": "1735454995", - "activity/evolve": "649307630", - "battle/get-buff": "3957953988", - "battle/get-debuff": "336700057", - "defense/hit-by-normal": "4129179734", - "defense/hit-by-normal-crit": "3123502684", - "defense/hit-by-normal-dramatic": "439534949", - "defense/hit-by-ranged-attack": "3352800463", - "defense/hit-with-shield": "3911401836", - "attack/melee/horn-gore": "2824479785", - "attack/melee/mouth-bite": "137987643", - "action/move-back": "3766271173", - "action/move-forward": "2945160014", - "attack/melee/multi-attack": "1873246458", - "action/idle/normal": "3518390074", - "attack/melee/normal-attack": "4041893364", - "draft/normal-draft": "527763419", - "activity/prepare": "405864717", - "action/idle/random-01": "3130386156", - "action/idle/random-02": "2103635194", - "action/idle/random-03": "2146505268", - "action/idle/random-04": "488301700", - "action/idle/random-05": "2745614147", - "action/run": "503804557", - "draft/run-origin": "4275354805", - "attack/melee/shrimp": "689651440", - "activity/sleep": "100562494", - "attack/melee/multi-attack/start": "2382944508", - "attack/melee/tail-multi-slap": "2919733098", - "attack/melee/tail-roll": "3361002765", - "attack/melee/tail-smash": "2626719915", - "attack/melee/tail-thrash": "660880126", - "activity/victory-pose-back-flip": "2227634241" - } - }, - "reptile-10": { - "bones": [ - {"name": "@root"}, {"name": "@pivot-main", "parent": "@root"}, {"name": "@pivot-back", "parent": "@pivot-main", "x": 205, "y": 180, "color": "ff0101ff"}, - {"name": "@pivot-center", "parent": "@pivot-back", "x": -215.11, "y": -5.25, "color": "ff0101ff"}, - {"name": "@axie", "parent": "@pivot-center", "length": 213.28, "rotation": 179.04, "x": 196.39, "y": 5.16}, {"name": "@back", "parent": "@axie", "rotation": -179.04, "x": 37.63, "y": -198.19}, - {"name": "back", "parent": "@back", "length": 149.41, "rotation": 64, "x": -51.97, "y": -9.7, "transform": "noScale"}, - {"name": "@body", "parent": "@axie", "length": 226.28, "rotation": -8.35, "x": 224.58, "y": -0.53}, {"name": "@ear-left", "parent": "@axie", "rotation": -179.04, "x": 112.7, "y": -203.23}, - {"name": "ear-left", "parent": "@ear-left", "length": 113.61, "rotation": 52, "x": -27, "y": -17, "transform": "noScale"}, - {"name": "@ear-right", "parent": "@axie", "rotation": -179.04, "x": 405.28, "y": -235.33}, - {"name": "ear-right", "parent": "@ear-right", "length": 119.39, "rotation": 93, "x": -40, "y": -54, "transform": "noScale"}, - {"name": "@eyes", "parent": "@axie", "rotation": -179.04, "x": 384.24, "y": -113.67}, {"name": "@horn", "parent": "@axie", "rotation": -179.04, "x": 327.92, "y": -214.63}, - {"name": "horn", "parent": "@horn", "length": 176.72, "rotation": 90, "y": 18, "transform": "noScale"}, - {"name": "@leg-back-left", "parent": "@axie", "length": 76.4, "rotation": 100.96, "x": -15.3, "y": 102.56, "transform": "noScale"}, - {"name": "@leg-front-left", "parent": "@axie", "length": 51.19, "rotation": 93.86, "x": 134.77, "y": 149.55, "transform": "noScale"}, - {"name": "@leg-front-right", "parent": "@axie", "length": 74.83, "rotation": 83.2, "x": 382.95, "y": 121.78, "transform": "noScale"}, - {"name": "@mouth", "parent": "@axie", "rotation": -179.04, "x": 382.23, "y": 6.31}, - {"name": "body-pattern", "parent": "@body", "rotation": -170.69, "x": -267.21, "y": -49.4, "transform": "noScale"}, {"name": "@shadow", "parent": "@root", "color": "e6d713ff"}, - {"name": "@tail", "parent": "@axie", "rotation": -179.04, "x": -11.76, "y": 61.72}, - {"name": "tail", "parent": "@tail", "length": 203.67, "rotation": 20, "x": 21, "y": 37, "transform": "noScale"}, - {"name": "leg-front-right-IK", "parent": "@pivot-main", "x": -195.99, "y": -10.21, "color": "ff3f00ff"}, - {"name": "leg-front-left-IK", "parent": "@pivot-main", "x": 42.3, "y": -18.42, "color": "ff3f00ff"}, - {"name": "leg-back-left-IK", "parent": "@pivot-main", "x": 208.57, "y": 1.35, "color": "ff3f00ff"}, {"name": "@ball", "parent": "@root", "y": 191, "color": "f3981bff"}, - {"name": "ball", "parent": "@ball", "y": -191, "color": "f4a729ff"} - ], - "slots": [ - {"name": "shadow", "bone": "@shadow", "attachment": "shadow"}, {"name": "ball", "bone": "ball"}, {"name": "leg-front-right", "bone": "@leg-front-right", "attachment": "leg-front-right"}, - {"name": "ear-right", "bone": "ear-right"}, {"name": "tail", "bone": "tail", "attachment": "tail"}, {"name": "back", "bone": "back", "attachment": "back"}, - {"name": "leg-back-left", "bone": "@leg-back-left", "attachment": "leg-back-left"}, {"name": "body", "bone": "@body", "attachment": "body"}, {"name": "body-pattern", "bone": "body-pattern"}, - {"name": "leg-front-left", "bone": "@leg-front-left", "attachment": "leg-front-left"}, {"name": "eyes", "bone": "@eyes", "attachment": "eyes"}, - {"name": "mouth", "bone": "@mouth", "attachment": "mouth"}, {"name": "ear-left", "bone": "ear-left", "attachment": "ear-left"}, {"name": "horn", "bone": "horn", "attachment": "horn"} - ], - "ik": [ - {"name": "leg-back-left-IK", "order": 2, "bones": ["@leg-back-left"], "target": "leg-back-left-IK"}, - {"name": "leg-front-left-IK", "order": 1, "bones": ["@leg-front-left"], "target": "leg-front-left-IK"}, - {"name": "leg-front-right-IK", "bones": ["@leg-front-right"], "target": "leg-front-right-IK"} - ], - "skins": [ - { - "name": "default", - "attachments": { - "back": {"back": {"x": 48.96, "y": 13.43, "rotation": -64, "width": 388, "height": 387, "path": "reptile-10.back"}}, - "ear-left": {"ear-left": {"x": 38.22, "y": -38.22, "rotation": -52, "width": 135, "height": 114, "path": "reptile-10.ear-left"}}, - "eyes": { - "eyes": {"x": 33.89, "y": 15.89, "width": 321, "height": 115, "path": "reptile-10.eyes"}, - "eyes-angry": {"x": 33.89, "y": 19.89, "width": 321, "height": 123, "path": "reptile-10.eyes-angry"}, - "eyes-happy": {"x": 23.89, "y": 22.39, "width": 263, "height": 112, "path": "reptile-10.eyes-happy"}, - "eyes-shut": {"x": 22.89, "y": 17.39, "width": 257, "height": 108, "path": "reptile-10.eyes-shut"} + "ear-right-dot-07": { + "ear-right-dot": {"x": -0.5152941176470598, "y": -0.662352941176471, "rotation": -0.95, "width": 16.47058823529412, "height": 11.764705882352942, "path": "summer-a.ear-right-dot"} }, - "horn": {"horn": {"x": 87.39, "y": -36.89, "rotation": -90, "width": 253, "height": 200, "path": "reptile-10.horn"}}, - "mouth": { - "mouth": {"x": 19.39, "y": 40.39, "width": 188, "height": 62, "path": "reptile-10.mouth"}, - "mouth-bite": {"x": 21.89, "y": 29.39, "width": 191, "height": 72, "path": "reptile-10.mouth-bite"}, - "mouth-open": {"x": 20.39, "y": 15.39, "width": 186, "height": 140, "path": "reptile-10.mouth-open"}, - "mouth-smile": {"x": 19.39, "y": 43.39, "width": 204, "height": 68, "path": "reptile-10.mouth-smile"} + "ear-right-dot-08": { + "ear-right-dot": {"x": -0.5152941176470598, "y": -0.662352941176471, "rotation": -0.95, "width": 16.47058823529412, "height": 11.764705882352942, "path": "summer-a.ear-right-dot"} }, - "tail": {"tail": {"x": 48.98, "y": -31.78, "rotation": -20, "width": 337, "height": 207, "path": "reptile-10.tail"}} - } - } - ], - "events": {"hit": {}, "hit-buff": {}, "jump": {}, "start-attack": {}}, - "keyAnimations": { - "activity/appear": "1023093953", - "activity/bath": "3305387968", - "attack/ranged/cast-fly": "4180526371", - "attack/ranged/cast-high": "164191126", - "attack/ranged/cast-low": "198813017", - "attack/ranged/cast-multi": "151119", - "attack/ranged/cast-tail": "997902532", - "activity/eat-bite": "1137807767", - "activity/eat-chew": "1988236421", - "activity/entrance": "3768378365", - "defense/evade": "1735454995", - "activity/evolve": "649307630", - "battle/get-buff": "1455190363", - "battle/get-debuff": "606904312", - "defense/hit-by-normal": "2045974966", - "defense/hit-by-normal-crit": "2130010601", - "defense/hit-by-normal-dramatic": "3823092125", - "defense/hit-by-ranged-attack": "2224561612", - "defense/hit-with-shield": "390714790", - "attack/melee/horn-gore": "1327954218", - "attack/melee/mouth-bite": "2237748264", - "action/move-back": "3766271173", - "action/move-forward": "2945160014", - "attack/melee/multi-attack": "905926802", - "action/idle/normal": "1659336865", - "attack/melee/normal-attack": "3305373483", - "activity/prepare": "405864717", - "action/idle/random-01": "554401889", - "action/idle/random-02": "1085666627", - "action/idle/random-03": "2021333900", - "action/idle/random-04": "1003789695", - "action/idle/random-05": "2745614147", - "action/run": "1438840721", - "draft/run-origin": "3577885069", - "attack/melee/shrimp": "3833448733", - "activity/sleep": "100562494", - "attack/melee/tail-multi-slap": "3317139533", - "attack/melee/tail-roll": "3108617565", - "attack/melee/tail-smash": "519942130", - "attack/melee/tail-thrash": "628713175", - "activity/victory-pose-back-flip": "2227634241" - } - }, - "body-frosty": { - "bones": [ - {"name": "@root"}, {"name": "@pivot-main", "parent": "@root"}, {"name": "@pivot-back", "parent": "@pivot-main", "x": 205, "y": 180, "color": "ff0101ff"}, - {"name": "@pivot-center", "parent": "@pivot-back", "x": -215.11, "y": -5.25, "color": "ff0101ff"}, - {"name": "@axie", "parent": "@pivot-center", "length": 213.28, "rotation": 179.04, "x": 196.39, "y": 5.16}, {"name": "@back", "parent": "@axie", "rotation": -179.04, "x": 37.63, "y": -198.19}, - {"name": "@body", "parent": "@axie", "length": 226.28, "rotation": -8.35, "x": 224.58, "y": -0.53}, {"name": "@ear-left", "parent": "@axie", "rotation": -179.04, "x": 112.7, "y": -203.23}, - {"name": "@ear-right", "parent": "@axie", "rotation": -179.04, "x": 405.28, "y": -235.33}, {"name": "@eyes", "parent": "@axie", "rotation": -179.04, "x": 384.24, "y": -113.67}, - {"name": "@horn", "parent": "@axie", "rotation": -179.04, "x": 327.92, "y": -214.63}, - {"name": "@leg-back-left", "parent": "@axie", "length": 66.78, "rotation": 97.07, "x": -15.3, "y": 102.56, "transform": "noScale"}, - {"name": "@leg-front-left", "parent": "@axie", "length": 68.04, "rotation": 84.88, "x": 135.05, "y": 132.6, "transform": "noScale"}, - {"name": "@leg-front-right", "parent": "@axie", "length": 70.32, "rotation": 92.53, "x": 382.95, "y": 121.78, "transform": "noScale"}, - {"name": "@mouth", "parent": "@axie", "rotation": -179.04, "x": 382.23, "y": 6.31}, {"name": "@shadow", "parent": "@root", "color": "e6d713ff"}, - {"name": "@tail", "parent": "@axie", "rotation": -179.04, "x": -11.76, "y": 61.72}, {"name": "leg-front-right-IK", "parent": "@pivot-main", "x": -195.99, "y": -10.21, "color": "ff3f00ff"}, - {"name": "leg-front-left-IK", "parent": "@pivot-main", "x": 42.3, "y": -18.42, "color": "ff3f00ff"}, - {"name": "leg-back-left-IK", "parent": "@pivot-main", "x": 208.57, "y": 1.35, "color": "ff3f00ff"}, {"name": "@ball", "parent": "@root", "y": 191, "color": "f3981bff"}, - {"name": "ball", "parent": "@ball", "y": -191, "color": "f4a729ff"}, {"name": "body-bell", "parent": "@body", "rotation": -170.69, "x": 121.75, "y": 84.01}, - {"name": "@body-ground", "parent": "@pivot-main", "x": 220, "transform": "noRotationOrReflection", "color": "ff0101ff"}, - {"name": "@body-air", "parent": "@pivot-back", "x": 63, "y": 365, "transform": "noRotationOrReflection", "color": "ff0101ff"}, - {"name": "@body-cheek", "parent": "@pivot-center", "x": 15.11, "y": 47.25, "color": "ff0101ff"} - ], - "slots": [ - {"name": "shadow", "bone": "@shadow", "attachment": "shadow"}, {"name": "ball", "bone": "ball"}, {"name": "leg-front-right", "bone": "@leg-front-right", "attachment": "xmas-leg-front-right"}, - {"name": "leg-front-left", "bone": "@leg-front-left", "attachment": "xmas-leg-front-left"}, {"name": "leg-back-left", "bone": "@leg-back-left", "attachment": "xmas-leg-back-left"}, - {"name": "body", "bone": "@body", "attachment": "body-xmas-01"}, {"name": "body-bell", "bone": "body-bell", "attachment": "body-bell"}, - {"name": "body-ground", "bone": "@body-ground", "attachment": "body-ground"}, {"name": "body-air", "bone": "@body-air", "attachment": "body-air"}, - {"name": "body-cheek", "bone": "@body-cheek", "attachment": "body-cheek"} - ], - "ik": [ - {"name": "leg-back-left-IK", "order": 2, "bones": ["@leg-back-left"], "target": "leg-back-left-IK"}, - {"name": "leg-front-left-IK", "order": 1, "bones": ["@leg-front-left"], "target": "leg-front-left-IK"}, - {"name": "leg-front-right-IK", "bones": ["@leg-front-right"], "target": "leg-front-right-IK"} - ], - "skins": [ - { - "name": "default", - "attachments": { - "ball": {"ball": {"y": 191, "width": 393, "height": 390, "path": "body-normal.ball"}}, - "body": {"body-xmas-01": {"x": -3, "y": -74.33, "rotation": -170.69, "width": 720, "height": 540, "path": "body-frosty.body-xmas-01"}}, - "body-bell": {"body-bell": {"x": 0.43, "y": -21.55, "width": 92, "height": 73, "path": "body-frosty.body-bell"}}, - "leg-back-left": { - "xmas-leg-back-left": {"x": 18.72, "y": -3.79, "rotation": 83.45, "width": 119, "height": 120, "path": "body-normal.xmas-leg-back-left"}, - "xmas-leg-back-left-long": {"x": 41.03, "y": 2.02, "rotation": -177.41, "width": 121, "height": 116, "path": "body-normal.xmas-leg-back-left-long"}, - "xmas-leg-back-left-stretch": {"x": 33.27, "y": 3.69, "rotation": 91.33, "width": 119, "height": 120, "path": "body-normal.xmas-leg-back-left-stretch"} + "ear-right-dot-09": { + "ear-right-dot": {"x": -0.5152941176470598, "y": -0.662352941176471, "rotation": -0.95, "width": 16.47058823529412, "height": 11.764705882352942, "path": "summer-a.ear-right-dot"} }, - "leg-front-left": { - "xmas-leg-front-left": {"x": 12.73, "y": -6.57, "rotation": 95.65, "width": 119, "height": 117, "path": "body-normal.xmas-leg-front-left"}, - "xmas-leg-front-left-long": {"x": 35.54, "y": 2.08, "rotation": 175.41, "width": 121, "height": 116, "path": "body-normal.xmas-leg-front-left-long"}, - "xmas-leg-front-left-stretch": {"x": 28.38, "y": 4.25, "rotation": 131.32, "width": 121, "height": 116, "path": "body-normal.xmas-leg-front-left-stretch"} + "ear-right-dot-10": { + "ear-right-dot": {"x": -0.5152941176470598, "y": -0.662352941176471, "rotation": -0.95, "width": 16.47058823529412, "height": 11.764705882352942, "path": "summer-a.ear-right-dot"} }, - "leg-front-right": { - "xmas-leg-front-right": {"x": 18.26, "y": 7.24, "rotation": 87.96, "width": 119, "height": 121, "path": "body-normal.xmas-leg-front-right"}, - "xmas-leg-front-right-long": {"x": 33.1, "y": -2.57, "rotation": 177.64, "width": 111, "height": 114, "path": "body-normal.xmas-leg-front-right-long"}, - "xmas-leg-front-right-stretch": {"x": 28.64, "y": -1.35, "rotation": 151.34, "width": 111, "height": 114, "path": "body-normal.xmas-leg-front-right-stretch"} + "ear-right-dot-11": { + "ear-right-dot": {"x": -0.5152941176470598, "y": -0.662352941176471, "rotation": -0.95, "width": 16.47058823529412, "height": 11.764705882352942, "path": "summer-a.ear-right-dot"} }, - "shadow": {"shadow": {"width": 946, "height": 191, "path": "body-frosty.shadow"}}, - "body-air": { - "body-air1a_00": {"x": 1.37, "y": 35.21, "width": 209.375, "height": 129.6875, "path": "body-accessory.body-air1a_00"}, - "body-air1a_01": {"x": 1.37, "y": 35.21, "width": 209.375, "height": 129.6875, "path": "body-accessory.body-air1a_01"}, - "body-air1a_02": {"x": 1.37, "y": 35.21, "width": 209.375, "height": 129.6875, "path": "body-accessory.body-air1a_02"}, - "body-air1a_03": {"x": 1.37, "y": 35.21, "width": 209.375, "height": 129.6875, "path": "body-accessory.body-air1a_03"}, - "body-air1a_04": {"x": 1.37, "y": 35.21, "width": 209.375, "height": 129.6875, "path": "body-accessory.body-air1a_04"}, - "body-air1a_05": {"x": 1.37, "y": 35.21, "width": 209.375, "height": 129.6875, "path": "body-accessory.body-air1a_05"}, - "body-air1a_06": {"x": 1.37, "y": 35.21, "width": 209.375, "height": 129.6875, "path": "body-accessory.body-air1a_06"}, - "body-air1a_07": {"x": 1.37, "y": 35.21, "width": 209.375, "height": 129.6875, "path": "body-accessory.body-air1a_07"}, - "body-air1b_00": {"x": 1.37, "y": 35.21, "width": 156.25, "height": 192.1875, "path": "body-accessory.body-air1b_00"}, - "body-air1b_01": {"x": 1.37, "y": 35.21, "width": 156.25, "height": 192.1875, "path": "body-accessory.body-air1b_01"}, - "body-air1b_02": {"x": 1.37, "y": 35.21, "width": 156.25, "height": 192.1875, "path": "body-accessory.body-air1b_02"}, - "body-air1c_00": {"x": 1.37, "y": 35.21, "width": 200.0, "height": 289.0625, "path": "body-accessory.body-air1c_00"}, - "body-air1c_01": {"x": 1.37, "y": 35.21, "width": 200.0, "height": 289.0625, "path": "body-accessory.body-air1c_01"}, - "body-air1c_02": {"x": 1.37, "y": 35.21, "width": 200.0, "height": 289.0625, "path": "body-accessory.body-air1c_02"}, - "body-air1c_03": {"x": 1.37, "y": 35.21, "width": 200.0, "height": 289.0625, "path": "body-accessory.body-air1c_03"}, - "body-air1d_00": {"x": 1.37, "y": 35.21, "width": 204.6875, "height": 273.4375, "path": "body-accessory.body-air1d_00"}, - "body-air1d_01": {"x": 1.37, "y": 35.21, "width": 204.6875, "height": 273.4375, "path": "body-accessory.body-air1d_01"}, - "body-air1d_02": {"x": 1.37, "y": 35.21, "width": 204.6875, "height": 273.4375, "path": "body-accessory.body-air1d_02"}, - "body-air1d_03": {"x": 1.37, "y": 35.21, "width": 204.6875, "height": 273.4375, "path": "body-accessory.body-air1d_03"} + "ear-right-dot-12": { + "ear-right-dot": {"x": -0.5152941176470598, "y": -0.662352941176471, "rotation": -0.95, "width": 16.47058823529412, "height": 11.764705882352942, "path": "summer-a.ear-right-dot"} }, - "body-cheek": { - "body-cheek1a": {"x": 1.52, "y": 3.04, "width": 60.9375, "height": 57.8125, "path": "body-accessory.body-cheek1a"}, - "body-cheek1b": {"x": 1.52, "y": 3.04, "width": 50.0, "height": 76.5625, "path": "body-accessory.body-cheek1b"}, - "body-cheek1c": {"x": 1.52, "y": 3.04, "width": 50.0, "height": 76.5625, "path": "body-accessory.body-cheek1c"}, - "body-cheek1d": {"x": 1.52, "y": 3.04, "width": 50.0, "height": 76.5625, "path": "body-accessory.body-cheek1d"}, - "body-cheek1e": {"x": 1.52, "y": 3.04, "width": 54.6875, "height": 79.6875, "path": "body-accessory.body-cheek1e"}, - "body-cheek1f": {"x": 1.52, "y": 3.04, "width": 56.25, "height": 57.8125, "path": "body-accessory.body-cheek1f"}, - "body-cheek1g": {"x": 1.52, "y": 3.04, "width": 104.6875, "height": 96.875, "path": "body-accessory.body-cheek1g"} + "ear-right-dot-13": { + "ear-right-dot": {"x": -0.5152941176470598, "y": -0.662352941176471, "rotation": -0.95, "width": 16.47058823529412, "height": 11.764705882352942, "path": "summer-a.ear-right-dot"} + }, + "ear-right-dot-14": { + "ear-right-dot": {"x": -0.5152941176470598, "y": -0.662352941176471, "rotation": -0.95, "width": 16.47058823529412, "height": 11.764705882352942, "path": "summer-a.ear-right-dot"} + }, + "ear-right-dot-15": { + "ear-right-dot": {"x": -0.5152941176470598, "y": -0.662352941176471, "rotation": -0.95, "width": 16.47058823529412, "height": 11.764705882352942, "path": "summer-a.ear-right-dot"} + }, + "ear-right-dot-16": { + "ear-right-dot": {"x": -0.5152941176470598, "y": -0.662352941176471, "rotation": -0.95, "width": 16.47058823529412, "height": 11.764705882352942, "path": "summer-a.ear-right-dot"} + }, + "ear-right-dot-17": { + "ear-right-dot": {"x": -0.5152941176470598, "y": -0.662352941176471, "rotation": -0.95, "width": 16.47058823529412, "height": 11.764705882352942, "path": "summer-a.ear-right-dot"} + }, + "ear-right-dot-18": { + "ear-right-dot": {"x": -0.5152941176470598, "y": -0.662352941176471, "rotation": -0.95, "width": 16.47058823529412, "height": 11.764705882352942, "path": "summer-a.ear-right-dot"} + }, + "ear-right-dot-19": { + "ear-right-dot": {"x": -0.5152941176470598, "y": -0.662352941176471, "rotation": -0.95, "width": 16.47058823529412, "height": 11.764705882352942, "path": "summer-a.ear-right-dot"} + }, + "ear-right-dot-20": { + "ear-right-dot": {"x": -0.5152941176470598, "y": -0.662352941176471, "rotation": -0.95, "width": 16.47058823529412, "height": 11.764705882352942, "path": "summer-a.ear-right-dot"} + }, + "ear-right-under": { + "ear-right-under": {"x": 85.5464705882353, "y": -16.192941176470594, "rotation": -93, "width": 117.64705882352942, "height": 204.7058823529412, "path": "summer-a.ear-right-under"} + }, + "ear-right-upper": { + "ear-right-upper": {"x": 90.18058823529411, "y": -18.45235294117648, "rotation": -93, "width": 127.05882352941177, "height": 211.76470588235296, "path": "summer-a.ear-right-upper"} + }, + "eyes": { + "eyes": {"x": 24.664117647058813, "y": 25.639411764705883, "width": 329.4117647058824, "height": 152.94117647058823, "path": "summer-a.eyes"}, + "eyes-angry": {"x": 24.664117647058813, "y": 25.639411764705883, "width": 329.4117647058824, "height": 152.94117647058823, "path": "summer-a.eyes-angry"}, + "eyes-happy": {"x": 24.664117647058813, "y": 25.639411764705883, "width": 329.4117647058824, "height": 152.94117647058823, "path": "summer-a.eyes-happy"}, + "eyes-shut": {"x": 24.664117647058813, "y": 25.639411764705883, "width": 329.4117647058824, "height": 152.94117647058823, "path": "summer-a.eyes-shut"} + }, + "eyes-happy-accessory": { + "eyes-happy-accessory": { + "x": 1.458235294117645, "y": 0.958823529411761, "scaleX": 1.4, "scaleY": 1.4, "width": 98.82352941176471, "height": 105.88235294117648, "path": "summer-a.eyes-happy-accessory" + } + }, + "eyes-light-dot": {"eye-light-dot": {"x": -0.07764705882352896, "y": 2.2158823529411737, "width": 68.23529411764706, "height": 70.58823529411765, "path": "summer-a.eye-light-dot"}}, + "eyes-light-dot-02": {"eye-light-dot": {"x": -0.07764705882352896, "y": 2.2158823529411737, "width": 68.23529411764706, "height": 70.58823529411765, "path": "summer-a.eye-light-dot"}}, + "eyes-light-left": { + "light": { + "x": 7.520588235294116, "y": 1.589411764705884, "scaleX": 1.2, "scaleY": 1.8, "rotation": 178.57, "width": 47.05882352941177, "height": 72.94117647058823, "path": "summer-a.light" + } + }, + "eyes-light-right": { + "light": { + "x": 7.520588235294116, "y": 1.589411764705884, "scaleX": 1.2, "scaleY": 1.8, "rotation": 178.57, "width": 47.05882352941177, "height": 72.94117647058823, "path": "summer-a.light" + } + }, + "eyes-upper": {"eyes-upper": {"x": 24.510588235294115, "y": 24.749411764705883, "width": 327.05882352941177, "height": 152.94117647058823, "path": "summer-a.eyes-upper"}}, + "horn": {"horn": {"x": 102.13941176470588, "y": -19.69352941176471, "rotation": -90, "width": 232.94117647058823, "height": 237.64705882352942, "path": "summer-td.horn"}}, + "mouth": { + "mouth": {"x": -11.571176470588233, "y": 54.698235294117644, "width": 145.88235294117646, "height": 58.82352941176471, "path": "summer-a.mouth"}, + "mouth-bite": {"x": 0.01705882352940602, "y": 39.698235294117644, "width": 164.7058823529412, "height": 98.82352941176471, "path": "summer-a.mouth-bite"}, + "mouth-open": {"x": -6.27705882352942, "y": 16.69823529411765, "width": 155.29411764705884, "height": 138.8235294117647, "path": "summer-a.mouth-open"}, + "mouth-smile": {"x": -0.982941176470594, "y": 48.34529411764706, "width": 164.7058823529412, "height": 63.529411764705884, "path": "summer-a.mouth-smile"} + }, + "mouth-accessory": { + "mouth-accessory": { + "type": "mesh", + "uvs": [ + 0.7567, 0.0473, 0.86697, 0.14039, 0.9443, 0.25209, 0.99714, 0.36666, 0.99999, 0.49597, 1, 0.61625, 0.9486, 0.73368, 0.85981, 0.85684, 0.74238, 0.95422, 0.58914, 1, 0.46884, 1, + 0.36484, 0.99858, 0.24169, 0.95082, 0.12854, 0.86646, 0.03732, 0.75174, 0, 0.59723, 0, 0.48254, 0, 0.36237, 0.04691, 0.22488, 0.14286, 0.10888, 0.25027, 0.03298, 0.37916, 0, 0.49749, + 0, 0.62208, 0, 0.48816, 0.49691, 0.38984, 0.47048, 0.40039, 0.4428, 0.42008, 0.42041, 0.44087, 0.4047, 0.46611, 0.39392, 0.49007, 0.39257, 0.5155, 0.39441, 0.54363, 0.40403, 0.56948, + 0.42037, 0.58681, 0.44396, 0.59625, 0.46925, 0.60239, 0.4967, 0.59962, 0.5229, 0.58591, 0.54718, 0.56617, 0.57246, 0.53987, 0.58993, 0.50841, 0.5978, 0.48422, 0.59958, 0.46389, + 0.59563, 0.44255, 0.58693, 0.41915, 0.56782, 0.40098, 0.54296, 0.39091, 0.5164, 0.38677, 0.494, 0.25326, 0.49016, 0.26189, 0.43608, 0.28722, 0.37303, 0.33073, 0.32, 0.38007, 0.28612, + 0.43888, 0.26671, 0.49242, 0.26434, 0.5491, 0.26844, 0.61141, 0.29055, 0.66979, 0.32597, 0.72081, 0.37204, 0.74533, 0.4311, 0.75435, 0.49642, 0.74415, 0.5566, 0.71527, 0.6137, + 0.66814, 0.67121, 0.6053, 0.70764, 0.53338, 0.72221, 0.47953, 0.72167, 0.43531, 0.71188, 0.25606, 0.54343, 0.2836, 0.60497, 0.33013, 0.6593, 0.38745, 0.69572, 0.2371, 0.756, 0.32258, + 0.81152, 0.40412, 0.83877, 0.47432, 0.85748, 0.5622, 0.86577, 0.67514, 0.83328, 0.76201, 0.76212, 0.82762, 0.67147, 0.86788, 0.58544, 0.89046, 0.49617, 0.88879, 0.39439, 0.84496, + 0.30541, 0.77906, 0.22313, 0.69067, 0.15785, 0.58965, 0.1164, 0.49532, 0.10584, 0.40602, 0.11317, 0.30758, 0.14475, 0.22046, 0.19609, 0.15118, 0.28916, 0.11571, 0.39679, 0.10936, + 0.48603, 0.11577, 0.57155, 0.16414, 0.68085 + ], + "triangles": [ + 96, 69, 70, 73, 70, 71, 77, 66, 65, 34, 58, 59, 60, 35, 59, 61, 36, 60, 31, 30, 55, 30, 29, 55, 32, 31, 56, 33, 32, 57, 28, 53, 29, 27, 52, 28, 27, 26, 52, 34, 33, 58, 25, 50, 26, + 48, 49, 25, 36, 35, 60, 69, 48, 47, 37, 36, 62, 70, 47, 46, 38, 37, 63, 71, 46, 45, 39, 38, 64, 44, 71, 45, 72, 44, 43, 40, 39, 65, 68, 72, 43, 68, 43, 42, 67, 68, 42, 66, 41, 40, + 67, 42, 41, 66, 67, 41, 24, 29, 30, 24, 30, 31, 24, 31, 32, 24, 32, 33, 24, 33, 34, 24, 34, 35, 24, 35, 36, 28, 29, 24, 27, 28, 24, 26, 27, 24, 25, 26, 24, 48, 25, 24, 47, 48, 24, + 37, 24, 36, 46, 47, 24, 38, 24, 37, 45, 46, 24, 39, 24, 38, 44, 45, 24, 24, 43, 44, 39, 40, 24, 43, 24, 42, 40, 41, 24, 41, 42, 24, 35, 34, 59, 55, 29, 54, 53, 54, 29, 56, 31, 55, + 57, 32, 56, 52, 53, 28, 26, 51, 52, 50, 51, 26, 49, 50, 25, 69, 49, 48, 70, 69, 47, 63, 37, 62, 71, 70, 46, 64, 38, 63, 44, 72, 71, 65, 39, 64, 65, 66, 40, 58, 33, 57, 62, 36, 61, + 75, 72, 68, 67, 75, 68, 74, 71, 72, 76, 67, 66, 22, 89, 21, 87, 88, 22, 88, 89, 22, 90, 20, 21, 23, 87, 22, 86, 87, 23, 89, 90, 21, 91, 19, 20, 0, 86, 23, 85, 86, 0, 90, 91, 20, 1, + 85, 0, 18, 19, 91, 84, 85, 1, 88, 54, 89, 56, 55, 88, 55, 54, 88, 53, 90, 89, 87, 56, 88, 57, 56, 87, 54, 53, 89, 52, 91, 90, 92, 18, 91, 86, 57, 87, 58, 57, 86, 2, 84, 1, 53, 52, + 90, 92, 91, 52, 85, 58, 86, 59, 58, 85, 17, 18, 92, 83, 84, 2, 84, 59, 85, 51, 92, 52, 3, 83, 2, 60, 59, 84, 93, 17, 92, 93, 92, 51, 83, 60, 84, 50, 93, 51, 16, 17, 93, 94, 16, 93, + 94, 93, 50, 49, 94, 50, 83, 3, 4, 82, 83, 4, 60, 83, 82, 61, 60, 82, 69, 95, 94, 69, 94, 49, 81, 61, 82, 62, 61, 81, 95, 15, 16, 95, 16, 94, 82, 4, 5, 81, 82, 5, 80, 62, 81, 63, 62, + 80, 96, 95, 69, 6, 81, 5, 80, 81, 6, 14, 15, 95, 14, 95, 96, 73, 96, 70, 79, 63, 80, 64, 63, 79, 74, 73, 71, 78, 64, 79, 65, 64, 78, 74, 72, 75, 7, 80, 6, 79, 80, 7, 76, 75, 67, 77, + 65, 78, 76, 66, 77, 13, 14, 96, 13, 96, 73, 12, 73, 74, 13, 73, 12, 7, 8, 78, 7, 78, 79, 11, 74, 75, 10, 11, 75, 12, 74, 11, 76, 10, 75, 10, 76, 77, 9, 77, 78, 9, 78, 8, 10, 77, 9 + ], + "vertices": [ + 1, 29, 42.58, 72.34, 1, 1, 29, 60.45, 57.26, 1, 1, 29, 72.98, 39.16, 1, 1, 29, 81.54, 20.6, 1, 1, 29, 82, -0.34, 1, 1, 29, 82, -19.83, 1, 1, 29, 73.67, -38.85, 1, 1, 29, 59.29, + -58.81, 1, 1, 29, 40.26, -74.58, 1, 1, 29, 15.44, -82, 1, 1, 29, -4.05, -82, 1, 1, 29, -20.9, -81.77, 1, 1, 29, -40.85, -74.03, 1, 1, 29, -59.18, -60.37, 1, 1, 29, -73.95, -41.78, 1, + 1, 29, -82, -16.75, 1, 1, 29, -82, 1.83, 1, 1, 29, -82, 21.3, 1, 1, 29, -72.4, 43.57, 1, 1, 29, -56.86, 62.36, 1, 1, 29, -39.46, 74.66, 1, 1, 29, -18.58, 82, 1, 1, 29, 0.59, 82, 1, + 1, 29, 20.78, 80.84, 1, 1, 81, -0.92, -0.5, 1, 1, 81, -16.85, 3.78, 1, 1, 81, -15.14, 8.27, 1, 1, 81, -11.95, 11.89, 1, 1, 81, -8.58, 14.44, 1, 1, 81, -4.49, 16.19, 1, 1, 81, -0.61, + 16.41, 1, 1, 81, 3.51, 16.11, 1, 1, 81, 8.07, 14.55, 1, 1, 81, 12.26, 11.9, 1, 1, 81, 15.06, 8.08, 1, 1, 81, 16.59, 3.98, 1, 1, 81, 17.59, -0.46, 1, 1, 81, 17.14, -4.71, 1, 1, 81, + 14.92, -8.64, 1, 1, 81, 11.72, -12.74, 1, 1, 81, 7.46, -15.57, 1, 1, 81, 2.36, -16.84, 1, 1, 81, -1.56, -17.13, 1, 1, 81, -4.85, -16.49, 1, 1, 81, -8.31, -15.08, 1, 1, 81, -12.1, + -11.99, 1, 1, 81, -15.04, -7.96, 1, 1, 81, -16.67, -3.66, 1, 1, 81, -17.34, -0.03, 1, 2, 29, -38.97, 0.6, 0.37475, 81, -38.97, 0.6, 0.62525, 2, 29, -37.57, 9.36, 0.38176, 81, -37.57, + 9.36, 0.61824, 2, 29, -33.47, 19.57, 0.39514, 81, -33.47, 19.57, 0.60486, 2, 29, -26.42, 28.16, 0.40154, 81, -26.42, 28.16, 0.59846, 2, 29, -18.43, 33.65, 0.40298, 81, -18.43, 33.65, + 0.59702, 2, 29, -8.9, 36.8, 0.39723, 81, -8.9, 36.8, 0.60277, 2, 29, -0.23, 37.18, 0.38672, 81, -0.23, 37.18, 0.61328, 2, 29, 8.95, 36.51, 0.39243, 81, 8.95, 36.51, 0.60757, 2, 29, + 19.05, 32.93, 0.39729, 81, 19.05, 32.93, 0.60271, 2, 29, 28.51, 27.19, 0.41715, 81, 28.51, 27.19, 0.58285, 2, 29, 36.77, 19.73, 0.45304, 81, 36.77, 19.73, 0.54696, 2, 29, 40.74, + 10.16, 0.44594, 81, 40.74, 10.16, 0.55406, 2, 29, 42.2, -0.42, 0.43856, 81, 42.2, -0.42, 0.56144, 2, 29, 40.55, -10.17, 0.41782, 81, 40.55, -10.17, 0.58218, 2, 29, 35.87, -19.42, + 0.38686, 81, 35.87, -19.42, 0.61314, 2, 29, 28.24, -28.73, 0.36878, 81, 28.24, -28.73, 0.63122, 2, 29, 18.06, -34.64, 0.3386, 81, 18.06, -34.64, 0.6614, 2, 29, 6.41, -37, 0.30037, + 81, 6.41, -37, 0.69963, 2, 29, -2.32, -36.91, 0.28415, 81, -2.32, -36.91, 0.71585, 2, 29, -9.48, -35.32, 0.27399, 81, -9.48, -35.32, 0.72601, 2, 29, -38.52, -8.03, 0.36783, 81, + -38.52, -8.03, 0.63217, 2, 29, -34.06, -18, 0.33446, 81, -34.06, -18, 0.66554, 2, 29, -26.52, -26.8, 0.30599, 81, -26.52, -26.8, 0.69401, 2, 29, -17.23, -32.71, 0.28378, 81, -17.23, + -32.71, 0.71622, 2, 29, -41.59, -42.47, 0.73847, 81, -41.59, -42.47, 0.26153, 2, 29, -27.74, -51.46, 0.71173, 81, -27.74, -51.46, 0.28827, 2, 29, -14.53, -55.88, 0.69513, 81, -14.53, + -55.88, 0.30487, 2, 29, -3.16, -58.91, 0.72225, 81, -3.16, -58.91, 0.27775, 2, 29, 11.08, -60.25, 0.77228, 81, 11.08, -60.25, 0.22772, 2, 29, 29.37, -54.99, 0.80171, 81, 29.37, + -54.99, 0.19829, 2, 29, 43.44, -43.46, 0.78981, 81, 43.44, -43.46, 0.21019, 2, 29, 54.07, -28.78, 0.79382, 81, 54.07, -28.78, 0.20618, 2, 29, 60.6, -14.84, 0.827, 81, 60.6, -14.84, + 0.173, 2, 29, 64.25, -0.38, 0.87698, 81, 64.25, -0.38, 0.12302, 2, 29, 63.98, 16.11, 0.92141, 81, 63.98, 16.11, 0.07859, 2, 29, 56.88, 30.53, 0.90642, 81, 56.88, 30.53, 0.09358, 2, + 29, 46.21, 43.86, 0.90058, 81, 46.21, 43.86, 0.09942, 2, 29, 31.89, 54.43, 0.8953, 81, 31.89, 54.43, 0.1047, 2, 29, 15.52, 61.14, 0.89934, 81, 15.52, 61.14, 0.10066, 2, 29, 0.24, + 62.86, 0.89762, 81, 0.24, 62.86, 0.10238, 2, 29, -14.22, 61.67, 0.90341, 81, -14.22, 61.67, 0.09659, 2, 29, -30.17, 56.55, 0.9151, 81, -30.17, 56.55, 0.0849, 2, 29, -44.28, 48.24, + 0.93596, 81, -44.28, 48.24, 0.06404, 2, 29, -55.51, 33.16, 0.90966, 81, -55.51, 33.16, 0.09034, 2, 29, -61.25, 15.72, 0.86888, 81, -61.25, 15.72, 0.13112, 2, 29, -62.28, 1.26, + 0.83823, 81, -62.28, 1.26, 0.16177, 2, 29, -61.24, -12.59, 0.82811, 81, -61.24, -12.59, 0.17189, 2, 29, -53.41, -30.3, 0.78788, 81, -53.41, -30.3, 0.21212 + ], + "hull": 24, + "edges": [ + 18, 20, 18, 16, 16, 14, 14, 12, 8, 10, 12, 10, 8, 6, 6, 4, 4, 2, 2, 0, 44, 46, 0, 46, 42, 44, 42, 40, 40, 38, 38, 36, 32, 34, 36, 34, 30, 32, 30, 28, 28, 26, 26, 24, 20, 22, 24, 22, + 50, 48, 52, 48, 50, 52, 54, 48, 52, 54, 56, 48, 54, 56, 58, 48, 56, 58, 60, 48, 58, 60, 62, 48, 60, 62, 64, 48, 62, 64, 66, 48, 64, 66, 68, 48, 66, 68, 70, 48, 68, 70, 72, 48, 70, + 72, 74, 48, 72, 74, 76, 48, 74, 76, 78, 48, 76, 78, 80, 48, 78, 80, 82, 48, 80, 82, 84, 48, 82, 84, 86, 48, 84, 86, 88, 48, 86, 88, 90, 48, 88, 90, 92, 48, 90, 92, 94, 48, 92, 94, + 96, 48, 94, 96, 96, 50, 98, 96, 100, 50, 98, 100, 102, 52, 100, 102, 104, 54, 102, 104, 106, 56, 104, 106, 108, 58, 106, 108, 110, 60, 108, 110, 112, 62, 110, 112, 114, 64, 112, 114, + 116, 66, 114, 116, 118, 68, 116, 118, 120, 70, 118, 120, 122, 72, 120, 122, 124, 74, 122, 124, 126, 76, 124, 126, 128, 78, 126, 128, 130, 80, 128, 130, 132, 82, 130, 132, 134, 84, + 132, 134, 136, 86, 134, 136, 138, 94, 98, 138, 140, 92, 138, 140, 142, 90, 140, 142, 144, 88, 142, 144, 144, 136, 26, 146, 146, 142, 24, 148, 148, 144, 146, 148, 22, 150, 150, 136, + 148, 150, 20, 152, 152, 134, 150, 152, 18, 154, 154, 132, 152, 154, 16, 156, 156, 130, 154, 156, 14, 158, 158, 128, 156, 158, 12, 160, 160, 126, 158, 160, 10, 162, 162, 124, 160, + 162, 8, 164, 164, 122, 162, 164, 6, 166, 166, 120, 164, 166, 4, 168, 168, 118, 166, 168, 2, 170, 170, 116, 168, 170, 0, 172, 172, 114, 170, 172, 46, 174, 174, 112, 172, 174, 44, 176, + 176, 110, 174, 176, 42, 178, 178, 108, 176, 178, 40, 180, 180, 106, 178, 180, 38, 182, 182, 104, 180, 182, 36, 184, 184, 102, 182, 184, 34, 186, 186, 100, 184, 186, 32, 188, 188, 98, + 186, 188, 30, 190, 190, 138, 188, 190, 28, 192, 192, 140, 190, 192, 192, 146 + ], + "width": 162.35294117647058, + "height": 162.35294117647058, + "path": "summer-a.mouth-accessory", + "x": 0.8235294117647101, + "y": 0.8235294117647101 + } }, - "body-ground": { - "body-ground1a_00": {"x": 4.75, "y": 123.01, "width": 254.6875, "height": 275.0, "path": "body-accessory.body-ground1a_00"}, - "body-ground1a_01": {"x": 4.75, "y": 123.01, "width": 254.6875, "height": 275.0, "path": "body-accessory.body-ground1a_01"}, - "body-ground1a_02": {"x": 4.75, "y": 123.01, "width": 254.6875, "height": 275.0, "path": "body-accessory.body-ground1a_02"}, - "body-ground1a_03": {"x": 4.75, "y": 123.01, "width": 254.6875, "height": 275.0, "path": "body-accessory.body-ground1a_03"} - } + "tail": {"tail": {"x": 114.19882352941177, "y": 4.008823529411768, "rotation": 12, "width": 225.88235294117646, "height": 225.88235294117646, "path": "summer-a.tail"}} } } ], "events": {"hit": {}, "hit-buff": {}, "jump": {}, "start-attack": {}}, "keyAnimations": { - "activity/appear": "3921179016", + "activity/appear": "1023093953", "activity/bath": "3305387968", - "attack/ranged/cast-fly": "3722823556", - "attack/ranged/cast-high": "3577703416", - "attack/ranged/cast-low": "1793942137", + "attack/ranged/cast-fly": "4180526371", + "attack/ranged/cast-high": "164191126", + "attack/ranged/cast-low": "198813017", "attack/ranged/cast-multi": "151119", - "attack/ranged/cast-tail": "977217026", + "attack/ranged/cast-tail": "3850719809", + "action/mix/ear-animation": "901954966", "activity/eat-bite": "1137807767", - "activity/eat-chew": "2571197086", + "activity/eat-chew": "1988236421", "activity/entrance": "3768378365", "defense/evade": "1735454995", "activity/evolve": "649307630", - "battle/get-buff": "2993060391", - "battle/get-debuff": "2919546916", - "defense/hit-by-normal": "2695183231", - "defense/hit-by-normal-crit": "721863963", - "defense/hit-by-normal-dramatic": "2501809037", - "defense/hit-by-ranged-attack": "3309952905", - "defense/hit-with-shield": "228539860", - "attack/melee/horn-gore": "3177102970", - "attack/melee/mouth-bite": "1912445836", + "action/mix/eyes-animation": "3799301307", + "battle/get-buff": "1455190363", + "battle/get-debuff": "606904312", + "defense/hit-by-normal": "2045974966", + "defense/hit-by-normal-crit": "2130010601", + "defense/hit-by-normal-dramatic": "3823092125", + "defense/hit-by-ranged-attack": "2224561612", + "defense/hit-with-shield": "390714790", + "attack/melee/horn-gore": "1327954218", + "attack/melee/mouth-bite": "2237748264", "action/move-back": "3766271173", "action/move-forward": "2945160014", - "attack/melee/multi-attack": "2627626635", - "action/idle/normal": "568166623", + "attack/melee/multi-attack": "3774600630", + "action/idle/normal": "1659336865", "attack/melee/normal-attack": "3305373483", + "action/mix/normal-mouth-animation": "1178295570", "activity/prepare": "405864717", - "action/idle/random-01": "880116349", - "action/idle/random-02": "3151577093", - "action/idle/random-03": "2146505268", - "action/idle/random-04": "3708365579", + "action/idle/random-01": "554401889", + "action/idle/random-02": "3634120758", + "action/idle/random-03": "2021333900", + "action/idle/random-04": "1003789695", "action/idle/random-05": "2745614147", - "action/run": "378584637", - "draft/run-origin": "1973997258", - "attack/melee/shrimp": "244230390", - "status/sitting-duck": "1990830770", + "action/run": "3942433225", + "draft/run-origin": "237238075", + "attack/melee/shrimp": "3833448733", "activity/sleep": "100562494", - "status/stun": "2745614147", - "attack/melee/tail-multi-slap": "2905793214", - "attack/melee/tail-roll": "3678751400", - "attack/melee/tail-smash": "2662497262", - "attack/melee/tail-thrash": "2102433122", + "attack/melee/tail-multi-slap": "3317139533", + "attack/melee/tail-roll": "3108617565", + "attack/melee/tail-smash": "519942130", + "attack/melee/tail-thrash": "628713175", "activity/victory-pose-back-flip": "2227634241" } }, - "summer-ta": { + "summer-ta-lv2": { "bones": [ {"name": "@root"}, {"name": "@pivot-main", "parent": "@root"}, {"name": "@pivot-back", "parent": "@pivot-main", "x": 205, "y": 180, "color": "ff0101ff"}, {"name": "@pivot-center", "parent": "@pivot-back", "x": -215.11, "y": -5.25, "color": "ff0101ff"}, @@ -11709,27 +26533,27 @@ {"name": "leg-front-right-IK", "parent": "@pivot-main", "x": -195.99, "y": -10.21, "color": "ff3f00ff"}, {"name": "leg-front-left-IK", "parent": "@pivot-main", "x": 42.3, "y": -18.42, "color": "ff3f00ff"}, {"name": "leg-back-left-IK", "parent": "@pivot-main", "x": 208.57, "y": 1.35, "color": "ff3f00ff"}, {"name": "@ball", "parent": "@root", "y": 191, "color": "f3981bff"}, - {"name": "ball", "parent": "@ball", "y": -191, "color": "f4a729ff"}, {"name": "mouth-bubble", "parent": "@mouth", "x": -191.16, "y": -1.83}, + {"name": "ball", "parent": "@ball", "y": -191, "color": "f4a729ff"}, {"name": "mouth-bubble", "parent": "@mouth", "x": -247.51, "y": -1.83}, {"name": "mouth-accessory", "parent": "mouth-bubble", "x": -67.84, "y": 101.83}, {"name": "eyes-happy-accessory", "parent": "@eyes", "x": 142.51, "y": 62.21}, - {"name": "ear-right-bubble", "parent": "ear-right", "length": 40.07, "rotation": -179.99, "x": 184.94, "y": -20.48}, - {"name": "ear-left-bubble", "parent": "ear-left", "length": 48.54, "rotation": 176.27, "x": 190.98, "y": -21.07, "scaleX": 0.949}, + {"name": "ear-right-bubble", "parent": "ear-right", "length": 40.07, "rotation": -179.99, "x": 189.28, "y": -17.76}, + {"name": "ear-left-bubble", "parent": "ear-left", "length": 48.54, "rotation": 176.27, "x": 194.33, "y": -25.1, "scaleX": 0.9478, "scaleY": 1.223}, {"name": "ear-left-all-bubble", "parent": "ear-left", "length": 26.1, "rotation": 0.95, "x": -6.64, "y": -27.7, "color": "3002ffff"}, {"name": "ear-right-dot-01", "parent": "ear-left-all-bubble", "rotation": -90.95, "x": -13.64, "y": 22.67, "scaleX": 0.3508, "scaleY": 0.3508, "color": "2f9bffff"}, {"name": "ear-left-dot-01", "parent": "ear-left-all-bubble", "rotation": -90.95, "x": -28.82, "y": -24.72, "scaleX": 0.7755, "scaleY": 0.7755, "color": "2f9bffff"}, - {"name": "ear-right-bubble-02", "parent": "ear-right-bubble", "rotation": 86.99, "x": 63.76, "y": -22.96}, - {"name": "ear-right-bubble-03", "parent": "ear-right-bubble", "rotation": 86.99, "x": 64.99, "y": -1.59}, - {"name": "ear-right-bubble-04", "parent": "ear-right-bubble", "rotation": 86.99, "x": 66.12, "y": 19.85}, - {"name": "ear-left-bubble-02", "parent": "ear-left-bubble", "rotation": 93.73, "x": 68.81, "y": -22.89}, - {"name": "ear-left-bubble-03", "parent": "ear-left-bubble", "rotation": 93.73, "x": 70.45, "y": -0.4}, - {"name": "ear-left-bubble-04", "parent": "ear-left-bubble", "rotation": 93.73, "x": 65.87, "y": 22.28}, - {"name": "ear-right-bubble-05", "parent": "ear-right", "length": 40.07, "rotation": -179.99, "x": 184.94, "y": -20.48}, - {"name": "ear-right-bubble-06", "parent": "ear-right-bubble-05", "rotation": 86.99, "x": 63.76, "y": -22.96}, - {"name": "ear-right-bubble-07", "parent": "ear-right-bubble-05", "rotation": 86.99, "x": 64.99, "y": -1.59}, - {"name": "ear-right-bubble-08", "parent": "ear-right-bubble-05", "rotation": 86.99, "x": 66.12, "y": 19.85}, - {"name": "ear-left-bubble-05", "parent": "ear-left", "length": 48.54, "rotation": 176.27, "x": 190.98, "y": -21.07, "scaleX": 0.991}, - {"name": "ear-left-bubble-06", "parent": "ear-left-bubble-05", "rotation": 93.73, "x": 67.27, "y": -22.98}, - {"name": "ear-left-bubble-07", "parent": "ear-left-bubble-05", "rotation": 93.73, "x": 65.82, "y": -0.69}, - {"name": "ear-left-bubble-08", "parent": "ear-left-bubble-05", "rotation": 93.73, "x": 64.32, "y": 22.18}, + {"name": "ear-right-bubble-02", "parent": "ear-right-bubble", "rotation": 60.75, "x": 54.12, "y": -36.76}, + {"name": "ear-right-bubble-03", "parent": "ear-right-bubble", "rotation": 86.99, "x": 57.27, "y": 1.68}, + {"name": "ear-right-bubble-04", "parent": "ear-right-bubble", "rotation": 86.99, "x": 69.87, "y": 43.59}, + {"name": "ear-left-bubble-02", "parent": "ear-left-bubble", "rotation": 93.73, "x": 56.21, "y": -21.92}, + {"name": "ear-left-bubble-03", "parent": "ear-left-bubble", "rotation": 58.6, "x": 59.07, "y": 10.64}, + {"name": "ear-left-bubble-04", "parent": "ear-left-bubble", "rotation": 33.8, "x": 64.18, "y": 41.28}, + {"name": "ear-right-bubble-05", "parent": "ear-right", "length": 40.07, "rotation": -179.99, "x": 189.28, "y": -17.76}, + {"name": "ear-right-bubble-06", "parent": "ear-right-bubble-05", "rotation": 60.75, "x": 54.12, "y": -36.76}, + {"name": "ear-right-bubble-07", "parent": "ear-right-bubble-05", "rotation": 86.99, "x": 57.27, "y": 1.67}, + {"name": "ear-right-bubble-08", "parent": "ear-right-bubble-05", "rotation": 86.99, "x": 69.87, "y": 43.59}, + {"name": "ear-left-bubble-05", "parent": "ear-left", "length": 48.54, "rotation": 176.27, "x": 194.33, "y": -25.1, "scaleX": 0.9897, "scaleY": 1.223}, + {"name": "ear-left-bubble-06", "parent": "ear-left-bubble-05", "rotation": 93.73, "x": 55.2, "y": -22.01}, + {"name": "ear-left-bubble-07", "parent": "ear-left-bubble-05", "rotation": 58.6, "x": 54.91, "y": 10.35}, + {"name": "ear-left-bubble-08", "parent": "ear-left-bubble-05", "rotation": 33.8, "x": 62.7, "y": 41.18}, {"name": "ear-right-dot-02", "parent": "ear-left-all-bubble", "rotation": -95.73, "x": -18.26, "y": -8.1, "scaleX": 0.5668, "scaleY": 0.6813, "color": "2f9bffff"}, {"name": "ear-left-dot-02", "parent": "ear-left-all-bubble", "rotation": -88.74, "x": 8.57, "y": 59.72, "scaleX": 0.6577, "scaleY": 0.5996, "color": "2f9bffff"}, {"name": "ear-right-dot-03", "parent": "ear-left-all-bubble", "rotation": -87.96, "x": -25.76, "y": -45.18, "scaleX": 0.2583, "scaleY": 0.2881, "color": "2f9bffff"}, @@ -11786,13 +26610,9 @@ {"name": "ear-right-dot-19", "bone": "ear-right-dot-19", "color": "ffffff00", "attachment": "ear-right-dot"}, {"name": "ear-right-dot-15", "bone": "ear-right-dot-15", "color": "ffffff00", "attachment": "ear-right-dot"}, {"name": "ear-right-dot-20", "bone": "ear-right-dot-20", "color": "ffffff00", "attachment": "ear-right-dot"}, - {"name": "ear-right-bubble", "bone": "ear-right-bubble", "color": "00f7c2ff", "attachment": "ear-right-bubble"}, + {"name": "ear-right-bubble", "bone": "ear-right-bubble", "color": "0bc5b6ff", "attachment": "ear-right-bubble"}, {"name": "ear-right-bubble-02", "bone": "ear-right-bubble-05", "attachment": "ear-right-bubble"}, {"name": "ear-right-upper", "bone": "ear-right", "attachment": "ear-right-upper"}, - {"name": "leg-front-left", "bone": "@leg-front-left", "attachment": "summer-leg-front-left"}, {"name": "eyes", "bone": "@eyes", "attachment": "eyes"}, - {"name": "eyes-light-dot", "bone": "eyes-light-dot", "attachment": "eye-light-dot"}, {"name": "eyes-light-dot-02", "bone": "eyes-light-dot-02", "attachment": "eye-light-dot"}, - {"name": "eyes-light-left", "bone": "eyes-light-left", "color": "fff96500", "attachment": "light", "blend": "additive"}, - {"name": "eyes-light-right", "bone": "eyes-light-right", "color": "fff96500", "attachment": "light", "blend": "additive"}, {"name": "eyes-upper", "bone": "@eyes", "attachment": "eyes-upper"}, - {"name": "mouth", "bone": "@mouth", "attachment": "mouth"}, {"name": "horn", "bone": "horn", "attachment": "horn"}, + {"name": "leg-front-left", "bone": "@leg-front-left", "attachment": "summer-leg-front-left"}, {"name": "horn", "bone": "horn", "attachment": "horn"}, {"name": "ear-left-under", "bone": "ear-left", "attachment": "ear-left-under"}, {"name": "ear-left-dot-01", "bone": "ear-left-dot-01", "color": "ffffff00", "attachment": "ear-left-dot"}, {"name": "ear-left-dot-04", "bone": "ear-left-dot-04", "color": "ffffff00", "attachment": "ear-left-dot"}, {"name": "ear-left-dot-03", "bone": "ear-left-dot-03", "color": "ffffff00", "attachment": "ear-left-dot"}, @@ -11809,10 +26629,14 @@ {"name": "ear-right-dot-09", "bone": "ear-right-dot-09", "color": "ffffff00", "attachment": "ear-right-dot"}, {"name": "ear-right-dot-05", "bone": "ear-right-dot-05", "color": "ffffff00", "attachment": "ear-right-dot"}, {"name": "ear-right-dot-10", "bone": "ear-right-dot-10", "color": "ffffff00", "attachment": "ear-right-dot"}, - {"name": "ear-left-bubble", "bone": "ear-left-bubble", "color": "00f7c2ff", "attachment": "ear-left-bubble"}, + {"name": "ear-left-bubble", "bone": "ear-left-bubble", "color": "0bc5b6ff", "attachment": "ear-left-bubble"}, {"name": "ear-left-bubble-02", "bone": "ear-left-bubble-05", "attachment": "ear-left-bubble"}, {"name": "ear-left-upper", "bone": "ear-left", "attachment": "ear-left-upper"}, {"name": "eyes-happy-accessory", "bone": "eyes-happy-accessory", "color": "ffffff00", "attachment": "eyes-happy-accessory", "blend": "additive"}, - {"name": "mouth-accessory", "bone": "mouth-accessory", "color": "ffffff00", "attachment": "mouth-accessory"} + {"name": "eyes", "bone": "@eyes", "attachment": "eyes"}, {"name": "eyes-light-dot", "bone": "eyes-light-dot", "attachment": "eye-light-dot"}, + {"name": "eyes-light-dot-02", "bone": "eyes-light-dot-02", "attachment": "eye-light-dot"}, + {"name": "eyes-light-left", "bone": "eyes-light-left", "color": "fff96500", "attachment": "light", "blend": "additive"}, + {"name": "eyes-light-right", "bone": "eyes-light-right", "color": "fff96500", "attachment": "light", "blend": "additive"}, {"name": "eyes-upper", "bone": "@eyes", "attachment": "eyes-upper"}, + {"name": "mouth", "bone": "@mouth", "attachment": "mouth"}, {"name": "mouth-accessory", "bone": "mouth-accessory", "color": "ffffff00", "attachment": "mouth-accessory"} ], "ik": [ {"name": "leg-back-left-IK", "order": 3, "bones": ["@leg-back-left"], "target": "leg-back-left-IK"}, @@ -11824,7 +26648,7 @@ { "name": "default", "attachments": { - "back": {"back": {"x": 109.94, "y": 18.25, "rotation": -58, "width": 285, "height": 363, "path": "summer-ta.back"}}, + "back": {"back": {"x": 141.02470588235292, "y": -5.6, "rotation": -58, "width": 296.47058823529414, "height": 320.0, "path": "summer-ta-lv2.back"}}, "ear-left-bubble": { "ear-left-bubble": { "type": "mesh", @@ -11868,8 +26692,8 @@ 106, 106, 63, 105, 103, 104, 64, 64, 104, 63, 87, 86, 103, 103, 86, 104, 100, 99, 87, 87, 99, 86, 81, 105, 80, 63, 62, 105, 105, 62, 80, 62, 63, 85, 86, 85, 104, 63, 104, 85 ], "vertices": [ - 4, 39, 58.43, 20.31, 0.00012, 40, 36.09, 20.31, 0.00054, 41, 13.17, 20.31, 0.12631, 32, 43.2, 34, 0.87302, 3, 40, 39.33, 12.22, 0.00019, 41, 16.41, 12.22, 0.19743, 32, 51.06, 37.76, - 0.80237, 3, 40, 41.94, 5.69, 6e-05, 41, 19.02, 5.69, 0.26715, 32, 57.41, 40.79, 0.73278, 3, 40, 43.5, 1.06, 1e-05, 41, 20.58, 1.06, 0.33542, 32, 61.92, 42.65, 0.66457, 3, 40, 45, + 4, 39, 54.66, 14.56, 0.00012, 40, 32.32, 14.56, 0.00054, 41, 9.4, 14.56, 0.12631, 32, 49.18, 30.61, 0.87302, 3, 40, 33.6, 1.37, 0.00019, 41, 10.68, 1.36, 0.19743, 32, 62.26, 32.75, + 0.80237, 3, 40, 36.22, -5.17, 6e-05, 41, 13.3, -5.17, 0.26715, 32, 68.61, 35.79, 0.73278, 3, 40, 43.5, 1.06, 1e-05, 41, 20.58, 1.06, 0.33542, 32, 61.92, 42.65, 0.66457, 3, 40, 45, -3.4, 1e-05, 41, 22.08, -3.4, 0.40033, 32, 66.27, 44.44, 0.59966, 3, 40, 46.9, -9.05, 0, 41, 23.98, -9.05, 0.45012, 32, 71.79, 46.7, 0.54988, 3, 40, 40.83, -9.07, 0, 41, 17.91, -9.07, 0.5829, 32, 72.21, 40.65, 0.4171, 3, 40, 38.56, -9.08, 4e-05, 41, 15.64, -9.08, 0.72131, 32, 72.37, 38.38, 0.27865, 3, 40, 36.78, -9.09, 0.00031, 41, 13.86, -9.09, 0.8264, 32, 72.49, 36.6, 0.17329, 3, 40, 33.93, -9.1, 0.00157, 41, 11, -9.1, 0.90359, 32, 72.69, 33.76, 0.09484, 3, 40, 31.22, -9.11, 0.00537, 41, 8.3, -9.11, 0.94975, 32, 72.87, 31.05, 0.04488, @@ -11895,67 +26719,66 @@ 0.00033, 40, 17.62, 66.47, 0.00011, 41, -5.3, 66.47, 0.0498, 32, -1.66, 12.57, 0.94976, 3, 39, -16.24, -2.91, 0.33437, 40, -38.58, -2.91, 0.0002, 32, 71.23, -39, 0.66543, 3, 39, -14.53, 1.37, 0.32645, 40, -36.87, 1.37, 0.00078, 32, 66.85, -37.57, 0.67277, 4, 39, -12.36, 7.36, 0.307, 40, -34.7, 7.36, 0.00285, 41, -57.62, 7.36, 1e-05, 32, 60.73, -35.79, 0.69014, 4, 39, -9.97, 11.91, 0.26477, 40, -32.31, 11.91, 0.00971, 41, -55.23, 11.91, 0.00027, 32, 56.04, -33.7, 0.72525, 4, 39, -6.21, 19.66, 0.19881, 40, -28.55, 19.66, 0.00959, - 41, -51.47, 19.66, 0.00132, 32, 48.05, -30.46, 0.79028, 4, 39, 24.46, 19.97, 0.10712, 40, 2.12, 19.97, 0.11704, 41, -20.8, 19.97, 0.11672, 32, 45.75, 0.12, 0.65912, 4, 39, 53.97, - 20.27, 0.00116, 40, 31.63, 20.27, 0.00313, 41, 8.71, 20.27, 0.2148, 32, 43.53, 29.55, 0.7809, 4, 39, 57.02, 12.2, 0.0001, 40, 34.68, 12.2, 0.00083, 41, 11.76, 12.2, 0.29942, 32, - 51.38, 33.12, 0.69965, 3, 40, 36.75, 5.8, 0.00034, 41, 13.82, 5.8, 0.378, 32, 57.63, 35.6, 0.62166, 3, 40, 38.1, 1.08, 0.00022, 41, 15.18, 1.08, 0.45653, 32, 62.25, 37.26, 0.54325, - 3, 40, 39.36, -3.36, 0.00015, 41, 16.43, -3.36, 0.53433, 32, 66.61, 38.8, 0.46552, 4, 39, 23.97, 12.06, 0.12565, 40, 1.63, 12.06, 0.24275, 41, -21.29, 12.06, 0.14114, 32, 53.68, - 0.15, 0.49046, 4, 39, 23.54, 6.58, 0.11007, 40, 1.2, 6.58, 0.47217, 41, -21.72, 6.58, 0.12893, 32, 59.17, 0.08, 0.28883, 4, 39, 23.28, 1.22, 0.10884, 40, 0.94, 1.22, 0.60558, 41, - -21.98, 1.22, 0.12698, 32, 64.53, 0.17, 0.1586, 4, 39, 23.11, -3.14, 0.10666, 40, 0.77, -3.14, 0.70334, 41, -22.15, -3.14, 0.12133, 32, 68.89, 0.28, 0.06866, 4, 39, 6.87, 19.8, - 0.29773, 40, -15.47, 19.8, 0.06022, 41, -38.39, 19.8, 0.01488, 32, 47.07, -17.41, 0.62717, 4, 39, 3.75, 11.97, 0.44072, 40, -18.59, 11.97, 0.09602, 41, -41.51, 11.97, 0.01064, 32, - 55.08, -20.02, 0.45261, 4, 39, 1.91, 7.05, 0.66419, 40, -20.42, 7.05, 0.11803, 41, -43.35, 7.05, 0.002, 32, 60.11, -21.53, 0.21579, 4, 39, 0.03, 1.31, 0.77187, 40, -22.31, 1.31, - 0.12352, 41, -45.23, 1.31, 0.00043, 32, 65.96, -23.04, 0.10418, 4, 39, -1.27, -2.99, 0.84303, 40, -23.61, -2.99, 0.11246, 41, -46.53, -2.99, 0.00018, 32, 70.34, -24.05, 0.04432, 4, - 39, -1.8, 26.91, 0.12744, 40, -24.14, 26.91, 0.00959, 41, -47.06, 26.91, 0.0076, 32, 40.54, -26.53, 0.85537, 4, 39, 24.96, 27.56, 0.0719, 40, 2.62, 27.56, 0.03639, 41, -20.3, 27.56, - 0.07572, 32, 38.14, 0.13, 0.81598, 4, 39, 50.76, 27.7, 0.00702, 40, 28.42, 27.7, 0.00523, 41, 5.5, 27.7, 0.131, 32, 36.32, 25.87, 0.85675, 4, 39, 3.83, 36.15, 0.04791, 40, -18.51, - 36.15, 0.00352, 41, -41.43, 36.15, 0.00803, 32, 30.95, -21.51, 0.94054, 4, 39, 25.65, 37.95, 0.02662, 40, 3.31, 37.95, 0.00775, 41, -19.61, 37.95, 0.02767, 32, 27.73, 0.14, 0.93795, - 4, 39, 46.64, 37.25, 0.00753, 40, 24.3, 37.25, 0.00227, 41, 1.38, 37.25, 0.04846, 32, 27.06, 21.14, 0.94174, 4, 39, 41.75, 20.15, 0.01306, 40, 19.41, 20.15, 0.04509, 41, -3.51, - 20.15, 0.32134, 32, 44.45, 17.37, 0.62052, 4, 39, 43.25, 12.14, 0.00895, 40, 20.91, 12.14, 0.07841, 41, -2.01, 12.14, 0.49568, 32, 52.34, 19.39, 0.41696, 4, 39, 44.35, 6.12, 0.0015, - 40, 22.01, 6.12, 0.09572, 41, -0.91, 6.12, 0.67014, 32, 58.27, 20.88, 0.23264, 4, 39, 45.08, 1.14, 0.00025, 40, 22.74, 1.14, 0.108, 41, -0.18, 1.14, 0.76841, 32, 63.2, 21.93, - 0.12334, 4, 39, 45.58, -3.27, 0.0001, 40, 23.24, -3.27, 0.10937, 41, 0.32, -3.27, 0.83473, 32, 67.56, 22.71, 0.0558, 4, 39, 40.33, 27.64, 0.02381, 40, 18, 27.64, 0.02132, 41, -4.93, - 27.64, 0.16866, 32, 37.06, 15.47, 0.78621, 4, 39, 9.71, 27.19, 0.16236, 40, -12.63, 27.19, 0.02827, 41, -35.55, 27.19, 0.02548, 32, 39.51, -15.06, 0.78388, 4, 39, 15.01, 19.88, - 0.23124, 40, -7.33, 19.88, 0.11759, 41, -30.25, 19.88, 0.04679, 32, 46.46, -9.29, 0.60438, 4, 39, 13.78, 12.01, 0.29354, 40, -8.56, 12.01, 0.19873, 41, -31.48, 12.01, 0.04427, 32, - 54.39, -10.01, 0.46346, 4, 39, 12.95, 6.81, 0.37869, 40, -9.39, 6.81, 0.34588, 41, -32.31, 6.81, 0.01968, 32, 59.63, -10.5, 0.25575, 4, 39, 11.95, 1.27, 0.42861, 40, -10.39, 1.27, - 0.42317, 41, -33.31, 1.27, 0.01297, 32, 65.23, -11.14, 0.13524, 4, 39, 11.29, -3.07, 0.46725, 40, -11.05, -3.07, 0.46538, 41, -33.97, -3.07, 0.0097, 32, 69.59, -11.51, 0.05768, 4, - 39, -0.59, 19.72, 0.32338, 40, -22.92, 19.72, 0.02881, 41, -45.85, 19.72, 0.003, 32, 47.63, -24.85, 0.64481, 4, 39, -3.82, 11.93, 0.4391, 40, -26.16, 11.93, 0.03345, 41, -49.08, - 11.93, 0.00177, 32, 55.61, -27.57, 0.52567, 4, 39, -5.89, 7.22, 0.65491, 40, -28.23, 7.22, 0.02015, 41, -51.15, 7.22, 0.00017, 32, 60.45, -29.33, 0.32476, 4, 39, -8.13, 1.34, - 0.75275, 40, -30.47, 1.34, 0.01396, 41, -53.39, 1.34, 1e-05, 32, 66.46, -31.18, 0.23328, 3, 39, -9.63, -2.94, 0.80478, 40, -31.96, -2.94, 0.00944, 32, 70.83, -32.39, 0.18578, 4, 39, - 33.3, 20.06, 0.04166, 40, 10.96, 20.06, 0.10286, 41, -11.96, 20.06, 0.24857, 32, 45.08, 8.94, 0.60691, 4, 39, 33.97, 12.1, 0.03817, 40, 11.63, 12.1, 0.17811, 41, -11.29, 12.1, - 0.32257, 32, 52.98, 10.13, 0.46115, 4, 39, 34.3, 6.34, 0.01531, 40, 11.97, 6.34, 0.31162, 41, -10.96, 6.34, 0.40881, 32, 58.71, 10.84, 0.26426, 4, 39, 34.72, 1.18, 0.00955, 40, - 12.39, 1.18, 0.39036, 41, -10.54, 1.18, 0.4561, 32, 63.83, 11.59, 0.14399, 4, 39, 34.8, -3.2, 0.00731, 40, 12.46, -3.2, 0.44195, 41, -10.46, -3.2, 0.48699, 32, 68.2, 11.96, 0.06375, - 4, 39, 48.21, 20.21, 0.00241, 40, 25.88, 20.21, 0.01421, 41, 2.95, 20.21, 0.36275, 32, 43.96, 23.82, 0.62063, 4, 39, 50.54, 12.17, 0.00034, 40, 28.2, 12.17, 0.01068, 41, 5.28, 12.17, - 0.5453, 32, 51.83, 26.66, 0.44368, 4, 39, 52.52, 5.95, 2e-05, 40, 30.19, 5.95, 0.00999, 41, 7.26, 5.95, 0.66888, 32, 57.92, 29.04, 0.32111, 3, 40, 31.52, 1.11, 0.01011, 41, 8.6, - 1.11, 0.76268, 32, 62.66, 30.7, 0.22721, 3, 40, 32.61, -3.32, 0.00863, 41, 9.68, -3.32, 0.83296, 32, 67.01, 32.06, 0.15841, 4, 39, -9.21, 7.29, 0.52586, 40, -31.55, 7.29, 0.0057, 41, - -54.47, 7.29, 1e-05, 32, 60.59, -32.65, 0.46842, 3, 39, -11.3, 1.36, 0.56698, 40, -33.64, 1.36, 0.00311, 32, 66.65, -34.34, 0.42991, 3, 39, -12.66, -2.93, 0.60013, 40, -35, -2.93, - 0.00167, 32, 71.01, -35.42, 0.39821, 4, 39, -5.46, -2.97, 0.89102, 40, -27.8, -2.97, 0.03888, 41, -50.72, -2.97, 1e-05, 32, 70.59, -28.24, 0.07008, 4, 39, -4.18, 1.33, 0.83362, 40, - -26.52, 1.33, 0.04645, 41, -49.44, 1.33, 3e-05, 32, 66.21, -27.24, 0.1199, 4, 39, -2.26, 7.14, 0.75973, 40, -24.6, 7.14, 0.05134, 41, -47.52, 7.14, 0.00026, 32, 60.29, -25.7, - 0.18867, 4, 39, 7.35, 6.93, 0.57235, 40, -14.98, 6.93, 0.23863, 41, -37.91, 6.93, 0.00435, 32, 59.87, -16.09, 0.18467, 4, 39, 5.9, 1.29, 0.63011, 40, -16.44, 1.29, 0.25936, 41, - -39.36, 1.29, 0.00243, 32, 65.6, -17.18, 0.1081, 4, 39, 4.86, -3.03, 0.68809, 40, -17.48, -3.03, 0.26358, 41, -40.4, -3.03, 0.00168, 32, 69.98, -17.93, 0.04665, 4, 39, 17.76, 6.7, - 0.22941, 40, -4.58, 6.7, 0.4879, 41, -27.5, 6.7, 0.05094, 32, 59.42, -5.7, 0.23175, 4, 39, 17.11, 1.25, 0.24296, 40, -5.23, 1.25, 0.56856, 41, -28.15, 1.25, 0.04581, 32, 64.91, - -5.99, 0.14267, 4, 39, 16.71, -3.1, 0.25552, 40, -5.62, -3.1, 0.64168, 41, -28.55, -3.1, 0.03992, 32, 69.27, -6.1, 0.06288, 4, 39, 28.55, -3.17, 0.03276, 40, 6.22, -3.17, 0.62363, - 41, -16.71, -3.17, 0.27658, 32, 68.57, 5.72, 0.06703, 4, 39, 28.55, 1.2, 0.0367, 40, 6.21, 1.21, 0.54514, 41, -16.71, 1.21, 0.26974, 32, 64.21, 5.43, 0.14843, 4, 39, 28.71, 6.47, - 0.04075, 40, 6.37, 6.47, 0.46337, 41, -16.55, 6.47, 0.25797, 32, 58.95, 5.25, 0.23791, 4, 39, 39.28, 6.23, 0.00305, 40, 16.94, 6.24, 0.20572, 41, -5.98, 6.24, 0.59307, 32, 58.49, - 15.81, 0.19817, 4, 39, 39.51, 1.16, 0.00156, 40, 17.17, 1.16, 0.23228, 41, -5.75, 1.16, 0.64631, 32, 63.54, 16.37, 0.11984, 4, 39, 40.07, -3.24, 0.00112, 40, 17.74, -3.24, 0.25061, - 41, -5.19, -3.24, 0.69415, 32, 67.89, 17.22, 0.05412, 4, 39, 50.23, -3.29, 0, 40, 27.89, -3.29, 0.036, 41, 4.97, -3.29, 0.88144, 32, 67.29, 27.36, 0.08255, 4, 39, 49.51, 1.13, 2e-05, - 40, 27.17, 1.13, 0.03826, 41, 4.25, 1.13, 0.81357, 32, 62.92, 26.35, 0.14816, 4, 39, 48.55, 6.03, 0.00027, 40, 26.22, 6.03, 0.03577, 41, 3.29, 6.03, 0.72045, 32, 58.09, 25.08, - 0.24351, 4, 39, 47.11, 12.16, 0.00156, 40, 24.77, 12.16, 0.03311, 41, 1.85, 12.16, 0.61234, 32, 52.07, 23.24, 0.35299, 4, 39, 53.99, 12.19, 1e-05, 40, 31.66, 12.19, 0.00266, 41, - 8.73, 12.19, 0.47035, 32, 51.59, 30.11, 0.52698, 3, 40, 33.02, 5.88, 0.00213, 41, 10.1, 5.88, 0.54797, 32, 57.79, 31.88, 0.4499, 3, 40, 34.54, 1.1, 0.0018, 41, 11.62, 1.1, 0.63247, - 32, 62.47, 33.7, 0.36573, 3, 40, 35.58, -3.34, 0.00152, 41, 12.66, -3.34, 0.71351, 32, 66.83, 35.03, 0.28497, 3, 39, -17.72, -6.71, 0.31251, 40, -40.05, -6.71, 1e-05, 32, 75.11, - -40.22, 0.68748, 3, 39, -13.83, -6.56, 0.64755, 40, -36.17, -6.56, 0.00038, 32, 74.72, -36.36, 0.35207, 3, 39, -10.89, -6.57, 0.83546, 40, -33.23, -6.57, 0.00245, 32, 74.53, -33.42, - 0.1621, 3, 39, -6.58, -6.39, 0.9505, 40, -28.91, -6.39, 0.02598, 32, 74.07, -29.13, 0.02352, 4, 39, -2.51, -6.41, 0.9185, 40, -24.85, -6.41, 0.06986, 41, -47.77, -6.41, 1e-05, 32, - 73.83, -25.07, 0.01163, 4, 39, 3.97, -6.54, 0.7539, 40, -18.37, -6.54, 0.23416, 41, -41.29, -6.54, 0.00019, 32, 73.54, -18.6, 0.01175, 4, 39, 10.73, -6.3, 0.4945, 40, -11.61, -6.29, - 0.48778, 41, -34.53, -6.29, 0.00242, 32, 72.85, -11.87, 0.01529, 4, 39, 16.42, -6.31, 0.24467, 40, -5.92, -6.31, 0.71967, 41, -28.84, -6.31, 0.01969, 32, 72.5, -6.18, 0.01597, 4, 39, - 22.88, -6.46, 0.08074, 40, 0.54, -6.46, 0.81091, 41, -22.38, -6.46, 0.09131, 32, 72.22, 0.27, 0.01704, 4, 39, 28.51, -6.42, 0.01543, 40, 6.17, -6.42, 0.70591, 41, -16.75, -6.42, - 0.26031, 32, 71.82, 5.89, 0.01836, 4, 39, 34.97, -6.29, 0.00164, 40, 12.64, -6.29, 0.47309, 41, -10.29, -6.29, 0.50689, 32, 71.27, 12.33, 0.01837, 4, 39, 40.42, -6.47, 0.0001, 40, - 18.08, -6.47, 0.23958, 41, -4.84, -6.47, 0.7461, 32, 71.1, 17.78, 0.01421, 4, 39, 45.89, -6.5, 0, 40, 23.56, -6.5, 0.08431, 41, 0.63, -6.5, 0.9025, 32, 70.76, 23.24, 0.01319, 3, 40, - 28.36, -6.37, 0.01867, 41, 5.43, -6.37, 0.94991, 32, 70.33, 28.02, 0.03142, 3, 40, 33.31, -6.41, 0.00244, 41, 10.39, -6.41, 0.88788, 32, 70.05, 32.97, 0.10968, 3, 40, 36.23, -6.46, - 0.00046, 41, 13.31, -6.46, 0.80558, 32, 69.91, 35.88, 0.19395, 3, 40, 40.12, -6.31, 1e-05, 41, 17.2, -6.31, 0.61334, 32, 69.5, 39.76, 0.38665, 4, 39, 0.4, -6.47, 0.86555, 40, -21.94, - -6.47, 0.12959, 41, -44.86, -6.47, 1e-05, 32, 73.7, -22.16, 0.00485, 3, 39, -9.01, -6.49, 0.93616, 40, -31.35, -6.49, 0.00716, 32, 74.33, -31.55, 0.05668, 3, 39, -16.19, -6.65, - 0.44814, 40, -38.53, -6.65, 3e-05, 32, 74.96, -38.7, 0.55184, 4, 39, 7.48, -6.41, 0.63866, 40, -14.86, -6.41, 0.354, 41, -37.78, -6.41, 0.00037, 32, 73.18, -15.1, 0.00698, 4, 39, - 13.4, -6.3, 0.36468, 40, -8.94, -6.3, 0.62161, 41, -31.86, -6.3, 0.00581, 32, 72.69, -9.2, 0.0079, 4, 39, 19.68, -6.38, 0.14684, 40, -2.65, -6.38, 0.80383, 41, -25.58, -6.38, - 0.04176, 32, 72.36, -2.92, 0.00757, 4, 39, 25.54, -6.44, 0.03499, 40, 3.2, -6.44, 0.79745, 41, -19.72, -6.44, 0.15898, 32, 72.03, 2.92, 0.00858, 4, 39, 31.96, -6.35, 0.00417, 40, - 9.62, -6.35, 0.60634, 41, -13.3, -6.35, 0.37927, 32, 71.53, 9.32, 0.01022, 4, 39, 37.62, -6.38, 0.00021, 40, 15.28, -6.38, 0.35157, 41, -7.64, -6.38, 0.63918, 32, 71.18, 14.97, - 0.00904, 4, 39, 43.32, -6.48, 1e-05, 40, 20.98, -6.48, 0.14688, 41, -1.94, -6.48, 0.84692, 32, 70.92, 20.67, 0.00619, 3, 40, 25.81, -6.44, 0.03919, 41, 2.89, -6.44, 0.95006, 32, - 70.56, 25.48, 0.01074, 3, 40, 30.92, -6.39, 0.00591, 41, 7.99, -6.39, 0.9433, 32, 70.18, 30.58, 0.05079, 3, 40, 38.04, -6.39, 5e-05, 41, 15.12, -6.39, 0.72615, 32, 69.72, 37.69, - 0.2738 + 41, -51.47, 19.66, 0.00132, 32, 48.05, -30.46, 0.79028, 4, 39, 24.46, 19.97, 0.10712, 40, 2.12, 19.97, 0.11704, 41, -20.8, 19.97, 0.11672, 32, 45.75, 0.12, 0.65912, 4, 39, 50.93, + 17.71, 0.00116, 40, 28.6, 17.71, 0.00313, 41, 5.67, 17.71, 0.2148, 32, 46.28, 26.69, 0.7809, 4, 39, 51.29, 1.35, 0.0001, 40, 28.95, 1.35, 0.00083, 41, 6.03, 1.34, 0.29942, 32, 62.59, + 28.12, 0.69965, 3, 40, 31.02, -5.05, 0.00034, 41, 8.1, -5.06, 0.378, 32, 68.84, 30.59, 0.62166, 3, 40, 38.1, 1.08, 0.00022, 41, 15.18, 1.08, 0.45653, 32, 62.25, 37.26, 0.54325, 3, + 40, 39.36, -3.36, 0.00015, 41, 16.43, -3.36, 0.53433, 32, 66.61, 38.8, 0.46552, 4, 39, 23.97, 12.06, 0.12565, 40, 1.63, 12.06, 0.24275, 41, -21.29, 12.06, 0.14114, 32, 53.68, 0.15, + 0.49046, 4, 39, 23.54, 6.58, 0.11007, 40, 1.2, 6.58, 0.47217, 41, -21.72, 6.58, 0.12893, 32, 59.17, 0.08, 0.28883, 4, 39, 23.28, 1.22, 0.10884, 40, 0.94, 1.22, 0.60558, 41, -21.98, + 1.22, 0.12698, 32, 64.53, 0.17, 0.1586, 4, 39, 23.11, -3.14, 0.10666, 40, 0.77, -3.14, 0.70334, 41, -22.15, -3.14, 0.12133, 32, 68.89, 0.28, 0.06866, 4, 39, 6.87, 19.8, 0.29773, 40, + -15.47, 19.8, 0.06022, 41, -38.39, 19.8, 0.01488, 32, 47.07, -17.41, 0.62717, 4, 39, 3.75, 11.97, 0.44072, 40, -18.59, 11.97, 0.09602, 41, -41.51, 11.97, 0.01064, 32, 55.08, -20.02, + 0.45261, 4, 39, 1.91, 7.05, 0.66419, 40, -20.42, 7.05, 0.11803, 41, -43.35, 7.05, 0.002, 32, 60.11, -21.53, 0.21579, 4, 39, 0.03, 1.31, 0.77187, 40, -22.31, 1.31, 0.12352, 41, + -45.23, 1.31, 0.00043, 32, 65.96, -23.04, 0.10418, 4, 39, -1.27, -2.99, 0.84303, 40, -23.61, -2.99, 0.11246, 41, -46.53, -2.99, 0.00018, 32, 70.34, -24.05, 0.04432, 4, 39, -1.8, + 26.91, 0.12744, 40, -24.14, 26.91, 0.00959, 41, -47.06, 26.91, 0.0076, 32, 40.54, -26.53, 0.85537, 4, 39, 24.96, 27.56, 0.0719, 40, 2.62, 27.56, 0.03639, 41, -20.3, 27.56, 0.07572, + 32, 38.14, 0.13, 0.81598, 4, 39, 50.76, 27.7, 0.00702, 40, 28.42, 27.7, 0.00523, 41, 5.5, 27.7, 0.131, 32, 36.32, 25.87, 0.85675, 4, 39, 3.83, 36.15, 0.04791, 40, -18.51, 36.15, + 0.00352, 41, -41.43, 36.15, 0.00803, 32, 30.95, -21.51, 0.94054, 4, 39, 25.65, 37.95, 0.02662, 40, 3.31, 37.95, 0.00775, 41, -19.61, 37.95, 0.02767, 32, 27.73, 0.14, 0.93795, 4, 39, + 46.64, 37.25, 0.00753, 40, 24.3, 37.25, 0.00227, 41, 1.38, 37.25, 0.04846, 32, 27.06, 21.14, 0.94174, 4, 39, 41.75, 20.15, 0.01306, 40, 19.41, 20.15, 0.04509, 41, -3.51, 20.15, + 0.32134, 32, 44.45, 17.37, 0.62052, 4, 39, 34.16, 9.18, 0.00895, 40, 11.83, 9.18, 0.07841, 41, -11.1, 9.17, 0.49568, 32, 55.89, 10.51, 0.41696, 4, 39, 35.26, 3.16, 0.0015, 40, 12.93, + 3.16, 0.09572, 41, -10, 3.16, 0.67014, 32, 61.82, 12, 0.23264, 4, 39, 45.08, 1.14, 0.00025, 40, 22.74, 1.14, 0.108, 41, -0.18, 1.14, 0.76841, 32, 63.2, 21.93, 0.12334, 4, 39, 45.58, + -3.27, 0.0001, 40, 23.24, -3.27, 0.10937, 41, 0.32, -3.27, 0.83473, 32, 67.56, 22.71, 0.0558, 4, 39, 40.33, 27.64, 0.02381, 40, 18, 27.64, 0.02132, 41, -4.93, 27.64, 0.16866, 32, + 37.06, 15.47, 0.78621, 4, 39, 9.71, 27.19, 0.16236, 40, -12.63, 27.19, 0.02827, 41, -35.55, 27.19, 0.02548, 32, 39.51, -15.06, 0.78388, 4, 39, 15.01, 19.88, 0.23124, 40, -7.33, + 19.88, 0.11759, 41, -30.25, 19.88, 0.04679, 32, 46.46, -9.29, 0.60438, 4, 39, 13.78, 12.01, 0.29354, 40, -8.56, 12.01, 0.19873, 41, -31.48, 12.01, 0.04427, 32, 54.39, -10.01, + 0.46346, 4, 39, 12.95, 6.81, 0.37869, 40, -9.39, 6.81, 0.34588, 41, -32.31, 6.81, 0.01968, 32, 59.63, -10.5, 0.25575, 4, 39, 11.95, 1.27, 0.42861, 40, -10.39, 1.27, 0.42317, 41, + -33.31, 1.27, 0.01297, 32, 65.23, -11.14, 0.13524, 4, 39, 11.29, -3.07, 0.46725, 40, -11.05, -3.07, 0.46538, 41, -33.97, -3.07, 0.0097, 32, 69.59, -11.51, 0.05768, 4, 39, -0.59, + 19.72, 0.32338, 40, -22.92, 19.72, 0.02881, 41, -45.85, 19.72, 0.003, 32, 47.63, -24.85, 0.64481, 4, 39, -3.82, 11.93, 0.4391, 40, -26.16, 11.93, 0.03345, 41, -49.08, 11.93, 0.00177, + 32, 55.61, -27.57, 0.52567, 4, 39, -5.89, 7.22, 0.65491, 40, -28.23, 7.22, 0.02015, 41, -51.15, 7.22, 0.00017, 32, 60.45, -29.33, 0.32476, 4, 39, -8.13, 1.34, 0.75275, 40, -30.47, + 1.34, 0.01396, 41, -53.39, 1.34, 1e-05, 32, 66.46, -31.18, 0.23328, 3, 39, -9.63, -2.94, 0.80478, 40, -31.96, -2.94, 0.00944, 32, 70.83, -32.39, 0.18578, 4, 39, 33.3, 20.06, 0.04166, + 40, 10.96, 20.06, 0.10286, 41, -11.96, 20.06, 0.24857, 32, 45.08, 8.94, 0.60691, 4, 39, 33.97, 12.1, 0.03817, 40, 11.63, 12.1, 0.17811, 41, -11.29, 12.1, 0.32257, 32, 52.98, 10.13, + 0.46115, 4, 39, 34.3, 6.34, 0.01531, 40, 11.97, 6.34, 0.31162, 41, -10.96, 6.34, 0.40881, 32, 58.71, 10.84, 0.26426, 4, 39, 34.72, 1.18, 0.00955, 40, 12.39, 1.18, 0.39036, 41, + -10.54, 1.18, 0.4561, 32, 63.83, 11.59, 0.14399, 4, 39, 34.8, -3.2, 0.00731, 40, 12.46, -3.2, 0.44195, 41, -10.46, -3.2, 0.48699, 32, 68.2, 11.96, 0.06375, 4, 39, 44.94, 17.01, + 0.00241, 40, 22.6, 17.01, 0.01421, 41, -0.32, 17.01, 0.36275, 32, 47.37, 20.75, 0.62063, 4, 39, 44.82, 1.32, 0.00034, 40, 22.48, 1.32, 0.01068, 41, -0.44, 1.31, 0.5453, 32, 63.04, + 21.66, 0.44368, 4, 39, 52.52, 5.95, 2e-05, 40, 30.19, 5.95, 0.00999, 41, 7.26, 5.95, 0.66888, 32, 57.92, 29.04, 0.32111, 3, 40, 31.52, 1.11, 0.01011, 41, 8.6, 1.11, 0.76268, 32, + 62.66, 30.7, 0.22721, 3, 40, 32.61, -3.32, 0.00863, 41, 9.68, -3.32, 0.83296, 32, 67.01, 32.06, 0.15841, 4, 39, -9.21, 7.29, 0.52586, 40, -31.55, 7.29, 0.0057, 41, -54.47, 7.29, + 1e-05, 32, 60.59, -32.65, 0.46842, 3, 39, -11.3, 1.36, 0.56698, 40, -33.64, 1.36, 0.00311, 32, 66.65, -34.34, 0.42991, 3, 39, -12.66, -2.93, 0.60013, 40, -35, -2.93, 0.00167, 32, + 71.01, -35.42, 0.39821, 4, 39, -5.46, -2.97, 0.89102, 40, -27.8, -2.97, 0.03888, 41, -50.72, -2.97, 1e-05, 32, 70.59, -28.24, 0.07008, 4, 39, -4.18, 1.33, 0.83362, 40, -26.52, 1.33, + 0.04645, 41, -49.44, 1.33, 3e-05, 32, 66.21, -27.24, 0.1199, 4, 39, -2.26, 7.14, 0.75973, 40, -24.6, 7.14, 0.05134, 41, -47.52, 7.14, 0.00026, 32, 60.29, -25.7, 0.18867, 4, 39, 7.35, + 6.93, 0.57235, 40, -14.98, 6.93, 0.23863, 41, -37.91, 6.93, 0.00435, 32, 59.87, -16.09, 0.18467, 4, 39, 5.9, 1.29, 0.63011, 40, -16.44, 1.29, 0.25936, 41, -39.36, 1.29, 0.00243, 32, + 65.6, -17.18, 0.1081, 4, 39, 4.86, -3.03, 0.68809, 40, -17.48, -3.03, 0.26358, 41, -40.4, -3.03, 0.00168, 32, 69.98, -17.93, 0.04665, 4, 39, 17.76, 6.7, 0.22941, 40, -4.58, 6.7, + 0.4879, 41, -27.5, 6.7, 0.05094, 32, 59.42, -5.7, 0.23175, 4, 39, 17.11, 1.25, 0.24296, 40, -5.23, 1.25, 0.56856, 41, -28.15, 1.25, 0.04581, 32, 64.91, -5.99, 0.14267, 4, 39, 16.71, + -3.1, 0.25552, 40, -5.62, -3.1, 0.64168, 41, -28.55, -3.1, 0.03992, 32, 69.27, -6.1, 0.06288, 4, 39, 28.55, -3.17, 0.03276, 40, 6.22, -3.17, 0.62363, 41, -16.71, -3.17, 0.27658, 32, + 68.57, 5.72, 0.06703, 4, 39, 28.55, 1.2, 0.0367, 40, 6.21, 1.21, 0.54514, 41, -16.71, 1.21, 0.26974, 32, 64.21, 5.43, 0.14843, 4, 39, 28.71, 6.47, 0.04075, 40, 6.37, 6.47, 0.46337, + 41, -16.55, 6.47, 0.25797, 32, 58.95, 5.25, 0.23791, 4, 39, 39.28, 6.23, 0.00305, 40, 16.94, 6.24, 0.20572, 41, -5.98, 6.24, 0.59307, 32, 58.49, 15.81, 0.19817, 4, 39, 39.51, 1.16, + 0.00156, 40, 17.17, 1.16, 0.23228, 41, -5.75, 1.16, 0.64631, 32, 63.54, 16.37, 0.11984, 4, 39, 40.07, -3.24, 0.00112, 40, 17.74, -3.24, 0.25061, 41, -5.19, -3.24, 0.69415, 32, 67.89, + 17.22, 0.05412, 4, 39, 50.23, -3.29, 0, 40, 27.89, -3.29, 0.036, 41, 4.97, -3.29, 0.88144, 32, 67.29, 27.36, 0.08255, 4, 39, 49.51, 1.13, 2e-05, 40, 27.17, 1.13, 0.03826, 41, 4.25, + 1.13, 0.81357, 32, 62.92, 26.35, 0.14816, 4, 39, 48.55, 6.03, 0.00027, 40, 26.22, 6.03, 0.03577, 41, 3.29, 6.03, 0.72045, 32, 58.09, 25.08, 0.24351, 4, 39, 41.39, 1.3, 0.00156, 40, + 19.05, 1.3, 0.03311, 41, -3.87, 1.3, 0.61234, 32, 63.28, 18.23, 0.35299, 4, 39, 48.27, 1.33, 1e-05, 40, 25.93, 1.33, 0.00266, 41, 3.01, 1.33, 0.47035, 32, 62.8, 25.1, 0.52698, 3, 40, + 33.02, 5.88, 0.00213, 41, 10.1, 5.88, 0.54797, 32, 57.79, 31.88, 0.4499, 3, 40, 34.54, 1.1, 0.0018, 41, 11.62, 1.1, 0.63247, 32, 62.47, 33.7, 0.36573, 3, 40, 35.58, -3.34, 0.00152, + 41, 12.66, -3.34, 0.71351, 32, 66.83, 35.03, 0.28497, 3, 39, -17.72, -6.71, 0.31251, 40, -40.05, -6.71, 1e-05, 32, 75.11, -40.22, 0.68748, 3, 39, -13.83, -6.56, 0.64755, 40, -36.17, + -6.56, 0.00038, 32, 74.72, -36.36, 0.35207, 3, 39, -10.89, -6.57, 0.83546, 40, -33.23, -6.57, 0.00245, 32, 74.53, -33.42, 0.1621, 3, 39, -6.58, -6.39, 0.9505, 40, -28.91, -6.39, + 0.02598, 32, 74.07, -29.13, 0.02352, 4, 39, -2.51, -6.41, 0.9185, 40, -24.85, -6.41, 0.06986, 41, -47.77, -6.41, 1e-05, 32, 73.83, -25.07, 0.01163, 4, 39, 3.97, -6.54, 0.7539, 40, + -18.37, -6.54, 0.23416, 41, -41.29, -6.54, 0.00019, 32, 73.54, -18.6, 0.01175, 4, 39, 10.73, -6.3, 0.4945, 40, -11.61, -6.29, 0.48778, 41, -34.53, -6.29, 0.00242, 32, 72.85, -11.87, + 0.01529, 4, 39, 16.42, -6.31, 0.24467, 40, -5.92, -6.31, 0.71967, 41, -28.84, -6.31, 0.01969, 32, 72.5, -6.18, 0.01597, 4, 39, 22.88, -6.46, 0.08074, 40, 0.54, -6.46, 0.81091, 41, + -22.38, -6.46, 0.09131, 32, 72.22, 0.27, 0.01704, 4, 39, 28.51, -6.42, 0.01543, 40, 6.17, -6.42, 0.70591, 41, -16.75, -6.42, 0.26031, 32, 71.82, 5.89, 0.01836, 4, 39, 34.97, -6.29, + 0.00164, 40, 12.64, -6.29, 0.47309, 41, -10.29, -6.29, 0.50689, 32, 71.27, 12.33, 0.01837, 4, 39, 40.42, -6.47, 0.0001, 40, 18.08, -6.47, 0.23958, 41, -4.84, -6.47, 0.7461, 32, 71.1, + 17.78, 0.01421, 4, 39, 45.89, -6.5, 0, 40, 23.56, -6.5, 0.08431, 41, 0.63, -6.5, 0.9025, 32, 70.76, 23.24, 0.01319, 3, 40, 28.36, -6.37, 0.01867, 41, 5.43, -6.37, 0.94991, 32, 70.33, + 28.02, 0.03142, 3, 40, 33.31, -6.41, 0.00244, 41, 10.39, -6.41, 0.88788, 32, 70.05, 32.97, 0.10968, 3, 40, 36.23, -6.46, 0.00046, 41, 13.31, -6.46, 0.80558, 32, 69.91, 35.88, + 0.19395, 3, 40, 40.12, -6.31, 1e-05, 41, 17.2, -6.31, 0.61334, 32, 69.5, 39.76, 0.38665, 4, 39, 0.4, -6.47, 0.86555, 40, -21.94, -6.47, 0.12959, 41, -44.86, -6.47, 1e-05, 32, 73.7, + -22.16, 0.00485, 3, 39, -9.01, -6.49, 0.93616, 40, -31.35, -6.49, 0.00716, 32, 74.33, -31.55, 0.05668, 3, 39, -16.19, -6.65, 0.44814, 40, -38.53, -6.65, 3e-05, 32, 74.96, -38.7, + 0.55184, 4, 39, 7.48, -6.41, 0.63866, 40, -14.86, -6.41, 0.354, 41, -37.78, -6.41, 0.00037, 32, 73.18, -15.1, 0.00698, 4, 39, 13.4, -6.3, 0.36468, 40, -8.94, -6.3, 0.62161, 41, + -31.86, -6.3, 0.00581, 32, 72.69, -9.2, 0.0079, 4, 39, 19.68, -6.38, 0.14684, 40, -2.65, -6.38, 0.80383, 41, -25.58, -6.38, 0.04176, 32, 72.36, -2.92, 0.00757, 4, 39, 25.54, -6.44, + 0.03499, 40, 3.2, -6.44, 0.79745, 41, -19.72, -6.44, 0.15898, 32, 72.03, 2.92, 0.00858, 4, 39, 31.96, -6.35, 0.00417, 40, 9.62, -6.35, 0.60634, 41, -13.3, -6.35, 0.37927, 32, 71.53, + 9.32, 0.01022, 4, 39, 37.62, -6.38, 0.00021, 40, 15.28, -6.38, 0.35157, 41, -7.64, -6.38, 0.63918, 32, 71.18, 14.97, 0.00904, 4, 39, 43.32, -6.48, 1e-05, 40, 20.98, -6.48, 0.14688, + 41, -1.94, -6.48, 0.84692, 32, 70.92, 20.67, 0.00619, 3, 40, 25.81, -6.44, 0.03919, 41, 2.89, -6.44, 0.95006, 32, 70.56, 25.48, 0.01074, 3, 40, 30.92, -6.39, 0.00591, 41, 7.99, + -6.39, 0.9433, 32, 70.18, 30.58, 0.05079, 3, 40, 38.04, -6.39, 5e-05, 41, 15.12, -6.39, 0.72615, 32, 69.72, 37.69, 0.2738 ], "hull": 46, "edges": [ @@ -11974,9 +26797,11 @@ 264, 294, 294, 266, 42, 44, 44, 46, 294, 44, 266, 296, 296, 268, 38, 40, 40, 42, 296, 40, 268, 298, 298, 270, 34, 36, 36, 38, 298, 36, 270, 300, 300, 272, 30, 32, 32, 34, 300, 32, 272, 302, 302, 274, 26, 28, 28, 30, 302, 28, 274, 304, 304, 276, 22, 24, 24, 26, 304, 24, 276, 306, 306, 278, 18, 20, 20, 22, 306, 20, 280, 308, 308, 282, 12, 14, 14, 16, 308, 14 ], - "width": 88, - "height": 80, - "path": "summer-as.ear-left-bubble" + "width": 87.05882352941177, + "height": 80.0, + "path": "summer-as-lv2.ear-left-bubble", + "x": 0.470588235294116, + "y": 0.0 } }, "ear-left-bubble-02": { @@ -12022,8 +26847,8 @@ 142, 27, 29, 128, 129, 29, 129, 28, 30, 143, 128, 30, 128, 29, 31, 127, 143, 31, 143, 30, 32, 126, 127, 32, 127, 31, 33, 144, 126, 33, 126, 32, 126, 46, 101, 34, 144, 33 ], "vertices": [ - 4, 47, 58.43, 20.31, 0.00012, 48, 36.09, 20.31, 0.00054, 49, 13.17, 20.31, 0.12631, 46, 43.2, 34, 0.87302, 3, 48, 39.33, 12.22, 0.00019, 49, 16.41, 12.22, 0.19743, 46, 51.06, 37.76, - 0.80237, 3, 48, 41.94, 5.69, 6e-05, 49, 19.02, 5.69, 0.26715, 46, 57.41, 40.79, 0.73278, 3, 48, 43.5, 1.06, 1e-05, 49, 20.58, 1.06, 0.33542, 46, 61.92, 42.65, 0.66457, 3, 48, 45, + 4, 47, 56.13, 15.19, 0.00012, 48, 33.79, 15.19, 0.00054, 49, 10.87, 15.18, 0.12631, 46, 48.46, 32.04, 0.87302, 3, 48, 31.45, 5.34, 0.00019, 49, 8.53, 5.32, 0.19743, 46, 58.45, 30.35, + 0.80237, 3, 48, 32.57, -2.1, 6e-05, 49, 9.65, -2.11, 0.26715, 46, 65.8, 31.95, 0.73278, 3, 48, 43.5, 1.06, 1e-05, 49, 20.58, 1.06, 0.33542, 46, 61.92, 42.65, 0.66457, 3, 48, 45, -3.4, 1e-05, 49, 22.08, -3.4, 0.40033, 46, 66.27, 44.44, 0.59966, 3, 48, 46.9, -9.05, 0, 49, 23.98, -9.05, 0.45012, 46, 71.79, 46.7, 0.54988, 3, 48, 40.83, -9.07, 0, 49, 17.91, -9.07, 0.5829, 46, 72.21, 40.65, 0.4171, 3, 48, 38.56, -9.08, 4e-05, 49, 15.64, -9.08, 0.72131, 46, 72.37, 38.38, 0.27865, 3, 48, 36.78, -9.09, 0.00031, 49, 13.86, -9.09, 0.8264, 46, 72.49, 36.6, 0.17329, 3, 48, 33.93, -9.1, 0.00157, 49, 11, -9.1, 0.90359, 46, 72.69, 33.76, 0.09484, 3, 48, 31.22, -9.11, 0.00537, 49, 8.3, -9.11, 0.94975, 46, 72.87, 31.05, 0.04488, @@ -12039,77 +26864,76 @@ -9.29, 0.35177, 49, -38.18, -9.29, 0.00021, 46, 76.08, -15.32, 0.00314, 4, 47, 3.26, -9.3, 0.77, 48, -19.08, -9.3, 0.22651, 49, -42, -9.3, 3e-05, 46, 76.34, -19.12, 0.00346, 4, 47, -0.32, -9.32, 0.87272, 48, -22.66, -9.32, 0.1254, 49, -45.58, -9.32, 0, 46, 76.59, -22.69, 0.00188, 3, 47, -3.57, -9.33, 0.9351, 48, -25.91, -9.33, 0.0605, 46, 76.81, -25.94, 0.0044, 3, 47, -7.54, -9.35, 0.96153, 48, -29.88, -9.35, 0.02278, 46, 77.09, -29.9, 0.01569, 3, 47, -9.85, -9.35, 0.93655, 48, -32.19, -9.35, 0.00657, 46, 77.24, -32.21, 0.05688, 3, 47, - -11.87, -9.36, 0.83576, 48, -34.2, -9.36, 0.00151, 46, 77.38, -34.21, 0.16273, 3, 47, -14.74, -9.37, 0.65143, 48, -37.08, -9.37, 0.00023, 46, 77.58, -37.08, 0.34834, 3, 47, -16.89, - -9.38, 0.4382, 48, -39.23, -9.38, 2e-05, 46, 77.73, -39.23, 0.56178, 3, 47, -18.76, -9.39, 0.27507, 48, -41.1, -9.39, 0, 46, 77.86, -41.09, 0.72493, 3, 47, -18.76, -2.89, 0.21414, - 48, -41.1, -2.89, 2e-05, 46, 71.37, -41.51, 0.78584, 3, 47, -18.76, 1.38, 0.19077, 48, -41.1, 1.38, 0.00024, 46, 67.11, -41.79, 0.80899, 3, 47, -18.76, 7.5, 0.1765, 48, -41.1, 7.5, - 0.00116, 46, 61.01, -42.19, 0.82235, 4, 47, -16.28, 11.88, 0.15382, 48, -38.62, 11.88, 0.00307, 49, -61.54, 11.88, 1e-05, 46, 56.48, -40, 0.84309, 4, 47, -11.9, 19.61, 0.11079, 48, - -34.24, 19.61, 0.0029, 49, -57.16, 19.61, 0.00014, 46, 48.48, -36.13, 0.88617, 4, 47, 14.63, 66.47, 0.04584, 48, -7.7, 66.47, 0.00083, 49, -30.63, 66.47, 0.00037, 46, -0.01, -12.7, - 0.95296, 4, 47, 22.29, 66.47, 0.02247, 48, -0.04, 66.47, 0.00083, 49, -22.97, 66.47, 0.00288, 46, -0.51, -5.06, 0.97382, 4, 47, 27.54, 66.47, 0.01007, 48, 5.2, 66.47, 0.00155, 49, - -17.72, 66.47, 0.0104, 46, -0.85, 0.17, 0.97798, 4, 47, 34.04, 66.47, 0.00272, 48, 11.7, 66.47, 0.00045, 49, -11.22, 66.47, 0.02285, 46, -1.28, 6.66, 0.97398, 4, 47, 39.96, 66.47, - 0.00033, 48, 17.62, 66.47, 0.00011, 49, -5.3, 66.47, 0.0498, 46, -1.66, 12.57, 0.94976, 3, 47, -16.24, -2.91, 0.33437, 48, -38.58, -2.91, 0.0002, 46, 71.23, -39, 0.66543, 3, 47, - -14.53, 1.37, 0.32645, 48, -36.87, 1.37, 0.00078, 46, 66.85, -37.57, 0.67277, 4, 47, -12.36, 7.36, 0.307, 48, -34.7, 7.36, 0.00285, 49, -57.62, 7.36, 1e-05, 46, 60.73, -35.79, - 0.69014, 4, 47, -9.97, 11.91, 0.26477, 48, -32.31, 11.91, 0.00971, 49, -55.23, 11.91, 0.00027, 46, 56.04, -33.7, 0.72525, 4, 47, -6.21, 19.66, 0.19881, 48, -28.55, 19.66, 0.00959, - 49, -51.47, 19.66, 0.00132, 46, 48.05, -30.46, 0.79028, 4, 47, 24.46, 19.97, 0.10712, 48, 2.12, 19.97, 0.11704, 49, -20.8, 19.97, 0.11672, 46, 45.75, 0.12, 0.65912, 4, 47, 53.97, - 20.27, 0.00116, 48, 31.63, 20.27, 0.00313, 49, 8.71, 20.27, 0.2148, 46, 43.53, 29.55, 0.7809, 4, 47, 57.02, 12.2, 0.0001, 48, 34.68, 12.2, 0.00083, 49, 11.76, 12.2, 0.29942, 46, - 51.38, 33.12, 0.69965, 3, 48, 36.75, 5.8, 0.00034, 49, 13.82, 5.8, 0.378, 46, 57.63, 35.6, 0.62166, 3, 48, 38.1, 1.08, 0.00022, 49, 15.18, 1.08, 0.45653, 46, 62.25, 37.26, 0.54325, - 3, 48, 39.36, -3.36, 0.00015, 49, 16.43, -3.36, 0.53433, 46, 66.61, 38.8, 0.46552, 4, 47, 23.97, 12.06, 0.12565, 48, 1.63, 12.06, 0.24275, 49, -21.29, 12.06, 0.14114, 46, 53.68, - 0.15, 0.49046, 4, 47, 23.54, 6.58, 0.11007, 48, 1.2, 6.58, 0.47217, 49, -21.72, 6.58, 0.12893, 46, 59.17, 0.08, 0.28883, 4, 47, 23.28, 1.22, 0.10884, 48, 0.94, 1.22, 0.60558, 49, - -21.98, 1.22, 0.12698, 46, 64.53, 0.17, 0.1586, 4, 47, 23.11, -3.14, 0.10666, 48, 0.77, -3.14, 0.70334, 49, -22.15, -3.14, 0.12133, 46, 68.89, 0.28, 0.06866, 4, 47, 6.87, 19.8, - 0.29773, 48, -15.47, 19.8, 0.06022, 49, -38.39, 19.8, 0.01488, 46, 47.07, -17.41, 0.62717, 4, 47, 3.75, 11.97, 0.44072, 48, -18.59, 11.97, 0.09602, 49, -41.51, 11.97, 0.01064, 46, - 55.08, -20.02, 0.45261, 4, 47, 1.91, 7.05, 0.66419, 48, -20.42, 7.05, 0.11803, 49, -43.35, 7.05, 0.002, 46, 60.11, -21.53, 0.21579, 4, 47, 0.03, 1.31, 0.77187, 48, -22.31, 1.31, - 0.12352, 49, -45.23, 1.31, 0.00043, 46, 65.96, -23.04, 0.10418, 4, 47, -1.27, -2.99, 0.84303, 48, -23.61, -2.99, 0.11246, 49, -46.53, -2.99, 0.00018, 46, 70.34, -24.05, 0.04432, 4, - 47, -1.8, 26.91, 0.12744, 48, -24.14, 26.91, 0.00959, 49, -47.06, 26.91, 0.0076, 46, 40.54, -26.53, 0.85537, 4, 47, 24.96, 27.56, 0.0719, 48, 2.62, 27.56, 0.03639, 49, -20.3, 27.56, - 0.07572, 46, 38.14, 0.13, 0.81598, 4, 47, 50.76, 27.7, 0.00702, 48, 28.42, 27.7, 0.00523, 49, 5.5, 27.7, 0.131, 46, 36.32, 25.87, 0.85675, 4, 47, 3.83, 36.15, 0.04791, 48, -18.51, - 36.15, 0.00352, 49, -41.43, 36.15, 0.00803, 46, 30.95, -21.51, 0.94054, 4, 47, 25.65, 37.95, 0.02662, 48, 3.31, 37.95, 0.00775, 49, -19.61, 37.95, 0.02767, 46, 27.73, 0.14, 0.93795, - 4, 47, 46.64, 37.25, 0.00753, 48, 24.3, 37.25, 0.00227, 49, 1.38, 37.25, 0.04846, 46, 27.06, 21.14, 0.94174, 4, 47, 41.75, 20.15, 0.01306, 48, 19.41, 20.15, 0.04509, 49, -3.51, - 20.15, 0.32134, 46, 44.45, 17.37, 0.62052, 4, 47, 43.25, 12.14, 0.00895, 48, 20.91, 12.14, 0.07841, 49, -2.01, 12.14, 0.49568, 46, 52.34, 19.39, 0.41696, 4, 47, 44.35, 6.12, 0.0015, - 48, 22.01, 6.12, 0.09572, 49, -0.91, 6.12, 0.67014, 46, 58.27, 20.88, 0.23264, 4, 47, 45.08, 1.14, 0.00025, 48, 22.74, 1.14, 0.108, 49, -0.18, 1.14, 0.76841, 46, 63.2, 21.93, - 0.12334, 4, 47, 45.58, -3.27, 0.0001, 48, 23.24, -3.27, 0.10937, 49, 0.32, -3.27, 0.83473, 46, 67.56, 22.71, 0.0558, 4, 47, 40.33, 27.64, 0.02381, 48, 18, 27.64, 0.02132, 49, -4.93, - 27.64, 0.16866, 46, 37.06, 15.47, 0.78621, 4, 47, 9.71, 27.19, 0.16236, 48, -12.63, 27.19, 0.02827, 49, -35.55, 27.19, 0.02548, 46, 39.51, -15.06, 0.78388, 4, 47, 15.01, 19.88, - 0.23124, 48, -7.33, 19.88, 0.11759, 49, -30.25, 19.88, 0.04679, 46, 46.46, -9.29, 0.60438, 4, 47, 13.78, 12.01, 0.29354, 48, -8.56, 12.01, 0.19873, 49, -31.48, 12.01, 0.04427, 46, - 54.39, -10.01, 0.46346, 4, 47, 12.95, 6.81, 0.37869, 48, -9.39, 6.81, 0.34588, 49, -32.31, 6.81, 0.01968, 46, 59.63, -10.5, 0.25575, 4, 47, 11.95, 1.27, 0.42861, 48, -10.39, 1.27, - 0.42317, 49, -33.31, 1.27, 0.01297, 46, 65.23, -11.14, 0.13524, 4, 47, 11.29, -3.07, 0.46725, 48, -11.05, -3.07, 0.46538, 49, -33.97, -3.07, 0.0097, 46, 69.59, -11.51, 0.05768, 4, - 47, -0.59, 19.72, 0.32338, 48, -22.92, 19.72, 0.02881, 49, -45.85, 19.72, 0.003, 46, 47.63, -24.85, 0.64481, 4, 47, -3.82, 11.93, 0.4391, 48, -26.16, 11.93, 0.03345, 49, -49.08, - 11.93, 0.00177, 46, 55.61, -27.57, 0.52567, 4, 47, -5.89, 7.22, 0.65491, 48, -28.23, 7.22, 0.02015, 49, -51.15, 7.22, 0.00017, 46, 60.45, -29.33, 0.32476, 4, 47, -8.13, 1.34, - 0.75275, 48, -30.47, 1.34, 0.01396, 49, -53.39, 1.34, 1e-05, 46, 66.46, -31.18, 0.23328, 3, 47, -9.63, -2.94, 0.80478, 48, -31.96, -2.94, 0.00944, 46, 70.83, -32.39, 0.18578, 4, 47, - 33.3, 20.06, 0.04166, 48, 10.96, 20.06, 0.10286, 49, -11.96, 20.06, 0.24857, 46, 45.08, 8.94, 0.60691, 4, 47, 33.97, 12.1, 0.03817, 48, 11.63, 12.1, 0.17811, 49, -11.29, 12.1, - 0.32257, 46, 52.98, 10.13, 0.46115, 4, 47, 34.3, 6.34, 0.01531, 48, 11.97, 6.34, 0.31162, 49, -10.96, 6.34, 0.40881, 46, 58.71, 10.84, 0.26426, 4, 47, 34.72, 1.18, 0.00955, 48, - 12.39, 1.18, 0.39036, 49, -10.54, 1.18, 0.4561, 46, 63.83, 11.59, 0.14399, 4, 47, 34.8, -3.2, 0.00731, 48, 12.46, -3.2, 0.44195, 49, -10.46, -3.2, 0.48699, 46, 68.2, 11.96, 0.06375, - 4, 47, 48.21, 20.21, 0.00241, 48, 25.88, 20.21, 0.01421, 49, 2.95, 20.21, 0.36275, 46, 43.96, 23.82, 0.62063, 4, 47, 50.54, 12.17, 0.00034, 48, 28.2, 12.17, 0.01068, 49, 5.28, 12.17, - 0.5453, 46, 51.83, 26.66, 0.44368, 4, 47, 52.52, 5.95, 2e-05, 48, 30.19, 5.95, 0.00999, 49, 7.26, 5.95, 0.66888, 46, 57.92, 29.04, 0.32111, 3, 48, 31.52, 1.11, 0.01011, 49, 8.6, - 1.11, 0.76268, 46, 62.66, 30.7, 0.22721, 3, 48, 32.61, -3.32, 0.00863, 49, 9.68, -3.32, 0.83296, 46, 67.01, 32.06, 0.15841, 4, 47, -9.21, 7.29, 0.52586, 48, -31.55, 7.29, 0.0057, 49, - -54.47, 7.29, 1e-05, 46, 60.59, -32.65, 0.46842, 3, 47, -11.3, 1.36, 0.56698, 48, -33.64, 1.36, 0.00311, 46, 66.65, -34.34, 0.42991, 3, 47, -12.66, -2.93, 0.60013, 48, -35, -2.93, - 0.00167, 46, 71.01, -35.42, 0.39821, 4, 47, -5.46, -2.97, 0.89102, 48, -27.8, -2.97, 0.03888, 49, -50.72, -2.97, 1e-05, 46, 70.59, -28.24, 0.07008, 4, 47, -4.18, 1.33, 0.83362, 48, - -26.52, 1.33, 0.04645, 49, -49.44, 1.33, 3e-05, 46, 66.21, -27.24, 0.1199, 4, 47, -2.26, 7.14, 0.75973, 48, -24.6, 7.14, 0.05134, 49, -47.52, 7.14, 0.00026, 46, 60.29, -25.7, - 0.18867, 4, 47, 7.35, 6.93, 0.57235, 48, -14.98, 6.93, 0.23863, 49, -37.91, 6.93, 0.00435, 46, 59.87, -16.09, 0.18467, 4, 47, 5.9, 1.29, 0.63011, 48, -16.44, 1.29, 0.25936, 49, - -39.36, 1.29, 0.00243, 46, 65.6, -17.18, 0.1081, 4, 47, 4.86, -3.03, 0.68809, 48, -17.48, -3.03, 0.26358, 49, -40.4, -3.03, 0.00168, 46, 69.98, -17.93, 0.04665, 4, 47, 17.76, 6.7, - 0.22941, 48, -4.58, 6.7, 0.4879, 49, -27.5, 6.7, 0.05094, 46, 59.42, -5.7, 0.23175, 4, 47, 17.11, 1.25, 0.24296, 48, -5.23, 1.25, 0.56856, 49, -28.15, 1.25, 0.04581, 46, 64.91, - -5.99, 0.14267, 4, 47, 16.71, -3.1, 0.25552, 48, -5.62, -3.1, 0.64168, 49, -28.55, -3.1, 0.03992, 46, 69.27, -6.1, 0.06288, 4, 47, 28.55, -3.17, 0.03276, 48, 6.22, -3.17, 0.62363, - 49, -16.71, -3.17, 0.27658, 46, 68.57, 5.72, 0.06703, 4, 47, 28.55, 1.2, 0.0367, 48, 6.21, 1.21, 0.54514, 49, -16.71, 1.21, 0.26974, 46, 64.21, 5.43, 0.14843, 4, 47, 28.71, 6.47, - 0.04075, 48, 6.37, 6.47, 0.46337, 49, -16.55, 6.47, 0.25797, 46, 58.95, 5.25, 0.23791, 4, 47, 39.28, 6.23, 0.00305, 48, 16.94, 6.24, 0.20572, 49, -5.98, 6.24, 0.59307, 46, 58.49, - 15.81, 0.19817, 4, 47, 39.51, 1.16, 0.00156, 48, 17.17, 1.16, 0.23228, 49, -5.75, 1.16, 0.64631, 46, 63.54, 16.37, 0.11984, 4, 47, 40.07, -3.24, 0.00112, 48, 17.74, -3.24, 0.25061, - 49, -5.19, -3.24, 0.69415, 46, 67.89, 17.22, 0.05412, 4, 47, 50.23, -3.29, 0, 48, 27.89, -3.29, 0.036, 49, 4.97, -3.29, 0.88144, 46, 67.29, 27.36, 0.08255, 4, 47, 49.51, 1.13, 2e-05, - 48, 27.17, 1.13, 0.03826, 49, 4.25, 1.13, 0.81357, 46, 62.92, 26.35, 0.14816, 4, 47, 48.55, 6.03, 0.00027, 48, 26.22, 6.03, 0.03577, 49, 3.29, 6.03, 0.72045, 46, 58.09, 25.08, - 0.24351, 4, 47, 47.11, 12.16, 0.00156, 48, 24.77, 12.16, 0.03311, 49, 1.85, 12.16, 0.61234, 46, 52.07, 23.24, 0.35299, 4, 47, 53.99, 12.19, 1e-05, 48, 31.66, 12.19, 0.00266, 49, - 8.73, 12.19, 0.47035, 46, 51.59, 30.11, 0.52698, 3, 48, 33.02, 5.88, 0.00213, 49, 10.1, 5.88, 0.54797, 46, 57.79, 31.88, 0.4499, 3, 48, 34.54, 1.1, 0.0018, 49, 11.62, 1.1, 0.63247, - 46, 62.47, 33.7, 0.36573, 3, 48, 35.58, -3.34, 0.00152, 49, 12.66, -3.34, 0.71351, 46, 66.83, 35.03, 0.28497, 3, 47, -17.72, -6.71, 0.31251, 48, -40.05, -6.71, 1e-05, 46, 75.11, - -40.22, 0.68748, 3, 47, -13.83, -6.56, 0.64755, 48, -36.17, -6.56, 0.00038, 46, 74.72, -36.36, 0.35207, 3, 47, -10.89, -6.57, 0.83546, 48, -33.23, -6.57, 0.00245, 46, 74.53, -33.42, - 0.1621, 3, 47, -6.58, -6.39, 0.9505, 48, -28.91, -6.39, 0.02598, 46, 74.07, -29.13, 0.02352, 4, 47, -2.51, -6.41, 0.9185, 48, -24.85, -6.41, 0.06986, 49, -47.77, -6.41, 1e-05, 46, - 73.83, -25.07, 0.01163, 4, 47, 3.97, -6.54, 0.7539, 48, -18.37, -6.54, 0.23416, 49, -41.29, -6.54, 0.00019, 46, 73.54, -18.6, 0.01175, 4, 47, 10.73, -6.3, 0.4945, 48, -11.61, -6.29, - 0.48778, 49, -34.53, -6.29, 0.00242, 46, 72.85, -11.87, 0.01529, 4, 47, 16.42, -6.31, 0.24467, 48, -5.92, -6.31, 0.71967, 49, -28.84, -6.31, 0.01969, 46, 72.5, -6.18, 0.01597, 4, 47, - 22.88, -6.46, 0.08074, 48, 0.54, -6.46, 0.81091, 49, -22.38, -6.46, 0.09131, 46, 72.22, 0.27, 0.01704, 4, 47, 28.51, -6.42, 0.01543, 48, 6.17, -6.42, 0.70591, 49, -16.75, -6.42, - 0.26031, 46, 71.82, 5.89, 0.01836, 4, 47, 34.97, -6.29, 0.00164, 48, 12.64, -6.29, 0.47309, 49, -10.29, -6.29, 0.50689, 46, 71.27, 12.33, 0.01837, 4, 47, 40.42, -6.47, 0.0001, 48, - 18.08, -6.47, 0.23958, 49, -4.84, -6.47, 0.7461, 46, 71.1, 17.78, 0.01421, 4, 47, 45.89, -6.5, 0, 48, 23.56, -6.5, 0.08431, 49, 0.63, -6.5, 0.9025, 46, 70.76, 23.24, 0.01319, 3, 48, - 28.36, -6.37, 0.01867, 49, 5.43, -6.37, 0.94991, 46, 70.33, 28.02, 0.03142, 3, 48, 33.31, -6.41, 0.00244, 49, 10.39, -6.41, 0.88788, 46, 70.05, 32.97, 0.10968, 3, 48, 36.23, -6.46, - 0.00046, 49, 13.31, -6.46, 0.80558, 46, 69.91, 35.88, 0.19395, 3, 48, 40.12, -6.31, 1e-05, 49, 17.2, -6.31, 0.61334, 46, 69.5, 39.76, 0.38665, 4, 47, 0.4, -6.47, 0.86555, 48, -21.94, - -6.47, 0.12959, 49, -44.86, -6.47, 1e-05, 46, 73.7, -22.16, 0.00485, 3, 47, -9.01, -6.49, 0.93616, 48, -31.35, -6.49, 0.00716, 46, 74.33, -31.55, 0.05668, 3, 47, -16.19, -6.65, - 0.44814, 48, -38.53, -6.65, 3e-05, 46, 74.96, -38.7, 0.55184, 4, 47, 7.48, -6.41, 0.63866, 48, -14.86, -6.41, 0.354, 49, -37.78, -6.41, 0.00037, 46, 73.18, -15.1, 0.00698, 4, 47, - 13.4, -6.3, 0.36468, 48, -8.94, -6.3, 0.62161, 49, -31.86, -6.3, 0.00581, 46, 72.69, -9.2, 0.0079, 4, 47, 19.68, -6.38, 0.14684, 48, -2.65, -6.38, 0.80383, 49, -25.58, -6.38, - 0.04176, 46, 72.36, -2.92, 0.00757, 4, 47, 25.54, -6.44, 0.03499, 48, 3.2, -6.44, 0.79745, 49, -19.72, -6.44, 0.15898, 46, 72.03, 2.92, 0.00858, 4, 47, 31.96, -6.35, 0.00417, 48, - 9.62, -6.35, 0.60634, 49, -13.3, -6.35, 0.37927, 46, 71.53, 9.32, 0.01022, 4, 47, 37.62, -6.38, 0.00021, 48, 15.28, -6.38, 0.35157, 49, -7.64, -6.38, 0.63918, 46, 71.18, 14.97, - 0.00904, 4, 47, 43.32, -6.48, 1e-05, 48, 20.98, -6.48, 0.14688, 49, -1.94, -6.48, 0.84692, 46, 70.92, 20.67, 0.00619, 3, 48, 25.81, -6.44, 0.03919, 49, 2.89, -6.44, 0.95006, 46, - 70.56, 25.48, 0.01074, 3, 48, 30.92, -6.39, 0.00591, 49, 7.99, -6.39, 0.9433, 46, 70.18, 30.58, 0.05079, 3, 48, 38.04, -6.39, 5e-05, 49, 15.12, -6.39, 0.72615, 46, 69.72, 37.69, - 0.2738 + -11.87, -9.36, 0.83576, 48, -34.2, -9.36, 0.00151, 46, 77.38, -34.21, 0.16273, 3, 47, -14.74, -9.37, 0.65143, 48, -37.08, -9.37, 0.00023, 46, 77.58, -37.08, 0.34834, 3, 47, -16.89, + -9.38, 0.4382, 48, -39.23, -9.38, 2e-05, 46, 77.73, -39.23, 0.56178, 3, 47, -18.76, -9.39, 0.27507, 48, -41.1, -9.39, 0, 46, 77.86, -41.09, 0.72493, 3, 47, -18.76, -2.89, 0.21414, + 48, -41.1, -2.89, 2e-05, 46, 71.37, -41.51, 0.78584, 3, 47, -18.76, 1.38, 0.19077, 48, -41.1, 1.38, 0.00024, 46, 67.11, -41.79, 0.80899, 3, 47, -18.76, 7.5, 0.1765, 48, -41.1, 7.5, + 0.00116, 46, 61.01, -42.19, 0.82235, 4, 47, -16.28, 11.88, 0.15382, 48, -38.62, 11.88, 0.00307, 49, -61.54, 11.88, 1e-05, 46, 56.48, -40, 0.84309, 4, 47, -11.9, 19.61, 0.11079, 48, + -34.24, 19.61, 0.0029, 49, -57.16, 19.61, 0.00014, 46, 48.48, -36.13, 0.88617, 4, 47, 14.63, 66.47, 0.04584, 48, -7.7, 66.47, 0.00083, 49, -30.63, 66.47, 0.00037, 46, -0.01, -12.7, + 0.95296, 4, 47, 22.29, 66.47, 0.02247, 48, -0.04, 66.47, 0.00083, 49, -22.97, 66.47, 0.00288, 46, -0.51, -5.06, 0.97382, 4, 47, 27.54, 66.47, 0.01007, 48, 5.2, 66.47, 0.00155, 49, + -17.72, 66.47, 0.0104, 46, -0.85, 0.17, 0.97798, 4, 47, 34.04, 66.47, 0.00272, 48, 11.7, 66.47, 0.00045, 49, -11.22, 66.47, 0.02285, 46, -1.28, 6.66, 0.97398, 4, 47, 39.96, 66.47, + 0.00033, 48, 17.62, 66.47, 0.00011, 49, -5.3, 66.47, 0.0498, 46, -1.66, 12.57, 0.94976, 3, 47, -16.24, -2.91, 0.33437, 48, -38.58, -2.91, 0.0002, 46, 71.23, -39, 0.66543, 3, 47, + -14.53, 1.37, 0.32645, 48, -36.87, 1.37, 0.00078, 46, 66.85, -37.57, 0.67277, 4, 47, -12.36, 7.36, 0.307, 48, -34.7, 7.36, 0.00285, 49, -57.62, 7.36, 1e-05, 46, 60.73, -35.79, + 0.69014, 4, 47, -9.97, 11.91, 0.26477, 48, -32.31, 11.91, 0.00971, 49, -55.23, 11.91, 0.00027, 46, 56.04, -33.7, 0.72525, 4, 47, -6.21, 19.66, 0.19881, 48, -28.55, 19.66, 0.00959, + 49, -51.47, 19.66, 0.00132, 46, 48.05, -30.46, 0.79028, 4, 47, 24.46, 19.97, 0.10712, 48, 2.12, 19.97, 0.11704, 49, -20.8, 19.97, 0.11672, 46, 45.75, 0.12, 0.65912, 4, 47, 51.67, + 15.14, 0.00116, 48, 29.33, 15.14, 0.00313, 49, 6.41, 15.14, 0.2148, 46, 48.8, 27.59, 0.7809, 4, 47, 48.63, 5.25, 0.0001, 48, 26.3, 5.26, 0.00083, 49, 3.37, 5.24, 0.29942, 46, 58.86, + 25.21, 0.69965, 3, 48, 26.85, -2.03, 0.00034, 49, 3.93, -2.04, 0.378, 46, 66.1, 26.23, 0.62166, 3, 48, 38.1, 1.08, 0.00022, 49, 15.18, 1.08, 0.45653, 46, 62.25, 37.26, 0.54325, 3, + 48, 39.36, -3.36, 0.00015, 49, 16.43, -3.36, 0.53433, 46, 66.61, 38.8, 0.46552, 4, 47, 23.97, 12.06, 0.12565, 48, 1.63, 12.06, 0.24275, 49, -21.29, 12.06, 0.14114, 46, 53.68, 0.15, + 0.49046, 4, 47, 23.54, 6.58, 0.11007, 48, 1.2, 6.58, 0.47217, 49, -21.72, 6.58, 0.12893, 46, 59.17, 0.08, 0.28883, 4, 47, 23.28, 1.22, 0.10884, 48, 0.94, 1.22, 0.60558, 49, -21.98, + 1.22, 0.12698, 46, 64.53, 0.17, 0.1586, 4, 47, 23.11, -3.14, 0.10666, 48, 0.77, -3.14, 0.70334, 49, -22.15, -3.14, 0.12133, 46, 68.89, 0.28, 0.06866, 4, 47, 6.87, 19.8, 0.29773, 48, + -15.47, 19.8, 0.06022, 49, -38.39, 19.8, 0.01488, 46, 47.07, -17.41, 0.62717, 4, 47, 3.75, 11.97, 0.44072, 48, -18.59, 11.97, 0.09602, 49, -41.51, 11.97, 0.01064, 46, 55.08, -20.02, + 0.45261, 4, 47, 1.91, 7.05, 0.66419, 48, -20.42, 7.05, 0.11803, 49, -43.35, 7.05, 0.002, 46, 60.11, -21.53, 0.21579, 4, 47, 0.03, 1.31, 0.77187, 48, -22.31, 1.31, 0.12352, 49, + -45.23, 1.31, 0.00043, 46, 65.96, -23.04, 0.10418, 4, 47, -1.27, -2.99, 0.84303, 48, -23.61, -2.99, 0.11246, 49, -46.53, -2.99, 0.00018, 46, 70.34, -24.05, 0.04432, 4, 47, -1.8, + 26.91, 0.12744, 48, -24.14, 26.91, 0.00959, 49, -47.06, 26.91, 0.0076, 46, 40.54, -26.53, 0.85537, 4, 47, 24.96, 27.56, 0.0719, 48, 2.62, 27.56, 0.03639, 49, -20.3, 27.56, 0.07572, + 46, 38.14, 0.13, 0.81598, 4, 47, 50.76, 27.7, 0.00702, 48, 28.42, 27.7, 0.00523, 49, 5.5, 27.7, 0.131, 46, 36.32, 25.87, 0.85675, 4, 47, 3.83, 36.15, 0.04791, 48, -18.51, 36.15, + 0.00352, 49, -41.43, 36.15, 0.00803, 46, 30.95, -21.51, 0.94054, 4, 47, 25.65, 37.95, 0.02662, 48, 3.31, 37.95, 0.00775, 49, -19.61, 37.95, 0.02767, 46, 27.73, 0.14, 0.93795, 4, 47, + 46.64, 37.25, 0.00753, 48, 24.3, 37.25, 0.00227, 49, 1.38, 37.25, 0.04846, 46, 27.06, 21.14, 0.94174, 4, 47, 41.75, 20.15, 0.01306, 48, 19.41, 20.15, 0.04509, 49, -3.51, 20.15, + 0.32134, 46, 44.45, 17.37, 0.62052, 4, 47, 40.83, 6.52, 0.00895, 48, 18.49, 6.53, 0.07841, 49, -4.43, 6.52, 0.49568, 46, 58.1, 17.34, 0.41696, 4, 47, 44.35, 6.12, 0.0015, 48, 22.01, + 6.12, 0.09572, 49, -0.91, 6.12, 0.67014, 46, 58.27, 20.88, 0.23264, 4, 47, 45.08, 1.14, 0.00025, 48, 22.74, 1.14, 0.108, 49, -0.18, 1.14, 0.76841, 46, 63.2, 21.93, 0.12334, 4, 47, + 45.58, -3.27, 0.0001, 48, 23.24, -3.27, 0.10937, 49, 0.32, -3.27, 0.83473, 46, 67.56, 22.71, 0.0558, 4, 47, 40.33, 27.64, 0.02381, 48, 18, 27.64, 0.02132, 49, -4.93, 27.64, 0.16866, + 46, 37.06, 15.47, 0.78621, 4, 47, 9.71, 27.19, 0.16236, 48, -12.63, 27.19, 0.02827, 49, -35.55, 27.19, 0.02548, 46, 39.51, -15.06, 0.78388, 4, 47, 15.01, 19.88, 0.23124, 48, -7.33, + 19.88, 0.11759, 49, -30.25, 19.88, 0.04679, 46, 46.46, -9.29, 0.60438, 4, 47, 13.78, 12.01, 0.29354, 48, -8.56, 12.01, 0.19873, 49, -31.48, 12.01, 0.04427, 46, 54.39, -10.01, + 0.46346, 4, 47, 12.95, 6.81, 0.37869, 48, -9.39, 6.81, 0.34588, 49, -32.31, 6.81, 0.01968, 46, 59.63, -10.5, 0.25575, 4, 47, 11.95, 1.27, 0.42861, 48, -10.39, 1.27, 0.42317, 49, + -33.31, 1.27, 0.01297, 46, 65.23, -11.14, 0.13524, 4, 47, 11.29, -3.07, 0.46725, 48, -11.05, -3.07, 0.46538, 49, -33.97, -3.07, 0.0097, 46, 69.59, -11.51, 0.05768, 4, 47, -0.59, + 19.72, 0.32338, 48, -22.92, 19.72, 0.02881, 49, -45.85, 19.72, 0.003, 46, 47.63, -24.85, 0.64481, 4, 47, -3.82, 11.93, 0.4391, 48, -26.16, 11.93, 0.03345, 49, -49.08, 11.93, 0.00177, + 46, 55.61, -27.57, 0.52567, 4, 47, -5.89, 7.22, 0.65491, 48, -28.23, 7.22, 0.02015, 49, -51.15, 7.22, 0.00017, 46, 60.45, -29.33, 0.32476, 4, 47, -8.13, 1.34, 0.75275, 48, -30.47, + 1.34, 0.01396, 49, -53.39, 1.34, 1e-05, 46, 66.46, -31.18, 0.23328, 3, 47, -9.63, -2.94, 0.80478, 48, -31.96, -2.94, 0.00944, 46, 70.83, -32.39, 0.18578, 4, 47, 33.3, 20.06, 0.04166, + 48, 10.96, 20.06, 0.10286, 49, -11.96, 20.06, 0.24857, 46, 45.08, 8.94, 0.60691, 4, 47, 33.97, 12.1, 0.03817, 48, 11.63, 12.1, 0.17811, 49, -11.29, 12.1, 0.32257, 46, 52.98, 10.13, + 0.46115, 4, 47, 34.3, 6.34, 0.01531, 48, 11.97, 6.34, 0.31162, 49, -10.96, 6.34, 0.40881, 46, 58.71, 10.84, 0.26426, 4, 47, 34.72, 1.18, 0.00955, 48, 12.39, 1.18, 0.39036, 49, + -10.54, 1.18, 0.4561, 46, 63.83, 11.59, 0.14399, 4, 47, 34.8, -3.2, 0.00731, 48, 12.46, -3.2, 0.44195, 49, -10.46, -3.2, 0.48699, 46, 68.2, 11.96, 0.06375, 4, 47, 45.91, 15.08, + 0.00241, 48, 23.57, 15.09, 0.01421, 49, 0.65, 15.08, 0.36275, 46, 49.23, 21.85, 0.62063, 4, 47, 40.85, 4.27, 0.00034, 48, 18.51, 4.28, 0.01068, 49, -4.41, 4.26, 0.5453, 46, 60.35, + 17.51, 0.44368, 4, 47, 52.52, 5.95, 2e-05, 48, 30.19, 5.95, 0.00999, 49, 7.26, 5.95, 0.66888, 46, 57.92, 29.04, 0.32111, 3, 48, 31.52, 1.11, 0.01011, 49, 8.6, 1.11, 0.76268, 46, + 62.66, 30.7, 0.22721, 3, 48, 32.61, -3.32, 0.00863, 49, 9.68, -3.32, 0.83296, 46, 67.01, 32.06, 0.15841, 4, 47, -9.21, 7.29, 0.52586, 48, -31.55, 7.29, 0.0057, 49, -54.47, 7.29, + 1e-05, 46, 60.59, -32.65, 0.46842, 3, 47, -11.3, 1.36, 0.56698, 48, -33.64, 1.36, 0.00311, 46, 66.65, -34.34, 0.42991, 3, 47, -12.66, -2.93, 0.60013, 48, -35, -2.93, 0.00167, 46, + 71.01, -35.42, 0.39821, 4, 47, -5.46, -2.97, 0.89102, 48, -27.8, -2.97, 0.03888, 49, -50.72, -2.97, 1e-05, 46, 70.59, -28.24, 0.07008, 4, 47, -4.18, 1.33, 0.83362, 48, -26.52, 1.33, + 0.04645, 49, -49.44, 1.33, 3e-05, 46, 66.21, -27.24, 0.1199, 4, 47, -2.26, 7.14, 0.75973, 48, -24.6, 7.14, 0.05134, 49, -47.52, 7.14, 0.00026, 46, 60.29, -25.7, 0.18867, 4, 47, 7.35, + 6.93, 0.57235, 48, -14.98, 6.93, 0.23863, 49, -37.91, 6.93, 0.00435, 46, 59.87, -16.09, 0.18467, 4, 47, 5.9, 1.29, 0.63011, 48, -16.44, 1.29, 0.25936, 49, -39.36, 1.29, 0.00243, 46, + 65.6, -17.18, 0.1081, 4, 47, 4.86, -3.03, 0.68809, 48, -17.48, -3.03, 0.26358, 49, -40.4, -3.03, 0.00168, 46, 69.98, -17.93, 0.04665, 4, 47, 17.76, 6.7, 0.22941, 48, -4.58, 6.7, + 0.4879, 49, -27.5, 6.7, 0.05094, 46, 59.42, -5.7, 0.23175, 4, 47, 17.11, 1.25, 0.24296, 48, -5.23, 1.25, 0.56856, 49, -28.15, 1.25, 0.04581, 46, 64.91, -5.99, 0.14267, 4, 47, 16.71, + -3.1, 0.25552, 48, -5.62, -3.1, 0.64168, 49, -28.55, -3.1, 0.03992, 46, 69.27, -6.1, 0.06288, 4, 47, 28.55, -3.17, 0.03276, 48, 6.22, -3.17, 0.62363, 49, -16.71, -3.17, 0.27658, 46, + 68.57, 5.72, 0.06703, 4, 47, 28.55, 1.2, 0.0367, 48, 6.21, 1.21, 0.54514, 49, -16.71, 1.21, 0.26974, 46, 64.21, 5.43, 0.14843, 4, 47, 28.71, 6.47, 0.04075, 48, 6.37, 6.47, 0.46337, + 49, -16.55, 6.47, 0.25797, 46, 58.95, 5.25, 0.23791, 4, 47, 39.28, 6.23, 0.00305, 48, 16.94, 6.24, 0.20572, 49, -5.98, 6.24, 0.59307, 46, 58.49, 15.81, 0.19817, 4, 47, 39.51, 1.16, + 0.00156, 48, 17.17, 1.16, 0.23228, 49, -5.75, 1.16, 0.64631, 46, 63.54, 16.37, 0.11984, 4, 47, 40.07, -3.24, 0.00112, 48, 17.74, -3.24, 0.25061, 49, -5.19, -3.24, 0.69415, 46, 67.89, + 17.22, 0.05412, 4, 47, 50.23, -3.29, 0, 48, 27.89, -3.29, 0.036, 49, 4.97, -3.29, 0.88144, 46, 67.29, 27.36, 0.08255, 4, 47, 49.51, 1.13, 2e-05, 48, 27.17, 1.13, 0.03826, 49, 4.25, + 1.13, 0.81357, 46, 62.92, 26.35, 0.14816, 4, 47, 48.55, 6.03, 0.00027, 48, 26.22, 6.03, 0.03577, 49, 3.29, 6.03, 0.72045, 46, 58.09, 25.08, 0.24351, 4, 47, 37.02, 4.21, 0.00156, 48, + 14.68, 4.22, 0.03311, 49, -8.24, 4.2, 0.61234, 46, 60.66, 13.69, 0.35299, 4, 47, 44.7, 4.35, 1e-05, 48, 22.36, 4.35, 0.00266, 49, -0.56, 4.34, 0.47035, 46, 60.02, 21.34, 0.52698, 3, + 48, 33.02, 5.88, 0.00213, 49, 10.1, 5.88, 0.54797, 46, 57.79, 31.88, 0.4499, 3, 48, 34.54, 1.1, 0.0018, 49, 11.62, 1.1, 0.63247, 46, 62.47, 33.7, 0.36573, 3, 48, 35.58, -3.34, + 0.00152, 49, 12.66, -3.34, 0.71351, 46, 66.83, 35.03, 0.28497, 3, 47, -17.72, -6.71, 0.31251, 48, -40.05, -6.71, 1e-05, 46, 75.11, -40.22, 0.68748, 3, 47, -13.83, -6.56, 0.64755, 48, + -36.17, -6.56, 0.00038, 46, 74.72, -36.36, 0.35207, 3, 47, -10.89, -6.57, 0.83546, 48, -33.23, -6.57, 0.00245, 46, 74.53, -33.42, 0.1621, 3, 47, -6.58, -6.39, 0.9505, 48, -28.91, + -6.39, 0.02598, 46, 74.07, -29.13, 0.02352, 4, 47, -2.51, -6.41, 0.9185, 48, -24.85, -6.41, 0.06986, 49, -47.77, -6.41, 1e-05, 46, 73.83, -25.07, 0.01163, 4, 47, 3.97, -6.54, 0.7539, + 48, -18.37, -6.54, 0.23416, 49, -41.29, -6.54, 0.00019, 46, 73.54, -18.6, 0.01175, 4, 47, 10.73, -6.3, 0.4945, 48, -11.61, -6.29, 0.48778, 49, -34.53, -6.29, 0.00242, 46, 72.85, + -11.87, 0.01529, 4, 47, 16.42, -6.31, 0.24467, 48, -5.92, -6.31, 0.71967, 49, -28.84, -6.31, 0.01969, 46, 72.5, -6.18, 0.01597, 4, 47, 22.88, -6.46, 0.08074, 48, 0.54, -6.46, + 0.81091, 49, -22.38, -6.46, 0.09131, 46, 72.22, 0.27, 0.01704, 4, 47, 28.51, -6.42, 0.01543, 48, 6.17, -6.42, 0.70591, 49, -16.75, -6.42, 0.26031, 46, 71.82, 5.89, 0.01836, 4, 47, + 34.97, -6.29, 0.00164, 48, 12.64, -6.29, 0.47309, 49, -10.29, -6.29, 0.50689, 46, 71.27, 12.33, 0.01837, 4, 47, 40.42, -6.47, 0.0001, 48, 18.08, -6.47, 0.23958, 49, -4.84, -6.47, + 0.7461, 46, 71.1, 17.78, 0.01421, 4, 47, 45.89, -6.5, 0, 48, 23.56, -6.5, 0.08431, 49, 0.63, -6.5, 0.9025, 46, 70.76, 23.24, 0.01319, 3, 48, 28.36, -6.37, 0.01867, 49, 5.43, -6.37, + 0.94991, 46, 70.33, 28.02, 0.03142, 3, 48, 33.31, -6.41, 0.00244, 49, 10.39, -6.41, 0.88788, 46, 70.05, 32.97, 0.10968, 3, 48, 36.23, -6.46, 0.00046, 49, 13.31, -6.46, 0.80558, 46, + 69.91, 35.88, 0.19395, 3, 48, 40.12, -6.31, 1e-05, 49, 17.2, -6.31, 0.61334, 46, 69.5, 39.76, 0.38665, 4, 47, 0.4, -6.47, 0.86555, 48, -21.94, -6.47, 0.12959, 49, -44.86, -6.47, + 1e-05, 46, 73.7, -22.16, 0.00485, 3, 47, -9.01, -6.49, 0.93616, 48, -31.35, -6.49, 0.00716, 46, 74.33, -31.55, 0.05668, 3, 47, -16.19, -6.65, 0.44814, 48, -38.53, -6.65, 3e-05, 46, + 74.96, -38.7, 0.55184, 4, 47, 7.48, -6.41, 0.63866, 48, -14.86, -6.41, 0.354, 49, -37.78, -6.41, 0.00037, 46, 73.18, -15.1, 0.00698, 4, 47, 13.4, -6.3, 0.36468, 48, -8.94, -6.3, + 0.62161, 49, -31.86, -6.3, 0.00581, 46, 72.69, -9.2, 0.0079, 4, 47, 19.68, -6.38, 0.14684, 48, -2.65, -6.38, 0.80383, 49, -25.58, -6.38, 0.04176, 46, 72.36, -2.92, 0.00757, 4, 47, + 25.54, -6.44, 0.03499, 48, 3.2, -6.44, 0.79745, 49, -19.72, -6.44, 0.15898, 46, 72.03, 2.92, 0.00858, 4, 47, 31.96, -6.35, 0.00417, 48, 9.62, -6.35, 0.60634, 49, -13.3, -6.35, + 0.37927, 46, 71.53, 9.32, 0.01022, 4, 47, 37.62, -6.38, 0.00021, 48, 15.28, -6.38, 0.35157, 49, -7.64, -6.38, 0.63918, 46, 71.18, 14.97, 0.00904, 4, 47, 43.32, -6.48, 1e-05, 48, + 20.98, -6.48, 0.14688, 49, -1.94, -6.48, 0.84692, 46, 70.92, 20.67, 0.00619, 3, 48, 25.81, -6.44, 0.03919, 49, 2.89, -6.44, 0.95006, 46, 70.56, 25.48, 0.01074, 3, 48, 30.92, -6.39, + 0.00591, 49, 7.99, -6.39, 0.9433, 46, 70.18, 30.58, 0.05079, 3, 48, 38.04, -6.39, 5e-05, 49, 15.12, -6.39, 0.72615, 46, 69.72, 37.69, 0.2738 ], "hull": 46, "edges": [ @@ -12128,25 +26952,55 @@ 264, 294, 294, 266, 42, 44, 44, 46, 294, 44, 266, 296, 296, 268, 38, 40, 40, 42, 296, 40, 268, 298, 298, 270, 34, 36, 36, 38, 298, 36, 270, 300, 300, 272, 30, 32, 32, 34, 300, 32, 272, 302, 302, 274, 26, 28, 28, 30, 302, 28, 274, 304, 304, 276, 22, 24, 24, 26, 304, 24, 276, 306, 306, 278, 18, 20, 20, 22, 306, 20, 280, 308, 308, 282, 12, 14, 14, 16, 308, 14 ], - "width": 88, - "height": 80, - "path": "summer-as.ear-left-bubble" - } - }, - "ear-left-dot-01": {"ear-left-dot": {"x": 0.12, "y": 0.57, "rotation": -0.95, "width": 18, "height": 17, "path": "summer-as.ear-left-dot"}}, - "ear-left-dot-02": {"ear-left-dot": {"x": 0.12, "y": 0.57, "rotation": -0.95, "width": 18, "height": 17, "path": "summer-as.ear-left-dot"}}, - "ear-left-dot-03": {"ear-left-dot": {"x": 0.12, "y": 0.57, "rotation": -0.95, "width": 18, "height": 17, "path": "summer-as.ear-left-dot"}}, - "ear-left-dot-04": {"ear-left-dot": {"x": 0.12, "y": 0.57, "rotation": -0.95, "width": 18, "height": 17, "path": "summer-as.ear-left-dot"}}, - "ear-left-dot-05": {"ear-left-dot": {"x": 0.12, "y": 0.57, "rotation": -0.95, "width": 18, "height": 17, "path": "summer-as.ear-left-dot"}}, - "ear-left-dot-06": {"ear-left-dot": {"x": 0.12, "y": 0.57, "rotation": -0.95, "width": 18, "height": 17, "path": "summer-as.ear-left-dot"}}, - "ear-left-dot-07": {"ear-left-dot": {"x": 0.12, "y": 0.57, "rotation": -0.95, "width": 18, "height": 17, "path": "summer-as.ear-left-dot"}}, - "ear-left-dot-08": {"ear-left-dot": {"x": 0.12, "y": 0.57, "rotation": -0.95, "width": 18, "height": 17, "path": "summer-as.ear-left-dot"}}, - "ear-left-dot-09": {"ear-left-dot": {"x": 0.12, "y": 0.57, "rotation": -0.95, "width": 18, "height": 17, "path": "summer-as.ear-left-dot"}}, - "ear-left-dot-10": {"ear-left-dot": {"x": 0.12, "y": 0.57, "rotation": -0.95, "width": 18, "height": 17, "path": "summer-as.ear-left-dot"}}, - "ear-left-dot-11": {"ear-left-dot": {"x": 0.12, "y": 0.57, "rotation": -0.95, "width": 18, "height": 17, "path": "summer-as.ear-left-dot"}}, - "ear-left-dot-12": {"ear-left-dot": {"x": 0.12, "y": 0.57, "rotation": -0.95, "width": 18, "height": 17, "path": "summer-as.ear-left-dot"}}, - "ear-left-under": {"ear-left-under": {"x": 84.11, "y": -23.37, "rotation": -90, "width": 128, "height": 218, "path": "summer-as.ear-left-under"}}, - "ear-left-upper": {"ear-left-upper": {"x": 85.61, "y": -23.87, "rotation": -90, "width": 145, "height": 231, "path": "summer-as.ear-left-upper"}}, + "width": 87.05882352941177, + "height": 80.0, + "path": "summer-as-lv2.ear-left-bubble", + "x": 0.470588235294116, + "y": 0.0 + } + }, + "ear-left-dot-01": { + "ear-left-dot": {"x": 0.8847058823529402, "y": 0.8347058823529402, "rotation": -0.95, "width": 16.47058823529412, "height": 16.47058823529412, "path": "summer-as-lv2.ear-left-dot"} + }, + "ear-left-dot-02": { + "ear-left-dot": {"x": 0.8847058823529402, "y": 0.8347058823529402, "rotation": -0.95, "width": 16.47058823529412, "height": 16.47058823529412, "path": "summer-as-lv2.ear-left-dot"} + }, + "ear-left-dot-03": { + "ear-left-dot": {"x": 0.8847058823529402, "y": 0.8347058823529402, "rotation": -0.95, "width": 16.47058823529412, "height": 16.47058823529412, "path": "summer-as-lv2.ear-left-dot"} + }, + "ear-left-dot-04": { + "ear-left-dot": {"x": 0.8847058823529402, "y": 0.8347058823529402, "rotation": -0.95, "width": 16.47058823529412, "height": 16.47058823529412, "path": "summer-as-lv2.ear-left-dot"} + }, + "ear-left-dot-05": { + "ear-left-dot": {"x": 0.8847058823529402, "y": 0.8347058823529402, "rotation": -0.95, "width": 16.47058823529412, "height": 16.47058823529412, "path": "summer-as-lv2.ear-left-dot"} + }, + "ear-left-dot-06": { + "ear-left-dot": {"x": 0.8847058823529402, "y": 0.8347058823529402, "rotation": -0.95, "width": 16.47058823529412, "height": 16.47058823529412, "path": "summer-as-lv2.ear-left-dot"} + }, + "ear-left-dot-07": { + "ear-left-dot": {"x": 0.8847058823529402, "y": 0.8347058823529402, "rotation": -0.95, "width": 16.47058823529412, "height": 16.47058823529412, "path": "summer-as-lv2.ear-left-dot"} + }, + "ear-left-dot-08": { + "ear-left-dot": {"x": 0.8847058823529402, "y": 0.8347058823529402, "rotation": -0.95, "width": 16.47058823529412, "height": 16.47058823529412, "path": "summer-as-lv2.ear-left-dot"} + }, + "ear-left-dot-09": { + "ear-left-dot": {"x": 0.8847058823529402, "y": 0.8347058823529402, "rotation": -0.95, "width": 16.47058823529412, "height": 16.47058823529412, "path": "summer-as-lv2.ear-left-dot"} + }, + "ear-left-dot-10": { + "ear-left-dot": {"x": 0.8847058823529402, "y": 0.8347058823529402, "rotation": -0.95, "width": 16.47058823529412, "height": 16.47058823529412, "path": "summer-as-lv2.ear-left-dot"} + }, + "ear-left-dot-11": { + "ear-left-dot": {"x": 0.8847058823529402, "y": 0.8347058823529402, "rotation": -0.95, "width": 16.47058823529412, "height": 16.47058823529412, "path": "summer-as-lv2.ear-left-dot"} + }, + "ear-left-dot-12": { + "ear-left-dot": {"x": 0.8847058823529402, "y": 0.8347058823529402, "rotation": -0.95, "width": 16.47058823529412, "height": 16.47058823529412, "path": "summer-as-lv2.ear-left-dot"} + }, + "ear-left-under": { + "ear-left-under": {"x": 85.13176470588235, "y": -29.411764705882362, "rotation": -90, "width": 141.1764705882353, "height": 218.82352941176472, "path": "summer-as-lv2.ear-left-under"} + }, + "ear-left-upper": { + "ear-left-upper": {"x": 99.74941176470588, "y": -26.911764705882348, "rotation": -90, "width": 152.94117647058823, "height": 258.8235294117647, "path": "summer-as-lv2.ear-left-upper"} + }, "ear-right-bubble": { "ear-right-bubble": { "type": "mesh", @@ -12221,7 +27075,7 @@ 37, -29.87, -9.16, 0.06376, 38, -51.34, -9.16, 0.00012, 4, 31, 72.37, -35.61, 0.35932, 36, -12.18, -9.26, 0.60181, 37, -33.58, -9.16, 0.03884, 38, -55.06, -9.16, 4e-05, 4, 31, 72.19, -39.08, 0.49297, 36, -15.66, -9.26, 0.48586, 37, -37.06, -9.16, 0.02116, 38, -58.54, -9.16, 1e-05, 4, 31, 71.81, -46.35, 0.66969, 36, -22.93, -9.26, 0.32512, 37, -44.34, -9.16, 0.00518, 38, -65.81, -9.16, 0, 4, 31, 66.73, -44.35, 0.73638, 36, -21.2, -4.09, 0.26049, 37, -42.61, -3.98, 0.00313, 38, -64.08, -3.98, 0, 4, 31, 61.93, -42.46, 0.74288, 36, -19.57, - 0.8, 0.25402, 37, -40.97, 0.91, 0.00309, 38, -62.45, 0.91, 1e-05, 2, 31, 55.67, -40, 0.86, 36, -17.44, 7.19, 0.14, 2, 31, 50.24, -37.86, 0.87418, 36, -15.59, 12.72, 0.12582, 1, 31, + 0.8, 0.25402, 37, -40.97, 0.91, 0.00309, 38, -62.45, 0.91, 1e-05, 2, 31, 56.84, -37.71, 0.86, 36, -15.1, 6.14, 0.14, 2, 31, 51.66, -35.24, 0.87418, 36, -12.89, 11.44, 0.12582, 1, 31, 43.72, -35.29, 1, 1, 31, 38.22, -33.12, 1, 2, 31, -0.53, -12.83, 0.99965, 36, 6.74, 64.74, 0.00035, 2, 31, -0.21, -6.72, 0.9998, 36, 12.86, 64.74, 0.0002, 3, 31, 0.19, 0.77, 0.99981, 36, 20.36, 64.74, 9e-05, 38, -22.52, 64.84, 0.0001, 3, 31, 0.56, 7.82, 0.99975, 36, 27.41, 64.74, 1e-05, 38, -15.47, 64.84, 0.00024, 2, 31, 0.88, 13.86, 0.99954, 38, -9.41, 64.84, 0.00046, 4, 31, 39.9, 0.3, 0.88429, 36, 21.98, 25.05, 0.02526, 37, 0.57, 25.15, 0.06552, 38, -20.9, 25.15, 0.02493, 1, 31, 38.93, -18.93, 1, 4, 31, 39.81, 17.97, 0.94373, 36, 39.62, @@ -12338,9 +27192,11 @@ 382, 382, 236, 380, 382, 24, 384, 384, 316, 382, 384, 22, 386, 386, 160, 384, 386, 20, 388, 388, 318, 386, 388, 18, 390, 390, 248, 388, 390, 16, 392, 392, 320, 390, 392, 14, 394, 394, 158, 392, 394 ], - "width": 83, - "height": 80, - "path": "summer-as.ear-right-bubble" + "width": 82.3529411764706, + "height": 80.0, + "path": "summer-as-lv2.ear-right-bubble", + "x": 0.32352941176470296, + "y": 0.0 } }, "ear-right-bubble-02": { @@ -12417,8 +27273,8 @@ -10.56, 0.00033, 4, 42, 73.97, -31.98, 0.29871, 43, -8.46, -10.66, 0.63741, 44, -29.87, -10.56, 0.06376, 45, -51.34, -10.56, 0.00012, 4, 42, 73.77, -35.69, 0.35932, 43, -12.18, -10.66, 0.60181, 44, -33.58, -10.56, 0.03884, 45, -55.06, -10.56, 4e-05, 4, 42, 73.59, -39.16, 0.49297, 43, -15.66, -10.66, 0.48586, 44, -37.06, -10.56, 0.02116, 45, -58.54, -10.56, 1e-05, 4, 42, 73.2, -46.43, 0.66969, 43, -22.93, -10.66, 0.32512, 44, -44.34, -10.56, 0.00518, 45, -65.81, -10.56, 0, 4, 42, 68.13, -44.43, 0.73638, 43, -21.2, -5.49, 0.26049, 44, - -42.61, -5.38, 0.00313, 45, -64.08, -5.38, 0, 4, 42, 63.33, -42.54, 0.74288, 43, -19.57, -0.59, 0.25402, 44, -40.97, -0.49, 0.00309, 45, -62.45, -0.49, 1e-05, 2, 42, 57.06, -40.07, - 0.86, 43, -17.44, 5.79, 0.14, 2, 42, 51.63, -37.93, 0.87418, 43, -15.59, 11.32, 0.12582, 1, 42, 45.12, -35.37, 1, 1, 42, 39.61, -33.2, 1, 2, 42, 0.87, -12.9, 0.99965, 43, 6.74, + -42.61, -5.38, 0.00313, 45, -64.08, -5.38, 0, 4, 42, 63.33, -42.54, 0.74288, 43, -19.57, -0.59, 0.25402, 44, -40.97, -0.49, 0.00309, 45, -62.45, -0.49, 1e-05, 2, 42, 57.6, -38.81, + 0.86, 43, -16.15, 5.32, 0.14, 2, 42, 52.73, -34.94, 0.87418, 43, -12.54, 10.39, 0.12582, 1, 42, 45.12, -35.37, 1, 1, 42, 39.61, -33.2, 1, 2, 42, 0.87, -12.9, 0.99965, 43, 6.74, 63.34, 0.00035, 2, 42, 1.19, -6.79, 0.9998, 43, 12.86, 63.34, 0.0002, 3, 42, 1.58, 0.7, 0.99981, 43, 20.36, 63.34, 9e-05, 45, -22.52, 63.44, 0.0001, 3, 42, 1.95, 7.74, 0.99975, 43, 27.41, 63.34, 1e-05, 45, -15.46, 63.44, 0.00024, 2, 42, 2.27, 13.79, 0.99954, 45, -9.41, 63.44, 0.00046, 4, 42, 41.3, 0.23, 0.88429, 43, 21.98, 23.65, 0.02526, 44, 0.57, 23.75, 0.06552, 45, -20.9, 23.75, 0.02493, 1, 42, 40.33, -19.01, 1, 4, 42, 41.2, 17.9, 0.94373, 43, 39.62, 24.67, 0.00089, 44, 18.21, 24.78, 0.01419, 45, -3.26, 24.78, 0.04119, 1, 42, @@ -12535,51 +27391,139 @@ 382, 382, 236, 380, 382, 24, 384, 384, 316, 382, 384, 22, 386, 386, 160, 384, 386, 20, 388, 388, 318, 386, 388, 18, 390, 390, 248, 388, 390, 16, 392, 392, 320, 390, 392, 14, 394, 394, 158, 392, 394 ], - "width": 83, - "height": 80, - "path": "summer-as.ear-right-bubble" - } - }, - "ear-right-dot-01": {"ear-right-dot": {"x": -0.78, "y": -0.78, "rotation": -0.95, "width": 21, "height": 14, "path": "summer-as.ear-right-dot"}}, - "ear-right-dot-02": {"ear-right-dot": {"x": -0.78, "y": -0.78, "rotation": -0.95, "width": 21, "height": 14, "path": "summer-as.ear-right-dot"}}, - "ear-right-dot-03": {"ear-right-dot": {"x": -0.78, "y": -0.78, "rotation": -0.95, "width": 21, "height": 14, "path": "summer-as.ear-right-dot"}}, - "ear-right-dot-04": {"ear-right-dot": {"x": -0.78, "y": -0.78, "rotation": -0.95, "width": 21, "height": 14, "path": "summer-as.ear-right-dot"}}, - "ear-right-dot-05": {"ear-right-dot": {"x": -0.78, "y": -0.78, "rotation": -0.95, "width": 21, "height": 14, "path": "summer-as.ear-right-dot"}}, - "ear-right-dot-06": {"ear-right-dot": {"x": -0.78, "y": -0.78, "rotation": -0.95, "width": 21, "height": 14, "path": "summer-as.ear-right-dot"}}, - "ear-right-dot-07": {"ear-right-dot": {"x": -0.78, "y": -0.78, "rotation": -0.95, "width": 21, "height": 14, "path": "summer-as.ear-right-dot"}}, - "ear-right-dot-08": {"ear-right-dot": {"x": -0.78, "y": -0.78, "rotation": -0.95, "width": 21, "height": 14, "path": "summer-as.ear-right-dot"}}, - "ear-right-dot-09": {"ear-right-dot": {"x": -0.78, "y": -0.78, "rotation": -0.95, "width": 21, "height": 14, "path": "summer-as.ear-right-dot"}}, - "ear-right-dot-10": {"ear-right-dot": {"x": -0.78, "y": -0.78, "rotation": -0.95, "width": 21, "height": 14, "path": "summer-as.ear-right-dot"}}, - "ear-right-dot-11": {"ear-right-dot": {"x": -0.78, "y": -0.78, "rotation": -0.95, "width": 21, "height": 14, "path": "summer-as.ear-right-dot"}}, - "ear-right-dot-12": {"ear-right-dot": {"x": -0.78, "y": -0.78, "rotation": -0.95, "width": 21, "height": 14, "path": "summer-as.ear-right-dot"}}, - "ear-right-dot-13": {"ear-right-dot": {"x": -0.78, "y": -0.78, "rotation": -0.95, "width": 21, "height": 14, "path": "summer-as.ear-right-dot"}}, - "ear-right-dot-14": {"ear-right-dot": {"x": -0.78, "y": -0.78, "rotation": -0.95, "width": 21, "height": 14, "path": "summer-as.ear-right-dot"}}, - "ear-right-dot-15": {"ear-right-dot": {"x": -0.78, "y": -0.78, "rotation": -0.95, "width": 21, "height": 14, "path": "summer-as.ear-right-dot"}}, - "ear-right-dot-16": {"ear-right-dot": {"x": -0.78, "y": -0.78, "rotation": -0.95, "width": 21, "height": 14, "path": "summer-as.ear-right-dot"}}, - "ear-right-dot-17": {"ear-right-dot": {"x": -0.78, "y": -0.78, "rotation": -0.95, "width": 21, "height": 14, "path": "summer-as.ear-right-dot"}}, - "ear-right-dot-18": {"ear-right-dot": {"x": -0.78, "y": -0.78, "rotation": -0.95, "width": 21, "height": 14, "path": "summer-as.ear-right-dot"}}, - "ear-right-dot-19": {"ear-right-dot": {"x": -0.78, "y": -0.78, "rotation": -0.95, "width": 21, "height": 14, "path": "summer-as.ear-right-dot"}}, - "ear-right-dot-20": {"ear-right-dot": {"x": -0.78, "y": -0.78, "rotation": -0.95, "width": 21, "height": 14, "path": "summer-as.ear-right-dot"}}, - "ear-right-under": {"ear-right-under": {"x": 84.87, "y": -16.34, "rotation": -93, "width": 119, "height": 205, "path": "summer-as.ear-right-under"}}, - "ear-right-upper": {"ear-right-upper": {"x": 89.21, "y": -19.57, "rotation": -93, "width": 129, "height": 214, "path": "summer-as.ear-right-upper"}}, + "width": 82.3529411764706, + "height": 80.0, + "path": "summer-as-lv2.ear-right-bubble", + "x": 0.32352941176470296, + "y": 0.0 + } + }, + "ear-right-dot-01": { + "ear-right-dot": { + "x": 0.3082352941176467, "y": 0.33764705882352897, "rotation": -0.95, "width": 18.823529411764707, "height": 11.764705882352942, "path": "summer-as-lv2.ear-right-dot" + } + }, + "ear-right-dot-02": { + "ear-right-dot": { + "x": 0.3082352941176467, "y": 0.33764705882352897, "rotation": -0.95, "width": 18.823529411764707, "height": 11.764705882352942, "path": "summer-as-lv2.ear-right-dot" + } + }, + "ear-right-dot-03": { + "ear-right-dot": { + "x": 0.3082352941176467, "y": 0.33764705882352897, "rotation": -0.95, "width": 18.823529411764707, "height": 11.764705882352942, "path": "summer-as-lv2.ear-right-dot" + } + }, + "ear-right-dot-04": { + "ear-right-dot": { + "x": 0.3082352941176467, "y": 0.33764705882352897, "rotation": -0.95, "width": 18.823529411764707, "height": 11.764705882352942, "path": "summer-as-lv2.ear-right-dot" + } + }, + "ear-right-dot-05": { + "ear-right-dot": { + "x": 0.3082352941176467, "y": 0.33764705882352897, "rotation": -0.95, "width": 18.823529411764707, "height": 11.764705882352942, "path": "summer-as-lv2.ear-right-dot" + } + }, + "ear-right-dot-06": { + "ear-right-dot": { + "x": 0.3082352941176467, "y": 0.33764705882352897, "rotation": -0.95, "width": 18.823529411764707, "height": 11.764705882352942, "path": "summer-as-lv2.ear-right-dot" + } + }, + "ear-right-dot-07": { + "ear-right-dot": { + "x": 0.3082352941176467, "y": 0.33764705882352897, "rotation": -0.95, "width": 18.823529411764707, "height": 11.764705882352942, "path": "summer-as-lv2.ear-right-dot" + } + }, + "ear-right-dot-08": { + "ear-right-dot": { + "x": 0.3082352941176467, "y": 0.33764705882352897, "rotation": -0.95, "width": 18.823529411764707, "height": 11.764705882352942, "path": "summer-as-lv2.ear-right-dot" + } + }, + "ear-right-dot-09": { + "ear-right-dot": { + "x": 0.3082352941176467, "y": 0.33764705882352897, "rotation": -0.95, "width": 18.823529411764707, "height": 11.764705882352942, "path": "summer-as-lv2.ear-right-dot" + } + }, + "ear-right-dot-10": { + "ear-right-dot": { + "x": 0.3082352941176467, "y": 0.33764705882352897, "rotation": -0.95, "width": 18.823529411764707, "height": 11.764705882352942, "path": "summer-as-lv2.ear-right-dot" + } + }, + "ear-right-dot-11": { + "ear-right-dot": { + "x": 0.3082352941176467, "y": 0.33764705882352897, "rotation": -0.95, "width": 18.823529411764707, "height": 11.764705882352942, "path": "summer-as-lv2.ear-right-dot" + } + }, + "ear-right-dot-12": { + "ear-right-dot": { + "x": 0.3082352941176467, "y": 0.33764705882352897, "rotation": -0.95, "width": 18.823529411764707, "height": 11.764705882352942, "path": "summer-as-lv2.ear-right-dot" + } + }, + "ear-right-dot-13": { + "ear-right-dot": { + "x": 0.3082352941176467, "y": 0.33764705882352897, "rotation": -0.95, "width": 18.823529411764707, "height": 11.764705882352942, "path": "summer-as-lv2.ear-right-dot" + } + }, + "ear-right-dot-14": { + "ear-right-dot": { + "x": 0.3082352941176467, "y": 0.33764705882352897, "rotation": -0.95, "width": 18.823529411764707, "height": 11.764705882352942, "path": "summer-as-lv2.ear-right-dot" + } + }, + "ear-right-dot-15": { + "ear-right-dot": { + "x": 0.3082352941176467, "y": 0.33764705882352897, "rotation": -0.95, "width": 18.823529411764707, "height": 11.764705882352942, "path": "summer-as-lv2.ear-right-dot" + } + }, + "ear-right-dot-16": { + "ear-right-dot": { + "x": 0.3082352941176467, "y": 0.33764705882352897, "rotation": -0.95, "width": 18.823529411764707, "height": 11.764705882352942, "path": "summer-as-lv2.ear-right-dot" + } + }, + "ear-right-dot-17": { + "ear-right-dot": { + "x": 0.3082352941176467, "y": 0.33764705882352897, "rotation": -0.95, "width": 18.823529411764707, "height": 11.764705882352942, "path": "summer-as-lv2.ear-right-dot" + } + }, + "ear-right-dot-18": { + "ear-right-dot": { + "x": 0.3082352941176467, "y": 0.33764705882352897, "rotation": -0.95, "width": 18.823529411764707, "height": 11.764705882352942, "path": "summer-as-lv2.ear-right-dot" + } + }, + "ear-right-dot-19": { + "ear-right-dot": { + "x": 0.3082352941176467, "y": 0.33764705882352897, "rotation": -0.95, "width": 18.823529411764707, "height": 11.764705882352942, "path": "summer-as-lv2.ear-right-dot" + } + }, + "ear-right-dot-20": { + "ear-right-dot": { + "x": 0.3082352941176467, "y": 0.33764705882352897, "rotation": -0.95, "width": 18.823529411764707, "height": 11.764705882352942, "path": "summer-as-lv2.ear-right-dot" + } + }, + "ear-right-under": { + "ear-right-under": { + "x": 85.06764705882352, "y": -16.772941176470596, "rotation": -93, "width": 131.76470588235296, "height": 204.7058823529412, "path": "summer-as-lv2.ear-right-under" + } + }, + "ear-right-upper": { + "ear-right-upper": {"x": 92.85176470588235, "y": -17.124705882352956, "rotation": -93, "width": 141.1764705882353, "height": 263.5294117647059, "path": "summer-as-lv2.ear-right-upper"} + }, "eyes": { - "eyes": {"x": 23.23, "y": 24.61, "width": 330, "height": 155, "path": "summer-as.eyes"}, - "eyes-angry": {"x": 24.37, "y": 24.61, "width": 330, "height": 155, "path": "summer-as.eyes-angry"}, - "eyes-happy": {"x": 24.37, "y": 24.61, "width": 330, "height": 155, "path": "summer-as.eyes-happy"}, - "eyes-shut": {"x": 24.37, "y": 24.61, "width": 330, "height": 155, "path": "summer-as.eyes-shut"} - }, - "eyes-happy-accessory": {"eyes-happy-accessory": {"x": 0.37, "y": 0.4, "scaleX": 1.4, "scaleY": 1.4, "width": 99, "height": 105, "path": "summer-as.eyes-happy-accessory"}}, - "eyes-light-dot": {"eye-light-dot": {"x": -0.96, "y": 1.51, "width": 70, "height": 72, "path": "summer-as.eye-light-dot"}}, - "eyes-light-dot-02": {"eye-light-dot": {"x": -0.96, "y": 1.51, "width": 70, "height": 72, "path": "summer-as.eye-light-dot"}}, - "eyes-light-left": {"light": {"x": 6.55, "y": 1.56, "scaleX": 1.2, "scaleY": 1.8, "rotation": 178.57, "width": 49, "height": 73, "path": "summer-as.light"}}, - "eyes-light-right": {"light": {"x": 6.55, "y": 1.56, "scaleX": 1.2, "scaleY": 1.8, "rotation": 178.57, "width": 49, "height": 73, "path": "summer-as.light"}}, - "eyes-upper": {"eyes-upper": {"x": 24.04, "y": 24.72, "width": 328, "height": 153, "path": "summer-as.eyes-upper"}}, - "horn": {"horn": {"x": 101.61, "y": -20.37, "rotation": -90, "width": 232, "height": 237, "path": "summer-ta.horn"}}, + "eyes": {"x": 23.029411764705884, "y": 24.631764705882354, "width": 272.94117647058823, "height": 101.17647058823529, "path": "summer-as-lv2.eyes"}, + "eyes-angry": {"x": 23.029411764705884, "y": 24.631764705882354, "width": 272.94117647058823, "height": 101.17647058823529, "path": "summer-as-lv2.eyes-angry"}, + "eyes-happy": {"x": 23.029411764705884, "y": 24.631764705882354, "width": 272.94117647058823, "height": 101.17647058823529, "path": "summer-as-lv2.eyes-happy"}, + "eyes-shut": {"x": 23.029411764705884, "y": 24.631764705882354, "width": 272.94117647058823, "height": 101.17647058823529, "path": "summer-as-lv2.eyes-shut"} + }, + "eyes-happy-accessory": { + "eyes-happy-accessory": { + "x": 0.45823529411764496, "y": 1.135294117647058, "scaleX": 1.4, "scaleY": 1.4, "width": 98.82352941176471, "height": 103.52941176470588, "path": "summer-as-lv2.eyes-happy-accessory" + } + }, + "eyes-upper": {"eyes-upper": {"x": 23.617647058823536, "y": 24.33764705882352, "width": 371.7647058823529, "height": 171.76470588235296, "path": "summer-as-lv2.eyes-upper"}}, + "horn": {"horn": {"x": 87.95529411764704, "y": -6.411764705882362, "rotation": -90, "width": 263.5294117647059, "height": 178.82352941176472, "path": "summer-ta-lv2.horn"}}, "mouth": { - "mouth": {"x": -11.63, "y": 54.61, "width": 144, "height": 57, "path": "summer-as.mouth"}, - "mouth-bite": {"x": -1.13, "y": 39.61, "width": 167, "height": 99, "path": "summer-as.mouth-bite"}, - "mouth-open": {"x": -6.63, "y": 16.11, "width": 156, "height": 140, "path": "summer-as.mouth-open"}, - "mouth-smile": {"x": -1.63, "y": 47.61, "width": 166, "height": 65, "path": "summer-as.mouth-smile"} + "mouth": {"x": -43.205882352941174, "y": 23.043529411764702, "width": 209.41176470588235, "height": 122.3529411764706, "path": "summer-as-lv2.mouth"}, + "mouth-bite": {"x": -32.794117647058826, "y": 25.690588235294115, "width": 230.58823529411765, "height": 127.05882352941177, "path": "summer-as-lv2.mouth-bite"}, + "mouth-open": {"x": -37.91176470588236, "y": 16.80823529411765, "width": 218.82352941176472, "height": 138.8235294117647, "path": "summer-as-lv2.mouth-open"}, + "mouth-smile": {"x": -33.794117647058826, "y": 21.22, "width": 230.58823529411765, "height": 120.0, "path": "summer-as-lv2.mouth-smile"} }, "mouth-accessory": { "mouth-accessory": { @@ -12646,64 +27590,67 @@ 176, 110, 174, 176, 42, 178, 178, 108, 176, 178, 40, 180, 180, 106, 178, 180, 38, 182, 182, 104, 180, 182, 36, 184, 184, 102, 182, 184, 34, 186, 186, 100, 184, 186, 32, 188, 188, 98, 186, 188, 30, 190, 190, 138, 188, 190, 28, 192, 192, 140, 190, 192, 192, 146 ], - "width": 162, - "height": 162, - "path": "summer-as.mouth-accessory" + "width": 162.35294117647058, + "height": 162.35294117647058, + "path": "summer-as-lv2.mouth-accessory", + "x": 0.8235294117647101, + "y": 0.8235294117647101 } }, - "tail": {"tail": {"x": 113.64, "y": 3.45, "rotation": 12, "width": 225, "height": 225, "path": "summer-as.tail"}} + "tail": {"tail": {"x": 111.5964705882353, "y": 26.99, "rotation": 12, "width": 277.6470588235294, "height": 280.0, "path": "summer-as-lv2.tail"}} } } ], "events": {"hit": {}, "hit-buff": {}, "jump": {}, "start-attack": {}}, "keyAnimations": { - "activity/appear": "1023093953", - "activity/bath": "3305387968", - "attack/ranged/cast-fly": "4180526371", - "attack/ranged/cast-high": "164191126", - "attack/ranged/cast-low": "198813017", - "attack/ranged/cast-multi": "151119", - "attack/ranged/cast-tail": "3850719809", + "activity/appear": "2975056588", + "activity/bath": "4269852312", + "attack/ranged/cast-fly": "1964095857", + "attack/ranged/cast-high": "2755238029", + "attack/ranged/cast-low": "796766875", + "attack/ranged/cast-multi": "2912539256", + "attack/ranged/cast-tail": "515170597", "action/mix/ear-animation": "901954966", - "activity/eat-bite": "1137807767", - "activity/eat-chew": "1988236421", - "activity/entrance": "3768378365", - "defense/evade": "1735454995", - "activity/evolve": "649307630", + "activity/eat-bite": "1563829869", + "activity/eat-chew": "4174710305", + "activity/entrance": "636017429", + "defense/evade": "2335495519", + "activity/evolve": "3193680296", "action/mix/eyes-animation": "3799301307", - "battle/get-buff": "1455190363", - "battle/get-debuff": "606904312", - "defense/hit-by-normal": "2045974966", - "defense/hit-by-normal-crit": "2130010601", - "defense/hit-by-normal-dramatic": "3823092125", - "defense/hit-by-ranged-attack": "2224561612", - "defense/hit-with-shield": "390714790", - "attack/melee/horn-gore": "1327954218", - "attack/melee/mouth-bite": "2237748264", + "battle/get-buff": "3907351690", + "battle/get-debuff": "503738134", + "defense/hit-by-normal": "978716858", + "defense/hit-by-normal-crit": "3941256645", + "defense/hit-by-normal-dramatic": "2527908154", + "defense/hit-by-ranged-attack": "2207699263", + "defense/hit-with-shield": "3929030741", + "attack/melee/horn-gore": "672810168", + "attack/melee/mouth-bite": "103880736", "action/move-back": "3766271173", "action/move-forward": "2945160014", - "attack/melee/multi-attack": "3774600630", - "action/idle/normal": "1659336865", - "attack/melee/normal-attack": "3305373483", + "attack/melee/multi-attack": "3245081493", + "action/idle/normal": "2865608434", + "attack/melee/normal-attack": "3802408031", "action/mix/normal-mouth-animation": "1178295570", - "activity/prepare": "405864717", - "action/idle/random-01": "554401889", - "action/idle/random-02": "3634120758", - "action/idle/random-03": "2021333900", - "action/idle/random-04": "1003789695", + "action/idle/normal2": "3503981622", + "activity/prepare": "1112993905", + "action/idle/random-01": "4074297404", + "action/idle/random-02": "3457159700", + "action/idle/random-03": "1228132142", + "action/idle/random-04": "1416671293", "action/idle/random-05": "2745614147", - "action/run": "3942433225", + "action/run": "1751413398", "draft/run-origin": "237238075", - "attack/melee/shrimp": "3833448733", - "activity/sleep": "100562494", - "attack/melee/tail-multi-slap": "3317139533", - "attack/melee/tail-roll": "3108617565", - "attack/melee/tail-smash": "519942130", - "attack/melee/tail-thrash": "628713175", + "attack/melee/shrimp": "4284047619", + "activity/sleep": "3292250615", + "attack/melee/tail-multi-slap": "4247697367", + "attack/melee/tail-roll": "3634591874", + "attack/melee/tail-smash": "3663734631", + "attack/melee/tail-thrash": "1213410473", "activity/victory-pose-back-flip": "2227634241" } }, - "summer-tb": { + "summer-tb-lv2": { "bones": [ {"name": "@root"}, {"name": "@pivot-main", "parent": "@root"}, {"name": "@pivot-back", "parent": "@pivot-main", "x": 205, "y": 180, "color": "ff0101ff"}, {"name": "@pivot-center", "parent": "@pivot-back", "x": -215.11, "y": -5.25, "color": "ff0101ff"}, @@ -12725,27 +27672,27 @@ {"name": "leg-front-right-IK", "parent": "@pivot-main", "x": -195.99, "y": -10.21, "color": "ff3f00ff"}, {"name": "leg-front-left-IK", "parent": "@pivot-main", "x": 42.3, "y": -18.42, "color": "ff3f00ff"}, {"name": "leg-back-left-IK", "parent": "@pivot-main", "x": 208.57, "y": 1.35, "color": "ff3f00ff"}, {"name": "@ball", "parent": "@root", "y": 191, "color": "f3981bff"}, - {"name": "ball", "parent": "@ball", "y": -191, "color": "f4a729ff"}, {"name": "mouth-bubble", "parent": "@mouth", "x": -191.16, "y": -1.83}, + {"name": "ball", "parent": "@ball", "y": -191, "color": "f4a729ff"}, {"name": "mouth-bubble", "parent": "@mouth", "x": -247.51, "y": -1.83}, {"name": "mouth-accessory", "parent": "mouth-bubble", "x": -67.84, "y": 101.83}, {"name": "eyes-happy-accessory", "parent": "@eyes", "x": 142.51, "y": 62.21}, - {"name": "ear-right-bubble", "parent": "ear-right", "length": 40.07, "rotation": -179.99, "x": 184.94, "y": -20.48}, - {"name": "ear-left-bubble", "parent": "ear-left", "length": 48.54, "rotation": 176.27, "x": 190.98, "y": -21.07, "scaleX": 0.949}, + {"name": "ear-right-bubble", "parent": "ear-right", "length": 40.07, "rotation": -179.99, "x": 189.28, "y": -17.76}, + {"name": "ear-left-bubble", "parent": "ear-left", "length": 48.54, "rotation": 176.27, "x": 194.33, "y": -25.1, "scaleX": 0.9478, "scaleY": 1.223}, {"name": "ear-left-all-bubble", "parent": "ear-left", "length": 26.1, "rotation": 0.95, "x": -6.64, "y": -27.7, "color": "3002ffff"}, {"name": "ear-right-dot-01", "parent": "ear-left-all-bubble", "rotation": -90.95, "x": -13.64, "y": 22.67, "scaleX": 0.3508, "scaleY": 0.3508, "color": "2f9bffff"}, {"name": "ear-left-dot-01", "parent": "ear-left-all-bubble", "rotation": -90.95, "x": -28.82, "y": -24.72, "scaleX": 0.7755, "scaleY": 0.7755, "color": "2f9bffff"}, - {"name": "ear-right-bubble-02", "parent": "ear-right-bubble", "rotation": 86.99, "x": 63.76, "y": -22.96}, - {"name": "ear-right-bubble-03", "parent": "ear-right-bubble", "rotation": 86.99, "x": 64.99, "y": -1.59}, - {"name": "ear-right-bubble-04", "parent": "ear-right-bubble", "rotation": 86.99, "x": 66.12, "y": 19.85}, - {"name": "ear-left-bubble-02", "parent": "ear-left-bubble", "rotation": 93.73, "x": 68.81, "y": -22.89}, - {"name": "ear-left-bubble-03", "parent": "ear-left-bubble", "rotation": 93.73, "x": 70.45, "y": -0.4}, - {"name": "ear-left-bubble-04", "parent": "ear-left-bubble", "rotation": 93.73, "x": 65.87, "y": 22.28}, - {"name": "ear-right-bubble-05", "parent": "ear-right", "length": 40.07, "rotation": -179.99, "x": 184.94, "y": -20.48}, - {"name": "ear-right-bubble-06", "parent": "ear-right-bubble-05", "rotation": 86.99, "x": 63.76, "y": -22.96}, - {"name": "ear-right-bubble-07", "parent": "ear-right-bubble-05", "rotation": 86.99, "x": 64.99, "y": -1.59}, - {"name": "ear-right-bubble-08", "parent": "ear-right-bubble-05", "rotation": 86.99, "x": 66.12, "y": 19.85}, - {"name": "ear-left-bubble-05", "parent": "ear-left", "length": 48.54, "rotation": 176.27, "x": 190.98, "y": -21.07, "scaleX": 0.991}, - {"name": "ear-left-bubble-06", "parent": "ear-left-bubble-05", "rotation": 93.73, "x": 67.27, "y": -22.98}, - {"name": "ear-left-bubble-07", "parent": "ear-left-bubble-05", "rotation": 93.73, "x": 65.82, "y": -0.69}, - {"name": "ear-left-bubble-08", "parent": "ear-left-bubble-05", "rotation": 93.73, "x": 64.32, "y": 22.18}, + {"name": "ear-right-bubble-02", "parent": "ear-right-bubble", "rotation": 60.75, "x": 54.12, "y": -36.76}, + {"name": "ear-right-bubble-03", "parent": "ear-right-bubble", "rotation": 86.99, "x": 57.27, "y": 1.68}, + {"name": "ear-right-bubble-04", "parent": "ear-right-bubble", "rotation": 86.99, "x": 69.87, "y": 43.59}, + {"name": "ear-left-bubble-02", "parent": "ear-left-bubble", "rotation": 93.73, "x": 56.21, "y": -21.92}, + {"name": "ear-left-bubble-03", "parent": "ear-left-bubble", "rotation": 58.6, "x": 59.07, "y": 10.64}, + {"name": "ear-left-bubble-04", "parent": "ear-left-bubble", "rotation": 33.8, "x": 64.18, "y": 41.28}, + {"name": "ear-right-bubble-05", "parent": "ear-right", "length": 40.07, "rotation": -179.99, "x": 189.28, "y": -17.76}, + {"name": "ear-right-bubble-06", "parent": "ear-right-bubble-05", "rotation": 60.75, "x": 54.12, "y": -36.76}, + {"name": "ear-right-bubble-07", "parent": "ear-right-bubble-05", "rotation": 86.99, "x": 57.27, "y": 1.67}, + {"name": "ear-right-bubble-08", "parent": "ear-right-bubble-05", "rotation": 86.99, "x": 69.87, "y": 43.59}, + {"name": "ear-left-bubble-05", "parent": "ear-left", "length": 48.54, "rotation": 176.27, "x": 194.33, "y": -25.1, "scaleX": 0.9897, "scaleY": 1.223}, + {"name": "ear-left-bubble-06", "parent": "ear-left-bubble-05", "rotation": 93.73, "x": 55.2, "y": -22.01}, + {"name": "ear-left-bubble-07", "parent": "ear-left-bubble-05", "rotation": 58.6, "x": 54.91, "y": 10.35}, + {"name": "ear-left-bubble-08", "parent": "ear-left-bubble-05", "rotation": 33.8, "x": 62.7, "y": 41.18}, {"name": "ear-right-dot-02", "parent": "ear-left-all-bubble", "rotation": -95.73, "x": -18.26, "y": -8.1, "scaleX": 0.5668, "scaleY": 0.6813, "color": "2f9bffff"}, {"name": "ear-left-dot-02", "parent": "ear-left-all-bubble", "rotation": -88.74, "x": 8.57, "y": 59.72, "scaleX": 0.6577, "scaleY": 0.5996, "color": "2f9bffff"}, {"name": "ear-right-dot-03", "parent": "ear-left-all-bubble", "rotation": -87.96, "x": -25.76, "y": -45.18, "scaleX": 0.2583, "scaleY": 0.2881, "color": "2f9bffff"}, @@ -12802,13 +27749,9 @@ {"name": "ear-right-dot-19", "bone": "ear-right-dot-19", "color": "ffffff00", "attachment": "ear-right-dot"}, {"name": "ear-right-dot-15", "bone": "ear-right-dot-15", "color": "ffffff00", "attachment": "ear-right-dot"}, {"name": "ear-right-dot-20", "bone": "ear-right-dot-20", "color": "ffffff00", "attachment": "ear-right-dot"}, - {"name": "ear-right-bubble", "bone": "ear-right-bubble", "color": "00f7c2ff", "attachment": "ear-right-bubble"}, + {"name": "ear-right-bubble", "bone": "ear-right-bubble", "color": "0bc5b6ff", "attachment": "ear-right-bubble"}, {"name": "ear-right-bubble-02", "bone": "ear-right-bubble-05", "attachment": "ear-right-bubble"}, {"name": "ear-right-upper", "bone": "ear-right", "attachment": "ear-right-upper"}, - {"name": "leg-front-left", "bone": "@leg-front-left", "attachment": "summer-leg-front-left"}, {"name": "eyes", "bone": "@eyes", "attachment": "eyes"}, - {"name": "eyes-light-dot", "bone": "eyes-light-dot", "attachment": "eye-light-dot"}, {"name": "eyes-light-dot-02", "bone": "eyes-light-dot-02", "attachment": "eye-light-dot"}, - {"name": "eyes-light-left", "bone": "eyes-light-left", "color": "fff96500", "attachment": "light", "blend": "additive"}, - {"name": "eyes-light-right", "bone": "eyes-light-right", "color": "fff96500", "attachment": "light", "blend": "additive"}, {"name": "eyes-upper", "bone": "@eyes", "attachment": "eyes-upper"}, - {"name": "mouth", "bone": "@mouth", "attachment": "mouth"}, {"name": "horn", "bone": "horn", "attachment": "horn"}, + {"name": "leg-front-left", "bone": "@leg-front-left", "attachment": "summer-leg-front-left"}, {"name": "horn", "bone": "horn", "attachment": "horn"}, {"name": "ear-left-under", "bone": "ear-left", "attachment": "ear-left-under"}, {"name": "ear-left-dot-01", "bone": "ear-left-dot-01", "color": "ffffff00", "attachment": "ear-left-dot"}, {"name": "ear-left-dot-04", "bone": "ear-left-dot-04", "color": "ffffff00", "attachment": "ear-left-dot"}, {"name": "ear-left-dot-03", "bone": "ear-left-dot-03", "color": "ffffff00", "attachment": "ear-left-dot"}, @@ -12825,10 +27768,14 @@ {"name": "ear-right-dot-09", "bone": "ear-right-dot-09", "color": "ffffff00", "attachment": "ear-right-dot"}, {"name": "ear-right-dot-05", "bone": "ear-right-dot-05", "color": "ffffff00", "attachment": "ear-right-dot"}, {"name": "ear-right-dot-10", "bone": "ear-right-dot-10", "color": "ffffff00", "attachment": "ear-right-dot"}, - {"name": "ear-left-bubble", "bone": "ear-left-bubble", "color": "00f7c2ff", "attachment": "ear-left-bubble"}, + {"name": "ear-left-bubble", "bone": "ear-left-bubble", "color": "0bc5b6ff", "attachment": "ear-left-bubble"}, {"name": "ear-left-bubble-02", "bone": "ear-left-bubble-05", "attachment": "ear-left-bubble"}, {"name": "ear-left-upper", "bone": "ear-left", "attachment": "ear-left-upper"}, {"name": "eyes-happy-accessory", "bone": "eyes-happy-accessory", "color": "ffffff00", "attachment": "eyes-happy-accessory", "blend": "additive"}, - {"name": "mouth-accessory", "bone": "mouth-accessory", "color": "ffffff00", "attachment": "mouth-accessory"} + {"name": "eyes", "bone": "@eyes", "attachment": "eyes"}, {"name": "eyes-light-dot", "bone": "eyes-light-dot", "attachment": "eye-light-dot"}, + {"name": "eyes-light-dot-02", "bone": "eyes-light-dot-02", "attachment": "eye-light-dot"}, + {"name": "eyes-light-left", "bone": "eyes-light-left", "color": "fff96500", "attachment": "light", "blend": "additive"}, + {"name": "eyes-light-right", "bone": "eyes-light-right", "color": "fff96500", "attachment": "light", "blend": "additive"}, {"name": "eyes-upper", "bone": "@eyes", "attachment": "eyes-upper"}, + {"name": "mouth", "bone": "@mouth", "attachment": "mouth"}, {"name": "mouth-accessory", "bone": "mouth-accessory", "color": "ffffff00", "attachment": "mouth-accessory"} ], "ik": [ {"name": "leg-back-left-IK", "order": 3, "bones": ["@leg-back-left"], "target": "leg-back-left-IK"}, @@ -12840,7 +27787,7 @@ { "name": "default", "attachments": { - "back": {"back": {"x": 109.94, "y": 18.25, "rotation": -58, "width": 285, "height": 363, "path": "summer-as.back"}}, + "back": {"back": {"x": 141.02470588235292, "y": -5.6, "rotation": -58, "width": 296.47058823529414, "height": 320.0, "path": "summer-as-lv2.back"}}, "ear-left-bubble": { "ear-left-bubble": { "type": "mesh", @@ -12863,115 +27810,114 @@ 0.89934, 0.9108 ], "triangles": [ - 85, 86, 49, 86, 99, 49, 101, 47, 100, 34, 125, 144, 35, 125, 34, 125, 46, 144, 46, 47, 101, 47, 48, 100, 122, 121, 53, 56, 55, 3, 47, 46, 37, 49, 50, 85, 85, 50, 84, 48, 39, 49, 46, - 36, 37, 38, 39, 48, 49, 40, 50, 39, 40, 49, 5, 6, 4, 55, 54, 2, 55, 2, 3, 95, 94, 52, 54, 1, 2, 121, 52, 53, 53, 0, 1, 53, 52, 0, 113, 57, 90, 108, 80, 57, 62, 61, 80, 80, 79, 57, - 80, 61, 79, 57, 89, 90, 57, 51, 89, 57, 79, 51, 90, 72, 73, 90, 89, 72, 40, 69, 66, 84, 66, 61, 61, 78, 79, 61, 66, 78, 51, 79, 67, 51, 67, 89, 67, 79, 78, 89, 77, 72, 89, 67, 77, - 72, 77, 94, 94, 68, 52, 94, 77, 68, 66, 69, 78, 41, 69, 40, 67, 78, 70, 67, 70, 77, 70, 78, 69, 77, 71, 68, 77, 70, 71, 71, 45, 0, 69, 42, 70, 69, 41, 42, 71, 70, 44, 70, 43, 44, 44, - 45, 71, 71, 0, 68, 70, 42, 43, 52, 68, 0, 54, 53, 1, 56, 3, 4, 50, 40, 66, 50, 66, 84, 47, 37, 38, 48, 47, 38, 125, 36, 46, 35, 36, 125, 48, 49, 99, 121, 95, 52, 122, 53, 54, 144, - 46, 126, 100, 48, 99, 62, 84, 61, 123, 54, 55, 94, 73, 72, 85, 84, 62, 113, 90, 91, 141, 56, 4, 6, 141, 4, 124, 55, 56, 17, 150, 16, 17, 135, 150, 16, 136, 15, 16, 150, 136, 15, 151, - 14, 15, 136, 151, 14, 137, 13, 14, 151, 137, 13, 152, 12, 13, 137, 152, 12, 138, 11, 12, 152, 138, 11, 153, 10, 11, 138, 153, 10, 139, 9, 10, 153, 139, 9, 140, 8, 9, 139, 140, 8, - 154, 7, 8, 140, 154, 7, 141, 6, 7, 154, 141, 152, 137, 76, 137, 151, 76, 76, 151, 116, 150, 116, 136, 151, 136, 116, 154, 140, 124, 152, 117, 138, 152, 76, 117, 153, 98, 139, 140, - 139, 124, 139, 98, 124, 154, 56, 141, 154, 124, 56, 98, 153, 117, 116, 150, 93, 153, 138, 117, 150, 135, 93, 98, 123, 124, 124, 123, 55, 117, 97, 98, 98, 97, 123, 76, 118, 117, 117, - 118, 97, 116, 75, 76, 76, 75, 118, 93, 115, 116, 116, 115, 75, 93, 92, 115, 97, 122, 123, 123, 122, 54, 118, 96, 97, 97, 96, 122, 75, 119, 118, 118, 119, 96, 115, 74, 75, 75, 74, - 119, 92, 114, 115, 115, 114, 74, 92, 91, 114, 96, 121, 122, 119, 95, 96, 96, 95, 121, 74, 120, 119, 119, 120, 95, 114, 73, 74, 74, 73, 120, 73, 114, 90, 114, 91, 90, 120, 73, 94, - 120, 94, 95, 58, 57, 113, 25, 131, 24, 24, 146, 23, 24, 131, 146, 23, 132, 22, 23, 146, 132, 22, 147, 21, 22, 132, 147, 20, 133, 148, 20, 21, 133, 21, 147, 133, 20, 148, 19, 19, 134, - 18, 19, 148, 134, 18, 135, 17, 18, 149, 135, 18, 134, 149, 148, 133, 60, 133, 147, 60, 134, 148, 111, 134, 111, 149, 111, 148, 60, 132, 110, 147, 147, 110, 60, 149, 93, 135, 149, - 111, 93, 132, 146, 110, 131, 83, 146, 146, 83, 110, 111, 92, 93, 60, 59, 111, 59, 112, 111, 111, 112, 92, 110, 109, 60, 60, 109, 59, 83, 82, 110, 110, 82, 109, 92, 112, 91, 112, 113, - 91, 59, 58, 112, 112, 58, 113, 109, 108, 59, 59, 108, 58, 82, 81, 109, 109, 81, 108, 58, 108, 57, 81, 80, 108, 34, 144, 33, 126, 46, 101, 33, 126, 32, 33, 144, 126, 32, 127, 31, 32, - 126, 127, 31, 143, 30, 31, 127, 143, 30, 128, 29, 30, 143, 128, 29, 129, 28, 29, 128, 129, 28, 142, 27, 28, 129, 142, 27, 130, 26, 27, 142, 130, 26, 145, 25, 26, 130, 145, 25, 145, - 131, 126, 101, 127, 127, 88, 143, 127, 101, 88, 130, 107, 145, 130, 142, 107, 143, 88, 128, 129, 65, 142, 142, 65, 107, 131, 145, 83, 128, 102, 129, 129, 102, 65, 128, 88, 102, 83, - 145, 107, 107, 106, 83, 83, 106, 82, 65, 64, 107, 107, 64, 106, 102, 103, 65, 65, 103, 64, 88, 87, 102, 102, 87, 103, 101, 100, 88, 88, 100, 87, 106, 105, 82, 82, 105, 81, 64, 63, - 106, 106, 63, 105, 103, 104, 64, 64, 104, 63, 87, 86, 103, 103, 86, 104, 100, 99, 87, 87, 99, 86, 81, 105, 80, 63, 62, 105, 105, 62, 80, 62, 63, 85, 86, 85, 104, 63, 104, 85 - ], - "vertices": [ - 4, 39, 58.43, 20.31, 0.00012, 40, 36.09, 20.31, 0.00054, 41, 13.17, 20.31, 0.12631, 32, 43.2, 34, 0.87302, 3, 40, 39.33, 12.22, 0.00019, 41, 16.41, 12.22, 0.19743, 32, 51.06, 37.76, - 0.80237, 3, 40, 41.94, 5.69, 6e-05, 41, 19.02, 5.69, 0.26715, 32, 57.41, 40.79, 0.73278, 3, 40, 43.5, 1.06, 1e-05, 41, 20.58, 1.06, 0.33542, 32, 61.92, 42.65, 0.66457, 3, 40, 45, - -3.4, 1e-05, 41, 22.08, -3.4, 0.40033, 32, 66.27, 44.44, 0.59966, 3, 40, 46.9, -9.05, 0, 41, 23.98, -9.05, 0.45012, 32, 71.79, 46.7, 0.54988, 3, 40, 40.83, -9.07, 0, 41, 17.91, - -9.07, 0.5829, 32, 72.21, 40.65, 0.4171, 3, 40, 38.56, -9.08, 4e-05, 41, 15.64, -9.08, 0.72131, 32, 72.37, 38.38, 0.27865, 3, 40, 36.78, -9.09, 0.00031, 41, 13.86, -9.09, 0.8264, 32, - 72.49, 36.6, 0.17329, 3, 40, 33.93, -9.1, 0.00157, 41, 11, -9.1, 0.90359, 32, 72.69, 33.76, 0.09484, 3, 40, 31.22, -9.11, 0.00537, 41, 8.3, -9.11, 0.94975, 32, 72.87, 31.05, 0.04488, - 3, 40, 28.77, -9.12, 0.01601, 41, 5.85, -9.12, 0.96404, 32, 73.04, 28.61, 0.01996, 3, 40, 26.12, -9.13, 0.03803, 41, 3.2, -9.13, 0.95562, 32, 73.22, 25.97, 0.00635, 3, 40, 23.82, - -9.14, 0.08031, 41, 0.9, -9.14, 0.91597, 32, 73.38, 23.67, 0.00372, 4, 39, 43.47, -9.15, 0, 40, 21.13, -9.15, 0.14592, 41, -1.79, -9.15, 0.85165, 32, 73.57, 20.99, 0.00243, 4, 39, - 40.71, -9.16, 2e-05, 40, 18.37, -9.16, 0.23867, 41, -4.55, -9.16, 0.75671, 32, 73.76, 18.24, 0.0046, 4, 39, 37.66, -9.17, 0.00014, 40, 15.32, -9.17, 0.35275, 41, -7.6, -9.17, - 0.64256, 32, 73.97, 15.19, 0.00455, 4, 39, 35.13, -9.18, 0.00092, 40, 12.8, -9.18, 0.48034, 41, -10.13, -9.18, 0.51198, 32, 74.14, 12.68, 0.00676, 4, 39, 31.91, -9.19, 0.00375, 40, - 9.57, -9.19, 0.61095, 41, -13.35, -9.19, 0.38019, 32, 74.36, 9.46, 0.00512, 4, 39, 28.47, -9.21, 0.01298, 40, 6.13, -9.21, 0.72267, 41, -16.79, -9.21, 0.25841, 32, 74.6, 6.03, - 0.00594, 4, 39, 25.59, -9.22, 0.03422, 40, 3.25, -9.22, 0.80451, 41, -19.67, -9.22, 0.15782, 32, 74.8, 3.15, 0.00345, 4, 39, 22.68, -9.23, 0.07754, 40, 0.34, -9.23, 0.83155, 41, - -22.58, -9.23, 0.08642, 32, 75, 0.25, 0.00449, 4, 39, 19.52, -9.24, 0.14705, 40, -2.82, -9.24, 0.80991, 41, -25.74, -9.24, 0.04032, 32, 75.22, -2.9, 0.00272, 4, 39, 16.15, -9.25, - 0.24563, 40, -6.18, -9.25, 0.73344, 41, -29.11, -9.25, 0.01645, 32, 75.45, -6.26, 0.00448, 4, 39, 13.09, -9.27, 0.36774, 40, -9.24, -9.27, 0.62371, 41, -32.17, -9.27, 0.00512, 32, - 75.66, -9.31, 0.00344, 4, 39, 10.21, -9.28, 0.50372, 40, -12.13, -9.28, 0.49001, 41, -35.05, -9.28, 0.00135, 32, 75.86, -12.19, 0.00491, 4, 39, 7.08, -9.29, 0.64487, 40, -15.26, - -9.29, 0.35177, 41, -38.18, -9.29, 0.00021, 32, 76.08, -15.32, 0.00314, 4, 39, 3.26, -9.3, 0.77, 40, -19.08, -9.3, 0.22651, 41, -42, -9.3, 3e-05, 32, 76.34, -19.12, 0.00346, 4, 39, - -0.32, -9.32, 0.87272, 40, -22.66, -9.32, 0.1254, 41, -45.58, -9.32, 0, 32, 76.59, -22.69, 0.00188, 3, 39, -3.57, -9.33, 0.9351, 40, -25.91, -9.33, 0.0605, 32, 76.81, -25.94, 0.0044, - 3, 39, -7.54, -9.35, 0.96153, 40, -29.88, -9.35, 0.02278, 32, 77.09, -29.9, 0.01569, 3, 39, -9.85, -9.35, 0.93655, 40, -32.19, -9.35, 0.00657, 32, 77.24, -32.21, 0.05688, 3, 39, - -11.87, -9.36, 0.83576, 40, -34.2, -9.36, 0.00151, 32, 77.38, -34.21, 0.16273, 3, 39, -14.74, -9.37, 0.65143, 40, -37.08, -9.37, 0.00023, 32, 77.58, -37.08, 0.34834, 3, 39, -16.89, - -9.38, 0.4382, 40, -39.23, -9.38, 2e-05, 32, 77.73, -39.23, 0.56178, 3, 39, -18.76, -9.39, 0.27507, 40, -41.1, -9.39, 0, 32, 77.86, -41.09, 0.72493, 3, 39, -18.76, -2.89, 0.21414, - 40, -41.1, -2.89, 2e-05, 32, 71.37, -41.51, 0.78584, 3, 39, -18.76, 1.38, 0.19077, 40, -41.1, 1.38, 0.00024, 32, 67.11, -41.79, 0.80899, 3, 39, -18.76, 7.5, 0.1765, 40, -41.1, 7.5, - 0.00116, 32, 61.01, -42.19, 0.82235, 4, 39, -16.28, 11.88, 0.15382, 40, -38.62, 11.88, 0.00307, 41, -61.54, 11.88, 1e-05, 32, 56.48, -40, 0.84309, 4, 39, -11.9, 19.61, 0.11079, 40, - -34.24, 19.61, 0.0029, 41, -57.16, 19.61, 0.00014, 32, 48.48, -36.13, 0.88617, 4, 39, 14.63, 66.47, 0.04584, 40, -7.7, 66.47, 0.00083, 41, -30.63, 66.47, 0.00037, 32, -0.01, -12.7, - 0.95296, 4, 39, 22.29, 66.47, 0.02247, 40, -0.04, 66.47, 0.00083, 41, -22.97, 66.47, 0.00288, 32, -0.51, -5.06, 0.97382, 4, 39, 27.54, 66.47, 0.01007, 40, 5.2, 66.47, 0.00155, 41, - -17.72, 66.47, 0.0104, 32, -0.85, 0.17, 0.97798, 4, 39, 34.04, 66.47, 0.00272, 40, 11.7, 66.47, 0.00045, 41, -11.22, 66.47, 0.02285, 32, -1.28, 6.66, 0.97398, 4, 39, 39.96, 66.47, - 0.00033, 40, 17.62, 66.47, 0.00011, 41, -5.3, 66.47, 0.0498, 32, -1.66, 12.57, 0.94976, 3, 39, -16.24, -2.91, 0.33437, 40, -38.58, -2.91, 0.0002, 32, 71.23, -39, 0.66543, 3, 39, - -14.53, 1.37, 0.32645, 40, -36.87, 1.37, 0.00078, 32, 66.85, -37.57, 0.67277, 4, 39, -12.36, 7.36, 0.307, 40, -34.7, 7.36, 0.00285, 41, -57.62, 7.36, 1e-05, 32, 60.73, -35.79, - 0.69014, 4, 39, -9.97, 11.91, 0.26477, 40, -32.31, 11.91, 0.00971, 41, -55.23, 11.91, 0.00027, 32, 56.04, -33.7, 0.72525, 4, 39, -6.21, 19.66, 0.19881, 40, -28.55, 19.66, 0.00959, - 41, -51.47, 19.66, 0.00132, 32, 48.05, -30.46, 0.79028, 4, 39, 24.46, 19.97, 0.10712, 40, 2.12, 19.97, 0.11704, 41, -20.8, 19.97, 0.11672, 32, 45.75, 0.12, 0.65912, 4, 39, 53.97, - 20.27, 0.00116, 40, 31.63, 20.27, 0.00313, 41, 8.71, 20.27, 0.2148, 32, 43.53, 29.55, 0.7809, 4, 39, 57.02, 12.2, 0.0001, 40, 34.68, 12.2, 0.00083, 41, 11.76, 12.2, 0.29942, 32, - 51.38, 33.12, 0.69965, 3, 40, 36.75, 5.8, 0.00034, 41, 13.82, 5.8, 0.378, 32, 57.63, 35.6, 0.62166, 3, 40, 38.1, 1.08, 0.00022, 41, 15.18, 1.08, 0.45653, 32, 62.25, 37.26, 0.54325, - 3, 40, 39.36, -3.36, 0.00015, 41, 16.43, -3.36, 0.53433, 32, 66.61, 38.8, 0.46552, 4, 39, 23.97, 12.06, 0.12565, 40, 1.63, 12.06, 0.24275, 41, -21.29, 12.06, 0.14114, 32, 53.68, - 0.15, 0.49046, 4, 39, 23.54, 6.58, 0.11007, 40, 1.2, 6.58, 0.47217, 41, -21.72, 6.58, 0.12893, 32, 59.17, 0.08, 0.28883, 4, 39, 23.28, 1.22, 0.10884, 40, 0.94, 1.22, 0.60558, 41, - -21.98, 1.22, 0.12698, 32, 64.53, 0.17, 0.1586, 4, 39, 23.11, -3.14, 0.10666, 40, 0.77, -3.14, 0.70334, 41, -22.15, -3.14, 0.12133, 32, 68.89, 0.28, 0.06866, 4, 39, 6.87, 19.8, - 0.29773, 40, -15.47, 19.8, 0.06022, 41, -38.39, 19.8, 0.01488, 32, 47.07, -17.41, 0.62717, 4, 39, 3.75, 11.97, 0.44072, 40, -18.59, 11.97, 0.09602, 41, -41.51, 11.97, 0.01064, 32, - 55.08, -20.02, 0.45261, 4, 39, 1.91, 7.05, 0.66419, 40, -20.42, 7.05, 0.11803, 41, -43.35, 7.05, 0.002, 32, 60.11, -21.53, 0.21579, 4, 39, 0.03, 1.31, 0.77187, 40, -22.31, 1.31, - 0.12352, 41, -45.23, 1.31, 0.00043, 32, 65.96, -23.04, 0.10418, 4, 39, -1.27, -2.99, 0.84303, 40, -23.61, -2.99, 0.11246, 41, -46.53, -2.99, 0.00018, 32, 70.34, -24.05, 0.04432, 4, - 39, -1.8, 26.91, 0.12744, 40, -24.14, 26.91, 0.00959, 41, -47.06, 26.91, 0.0076, 32, 40.54, -26.53, 0.85537, 4, 39, 24.96, 27.56, 0.0719, 40, 2.62, 27.56, 0.03639, 41, -20.3, 27.56, - 0.07572, 32, 38.14, 0.13, 0.81598, 4, 39, 50.76, 27.7, 0.00702, 40, 28.42, 27.7, 0.00523, 41, 5.5, 27.7, 0.131, 32, 36.32, 25.87, 0.85675, 4, 39, 3.83, 36.15, 0.04791, 40, -18.51, - 36.15, 0.00352, 41, -41.43, 36.15, 0.00803, 32, 30.95, -21.51, 0.94054, 4, 39, 25.65, 37.95, 0.02662, 40, 3.31, 37.95, 0.00775, 41, -19.61, 37.95, 0.02767, 32, 27.73, 0.14, 0.93795, - 4, 39, 46.64, 37.25, 0.00753, 40, 24.3, 37.25, 0.00227, 41, 1.38, 37.25, 0.04846, 32, 27.06, 21.14, 0.94174, 4, 39, 41.75, 20.15, 0.01306, 40, 19.41, 20.15, 0.04509, 41, -3.51, - 20.15, 0.32134, 32, 44.45, 17.37, 0.62052, 4, 39, 43.25, 12.14, 0.00895, 40, 20.91, 12.14, 0.07841, 41, -2.01, 12.14, 0.49568, 32, 52.34, 19.39, 0.41696, 4, 39, 44.35, 6.12, 0.0015, - 40, 22.01, 6.12, 0.09572, 41, -0.91, 6.12, 0.67014, 32, 58.27, 20.88, 0.23264, 4, 39, 45.08, 1.14, 0.00025, 40, 22.74, 1.14, 0.108, 41, -0.18, 1.14, 0.76841, 32, 63.2, 21.93, - 0.12334, 4, 39, 45.58, -3.27, 0.0001, 40, 23.24, -3.27, 0.10937, 41, 0.32, -3.27, 0.83473, 32, 67.56, 22.71, 0.0558, 4, 39, 40.33, 27.64, 0.02381, 40, 18, 27.64, 0.02132, 41, -4.93, - 27.64, 0.16866, 32, 37.06, 15.47, 0.78621, 4, 39, 9.71, 27.19, 0.16236, 40, -12.63, 27.19, 0.02827, 41, -35.55, 27.19, 0.02548, 32, 39.51, -15.06, 0.78388, 4, 39, 15.01, 19.88, - 0.23124, 40, -7.33, 19.88, 0.11759, 41, -30.25, 19.88, 0.04679, 32, 46.46, -9.29, 0.60438, 4, 39, 13.78, 12.01, 0.29354, 40, -8.56, 12.01, 0.19873, 41, -31.48, 12.01, 0.04427, 32, - 54.39, -10.01, 0.46346, 4, 39, 12.95, 6.81, 0.37869, 40, -9.39, 6.81, 0.34588, 41, -32.31, 6.81, 0.01968, 32, 59.63, -10.5, 0.25575, 4, 39, 11.95, 1.27, 0.42861, 40, -10.39, 1.27, - 0.42317, 41, -33.31, 1.27, 0.01297, 32, 65.23, -11.14, 0.13524, 4, 39, 11.29, -3.07, 0.46725, 40, -11.05, -3.07, 0.46538, 41, -33.97, -3.07, 0.0097, 32, 69.59, -11.51, 0.05768, 4, - 39, -0.59, 19.72, 0.32338, 40, -22.92, 19.72, 0.02881, 41, -45.85, 19.72, 0.003, 32, 47.63, -24.85, 0.64481, 4, 39, -3.82, 11.93, 0.4391, 40, -26.16, 11.93, 0.03345, 41, -49.08, - 11.93, 0.00177, 32, 55.61, -27.57, 0.52567, 4, 39, -5.89, 7.22, 0.65491, 40, -28.23, 7.22, 0.02015, 41, -51.15, 7.22, 0.00017, 32, 60.45, -29.33, 0.32476, 4, 39, -8.13, 1.34, - 0.75275, 40, -30.47, 1.34, 0.01396, 41, -53.39, 1.34, 1e-05, 32, 66.46, -31.18, 0.23328, 3, 39, -9.63, -2.94, 0.80478, 40, -31.96, -2.94, 0.00944, 32, 70.83, -32.39, 0.18578, 4, 39, - 33.3, 20.06, 0.04166, 40, 10.96, 20.06, 0.10286, 41, -11.96, 20.06, 0.24857, 32, 45.08, 8.94, 0.60691, 4, 39, 33.97, 12.1, 0.03817, 40, 11.63, 12.1, 0.17811, 41, -11.29, 12.1, - 0.32257, 32, 52.98, 10.13, 0.46115, 4, 39, 34.3, 6.34, 0.01531, 40, 11.97, 6.34, 0.31162, 41, -10.96, 6.34, 0.40881, 32, 58.71, 10.84, 0.26426, 4, 39, 34.72, 1.18, 0.00955, 40, - 12.39, 1.18, 0.39036, 41, -10.54, 1.18, 0.4561, 32, 63.83, 11.59, 0.14399, 4, 39, 34.8, -3.2, 0.00731, 40, 12.46, -3.2, 0.44195, 41, -10.46, -3.2, 0.48699, 32, 68.2, 11.96, 0.06375, - 4, 39, 48.21, 20.21, 0.00241, 40, 25.88, 20.21, 0.01421, 41, 2.95, 20.21, 0.36275, 32, 43.96, 23.82, 0.62063, 4, 39, 50.54, 12.17, 0.00034, 40, 28.2, 12.17, 0.01068, 41, 5.28, 12.17, - 0.5453, 32, 51.83, 26.66, 0.44368, 4, 39, 52.52, 5.95, 2e-05, 40, 30.19, 5.95, 0.00999, 41, 7.26, 5.95, 0.66888, 32, 57.92, 29.04, 0.32111, 3, 40, 31.52, 1.11, 0.01011, 41, 8.6, - 1.11, 0.76268, 32, 62.66, 30.7, 0.22721, 3, 40, 32.61, -3.32, 0.00863, 41, 9.68, -3.32, 0.83296, 32, 67.01, 32.06, 0.15841, 4, 39, -9.21, 7.29, 0.52586, 40, -31.55, 7.29, 0.0057, 41, - -54.47, 7.29, 1e-05, 32, 60.59, -32.65, 0.46842, 3, 39, -11.3, 1.36, 0.56698, 40, -33.64, 1.36, 0.00311, 32, 66.65, -34.34, 0.42991, 3, 39, -12.66, -2.93, 0.60013, 40, -35, -2.93, - 0.00167, 32, 71.01, -35.42, 0.39821, 4, 39, -5.46, -2.97, 0.89102, 40, -27.8, -2.97, 0.03888, 41, -50.72, -2.97, 1e-05, 32, 70.59, -28.24, 0.07008, 4, 39, -4.18, 1.33, 0.83362, 40, - -26.52, 1.33, 0.04645, 41, -49.44, 1.33, 3e-05, 32, 66.21, -27.24, 0.1199, 4, 39, -2.26, 7.14, 0.75973, 40, -24.6, 7.14, 0.05134, 41, -47.52, 7.14, 0.00026, 32, 60.29, -25.7, - 0.18867, 4, 39, 7.35, 6.93, 0.57235, 40, -14.98, 6.93, 0.23863, 41, -37.91, 6.93, 0.00435, 32, 59.87, -16.09, 0.18467, 4, 39, 5.9, 1.29, 0.63011, 40, -16.44, 1.29, 0.25936, 41, - -39.36, 1.29, 0.00243, 32, 65.6, -17.18, 0.1081, 4, 39, 4.86, -3.03, 0.68809, 40, -17.48, -3.03, 0.26358, 41, -40.4, -3.03, 0.00168, 32, 69.98, -17.93, 0.04665, 4, 39, 17.76, 6.7, - 0.22941, 40, -4.58, 6.7, 0.4879, 41, -27.5, 6.7, 0.05094, 32, 59.42, -5.7, 0.23175, 4, 39, 17.11, 1.25, 0.24296, 40, -5.23, 1.25, 0.56856, 41, -28.15, 1.25, 0.04581, 32, 64.91, - -5.99, 0.14267, 4, 39, 16.71, -3.1, 0.25552, 40, -5.62, -3.1, 0.64168, 41, -28.55, -3.1, 0.03992, 32, 69.27, -6.1, 0.06288, 4, 39, 28.55, -3.17, 0.03276, 40, 6.22, -3.17, 0.62363, - 41, -16.71, -3.17, 0.27658, 32, 68.57, 5.72, 0.06703, 4, 39, 28.55, 1.2, 0.0367, 40, 6.21, 1.21, 0.54514, 41, -16.71, 1.21, 0.26974, 32, 64.21, 5.43, 0.14843, 4, 39, 28.71, 6.47, - 0.04075, 40, 6.37, 6.47, 0.46337, 41, -16.55, 6.47, 0.25797, 32, 58.95, 5.25, 0.23791, 4, 39, 39.28, 6.23, 0.00305, 40, 16.94, 6.24, 0.20572, 41, -5.98, 6.24, 0.59307, 32, 58.49, - 15.81, 0.19817, 4, 39, 39.51, 1.16, 0.00156, 40, 17.17, 1.16, 0.23228, 41, -5.75, 1.16, 0.64631, 32, 63.54, 16.37, 0.11984, 4, 39, 40.07, -3.24, 0.00112, 40, 17.74, -3.24, 0.25061, - 41, -5.19, -3.24, 0.69415, 32, 67.89, 17.22, 0.05412, 4, 39, 50.23, -3.29, 0, 40, 27.89, -3.29, 0.036, 41, 4.97, -3.29, 0.88144, 32, 67.29, 27.36, 0.08255, 4, 39, 49.51, 1.13, 2e-05, - 40, 27.17, 1.13, 0.03826, 41, 4.25, 1.13, 0.81357, 32, 62.92, 26.35, 0.14816, 4, 39, 48.55, 6.03, 0.00027, 40, 26.22, 6.03, 0.03577, 41, 3.29, 6.03, 0.72045, 32, 58.09, 25.08, - 0.24351, 4, 39, 47.11, 12.16, 0.00156, 40, 24.77, 12.16, 0.03311, 41, 1.85, 12.16, 0.61234, 32, 52.07, 23.24, 0.35299, 4, 39, 53.99, 12.19, 1e-05, 40, 31.66, 12.19, 0.00266, 41, - 8.73, 12.19, 0.47035, 32, 51.59, 30.11, 0.52698, 3, 40, 33.02, 5.88, 0.00213, 41, 10.1, 5.88, 0.54797, 32, 57.79, 31.88, 0.4499, 3, 40, 34.54, 1.1, 0.0018, 41, 11.62, 1.1, 0.63247, - 32, 62.47, 33.7, 0.36573, 3, 40, 35.58, -3.34, 0.00152, 41, 12.66, -3.34, 0.71351, 32, 66.83, 35.03, 0.28497, 3, 39, -17.72, -6.71, 0.31251, 40, -40.05, -6.71, 1e-05, 32, 75.11, - -40.22, 0.68748, 3, 39, -13.83, -6.56, 0.64755, 40, -36.17, -6.56, 0.00038, 32, 74.72, -36.36, 0.35207, 3, 39, -10.89, -6.57, 0.83546, 40, -33.23, -6.57, 0.00245, 32, 74.53, -33.42, - 0.1621, 3, 39, -6.58, -6.39, 0.9505, 40, -28.91, -6.39, 0.02598, 32, 74.07, -29.13, 0.02352, 4, 39, -2.51, -6.41, 0.9185, 40, -24.85, -6.41, 0.06986, 41, -47.77, -6.41, 1e-05, 32, - 73.83, -25.07, 0.01163, 4, 39, 3.97, -6.54, 0.7539, 40, -18.37, -6.54, 0.23416, 41, -41.29, -6.54, 0.00019, 32, 73.54, -18.6, 0.01175, 4, 39, 10.73, -6.3, 0.4945, 40, -11.61, -6.29, - 0.48778, 41, -34.53, -6.29, 0.00242, 32, 72.85, -11.87, 0.01529, 4, 39, 16.42, -6.31, 0.24467, 40, -5.92, -6.31, 0.71967, 41, -28.84, -6.31, 0.01969, 32, 72.5, -6.18, 0.01597, 4, 39, - 22.88, -6.46, 0.08074, 40, 0.54, -6.46, 0.81091, 41, -22.38, -6.46, 0.09131, 32, 72.22, 0.27, 0.01704, 4, 39, 28.51, -6.42, 0.01543, 40, 6.17, -6.42, 0.70591, 41, -16.75, -6.42, - 0.26031, 32, 71.82, 5.89, 0.01836, 4, 39, 34.97, -6.29, 0.00164, 40, 12.64, -6.29, 0.47309, 41, -10.29, -6.29, 0.50689, 32, 71.27, 12.33, 0.01837, 4, 39, 40.42, -6.47, 0.0001, 40, - 18.08, -6.47, 0.23958, 41, -4.84, -6.47, 0.7461, 32, 71.1, 17.78, 0.01421, 4, 39, 45.89, -6.5, 0, 40, 23.56, -6.5, 0.08431, 41, 0.63, -6.5, 0.9025, 32, 70.76, 23.24, 0.01319, 3, 40, - 28.36, -6.37, 0.01867, 41, 5.43, -6.37, 0.94991, 32, 70.33, 28.02, 0.03142, 3, 40, 33.31, -6.41, 0.00244, 41, 10.39, -6.41, 0.88788, 32, 70.05, 32.97, 0.10968, 3, 40, 36.23, -6.46, - 0.00046, 41, 13.31, -6.46, 0.80558, 32, 69.91, 35.88, 0.19395, 3, 40, 40.12, -6.31, 1e-05, 41, 17.2, -6.31, 0.61334, 32, 69.5, 39.76, 0.38665, 4, 39, 0.4, -6.47, 0.86555, 40, -21.94, - -6.47, 0.12959, 41, -44.86, -6.47, 1e-05, 32, 73.7, -22.16, 0.00485, 3, 39, -9.01, -6.49, 0.93616, 40, -31.35, -6.49, 0.00716, 32, 74.33, -31.55, 0.05668, 3, 39, -16.19, -6.65, - 0.44814, 40, -38.53, -6.65, 3e-05, 32, 74.96, -38.7, 0.55184, 4, 39, 7.48, -6.41, 0.63866, 40, -14.86, -6.41, 0.354, 41, -37.78, -6.41, 0.00037, 32, 73.18, -15.1, 0.00698, 4, 39, - 13.4, -6.3, 0.36468, 40, -8.94, -6.3, 0.62161, 41, -31.86, -6.3, 0.00581, 32, 72.69, -9.2, 0.0079, 4, 39, 19.68, -6.38, 0.14684, 40, -2.65, -6.38, 0.80383, 41, -25.58, -6.38, - 0.04176, 32, 72.36, -2.92, 0.00757, 4, 39, 25.54, -6.44, 0.03499, 40, 3.2, -6.44, 0.79745, 41, -19.72, -6.44, 0.15898, 32, 72.03, 2.92, 0.00858, 4, 39, 31.96, -6.35, 0.00417, 40, - 9.62, -6.35, 0.60634, 41, -13.3, -6.35, 0.37927, 32, 71.53, 9.32, 0.01022, 4, 39, 37.62, -6.38, 0.00021, 40, 15.28, -6.38, 0.35157, 41, -7.64, -6.38, 0.63918, 32, 71.18, 14.97, - 0.00904, 4, 39, 43.32, -6.48, 1e-05, 40, 20.98, -6.48, 0.14688, 41, -1.94, -6.48, 0.84692, 32, 70.92, 20.67, 0.00619, 3, 40, 25.81, -6.44, 0.03919, 41, 2.89, -6.44, 0.95006, 32, - 70.56, 25.48, 0.01074, 3, 40, 30.92, -6.39, 0.00591, 41, 7.99, -6.39, 0.9433, 32, 70.18, 30.58, 0.05079, 3, 40, 38.04, -6.39, 5e-05, 41, 15.12, -6.39, 0.72615, 32, 69.72, 37.69, - 0.2738 + 85, 86, 49, 86, 99, 49, 101, 47, 100, 34, 125, 144, 35, 125, 34, 125, 46, 144, 46, 47, 101, 47, 48, 100, 122, 121, 53, 56, 55, 3, 47, 46, 37, 49, 50, 85, 85, 50, 84, 48, 39, 49, 46, + 36, 37, 38, 39, 48, 49, 40, 50, 39, 40, 49, 5, 6, 4, 55, 54, 2, 55, 2, 3, 95, 94, 52, 54, 1, 2, 121, 52, 53, 53, 0, 1, 53, 52, 0, 113, 57, 90, 108, 80, 57, 62, 61, 80, 80, 79, 57, + 80, 61, 79, 57, 89, 90, 57, 51, 89, 57, 79, 51, 90, 72, 73, 90, 89, 72, 40, 69, 66, 84, 66, 61, 61, 78, 79, 61, 66, 78, 51, 79, 67, 51, 67, 89, 67, 79, 78, 89, 77, 72, 89, 67, 77, + 72, 77, 94, 94, 68, 52, 94, 77, 68, 66, 69, 78, 41, 69, 40, 67, 78, 70, 67, 70, 77, 70, 78, 69, 77, 71, 68, 77, 70, 71, 71, 45, 0, 69, 42, 70, 69, 41, 42, 71, 70, 44, 70, 43, 44, 44, + 45, 71, 71, 0, 68, 70, 42, 43, 52, 68, 0, 54, 53, 1, 56, 3, 4, 50, 40, 66, 50, 66, 84, 47, 37, 38, 48, 47, 38, 125, 36, 46, 35, 36, 125, 48, 49, 99, 121, 95, 52, 122, 53, 54, 144, + 46, 126, 100, 48, 99, 62, 84, 61, 123, 54, 55, 94, 73, 72, 85, 84, 62, 113, 90, 91, 141, 56, 4, 6, 141, 4, 124, 55, 56, 17, 150, 16, 17, 135, 150, 16, 136, 15, 16, 150, 136, 15, 151, + 14, 15, 136, 151, 14, 137, 13, 14, 151, 137, 13, 152, 12, 13, 137, 152, 12, 138, 11, 12, 152, 138, 11, 153, 10, 11, 138, 153, 10, 139, 9, 10, 153, 139, 9, 140, 8, 9, 139, 140, 8, + 154, 7, 8, 140, 154, 7, 141, 6, 7, 154, 141, 152, 137, 76, 137, 151, 76, 76, 151, 116, 150, 116, 136, 151, 136, 116, 154, 140, 124, 152, 117, 138, 152, 76, 117, 153, 98, 139, 140, + 139, 124, 139, 98, 124, 154, 56, 141, 154, 124, 56, 98, 153, 117, 116, 150, 93, 153, 138, 117, 150, 135, 93, 98, 123, 124, 124, 123, 55, 117, 97, 98, 98, 97, 123, 76, 118, 117, 117, + 118, 97, 116, 75, 76, 76, 75, 118, 93, 115, 116, 116, 115, 75, 93, 92, 115, 97, 122, 123, 123, 122, 54, 118, 96, 97, 97, 96, 122, 75, 119, 118, 118, 119, 96, 115, 74, 75, 75, 74, + 119, 92, 114, 115, 115, 114, 74, 92, 91, 114, 96, 121, 122, 119, 95, 96, 96, 95, 121, 74, 120, 119, 119, 120, 95, 114, 73, 74, 74, 73, 120, 73, 114, 90, 114, 91, 90, 120, 73, 94, + 120, 94, 95, 58, 57, 113, 25, 131, 24, 24, 146, 23, 24, 131, 146, 23, 132, 22, 23, 146, 132, 22, 147, 21, 22, 132, 147, 20, 133, 148, 20, 21, 133, 21, 147, 133, 20, 148, 19, 19, 134, + 18, 19, 148, 134, 18, 135, 17, 18, 149, 135, 18, 134, 149, 148, 133, 60, 133, 147, 60, 134, 148, 111, 134, 111, 149, 111, 148, 60, 132, 110, 147, 147, 110, 60, 149, 93, 135, 149, + 111, 93, 132, 146, 110, 131, 83, 146, 146, 83, 110, 111, 92, 93, 60, 59, 111, 59, 112, 111, 111, 112, 92, 110, 109, 60, 60, 109, 59, 83, 82, 110, 110, 82, 109, 92, 112, 91, 112, 113, + 91, 59, 58, 112, 112, 58, 113, 109, 108, 59, 59, 108, 58, 82, 81, 109, 109, 81, 108, 58, 108, 57, 81, 80, 108, 34, 144, 33, 126, 46, 101, 33, 126, 32, 33, 144, 126, 32, 127, 31, 32, + 126, 127, 31, 143, 30, 31, 127, 143, 30, 128, 29, 30, 143, 128, 29, 129, 28, 29, 128, 129, 28, 142, 27, 28, 129, 142, 27, 130, 26, 27, 142, 130, 26, 145, 25, 26, 130, 145, 25, 145, + 131, 126, 101, 127, 127, 88, 143, 127, 101, 88, 130, 107, 145, 130, 142, 107, 143, 88, 128, 129, 65, 142, 142, 65, 107, 131, 145, 83, 128, 102, 129, 129, 102, 65, 128, 88, 102, 83, + 145, 107, 107, 106, 83, 83, 106, 82, 65, 64, 107, 107, 64, 106, 102, 103, 65, 65, 103, 64, 88, 87, 102, 102, 87, 103, 101, 100, 88, 88, 100, 87, 106, 105, 82, 82, 105, 81, 64, 63, + 106, 106, 63, 105, 103, 104, 64, 64, 104, 63, 87, 86, 103, 103, 86, 104, 100, 99, 87, 87, 99, 86, 81, 105, 80, 63, 62, 105, 105, 62, 80, 62, 63, 85, 86, 85, 104, 63, 104, 85 + ], + "vertices": [ + 4, 39, 54.66, 14.56, 0.00012, 40, 32.32, 14.56, 0.00054, 41, 9.4, 14.56, 0.12631, 32, 49.18, 30.61, 0.87302, 3, 40, 33.6, 1.37, 0.00019, 41, 10.68, 1.36, 0.19743, 32, 62.26, 32.75, + 0.80237, 3, 40, 36.22, -5.17, 6e-05, 41, 13.3, -5.17, 0.26715, 32, 68.61, 35.79, 0.73278, 3, 40, 43.5, 1.06, 1e-05, 41, 20.58, 1.06, 0.33542, 32, 61.92, 42.65, 0.66457, 3, 40, 45, + -3.4, 1e-05, 41, 22.08, -3.4, 0.40033, 32, 66.27, 44.44, 0.59966, 3, 40, 46.9, -9.05, 0, 41, 23.98, -9.05, 0.45012, 32, 71.79, 46.7, 0.54988, 3, 40, 40.83, -9.07, 0, 41, 17.91, + -9.07, 0.5829, 32, 72.21, 40.65, 0.4171, 3, 40, 38.56, -9.08, 4e-05, 41, 15.64, -9.08, 0.72131, 32, 72.37, 38.38, 0.27865, 3, 40, 36.78, -9.09, 0.00031, 41, 13.86, -9.09, 0.8264, 32, + 72.49, 36.6, 0.17329, 3, 40, 33.93, -9.1, 0.00157, 41, 11, -9.1, 0.90359, 32, 72.69, 33.76, 0.09484, 3, 40, 31.22, -9.11, 0.00537, 41, 8.3, -9.11, 0.94975, 32, 72.87, 31.05, 0.04488, + 3, 40, 28.77, -9.12, 0.01601, 41, 5.85, -9.12, 0.96404, 32, 73.04, 28.61, 0.01996, 3, 40, 26.12, -9.13, 0.03803, 41, 3.2, -9.13, 0.95562, 32, 73.22, 25.97, 0.00635, 3, 40, 23.82, + -9.14, 0.08031, 41, 0.9, -9.14, 0.91597, 32, 73.38, 23.67, 0.00372, 4, 39, 43.47, -9.15, 0, 40, 21.13, -9.15, 0.14592, 41, -1.79, -9.15, 0.85165, 32, 73.57, 20.99, 0.00243, 4, 39, + 40.71, -9.16, 2e-05, 40, 18.37, -9.16, 0.23867, 41, -4.55, -9.16, 0.75671, 32, 73.76, 18.24, 0.0046, 4, 39, 37.66, -9.17, 0.00014, 40, 15.32, -9.17, 0.35275, 41, -7.6, -9.17, + 0.64256, 32, 73.97, 15.19, 0.00455, 4, 39, 35.13, -9.18, 0.00092, 40, 12.8, -9.18, 0.48034, 41, -10.13, -9.18, 0.51198, 32, 74.14, 12.68, 0.00676, 4, 39, 31.91, -9.19, 0.00375, 40, + 9.57, -9.19, 0.61095, 41, -13.35, -9.19, 0.38019, 32, 74.36, 9.46, 0.00512, 4, 39, 28.47, -9.21, 0.01298, 40, 6.13, -9.21, 0.72267, 41, -16.79, -9.21, 0.25841, 32, 74.6, 6.03, + 0.00594, 4, 39, 25.59, -9.22, 0.03422, 40, 3.25, -9.22, 0.80451, 41, -19.67, -9.22, 0.15782, 32, 74.8, 3.15, 0.00345, 4, 39, 22.68, -9.23, 0.07754, 40, 0.34, -9.23, 0.83155, 41, + -22.58, -9.23, 0.08642, 32, 75, 0.25, 0.00449, 4, 39, 19.52, -9.24, 0.14705, 40, -2.82, -9.24, 0.80991, 41, -25.74, -9.24, 0.04032, 32, 75.22, -2.9, 0.00272, 4, 39, 16.15, -9.25, + 0.24563, 40, -6.18, -9.25, 0.73344, 41, -29.11, -9.25, 0.01645, 32, 75.45, -6.26, 0.00448, 4, 39, 13.09, -9.27, 0.36774, 40, -9.24, -9.27, 0.62371, 41, -32.17, -9.27, 0.00512, 32, + 75.66, -9.31, 0.00344, 4, 39, 10.21, -9.28, 0.50372, 40, -12.13, -9.28, 0.49001, 41, -35.05, -9.28, 0.00135, 32, 75.86, -12.19, 0.00491, 4, 39, 7.08, -9.29, 0.64487, 40, -15.26, + -9.29, 0.35177, 41, -38.18, -9.29, 0.00021, 32, 76.08, -15.32, 0.00314, 4, 39, 3.26, -9.3, 0.77, 40, -19.08, -9.3, 0.22651, 41, -42, -9.3, 3e-05, 32, 76.34, -19.12, 0.00346, 4, 39, + -0.32, -9.32, 0.87272, 40, -22.66, -9.32, 0.1254, 41, -45.58, -9.32, 0, 32, 76.59, -22.69, 0.00188, 3, 39, -3.57, -9.33, 0.9351, 40, -25.91, -9.33, 0.0605, 32, 76.81, -25.94, 0.0044, + 3, 39, -7.54, -9.35, 0.96153, 40, -29.88, -9.35, 0.02278, 32, 77.09, -29.9, 0.01569, 3, 39, -9.85, -9.35, 0.93655, 40, -32.19, -9.35, 0.00657, 32, 77.24, -32.21, 0.05688, 3, 39, + -11.87, -9.36, 0.83576, 40, -34.2, -9.36, 0.00151, 32, 77.38, -34.21, 0.16273, 3, 39, -14.74, -9.37, 0.65143, 40, -37.08, -9.37, 0.00023, 32, 77.58, -37.08, 0.34834, 3, 39, -16.89, + -9.38, 0.4382, 40, -39.23, -9.38, 2e-05, 32, 77.73, -39.23, 0.56178, 3, 39, -18.76, -9.39, 0.27507, 40, -41.1, -9.39, 0, 32, 77.86, -41.09, 0.72493, 3, 39, -18.76, -2.89, 0.21414, + 40, -41.1, -2.89, 2e-05, 32, 71.37, -41.51, 0.78584, 3, 39, -18.76, 1.38, 0.19077, 40, -41.1, 1.38, 0.00024, 32, 67.11, -41.79, 0.80899, 3, 39, -18.76, 7.5, 0.1765, 40, -41.1, 7.5, + 0.00116, 32, 61.01, -42.19, 0.82235, 4, 39, -16.28, 11.88, 0.15382, 40, -38.62, 11.88, 0.00307, 41, -61.54, 11.88, 1e-05, 32, 56.48, -40, 0.84309, 4, 39, -11.9, 19.61, 0.11079, 40, + -34.24, 19.61, 0.0029, 41, -57.16, 19.61, 0.00014, 32, 48.48, -36.13, 0.88617, 4, 39, 14.63, 66.47, 0.04584, 40, -7.7, 66.47, 0.00083, 41, -30.63, 66.47, 0.00037, 32, -0.01, -12.7, + 0.95296, 4, 39, 22.29, 66.47, 0.02247, 40, -0.04, 66.47, 0.00083, 41, -22.97, 66.47, 0.00288, 32, -0.51, -5.06, 0.97382, 4, 39, 27.54, 66.47, 0.01007, 40, 5.2, 66.47, 0.00155, 41, + -17.72, 66.47, 0.0104, 32, -0.85, 0.17, 0.97798, 4, 39, 34.04, 66.47, 0.00272, 40, 11.7, 66.47, 0.00045, 41, -11.22, 66.47, 0.02285, 32, -1.28, 6.66, 0.97398, 4, 39, 39.96, 66.47, + 0.00033, 40, 17.62, 66.47, 0.00011, 41, -5.3, 66.47, 0.0498, 32, -1.66, 12.57, 0.94976, 3, 39, -16.24, -2.91, 0.33437, 40, -38.58, -2.91, 0.0002, 32, 71.23, -39, 0.66543, 3, 39, + -14.53, 1.37, 0.32645, 40, -36.87, 1.37, 0.00078, 32, 66.85, -37.57, 0.67277, 4, 39, -12.36, 7.36, 0.307, 40, -34.7, 7.36, 0.00285, 41, -57.62, 7.36, 1e-05, 32, 60.73, -35.79, + 0.69014, 4, 39, -9.97, 11.91, 0.26477, 40, -32.31, 11.91, 0.00971, 41, -55.23, 11.91, 0.00027, 32, 56.04, -33.7, 0.72525, 4, 39, -6.21, 19.66, 0.19881, 40, -28.55, 19.66, 0.00959, + 41, -51.47, 19.66, 0.00132, 32, 48.05, -30.46, 0.79028, 4, 39, 24.46, 19.97, 0.10712, 40, 2.12, 19.97, 0.11704, 41, -20.8, 19.97, 0.11672, 32, 45.75, 0.12, 0.65912, 4, 39, 50.93, + 17.71, 0.00116, 40, 28.6, 17.71, 0.00313, 41, 5.67, 17.71, 0.2148, 32, 46.28, 26.69, 0.7809, 4, 39, 51.29, 1.35, 0.0001, 40, 28.95, 1.35, 0.00083, 41, 6.03, 1.34, 0.29942, 32, 62.59, + 28.12, 0.69965, 3, 40, 31.02, -5.05, 0.00034, 41, 8.1, -5.06, 0.378, 32, 68.84, 30.59, 0.62166, 3, 40, 38.1, 1.08, 0.00022, 41, 15.18, 1.08, 0.45653, 32, 62.25, 37.26, 0.54325, 3, + 40, 39.36, -3.36, 0.00015, 41, 16.43, -3.36, 0.53433, 32, 66.61, 38.8, 0.46552, 4, 39, 23.97, 12.06, 0.12565, 40, 1.63, 12.06, 0.24275, 41, -21.29, 12.06, 0.14114, 32, 53.68, 0.15, + 0.49046, 4, 39, 23.54, 6.58, 0.11007, 40, 1.2, 6.58, 0.47217, 41, -21.72, 6.58, 0.12893, 32, 59.17, 0.08, 0.28883, 4, 39, 23.28, 1.22, 0.10884, 40, 0.94, 1.22, 0.60558, 41, -21.98, + 1.22, 0.12698, 32, 64.53, 0.17, 0.1586, 4, 39, 23.11, -3.14, 0.10666, 40, 0.77, -3.14, 0.70334, 41, -22.15, -3.14, 0.12133, 32, 68.89, 0.28, 0.06866, 4, 39, 6.87, 19.8, 0.29773, 40, + -15.47, 19.8, 0.06022, 41, -38.39, 19.8, 0.01488, 32, 47.07, -17.41, 0.62717, 4, 39, 3.75, 11.97, 0.44072, 40, -18.59, 11.97, 0.09602, 41, -41.51, 11.97, 0.01064, 32, 55.08, -20.02, + 0.45261, 4, 39, 1.91, 7.05, 0.66419, 40, -20.42, 7.05, 0.11803, 41, -43.35, 7.05, 0.002, 32, 60.11, -21.53, 0.21579, 4, 39, 0.03, 1.31, 0.77187, 40, -22.31, 1.31, 0.12352, 41, + -45.23, 1.31, 0.00043, 32, 65.96, -23.04, 0.10418, 4, 39, -1.27, -2.99, 0.84303, 40, -23.61, -2.99, 0.11246, 41, -46.53, -2.99, 0.00018, 32, 70.34, -24.05, 0.04432, 4, 39, -1.8, + 26.91, 0.12744, 40, -24.14, 26.91, 0.00959, 41, -47.06, 26.91, 0.0076, 32, 40.54, -26.53, 0.85537, 4, 39, 24.96, 27.56, 0.0719, 40, 2.62, 27.56, 0.03639, 41, -20.3, 27.56, 0.07572, + 32, 38.14, 0.13, 0.81598, 4, 39, 50.76, 27.7, 0.00702, 40, 28.42, 27.7, 0.00523, 41, 5.5, 27.7, 0.131, 32, 36.32, 25.87, 0.85675, 4, 39, 3.83, 36.15, 0.04791, 40, -18.51, 36.15, + 0.00352, 41, -41.43, 36.15, 0.00803, 32, 30.95, -21.51, 0.94054, 4, 39, 25.65, 37.95, 0.02662, 40, 3.31, 37.95, 0.00775, 41, -19.61, 37.95, 0.02767, 32, 27.73, 0.14, 0.93795, 4, 39, + 46.64, 37.25, 0.00753, 40, 24.3, 37.25, 0.00227, 41, 1.38, 37.25, 0.04846, 32, 27.06, 21.14, 0.94174, 4, 39, 41.75, 20.15, 0.01306, 40, 19.41, 20.15, 0.04509, 41, -3.51, 20.15, + 0.32134, 32, 44.45, 17.37, 0.62052, 4, 39, 34.16, 9.18, 0.00895, 40, 11.83, 9.18, 0.07841, 41, -11.1, 9.17, 0.49568, 32, 55.89, 10.51, 0.41696, 4, 39, 35.26, 3.16, 0.0015, 40, 12.93, + 3.16, 0.09572, 41, -10, 3.16, 0.67014, 32, 61.82, 12, 0.23264, 4, 39, 45.08, 1.14, 0.00025, 40, 22.74, 1.14, 0.108, 41, -0.18, 1.14, 0.76841, 32, 63.2, 21.93, 0.12334, 4, 39, 45.58, + -3.27, 0.0001, 40, 23.24, -3.27, 0.10937, 41, 0.32, -3.27, 0.83473, 32, 67.56, 22.71, 0.0558, 4, 39, 40.33, 27.64, 0.02381, 40, 18, 27.64, 0.02132, 41, -4.93, 27.64, 0.16866, 32, + 37.06, 15.47, 0.78621, 4, 39, 9.71, 27.19, 0.16236, 40, -12.63, 27.19, 0.02827, 41, -35.55, 27.19, 0.02548, 32, 39.51, -15.06, 0.78388, 4, 39, 15.01, 19.88, 0.23124, 40, -7.33, + 19.88, 0.11759, 41, -30.25, 19.88, 0.04679, 32, 46.46, -9.29, 0.60438, 4, 39, 13.78, 12.01, 0.29354, 40, -8.56, 12.01, 0.19873, 41, -31.48, 12.01, 0.04427, 32, 54.39, -10.01, + 0.46346, 4, 39, 12.95, 6.81, 0.37869, 40, -9.39, 6.81, 0.34588, 41, -32.31, 6.81, 0.01968, 32, 59.63, -10.5, 0.25575, 4, 39, 11.95, 1.27, 0.42861, 40, -10.39, 1.27, 0.42317, 41, + -33.31, 1.27, 0.01297, 32, 65.23, -11.14, 0.13524, 4, 39, 11.29, -3.07, 0.46725, 40, -11.05, -3.07, 0.46538, 41, -33.97, -3.07, 0.0097, 32, 69.59, -11.51, 0.05768, 4, 39, -0.59, + 19.72, 0.32338, 40, -22.92, 19.72, 0.02881, 41, -45.85, 19.72, 0.003, 32, 47.63, -24.85, 0.64481, 4, 39, -3.82, 11.93, 0.4391, 40, -26.16, 11.93, 0.03345, 41, -49.08, 11.93, 0.00177, + 32, 55.61, -27.57, 0.52567, 4, 39, -5.89, 7.22, 0.65491, 40, -28.23, 7.22, 0.02015, 41, -51.15, 7.22, 0.00017, 32, 60.45, -29.33, 0.32476, 4, 39, -8.13, 1.34, 0.75275, 40, -30.47, + 1.34, 0.01396, 41, -53.39, 1.34, 1e-05, 32, 66.46, -31.18, 0.23328, 3, 39, -9.63, -2.94, 0.80478, 40, -31.96, -2.94, 0.00944, 32, 70.83, -32.39, 0.18578, 4, 39, 33.3, 20.06, 0.04166, + 40, 10.96, 20.06, 0.10286, 41, -11.96, 20.06, 0.24857, 32, 45.08, 8.94, 0.60691, 4, 39, 33.97, 12.1, 0.03817, 40, 11.63, 12.1, 0.17811, 41, -11.29, 12.1, 0.32257, 32, 52.98, 10.13, + 0.46115, 4, 39, 34.3, 6.34, 0.01531, 40, 11.97, 6.34, 0.31162, 41, -10.96, 6.34, 0.40881, 32, 58.71, 10.84, 0.26426, 4, 39, 34.72, 1.18, 0.00955, 40, 12.39, 1.18, 0.39036, 41, + -10.54, 1.18, 0.4561, 32, 63.83, 11.59, 0.14399, 4, 39, 34.8, -3.2, 0.00731, 40, 12.46, -3.2, 0.44195, 41, -10.46, -3.2, 0.48699, 32, 68.2, 11.96, 0.06375, 4, 39, 44.94, 17.01, + 0.00241, 40, 22.6, 17.01, 0.01421, 41, -0.32, 17.01, 0.36275, 32, 47.37, 20.75, 0.62063, 4, 39, 44.82, 1.32, 0.00034, 40, 22.48, 1.32, 0.01068, 41, -0.44, 1.31, 0.5453, 32, 63.04, + 21.66, 0.44368, 4, 39, 52.52, 5.95, 2e-05, 40, 30.19, 5.95, 0.00999, 41, 7.26, 5.95, 0.66888, 32, 57.92, 29.04, 0.32111, 3, 40, 31.52, 1.11, 0.01011, 41, 8.6, 1.11, 0.76268, 32, + 62.66, 30.7, 0.22721, 3, 40, 32.61, -3.32, 0.00863, 41, 9.68, -3.32, 0.83296, 32, 67.01, 32.06, 0.15841, 4, 39, -9.21, 7.29, 0.52586, 40, -31.55, 7.29, 0.0057, 41, -54.47, 7.29, + 1e-05, 32, 60.59, -32.65, 0.46842, 3, 39, -11.3, 1.36, 0.56698, 40, -33.64, 1.36, 0.00311, 32, 66.65, -34.34, 0.42991, 3, 39, -12.66, -2.93, 0.60013, 40, -35, -2.93, 0.00167, 32, + 71.01, -35.42, 0.39821, 4, 39, -5.46, -2.97, 0.89102, 40, -27.8, -2.97, 0.03888, 41, -50.72, -2.97, 1e-05, 32, 70.59, -28.24, 0.07008, 4, 39, -4.18, 1.33, 0.83362, 40, -26.52, 1.33, + 0.04645, 41, -49.44, 1.33, 3e-05, 32, 66.21, -27.24, 0.1199, 4, 39, -2.26, 7.14, 0.75973, 40, -24.6, 7.14, 0.05134, 41, -47.52, 7.14, 0.00026, 32, 60.29, -25.7, 0.18867, 4, 39, 7.35, + 6.93, 0.57235, 40, -14.98, 6.93, 0.23863, 41, -37.91, 6.93, 0.00435, 32, 59.87, -16.09, 0.18467, 4, 39, 5.9, 1.29, 0.63011, 40, -16.44, 1.29, 0.25936, 41, -39.36, 1.29, 0.00243, 32, + 65.6, -17.18, 0.1081, 4, 39, 4.86, -3.03, 0.68809, 40, -17.48, -3.03, 0.26358, 41, -40.4, -3.03, 0.00168, 32, 69.98, -17.93, 0.04665, 4, 39, 17.76, 6.7, 0.22941, 40, -4.58, 6.7, + 0.4879, 41, -27.5, 6.7, 0.05094, 32, 59.42, -5.7, 0.23175, 4, 39, 17.11, 1.25, 0.24296, 40, -5.23, 1.25, 0.56856, 41, -28.15, 1.25, 0.04581, 32, 64.91, -5.99, 0.14267, 4, 39, 16.71, + -3.1, 0.25552, 40, -5.62, -3.1, 0.64168, 41, -28.55, -3.1, 0.03992, 32, 69.27, -6.1, 0.06288, 4, 39, 28.55, -3.17, 0.03276, 40, 6.22, -3.17, 0.62363, 41, -16.71, -3.17, 0.27658, 32, + 68.57, 5.72, 0.06703, 4, 39, 28.55, 1.2, 0.0367, 40, 6.21, 1.21, 0.54514, 41, -16.71, 1.21, 0.26974, 32, 64.21, 5.43, 0.14843, 4, 39, 28.71, 6.47, 0.04075, 40, 6.37, 6.47, 0.46337, + 41, -16.55, 6.47, 0.25797, 32, 58.95, 5.25, 0.23791, 4, 39, 39.28, 6.23, 0.00305, 40, 16.94, 6.24, 0.20572, 41, -5.98, 6.24, 0.59307, 32, 58.49, 15.81, 0.19817, 4, 39, 39.51, 1.16, + 0.00156, 40, 17.17, 1.16, 0.23228, 41, -5.75, 1.16, 0.64631, 32, 63.54, 16.37, 0.11984, 4, 39, 40.07, -3.24, 0.00112, 40, 17.74, -3.24, 0.25061, 41, -5.19, -3.24, 0.69415, 32, 67.89, + 17.22, 0.05412, 4, 39, 50.23, -3.29, 0, 40, 27.89, -3.29, 0.036, 41, 4.97, -3.29, 0.88144, 32, 67.29, 27.36, 0.08255, 4, 39, 49.51, 1.13, 2e-05, 40, 27.17, 1.13, 0.03826, 41, 4.25, + 1.13, 0.81357, 32, 62.92, 26.35, 0.14816, 4, 39, 48.55, 6.03, 0.00027, 40, 26.22, 6.03, 0.03577, 41, 3.29, 6.03, 0.72045, 32, 58.09, 25.08, 0.24351, 4, 39, 41.39, 1.3, 0.00156, 40, + 19.05, 1.3, 0.03311, 41, -3.87, 1.3, 0.61234, 32, 63.28, 18.23, 0.35299, 4, 39, 48.27, 1.33, 1e-05, 40, 25.93, 1.33, 0.00266, 41, 3.01, 1.33, 0.47035, 32, 62.8, 25.1, 0.52698, 3, 40, + 33.02, 5.88, 0.00213, 41, 10.1, 5.88, 0.54797, 32, 57.79, 31.88, 0.4499, 3, 40, 34.54, 1.1, 0.0018, 41, 11.62, 1.1, 0.63247, 32, 62.47, 33.7, 0.36573, 3, 40, 35.58, -3.34, 0.00152, + 41, 12.66, -3.34, 0.71351, 32, 66.83, 35.03, 0.28497, 3, 39, -17.72, -6.71, 0.31251, 40, -40.05, -6.71, 1e-05, 32, 75.11, -40.22, 0.68748, 3, 39, -13.83, -6.56, 0.64755, 40, -36.17, + -6.56, 0.00038, 32, 74.72, -36.36, 0.35207, 3, 39, -10.89, -6.57, 0.83546, 40, -33.23, -6.57, 0.00245, 32, 74.53, -33.42, 0.1621, 3, 39, -6.58, -6.39, 0.9505, 40, -28.91, -6.39, + 0.02598, 32, 74.07, -29.13, 0.02352, 4, 39, -2.51, -6.41, 0.9185, 40, -24.85, -6.41, 0.06986, 41, -47.77, -6.41, 1e-05, 32, 73.83, -25.07, 0.01163, 4, 39, 3.97, -6.54, 0.7539, 40, + -18.37, -6.54, 0.23416, 41, -41.29, -6.54, 0.00019, 32, 73.54, -18.6, 0.01175, 4, 39, 10.73, -6.3, 0.4945, 40, -11.61, -6.29, 0.48778, 41, -34.53, -6.29, 0.00242, 32, 72.85, -11.87, + 0.01529, 4, 39, 16.42, -6.31, 0.24467, 40, -5.92, -6.31, 0.71967, 41, -28.84, -6.31, 0.01969, 32, 72.5, -6.18, 0.01597, 4, 39, 22.88, -6.46, 0.08074, 40, 0.54, -6.46, 0.81091, 41, + -22.38, -6.46, 0.09131, 32, 72.22, 0.27, 0.01704, 4, 39, 28.51, -6.42, 0.01543, 40, 6.17, -6.42, 0.70591, 41, -16.75, -6.42, 0.26031, 32, 71.82, 5.89, 0.01836, 4, 39, 34.97, -6.29, + 0.00164, 40, 12.64, -6.29, 0.47309, 41, -10.29, -6.29, 0.50689, 32, 71.27, 12.33, 0.01837, 4, 39, 40.42, -6.47, 0.0001, 40, 18.08, -6.47, 0.23958, 41, -4.84, -6.47, 0.7461, 32, 71.1, + 17.78, 0.01421, 4, 39, 45.89, -6.5, 0, 40, 23.56, -6.5, 0.08431, 41, 0.63, -6.5, 0.9025, 32, 70.76, 23.24, 0.01319, 3, 40, 28.36, -6.37, 0.01867, 41, 5.43, -6.37, 0.94991, 32, 70.33, + 28.02, 0.03142, 3, 40, 33.31, -6.41, 0.00244, 41, 10.39, -6.41, 0.88788, 32, 70.05, 32.97, 0.10968, 3, 40, 36.23, -6.46, 0.00046, 41, 13.31, -6.46, 0.80558, 32, 69.91, 35.88, + 0.19395, 3, 40, 40.12, -6.31, 1e-05, 41, 17.2, -6.31, 0.61334, 32, 69.5, 39.76, 0.38665, 4, 39, 0.4, -6.47, 0.86555, 40, -21.94, -6.47, 0.12959, 41, -44.86, -6.47, 1e-05, 32, 73.7, + -22.16, 0.00485, 3, 39, -9.01, -6.49, 0.93616, 40, -31.35, -6.49, 0.00716, 32, 74.33, -31.55, 0.05668, 3, 39, -16.19, -6.65, 0.44814, 40, -38.53, -6.65, 3e-05, 32, 74.96, -38.7, + 0.55184, 4, 39, 7.48, -6.41, 0.63866, 40, -14.86, -6.41, 0.354, 41, -37.78, -6.41, 0.00037, 32, 73.18, -15.1, 0.00698, 4, 39, 13.4, -6.3, 0.36468, 40, -8.94, -6.3, 0.62161, 41, + -31.86, -6.3, 0.00581, 32, 72.69, -9.2, 0.0079, 4, 39, 19.68, -6.38, 0.14684, 40, -2.65, -6.38, 0.80383, 41, -25.58, -6.38, 0.04176, 32, 72.36, -2.92, 0.00757, 4, 39, 25.54, -6.44, + 0.03499, 40, 3.2, -6.44, 0.79745, 41, -19.72, -6.44, 0.15898, 32, 72.03, 2.92, 0.00858, 4, 39, 31.96, -6.35, 0.00417, 40, 9.62, -6.35, 0.60634, 41, -13.3, -6.35, 0.37927, 32, 71.53, + 9.32, 0.01022, 4, 39, 37.62, -6.38, 0.00021, 40, 15.28, -6.38, 0.35157, 41, -7.64, -6.38, 0.63918, 32, 71.18, 14.97, 0.00904, 4, 39, 43.32, -6.48, 1e-05, 40, 20.98, -6.48, 0.14688, + 41, -1.94, -6.48, 0.84692, 32, 70.92, 20.67, 0.00619, 3, 40, 25.81, -6.44, 0.03919, 41, 2.89, -6.44, 0.95006, 32, 70.56, 25.48, 0.01074, 3, 40, 30.92, -6.39, 0.00591, 41, 7.99, + -6.39, 0.9433, 32, 70.18, 30.58, 0.05079, 3, 40, 38.04, -6.39, 5e-05, 41, 15.12, -6.39, 0.72615, 32, 69.72, 37.69, 0.2738 ], "hull": 46, "edges": [ @@ -12990,9 +27936,11 @@ 264, 294, 294, 266, 42, 44, 44, 46, 294, 44, 266, 296, 296, 268, 38, 40, 40, 42, 296, 40, 268, 298, 298, 270, 34, 36, 36, 38, 298, 36, 270, 300, 300, 272, 30, 32, 32, 34, 300, 32, 272, 302, 302, 274, 26, 28, 28, 30, 302, 28, 274, 304, 304, 276, 22, 24, 24, 26, 304, 24, 276, 306, 306, 278, 18, 20, 20, 22, 306, 20, 280, 308, 308, 282, 12, 14, 14, 16, 308, 14 ], - "width": 88, - "height": 80, - "path": "summer-as.ear-left-bubble" + "width": 87.05882352941177, + "height": 80.0, + "path": "summer-as-lv2.ear-left-bubble", + "x": 0.470588235294116, + "y": 0.0 } }, "ear-left-bubble-02": { @@ -13038,8 +27986,8 @@ 142, 27, 29, 128, 129, 29, 129, 28, 30, 143, 128, 30, 128, 29, 31, 127, 143, 31, 143, 30, 32, 126, 127, 32, 127, 31, 33, 144, 126, 33, 126, 32, 126, 46, 101, 34, 144, 33 ], "vertices": [ - 4, 47, 58.43, 20.31, 0.00012, 48, 36.09, 20.31, 0.00054, 49, 13.17, 20.31, 0.12631, 46, 43.2, 34, 0.87302, 3, 48, 39.33, 12.22, 0.00019, 49, 16.41, 12.22, 0.19743, 46, 51.06, 37.76, - 0.80237, 3, 48, 41.94, 5.69, 6e-05, 49, 19.02, 5.69, 0.26715, 46, 57.41, 40.79, 0.73278, 3, 48, 43.5, 1.06, 1e-05, 49, 20.58, 1.06, 0.33542, 46, 61.92, 42.65, 0.66457, 3, 48, 45, + 4, 47, 56.13, 15.19, 0.00012, 48, 33.79, 15.19, 0.00054, 49, 10.87, 15.18, 0.12631, 46, 48.46, 32.04, 0.87302, 3, 48, 31.45, 5.34, 0.00019, 49, 8.53, 5.32, 0.19743, 46, 58.45, 30.35, + 0.80237, 3, 48, 32.57, -2.1, 6e-05, 49, 9.65, -2.11, 0.26715, 46, 65.8, 31.95, 0.73278, 3, 48, 43.5, 1.06, 1e-05, 49, 20.58, 1.06, 0.33542, 46, 61.92, 42.65, 0.66457, 3, 48, 45, -3.4, 1e-05, 49, 22.08, -3.4, 0.40033, 46, 66.27, 44.44, 0.59966, 3, 48, 46.9, -9.05, 0, 49, 23.98, -9.05, 0.45012, 46, 71.79, 46.7, 0.54988, 3, 48, 40.83, -9.07, 0, 49, 17.91, -9.07, 0.5829, 46, 72.21, 40.65, 0.4171, 3, 48, 38.56, -9.08, 4e-05, 49, 15.64, -9.08, 0.72131, 46, 72.37, 38.38, 0.27865, 3, 48, 36.78, -9.09, 0.00031, 49, 13.86, -9.09, 0.8264, 46, 72.49, 36.6, 0.17329, 3, 48, 33.93, -9.1, 0.00157, 49, 11, -9.1, 0.90359, 46, 72.69, 33.76, 0.09484, 3, 48, 31.22, -9.11, 0.00537, 49, 8.3, -9.11, 0.94975, 46, 72.87, 31.05, 0.04488, @@ -13065,67 +28013,66 @@ 0.00033, 48, 17.62, 66.47, 0.00011, 49, -5.3, 66.47, 0.0498, 46, -1.66, 12.57, 0.94976, 3, 47, -16.24, -2.91, 0.33437, 48, -38.58, -2.91, 0.0002, 46, 71.23, -39, 0.66543, 3, 47, -14.53, 1.37, 0.32645, 48, -36.87, 1.37, 0.00078, 46, 66.85, -37.57, 0.67277, 4, 47, -12.36, 7.36, 0.307, 48, -34.7, 7.36, 0.00285, 49, -57.62, 7.36, 1e-05, 46, 60.73, -35.79, 0.69014, 4, 47, -9.97, 11.91, 0.26477, 48, -32.31, 11.91, 0.00971, 49, -55.23, 11.91, 0.00027, 46, 56.04, -33.7, 0.72525, 4, 47, -6.21, 19.66, 0.19881, 48, -28.55, 19.66, 0.00959, - 49, -51.47, 19.66, 0.00132, 46, 48.05, -30.46, 0.79028, 4, 47, 24.46, 19.97, 0.10712, 48, 2.12, 19.97, 0.11704, 49, -20.8, 19.97, 0.11672, 46, 45.75, 0.12, 0.65912, 4, 47, 53.97, - 20.27, 0.00116, 48, 31.63, 20.27, 0.00313, 49, 8.71, 20.27, 0.2148, 46, 43.53, 29.55, 0.7809, 4, 47, 57.02, 12.2, 0.0001, 48, 34.68, 12.2, 0.00083, 49, 11.76, 12.2, 0.29942, 46, - 51.38, 33.12, 0.69965, 3, 48, 36.75, 5.8, 0.00034, 49, 13.82, 5.8, 0.378, 46, 57.63, 35.6, 0.62166, 3, 48, 38.1, 1.08, 0.00022, 49, 15.18, 1.08, 0.45653, 46, 62.25, 37.26, 0.54325, - 3, 48, 39.36, -3.36, 0.00015, 49, 16.43, -3.36, 0.53433, 46, 66.61, 38.8, 0.46552, 4, 47, 23.97, 12.06, 0.12565, 48, 1.63, 12.06, 0.24275, 49, -21.29, 12.06, 0.14114, 46, 53.68, - 0.15, 0.49046, 4, 47, 23.54, 6.58, 0.11007, 48, 1.2, 6.58, 0.47217, 49, -21.72, 6.58, 0.12893, 46, 59.17, 0.08, 0.28883, 4, 47, 23.28, 1.22, 0.10884, 48, 0.94, 1.22, 0.60558, 49, - -21.98, 1.22, 0.12698, 46, 64.53, 0.17, 0.1586, 4, 47, 23.11, -3.14, 0.10666, 48, 0.77, -3.14, 0.70334, 49, -22.15, -3.14, 0.12133, 46, 68.89, 0.28, 0.06866, 4, 47, 6.87, 19.8, - 0.29773, 48, -15.47, 19.8, 0.06022, 49, -38.39, 19.8, 0.01488, 46, 47.07, -17.41, 0.62717, 4, 47, 3.75, 11.97, 0.44072, 48, -18.59, 11.97, 0.09602, 49, -41.51, 11.97, 0.01064, 46, - 55.08, -20.02, 0.45261, 4, 47, 1.91, 7.05, 0.66419, 48, -20.42, 7.05, 0.11803, 49, -43.35, 7.05, 0.002, 46, 60.11, -21.53, 0.21579, 4, 47, 0.03, 1.31, 0.77187, 48, -22.31, 1.31, - 0.12352, 49, -45.23, 1.31, 0.00043, 46, 65.96, -23.04, 0.10418, 4, 47, -1.27, -2.99, 0.84303, 48, -23.61, -2.99, 0.11246, 49, -46.53, -2.99, 0.00018, 46, 70.34, -24.05, 0.04432, 4, - 47, -1.8, 26.91, 0.12744, 48, -24.14, 26.91, 0.00959, 49, -47.06, 26.91, 0.0076, 46, 40.54, -26.53, 0.85537, 4, 47, 24.96, 27.56, 0.0719, 48, 2.62, 27.56, 0.03639, 49, -20.3, 27.56, - 0.07572, 46, 38.14, 0.13, 0.81598, 4, 47, 50.76, 27.7, 0.00702, 48, 28.42, 27.7, 0.00523, 49, 5.5, 27.7, 0.131, 46, 36.32, 25.87, 0.85675, 4, 47, 3.83, 36.15, 0.04791, 48, -18.51, - 36.15, 0.00352, 49, -41.43, 36.15, 0.00803, 46, 30.95, -21.51, 0.94054, 4, 47, 25.65, 37.95, 0.02662, 48, 3.31, 37.95, 0.00775, 49, -19.61, 37.95, 0.02767, 46, 27.73, 0.14, 0.93795, - 4, 47, 46.64, 37.25, 0.00753, 48, 24.3, 37.25, 0.00227, 49, 1.38, 37.25, 0.04846, 46, 27.06, 21.14, 0.94174, 4, 47, 41.75, 20.15, 0.01306, 48, 19.41, 20.15, 0.04509, 49, -3.51, - 20.15, 0.32134, 46, 44.45, 17.37, 0.62052, 4, 47, 43.25, 12.14, 0.00895, 48, 20.91, 12.14, 0.07841, 49, -2.01, 12.14, 0.49568, 46, 52.34, 19.39, 0.41696, 4, 47, 44.35, 6.12, 0.0015, - 48, 22.01, 6.12, 0.09572, 49, -0.91, 6.12, 0.67014, 46, 58.27, 20.88, 0.23264, 4, 47, 45.08, 1.14, 0.00025, 48, 22.74, 1.14, 0.108, 49, -0.18, 1.14, 0.76841, 46, 63.2, 21.93, - 0.12334, 4, 47, 45.58, -3.27, 0.0001, 48, 23.24, -3.27, 0.10937, 49, 0.32, -3.27, 0.83473, 46, 67.56, 22.71, 0.0558, 4, 47, 40.33, 27.64, 0.02381, 48, 18, 27.64, 0.02132, 49, -4.93, - 27.64, 0.16866, 46, 37.06, 15.47, 0.78621, 4, 47, 9.71, 27.19, 0.16236, 48, -12.63, 27.19, 0.02827, 49, -35.55, 27.19, 0.02548, 46, 39.51, -15.06, 0.78388, 4, 47, 15.01, 19.88, - 0.23124, 48, -7.33, 19.88, 0.11759, 49, -30.25, 19.88, 0.04679, 46, 46.46, -9.29, 0.60438, 4, 47, 13.78, 12.01, 0.29354, 48, -8.56, 12.01, 0.19873, 49, -31.48, 12.01, 0.04427, 46, - 54.39, -10.01, 0.46346, 4, 47, 12.95, 6.81, 0.37869, 48, -9.39, 6.81, 0.34588, 49, -32.31, 6.81, 0.01968, 46, 59.63, -10.5, 0.25575, 4, 47, 11.95, 1.27, 0.42861, 48, -10.39, 1.27, - 0.42317, 49, -33.31, 1.27, 0.01297, 46, 65.23, -11.14, 0.13524, 4, 47, 11.29, -3.07, 0.46725, 48, -11.05, -3.07, 0.46538, 49, -33.97, -3.07, 0.0097, 46, 69.59, -11.51, 0.05768, 4, - 47, -0.59, 19.72, 0.32338, 48, -22.92, 19.72, 0.02881, 49, -45.85, 19.72, 0.003, 46, 47.63, -24.85, 0.64481, 4, 47, -3.82, 11.93, 0.4391, 48, -26.16, 11.93, 0.03345, 49, -49.08, - 11.93, 0.00177, 46, 55.61, -27.57, 0.52567, 4, 47, -5.89, 7.22, 0.65491, 48, -28.23, 7.22, 0.02015, 49, -51.15, 7.22, 0.00017, 46, 60.45, -29.33, 0.32476, 4, 47, -8.13, 1.34, - 0.75275, 48, -30.47, 1.34, 0.01396, 49, -53.39, 1.34, 1e-05, 46, 66.46, -31.18, 0.23328, 3, 47, -9.63, -2.94, 0.80478, 48, -31.96, -2.94, 0.00944, 46, 70.83, -32.39, 0.18578, 4, 47, - 33.3, 20.06, 0.04166, 48, 10.96, 20.06, 0.10286, 49, -11.96, 20.06, 0.24857, 46, 45.08, 8.94, 0.60691, 4, 47, 33.97, 12.1, 0.03817, 48, 11.63, 12.1, 0.17811, 49, -11.29, 12.1, - 0.32257, 46, 52.98, 10.13, 0.46115, 4, 47, 34.3, 6.34, 0.01531, 48, 11.97, 6.34, 0.31162, 49, -10.96, 6.34, 0.40881, 46, 58.71, 10.84, 0.26426, 4, 47, 34.72, 1.18, 0.00955, 48, - 12.39, 1.18, 0.39036, 49, -10.54, 1.18, 0.4561, 46, 63.83, 11.59, 0.14399, 4, 47, 34.8, -3.2, 0.00731, 48, 12.46, -3.2, 0.44195, 49, -10.46, -3.2, 0.48699, 46, 68.2, 11.96, 0.06375, - 4, 47, 48.21, 20.21, 0.00241, 48, 25.88, 20.21, 0.01421, 49, 2.95, 20.21, 0.36275, 46, 43.96, 23.82, 0.62063, 4, 47, 50.54, 12.17, 0.00034, 48, 28.2, 12.17, 0.01068, 49, 5.28, 12.17, - 0.5453, 46, 51.83, 26.66, 0.44368, 4, 47, 52.52, 5.95, 2e-05, 48, 30.19, 5.95, 0.00999, 49, 7.26, 5.95, 0.66888, 46, 57.92, 29.04, 0.32111, 3, 48, 31.52, 1.11, 0.01011, 49, 8.6, - 1.11, 0.76268, 46, 62.66, 30.7, 0.22721, 3, 48, 32.61, -3.32, 0.00863, 49, 9.68, -3.32, 0.83296, 46, 67.01, 32.06, 0.15841, 4, 47, -9.21, 7.29, 0.52586, 48, -31.55, 7.29, 0.0057, 49, - -54.47, 7.29, 1e-05, 46, 60.59, -32.65, 0.46842, 3, 47, -11.3, 1.36, 0.56698, 48, -33.64, 1.36, 0.00311, 46, 66.65, -34.34, 0.42991, 3, 47, -12.66, -2.93, 0.60013, 48, -35, -2.93, - 0.00167, 46, 71.01, -35.42, 0.39821, 4, 47, -5.46, -2.97, 0.89102, 48, -27.8, -2.97, 0.03888, 49, -50.72, -2.97, 1e-05, 46, 70.59, -28.24, 0.07008, 4, 47, -4.18, 1.33, 0.83362, 48, - -26.52, 1.33, 0.04645, 49, -49.44, 1.33, 3e-05, 46, 66.21, -27.24, 0.1199, 4, 47, -2.26, 7.14, 0.75973, 48, -24.6, 7.14, 0.05134, 49, -47.52, 7.14, 0.00026, 46, 60.29, -25.7, - 0.18867, 4, 47, 7.35, 6.93, 0.57235, 48, -14.98, 6.93, 0.23863, 49, -37.91, 6.93, 0.00435, 46, 59.87, -16.09, 0.18467, 4, 47, 5.9, 1.29, 0.63011, 48, -16.44, 1.29, 0.25936, 49, - -39.36, 1.29, 0.00243, 46, 65.6, -17.18, 0.1081, 4, 47, 4.86, -3.03, 0.68809, 48, -17.48, -3.03, 0.26358, 49, -40.4, -3.03, 0.00168, 46, 69.98, -17.93, 0.04665, 4, 47, 17.76, 6.7, - 0.22941, 48, -4.58, 6.7, 0.4879, 49, -27.5, 6.7, 0.05094, 46, 59.42, -5.7, 0.23175, 4, 47, 17.11, 1.25, 0.24296, 48, -5.23, 1.25, 0.56856, 49, -28.15, 1.25, 0.04581, 46, 64.91, - -5.99, 0.14267, 4, 47, 16.71, -3.1, 0.25552, 48, -5.62, -3.1, 0.64168, 49, -28.55, -3.1, 0.03992, 46, 69.27, -6.1, 0.06288, 4, 47, 28.55, -3.17, 0.03276, 48, 6.22, -3.17, 0.62363, - 49, -16.71, -3.17, 0.27658, 46, 68.57, 5.72, 0.06703, 4, 47, 28.55, 1.2, 0.0367, 48, 6.21, 1.21, 0.54514, 49, -16.71, 1.21, 0.26974, 46, 64.21, 5.43, 0.14843, 4, 47, 28.71, 6.47, - 0.04075, 48, 6.37, 6.47, 0.46337, 49, -16.55, 6.47, 0.25797, 46, 58.95, 5.25, 0.23791, 4, 47, 39.28, 6.23, 0.00305, 48, 16.94, 6.24, 0.20572, 49, -5.98, 6.24, 0.59307, 46, 58.49, - 15.81, 0.19817, 4, 47, 39.51, 1.16, 0.00156, 48, 17.17, 1.16, 0.23228, 49, -5.75, 1.16, 0.64631, 46, 63.54, 16.37, 0.11984, 4, 47, 40.07, -3.24, 0.00112, 48, 17.74, -3.24, 0.25061, - 49, -5.19, -3.24, 0.69415, 46, 67.89, 17.22, 0.05412, 4, 47, 50.23, -3.29, 0, 48, 27.89, -3.29, 0.036, 49, 4.97, -3.29, 0.88144, 46, 67.29, 27.36, 0.08255, 4, 47, 49.51, 1.13, 2e-05, - 48, 27.17, 1.13, 0.03826, 49, 4.25, 1.13, 0.81357, 46, 62.92, 26.35, 0.14816, 4, 47, 48.55, 6.03, 0.00027, 48, 26.22, 6.03, 0.03577, 49, 3.29, 6.03, 0.72045, 46, 58.09, 25.08, - 0.24351, 4, 47, 47.11, 12.16, 0.00156, 48, 24.77, 12.16, 0.03311, 49, 1.85, 12.16, 0.61234, 46, 52.07, 23.24, 0.35299, 4, 47, 53.99, 12.19, 1e-05, 48, 31.66, 12.19, 0.00266, 49, - 8.73, 12.19, 0.47035, 46, 51.59, 30.11, 0.52698, 3, 48, 33.02, 5.88, 0.00213, 49, 10.1, 5.88, 0.54797, 46, 57.79, 31.88, 0.4499, 3, 48, 34.54, 1.1, 0.0018, 49, 11.62, 1.1, 0.63247, - 46, 62.47, 33.7, 0.36573, 3, 48, 35.58, -3.34, 0.00152, 49, 12.66, -3.34, 0.71351, 46, 66.83, 35.03, 0.28497, 3, 47, -17.72, -6.71, 0.31251, 48, -40.05, -6.71, 1e-05, 46, 75.11, - -40.22, 0.68748, 3, 47, -13.83, -6.56, 0.64755, 48, -36.17, -6.56, 0.00038, 46, 74.72, -36.36, 0.35207, 3, 47, -10.89, -6.57, 0.83546, 48, -33.23, -6.57, 0.00245, 46, 74.53, -33.42, - 0.1621, 3, 47, -6.58, -6.39, 0.9505, 48, -28.91, -6.39, 0.02598, 46, 74.07, -29.13, 0.02352, 4, 47, -2.51, -6.41, 0.9185, 48, -24.85, -6.41, 0.06986, 49, -47.77, -6.41, 1e-05, 46, - 73.83, -25.07, 0.01163, 4, 47, 3.97, -6.54, 0.7539, 48, -18.37, -6.54, 0.23416, 49, -41.29, -6.54, 0.00019, 46, 73.54, -18.6, 0.01175, 4, 47, 10.73, -6.3, 0.4945, 48, -11.61, -6.29, - 0.48778, 49, -34.53, -6.29, 0.00242, 46, 72.85, -11.87, 0.01529, 4, 47, 16.42, -6.31, 0.24467, 48, -5.92, -6.31, 0.71967, 49, -28.84, -6.31, 0.01969, 46, 72.5, -6.18, 0.01597, 4, 47, - 22.88, -6.46, 0.08074, 48, 0.54, -6.46, 0.81091, 49, -22.38, -6.46, 0.09131, 46, 72.22, 0.27, 0.01704, 4, 47, 28.51, -6.42, 0.01543, 48, 6.17, -6.42, 0.70591, 49, -16.75, -6.42, - 0.26031, 46, 71.82, 5.89, 0.01836, 4, 47, 34.97, -6.29, 0.00164, 48, 12.64, -6.29, 0.47309, 49, -10.29, -6.29, 0.50689, 46, 71.27, 12.33, 0.01837, 4, 47, 40.42, -6.47, 0.0001, 48, - 18.08, -6.47, 0.23958, 49, -4.84, -6.47, 0.7461, 46, 71.1, 17.78, 0.01421, 4, 47, 45.89, -6.5, 0, 48, 23.56, -6.5, 0.08431, 49, 0.63, -6.5, 0.9025, 46, 70.76, 23.24, 0.01319, 3, 48, - 28.36, -6.37, 0.01867, 49, 5.43, -6.37, 0.94991, 46, 70.33, 28.02, 0.03142, 3, 48, 33.31, -6.41, 0.00244, 49, 10.39, -6.41, 0.88788, 46, 70.05, 32.97, 0.10968, 3, 48, 36.23, -6.46, - 0.00046, 49, 13.31, -6.46, 0.80558, 46, 69.91, 35.88, 0.19395, 3, 48, 40.12, -6.31, 1e-05, 49, 17.2, -6.31, 0.61334, 46, 69.5, 39.76, 0.38665, 4, 47, 0.4, -6.47, 0.86555, 48, -21.94, - -6.47, 0.12959, 49, -44.86, -6.47, 1e-05, 46, 73.7, -22.16, 0.00485, 3, 47, -9.01, -6.49, 0.93616, 48, -31.35, -6.49, 0.00716, 46, 74.33, -31.55, 0.05668, 3, 47, -16.19, -6.65, - 0.44814, 48, -38.53, -6.65, 3e-05, 46, 74.96, -38.7, 0.55184, 4, 47, 7.48, -6.41, 0.63866, 48, -14.86, -6.41, 0.354, 49, -37.78, -6.41, 0.00037, 46, 73.18, -15.1, 0.00698, 4, 47, - 13.4, -6.3, 0.36468, 48, -8.94, -6.3, 0.62161, 49, -31.86, -6.3, 0.00581, 46, 72.69, -9.2, 0.0079, 4, 47, 19.68, -6.38, 0.14684, 48, -2.65, -6.38, 0.80383, 49, -25.58, -6.38, - 0.04176, 46, 72.36, -2.92, 0.00757, 4, 47, 25.54, -6.44, 0.03499, 48, 3.2, -6.44, 0.79745, 49, -19.72, -6.44, 0.15898, 46, 72.03, 2.92, 0.00858, 4, 47, 31.96, -6.35, 0.00417, 48, - 9.62, -6.35, 0.60634, 49, -13.3, -6.35, 0.37927, 46, 71.53, 9.32, 0.01022, 4, 47, 37.62, -6.38, 0.00021, 48, 15.28, -6.38, 0.35157, 49, -7.64, -6.38, 0.63918, 46, 71.18, 14.97, - 0.00904, 4, 47, 43.32, -6.48, 1e-05, 48, 20.98, -6.48, 0.14688, 49, -1.94, -6.48, 0.84692, 46, 70.92, 20.67, 0.00619, 3, 48, 25.81, -6.44, 0.03919, 49, 2.89, -6.44, 0.95006, 46, - 70.56, 25.48, 0.01074, 3, 48, 30.92, -6.39, 0.00591, 49, 7.99, -6.39, 0.9433, 46, 70.18, 30.58, 0.05079, 3, 48, 38.04, -6.39, 5e-05, 49, 15.12, -6.39, 0.72615, 46, 69.72, 37.69, - 0.2738 + 49, -51.47, 19.66, 0.00132, 46, 48.05, -30.46, 0.79028, 4, 47, 24.46, 19.97, 0.10712, 48, 2.12, 19.97, 0.11704, 49, -20.8, 19.97, 0.11672, 46, 45.75, 0.12, 0.65912, 4, 47, 51.67, + 15.14, 0.00116, 48, 29.33, 15.14, 0.00313, 49, 6.41, 15.14, 0.2148, 46, 48.8, 27.59, 0.7809, 4, 47, 48.63, 5.25, 0.0001, 48, 26.3, 5.26, 0.00083, 49, 3.37, 5.24, 0.29942, 46, 58.86, + 25.21, 0.69965, 3, 48, 26.85, -2.03, 0.00034, 49, 3.93, -2.04, 0.378, 46, 66.1, 26.23, 0.62166, 3, 48, 38.1, 1.08, 0.00022, 49, 15.18, 1.08, 0.45653, 46, 62.25, 37.26, 0.54325, 3, + 48, 39.36, -3.36, 0.00015, 49, 16.43, -3.36, 0.53433, 46, 66.61, 38.8, 0.46552, 4, 47, 23.97, 12.06, 0.12565, 48, 1.63, 12.06, 0.24275, 49, -21.29, 12.06, 0.14114, 46, 53.68, 0.15, + 0.49046, 4, 47, 23.54, 6.58, 0.11007, 48, 1.2, 6.58, 0.47217, 49, -21.72, 6.58, 0.12893, 46, 59.17, 0.08, 0.28883, 4, 47, 23.28, 1.22, 0.10884, 48, 0.94, 1.22, 0.60558, 49, -21.98, + 1.22, 0.12698, 46, 64.53, 0.17, 0.1586, 4, 47, 23.11, -3.14, 0.10666, 48, 0.77, -3.14, 0.70334, 49, -22.15, -3.14, 0.12133, 46, 68.89, 0.28, 0.06866, 4, 47, 6.87, 19.8, 0.29773, 48, + -15.47, 19.8, 0.06022, 49, -38.39, 19.8, 0.01488, 46, 47.07, -17.41, 0.62717, 4, 47, 3.75, 11.97, 0.44072, 48, -18.59, 11.97, 0.09602, 49, -41.51, 11.97, 0.01064, 46, 55.08, -20.02, + 0.45261, 4, 47, 1.91, 7.05, 0.66419, 48, -20.42, 7.05, 0.11803, 49, -43.35, 7.05, 0.002, 46, 60.11, -21.53, 0.21579, 4, 47, 0.03, 1.31, 0.77187, 48, -22.31, 1.31, 0.12352, 49, + -45.23, 1.31, 0.00043, 46, 65.96, -23.04, 0.10418, 4, 47, -1.27, -2.99, 0.84303, 48, -23.61, -2.99, 0.11246, 49, -46.53, -2.99, 0.00018, 46, 70.34, -24.05, 0.04432, 4, 47, -1.8, + 26.91, 0.12744, 48, -24.14, 26.91, 0.00959, 49, -47.06, 26.91, 0.0076, 46, 40.54, -26.53, 0.85537, 4, 47, 24.96, 27.56, 0.0719, 48, 2.62, 27.56, 0.03639, 49, -20.3, 27.56, 0.07572, + 46, 38.14, 0.13, 0.81598, 4, 47, 50.76, 27.7, 0.00702, 48, 28.42, 27.7, 0.00523, 49, 5.5, 27.7, 0.131, 46, 36.32, 25.87, 0.85675, 4, 47, 3.83, 36.15, 0.04791, 48, -18.51, 36.15, + 0.00352, 49, -41.43, 36.15, 0.00803, 46, 30.95, -21.51, 0.94054, 4, 47, 25.65, 37.95, 0.02662, 48, 3.31, 37.95, 0.00775, 49, -19.61, 37.95, 0.02767, 46, 27.73, 0.14, 0.93795, 4, 47, + 46.64, 37.25, 0.00753, 48, 24.3, 37.25, 0.00227, 49, 1.38, 37.25, 0.04846, 46, 27.06, 21.14, 0.94174, 4, 47, 41.75, 20.15, 0.01306, 48, 19.41, 20.15, 0.04509, 49, -3.51, 20.15, + 0.32134, 46, 44.45, 17.37, 0.62052, 4, 47, 40.83, 6.52, 0.00895, 48, 18.49, 6.53, 0.07841, 49, -4.43, 6.52, 0.49568, 46, 58.1, 17.34, 0.41696, 4, 47, 44.35, 6.12, 0.0015, 48, 22.01, + 6.12, 0.09572, 49, -0.91, 6.12, 0.67014, 46, 58.27, 20.88, 0.23264, 4, 47, 45.08, 1.14, 0.00025, 48, 22.74, 1.14, 0.108, 49, -0.18, 1.14, 0.76841, 46, 63.2, 21.93, 0.12334, 4, 47, + 45.58, -3.27, 0.0001, 48, 23.24, -3.27, 0.10937, 49, 0.32, -3.27, 0.83473, 46, 67.56, 22.71, 0.0558, 4, 47, 40.33, 27.64, 0.02381, 48, 18, 27.64, 0.02132, 49, -4.93, 27.64, 0.16866, + 46, 37.06, 15.47, 0.78621, 4, 47, 9.71, 27.19, 0.16236, 48, -12.63, 27.19, 0.02827, 49, -35.55, 27.19, 0.02548, 46, 39.51, -15.06, 0.78388, 4, 47, 15.01, 19.88, 0.23124, 48, -7.33, + 19.88, 0.11759, 49, -30.25, 19.88, 0.04679, 46, 46.46, -9.29, 0.60438, 4, 47, 13.78, 12.01, 0.29354, 48, -8.56, 12.01, 0.19873, 49, -31.48, 12.01, 0.04427, 46, 54.39, -10.01, + 0.46346, 4, 47, 12.95, 6.81, 0.37869, 48, -9.39, 6.81, 0.34588, 49, -32.31, 6.81, 0.01968, 46, 59.63, -10.5, 0.25575, 4, 47, 11.95, 1.27, 0.42861, 48, -10.39, 1.27, 0.42317, 49, + -33.31, 1.27, 0.01297, 46, 65.23, -11.14, 0.13524, 4, 47, 11.29, -3.07, 0.46725, 48, -11.05, -3.07, 0.46538, 49, -33.97, -3.07, 0.0097, 46, 69.59, -11.51, 0.05768, 4, 47, -0.59, + 19.72, 0.32338, 48, -22.92, 19.72, 0.02881, 49, -45.85, 19.72, 0.003, 46, 47.63, -24.85, 0.64481, 4, 47, -3.82, 11.93, 0.4391, 48, -26.16, 11.93, 0.03345, 49, -49.08, 11.93, 0.00177, + 46, 55.61, -27.57, 0.52567, 4, 47, -5.89, 7.22, 0.65491, 48, -28.23, 7.22, 0.02015, 49, -51.15, 7.22, 0.00017, 46, 60.45, -29.33, 0.32476, 4, 47, -8.13, 1.34, 0.75275, 48, -30.47, + 1.34, 0.01396, 49, -53.39, 1.34, 1e-05, 46, 66.46, -31.18, 0.23328, 3, 47, -9.63, -2.94, 0.80478, 48, -31.96, -2.94, 0.00944, 46, 70.83, -32.39, 0.18578, 4, 47, 33.3, 20.06, 0.04166, + 48, 10.96, 20.06, 0.10286, 49, -11.96, 20.06, 0.24857, 46, 45.08, 8.94, 0.60691, 4, 47, 33.97, 12.1, 0.03817, 48, 11.63, 12.1, 0.17811, 49, -11.29, 12.1, 0.32257, 46, 52.98, 10.13, + 0.46115, 4, 47, 34.3, 6.34, 0.01531, 48, 11.97, 6.34, 0.31162, 49, -10.96, 6.34, 0.40881, 46, 58.71, 10.84, 0.26426, 4, 47, 34.72, 1.18, 0.00955, 48, 12.39, 1.18, 0.39036, 49, + -10.54, 1.18, 0.4561, 46, 63.83, 11.59, 0.14399, 4, 47, 34.8, -3.2, 0.00731, 48, 12.46, -3.2, 0.44195, 49, -10.46, -3.2, 0.48699, 46, 68.2, 11.96, 0.06375, 4, 47, 45.91, 15.08, + 0.00241, 48, 23.57, 15.09, 0.01421, 49, 0.65, 15.08, 0.36275, 46, 49.23, 21.85, 0.62063, 4, 47, 40.85, 4.27, 0.00034, 48, 18.51, 4.28, 0.01068, 49, -4.41, 4.26, 0.5453, 46, 60.35, + 17.51, 0.44368, 4, 47, 52.52, 5.95, 2e-05, 48, 30.19, 5.95, 0.00999, 49, 7.26, 5.95, 0.66888, 46, 57.92, 29.04, 0.32111, 3, 48, 31.52, 1.11, 0.01011, 49, 8.6, 1.11, 0.76268, 46, + 62.66, 30.7, 0.22721, 3, 48, 32.61, -3.32, 0.00863, 49, 9.68, -3.32, 0.83296, 46, 67.01, 32.06, 0.15841, 4, 47, -9.21, 7.29, 0.52586, 48, -31.55, 7.29, 0.0057, 49, -54.47, 7.29, + 1e-05, 46, 60.59, -32.65, 0.46842, 3, 47, -11.3, 1.36, 0.56698, 48, -33.64, 1.36, 0.00311, 46, 66.65, -34.34, 0.42991, 3, 47, -12.66, -2.93, 0.60013, 48, -35, -2.93, 0.00167, 46, + 71.01, -35.42, 0.39821, 4, 47, -5.46, -2.97, 0.89102, 48, -27.8, -2.97, 0.03888, 49, -50.72, -2.97, 1e-05, 46, 70.59, -28.24, 0.07008, 4, 47, -4.18, 1.33, 0.83362, 48, -26.52, 1.33, + 0.04645, 49, -49.44, 1.33, 3e-05, 46, 66.21, -27.24, 0.1199, 4, 47, -2.26, 7.14, 0.75973, 48, -24.6, 7.14, 0.05134, 49, -47.52, 7.14, 0.00026, 46, 60.29, -25.7, 0.18867, 4, 47, 7.35, + 6.93, 0.57235, 48, -14.98, 6.93, 0.23863, 49, -37.91, 6.93, 0.00435, 46, 59.87, -16.09, 0.18467, 4, 47, 5.9, 1.29, 0.63011, 48, -16.44, 1.29, 0.25936, 49, -39.36, 1.29, 0.00243, 46, + 65.6, -17.18, 0.1081, 4, 47, 4.86, -3.03, 0.68809, 48, -17.48, -3.03, 0.26358, 49, -40.4, -3.03, 0.00168, 46, 69.98, -17.93, 0.04665, 4, 47, 17.76, 6.7, 0.22941, 48, -4.58, 6.7, + 0.4879, 49, -27.5, 6.7, 0.05094, 46, 59.42, -5.7, 0.23175, 4, 47, 17.11, 1.25, 0.24296, 48, -5.23, 1.25, 0.56856, 49, -28.15, 1.25, 0.04581, 46, 64.91, -5.99, 0.14267, 4, 47, 16.71, + -3.1, 0.25552, 48, -5.62, -3.1, 0.64168, 49, -28.55, -3.1, 0.03992, 46, 69.27, -6.1, 0.06288, 4, 47, 28.55, -3.17, 0.03276, 48, 6.22, -3.17, 0.62363, 49, -16.71, -3.17, 0.27658, 46, + 68.57, 5.72, 0.06703, 4, 47, 28.55, 1.2, 0.0367, 48, 6.21, 1.21, 0.54514, 49, -16.71, 1.21, 0.26974, 46, 64.21, 5.43, 0.14843, 4, 47, 28.71, 6.47, 0.04075, 48, 6.37, 6.47, 0.46337, + 49, -16.55, 6.47, 0.25797, 46, 58.95, 5.25, 0.23791, 4, 47, 39.28, 6.23, 0.00305, 48, 16.94, 6.24, 0.20572, 49, -5.98, 6.24, 0.59307, 46, 58.49, 15.81, 0.19817, 4, 47, 39.51, 1.16, + 0.00156, 48, 17.17, 1.16, 0.23228, 49, -5.75, 1.16, 0.64631, 46, 63.54, 16.37, 0.11984, 4, 47, 40.07, -3.24, 0.00112, 48, 17.74, -3.24, 0.25061, 49, -5.19, -3.24, 0.69415, 46, 67.89, + 17.22, 0.05412, 4, 47, 50.23, -3.29, 0, 48, 27.89, -3.29, 0.036, 49, 4.97, -3.29, 0.88144, 46, 67.29, 27.36, 0.08255, 4, 47, 49.51, 1.13, 2e-05, 48, 27.17, 1.13, 0.03826, 49, 4.25, + 1.13, 0.81357, 46, 62.92, 26.35, 0.14816, 4, 47, 48.55, 6.03, 0.00027, 48, 26.22, 6.03, 0.03577, 49, 3.29, 6.03, 0.72045, 46, 58.09, 25.08, 0.24351, 4, 47, 37.02, 4.21, 0.00156, 48, + 14.68, 4.22, 0.03311, 49, -8.24, 4.2, 0.61234, 46, 60.66, 13.69, 0.35299, 4, 47, 44.7, 4.35, 1e-05, 48, 22.36, 4.35, 0.00266, 49, -0.56, 4.34, 0.47035, 46, 60.02, 21.34, 0.52698, 3, + 48, 33.02, 5.88, 0.00213, 49, 10.1, 5.88, 0.54797, 46, 57.79, 31.88, 0.4499, 3, 48, 34.54, 1.1, 0.0018, 49, 11.62, 1.1, 0.63247, 46, 62.47, 33.7, 0.36573, 3, 48, 35.58, -3.34, + 0.00152, 49, 12.66, -3.34, 0.71351, 46, 66.83, 35.03, 0.28497, 3, 47, -17.72, -6.71, 0.31251, 48, -40.05, -6.71, 1e-05, 46, 75.11, -40.22, 0.68748, 3, 47, -13.83, -6.56, 0.64755, 48, + -36.17, -6.56, 0.00038, 46, 74.72, -36.36, 0.35207, 3, 47, -10.89, -6.57, 0.83546, 48, -33.23, -6.57, 0.00245, 46, 74.53, -33.42, 0.1621, 3, 47, -6.58, -6.39, 0.9505, 48, -28.91, + -6.39, 0.02598, 46, 74.07, -29.13, 0.02352, 4, 47, -2.51, -6.41, 0.9185, 48, -24.85, -6.41, 0.06986, 49, -47.77, -6.41, 1e-05, 46, 73.83, -25.07, 0.01163, 4, 47, 3.97, -6.54, 0.7539, + 48, -18.37, -6.54, 0.23416, 49, -41.29, -6.54, 0.00019, 46, 73.54, -18.6, 0.01175, 4, 47, 10.73, -6.3, 0.4945, 48, -11.61, -6.29, 0.48778, 49, -34.53, -6.29, 0.00242, 46, 72.85, + -11.87, 0.01529, 4, 47, 16.42, -6.31, 0.24467, 48, -5.92, -6.31, 0.71967, 49, -28.84, -6.31, 0.01969, 46, 72.5, -6.18, 0.01597, 4, 47, 22.88, -6.46, 0.08074, 48, 0.54, -6.46, + 0.81091, 49, -22.38, -6.46, 0.09131, 46, 72.22, 0.27, 0.01704, 4, 47, 28.51, -6.42, 0.01543, 48, 6.17, -6.42, 0.70591, 49, -16.75, -6.42, 0.26031, 46, 71.82, 5.89, 0.01836, 4, 47, + 34.97, -6.29, 0.00164, 48, 12.64, -6.29, 0.47309, 49, -10.29, -6.29, 0.50689, 46, 71.27, 12.33, 0.01837, 4, 47, 40.42, -6.47, 0.0001, 48, 18.08, -6.47, 0.23958, 49, -4.84, -6.47, + 0.7461, 46, 71.1, 17.78, 0.01421, 4, 47, 45.89, -6.5, 0, 48, 23.56, -6.5, 0.08431, 49, 0.63, -6.5, 0.9025, 46, 70.76, 23.24, 0.01319, 3, 48, 28.36, -6.37, 0.01867, 49, 5.43, -6.37, + 0.94991, 46, 70.33, 28.02, 0.03142, 3, 48, 33.31, -6.41, 0.00244, 49, 10.39, -6.41, 0.88788, 46, 70.05, 32.97, 0.10968, 3, 48, 36.23, -6.46, 0.00046, 49, 13.31, -6.46, 0.80558, 46, + 69.91, 35.88, 0.19395, 3, 48, 40.12, -6.31, 1e-05, 49, 17.2, -6.31, 0.61334, 46, 69.5, 39.76, 0.38665, 4, 47, 0.4, -6.47, 0.86555, 48, -21.94, -6.47, 0.12959, 49, -44.86, -6.47, + 1e-05, 46, 73.7, -22.16, 0.00485, 3, 47, -9.01, -6.49, 0.93616, 48, -31.35, -6.49, 0.00716, 46, 74.33, -31.55, 0.05668, 3, 47, -16.19, -6.65, 0.44814, 48, -38.53, -6.65, 3e-05, 46, + 74.96, -38.7, 0.55184, 4, 47, 7.48, -6.41, 0.63866, 48, -14.86, -6.41, 0.354, 49, -37.78, -6.41, 0.00037, 46, 73.18, -15.1, 0.00698, 4, 47, 13.4, -6.3, 0.36468, 48, -8.94, -6.3, + 0.62161, 49, -31.86, -6.3, 0.00581, 46, 72.69, -9.2, 0.0079, 4, 47, 19.68, -6.38, 0.14684, 48, -2.65, -6.38, 0.80383, 49, -25.58, -6.38, 0.04176, 46, 72.36, -2.92, 0.00757, 4, 47, + 25.54, -6.44, 0.03499, 48, 3.2, -6.44, 0.79745, 49, -19.72, -6.44, 0.15898, 46, 72.03, 2.92, 0.00858, 4, 47, 31.96, -6.35, 0.00417, 48, 9.62, -6.35, 0.60634, 49, -13.3, -6.35, + 0.37927, 46, 71.53, 9.32, 0.01022, 4, 47, 37.62, -6.38, 0.00021, 48, 15.28, -6.38, 0.35157, 49, -7.64, -6.38, 0.63918, 46, 71.18, 14.97, 0.00904, 4, 47, 43.32, -6.48, 1e-05, 48, + 20.98, -6.48, 0.14688, 49, -1.94, -6.48, 0.84692, 46, 70.92, 20.67, 0.00619, 3, 48, 25.81, -6.44, 0.03919, 49, 2.89, -6.44, 0.95006, 46, 70.56, 25.48, 0.01074, 3, 48, 30.92, -6.39, + 0.00591, 49, 7.99, -6.39, 0.9433, 46, 70.18, 30.58, 0.05079, 3, 48, 38.04, -6.39, 5e-05, 49, 15.12, -6.39, 0.72615, 46, 69.72, 37.69, 0.2738 ], "hull": 46, "edges": [ @@ -13144,25 +28091,55 @@ 264, 294, 294, 266, 42, 44, 44, 46, 294, 44, 266, 296, 296, 268, 38, 40, 40, 42, 296, 40, 268, 298, 298, 270, 34, 36, 36, 38, 298, 36, 270, 300, 300, 272, 30, 32, 32, 34, 300, 32, 272, 302, 302, 274, 26, 28, 28, 30, 302, 28, 274, 304, 304, 276, 22, 24, 24, 26, 304, 24, 276, 306, 306, 278, 18, 20, 20, 22, 306, 20, 280, 308, 308, 282, 12, 14, 14, 16, 308, 14 ], - "width": 88, - "height": 80, - "path": "summer-as.ear-left-bubble" - } - }, - "ear-left-dot-01": {"ear-left-dot": {"x": 0.12, "y": 0.57, "rotation": -0.95, "width": 18, "height": 17, "path": "summer-as.ear-left-dot"}}, - "ear-left-dot-02": {"ear-left-dot": {"x": 0.12, "y": 0.57, "rotation": -0.95, "width": 18, "height": 17, "path": "summer-as.ear-left-dot"}}, - "ear-left-dot-03": {"ear-left-dot": {"x": 0.12, "y": 0.57, "rotation": -0.95, "width": 18, "height": 17, "path": "summer-as.ear-left-dot"}}, - "ear-left-dot-04": {"ear-left-dot": {"x": 0.12, "y": 0.57, "rotation": -0.95, "width": 18, "height": 17, "path": "summer-as.ear-left-dot"}}, - "ear-left-dot-05": {"ear-left-dot": {"x": 0.12, "y": 0.57, "rotation": -0.95, "width": 18, "height": 17, "path": "summer-as.ear-left-dot"}}, - "ear-left-dot-06": {"ear-left-dot": {"x": 0.12, "y": 0.57, "rotation": -0.95, "width": 18, "height": 17, "path": "summer-as.ear-left-dot"}}, - "ear-left-dot-07": {"ear-left-dot": {"x": 0.12, "y": 0.57, "rotation": -0.95, "width": 18, "height": 17, "path": "summer-as.ear-left-dot"}}, - "ear-left-dot-08": {"ear-left-dot": {"x": 0.12, "y": 0.57, "rotation": -0.95, "width": 18, "height": 17, "path": "summer-as.ear-left-dot"}}, - "ear-left-dot-09": {"ear-left-dot": {"x": 0.12, "y": 0.57, "rotation": -0.95, "width": 18, "height": 17, "path": "summer-as.ear-left-dot"}}, - "ear-left-dot-10": {"ear-left-dot": {"x": 0.12, "y": 0.57, "rotation": -0.95, "width": 18, "height": 17, "path": "summer-as.ear-left-dot"}}, - "ear-left-dot-11": {"ear-left-dot": {"x": 0.12, "y": 0.57, "rotation": -0.95, "width": 18, "height": 17, "path": "summer-as.ear-left-dot"}}, - "ear-left-dot-12": {"ear-left-dot": {"x": 0.12, "y": 0.57, "rotation": -0.95, "width": 18, "height": 17, "path": "summer-as.ear-left-dot"}}, - "ear-left-under": {"ear-left-under": {"x": 84.11, "y": -23.37, "rotation": -90, "width": 128, "height": 218, "path": "summer-as.ear-left-under"}}, - "ear-left-upper": {"ear-left-upper": {"x": 85.61, "y": -23.87, "rotation": -90, "width": 145, "height": 231, "path": "summer-as.ear-left-upper"}}, + "width": 87.05882352941177, + "height": 80.0, + "path": "summer-as-lv2.ear-left-bubble", + "x": 0.470588235294116, + "y": 0.0 + } + }, + "ear-left-dot-01": { + "ear-left-dot": {"x": 0.8847058823529402, "y": 0.8347058823529402, "rotation": -0.95, "width": 16.47058823529412, "height": 16.47058823529412, "path": "summer-as-lv2.ear-left-dot"} + }, + "ear-left-dot-02": { + "ear-left-dot": {"x": 0.8847058823529402, "y": 0.8347058823529402, "rotation": -0.95, "width": 16.47058823529412, "height": 16.47058823529412, "path": "summer-as-lv2.ear-left-dot"} + }, + "ear-left-dot-03": { + "ear-left-dot": {"x": 0.8847058823529402, "y": 0.8347058823529402, "rotation": -0.95, "width": 16.47058823529412, "height": 16.47058823529412, "path": "summer-as-lv2.ear-left-dot"} + }, + "ear-left-dot-04": { + "ear-left-dot": {"x": 0.8847058823529402, "y": 0.8347058823529402, "rotation": -0.95, "width": 16.47058823529412, "height": 16.47058823529412, "path": "summer-as-lv2.ear-left-dot"} + }, + "ear-left-dot-05": { + "ear-left-dot": {"x": 0.8847058823529402, "y": 0.8347058823529402, "rotation": -0.95, "width": 16.47058823529412, "height": 16.47058823529412, "path": "summer-as-lv2.ear-left-dot"} + }, + "ear-left-dot-06": { + "ear-left-dot": {"x": 0.8847058823529402, "y": 0.8347058823529402, "rotation": -0.95, "width": 16.47058823529412, "height": 16.47058823529412, "path": "summer-as-lv2.ear-left-dot"} + }, + "ear-left-dot-07": { + "ear-left-dot": {"x": 0.8847058823529402, "y": 0.8347058823529402, "rotation": -0.95, "width": 16.47058823529412, "height": 16.47058823529412, "path": "summer-as-lv2.ear-left-dot"} + }, + "ear-left-dot-08": { + "ear-left-dot": {"x": 0.8847058823529402, "y": 0.8347058823529402, "rotation": -0.95, "width": 16.47058823529412, "height": 16.47058823529412, "path": "summer-as-lv2.ear-left-dot"} + }, + "ear-left-dot-09": { + "ear-left-dot": {"x": 0.8847058823529402, "y": 0.8347058823529402, "rotation": -0.95, "width": 16.47058823529412, "height": 16.47058823529412, "path": "summer-as-lv2.ear-left-dot"} + }, + "ear-left-dot-10": { + "ear-left-dot": {"x": 0.8847058823529402, "y": 0.8347058823529402, "rotation": -0.95, "width": 16.47058823529412, "height": 16.47058823529412, "path": "summer-as-lv2.ear-left-dot"} + }, + "ear-left-dot-11": { + "ear-left-dot": {"x": 0.8847058823529402, "y": 0.8347058823529402, "rotation": -0.95, "width": 16.47058823529412, "height": 16.47058823529412, "path": "summer-as-lv2.ear-left-dot"} + }, + "ear-left-dot-12": { + "ear-left-dot": {"x": 0.8847058823529402, "y": 0.8347058823529402, "rotation": -0.95, "width": 16.47058823529412, "height": 16.47058823529412, "path": "summer-as-lv2.ear-left-dot"} + }, + "ear-left-under": { + "ear-left-under": {"x": 85.13176470588235, "y": -29.411764705882362, "rotation": -90, "width": 141.1764705882353, "height": 218.82352941176472, "path": "summer-as-lv2.ear-left-under"} + }, + "ear-left-upper": { + "ear-left-upper": {"x": 99.74941176470588, "y": -26.911764705882348, "rotation": -90, "width": 152.94117647058823, "height": 258.8235294117647, "path": "summer-as-lv2.ear-left-upper"} + }, "ear-right-bubble": { "ear-right-bubble": { "type": "mesh", @@ -13237,7 +28214,7 @@ 37, -29.87, -9.16, 0.06376, 38, -51.34, -9.16, 0.00012, 4, 31, 72.37, -35.61, 0.35932, 36, -12.18, -9.26, 0.60181, 37, -33.58, -9.16, 0.03884, 38, -55.06, -9.16, 4e-05, 4, 31, 72.19, -39.08, 0.49297, 36, -15.66, -9.26, 0.48586, 37, -37.06, -9.16, 0.02116, 38, -58.54, -9.16, 1e-05, 4, 31, 71.81, -46.35, 0.66969, 36, -22.93, -9.26, 0.32512, 37, -44.34, -9.16, 0.00518, 38, -65.81, -9.16, 0, 4, 31, 66.73, -44.35, 0.73638, 36, -21.2, -4.09, 0.26049, 37, -42.61, -3.98, 0.00313, 38, -64.08, -3.98, 0, 4, 31, 61.93, -42.46, 0.74288, 36, -19.57, - 0.8, 0.25402, 37, -40.97, 0.91, 0.00309, 38, -62.45, 0.91, 1e-05, 2, 31, 55.67, -40, 0.86, 36, -17.44, 7.19, 0.14, 2, 31, 50.24, -37.86, 0.87418, 36, -15.59, 12.72, 0.12582, 1, 31, + 0.8, 0.25402, 37, -40.97, 0.91, 0.00309, 38, -62.45, 0.91, 1e-05, 2, 31, 56.84, -37.71, 0.86, 36, -15.1, 6.14, 0.14, 2, 31, 51.66, -35.24, 0.87418, 36, -12.89, 11.44, 0.12582, 1, 31, 43.72, -35.29, 1, 1, 31, 38.22, -33.12, 1, 2, 31, -0.53, -12.83, 0.99965, 36, 6.74, 64.74, 0.00035, 2, 31, -0.21, -6.72, 0.9998, 36, 12.86, 64.74, 0.0002, 3, 31, 0.19, 0.77, 0.99981, 36, 20.36, 64.74, 9e-05, 38, -22.52, 64.84, 0.0001, 3, 31, 0.56, 7.82, 0.99975, 36, 27.41, 64.74, 1e-05, 38, -15.47, 64.84, 0.00024, 2, 31, 0.88, 13.86, 0.99954, 38, -9.41, 64.84, 0.00046, 4, 31, 39.9, 0.3, 0.88429, 36, 21.98, 25.05, 0.02526, 37, 0.57, 25.15, 0.06552, 38, -20.9, 25.15, 0.02493, 1, 31, 38.93, -18.93, 1, 4, 31, 39.81, 17.97, 0.94373, 36, 39.62, @@ -13354,9 +28331,11 @@ 382, 382, 236, 380, 382, 24, 384, 384, 316, 382, 384, 22, 386, 386, 160, 384, 386, 20, 388, 388, 318, 386, 388, 18, 390, 390, 248, 388, 390, 16, 392, 392, 320, 390, 392, 14, 394, 394, 158, 392, 394 ], - "width": 83, - "height": 80, - "path": "summer-as.ear-right-bubble" + "width": 82.3529411764706, + "height": 80.0, + "path": "summer-as-lv2.ear-right-bubble", + "x": 0.32352941176470296, + "y": 0.0 } }, "ear-right-bubble-02": { @@ -13433,8 +28412,8 @@ -10.56, 0.00033, 4, 42, 73.97, -31.98, 0.29871, 43, -8.46, -10.66, 0.63741, 44, -29.87, -10.56, 0.06376, 45, -51.34, -10.56, 0.00012, 4, 42, 73.77, -35.69, 0.35932, 43, -12.18, -10.66, 0.60181, 44, -33.58, -10.56, 0.03884, 45, -55.06, -10.56, 4e-05, 4, 42, 73.59, -39.16, 0.49297, 43, -15.66, -10.66, 0.48586, 44, -37.06, -10.56, 0.02116, 45, -58.54, -10.56, 1e-05, 4, 42, 73.2, -46.43, 0.66969, 43, -22.93, -10.66, 0.32512, 44, -44.34, -10.56, 0.00518, 45, -65.81, -10.56, 0, 4, 42, 68.13, -44.43, 0.73638, 43, -21.2, -5.49, 0.26049, 44, - -42.61, -5.38, 0.00313, 45, -64.08, -5.38, 0, 4, 42, 63.33, -42.54, 0.74288, 43, -19.57, -0.59, 0.25402, 44, -40.97, -0.49, 0.00309, 45, -62.45, -0.49, 1e-05, 2, 42, 57.06, -40.07, - 0.86, 43, -17.44, 5.79, 0.14, 2, 42, 51.63, -37.93, 0.87418, 43, -15.59, 11.32, 0.12582, 1, 42, 45.12, -35.37, 1, 1, 42, 39.61, -33.2, 1, 2, 42, 0.87, -12.9, 0.99965, 43, 6.74, + -42.61, -5.38, 0.00313, 45, -64.08, -5.38, 0, 4, 42, 63.33, -42.54, 0.74288, 43, -19.57, -0.59, 0.25402, 44, -40.97, -0.49, 0.00309, 45, -62.45, -0.49, 1e-05, 2, 42, 57.6, -38.81, + 0.86, 43, -16.15, 5.32, 0.14, 2, 42, 52.73, -34.94, 0.87418, 43, -12.54, 10.39, 0.12582, 1, 42, 45.12, -35.37, 1, 1, 42, 39.61, -33.2, 1, 2, 42, 0.87, -12.9, 0.99965, 43, 6.74, 63.34, 0.00035, 2, 42, 1.19, -6.79, 0.9998, 43, 12.86, 63.34, 0.0002, 3, 42, 1.58, 0.7, 0.99981, 43, 20.36, 63.34, 9e-05, 45, -22.52, 63.44, 0.0001, 3, 42, 1.95, 7.74, 0.99975, 43, 27.41, 63.34, 1e-05, 45, -15.46, 63.44, 0.00024, 2, 42, 2.27, 13.79, 0.99954, 45, -9.41, 63.44, 0.00046, 4, 42, 41.3, 0.23, 0.88429, 43, 21.98, 23.65, 0.02526, 44, 0.57, 23.75, 0.06552, 45, -20.9, 23.75, 0.02493, 1, 42, 40.33, -19.01, 1, 4, 42, 41.2, 17.9, 0.94373, 43, 39.62, 24.67, 0.00089, 44, 18.21, 24.78, 0.01419, 45, -3.26, 24.78, 0.04119, 1, 42, @@ -13551,51 +28530,139 @@ 382, 382, 236, 380, 382, 24, 384, 384, 316, 382, 384, 22, 386, 386, 160, 384, 386, 20, 388, 388, 318, 386, 388, 18, 390, 390, 248, 388, 390, 16, 392, 392, 320, 390, 392, 14, 394, 394, 158, 392, 394 ], - "width": 83, - "height": 80, - "path": "summer-as.ear-right-bubble" - } - }, - "ear-right-dot-01": {"ear-right-dot": {"x": -0.78, "y": -0.78, "rotation": -0.95, "width": 21, "height": 14, "path": "summer-as.ear-right-dot"}}, - "ear-right-dot-02": {"ear-right-dot": {"x": -0.78, "y": -0.78, "rotation": -0.95, "width": 21, "height": 14, "path": "summer-as.ear-right-dot"}}, - "ear-right-dot-03": {"ear-right-dot": {"x": -0.78, "y": -0.78, "rotation": -0.95, "width": 21, "height": 14, "path": "summer-as.ear-right-dot"}}, - "ear-right-dot-04": {"ear-right-dot": {"x": -0.78, "y": -0.78, "rotation": -0.95, "width": 21, "height": 14, "path": "summer-as.ear-right-dot"}}, - "ear-right-dot-05": {"ear-right-dot": {"x": -0.78, "y": -0.78, "rotation": -0.95, "width": 21, "height": 14, "path": "summer-as.ear-right-dot"}}, - "ear-right-dot-06": {"ear-right-dot": {"x": -0.78, "y": -0.78, "rotation": -0.95, "width": 21, "height": 14, "path": "summer-as.ear-right-dot"}}, - "ear-right-dot-07": {"ear-right-dot": {"x": -0.78, "y": -0.78, "rotation": -0.95, "width": 21, "height": 14, "path": "summer-as.ear-right-dot"}}, - "ear-right-dot-08": {"ear-right-dot": {"x": -0.78, "y": -0.78, "rotation": -0.95, "width": 21, "height": 14, "path": "summer-as.ear-right-dot"}}, - "ear-right-dot-09": {"ear-right-dot": {"x": -0.78, "y": -0.78, "rotation": -0.95, "width": 21, "height": 14, "path": "summer-as.ear-right-dot"}}, - "ear-right-dot-10": {"ear-right-dot": {"x": -0.78, "y": -0.78, "rotation": -0.95, "width": 21, "height": 14, "path": "summer-as.ear-right-dot"}}, - "ear-right-dot-11": {"ear-right-dot": {"x": -0.78, "y": -0.78, "rotation": -0.95, "width": 21, "height": 14, "path": "summer-as.ear-right-dot"}}, - "ear-right-dot-12": {"ear-right-dot": {"x": -0.78, "y": -0.78, "rotation": -0.95, "width": 21, "height": 14, "path": "summer-as.ear-right-dot"}}, - "ear-right-dot-13": {"ear-right-dot": {"x": -0.78, "y": -0.78, "rotation": -0.95, "width": 21, "height": 14, "path": "summer-as.ear-right-dot"}}, - "ear-right-dot-14": {"ear-right-dot": {"x": -0.78, "y": -0.78, "rotation": -0.95, "width": 21, "height": 14, "path": "summer-as.ear-right-dot"}}, - "ear-right-dot-15": {"ear-right-dot": {"x": -0.78, "y": -0.78, "rotation": -0.95, "width": 21, "height": 14, "path": "summer-as.ear-right-dot"}}, - "ear-right-dot-16": {"ear-right-dot": {"x": -0.78, "y": -0.78, "rotation": -0.95, "width": 21, "height": 14, "path": "summer-as.ear-right-dot"}}, - "ear-right-dot-17": {"ear-right-dot": {"x": -0.78, "y": -0.78, "rotation": -0.95, "width": 21, "height": 14, "path": "summer-as.ear-right-dot"}}, - "ear-right-dot-18": {"ear-right-dot": {"x": -0.78, "y": -0.78, "rotation": -0.95, "width": 21, "height": 14, "path": "summer-as.ear-right-dot"}}, - "ear-right-dot-19": {"ear-right-dot": {"x": -0.78, "y": -0.78, "rotation": -0.95, "width": 21, "height": 14, "path": "summer-as.ear-right-dot"}}, - "ear-right-dot-20": {"ear-right-dot": {"x": -0.78, "y": -0.78, "rotation": -0.95, "width": 21, "height": 14, "path": "summer-as.ear-right-dot"}}, - "ear-right-under": {"ear-right-under": {"x": 84.87, "y": -16.34, "rotation": -93, "width": 119, "height": 205, "path": "summer-as.ear-right-under"}}, - "ear-right-upper": {"ear-right-upper": {"x": 89.21, "y": -19.57, "rotation": -93, "width": 129, "height": 214, "path": "summer-as.ear-right-upper"}}, + "width": 82.3529411764706, + "height": 80.0, + "path": "summer-as-lv2.ear-right-bubble", + "x": 0.32352941176470296, + "y": 0.0 + } + }, + "ear-right-dot-01": { + "ear-right-dot": { + "x": 0.3082352941176467, "y": 0.33764705882352897, "rotation": -0.95, "width": 18.823529411764707, "height": 11.764705882352942, "path": "summer-as-lv2.ear-right-dot" + } + }, + "ear-right-dot-02": { + "ear-right-dot": { + "x": 0.3082352941176467, "y": 0.33764705882352897, "rotation": -0.95, "width": 18.823529411764707, "height": 11.764705882352942, "path": "summer-as-lv2.ear-right-dot" + } + }, + "ear-right-dot-03": { + "ear-right-dot": { + "x": 0.3082352941176467, "y": 0.33764705882352897, "rotation": -0.95, "width": 18.823529411764707, "height": 11.764705882352942, "path": "summer-as-lv2.ear-right-dot" + } + }, + "ear-right-dot-04": { + "ear-right-dot": { + "x": 0.3082352941176467, "y": 0.33764705882352897, "rotation": -0.95, "width": 18.823529411764707, "height": 11.764705882352942, "path": "summer-as-lv2.ear-right-dot" + } + }, + "ear-right-dot-05": { + "ear-right-dot": { + "x": 0.3082352941176467, "y": 0.33764705882352897, "rotation": -0.95, "width": 18.823529411764707, "height": 11.764705882352942, "path": "summer-as-lv2.ear-right-dot" + } + }, + "ear-right-dot-06": { + "ear-right-dot": { + "x": 0.3082352941176467, "y": 0.33764705882352897, "rotation": -0.95, "width": 18.823529411764707, "height": 11.764705882352942, "path": "summer-as-lv2.ear-right-dot" + } + }, + "ear-right-dot-07": { + "ear-right-dot": { + "x": 0.3082352941176467, "y": 0.33764705882352897, "rotation": -0.95, "width": 18.823529411764707, "height": 11.764705882352942, "path": "summer-as-lv2.ear-right-dot" + } + }, + "ear-right-dot-08": { + "ear-right-dot": { + "x": 0.3082352941176467, "y": 0.33764705882352897, "rotation": -0.95, "width": 18.823529411764707, "height": 11.764705882352942, "path": "summer-as-lv2.ear-right-dot" + } + }, + "ear-right-dot-09": { + "ear-right-dot": { + "x": 0.3082352941176467, "y": 0.33764705882352897, "rotation": -0.95, "width": 18.823529411764707, "height": 11.764705882352942, "path": "summer-as-lv2.ear-right-dot" + } + }, + "ear-right-dot-10": { + "ear-right-dot": { + "x": 0.3082352941176467, "y": 0.33764705882352897, "rotation": -0.95, "width": 18.823529411764707, "height": 11.764705882352942, "path": "summer-as-lv2.ear-right-dot" + } + }, + "ear-right-dot-11": { + "ear-right-dot": { + "x": 0.3082352941176467, "y": 0.33764705882352897, "rotation": -0.95, "width": 18.823529411764707, "height": 11.764705882352942, "path": "summer-as-lv2.ear-right-dot" + } + }, + "ear-right-dot-12": { + "ear-right-dot": { + "x": 0.3082352941176467, "y": 0.33764705882352897, "rotation": -0.95, "width": 18.823529411764707, "height": 11.764705882352942, "path": "summer-as-lv2.ear-right-dot" + } + }, + "ear-right-dot-13": { + "ear-right-dot": { + "x": 0.3082352941176467, "y": 0.33764705882352897, "rotation": -0.95, "width": 18.823529411764707, "height": 11.764705882352942, "path": "summer-as-lv2.ear-right-dot" + } + }, + "ear-right-dot-14": { + "ear-right-dot": { + "x": 0.3082352941176467, "y": 0.33764705882352897, "rotation": -0.95, "width": 18.823529411764707, "height": 11.764705882352942, "path": "summer-as-lv2.ear-right-dot" + } + }, + "ear-right-dot-15": { + "ear-right-dot": { + "x": 0.3082352941176467, "y": 0.33764705882352897, "rotation": -0.95, "width": 18.823529411764707, "height": 11.764705882352942, "path": "summer-as-lv2.ear-right-dot" + } + }, + "ear-right-dot-16": { + "ear-right-dot": { + "x": 0.3082352941176467, "y": 0.33764705882352897, "rotation": -0.95, "width": 18.823529411764707, "height": 11.764705882352942, "path": "summer-as-lv2.ear-right-dot" + } + }, + "ear-right-dot-17": { + "ear-right-dot": { + "x": 0.3082352941176467, "y": 0.33764705882352897, "rotation": -0.95, "width": 18.823529411764707, "height": 11.764705882352942, "path": "summer-as-lv2.ear-right-dot" + } + }, + "ear-right-dot-18": { + "ear-right-dot": { + "x": 0.3082352941176467, "y": 0.33764705882352897, "rotation": -0.95, "width": 18.823529411764707, "height": 11.764705882352942, "path": "summer-as-lv2.ear-right-dot" + } + }, + "ear-right-dot-19": { + "ear-right-dot": { + "x": 0.3082352941176467, "y": 0.33764705882352897, "rotation": -0.95, "width": 18.823529411764707, "height": 11.764705882352942, "path": "summer-as-lv2.ear-right-dot" + } + }, + "ear-right-dot-20": { + "ear-right-dot": { + "x": 0.3082352941176467, "y": 0.33764705882352897, "rotation": -0.95, "width": 18.823529411764707, "height": 11.764705882352942, "path": "summer-as-lv2.ear-right-dot" + } + }, + "ear-right-under": { + "ear-right-under": { + "x": 85.06764705882352, "y": -16.772941176470596, "rotation": -93, "width": 131.76470588235296, "height": 204.7058823529412, "path": "summer-as-lv2.ear-right-under" + } + }, + "ear-right-upper": { + "ear-right-upper": {"x": 92.85176470588235, "y": -17.124705882352956, "rotation": -93, "width": 141.1764705882353, "height": 263.5294117647059, "path": "summer-as-lv2.ear-right-upper"} + }, "eyes": { - "eyes": {"x": 23.23, "y": 24.61, "width": 330, "height": 155, "path": "summer-as.eyes"}, - "eyes-angry": {"x": 24.37, "y": 24.61, "width": 330, "height": 155, "path": "summer-as.eyes-angry"}, - "eyes-happy": {"x": 24.37, "y": 24.61, "width": 330, "height": 155, "path": "summer-as.eyes-happy"}, - "eyes-shut": {"x": 24.37, "y": 24.61, "width": 330, "height": 155, "path": "summer-as.eyes-shut"} - }, - "eyes-happy-accessory": {"eyes-happy-accessory": {"x": 0.37, "y": 0.4, "scaleX": 1.4, "scaleY": 1.4, "width": 99, "height": 105, "path": "summer-as.eyes-happy-accessory"}}, - "eyes-light-dot": {"eye-light-dot": {"x": -0.96, "y": 1.51, "width": 70, "height": 72, "path": "summer-as.eye-light-dot"}}, - "eyes-light-dot-02": {"eye-light-dot": {"x": -0.96, "y": 1.51, "width": 70, "height": 72, "path": "summer-as.eye-light-dot"}}, - "eyes-light-left": {"light": {"x": 6.55, "y": 1.56, "scaleX": 1.2, "scaleY": 1.8, "rotation": 178.57, "width": 49, "height": 73, "path": "summer-as.light"}}, - "eyes-light-right": {"light": {"x": 6.55, "y": 1.56, "scaleX": 1.2, "scaleY": 1.8, "rotation": 178.57, "width": 49, "height": 73, "path": "summer-as.light"}}, - "eyes-upper": {"eyes-upper": {"x": 24.04, "y": 24.72, "width": 328, "height": 153, "path": "summer-as.eyes-upper"}}, - "horn": {"horn": {"x": 101.61, "y": -20.37, "rotation": -90, "width": 232, "height": 237, "path": "summer-tb.horn"}}, + "eyes": {"x": 23.029411764705884, "y": 24.631764705882354, "width": 272.94117647058823, "height": 101.17647058823529, "path": "summer-as-lv2.eyes"}, + "eyes-angry": {"x": 23.029411764705884, "y": 24.631764705882354, "width": 272.94117647058823, "height": 101.17647058823529, "path": "summer-as-lv2.eyes-angry"}, + "eyes-happy": {"x": 23.029411764705884, "y": 24.631764705882354, "width": 272.94117647058823, "height": 101.17647058823529, "path": "summer-as-lv2.eyes-happy"}, + "eyes-shut": {"x": 23.029411764705884, "y": 24.631764705882354, "width": 272.94117647058823, "height": 101.17647058823529, "path": "summer-as-lv2.eyes-shut"} + }, + "eyes-happy-accessory": { + "eyes-happy-accessory": { + "x": 0.45823529411764496, "y": 1.135294117647058, "scaleX": 1.4, "scaleY": 1.4, "width": 98.82352941176471, "height": 103.52941176470588, "path": "summer-as-lv2.eyes-happy-accessory" + } + }, + "eyes-upper": {"eyes-upper": {"x": 23.617647058823536, "y": 24.33764705882352, "width": 371.7647058823529, "height": 171.76470588235296, "path": "summer-as-lv2.eyes-upper"}}, + "horn": {"horn": {"x": 87.95529411764704, "y": -6.411764705882362, "rotation": -90, "width": 263.5294117647059, "height": 178.82352941176472, "path": "summer-tb-lv2.horn"}}, "mouth": { - "mouth": {"x": -11.63, "y": 54.61, "width": 144, "height": 57, "path": "summer-as.mouth"}, - "mouth-bite": {"x": -1.13, "y": 39.61, "width": 167, "height": 99, "path": "summer-as.mouth-bite"}, - "mouth-open": {"x": -6.63, "y": 16.11, "width": 156, "height": 140, "path": "summer-as.mouth-open"}, - "mouth-smile": {"x": -1.63, "y": 47.61, "width": 166, "height": 65, "path": "summer-as.mouth-smile"} + "mouth": {"x": -43.205882352941174, "y": 23.043529411764702, "width": 209.41176470588235, "height": 122.3529411764706, "path": "summer-as-lv2.mouth"}, + "mouth-bite": {"x": -32.794117647058826, "y": 25.690588235294115, "width": 230.58823529411765, "height": 127.05882352941177, "path": "summer-as-lv2.mouth-bite"}, + "mouth-open": {"x": -37.91176470588236, "y": 16.80823529411765, "width": 218.82352941176472, "height": 138.8235294117647, "path": "summer-as-lv2.mouth-open"}, + "mouth-smile": {"x": -33.794117647058826, "y": 21.22, "width": 230.58823529411765, "height": 120.0, "path": "summer-as-lv2.mouth-smile"} }, "mouth-accessory": { "mouth-accessory": { @@ -13662,64 +28729,67 @@ 176, 110, 174, 176, 42, 178, 178, 108, 176, 178, 40, 180, 180, 106, 178, 180, 38, 182, 182, 104, 180, 182, 36, 184, 184, 102, 182, 184, 34, 186, 186, 100, 184, 186, 32, 188, 188, 98, 186, 188, 30, 190, 190, 138, 188, 190, 28, 192, 192, 140, 190, 192, 192, 146 ], - "width": 162, - "height": 162, - "path": "summer-as.mouth-accessory" + "width": 162.35294117647058, + "height": 162.35294117647058, + "path": "summer-as-lv2.mouth-accessory", + "x": 0.8235294117647101, + "y": 0.8235294117647101 } }, - "tail": {"tail": {"x": 113.64, "y": 3.45, "rotation": 12, "width": 225, "height": 225, "path": "summer-as.tail"}} + "tail": {"tail": {"x": 111.5964705882353, "y": 26.99, "rotation": 12, "width": 277.6470588235294, "height": 280.0, "path": "summer-as-lv2.tail"}} } } ], "events": {"hit": {}, "hit-buff": {}, "jump": {}, "start-attack": {}}, "keyAnimations": { - "activity/appear": "1023093953", - "activity/bath": "3305387968", - "attack/ranged/cast-fly": "4180526371", - "attack/ranged/cast-high": "164191126", - "attack/ranged/cast-low": "198813017", - "attack/ranged/cast-multi": "151119", - "attack/ranged/cast-tail": "3850719809", + "activity/appear": "2975056588", + "activity/bath": "4269852312", + "attack/ranged/cast-fly": "1964095857", + "attack/ranged/cast-high": "2755238029", + "attack/ranged/cast-low": "796766875", + "attack/ranged/cast-multi": "2912539256", + "attack/ranged/cast-tail": "515170597", "action/mix/ear-animation": "901954966", - "activity/eat-bite": "1137807767", - "activity/eat-chew": "1988236421", - "activity/entrance": "3768378365", - "defense/evade": "1735454995", - "activity/evolve": "649307630", + "activity/eat-bite": "1563829869", + "activity/eat-chew": "4174710305", + "activity/entrance": "636017429", + "defense/evade": "2335495519", + "activity/evolve": "3193680296", "action/mix/eyes-animation": "3799301307", - "battle/get-buff": "1455190363", - "battle/get-debuff": "606904312", - "defense/hit-by-normal": "2045974966", - "defense/hit-by-normal-crit": "2130010601", - "defense/hit-by-normal-dramatic": "3823092125", - "defense/hit-by-ranged-attack": "2224561612", - "defense/hit-with-shield": "390714790", - "attack/melee/horn-gore": "1327954218", - "attack/melee/mouth-bite": "2237748264", + "battle/get-buff": "3907351690", + "battle/get-debuff": "503738134", + "defense/hit-by-normal": "978716858", + "defense/hit-by-normal-crit": "3941256645", + "defense/hit-by-normal-dramatic": "2527908154", + "defense/hit-by-ranged-attack": "2207699263", + "defense/hit-with-shield": "3929030741", + "attack/melee/horn-gore": "672810168", + "attack/melee/mouth-bite": "103880736", "action/move-back": "3766271173", "action/move-forward": "2945160014", - "attack/melee/multi-attack": "3774600630", - "action/idle/normal": "1659336865", - "attack/melee/normal-attack": "3305373483", + "attack/melee/multi-attack": "3245081493", + "action/idle/normal": "2865608434", + "attack/melee/normal-attack": "3802408031", "action/mix/normal-mouth-animation": "1178295570", - "activity/prepare": "405864717", - "action/idle/random-01": "554401889", - "action/idle/random-02": "3634120758", - "action/idle/random-03": "2021333900", - "action/idle/random-04": "1003789695", + "action/idle/normal2": "3503981622", + "activity/prepare": "1112993905", + "action/idle/random-01": "4074297404", + "action/idle/random-02": "3457159700", + "action/idle/random-03": "1228132142", + "action/idle/random-04": "1416671293", "action/idle/random-05": "2745614147", - "action/run": "3942433225", + "action/run": "1751413398", "draft/run-origin": "237238075", - "attack/melee/shrimp": "3833448733", - "activity/sleep": "100562494", - "attack/melee/tail-multi-slap": "3317139533", - "attack/melee/tail-roll": "3108617565", - "attack/melee/tail-smash": "519942130", - "attack/melee/tail-thrash": "628713175", + "attack/melee/shrimp": "4284047619", + "activity/sleep": "3292250615", + "attack/melee/tail-multi-slap": "4247697367", + "attack/melee/tail-roll": "3634591874", + "attack/melee/tail-smash": "3663734631", + "attack/melee/tail-thrash": "1213410473", "activity/victory-pose-back-flip": "2227634241" } }, - "summer-tc": { + "summer-tc-lv2": { "bones": [ {"name": "@root"}, {"name": "@pivot-main", "parent": "@root"}, {"name": "@pivot-back", "parent": "@pivot-main", "x": 205, "y": 180, "color": "ff0101ff"}, {"name": "@pivot-center", "parent": "@pivot-back", "x": -215.11, "y": -5.25, "color": "ff0101ff"}, @@ -13741,32 +28811,32 @@ {"name": "leg-front-right-IK", "parent": "@pivot-main", "x": -195.99, "y": -10.21, "color": "ff3f00ff"}, {"name": "leg-front-left-IK", "parent": "@pivot-main", "x": 42.3, "y": -18.42, "color": "ff3f00ff"}, {"name": "leg-back-left-IK", "parent": "@pivot-main", "x": 208.57, "y": 1.35, "color": "ff3f00ff"}, {"name": "@ball", "parent": "@root", "y": 191, "color": "f3981bff"}, - {"name": "ball", "parent": "@ball", "y": -191, "color": "f4a729ff"}, {"name": "mouth-bubble", "parent": "@mouth", "x": -191.16, "y": -1.83}, + {"name": "ball", "parent": "@ball", "y": -191, "color": "f4a729ff"}, {"name": "mouth-bubble", "parent": "@mouth", "x": -248.49, "y": -1.83}, {"name": "mouth-accessory", "parent": "mouth-bubble", "x": -67.84, "y": 101.83}, {"name": "eyes-happy-accessory", "parent": "@eyes", "x": 142.51, "y": 62.21}, - {"name": "ear-right-bubble", "parent": "ear-right", "length": 40.07, "rotation": -179.99, "x": 184.94, "y": -20.48}, - {"name": "ear-left-bubble", "parent": "ear-left", "length": 48.54, "rotation": 176.27, "x": 190.98, "y": -21.07, "scaleX": 0.949}, + {"name": "ear-right-bubble", "parent": "ear-right", "length": 40.07, "rotation": -179.99, "x": 190.79, "y": -17.72}, + {"name": "ear-left-bubble", "parent": "ear-left", "length": 48.54, "rotation": 176.27, "x": 197.3, "y": -23.23, "scaleX": 0.949}, {"name": "ear-left-all-bubble", "parent": "ear-left", "length": 26.1, "rotation": 0.95, "x": -6.64, "y": -27.7, "color": "3002ffff"}, {"name": "ear-right-dot-01", "parent": "ear-left-all-bubble", "rotation": -90.95, "x": -13.64, "y": 22.67, "scaleX": 0.3508, "scaleY": 0.3508, "color": "2f9bffff"}, {"name": "ear-left-dot-01", "parent": "ear-left-all-bubble", "rotation": -90.95, "x": -28.82, "y": -24.72, "scaleX": 0.7755, "scaleY": 0.7755, "color": "2f9bffff"}, - {"name": "ear-right-bubble-02", "parent": "ear-right-bubble", "rotation": 86.99, "x": 63.76, "y": -22.96}, - {"name": "ear-right-bubble-03", "parent": "ear-right-bubble", "rotation": 86.99, "x": 64.99, "y": -1.59}, - {"name": "ear-right-bubble-04", "parent": "ear-right-bubble", "rotation": 86.99, "x": 66.12, "y": 19.85}, - {"name": "ear-left-bubble-02", "parent": "ear-left-bubble", "rotation": 93.73, "x": 68.81, "y": -22.89}, - {"name": "ear-left-bubble-03", "parent": "ear-left-bubble", "rotation": 93.73, "x": 70.45, "y": -0.4}, - {"name": "ear-left-bubble-04", "parent": "ear-left-bubble", "rotation": 93.73, "x": 65.87, "y": 22.28}, - {"name": "ear-right-bubble-05", "parent": "ear-right", "length": 40.07, "rotation": -179.99, "x": 184.94, "y": -20.48}, - {"name": "ear-right-bubble-06", "parent": "ear-right-bubble-05", "rotation": 86.99, "x": 63.76, "y": -22.96}, - {"name": "ear-right-bubble-07", "parent": "ear-right-bubble-05", "rotation": 86.99, "x": 64.99, "y": -1.59}, - {"name": "ear-right-bubble-08", "parent": "ear-right-bubble-05", "rotation": 86.99, "x": 66.12, "y": 19.85}, - {"name": "ear-left-bubble-05", "parent": "ear-left", "length": 48.54, "rotation": 176.27, "x": 190.98, "y": -21.07, "scaleX": 0.991}, - {"name": "ear-left-bubble-06", "parent": "ear-left-bubble-05", "rotation": 93.73, "x": 67.27, "y": -22.98}, - {"name": "ear-left-bubble-07", "parent": "ear-left-bubble-05", "rotation": 93.73, "x": 65.82, "y": -0.69}, - {"name": "ear-left-bubble-08", "parent": "ear-left-bubble-05", "rotation": 93.73, "x": 64.32, "y": 22.18}, + {"name": "ear-right-bubble-02", "parent": "ear-right-bubble", "rotation": 86.99, "x": 42.45, "y": -32.45}, + {"name": "ear-right-bubble-03", "parent": "ear-right-bubble", "rotation": 86.99, "x": 64.75, "y": -1.3}, + {"name": "ear-right-bubble-04", "parent": "ear-right-bubble", "rotation": 86.99, "x": 49.1, "y": 33.33}, + {"name": "ear-left-bubble-02", "parent": "ear-left-bubble", "rotation": 93.73, "x": 59.21, "y": -23.48}, + {"name": "ear-left-bubble-03", "parent": "ear-left-bubble", "rotation": 93.73, "x": 60.37, "y": 9.26}, + {"name": "ear-left-bubble-04", "parent": "ear-left-bubble", "rotation": 93.73, "x": 57.44, "y": 49.26}, + {"name": "ear-right-bubble-05", "parent": "ear-right", "length": 40.07, "rotation": -179.99, "x": 190.79, "y": -17.72}, + {"name": "ear-right-bubble-06", "parent": "ear-right-bubble-05", "rotation": 86.99, "x": 42.45, "y": -32.45}, + {"name": "ear-right-bubble-07", "parent": "ear-right-bubble-05", "rotation": 86.99, "x": 64.75, "y": -1.3}, + {"name": "ear-right-bubble-08", "parent": "ear-right-bubble-05", "rotation": 86.99, "x": 49.1, "y": 33.33}, + {"name": "ear-left-bubble-05", "parent": "ear-left", "length": 48.54, "rotation": 176.27, "x": 197.3, "y": -23.23, "scaleX": 0.991}, + {"name": "ear-left-bubble-06", "parent": "ear-left-bubble-05", "rotation": 93.73, "x": 58.06, "y": -23.58}, + {"name": "ear-left-bubble-07", "parent": "ear-left-bubble-05", "rotation": 93.73, "x": 56.15, "y": 8.97}, + {"name": "ear-left-bubble-08", "parent": "ear-left-bubble-05", "rotation": 93.73, "x": 56.24, "y": 49.17}, {"name": "ear-right-dot-02", "parent": "ear-left-all-bubble", "rotation": -95.73, "x": -18.26, "y": -8.1, "scaleX": 0.5668, "scaleY": 0.6813, "color": "2f9bffff"}, {"name": "ear-left-dot-02", "parent": "ear-left-all-bubble", "rotation": -88.74, "x": 8.57, "y": 59.72, "scaleX": 0.6577, "scaleY": 0.5996, "color": "2f9bffff"}, {"name": "ear-right-dot-03", "parent": "ear-left-all-bubble", "rotation": -87.96, "x": -25.76, "y": -45.18, "scaleX": 0.2583, "scaleY": 0.2881, "color": "2f9bffff"}, {"name": "ear-right-dot-04", "parent": "ear-left-all-bubble", "rotation": -88.51, "x": -27.05, "y": -31.17, "scaleX": 0.4361, "scaleY": 0.6365, "color": "2f9bffff"}, - {"name": "ear-right-dot-05", "parent": "ear-left-all-bubble", "rotation": -79.32, "x": -5.28, "y": 34.53, "scaleX": 0.5911, "scaleY": 0.8949, "color": "2f9bffff"}, + {"name": "ear-right-dot-05", "parent": "ear-left-all-bubble", "rotation": -94.07, "x": -5.28, "y": 34.53, "scaleX": 0.854, "scaleY": 0.6721, "color": "2f9bffff"}, {"name": "ear-left-dot-03", "parent": "ear-left-all-bubble", "rotation": -90.95, "x": -10.57, "y": 11.72, "scaleX": 0.8206, "scaleY": 0.8206, "color": "2f9bffff"}, {"name": "ear-left-dot-04", "parent": "ear-left-all-bubble", "rotation": -90.95, "x": 11.94, "y": 65.23, "scaleX": 0.7096, "scaleY": 0.7096, "color": "2f9bffff"}, {"name": "ear-left-dot-05", "parent": "ear-left-all-bubble", "rotation": -88.35, "x": 10.11, "y": 68.29, "scaleX": 0.4014, "scaleY": 0.366, "color": "2f9bffff"}, @@ -13775,7 +28845,7 @@ {"name": "ear-right-dot-07", "parent": "ear-left-all-bubble", "rotation": -96.07, "x": -32.28, "y": -4.86, "scaleX": 0.5668, "scaleY": 0.6813, "color": "2f9bffff"}, {"name": "ear-right-dot-08", "parent": "ear-left-all-bubble", "rotation": -90.23, "x": -18.31, "y": -61.25, "scaleX": 0.7405, "scaleY": 0.826, "color": "2f9bffff"}, {"name": "ear-right-dot-09", "parent": "ear-left-all-bubble", "rotation": -93.53, "x": -9.54, "y": 52.15, "scaleX": 0.2863, "scaleY": 0.3229, "color": "2f9bffff"}, - {"name": "ear-right-dot-10", "parent": "ear-left-all-bubble", "rotation": -81.97, "x": -31.43, "y": 21.83, "scaleX": 0.5911, "scaleY": 0.8949, "color": "2f9bffff"}, + {"name": "ear-right-dot-10", "parent": "ear-left-all-bubble", "rotation": -111.97, "x": -31.43, "y": 21.83, "scaleX": 0.5911, "scaleY": 0.3731, "color": "2f9bffff"}, {"name": "ear-right-all-bubble", "parent": "ear-right", "length": 26.1, "rotation": 3.44, "x": -10.08, "y": -8.05, "color": "3002ffff"}, {"name": "ear-right-dot-11", "parent": "ear-right-all-bubble", "rotation": -96.44, "x": 10.27, "y": -24.86, "scaleX": 0.3508, "scaleY": 0.3508, "color": "2f9bffff"}, {"name": "ear-left-dot-07", "parent": "ear-right-all-bubble", "rotation": -96.44, "x": 27.18, "y": -39.33, "scaleX": 0.7755, "scaleY": 0.7755, "color": "2f9bffff"}, @@ -13820,11 +28890,7 @@ {"name": "ear-right-dot-20", "bone": "ear-right-dot-20", "color": "ffffff00", "attachment": "ear-right-dot"}, {"name": "ear-right-bubble", "bone": "ear-right-bubble", "color": "fcae10ff", "attachment": "ear-right-bubble"}, {"name": "ear-right-bubble-02", "bone": "ear-right-bubble-05", "attachment": "ear-right-bubble"}, {"name": "ear-right-upper", "bone": "ear-right", "attachment": "ear-right-upper"}, - {"name": "leg-front-left", "bone": "@leg-front-left", "attachment": "summer-leg-front-left"}, {"name": "eyes", "bone": "@eyes", "attachment": "eyes"}, - {"name": "eyes-light-dot", "bone": "eyes-light-dot", "attachment": "eye-light-dot"}, {"name": "eyes-light-dot-02", "bone": "eyes-light-dot-02", "attachment": "eye-light-dot"}, - {"name": "eyes-light-left", "bone": "eyes-light-left", "color": "fff96500", "attachment": "light", "blend": "additive"}, - {"name": "eyes-light-right", "bone": "eyes-light-right", "color": "fff96500", "attachment": "light", "blend": "additive"}, {"name": "eyes-upper", "bone": "@eyes", "attachment": "eyes-upper"}, - {"name": "mouth", "bone": "@mouth", "attachment": "mouth"}, {"name": "horn", "bone": "horn", "attachment": "horn"}, + {"name": "leg-front-left", "bone": "@leg-front-left", "attachment": "summer-leg-front-left"}, {"name": "horn", "bone": "horn", "attachment": "horn"}, {"name": "ear-left-under", "bone": "ear-left", "attachment": "ear-left-under"}, {"name": "ear-left-dot-01", "bone": "ear-left-dot-01", "color": "ffffff00", "attachment": "ear-left-dot"}, {"name": "ear-left-dot-04", "bone": "ear-left-dot-04", "color": "ffffff00", "attachment": "ear-left-dot"}, {"name": "ear-left-dot-03", "bone": "ear-left-dot-03", "color": "ffffff00", "attachment": "ear-left-dot"}, @@ -13843,8 +28909,11 @@ {"name": "ear-right-dot-10", "bone": "ear-right-dot-10", "color": "ffffff00", "attachment": "ear-right-dot"}, {"name": "ear-left-bubble", "bone": "ear-left-bubble", "color": "fcae10ff", "attachment": "ear-left-bubble"}, {"name": "ear-left-bubble-02", "bone": "ear-left-bubble-05", "attachment": "ear-left-bubble"}, {"name": "ear-left-upper", "bone": "ear-left", "attachment": "ear-left-upper"}, - {"name": "eyes-happy-accessory", "bone": "eyes-happy-accessory", "color": "ffffff00", "attachment": "eyes-happy-accessory", "blend": "additive"}, - {"name": "mouth-accessory", "bone": "mouth-accessory", "color": "ffffff00", "attachment": "mouth-accessory"} + {"name": "eyes", "bone": "@eyes", "attachment": "eyes"}, {"name": "eyes-light-dot", "bone": "eyes-light-dot"}, {"name": "eyes-light-dot-02", "bone": "eyes-light-dot-02"}, + {"name": "eyes-light-left", "bone": "eyes-light-left", "color": "fff96500", "attachment": "light", "blend": "additive"}, + {"name": "eyes-light-right", "bone": "eyes-light-right", "color": "fff96500", "attachment": "light", "blend": "additive"}, {"name": "eyes-upper", "bone": "@eyes", "attachment": "eyes-upper"}, + {"name": "mouth", "bone": "@mouth", "attachment": "mouth"}, {"name": "mouth-accessory", "bone": "mouth-accessory", "color": "ffffff00", "attachment": "mouth-accessory"}, + {"name": "eyes-happy-accessory", "bone": "eyes-happy-accessory", "color": "ffffff00", "attachment": "eyes-happy-accessory", "blend": "additive"} ], "ik": [ {"name": "leg-back-left-IK", "order": 3, "bones": ["@leg-back-left"], "target": "leg-back-left-IK"}, @@ -13856,7 +28925,7 @@ { "name": "default", "attachments": { - "back": {"back": {"x": 69.83, "y": -8.69, "rotation": -58, "width": 244, "height": 229, "path": "summer-tc.back"}}, + "back": {"back": {"x": 109.17235294117647, "y": 19.543529411764695, "rotation": -58, "width": 308.2352941176471, "height": 322.3529411764706, "path": "summer-tc-lv2.back"}}, "ear-left-bubble": { "ear-left-bubble": { "type": "mesh", @@ -14006,9 +29075,11 @@ 264, 294, 294, 266, 42, 44, 44, 46, 294, 44, 266, 296, 296, 268, 38, 40, 40, 42, 296, 40, 268, 298, 298, 270, 34, 36, 36, 38, 298, 36, 270, 300, 300, 272, 30, 32, 32, 34, 300, 32, 272, 302, 302, 274, 26, 28, 28, 30, 302, 28, 274, 304, 304, 276, 22, 24, 24, 26, 304, 24, 276, 306, 306, 278, 18, 20, 20, 22, 306, 20, 280, 308, 308, 282, 12, 14, 14, 16, 308, 14 ], - "width": 88, - "height": 80, - "path": "summer-a.ear-left-bubble" + "width": 87.05882352941177, + "height": 80.0, + "path": "summer-a-lv2.ear-left-bubble", + "x": 0.470588235294116, + "y": 0.0 } }, "ear-left-bubble-02": { @@ -14160,49 +29231,78 @@ 264, 294, 294, 266, 42, 44, 44, 46, 294, 44, 266, 296, 296, 268, 38, 40, 40, 42, 296, 40, 268, 298, 298, 270, 34, 36, 36, 38, 298, 36, 270, 300, 300, 272, 30, 32, 32, 34, 300, 32, 272, 302, 302, 274, 26, 28, 28, 30, 302, 28, 274, 304, 304, 276, 22, 24, 24, 26, 304, 24, 276, 306, 306, 278, 18, 20, 20, 22, 306, 20, 280, 308, 308, 282, 12, 14, 14, 16, 308, 14 ], - "width": 88, - "height": 80, - "path": "summer-a.ear-left-bubble" - } - }, - "ear-left-dot-01": {"ear-left-dot": {"x": 0.12, "y": 0.57, "rotation": -0.95, "width": 15, "height": 16, "path": "summer-a.ear-left-dot"}}, - "ear-left-dot-02": {"ear-left-dot": {"x": 0.12, "y": 0.57, "rotation": -0.95, "width": 15, "height": 16, "path": "summer-a.ear-left-dot"}}, - "ear-left-dot-03": {"ear-left-dot": {"x": 0.12, "y": 0.57, "rotation": -0.95, "width": 15, "height": 16, "path": "summer-a.ear-left-dot"}}, - "ear-left-dot-04": {"ear-left-dot": {"x": 0.12, "y": 0.57, "rotation": -0.95, "width": 15, "height": 16, "path": "summer-a.ear-left-dot"}}, - "ear-left-dot-05": {"ear-left-dot": {"x": 0.12, "y": 0.57, "rotation": -0.95, "width": 15, "height": 16, "path": "summer-a.ear-left-dot"}}, - "ear-left-dot-06": {"ear-left-dot": {"x": 0.12, "y": 0.57, "rotation": -0.95, "width": 15, "height": 16, "path": "summer-a.ear-left-dot"}}, - "ear-left-dot-07": {"ear-left-dot": {"x": 0.12, "y": 0.57, "rotation": -0.95, "width": 15, "height": 16, "path": "summer-a.ear-left-dot"}}, - "ear-left-dot-08": {"ear-left-dot": {"x": 0.12, "y": 0.57, "rotation": -0.95, "width": 15, "height": 16, "path": "summer-a.ear-left-dot"}}, - "ear-left-dot-09": {"ear-left-dot": {"x": 0.12, "y": 0.57, "rotation": -0.95, "width": 15, "height": 16, "path": "summer-a.ear-left-dot"}}, - "ear-left-dot-10": {"ear-left-dot": {"x": 0.12, "y": 0.57, "rotation": -0.95, "width": 15, "height": 16, "path": "summer-a.ear-left-dot"}}, - "ear-left-dot-11": {"ear-left-dot": {"x": 0.12, "y": 0.57, "rotation": -0.95, "width": 15, "height": 16, "path": "summer-a.ear-left-dot"}}, - "ear-left-dot-12": {"ear-left-dot": {"x": 0.12, "y": 0.57, "rotation": -0.95, "width": 15, "height": 16, "path": "summer-a.ear-left-dot"}}, - "ear-left-under": {"ear-left-under": {"x": 84.11, "y": -23.37, "rotation": -90, "width": 130, "height": 220, "path": "summer-a.ear-left-under"}}, - "ear-left-upper": {"ear-left-upper": {"x": 85.61, "y": -23.87, "rotation": -90, "width": 145, "height": 231, "path": "summer-a.ear-left-upper"}}, + "width": 87.05882352941177, + "height": 80.0, + "path": "summer-a-lv2.ear-left-bubble", + "x": 0.470588235294116, + "y": 0.0 + } + }, + "ear-left-dot-01": { + "ear-left-dot": {"x": 0.5611764705882355, "y": 1.5111764705882353, "rotation": -0.95, "width": 14.117647058823529, "height": 14.117647058823529, "path": "summer-a-lv2.ear-left-dot"} + }, + "ear-left-dot-02": { + "ear-left-dot": {"x": 0.5611764705882355, "y": 1.5111764705882353, "rotation": -0.95, "width": 14.117647058823529, "height": 14.117647058823529, "path": "summer-a-lv2.ear-left-dot"} + }, + "ear-left-dot-03": { + "ear-left-dot": {"x": 0.5611764705882355, "y": 1.5111764705882353, "rotation": -0.95, "width": 14.117647058823529, "height": 14.117647058823529, "path": "summer-a-lv2.ear-left-dot"} + }, + "ear-left-dot-04": { + "ear-left-dot": {"x": 0.5611764705882355, "y": 1.5111764705882353, "rotation": -0.95, "width": 14.117647058823529, "height": 14.117647058823529, "path": "summer-a-lv2.ear-left-dot"} + }, + "ear-left-dot-05": { + "ear-left-dot": {"x": 0.5611764705882355, "y": 1.5111764705882353, "rotation": -0.95, "width": 14.117647058823529, "height": 14.117647058823529, "path": "summer-a-lv2.ear-left-dot"} + }, + "ear-left-dot-06": { + "ear-left-dot": {"x": 0.5611764705882355, "y": 1.5111764705882353, "rotation": -0.95, "width": 14.117647058823529, "height": 14.117647058823529, "path": "summer-a-lv2.ear-left-dot"} + }, + "ear-left-dot-07": { + "ear-left-dot": {"x": 0.5611764705882355, "y": 1.5111764705882353, "rotation": -0.95, "width": 14.117647058823529, "height": 14.117647058823529, "path": "summer-a-lv2.ear-left-dot"} + }, + "ear-left-dot-08": { + "ear-left-dot": {"x": 0.5611764705882355, "y": 1.5111764705882353, "rotation": -0.95, "width": 14.117647058823529, "height": 14.117647058823529, "path": "summer-a-lv2.ear-left-dot"} + }, + "ear-left-dot-09": { + "ear-left-dot": {"x": 0.5611764705882355, "y": 1.5111764705882353, "rotation": -0.95, "width": 14.117647058823529, "height": 14.117647058823529, "path": "summer-a-lv2.ear-left-dot"} + }, + "ear-left-dot-10": { + "ear-left-dot": {"x": 0.5611764705882355, "y": 1.5111764705882353, "rotation": -0.95, "width": 14.117647058823529, "height": 14.117647058823529, "path": "summer-a-lv2.ear-left-dot"} + }, + "ear-left-dot-11": { + "ear-left-dot": {"x": 0.5611764705882355, "y": 1.5111764705882353, "rotation": -0.95, "width": 14.117647058823529, "height": 14.117647058823529, "path": "summer-a-lv2.ear-left-dot"} + }, + "ear-left-dot-12": { + "ear-left-dot": {"x": 0.5611764705882355, "y": 1.5111764705882353, "rotation": -0.95, "width": 14.117647058823529, "height": 14.117647058823529, "path": "summer-a-lv2.ear-left-dot"} + }, + "ear-left-under": { + "ear-left-under": {"x": 85.09176470588235, "y": -29.18176470588236, "rotation": -90, "width": 141.1764705882353, "height": 218.82352941176472, "path": "summer-a-lv2.ear-left-under"} + }, + "ear-left-upper": { + "ear-left-upper": {"x": 99.70941176470589, "y": -26.681764705882347, "rotation": -90, "width": 152.94117647058823, "height": 258.8235294117647, "path": "summer-a-lv2.ear-left-upper"} + }, "ear-right-bubble": { "ear-right-bubble": { "type": "mesh", "uvs": [ - 0.93928, 0.50958, 0.95558, 0.59885, 0.96791, 0.66638, 0.98006, 0.73289, 1, 0.84205, 1, 0.89818, 1, 0.9625, 0.9567, 0.9625, 0.9208, 0.9625, 0.88771, 0.9625, 0.83969, 0.9625, 0.79967, - 0.9625, 0.76574, 0.9625, 0.73418, 0.9625, 0.69508, 0.9625, 0.6661, 0.9625, 0.6319, 0.9625, 0.6046, 0.9625, 0.57454, 0.9625, 0.53755, 0.9625, 0.50387, 0.9625, 0.47341, 0.9625, - 0.44466, 0.9625, 0.41233, 0.9625, 0.37317, 0.9625, 0.33787, 0.9625, 0.30333, 0.9625, 0.2648, 0.9625, 0.21937, 0.9625, 0.17434, 0.9625, 0.12959, 0.9625, 0.08769, 0.9625, 0, 0.9625, - 0.02085, 0.89779, 0.04055, 0.83664, 0.06626, 0.75682, 0.08854, 0.68766, 0.11527, 0.60468, 0.13788, 0.53451, 0.35753, 0.0375, 0.43128, 0.0375, 0.52161, 0.0375, 0.60662, 0.0375, - 0.67954, 0.0375, 0.54109, 0.5336, 0.30907, 0.53412, 0.75362, 0.52077, 0.84707, 0.51514, 0.2081, 0.53435, 0.42115, 0.53387, 0.64269, 0.52747, 0.1892, 0.60156, 0.3018, 0.60447, - 0.41972, 0.60346, 0.54053, 0.60135, 0.64648, 0.59785, 0.76151, 0.59644, 0.87262, 0.58988, 0.16806, 0.67676, 0.29497, 0.67061, 0.41838, 0.66857, 0.54, 0.66508, 0.65011, 0.66538, - 0.7681, 0.65967, 0.89666, 0.66021, 0.14733, 0.75044, 0.28705, 0.74721, 0.41688, 0.74143, 0.53942, 0.73556, 0.6538, 0.73393, 0.7757, 0.7326, 0.91933, 0.7265, 0.12337, 0.83566, 0.2782, - 0.83283, 0.4151, 0.82771, 0.53871, 0.82207, 0.65852, 0.82169, 0.7847, 0.8189, 0.95379, 0.82732, 0.97627, 0.89309, 0.79208, 0.88971, 0.66236, 0.89294, 0.5381, 0.89586, 0.41375, - 0.89349, 0.2717, 0.89571, 0.10571, 0.89844, 0.53197, 0.30141, 0.39415, 0.1884, 0.65961, 0.2117, 0.25473, 0.53425, 0.24202, 0.60293, 0.22911, 0.6738, 0.21379, 0.7489, 0.19729, - 0.83431, 0.18704, 0.8971, 0.36352, 0.534, 0.36013, 0.60397, 0.35748, 0.66957, 0.35288, 0.74428, 0.34802, 0.83022, 0.34383, 0.89458, 0.48024, 0.53373, 0.47847, 0.60244, 0.47433, - 0.66696, 0.47563, 0.73861, 0.47402, 0.82502, 0.47337, 0.89463, 0.58955, 0.53067, 0.59344, 0.5996, 0.59605, 0.66523, 0.5961, 0.73475, 0.60032, 0.82187, 0.60296, 0.89434, 0.69391, - 0.52438, 0.69915, 0.59721, 0.70691, 0.66263, 0.71206, 0.7333, 0.71954, 0.82034, 0.72813, 0.8913, 0.80125, 0.5179, 0.81428, 0.59333, 0.8348, 0.65995, 0.84793, 0.72953, 0.87862, - 0.82358, 0.89305, 0.89156, 0.19669, 0.67537, 0.17782, 0.74974, 0.1594, 0.835, 0.1429, 0.89783, 0.26012, 0.6723, 0.25017, 0.74806, 0.23685, 0.83359, 0.22589, 0.89647, 0.30659, - 0.89517, 0.3131, 0.83153, 0.31569, 0.74593, 0.32231, 0.67016, 0.38717, 0.66908, 0.38553, 0.74282, 0.38068, 0.829, 0.37648, 0.89407, 0.44462, 0.89408, 0.44322, 0.82643, 0.44458, - 0.7401, 0.44621, 0.66777, 0.50711, 0.66602, 0.50646, 0.73714, 0.50582, 0.82357, 0.50482, 0.89523, 0.57134, 0.89508, 0.5687, 0.82197, 0.56865, 0.73514, 0.5654, 0.66515, 0.62192, - 0.6653, 0.6236, 0.73436, 0.62525, 0.8218, 0.62839, 0.89374, 0.69427, 0.89215, 0.76244, 0.89045, 0.84047, 0.89059, 0.93306, 0.89229, 0.91732, 0.8255, 0.82617, 0.82097, 0.75013, - 0.81967, 0.6863, 0.82108, 0.68017, 0.73364, 0.74166, 0.73297, 0.80979, 0.73115, 0.88285, 0.72805, 0.86581, 0.66008, 0.79931, 0.6598, 0.73613, 0.66121, 0.67214, 0.66431, 0.09776, - 0.92671, 0.13724, 0.92534, 0.1817, 0.92459, 0.22313, 0.92439, 0.26892, 0.92268, 0.30526, 0.92265, 0.34139, 0.92236, 0.3751, 0.92252, 0.41313, 0.92351, 0.44464, 0.92289, 0.47339, - 0.92339, 0.5044, 0.9248, 0.53787, 0.92389, 0.57268, 0.92341, 0.60366, 0.9233, 0.62995, 0.92432, 0.66398, 0.92316, 0.69464, 0.92383, 0.73085, 0.92333, 0.76403, 0.92521, 0.79572, - 0.92461, 0.84011, 0.92404, 0.89075, 0.92209, 0.92774, 0.92274, 0.96706, 0.92576 + 0.93928, 0.51035, 0.95558, 0.60687, 0.96791, 0.67987, 0.98006, 0.75177, 1, 0.86979, 1, 0.93047, 1, 1, 0.9567, 1, 0.9208, 1, 0.88771, 1, 0.83969, 1, 0.79967, 1, 0.76574, 1, 0.73418, + 1, 0.69508, 1, 0.6661, 1, 0.6319, 1, 0.6046, 1, 0.57454, 1, 0.53755, 1, 0.50387, 1, 0.47341, 1, 0.44466, 1, 0.41233, 1, 0.37317, 1, 0.33787, 1, 0.30333, 1, 0.2648, 1, 0.21937, 1, + 0.17434, 1, 0.12959, 1, 0.08769, 1, 0, 1, 0.02085, 0.93004, 0.04055, 0.86394, 0.06626, 0.77764, 0.08854, 0.70287, 0.11527, 0.61317, 0.13788, 0.53731, 0.35753, 0, 0.43128, 0, 0.52161, + 0, 0.60662, 0, 0.67954, 0, 0.54109, 0.53632, 0.30907, 0.53689, 0.75362, 0.52246, 0.84707, 0.51636, 0.2081, 0.53714, 0.42115, 0.53662, 0.64269, 0.52969, 0.1892, 0.6098, 0.3018, + 0.61294, 0.41972, 0.61185, 0.54053, 0.60957, 0.64648, 0.60579, 0.76151, 0.60426, 0.87262, 0.59717, 0.16806, 0.69109, 0.29497, 0.68444, 0.41838, 0.68224, 0.54, 0.67846, 0.65011, + 0.67878, 0.7681, 0.67261, 0.89666, 0.6732, 0.14733, 0.77075, 0.28705, 0.76725, 0.41688, 0.761, 0.53942, 0.75466, 0.6538, 0.7529, 0.7757, 0.75146, 0.91933, 0.74487, 0.12337, 0.86287, + 0.2782, 0.85982, 0.4151, 0.85429, 0.53871, 0.84818, 0.65852, 0.84778, 0.7847, 0.84476, 0.95379, 0.85385, 0.97627, 0.92496, 0.79208, 0.9213, 0.66236, 0.9248, 0.5381, 0.92796, 0.41375, + 0.92539, 0.2717, 0.9278, 0.10571, 0.93074, 0.53197, 0.28531, 0.39415, 0.16313, 0.65961, 0.18832, 0.25473, 0.53703, 0.24202, 0.61127, 0.22911, 0.68789, 0.21379, 0.76908, 0.19729, + 0.86141, 0.18704, 0.9293, 0.36352, 0.53676, 0.36013, 0.6124, 0.35748, 0.68332, 0.35288, 0.76408, 0.34802, 0.857, 0.34383, 0.92658, 0.48024, 0.53647, 0.47847, 0.61074, 0.47433, + 0.6805, 0.47563, 0.75796, 0.47402, 0.85138, 0.47337, 0.92662, 0.58955, 0.53316, 0.59344, 0.60768, 0.59605, 0.67863, 0.5961, 0.75379, 0.60032, 0.84797, 0.60296, 0.92631, 0.69391, + 0.52635, 0.69915, 0.60509, 0.70691, 0.67581, 0.71206, 0.75221, 0.71954, 0.84632, 0.72813, 0.92303, 0.80125, 0.51935, 0.81428, 0.60089, 0.8348, 0.67292, 0.84793, 0.74814, 0.87862, + 0.84981, 0.89305, 0.92331, 0.19669, 0.68959, 0.17782, 0.76999, 0.1594, 0.86216, 0.1429, 0.93008, 0.26012, 0.68627, 0.25017, 0.76817, 0.23685, 0.86063, 0.22589, 0.92861, 0.30659, + 0.92721, 0.3131, 0.85841, 0.31569, 0.76587, 0.32231, 0.68395, 0.38717, 0.68279, 0.38553, 0.76251, 0.38068, 0.85568, 0.37648, 0.92602, 0.44462, 0.92603, 0.44322, 0.8529, 0.44458, + 0.75957, 0.44621, 0.68137, 0.50711, 0.67948, 0.50646, 0.75636, 0.50582, 0.84981, 0.50482, 0.92727, 0.57134, 0.92712, 0.5687, 0.84808, 0.56865, 0.75421, 0.5654, 0.67854, 0.62192, + 0.6787, 0.6236, 0.75336, 0.62525, 0.84789, 0.62839, 0.92567, 0.69427, 0.92394, 0.76244, 0.9221, 0.84047, 0.92226, 0.93306, 0.9241, 0.91732, 0.85189, 0.82617, 0.84699, 0.75013, + 0.84559, 0.6863, 0.84711, 0.68017, 0.75259, 0.74166, 0.75186, 0.80979, 0.74989, 0.88285, 0.74654, 0.86581, 0.67306, 0.79931, 0.67276, 0.73613, 0.67429, 0.67214, 0.67763, 0.09776, + 0.96131, 0.13724, 0.95982, 0.1817, 0.95902, 0.22313, 0.9588, 0.26892, 0.95695, 0.30526, 0.95692, 0.34139, 0.95661, 0.3751, 0.95678, 0.41313, 0.95785, 0.44464, 0.95718, 0.47339, + 0.95772, 0.5044, 0.95925, 0.53787, 0.95826, 0.57268, 0.95774, 0.60366, 0.95762, 0.62995, 0.95872, 0.66398, 0.95747, 0.69464, 0.9582, 0.73085, 0.95766, 0.76403, 0.95969, 0.79572, + 0.95904, 0.84011, 0.95843, 0.89075, 0.95631, 0.92774, 0.95702, 0.96706, 0.96028 ], "triangles": [ 8, 196, 7, 9, 195, 8, 8, 195, 196, 10, 194, 9, 9, 194, 195, 10, 11, 194, 12, 193, 11, 11, 193, 194, 13, 192, 12, 12, 192, 193, 14, 191, 13, 13, 191, 192, 15, 190, 14, 14, 190, 191, @@ -14370,35 +29470,36 @@ 382, 382, 236, 380, 382, 24, 384, 384, 316, 382, 384, 22, 386, 386, 160, 384, 386, 20, 388, 388, 318, 386, 388, 18, 390, 390, 248, 388, 390, 16, 392, 392, 320, 390, 392, 14, 394, 394, 158, 392, 394 ], - "width": 83, - "height": 74, - "path": "summer-a.ear-right-bubble" + "width": 82.3529411764706, + "height": 72.94117647058823, + "path": "summer-a-lv2.ear-right-bubble", + "x": 0.32352941176470296, + "y": 0.529411764705884 } }, "ear-right-bubble-02": { "ear-right-bubble": { "type": "mesh", "uvs": [ - 0.93928, 0.50958, 0.95558, 0.59885, 0.96791, 0.66638, 0.98006, 0.73289, 1, 0.84205, 1, 0.89818, 1, 0.9625, 0.9567, 0.9625, 0.9208, 0.9625, 0.88771, 0.9625, 0.83969, 0.9625, 0.79967, - 0.9625, 0.76574, 0.9625, 0.73418, 0.9625, 0.69508, 0.9625, 0.6661, 0.9625, 0.6319, 0.9625, 0.6046, 0.9625, 0.57454, 0.9625, 0.53755, 0.9625, 0.50387, 0.9625, 0.47341, 0.9625, - 0.44466, 0.9625, 0.41233, 0.9625, 0.37317, 0.9625, 0.33787, 0.9625, 0.30333, 0.9625, 0.2648, 0.9625, 0.21937, 0.9625, 0.17434, 0.9625, 0.12959, 0.9625, 0.08769, 0.9625, 0, 0.9625, - 0.02085, 0.89779, 0.04055, 0.83664, 0.06626, 0.75682, 0.08854, 0.68766, 0.11527, 0.60468, 0.13788, 0.53451, 0.35753, 0.0375, 0.43128, 0.0375, 0.52161, 0.0375, 0.60662, 0.0375, - 0.67954, 0.0375, 0.54109, 0.5336, 0.30907, 0.53412, 0.75362, 0.52077, 0.84707, 0.51514, 0.2081, 0.53435, 0.42115, 0.53387, 0.64269, 0.52747, 0.1892, 0.60156, 0.3018, 0.60447, - 0.41972, 0.60346, 0.54053, 0.60135, 0.64648, 0.59785, 0.76151, 0.59644, 0.87262, 0.58988, 0.16806, 0.67676, 0.29497, 0.67061, 0.41838, 0.66857, 0.54, 0.66508, 0.65011, 0.66538, - 0.7681, 0.65967, 0.89666, 0.66021, 0.14733, 0.75044, 0.28705, 0.74721, 0.41688, 0.74143, 0.53942, 0.73556, 0.6538, 0.73393, 0.7757, 0.7326, 0.91933, 0.7265, 0.12337, 0.83566, 0.2782, - 0.83283, 0.4151, 0.82771, 0.53871, 0.82207, 0.65852, 0.82169, 0.7847, 0.8189, 0.95379, 0.82732, 0.97627, 0.89309, 0.79208, 0.88971, 0.66236, 0.89294, 0.5381, 0.89586, 0.41375, - 0.89349, 0.2717, 0.89571, 0.10571, 0.89844, 0.53197, 0.30141, 0.39415, 0.1884, 0.65961, 0.2117, 0.25473, 0.53425, 0.24202, 0.60293, 0.22911, 0.6738, 0.21379, 0.7489, 0.19729, - 0.83431, 0.18704, 0.8971, 0.36352, 0.534, 0.36013, 0.60397, 0.35748, 0.66957, 0.35288, 0.74428, 0.34802, 0.83022, 0.34383, 0.89458, 0.48024, 0.53373, 0.47847, 0.60244, 0.47433, - 0.66696, 0.47563, 0.73861, 0.47402, 0.82502, 0.47337, 0.89463, 0.58955, 0.53067, 0.59344, 0.5996, 0.59605, 0.66523, 0.5961, 0.73475, 0.60032, 0.82187, 0.60296, 0.89434, 0.69391, - 0.52438, 0.69915, 0.59721, 0.70691, 0.66263, 0.71206, 0.7333, 0.71954, 0.82034, 0.72813, 0.8913, 0.80125, 0.5179, 0.81428, 0.59333, 0.8348, 0.65995, 0.84793, 0.72953, 0.87862, - 0.82358, 0.89305, 0.89156, 0.19669, 0.67537, 0.17782, 0.74974, 0.1594, 0.835, 0.1429, 0.89783, 0.26012, 0.6723, 0.25017, 0.74806, 0.23685, 0.83359, 0.22589, 0.89647, 0.30659, - 0.89517, 0.3131, 0.83153, 0.31569, 0.74593, 0.32231, 0.67016, 0.38717, 0.66908, 0.38553, 0.74282, 0.38068, 0.829, 0.37648, 0.89407, 0.44462, 0.89408, 0.44322, 0.82643, 0.44458, - 0.7401, 0.44621, 0.66777, 0.50711, 0.66602, 0.50646, 0.73714, 0.50582, 0.82357, 0.50482, 0.89523, 0.57134, 0.89508, 0.5687, 0.82197, 0.56865, 0.73514, 0.5654, 0.66515, 0.62192, - 0.6653, 0.6236, 0.73436, 0.62525, 0.8218, 0.62839, 0.89374, 0.69427, 0.89215, 0.76244, 0.89045, 0.84047, 0.89059, 0.93306, 0.89229, 0.91732, 0.8255, 0.82617, 0.82097, 0.75013, - 0.81967, 0.6863, 0.82108, 0.68017, 0.73364, 0.74166, 0.73297, 0.80979, 0.73115, 0.88285, 0.72805, 0.86581, 0.66008, 0.79931, 0.6598, 0.73613, 0.66121, 0.67214, 0.66431, 0.09776, - 0.92671, 0.13724, 0.92534, 0.1817, 0.92459, 0.22313, 0.92439, 0.26892, 0.92268, 0.30526, 0.92265, 0.34139, 0.92236, 0.3751, 0.92252, 0.41313, 0.92351, 0.44464, 0.92289, 0.47339, - 0.92339, 0.5044, 0.9248, 0.53787, 0.92389, 0.57268, 0.92341, 0.60366, 0.9233, 0.62995, 0.92432, 0.66398, 0.92316, 0.69464, 0.92383, 0.73085, 0.92333, 0.76403, 0.92521, 0.79572, - 0.92461, 0.84011, 0.92404, 0.89075, 0.92209, 0.92774, 0.92274, 0.96706, 0.92576 + 0.93928, 0.51035, 0.95558, 0.60687, 0.96791, 0.67987, 0.98006, 0.75177, 1, 0.86979, 1, 0.93047, 1, 1, 0.9567, 1, 0.9208, 1, 0.88771, 1, 0.83969, 1, 0.79967, 1, 0.76574, 1, 0.73418, + 1, 0.69508, 1, 0.6661, 1, 0.6319, 1, 0.6046, 1, 0.57454, 1, 0.53755, 1, 0.50387, 1, 0.47341, 1, 0.44466, 1, 0.41233, 1, 0.37317, 1, 0.33787, 1, 0.30333, 1, 0.2648, 1, 0.21937, 1, + 0.17434, 1, 0.12959, 1, 0.08769, 1, 0, 1, 0.02085, 0.93004, 0.04055, 0.86394, 0.06626, 0.77764, 0.08854, 0.70287, 0.11527, 0.61317, 0.13788, 0.53731, 0.35753, 0, 0.43128, 0, 0.52161, + 0, 0.60662, 0, 0.67954, 0, 0.54109, 0.53632, 0.30907, 0.53689, 0.75362, 0.52246, 0.84707, 0.51636, 0.2081, 0.53714, 0.42115, 0.53662, 0.64269, 0.52969, 0.1892, 0.6098, 0.3018, + 0.61294, 0.41972, 0.61185, 0.54053, 0.60957, 0.64648, 0.60579, 0.76151, 0.60426, 0.87262, 0.59717, 0.16806, 0.69109, 0.29497, 0.68444, 0.41838, 0.68224, 0.54, 0.67846, 0.65011, + 0.67878, 0.7681, 0.67261, 0.89666, 0.6732, 0.14733, 0.77075, 0.28705, 0.76725, 0.41688, 0.761, 0.53942, 0.75466, 0.6538, 0.7529, 0.7757, 0.75146, 0.91933, 0.74487, 0.12337, 0.86287, + 0.2782, 0.85982, 0.4151, 0.85429, 0.53871, 0.84818, 0.65852, 0.84778, 0.7847, 0.84476, 0.95379, 0.85385, 0.97627, 0.92496, 0.79208, 0.9213, 0.66236, 0.9248, 0.5381, 0.92796, 0.41375, + 0.92539, 0.2717, 0.9278, 0.10571, 0.93074, 0.53197, 0.28531, 0.39415, 0.16313, 0.65961, 0.18832, 0.25473, 0.53703, 0.24202, 0.61127, 0.22911, 0.68789, 0.21379, 0.76908, 0.19729, + 0.86141, 0.18704, 0.9293, 0.36352, 0.53676, 0.36013, 0.6124, 0.35748, 0.68332, 0.35288, 0.76408, 0.34802, 0.857, 0.34383, 0.92658, 0.48024, 0.53647, 0.47847, 0.61074, 0.47433, + 0.6805, 0.47563, 0.75796, 0.47402, 0.85138, 0.47337, 0.92662, 0.58955, 0.53316, 0.59344, 0.60768, 0.59605, 0.67863, 0.5961, 0.75379, 0.60032, 0.84797, 0.60296, 0.92631, 0.69391, + 0.52635, 0.69915, 0.60509, 0.70691, 0.67581, 0.71206, 0.75221, 0.71954, 0.84632, 0.72813, 0.92303, 0.80125, 0.51935, 0.81428, 0.60089, 0.8348, 0.67292, 0.84793, 0.74814, 0.87862, + 0.84981, 0.89305, 0.92331, 0.19669, 0.68959, 0.17782, 0.76999, 0.1594, 0.86216, 0.1429, 0.93008, 0.26012, 0.68627, 0.25017, 0.76817, 0.23685, 0.86063, 0.22589, 0.92861, 0.30659, + 0.92721, 0.3131, 0.85841, 0.31569, 0.76587, 0.32231, 0.68395, 0.38717, 0.68279, 0.38553, 0.76251, 0.38068, 0.85568, 0.37648, 0.92602, 0.44462, 0.92603, 0.44322, 0.8529, 0.44458, + 0.75957, 0.44621, 0.68137, 0.50711, 0.67948, 0.50646, 0.75636, 0.50582, 0.84981, 0.50482, 0.92727, 0.57134, 0.92712, 0.5687, 0.84808, 0.56865, 0.75421, 0.5654, 0.67854, 0.62192, + 0.6787, 0.6236, 0.75336, 0.62525, 0.84789, 0.62839, 0.92567, 0.69427, 0.92394, 0.76244, 0.9221, 0.84047, 0.92226, 0.93306, 0.9241, 0.91732, 0.85189, 0.82617, 0.84699, 0.75013, + 0.84559, 0.6863, 0.84711, 0.68017, 0.75259, 0.74166, 0.75186, 0.80979, 0.74989, 0.88285, 0.74654, 0.86581, 0.67306, 0.79931, 0.67276, 0.73613, 0.67429, 0.67214, 0.67763, 0.09776, + 0.96131, 0.13724, 0.95982, 0.1817, 0.95902, 0.22313, 0.9588, 0.26892, 0.95695, 0.30526, 0.95692, 0.34139, 0.95661, 0.3751, 0.95678, 0.41313, 0.95785, 0.44464, 0.95718, 0.47339, + 0.95772, 0.5044, 0.95925, 0.53787, 0.95826, 0.57268, 0.95774, 0.60366, 0.95762, 0.62995, 0.95872, 0.66398, 0.95747, 0.69464, 0.9582, 0.73085, 0.95766, 0.76403, 0.95969, 0.79572, + 0.95904, 0.84011, 0.95843, 0.89075, 0.95631, 0.92774, 0.95702, 0.96706, 0.96028 ], "triangles": [ 8, 196, 7, 9, 195, 8, 8, 195, 196, 10, 194, 9, 9, 194, 195, 10, 11, 194, 12, 193, 11, 11, 193, 194, 13, 192, 12, 12, 192, 193, 14, 191, 13, 13, 191, 192, 15, 190, 14, 14, 190, 191, @@ -14567,51 +29668,137 @@ 382, 382, 236, 380, 382, 24, 384, 384, 316, 382, 384, 22, 386, 386, 160, 384, 386, 20, 388, 388, 318, 386, 388, 18, 390, 390, 248, 388, 390, 16, 392, 392, 320, 390, 392, 14, 394, 394, 158, 392, 394 ], - "width": 83, - "height": 74, - "path": "summer-a.ear-right-bubble" - } - }, - "ear-right-dot-01": {"ear-right-dot": {"x": -0.78, "y": -0.78, "rotation": -0.95, "width": 17, "height": 12, "path": "summer-a.ear-right-dot"}}, - "ear-right-dot-02": {"ear-right-dot": {"x": -0.78, "y": -0.78, "rotation": -0.95, "width": 17, "height": 12, "path": "summer-a.ear-right-dot"}}, - "ear-right-dot-03": {"ear-right-dot": {"x": -0.78, "y": -0.78, "rotation": -0.95, "width": 17, "height": 12, "path": "summer-a.ear-right-dot"}}, - "ear-right-dot-04": {"ear-right-dot": {"x": -0.78, "y": -0.78, "rotation": -0.95, "width": 17, "height": 12, "path": "summer-a.ear-right-dot"}}, - "ear-right-dot-05": {"ear-right-dot": {"x": -0.78, "y": -0.78, "rotation": -0.95, "width": 17, "height": 12, "path": "summer-a.ear-right-dot"}}, - "ear-right-dot-06": {"ear-right-dot": {"x": -0.78, "y": -0.78, "rotation": -0.95, "width": 17, "height": 12, "path": "summer-a.ear-right-dot"}}, - "ear-right-dot-07": {"ear-right-dot": {"x": -0.78, "y": -0.78, "rotation": -0.95, "width": 17, "height": 12, "path": "summer-a.ear-right-dot"}}, - "ear-right-dot-08": {"ear-right-dot": {"x": -0.78, "y": -0.78, "rotation": -0.95, "width": 17, "height": 12, "path": "summer-a.ear-right-dot"}}, - "ear-right-dot-09": {"ear-right-dot": {"x": -0.78, "y": -0.78, "rotation": -0.95, "width": 17, "height": 12, "path": "summer-a.ear-right-dot"}}, - "ear-right-dot-10": {"ear-right-dot": {"x": -0.78, "y": -0.78, "rotation": -0.95, "width": 17, "height": 12, "path": "summer-a.ear-right-dot"}}, - "ear-right-dot-11": {"ear-right-dot": {"x": -0.78, "y": -0.78, "rotation": -0.95, "width": 17, "height": 12, "path": "summer-a.ear-right-dot"}}, - "ear-right-dot-12": {"ear-right-dot": {"x": -0.78, "y": -0.78, "rotation": -0.95, "width": 17, "height": 12, "path": "summer-a.ear-right-dot"}}, - "ear-right-dot-13": {"ear-right-dot": {"x": -0.78, "y": -0.78, "rotation": -0.95, "width": 17, "height": 12, "path": "summer-a.ear-right-dot"}}, - "ear-right-dot-14": {"ear-right-dot": {"x": -0.78, "y": -0.78, "rotation": -0.95, "width": 17, "height": 12, "path": "summer-a.ear-right-dot"}}, - "ear-right-dot-15": {"ear-right-dot": {"x": -0.78, "y": -0.78, "rotation": -0.95, "width": 17, "height": 12, "path": "summer-a.ear-right-dot"}}, - "ear-right-dot-16": {"ear-right-dot": {"x": -0.78, "y": -0.78, "rotation": -0.95, "width": 17, "height": 12, "path": "summer-a.ear-right-dot"}}, - "ear-right-dot-17": {"ear-right-dot": {"x": -0.78, "y": -0.78, "rotation": -0.95, "width": 17, "height": 12, "path": "summer-a.ear-right-dot"}}, - "ear-right-dot-18": {"ear-right-dot": {"x": -0.78, "y": -0.78, "rotation": -0.95, "width": 17, "height": 12, "path": "summer-a.ear-right-dot"}}, - "ear-right-dot-19": {"ear-right-dot": {"x": -0.78, "y": -0.78, "rotation": -0.95, "width": 17, "height": 12, "path": "summer-a.ear-right-dot"}}, - "ear-right-dot-20": {"ear-right-dot": {"x": -0.78, "y": -0.78, "rotation": -0.95, "width": 17, "height": 12, "path": "summer-a.ear-right-dot"}}, - "ear-right-under": {"ear-right-under": {"x": 84.87, "y": -16.34, "rotation": -93, "width": 119, "height": 205, "path": "summer-a.ear-right-under"}}, - "ear-right-upper": {"ear-right-upper": {"x": 89.21, "y": -19.57, "rotation": -93, "width": 129, "height": 214, "path": "summer-a.ear-right-upper"}}, + "width": 82.3529411764706, + "height": 72.94117647058823, + "path": "summer-a-lv2.ear-right-bubble", + "x": 0.32352941176470296, + "y": 0.529411764705884 + } + }, + "ear-right-dot-01": { + "ear-right-dot": { + "x": -0.04470588235294204, "y": -0.04470588235294204, "rotation": -0.95, "width": 23.529411764705884, "height": 23.529411764705884, "path": "summer-a-lv2.ear-right-dot" + } + }, + "ear-right-dot-02": { + "ear-right-dot": { + "x": -0.04470588235294204, "y": -0.04470588235294204, "rotation": -0.95, "width": 23.529411764705884, "height": 23.529411764705884, "path": "summer-a-lv2.ear-right-dot" + } + }, + "ear-right-dot-03": { + "ear-right-dot": { + "x": -0.04470588235294204, "y": -0.04470588235294204, "rotation": -0.95, "width": 23.529411764705884, "height": 23.529411764705884, "path": "summer-a-lv2.ear-right-dot" + } + }, + "ear-right-dot-04": { + "ear-right-dot": { + "x": -0.04470588235294204, "y": -0.04470588235294204, "rotation": -0.95, "width": 23.529411764705884, "height": 23.529411764705884, "path": "summer-a-lv2.ear-right-dot" + } + }, + "ear-right-dot-05": { + "ear-right-dot": { + "x": -0.04470588235294204, "y": -0.04470588235294204, "rotation": -0.95, "width": 23.529411764705884, "height": 23.529411764705884, "path": "summer-a-lv2.ear-right-dot" + } + }, + "ear-right-dot-06": { + "ear-right-dot": { + "x": -0.04470588235294204, "y": -0.04470588235294204, "rotation": -0.95, "width": 23.529411764705884, "height": 23.529411764705884, "path": "summer-a-lv2.ear-right-dot" + } + }, + "ear-right-dot-07": { + "ear-right-dot": { + "x": -0.04470588235294204, "y": -0.04470588235294204, "rotation": -0.95, "width": 23.529411764705884, "height": 23.529411764705884, "path": "summer-a-lv2.ear-right-dot" + } + }, + "ear-right-dot-08": { + "ear-right-dot": { + "x": -0.04470588235294204, "y": -0.04470588235294204, "rotation": -0.95, "width": 23.529411764705884, "height": 23.529411764705884, "path": "summer-a-lv2.ear-right-dot" + } + }, + "ear-right-dot-09": { + "ear-right-dot": { + "x": -0.04470588235294204, "y": -0.04470588235294204, "rotation": -0.95, "width": 23.529411764705884, "height": 23.529411764705884, "path": "summer-a-lv2.ear-right-dot" + } + }, + "ear-right-dot-10": { + "ear-right-dot": { + "x": -0.04470588235294204, "y": -0.04470588235294204, "rotation": -0.95, "width": 23.529411764705884, "height": 23.529411764705884, "path": "summer-a-lv2.ear-right-dot" + } + }, + "ear-right-dot-11": { + "ear-right-dot": { + "x": -0.04470588235294204, "y": -0.04470588235294204, "rotation": -0.95, "width": 23.529411764705884, "height": 23.529411764705884, "path": "summer-a-lv2.ear-right-dot" + } + }, + "ear-right-dot-12": { + "ear-right-dot": { + "x": -0.04470588235294204, "y": -0.04470588235294204, "rotation": -0.95, "width": 23.529411764705884, "height": 23.529411764705884, "path": "summer-a-lv2.ear-right-dot" + } + }, + "ear-right-dot-13": { + "ear-right-dot": { + "x": -0.04470588235294204, "y": -0.04470588235294204, "rotation": -0.95, "width": 23.529411764705884, "height": 23.529411764705884, "path": "summer-a-lv2.ear-right-dot" + } + }, + "ear-right-dot-14": { + "ear-right-dot": { + "x": -0.04470588235294204, "y": -0.04470588235294204, "rotation": -0.95, "width": 23.529411764705884, "height": 23.529411764705884, "path": "summer-a-lv2.ear-right-dot" + } + }, + "ear-right-dot-15": { + "ear-right-dot": { + "x": -0.04470588235294204, "y": -0.04470588235294204, "rotation": -0.95, "width": 23.529411764705884, "height": 23.529411764705884, "path": "summer-a-lv2.ear-right-dot" + } + }, + "ear-right-dot-16": { + "ear-right-dot": { + "x": -0.04470588235294204, "y": -0.04470588235294204, "rotation": -0.95, "width": 23.529411764705884, "height": 23.529411764705884, "path": "summer-a-lv2.ear-right-dot" + } + }, + "ear-right-dot-17": { + "ear-right-dot": { + "x": -0.04470588235294204, "y": -0.04470588235294204, "rotation": -0.95, "width": 23.529411764705884, "height": 23.529411764705884, "path": "summer-a-lv2.ear-right-dot" + } + }, + "ear-right-dot-18": { + "ear-right-dot": { + "x": -0.04470588235294204, "y": -0.04470588235294204, "rotation": -0.95, "width": 23.529411764705884, "height": 23.529411764705884, "path": "summer-a-lv2.ear-right-dot" + } + }, + "ear-right-dot-19": { + "ear-right-dot": { + "x": -0.04470588235294204, "y": -0.04470588235294204, "rotation": -0.95, "width": 23.529411764705884, "height": 23.529411764705884, "path": "summer-a-lv2.ear-right-dot" + } + }, + "ear-right-dot-20": { + "ear-right-dot": { + "x": -0.04470588235294204, "y": -0.04470588235294204, "rotation": -0.95, "width": 23.529411764705884, "height": 23.529411764705884, "path": "summer-a-lv2.ear-right-dot" + } + }, + "ear-right-under": { + "ear-right-under": {"x": 85.03764705882352, "y": -16.542941176470595, "rotation": -93, "width": 131.76470588235296, "height": 204.7058823529412, "path": "summer-a-lv2.ear-right-under"} + }, + "ear-right-upper": { + "ear-right-upper": {"x": 92.82176470588234, "y": -16.894705882352955, "rotation": -93, "width": 141.1764705882353, "height": 263.5294117647059, "path": "summer-a-lv2.ear-right-upper"} + }, "eyes": { - "eyes": {"x": 24.37, "y": 24.61, "width": 330, "height": 155, "path": "summer-a.eyes"}, - "eyes-angry": {"x": 24.37, "y": 24.61, "width": 330, "height": 155, "path": "summer-a.eyes-angry"}, - "eyes-happy": {"x": 24.37, "y": 24.61, "width": 330, "height": 155, "path": "summer-a.eyes-happy"}, - "eyes-shut": {"x": 24.37, "y": 24.61, "width": 330, "height": 155, "path": "summer-a.eyes-shut"} - }, - "eyes-happy-accessory": {"eyes-happy-accessory": {"x": 0.37, "y": 0.4, "scaleX": 1.4, "scaleY": 1.4, "width": 101, "height": 107, "path": "summer-a.eyes-happy-accessory"}}, - "eyes-light-dot": {"eye-light-dot": {"x": -0.96, "y": 1.51, "width": 70, "height": 72, "path": "summer-a.eye-light-dot"}}, - "eyes-light-dot-02": {"eye-light-dot": {"x": -0.96, "y": 1.51, "width": 70, "height": 72, "path": "summer-a.eye-light-dot"}}, - "eyes-light-left": {"light": {"x": 6.55, "y": 1.56, "scaleX": 1.2, "scaleY": 1.8, "rotation": 178.57, "width": 49, "height": 73, "path": "summer-a.light"}}, - "eyes-light-right": {"light": {"x": 6.55, "y": 1.56, "scaleX": 1.2, "scaleY": 1.8, "rotation": 178.57, "width": 49, "height": 73, "path": "summer-a.light"}}, - "eyes-upper": {"eyes-upper": {"x": 24.04, "y": 24.72, "width": 328, "height": 153, "path": "summer-a.eyes-upper"}}, - "horn": {"horn": {"x": 101.61, "y": -20.37, "rotation": -90, "width": 234, "height": 239, "path": "summer-tc.horn"}}, + "eyes": {"x": 22.799411764705884, "y": 24.591764705882355, "width": 272.94117647058823, "height": 101.17647058823529, "path": "summer-a-lv2.eyes"}, + "eyes-angry": {"x": 22.799411764705884, "y": 24.591764705882355, "width": 272.94117647058823, "height": 101.17647058823529, "path": "summer-a-lv2.eyes-angry"}, + "eyes-happy": {"x": 22.799411764705884, "y": 24.591764705882355, "width": 272.94117647058823, "height": 101.17647058823529, "path": "summer-a-lv2.eyes-happy"}, + "eyes-shut": {"x": 22.799411764705884, "y": 24.591764705882355, "width": 272.94117647058823, "height": 101.17647058823529, "path": "summer-a-lv2.eyes-shut"} + }, + "eyes-happy-accessory": { + "eyes-happy-accessory": { + "x": 1.458235294117645, "y": 0.958823529411761, "scaleX": 1.4, "scaleY": 1.4, "width": 98.82352941176471, "height": 105.88235294117648, "path": "summer-a-lv2.eyes-happy-accessory" + } + }, + "eyes-upper": {"eyes-upper": {"x": 23.387647058823536, "y": 24.29764705882352, "width": 371.7647058823529, "height": 171.76470588235296, "path": "summer-a-lv2.eyes-upper"}}, + "horn": {"horn": {"x": 87.91529411764705, "y": -6.181764705882362, "rotation": -90, "width": 263.5294117647059, "height": 178.82352941176472, "path": "summer-tc-lv2.horn"}}, "mouth": { - "mouth": {"x": -11.63, "y": 54.61, "width": 146, "height": 59, "path": "summer-a.mouth"}, - "mouth-bite": {"x": -1.13, "y": 39.61, "width": 167, "height": 99, "path": "summer-a.mouth-bite"}, - "mouth-open": {"x": -6.63, "y": 16.11, "width": 156, "height": 140, "path": "summer-a.mouth-open"}, - "mouth-smile": {"x": -1.63, "y": 47.61, "width": 166, "height": 65, "path": "summer-a.mouth-smile"} + "mouth": {"x": -7.906470588235305, "y": 100.18, "width": 282.3529411764706, "height": 280.0, "path": "summer-a-lv2.mouth"}, + "mouth-bite": {"x": -7.906470588235305, "y": 100.18, "width": 282.3529411764706, "height": 280.0, "path": "summer-a-lv2.mouth-bite"}, + "mouth-open": {"x": -7.906470588235305, "y": 94.29764705882354, "width": 282.3529411764706, "height": 291.7647058823529, "path": "summer-a-lv2.mouth-open"}, + "mouth-smile": {"x": -7.906470588235305, "y": 100.18, "width": 282.3529411764706, "height": 280.0, "path": "summer-a-lv2.mouth-smile"} }, "mouth-accessory": { "mouth-accessory": { @@ -14678,12 +29865,14 @@ 176, 110, 174, 176, 42, 178, 178, 108, 176, 178, 40, 180, 180, 106, 178, 180, 38, 182, 182, 104, 180, 182, 36, 184, 184, 102, 182, 184, 34, 186, 186, 100, 184, 186, 32, 188, 188, 98, 186, 188, 30, 190, 190, 138, 188, 190, 28, 192, 192, 140, 190, 192, 192, 146 ], - "width": 164, - "height": 164, - "path": "summer-a.mouth-accessory" + "width": 162.35294117647058, + "height": 162.35294117647058, + "path": "summer-a-lv2.mouth-accessory", + "x": 0.8235294117647101, + "y": 0.8235294117647101 } }, - "tail": {"tail": {"x": 113.64, "y": 3.45, "rotation": 12, "width": 227, "height": 227, "path": "summer-a.tail"}} + "tail": {"tail": {"x": 111.3764705882353, "y": 26.9, "rotation": 12, "width": 277.6470588235294, "height": 280.0, "path": "summer-a-lv2.tail"}} } } ], @@ -14705,10 +29894,14 @@ "action/mix/eyes-animation": "3799301307", "battle/get-buff": "1455190363", "battle/get-debuff": "606904312", - "defense/hit-by-normal": "2045974966", - "defense/hit-by-normal-crit": "2130010601", - "defense/hit-by-normal-dramatic": "3823092125", - "defense/hit-by-ranged-attack": "2224561612", + "defense/hit-by-normal": "978716858", + "defense/hit-by-normal-crit": "3941256645", + "defense/hit-by-normal-crit2": "2130010601", + "defense/hit-by-normal-dramatic": "2527908154", + "defense/hit-by-normal-dramatic2": "3823092125", + "defense/hit-by-normal2": "2045974966", + "defense/hit-by-ranged-attack": "2207699263", + "defense/hit-by-ranged-attack2": "2224561612", "defense/hit-with-shield": "390714790", "attack/melee/horn-gore": "1327954218", "attack/melee/mouth-bite": "2237748264", @@ -14718,6 +29911,7 @@ "action/idle/normal": "1659336865", "attack/melee/normal-attack": "3305373483", "action/mix/normal-mouth-animation": "1178295570", + "action/idle/normal2": "3503981622", "activity/prepare": "405864717", "action/idle/random-01": "554401889", "action/idle/random-02": "3634120758", @@ -14735,7 +29929,7 @@ "activity/victory-pose-back-flip": "2227634241" } }, - "summer-td": { + "summer-td-lv2": { "bones": [ {"name": "@root"}, {"name": "@pivot-main", "parent": "@root"}, {"name": "@pivot-back", "parent": "@pivot-main", "x": 205, "y": 180, "color": "ff0101ff"}, {"name": "@pivot-center", "parent": "@pivot-back", "x": -215.11, "y": -5.25, "color": "ff0101ff"}, @@ -14757,32 +29951,32 @@ {"name": "leg-front-right-IK", "parent": "@pivot-main", "x": -195.99, "y": -10.21, "color": "ff3f00ff"}, {"name": "leg-front-left-IK", "parent": "@pivot-main", "x": 42.3, "y": -18.42, "color": "ff3f00ff"}, {"name": "leg-back-left-IK", "parent": "@pivot-main", "x": 208.57, "y": 1.35, "color": "ff3f00ff"}, {"name": "@ball", "parent": "@root", "y": 191, "color": "f3981bff"}, - {"name": "ball", "parent": "@ball", "y": -191, "color": "f4a729ff"}, {"name": "mouth-bubble", "parent": "@mouth", "x": -191.16, "y": -1.83}, + {"name": "ball", "parent": "@ball", "y": -191, "color": "f4a729ff"}, {"name": "mouth-bubble", "parent": "@mouth", "x": -248.49, "y": -1.83}, {"name": "mouth-accessory", "parent": "mouth-bubble", "x": -67.84, "y": 101.83}, {"name": "eyes-happy-accessory", "parent": "@eyes", "x": 142.51, "y": 62.21}, - {"name": "ear-right-bubble", "parent": "ear-right", "length": 40.07, "rotation": -179.99, "x": 184.94, "y": -20.48}, - {"name": "ear-left-bubble", "parent": "ear-left", "length": 48.54, "rotation": 176.27, "x": 190.98, "y": -21.07, "scaleX": 0.949}, + {"name": "ear-right-bubble", "parent": "ear-right", "length": 40.07, "rotation": -179.99, "x": 190.79, "y": -17.72}, + {"name": "ear-left-bubble", "parent": "ear-left", "length": 48.54, "rotation": 176.27, "x": 197.3, "y": -23.23, "scaleX": 0.949}, {"name": "ear-left-all-bubble", "parent": "ear-left", "length": 26.1, "rotation": 0.95, "x": -6.64, "y": -27.7, "color": "3002ffff"}, {"name": "ear-right-dot-01", "parent": "ear-left-all-bubble", "rotation": -90.95, "x": -13.64, "y": 22.67, "scaleX": 0.3508, "scaleY": 0.3508, "color": "2f9bffff"}, {"name": "ear-left-dot-01", "parent": "ear-left-all-bubble", "rotation": -90.95, "x": -28.82, "y": -24.72, "scaleX": 0.7755, "scaleY": 0.7755, "color": "2f9bffff"}, - {"name": "ear-right-bubble-02", "parent": "ear-right-bubble", "rotation": 86.99, "x": 63.76, "y": -22.96}, - {"name": "ear-right-bubble-03", "parent": "ear-right-bubble", "rotation": 86.99, "x": 64.99, "y": -1.59}, - {"name": "ear-right-bubble-04", "parent": "ear-right-bubble", "rotation": 86.99, "x": 66.12, "y": 19.85}, - {"name": "ear-left-bubble-02", "parent": "ear-left-bubble", "rotation": 93.73, "x": 68.81, "y": -22.89}, - {"name": "ear-left-bubble-03", "parent": "ear-left-bubble", "rotation": 93.73, "x": 70.45, "y": -0.4}, - {"name": "ear-left-bubble-04", "parent": "ear-left-bubble", "rotation": 93.73, "x": 65.87, "y": 22.28}, - {"name": "ear-right-bubble-05", "parent": "ear-right", "length": 40.07, "rotation": -179.99, "x": 184.94, "y": -20.48}, - {"name": "ear-right-bubble-06", "parent": "ear-right-bubble-05", "rotation": 86.99, "x": 63.76, "y": -22.96}, - {"name": "ear-right-bubble-07", "parent": "ear-right-bubble-05", "rotation": 86.99, "x": 64.99, "y": -1.59}, - {"name": "ear-right-bubble-08", "parent": "ear-right-bubble-05", "rotation": 86.99, "x": 66.12, "y": 19.85}, - {"name": "ear-left-bubble-05", "parent": "ear-left", "length": 48.54, "rotation": 176.27, "x": 190.98, "y": -21.07, "scaleX": 0.991}, - {"name": "ear-left-bubble-06", "parent": "ear-left-bubble-05", "rotation": 93.73, "x": 67.27, "y": -22.98}, - {"name": "ear-left-bubble-07", "parent": "ear-left-bubble-05", "rotation": 93.73, "x": 65.82, "y": -0.69}, - {"name": "ear-left-bubble-08", "parent": "ear-left-bubble-05", "rotation": 93.73, "x": 64.32, "y": 22.18}, + {"name": "ear-right-bubble-02", "parent": "ear-right-bubble", "rotation": 86.99, "x": 42.45, "y": -32.45}, + {"name": "ear-right-bubble-03", "parent": "ear-right-bubble", "rotation": 86.99, "x": 64.75, "y": -1.3}, + {"name": "ear-right-bubble-04", "parent": "ear-right-bubble", "rotation": 86.99, "x": 49.1, "y": 33.33}, + {"name": "ear-left-bubble-02", "parent": "ear-left-bubble", "rotation": 93.73, "x": 59.21, "y": -23.48}, + {"name": "ear-left-bubble-03", "parent": "ear-left-bubble", "rotation": 93.73, "x": 60.37, "y": 9.26}, + {"name": "ear-left-bubble-04", "parent": "ear-left-bubble", "rotation": 93.73, "x": 57.44, "y": 49.26}, + {"name": "ear-right-bubble-05", "parent": "ear-right", "length": 40.07, "rotation": -179.99, "x": 190.79, "y": -17.72}, + {"name": "ear-right-bubble-06", "parent": "ear-right-bubble-05", "rotation": 86.99, "x": 42.45, "y": -32.45}, + {"name": "ear-right-bubble-07", "parent": "ear-right-bubble-05", "rotation": 86.99, "x": 64.75, "y": -1.3}, + {"name": "ear-right-bubble-08", "parent": "ear-right-bubble-05", "rotation": 86.99, "x": 49.1, "y": 33.33}, + {"name": "ear-left-bubble-05", "parent": "ear-left", "length": 48.54, "rotation": 176.27, "x": 197.3, "y": -23.23, "scaleX": 0.991}, + {"name": "ear-left-bubble-06", "parent": "ear-left-bubble-05", "rotation": 93.73, "x": 58.06, "y": -23.58}, + {"name": "ear-left-bubble-07", "parent": "ear-left-bubble-05", "rotation": 93.73, "x": 56.15, "y": 8.97}, + {"name": "ear-left-bubble-08", "parent": "ear-left-bubble-05", "rotation": 93.73, "x": 56.24, "y": 49.17}, {"name": "ear-right-dot-02", "parent": "ear-left-all-bubble", "rotation": -95.73, "x": -18.26, "y": -8.1, "scaleX": 0.5668, "scaleY": 0.6813, "color": "2f9bffff"}, {"name": "ear-left-dot-02", "parent": "ear-left-all-bubble", "rotation": -88.74, "x": 8.57, "y": 59.72, "scaleX": 0.6577, "scaleY": 0.5996, "color": "2f9bffff"}, {"name": "ear-right-dot-03", "parent": "ear-left-all-bubble", "rotation": -87.96, "x": -25.76, "y": -45.18, "scaleX": 0.2583, "scaleY": 0.2881, "color": "2f9bffff"}, {"name": "ear-right-dot-04", "parent": "ear-left-all-bubble", "rotation": -88.51, "x": -27.05, "y": -31.17, "scaleX": 0.4361, "scaleY": 0.6365, "color": "2f9bffff"}, - {"name": "ear-right-dot-05", "parent": "ear-left-all-bubble", "rotation": -79.32, "x": -5.28, "y": 34.53, "scaleX": 0.5911, "scaleY": 0.8949, "color": "2f9bffff"}, + {"name": "ear-right-dot-05", "parent": "ear-left-all-bubble", "rotation": -94.07, "x": -5.28, "y": 34.53, "scaleX": 0.854, "scaleY": 0.6721, "color": "2f9bffff"}, {"name": "ear-left-dot-03", "parent": "ear-left-all-bubble", "rotation": -90.95, "x": -10.57, "y": 11.72, "scaleX": 0.8206, "scaleY": 0.8206, "color": "2f9bffff"}, {"name": "ear-left-dot-04", "parent": "ear-left-all-bubble", "rotation": -90.95, "x": 11.94, "y": 65.23, "scaleX": 0.7096, "scaleY": 0.7096, "color": "2f9bffff"}, {"name": "ear-left-dot-05", "parent": "ear-left-all-bubble", "rotation": -88.35, "x": 10.11, "y": 68.29, "scaleX": 0.4014, "scaleY": 0.366, "color": "2f9bffff"}, @@ -14791,7 +29985,7 @@ {"name": "ear-right-dot-07", "parent": "ear-left-all-bubble", "rotation": -96.07, "x": -32.28, "y": -4.86, "scaleX": 0.5668, "scaleY": 0.6813, "color": "2f9bffff"}, {"name": "ear-right-dot-08", "parent": "ear-left-all-bubble", "rotation": -90.23, "x": -18.31, "y": -61.25, "scaleX": 0.7405, "scaleY": 0.826, "color": "2f9bffff"}, {"name": "ear-right-dot-09", "parent": "ear-left-all-bubble", "rotation": -93.53, "x": -9.54, "y": 52.15, "scaleX": 0.2863, "scaleY": 0.3229, "color": "2f9bffff"}, - {"name": "ear-right-dot-10", "parent": "ear-left-all-bubble", "rotation": -81.97, "x": -31.43, "y": 21.83, "scaleX": 0.5911, "scaleY": 0.8949, "color": "2f9bffff"}, + {"name": "ear-right-dot-10", "parent": "ear-left-all-bubble", "rotation": -111.97, "x": -31.43, "y": 21.83, "scaleX": 0.5911, "scaleY": 0.3731, "color": "2f9bffff"}, {"name": "ear-right-all-bubble", "parent": "ear-right", "length": 26.1, "rotation": 3.44, "x": -10.08, "y": -8.05, "color": "3002ffff"}, {"name": "ear-right-dot-11", "parent": "ear-right-all-bubble", "rotation": -96.44, "x": 10.27, "y": -24.86, "scaleX": 0.3508, "scaleY": 0.3508, "color": "2f9bffff"}, {"name": "ear-left-dot-07", "parent": "ear-right-all-bubble", "rotation": -96.44, "x": 27.18, "y": -39.33, "scaleX": 0.7755, "scaleY": 0.7755, "color": "2f9bffff"}, @@ -14836,11 +30030,7 @@ {"name": "ear-right-dot-20", "bone": "ear-right-dot-20", "color": "ffffff00", "attachment": "ear-right-dot"}, {"name": "ear-right-bubble", "bone": "ear-right-bubble", "color": "fcae10ff", "attachment": "ear-right-bubble"}, {"name": "ear-right-bubble-02", "bone": "ear-right-bubble-05", "attachment": "ear-right-bubble"}, {"name": "ear-right-upper", "bone": "ear-right", "attachment": "ear-right-upper"}, - {"name": "leg-front-left", "bone": "@leg-front-left", "attachment": "summer-leg-front-left"}, {"name": "eyes", "bone": "@eyes", "attachment": "eyes"}, - {"name": "eyes-light-dot", "bone": "eyes-light-dot", "attachment": "eye-light-dot"}, {"name": "eyes-light-dot-02", "bone": "eyes-light-dot-02", "attachment": "eye-light-dot"}, - {"name": "eyes-light-left", "bone": "eyes-light-left", "color": "fff96500", "attachment": "light", "blend": "additive"}, - {"name": "eyes-light-right", "bone": "eyes-light-right", "color": "fff96500", "attachment": "light", "blend": "additive"}, {"name": "eyes-upper", "bone": "@eyes", "attachment": "eyes-upper"}, - {"name": "mouth", "bone": "@mouth", "attachment": "mouth"}, {"name": "horn", "bone": "horn", "attachment": "horn"}, + {"name": "leg-front-left", "bone": "@leg-front-left", "attachment": "summer-leg-front-left"}, {"name": "horn", "bone": "horn", "attachment": "horn"}, {"name": "ear-left-under", "bone": "ear-left", "attachment": "ear-left-under"}, {"name": "ear-left-dot-01", "bone": "ear-left-dot-01", "color": "ffffff00", "attachment": "ear-left-dot"}, {"name": "ear-left-dot-04", "bone": "ear-left-dot-04", "color": "ffffff00", "attachment": "ear-left-dot"}, {"name": "ear-left-dot-03", "bone": "ear-left-dot-03", "color": "ffffff00", "attachment": "ear-left-dot"}, @@ -14859,8 +30049,11 @@ {"name": "ear-right-dot-10", "bone": "ear-right-dot-10", "color": "ffffff00", "attachment": "ear-right-dot"}, {"name": "ear-left-bubble", "bone": "ear-left-bubble", "color": "fcae10ff", "attachment": "ear-left-bubble"}, {"name": "ear-left-bubble-02", "bone": "ear-left-bubble-05", "attachment": "ear-left-bubble"}, {"name": "ear-left-upper", "bone": "ear-left", "attachment": "ear-left-upper"}, - {"name": "eyes-happy-accessory", "bone": "eyes-happy-accessory", "color": "ffffff00", "attachment": "eyes-happy-accessory", "blend": "additive"}, - {"name": "mouth-accessory", "bone": "mouth-accessory", "color": "ffffff00", "attachment": "mouth-accessory"} + {"name": "eyes", "bone": "@eyes", "attachment": "eyes"}, {"name": "eyes-light-dot", "bone": "eyes-light-dot"}, {"name": "eyes-light-dot-02", "bone": "eyes-light-dot-02"}, + {"name": "eyes-light-left", "bone": "eyes-light-left", "color": "fff96500", "attachment": "light", "blend": "additive"}, + {"name": "eyes-light-right", "bone": "eyes-light-right", "color": "fff96500", "attachment": "light", "blend": "additive"}, {"name": "eyes-upper", "bone": "@eyes", "attachment": "eyes-upper"}, + {"name": "mouth", "bone": "@mouth", "attachment": "mouth"}, {"name": "mouth-accessory", "bone": "mouth-accessory", "color": "ffffff00", "attachment": "mouth-accessory"}, + {"name": "eyes-happy-accessory", "bone": "eyes-happy-accessory", "color": "ffffff00", "attachment": "eyes-happy-accessory", "blend": "additive"} ], "ik": [ {"name": "leg-back-left-IK", "order": 3, "bones": ["@leg-back-left"], "target": "leg-back-left-IK"}, @@ -14872,7 +30065,7 @@ { "name": "default", "attachments": { - "back": {"back": {"x": 69.83, "y": -8.69, "rotation": -58, "width": 244, "height": 229, "path": "summer-a.back"}}, + "back": {"back": {"x": 109.17235294117647, "y": 19.543529411764695, "rotation": -58, "width": 308.2352941176471, "height": 322.3529411764706, "path": "summer-a-lv2.back"}}, "ear-left-bubble": { "ear-left-bubble": { "type": "mesh", @@ -15022,9 +30215,11 @@ 264, 294, 294, 266, 42, 44, 44, 46, 294, 44, 266, 296, 296, 268, 38, 40, 40, 42, 296, 40, 268, 298, 298, 270, 34, 36, 36, 38, 298, 36, 270, 300, 300, 272, 30, 32, 32, 34, 300, 32, 272, 302, 302, 274, 26, 28, 28, 30, 302, 28, 274, 304, 304, 276, 22, 24, 24, 26, 304, 24, 276, 306, 306, 278, 18, 20, 20, 22, 306, 20, 280, 308, 308, 282, 12, 14, 14, 16, 308, 14 ], - "width": 88, - "height": 80, - "path": "summer-a.ear-left-bubble" + "width": 87.05882352941177, + "height": 80.0, + "path": "summer-a-lv2.ear-left-bubble", + "x": 0.470588235294116, + "y": 0.0 } }, "ear-left-bubble-02": { @@ -15176,49 +30371,78 @@ 264, 294, 294, 266, 42, 44, 44, 46, 294, 44, 266, 296, 296, 268, 38, 40, 40, 42, 296, 40, 268, 298, 298, 270, 34, 36, 36, 38, 298, 36, 270, 300, 300, 272, 30, 32, 32, 34, 300, 32, 272, 302, 302, 274, 26, 28, 28, 30, 302, 28, 274, 304, 304, 276, 22, 24, 24, 26, 304, 24, 276, 306, 306, 278, 18, 20, 20, 22, 306, 20, 280, 308, 308, 282, 12, 14, 14, 16, 308, 14 ], - "width": 88, - "height": 80, - "path": "summer-a.ear-left-bubble" - } - }, - "ear-left-dot-01": {"ear-left-dot": {"x": 0.12, "y": 0.57, "rotation": -0.95, "width": 15, "height": 16, "path": "summer-a.ear-left-dot"}}, - "ear-left-dot-02": {"ear-left-dot": {"x": 0.12, "y": 0.57, "rotation": -0.95, "width": 15, "height": 16, "path": "summer-a.ear-left-dot"}}, - "ear-left-dot-03": {"ear-left-dot": {"x": 0.12, "y": 0.57, "rotation": -0.95, "width": 15, "height": 16, "path": "summer-a.ear-left-dot"}}, - "ear-left-dot-04": {"ear-left-dot": {"x": 0.12, "y": 0.57, "rotation": -0.95, "width": 15, "height": 16, "path": "summer-a.ear-left-dot"}}, - "ear-left-dot-05": {"ear-left-dot": {"x": 0.12, "y": 0.57, "rotation": -0.95, "width": 15, "height": 16, "path": "summer-a.ear-left-dot"}}, - "ear-left-dot-06": {"ear-left-dot": {"x": 0.12, "y": 0.57, "rotation": -0.95, "width": 15, "height": 16, "path": "summer-a.ear-left-dot"}}, - "ear-left-dot-07": {"ear-left-dot": {"x": 0.12, "y": 0.57, "rotation": -0.95, "width": 15, "height": 16, "path": "summer-a.ear-left-dot"}}, - "ear-left-dot-08": {"ear-left-dot": {"x": 0.12, "y": 0.57, "rotation": -0.95, "width": 15, "height": 16, "path": "summer-a.ear-left-dot"}}, - "ear-left-dot-09": {"ear-left-dot": {"x": 0.12, "y": 0.57, "rotation": -0.95, "width": 15, "height": 16, "path": "summer-a.ear-left-dot"}}, - "ear-left-dot-10": {"ear-left-dot": {"x": 0.12, "y": 0.57, "rotation": -0.95, "width": 15, "height": 16, "path": "summer-a.ear-left-dot"}}, - "ear-left-dot-11": {"ear-left-dot": {"x": 0.12, "y": 0.57, "rotation": -0.95, "width": 15, "height": 16, "path": "summer-a.ear-left-dot"}}, - "ear-left-dot-12": {"ear-left-dot": {"x": 0.12, "y": 0.57, "rotation": -0.95, "width": 15, "height": 16, "path": "summer-a.ear-left-dot"}}, - "ear-left-under": {"ear-left-under": {"x": 84.11, "y": -23.37, "rotation": -90, "width": 130, "height": 220, "path": "summer-a.ear-left-under"}}, - "ear-left-upper": {"ear-left-upper": {"x": 85.61, "y": -23.87, "rotation": -90, "width": 145, "height": 231, "path": "summer-a.ear-left-upper"}}, + "width": 87.05882352941177, + "height": 80.0, + "path": "summer-a-lv2.ear-left-bubble", + "x": 0.470588235294116, + "y": 0.0 + } + }, + "ear-left-dot-01": { + "ear-left-dot": {"x": 0.5611764705882355, "y": 1.5111764705882353, "rotation": -0.95, "width": 14.117647058823529, "height": 14.117647058823529, "path": "summer-a-lv2.ear-left-dot"} + }, + "ear-left-dot-02": { + "ear-left-dot": {"x": 0.5611764705882355, "y": 1.5111764705882353, "rotation": -0.95, "width": 14.117647058823529, "height": 14.117647058823529, "path": "summer-a-lv2.ear-left-dot"} + }, + "ear-left-dot-03": { + "ear-left-dot": {"x": 0.5611764705882355, "y": 1.5111764705882353, "rotation": -0.95, "width": 14.117647058823529, "height": 14.117647058823529, "path": "summer-a-lv2.ear-left-dot"} + }, + "ear-left-dot-04": { + "ear-left-dot": {"x": 0.5611764705882355, "y": 1.5111764705882353, "rotation": -0.95, "width": 14.117647058823529, "height": 14.117647058823529, "path": "summer-a-lv2.ear-left-dot"} + }, + "ear-left-dot-05": { + "ear-left-dot": {"x": 0.5611764705882355, "y": 1.5111764705882353, "rotation": -0.95, "width": 14.117647058823529, "height": 14.117647058823529, "path": "summer-a-lv2.ear-left-dot"} + }, + "ear-left-dot-06": { + "ear-left-dot": {"x": 0.5611764705882355, "y": 1.5111764705882353, "rotation": -0.95, "width": 14.117647058823529, "height": 14.117647058823529, "path": "summer-a-lv2.ear-left-dot"} + }, + "ear-left-dot-07": { + "ear-left-dot": {"x": 0.5611764705882355, "y": 1.5111764705882353, "rotation": -0.95, "width": 14.117647058823529, "height": 14.117647058823529, "path": "summer-a-lv2.ear-left-dot"} + }, + "ear-left-dot-08": { + "ear-left-dot": {"x": 0.5611764705882355, "y": 1.5111764705882353, "rotation": -0.95, "width": 14.117647058823529, "height": 14.117647058823529, "path": "summer-a-lv2.ear-left-dot"} + }, + "ear-left-dot-09": { + "ear-left-dot": {"x": 0.5611764705882355, "y": 1.5111764705882353, "rotation": -0.95, "width": 14.117647058823529, "height": 14.117647058823529, "path": "summer-a-lv2.ear-left-dot"} + }, + "ear-left-dot-10": { + "ear-left-dot": {"x": 0.5611764705882355, "y": 1.5111764705882353, "rotation": -0.95, "width": 14.117647058823529, "height": 14.117647058823529, "path": "summer-a-lv2.ear-left-dot"} + }, + "ear-left-dot-11": { + "ear-left-dot": {"x": 0.5611764705882355, "y": 1.5111764705882353, "rotation": -0.95, "width": 14.117647058823529, "height": 14.117647058823529, "path": "summer-a-lv2.ear-left-dot"} + }, + "ear-left-dot-12": { + "ear-left-dot": {"x": 0.5611764705882355, "y": 1.5111764705882353, "rotation": -0.95, "width": 14.117647058823529, "height": 14.117647058823529, "path": "summer-a-lv2.ear-left-dot"} + }, + "ear-left-under": { + "ear-left-under": {"x": 85.09176470588235, "y": -29.18176470588236, "rotation": -90, "width": 141.1764705882353, "height": 218.82352941176472, "path": "summer-a-lv2.ear-left-under"} + }, + "ear-left-upper": { + "ear-left-upper": {"x": 99.70941176470589, "y": -26.681764705882347, "rotation": -90, "width": 152.94117647058823, "height": 258.8235294117647, "path": "summer-a-lv2.ear-left-upper"} + }, "ear-right-bubble": { "ear-right-bubble": { "type": "mesh", "uvs": [ - 0.93928, 0.50958, 0.95558, 0.59885, 0.96791, 0.66638, 0.98006, 0.73289, 1, 0.84205, 1, 0.89818, 1, 0.9625, 0.9567, 0.9625, 0.9208, 0.9625, 0.88771, 0.9625, 0.83969, 0.9625, 0.79967, - 0.9625, 0.76574, 0.9625, 0.73418, 0.9625, 0.69508, 0.9625, 0.6661, 0.9625, 0.6319, 0.9625, 0.6046, 0.9625, 0.57454, 0.9625, 0.53755, 0.9625, 0.50387, 0.9625, 0.47341, 0.9625, - 0.44466, 0.9625, 0.41233, 0.9625, 0.37317, 0.9625, 0.33787, 0.9625, 0.30333, 0.9625, 0.2648, 0.9625, 0.21937, 0.9625, 0.17434, 0.9625, 0.12959, 0.9625, 0.08769, 0.9625, 0, 0.9625, - 0.02085, 0.89779, 0.04055, 0.83664, 0.06626, 0.75682, 0.08854, 0.68766, 0.11527, 0.60468, 0.13788, 0.53451, 0.35753, 0.0375, 0.43128, 0.0375, 0.52161, 0.0375, 0.60662, 0.0375, - 0.67954, 0.0375, 0.54109, 0.5336, 0.30907, 0.53412, 0.75362, 0.52077, 0.84707, 0.51514, 0.2081, 0.53435, 0.42115, 0.53387, 0.64269, 0.52747, 0.1892, 0.60156, 0.3018, 0.60447, - 0.41972, 0.60346, 0.54053, 0.60135, 0.64648, 0.59785, 0.76151, 0.59644, 0.87262, 0.58988, 0.16806, 0.67676, 0.29497, 0.67061, 0.41838, 0.66857, 0.54, 0.66508, 0.65011, 0.66538, - 0.7681, 0.65967, 0.89666, 0.66021, 0.14733, 0.75044, 0.28705, 0.74721, 0.41688, 0.74143, 0.53942, 0.73556, 0.6538, 0.73393, 0.7757, 0.7326, 0.91933, 0.7265, 0.12337, 0.83566, 0.2782, - 0.83283, 0.4151, 0.82771, 0.53871, 0.82207, 0.65852, 0.82169, 0.7847, 0.8189, 0.95379, 0.82732, 0.97627, 0.89309, 0.79208, 0.88971, 0.66236, 0.89294, 0.5381, 0.89586, 0.41375, - 0.89349, 0.2717, 0.89571, 0.10571, 0.89844, 0.53197, 0.30141, 0.39415, 0.1884, 0.65961, 0.2117, 0.25473, 0.53425, 0.24202, 0.60293, 0.22911, 0.6738, 0.21379, 0.7489, 0.19729, - 0.83431, 0.18704, 0.8971, 0.36352, 0.534, 0.36013, 0.60397, 0.35748, 0.66957, 0.35288, 0.74428, 0.34802, 0.83022, 0.34383, 0.89458, 0.48024, 0.53373, 0.47847, 0.60244, 0.47433, - 0.66696, 0.47563, 0.73861, 0.47402, 0.82502, 0.47337, 0.89463, 0.58955, 0.53067, 0.59344, 0.5996, 0.59605, 0.66523, 0.5961, 0.73475, 0.60032, 0.82187, 0.60296, 0.89434, 0.69391, - 0.52438, 0.69915, 0.59721, 0.70691, 0.66263, 0.71206, 0.7333, 0.71954, 0.82034, 0.72813, 0.8913, 0.80125, 0.5179, 0.81428, 0.59333, 0.8348, 0.65995, 0.84793, 0.72953, 0.87862, - 0.82358, 0.89305, 0.89156, 0.19669, 0.67537, 0.17782, 0.74974, 0.1594, 0.835, 0.1429, 0.89783, 0.26012, 0.6723, 0.25017, 0.74806, 0.23685, 0.83359, 0.22589, 0.89647, 0.30659, - 0.89517, 0.3131, 0.83153, 0.31569, 0.74593, 0.32231, 0.67016, 0.38717, 0.66908, 0.38553, 0.74282, 0.38068, 0.829, 0.37648, 0.89407, 0.44462, 0.89408, 0.44322, 0.82643, 0.44458, - 0.7401, 0.44621, 0.66777, 0.50711, 0.66602, 0.50646, 0.73714, 0.50582, 0.82357, 0.50482, 0.89523, 0.57134, 0.89508, 0.5687, 0.82197, 0.56865, 0.73514, 0.5654, 0.66515, 0.62192, - 0.6653, 0.6236, 0.73436, 0.62525, 0.8218, 0.62839, 0.89374, 0.69427, 0.89215, 0.76244, 0.89045, 0.84047, 0.89059, 0.93306, 0.89229, 0.91732, 0.8255, 0.82617, 0.82097, 0.75013, - 0.81967, 0.6863, 0.82108, 0.68017, 0.73364, 0.74166, 0.73297, 0.80979, 0.73115, 0.88285, 0.72805, 0.86581, 0.66008, 0.79931, 0.6598, 0.73613, 0.66121, 0.67214, 0.66431, 0.09776, - 0.92671, 0.13724, 0.92534, 0.1817, 0.92459, 0.22313, 0.92439, 0.26892, 0.92268, 0.30526, 0.92265, 0.34139, 0.92236, 0.3751, 0.92252, 0.41313, 0.92351, 0.44464, 0.92289, 0.47339, - 0.92339, 0.5044, 0.9248, 0.53787, 0.92389, 0.57268, 0.92341, 0.60366, 0.9233, 0.62995, 0.92432, 0.66398, 0.92316, 0.69464, 0.92383, 0.73085, 0.92333, 0.76403, 0.92521, 0.79572, - 0.92461, 0.84011, 0.92404, 0.89075, 0.92209, 0.92774, 0.92274, 0.96706, 0.92576 + 0.93928, 0.51035, 0.95558, 0.60687, 0.96791, 0.67987, 0.98006, 0.75177, 1, 0.86979, 1, 0.93047, 1, 1, 0.9567, 1, 0.9208, 1, 0.88771, 1, 0.83969, 1, 0.79967, 1, 0.76574, 1, 0.73418, + 1, 0.69508, 1, 0.6661, 1, 0.6319, 1, 0.6046, 1, 0.57454, 1, 0.53755, 1, 0.50387, 1, 0.47341, 1, 0.44466, 1, 0.41233, 1, 0.37317, 1, 0.33787, 1, 0.30333, 1, 0.2648, 1, 0.21937, 1, + 0.17434, 1, 0.12959, 1, 0.08769, 1, 0, 1, 0.02085, 0.93004, 0.04055, 0.86394, 0.06626, 0.77764, 0.08854, 0.70287, 0.11527, 0.61317, 0.13788, 0.53731, 0.35753, 0, 0.43128, 0, 0.52161, + 0, 0.60662, 0, 0.67954, 0, 0.54109, 0.53632, 0.30907, 0.53689, 0.75362, 0.52246, 0.84707, 0.51636, 0.2081, 0.53714, 0.42115, 0.53662, 0.64269, 0.52969, 0.1892, 0.6098, 0.3018, + 0.61294, 0.41972, 0.61185, 0.54053, 0.60957, 0.64648, 0.60579, 0.76151, 0.60426, 0.87262, 0.59717, 0.16806, 0.69109, 0.29497, 0.68444, 0.41838, 0.68224, 0.54, 0.67846, 0.65011, + 0.67878, 0.7681, 0.67261, 0.89666, 0.6732, 0.14733, 0.77075, 0.28705, 0.76725, 0.41688, 0.761, 0.53942, 0.75466, 0.6538, 0.7529, 0.7757, 0.75146, 0.91933, 0.74487, 0.12337, 0.86287, + 0.2782, 0.85982, 0.4151, 0.85429, 0.53871, 0.84818, 0.65852, 0.84778, 0.7847, 0.84476, 0.95379, 0.85385, 0.97627, 0.92496, 0.79208, 0.9213, 0.66236, 0.9248, 0.5381, 0.92796, 0.41375, + 0.92539, 0.2717, 0.9278, 0.10571, 0.93074, 0.53197, 0.28531, 0.39415, 0.16313, 0.65961, 0.18832, 0.25473, 0.53703, 0.24202, 0.61127, 0.22911, 0.68789, 0.21379, 0.76908, 0.19729, + 0.86141, 0.18704, 0.9293, 0.36352, 0.53676, 0.36013, 0.6124, 0.35748, 0.68332, 0.35288, 0.76408, 0.34802, 0.857, 0.34383, 0.92658, 0.48024, 0.53647, 0.47847, 0.61074, 0.47433, + 0.6805, 0.47563, 0.75796, 0.47402, 0.85138, 0.47337, 0.92662, 0.58955, 0.53316, 0.59344, 0.60768, 0.59605, 0.67863, 0.5961, 0.75379, 0.60032, 0.84797, 0.60296, 0.92631, 0.69391, + 0.52635, 0.69915, 0.60509, 0.70691, 0.67581, 0.71206, 0.75221, 0.71954, 0.84632, 0.72813, 0.92303, 0.80125, 0.51935, 0.81428, 0.60089, 0.8348, 0.67292, 0.84793, 0.74814, 0.87862, + 0.84981, 0.89305, 0.92331, 0.19669, 0.68959, 0.17782, 0.76999, 0.1594, 0.86216, 0.1429, 0.93008, 0.26012, 0.68627, 0.25017, 0.76817, 0.23685, 0.86063, 0.22589, 0.92861, 0.30659, + 0.92721, 0.3131, 0.85841, 0.31569, 0.76587, 0.32231, 0.68395, 0.38717, 0.68279, 0.38553, 0.76251, 0.38068, 0.85568, 0.37648, 0.92602, 0.44462, 0.92603, 0.44322, 0.8529, 0.44458, + 0.75957, 0.44621, 0.68137, 0.50711, 0.67948, 0.50646, 0.75636, 0.50582, 0.84981, 0.50482, 0.92727, 0.57134, 0.92712, 0.5687, 0.84808, 0.56865, 0.75421, 0.5654, 0.67854, 0.62192, + 0.6787, 0.6236, 0.75336, 0.62525, 0.84789, 0.62839, 0.92567, 0.69427, 0.92394, 0.76244, 0.9221, 0.84047, 0.92226, 0.93306, 0.9241, 0.91732, 0.85189, 0.82617, 0.84699, 0.75013, + 0.84559, 0.6863, 0.84711, 0.68017, 0.75259, 0.74166, 0.75186, 0.80979, 0.74989, 0.88285, 0.74654, 0.86581, 0.67306, 0.79931, 0.67276, 0.73613, 0.67429, 0.67214, 0.67763, 0.09776, + 0.96131, 0.13724, 0.95982, 0.1817, 0.95902, 0.22313, 0.9588, 0.26892, 0.95695, 0.30526, 0.95692, 0.34139, 0.95661, 0.3751, 0.95678, 0.41313, 0.95785, 0.44464, 0.95718, 0.47339, + 0.95772, 0.5044, 0.95925, 0.53787, 0.95826, 0.57268, 0.95774, 0.60366, 0.95762, 0.62995, 0.95872, 0.66398, 0.95747, 0.69464, 0.9582, 0.73085, 0.95766, 0.76403, 0.95969, 0.79572, + 0.95904, 0.84011, 0.95843, 0.89075, 0.95631, 0.92774, 0.95702, 0.96706, 0.96028 ], "triangles": [ 8, 196, 7, 9, 195, 8, 8, 195, 196, 10, 194, 9, 9, 194, 195, 10, 11, 194, 12, 193, 11, 11, 193, 194, 13, 192, 12, 12, 192, 193, 14, 191, 13, 13, 191, 192, 15, 190, 14, 14, 190, 191, @@ -15386,35 +30610,36 @@ 382, 382, 236, 380, 382, 24, 384, 384, 316, 382, 384, 22, 386, 386, 160, 384, 386, 20, 388, 388, 318, 386, 388, 18, 390, 390, 248, 388, 390, 16, 392, 392, 320, 390, 392, 14, 394, 394, 158, 392, 394 ], - "width": 83, - "height": 74, - "path": "summer-a.ear-right-bubble" + "width": 82.3529411764706, + "height": 72.94117647058823, + "path": "summer-a-lv2.ear-right-bubble", + "x": 0.32352941176470296, + "y": 0.529411764705884 } }, "ear-right-bubble-02": { "ear-right-bubble": { "type": "mesh", "uvs": [ - 0.93928, 0.50958, 0.95558, 0.59885, 0.96791, 0.66638, 0.98006, 0.73289, 1, 0.84205, 1, 0.89818, 1, 0.9625, 0.9567, 0.9625, 0.9208, 0.9625, 0.88771, 0.9625, 0.83969, 0.9625, 0.79967, - 0.9625, 0.76574, 0.9625, 0.73418, 0.9625, 0.69508, 0.9625, 0.6661, 0.9625, 0.6319, 0.9625, 0.6046, 0.9625, 0.57454, 0.9625, 0.53755, 0.9625, 0.50387, 0.9625, 0.47341, 0.9625, - 0.44466, 0.9625, 0.41233, 0.9625, 0.37317, 0.9625, 0.33787, 0.9625, 0.30333, 0.9625, 0.2648, 0.9625, 0.21937, 0.9625, 0.17434, 0.9625, 0.12959, 0.9625, 0.08769, 0.9625, 0, 0.9625, - 0.02085, 0.89779, 0.04055, 0.83664, 0.06626, 0.75682, 0.08854, 0.68766, 0.11527, 0.60468, 0.13788, 0.53451, 0.35753, 0.0375, 0.43128, 0.0375, 0.52161, 0.0375, 0.60662, 0.0375, - 0.67954, 0.0375, 0.54109, 0.5336, 0.30907, 0.53412, 0.75362, 0.52077, 0.84707, 0.51514, 0.2081, 0.53435, 0.42115, 0.53387, 0.64269, 0.52747, 0.1892, 0.60156, 0.3018, 0.60447, - 0.41972, 0.60346, 0.54053, 0.60135, 0.64648, 0.59785, 0.76151, 0.59644, 0.87262, 0.58988, 0.16806, 0.67676, 0.29497, 0.67061, 0.41838, 0.66857, 0.54, 0.66508, 0.65011, 0.66538, - 0.7681, 0.65967, 0.89666, 0.66021, 0.14733, 0.75044, 0.28705, 0.74721, 0.41688, 0.74143, 0.53942, 0.73556, 0.6538, 0.73393, 0.7757, 0.7326, 0.91933, 0.7265, 0.12337, 0.83566, 0.2782, - 0.83283, 0.4151, 0.82771, 0.53871, 0.82207, 0.65852, 0.82169, 0.7847, 0.8189, 0.95379, 0.82732, 0.97627, 0.89309, 0.79208, 0.88971, 0.66236, 0.89294, 0.5381, 0.89586, 0.41375, - 0.89349, 0.2717, 0.89571, 0.10571, 0.89844, 0.53197, 0.30141, 0.39415, 0.1884, 0.65961, 0.2117, 0.25473, 0.53425, 0.24202, 0.60293, 0.22911, 0.6738, 0.21379, 0.7489, 0.19729, - 0.83431, 0.18704, 0.8971, 0.36352, 0.534, 0.36013, 0.60397, 0.35748, 0.66957, 0.35288, 0.74428, 0.34802, 0.83022, 0.34383, 0.89458, 0.48024, 0.53373, 0.47847, 0.60244, 0.47433, - 0.66696, 0.47563, 0.73861, 0.47402, 0.82502, 0.47337, 0.89463, 0.58955, 0.53067, 0.59344, 0.5996, 0.59605, 0.66523, 0.5961, 0.73475, 0.60032, 0.82187, 0.60296, 0.89434, 0.69391, - 0.52438, 0.69915, 0.59721, 0.70691, 0.66263, 0.71206, 0.7333, 0.71954, 0.82034, 0.72813, 0.8913, 0.80125, 0.5179, 0.81428, 0.59333, 0.8348, 0.65995, 0.84793, 0.72953, 0.87862, - 0.82358, 0.89305, 0.89156, 0.19669, 0.67537, 0.17782, 0.74974, 0.1594, 0.835, 0.1429, 0.89783, 0.26012, 0.6723, 0.25017, 0.74806, 0.23685, 0.83359, 0.22589, 0.89647, 0.30659, - 0.89517, 0.3131, 0.83153, 0.31569, 0.74593, 0.32231, 0.67016, 0.38717, 0.66908, 0.38553, 0.74282, 0.38068, 0.829, 0.37648, 0.89407, 0.44462, 0.89408, 0.44322, 0.82643, 0.44458, - 0.7401, 0.44621, 0.66777, 0.50711, 0.66602, 0.50646, 0.73714, 0.50582, 0.82357, 0.50482, 0.89523, 0.57134, 0.89508, 0.5687, 0.82197, 0.56865, 0.73514, 0.5654, 0.66515, 0.62192, - 0.6653, 0.6236, 0.73436, 0.62525, 0.8218, 0.62839, 0.89374, 0.69427, 0.89215, 0.76244, 0.89045, 0.84047, 0.89059, 0.93306, 0.89229, 0.91732, 0.8255, 0.82617, 0.82097, 0.75013, - 0.81967, 0.6863, 0.82108, 0.68017, 0.73364, 0.74166, 0.73297, 0.80979, 0.73115, 0.88285, 0.72805, 0.86581, 0.66008, 0.79931, 0.6598, 0.73613, 0.66121, 0.67214, 0.66431, 0.09776, - 0.92671, 0.13724, 0.92534, 0.1817, 0.92459, 0.22313, 0.92439, 0.26892, 0.92268, 0.30526, 0.92265, 0.34139, 0.92236, 0.3751, 0.92252, 0.41313, 0.92351, 0.44464, 0.92289, 0.47339, - 0.92339, 0.5044, 0.9248, 0.53787, 0.92389, 0.57268, 0.92341, 0.60366, 0.9233, 0.62995, 0.92432, 0.66398, 0.92316, 0.69464, 0.92383, 0.73085, 0.92333, 0.76403, 0.92521, 0.79572, - 0.92461, 0.84011, 0.92404, 0.89075, 0.92209, 0.92774, 0.92274, 0.96706, 0.92576 + 0.93928, 0.51035, 0.95558, 0.60687, 0.96791, 0.67987, 0.98006, 0.75177, 1, 0.86979, 1, 0.93047, 1, 1, 0.9567, 1, 0.9208, 1, 0.88771, 1, 0.83969, 1, 0.79967, 1, 0.76574, 1, 0.73418, + 1, 0.69508, 1, 0.6661, 1, 0.6319, 1, 0.6046, 1, 0.57454, 1, 0.53755, 1, 0.50387, 1, 0.47341, 1, 0.44466, 1, 0.41233, 1, 0.37317, 1, 0.33787, 1, 0.30333, 1, 0.2648, 1, 0.21937, 1, + 0.17434, 1, 0.12959, 1, 0.08769, 1, 0, 1, 0.02085, 0.93004, 0.04055, 0.86394, 0.06626, 0.77764, 0.08854, 0.70287, 0.11527, 0.61317, 0.13788, 0.53731, 0.35753, 0, 0.43128, 0, 0.52161, + 0, 0.60662, 0, 0.67954, 0, 0.54109, 0.53632, 0.30907, 0.53689, 0.75362, 0.52246, 0.84707, 0.51636, 0.2081, 0.53714, 0.42115, 0.53662, 0.64269, 0.52969, 0.1892, 0.6098, 0.3018, + 0.61294, 0.41972, 0.61185, 0.54053, 0.60957, 0.64648, 0.60579, 0.76151, 0.60426, 0.87262, 0.59717, 0.16806, 0.69109, 0.29497, 0.68444, 0.41838, 0.68224, 0.54, 0.67846, 0.65011, + 0.67878, 0.7681, 0.67261, 0.89666, 0.6732, 0.14733, 0.77075, 0.28705, 0.76725, 0.41688, 0.761, 0.53942, 0.75466, 0.6538, 0.7529, 0.7757, 0.75146, 0.91933, 0.74487, 0.12337, 0.86287, + 0.2782, 0.85982, 0.4151, 0.85429, 0.53871, 0.84818, 0.65852, 0.84778, 0.7847, 0.84476, 0.95379, 0.85385, 0.97627, 0.92496, 0.79208, 0.9213, 0.66236, 0.9248, 0.5381, 0.92796, 0.41375, + 0.92539, 0.2717, 0.9278, 0.10571, 0.93074, 0.53197, 0.28531, 0.39415, 0.16313, 0.65961, 0.18832, 0.25473, 0.53703, 0.24202, 0.61127, 0.22911, 0.68789, 0.21379, 0.76908, 0.19729, + 0.86141, 0.18704, 0.9293, 0.36352, 0.53676, 0.36013, 0.6124, 0.35748, 0.68332, 0.35288, 0.76408, 0.34802, 0.857, 0.34383, 0.92658, 0.48024, 0.53647, 0.47847, 0.61074, 0.47433, + 0.6805, 0.47563, 0.75796, 0.47402, 0.85138, 0.47337, 0.92662, 0.58955, 0.53316, 0.59344, 0.60768, 0.59605, 0.67863, 0.5961, 0.75379, 0.60032, 0.84797, 0.60296, 0.92631, 0.69391, + 0.52635, 0.69915, 0.60509, 0.70691, 0.67581, 0.71206, 0.75221, 0.71954, 0.84632, 0.72813, 0.92303, 0.80125, 0.51935, 0.81428, 0.60089, 0.8348, 0.67292, 0.84793, 0.74814, 0.87862, + 0.84981, 0.89305, 0.92331, 0.19669, 0.68959, 0.17782, 0.76999, 0.1594, 0.86216, 0.1429, 0.93008, 0.26012, 0.68627, 0.25017, 0.76817, 0.23685, 0.86063, 0.22589, 0.92861, 0.30659, + 0.92721, 0.3131, 0.85841, 0.31569, 0.76587, 0.32231, 0.68395, 0.38717, 0.68279, 0.38553, 0.76251, 0.38068, 0.85568, 0.37648, 0.92602, 0.44462, 0.92603, 0.44322, 0.8529, 0.44458, + 0.75957, 0.44621, 0.68137, 0.50711, 0.67948, 0.50646, 0.75636, 0.50582, 0.84981, 0.50482, 0.92727, 0.57134, 0.92712, 0.5687, 0.84808, 0.56865, 0.75421, 0.5654, 0.67854, 0.62192, + 0.6787, 0.6236, 0.75336, 0.62525, 0.84789, 0.62839, 0.92567, 0.69427, 0.92394, 0.76244, 0.9221, 0.84047, 0.92226, 0.93306, 0.9241, 0.91732, 0.85189, 0.82617, 0.84699, 0.75013, + 0.84559, 0.6863, 0.84711, 0.68017, 0.75259, 0.74166, 0.75186, 0.80979, 0.74989, 0.88285, 0.74654, 0.86581, 0.67306, 0.79931, 0.67276, 0.73613, 0.67429, 0.67214, 0.67763, 0.09776, + 0.96131, 0.13724, 0.95982, 0.1817, 0.95902, 0.22313, 0.9588, 0.26892, 0.95695, 0.30526, 0.95692, 0.34139, 0.95661, 0.3751, 0.95678, 0.41313, 0.95785, 0.44464, 0.95718, 0.47339, + 0.95772, 0.5044, 0.95925, 0.53787, 0.95826, 0.57268, 0.95774, 0.60366, 0.95762, 0.62995, 0.95872, 0.66398, 0.95747, 0.69464, 0.9582, 0.73085, 0.95766, 0.76403, 0.95969, 0.79572, + 0.95904, 0.84011, 0.95843, 0.89075, 0.95631, 0.92774, 0.95702, 0.96706, 0.96028 ], "triangles": [ 8, 196, 7, 9, 195, 8, 8, 195, 196, 10, 194, 9, 9, 194, 195, 10, 11, 194, 12, 193, 11, 11, 193, 194, 13, 192, 12, 12, 192, 193, 14, 191, 13, 13, 191, 192, 15, 190, 14, 14, 190, 191, @@ -15583,51 +30808,137 @@ 382, 382, 236, 380, 382, 24, 384, 384, 316, 382, 384, 22, 386, 386, 160, 384, 386, 20, 388, 388, 318, 386, 388, 18, 390, 390, 248, 388, 390, 16, 392, 392, 320, 390, 392, 14, 394, 394, 158, 392, 394 ], - "width": 83, - "height": 74, - "path": "summer-a.ear-right-bubble" - } - }, - "ear-right-dot-01": {"ear-right-dot": {"x": -0.78, "y": -0.78, "rotation": -0.95, "width": 17, "height": 12, "path": "summer-a.ear-right-dot"}}, - "ear-right-dot-02": {"ear-right-dot": {"x": -0.78, "y": -0.78, "rotation": -0.95, "width": 17, "height": 12, "path": "summer-a.ear-right-dot"}}, - "ear-right-dot-03": {"ear-right-dot": {"x": -0.78, "y": -0.78, "rotation": -0.95, "width": 17, "height": 12, "path": "summer-a.ear-right-dot"}}, - "ear-right-dot-04": {"ear-right-dot": {"x": -0.78, "y": -0.78, "rotation": -0.95, "width": 17, "height": 12, "path": "summer-a.ear-right-dot"}}, - "ear-right-dot-05": {"ear-right-dot": {"x": -0.78, "y": -0.78, "rotation": -0.95, "width": 17, "height": 12, "path": "summer-a.ear-right-dot"}}, - "ear-right-dot-06": {"ear-right-dot": {"x": -0.78, "y": -0.78, "rotation": -0.95, "width": 17, "height": 12, "path": "summer-a.ear-right-dot"}}, - "ear-right-dot-07": {"ear-right-dot": {"x": -0.78, "y": -0.78, "rotation": -0.95, "width": 17, "height": 12, "path": "summer-a.ear-right-dot"}}, - "ear-right-dot-08": {"ear-right-dot": {"x": -0.78, "y": -0.78, "rotation": -0.95, "width": 17, "height": 12, "path": "summer-a.ear-right-dot"}}, - "ear-right-dot-09": {"ear-right-dot": {"x": -0.78, "y": -0.78, "rotation": -0.95, "width": 17, "height": 12, "path": "summer-a.ear-right-dot"}}, - "ear-right-dot-10": {"ear-right-dot": {"x": -0.78, "y": -0.78, "rotation": -0.95, "width": 17, "height": 12, "path": "summer-a.ear-right-dot"}}, - "ear-right-dot-11": {"ear-right-dot": {"x": -0.78, "y": -0.78, "rotation": -0.95, "width": 17, "height": 12, "path": "summer-a.ear-right-dot"}}, - "ear-right-dot-12": {"ear-right-dot": {"x": -0.78, "y": -0.78, "rotation": -0.95, "width": 17, "height": 12, "path": "summer-a.ear-right-dot"}}, - "ear-right-dot-13": {"ear-right-dot": {"x": -0.78, "y": -0.78, "rotation": -0.95, "width": 17, "height": 12, "path": "summer-a.ear-right-dot"}}, - "ear-right-dot-14": {"ear-right-dot": {"x": -0.78, "y": -0.78, "rotation": -0.95, "width": 17, "height": 12, "path": "summer-a.ear-right-dot"}}, - "ear-right-dot-15": {"ear-right-dot": {"x": -0.78, "y": -0.78, "rotation": -0.95, "width": 17, "height": 12, "path": "summer-a.ear-right-dot"}}, - "ear-right-dot-16": {"ear-right-dot": {"x": -0.78, "y": -0.78, "rotation": -0.95, "width": 17, "height": 12, "path": "summer-a.ear-right-dot"}}, - "ear-right-dot-17": {"ear-right-dot": {"x": -0.78, "y": -0.78, "rotation": -0.95, "width": 17, "height": 12, "path": "summer-a.ear-right-dot"}}, - "ear-right-dot-18": {"ear-right-dot": {"x": -0.78, "y": -0.78, "rotation": -0.95, "width": 17, "height": 12, "path": "summer-a.ear-right-dot"}}, - "ear-right-dot-19": {"ear-right-dot": {"x": -0.78, "y": -0.78, "rotation": -0.95, "width": 17, "height": 12, "path": "summer-a.ear-right-dot"}}, - "ear-right-dot-20": {"ear-right-dot": {"x": -0.78, "y": -0.78, "rotation": -0.95, "width": 17, "height": 12, "path": "summer-a.ear-right-dot"}}, - "ear-right-under": {"ear-right-under": {"x": 84.87, "y": -16.34, "rotation": -93, "width": 119, "height": 205, "path": "summer-a.ear-right-under"}}, - "ear-right-upper": {"ear-right-upper": {"x": 89.21, "y": -19.57, "rotation": -93, "width": 129, "height": 214, "path": "summer-a.ear-right-upper"}}, + "width": 82.3529411764706, + "height": 72.94117647058823, + "path": "summer-a-lv2.ear-right-bubble", + "x": 0.32352941176470296, + "y": 0.529411764705884 + } + }, + "ear-right-dot-01": { + "ear-right-dot": { + "x": -0.04470588235294204, "y": -0.04470588235294204, "rotation": -0.95, "width": 23.529411764705884, "height": 23.529411764705884, "path": "summer-a-lv2.ear-right-dot" + } + }, + "ear-right-dot-02": { + "ear-right-dot": { + "x": -0.04470588235294204, "y": -0.04470588235294204, "rotation": -0.95, "width": 23.529411764705884, "height": 23.529411764705884, "path": "summer-a-lv2.ear-right-dot" + } + }, + "ear-right-dot-03": { + "ear-right-dot": { + "x": -0.04470588235294204, "y": -0.04470588235294204, "rotation": -0.95, "width": 23.529411764705884, "height": 23.529411764705884, "path": "summer-a-lv2.ear-right-dot" + } + }, + "ear-right-dot-04": { + "ear-right-dot": { + "x": -0.04470588235294204, "y": -0.04470588235294204, "rotation": -0.95, "width": 23.529411764705884, "height": 23.529411764705884, "path": "summer-a-lv2.ear-right-dot" + } + }, + "ear-right-dot-05": { + "ear-right-dot": { + "x": -0.04470588235294204, "y": -0.04470588235294204, "rotation": -0.95, "width": 23.529411764705884, "height": 23.529411764705884, "path": "summer-a-lv2.ear-right-dot" + } + }, + "ear-right-dot-06": { + "ear-right-dot": { + "x": -0.04470588235294204, "y": -0.04470588235294204, "rotation": -0.95, "width": 23.529411764705884, "height": 23.529411764705884, "path": "summer-a-lv2.ear-right-dot" + } + }, + "ear-right-dot-07": { + "ear-right-dot": { + "x": -0.04470588235294204, "y": -0.04470588235294204, "rotation": -0.95, "width": 23.529411764705884, "height": 23.529411764705884, "path": "summer-a-lv2.ear-right-dot" + } + }, + "ear-right-dot-08": { + "ear-right-dot": { + "x": -0.04470588235294204, "y": -0.04470588235294204, "rotation": -0.95, "width": 23.529411764705884, "height": 23.529411764705884, "path": "summer-a-lv2.ear-right-dot" + } + }, + "ear-right-dot-09": { + "ear-right-dot": { + "x": -0.04470588235294204, "y": -0.04470588235294204, "rotation": -0.95, "width": 23.529411764705884, "height": 23.529411764705884, "path": "summer-a-lv2.ear-right-dot" + } + }, + "ear-right-dot-10": { + "ear-right-dot": { + "x": -0.04470588235294204, "y": -0.04470588235294204, "rotation": -0.95, "width": 23.529411764705884, "height": 23.529411764705884, "path": "summer-a-lv2.ear-right-dot" + } + }, + "ear-right-dot-11": { + "ear-right-dot": { + "x": -0.04470588235294204, "y": -0.04470588235294204, "rotation": -0.95, "width": 23.529411764705884, "height": 23.529411764705884, "path": "summer-a-lv2.ear-right-dot" + } + }, + "ear-right-dot-12": { + "ear-right-dot": { + "x": -0.04470588235294204, "y": -0.04470588235294204, "rotation": -0.95, "width": 23.529411764705884, "height": 23.529411764705884, "path": "summer-a-lv2.ear-right-dot" + } + }, + "ear-right-dot-13": { + "ear-right-dot": { + "x": -0.04470588235294204, "y": -0.04470588235294204, "rotation": -0.95, "width": 23.529411764705884, "height": 23.529411764705884, "path": "summer-a-lv2.ear-right-dot" + } + }, + "ear-right-dot-14": { + "ear-right-dot": { + "x": -0.04470588235294204, "y": -0.04470588235294204, "rotation": -0.95, "width": 23.529411764705884, "height": 23.529411764705884, "path": "summer-a-lv2.ear-right-dot" + } + }, + "ear-right-dot-15": { + "ear-right-dot": { + "x": -0.04470588235294204, "y": -0.04470588235294204, "rotation": -0.95, "width": 23.529411764705884, "height": 23.529411764705884, "path": "summer-a-lv2.ear-right-dot" + } + }, + "ear-right-dot-16": { + "ear-right-dot": { + "x": -0.04470588235294204, "y": -0.04470588235294204, "rotation": -0.95, "width": 23.529411764705884, "height": 23.529411764705884, "path": "summer-a-lv2.ear-right-dot" + } + }, + "ear-right-dot-17": { + "ear-right-dot": { + "x": -0.04470588235294204, "y": -0.04470588235294204, "rotation": -0.95, "width": 23.529411764705884, "height": 23.529411764705884, "path": "summer-a-lv2.ear-right-dot" + } + }, + "ear-right-dot-18": { + "ear-right-dot": { + "x": -0.04470588235294204, "y": -0.04470588235294204, "rotation": -0.95, "width": 23.529411764705884, "height": 23.529411764705884, "path": "summer-a-lv2.ear-right-dot" + } + }, + "ear-right-dot-19": { + "ear-right-dot": { + "x": -0.04470588235294204, "y": -0.04470588235294204, "rotation": -0.95, "width": 23.529411764705884, "height": 23.529411764705884, "path": "summer-a-lv2.ear-right-dot" + } + }, + "ear-right-dot-20": { + "ear-right-dot": { + "x": -0.04470588235294204, "y": -0.04470588235294204, "rotation": -0.95, "width": 23.529411764705884, "height": 23.529411764705884, "path": "summer-a-lv2.ear-right-dot" + } + }, + "ear-right-under": { + "ear-right-under": {"x": 85.03764705882352, "y": -16.542941176470595, "rotation": -93, "width": 131.76470588235296, "height": 204.7058823529412, "path": "summer-a-lv2.ear-right-under"} + }, + "ear-right-upper": { + "ear-right-upper": {"x": 92.82176470588234, "y": -16.894705882352955, "rotation": -93, "width": 141.1764705882353, "height": 263.5294117647059, "path": "summer-a-lv2.ear-right-upper"} + }, "eyes": { - "eyes": {"x": 24.37, "y": 24.61, "width": 330, "height": 155, "path": "summer-a.eyes"}, - "eyes-angry": {"x": 24.37, "y": 24.61, "width": 330, "height": 155, "path": "summer-a.eyes-angry"}, - "eyes-happy": {"x": 24.37, "y": 24.61, "width": 330, "height": 155, "path": "summer-a.eyes-happy"}, - "eyes-shut": {"x": 24.37, "y": 24.61, "width": 330, "height": 155, "path": "summer-a.eyes-shut"} - }, - "eyes-happy-accessory": {"eyes-happy-accessory": {"x": 0.37, "y": 0.4, "scaleX": 1.4, "scaleY": 1.4, "width": 101, "height": 107, "path": "summer-a.eyes-happy-accessory"}}, - "eyes-light-dot": {"eye-light-dot": {"x": -0.96, "y": 1.51, "width": 70, "height": 72, "path": "summer-a.eye-light-dot"}}, - "eyes-light-dot-02": {"eye-light-dot": {"x": -0.96, "y": 1.51, "width": 70, "height": 72, "path": "summer-a.eye-light-dot"}}, - "eyes-light-left": {"light": {"x": 6.55, "y": 1.56, "scaleX": 1.2, "scaleY": 1.8, "rotation": 178.57, "width": 49, "height": 73, "path": "summer-a.light"}}, - "eyes-light-right": {"light": {"x": 6.55, "y": 1.56, "scaleX": 1.2, "scaleY": 1.8, "rotation": 178.57, "width": 49, "height": 73, "path": "summer-a.light"}}, - "eyes-upper": {"eyes-upper": {"x": 24.04, "y": 24.72, "width": 328, "height": 153, "path": "summer-a.eyes-upper"}}, - "horn": {"horn": {"x": 101.61, "y": -20.37, "rotation": -90, "width": 234, "height": 239, "path": "summer-td.horn"}}, + "eyes": {"x": 22.799411764705884, "y": 24.591764705882355, "width": 272.94117647058823, "height": 101.17647058823529, "path": "summer-a-lv2.eyes"}, + "eyes-angry": {"x": 22.799411764705884, "y": 24.591764705882355, "width": 272.94117647058823, "height": 101.17647058823529, "path": "summer-a-lv2.eyes-angry"}, + "eyes-happy": {"x": 22.799411764705884, "y": 24.591764705882355, "width": 272.94117647058823, "height": 101.17647058823529, "path": "summer-a-lv2.eyes-happy"}, + "eyes-shut": {"x": 22.799411764705884, "y": 24.591764705882355, "width": 272.94117647058823, "height": 101.17647058823529, "path": "summer-a-lv2.eyes-shut"} + }, + "eyes-happy-accessory": { + "eyes-happy-accessory": { + "x": 1.458235294117645, "y": 0.958823529411761, "scaleX": 1.4, "scaleY": 1.4, "width": 98.82352941176471, "height": 105.88235294117648, "path": "summer-a-lv2.eyes-happy-accessory" + } + }, + "eyes-upper": {"eyes-upper": {"x": 23.387647058823536, "y": 24.29764705882352, "width": 371.7647058823529, "height": 171.76470588235296, "path": "summer-a-lv2.eyes-upper"}}, + "horn": {"horn": {"x": 87.91529411764705, "y": -6.181764705882362, "rotation": -90, "width": 263.5294117647059, "height": 178.82352941176472, "path": "summer-td-lv2.horn"}}, "mouth": { - "mouth": {"x": -11.63, "y": 54.61, "width": 146, "height": 59, "path": "summer-a.mouth"}, - "mouth-bite": {"x": -1.13, "y": 39.61, "width": 167, "height": 99, "path": "summer-a.mouth-bite"}, - "mouth-open": {"x": -6.63, "y": 16.11, "width": 156, "height": 140, "path": "summer-a.mouth-open"}, - "mouth-smile": {"x": -1.63, "y": 47.61, "width": 166, "height": 65, "path": "summer-a.mouth-smile"} + "mouth": {"x": -7.906470588235305, "y": 100.18, "width": 282.3529411764706, "height": 280.0, "path": "summer-a-lv2.mouth"}, + "mouth-bite": {"x": -7.906470588235305, "y": 100.18, "width": 282.3529411764706, "height": 280.0, "path": "summer-a-lv2.mouth-bite"}, + "mouth-open": {"x": -7.906470588235305, "y": 94.29764705882354, "width": 282.3529411764706, "height": 291.7647058823529, "path": "summer-a-lv2.mouth-open"}, + "mouth-smile": {"x": -7.906470588235305, "y": 100.18, "width": 282.3529411764706, "height": 280.0, "path": "summer-a-lv2.mouth-smile"} }, "mouth-accessory": { "mouth-accessory": { @@ -15694,12 +31005,14 @@ 176, 110, 174, 176, 42, 178, 178, 108, 176, 178, 40, 180, 180, 106, 178, 180, 38, 182, 182, 104, 180, 182, 36, 184, 184, 102, 182, 184, 34, 186, 186, 100, 184, 186, 32, 188, 188, 98, 186, 188, 30, 190, 190, 138, 188, 190, 28, 192, 192, 140, 190, 192, 192, 146 ], - "width": 164, - "height": 164, - "path": "summer-a.mouth-accessory" + "width": 162.35294117647058, + "height": 162.35294117647058, + "path": "summer-a-lv2.mouth-accessory", + "x": 0.8235294117647101, + "y": 0.8235294117647101 } }, - "tail": {"tail": {"x": 113.64, "y": 3.45, "rotation": 12, "width": 227, "height": 227, "path": "summer-a.tail"}} + "tail": {"tail": {"x": 111.3764705882353, "y": 26.9, "rotation": 12, "width": 277.6470588235294, "height": 280.0, "path": "summer-a-lv2.tail"}} } } ], @@ -15721,10 +31034,14 @@ "action/mix/eyes-animation": "3799301307", "battle/get-buff": "1455190363", "battle/get-debuff": "606904312", - "defense/hit-by-normal": "2045974966", - "defense/hit-by-normal-crit": "2130010601", - "defense/hit-by-normal-dramatic": "3823092125", - "defense/hit-by-ranged-attack": "2224561612", + "defense/hit-by-normal": "978716858", + "defense/hit-by-normal-crit": "3941256645", + "defense/hit-by-normal-crit2": "2130010601", + "defense/hit-by-normal-dramatic": "2527908154", + "defense/hit-by-normal-dramatic2": "3823092125", + "defense/hit-by-normal2": "2045974966", + "defense/hit-by-ranged-attack": "2207699263", + "defense/hit-by-ranged-attack2": "2224561612", "defense/hit-with-shield": "390714790", "attack/melee/horn-gore": "1327954218", "attack/melee/mouth-bite": "2237748264", @@ -15734,6 +31051,7 @@ "action/idle/normal": "1659336865", "attack/melee/normal-attack": "3305373483", "action/mix/normal-mouth-animation": "1178295570", + "action/idle/normal2": "3503981622", "activity/prepare": "405864717", "action/idle/random-01": "554401889", "action/idle/random-02": "3634120758", diff --git a/Assets/AxieInfinity/AxieStandardAssets/Sprites.meta b/Assets/AxieInfinity/AxieStandardAssets/Sprites.meta index 63acc58..1506833 100644 --- a/Assets/AxieInfinity/AxieStandardAssets/Sprites.meta +++ b/Assets/AxieInfinity/AxieStandardAssets/Sprites.meta @@ -1,5 +1,5 @@ fileFormatVersion: 2 -guid: 6a45c715c88744983b920992251dffbf +guid: b79c346cba8514e3e9381c00ad729253 folderAsset: yes DefaultImporter: externalObjects: {} diff --git a/Assets/AxieInfinity/AxieStandardAssets/Sprites/icon-mixer-big.png.meta b/Assets/AxieInfinity/AxieStandardAssets/Sprites/icon-mixer-big.png.meta index 811e33c..5c83f80 100644 --- a/Assets/AxieInfinity/AxieStandardAssets/Sprites/icon-mixer-big.png.meta +++ b/Assets/AxieInfinity/AxieStandardAssets/Sprites/icon-mixer-big.png.meta @@ -1,5 +1,5 @@ fileFormatVersion: 2 -guid: 61e8610155fec486a83f7b97e4e6132e +guid: 5a084cd49001d4020aee70eb7b4fb414 TextureImporter: internalIDToNameTable: [] externalObjects: {} diff --git a/Assets/AxieInfinity/AxieStandardAssets/Sprites/icon-mixer.png.meta b/Assets/AxieInfinity/AxieStandardAssets/Sprites/icon-mixer.png.meta index cf2364e..06abd0a 100644 --- a/Assets/AxieInfinity/AxieStandardAssets/Sprites/icon-mixer.png.meta +++ b/Assets/AxieInfinity/AxieStandardAssets/Sprites/icon-mixer.png.meta @@ -1,5 +1,5 @@ fileFormatVersion: 2 -guid: bcd562b0209fc46208d957e495761cf2 +guid: 20f2977156b5d42babddac76f1f93f2c TextureImporter: internalIDToNameTable: [] externalObjects: {} diff --git a/Assets/Scripts/1. Basic/AxieMixerPlayground.cs b/Assets/Scripts/1. Basic/AxieMixerPlayground.cs index e95f013..53ec0c2 100644 --- a/Assets/Scripts/1. Basic/AxieMixerPlayground.cs +++ b/Assets/Scripts/1. Basic/AxieMixerPlayground.cs @@ -20,11 +20,13 @@ public class AxieMixerPlayground : MonoBehaviour [SerializeField] Dropdown bodyDropDown; [SerializeField] Toggle allAxieToggle; [SerializeField] Toggle customIdToggle; + [SerializeField] Toggle customLVToggle; + [SerializeField] Toggle[] customPartToggles; [SerializeField] RectTransform rootTF; Axie2dBuilder builder => Mixer.Builder; - const bool USE_GRAPHIC = true; + const bool USE_GRAPHIC = false; int accessoryIdx = 1; static string[] ACCESSORY_SLOTS = new[] @@ -41,6 +43,7 @@ private void OnEnable() mixBtn.onClick.AddListener(OnMixButtonClicked); allAxieToggle.onValueChanged.AddListener((b) => { if (b) OnSwitch(); }); customIdToggle.onValueChanged.AddListener((b) => { if (b) OnSwitch(); }); + customLVToggle.onValueChanged.AddListener((b) => { OnCustomLvSwitch(); }); animationDropDown.onValueChanged.AddListener((_) => OnAnimationChanged()); leftAnimBtn.onClick.AddListener(() => OnAnimationStep(-1)); rightAnimBtn.onClick.AddListener(() => OnAnimationStep(1)); @@ -51,6 +54,7 @@ private void OnDisable() mixBtn.onClick.RemoveListener(OnMixButtonClicked); allAxieToggle.onValueChanged.RemoveAllListeners(); customIdToggle.onValueChanged.RemoveAllListeners(); + customLVToggle.onValueChanged.RemoveAllListeners(); animationDropDown.onValueChanged.RemoveAllListeners(); leftAnimBtn.onClick.RemoveAllListeners(); rightAnimBtn.onClick.RemoveAllListeners(); @@ -63,9 +67,27 @@ void Start() animationDropDown.ClearOptions(); animationDropDown.AddOptions(animationList); + //TestCombo(); //TestAll(); TestSummer(); //ProcessMixer("", "0x90000000000001000080e020c40c00000001001028a084080001000008404408000003000800440c0000039408a0450600000300300041020000048008004104", USE_GRAPHIC); + //var adultCombo = new Dictionary { + // {"back", "aquatic-back-04" }, //blue-moon + // {"ears", "beast-ears-02" }, //nyan + // {"eyes", "reptile-eyes-02.1" }, //Crimson Gecko + // {"horn", "bird-horn-12" }, //feather-spear + // {"mouth", "plant-mouth-10" }, //silence-whisper + // {"tail", "bird-tail-08" }, //Cloud + // {"body-class", "beast" }, + // }; + //string genes = Genes.FakeAxie512.FakeAxie(adultCombo); + //Debug.Log($"axiepart:{genes}/back"); + //Debug.Log($"axiepart:{genes}/ear"); + //Debug.Log($"axiepart:{genes}/eyes"); + //Debug.Log($"axiepart:{genes}/horn"); + //Debug.Log($"axiepart:{genes}/mouth"); + //Debug.Log($"axiepart:{genes}/back"); + //ProcessMixer("", genes, true); } void OnSwitch() @@ -74,6 +96,14 @@ void OnSwitch() axieIdInputField.gameObject.SetActive(customIdToggle.isOn); } + void OnCustomLvSwitch() + { + for(int i = 0; i < customPartToggles.Length; i++) + { + customPartToggles[i].interactable = customLVToggle.isOn; + } + } + void OnAnimationChanged() { var animName = animationDropDown.options[animationDropDown.value].text; @@ -113,10 +143,10 @@ void TestAll() int k = 0; string bodyMode = bodyDropDown.options[bodyDropDown.value].text.ToLower().Replace("body ", ""); - for (int classIdx = 0;classIdx < 6;classIdx++) + for (int classIdx = 0; classIdx < 6; classIdx++) { var characterClass = (CharacterClass)classIdx; - for (int classValue = 2;classValue <= 12;classValue += 2) + for (int classValue = 2; classValue <= 12; classValue += 2) { string key = $"{characterClass}-{classValue:00}"; // @@ -131,7 +161,7 @@ void TestAll() } } - for (int classIdx = 0;classIdx < 6;classIdx++) + for (int classIdx = 0; classIdx < 6; classIdx++) { var characterClass = (CharacterClass)classIdx; string key = $"{characterClass}-mystic-02"; @@ -140,14 +170,14 @@ void TestAll() } { - for (int classValue = 1;classValue <= 2;classValue += 1) + for (int classValue = 1; classValue <= 2; classValue += 1) { string key = $"xmas-{classValue:00}"; bodies.Add((key, "body-frosty", 0, classValue)); } } { - for (int classValue = 1;classValue <= 3;classValue += 1) + for (int classValue = 1; classValue <= 3;classValue += 1) { string key = $"japan-{classValue:00}"; bodies.Add((key, "body-normal", 0, classValue)); @@ -185,119 +215,171 @@ void TestAll() {"body-id", " 2727 " }, }; - foreach(var accessorySlot in ACCESSORY_SLOTS) - { - adultCombo.Add(accessorySlot, $"{accessorySlot}1{System.Char.ConvertFromUtf32((int)('a') + accessoryIdx - 1)}"); - } + //foreach(var accessorySlot in ACCESSORY_SLOTS) + //{ + // adultCombo.Add(accessorySlot, $"{accessorySlot}1{System.Char.ConvertFromUtf32((int)('a') + accessoryIdx - 1)}"); + //} float scale = 0.0018f; - byte colorVariant = (byte)builder.GetSampleColorVariant(characterClass, classValue); - - var builderResult = builder.BuildSpineAdultCombo(adultCombo, colorVariant, scale); + byte colorVariant = (byte)builder.GetSampleColorVariant(characterClass, 2); - //Test - GameObject go = new GameObject("DemoAxie"); - int row = total / 6; - int col = total % 6; - //go.transform.localPosition = new Vector3(row * 1.6f, col * 1.5f) - new Vector3(7.9f, 4.8f, 0); - go.transform.localPosition = new Vector3(row * 1.85f, col * 1.5f) - new Vector3(7.9f, 4.8f, 0); - - SkeletonAnimation runtimeSkeletonAnimation = SkeletonAnimation.NewSkeletonAnimationGameObject(builderResult.skeletonDataAsset); - //runtimeSkeletonAnimation.gameObject.layer = LayerMask.NameToLayer("Player"); - runtimeSkeletonAnimation.transform.SetParent(go.transform, false); - runtimeSkeletonAnimation.transform.localScale = Vector3.one; - var meshRenderer = runtimeSkeletonAnimation.GetComponent(); - meshRenderer.sortingOrder = 10 * total; - total++; - - runtimeSkeletonAnimation.gameObject.AddComponent(); - runtimeSkeletonAnimation.state.SetAnimation(0, "action/idle/normal", true); - - runtimeSkeletonAnimation.state.TimeScale = 0.5f; - //runtimeSkeletonAnimation.skeleton.FindSlot("shadow").Attachment = null; - if (builderResult.adultCombo.ContainsKey("body") && - builderResult.adultCombo["body"].Contains("mystic") && - builderResult.adultCombo.TryGetValue("body-class", out var bodyClass) && - builderResult.adultCombo.TryGetValue("body-id", out var bodyId)) { - runtimeSkeletonAnimation.gameObject.AddComponent().Init(bodyClass, bodyId); + if (customLVToggle.isOn) + { + for (int i = 0; i < 6; i++) + { + AxiePartType partType = (AxiePartType)i; + if (customPartToggles[i].isOn) + { + adultCombo.Add($"{partType}.lv2", "y"); + } + } + } + var builderResult = builder.BuildSpineAdultCombo(adultCombo, colorVariant, scale); + + //Test + GameObject go = new GameObject("DemoAxie"); + int row = total / 6; + int col = total % 6; + //go.transform.localPosition = new Vector3(row * 1.6f, col * 1.5f) - new Vector3(7.9f, 4.8f, 0); + go.transform.localPosition = new Vector3(row * 1.85f, col * 1.5f) - new Vector3(7.9f, 4.8f, 0); + + SkeletonAnimation runtimeSkeletonAnimation = SkeletonAnimation.NewSkeletonAnimationGameObject(builderResult.skeletonDataAsset); + runtimeSkeletonAnimation.transform.SetParent(go.transform, false); + runtimeSkeletonAnimation.transform.localScale = Vector3.one; + var meshRenderer = runtimeSkeletonAnimation.GetComponent(); + meshRenderer.sortingOrder = 10 * total; + + + runtimeSkeletonAnimation.gameObject.AddComponent(); + runtimeSkeletonAnimation.state.SetAnimation(0, "action/idle/normal", true); + + runtimeSkeletonAnimation.state.TimeScale = 0.25f; + //runtimeSkeletonAnimation.skeleton.FindSlot("shadow").Attachment = null; + if (builderResult.adultCombo.ContainsKey("body") && + builderResult.adultCombo["body"].Contains("mystic") && + builderResult.adultCombo.TryGetValue("body-class", out var bodyClass) && + builderResult.adultCombo.TryGetValue("body-id", out var bodyId)) + { + runtimeSkeletonAnimation.gameObject.AddComponent().Init(bodyClass, bodyId); + } } + total++; } Debug.Log("Done"); } + void TestCombo() + { + + CharacterClass characterClass = CharacterClass.beast; + string finalBody = "body-normal"; + string key = "beast-02"; + string keyAdjust = key.Replace("-06", "-02").Replace("-12", "-04"); + var adultCombo = new Dictionary { + {"back", key }, + {"body", finalBody }, + {"ears", key }, + {"ear", key }, + {"eyes", keyAdjust }, + {"horn", key }, + {"mouth", keyAdjust }, + {"tail", key }, + {"body-class", characterClass.ToString() }, + {"body-id", " 2727 " }, + }; + + float scale = 0.0032f; + var builderResult = builder.BuildSpineAdultCombo(adultCombo, 0, scale); + + GameObject go = new GameObject("DemoAxie"); + int row = 0 / 3; + int col = 0 % 3; + //go.transform.localPosition = new Vector3(row * 1.6f, col * 1.5f) - new Vector3(7.9f, 4.8f, 0); + go.transform.localPosition = new Vector3(row * 2.85f, col * 2.5f) - new Vector3(6.9f, 4.8f, 0); + + SkeletonAnimation runtimeSkeletonAnimation = SkeletonAnimation.NewSkeletonAnimationGameObject(builderResult.skeletonDataAsset); + runtimeSkeletonAnimation.transform.SetParent(go.transform, false); + runtimeSkeletonAnimation.transform.localScale = Vector3.one; + var meshRenderer = runtimeSkeletonAnimation.GetComponent(); + + runtimeSkeletonAnimation.gameObject.AddComponent(); + runtimeSkeletonAnimation.state.SetAnimation(0, "action/idle/normal", true); + + runtimeSkeletonAnimation.state.TimeScale = 0.5f; + } void TestSummer() { List> lst = new List>(); var summer0 = new Dictionary { - {"back", "summer-a" }, + {"back", "summer-a-lv2" }, {"body", "body-summer" }, - {"ears", "summer-a" }, - {"ear", "summer-a" }, - {"eyes", "summer-a" }, - {"horn", "summer-tc" }, - {"mouth", "summer-a" }, - {"tail", "summer-a" }, + {"ears", "summer-a-lv2" }, + {"ear", "summer-a-lv2" }, + {"eyes", "summer-a-lv2" }, + {"horn", "summer-tc-lv2" }, + {"mouth", "summer-a-lv2" }, + {"tail", "summer-a-lv2" }, }; lst.Add(summer0); var summer1 = new Dictionary { - {"back", "summer-ta" }, + {"back", "summer-ta-lv2" }, {"body", "body-summer" }, - {"ears", "summer-a" }, - {"ear", "summer-a" }, - {"eyes", "summer-a" }, - {"horn", "summer-a" }, - {"mouth", "summer-a" }, - {"tail", "summer-a" }, + {"ears", "summer-a-lv2" }, + {"ear", "summer-a-lv2" }, + {"eyes", "summer-a-lv2" }, + {"horn", "summer-a-lv2" }, + {"mouth", "summer-a-lv2" }, + {"tail", "summer-a-lv2" }, }; lst.Add(summer1); var summer2 = new Dictionary { - {"back", "summer-a" }, + {"back", "summer-a-lv2" }, {"body", "body-summer" }, - {"ears", "summer-a" }, - {"ear", "summer-a" }, - {"eyes", "summer-a" }, - {"horn", "summer-td" }, - {"mouth", "summer-a" }, - {"tail", "summer-a" }, + {"ears", "summer-a-lv2" }, + {"ear", "summer-a-lv2" }, + {"eyes", "summer-a-lv2" }, + {"horn", "summer-td-lv2" }, + {"mouth", "summer-a-lv2" }, + {"tail", "summer-a-lv2" }, }; lst.Add(summer2); var summer3 = new Dictionary { - {"back", "summer-tc" }, + {"back", "summer-tc-lv2" }, {"body", "body-summer" }, - {"ears", "summer-as" }, - {"ear", "summer-as" }, - {"eyes", "summer-as" }, - {"horn", "summer-ta" }, - {"mouth", "summer-as" }, - {"tail", "summer-as" }, + {"ears", "summer-as-lv2" }, + {"ear", "summer-as-lv2" }, + {"eyes", "summer-as-lv2" }, + {"horn", "summer-ta-lv2" }, + {"mouth", "summer-as-lv2" }, + {"tail", "summer-as-lv2" }, }; lst.Add(summer3); var summer4 = new Dictionary { - {"back", "summer-as" }, + {"back", "summer-as-lv2" }, {"body", "body-summer" }, - {"ears", "summer-as" }, - {"ear", "summer-as" }, - {"eyes", "summer-as" }, - {"horn", "summer-as" }, - {"mouth", "summer-as" }, - {"tail", "summer-as" }, + {"ears", "summer-as-lv2" }, + {"ear", "summer-as-lv2" }, + {"eyes", "summer-as-lv2" }, + {"horn", "summer-as-lv2" }, + {"mouth", "summer-as-lv2" }, + {"tail", "summer-as-lv2" }, }; lst.Add(summer4); var summer5 = new Dictionary { - {"back", "summer-tc" }, + {"back", "summer-tc-lv2" }, {"body", "body-summer" }, - {"ears", "summer-as" }, - {"ear", "summer-as" }, - {"eyes", "summer-as" }, - {"horn", "summer-tb" }, - {"mouth", "summer-as" }, - {"tail", "summer-as" }, + {"ears", "summer-as-lv2" }, + {"ear", "summer-as-lv2" }, + {"eyes", "summer-as-lv2" }, + {"horn", "summer-tb-lv2" }, + {"mouth", "summer-as-lv2" }, + {"tail", "summer-as-lv2" }, }; lst.Add(summer5); @@ -329,7 +411,6 @@ void TestSummer() go.transform.localPosition = new Vector3(row * 2.85f, col * 2.5f) - new Vector3(6.9f, 4.8f, 0); SkeletonAnimation runtimeSkeletonAnimation = SkeletonAnimation.NewSkeletonAnimationGameObject(builderResult.skeletonDataAsset); - //runtimeSkeletonAnimation.gameObject.layer = LayerMask.NameToLayer("Player"); runtimeSkeletonAnimation.transform.SetParent(go.transform, false); runtimeSkeletonAnimation.transform.localScale = Vector3.one; var meshRenderer = runtimeSkeletonAnimation.GetComponent(); @@ -350,13 +431,24 @@ void ProcessMixer(string axieId, string genesStr, bool isGraphic) Debug.LogError($"[{axieId}] genes not found!!!"); return; } - float scale = 0.007f; + float scale = 0.017f; var meta = new Dictionary(); //foreach (var accessorySlot in ACCESSORY_SLOTS) //{ // meta.Add(accessorySlot, $"{accessorySlot}1{System.Char.ConvertFromUtf32((int)('a') + accessoryIdx - 1)}"); //} + if (customLVToggle.isOn) + { + for (int i = 0; i < 6; i++) + { + AxiePartType partType = (AxiePartType)i; + if (customPartToggles[i].isOn) + { + meta.Add($"{partType}.lv2", "y"); + } + } + } var builderResult = builder.BuildSpineFromGene(axieId, genesStr, meta, scale, isGraphic); //Test @@ -390,7 +482,6 @@ void SpawnSkeletonAnimation(Axie2dBuilderResult builderResult) GameObject go = new GameObject("DemoAxie"); go.transform.localPosition = new Vector3(0f, -2.4f, 0f); SkeletonAnimation runtimeSkeletonAnimation = SkeletonAnimation.NewSkeletonAnimationGameObject(builderResult.skeletonDataAsset); - runtimeSkeletonAnimation.gameObject.layer = LayerMask.NameToLayer("Player"); runtimeSkeletonAnimation.transform.SetParent(go.transform, false); runtimeSkeletonAnimation.transform.localScale = Vector3.one; diff --git a/Assets/_Scenes/DemoMixer.unity b/Assets/_Scenes/DemoMixer.unity index e8120ca..7df7ee4 100644 --- a/Assets/_Scenes/DemoMixer.unity +++ b/Assets/_Scenes/DemoMixer.unity @@ -235,6 +235,85 @@ RectTransform: m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 0, y: 0} m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &55727614 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 55727615} + - component: {fileID: 55727617} + - component: {fileID: 55727616} + m_Layer: 5 + m_Name: Label + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &55727615 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 55727614} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 346516971} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: 9, y: -0.5} + m_SizeDelta: {x: -28, y: -3} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &55727616 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 55727614} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 5f7201a12d95ffc409449d95f23cf332, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.19607843, g: 0.19607843, b: 0.19607843, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 14 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 0 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 0 + m_VerticalOverflow: 0 + m_LineSpacing: 1 + m_Text: mouth +--- !u!222 &55727617 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 55727614} + m_CullTransparentMesh: 1 --- !u!1 &71336830 GameObject: m_ObjectHideFlags: 0 @@ -356,6 +435,92 @@ MonoBehaviour: m_OnClick: m_PersistentCalls: m_Calls: [] +--- !u!1 &84681984 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 84681985} + - component: {fileID: 84681986} + m_Layer: 5 + m_Name: PartToggle + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &84681985 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 84681984} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 367639782} + - {fileID: 1731415321} + m_Father: {fileID: 1321035340} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &84681986 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 84681984} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 9085046f02f69544eb97fd06b6048fe2, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Navigation: + m_Mode: 3 + m_WrapAround: 0 + m_SelectOnUp: {fileID: 0} + m_SelectOnDown: {fileID: 0} + m_SelectOnLeft: {fileID: 0} + m_SelectOnRight: {fileID: 0} + m_Transition: 1 + m_Colors: + m_NormalColor: {r: 1, g: 1, b: 1, a: 1} + m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} + m_SelectedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} + m_ColorMultiplier: 1 + m_FadeDuration: 0.1 + m_SpriteState: + m_HighlightedSprite: {fileID: 0} + m_PressedSprite: {fileID: 0} + m_SelectedSprite: {fileID: 0} + m_DisabledSprite: {fileID: 0} + m_AnimationTriggers: + m_NormalTrigger: Normal + m_HighlightedTrigger: Highlighted + m_PressedTrigger: Pressed + m_SelectedTrigger: Selected + m_DisabledTrigger: Disabled + m_Interactable: 0 + m_TargetGraphic: {fileID: 367639783} + toggleTransition: 1 + graphic: {fileID: 331791370} + m_Group: {fileID: 0} + onValueChanged: + m_PersistentCalls: + m_Calls: [] + m_IsOn: 1 --- !u!1 &95400342 GameObject: m_ObjectHideFlags: 0 @@ -435,7 +600,7 @@ RectTransform: m_AnchoredPosition: {x: 0, y: -0.5} m_SizeDelta: {x: -20, y: -13} m_Pivot: {x: 0.5, y: 0.5} ---- !u!1 &295720385 +--- !u!1 &155064216 GameObject: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} @@ -443,35 +608,78 @@ GameObject: m_PrefabAsset: {fileID: 0} serializedVersion: 6 m_Component: - - component: {fileID: 295720386} + - component: {fileID: 155064217} + - component: {fileID: 155064219} + - component: {fileID: 155064218} m_Layer: 5 - m_Name: Content + m_Name: Label m_TagString: Untagged m_Icon: {fileID: 0} m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 ---- !u!224 &295720386 +--- !u!224 &155064217 RectTransform: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 295720385} + m_GameObject: {fileID: 155064216} m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: - - {fileID: 675279328} - m_Father: {fileID: 416999616} - m_RootOrder: 0 + m_Children: [] + m_Father: {fileID: 551676995} + m_RootOrder: 1 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 1} + m_AnchorMin: {x: 0, y: 0} m_AnchorMax: {x: 1, y: 1} - m_AnchoredPosition: {x: 0, y: 0} - m_SizeDelta: {x: 0, y: 28} - m_Pivot: {x: 0.5, y: 1} ---- !u!1 &343008504 + m_AnchoredPosition: {x: 9, y: -0.5} + m_SizeDelta: {x: -28, y: -3} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &155064218 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 155064216} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 5f7201a12d95ffc409449d95f23cf332, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.19607843, g: 0.19607843, b: 0.19607843, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 14 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 0 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 0 + m_VerticalOverflow: 0 + m_LineSpacing: 1 + m_Text: ears +--- !u!222 &155064219 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 155064216} + m_CullTransparentMesh: 1 +--- !u!1 &232436720 GameObject: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} @@ -479,101 +687,118 @@ GameObject: m_PrefabAsset: {fileID: 0} serializedVersion: 6 m_Component: - - component: {fileID: 343008505} - - component: {fileID: 343008508} - - component: {fileID: 343008507} - - component: {fileID: 343008506} + - component: {fileID: 232436721} + - component: {fileID: 232436723} + - component: {fileID: 232436722} m_Layer: 5 - m_Name: AnimationDropdown + m_Name: Background m_TagString: Untagged m_Icon: {fileID: 0} m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 ---- !u!224 &343008505 +--- !u!224 &232436721 RectTransform: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 343008504} + m_GameObject: {fileID: 232436720} m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: - - {fileID: 1610536514} - - {fileID: 642872024} - - {fileID: 1146892661} - m_Father: {fileID: 548349244} + - {fileID: 241006499} + m_Father: {fileID: 1655288812} m_RootOrder: 0 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 1, y: 1} - m_AnchoredPosition: {x: 0, y: 0} - m_SizeDelta: {x: -64, y: -10} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 10, y: -10} + m_SizeDelta: {x: 20, y: 20} m_Pivot: {x: 0.5, y: 0.5} ---- !u!114 &343008506 +--- !u!114 &232436722 MonoBehaviour: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 343008504} + m_GameObject: {fileID: 232436720} m_Enabled: 1 m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 0d0b652f32a2cc243917e4028fa0f046, type: 3} + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} m_Name: m_EditorClassIdentifier: - m_Navigation: - m_Mode: 3 - m_WrapAround: 0 - m_SelectOnUp: {fileID: 0} - m_SelectOnDown: {fileID: 0} - m_SelectOnLeft: {fileID: 0} - m_SelectOnRight: {fileID: 0} - m_Transition: 1 - m_Colors: - m_NormalColor: {r: 1, g: 1, b: 1, a: 1} - m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} - m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} - m_SelectedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} - m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} - m_ColorMultiplier: 1 - m_FadeDuration: 0.1 - m_SpriteState: - m_HighlightedSprite: {fileID: 0} - m_PressedSprite: {fileID: 0} - m_SelectedSprite: {fileID: 0} - m_DisabledSprite: {fileID: 0} - m_AnimationTriggers: - m_NormalTrigger: Normal - m_HighlightedTrigger: Highlighted - m_PressedTrigger: Pressed - m_SelectedTrigger: Selected - m_DisabledTrigger: Disabled - m_Interactable: 1 - m_TargetGraphic: {fileID: 343008507} - m_Template: {fileID: 1146892661} - m_CaptionText: {fileID: 1610536515} - m_CaptionImage: {fileID: 0} - m_ItemText: {fileID: 712883902} - m_ItemImage: {fileID: 0} - m_Value: 0 - m_Options: - m_Options: - - m_Text: Animation - m_Image: {fileID: 0} - m_OnValueChanged: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: m_PersistentCalls: m_Calls: [] - m_AlphaFadeSpeed: 0.15 ---- !u!114 &343008507 + m_Sprite: {fileID: 10905, guid: 0000000000000000f000000000000000, type: 0} + m_Type: 1 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!222 &232436723 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 232436720} + m_CullTransparentMesh: 1 +--- !u!1 &241006498 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 241006499} + - component: {fileID: 241006501} + - component: {fileID: 241006500} + m_Layer: 5 + m_Name: Checkmark + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &241006499 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 241006498} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 232436721} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 20, y: 20} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &241006500 MonoBehaviour: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 343008504} + m_GameObject: {fileID: 241006498} m_Enabled: 1 m_EditorHideFlags: 0 m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} @@ -587,8 +812,8 @@ MonoBehaviour: m_OnCullStateChanged: m_PersistentCalls: m_Calls: [] - m_Sprite: {fileID: 10905, guid: 0000000000000000f000000000000000, type: 0} - m_Type: 1 + m_Sprite: {fileID: 10901, guid: 0000000000000000f000000000000000, type: 0} + m_Type: 0 m_PreserveAspect: 0 m_FillCenter: 1 m_FillMethod: 4 @@ -597,15 +822,15 @@ MonoBehaviour: m_FillOrigin: 0 m_UseSpriteMesh: 0 m_PixelsPerUnitMultiplier: 1 ---- !u!222 &343008508 +--- !u!222 &241006501 CanvasRenderer: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 343008504} + m_GameObject: {fileID: 241006498} m_CullTransparentMesh: 1 ---- !u!1 &407212888 +--- !u!1 &295720385 GameObject: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} @@ -613,35 +838,35 @@ GameObject: m_PrefabAsset: {fileID: 0} serializedVersion: 6 m_Component: - - component: {fileID: 407212889} + - component: {fileID: 295720386} m_Layer: 5 - m_Name: Col (3) + m_Name: Content m_TagString: Untagged m_Icon: {fileID: 0} m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 ---- !u!224 &407212889 +--- !u!224 &295720386 RectTransform: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 407212888} - m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_GameObject: {fileID: 295720385} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: - - {fileID: 71336831} - m_Father: {fileID: 890506813} - m_RootOrder: 3 + - {fileID: 675279328} + m_Father: {fileID: 416999616} + m_RootOrder: 0 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 1, y: 1} m_AnchoredPosition: {x: 0, y: 0} - m_SizeDelta: {x: 0, y: 0} - m_Pivot: {x: 0.5, y: 0.5} ---- !u!1 &416999615 + m_SizeDelta: {x: 0, y: 28} + m_Pivot: {x: 0.5, y: 1} +--- !u!1 &331791368 GameObject: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} @@ -649,57 +874,42 @@ GameObject: m_PrefabAsset: {fileID: 0} serializedVersion: 6 m_Component: - - component: {fileID: 416999616} - - component: {fileID: 416999619} - - component: {fileID: 416999618} - - component: {fileID: 416999617} + - component: {fileID: 331791369} + - component: {fileID: 331791371} + - component: {fileID: 331791370} m_Layer: 5 - m_Name: Viewport + m_Name: Checkmark m_TagString: Untagged m_Icon: {fileID: 0} m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 ---- !u!224 &416999616 +--- !u!224 &331791369 RectTransform: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 416999615} + m_GameObject: {fileID: 331791368} m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: - - {fileID: 295720386} - m_Father: {fileID: 1146892661} + m_Children: [] + m_Father: {fileID: 367639782} m_RootOrder: 0 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 1, y: 1} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} m_AnchoredPosition: {x: 0, y: 0} - m_SizeDelta: {x: -18, y: 0} - m_Pivot: {x: 0, y: 1} ---- !u!114 &416999617 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 416999615} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 31a19414c41e5ae4aae2af33fee712f6, type: 3} - m_Name: - m_EditorClassIdentifier: - m_ShowMaskGraphic: 0 ---- !u!114 &416999618 + m_SizeDelta: {x: 20, y: 20} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &331791370 MonoBehaviour: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 416999615} + m_GameObject: {fileID: 331791368} m_Enabled: 1 m_EditorHideFlags: 0 m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} @@ -713,8 +923,8 @@ MonoBehaviour: m_OnCullStateChanged: m_PersistentCalls: m_Calls: [] - m_Sprite: {fileID: 10917, guid: 0000000000000000f000000000000000, type: 0} - m_Type: 1 + m_Sprite: {fileID: 10901, guid: 0000000000000000f000000000000000, type: 0} + m_Type: 0 m_PreserveAspect: 0 m_FillCenter: 1 m_FillMethod: 4 @@ -723,15 +933,15 @@ MonoBehaviour: m_FillOrigin: 0 m_UseSpriteMesh: 0 m_PixelsPerUnitMultiplier: 1 ---- !u!222 &416999619 +--- !u!222 &331791371 CanvasRenderer: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 416999615} + m_GameObject: {fileID: 331791368} m_CullTransparentMesh: 1 ---- !u!1 &420688644 +--- !u!1 &343008504 GameObject: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} @@ -739,57 +949,116 @@ GameObject: m_PrefabAsset: {fileID: 0} serializedVersion: 6 m_Component: - - component: {fileID: 420688645} - - component: {fileID: 420688647} - - component: {fileID: 420688646} + - component: {fileID: 343008505} + - component: {fileID: 343008508} + - component: {fileID: 343008507} + - component: {fileID: 343008506} m_Layer: 5 - m_Name: Item Background + m_Name: AnimationDropdown m_TagString: Untagged m_Icon: {fileID: 0} m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 ---- !u!224 &420688645 +--- !u!224 &343008505 RectTransform: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 420688644} + m_GameObject: {fileID: 343008504} m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 675279328} + m_Children: + - {fileID: 1610536514} + - {fileID: 642872024} + - {fileID: 1146892661} + m_Father: {fileID: 548349244} m_RootOrder: 0 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 0} m_AnchorMax: {x: 1, y: 1} m_AnchoredPosition: {x: 0, y: 0} - m_SizeDelta: {x: 0, y: 0} + m_SizeDelta: {x: -64, y: -10} m_Pivot: {x: 0.5, y: 0.5} ---- !u!114 &420688646 +--- !u!114 &343008506 MonoBehaviour: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 420688644} + m_GameObject: {fileID: 343008504} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 0d0b652f32a2cc243917e4028fa0f046, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Navigation: + m_Mode: 3 + m_WrapAround: 0 + m_SelectOnUp: {fileID: 0} + m_SelectOnDown: {fileID: 0} + m_SelectOnLeft: {fileID: 0} + m_SelectOnRight: {fileID: 0} + m_Transition: 1 + m_Colors: + m_NormalColor: {r: 1, g: 1, b: 1, a: 1} + m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} + m_SelectedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} + m_ColorMultiplier: 1 + m_FadeDuration: 0.1 + m_SpriteState: + m_HighlightedSprite: {fileID: 0} + m_PressedSprite: {fileID: 0} + m_SelectedSprite: {fileID: 0} + m_DisabledSprite: {fileID: 0} + m_AnimationTriggers: + m_NormalTrigger: Normal + m_HighlightedTrigger: Highlighted + m_PressedTrigger: Pressed + m_SelectedTrigger: Selected + m_DisabledTrigger: Disabled + m_Interactable: 1 + m_TargetGraphic: {fileID: 343008507} + m_Template: {fileID: 1146892661} + m_CaptionText: {fileID: 1610536515} + m_CaptionImage: {fileID: 0} + m_ItemText: {fileID: 712883902} + m_ItemImage: {fileID: 0} + m_Value: 0 + m_Options: + m_Options: + - m_Text: Animation + m_Image: {fileID: 0} + m_OnValueChanged: + m_PersistentCalls: + m_Calls: [] + m_AlphaFadeSpeed: 0.15 +--- !u!114 &343008507 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 343008504} m_Enabled: 1 m_EditorHideFlags: 0 m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} m_Name: m_EditorClassIdentifier: m_Material: {fileID: 0} - m_Color: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_Color: {r: 1, g: 1, b: 1, a: 1} m_RaycastTarget: 1 m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} m_Maskable: 1 m_OnCullStateChanged: m_PersistentCalls: m_Calls: [] - m_Sprite: {fileID: 0} - m_Type: 0 + m_Sprite: {fileID: 10905, guid: 0000000000000000f000000000000000, type: 0} + m_Type: 1 m_PreserveAspect: 0 m_FillCenter: 1 m_FillMethod: 4 @@ -798,15 +1067,15 @@ MonoBehaviour: m_FillOrigin: 0 m_UseSpriteMesh: 0 m_PixelsPerUnitMultiplier: 1 ---- !u!222 &420688647 +--- !u!222 &343008508 CanvasRenderer: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 420688644} + m_GameObject: {fileID: 343008504} m_CullTransparentMesh: 1 ---- !u!1 &442422446 +--- !u!1 &346516970 GameObject: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} @@ -814,56 +1083,1791 @@ GameObject: m_PrefabAsset: {fileID: 0} serializedVersion: 6 m_Component: - - component: {fileID: 442422447} - - component: {fileID: 442422448} - - component: {fileID: 442422449} + - component: {fileID: 346516971} + - component: {fileID: 346516972} m_Layer: 5 - m_Name: Text + m_Name: PartToggle (1) m_TagString: Untagged m_Icon: {fileID: 0} m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 ---- !u!224 &442422447 +--- !u!224 &346516971 RectTransform: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 442422446} + m_GameObject: {fileID: 346516970} m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 1003257360} + m_Children: + - {fileID: 1487122369} + - {fileID: 55727615} + m_Father: {fileID: 1321035340} m_RootOrder: 1 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 1, y: 1} - m_AnchoredPosition: {x: 0, y: -0.5} - m_SizeDelta: {x: -20, y: -13} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} m_Pivot: {x: 0.5, y: 0.5} ---- !u!222 &442422448 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 442422446} - m_CullTransparentMesh: 0 ---- !u!114 &442422449 +--- !u!114 &346516972 MonoBehaviour: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 442422446} + m_GameObject: {fileID: 346516970} m_Enabled: 1 m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 5f7201a12d95ffc409449d95f23cf332, type: 3} + m_Script: {fileID: 11500000, guid: 9085046f02f69544eb97fd06b6048fe2, type: 3} m_Name: m_EditorClassIdentifier: - m_Material: {fileID: 0} + m_Navigation: + m_Mode: 3 + m_WrapAround: 0 + m_SelectOnUp: {fileID: 0} + m_SelectOnDown: {fileID: 0} + m_SelectOnLeft: {fileID: 0} + m_SelectOnRight: {fileID: 0} + m_Transition: 1 + m_Colors: + m_NormalColor: {r: 1, g: 1, b: 1, a: 1} + m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} + m_SelectedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} + m_ColorMultiplier: 1 + m_FadeDuration: 0.1 + m_SpriteState: + m_HighlightedSprite: {fileID: 0} + m_PressedSprite: {fileID: 0} + m_SelectedSprite: {fileID: 0} + m_DisabledSprite: {fileID: 0} + m_AnimationTriggers: + m_NormalTrigger: Normal + m_HighlightedTrigger: Highlighted + m_PressedTrigger: Pressed + m_SelectedTrigger: Selected + m_DisabledTrigger: Disabled + m_Interactable: 0 + m_TargetGraphic: {fileID: 1487122370} + toggleTransition: 1 + graphic: {fileID: 917594814} + m_Group: {fileID: 0} + onValueChanged: + m_PersistentCalls: + m_Calls: [] + m_IsOn: 1 +--- !u!1 &361812055 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 361812056} + - component: {fileID: 361812057} + m_Layer: 5 + m_Name: PartToggle (3) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &361812056 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 361812055} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 384296119} + - {fileID: 1122046006} + m_Father: {fileID: 1321035340} + m_RootOrder: 3 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &361812057 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 361812055} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 9085046f02f69544eb97fd06b6048fe2, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Navigation: + m_Mode: 3 + m_WrapAround: 0 + m_SelectOnUp: {fileID: 0} + m_SelectOnDown: {fileID: 0} + m_SelectOnLeft: {fileID: 0} + m_SelectOnRight: {fileID: 0} + m_Transition: 1 + m_Colors: + m_NormalColor: {r: 1, g: 1, b: 1, a: 1} + m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} + m_SelectedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} + m_ColorMultiplier: 1 + m_FadeDuration: 0.1 + m_SpriteState: + m_HighlightedSprite: {fileID: 0} + m_PressedSprite: {fileID: 0} + m_SelectedSprite: {fileID: 0} + m_DisabledSprite: {fileID: 0} + m_AnimationTriggers: + m_NormalTrigger: Normal + m_HighlightedTrigger: Highlighted + m_PressedTrigger: Pressed + m_SelectedTrigger: Selected + m_DisabledTrigger: Disabled + m_Interactable: 0 + m_TargetGraphic: {fileID: 384296120} + toggleTransition: 1 + graphic: {fileID: 1704833926} + m_Group: {fileID: 0} + onValueChanged: + m_PersistentCalls: + m_Calls: [] + m_IsOn: 1 +--- !u!1 &367639781 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 367639782} + - component: {fileID: 367639784} + - component: {fileID: 367639783} + m_Layer: 5 + m_Name: Background + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &367639782 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 367639781} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 331791369} + m_Father: {fileID: 84681985} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 10, y: -10} + m_SizeDelta: {x: 20, y: 20} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &367639783 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 367639781} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 10905, guid: 0000000000000000f000000000000000, type: 0} + m_Type: 1 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!222 &367639784 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 367639781} + m_CullTransparentMesh: 1 +--- !u!1 &384296118 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 384296119} + - component: {fileID: 384296121} + - component: {fileID: 384296120} + m_Layer: 5 + m_Name: Background + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &384296119 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 384296118} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 1704833925} + m_Father: {fileID: 361812056} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 10, y: -10} + m_SizeDelta: {x: 20, y: 20} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &384296120 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 384296118} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 10905, guid: 0000000000000000f000000000000000, type: 0} + m_Type: 1 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!222 &384296121 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 384296118} + m_CullTransparentMesh: 1 +--- !u!1 &407212888 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 407212889} + m_Layer: 5 + m_Name: Col (3) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &407212889 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 407212888} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 71336831} + m_Father: {fileID: 890506813} + m_RootOrder: 3 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &416999615 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 416999616} + - component: {fileID: 416999619} + - component: {fileID: 416999618} + - component: {fileID: 416999617} + m_Layer: 5 + m_Name: Viewport + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &416999616 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 416999615} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 295720386} + m_Father: {fileID: 1146892661} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: -18, y: 0} + m_Pivot: {x: 0, y: 1} +--- !u!114 &416999617 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 416999615} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 31a19414c41e5ae4aae2af33fee712f6, type: 3} + m_Name: + m_EditorClassIdentifier: + m_ShowMaskGraphic: 0 +--- !u!114 &416999618 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 416999615} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 10917, guid: 0000000000000000f000000000000000, type: 0} + m_Type: 1 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!222 &416999619 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 416999615} + m_CullTransparentMesh: 1 +--- !u!1 &417212051 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 417212052} + - component: {fileID: 417212054} + - component: {fileID: 417212053} + m_Layer: 5 + m_Name: Background + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &417212052 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 417212051} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 476803089} + m_Father: {fileID: 1868019693} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 10, y: -10} + m_SizeDelta: {x: 20, y: 20} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &417212053 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 417212051} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 10905, guid: 0000000000000000f000000000000000, type: 0} + m_Type: 1 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!222 &417212054 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 417212051} + m_CullTransparentMesh: 1 +--- !u!1 &420688644 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 420688645} + - component: {fileID: 420688647} + - component: {fileID: 420688646} + m_Layer: 5 + m_Name: Item Background + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &420688645 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 420688644} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 675279328} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &420688646 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 420688644} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 0} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!222 &420688647 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 420688644} + m_CullTransparentMesh: 1 +--- !u!1 &442422446 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 442422447} + - component: {fileID: 442422448} + - component: {fileID: 442422449} + m_Layer: 5 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &442422447 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 442422446} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 1003257360} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: 0, y: -0.5} + m_SizeDelta: {x: -20, y: -13} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!222 &442422448 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 442422446} + m_CullTransparentMesh: 0 +--- !u!114 &442422449 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 442422446} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 5f7201a12d95ffc409449d95f23cf332, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.19607843, g: 0.19607843, b: 0.19607843, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 24 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 2 + m_MaxSize: 40 + m_Alignment: 0 + m_AlignByGeometry: 0 + m_RichText: 0 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 0 + m_LineSpacing: 1 + m_Text: 2727 +--- !u!1 &459802439 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 459802440} + m_Layer: 5 + m_Name: Content + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &459802440 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 459802439} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 896811069} + m_Father: {fileID: 1965515835} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 28} + m_Pivot: {x: 0.5, y: 1} +--- !u!1 &476803088 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 476803089} + - component: {fileID: 476803091} + - component: {fileID: 476803090} + m_Layer: 5 + m_Name: Checkmark + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &476803089 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 476803088} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 417212052} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 20, y: 20} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &476803090 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 476803088} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 10901, guid: 0000000000000000f000000000000000, type: 0} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!222 &476803091 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 476803088} + m_CullTransparentMesh: 1 +--- !u!1 &516366482 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 516366483} + - component: {fileID: 516366485} + - component: {fileID: 516366484} + m_Layer: 5 + m_Name: Background + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &516366483 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 516366482} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 1142827624} + m_Father: {fileID: 1521966270} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 10, y: -10} + m_SizeDelta: {x: 20, y: 20} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &516366484 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 516366482} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 10905, guid: 0000000000000000f000000000000000, type: 0} + m_Type: 1 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!222 &516366485 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 516366482} + m_CullTransparentMesh: 1 +--- !u!1 &519420028 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 519420032} + - component: {fileID: 519420031} + - component: {fileID: 519420029} + - component: {fileID: 519420033} + m_Layer: 0 + m_Name: Main Camera + m_TagString: MainCamera + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!81 &519420029 +AudioListener: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 519420028} + m_Enabled: 1 +--- !u!20 &519420031 +Camera: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 519420028} + m_Enabled: 1 + serializedVersion: 2 + m_ClearFlags: 2 + m_BackGroundColor: {r: 0.19215687, g: 0.3019608, b: 0.4745098, a: 0} + m_projectionMatrixMode: 1 + m_GateFitMode: 2 + m_FOVAxisMode: 0 + m_SensorSize: {x: 36, y: 24} + m_LensShift: {x: 0, y: 0} + m_FocalLength: 50 + m_NormalizedViewPortRect: + serializedVersion: 2 + x: 0 + y: 0 + width: 1 + height: 1 + near clip plane: 0.3 + far clip plane: 1000 + field of view: 60 + orthographic: 1 + orthographic size: 5 + m_Depth: -1 + m_CullingMask: + serializedVersion: 2 + m_Bits: 4294967295 + m_RenderingPath: -1 + m_TargetTexture: {fileID: 0} + m_TargetDisplay: 0 + m_TargetEye: 0 + m_HDR: 1 + m_AllowMSAA: 0 + m_AllowDynamicResolution: 0 + m_ForceIntoRT: 0 + m_OcclusionCulling: 0 + m_StereoConvergence: 10 + m_StereoSeparation: 0.022 +--- !u!4 &519420032 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 519420028} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: -10} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!114 &519420033 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 519420028} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 19c0f2e8638d640209d547c725ec6cb8, type: 3} + m_Name: + m_EditorClassIdentifier: +--- !u!1 &548349243 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 548349244} + m_Layer: 5 + m_Name: Col + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &548349244 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 548349243} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 343008505} + - {fileID: 1156861536} + - {fileID: 2139753036} + m_Father: {fileID: 890506813} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &551103757 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 551103758} + - component: {fileID: 551103760} + - component: {fileID: 551103759} + m_Layer: 5 + m_Name: Item Label + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &551103758 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 551103757} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 896811069} + m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: 0, y: -0.5} + m_SizeDelta: {x: -40, y: -3} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &551103759 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 551103757} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 5f7201a12d95ffc409449d95f23cf332, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.19607843, g: 0.19607843, b: 0.19607843, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 18 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 1 + m_MaxSize: 40 + m_Alignment: 3 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 0 + m_VerticalOverflow: 0 + m_LineSpacing: 1 + m_Text: Option A +--- !u!222 &551103760 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 551103757} + m_CullTransparentMesh: 1 +--- !u!1 &551676994 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 551676995} + - component: {fileID: 551676996} + m_Layer: 5 + m_Name: PartToggle (2) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &551676995 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 551676994} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 947357650} + - {fileID: 155064217} + m_Father: {fileID: 1321035340} + m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &551676996 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 551676994} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 9085046f02f69544eb97fd06b6048fe2, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Navigation: + m_Mode: 3 + m_WrapAround: 0 + m_SelectOnUp: {fileID: 0} + m_SelectOnDown: {fileID: 0} + m_SelectOnLeft: {fileID: 0} + m_SelectOnRight: {fileID: 0} + m_Transition: 1 + m_Colors: + m_NormalColor: {r: 1, g: 1, b: 1, a: 1} + m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} + m_SelectedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} + m_ColorMultiplier: 1 + m_FadeDuration: 0.1 + m_SpriteState: + m_HighlightedSprite: {fileID: 0} + m_PressedSprite: {fileID: 0} + m_SelectedSprite: {fileID: 0} + m_DisabledSprite: {fileID: 0} + m_AnimationTriggers: + m_NormalTrigger: Normal + m_HighlightedTrigger: Highlighted + m_PressedTrigger: Pressed + m_SelectedTrigger: Selected + m_DisabledTrigger: Disabled + m_Interactable: 0 + m_TargetGraphic: {fileID: 947357651} + toggleTransition: 1 + graphic: {fileID: 1300150519} + m_Group: {fileID: 0} + onValueChanged: + m_PersistentCalls: + m_Calls: [] + m_IsOn: 1 +--- !u!1 &562637590 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 562637591} + - component: {fileID: 562637593} + - component: {fileID: 562637592} + m_Layer: 5 + m_Name: Item Background + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &562637591 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 562637590} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 896811069} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &562637592 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 562637590} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 0} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!222 &562637593 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 562637590} + m_CullTransparentMesh: 1 +--- !u!1 &636520802 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 636520803} + - component: {fileID: 636520805} + - component: {fileID: 636520804} + m_Layer: 5 + m_Name: Handle + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &636520803 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 636520802} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 990936319} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 1, y: 0.2} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 20, y: 20} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &636520804 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 636520802} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 10905, guid: 0000000000000000f000000000000000, type: 0} + m_Type: 1 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!222 &636520805 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 636520802} + m_CullTransparentMesh: 1 +--- !u!1 &642872023 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 642872024} + - component: {fileID: 642872026} + - component: {fileID: 642872025} + m_Layer: 5 + m_Name: Arrow + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &642872024 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 642872023} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 343008505} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 1, y: 0.5} + m_AnchorMax: {x: 1, y: 0.5} + m_AnchoredPosition: {x: -15, y: 0} + m_SizeDelta: {x: 20, y: 20} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &642872025 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 642872023} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 10915, guid: 0000000000000000f000000000000000, type: 0} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!222 &642872026 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 642872023} + m_CullTransparentMesh: 1 +--- !u!1 &645056484 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 645056485} + - component: {fileID: 645056487} + - component: {fileID: 645056486} + m_Layer: 5 + m_Name: Label + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &645056485 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 645056484} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 946688270} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: 9, y: -0.5} + m_SizeDelta: {x: -28, y: -3} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &645056486 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 645056484} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 5f7201a12d95ffc409449d95f23cf332, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.19607843, g: 0.19607843, b: 0.19607843, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 14 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 0 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 0 + m_VerticalOverflow: 0 + m_LineSpacing: 1 + m_Text: All Axie +--- !u!222 &645056487 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 645056484} + m_CullTransparentMesh: 1 +--- !u!1 &675279327 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 675279328} + - component: {fileID: 675279329} + m_Layer: 5 + m_Name: Item + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &675279328 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 675279327} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 420688645} + - {fileID: 1524038889} + - {fileID: 712883901} + m_Father: {fileID: 295720386} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0.5} + m_AnchorMax: {x: 1, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 40} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &675279329 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 675279327} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 9085046f02f69544eb97fd06b6048fe2, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Navigation: + m_Mode: 3 + m_WrapAround: 0 + m_SelectOnUp: {fileID: 0} + m_SelectOnDown: {fileID: 0} + m_SelectOnLeft: {fileID: 0} + m_SelectOnRight: {fileID: 0} + m_Transition: 1 + m_Colors: + m_NormalColor: {r: 1, g: 1, b: 1, a: 1} + m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} + m_SelectedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} + m_ColorMultiplier: 1 + m_FadeDuration: 0.1 + m_SpriteState: + m_HighlightedSprite: {fileID: 0} + m_PressedSprite: {fileID: 0} + m_SelectedSprite: {fileID: 0} + m_DisabledSprite: {fileID: 0} + m_AnimationTriggers: + m_NormalTrigger: Normal + m_HighlightedTrigger: Highlighted + m_PressedTrigger: Pressed + m_SelectedTrigger: Selected + m_DisabledTrigger: Disabled + m_Interactable: 1 + m_TargetGraphic: {fileID: 420688646} + toggleTransition: 1 + graphic: {fileID: 1524038890} + m_Group: {fileID: 0} + onValueChanged: + m_PersistentCalls: + m_Calls: [] + m_IsOn: 1 +--- !u!1 &712883900 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 712883901} + - component: {fileID: 712883903} + - component: {fileID: 712883902} + m_Layer: 5 + m_Name: Item Label + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &712883901 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 712883900} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 675279328} + m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: 0, y: -0.5} + m_SizeDelta: {x: -40, y: -3} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &712883902 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 712883900} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 5f7201a12d95ffc409449d95f23cf332, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.19607843, g: 0.19607843, b: 0.19607843, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 18 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 1 + m_MaxSize: 40 + m_Alignment: 3 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 0 + m_VerticalOverflow: 0 + m_LineSpacing: 1 + m_Text: Option A +--- !u!222 &712883903 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 712883900} + m_CullTransparentMesh: 1 +--- !u!1 &758563312 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 758563313} + m_Layer: 0 + m_Name: ----Controllers---- + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &758563313 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 758563312} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 2076522841} + - {fileID: 2100349834} + m_Father: {fileID: 0} + m_RootOrder: 3 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &765423930 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 765423931} + - component: {fileID: 765423933} + - component: {fileID: 765423932} + m_Layer: 5 + m_Name: Checkmark + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &765423931 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 765423930} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 1991807329} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 20, y: 20} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &765423932 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 765423930} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 10901, guid: 0000000000000000f000000000000000, type: 0} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!222 &765423933 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 765423930} + m_CullTransparentMesh: 1 +--- !u!1 &833601431 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 833601432} + - component: {fileID: 833601434} + - component: {fileID: 833601433} + m_Layer: 5 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &833601432 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 833601431} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 2139753036} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &833601433 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 833601431} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 5f7201a12d95ffc409449d95f23cf332, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} m_Color: {r: 0.19607843, g: 0.19607843, b: 0.19607843, a: 1} m_RaycastTarget: 1 m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} @@ -873,19 +2877,143 @@ MonoBehaviour: m_Calls: [] m_FontData: m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} - m_FontSize: 24 + m_FontSize: 20 m_FontStyle: 0 m_BestFit: 0 m_MinSize: 2 m_MaxSize: 40 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 0 + m_VerticalOverflow: 0 + m_LineSpacing: 1 + m_Text: '>' +--- !u!222 &833601434 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 833601431} + m_CullTransparentMesh: 1 +--- !u!1 &868847127 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 868847128} + m_Layer: 5 + m_Name: Col (2) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &868847128 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 868847127} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 1003257360} + - {fileID: 1300751403} + m_Father: {fileID: 890506813} + m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &878153997 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 878153998} + - component: {fileID: 878154000} + - component: {fileID: 878153999} + m_Layer: 5 + m_Name: Label + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &878153998 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 878153997} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 1521966270} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: 9, y: -0.5} + m_SizeDelta: {x: -28, y: -3} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &878153999 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 878153997} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 5f7201a12d95ffc409449d95f23cf332, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.19607843, g: 0.19607843, b: 0.19607843, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 14 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 m_Alignment: 0 m_AlignByGeometry: 0 - m_RichText: 0 - m_HorizontalOverflow: 1 + m_RichText: 1 + m_HorizontalOverflow: 0 m_VerticalOverflow: 0 m_LineSpacing: 1 - m_Text: 2727 ---- !u!1 &459802439 + m_Text: tail +--- !u!222 &878154000 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 878153997} + m_CullTransparentMesh: 1 +--- !u!1 &890506812 GameObject: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} @@ -893,35 +3021,65 @@ GameObject: m_PrefabAsset: {fileID: 0} serializedVersion: 6 m_Component: - - component: {fileID: 459802440} + - component: {fileID: 890506813} + - component: {fileID: 890506814} m_Layer: 5 - m_Name: Content + m_Name: Line m_TagString: Untagged m_Icon: {fileID: 0} m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 ---- !u!224 &459802440 +--- !u!224 &890506813 RectTransform: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 459802439} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_GameObject: {fileID: 890506812} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: - - {fileID: 896811069} - m_Father: {fileID: 1965515835} + - {fileID: 548349244} + - {fileID: 1806107436} + - {fileID: 868847128} + - {fileID: 407212889} + m_Father: {fileID: 1232175104} m_RootOrder: 0 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 1} + m_AnchorMin: {x: 0, y: 0} m_AnchorMax: {x: 1, y: 1} m_AnchoredPosition: {x: 0, y: 0} - m_SizeDelta: {x: 0, y: 28} - m_Pivot: {x: 0.5, y: 1} ---- !u!1 &519420028 + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &890506814 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 890506812} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 30649d3a9faa99c48a7b1166b86bf2a0, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Padding: + m_Left: 0 + m_Right: 0 + m_Top: 0 + m_Bottom: 0 + m_ChildAlignment: 0 + m_Spacing: 0 + m_ChildForceExpandWidth: 1 + m_ChildForceExpandHeight: 1 + m_ChildControlWidth: 1 + m_ChildControlHeight: 1 + m_ChildScaleWidth: 0 + m_ChildScaleHeight: 0 + m_ReverseArrangement: 0 +--- !u!1 &896811068 GameObject: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} @@ -929,82 +3087,247 @@ GameObject: m_PrefabAsset: {fileID: 0} serializedVersion: 6 m_Component: - - component: {fileID: 519420032} - - component: {fileID: 519420031} - - component: {fileID: 519420029} - m_Layer: 0 - m_Name: Main Camera - m_TagString: MainCamera + - component: {fileID: 896811069} + - component: {fileID: 896811070} + m_Layer: 5 + m_Name: Item + m_TagString: Untagged m_Icon: {fileID: 0} m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 ---- !u!81 &519420029 -AudioListener: +--- !u!224 &896811069 +RectTransform: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 519420028} + m_GameObject: {fileID: 896811068} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 562637591} + - {fileID: 1060624246} + - {fileID: 551103758} + m_Father: {fileID: 459802440} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0.5} + m_AnchorMax: {x: 1, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 40} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &896811070 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 896811068} m_Enabled: 1 ---- !u!20 &519420031 -Camera: + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 9085046f02f69544eb97fd06b6048fe2, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Navigation: + m_Mode: 3 + m_WrapAround: 0 + m_SelectOnUp: {fileID: 0} + m_SelectOnDown: {fileID: 0} + m_SelectOnLeft: {fileID: 0} + m_SelectOnRight: {fileID: 0} + m_Transition: 1 + m_Colors: + m_NormalColor: {r: 1, g: 1, b: 1, a: 1} + m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} + m_SelectedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} + m_ColorMultiplier: 1 + m_FadeDuration: 0.1 + m_SpriteState: + m_HighlightedSprite: {fileID: 0} + m_PressedSprite: {fileID: 0} + m_SelectedSprite: {fileID: 0} + m_DisabledSprite: {fileID: 0} + m_AnimationTriggers: + m_NormalTrigger: Normal + m_HighlightedTrigger: Highlighted + m_PressedTrigger: Pressed + m_SelectedTrigger: Selected + m_DisabledTrigger: Disabled + m_Interactable: 1 + m_TargetGraphic: {fileID: 562637592} + toggleTransition: 1 + graphic: {fileID: 1060624247} + m_Group: {fileID: 0} + onValueChanged: + m_PersistentCalls: + m_Calls: [] + m_IsOn: 1 +--- !u!1 &917594812 +GameObject: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 519420028} + serializedVersion: 6 + m_Component: + - component: {fileID: 917594813} + - component: {fileID: 917594815} + - component: {fileID: 917594814} + m_Layer: 5 + m_Name: Checkmark + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &917594813 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 917594812} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 1487122369} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 20, y: 20} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &917594814 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 917594812} m_Enabled: 1 - serializedVersion: 2 - m_ClearFlags: 2 - m_BackGroundColor: {r: 0.19215687, g: 0.3019608, b: 0.4745098, a: 0} - m_projectionMatrixMode: 1 - m_GateFitMode: 2 - m_FOVAxisMode: 0 - m_SensorSize: {x: 36, y: 24} - m_LensShift: {x: 0, y: 0} - m_FocalLength: 50 - m_NormalizedViewPortRect: - serializedVersion: 2 - x: 0 - y: 0 - width: 1 - height: 1 - near clip plane: 0.3 - far clip plane: 1000 - field of view: 60 - orthographic: 1 - orthographic size: 5 - m_Depth: -1 - m_CullingMask: - serializedVersion: 2 - m_Bits: 4294967295 - m_RenderingPath: -1 - m_TargetTexture: {fileID: 0} - m_TargetDisplay: 0 - m_TargetEye: 0 - m_HDR: 1 - m_AllowMSAA: 0 - m_AllowDynamicResolution: 0 - m_ForceIntoRT: 0 - m_OcclusionCulling: 0 - m_StereoConvergence: 10 - m_StereoSeparation: 0.022 ---- !u!4 &519420032 -Transform: + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 10901, guid: 0000000000000000f000000000000000, type: 0} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!222 &917594815 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 917594812} + m_CullTransparentMesh: 1 +--- !u!1 &946688269 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 946688270} + - component: {fileID: 946688271} + m_Layer: 5 + m_Name: AllToggle + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &946688270 +RectTransform: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 519420028} + m_GameObject: {fileID: 946688269} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: -10} + m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 0} + m_Children: + - {fileID: 1991807329} + - {fileID: 645056485} + m_Father: {fileID: 54314173} m_RootOrder: 0 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!1 &548349243 + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 160, y: 20} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &946688271 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 946688269} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 9085046f02f69544eb97fd06b6048fe2, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Navigation: + m_Mode: 3 + m_WrapAround: 0 + m_SelectOnUp: {fileID: 0} + m_SelectOnDown: {fileID: 0} + m_SelectOnLeft: {fileID: 0} + m_SelectOnRight: {fileID: 0} + m_Transition: 1 + m_Colors: + m_NormalColor: {r: 1, g: 1, b: 1, a: 1} + m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} + m_SelectedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} + m_ColorMultiplier: 1 + m_FadeDuration: 0.1 + m_SpriteState: + m_HighlightedSprite: {fileID: 0} + m_PressedSprite: {fileID: 0} + m_SelectedSprite: {fileID: 0} + m_DisabledSprite: {fileID: 0} + m_AnimationTriggers: + m_NormalTrigger: Normal + m_HighlightedTrigger: Highlighted + m_PressedTrigger: Pressed + m_SelectedTrigger: Selected + m_DisabledTrigger: Disabled + m_Interactable: 1 + m_TargetGraphic: {fileID: 1991807330} + toggleTransition: 1 + graphic: {fileID: 765423932} + m_Group: {fileID: 1806107438} + onValueChanged: + m_PersistentCalls: + m_Calls: [] + m_IsOn: 0 +--- !u!1 &947357649 GameObject: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} @@ -1012,37 +3335,75 @@ GameObject: m_PrefabAsset: {fileID: 0} serializedVersion: 6 m_Component: - - component: {fileID: 548349244} + - component: {fileID: 947357650} + - component: {fileID: 947357652} + - component: {fileID: 947357651} m_Layer: 5 - m_Name: Col + m_Name: Background m_TagString: Untagged m_Icon: {fileID: 0} m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 ---- !u!224 &548349244 +--- !u!224 &947357650 RectTransform: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 548349243} - m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_GameObject: {fileID: 947357649} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: - - {fileID: 343008505} - - {fileID: 1156861536} - - {fileID: 2139753036} - m_Father: {fileID: 890506813} + - {fileID: 1300150518} + m_Father: {fileID: 551676995} m_RootOrder: 0 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} - m_AnchoredPosition: {x: 0, y: 0} - m_SizeDelta: {x: 0, y: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 10, y: -10} + m_SizeDelta: {x: 20, y: 20} m_Pivot: {x: 0.5, y: 0.5} ---- !u!1 &551103757 +--- !u!114 &947357651 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 947357649} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 10905, guid: 0000000000000000f000000000000000, type: 0} + m_Type: 1 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!222 &947357652 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 947357649} + m_CullTransparentMesh: 1 +--- !u!1 &963988930 GameObject: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} @@ -1050,42 +3411,42 @@ GameObject: m_PrefabAsset: {fileID: 0} serializedVersion: 6 m_Component: - - component: {fileID: 551103758} - - component: {fileID: 551103760} - - component: {fileID: 551103759} + - component: {fileID: 963988931} + - component: {fileID: 963988933} + - component: {fileID: 963988932} m_Layer: 5 - m_Name: Item Label + m_Name: Label m_TagString: Untagged m_Icon: {fileID: 0} m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 ---- !u!224 &551103758 +--- !u!224 &963988931 RectTransform: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 551103757} + m_GameObject: {fileID: 963988930} m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] - m_Father: {fileID: 896811069} - m_RootOrder: 2 + m_Father: {fileID: 2005750087} + m_RootOrder: 1 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 0} m_AnchorMax: {x: 1, y: 1} - m_AnchoredPosition: {x: 0, y: -0.5} - m_SizeDelta: {x: -40, y: -3} + m_AnchoredPosition: {x: 9, y: -0.5} + m_SizeDelta: {x: -28, y: -3} m_Pivot: {x: 0.5, y: 0.5} ---- !u!114 &551103759 +--- !u!114 &963988932 MonoBehaviour: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 551103757} + m_GameObject: {fileID: 963988930} m_Enabled: 1 m_EditorHideFlags: 0 m_Script: {fileID: 11500000, guid: 5f7201a12d95ffc409449d95f23cf332, type: 3} @@ -1101,27 +3462,27 @@ MonoBehaviour: m_Calls: [] m_FontData: m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} - m_FontSize: 18 + m_FontSize: 14 m_FontStyle: 0 m_BestFit: 0 - m_MinSize: 1 + m_MinSize: 10 m_MaxSize: 40 - m_Alignment: 3 + m_Alignment: 0 m_AlignByGeometry: 0 m_RichText: 1 m_HorizontalOverflow: 0 m_VerticalOverflow: 0 m_LineSpacing: 1 - m_Text: Option A ---- !u!222 &551103760 + m_Text: Custom Id +--- !u!222 &963988933 CanvasRenderer: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 551103757} + m_GameObject: {fileID: 963988930} m_CullTransparentMesh: 1 ---- !u!1 &562637590 +--- !u!1 &990936318 GameObject: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} @@ -1129,74 +3490,35 @@ GameObject: m_PrefabAsset: {fileID: 0} serializedVersion: 6 m_Component: - - component: {fileID: 562637591} - - component: {fileID: 562637593} - - component: {fileID: 562637592} + - component: {fileID: 990936319} m_Layer: 5 - m_Name: Item Background + m_Name: Sliding Area m_TagString: Untagged m_Icon: {fileID: 0} m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 ---- !u!224 &562637591 +--- !u!224 &990936319 RectTransform: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 562637590} + m_GameObject: {fileID: 990936318} m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 896811069} + m_Children: + - {fileID: 636520803} + m_Father: {fileID: 2003898107} m_RootOrder: 0 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 0} m_AnchorMax: {x: 1, y: 1} m_AnchoredPosition: {x: 0, y: 0} - m_SizeDelta: {x: 0, y: 0} + m_SizeDelta: {x: -20, y: -20} m_Pivot: {x: 0.5, y: 0.5} ---- !u!114 &562637592 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 562637590} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Material: {fileID: 0} - m_Color: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} - m_RaycastTarget: 1 - m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} - m_Maskable: 1 - m_OnCullStateChanged: - m_PersistentCalls: - m_Calls: [] - m_Sprite: {fileID: 0} - m_Type: 0 - m_PreserveAspect: 0 - m_FillCenter: 1 - m_FillMethod: 4 - m_FillAmount: 1 - m_FillClockwise: 1 - m_FillOrigin: 0 - m_UseSpriteMesh: 0 - m_PixelsPerUnitMultiplier: 1 ---- !u!222 &562637593 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 562637590} - m_CullTransparentMesh: 1 ---- !u!1 &636520802 +--- !u!1 &1003257358 GameObject: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} @@ -1204,42 +3526,110 @@ GameObject: m_PrefabAsset: {fileID: 0} serializedVersion: 6 m_Component: - - component: {fileID: 636520803} - - component: {fileID: 636520805} - - component: {fileID: 636520804} + - component: {fileID: 1003257360} + - component: {fileID: 1003257362} + - component: {fileID: 1003257361} + - component: {fileID: 1003257359} m_Layer: 5 - m_Name: Handle + m_Name: InputField m_TagString: Untagged m_Icon: {fileID: 0} m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 ---- !u!224 &636520803 +--- !u!114 &1003257359 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1003257358} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: d199490a83bb2b844b9695cbf13b01ef, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Navigation: + m_Mode: 3 + m_WrapAround: 0 + m_SelectOnUp: {fileID: 0} + m_SelectOnDown: {fileID: 0} + m_SelectOnLeft: {fileID: 0} + m_SelectOnRight: {fileID: 0} + m_Transition: 1 + m_Colors: + m_NormalColor: {r: 1, g: 1, b: 1, a: 1} + m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} + m_SelectedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} + m_ColorMultiplier: 1 + m_FadeDuration: 0.1 + m_SpriteState: + m_HighlightedSprite: {fileID: 0} + m_PressedSprite: {fileID: 0} + m_SelectedSprite: {fileID: 0} + m_DisabledSprite: {fileID: 0} + m_AnimationTriggers: + m_NormalTrigger: Normal + m_HighlightedTrigger: Highlighted + m_PressedTrigger: Pressed + m_SelectedTrigger: Selected + m_DisabledTrigger: Disabled + m_Interactable: 1 + m_TargetGraphic: {fileID: 1003257361} + m_TextComponent: {fileID: 442422449} + m_Placeholder: {fileID: 95400343} + m_ContentType: 2 + m_InputType: 0 + m_AsteriskChar: 42 + m_KeyboardType: 4 + m_LineType: 0 + m_HideMobileInput: 0 + m_CharacterValidation: 1 + m_CharacterLimit: 0 + m_OnEndEdit: + m_PersistentCalls: + m_Calls: [] + m_OnValueChanged: + m_PersistentCalls: + m_Calls: [] + m_CaretColor: {r: 0.19607843, g: 0.19607843, b: 0.19607843, a: 1} + m_CustomCaretColor: 0 + m_SelectionColor: {r: 0.65882355, g: 0.80784315, b: 1, a: 0.7529412} + m_Text: 2727 + m_CaretBlinkRate: 0.85 + m_CaretWidth: 1 + m_ReadOnly: 0 + m_ShouldActivateOnSelect: 1 +--- !u!224 &1003257360 RectTransform: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 636520802} + m_GameObject: {fileID: 1003257358} m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 990936319} + m_Children: + - {fileID: 95400345} + - {fileID: 442422447} + m_Father: {fileID: 868847128} m_RootOrder: 0 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 1, y: 0.2} - m_AnchoredPosition: {x: 0, y: 0} - m_SizeDelta: {x: 20, y: 20} - m_Pivot: {x: 0.5, y: 0.5} ---- !u!114 &636520804 + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: 20, y: 0} + m_SizeDelta: {x: -40, y: -10} + m_Pivot: {x: 0, y: 0.5} +--- !u!114 &1003257361 MonoBehaviour: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 636520802} + m_GameObject: {fileID: 1003257358} m_Enabled: 1 m_EditorHideFlags: 0 m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} @@ -1253,7 +3643,7 @@ MonoBehaviour: m_OnCullStateChanged: m_PersistentCalls: m_Calls: [] - m_Sprite: {fileID: 10905, guid: 0000000000000000f000000000000000, type: 0} + m_Sprite: {fileID: 10911, guid: 0000000000000000f000000000000000, type: 0} m_Type: 1 m_PreserveAspect: 0 m_FillCenter: 1 @@ -1263,15 +3653,15 @@ MonoBehaviour: m_FillOrigin: 0 m_UseSpriteMesh: 0 m_PixelsPerUnitMultiplier: 1 ---- !u!222 &636520805 +--- !u!222 &1003257362 CanvasRenderer: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 636520802} - m_CullTransparentMesh: 1 ---- !u!1 &642872023 + m_GameObject: {fileID: 1003257358} + m_CullTransparentMesh: 0 +--- !u!1 &1060624245 GameObject: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} @@ -1279,42 +3669,42 @@ GameObject: m_PrefabAsset: {fileID: 0} serializedVersion: 6 m_Component: - - component: {fileID: 642872024} - - component: {fileID: 642872026} - - component: {fileID: 642872025} + - component: {fileID: 1060624246} + - component: {fileID: 1060624248} + - component: {fileID: 1060624247} m_Layer: 5 - m_Name: Arrow + m_Name: Item Checkmark m_TagString: Untagged m_Icon: {fileID: 0} m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 ---- !u!224 &642872024 +--- !u!224 &1060624246 RectTransform: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 642872023} + m_GameObject: {fileID: 1060624245} m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] - m_Father: {fileID: 343008505} + m_Father: {fileID: 896811069} m_RootOrder: 1 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 1, y: 0.5} - m_AnchorMax: {x: 1, y: 0.5} - m_AnchoredPosition: {x: -15, y: 0} - m_SizeDelta: {x: 20, y: 20} + m_AnchorMin: {x: 0, y: 0.5} + m_AnchorMax: {x: 0, y: 0.5} + m_AnchoredPosition: {x: 10, y: 0} + m_SizeDelta: {x: 40, y: 40} m_Pivot: {x: 0.5, y: 0.5} ---- !u!114 &642872025 +--- !u!114 &1060624247 MonoBehaviour: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 642872023} + m_GameObject: {fileID: 1060624245} m_Enabled: 1 m_EditorHideFlags: 0 m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} @@ -1328,7 +3718,7 @@ MonoBehaviour: m_OnCullStateChanged: m_PersistentCalls: m_Calls: [] - m_Sprite: {fileID: 10915, guid: 0000000000000000f000000000000000, type: 0} + m_Sprite: {fileID: 10901, guid: 0000000000000000f000000000000000, type: 0} m_Type: 0 m_PreserveAspect: 0 m_FillCenter: 1 @@ -1338,15 +3728,15 @@ MonoBehaviour: m_FillOrigin: 0 m_UseSpriteMesh: 0 m_PixelsPerUnitMultiplier: 1 ---- !u!222 &642872026 +--- !u!222 &1060624248 CanvasRenderer: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 642872023} + m_GameObject: {fileID: 1060624245} m_CullTransparentMesh: 1 ---- !u!1 &645056484 +--- !u!1 &1122046005 GameObject: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} @@ -1354,9 +3744,9 @@ GameObject: m_PrefabAsset: {fileID: 0} serializedVersion: 6 m_Component: - - component: {fileID: 645056485} - - component: {fileID: 645056487} - - component: {fileID: 645056486} + - component: {fileID: 1122046006} + - component: {fileID: 1122046008} + - component: {fileID: 1122046007} m_Layer: 5 m_Name: Label m_TagString: Untagged @@ -1364,18 +3754,18 @@ GameObject: m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 ---- !u!224 &645056485 +--- !u!224 &1122046006 RectTransform: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 645056484} + m_GameObject: {fileID: 1122046005} m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] - m_Father: {fileID: 946688270} + m_Father: {fileID: 361812056} m_RootOrder: 1 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 0} @@ -1383,13 +3773,13 @@ RectTransform: m_AnchoredPosition: {x: 9, y: -0.5} m_SizeDelta: {x: -28, y: -3} m_Pivot: {x: 0.5, y: 0.5} ---- !u!114 &645056486 +--- !u!114 &1122046007 MonoBehaviour: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 645056484} + m_GameObject: {fileID: 1122046005} m_Enabled: 1 m_EditorHideFlags: 0 m_Script: {fileID: 11500000, guid: 5f7201a12d95ffc409449d95f23cf332, type: 3} @@ -1416,16 +3806,16 @@ MonoBehaviour: m_HorizontalOverflow: 0 m_VerticalOverflow: 0 m_LineSpacing: 1 - m_Text: All Axie ---- !u!222 &645056487 + m_Text: horn +--- !u!222 &1122046008 CanvasRenderer: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 645056484} + m_GameObject: {fileID: 1122046005} m_CullTransparentMesh: 1 ---- !u!1 &675279327 +--- !u!1 &1142827623 GameObject: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} @@ -1433,86 +3823,74 @@ GameObject: m_PrefabAsset: {fileID: 0} serializedVersion: 6 m_Component: - - component: {fileID: 675279328} - - component: {fileID: 675279329} + - component: {fileID: 1142827624} + - component: {fileID: 1142827626} + - component: {fileID: 1142827625} m_Layer: 5 - m_Name: Item + m_Name: Checkmark m_TagString: Untagged m_Icon: {fileID: 0} m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 ---- !u!224 &675279328 +--- !u!224 &1142827624 RectTransform: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 675279327} + m_GameObject: {fileID: 1142827623} m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: - - {fileID: 420688645} - - {fileID: 1524038889} - - {fileID: 712883901} - m_Father: {fileID: 295720386} + m_Children: [] + m_Father: {fileID: 516366483} m_RootOrder: 0 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0.5} - m_AnchorMax: {x: 1, y: 0.5} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} m_AnchoredPosition: {x: 0, y: 0} - m_SizeDelta: {x: 0, y: 40} + m_SizeDelta: {x: 20, y: 20} m_Pivot: {x: 0.5, y: 0.5} ---- !u!114 &675279329 +--- !u!114 &1142827625 MonoBehaviour: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 675279327} + m_GameObject: {fileID: 1142827623} m_Enabled: 1 m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 9085046f02f69544eb97fd06b6048fe2, type: 3} + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} m_Name: m_EditorClassIdentifier: - m_Navigation: - m_Mode: 3 - m_WrapAround: 0 - m_SelectOnUp: {fileID: 0} - m_SelectOnDown: {fileID: 0} - m_SelectOnLeft: {fileID: 0} - m_SelectOnRight: {fileID: 0} - m_Transition: 1 - m_Colors: - m_NormalColor: {r: 1, g: 1, b: 1, a: 1} - m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} - m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} - m_SelectedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} - m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} - m_ColorMultiplier: 1 - m_FadeDuration: 0.1 - m_SpriteState: - m_HighlightedSprite: {fileID: 0} - m_PressedSprite: {fileID: 0} - m_SelectedSprite: {fileID: 0} - m_DisabledSprite: {fileID: 0} - m_AnimationTriggers: - m_NormalTrigger: Normal - m_HighlightedTrigger: Highlighted - m_PressedTrigger: Pressed - m_SelectedTrigger: Selected - m_DisabledTrigger: Disabled - m_Interactable: 1 - m_TargetGraphic: {fileID: 420688646} - toggleTransition: 1 - graphic: {fileID: 1524038890} - m_Group: {fileID: 0} - onValueChanged: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: m_PersistentCalls: m_Calls: [] - m_IsOn: 1 ---- !u!1 &712883900 + m_Sprite: {fileID: 10901, guid: 0000000000000000f000000000000000, type: 0} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!222 &1142827626 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1142827623} + m_CullTransparentMesh: 1 +--- !u!1 &1146892660 GameObject: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} @@ -1520,78 +3898,107 @@ GameObject: m_PrefabAsset: {fileID: 0} serializedVersion: 6 m_Component: - - component: {fileID: 712883901} - - component: {fileID: 712883903} - - component: {fileID: 712883902} + - component: {fileID: 1146892661} + - component: {fileID: 1146892664} + - component: {fileID: 1146892663} + - component: {fileID: 1146892662} m_Layer: 5 - m_Name: Item Label + m_Name: Template m_TagString: Untagged m_Icon: {fileID: 0} m_NavMeshLayer: 0 m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &712883901 + m_IsActive: 0 +--- !u!224 &1146892661 RectTransform: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 712883900} + m_GameObject: {fileID: 1146892660} m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 675279328} + m_Children: + - {fileID: 416999616} + - {fileID: 2003898107} + m_Father: {fileID: 343008505} m_RootOrder: 2 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 1, y: 1} - m_AnchoredPosition: {x: 0, y: -0.5} - m_SizeDelta: {x: -40, y: -3} - m_Pivot: {x: 0.5, y: 0.5} ---- !u!114 &712883902 + m_AnchorMax: {x: 1, y: 0} + m_AnchoredPosition: {x: 0, y: 2} + m_SizeDelta: {x: 0, y: 350} + m_Pivot: {x: 0.5, y: 1} +--- !u!114 &1146892662 MonoBehaviour: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 712883900} + m_GameObject: {fileID: 1146892660} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 1aa08ab6e0800fa44ae55d278d1423e3, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Content: {fileID: 295720386} + m_Horizontal: 0 + m_Vertical: 1 + m_MovementType: 2 + m_Elasticity: 0.1 + m_Inertia: 1 + m_DecelerationRate: 0.135 + m_ScrollSensitivity: 1 + m_Viewport: {fileID: 416999616} + m_HorizontalScrollbar: {fileID: 0} + m_VerticalScrollbar: {fileID: 2003898108} + m_HorizontalScrollbarVisibility: 0 + m_VerticalScrollbarVisibility: 2 + m_HorizontalScrollbarSpacing: 0 + m_VerticalScrollbarSpacing: -3 + m_OnValueChanged: + m_PersistentCalls: + m_Calls: [] +--- !u!114 &1146892663 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1146892660} m_Enabled: 1 m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 5f7201a12d95ffc409449d95f23cf332, type: 3} + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} m_Name: m_EditorClassIdentifier: m_Material: {fileID: 0} - m_Color: {r: 0.19607843, g: 0.19607843, b: 0.19607843, a: 1} + m_Color: {r: 1, g: 1, b: 1, a: 1} m_RaycastTarget: 1 m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} m_Maskable: 1 m_OnCullStateChanged: m_PersistentCalls: m_Calls: [] - m_FontData: - m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} - m_FontSize: 18 - m_FontStyle: 0 - m_BestFit: 0 - m_MinSize: 1 - m_MaxSize: 40 - m_Alignment: 3 - m_AlignByGeometry: 0 - m_RichText: 1 - m_HorizontalOverflow: 0 - m_VerticalOverflow: 0 - m_LineSpacing: 1 - m_Text: Option A ---- !u!222 &712883903 + m_Sprite: {fileID: 10905, guid: 0000000000000000f000000000000000, type: 0} + m_Type: 1 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!222 &1146892664 CanvasRenderer: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 712883900} + m_GameObject: {fileID: 1146892660} m_CullTransparentMesh: 1 ---- !u!1 &758563312 +--- !u!1 &1156861535 GameObject: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} @@ -1599,73 +4006,88 @@ GameObject: m_PrefabAsset: {fileID: 0} serializedVersion: 6 m_Component: - - component: {fileID: 758563313} - m_Layer: 0 - m_Name: ----Controllers---- + - component: {fileID: 1156861536} + - component: {fileID: 1156861539} + - component: {fileID: 1156861538} + - component: {fileID: 1156861537} + m_Layer: 5 + m_Name: LeftAnimButton m_TagString: Untagged m_Icon: {fileID: 0} m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 ---- !u!4 &758563313 -Transform: +--- !u!224 &1156861536 +RectTransform: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 758563312} + m_GameObject: {fileID: 1156861535} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: - - {fileID: 2076522841} - m_Father: {fileID: 0} - m_RootOrder: 3 + - {fileID: 2024816313} + m_Father: {fileID: 548349244} + m_RootOrder: 1 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!1 &765423930 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 765423931} - - component: {fileID: 765423933} - - component: {fileID: 765423932} - m_Layer: 5 - m_Name: Checkmark - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &765423931 -RectTransform: + m_AnchorMin: {x: 0, y: 0.5} + m_AnchorMax: {x: 0, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0.000030517578} + m_SizeDelta: {x: 30, y: 50} + m_Pivot: {x: 0, y: 0.5} +--- !u!114 &1156861537 +MonoBehaviour: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 765423930} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 1991807329} - m_RootOrder: 0 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0.5, y: 0.5} - m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: 0, y: 0} - m_SizeDelta: {x: 20, y: 20} - m_Pivot: {x: 0.5, y: 0.5} ---- !u!114 &765423932 + m_GameObject: {fileID: 1156861535} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 4e29b1a8efbd4b44bb3f3716e73f07ff, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Navigation: + m_Mode: 3 + m_WrapAround: 0 + m_SelectOnUp: {fileID: 0} + m_SelectOnDown: {fileID: 0} + m_SelectOnLeft: {fileID: 0} + m_SelectOnRight: {fileID: 0} + m_Transition: 1 + m_Colors: + m_NormalColor: {r: 1, g: 1, b: 1, a: 1} + m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} + m_SelectedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} + m_ColorMultiplier: 1 + m_FadeDuration: 0.1 + m_SpriteState: + m_HighlightedSprite: {fileID: 0} + m_PressedSprite: {fileID: 0} + m_SelectedSprite: {fileID: 0} + m_DisabledSprite: {fileID: 0} + m_AnimationTriggers: + m_NormalTrigger: Normal + m_HighlightedTrigger: Highlighted + m_PressedTrigger: Pressed + m_SelectedTrigger: Selected + m_DisabledTrigger: Disabled + m_Interactable: 1 + m_TargetGraphic: {fileID: 1156861538} + m_OnClick: + m_PersistentCalls: + m_Calls: [] +--- !u!114 &1156861538 MonoBehaviour: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 765423930} + m_GameObject: {fileID: 1156861535} m_Enabled: 1 m_EditorHideFlags: 0 m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} @@ -1679,8 +4101,8 @@ MonoBehaviour: m_OnCullStateChanged: m_PersistentCalls: m_Calls: [] - m_Sprite: {fileID: 10901, guid: 0000000000000000f000000000000000, type: 0} - m_Type: 0 + m_Sprite: {fileID: 10905, guid: 0000000000000000f000000000000000, type: 0} + m_Type: 1 m_PreserveAspect: 0 m_FillCenter: 1 m_FillMethod: 4 @@ -1689,15 +4111,15 @@ MonoBehaviour: m_FillOrigin: 0 m_UseSpriteMesh: 0 m_PixelsPerUnitMultiplier: 1 ---- !u!222 &765423933 +--- !u!222 &1156861539 CanvasRenderer: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 765423930} + m_GameObject: {fileID: 1156861535} m_CullTransparentMesh: 1 ---- !u!1 &833601431 +--- !u!1 &1179124852 GameObject: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} @@ -1705,42 +4127,42 @@ GameObject: m_PrefabAsset: {fileID: 0} serializedVersion: 6 m_Component: - - component: {fileID: 833601432} - - component: {fileID: 833601434} - - component: {fileID: 833601433} + - component: {fileID: 1179124853} + - component: {fileID: 1179124855} + - component: {fileID: 1179124854} m_Layer: 5 - m_Name: Text + m_Name: Label m_TagString: Untagged m_Icon: {fileID: 0} m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 ---- !u!224 &833601432 +--- !u!224 &1179124853 RectTransform: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 833601431} + m_GameObject: {fileID: 1179124852} m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] - m_Father: {fileID: 2139753036} + m_Father: {fileID: 1300751403} m_RootOrder: 0 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 0} m_AnchorMax: {x: 1, y: 1} - m_AnchoredPosition: {x: 0, y: 0} - m_SizeDelta: {x: 0, y: 0} + m_AnchoredPosition: {x: -7.5, y: -0.5} + m_SizeDelta: {x: -35, y: -13} m_Pivot: {x: 0.5, y: 0.5} ---- !u!114 &833601433 +--- !u!114 &1179124854 MonoBehaviour: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 833601431} + m_GameObject: {fileID: 1179124852} m_Enabled: 1 m_EditorHideFlags: 0 m_Script: {fileID: 11500000, guid: 5f7201a12d95ffc409449d95f23cf332, type: 3} @@ -1756,27 +4178,27 @@ MonoBehaviour: m_Calls: [] m_FontData: m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} - m_FontSize: 20 + m_FontSize: 18 m_FontStyle: 0 m_BestFit: 0 - m_MinSize: 2 + m_MinSize: 1 m_MaxSize: 40 - m_Alignment: 4 + m_Alignment: 3 m_AlignByGeometry: 0 m_RichText: 1 m_HorizontalOverflow: 0 m_VerticalOverflow: 0 m_LineSpacing: 1 - m_Text: '>' ---- !u!222 &833601434 + m_Text: Body random +--- !u!222 &1179124855 CanvasRenderer: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 833601431} + m_GameObject: {fileID: 1179124852} m_CullTransparentMesh: 1 ---- !u!1 &868847127 +--- !u!1 &1232175103 GameObject: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} @@ -1784,36 +4206,76 @@ GameObject: m_PrefabAsset: {fileID: 0} serializedVersion: 6 m_Component: - - component: {fileID: 868847128} + - component: {fileID: 1232175104} + - component: {fileID: 1232175106} + - component: {fileID: 1232175105} m_Layer: 5 - m_Name: Col (2) + m_Name: Menu m_TagString: Untagged m_Icon: {fileID: 0} m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 ---- !u!224 &868847128 +--- !u!224 &1232175104 RectTransform: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 868847127} + m_GameObject: {fileID: 1232175103} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: - - {fileID: 1003257360} - - {fileID: 1300751403} - m_Father: {fileID: 890506813} - m_RootOrder: 2 + - {fileID: 890506813} + - {fileID: 1652034102} + m_Father: {fileID: 1813608835} + m_RootOrder: 1 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 1, y: 1} m_AnchoredPosition: {x: 0, y: 0} - m_SizeDelta: {x: 0, y: 0} - m_Pivot: {x: 0.5, y: 0.5} ---- !u!1 &890506812 + m_SizeDelta: {x: 0, y: 60} + m_Pivot: {x: 0.5, y: 1} +--- !u!114 &1232175105 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1232175103} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.7264151, g: 0.7264151, b: 0.7264151, a: 0.5019608} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 0} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!222 &1232175106 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1232175103} + m_CullTransparentMesh: 0 +--- !u!1 &1275833167 GameObject: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} @@ -1821,65 +4283,35 @@ GameObject: m_PrefabAsset: {fileID: 0} serializedVersion: 6 m_Component: - - component: {fileID: 890506813} - - component: {fileID: 890506814} + - component: {fileID: 1275833168} m_Layer: 5 - m_Name: Line + m_Name: GameObject (1) m_TagString: Untagged m_Icon: {fileID: 0} m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 ---- !u!224 &890506813 +--- !u!224 &1275833168 RectTransform: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 890506812} + m_GameObject: {fileID: 1275833167} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: - - {fileID: 548349244} - - {fileID: 1806107436} - - {fileID: 868847128} - - {fileID: 407212889} - m_Father: {fileID: 1232175104} - m_RootOrder: 0 + - {fileID: 2005750087} + m_Father: {fileID: 1806107436} + m_RootOrder: 1 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 1, y: 1} + m_AnchorMax: {x: 0, y: 0} m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 0, y: 0} m_Pivot: {x: 0.5, y: 0.5} ---- !u!114 &890506814 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 890506812} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 30649d3a9faa99c48a7b1166b86bf2a0, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Padding: - m_Left: 0 - m_Right: 0 - m_Top: 0 - m_Bottom: 0 - m_ChildAlignment: 0 - m_Spacing: 0 - m_ChildForceExpandWidth: 1 - m_ChildForceExpandHeight: 1 - m_ChildControlWidth: 1 - m_ChildControlHeight: 1 - m_ChildScaleWidth: 0 - m_ChildScaleHeight: 0 - m_ReverseArrangement: 0 ---- !u!1 &896811068 +--- !u!1 &1300150517 GameObject: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} @@ -1887,86 +4319,74 @@ GameObject: m_PrefabAsset: {fileID: 0} serializedVersion: 6 m_Component: - - component: {fileID: 896811069} - - component: {fileID: 896811070} + - component: {fileID: 1300150518} + - component: {fileID: 1300150520} + - component: {fileID: 1300150519} m_Layer: 5 - m_Name: Item + m_Name: Checkmark m_TagString: Untagged m_Icon: {fileID: 0} m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 ---- !u!224 &896811069 +--- !u!224 &1300150518 RectTransform: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 896811068} + m_GameObject: {fileID: 1300150517} m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: - - {fileID: 562637591} - - {fileID: 1060624246} - - {fileID: 551103758} - m_Father: {fileID: 459802440} + m_Children: [] + m_Father: {fileID: 947357650} m_RootOrder: 0 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0.5} - m_AnchorMax: {x: 1, y: 0.5} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} m_AnchoredPosition: {x: 0, y: 0} - m_SizeDelta: {x: 0, y: 40} + m_SizeDelta: {x: 20, y: 20} m_Pivot: {x: 0.5, y: 0.5} ---- !u!114 &896811070 +--- !u!114 &1300150519 MonoBehaviour: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 896811068} + m_GameObject: {fileID: 1300150517} m_Enabled: 1 m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 9085046f02f69544eb97fd06b6048fe2, type: 3} + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} m_Name: m_EditorClassIdentifier: - m_Navigation: - m_Mode: 3 - m_WrapAround: 0 - m_SelectOnUp: {fileID: 0} - m_SelectOnDown: {fileID: 0} - m_SelectOnLeft: {fileID: 0} - m_SelectOnRight: {fileID: 0} - m_Transition: 1 - m_Colors: - m_NormalColor: {r: 1, g: 1, b: 1, a: 1} - m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} - m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} - m_SelectedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} - m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} - m_ColorMultiplier: 1 - m_FadeDuration: 0.1 - m_SpriteState: - m_HighlightedSprite: {fileID: 0} - m_PressedSprite: {fileID: 0} - m_SelectedSprite: {fileID: 0} - m_DisabledSprite: {fileID: 0} - m_AnimationTriggers: - m_NormalTrigger: Normal - m_HighlightedTrigger: Highlighted - m_PressedTrigger: Pressed - m_SelectedTrigger: Selected - m_DisabledTrigger: Disabled - m_Interactable: 1 - m_TargetGraphic: {fileID: 562637592} - toggleTransition: 1 - graphic: {fileID: 1060624247} - m_Group: {fileID: 0} - onValueChanged: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: m_PersistentCalls: m_Calls: [] - m_IsOn: 1 ---- !u!1 &946688269 + m_Sprite: {fileID: 10901, guid: 0000000000000000f000000000000000, type: 0} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!222 &1300150520 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1300150517} + m_CullTransparentMesh: 1 +--- !u!1 &1300751402 GameObject: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} @@ -1974,46 +4394,49 @@ GameObject: m_PrefabAsset: {fileID: 0} serializedVersion: 6 m_Component: - - component: {fileID: 946688270} - - component: {fileID: 946688271} + - component: {fileID: 1300751403} + - component: {fileID: 1300751406} + - component: {fileID: 1300751405} + - component: {fileID: 1300751404} m_Layer: 5 - m_Name: AllToggle + m_Name: BodyDropdown m_TagString: Untagged m_Icon: {fileID: 0} m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 ---- !u!224 &946688270 +--- !u!224 &1300751403 RectTransform: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 946688269} - m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_GameObject: {fileID: 1300751402} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: - - {fileID: 1991807329} - - {fileID: 645056485} - m_Father: {fileID: 54314173} - m_RootOrder: 0 + - {fileID: 1179124853} + - {fileID: 1454818759} + - {fileID: 1469815176} + m_Father: {fileID: 868847128} + m_RootOrder: 1 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0.5, y: 0.5} - m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 1, y: 1} m_AnchoredPosition: {x: 0, y: 0} - m_SizeDelta: {x: 160, y: 20} + m_SizeDelta: {x: -40, y: -10} m_Pivot: {x: 0.5, y: 0.5} ---- !u!114 &946688271 +--- !u!114 &1300751404 MonoBehaviour: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 946688269} + m_GameObject: {fileID: 1300751402} m_Enabled: 1 m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 9085046f02f69544eb97fd06b6048fe2, type: 3} + m_Script: {fileID: 11500000, guid: 0d0b652f32a2cc243917e4028fa0f046, type: 3} m_Name: m_EditorClassIdentifier: m_Navigation: @@ -2044,94 +4467,78 @@ MonoBehaviour: m_SelectedTrigger: Selected m_DisabledTrigger: Disabled m_Interactable: 1 - m_TargetGraphic: {fileID: 1991807330} - toggleTransition: 1 - graphic: {fileID: 765423932} - m_Group: {fileID: 1806107438} - onValueChanged: + m_TargetGraphic: {fileID: 1300751405} + m_Template: {fileID: 1469815176} + m_CaptionText: {fileID: 1179124854} + m_CaptionImage: {fileID: 0} + m_ItemText: {fileID: 551103759} + m_ItemImage: {fileID: 0} + m_Value: 0 + m_Options: + m_Options: + - m_Text: Body random + m_Image: {fileID: 0} + - m_Text: Body normal + m_Image: {fileID: 0} + - m_Text: Body curly + m_Image: {fileID: 0} + - m_Text: Body spiky + m_Image: {fileID: 0} + - m_Text: Body wetdog + m_Image: {fileID: 0} + - m_Text: Body sumo + m_Image: {fileID: 0} + - m_Text: Body bigyak + m_Image: {fileID: 0} + - m_Text: Body mystic-normal + m_Image: {fileID: 0} + - m_Text: Body mystic-fuzzy + m_Image: {fileID: 0} + - m_Text: Body normal-accessory + m_Image: {fileID: 0} + m_OnValueChanged: m_PersistentCalls: m_Calls: [] - m_IsOn: 1 ---- !u!1 &963988930 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 963988931} - - component: {fileID: 963988933} - - component: {fileID: 963988932} - m_Layer: 5 - m_Name: Label - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &963988931 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 963988930} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 2005750087} - m_RootOrder: 1 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 1, y: 1} - m_AnchoredPosition: {x: 9, y: -0.5} - m_SizeDelta: {x: -28, y: -3} - m_Pivot: {x: 0.5, y: 0.5} ---- !u!114 &963988932 + m_AlphaFadeSpeed: 0.15 +--- !u!114 &1300751405 MonoBehaviour: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 963988930} + m_GameObject: {fileID: 1300751402} m_Enabled: 1 m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 5f7201a12d95ffc409449d95f23cf332, type: 3} + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} m_Name: m_EditorClassIdentifier: m_Material: {fileID: 0} - m_Color: {r: 0.19607843, g: 0.19607843, b: 0.19607843, a: 1} - m_RaycastTarget: 1 - m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} - m_Maskable: 1 - m_OnCullStateChanged: - m_PersistentCalls: - m_Calls: [] - m_FontData: - m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} - m_FontSize: 14 - m_FontStyle: 0 - m_BestFit: 0 - m_MinSize: 10 - m_MaxSize: 40 - m_Alignment: 0 - m_AlignByGeometry: 0 - m_RichText: 1 - m_HorizontalOverflow: 0 - m_VerticalOverflow: 0 - m_LineSpacing: 1 - m_Text: Custom Id ---- !u!222 &963988933 + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 10905, guid: 0000000000000000f000000000000000, type: 0} + m_Type: 1 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!222 &1300751406 CanvasRenderer: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 963988930} + m_GameObject: {fileID: 1300751402} m_CullTransparentMesh: 1 ---- !u!1 &990936318 +--- !u!1 &1301451843 GameObject: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} @@ -2139,63 +4546,47 @@ GameObject: m_PrefabAsset: {fileID: 0} serializedVersion: 6 m_Component: - - component: {fileID: 990936319} + - component: {fileID: 1301451844} + - component: {fileID: 1301451847} + - component: {fileID: 1301451846} + - component: {fileID: 1301451845} m_Layer: 5 - m_Name: Sliding Area + m_Name: Scrollbar m_TagString: Untagged m_Icon: {fileID: 0} m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 ---- !u!224 &990936319 +--- !u!224 &1301451844 RectTransform: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 990936318} + m_GameObject: {fileID: 1301451843} m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: - - {fileID: 636520803} - m_Father: {fileID: 2003898107} - m_RootOrder: 0 + - {fileID: 2060334847} + m_Father: {fileID: 1469815176} + m_RootOrder: 1 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} + m_AnchorMin: {x: 1, y: 0} m_AnchorMax: {x: 1, y: 1} m_AnchoredPosition: {x: 0, y: 0} - m_SizeDelta: {x: -20, y: -20} - m_Pivot: {x: 0.5, y: 0.5} ---- !u!1 &1003257358 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 1003257360} - - component: {fileID: 1003257362} - - component: {fileID: 1003257361} - - component: {fileID: 1003257359} - m_Layer: 5 - m_Name: InputField - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!114 &1003257359 + m_SizeDelta: {x: 20, y: 0} + m_Pivot: {x: 1, y: 1} +--- !u!114 &1301451845 MonoBehaviour: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1003257358} + m_GameObject: {fileID: 1301451843} m_Enabled: 1 m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: d199490a83bb2b844b9695cbf13b01ef, type: 3} + m_Script: {fileID: 11500000, guid: 2a4db7a114972834c8e4117be1d82ba3, type: 3} m_Name: m_EditorClassIdentifier: m_Navigation: @@ -2226,59 +4617,22 @@ MonoBehaviour: m_SelectedTrigger: Selected m_DisabledTrigger: Disabled m_Interactable: 1 - m_TargetGraphic: {fileID: 1003257361} - m_TextComponent: {fileID: 442422449} - m_Placeholder: {fileID: 95400343} - m_ContentType: 2 - m_InputType: 0 - m_AsteriskChar: 42 - m_KeyboardType: 4 - m_LineType: 0 - m_HideMobileInput: 0 - m_CharacterValidation: 1 - m_CharacterLimit: 0 - m_OnEndEdit: - m_PersistentCalls: - m_Calls: [] + m_TargetGraphic: {fileID: 1410415762} + m_HandleRect: {fileID: 1410415761} + m_Direction: 2 + m_Value: 0 + m_Size: 0.2 + m_NumberOfSteps: 0 m_OnValueChanged: m_PersistentCalls: m_Calls: [] - m_CaretColor: {r: 0.19607843, g: 0.19607843, b: 0.19607843, a: 1} - m_CustomCaretColor: 0 - m_SelectionColor: {r: 0.65882355, g: 0.80784315, b: 1, a: 0.7529412} - m_Text: 2727 - m_CaretBlinkRate: 0.85 - m_CaretWidth: 1 - m_ReadOnly: 0 - m_ShouldActivateOnSelect: 1 ---- !u!224 &1003257360 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1003257358} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: - - {fileID: 95400345} - - {fileID: 442422447} - m_Father: {fileID: 868847128} - m_RootOrder: 0 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 1, y: 1} - m_AnchoredPosition: {x: 20, y: 0} - m_SizeDelta: {x: -40, y: -10} - m_Pivot: {x: 0, y: 0.5} ---- !u!114 &1003257361 +--- !u!114 &1301451846 MonoBehaviour: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1003257358} + m_GameObject: {fileID: 1301451843} m_Enabled: 1 m_EditorHideFlags: 0 m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} @@ -2292,7 +4646,7 @@ MonoBehaviour: m_OnCullStateChanged: m_PersistentCalls: m_Calls: [] - m_Sprite: {fileID: 10911, guid: 0000000000000000f000000000000000, type: 0} + m_Sprite: {fileID: 10907, guid: 0000000000000000f000000000000000, type: 0} m_Type: 1 m_PreserveAspect: 0 m_FillCenter: 1 @@ -2302,15 +4656,15 @@ MonoBehaviour: m_FillOrigin: 0 m_UseSpriteMesh: 0 m_PixelsPerUnitMultiplier: 1 ---- !u!222 &1003257362 +--- !u!222 &1301451847 CanvasRenderer: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1003257358} - m_CullTransparentMesh: 0 ---- !u!1 &1060624245 + m_GameObject: {fileID: 1301451843} + m_CullTransparentMesh: 1 +--- !u!1 &1321035339 GameObject: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} @@ -2318,74 +4672,144 @@ GameObject: m_PrefabAsset: {fileID: 0} serializedVersion: 6 m_Component: - - component: {fileID: 1060624246} - - component: {fileID: 1060624248} - - component: {fileID: 1060624247} + - component: {fileID: 1321035340} + - component: {fileID: 1321035341} m_Layer: 5 - m_Name: Item Checkmark + m_Name: Line m_TagString: Untagged m_Icon: {fileID: 0} m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 ---- !u!224 &1060624246 +--- !u!224 &1321035340 RectTransform: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1060624245} + m_GameObject: {fileID: 1321035339} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 84681985} + - {fileID: 346516971} + - {fileID: 551676995} + - {fileID: 361812056} + - {fileID: 1868019693} + - {fileID: 1521966270} + m_Father: {fileID: 1652034102} + m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: 50, y: 0} + m_SizeDelta: {x: -100, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1321035341 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1321035339} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 8a8695521f0d02e499659fee002a26c2, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Padding: + m_Left: 0 + m_Right: 0 + m_Top: 4 + m_Bottom: 0 + m_ChildAlignment: 0 + m_StartCorner: 0 + m_StartAxis: 0 + m_CellSize: {x: 100, y: 30} + m_Spacing: {x: 0, y: 0} + m_Constraint: 0 + m_ConstraintCount: 2 +--- !u!1 &1341235891 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1341235892} + - component: {fileID: 1341235894} + - component: {fileID: 1341235893} + m_Layer: 5 + m_Name: Label + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1341235892 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1341235891} m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] - m_Father: {fileID: 896811069} + m_Father: {fileID: 1655288812} m_RootOrder: 1 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0.5} - m_AnchorMax: {x: 0, y: 0.5} - m_AnchoredPosition: {x: 10, y: 0} - m_SizeDelta: {x: 40, y: 40} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: 10, y: -0.5} + m_SizeDelta: {x: -20, y: -3} m_Pivot: {x: 0.5, y: 0.5} ---- !u!114 &1060624247 +--- !u!114 &1341235893 MonoBehaviour: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1060624245} + m_GameObject: {fileID: 1341235891} m_Enabled: 1 m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Script: {fileID: 11500000, guid: 5f7201a12d95ffc409449d95f23cf332, type: 3} m_Name: m_EditorClassIdentifier: m_Material: {fileID: 0} - m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Color: {r: 0.19607843, g: 0.19607843, b: 0.19607843, a: 1} m_RaycastTarget: 1 m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} m_Maskable: 1 m_OnCullStateChanged: m_PersistentCalls: m_Calls: [] - m_Sprite: {fileID: 10901, guid: 0000000000000000f000000000000000, type: 0} - m_Type: 0 - m_PreserveAspect: 0 - m_FillCenter: 1 - m_FillMethod: 4 - m_FillAmount: 1 - m_FillClockwise: 1 - m_FillOrigin: 0 - m_UseSpriteMesh: 0 - m_PixelsPerUnitMultiplier: 1 ---- !u!222 &1060624248 + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 14 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 0 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 0 + m_VerticalOverflow: 0 + m_LineSpacing: 1 + m_Text: Custom Lv +--- !u!222 &1341235894 CanvasRenderer: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1060624245} + m_GameObject: {fileID: 1341235891} m_CullTransparentMesh: 1 ---- !u!1 &1146892660 +--- !u!1 &1410415760 GameObject: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} @@ -2393,75 +4817,42 @@ GameObject: m_PrefabAsset: {fileID: 0} serializedVersion: 6 m_Component: - - component: {fileID: 1146892661} - - component: {fileID: 1146892664} - - component: {fileID: 1146892663} - - component: {fileID: 1146892662} + - component: {fileID: 1410415761} + - component: {fileID: 1410415763} + - component: {fileID: 1410415762} m_Layer: 5 - m_Name: Template + m_Name: Handle m_TagString: Untagged m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 0 ---- !u!224 &1146892661 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1146892660} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: - - {fileID: 416999616} - - {fileID: 2003898107} - m_Father: {fileID: 343008505} - m_RootOrder: 2 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 1, y: 0} - m_AnchoredPosition: {x: 0, y: 2} - m_SizeDelta: {x: 0, y: 350} - m_Pivot: {x: 0.5, y: 1} ---- !u!114 &1146892662 -MonoBehaviour: + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1410415761 +RectTransform: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1146892660} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 1aa08ab6e0800fa44ae55d278d1423e3, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Content: {fileID: 295720386} - m_Horizontal: 0 - m_Vertical: 1 - m_MovementType: 2 - m_Elasticity: 0.1 - m_Inertia: 1 - m_DecelerationRate: 0.135 - m_ScrollSensitivity: 1 - m_Viewport: {fileID: 416999616} - m_HorizontalScrollbar: {fileID: 0} - m_VerticalScrollbar: {fileID: 2003898108} - m_HorizontalScrollbarVisibility: 0 - m_VerticalScrollbarVisibility: 2 - m_HorizontalScrollbarSpacing: 0 - m_VerticalScrollbarSpacing: -3 - m_OnValueChanged: - m_PersistentCalls: - m_Calls: [] ---- !u!114 &1146892663 + m_GameObject: {fileID: 1410415760} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 2060334847} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 1, y: 0.2} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 20, y: 20} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1410415762 MonoBehaviour: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1146892660} + m_GameObject: {fileID: 1410415760} m_Enabled: 1 m_EditorHideFlags: 0 m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} @@ -2485,15 +4876,15 @@ MonoBehaviour: m_FillOrigin: 0 m_UseSpriteMesh: 0 m_PixelsPerUnitMultiplier: 1 ---- !u!222 &1146892664 +--- !u!222 &1410415763 CanvasRenderer: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1146892660} + m_GameObject: {fileID: 1410415760} m_CullTransparentMesh: 1 ---- !u!1 &1156861535 +--- !u!1 &1454818758 GameObject: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} @@ -2501,88 +4892,42 @@ GameObject: m_PrefabAsset: {fileID: 0} serializedVersion: 6 m_Component: - - component: {fileID: 1156861536} - - component: {fileID: 1156861539} - - component: {fileID: 1156861538} - - component: {fileID: 1156861537} + - component: {fileID: 1454818759} + - component: {fileID: 1454818761} + - component: {fileID: 1454818760} m_Layer: 5 - m_Name: LeftAnimButton + m_Name: Arrow m_TagString: Untagged m_Icon: {fileID: 0} m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 ---- !u!224 &1156861536 +--- !u!224 &1454818759 RectTransform: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1156861535} - m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_GameObject: {fileID: 1454818758} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: - - {fileID: 2024816313} - m_Father: {fileID: 548349244} + m_Children: [] + m_Father: {fileID: 1300751403} m_RootOrder: 1 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0.5} - m_AnchorMax: {x: 0, y: 0.5} - m_AnchoredPosition: {x: 0, y: 0.000030517578} - m_SizeDelta: {x: 30, y: 50} - m_Pivot: {x: 0, y: 0.5} ---- !u!114 &1156861537 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1156861535} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 4e29b1a8efbd4b44bb3f3716e73f07ff, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Navigation: - m_Mode: 3 - m_WrapAround: 0 - m_SelectOnUp: {fileID: 0} - m_SelectOnDown: {fileID: 0} - m_SelectOnLeft: {fileID: 0} - m_SelectOnRight: {fileID: 0} - m_Transition: 1 - m_Colors: - m_NormalColor: {r: 1, g: 1, b: 1, a: 1} - m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} - m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} - m_SelectedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} - m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} - m_ColorMultiplier: 1 - m_FadeDuration: 0.1 - m_SpriteState: - m_HighlightedSprite: {fileID: 0} - m_PressedSprite: {fileID: 0} - m_SelectedSprite: {fileID: 0} - m_DisabledSprite: {fileID: 0} - m_AnimationTriggers: - m_NormalTrigger: Normal - m_HighlightedTrigger: Highlighted - m_PressedTrigger: Pressed - m_SelectedTrigger: Selected - m_DisabledTrigger: Disabled - m_Interactable: 1 - m_TargetGraphic: {fileID: 1156861538} - m_OnClick: - m_PersistentCalls: - m_Calls: [] ---- !u!114 &1156861538 + m_AnchorMin: {x: 1, y: 0.5} + m_AnchorMax: {x: 1, y: 0.5} + m_AnchoredPosition: {x: -15, y: 0} + m_SizeDelta: {x: 20, y: 20} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1454818760 MonoBehaviour: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1156861535} + m_GameObject: {fileID: 1454818758} m_Enabled: 1 m_EditorHideFlags: 0 m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} @@ -2596,8 +4941,8 @@ MonoBehaviour: m_OnCullStateChanged: m_PersistentCalls: m_Calls: [] - m_Sprite: {fileID: 10905, guid: 0000000000000000f000000000000000, type: 0} - m_Type: 1 + m_Sprite: {fileID: 10915, guid: 0000000000000000f000000000000000, type: 0} + m_Type: 0 m_PreserveAspect: 0 m_FillCenter: 1 m_FillMethod: 4 @@ -2606,15 +4951,15 @@ MonoBehaviour: m_FillOrigin: 0 m_UseSpriteMesh: 0 m_PixelsPerUnitMultiplier: 1 ---- !u!222 &1156861539 +--- !u!222 &1454818761 CanvasRenderer: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1156861535} + m_GameObject: {fileID: 1454818758} m_CullTransparentMesh: 1 ---- !u!1 &1179124852 +--- !u!1 &1469815175 GameObject: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} @@ -2622,78 +4967,107 @@ GameObject: m_PrefabAsset: {fileID: 0} serializedVersion: 6 m_Component: - - component: {fileID: 1179124853} - - component: {fileID: 1179124855} - - component: {fileID: 1179124854} + - component: {fileID: 1469815176} + - component: {fileID: 1469815179} + - component: {fileID: 1469815178} + - component: {fileID: 1469815177} m_Layer: 5 - m_Name: Label + m_Name: Template m_TagString: Untagged m_Icon: {fileID: 0} m_NavMeshLayer: 0 m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &1179124853 + m_IsActive: 0 +--- !u!224 &1469815176 RectTransform: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1179124852} + m_GameObject: {fileID: 1469815175} m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] + m_Children: + - {fileID: 1965515835} + - {fileID: 1301451844} m_Father: {fileID: 1300751403} - m_RootOrder: 0 + m_RootOrder: 2 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 1, y: 1} - m_AnchoredPosition: {x: -7.5, y: -0.5} - m_SizeDelta: {x: -35, y: -13} - m_Pivot: {x: 0.5, y: 0.5} ---- !u!114 &1179124854 + m_AnchorMax: {x: 1, y: 0} + m_AnchoredPosition: {x: 0, y: 2} + m_SizeDelta: {x: 0, y: 350} + m_Pivot: {x: 0.5, y: 1} +--- !u!114 &1469815177 MonoBehaviour: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1179124852} + m_GameObject: {fileID: 1469815175} m_Enabled: 1 m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 5f7201a12d95ffc409449d95f23cf332, type: 3} + m_Script: {fileID: 11500000, guid: 1aa08ab6e0800fa44ae55d278d1423e3, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Content: {fileID: 459802440} + m_Horizontal: 0 + m_Vertical: 1 + m_MovementType: 2 + m_Elasticity: 0.1 + m_Inertia: 1 + m_DecelerationRate: 0.135 + m_ScrollSensitivity: 1 + m_Viewport: {fileID: 1965515835} + m_HorizontalScrollbar: {fileID: 0} + m_VerticalScrollbar: {fileID: 1301451845} + m_HorizontalScrollbarVisibility: 0 + m_VerticalScrollbarVisibility: 2 + m_HorizontalScrollbarSpacing: 0 + m_VerticalScrollbarSpacing: -3 + m_OnValueChanged: + m_PersistentCalls: + m_Calls: [] +--- !u!114 &1469815178 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1469815175} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} m_Name: m_EditorClassIdentifier: m_Material: {fileID: 0} - m_Color: {r: 0.19607843, g: 0.19607843, b: 0.19607843, a: 1} + m_Color: {r: 1, g: 1, b: 1, a: 1} m_RaycastTarget: 1 m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} m_Maskable: 1 m_OnCullStateChanged: m_PersistentCalls: m_Calls: [] - m_FontData: - m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} - m_FontSize: 18 - m_FontStyle: 0 - m_BestFit: 0 - m_MinSize: 1 - m_MaxSize: 40 - m_Alignment: 3 - m_AlignByGeometry: 0 - m_RichText: 1 - m_HorizontalOverflow: 0 - m_VerticalOverflow: 0 - m_LineSpacing: 1 - m_Text: Body random ---- !u!222 &1179124855 + m_Sprite: {fileID: 10905, guid: 0000000000000000f000000000000000, type: 0} + m_Type: 1 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!222 &1469815179 CanvasRenderer: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1179124852} + m_GameObject: {fileID: 1469815175} m_CullTransparentMesh: 1 ---- !u!1 &1232175103 +--- !u!1 &1487122368 GameObject: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} @@ -2701,58 +5075,58 @@ GameObject: m_PrefabAsset: {fileID: 0} serializedVersion: 6 m_Component: - - component: {fileID: 1232175104} - - component: {fileID: 1232175106} - - component: {fileID: 1232175105} + - component: {fileID: 1487122369} + - component: {fileID: 1487122371} + - component: {fileID: 1487122370} m_Layer: 5 - m_Name: Menu + m_Name: Background m_TagString: Untagged m_Icon: {fileID: 0} m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 ---- !u!224 &1232175104 +--- !u!224 &1487122369 RectTransform: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1232175103} - m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_GameObject: {fileID: 1487122368} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: - - {fileID: 890506813} - m_Father: {fileID: 1813608835} - m_RootOrder: 1 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 1} - m_AnchorMax: {x: 1, y: 1} - m_AnchoredPosition: {x: 0, y: 0} - m_SizeDelta: {x: 0, y: 60} - m_Pivot: {x: 0.5, y: 1} ---- !u!114 &1232175105 + m_Children: + - {fileID: 917594813} + m_Father: {fileID: 346516971} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 10, y: -10} + m_SizeDelta: {x: 20, y: 20} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1487122370 MonoBehaviour: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1232175103} + m_GameObject: {fileID: 1487122368} m_Enabled: 1 m_EditorHideFlags: 0 m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} m_Name: m_EditorClassIdentifier: m_Material: {fileID: 0} - m_Color: {r: 0.7264151, g: 0.7264151, b: 0.7264151, a: 0.5019608} + m_Color: {r: 1, g: 1, b: 1, a: 1} m_RaycastTarget: 1 m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} m_Maskable: 1 m_OnCullStateChanged: m_PersistentCalls: m_Calls: [] - m_Sprite: {fileID: 0} - m_Type: 0 + m_Sprite: {fileID: 10905, guid: 0000000000000000f000000000000000, type: 0} + m_Type: 1 m_PreserveAspect: 0 m_FillCenter: 1 m_FillMethod: 4 @@ -2761,51 +5135,15 @@ MonoBehaviour: m_FillOrigin: 0 m_UseSpriteMesh: 0 m_PixelsPerUnitMultiplier: 1 ---- !u!222 &1232175106 +--- !u!222 &1487122371 CanvasRenderer: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1232175103} - m_CullTransparentMesh: 0 ---- !u!1 &1275833167 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 1275833168} - m_Layer: 5 - m_Name: GameObject (1) - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &1275833168 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1275833167} - m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: - - {fileID: 2005750087} - m_Father: {fileID: 1806107436} - m_RootOrder: 1 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} - m_AnchoredPosition: {x: 0, y: 0} - m_SizeDelta: {x: 0, y: 0} - m_Pivot: {x: 0.5, y: 0.5} ---- !u!1 &1300751402 + m_GameObject: {fileID: 1487122368} + m_CullTransparentMesh: 1 +--- !u!1 &1520623094 GameObject: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} @@ -2813,151 +5151,65 @@ GameObject: m_PrefabAsset: {fileID: 0} serializedVersion: 6 m_Component: - - component: {fileID: 1300751403} - - component: {fileID: 1300751406} - - component: {fileID: 1300751405} - - component: {fileID: 1300751404} - m_Layer: 5 - m_Name: BodyDropdown + - component: {fileID: 1520623097} + - component: {fileID: 1520623096} + - component: {fileID: 1520623095} + m_Layer: 0 + m_Name: EventSystem m_TagString: Untagged m_Icon: {fileID: 0} m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 ---- !u!224 &1300751403 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1300751402} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: - - {fileID: 1179124853} - - {fileID: 1454818759} - - {fileID: 1469815176} - m_Father: {fileID: 868847128} - m_RootOrder: 1 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 1, y: 1} - m_AnchoredPosition: {x: 0, y: 0} - m_SizeDelta: {x: -40, y: -10} - m_Pivot: {x: 0.5, y: 0.5} ---- !u!114 &1300751404 +--- !u!114 &1520623095 MonoBehaviour: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1300751402} + m_GameObject: {fileID: 1520623094} m_Enabled: 1 m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 0d0b652f32a2cc243917e4028fa0f046, type: 3} + m_Script: {fileID: 11500000, guid: 4f231c4fb786f3946a6b90b886c48677, type: 3} m_Name: m_EditorClassIdentifier: - m_Navigation: - m_Mode: 3 - m_WrapAround: 0 - m_SelectOnUp: {fileID: 0} - m_SelectOnDown: {fileID: 0} - m_SelectOnLeft: {fileID: 0} - m_SelectOnRight: {fileID: 0} - m_Transition: 1 - m_Colors: - m_NormalColor: {r: 1, g: 1, b: 1, a: 1} - m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} - m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} - m_SelectedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} - m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} - m_ColorMultiplier: 1 - m_FadeDuration: 0.1 - m_SpriteState: - m_HighlightedSprite: {fileID: 0} - m_PressedSprite: {fileID: 0} - m_SelectedSprite: {fileID: 0} - m_DisabledSprite: {fileID: 0} - m_AnimationTriggers: - m_NormalTrigger: Normal - m_HighlightedTrigger: Highlighted - m_PressedTrigger: Pressed - m_SelectedTrigger: Selected - m_DisabledTrigger: Disabled - m_Interactable: 1 - m_TargetGraphic: {fileID: 1300751405} - m_Template: {fileID: 1469815176} - m_CaptionText: {fileID: 1179124854} - m_CaptionImage: {fileID: 0} - m_ItemText: {fileID: 551103759} - m_ItemImage: {fileID: 0} - m_Value: 0 - m_Options: - m_Options: - - m_Text: Body random - m_Image: {fileID: 0} - - m_Text: Body normal - m_Image: {fileID: 0} - - m_Text: Body curly - m_Image: {fileID: 0} - - m_Text: Body spiky - m_Image: {fileID: 0} - - m_Text: Body wetdog - m_Image: {fileID: 0} - - m_Text: Body sumo - m_Image: {fileID: 0} - - m_Text: Body bigyak - m_Image: {fileID: 0} - - m_Text: Body mystic-normal - m_Image: {fileID: 0} - - m_Text: Body mystic-fuzzy - m_Image: {fileID: 0} - - m_Text: Body normal-accessory - m_Image: {fileID: 0} - m_OnValueChanged: - m_PersistentCalls: - m_Calls: [] - m_AlphaFadeSpeed: 0.15 ---- !u!114 &1300751405 + m_HorizontalAxis: Horizontal + m_VerticalAxis: Vertical + m_SubmitButton: Submit + m_CancelButton: Cancel + m_InputActionsPerSecond: 10 + m_RepeatDelay: 0.5 + m_ForceModuleActive: 0 +--- !u!114 &1520623096 MonoBehaviour: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1300751402} + m_GameObject: {fileID: 1520623094} m_Enabled: 1 m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Script: {fileID: 11500000, guid: 76c392e42b5098c458856cdf6ecaaaa1, type: 3} m_Name: m_EditorClassIdentifier: - m_Material: {fileID: 0} - m_Color: {r: 1, g: 1, b: 1, a: 1} - m_RaycastTarget: 1 - m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} - m_Maskable: 1 - m_OnCullStateChanged: - m_PersistentCalls: - m_Calls: [] - m_Sprite: {fileID: 10905, guid: 0000000000000000f000000000000000, type: 0} - m_Type: 1 - m_PreserveAspect: 0 - m_FillCenter: 1 - m_FillMethod: 4 - m_FillAmount: 1 - m_FillClockwise: 1 - m_FillOrigin: 0 - m_UseSpriteMesh: 0 - m_PixelsPerUnitMultiplier: 1 ---- !u!222 &1300751406 -CanvasRenderer: + m_FirstSelected: {fileID: 0} + m_sendNavigationEvents: 1 + m_DragThreshold: 10 +--- !u!4 &1520623097 +Transform: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1300751402} - m_CullTransparentMesh: 1 ---- !u!1 &1301451843 + m_GameObject: {fileID: 1520623094} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 0} + m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &1521966269 GameObject: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} @@ -2965,47 +5217,46 @@ GameObject: m_PrefabAsset: {fileID: 0} serializedVersion: 6 m_Component: - - component: {fileID: 1301451844} - - component: {fileID: 1301451847} - - component: {fileID: 1301451846} - - component: {fileID: 1301451845} + - component: {fileID: 1521966270} + - component: {fileID: 1521966271} m_Layer: 5 - m_Name: Scrollbar + m_Name: PartToggle (5) m_TagString: Untagged m_Icon: {fileID: 0} m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 ---- !u!224 &1301451844 +--- !u!224 &1521966270 RectTransform: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1301451843} + m_GameObject: {fileID: 1521966269} m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: - - {fileID: 2060334847} - m_Father: {fileID: 1469815176} - m_RootOrder: 1 + - {fileID: 516366483} + - {fileID: 878153998} + m_Father: {fileID: 1321035340} + m_RootOrder: 5 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 1, y: 0} - m_AnchorMax: {x: 1, y: 1} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} m_AnchoredPosition: {x: 0, y: 0} - m_SizeDelta: {x: 20, y: 0} - m_Pivot: {x: 1, y: 1} ---- !u!114 &1301451845 + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1521966271 MonoBehaviour: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1301451843} + m_GameObject: {fileID: 1521966269} m_Enabled: 1 m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 2a4db7a114972834c8e4117be1d82ba3, type: 3} + m_Script: {fileID: 11500000, guid: 9085046f02f69544eb97fd06b6048fe2, type: 3} m_Name: m_EditorClassIdentifier: m_Navigation: @@ -3035,23 +5286,59 @@ MonoBehaviour: m_PressedTrigger: Pressed m_SelectedTrigger: Selected m_DisabledTrigger: Disabled - m_Interactable: 1 - m_TargetGraphic: {fileID: 1410415762} - m_HandleRect: {fileID: 1410415761} - m_Direction: 2 - m_Value: 0 - m_Size: 0.2 - m_NumberOfSteps: 0 - m_OnValueChanged: + m_Interactable: 0 + m_TargetGraphic: {fileID: 516366484} + toggleTransition: 1 + graphic: {fileID: 1142827625} + m_Group: {fileID: 0} + onValueChanged: m_PersistentCalls: m_Calls: [] ---- !u!114 &1301451846 + m_IsOn: 1 +--- !u!1 &1524038888 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1524038889} + - component: {fileID: 1524038891} + - component: {fileID: 1524038890} + m_Layer: 5 + m_Name: Item Checkmark + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1524038889 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1524038888} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 675279328} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0.5} + m_AnchorMax: {x: 0, y: 0.5} + m_AnchoredPosition: {x: 10, y: 0} + m_SizeDelta: {x: 40, y: 40} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1524038890 MonoBehaviour: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1301451843} + m_GameObject: {fileID: 1524038888} m_Enabled: 1 m_EditorHideFlags: 0 m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} @@ -3065,8 +5352,8 @@ MonoBehaviour: m_OnCullStateChanged: m_PersistentCalls: m_Calls: [] - m_Sprite: {fileID: 10907, guid: 0000000000000000f000000000000000, type: 0} - m_Type: 1 + m_Sprite: {fileID: 10901, guid: 0000000000000000f000000000000000, type: 0} + m_Type: 0 m_PreserveAspect: 0 m_FillCenter: 1 m_FillMethod: 4 @@ -3075,15 +5362,15 @@ MonoBehaviour: m_FillOrigin: 0 m_UseSpriteMesh: 0 m_PixelsPerUnitMultiplier: 1 ---- !u!222 &1301451847 +--- !u!222 &1524038891 CanvasRenderer: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1301451843} + m_GameObject: {fileID: 1524038888} m_CullTransparentMesh: 1 ---- !u!1 &1410415760 +--- !u!1 &1610536513 GameObject: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} @@ -3091,74 +5378,78 @@ GameObject: m_PrefabAsset: {fileID: 0} serializedVersion: 6 m_Component: - - component: {fileID: 1410415761} - - component: {fileID: 1410415763} - - component: {fileID: 1410415762} + - component: {fileID: 1610536514} + - component: {fileID: 1610536516} + - component: {fileID: 1610536515} m_Layer: 5 - m_Name: Handle + m_Name: Label m_TagString: Untagged m_Icon: {fileID: 0} m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 ---- !u!224 &1410415761 +--- !u!224 &1610536514 RectTransform: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1410415760} + m_GameObject: {fileID: 1610536513} m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] - m_Father: {fileID: 2060334847} + m_Father: {fileID: 343008505} m_RootOrder: 0 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 1, y: 0.2} - m_AnchoredPosition: {x: 0, y: 0} - m_SizeDelta: {x: 20, y: 20} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: -7.5, y: -0.5} + m_SizeDelta: {x: -35, y: -13} m_Pivot: {x: 0.5, y: 0.5} ---- !u!114 &1410415762 +--- !u!114 &1610536515 MonoBehaviour: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1410415760} + m_GameObject: {fileID: 1610536513} m_Enabled: 1 m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Script: {fileID: 11500000, guid: 5f7201a12d95ffc409449d95f23cf332, type: 3} m_Name: m_EditorClassIdentifier: m_Material: {fileID: 0} - m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Color: {r: 0.19607843, g: 0.19607843, b: 0.19607843, a: 1} m_RaycastTarget: 1 m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} m_Maskable: 1 m_OnCullStateChanged: m_PersistentCalls: m_Calls: [] - m_Sprite: {fileID: 10905, guid: 0000000000000000f000000000000000, type: 0} - m_Type: 1 - m_PreserveAspect: 0 - m_FillCenter: 1 - m_FillMethod: 4 - m_FillAmount: 1 - m_FillClockwise: 1 - m_FillOrigin: 0 - m_UseSpriteMesh: 0 - m_PixelsPerUnitMultiplier: 1 ---- !u!222 &1410415763 + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 18 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 1 + m_MaxSize: 40 + m_Alignment: 3 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 0 + m_VerticalOverflow: 0 + m_LineSpacing: 1 + m_Text: Animation +--- !u!222 &1610536516 CanvasRenderer: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1410415760} + m_GameObject: {fileID: 1610536513} m_CullTransparentMesh: 1 ---- !u!1 &1454818758 +--- !u!1 &1652034101 GameObject: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} @@ -3166,74 +5457,204 @@ GameObject: m_PrefabAsset: {fileID: 0} serializedVersion: 6 m_Component: - - component: {fileID: 1454818759} - - component: {fileID: 1454818761} - - component: {fileID: 1454818760} + - component: {fileID: 1652034102} m_Layer: 5 - m_Name: Arrow + m_Name: ForceLvFrame m_TagString: Untagged m_Icon: {fileID: 0} m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 ---- !u!224 &1454818759 +--- !u!224 &1652034102 RectTransform: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1454818758} + m_GameObject: {fileID: 1652034101} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 1754093545} + - {fileID: 1655288812} + - {fileID: 1321035340} + m_Father: {fileID: 1232175104} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 1} + m_AnchorMax: {x: 0.5, y: 1} + m_AnchoredPosition: {x: 0, y: -60} + m_SizeDelta: {x: 400, y: 60} + m_Pivot: {x: 0.5, y: 1} +--- !u!1 &1655288811 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1655288812} + - component: {fileID: 1655288813} + m_Layer: 5 + m_Name: AllToggle + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1655288812 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1655288811} m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 1300751403} + m_Children: + - {fileID: 232436721} + - {fileID: 1341235892} + m_Father: {fileID: 1652034102} m_RootOrder: 1 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 1, y: 0.5} - m_AnchorMax: {x: 1, y: 0.5} - m_AnchoredPosition: {x: -15, y: 0} - m_SizeDelta: {x: 20, y: 20} + m_AnchorMin: {x: 0, y: 0.5} + m_AnchorMax: {x: 0, y: 0.5} + m_AnchoredPosition: {x: 10, y: 0} + m_SizeDelta: {x: 90, y: 20} + m_Pivot: {x: 0, y: 0.5} +--- !u!114 &1655288813 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1655288811} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 9085046f02f69544eb97fd06b6048fe2, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Navigation: + m_Mode: 3 + m_WrapAround: 0 + m_SelectOnUp: {fileID: 0} + m_SelectOnDown: {fileID: 0} + m_SelectOnLeft: {fileID: 0} + m_SelectOnRight: {fileID: 0} + m_Transition: 1 + m_Colors: + m_NormalColor: {r: 1, g: 1, b: 1, a: 1} + m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} + m_SelectedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} + m_ColorMultiplier: 1 + m_FadeDuration: 0.1 + m_SpriteState: + m_HighlightedSprite: {fileID: 0} + m_PressedSprite: {fileID: 0} + m_SelectedSprite: {fileID: 0} + m_DisabledSprite: {fileID: 0} + m_AnimationTriggers: + m_NormalTrigger: Normal + m_HighlightedTrigger: Highlighted + m_PressedTrigger: Pressed + m_SelectedTrigger: Selected + m_DisabledTrigger: Disabled + m_Interactable: 1 + m_TargetGraphic: {fileID: 232436722} + toggleTransition: 1 + graphic: {fileID: 241006500} + m_Group: {fileID: 0} + onValueChanged: + m_PersistentCalls: + m_Calls: [] + m_IsOn: 0 +--- !u!1 &1664510187 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1664510188} + - component: {fileID: 1664510190} + - component: {fileID: 1664510189} + m_Layer: 5 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1664510188 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1664510187} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 71336831} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} m_Pivot: {x: 0.5, y: 0.5} ---- !u!114 &1454818760 +--- !u!114 &1664510189 MonoBehaviour: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1454818758} + m_GameObject: {fileID: 1664510187} m_Enabled: 1 m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Script: {fileID: 11500000, guid: 5f7201a12d95ffc409449d95f23cf332, type: 3} m_Name: m_EditorClassIdentifier: m_Material: {fileID: 0} - m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Color: {r: 0.19607843, g: 0.19607843, b: 0.19607843, a: 1} m_RaycastTarget: 1 m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} m_Maskable: 1 m_OnCullStateChanged: m_PersistentCalls: m_Calls: [] - m_Sprite: {fileID: 10915, guid: 0000000000000000f000000000000000, type: 0} - m_Type: 0 - m_PreserveAspect: 0 - m_FillCenter: 1 - m_FillMethod: 4 - m_FillAmount: 1 - m_FillClockwise: 1 - m_FillOrigin: 0 - m_UseSpriteMesh: 0 - m_PixelsPerUnitMultiplier: 1 ---- !u!222 &1454818761 + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 20 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 2 + m_MaxSize: 40 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 0 + m_VerticalOverflow: 0 + m_LineSpacing: 1 + m_Text: 'Mix + +' +--- !u!222 &1664510190 CanvasRenderer: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1454818758} - m_CullTransparentMesh: 1 ---- !u!1 &1469815175 + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1664510187} + m_CullTransparentMesh: 0 +--- !u!1 &1695071264 GameObject: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} @@ -3241,90 +5662,57 @@ GameObject: m_PrefabAsset: {fileID: 0} serializedVersion: 6 m_Component: - - component: {fileID: 1469815176} - - component: {fileID: 1469815179} - - component: {fileID: 1469815178} - - component: {fileID: 1469815177} + - component: {fileID: 1695071265} + - component: {fileID: 1695071267} + - component: {fileID: 1695071266} m_Layer: 5 - m_Name: Template + m_Name: Bg m_TagString: Untagged m_Icon: {fileID: 0} m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 0 ---- !u!224 &1469815176 +--- !u!224 &1695071265 RectTransform: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1469815175} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_GameObject: {fileID: 1695071264} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: - - {fileID: 1965515835} - - {fileID: 1301451844} - m_Father: {fileID: 1300751403} - m_RootOrder: 2 + m_Children: [] + m_Father: {fileID: 1813608835} + m_RootOrder: 0 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 1, y: 0} - m_AnchoredPosition: {x: 0, y: 2} - m_SizeDelta: {x: 0, y: 350} - m_Pivot: {x: 0.5, y: 1} ---- !u!114 &1469815177 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1469815175} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 1aa08ab6e0800fa44ae55d278d1423e3, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Content: {fileID: 459802440} - m_Horizontal: 0 - m_Vertical: 1 - m_MovementType: 2 - m_Elasticity: 0.1 - m_Inertia: 1 - m_DecelerationRate: 0.135 - m_ScrollSensitivity: 1 - m_Viewport: {fileID: 1965515835} - m_HorizontalScrollbar: {fileID: 0} - m_VerticalScrollbar: {fileID: 1301451845} - m_HorizontalScrollbarVisibility: 0 - m_VerticalScrollbarVisibility: 2 - m_HorizontalScrollbarSpacing: 0 - m_VerticalScrollbarSpacing: -3 - m_OnValueChanged: - m_PersistentCalls: - m_Calls: [] ---- !u!114 &1469815178 + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1695071266 MonoBehaviour: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1469815175} + m_GameObject: {fileID: 1695071264} m_Enabled: 1 m_EditorHideFlags: 0 m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} m_Name: m_EditorClassIdentifier: m_Material: {fileID: 0} - m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Color: {r: 0.5566038, g: 0.5566038, b: 0.5566038, a: 1} m_RaycastTarget: 1 m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} m_Maskable: 1 m_OnCullStateChanged: m_PersistentCalls: m_Calls: [] - m_Sprite: {fileID: 10905, guid: 0000000000000000f000000000000000, type: 0} - m_Type: 1 + m_Sprite: {fileID: 0} + m_Type: 0 m_PreserveAspect: 0 m_FillCenter: 1 m_FillMethod: 4 @@ -3333,81 +5721,76 @@ MonoBehaviour: m_FillOrigin: 0 m_UseSpriteMesh: 0 m_PixelsPerUnitMultiplier: 1 ---- !u!222 &1469815179 +--- !u!222 &1695071267 CanvasRenderer: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1469815175} - m_CullTransparentMesh: 1 ---- !u!1 &1520623094 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 1520623097} - - component: {fileID: 1520623096} - - component: {fileID: 1520623095} - m_Layer: 0 - m_Name: EventSystem - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!114 &1520623095 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1520623094} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 4f231c4fb786f3946a6b90b886c48677, type: 3} - m_Name: - m_EditorClassIdentifier: - m_HorizontalAxis: Horizontal - m_VerticalAxis: Vertical - m_SubmitButton: Submit - m_CancelButton: Cancel - m_InputActionsPerSecond: 10 - m_RepeatDelay: 0.5 - m_ForceModuleActive: 0 ---- !u!114 &1520623096 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1520623094} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 76c392e42b5098c458856cdf6ecaaaa1, type: 3} - m_Name: - m_EditorClassIdentifier: - m_FirstSelected: {fileID: 0} - m_sendNavigationEvents: 1 - m_DragThreshold: 10 ---- !u!4 &1520623097 -Transform: + m_GameObject: {fileID: 1695071264} + m_CullTransparentMesh: 0 +--- !u!850595691 &1697816149 +LightingSettings: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1520623094} - m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 0} - m_RootOrder: 2 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!1 &1524038888 + m_Name: Settings.lighting + serializedVersion: 3 + m_GIWorkflowMode: 1 + m_EnableBakedLightmaps: 0 + m_EnableRealtimeLightmaps: 0 + m_RealtimeEnvironmentLighting: 1 + m_BounceScale: 1 + m_AlbedoBoost: 1 + m_IndirectOutputScale: 1 + m_UsingShadowmask: 1 + m_BakeBackend: 0 + m_LightmapMaxSize: 1024 + m_BakeResolution: 40 + m_Padding: 2 + m_TextureCompression: 1 + m_AO: 0 + m_AOMaxDistance: 1 + m_CompAOExponent: 1 + m_CompAOExponentDirect: 0 + m_ExtractAO: 0 + m_MixedBakeMode: 2 + m_LightmapsBakeMode: 1 + m_FilterMode: 1 + m_LightmapParameters: {fileID: 15204, guid: 0000000000000000f000000000000000, type: 0} + m_ExportTrainingData: 0 + m_TrainingDataDestination: TrainingData + m_RealtimeResolution: 2 + m_ForceWhiteAlbedo: 0 + m_ForceUpdates: 0 + m_FinalGather: 0 + m_FinalGatherRayCount: 256 + m_FinalGatherFiltering: 1 + m_PVRCulling: 1 + m_PVRSampling: 1 + m_PVRDirectSampleCount: 32 + m_PVRSampleCount: 500 + m_PVREnvironmentSampleCount: 500 + m_PVREnvironmentReferencePointCount: 2048 + m_LightProbeSampleCountMultiplier: 4 + m_PVRBounces: 2 + m_PVRMinBounces: 2 + m_PVREnvironmentMIS: 0 + m_PVRFilteringMode: 2 + m_PVRDenoiserTypeDirect: 0 + m_PVRDenoiserTypeIndirect: 0 + m_PVRDenoiserTypeAO: 0 + m_PVRFilterTypeDirect: 0 + m_PVRFilterTypeIndirect: 0 + m_PVRFilterTypeAO: 0 + m_PVRFilteringGaussRadiusDirect: 1 + m_PVRFilteringGaussRadiusIndirect: 5 + m_PVRFilteringGaussRadiusAO: 2 + m_PVRFilteringAtrousPositionSigmaDirect: 0.5 + m_PVRFilteringAtrousPositionSigmaIndirect: 2 + m_PVRFilteringAtrousPositionSigmaAO: 1 +--- !u!1 &1704833924 GameObject: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} @@ -3415,42 +5798,42 @@ GameObject: m_PrefabAsset: {fileID: 0} serializedVersion: 6 m_Component: - - component: {fileID: 1524038889} - - component: {fileID: 1524038891} - - component: {fileID: 1524038890} + - component: {fileID: 1704833925} + - component: {fileID: 1704833927} + - component: {fileID: 1704833926} m_Layer: 5 - m_Name: Item Checkmark + m_Name: Checkmark m_TagString: Untagged m_Icon: {fileID: 0} m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 ---- !u!224 &1524038889 +--- !u!224 &1704833925 RectTransform: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1524038888} + m_GameObject: {fileID: 1704833924} m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] - m_Father: {fileID: 675279328} - m_RootOrder: 1 + m_Father: {fileID: 384296119} + m_RootOrder: 0 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0.5} - m_AnchorMax: {x: 0, y: 0.5} - m_AnchoredPosition: {x: 10, y: 0} - m_SizeDelta: {x: 40, y: 40} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 20, y: 20} m_Pivot: {x: 0.5, y: 0.5} ---- !u!114 &1524038890 +--- !u!114 &1704833926 MonoBehaviour: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1524038888} + m_GameObject: {fileID: 1704833924} m_Enabled: 1 m_EditorHideFlags: 0 m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} @@ -3474,15 +5857,15 @@ MonoBehaviour: m_FillOrigin: 0 m_UseSpriteMesh: 0 m_PixelsPerUnitMultiplier: 1 ---- !u!222 &1524038891 +--- !u!222 &1704833927 CanvasRenderer: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1524038888} + m_GameObject: {fileID: 1704833924} m_CullTransparentMesh: 1 ---- !u!1 &1610536513 +--- !u!1 &1731415320 GameObject: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} @@ -3490,9 +5873,9 @@ GameObject: m_PrefabAsset: {fileID: 0} serializedVersion: 6 m_Component: - - component: {fileID: 1610536514} - - component: {fileID: 1610536516} - - component: {fileID: 1610536515} + - component: {fileID: 1731415321} + - component: {fileID: 1731415323} + - component: {fileID: 1731415322} m_Layer: 5 m_Name: Label m_TagString: Untagged @@ -3500,32 +5883,32 @@ GameObject: m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 ---- !u!224 &1610536514 +--- !u!224 &1731415321 RectTransform: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1610536513} + m_GameObject: {fileID: 1731415320} m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] - m_Father: {fileID: 343008505} - m_RootOrder: 0 + m_Father: {fileID: 84681985} + m_RootOrder: 1 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 0} m_AnchorMax: {x: 1, y: 1} - m_AnchoredPosition: {x: -7.5, y: -0.5} - m_SizeDelta: {x: -35, y: -13} + m_AnchoredPosition: {x: 9, y: -0.5} + m_SizeDelta: {x: -28, y: -3} m_Pivot: {x: 0.5, y: 0.5} ---- !u!114 &1610536515 +--- !u!114 &1731415322 MonoBehaviour: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1610536513} + m_GameObject: {fileID: 1731415320} m_Enabled: 1 m_EditorHideFlags: 0 m_Script: {fileID: 11500000, guid: 5f7201a12d95ffc409449d95f23cf332, type: 3} @@ -3541,27 +5924,27 @@ MonoBehaviour: m_Calls: [] m_FontData: m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} - m_FontSize: 18 + m_FontSize: 14 m_FontStyle: 0 m_BestFit: 0 - m_MinSize: 1 + m_MinSize: 10 m_MaxSize: 40 - m_Alignment: 3 + m_Alignment: 0 m_AlignByGeometry: 0 m_RichText: 1 m_HorizontalOverflow: 0 m_VerticalOverflow: 0 m_LineSpacing: 1 - m_Text: Animation ---- !u!222 &1610536516 + m_Text: eyes +--- !u!222 &1731415323 CanvasRenderer: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1610536513} + m_GameObject: {fileID: 1731415320} m_CullTransparentMesh: 1 ---- !u!1 &1664510187 +--- !u!1 &1754093544 GameObject: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} @@ -3569,28 +5952,28 @@ GameObject: m_PrefabAsset: {fileID: 0} serializedVersion: 6 m_Component: - - component: {fileID: 1664510188} - - component: {fileID: 1664510190} - - component: {fileID: 1664510189} + - component: {fileID: 1754093545} + - component: {fileID: 1754093547} + - component: {fileID: 1754093546} m_Layer: 5 - m_Name: Text + m_Name: BG m_TagString: Untagged m_Icon: {fileID: 0} m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 ---- !u!224 &1664510188 +--- !u!224 &1754093545 RectTransform: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1664510187} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1754093544} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] - m_Father: {fileID: 71336831} + m_Father: {fileID: 1652034102} m_RootOrder: 0 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 0} @@ -3598,51 +5981,45 @@ RectTransform: m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 0, y: 0} m_Pivot: {x: 0.5, y: 0.5} ---- !u!114 &1664510189 +--- !u!114 &1754093546 MonoBehaviour: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1664510187} + m_GameObject: {fileID: 1754093544} m_Enabled: 1 m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 5f7201a12d95ffc409449d95f23cf332, type: 3} + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} m_Name: m_EditorClassIdentifier: m_Material: {fileID: 0} - m_Color: {r: 0.19607843, g: 0.19607843, b: 0.19607843, a: 1} + m_Color: {r: 1, g: 1, b: 1, a: 0.5019608} m_RaycastTarget: 1 m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} m_Maskable: 1 m_OnCullStateChanged: m_PersistentCalls: m_Calls: [] - m_FontData: - m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} - m_FontSize: 20 - m_FontStyle: 0 - m_BestFit: 0 - m_MinSize: 2 - m_MaxSize: 40 - m_Alignment: 4 - m_AlignByGeometry: 0 - m_RichText: 1 - m_HorizontalOverflow: 0 - m_VerticalOverflow: 0 - m_LineSpacing: 1 - m_Text: 'Mix - -' ---- !u!222 &1664510190 + m_Sprite: {fileID: 10907, guid: 0000000000000000f000000000000000, type: 0} + m_Type: 1 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!222 &1754093547 CanvasRenderer: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1664510187} - m_CullTransparentMesh: 0 ---- !u!1 &1695071264 + m_GameObject: {fileID: 1754093544} + m_CullTransparentMesh: 1 +--- !u!1 &1802546395 GameObject: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} @@ -3650,134 +6027,77 @@ GameObject: m_PrefabAsset: {fileID: 0} serializedVersion: 6 m_Component: - - component: {fileID: 1695071265} - - component: {fileID: 1695071267} - - component: {fileID: 1695071266} + - component: {fileID: 1802546396} + - component: {fileID: 1802546398} + - component: {fileID: 1802546397} m_Layer: 5 - m_Name: Bg + m_Name: Label m_TagString: Untagged m_Icon: {fileID: 0} m_NavMeshLayer: 0 m_StaticEditorFlags: 0 - m_IsActive: 0 ---- !u!224 &1695071265 + m_IsActive: 1 +--- !u!224 &1802546396 RectTransform: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1695071264} - m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_GameObject: {fileID: 1802546395} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] - m_Father: {fileID: 1813608835} - m_RootOrder: 0 + m_Father: {fileID: 1868019693} + m_RootOrder: 1 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 0} m_AnchorMax: {x: 1, y: 1} - m_AnchoredPosition: {x: 0, y: 0} - m_SizeDelta: {x: 0, y: 0} + m_AnchoredPosition: {x: 9, y: -0.5} + m_SizeDelta: {x: -28, y: -3} m_Pivot: {x: 0.5, y: 0.5} ---- !u!114 &1695071266 +--- !u!114 &1802546397 MonoBehaviour: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1695071264} + m_GameObject: {fileID: 1802546395} m_Enabled: 1 m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Script: {fileID: 11500000, guid: 5f7201a12d95ffc409449d95f23cf332, type: 3} m_Name: m_EditorClassIdentifier: m_Material: {fileID: 0} - m_Color: {r: 0.5566038, g: 0.5566038, b: 0.5566038, a: 1} + m_Color: {r: 0.19607843, g: 0.19607843, b: 0.19607843, a: 1} m_RaycastTarget: 1 m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} m_Maskable: 1 m_OnCullStateChanged: m_PersistentCalls: m_Calls: [] - m_Sprite: {fileID: 0} - m_Type: 0 - m_PreserveAspect: 0 - m_FillCenter: 1 - m_FillMethod: 4 - m_FillAmount: 1 - m_FillClockwise: 1 - m_FillOrigin: 0 - m_UseSpriteMesh: 0 - m_PixelsPerUnitMultiplier: 1 ---- !u!222 &1695071267 + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 14 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 0 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 0 + m_VerticalOverflow: 0 + m_LineSpacing: 1 + m_Text: back +--- !u!222 &1802546398 CanvasRenderer: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1695071264} - m_CullTransparentMesh: 0 ---- !u!850595691 &1697816149 -LightingSettings: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_Name: Settings.lighting - serializedVersion: 3 - m_GIWorkflowMode: 1 - m_EnableBakedLightmaps: 0 - m_EnableRealtimeLightmaps: 0 - m_RealtimeEnvironmentLighting: 1 - m_BounceScale: 1 - m_AlbedoBoost: 1 - m_IndirectOutputScale: 1 - m_UsingShadowmask: 1 - m_BakeBackend: 0 - m_LightmapMaxSize: 1024 - m_BakeResolution: 40 - m_Padding: 2 - m_TextureCompression: 1 - m_AO: 0 - m_AOMaxDistance: 1 - m_CompAOExponent: 1 - m_CompAOExponentDirect: 0 - m_ExtractAO: 0 - m_MixedBakeMode: 2 - m_LightmapsBakeMode: 1 - m_FilterMode: 1 - m_LightmapParameters: {fileID: 15204, guid: 0000000000000000f000000000000000, type: 0} - m_ExportTrainingData: 0 - m_TrainingDataDestination: TrainingData - m_RealtimeResolution: 2 - m_ForceWhiteAlbedo: 0 - m_ForceUpdates: 0 - m_FinalGather: 0 - m_FinalGatherRayCount: 256 - m_FinalGatherFiltering: 1 - m_PVRCulling: 1 - m_PVRSampling: 1 - m_PVRDirectSampleCount: 32 - m_PVRSampleCount: 500 - m_PVREnvironmentSampleCount: 500 - m_PVREnvironmentReferencePointCount: 2048 - m_LightProbeSampleCountMultiplier: 4 - m_PVRBounces: 2 - m_PVRMinBounces: 2 - m_PVREnvironmentMIS: 0 - m_PVRFilteringMode: 2 - m_PVRDenoiserTypeDirect: 0 - m_PVRDenoiserTypeIndirect: 0 - m_PVRDenoiserTypeAO: 0 - m_PVRFilterTypeDirect: 0 - m_PVRFilterTypeIndirect: 0 - m_PVRFilterTypeAO: 0 - m_PVRFilteringGaussRadiusDirect: 1 - m_PVRFilteringGaussRadiusIndirect: 5 - m_PVRFilteringGaussRadiusAO: 2 - m_PVRFilteringAtrousPositionSigmaDirect: 0.5 - m_PVRFilteringAtrousPositionSigmaIndirect: 2 - m_PVRFilteringAtrousPositionSigmaAO: 1 + m_GameObject: {fileID: 1802546395} + m_CullTransparentMesh: 1 --- !u!1 &1806107435 GameObject: m_ObjectHideFlags: 0 @@ -4032,6 +6352,92 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1866221629} m_CullTransparentMesh: 1 +--- !u!1 &1868019692 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1868019693} + - component: {fileID: 1868019694} + m_Layer: 5 + m_Name: PartToggle (4) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1868019693 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1868019692} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: + - {fileID: 417212052} + - {fileID: 1802546396} + m_Father: {fileID: 1321035340} + m_RootOrder: 4 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1868019694 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1868019692} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 9085046f02f69544eb97fd06b6048fe2, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Navigation: + m_Mode: 3 + m_WrapAround: 0 + m_SelectOnUp: {fileID: 0} + m_SelectOnDown: {fileID: 0} + m_SelectOnLeft: {fileID: 0} + m_SelectOnRight: {fileID: 0} + m_Transition: 1 + m_Colors: + m_NormalColor: {r: 1, g: 1, b: 1, a: 1} + m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} + m_SelectedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} + m_ColorMultiplier: 1 + m_FadeDuration: 0.1 + m_SpriteState: + m_HighlightedSprite: {fileID: 0} + m_PressedSprite: {fileID: 0} + m_SelectedSprite: {fileID: 0} + m_DisabledSprite: {fileID: 0} + m_AnimationTriggers: + m_NormalTrigger: Normal + m_HighlightedTrigger: Highlighted + m_PressedTrigger: Pressed + m_SelectedTrigger: Selected + m_DisabledTrigger: Disabled + m_Interactable: 0 + m_TargetGraphic: {fileID: 417212053} + toggleTransition: 1 + graphic: {fileID: 476803090} + m_Group: {fileID: 0} + onValueChanged: + m_PersistentCalls: + m_Calls: [] + m_IsOn: 1 --- !u!1 &1965515834 GameObject: m_ObjectHideFlags: 0 @@ -4576,7 +6982,59 @@ MonoBehaviour: bodyDropDown: {fileID: 1300751404} allAxieToggle: {fileID: 946688271} customIdToggle: {fileID: 2005750088} + customLVToggle: {fileID: 1655288813} + customPartToggles: + - {fileID: 84681986} + - {fileID: 346516972} + - {fileID: 551676996} + - {fileID: 361812057} + - {fileID: 1868019694} + - {fileID: 1521966271} rootTF: {fileID: 1813608835} +--- !u!1 &2100349833 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2100349834} + - component: {fileID: 2100349835} + m_Layer: 0 + m_Name: CameraFollowSetup + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &2100349834 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2100349833} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 758563313} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!114 &2100349835 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2100349833} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: beeef1069c4934fe6aec710127d39461, type: 3} + m_Name: + m_EditorClassIdentifier: + cameraFollow: {fileID: 519420033} --- !u!1 &2139753035 GameObject: m_ObjectHideFlags: 0 diff --git a/ProjectSettings/EditorBuildSettings.asset b/ProjectSettings/EditorBuildSettings.asset index 171df32..f56528c 100644 --- a/ProjectSettings/EditorBuildSettings.asset +++ b/ProjectSettings/EditorBuildSettings.asset @@ -5,9 +5,9 @@ EditorBuildSettings: m_ObjectHideFlags: 0 serializedVersion: 2 m_Scenes: - - enabled: 1 - path: Assets/AxieInfinity/AxieMixerUnity/Demo/0. Loading Screen/Loading.unity - guid: e9ede3c3dfc7148409d176224d6293ba + - enabled: 0 + path: + guid: 00000000000000000000000000000000 - enabled: 1 path: Assets/_Scenes/DemoMixer.unity guid: 2cda990e2423bbf4892e6590ba056729 diff --git a/ProjectSettings/ProjectSettings.asset b/ProjectSettings/ProjectSettings.asset index 2f02d14..7af69bd 100644 --- a/ProjectSettings/ProjectSettings.asset +++ b/ProjectSettings/ProjectSettings.asset @@ -3,7 +3,7 @@ --- !u!129 &1 PlayerSettings: m_ObjectHideFlags: 0 - serializedVersion: 24 + serializedVersion: 20 productGUID: 4b683c2fdd6a147059f2f0aadd723d85 AndroidProfiler: 0 AndroidFilterTouchesWhenObscured: 0 @@ -49,8 +49,6 @@ PlayerSettings: m_StereoRenderingPath: 0 m_ActiveColorSpace: 0 m_MTRendering: 1 - mipStripping: 0 - numberOfMipsStripped: 0 m_StackTraceTypes: 010000000100000001000000010000000100000001000000 iosShowActivityIndicatorOnLoading: -1 androidShowActivityIndicatorOnLoading: -1 @@ -68,12 +66,6 @@ PlayerSettings: androidRenderOutsideSafeArea: 1 androidUseSwappy: 0 androidBlitType: 0 - androidResizableWindow: 0 - androidDefaultWindowWidth: 1920 - androidDefaultWindowHeight: 1080 - androidMinimumWindowWidth: 400 - androidMinimumWindowHeight: 300 - androidFullscreenMode: 1 defaultIsNativeResolution: 1 macRetinaSupport: 1 runInBackground: 1 @@ -125,16 +117,14 @@ PlayerSettings: stadiaTargetFramerate: 0 vulkanNumSwapchainBuffers: 3 vulkanEnableSetSRGBWrite: 0 - vulkanEnablePreTransform: 0 vulkanEnableLateAcquireNextImage: 0 - vulkanEnableCommandBufferRecycling: 1 m_SupportedAspectRatios: 4:3: 1 5:4: 1 16:10: 1 16:9: 1 Others: 1 - bundleVersion: 0.0.1 + bundleVersion: 0.0.3 preloadedAssets: [] metroInputSource: 0 wsaTransparentSwapchain: 0 @@ -142,16 +132,39 @@ PlayerSettings: xboxOneDisableKinectGpuReservation: 1 xboxOneEnable7thCore: 1 vrSettings: + cardboard: + depthFormat: 0 + enableTransitionView: 0 + daydream: + depthFormat: 0 + useSustainedPerformanceMode: 0 + enableVideoLayer: 0 + useProtectedVideoMemory: 0 + minimumSupportedHeadTracking: 0 + maximumSupportedHeadTracking: 1 + hololens: + depthFormat: 1 + depthBufferSharingEnabled: 1 + lumin: + depthFormat: 0 + frameTiming: 2 + enableGLCache: 0 + glCacheMaxBlobSize: 524288 + glCacheMaxFileSize: 8388608 + oculus: + sharedDepthBuffer: 1 + dashSupport: 1 + lowOverheadMode: 0 + protectedContext: 0 + v2Signing: 1 enable360StereoCapture: 0 isWsaHolographicRemotingEnabled: 0 enableFrameTimingStats: 0 - enableOpenGLProfilerGPURecorders: 1 useHDRDisplay: 0 D3DHDRBitDepth: 0 m_ColorGamuts: 00000000 targetPixelDensity: 30 resolutionScalingMode: 0 - resetResolutionOnWindowResize: 0 androidSupportedAspectRatio: 1 androidMaxAspectRatio: 2.1 applicationIdentifier: @@ -160,7 +173,6 @@ PlayerSettings: Standalone: 0 iPhone: 0 tvOS: 0 - overrideDefaultApplicationIdentifier: 0 AndroidBundleVersionCode: 1 AndroidMinSdkVersion: 22 AndroidTargetSdkVersion: 0 @@ -214,11 +226,10 @@ PlayerSettings: iOSLaunchScreeniPadFillPct: 100 iOSLaunchScreeniPadSize: 100 iOSLaunchScreeniPadCustomXibPath: + iOSUseLaunchScreenStoryboard: 0 iOSLaunchScreenCustomStoryboardPath: - iOSLaunchScreeniPadCustomStoryboardPath: iOSDeviceRequirements: [] iOSURLSchemes: [] - macOSURLSchemes: [] iOSBackgroundModes: 0 iOSMetalForceHardShadows: 0 metalEditorSupport: 1 @@ -234,19 +245,10 @@ PlayerSettings: iOSRequireARKit: 0 iOSAutomaticallyDetectAndAddCapabilities: 1 appleEnableProMotion: 0 - shaderPrecisionModel: 0 clonedFromGUID: 5f34be1353de5cf4398729fda238591b templatePackageId: com.unity.template.2d@3.3.2 templateDefaultScene: Assets/Scenes/SampleScene.unity - useCustomMainManifest: 0 - useCustomLauncherManifest: 0 - useCustomMainGradleTemplate: 0 - useCustomLauncherGradleManifest: 0 - useCustomBaseGradleTemplate: 0 - useCustomGradlePropertiesTemplate: 0 - useCustomProguardFile: 0 AndroidTargetArchitectures: 1 - AndroidTargetDevices: 0 AndroidSplashScreenScale: 0 androidSplashScreen: {fileID: 0} AndroidKeystoreName: @@ -263,16 +265,11 @@ PlayerSettings: height: 180 banner: {fileID: 0} androidGamepadSupportLevel: 0 - chromeosInputEmulation: 1 - AndroidMinifyWithR8: 0 - AndroidMinifyRelease: 0 - AndroidMinifyDebug: 0 AndroidValidateAppBundleSize: 1 AndroidAppBundleSizeToValidate: 150 m_BuildTargetIcons: [] m_BuildTargetPlatformIcons: [] m_BuildTargetBatching: [] - m_BuildTargetShaderSettings: [] m_BuildTargetGraphicsJobs: - m_BuildTarget: MacStandaloneSupport m_GraphicsJobs: 0 @@ -313,8 +310,6 @@ PlayerSettings: m_APIs: 10000000 m_Automatic: 1 m_BuildTargetVRSettings: [] - m_DefaultShaderChunkSizeInMB: 16 - m_DefaultShaderChunkCount: 0 openGLRequireES31: 0 openGLRequireES31AEP: 0 openGLRequireES32: 0 @@ -325,8 +320,6 @@ PlayerSettings: tvOS: 1 m_BuildTargetGroupLightmapEncodingQuality: [] m_BuildTargetGroupLightmapSettings: [] - m_BuildTargetNormalMapEncoding: [] - m_BuildTargetDefaultTextureCompressionFormat: [] playModeTestRunnerEnabled: 0 runPlayModeTestAsEditModeTest: 0 actionOnDotNetUnhandledException: 1 @@ -336,16 +329,12 @@ PlayerSettings: cameraUsageDescription: locationUsageDescription: microphoneUsageDescription: - bluetoothUsageDescription: - switchNMETAOverride: switchNetLibKey: switchSocketMemoryPoolSize: 6144 switchSocketAllocatorPoolSize: 128 switchSocketConcurrencyLimit: 14 switchScreenResolutionBehavior: 2 switchUseCPUProfiler: 0 - switchUseGOLDLinker: 0 - switchLTOSetting: 0 switchApplicationID: 0x01004b9000490000 switchNSODependencies: switchTitleNames_0: @@ -421,6 +410,7 @@ PlayerSettings: switchReleaseVersion: 0 switchDisplayVersion: 1.0.0 switchStartupUserAccount: 0 + switchTouchScreenUsage: 0 switchSupportedLanguagesMask: 0 switchLogoType: 0 switchApplicationErrorCodeCategory: @@ -462,7 +452,6 @@ PlayerSettings: switchNativeFsCacheSize: 32 switchIsHoldTypeHorizontal: 0 switchSupportedNpadCount: 8 - switchEnableTouchScreen: 1 switchSocketConfigEnabled: 0 switchTcpInitialSendBufferSize: 32 switchTcpInitialReceiveBufferSize: 64 @@ -474,12 +463,8 @@ PlayerSettings: switchSocketInitializeEnabled: 1 switchNetworkInterfaceManagerInitializeEnabled: 1 switchPlayerConnectionEnabled: 1 - switchUseNewStyleFilepaths: 0 - switchUseLegacyFmodPriorities: 1 switchUseMicroSleepForYield: 1 - switchEnableRamDiskSupport: 0 switchMicroSleepForYieldTime: 25 - switchRamDiskSpaceSize: 12 ps4NPAgeRating: 12 ps4NPTitleSecret: ps4NPTrophyPackPath: @@ -550,11 +535,35 @@ PlayerSettings: ps4videoRecordingFeaturesUsed: 0 ps4contentSearchFeaturesUsed: 0 ps4CompatibilityPS5: 0 - ps4AllowPS5Detection: 0 ps4GPU800MHz: 1 ps4attribEyeToEyeDistanceSettingVR: 0 ps4IncludedModules: [] ps4attribVROutputEnabled: 0 + ps5ParamFilePath: + ps5VideoOutPixelFormat: 0 + ps5VideoOutInitialWidth: 1920 + ps5VideoOutOutputMode: 1 + ps5BackgroundImagePath: + ps5StartupImagePath: + ps5Pic2Path: + ps5StartupImagesFolder: + ps5IconImagesFolder: + ps5SaveDataImagePath: + ps5SdkOverride: + ps5BGMPath: + ps5ShareOverlayImagePath: + ps5NPConfigZipPath: + ps5Passcode: PN2qmWqBlQ9wQj99nsQzldVI5ZuGXbEW + ps5UseResolutionFallback: 0 + ps5UseAudio3dBackend: 0 + ps5ScriptOptimizationLevel: 2 + ps5Audio3dVirtualSpeakerCount: 14 + ps5UpdateReferencePackage: + ps5disableAutoHideSplash: 0 + ps5OperatingSystemCanDisableSplashScreen: 0 + ps5IncludedModules: [] + ps5SharedBinaryContentLabels: [] + ps5SharedBinarySystemFolders: [] monoEnv: splashScreenBackgroundSourceLandscape: {fileID: 0} splashScreenBackgroundSourcePortrait: {fileID: 0} @@ -571,13 +580,10 @@ PlayerSettings: webGLAnalyzeBuildSize: 0 webGLUseEmbeddedResources: 0 webGLCompressionFormat: 1 - webGLWasmArithmeticExceptions: 0 webGLLinkerTarget: 1 webGLThreadsSupport: 0 - webGLDecompressionFallback: 0 - webGLPowerPreference: 2 + webGLWasmStreaming: 0 scriptingDefineSymbols: {} - additionalCompilerArguments: {} platformArchitecture: {} scriptingBackend: Standalone: 1 @@ -600,9 +606,6 @@ PlayerSettings: incrementalIl2cppBuild: {} suppressCommonWarnings: 1 allowUnsafeCode: 0 - useDeterministicCompilation: 1 - enableRoslynAnalyzers: 1 - selectedPlatform: 0 additionalIl2CppArgs: scriptingRuntimeVersion: 1 gcIncremental: 0 @@ -638,7 +641,6 @@ PlayerSettings: metroFTAName: metroFTAFileTypes: [] metroProtocolName: - vcxProjDefaultLanguage: XboxOneProductId: XboxOneUpdateKey: XboxOneSandboxId: @@ -666,7 +668,10 @@ PlayerSettings: XboxOneXTitleMemory: 8 XboxOneOverrideIdentityName: XboxOneOverrideIdentityPublisher: - vrEditorSettings: {} + vrEditorSettings: + daydream: + daydreamIconForeground: {fileID: 0} + daydreamIconBackground: {fileID: 0} cloudServicesEnabled: UNet: 1 luminIcon: @@ -681,15 +686,11 @@ PlayerSettings: m_VersionCode: 1 m_VersionName: apiCompatibilityLevel: 6 - activeInputHandler: 0 - windowsGamepadBackendHint: 0 cloudProjectId: 674614d7-099c-4606-9e01-a924c37ee9e5 framebufferDepthMemorylessMode: 0 - qualitySettingsNames: [] projectName: organizationId: cloudEnabled: 0 + enableNativePlatformBackendsForNewInputSystem: 0 + disableOldInputManagerSupport: 0 legacyClampBlendShapeWeights: 0 - playerDataPath: - forceSRGBBlit: 1 - virtualTexturingSupportEnabled: 0 diff --git a/README.md b/README.md index e755e50..d7a361f 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,9 @@ # Axie Infinity IP - Tool Kit 2D +## New update +- Starter: Xia, Bing, Noir, Rouge +- Axie NFT lv 2 + ## Axie The shared feature of all Axies to distinguish them from other creatures is that they always have 6 fixed parts on their body: `eyes`, `mouth`, `horns`, `ears`, `back` and `tail`. These body parts' looks are often very random. Based on biological characteristics, the Axies are divided into 6 main races including: `Beast`, `Aquatic`, `Plant`, `Bird`, `Bug` , `Reptile` @@ -12,6 +16,7 @@ Starter axie is mascot with fixed genes and can't breed. We recommend to used th `Axie Generator Tool Kit 2D` is a tool provided by Sky Mavis, which transform the data of Axie's binary gene data decoder into body information, parts, colors, .. - For Usage please follow this repo [mixer-unity](https://github.com/axieinfinity/mixer-unity) from github ![Axie Generator Tool Kit 2D](images/ntf-axie.png?raw=true "Axie Generator Tool Kit 2D") +![Axie LV2](images/axie-lv2.png?raw=true "Axie LV2") ## Chimera Like the Axies, the Chimeras also have many characteristics that are a combination of many creatures, however, they can not be divided into specific classes like the Axies. Compared to the Axies, the Chimera's appearance seems more chaotic and not following any rules. diff --git a/images/axie-lv2.png b/images/axie-lv2.png new file mode 100644 index 0000000..ed338e6 Binary files /dev/null and b/images/axie-lv2.png differ